blob: fc5b7d82b842305947a759e29238bd24d5026aca [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>
Josef Bacik69fe2d72017-10-19 14:15:57 -040045#include <linux/magic.h>
Jeff Laytonae5e1652018-01-29 06:41:30 -050046#include <linux/iversion.h>
Chris Mason39279cc2007-06-12 06:35:45 -040047#include "ctree.h"
48#include "disk-io.h"
49#include "transaction.h"
50#include "btrfs_inode.h"
Chris Mason39279cc2007-06-12 06:35:45 -040051#include "print-tree.h"
Chris Masone6dcd2d2008-07-17 12:53:50 -040052#include "ordered-data.h"
Christoph Hellwig95819c02008-08-28 06:21:17 -040053#include "xattr.h"
Chris Masone02119d2008-09-05 16:13:11 -040054#include "tree-log.h"
Jan Schmidt4a54c8c2011-07-22 15:41:52 +020055#include "volumes.h"
Chris Masonc8b97812008-10-29 14:49:59 -040056#include "compression.h"
Chris Masonb4ce94d2009-02-04 09:25:08 -050057#include "locking.h"
Josef Bacikdc89e982011-01-28 17:05:48 -050058#include "free-space-cache.h"
Li Zefan581bb052011-04-20 10:06:11 +080059#include "inode-map.h"
Liu Bo38c227d2013-01-29 03:18:40 +000060#include "backref.h"
Filipe David Borba Manana63541922014-01-07 11:47:46 +000061#include "props.h"
Dongsheng Yang31193212014-12-12 16:44:35 +080062#include "qgroup.h"
Wang Xiaoguangdda32452016-07-11 11:05:29 +080063#include "dedupe.h"
Chris Mason39279cc2007-06-12 06:35:45 -040064
65struct btrfs_iget_args {
Chris Mason90d3e592014-01-09 17:28:00 -080066 struct btrfs_key *location;
Chris Mason39279cc2007-06-12 06:35:45 -040067 struct btrfs_root *root;
68};
69
Filipe Mananaf28a4922015-12-08 19:23:20 +000070struct btrfs_dio_data {
Filipe Mananaf28a4922015-12-08 19:23:20 +000071 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;
Chris Mason39279cc2007-06-12 06:35:45 -040089struct kmem_cache *btrfs_path_cachep;
Josef Bacikdc89e982011-01-28 17:05:48 -050090struct kmem_cache *btrfs_free_space_cachep;
Chris Mason39279cc2007-06-12 06:35:45 -040091
92#define S_SHIFT 12
David Sterba4d4ab6d2015-11-19 11:42:31 +010093static const unsigned char btrfs_type_by_mode[S_IFMT >> S_SHIFT] = {
Chris Mason39279cc2007-06-12 06:35:45 -040094 [S_IFREG >> S_SHIFT] = BTRFS_FT_REG_FILE,
95 [S_IFDIR >> S_SHIFT] = BTRFS_FT_DIR,
96 [S_IFCHR >> S_SHIFT] = BTRFS_FT_CHRDEV,
97 [S_IFBLK >> S_SHIFT] = BTRFS_FT_BLKDEV,
98 [S_IFIFO >> S_SHIFT] = BTRFS_FT_FIFO,
99 [S_IFSOCK >> S_SHIFT] = BTRFS_FT_SOCK,
100 [S_IFLNK >> S_SHIFT] = BTRFS_FT_SYMLINK,
101};
102
Eric Sandeen3972f262013-01-12 02:57:22 +0000103static int btrfs_setsize(struct inode *inode, struct iattr *attr);
Filipe Manana213e8c52018-02-06 20:40:31 +0000104static int btrfs_truncate(struct inode *inode, bool skip_writeback);
Josef Bacik5fd02042012-05-02 14:00:54 -0400105static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent);
Chris Mason771ed682008-11-06 22:02:51 -0500106static noinline int cow_file_range(struct inode *inode,
107 struct page *locked_page,
Wang Xiaoguangdda32452016-07-11 11:05:29 +0800108 u64 start, u64 end, u64 delalloc_end,
109 int *page_started, unsigned long *nr_written,
110 int unlock, struct btrfs_dedupe_hash *hash);
Liu Bo6f9994d2017-01-31 07:50:22 -0800111static struct extent_map *create_io_em(struct inode *inode, u64 start, u64 len,
112 u64 orig_start, u64 block_start,
113 u64 block_len, u64 orig_block_len,
114 u64 ram_bytes, int compress_type,
115 int type);
Josef Bacik7b128762008-07-24 12:17:14 -0400116
Qu Wenruo524272602017-03-08 10:25:52 +0800117static void __endio_write_update_ordered(struct inode *inode,
118 const u64 offset, const u64 bytes,
119 const bool uptodate);
120
121/*
122 * Cleanup all submitted ordered extents in specified range to handle errors
123 * from the fill_dellaloc() callback.
124 *
125 * NOTE: caller must ensure that when an error happens, it can not call
126 * extent_clear_unlock_delalloc() to clear both the bits EXTENT_DO_ACCOUNTING
127 * and EXTENT_DELALLOC simultaneously, because that causes the reserved metadata
128 * to be released, which we want to happen only when finishing the ordered
129 * extent (btrfs_finish_ordered_io()). Also note that the caller of the
130 * fill_delalloc() callback already does proper cleanup for the first page of
131 * the range, that is, it invokes the callback writepage_end_io_hook() for the
132 * range of the first page.
133 */
134static inline void btrfs_cleanup_ordered_extents(struct inode *inode,
135 const u64 offset,
136 const u64 bytes)
137{
Naohiro Aota63d71450c2017-09-01 17:58:47 +0900138 unsigned long index = offset >> PAGE_SHIFT;
139 unsigned long end_index = (offset + bytes - 1) >> PAGE_SHIFT;
140 struct page *page;
141
142 while (index <= end_index) {
143 page = find_get_page(inode->i_mapping, index);
144 index++;
145 if (!page)
146 continue;
147 ClearPagePrivate2(page);
148 put_page(page);
149 }
Qu Wenruo524272602017-03-08 10:25:52 +0800150 return __endio_write_update_ordered(inode, offset + PAGE_SIZE,
151 bytes - PAGE_SIZE, false);
152}
153
Eric Sandeen48a3b632013-04-25 20:41:01 +0000154static int btrfs_dirty_inode(struct inode *inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400155
Josef Bacik6a3891c2015-03-16 17:38:52 -0400156#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
157void btrfs_test_inode_set_ops(struct inode *inode)
158{
159 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
160}
161#endif
162
Yan, Zhengf34f57a2009-11-12 09:35:27 +0000163static int btrfs_init_inode_security(struct btrfs_trans_handle *trans,
Eric Paris2a7dba32011-02-01 11:05:39 -0500164 struct inode *inode, struct inode *dir,
165 const struct qstr *qstr)
Jim Owens0279b4c2009-02-04 09:29:13 -0500166{
167 int err;
168
Yan, Zhengf34f57a2009-11-12 09:35:27 +0000169 err = btrfs_init_acl(trans, inode, dir);
Jim Owens0279b4c2009-02-04 09:29:13 -0500170 if (!err)
Eric Paris2a7dba32011-02-01 11:05:39 -0500171 err = btrfs_xattr_security_init(trans, inode, dir, qstr);
Jim Owens0279b4c2009-02-04 09:29:13 -0500172 return err;
173}
174
Chris Masond352ac62008-09-29 15:18:18 -0400175/*
Chris Masonc8b97812008-10-29 14:49:59 -0400176 * this does all the hard work for inserting an inline extent into
177 * the btree. The caller should have done a btrfs_drop_extents so that
178 * no overlapping inline items exist in the btree
179 */
Chris Mason40f76582014-05-21 13:35:51 -0700180static int insert_inline_extent(struct btrfs_trans_handle *trans,
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000181 struct btrfs_path *path, int extent_inserted,
Chris Masonc8b97812008-10-29 14:49:59 -0400182 struct btrfs_root *root, struct inode *inode,
183 u64 start, size_t size, size_t compressed_size,
Li Zefanfe3f5662011-03-28 08:30:38 +0000184 int compress_type,
Chris Masonc8b97812008-10-29 14:49:59 -0400185 struct page **compressed_pages)
186{
Chris Masonc8b97812008-10-29 14:49:59 -0400187 struct extent_buffer *leaf;
188 struct page *page = NULL;
189 char *kaddr;
190 unsigned long ptr;
191 struct btrfs_file_extent_item *ei;
Chris Masonc8b97812008-10-29 14:49:59 -0400192 int ret;
193 size_t cur_size = size;
Chris Masonc8b97812008-10-29 14:49:59 -0400194 unsigned long offset;
Chris Masonc8b97812008-10-29 14:49:59 -0400195
Li Zefanfe3f5662011-03-28 08:30:38 +0000196 if (compressed_size && compressed_pages)
Chris Masonc8b97812008-10-29 14:49:59 -0400197 cur_size = compressed_size;
Chris Masonc8b97812008-10-29 14:49:59 -0400198
Chris Masonc8b97812008-10-29 14:49:59 -0400199 inode_add_bytes(inode, size);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000200
201 if (!extent_inserted) {
202 struct btrfs_key key;
203 size_t datasize;
204
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +0200205 key.objectid = btrfs_ino(BTRFS_I(inode));
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000206 key.offset = start;
David Sterba962a2982014-06-04 18:41:45 +0200207 key.type = BTRFS_EXTENT_DATA_KEY;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000208
209 datasize = btrfs_file_extent_calc_inline_size(cur_size);
210 path->leave_spinning = 1;
211 ret = btrfs_insert_empty_item(trans, root, path, &key,
212 datasize);
David Sterba79b4f4c2017-06-15 19:09:51 +0200213 if (ret)
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000214 goto fail;
Chris Masonc8b97812008-10-29 14:49:59 -0400215 }
216 leaf = path->nodes[0];
217 ei = btrfs_item_ptr(leaf, path->slots[0],
218 struct btrfs_file_extent_item);
219 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
220 btrfs_set_file_extent_type(leaf, ei, BTRFS_FILE_EXTENT_INLINE);
221 btrfs_set_file_extent_encryption(leaf, ei, 0);
222 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
223 btrfs_set_file_extent_ram_bytes(leaf, ei, size);
224 ptr = btrfs_file_extent_inline_start(ei);
225
Li Zefan261507a02010-12-17 14:21:50 +0800226 if (compress_type != BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -0400227 struct page *cpage;
228 int i = 0;
Chris Masond3977122009-01-05 21:25:51 -0500229 while (compressed_size > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -0400230 cpage = compressed_pages[i];
Chris Mason5b050f02008-11-11 09:34:41 -0500231 cur_size = min_t(unsigned long, compressed_size,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300232 PAGE_SIZE);
Chris Masonc8b97812008-10-29 14:49:59 -0400233
Cong Wang7ac687d2011-11-25 23:14:28 +0800234 kaddr = kmap_atomic(cpage);
Chris Masonc8b97812008-10-29 14:49:59 -0400235 write_extent_buffer(leaf, kaddr, ptr, cur_size);
Cong Wang7ac687d2011-11-25 23:14:28 +0800236 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -0400237
238 i++;
239 ptr += cur_size;
240 compressed_size -= cur_size;
241 }
242 btrfs_set_file_extent_compression(leaf, ei,
Li Zefan261507a02010-12-17 14:21:50 +0800243 compress_type);
Chris Masonc8b97812008-10-29 14:49:59 -0400244 } else {
245 page = find_get_page(inode->i_mapping,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300246 start >> PAGE_SHIFT);
Chris Masonc8b97812008-10-29 14:49:59 -0400247 btrfs_set_file_extent_compression(leaf, ei, 0);
Cong Wang7ac687d2011-11-25 23:14:28 +0800248 kaddr = kmap_atomic(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300249 offset = start & (PAGE_SIZE - 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400250 write_extent_buffer(leaf, kaddr + offset, ptr, size);
Cong Wang7ac687d2011-11-25 23:14:28 +0800251 kunmap_atomic(kaddr);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300252 put_page(page);
Chris Masonc8b97812008-10-29 14:49:59 -0400253 }
254 btrfs_mark_buffer_dirty(leaf);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000255 btrfs_release_path(path);
Chris Masonc8b97812008-10-29 14:49:59 -0400256
Yan, Zhengc2167752009-11-12 09:34:21 +0000257 /*
258 * we're an inline extent, so nobody can
259 * extend the file past i_size without locking
260 * a page we already have locked.
261 *
262 * We must do any isize and inode updates
263 * before we unlock the pages. Otherwise we
264 * could end up racing with unlink.
265 */
Chris Masonc8b97812008-10-29 14:49:59 -0400266 BTRFS_I(inode)->disk_i_size = inode->i_size;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100267 ret = btrfs_update_inode(trans, root, inode);
Yan, Zhengc2167752009-11-12 09:34:21 +0000268
Chris Masonc8b97812008-10-29 14:49:59 -0400269fail:
David Sterba79b4f4c2017-06-15 19:09:51 +0200270 return ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400271}
272
273
274/*
275 * conditionally insert an inline extent into the file. This
276 * does the checks required to make sure the data is small enough
277 * to fit as an inline extent.
278 */
Nikolay Borisovd02c0e22018-03-02 09:43:15 +0200279static noinline int cow_file_range_inline(struct inode *inode, u64 start,
Josef Bacik00361582013-08-14 14:02:47 -0400280 u64 end, size_t compressed_size,
281 int compress_type,
282 struct page **compressed_pages)
Chris Masonc8b97812008-10-29 14:49:59 -0400283{
Nikolay Borisovd02c0e22018-03-02 09:43:15 +0200284 struct btrfs_root *root = BTRFS_I(inode)->root;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400285 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik00361582013-08-14 14:02:47 -0400286 struct btrfs_trans_handle *trans;
Chris Masonc8b97812008-10-29 14:49:59 -0400287 u64 isize = i_size_read(inode);
288 u64 actual_end = min(end + 1, isize);
289 u64 inline_len = actual_end - start;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400290 u64 aligned_end = ALIGN(end, fs_info->sectorsize);
Chris Masonc8b97812008-10-29 14:49:59 -0400291 u64 data_len = inline_len;
292 int ret;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000293 struct btrfs_path *path;
294 int extent_inserted = 0;
295 u32 extent_item_size;
Chris Masonc8b97812008-10-29 14:49:59 -0400296
297 if (compressed_size)
298 data_len = compressed_size;
299
300 if (start > 0 ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400301 actual_end > fs_info->sectorsize ||
302 data_len > BTRFS_MAX_INLINE_DATA_SIZE(fs_info) ||
Chris Masonc8b97812008-10-29 14:49:59 -0400303 (!compressed_size &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400304 (actual_end & (fs_info->sectorsize - 1)) == 0) ||
Chris Masonc8b97812008-10-29 14:49:59 -0400305 end + 1 < isize ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400306 data_len > fs_info->max_inline) {
Chris Masonc8b97812008-10-29 14:49:59 -0400307 return 1;
308 }
309
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000310 path = btrfs_alloc_path();
311 if (!path)
312 return -ENOMEM;
313
Josef Bacik00361582013-08-14 14:02:47 -0400314 trans = btrfs_join_transaction(root);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000315 if (IS_ERR(trans)) {
316 btrfs_free_path(path);
Josef Bacik00361582013-08-14 14:02:47 -0400317 return PTR_ERR(trans);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000318 }
Josef Bacik69fe2d72017-10-19 14:15:57 -0400319 trans->block_rsv = &BTRFS_I(inode)->block_rsv;
Josef Bacik00361582013-08-14 14:02:47 -0400320
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000321 if (compressed_size && compressed_pages)
322 extent_item_size = btrfs_file_extent_calc_inline_size(
323 compressed_size);
324 else
325 extent_item_size = btrfs_file_extent_calc_inline_size(
326 inline_len);
327
328 ret = __btrfs_drop_extents(trans, root, inode, path,
329 start, aligned_end, NULL,
330 1, 1, extent_item_size, &extent_inserted);
Josef Bacik00361582013-08-14 14:02:47 -0400331 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -0400332 btrfs_abort_transaction(trans, ret);
Josef Bacik00361582013-08-14 14:02:47 -0400333 goto out;
334 }
Chris Masonc8b97812008-10-29 14:49:59 -0400335
336 if (isize > actual_end)
337 inline_len = min_t(u64, isize, actual_end);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000338 ret = insert_inline_extent(trans, path, extent_inserted,
339 root, inode, start,
Chris Masonc8b97812008-10-29 14:49:59 -0400340 inline_len, compressed_size,
Li Zefanfe3f5662011-03-28 08:30:38 +0000341 compress_type, compressed_pages);
Josef Bacik2adcac12012-05-23 16:10:14 -0400342 if (ret && ret != -ENOSPC) {
Jeff Mahoney66642832016-06-10 18:19:25 -0400343 btrfs_abort_transaction(trans, ret);
Josef Bacik00361582013-08-14 14:02:47 -0400344 goto out;
Josef Bacik2adcac12012-05-23 16:10:14 -0400345 } else if (ret == -ENOSPC) {
Josef Bacik00361582013-08-14 14:02:47 -0400346 ret = 1;
347 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100348 }
Josef Bacik2adcac12012-05-23 16:10:14 -0400349
Josef Bacikbdc20e62013-02-28 13:23:38 -0500350 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
Nikolay Borisovdcdbc052017-02-20 13:50:45 +0200351 btrfs_drop_extent_cache(BTRFS_I(inode), start, aligned_end - 1, 0);
Josef Bacik00361582013-08-14 14:02:47 -0400352out:
Qu Wenruo94ed9382015-09-08 17:25:56 +0800353 /*
354 * Don't forget to free the reserved space, as for inlined extent
355 * it won't count as data extent, free them directly here.
356 * And at reserve time, it's always aligned to page size, so
357 * just free one page here.
358 */
Qu Wenruobc42bda2017-02-27 15:10:39 +0800359 btrfs_qgroup_free_data(inode, NULL, 0, PAGE_SIZE);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000360 btrfs_free_path(path);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400361 btrfs_end_transaction(trans);
Josef Bacik00361582013-08-14 14:02:47 -0400362 return ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400363}
364
Chris Mason771ed682008-11-06 22:02:51 -0500365struct async_extent {
366 u64 start;
367 u64 ram_size;
368 u64 compressed_size;
369 struct page **pages;
370 unsigned long nr_pages;
Li Zefan261507a02010-12-17 14:21:50 +0800371 int compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500372 struct list_head list;
373};
374
375struct async_cow {
376 struct inode *inode;
377 struct btrfs_root *root;
378 struct page *locked_page;
379 u64 start;
380 u64 end;
Liu Bof82b7352017-10-23 23:18:16 -0600381 unsigned int write_flags;
Chris Mason771ed682008-11-06 22:02:51 -0500382 struct list_head extents;
383 struct btrfs_work work;
384};
385
386static noinline int add_async_extent(struct async_cow *cow,
387 u64 start, u64 ram_size,
388 u64 compressed_size,
389 struct page **pages,
Li Zefan261507a02010-12-17 14:21:50 +0800390 unsigned long nr_pages,
391 int compress_type)
Chris Mason771ed682008-11-06 22:02:51 -0500392{
393 struct async_extent *async_extent;
394
395 async_extent = kmalloc(sizeof(*async_extent), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100396 BUG_ON(!async_extent); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -0500397 async_extent->start = start;
398 async_extent->ram_size = ram_size;
399 async_extent->compressed_size = compressed_size;
400 async_extent->pages = pages;
401 async_extent->nr_pages = nr_pages;
Li Zefan261507a02010-12-17 14:21:50 +0800402 async_extent->compress_type = compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500403 list_add_tail(&async_extent->list, &cow->extents);
404 return 0;
405}
406
Timofey Titovetsc2fcdcd2017-07-17 16:52:58 +0300407static inline int inode_need_compress(struct inode *inode, u64 start, u64 end)
Wang Shilongf79707b2014-07-17 11:44:09 +0800408{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400409 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Wang Shilongf79707b2014-07-17 11:44:09 +0800410
411 /* force compress */
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400412 if (btrfs_test_opt(fs_info, FORCE_COMPRESS))
Wang Shilongf79707b2014-07-17 11:44:09 +0800413 return 1;
David Sterbaeec63c62017-07-17 19:41:31 +0200414 /* defrag ioctl */
415 if (BTRFS_I(inode)->defrag_compress)
416 return 1;
Wang Shilongf79707b2014-07-17 11:44:09 +0800417 /* bad compression ratios */
418 if (BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS)
419 return 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400420 if (btrfs_test_opt(fs_info, COMPRESS) ||
Wang Shilongf79707b2014-07-17 11:44:09 +0800421 BTRFS_I(inode)->flags & BTRFS_INODE_COMPRESS ||
David Sterbab52aa8c2017-07-17 19:17:20 +0200422 BTRFS_I(inode)->prop_compress)
Timofey Titovetsc2fcdcd2017-07-17 16:52:58 +0300423 return btrfs_compress_heuristic(inode, start, end);
Wang Shilongf79707b2014-07-17 11:44:09 +0800424 return 0;
425}
426
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200427static inline void inode_should_defrag(struct btrfs_inode *inode,
Anand Jain26d30f82016-12-19 19:09:06 +0800428 u64 start, u64 end, u64 num_bytes, u64 small_write)
429{
430 /* If this is a small write inside eof, kick off a defrag */
431 if (num_bytes < small_write &&
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200432 (start > 0 || end + 1 < inode->disk_i_size))
Anand Jain26d30f82016-12-19 19:09:06 +0800433 btrfs_add_inode_defrag(NULL, inode);
434}
435
Chris Masonc8b97812008-10-29 14:49:59 -0400436/*
Chris Mason771ed682008-11-06 22:02:51 -0500437 * we create compressed extents in two phases. The first
438 * phase compresses a range of pages that have already been
439 * locked (both pages and state bits are locked).
Chris Masonc8b97812008-10-29 14:49:59 -0400440 *
Chris Mason771ed682008-11-06 22:02:51 -0500441 * This is done inside an ordered work queue, and the compression
442 * is spread across many cpus. The actual IO submission is step
443 * two, and the ordered work queue takes care of making sure that
444 * happens in the same order things were put onto the queue by
445 * writepages and friends.
Chris Masonc8b97812008-10-29 14:49:59 -0400446 *
Chris Mason771ed682008-11-06 22:02:51 -0500447 * If this code finds it can't get good compression, it puts an
448 * entry onto the work queue to write the uncompressed bytes. This
449 * makes sure that both compressed inodes and uncompressed inodes
Artem Bityutskiyb2570312012-07-25 18:12:06 +0300450 * are written in the same order that the flusher thread sent them
451 * down.
Chris Masond352ac62008-09-29 15:18:18 -0400452 */
Filipe Mananac44f6492014-10-09 21:15:44 +0100453static noinline void compress_file_range(struct inode *inode,
Chris Mason771ed682008-11-06 22:02:51 -0500454 struct page *locked_page,
455 u64 start, u64 end,
456 struct async_cow *async_cow,
457 int *num_added)
Chris Masonb888db22007-08-27 16:49:44 -0400458{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400459 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400460 u64 blocksize = fs_info->sectorsize;
Chris Masonc8b97812008-10-29 14:49:59 -0400461 u64 actual_end;
Chris Mason42dc7ba2008-12-15 11:44:56 -0500462 u64 isize = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400463 int ret = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400464 struct page **pages = NULL;
465 unsigned long nr_pages;
Chris Masonc8b97812008-10-29 14:49:59 -0400466 unsigned long total_compressed = 0;
467 unsigned long total_in = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400468 int i;
469 int will_compress;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400470 int compress_type = fs_info->compress_type;
Chris Mason4adaa612013-03-26 13:07:00 -0400471 int redirty = 0;
Chris Masonb888db22007-08-27 16:49:44 -0400472
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200473 inode_should_defrag(BTRFS_I(inode), start, end, end - start + 1,
474 SZ_16K);
Chris Mason4cb53002011-05-24 15:35:30 -0400475
Chris Mason42dc7ba2008-12-15 11:44:56 -0500476 actual_end = min_t(u64, isize, end + 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400477again:
478 will_compress = 0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300479 nr_pages = (end >> PAGE_SHIFT) - (start >> PAGE_SHIFT) + 1;
David Sterba069eac72017-02-14 19:36:54 +0100480 BUILD_BUG_ON((BTRFS_MAX_COMPRESSED % PAGE_SIZE) != 0);
481 nr_pages = min_t(unsigned long, nr_pages,
482 BTRFS_MAX_COMPRESSED / PAGE_SIZE);
Chris Masonc8b97812008-10-29 14:49:59 -0400483
Chris Masonf03d9301f2009-02-04 09:31:06 -0500484 /*
485 * we don't want to send crud past the end of i_size through
486 * compression, that's just a waste of CPU time. So, if the
487 * end of the file is before the start of our current
488 * requested range of bytes, we bail out to the uncompressed
489 * cleanup code that can deal with all of this.
490 *
491 * It isn't really the fastest way to fix things, but this is a
492 * very uncommon corner.
493 */
494 if (actual_end <= start)
495 goto cleanup_and_bail_uncompressed;
496
Chris Masonc8b97812008-10-29 14:49:59 -0400497 total_compressed = actual_end - start;
498
Shilong Wang4bcbb332014-10-07 18:44:35 -0400499 /*
500 * skip compression for a small file range(<=blocksize) that
Nicholas D Steeves01327612016-05-19 21:18:45 -0400501 * isn't an inline extent, since it doesn't save disk space at all.
Shilong Wang4bcbb332014-10-07 18:44:35 -0400502 */
503 if (total_compressed <= blocksize &&
504 (start > 0 || end + 1 < BTRFS_I(inode)->disk_i_size))
505 goto cleanup_and_bail_uncompressed;
506
David Sterba069eac72017-02-14 19:36:54 +0100507 total_compressed = min_t(unsigned long, total_compressed,
508 BTRFS_MAX_UNCOMPRESSED);
Chris Masonc8b97812008-10-29 14:49:59 -0400509 total_in = 0;
510 ret = 0;
Chris Masondb945352007-10-15 16:15:53 -0400511
Chris Mason771ed682008-11-06 22:02:51 -0500512 /*
513 * we do compression for mount -o compress and when the
514 * inode has not been flagged as nocompress. This flag can
515 * change at any time if we discover bad compression ratios.
Chris Masonc8b97812008-10-29 14:49:59 -0400516 */
Timofey Titovetsc2fcdcd2017-07-17 16:52:58 +0300517 if (inode_need_compress(inode, start, end)) {
Chris Masonc8b97812008-10-29 14:49:59 -0400518 WARN_ON(pages);
David Sterba31e818f2015-02-20 18:00:26 +0100519 pages = kcalloc(nr_pages, sizeof(struct page *), GFP_NOFS);
Li Zefan560f7d72011-09-08 10:22:01 +0800520 if (!pages) {
521 /* just bail out to the uncompressed code */
522 goto cont;
523 }
Chris Mason179e29e2007-11-01 11:28:41 -0400524
David Sterbaeec63c62017-07-17 19:41:31 +0200525 if (BTRFS_I(inode)->defrag_compress)
526 compress_type = BTRFS_I(inode)->defrag_compress;
527 else if (BTRFS_I(inode)->prop_compress)
David Sterbab52aa8c2017-07-17 19:17:20 +0200528 compress_type = BTRFS_I(inode)->prop_compress;
Li Zefan261507a02010-12-17 14:21:50 +0800529
Chris Mason4adaa612013-03-26 13:07:00 -0400530 /*
531 * we need to call clear_page_dirty_for_io on each
532 * page in the range. Otherwise applications with the file
533 * mmap'd can wander in and change the page contents while
534 * we are compressing them.
535 *
536 * If the compression fails for any reason, we set the pages
537 * dirty again later on.
Timofey Titovetse9679de2017-10-24 01:29:48 +0300538 *
539 * Note that the remaining part is redirtied, the start pointer
540 * has moved, the end is the original one.
Chris Mason4adaa612013-03-26 13:07:00 -0400541 */
Timofey Titovetse9679de2017-10-24 01:29:48 +0300542 if (!redirty) {
543 extent_range_clear_dirty_for_io(inode, start, end);
544 redirty = 1;
545 }
David Sterbaf51d2b52017-09-15 17:36:57 +0200546
547 /* Compression level is applied here and only here */
548 ret = btrfs_compress_pages(
549 compress_type | (fs_info->compress_level << 4),
Li Zefan261507a02010-12-17 14:21:50 +0800550 inode->i_mapping, start,
David Sterba38c31462017-02-14 19:04:07 +0100551 pages,
David Sterba4d3a8002017-02-14 19:04:07 +0100552 &nr_pages,
Li Zefan261507a02010-12-17 14:21:50 +0800553 &total_in,
David Sterbae5d74902017-02-14 19:45:05 +0100554 &total_compressed);
Chris Masonc8b97812008-10-29 14:49:59 -0400555
556 if (!ret) {
557 unsigned long offset = total_compressed &
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300558 (PAGE_SIZE - 1);
David Sterba4d3a8002017-02-14 19:04:07 +0100559 struct page *page = pages[nr_pages - 1];
Chris Masonc8b97812008-10-29 14:49:59 -0400560 char *kaddr;
561
562 /* zero the tail end of the last page, we might be
563 * sending it down to disk
564 */
565 if (offset) {
Cong Wang7ac687d2011-11-25 23:14:28 +0800566 kaddr = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -0400567 memset(kaddr + offset, 0,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300568 PAGE_SIZE - offset);
Cong Wang7ac687d2011-11-25 23:14:28 +0800569 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -0400570 }
571 will_compress = 1;
572 }
573 }
Li Zefan560f7d72011-09-08 10:22:01 +0800574cont:
Chris Masonc8b97812008-10-29 14:49:59 -0400575 if (start == 0) {
576 /* lets try to make an inline extent */
Timofey Titovets6018ba02017-09-15 01:57:26 +0300577 if (ret || total_in < actual_end) {
Chris Masonc8b97812008-10-29 14:49:59 -0400578 /* we didn't compress the entire range, try
Chris Mason771ed682008-11-06 22:02:51 -0500579 * to make an uncompressed inline extent.
Chris Masonc8b97812008-10-29 14:49:59 -0400580 */
Nikolay Borisovd02c0e22018-03-02 09:43:15 +0200581 ret = cow_file_range_inline(inode, start, end, 0,
582 BTRFS_COMPRESS_NONE, NULL);
Chris Masonc8b97812008-10-29 14:49:59 -0400583 } else {
Chris Mason771ed682008-11-06 22:02:51 -0500584 /* try making a compressed inline extent */
Nikolay Borisovd02c0e22018-03-02 09:43:15 +0200585 ret = cow_file_range_inline(inode, start, end,
Li Zefanfe3f5662011-03-28 08:30:38 +0000586 total_compressed,
587 compress_type, pages);
Chris Masonc8b97812008-10-29 14:49:59 -0400588 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100589 if (ret <= 0) {
Josef Bacik151a41b2013-07-29 13:22:24 -0400590 unsigned long clear_flags = EXTENT_DELALLOC |
Josef Bacik8b62f872017-10-19 14:15:55 -0400591 EXTENT_DELALLOC_NEW | EXTENT_DEFRAG |
592 EXTENT_DO_ACCOUNTING;
Filipe Mananae6eb4312014-10-10 10:45:12 +0100593 unsigned long page_error_op;
594
Filipe Mananae6eb4312014-10-10 10:45:12 +0100595 page_error_op = ret < 0 ? PAGE_SET_ERROR : 0;
Josef Bacik151a41b2013-07-29 13:22:24 -0400596
Chris Mason771ed682008-11-06 22:02:51 -0500597 /*
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100598 * inline extent creation worked or returned error,
599 * we don't need to create any more async work items.
600 * Unlock and free up our temp pages.
Josef Bacik8b62f872017-10-19 14:15:55 -0400601 *
602 * We use DO_ACCOUNTING here because we need the
603 * delalloc_release_metadata to be done _after_ we drop
604 * our outstanding extent for clearing delalloc for this
605 * range.
Chris Mason771ed682008-11-06 22:02:51 -0500606 */
Qu Wenruoba8b04c2016-07-19 16:50:36 +0800607 extent_clear_unlock_delalloc(inode, start, end, end,
608 NULL, clear_flags,
609 PAGE_UNLOCK |
Josef Bacikc2790a22013-07-29 11:20:47 -0400610 PAGE_CLEAR_DIRTY |
611 PAGE_SET_WRITEBACK |
Filipe Mananae6eb4312014-10-10 10:45:12 +0100612 page_error_op |
Josef Bacikc2790a22013-07-29 11:20:47 -0400613 PAGE_END_WRITEBACK);
Chris Masonc8b97812008-10-29 14:49:59 -0400614 goto free_pages_out;
615 }
616 }
617
618 if (will_compress) {
619 /*
620 * we aren't doing an inline extent round the compressed size
621 * up to a block size boundary so the allocator does sane
622 * things
623 */
Qu Wenruofda28322013-02-26 08:10:22 +0000624 total_compressed = ALIGN(total_compressed, blocksize);
Chris Masonc8b97812008-10-29 14:49:59 -0400625
626 /*
627 * one last check to make sure the compression is really a
Timofey Titovets170607e2017-06-06 14:41:15 +0300628 * win, compare the page count read with the blocks on disk,
629 * compression must free at least one sector size
Chris Masonc8b97812008-10-29 14:49:59 -0400630 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300631 total_in = ALIGN(total_in, PAGE_SIZE);
Timofey Titovets170607e2017-06-06 14:41:15 +0300632 if (total_compressed + blocksize <= total_in) {
Ashish Samantc8bb0c82016-03-25 19:01:33 -0700633 *num_added += 1;
634
635 /*
636 * The async work queues will take care of doing actual
637 * allocation on disk for these compressed pages, and
638 * will submit them to the elevator.
639 */
Timofey Titovets11708622017-10-03 18:06:01 +0300640 add_async_extent(async_cow, start, total_in,
David Sterba4d3a8002017-02-14 19:04:07 +0100641 total_compressed, pages, nr_pages,
Ashish Samantc8bb0c82016-03-25 19:01:33 -0700642 compress_type);
643
Timofey Titovets11708622017-10-03 18:06:01 +0300644 if (start + total_in < end) {
645 start += total_in;
Ashish Samantc8bb0c82016-03-25 19:01:33 -0700646 pages = NULL;
647 cond_resched();
648 goto again;
649 }
650 return;
Chris Masonc8b97812008-10-29 14:49:59 -0400651 }
652 }
Ashish Samantc8bb0c82016-03-25 19:01:33 -0700653 if (pages) {
Chris Masonc8b97812008-10-29 14:49:59 -0400654 /*
655 * the compression code ran but failed to make things smaller,
656 * free any pages it allocated and our page pointer array
657 */
David Sterba4d3a8002017-02-14 19:04:07 +0100658 for (i = 0; i < nr_pages; i++) {
Chris Mason70b99e62008-10-31 12:46:39 -0400659 WARN_ON(pages[i]->mapping);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300660 put_page(pages[i]);
Chris Masonc8b97812008-10-29 14:49:59 -0400661 }
662 kfree(pages);
663 pages = NULL;
664 total_compressed = 0;
David Sterba4d3a8002017-02-14 19:04:07 +0100665 nr_pages = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400666
667 /* flag the file so we don't compress in the future */
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400668 if (!btrfs_test_opt(fs_info, FORCE_COMPRESS) &&
David Sterbab52aa8c2017-07-17 19:17:20 +0200669 !(BTRFS_I(inode)->prop_compress)) {
Chris Masona555f812010-01-28 16:18:15 -0500670 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
Chris Mason1e701a32010-03-11 09:42:04 -0500671 }
Chris Masonc8b97812008-10-29 14:49:59 -0400672 }
Chris Masonf03d9301f2009-02-04 09:31:06 -0500673cleanup_and_bail_uncompressed:
Ashish Samantc8bb0c82016-03-25 19:01:33 -0700674 /*
675 * No compression, but we still need to write the pages in the file
676 * we've been given so far. redirty the locked page if it corresponds
677 * to our extent and set things up for the async work queue to run
678 * cow_file_range to do the normal delalloc dance.
679 */
680 if (page_offset(locked_page) >= start &&
681 page_offset(locked_page) <= end)
682 __set_page_dirty_nobuffers(locked_page);
683 /* unlocked later on in the async handlers */
684
685 if (redirty)
686 extent_range_redirty_for_io(inode, start, end);
687 add_async_extent(async_cow, start, end - start + 1, 0, NULL, 0,
688 BTRFS_COMPRESS_NONE);
689 *num_added += 1;
Chris Mason771ed682008-11-06 22:02:51 -0500690
Filipe Mananac44f6492014-10-09 21:15:44 +0100691 return;
Chris Mason771ed682008-11-06 22:02:51 -0500692
693free_pages_out:
David Sterba4d3a8002017-02-14 19:04:07 +0100694 for (i = 0; i < nr_pages; i++) {
Chris Mason771ed682008-11-06 22:02:51 -0500695 WARN_ON(pages[i]->mapping);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300696 put_page(pages[i]);
Chris Mason771ed682008-11-06 22:02:51 -0500697 }
Chris Masond3977122009-01-05 21:25:51 -0500698 kfree(pages);
Chris Mason771ed682008-11-06 22:02:51 -0500699}
Chris Mason771ed682008-11-06 22:02:51 -0500700
Filipe Manana40ae8372014-10-06 22:14:24 +0100701static void free_async_extent_pages(struct async_extent *async_extent)
702{
703 int i;
704
705 if (!async_extent->pages)
706 return;
707
708 for (i = 0; i < async_extent->nr_pages; i++) {
709 WARN_ON(async_extent->pages[i]->mapping);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300710 put_page(async_extent->pages[i]);
Filipe Manana40ae8372014-10-06 22:14:24 +0100711 }
712 kfree(async_extent->pages);
713 async_extent->nr_pages = 0;
714 async_extent->pages = NULL;
Chris Mason771ed682008-11-06 22:02:51 -0500715}
716
717/*
718 * phase two of compressed writeback. This is the ordered portion
719 * of the code, which only gets called in the order the work was
720 * queued. We walk all the async extents created by compress_file_range
721 * and send them down to the disk.
722 */
Filipe Mananadec8f172014-10-06 22:14:26 +0100723static noinline void submit_compressed_extents(struct inode *inode,
Chris Mason771ed682008-11-06 22:02:51 -0500724 struct async_cow *async_cow)
725{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400726 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason771ed682008-11-06 22:02:51 -0500727 struct async_extent *async_extent;
728 u64 alloc_hint = 0;
Chris Mason771ed682008-11-06 22:02:51 -0500729 struct btrfs_key ins;
730 struct extent_map *em;
731 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason771ed682008-11-06 22:02:51 -0500732 struct extent_io_tree *io_tree;
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500733 int ret = 0;
Chris Mason771ed682008-11-06 22:02:51 -0500734
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500735again:
Chris Masond3977122009-01-05 21:25:51 -0500736 while (!list_empty(&async_cow->extents)) {
Chris Mason771ed682008-11-06 22:02:51 -0500737 async_extent = list_entry(async_cow->extents.next,
738 struct async_extent, list);
739 list_del(&async_extent->list);
740
741 io_tree = &BTRFS_I(inode)->io_tree;
742
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500743retry:
Chris Mason771ed682008-11-06 22:02:51 -0500744 /* did the compression code fall back to uncompressed IO? */
745 if (!async_extent->pages) {
746 int page_started = 0;
747 unsigned long nr_written = 0;
748
749 lock_extent(io_tree, async_extent->start,
Josef Bacik2ac55d42010-02-03 19:33:23 +0000750 async_extent->start +
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100751 async_extent->ram_size - 1);
Chris Mason771ed682008-11-06 22:02:51 -0500752
753 /* allocate blocks */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500754 ret = cow_file_range(inode, async_cow->locked_page,
755 async_extent->start,
756 async_extent->start +
757 async_extent->ram_size - 1,
Wang Xiaoguangdda32452016-07-11 11:05:29 +0800758 async_extent->start +
759 async_extent->ram_size - 1,
760 &page_started, &nr_written, 0,
761 NULL);
Chris Mason771ed682008-11-06 22:02:51 -0500762
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100763 /* JDM XXX */
764
Chris Mason771ed682008-11-06 22:02:51 -0500765 /*
766 * if page_started, cow_file_range inserted an
767 * inline extent and took care of all the unlocking
768 * and IO for us. Otherwise, we need to submit
769 * all those pages down to the drive.
770 */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500771 if (!page_started && !ret)
Nikolay Borisov5e3ee232017-12-08 15:55:58 +0200772 extent_write_locked_range(inode,
773 async_extent->start,
Chris Masond3977122009-01-05 21:25:51 -0500774 async_extent->start +
Chris Mason771ed682008-11-06 22:02:51 -0500775 async_extent->ram_size - 1,
Chris Mason771ed682008-11-06 22:02:51 -0500776 WB_SYNC_ALL);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500777 else if (ret)
778 unlock_page(async_cow->locked_page);
Chris Mason771ed682008-11-06 22:02:51 -0500779 kfree(async_extent);
780 cond_resched();
781 continue;
782 }
783
784 lock_extent(io_tree, async_extent->start,
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100785 async_extent->start + async_extent->ram_size - 1);
Chris Mason771ed682008-11-06 22:02:51 -0500786
Wang Xiaoguang18513092016-07-25 15:51:40 +0800787 ret = btrfs_reserve_extent(root, async_extent->ram_size,
Chris Mason771ed682008-11-06 22:02:51 -0500788 async_extent->compressed_size,
789 async_extent->compressed_size,
Miao Xiee570fd22014-06-19 10:42:50 +0800790 0, alloc_hint, &ins, 1, 1);
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500791 if (ret) {
Filipe Manana40ae8372014-10-06 22:14:24 +0100792 free_async_extent_pages(async_extent);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500793
Josef Bacikfdf8e2e2013-06-14 16:58:23 -0400794 if (ret == -ENOSPC) {
795 unlock_extent(io_tree, async_extent->start,
796 async_extent->start +
797 async_extent->ram_size - 1);
Liu Boce620032014-07-24 22:48:05 +0800798
799 /*
800 * we need to redirty the pages if we decide to
801 * fallback to uncompressed IO, otherwise we
802 * will not submit these pages down to lower
803 * layers.
804 */
805 extent_range_redirty_for_io(inode,
806 async_extent->start,
807 async_extent->start +
808 async_extent->ram_size - 1);
809
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100810 goto retry;
Josef Bacikfdf8e2e2013-06-14 16:58:23 -0400811 }
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500812 goto out_free;
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500813 }
Yan, Zhengc2167752009-11-12 09:34:21 +0000814 /*
815 * here we're doing allocation and writeback of the
816 * compressed pages
817 */
Liu Bo6f9994d2017-01-31 07:50:22 -0800818 em = create_io_em(inode, async_extent->start,
819 async_extent->ram_size, /* len */
820 async_extent->start, /* orig_start */
821 ins.objectid, /* block_start */
822 ins.offset, /* block_len */
823 ins.offset, /* orig_block_len */
824 async_extent->ram_size, /* ram_bytes */
825 async_extent->compress_type,
826 BTRFS_ORDERED_COMPRESSED);
827 if (IS_ERR(em))
828 /* ret value is not necessary due to void function */
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500829 goto out_free_reserve;
Liu Bo6f9994d2017-01-31 07:50:22 -0800830 free_extent_map(em);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500831
Li Zefan261507a02010-12-17 14:21:50 +0800832 ret = btrfs_add_ordered_extent_compress(inode,
833 async_extent->start,
834 ins.objectid,
835 async_extent->ram_size,
836 ins.offset,
837 BTRFS_ORDERED_COMPRESSED,
838 async_extent->compress_type);
Filipe Mananad9f85962014-08-25 10:43:00 +0100839 if (ret) {
Nikolay Borisovdcdbc052017-02-20 13:50:45 +0200840 btrfs_drop_extent_cache(BTRFS_I(inode),
841 async_extent->start,
Filipe Mananad9f85962014-08-25 10:43:00 +0100842 async_extent->start +
843 async_extent->ram_size - 1, 0);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500844 goto out_free_reserve;
Filipe Mananad9f85962014-08-25 10:43:00 +0100845 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400846 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Chris Mason771ed682008-11-06 22:02:51 -0500847
Chris Mason771ed682008-11-06 22:02:51 -0500848 /*
849 * clear dirty, set writeback and unlock the pages.
850 */
Josef Bacikc2790a22013-07-29 11:20:47 -0400851 extent_clear_unlock_delalloc(inode, async_extent->start,
Chris Masona791e352009-10-08 11:27:10 -0400852 async_extent->start +
853 async_extent->ram_size - 1,
Qu Wenruoba8b04c2016-07-19 16:50:36 +0800854 async_extent->start +
855 async_extent->ram_size - 1,
Josef Bacik151a41b2013-07-29 13:22:24 -0400856 NULL, EXTENT_LOCKED | EXTENT_DELALLOC,
857 PAGE_UNLOCK | PAGE_CLEAR_DIRTY |
Josef Bacikc2790a22013-07-29 11:20:47 -0400858 PAGE_SET_WRITEBACK);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200859 if (btrfs_submit_compressed_write(inode,
Chris Masond3977122009-01-05 21:25:51 -0500860 async_extent->start,
861 async_extent->ram_size,
862 ins.objectid,
863 ins.offset, async_extent->pages,
Liu Bof82b7352017-10-23 23:18:16 -0600864 async_extent->nr_pages,
865 async_cow->write_flags)) {
Filipe Mananafce2a4e2014-10-06 22:14:23 +0100866 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
867 struct page *p = async_extent->pages[0];
868 const u64 start = async_extent->start;
869 const u64 end = start + async_extent->ram_size - 1;
870
871 p->mapping = inode->i_mapping;
872 tree->ops->writepage_end_io_hook(p, start, end,
873 NULL, 0);
874 p->mapping = NULL;
Qu Wenruoba8b04c2016-07-19 16:50:36 +0800875 extent_clear_unlock_delalloc(inode, start, end, end,
876 NULL, 0,
Filipe Mananafce2a4e2014-10-06 22:14:23 +0100877 PAGE_END_WRITEBACK |
878 PAGE_SET_ERROR);
Filipe Manana40ae8372014-10-06 22:14:24 +0100879 free_async_extent_pages(async_extent);
Filipe Mananafce2a4e2014-10-06 22:14:23 +0100880 }
Chris Mason771ed682008-11-06 22:02:51 -0500881 alloc_hint = ins.objectid + ins.offset;
882 kfree(async_extent);
883 cond_resched();
884 }
Filipe Mananadec8f172014-10-06 22:14:26 +0100885 return;
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500886out_free_reserve:
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400887 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400888 btrfs_free_reserved_extent(fs_info, ins.objectid, ins.offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100889out_free:
Josef Bacikc2790a22013-07-29 11:20:47 -0400890 extent_clear_unlock_delalloc(inode, async_extent->start,
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500891 async_extent->start +
892 async_extent->ram_size - 1,
Qu Wenruoba8b04c2016-07-19 16:50:36 +0800893 async_extent->start +
894 async_extent->ram_size - 1,
Josef Bacikc2790a22013-07-29 11:20:47 -0400895 NULL, EXTENT_LOCKED | EXTENT_DELALLOC |
Filipe Mananaa7e3b972017-04-03 10:45:46 +0100896 EXTENT_DELALLOC_NEW |
Josef Bacik151a41b2013-07-29 13:22:24 -0400897 EXTENT_DEFRAG | EXTENT_DO_ACCOUNTING,
898 PAGE_UNLOCK | PAGE_CLEAR_DIRTY |
Filipe Manana704de492014-10-06 22:14:22 +0100899 PAGE_SET_WRITEBACK | PAGE_END_WRITEBACK |
900 PAGE_SET_ERROR);
Filipe Manana40ae8372014-10-06 22:14:24 +0100901 free_async_extent_pages(async_extent);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100902 kfree(async_extent);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500903 goto again;
Chris Mason771ed682008-11-06 22:02:51 -0500904}
905
Josef Bacik4b46fce2010-05-23 11:00:55 -0400906static u64 get_extent_allocation_hint(struct inode *inode, u64 start,
907 u64 num_bytes)
908{
909 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
910 struct extent_map *em;
911 u64 alloc_hint = 0;
912
913 read_lock(&em_tree->lock);
914 em = search_extent_mapping(em_tree, start, num_bytes);
915 if (em) {
916 /*
917 * if block start isn't an actual block number then find the
918 * first block in this inode and use that as a hint. If that
919 * block is also bogus then just don't worry about it.
920 */
921 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
922 free_extent_map(em);
923 em = search_extent_mapping(em_tree, 0, 0);
924 if (em && em->block_start < EXTENT_MAP_LAST_BYTE)
925 alloc_hint = em->block_start;
926 if (em)
927 free_extent_map(em);
928 } else {
929 alloc_hint = em->block_start;
930 free_extent_map(em);
931 }
932 }
933 read_unlock(&em_tree->lock);
934
935 return alloc_hint;
936}
937
Chris Mason771ed682008-11-06 22:02:51 -0500938/*
939 * when extent_io.c finds a delayed allocation range in the file,
940 * the call backs end up in this code. The basic idea is to
941 * allocate extents on disk for the range, and create ordered data structs
942 * in ram to track those extents.
943 *
944 * locked_page is the page that writepage had locked already. We use
945 * it to make sure we don't do extra locks or unlocks.
946 *
947 * *page_started is set to one if we unlock locked_page and do everything
948 * required to start IO on it. It may be clean and already done with
949 * IO when we return.
950 */
Josef Bacik00361582013-08-14 14:02:47 -0400951static noinline int cow_file_range(struct inode *inode,
952 struct page *locked_page,
Wang Xiaoguangdda32452016-07-11 11:05:29 +0800953 u64 start, u64 end, u64 delalloc_end,
954 int *page_started, unsigned long *nr_written,
955 int unlock, struct btrfs_dedupe_hash *hash)
Chris Mason771ed682008-11-06 22:02:51 -0500956{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400957 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik00361582013-08-14 14:02:47 -0400958 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason771ed682008-11-06 22:02:51 -0500959 u64 alloc_hint = 0;
960 u64 num_bytes;
961 unsigned long ram_size;
Filipe Mananaa315e682017-03-06 23:04:20 +0000962 u64 cur_alloc_size = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400963 u64 blocksize = fs_info->sectorsize;
Chris Mason771ed682008-11-06 22:02:51 -0500964 struct btrfs_key ins;
965 struct extent_map *em;
Filipe Mananaa315e682017-03-06 23:04:20 +0000966 unsigned clear_bits;
967 unsigned long page_ops;
968 bool extent_reserved = false;
Chris Mason771ed682008-11-06 22:02:51 -0500969 int ret = 0;
970
Nikolay Borisov70ddc552017-02-20 13:50:35 +0200971 if (btrfs_is_free_space_inode(BTRFS_I(inode))) {
Josef Bacik02ecd2c2013-10-25 16:19:08 -0400972 WARN_ON_ONCE(1);
Josef Bacik29bce2f2014-02-07 12:21:23 -0500973 ret = -EINVAL;
974 goto out_unlock;
Josef Bacik02ecd2c2013-10-25 16:19:08 -0400975 }
Chris Mason771ed682008-11-06 22:02:51 -0500976
Qu Wenruofda28322013-02-26 08:10:22 +0000977 num_bytes = ALIGN(end - start + 1, blocksize);
Chris Mason771ed682008-11-06 22:02:51 -0500978 num_bytes = max(blocksize, num_bytes);
Anand Jain566b1762018-02-15 18:07:59 +0800979 ASSERT(num_bytes <= btrfs_super_total_bytes(fs_info->super_copy));
Chris Mason771ed682008-11-06 22:02:51 -0500980
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200981 inode_should_defrag(BTRFS_I(inode), start, end, num_bytes, SZ_64K);
Chris Mason4cb53002011-05-24 15:35:30 -0400982
Chris Mason771ed682008-11-06 22:02:51 -0500983 if (start == 0) {
984 /* lets try to make an inline extent */
Nikolay Borisovd02c0e22018-03-02 09:43:15 +0200985 ret = cow_file_range_inline(inode, start, end, 0,
986 BTRFS_COMPRESS_NONE, NULL);
Chris Mason771ed682008-11-06 22:02:51 -0500987 if (ret == 0) {
Josef Bacik8b62f872017-10-19 14:15:55 -0400988 /*
989 * We use DO_ACCOUNTING here because we need the
990 * delalloc_release_metadata to be run _after_ we drop
991 * our outstanding extent for clearing delalloc for this
992 * range.
993 */
Qu Wenruoba8b04c2016-07-19 16:50:36 +0800994 extent_clear_unlock_delalloc(inode, start, end,
995 delalloc_end, NULL,
Josef Bacikc2790a22013-07-29 11:20:47 -0400996 EXTENT_LOCKED | EXTENT_DELALLOC |
Josef Bacik8b62f872017-10-19 14:15:55 -0400997 EXTENT_DELALLOC_NEW | EXTENT_DEFRAG |
998 EXTENT_DO_ACCOUNTING, PAGE_UNLOCK |
Josef Bacikc2790a22013-07-29 11:20:47 -0400999 PAGE_CLEAR_DIRTY | PAGE_SET_WRITEBACK |
1000 PAGE_END_WRITEBACK);
Chris Mason771ed682008-11-06 22:02:51 -05001001 *nr_written = *nr_written +
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001002 (end - start + PAGE_SIZE) / PAGE_SIZE;
Chris Mason771ed682008-11-06 22:02:51 -05001003 *page_started = 1;
Chris Mason771ed682008-11-06 22:02:51 -05001004 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001005 } else if (ret < 0) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001006 goto out_unlock;
Chris Mason771ed682008-11-06 22:02:51 -05001007 }
1008 }
Chris Masonc8b97812008-10-29 14:49:59 -04001009
Josef Bacik4b46fce2010-05-23 11:00:55 -04001010 alloc_hint = get_extent_allocation_hint(inode, start, num_bytes);
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02001011 btrfs_drop_extent_cache(BTRFS_I(inode), start,
1012 start + num_bytes - 1, 0);
Chris Mason3b951512008-04-17 11:29:12 -04001013
Anand Jain3752d222018-02-15 12:29:38 +08001014 while (num_bytes > 0) {
1015 cur_alloc_size = num_bytes;
Wang Xiaoguang18513092016-07-25 15:51:40 +08001016 ret = btrfs_reserve_extent(root, cur_alloc_size, cur_alloc_size,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001017 fs_info->sectorsize, 0, alloc_hint,
Miao Xiee570fd22014-06-19 10:42:50 +08001018 &ins, 1, 1);
Josef Bacik00361582013-08-14 14:02:47 -04001019 if (ret < 0)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001020 goto out_unlock;
Filipe Mananaa315e682017-03-06 23:04:20 +00001021 cur_alloc_size = ins.offset;
1022 extent_reserved = true;
Chris Masond3977122009-01-05 21:25:51 -05001023
Chris Mason771ed682008-11-06 22:02:51 -05001024 ram_size = ins.offset;
Liu Bo6f9994d2017-01-31 07:50:22 -08001025 em = create_io_em(inode, start, ins.offset, /* len */
1026 start, /* orig_start */
1027 ins.objectid, /* block_start */
1028 ins.offset, /* block_len */
1029 ins.offset, /* orig_block_len */
1030 ram_size, /* ram_bytes */
1031 BTRFS_COMPRESS_NONE, /* compress_type */
Liu Bo1af4a0a2017-02-13 15:35:09 -08001032 BTRFS_ORDERED_REGULAR /* type */);
Liu Bo6f9994d2017-01-31 07:50:22 -08001033 if (IS_ERR(em))
Liu Boace68ba2013-04-22 10:53:47 +00001034 goto out_reserve;
Liu Bo6f9994d2017-01-31 07:50:22 -08001035 free_extent_map(em);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001036
Chris Masone6dcd2d2008-07-17 12:53:50 -04001037 ret = btrfs_add_ordered_extent(inode, start, ins.objectid,
Chris Mason771ed682008-11-06 22:02:51 -05001038 ram_size, cur_alloc_size, 0);
Liu Boace68ba2013-04-22 10:53:47 +00001039 if (ret)
Filipe Mananad9f85962014-08-25 10:43:00 +01001040 goto out_drop_extent_cache;
Chris Masonc8b97812008-10-29 14:49:59 -04001041
Yan Zheng17d217f2008-12-12 10:03:38 -05001042 if (root->root_key.objectid ==
1043 BTRFS_DATA_RELOC_TREE_OBJECTID) {
1044 ret = btrfs_reloc_clone_csums(inode, start,
1045 cur_alloc_size);
Qu Wenruo4dbd80f2017-03-08 10:25:51 +08001046 /*
1047 * Only drop cache here, and process as normal.
1048 *
1049 * We must not allow extent_clear_unlock_delalloc()
1050 * at out_unlock label to free meta of this ordered
1051 * extent, as its meta should be freed by
1052 * btrfs_finish_ordered_io().
1053 *
1054 * So we must continue until @start is increased to
1055 * skip current ordered extent.
1056 */
Josef Bacik00361582013-08-14 14:02:47 -04001057 if (ret)
Qu Wenruo4dbd80f2017-03-08 10:25:51 +08001058 btrfs_drop_extent_cache(BTRFS_I(inode), start,
1059 start + ram_size - 1, 0);
Yan Zheng17d217f2008-12-12 10:03:38 -05001060 }
1061
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001062 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Filipe Manana9cfa3e32016-04-26 15:39:32 +01001063
Chris Masonc8b97812008-10-29 14:49:59 -04001064 /* we're not doing compressed IO, don't unlock the first
1065 * page (which the caller expects to stay locked), don't
1066 * clear any dirty bits and don't set any writeback bits
Chris Mason8b62b722009-09-02 16:53:46 -04001067 *
1068 * Do set the Private2 bit so we know this page was properly
1069 * setup for writepage
Chris Masonc8b97812008-10-29 14:49:59 -04001070 */
Filipe Mananaa315e682017-03-06 23:04:20 +00001071 page_ops = unlock ? PAGE_UNLOCK : 0;
1072 page_ops |= PAGE_SET_PRIVATE2;
Chris Masona791e352009-10-08 11:27:10 -04001073
Josef Bacikc2790a22013-07-29 11:20:47 -04001074 extent_clear_unlock_delalloc(inode, start,
Qu Wenruoba8b04c2016-07-19 16:50:36 +08001075 start + ram_size - 1,
1076 delalloc_end, locked_page,
Josef Bacikc2790a22013-07-29 11:20:47 -04001077 EXTENT_LOCKED | EXTENT_DELALLOC,
Filipe Mananaa315e682017-03-06 23:04:20 +00001078 page_ops);
Anand Jain3752d222018-02-15 12:29:38 +08001079 if (num_bytes < cur_alloc_size)
1080 num_bytes = 0;
Qu Wenruo4dbd80f2017-03-08 10:25:51 +08001081 else
Anand Jain3752d222018-02-15 12:29:38 +08001082 num_bytes -= cur_alloc_size;
Chris Masonc59f8952007-12-17 20:14:04 -05001083 alloc_hint = ins.objectid + ins.offset;
1084 start += cur_alloc_size;
Filipe Mananaa315e682017-03-06 23:04:20 +00001085 extent_reserved = false;
Qu Wenruo4dbd80f2017-03-08 10:25:51 +08001086
1087 /*
1088 * btrfs_reloc_clone_csums() error, since start is increased
1089 * extent_clear_unlock_delalloc() at out_unlock label won't
1090 * free metadata of current ordered extent, we're OK to exit.
1091 */
1092 if (ret)
1093 goto out_unlock;
Chris Masonb888db22007-08-27 16:49:44 -04001094 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001095out:
Chris Masonbe20aa92007-12-17 20:14:01 -05001096 return ret;
Miao Xieb7d5b0a2012-11-01 07:32:18 +00001097
Filipe Mananad9f85962014-08-25 10:43:00 +01001098out_drop_extent_cache:
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02001099 btrfs_drop_extent_cache(BTRFS_I(inode), start, start + ram_size - 1, 0);
Liu Boace68ba2013-04-22 10:53:47 +00001100out_reserve:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001101 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001102 btrfs_free_reserved_extent(fs_info, ins.objectid, ins.offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001103out_unlock:
Filipe Mananaa7e3b972017-04-03 10:45:46 +01001104 clear_bits = EXTENT_LOCKED | EXTENT_DELALLOC | EXTENT_DELALLOC_NEW |
1105 EXTENT_DEFRAG | EXTENT_CLEAR_META_RESV;
Filipe Mananaa315e682017-03-06 23:04:20 +00001106 page_ops = PAGE_UNLOCK | PAGE_CLEAR_DIRTY | PAGE_SET_WRITEBACK |
1107 PAGE_END_WRITEBACK;
1108 /*
1109 * If we reserved an extent for our delalloc range (or a subrange) and
1110 * failed to create the respective ordered extent, then it means that
1111 * when we reserved the extent we decremented the extent's size from
1112 * the data space_info's bytes_may_use counter and incremented the
1113 * space_info's bytes_reserved counter by the same amount. We must make
1114 * sure extent_clear_unlock_delalloc() does not try to decrement again
1115 * the data space_info's bytes_may_use counter, therefore we do not pass
1116 * it the flag EXTENT_CLEAR_DATA_RESV.
1117 */
1118 if (extent_reserved) {
1119 extent_clear_unlock_delalloc(inode, start,
1120 start + cur_alloc_size,
1121 start + cur_alloc_size,
1122 locked_page,
1123 clear_bits,
1124 page_ops);
1125 start += cur_alloc_size;
1126 if (start >= end)
1127 goto out;
1128 }
Qu Wenruoba8b04c2016-07-19 16:50:36 +08001129 extent_clear_unlock_delalloc(inode, start, end, delalloc_end,
1130 locked_page,
Filipe Mananaa315e682017-03-06 23:04:20 +00001131 clear_bits | EXTENT_CLEAR_DATA_RESV,
1132 page_ops);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001133 goto out;
Chris Mason771ed682008-11-06 22:02:51 -05001134}
Chris Masonc8b97812008-10-29 14:49:59 -04001135
Chris Mason771ed682008-11-06 22:02:51 -05001136/*
1137 * work queue call back to started compression on a file and pages
1138 */
1139static noinline void async_cow_start(struct btrfs_work *work)
1140{
1141 struct async_cow *async_cow;
1142 int num_added = 0;
1143 async_cow = container_of(work, struct async_cow, work);
1144
1145 compress_file_range(async_cow->inode, async_cow->locked_page,
1146 async_cow->start, async_cow->end, async_cow,
1147 &num_added);
Josef Bacik8180ef82012-06-08 15:16:12 -04001148 if (num_added == 0) {
Josef Bacikcb77fcd2012-06-15 12:19:48 -06001149 btrfs_add_delayed_iput(async_cow->inode);
Chris Mason771ed682008-11-06 22:02:51 -05001150 async_cow->inode = NULL;
Josef Bacik8180ef82012-06-08 15:16:12 -04001151 }
Chris Mason771ed682008-11-06 22:02:51 -05001152}
1153
1154/*
1155 * work queue call back to submit previously compressed pages
1156 */
1157static noinline void async_cow_submit(struct btrfs_work *work)
1158{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001159 struct btrfs_fs_info *fs_info;
Chris Mason771ed682008-11-06 22:02:51 -05001160 struct async_cow *async_cow;
1161 struct btrfs_root *root;
1162 unsigned long nr_pages;
1163
1164 async_cow = container_of(work, struct async_cow, work);
1165
1166 root = async_cow->root;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001167 fs_info = root->fs_info;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001168 nr_pages = (async_cow->end - async_cow->start + PAGE_SIZE) >>
1169 PAGE_SHIFT;
Chris Mason771ed682008-11-06 22:02:51 -05001170
David Sterbaee863952015-02-16 19:41:40 +01001171 /*
1172 * atomic_sub_return implies a barrier for waitqueue_active
1173 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001174 if (atomic_sub_return(nr_pages, &fs_info->async_delalloc_pages) <
Byongho Leeee221842015-12-15 01:42:10 +09001175 5 * SZ_1M &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001176 waitqueue_active(&fs_info->async_submit_wait))
1177 wake_up(&fs_info->async_submit_wait);
Chris Mason771ed682008-11-06 22:02:51 -05001178
Chris Masond3977122009-01-05 21:25:51 -05001179 if (async_cow->inode)
Chris Mason771ed682008-11-06 22:02:51 -05001180 submit_compressed_extents(async_cow->inode, async_cow);
Chris Mason771ed682008-11-06 22:02:51 -05001181}
Chris Masonc8b97812008-10-29 14:49:59 -04001182
Chris Mason771ed682008-11-06 22:02:51 -05001183static noinline void async_cow_free(struct btrfs_work *work)
1184{
1185 struct async_cow *async_cow;
1186 async_cow = container_of(work, struct async_cow, work);
Josef Bacik8180ef82012-06-08 15:16:12 -04001187 if (async_cow->inode)
Josef Bacikcb77fcd2012-06-15 12:19:48 -06001188 btrfs_add_delayed_iput(async_cow->inode);
Chris Mason771ed682008-11-06 22:02:51 -05001189 kfree(async_cow);
1190}
1191
1192static int cow_file_range_async(struct inode *inode, struct page *locked_page,
1193 u64 start, u64 end, int *page_started,
Liu Bof82b7352017-10-23 23:18:16 -06001194 unsigned long *nr_written,
1195 unsigned int write_flags)
Chris Mason771ed682008-11-06 22:02:51 -05001196{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001197 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason771ed682008-11-06 22:02:51 -05001198 struct async_cow *async_cow;
1199 struct btrfs_root *root = BTRFS_I(inode)->root;
1200 unsigned long nr_pages;
1201 u64 cur_end;
Chris Mason771ed682008-11-06 22:02:51 -05001202
Chris Masona3429ab2009-10-08 12:30:20 -04001203 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, EXTENT_LOCKED,
David Sterbaae0f1622017-10-31 16:37:52 +01001204 1, 0, NULL);
Chris Masond3977122009-01-05 21:25:51 -05001205 while (start < end) {
Chris Mason771ed682008-11-06 22:02:51 -05001206 async_cow = kmalloc(sizeof(*async_cow), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001207 BUG_ON(!async_cow); /* -ENOMEM */
Josef Bacik8180ef82012-06-08 15:16:12 -04001208 async_cow->inode = igrab(inode);
Chris Mason771ed682008-11-06 22:02:51 -05001209 async_cow->root = root;
1210 async_cow->locked_page = locked_page;
1211 async_cow->start = start;
Liu Bof82b7352017-10-23 23:18:16 -06001212 async_cow->write_flags = write_flags;
Chris Mason771ed682008-11-06 22:02:51 -05001213
Wang Shilongf79707b2014-07-17 11:44:09 +08001214 if (BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001215 !btrfs_test_opt(fs_info, FORCE_COMPRESS))
Chris Mason771ed682008-11-06 22:02:51 -05001216 cur_end = end;
1217 else
Byongho Leeee221842015-12-15 01:42:10 +09001218 cur_end = min(end, start + SZ_512K - 1);
Chris Mason771ed682008-11-06 22:02:51 -05001219
1220 async_cow->end = cur_end;
1221 INIT_LIST_HEAD(&async_cow->extents);
1222
Liu Bo9e0af232014-08-15 23:36:53 +08001223 btrfs_init_work(&async_cow->work,
1224 btrfs_delalloc_helper,
1225 async_cow_start, async_cow_submit,
1226 async_cow_free);
Chris Mason771ed682008-11-06 22:02:51 -05001227
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001228 nr_pages = (cur_end - start + PAGE_SIZE) >>
1229 PAGE_SHIFT;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001230 atomic_add(nr_pages, &fs_info->async_delalloc_pages);
Chris Mason771ed682008-11-06 22:02:51 -05001231
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001232 btrfs_queue_work(fs_info->delalloc_workers, &async_cow->work);
Chris Mason771ed682008-11-06 22:02:51 -05001233
Chris Mason771ed682008-11-06 22:02:51 -05001234 *nr_written += nr_pages;
1235 start = cur_end + 1;
1236 }
1237 *page_started = 1;
1238 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05001239}
1240
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001241static noinline int csum_exist_in_range(struct btrfs_fs_info *fs_info,
Yan Zheng17d217f2008-12-12 10:03:38 -05001242 u64 bytenr, u64 num_bytes)
1243{
1244 int ret;
1245 struct btrfs_ordered_sum *sums;
1246 LIST_HEAD(list);
1247
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001248 ret = btrfs_lookup_csums_range(fs_info->csum_root, bytenr,
Arne Jansena2de7332011-03-08 14:14:00 +01001249 bytenr + num_bytes - 1, &list, 0);
Yan Zheng17d217f2008-12-12 10:03:38 -05001250 if (ret == 0 && list_empty(&list))
1251 return 0;
1252
1253 while (!list_empty(&list)) {
1254 sums = list_entry(list.next, struct btrfs_ordered_sum, list);
1255 list_del(&sums->list);
1256 kfree(sums);
1257 }
Liu Bo58113752018-01-31 17:09:13 -07001258 if (ret < 0)
1259 return ret;
Yan Zheng17d217f2008-12-12 10:03:38 -05001260 return 1;
1261}
1262
Chris Masond352ac62008-09-29 15:18:18 -04001263/*
1264 * when nowcow writeback call back. This checks for snapshots or COW copies
1265 * of the extents that exist in the file, and COWs the file as required.
1266 *
1267 * If no cow copies or snapshots exist, we write directly to the existing
1268 * blocks on disk
1269 */
Chris Mason7f366cf2009-03-12 20:12:45 -04001270static noinline int run_delalloc_nocow(struct inode *inode,
1271 struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001272 u64 start, u64 end, int *page_started, int force,
1273 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001274{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001275 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Masonbe20aa92007-12-17 20:14:01 -05001276 struct btrfs_root *root = BTRFS_I(inode)->root;
1277 struct extent_buffer *leaf;
Chris Masonbe20aa92007-12-17 20:14:01 -05001278 struct btrfs_path *path;
Yan Zheng80ff3852008-10-30 14:20:02 -04001279 struct btrfs_file_extent_item *fi;
Chris Masonbe20aa92007-12-17 20:14:01 -05001280 struct btrfs_key found_key;
Liu Bo6f9994d2017-01-31 07:50:22 -08001281 struct extent_map *em;
Yan Zheng80ff3852008-10-30 14:20:02 -04001282 u64 cow_start;
1283 u64 cur_offset;
1284 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001285 u64 extent_offset;
Yan Zheng80ff3852008-10-30 14:20:02 -04001286 u64 disk_bytenr;
1287 u64 num_bytes;
Josef Bacikb4939682012-12-03 10:31:19 -05001288 u64 disk_num_bytes;
Josef Bacikcc95bef2013-04-04 14:31:27 -04001289 u64 ram_bytes;
Yan Zheng80ff3852008-10-30 14:20:02 -04001290 int extent_type;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001291 int ret, err;
Yan Zhengd899e052008-10-30 14:25:28 -04001292 int type;
Yan Zheng80ff3852008-10-30 14:20:02 -04001293 int nocow;
1294 int check_prev = 1;
Li Zefan82d59022011-04-20 10:33:24 +08001295 bool nolock;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02001296 u64 ino = btrfs_ino(BTRFS_I(inode));
Chris Masonbe20aa92007-12-17 20:14:01 -05001297
1298 path = btrfs_alloc_path();
Josef Bacik17ca04a2012-05-31 15:58:55 -04001299 if (!path) {
Qu Wenruoba8b04c2016-07-19 16:50:36 +08001300 extent_clear_unlock_delalloc(inode, start, end, end,
1301 locked_page,
Josef Bacikc2790a22013-07-29 11:20:47 -04001302 EXTENT_LOCKED | EXTENT_DELALLOC |
Josef Bacik151a41b2013-07-29 13:22:24 -04001303 EXTENT_DO_ACCOUNTING |
1304 EXTENT_DEFRAG, PAGE_UNLOCK |
Josef Bacikc2790a22013-07-29 11:20:47 -04001305 PAGE_CLEAR_DIRTY |
1306 PAGE_SET_WRITEBACK |
1307 PAGE_END_WRITEBACK);
Mark Fashehd8926bb2011-07-13 10:38:47 -07001308 return -ENOMEM;
Josef Bacik17ca04a2012-05-31 15:58:55 -04001309 }
Li Zefan82d59022011-04-20 10:33:24 +08001310
Nikolay Borisov70ddc552017-02-20 13:50:35 +02001311 nolock = btrfs_is_free_space_inode(BTRFS_I(inode));
Li Zefan82d59022011-04-20 10:33:24 +08001312
Yan Zheng80ff3852008-10-30 14:20:02 -04001313 cow_start = (u64)-1;
1314 cur_offset = start;
1315 while (1) {
Liu Boe4c3b2d2017-01-30 12:25:28 -08001316 ret = btrfs_lookup_file_extent(NULL, root, path, ino,
Yan Zheng80ff3852008-10-30 14:20:02 -04001317 cur_offset, 0);
Josef Bacikd788a342013-10-25 16:55:08 -04001318 if (ret < 0)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001319 goto error;
Yan Zheng80ff3852008-10-30 14:20:02 -04001320 if (ret > 0 && path->slots[0] > 0 && check_prev) {
1321 leaf = path->nodes[0];
1322 btrfs_item_key_to_cpu(leaf, &found_key,
1323 path->slots[0] - 1);
Li Zefan33345d012011-04-20 10:31:50 +08001324 if (found_key.objectid == ino &&
Yan Zheng80ff3852008-10-30 14:20:02 -04001325 found_key.type == BTRFS_EXTENT_DATA_KEY)
1326 path->slots[0]--;
1327 }
1328 check_prev = 0;
1329next_slot:
1330 leaf = path->nodes[0];
1331 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1332 ret = btrfs_next_leaf(root, path);
Liu Boe8916692018-01-25 11:02:50 -07001333 if (ret < 0) {
1334 if (cow_start != (u64)-1)
1335 cur_offset = cow_start;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001336 goto error;
Liu Boe8916692018-01-25 11:02:50 -07001337 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001338 if (ret > 0)
1339 break;
1340 leaf = path->nodes[0];
1341 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001342
Yan Zheng80ff3852008-10-30 14:20:02 -04001343 nocow = 0;
1344 disk_bytenr = 0;
Yan Zheng17d217f2008-12-12 10:03:38 -05001345 num_bytes = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001346 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05001347
Filipe Manana1d512cb2015-11-09 00:33:58 +00001348 if (found_key.objectid > ino)
1349 break;
1350 if (WARN_ON_ONCE(found_key.objectid < ino) ||
1351 found_key.type < BTRFS_EXTENT_DATA_KEY) {
1352 path->slots[0]++;
1353 goto next_slot;
1354 }
1355 if (found_key.type > BTRFS_EXTENT_DATA_KEY ||
Yan Zheng80ff3852008-10-30 14:20:02 -04001356 found_key.offset > end)
1357 break;
Chris Masonbe20aa92007-12-17 20:14:01 -05001358
Yan Zheng80ff3852008-10-30 14:20:02 -04001359 if (found_key.offset > cur_offset) {
1360 extent_end = found_key.offset;
Chris Masone9061e22009-10-09 09:57:45 -04001361 extent_type = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001362 goto out_check;
1363 }
Chris Masonc31f8832008-01-08 15:46:31 -05001364
Yan Zheng80ff3852008-10-30 14:20:02 -04001365 fi = btrfs_item_ptr(leaf, path->slots[0],
1366 struct btrfs_file_extent_item);
1367 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Masonbe20aa92007-12-17 20:14:01 -05001368
Josef Bacikcc95bef2013-04-04 14:31:27 -04001369 ram_bytes = btrfs_file_extent_ram_bytes(leaf, fi);
Yan Zhengd899e052008-10-30 14:25:28 -04001370 if (extent_type == BTRFS_FILE_EXTENT_REG ||
1371 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001372 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001373 extent_offset = btrfs_file_extent_offset(leaf, fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001374 extent_end = found_key.offset +
1375 btrfs_file_extent_num_bytes(leaf, fi);
Josef Bacikb4939682012-12-03 10:31:19 -05001376 disk_num_bytes =
1377 btrfs_file_extent_disk_num_bytes(leaf, fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001378 if (extent_end <= start) {
1379 path->slots[0]++;
1380 goto next_slot;
1381 }
Yan Zheng17d217f2008-12-12 10:03:38 -05001382 if (disk_bytenr == 0)
1383 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001384 if (btrfs_file_extent_compression(leaf, fi) ||
1385 btrfs_file_extent_encryption(leaf, fi) ||
1386 btrfs_file_extent_other_encoding(leaf, fi))
1387 goto out_check;
Yan Zhengd899e052008-10-30 14:25:28 -04001388 if (extent_type == BTRFS_FILE_EXTENT_REG && !force)
1389 goto out_check;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001390 if (btrfs_extent_readonly(fs_info, disk_bytenr))
Yan Zheng80ff3852008-10-30 14:20:02 -04001391 goto out_check;
Liu Bo58113752018-01-31 17:09:13 -07001392 ret = btrfs_cross_ref_exist(root, ino,
1393 found_key.offset -
1394 extent_offset, disk_bytenr);
1395 if (ret) {
1396 /*
1397 * ret could be -EIO if the above fails to read
1398 * metadata.
1399 */
1400 if (ret < 0) {
1401 if (cow_start != (u64)-1)
1402 cur_offset = cow_start;
1403 goto error;
1404 }
1405
1406 WARN_ON_ONCE(nolock);
Yan Zheng17d217f2008-12-12 10:03:38 -05001407 goto out_check;
Liu Bo58113752018-01-31 17:09:13 -07001408 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001409 disk_bytenr += extent_offset;
Yan Zheng17d217f2008-12-12 10:03:38 -05001410 disk_bytenr += cur_offset - found_key.offset;
1411 num_bytes = min(end + 1, extent_end) - cur_offset;
1412 /*
Wang Shilonge9894fd2014-03-27 11:12:25 +08001413 * if there are pending snapshots for this root,
1414 * we fall into common COW way.
1415 */
1416 if (!nolock) {
David Sterbaea14b57f2017-06-22 02:19:11 +02001417 err = btrfs_start_write_no_snapshotting(root);
Wang Shilonge9894fd2014-03-27 11:12:25 +08001418 if (!err)
1419 goto out_check;
1420 }
1421 /*
Yan Zheng17d217f2008-12-12 10:03:38 -05001422 * force cow if csum exists in the range.
1423 * this ensure that csum for a given extent are
1424 * either valid or do not exist.
1425 */
Liu Bo58113752018-01-31 17:09:13 -07001426 ret = csum_exist_in_range(fs_info, disk_bytenr,
1427 num_bytes);
1428 if (ret) {
Robbie Ko91e1f562016-10-07 10:01:29 +08001429 if (!nolock)
David Sterbaea14b57f2017-06-22 02:19:11 +02001430 btrfs_end_write_no_snapshotting(root);
Liu Bo58113752018-01-31 17:09:13 -07001431
1432 /*
1433 * ret could be -EIO if the above fails to read
1434 * metadata.
1435 */
1436 if (ret < 0) {
1437 if (cow_start != (u64)-1)
1438 cur_offset = cow_start;
1439 goto error;
1440 }
1441 WARN_ON_ONCE(nolock);
Yan Zheng17d217f2008-12-12 10:03:38 -05001442 goto out_check;
Robbie Ko91e1f562016-10-07 10:01:29 +08001443 }
1444 if (!btrfs_inc_nocow_writers(fs_info, disk_bytenr)) {
1445 if (!nolock)
David Sterbaea14b57f2017-06-22 02:19:11 +02001446 btrfs_end_write_no_snapshotting(root);
Filipe Mananaf78c4362016-05-09 13:15:41 +01001447 goto out_check;
Robbie Ko91e1f562016-10-07 10:01:29 +08001448 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001449 nocow = 1;
1450 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1451 extent_end = found_key.offset +
Chris Mason514ac8a2014-01-03 21:07:00 -08001452 btrfs_file_extent_inline_len(leaf,
1453 path->slots[0], fi);
Jeff Mahoneyda170662016-06-15 09:22:56 -04001454 extent_end = ALIGN(extent_end,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001455 fs_info->sectorsize);
Yan Zheng80ff3852008-10-30 14:20:02 -04001456 } else {
1457 BUG_ON(1);
1458 }
1459out_check:
1460 if (extent_end <= start) {
1461 path->slots[0]++;
Wang Shilonge9894fd2014-03-27 11:12:25 +08001462 if (!nolock && nocow)
David Sterbaea14b57f2017-06-22 02:19:11 +02001463 btrfs_end_write_no_snapshotting(root);
Filipe Mananaf78c4362016-05-09 13:15:41 +01001464 if (nocow)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001465 btrfs_dec_nocow_writers(fs_info, disk_bytenr);
Yan Zheng80ff3852008-10-30 14:20:02 -04001466 goto next_slot;
1467 }
1468 if (!nocow) {
1469 if (cow_start == (u64)-1)
1470 cow_start = cur_offset;
1471 cur_offset = extent_end;
1472 if (cur_offset > end)
1473 break;
1474 path->slots[0]++;
1475 goto next_slot;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001476 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001477
David Sterbab3b4aa72011-04-21 01:20:15 +02001478 btrfs_release_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001479 if (cow_start != (u64)-1) {
Josef Bacik00361582013-08-14 14:02:47 -04001480 ret = cow_file_range(inode, locked_page,
1481 cow_start, found_key.offset - 1,
Wang Xiaoguangdda32452016-07-11 11:05:29 +08001482 end, page_started, nr_written, 1,
1483 NULL);
Wang Shilonge9894fd2014-03-27 11:12:25 +08001484 if (ret) {
1485 if (!nolock && nocow)
David Sterbaea14b57f2017-06-22 02:19:11 +02001486 btrfs_end_write_no_snapshotting(root);
Filipe Mananaf78c4362016-05-09 13:15:41 +01001487 if (nocow)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001488 btrfs_dec_nocow_writers(fs_info,
Filipe Mananaf78c4362016-05-09 13:15:41 +01001489 disk_bytenr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001490 goto error;
Wang Shilonge9894fd2014-03-27 11:12:25 +08001491 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001492 cow_start = (u64)-1;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001493 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001494
Yan Zhengd899e052008-10-30 14:25:28 -04001495 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Liu Bo6f9994d2017-01-31 07:50:22 -08001496 u64 orig_start = found_key.offset - extent_offset;
1497
1498 em = create_io_em(inode, cur_offset, num_bytes,
1499 orig_start,
1500 disk_bytenr, /* block_start */
1501 num_bytes, /* block_len */
1502 disk_num_bytes, /* orig_block_len */
1503 ram_bytes, BTRFS_COMPRESS_NONE,
1504 BTRFS_ORDERED_PREALLOC);
1505 if (IS_ERR(em)) {
1506 if (!nolock && nocow)
David Sterbaea14b57f2017-06-22 02:19:11 +02001507 btrfs_end_write_no_snapshotting(root);
Liu Bo6f9994d2017-01-31 07:50:22 -08001508 if (nocow)
1509 btrfs_dec_nocow_writers(fs_info,
1510 disk_bytenr);
1511 ret = PTR_ERR(em);
1512 goto error;
Yan Zhengd899e052008-10-30 14:25:28 -04001513 }
Liu Bo6f9994d2017-01-31 07:50:22 -08001514 free_extent_map(em);
1515 }
1516
1517 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zhengd899e052008-10-30 14:25:28 -04001518 type = BTRFS_ORDERED_PREALLOC;
1519 } else {
1520 type = BTRFS_ORDERED_NOCOW;
1521 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001522
1523 ret = btrfs_add_ordered_extent(inode, cur_offset, disk_bytenr,
Yan Zhengd899e052008-10-30 14:25:28 -04001524 num_bytes, num_bytes, type);
Filipe Mananaf78c4362016-05-09 13:15:41 +01001525 if (nocow)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001526 btrfs_dec_nocow_writers(fs_info, disk_bytenr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001527 BUG_ON(ret); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -05001528
Yan, Zhengefa56462010-05-16 10:49:59 -04001529 if (root->root_key.objectid ==
Qu Wenruo4dbd80f2017-03-08 10:25:51 +08001530 BTRFS_DATA_RELOC_TREE_OBJECTID)
1531 /*
1532 * Error handled later, as we must prevent
1533 * extent_clear_unlock_delalloc() in error handler
1534 * from freeing metadata of created ordered extent.
1535 */
Yan, Zhengefa56462010-05-16 10:49:59 -04001536 ret = btrfs_reloc_clone_csums(inode, cur_offset,
1537 num_bytes);
Yan, Zhengefa56462010-05-16 10:49:59 -04001538
Josef Bacikc2790a22013-07-29 11:20:47 -04001539 extent_clear_unlock_delalloc(inode, cur_offset,
Qu Wenruoba8b04c2016-07-19 16:50:36 +08001540 cur_offset + num_bytes - 1, end,
Josef Bacikc2790a22013-07-29 11:20:47 -04001541 locked_page, EXTENT_LOCKED |
Wang Xiaoguang18513092016-07-25 15:51:40 +08001542 EXTENT_DELALLOC |
1543 EXTENT_CLEAR_DATA_RESV,
1544 PAGE_UNLOCK | PAGE_SET_PRIVATE2);
1545
Wang Shilonge9894fd2014-03-27 11:12:25 +08001546 if (!nolock && nocow)
David Sterbaea14b57f2017-06-22 02:19:11 +02001547 btrfs_end_write_no_snapshotting(root);
Yan Zheng80ff3852008-10-30 14:20:02 -04001548 cur_offset = extent_end;
Qu Wenruo4dbd80f2017-03-08 10:25:51 +08001549
1550 /*
1551 * btrfs_reloc_clone_csums() error, now we're OK to call error
1552 * handler, as metadata for created ordered extent will only
1553 * be freed by btrfs_finish_ordered_io().
1554 */
1555 if (ret)
1556 goto error;
Yan Zheng80ff3852008-10-30 14:20:02 -04001557 if (cur_offset > end)
1558 break;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001559 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001560 btrfs_release_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001561
Josef Bacik17ca04a2012-05-31 15:58:55 -04001562 if (cur_offset <= end && cow_start == (u64)-1) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001563 cow_start = cur_offset;
Josef Bacik17ca04a2012-05-31 15:58:55 -04001564 cur_offset = end;
1565 }
1566
Yan Zheng80ff3852008-10-30 14:20:02 -04001567 if (cow_start != (u64)-1) {
Wang Xiaoguangdda32452016-07-11 11:05:29 +08001568 ret = cow_file_range(inode, locked_page, cow_start, end, end,
1569 page_started, nr_written, 1, NULL);
Josef Bacikd788a342013-10-25 16:55:08 -04001570 if (ret)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001571 goto error;
Yan Zheng80ff3852008-10-30 14:20:02 -04001572 }
1573
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001574error:
Josef Bacik17ca04a2012-05-31 15:58:55 -04001575 if (ret && cur_offset < end)
Qu Wenruoba8b04c2016-07-19 16:50:36 +08001576 extent_clear_unlock_delalloc(inode, cur_offset, end, end,
Josef Bacikc2790a22013-07-29 11:20:47 -04001577 locked_page, EXTENT_LOCKED |
Josef Bacik151a41b2013-07-29 13:22:24 -04001578 EXTENT_DELALLOC | EXTENT_DEFRAG |
1579 EXTENT_DO_ACCOUNTING, PAGE_UNLOCK |
1580 PAGE_CLEAR_DIRTY |
Josef Bacikc2790a22013-07-29 11:20:47 -04001581 PAGE_SET_WRITEBACK |
1582 PAGE_END_WRITEBACK);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001583 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001584 return ret;
Chris Masonbe20aa92007-12-17 20:14:01 -05001585}
1586
Wang Shilong47059d92014-07-03 18:22:07 +08001587static inline int need_force_cow(struct inode *inode, u64 start, u64 end)
1588{
1589
1590 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) &&
1591 !(BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC))
1592 return 0;
1593
1594 /*
1595 * @defrag_bytes is a hint value, no spinlock held here,
1596 * if is not zero, it means the file is defragging.
1597 * Force cow if given extent needs to be defragged.
1598 */
1599 if (BTRFS_I(inode)->defrag_bytes &&
1600 test_range_bit(&BTRFS_I(inode)->io_tree, start, end,
1601 EXTENT_DEFRAG, 0, NULL))
1602 return 1;
1603
1604 return 0;
1605}
1606
Chris Masond352ac62008-09-29 15:18:18 -04001607/*
1608 * extent_io.c call back to do delayed allocation processing
1609 */
Josef Bacikc6100a42017-05-05 11:57:13 -04001610static int run_delalloc_range(void *private_data, struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001611 u64 start, u64 end, int *page_started,
Liu Bof82b7352017-10-23 23:18:16 -06001612 unsigned long *nr_written,
1613 struct writeback_control *wbc)
Chris Masonbe20aa92007-12-17 20:14:01 -05001614{
Josef Bacikc6100a42017-05-05 11:57:13 -04001615 struct inode *inode = private_data;
Chris Masonbe20aa92007-12-17 20:14:01 -05001616 int ret;
Wang Shilong47059d92014-07-03 18:22:07 +08001617 int force_cow = need_force_cow(inode, start, end);
Liu Bof82b7352017-10-23 23:18:16 -06001618 unsigned int write_flags = wbc_to_write_flags(wbc);
Chris Masona2135012008-06-25 16:01:30 -04001619
Wang Shilong47059d92014-07-03 18:22:07 +08001620 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW && !force_cow) {
Chris Masonc8b97812008-10-29 14:49:59 -04001621 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001622 page_started, 1, nr_written);
Wang Shilong47059d92014-07-03 18:22:07 +08001623 } else if (BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC && !force_cow) {
Yan Zhengd899e052008-10-30 14:25:28 -04001624 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001625 page_started, 0, nr_written);
Timofey Titovetsc2fcdcd2017-07-17 16:52:58 +03001626 } else if (!inode_need_compress(inode, start, end)) {
Wang Xiaoguangdda32452016-07-11 11:05:29 +08001627 ret = cow_file_range(inode, locked_page, start, end, end,
1628 page_started, nr_written, 1, NULL);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001629 } else {
1630 set_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
1631 &BTRFS_I(inode)->runtime_flags);
Chris Mason771ed682008-11-06 22:02:51 -05001632 ret = cow_file_range_async(inode, locked_page, start, end,
Liu Bof82b7352017-10-23 23:18:16 -06001633 page_started, nr_written,
1634 write_flags);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001635 }
Qu Wenruo524272602017-03-08 10:25:52 +08001636 if (ret)
1637 btrfs_cleanup_ordered_extents(inode, start, end - start + 1);
Chris Masonb888db22007-08-27 16:49:44 -04001638 return ret;
1639}
1640
Josef Bacikc6100a42017-05-05 11:57:13 -04001641static void btrfs_split_extent_hook(void *private_data,
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001642 struct extent_state *orig, u64 split)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001643{
Josef Bacikc6100a42017-05-05 11:57:13 -04001644 struct inode *inode = private_data;
Josef Bacikdcab6a32015-02-11 15:08:59 -05001645 u64 size;
1646
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001647 /* not delalloc, ignore it */
Josef Bacik9ed74f22009-09-11 16:12:44 -04001648 if (!(orig->state & EXTENT_DELALLOC))
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001649 return;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001650
Josef Bacikdcab6a32015-02-11 15:08:59 -05001651 size = orig->end - orig->start + 1;
1652 if (size > BTRFS_MAX_EXTENT_SIZE) {
David Sterba823bb202017-01-04 11:09:51 +01001653 u32 num_extents;
Josef Bacikdcab6a32015-02-11 15:08:59 -05001654 u64 new_size;
1655
1656 /*
Josef Bacikba117212015-03-13 15:01:24 -04001657 * See the explanation in btrfs_merge_extent_hook, the same
1658 * applies here, just in reverse.
Josef Bacikdcab6a32015-02-11 15:08:59 -05001659 */
1660 new_size = orig->end - split + 1;
David Sterba823bb202017-01-04 11:09:51 +01001661 num_extents = count_max_extents(new_size);
Josef Bacikba117212015-03-13 15:01:24 -04001662 new_size = split - orig->start;
David Sterba823bb202017-01-04 11:09:51 +01001663 num_extents += count_max_extents(new_size);
1664 if (count_max_extents(size) >= num_extents)
Josef Bacikdcab6a32015-02-11 15:08:59 -05001665 return;
1666 }
1667
Josef Bacik9e0baf62011-07-15 15:16:44 +00001668 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacik8b62f872017-10-19 14:15:55 -04001669 btrfs_mod_outstanding_extents(BTRFS_I(inode), 1);
Josef Bacik9e0baf62011-07-15 15:16:44 +00001670 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001671}
1672
1673/*
1674 * extent_io.c merge_extent_hook, used to track merged delayed allocation
1675 * extents so we can keep track of new extents that are just merged onto old
1676 * extents, such as when we are doing sequential writes, so we can properly
1677 * account for the metadata space we'll need.
1678 */
Josef Bacikc6100a42017-05-05 11:57:13 -04001679static void btrfs_merge_extent_hook(void *private_data,
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001680 struct extent_state *new,
1681 struct extent_state *other)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001682{
Josef Bacikc6100a42017-05-05 11:57:13 -04001683 struct inode *inode = private_data;
Josef Bacikdcab6a32015-02-11 15:08:59 -05001684 u64 new_size, old_size;
David Sterba823bb202017-01-04 11:09:51 +01001685 u32 num_extents;
Josef Bacikdcab6a32015-02-11 15:08:59 -05001686
Josef Bacik9ed74f22009-09-11 16:12:44 -04001687 /* not delalloc, ignore it */
1688 if (!(other->state & EXTENT_DELALLOC))
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001689 return;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001690
Josef Bacik8461a3d2015-03-13 15:12:08 -04001691 if (new->start > other->start)
1692 new_size = new->end - other->start + 1;
1693 else
1694 new_size = other->end - new->start + 1;
Josef Bacikdcab6a32015-02-11 15:08:59 -05001695
1696 /* we're not bigger than the max, unreserve the space and go */
1697 if (new_size <= BTRFS_MAX_EXTENT_SIZE) {
1698 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacik8b62f872017-10-19 14:15:55 -04001699 btrfs_mod_outstanding_extents(BTRFS_I(inode), -1);
Josef Bacikdcab6a32015-02-11 15:08:59 -05001700 spin_unlock(&BTRFS_I(inode)->lock);
1701 return;
1702 }
1703
1704 /*
Josef Bacikba117212015-03-13 15:01:24 -04001705 * We have to add up either side to figure out how many extents were
1706 * accounted for before we merged into one big extent. If the number of
1707 * extents we accounted for is <= the amount we need for the new range
1708 * then we can return, otherwise drop. Think of it like this
1709 *
1710 * [ 4k][MAX_SIZE]
1711 *
1712 * So we've grown the extent by a MAX_SIZE extent, this would mean we
1713 * need 2 outstanding extents, on one side we have 1 and the other side
1714 * we have 1 so they are == and we can return. But in this case
1715 *
1716 * [MAX_SIZE+4k][MAX_SIZE+4k]
1717 *
1718 * Each range on their own accounts for 2 extents, but merged together
1719 * they are only 3 extents worth of accounting, so we need to drop in
1720 * this case.
Josef Bacikdcab6a32015-02-11 15:08:59 -05001721 */
Josef Bacikba117212015-03-13 15:01:24 -04001722 old_size = other->end - other->start + 1;
David Sterba823bb202017-01-04 11:09:51 +01001723 num_extents = count_max_extents(old_size);
Josef Bacikba117212015-03-13 15:01:24 -04001724 old_size = new->end - new->start + 1;
David Sterba823bb202017-01-04 11:09:51 +01001725 num_extents += count_max_extents(old_size);
1726 if (count_max_extents(new_size) >= num_extents)
Josef Bacikdcab6a32015-02-11 15:08:59 -05001727 return;
1728
Josef Bacik9e0baf62011-07-15 15:16:44 +00001729 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacik8b62f872017-10-19 14:15:55 -04001730 btrfs_mod_outstanding_extents(BTRFS_I(inode), -1);
Josef Bacik9e0baf62011-07-15 15:16:44 +00001731 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001732}
1733
Miao Xieeb73c1b2013-05-15 07:48:22 +00001734static void btrfs_add_delalloc_inodes(struct btrfs_root *root,
1735 struct inode *inode)
1736{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001737 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
1738
Miao Xieeb73c1b2013-05-15 07:48:22 +00001739 spin_lock(&root->delalloc_lock);
1740 if (list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1741 list_add_tail(&BTRFS_I(inode)->delalloc_inodes,
1742 &root->delalloc_inodes);
1743 set_bit(BTRFS_INODE_IN_DELALLOC_LIST,
1744 &BTRFS_I(inode)->runtime_flags);
1745 root->nr_delalloc_inodes++;
1746 if (root->nr_delalloc_inodes == 1) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001747 spin_lock(&fs_info->delalloc_root_lock);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001748 BUG_ON(!list_empty(&root->delalloc_root));
1749 list_add_tail(&root->delalloc_root,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001750 &fs_info->delalloc_roots);
1751 spin_unlock(&fs_info->delalloc_root_lock);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001752 }
1753 }
1754 spin_unlock(&root->delalloc_lock);
1755}
1756
1757static void btrfs_del_delalloc_inode(struct btrfs_root *root,
Nikolay Borisov9e3e97f2017-02-20 13:51:07 +02001758 struct btrfs_inode *inode)
Miao Xieeb73c1b2013-05-15 07:48:22 +00001759{
Nikolay Borisov9e3e97f2017-02-20 13:51:07 +02001760 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001761
Miao Xieeb73c1b2013-05-15 07:48:22 +00001762 spin_lock(&root->delalloc_lock);
Nikolay Borisov9e3e97f2017-02-20 13:51:07 +02001763 if (!list_empty(&inode->delalloc_inodes)) {
1764 list_del_init(&inode->delalloc_inodes);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001765 clear_bit(BTRFS_INODE_IN_DELALLOC_LIST,
Nikolay Borisov9e3e97f2017-02-20 13:51:07 +02001766 &inode->runtime_flags);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001767 root->nr_delalloc_inodes--;
1768 if (!root->nr_delalloc_inodes) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001769 spin_lock(&fs_info->delalloc_root_lock);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001770 BUG_ON(list_empty(&root->delalloc_root));
1771 list_del_init(&root->delalloc_root);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001772 spin_unlock(&fs_info->delalloc_root_lock);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001773 }
1774 }
1775 spin_unlock(&root->delalloc_lock);
1776}
1777
Chris Masond352ac62008-09-29 15:18:18 -04001778/*
1779 * extent_io.c set_bit_hook, used to track delayed allocation
1780 * bytes in this file, and to maintain the list of inodes that
1781 * have pending delalloc work to be done.
1782 */
Josef Bacikc6100a42017-05-05 11:57:13 -04001783static void btrfs_set_bit_hook(void *private_data,
David Sterba9ee49a042015-01-14 19:52:13 +01001784 struct extent_state *state, unsigned *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001785{
Josef Bacikc6100a42017-05-05 11:57:13 -04001786 struct inode *inode = private_data;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001787
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001788 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
1789
Wang Shilong47059d92014-07-03 18:22:07 +08001790 if ((*bits & EXTENT_DEFRAG) && !(*bits & EXTENT_DELALLOC))
1791 WARN_ON(1);
Chris Mason75eff682008-12-15 15:54:40 -05001792 /*
1793 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00001794 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05001795 * bit, which is only set or cleared with irqs on
1796 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001797 if (!(state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001798 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001799 u64 len = state->end + 1 - state->start;
Josef Bacik8b62f872017-10-19 14:15:55 -04001800 u32 num_extents = count_max_extents(len);
Nikolay Borisov70ddc552017-02-20 13:50:35 +02001801 bool do_list = !btrfs_is_free_space_inode(BTRFS_I(inode));
Josef Bacik9ed74f22009-09-11 16:12:44 -04001802
Josef Bacik8b62f872017-10-19 14:15:55 -04001803 spin_lock(&BTRFS_I(inode)->lock);
1804 btrfs_mod_outstanding_extents(BTRFS_I(inode), num_extents);
1805 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik287a0ab2010-03-19 18:07:23 +00001806
Josef Bacik6a3891c2015-03-16 17:38:52 -04001807 /* For sanity tests */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001808 if (btrfs_is_testing(fs_info))
Josef Bacik6a3891c2015-03-16 17:38:52 -04001809 return;
1810
Nikolay Borisov104b4e52017-06-20 21:01:20 +03001811 percpu_counter_add_batch(&fs_info->delalloc_bytes, len,
1812 fs_info->delalloc_batch);
Miao Xiedf0af1a2013-01-29 10:11:59 +00001813 spin_lock(&BTRFS_I(inode)->lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001814 BTRFS_I(inode)->delalloc_bytes += len;
Wang Shilong47059d92014-07-03 18:22:07 +08001815 if (*bits & EXTENT_DEFRAG)
1816 BTRFS_I(inode)->defrag_bytes += len;
Miao Xiedf0af1a2013-01-29 10:11:59 +00001817 if (do_list && !test_bit(BTRFS_INODE_IN_DELALLOC_LIST,
Miao Xieeb73c1b2013-05-15 07:48:22 +00001818 &BTRFS_I(inode)->runtime_flags))
1819 btrfs_add_delalloc_inodes(root, inode);
Miao Xiedf0af1a2013-01-29 10:11:59 +00001820 spin_unlock(&BTRFS_I(inode)->lock);
Chris Mason291d6732008-01-29 15:55:23 -05001821 }
Filipe Mananaa7e3b972017-04-03 10:45:46 +01001822
1823 if (!(state->state & EXTENT_DELALLOC_NEW) &&
1824 (*bits & EXTENT_DELALLOC_NEW)) {
1825 spin_lock(&BTRFS_I(inode)->lock);
1826 BTRFS_I(inode)->new_delalloc_bytes += state->end + 1 -
1827 state->start;
1828 spin_unlock(&BTRFS_I(inode)->lock);
1829 }
Chris Mason291d6732008-01-29 15:55:23 -05001830}
1831
Chris Masond352ac62008-09-29 15:18:18 -04001832/*
1833 * extent_io.c clear_bit_hook, see set_bit_hook for why
1834 */
Josef Bacikc6100a42017-05-05 11:57:13 -04001835static void btrfs_clear_bit_hook(void *private_data,
David Sterba41074882013-04-29 13:38:46 +00001836 struct extent_state *state,
David Sterba9ee49a042015-01-14 19:52:13 +01001837 unsigned *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001838{
Josef Bacikc6100a42017-05-05 11:57:13 -04001839 struct btrfs_inode *inode = BTRFS_I((struct inode *)private_data);
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +02001840 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
Wang Shilong47059d92014-07-03 18:22:07 +08001841 u64 len = state->end + 1 - state->start;
David Sterba823bb202017-01-04 11:09:51 +01001842 u32 num_extents = count_max_extents(len);
Wang Shilong47059d92014-07-03 18:22:07 +08001843
Filipe Manana4a4b9642017-07-27 19:52:55 +01001844 if ((state->state & EXTENT_DEFRAG) && (*bits & EXTENT_DEFRAG)) {
1845 spin_lock(&inode->lock);
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +02001846 inode->defrag_bytes -= len;
Filipe Manana4a4b9642017-07-27 19:52:55 +01001847 spin_unlock(&inode->lock);
1848 }
Wang Shilong47059d92014-07-03 18:22:07 +08001849
Chris Mason75eff682008-12-15 15:54:40 -05001850 /*
1851 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00001852 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05001853 * bit, which is only set or cleared with irqs on
1854 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001855 if ((state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +02001856 struct btrfs_root *root = inode->root;
Liu Bo83eea1f2012-07-10 05:28:39 -06001857 bool do_list = !btrfs_is_free_space_inode(inode);
Chris Masonbcbfce82008-04-22 13:26:47 -04001858
Josef Bacik8b62f872017-10-19 14:15:55 -04001859 spin_lock(&inode->lock);
1860 btrfs_mod_outstanding_extents(inode, -num_extents);
1861 spin_unlock(&inode->lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001862
Josef Bacikb6d08f02013-09-27 14:57:43 -04001863 /*
1864 * We don't reserve metadata space for space cache inodes so we
1865 * don't need to call dellalloc_release_metadata if there is an
1866 * error.
1867 */
Filipe Mananaa315e682017-03-06 23:04:20 +00001868 if (*bits & EXTENT_CLEAR_META_RESV &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001869 root != fs_info->tree_root)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001870 btrfs_delalloc_release_metadata(inode, len);
1871
Josef Bacik6a3891c2015-03-16 17:38:52 -04001872 /* For sanity tests. */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001873 if (btrfs_is_testing(fs_info))
Josef Bacik6a3891c2015-03-16 17:38:52 -04001874 return;
1875
Filipe Mananaa315e682017-03-06 23:04:20 +00001876 if (root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID &&
1877 do_list && !(state->state & EXTENT_NORESERVE) &&
1878 (*bits & EXTENT_CLEAR_DATA_RESV))
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +02001879 btrfs_free_reserved_data_space_noquota(
1880 &inode->vfs_inode,
Qu Wenruo51773be2015-10-08 18:19:37 +08001881 state->start, len);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001882
Nikolay Borisov104b4e52017-06-20 21:01:20 +03001883 percpu_counter_add_batch(&fs_info->delalloc_bytes, -len,
1884 fs_info->delalloc_batch);
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +02001885 spin_lock(&inode->lock);
1886 inode->delalloc_bytes -= len;
1887 if (do_list && inode->delalloc_bytes == 0 &&
Miao Xiedf0af1a2013-01-29 10:11:59 +00001888 test_bit(BTRFS_INODE_IN_DELALLOC_LIST,
Nikolay Borisov9e3e97f2017-02-20 13:51:07 +02001889 &inode->runtime_flags))
Miao Xieeb73c1b2013-05-15 07:48:22 +00001890 btrfs_del_delalloc_inode(root, inode);
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +02001891 spin_unlock(&inode->lock);
Chris Mason291d6732008-01-29 15:55:23 -05001892 }
Filipe Mananaa7e3b972017-04-03 10:45:46 +01001893
1894 if ((state->state & EXTENT_DELALLOC_NEW) &&
1895 (*bits & EXTENT_DELALLOC_NEW)) {
1896 spin_lock(&inode->lock);
1897 ASSERT(inode->new_delalloc_bytes >= len);
1898 inode->new_delalloc_bytes -= len;
1899 spin_unlock(&inode->lock);
1900 }
Chris Mason291d6732008-01-29 15:55:23 -05001901}
1902
Chris Masond352ac62008-09-29 15:18:18 -04001903/*
1904 * extent_io.c merge_bio_hook, this must check the chunk tree to make sure
1905 * we don't create bios that span stripes or chunks
Liu Bo6f034ec2016-06-22 18:31:49 -07001906 *
1907 * return 1 if page cannot be merged to bio
1908 * return 0 if page can be merged to bio
1909 * return error otherwise
Chris Masond352ac62008-09-29 15:18:18 -04001910 */
Mike Christie81a75f672016-06-05 14:31:54 -05001911int btrfs_merge_bio_hook(struct page *page, unsigned long offset,
Chris Masonc8b97812008-10-29 14:49:59 -04001912 size_t size, struct bio *bio,
1913 unsigned long bio_flags)
Chris Mason239b14b2008-03-24 15:02:07 -04001914{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001915 struct inode *inode = page->mapping->host;
1916 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001917 u64 logical = (u64)bio->bi_iter.bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -04001918 u64 length = 0;
1919 u64 map_length;
Chris Mason239b14b2008-03-24 15:02:07 -04001920 int ret;
1921
Chris Mason771ed682008-11-06 22:02:51 -05001922 if (bio_flags & EXTENT_BIO_COMPRESSED)
1923 return 0;
1924
Kent Overstreet4f024f32013-10-11 15:44:27 -07001925 length = bio->bi_iter.bi_size;
Chris Mason239b14b2008-03-24 15:02:07 -04001926 map_length = length;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001927 ret = btrfs_map_block(fs_info, btrfs_op(bio), logical, &map_length,
1928 NULL, 0);
Liu Bo6f034ec2016-06-22 18:31:49 -07001929 if (ret < 0)
1930 return ret;
Chris Masond3977122009-01-05 21:25:51 -05001931 if (map_length < length + size)
Chris Mason239b14b2008-03-24 15:02:07 -04001932 return 1;
Jeff Mahoney3444a972011-10-03 23:23:13 -04001933 return 0;
Chris Mason239b14b2008-03-24 15:02:07 -04001934}
1935
Chris Masond352ac62008-09-29 15:18:18 -04001936/*
1937 * in order to insert checksums into the metadata in large chunks,
1938 * we wait until bio submission time. All the pages in the bio are
1939 * checksummed and sums are attached onto the ordered extent record.
1940 *
1941 * At IO completion time the cums attached on the ordered extent record
1942 * are inserted into the btree
1943 */
Linus Torvalds8c27cb32017-07-05 16:41:23 -07001944static blk_status_t __btrfs_submit_bio_start(void *private_data, struct bio *bio,
Mike Christie81a75f672016-06-05 14:31:54 -05001945 int mirror_num, unsigned long bio_flags,
Chris Masoneaf25d92010-05-25 09:48:28 -04001946 u64 bio_offset)
Chris Mason065631f2008-02-20 12:07:25 -05001947{
Josef Bacikc6100a42017-05-05 11:57:13 -04001948 struct inode *inode = private_data;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001949 blk_status_t ret = 0;
Chris Masone0156402008-04-16 11:15:20 -04001950
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001951 ret = btrfs_csum_one_bio(inode, bio, 0, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001952 BUG_ON(ret); /* -ENOMEM */
Chris Mason4a69a412008-11-06 22:03:00 -05001953 return 0;
1954}
Chris Masone0156402008-04-16 11:15:20 -04001955
Chris Mason4a69a412008-11-06 22:03:00 -05001956/*
1957 * in order to insert checksums into the metadata in large chunks,
1958 * we wait until bio submission time. All the pages in the bio are
1959 * checksummed and sums are attached onto the ordered extent record.
1960 *
1961 * At IO completion time the cums attached on the ordered extent record
1962 * are inserted into the btree
1963 */
Linus Torvalds8c27cb32017-07-05 16:41:23 -07001964static blk_status_t __btrfs_submit_bio_done(void *private_data, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001965 int mirror_num, unsigned long bio_flags,
1966 u64 bio_offset)
Chris Mason4a69a412008-11-06 22:03:00 -05001967{
Josef Bacikc6100a42017-05-05 11:57:13 -04001968 struct inode *inode = private_data;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001969 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001970 blk_status_t ret;
Stefan Behrens61891922012-11-05 18:51:52 +01001971
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001972 ret = btrfs_map_bio(fs_info, bio, mirror_num, 1);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001973 if (ret) {
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001974 bio->bi_status = ret;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001975 bio_endio(bio);
1976 }
Stefan Behrens61891922012-11-05 18:51:52 +01001977 return ret;
Chris Mason44b8bd72008-04-16 11:14:51 -04001978}
1979
Chris Masond352ac62008-09-29 15:18:18 -04001980/*
Chris Masoncad321a2008-12-17 14:51:42 -05001981 * extent_io.c submission hook. This does the right thing for csum calculation
Liu Bo4c274bc2017-11-01 17:19:27 -06001982 * on write, or reading the csums from the tree before a read.
1983 *
1984 * Rules about async/sync submit,
1985 * a) read: sync submit
1986 *
1987 * b) write without checksum: sync submit
1988 *
1989 * c) write with checksum:
1990 * c-1) if bio is issued by fsync: sync submit
1991 * (sync_writers != 0)
1992 *
1993 * c-2) if root is reloc root: sync submit
1994 * (only in case of buffered IO)
1995 *
1996 * c-3) otherwise: async submit
Chris Masond352ac62008-09-29 15:18:18 -04001997 */
Linus Torvalds8c27cb32017-07-05 16:41:23 -07001998static blk_status_t btrfs_submit_bio_hook(void *private_data, struct bio *bio,
Josef Bacikc6100a42017-05-05 11:57:13 -04001999 int mirror_num, unsigned long bio_flags,
2000 u64 bio_offset)
Chris Mason44b8bd72008-04-16 11:14:51 -04002001{
Josef Bacikc6100a42017-05-05 11:57:13 -04002002 struct inode *inode = private_data;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002003 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason44b8bd72008-04-16 11:14:51 -04002004 struct btrfs_root *root = BTRFS_I(inode)->root;
Chandan Rajendra0d51e282015-07-27 15:26:43 +05302005 enum btrfs_wq_endio_type metadata = BTRFS_WQ_ENDIO_DATA;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002006 blk_status_t ret = 0;
Chris Mason19b9bdb2008-10-30 14:23:13 -04002007 int skip_sum;
Josef Bacikb812ce22012-11-16 13:56:32 -05002008 int async = !atomic_read(&BTRFS_I(inode)->sync_writers);
Chris Mason44b8bd72008-04-16 11:14:51 -04002009
Christoph Hellwig6cbff002009-04-17 10:37:41 +02002010 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
Chris Masoncad321a2008-12-17 14:51:42 -05002011
Nikolay Borisov70ddc552017-02-20 13:50:35 +02002012 if (btrfs_is_free_space_inode(BTRFS_I(inode)))
Chandan Rajendra0d51e282015-07-27 15:26:43 +05302013 metadata = BTRFS_WQ_ENDIO_FREE_SPACE;
Jeff Mahoney04173412011-10-03 23:23:12 -04002014
Mike Christie37226b22016-06-05 14:31:52 -05002015 if (bio_op(bio) != REQ_OP_WRITE) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002016 ret = btrfs_bio_wq_end_io(fs_info, bio, metadata);
Josef Bacik5fd02042012-05-02 14:00:54 -04002017 if (ret)
Stefan Behrens61891922012-11-05 18:51:52 +01002018 goto out;
Josef Bacik5fd02042012-05-02 14:00:54 -04002019
Chris Masond20f7042008-12-08 16:58:54 -05002020 if (bio_flags & EXTENT_BIO_COMPRESSED) {
Stefan Behrens61891922012-11-05 18:51:52 +01002021 ret = btrfs_submit_compressed_read(inode, bio,
2022 mirror_num,
2023 bio_flags);
2024 goto out;
Tsutomu Itohc2db1072011-03-01 06:48:31 +00002025 } else if (!skip_sum) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002026 ret = btrfs_lookup_bio_sums(inode, bio, NULL);
Tsutomu Itohc2db1072011-03-01 06:48:31 +00002027 if (ret)
Stefan Behrens61891922012-11-05 18:51:52 +01002028 goto out;
Tsutomu Itohc2db1072011-03-01 06:48:31 +00002029 }
Chris Mason4d1b5fb2008-08-20 09:44:52 -04002030 goto mapit;
Josef Bacikb812ce22012-11-16 13:56:32 -05002031 } else if (async && !skip_sum) {
Yan Zheng17d217f2008-12-12 10:03:38 -05002032 /* csum items have already been cloned */
2033 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
2034 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04002035 /* we're doing a write, do the async checksumming */
Josef Bacikc6100a42017-05-05 11:57:13 -04002036 ret = btrfs_wq_submit_bio(fs_info, bio, mirror_num, bio_flags,
2037 bio_offset, inode,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002038 __btrfs_submit_bio_start,
2039 __btrfs_submit_bio_done);
Stefan Behrens61891922012-11-05 18:51:52 +01002040 goto out;
Josef Bacikb812ce22012-11-16 13:56:32 -05002041 } else if (!skip_sum) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002042 ret = btrfs_csum_one_bio(inode, bio, 0, 0);
Josef Bacikb812ce22012-11-16 13:56:32 -05002043 if (ret)
2044 goto out;
Chris Mason19b9bdb2008-10-30 14:23:13 -04002045 }
2046
Chris Mason0b86a832008-03-24 15:01:56 -04002047mapit:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002048 ret = btrfs_map_bio(fs_info, bio, mirror_num, 0);
Stefan Behrens61891922012-11-05 18:51:52 +01002049
2050out:
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002051 if (ret) {
2052 bio->bi_status = ret;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002053 bio_endio(bio);
2054 }
Stefan Behrens61891922012-11-05 18:51:52 +01002055 return ret;
Chris Mason065631f2008-02-20 12:07:25 -05002056}
Chris Mason6885f302008-02-20 16:11:05 -05002057
Chris Masond352ac62008-09-29 15:18:18 -04002058/*
2059 * given a list of ordered sums record them in the inode. This happens
2060 * at IO completion time based on sums calculated at bio submission time.
2061 */
Chris Masonba1da2f2008-07-17 12:54:15 -04002062static noinline int add_pending_csums(struct btrfs_trans_handle *trans,
David Sterbadf9f6282017-02-10 19:35:37 +01002063 struct inode *inode, struct list_head *list)
Chris Masone6dcd2d2008-07-17 12:53:50 -04002064{
Chris Masone6dcd2d2008-07-17 12:53:50 -04002065 struct btrfs_ordered_sum *sum;
Nikolay Borisovac01f262018-01-08 10:59:43 +02002066 int ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002067
Qinghuang Fengc6e30872009-01-21 10:59:08 -05002068 list_for_each_entry(sum, list, list) {
David Sterba7c2871a2017-11-08 01:07:43 +01002069 trans->adding_csums = true;
Nikolay Borisovac01f262018-01-08 10:59:43 +02002070 ret = btrfs_csum_file_blocks(trans,
Chris Masond20f7042008-12-08 16:58:54 -05002071 BTRFS_I(inode)->root->fs_info->csum_root, sum);
David Sterba7c2871a2017-11-08 01:07:43 +01002072 trans->adding_csums = false;
Nikolay Borisovac01f262018-01-08 10:59:43 +02002073 if (ret)
2074 return ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002075 }
2076 return 0;
2077}
2078
Josef Bacik2ac55d42010-02-03 19:33:23 +00002079int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end,
Filipe Mananae3b8a482017-11-04 00:16:59 +00002080 unsigned int extra_bits,
Qu Wenruoba8b04c2016-07-19 16:50:36 +08002081 struct extent_state **cached_state, int dedupe)
Chris Masonea8c2812008-08-04 23:17:27 -04002082{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002083 WARN_ON((end & (PAGE_SIZE - 1)) == 0);
Chris Masonea8c2812008-08-04 23:17:27 -04002084 return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end,
Filipe Mananae3b8a482017-11-04 00:16:59 +00002085 extra_bits, cached_state);
Chris Masonea8c2812008-08-04 23:17:27 -04002086}
2087
Chris Masond352ac62008-09-29 15:18:18 -04002088/* see btrfs_writepage_start_hook for details on why this is required */
Chris Mason247e7432008-07-17 12:53:51 -04002089struct btrfs_writepage_fixup {
2090 struct page *page;
2091 struct btrfs_work work;
2092};
2093
Christoph Hellwigb2950862008-12-02 09:54:17 -05002094static void btrfs_writepage_fixup_worker(struct btrfs_work *work)
Chris Mason247e7432008-07-17 12:53:51 -04002095{
2096 struct btrfs_writepage_fixup *fixup;
2097 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00002098 struct extent_state *cached_state = NULL;
Qu Wenruo364ecf32017-02-27 15:10:38 +08002099 struct extent_changeset *data_reserved = NULL;
Chris Mason247e7432008-07-17 12:53:51 -04002100 struct page *page;
2101 struct inode *inode;
2102 u64 page_start;
2103 u64 page_end;
Jeff Mahoney87826df2012-02-15 16:23:57 +01002104 int ret;
Chris Mason247e7432008-07-17 12:53:51 -04002105
2106 fixup = container_of(work, struct btrfs_writepage_fixup, work);
2107 page = fixup->page;
Chris Mason4a096752008-07-21 10:29:44 -04002108again:
Chris Mason247e7432008-07-17 12:53:51 -04002109 lock_page(page);
2110 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
2111 ClearPageChecked(page);
2112 goto out_page;
2113 }
2114
2115 inode = page->mapping->host;
2116 page_start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002117 page_end = page_offset(page) + PAGE_SIZE - 1;
Chris Mason247e7432008-07-17 12:53:51 -04002118
David Sterbaff13db42015-12-03 14:30:40 +01002119 lock_extent_bits(&BTRFS_I(inode)->io_tree, page_start, page_end,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01002120 &cached_state);
Chris Mason4a096752008-07-21 10:29:44 -04002121
2122 /* already ordered? We're done */
Chris Mason8b62b722009-09-02 16:53:46 -04002123 if (PagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04002124 goto out;
Chris Mason4a096752008-07-21 10:29:44 -04002125
Nikolay Borisova776c6f2017-02-20 13:50:49 +02002126 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), page_start,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002127 PAGE_SIZE);
Chris Mason4a096752008-07-21 10:29:44 -04002128 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00002129 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start,
David Sterbae43bbe52017-12-12 21:43:52 +01002130 page_end, &cached_state);
Chris Mason4a096752008-07-21 10:29:44 -04002131 unlock_page(page);
2132 btrfs_start_ordered_extent(inode, ordered, 1);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002133 btrfs_put_ordered_extent(ordered);
Chris Mason4a096752008-07-21 10:29:44 -04002134 goto again;
2135 }
Chris Mason247e7432008-07-17 12:53:51 -04002136
Qu Wenruo364ecf32017-02-27 15:10:38 +08002137 ret = btrfs_delalloc_reserve_space(inode, &data_reserved, page_start,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002138 PAGE_SIZE);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002139 if (ret) {
2140 mapping_set_error(page->mapping, ret);
2141 end_extent_writepage(page, ret, page_start, page_end);
2142 ClearPageChecked(page);
2143 goto out;
2144 }
2145
Nikolay Borisovf3038ee2017-12-05 09:29:19 +02002146 ret = btrfs_set_extent_delalloc(inode, page_start, page_end, 0,
2147 &cached_state, 0);
2148 if (ret) {
2149 mapping_set_error(page->mapping, ret);
2150 end_extent_writepage(page, ret, page_start, page_end);
2151 ClearPageChecked(page);
2152 goto out;
2153 }
2154
Chris Mason247e7432008-07-17 12:53:51 -04002155 ClearPageChecked(page);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002156 set_page_dirty(page);
Josef Bacik8b62f872017-10-19 14:15:55 -04002157 btrfs_delalloc_release_extents(BTRFS_I(inode), PAGE_SIZE);
Chris Mason247e7432008-07-17 12:53:51 -04002158out:
Josef Bacik2ac55d42010-02-03 19:33:23 +00002159 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start, page_end,
David Sterbae43bbe52017-12-12 21:43:52 +01002160 &cached_state);
Chris Mason247e7432008-07-17 12:53:51 -04002161out_page:
2162 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002163 put_page(page);
Miao Xieb897abe2011-01-26 16:19:22 +08002164 kfree(fixup);
Qu Wenruo364ecf32017-02-27 15:10:38 +08002165 extent_changeset_free(data_reserved);
Chris Mason247e7432008-07-17 12:53:51 -04002166}
2167
2168/*
2169 * There are a few paths in the higher layers of the kernel that directly
2170 * set the page dirty bit without asking the filesystem if it is a
2171 * good idea. This causes problems because we want to make sure COW
2172 * properly happens and the data=ordered rules are followed.
2173 *
Chris Masonc8b97812008-10-29 14:49:59 -04002174 * In our case any range that doesn't have the ORDERED bit set
Chris Mason247e7432008-07-17 12:53:51 -04002175 * hasn't been properly setup for IO. We kick off an async process
2176 * to fix it up. The async helper will wait for ordered extents, set
2177 * the delalloc bit and make it safe to write the page.
2178 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05002179static int btrfs_writepage_start_hook(struct page *page, u64 start, u64 end)
Chris Mason247e7432008-07-17 12:53:51 -04002180{
2181 struct inode *inode = page->mapping->host;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002182 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason247e7432008-07-17 12:53:51 -04002183 struct btrfs_writepage_fixup *fixup;
Chris Mason247e7432008-07-17 12:53:51 -04002184
Chris Mason8b62b722009-09-02 16:53:46 -04002185 /* this page is properly in the ordered list */
2186 if (TestClearPagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04002187 return 0;
2188
2189 if (PageChecked(page))
2190 return -EAGAIN;
2191
2192 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
2193 if (!fixup)
2194 return -EAGAIN;
Chris Masonf4219502008-07-22 11:18:09 -04002195
Chris Mason247e7432008-07-17 12:53:51 -04002196 SetPageChecked(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002197 get_page(page);
Liu Bo9e0af232014-08-15 23:36:53 +08002198 btrfs_init_work(&fixup->work, btrfs_fixup_helper,
2199 btrfs_writepage_fixup_worker, NULL, NULL);
Chris Mason247e7432008-07-17 12:53:51 -04002200 fixup->page = page;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002201 btrfs_queue_work(fs_info->fixup_workers, &fixup->work);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002202 return -EBUSY;
Chris Mason247e7432008-07-17 12:53:51 -04002203}
2204
Yan Zhengd899e052008-10-30 14:25:28 -04002205static int insert_reserved_file_extent(struct btrfs_trans_handle *trans,
2206 struct inode *inode, u64 file_pos,
2207 u64 disk_bytenr, u64 disk_num_bytes,
2208 u64 num_bytes, u64 ram_bytes,
2209 u8 compression, u8 encryption,
2210 u16 other_encoding, int extent_type)
2211{
2212 struct btrfs_root *root = BTRFS_I(inode)->root;
2213 struct btrfs_file_extent_item *fi;
2214 struct btrfs_path *path;
2215 struct extent_buffer *leaf;
2216 struct btrfs_key ins;
Qu Wenruoa12b8772017-02-27 15:10:37 +08002217 u64 qg_released;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00002218 int extent_inserted = 0;
Yan Zhengd899e052008-10-30 14:25:28 -04002219 int ret;
2220
2221 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07002222 if (!path)
2223 return -ENOMEM;
Yan Zhengd899e052008-10-30 14:25:28 -04002224
Chris Masona1ed8352009-09-11 12:27:37 -04002225 /*
2226 * we may be replacing one extent in the tree with another.
2227 * The new extent is pinned in the extent map, and we don't want
2228 * to drop it from the cache until it is completely in the btree.
2229 *
2230 * So, tell btrfs_drop_extents to leave this extent in the cache.
2231 * the caller is expected to unpin it and allow it to be merged
2232 * with the others.
2233 */
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00002234 ret = __btrfs_drop_extents(trans, root, inode, path, file_pos,
2235 file_pos + num_bytes, NULL, 0,
2236 1, sizeof(*fi), &extent_inserted);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002237 if (ret)
2238 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -04002239
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00002240 if (!extent_inserted) {
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002241 ins.objectid = btrfs_ino(BTRFS_I(inode));
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00002242 ins.offset = file_pos;
2243 ins.type = BTRFS_EXTENT_DATA_KEY;
2244
2245 path->leave_spinning = 1;
2246 ret = btrfs_insert_empty_item(trans, root, path, &ins,
2247 sizeof(*fi));
2248 if (ret)
2249 goto out;
2250 }
Yan Zhengd899e052008-10-30 14:25:28 -04002251 leaf = path->nodes[0];
2252 fi = btrfs_item_ptr(leaf, path->slots[0],
2253 struct btrfs_file_extent_item);
2254 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
2255 btrfs_set_file_extent_type(leaf, fi, extent_type);
2256 btrfs_set_file_extent_disk_bytenr(leaf, fi, disk_bytenr);
2257 btrfs_set_file_extent_disk_num_bytes(leaf, fi, disk_num_bytes);
2258 btrfs_set_file_extent_offset(leaf, fi, 0);
2259 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
2260 btrfs_set_file_extent_ram_bytes(leaf, fi, ram_bytes);
2261 btrfs_set_file_extent_compression(leaf, fi, compression);
2262 btrfs_set_file_extent_encryption(leaf, fi, encryption);
2263 btrfs_set_file_extent_other_encoding(leaf, fi, other_encoding);
Chris Masonb9473432009-03-13 11:00:37 -04002264
Yan Zhengd899e052008-10-30 14:25:28 -04002265 btrfs_mark_buffer_dirty(leaf);
Josef Bacikce195332012-09-25 15:26:16 -04002266 btrfs_release_path(path);
Yan Zhengd899e052008-10-30 14:25:28 -04002267
2268 inode_add_bytes(inode, num_bytes);
Yan Zhengd899e052008-10-30 14:25:28 -04002269
2270 ins.objectid = disk_bytenr;
2271 ins.offset = disk_num_bytes;
2272 ins.type = BTRFS_EXTENT_ITEM_KEY;
Qu Wenruoa12b8772017-02-27 15:10:37 +08002273
Qu Wenruo297d7502015-09-08 17:08:37 +08002274 /*
Qu Wenruo5846a3c2015-10-26 14:11:18 +08002275 * Release the reserved range from inode dirty range map, as it is
2276 * already moved into delayed_ref_head
Qu Wenruo297d7502015-09-08 17:08:37 +08002277 */
Qu Wenruoa12b8772017-02-27 15:10:37 +08002278 ret = btrfs_qgroup_release_data(inode, file_pos, ram_bytes);
2279 if (ret < 0)
2280 goto out;
2281 qg_released = ret;
Josef Bacik84f7d8e2017-09-29 15:43:49 -04002282 ret = btrfs_alloc_reserved_file_extent(trans, root,
2283 btrfs_ino(BTRFS_I(inode)),
2284 file_pos, qg_released, &ins);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002285out:
Yan Zhengd899e052008-10-30 14:25:28 -04002286 btrfs_free_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04002287
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002288 return ret;
Yan Zhengd899e052008-10-30 14:25:28 -04002289}
2290
Liu Bo38c227d2013-01-29 03:18:40 +00002291/* snapshot-aware defrag */
2292struct sa_defrag_extent_backref {
2293 struct rb_node node;
2294 struct old_sa_defrag_extent *old;
2295 u64 root_id;
2296 u64 inum;
2297 u64 file_pos;
2298 u64 extent_offset;
2299 u64 num_bytes;
2300 u64 generation;
2301};
2302
2303struct old_sa_defrag_extent {
2304 struct list_head list;
2305 struct new_sa_defrag_extent *new;
2306
2307 u64 extent_offset;
2308 u64 bytenr;
2309 u64 offset;
2310 u64 len;
2311 int count;
2312};
2313
2314struct new_sa_defrag_extent {
2315 struct rb_root root;
2316 struct list_head head;
2317 struct btrfs_path *path;
2318 struct inode *inode;
2319 u64 file_pos;
2320 u64 len;
2321 u64 bytenr;
2322 u64 disk_len;
2323 u8 compress_type;
2324};
2325
2326static int backref_comp(struct sa_defrag_extent_backref *b1,
2327 struct sa_defrag_extent_backref *b2)
2328{
2329 if (b1->root_id < b2->root_id)
2330 return -1;
2331 else if (b1->root_id > b2->root_id)
2332 return 1;
2333
2334 if (b1->inum < b2->inum)
2335 return -1;
2336 else if (b1->inum > b2->inum)
2337 return 1;
2338
2339 if (b1->file_pos < b2->file_pos)
2340 return -1;
2341 else if (b1->file_pos > b2->file_pos)
2342 return 1;
2343
2344 /*
2345 * [------------------------------] ===> (a range of space)
2346 * |<--->| |<---->| =============> (fs/file tree A)
2347 * |<---------------------------->| ===> (fs/file tree B)
2348 *
2349 * A range of space can refer to two file extents in one tree while
2350 * refer to only one file extent in another tree.
2351 *
2352 * So we may process a disk offset more than one time(two extents in A)
2353 * and locate at the same extent(one extent in B), then insert two same
2354 * backrefs(both refer to the extent in B).
2355 */
2356 return 0;
2357}
2358
2359static void backref_insert(struct rb_root *root,
2360 struct sa_defrag_extent_backref *backref)
2361{
2362 struct rb_node **p = &root->rb_node;
2363 struct rb_node *parent = NULL;
2364 struct sa_defrag_extent_backref *entry;
2365 int ret;
2366
2367 while (*p) {
2368 parent = *p;
2369 entry = rb_entry(parent, struct sa_defrag_extent_backref, node);
2370
2371 ret = backref_comp(backref, entry);
2372 if (ret < 0)
2373 p = &(*p)->rb_left;
2374 else
2375 p = &(*p)->rb_right;
2376 }
2377
2378 rb_link_node(&backref->node, parent, p);
2379 rb_insert_color(&backref->node, root);
2380}
2381
2382/*
2383 * Note the backref might has changed, and in this case we just return 0.
2384 */
2385static noinline int record_one_backref(u64 inum, u64 offset, u64 root_id,
2386 void *ctx)
2387{
2388 struct btrfs_file_extent_item *extent;
Liu Bo38c227d2013-01-29 03:18:40 +00002389 struct old_sa_defrag_extent *old = ctx;
2390 struct new_sa_defrag_extent *new = old->new;
2391 struct btrfs_path *path = new->path;
2392 struct btrfs_key key;
2393 struct btrfs_root *root;
2394 struct sa_defrag_extent_backref *backref;
2395 struct extent_buffer *leaf;
2396 struct inode *inode = new->inode;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002397 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Liu Bo38c227d2013-01-29 03:18:40 +00002398 int slot;
2399 int ret;
2400 u64 extent_offset;
2401 u64 num_bytes;
2402
2403 if (BTRFS_I(inode)->root->root_key.objectid == root_id &&
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002404 inum == btrfs_ino(BTRFS_I(inode)))
Liu Bo38c227d2013-01-29 03:18:40 +00002405 return 0;
2406
2407 key.objectid = root_id;
2408 key.type = BTRFS_ROOT_ITEM_KEY;
2409 key.offset = (u64)-1;
2410
Liu Bo38c227d2013-01-29 03:18:40 +00002411 root = btrfs_read_fs_root_no_name(fs_info, &key);
2412 if (IS_ERR(root)) {
2413 if (PTR_ERR(root) == -ENOENT)
2414 return 0;
2415 WARN_ON(1);
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002416 btrfs_debug(fs_info, "inum=%llu, offset=%llu, root_id=%llu",
Liu Bo38c227d2013-01-29 03:18:40 +00002417 inum, offset, root_id);
2418 return PTR_ERR(root);
2419 }
2420
2421 key.objectid = inum;
2422 key.type = BTRFS_EXTENT_DATA_KEY;
2423 if (offset > (u64)-1 << 32)
2424 key.offset = 0;
2425 else
2426 key.offset = offset;
2427
2428 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05302429 if (WARN_ON(ret < 0))
Liu Bo38c227d2013-01-29 03:18:40 +00002430 return ret;
Josef Bacik50f13192013-07-22 12:50:37 -04002431 ret = 0;
Liu Bo38c227d2013-01-29 03:18:40 +00002432
2433 while (1) {
2434 cond_resched();
2435
2436 leaf = path->nodes[0];
2437 slot = path->slots[0];
2438
2439 if (slot >= btrfs_header_nritems(leaf)) {
2440 ret = btrfs_next_leaf(root, path);
2441 if (ret < 0) {
2442 goto out;
2443 } else if (ret > 0) {
2444 ret = 0;
2445 goto out;
2446 }
2447 continue;
2448 }
2449
2450 path->slots[0]++;
2451
2452 btrfs_item_key_to_cpu(leaf, &key, slot);
2453
2454 if (key.objectid > inum)
2455 goto out;
2456
2457 if (key.objectid < inum || key.type != BTRFS_EXTENT_DATA_KEY)
2458 continue;
2459
2460 extent = btrfs_item_ptr(leaf, slot,
2461 struct btrfs_file_extent_item);
2462
2463 if (btrfs_file_extent_disk_bytenr(leaf, extent) != old->bytenr)
2464 continue;
2465
Liu Boe68afa42013-07-01 22:13:26 +08002466 /*
2467 * 'offset' refers to the exact key.offset,
2468 * NOT the 'offset' field in btrfs_extent_data_ref, ie.
2469 * (key.offset - extent_offset).
2470 */
2471 if (key.offset != offset)
Liu Bo38c227d2013-01-29 03:18:40 +00002472 continue;
2473
Liu Boe68afa42013-07-01 22:13:26 +08002474 extent_offset = btrfs_file_extent_offset(leaf, extent);
Liu Bo38c227d2013-01-29 03:18:40 +00002475 num_bytes = btrfs_file_extent_num_bytes(leaf, extent);
Liu Boe68afa42013-07-01 22:13:26 +08002476
Liu Bo38c227d2013-01-29 03:18:40 +00002477 if (extent_offset >= old->extent_offset + old->offset +
2478 old->len || extent_offset + num_bytes <=
2479 old->extent_offset + old->offset)
2480 continue;
Liu Bo38c227d2013-01-29 03:18:40 +00002481 break;
2482 }
2483
2484 backref = kmalloc(sizeof(*backref), GFP_NOFS);
2485 if (!backref) {
2486 ret = -ENOENT;
2487 goto out;
2488 }
2489
2490 backref->root_id = root_id;
2491 backref->inum = inum;
Liu Boe68afa42013-07-01 22:13:26 +08002492 backref->file_pos = offset;
Liu Bo38c227d2013-01-29 03:18:40 +00002493 backref->num_bytes = num_bytes;
2494 backref->extent_offset = extent_offset;
2495 backref->generation = btrfs_file_extent_generation(leaf, extent);
2496 backref->old = old;
2497 backref_insert(&new->root, backref);
2498 old->count++;
2499out:
2500 btrfs_release_path(path);
2501 WARN_ON(ret);
2502 return ret;
2503}
2504
2505static noinline bool record_extent_backrefs(struct btrfs_path *path,
2506 struct new_sa_defrag_extent *new)
2507{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002508 struct btrfs_fs_info *fs_info = btrfs_sb(new->inode->i_sb);
Liu Bo38c227d2013-01-29 03:18:40 +00002509 struct old_sa_defrag_extent *old, *tmp;
2510 int ret;
2511
2512 new->path = path;
2513
2514 list_for_each_entry_safe(old, tmp, &new->head, list) {
Liu Boe68afa42013-07-01 22:13:26 +08002515 ret = iterate_inodes_from_logical(old->bytenr +
2516 old->extent_offset, fs_info,
Liu Bo38c227d2013-01-29 03:18:40 +00002517 path, record_one_backref,
Zygo Blaxellc995ab32017-09-22 13:58:45 -04002518 old, false);
Josef Bacik4724b102013-11-05 11:11:40 -05002519 if (ret < 0 && ret != -ENOENT)
2520 return false;
Liu Bo38c227d2013-01-29 03:18:40 +00002521
2522 /* no backref to be processed for this extent */
2523 if (!old->count) {
2524 list_del(&old->list);
2525 kfree(old);
2526 }
2527 }
2528
2529 if (list_empty(&new->head))
2530 return false;
2531
2532 return true;
2533}
2534
2535static int relink_is_mergable(struct extent_buffer *leaf,
2536 struct btrfs_file_extent_item *fi,
Liu Bo116e0022013-08-02 16:30:40 +08002537 struct new_sa_defrag_extent *new)
Liu Bo38c227d2013-01-29 03:18:40 +00002538{
Liu Bo116e0022013-08-02 16:30:40 +08002539 if (btrfs_file_extent_disk_bytenr(leaf, fi) != new->bytenr)
Liu Bo38c227d2013-01-29 03:18:40 +00002540 return 0;
2541
2542 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG)
2543 return 0;
2544
Liu Bo116e0022013-08-02 16:30:40 +08002545 if (btrfs_file_extent_compression(leaf, fi) != new->compress_type)
2546 return 0;
2547
2548 if (btrfs_file_extent_encryption(leaf, fi) ||
Liu Bo38c227d2013-01-29 03:18:40 +00002549 btrfs_file_extent_other_encoding(leaf, fi))
2550 return 0;
2551
2552 return 1;
2553}
2554
2555/*
2556 * Note the backref might has changed, and in this case we just return 0.
2557 */
2558static noinline int relink_extent_backref(struct btrfs_path *path,
2559 struct sa_defrag_extent_backref *prev,
2560 struct sa_defrag_extent_backref *backref)
2561{
2562 struct btrfs_file_extent_item *extent;
2563 struct btrfs_file_extent_item *item;
2564 struct btrfs_ordered_extent *ordered;
2565 struct btrfs_trans_handle *trans;
Liu Bo38c227d2013-01-29 03:18:40 +00002566 struct btrfs_root *root;
2567 struct btrfs_key key;
2568 struct extent_buffer *leaf;
2569 struct old_sa_defrag_extent *old = backref->old;
2570 struct new_sa_defrag_extent *new = old->new;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002571 struct btrfs_fs_info *fs_info = btrfs_sb(new->inode->i_sb);
Liu Bo38c227d2013-01-29 03:18:40 +00002572 struct inode *inode;
2573 struct extent_state *cached = NULL;
2574 int ret = 0;
2575 u64 start;
2576 u64 len;
2577 u64 lock_start;
2578 u64 lock_end;
2579 bool merge = false;
2580 int index;
2581
2582 if (prev && prev->root_id == backref->root_id &&
2583 prev->inum == backref->inum &&
2584 prev->file_pos + prev->num_bytes == backref->file_pos)
2585 merge = true;
2586
2587 /* step 1: get root */
2588 key.objectid = backref->root_id;
2589 key.type = BTRFS_ROOT_ITEM_KEY;
2590 key.offset = (u64)-1;
2591
Liu Bo38c227d2013-01-29 03:18:40 +00002592 index = srcu_read_lock(&fs_info->subvol_srcu);
2593
2594 root = btrfs_read_fs_root_no_name(fs_info, &key);
2595 if (IS_ERR(root)) {
2596 srcu_read_unlock(&fs_info->subvol_srcu, index);
2597 if (PTR_ERR(root) == -ENOENT)
2598 return 0;
2599 return PTR_ERR(root);
2600 }
Liu Bo38c227d2013-01-29 03:18:40 +00002601
Wang Shilongbcbba5e2014-02-08 23:46:35 +08002602 if (btrfs_root_readonly(root)) {
2603 srcu_read_unlock(&fs_info->subvol_srcu, index);
2604 return 0;
2605 }
2606
Liu Bo38c227d2013-01-29 03:18:40 +00002607 /* step 2: get inode */
2608 key.objectid = backref->inum;
2609 key.type = BTRFS_INODE_ITEM_KEY;
2610 key.offset = 0;
2611
2612 inode = btrfs_iget(fs_info->sb, &key, root, NULL);
2613 if (IS_ERR(inode)) {
2614 srcu_read_unlock(&fs_info->subvol_srcu, index);
2615 return 0;
2616 }
2617
2618 srcu_read_unlock(&fs_info->subvol_srcu, index);
2619
2620 /* step 3: relink backref */
2621 lock_start = backref->file_pos;
2622 lock_end = backref->file_pos + backref->num_bytes - 1;
2623 lock_extent_bits(&BTRFS_I(inode)->io_tree, lock_start, lock_end,
David Sterbaff13db42015-12-03 14:30:40 +01002624 &cached);
Liu Bo38c227d2013-01-29 03:18:40 +00002625
2626 ordered = btrfs_lookup_first_ordered_extent(inode, lock_end);
2627 if (ordered) {
2628 btrfs_put_ordered_extent(ordered);
2629 goto out_unlock;
2630 }
2631
2632 trans = btrfs_join_transaction(root);
2633 if (IS_ERR(trans)) {
2634 ret = PTR_ERR(trans);
2635 goto out_unlock;
2636 }
2637
2638 key.objectid = backref->inum;
2639 key.type = BTRFS_EXTENT_DATA_KEY;
2640 key.offset = backref->file_pos;
2641
2642 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2643 if (ret < 0) {
2644 goto out_free_path;
2645 } else if (ret > 0) {
2646 ret = 0;
2647 goto out_free_path;
2648 }
2649
2650 extent = btrfs_item_ptr(path->nodes[0], path->slots[0],
2651 struct btrfs_file_extent_item);
2652
2653 if (btrfs_file_extent_generation(path->nodes[0], extent) !=
2654 backref->generation)
2655 goto out_free_path;
2656
2657 btrfs_release_path(path);
2658
2659 start = backref->file_pos;
2660 if (backref->extent_offset < old->extent_offset + old->offset)
2661 start += old->extent_offset + old->offset -
2662 backref->extent_offset;
2663
2664 len = min(backref->extent_offset + backref->num_bytes,
2665 old->extent_offset + old->offset + old->len);
2666 len -= max(backref->extent_offset, old->extent_offset + old->offset);
2667
2668 ret = btrfs_drop_extents(trans, root, inode, start,
2669 start + len, 1);
2670 if (ret)
2671 goto out_free_path;
2672again:
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002673 key.objectid = btrfs_ino(BTRFS_I(inode));
Liu Bo38c227d2013-01-29 03:18:40 +00002674 key.type = BTRFS_EXTENT_DATA_KEY;
2675 key.offset = start;
2676
Liu Boa09a0a72013-03-11 09:20:58 +00002677 path->leave_spinning = 1;
Liu Bo38c227d2013-01-29 03:18:40 +00002678 if (merge) {
2679 struct btrfs_file_extent_item *fi;
2680 u64 extent_len;
2681 struct btrfs_key found_key;
2682
Gui Hecheng3c9665d2014-01-23 13:41:09 +08002683 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
Liu Bo38c227d2013-01-29 03:18:40 +00002684 if (ret < 0)
2685 goto out_free_path;
2686
2687 path->slots[0]--;
2688 leaf = path->nodes[0];
2689 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2690
2691 fi = btrfs_item_ptr(leaf, path->slots[0],
2692 struct btrfs_file_extent_item);
2693 extent_len = btrfs_file_extent_num_bytes(leaf, fi);
2694
Liu Bo116e0022013-08-02 16:30:40 +08002695 if (extent_len + found_key.offset == start &&
2696 relink_is_mergable(leaf, fi, new)) {
Liu Bo38c227d2013-01-29 03:18:40 +00002697 btrfs_set_file_extent_num_bytes(leaf, fi,
2698 extent_len + len);
2699 btrfs_mark_buffer_dirty(leaf);
2700 inode_add_bytes(inode, len);
2701
2702 ret = 1;
2703 goto out_free_path;
2704 } else {
2705 merge = false;
2706 btrfs_release_path(path);
2707 goto again;
2708 }
2709 }
2710
2711 ret = btrfs_insert_empty_item(trans, root, path, &key,
2712 sizeof(*extent));
2713 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002714 btrfs_abort_transaction(trans, ret);
Liu Bo38c227d2013-01-29 03:18:40 +00002715 goto out_free_path;
2716 }
2717
2718 leaf = path->nodes[0];
2719 item = btrfs_item_ptr(leaf, path->slots[0],
2720 struct btrfs_file_extent_item);
2721 btrfs_set_file_extent_disk_bytenr(leaf, item, new->bytenr);
2722 btrfs_set_file_extent_disk_num_bytes(leaf, item, new->disk_len);
2723 btrfs_set_file_extent_offset(leaf, item, start - new->file_pos);
2724 btrfs_set_file_extent_num_bytes(leaf, item, len);
2725 btrfs_set_file_extent_ram_bytes(leaf, item, new->len);
2726 btrfs_set_file_extent_generation(leaf, item, trans->transid);
2727 btrfs_set_file_extent_type(leaf, item, BTRFS_FILE_EXTENT_REG);
2728 btrfs_set_file_extent_compression(leaf, item, new->compress_type);
2729 btrfs_set_file_extent_encryption(leaf, item, 0);
2730 btrfs_set_file_extent_other_encoding(leaf, item, 0);
2731
2732 btrfs_mark_buffer_dirty(leaf);
2733 inode_add_bytes(inode, len);
Liu Boa09a0a72013-03-11 09:20:58 +00002734 btrfs_release_path(path);
Liu Bo38c227d2013-01-29 03:18:40 +00002735
Josef Bacik84f7d8e2017-09-29 15:43:49 -04002736 ret = btrfs_inc_extent_ref(trans, root, new->bytenr,
Liu Bo38c227d2013-01-29 03:18:40 +00002737 new->disk_len, 0,
2738 backref->root_id, backref->inum,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01002739 new->file_pos); /* start - extent_offset */
Liu Bo38c227d2013-01-29 03:18:40 +00002740 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002741 btrfs_abort_transaction(trans, ret);
Liu Bo38c227d2013-01-29 03:18:40 +00002742 goto out_free_path;
2743 }
2744
2745 ret = 1;
2746out_free_path:
2747 btrfs_release_path(path);
Liu Boa09a0a72013-03-11 09:20:58 +00002748 path->leave_spinning = 0;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002749 btrfs_end_transaction(trans);
Liu Bo38c227d2013-01-29 03:18:40 +00002750out_unlock:
2751 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lock_start, lock_end,
David Sterbae43bbe52017-12-12 21:43:52 +01002752 &cached);
Liu Bo38c227d2013-01-29 03:18:40 +00002753 iput(inode);
2754 return ret;
2755}
2756
Liu Bo6f519562013-10-29 10:45:05 +08002757static void free_sa_defrag_extent(struct new_sa_defrag_extent *new)
2758{
2759 struct old_sa_defrag_extent *old, *tmp;
2760
2761 if (!new)
2762 return;
2763
2764 list_for_each_entry_safe(old, tmp, &new->head, list) {
Liu Bo6f519562013-10-29 10:45:05 +08002765 kfree(old);
2766 }
2767 kfree(new);
2768}
2769
Liu Bo38c227d2013-01-29 03:18:40 +00002770static void relink_file_extents(struct new_sa_defrag_extent *new)
2771{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002772 struct btrfs_fs_info *fs_info = btrfs_sb(new->inode->i_sb);
Liu Bo38c227d2013-01-29 03:18:40 +00002773 struct btrfs_path *path;
Liu Bo38c227d2013-01-29 03:18:40 +00002774 struct sa_defrag_extent_backref *backref;
2775 struct sa_defrag_extent_backref *prev = NULL;
2776 struct inode *inode;
2777 struct btrfs_root *root;
2778 struct rb_node *node;
2779 int ret;
2780
2781 inode = new->inode;
2782 root = BTRFS_I(inode)->root;
2783
2784 path = btrfs_alloc_path();
2785 if (!path)
2786 return;
2787
2788 if (!record_extent_backrefs(path, new)) {
2789 btrfs_free_path(path);
2790 goto out;
2791 }
2792 btrfs_release_path(path);
2793
2794 while (1) {
2795 node = rb_first(&new->root);
2796 if (!node)
2797 break;
2798 rb_erase(node, &new->root);
2799
2800 backref = rb_entry(node, struct sa_defrag_extent_backref, node);
2801
2802 ret = relink_extent_backref(path, prev, backref);
2803 WARN_ON(ret < 0);
2804
2805 kfree(prev);
2806
2807 if (ret == 1)
2808 prev = backref;
2809 else
2810 prev = NULL;
2811 cond_resched();
2812 }
2813 kfree(prev);
2814
2815 btrfs_free_path(path);
Liu Bo38c227d2013-01-29 03:18:40 +00002816out:
Liu Bo6f519562013-10-29 10:45:05 +08002817 free_sa_defrag_extent(new);
2818
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002819 atomic_dec(&fs_info->defrag_running);
2820 wake_up(&fs_info->transaction_wait);
Liu Bo38c227d2013-01-29 03:18:40 +00002821}
2822
2823static struct new_sa_defrag_extent *
2824record_old_file_extents(struct inode *inode,
2825 struct btrfs_ordered_extent *ordered)
2826{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002827 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Liu Bo38c227d2013-01-29 03:18:40 +00002828 struct btrfs_root *root = BTRFS_I(inode)->root;
2829 struct btrfs_path *path;
2830 struct btrfs_key key;
Liu Bo6f519562013-10-29 10:45:05 +08002831 struct old_sa_defrag_extent *old;
Liu Bo38c227d2013-01-29 03:18:40 +00002832 struct new_sa_defrag_extent *new;
2833 int ret;
2834
2835 new = kmalloc(sizeof(*new), GFP_NOFS);
2836 if (!new)
2837 return NULL;
2838
2839 new->inode = inode;
2840 new->file_pos = ordered->file_offset;
2841 new->len = ordered->len;
2842 new->bytenr = ordered->start;
2843 new->disk_len = ordered->disk_len;
2844 new->compress_type = ordered->compress_type;
2845 new->root = RB_ROOT;
2846 INIT_LIST_HEAD(&new->head);
2847
2848 path = btrfs_alloc_path();
2849 if (!path)
2850 goto out_kfree;
2851
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002852 key.objectid = btrfs_ino(BTRFS_I(inode));
Liu Bo38c227d2013-01-29 03:18:40 +00002853 key.type = BTRFS_EXTENT_DATA_KEY;
2854 key.offset = new->file_pos;
2855
2856 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2857 if (ret < 0)
2858 goto out_free_path;
2859 if (ret > 0 && path->slots[0] > 0)
2860 path->slots[0]--;
2861
2862 /* find out all the old extents for the file range */
2863 while (1) {
2864 struct btrfs_file_extent_item *extent;
2865 struct extent_buffer *l;
2866 int slot;
2867 u64 num_bytes;
2868 u64 offset;
2869 u64 end;
2870 u64 disk_bytenr;
2871 u64 extent_offset;
2872
2873 l = path->nodes[0];
2874 slot = path->slots[0];
2875
2876 if (slot >= btrfs_header_nritems(l)) {
2877 ret = btrfs_next_leaf(root, path);
2878 if (ret < 0)
Liu Bo6f519562013-10-29 10:45:05 +08002879 goto out_free_path;
Liu Bo38c227d2013-01-29 03:18:40 +00002880 else if (ret > 0)
2881 break;
2882 continue;
2883 }
2884
2885 btrfs_item_key_to_cpu(l, &key, slot);
2886
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002887 if (key.objectid != btrfs_ino(BTRFS_I(inode)))
Liu Bo38c227d2013-01-29 03:18:40 +00002888 break;
2889 if (key.type != BTRFS_EXTENT_DATA_KEY)
2890 break;
2891 if (key.offset >= new->file_pos + new->len)
2892 break;
2893
2894 extent = btrfs_item_ptr(l, slot, struct btrfs_file_extent_item);
2895
2896 num_bytes = btrfs_file_extent_num_bytes(l, extent);
2897 if (key.offset + num_bytes < new->file_pos)
2898 goto next;
2899
2900 disk_bytenr = btrfs_file_extent_disk_bytenr(l, extent);
2901 if (!disk_bytenr)
2902 goto next;
2903
2904 extent_offset = btrfs_file_extent_offset(l, extent);
2905
2906 old = kmalloc(sizeof(*old), GFP_NOFS);
2907 if (!old)
Liu Bo6f519562013-10-29 10:45:05 +08002908 goto out_free_path;
Liu Bo38c227d2013-01-29 03:18:40 +00002909
2910 offset = max(new->file_pos, key.offset);
2911 end = min(new->file_pos + new->len, key.offset + num_bytes);
2912
2913 old->bytenr = disk_bytenr;
2914 old->extent_offset = extent_offset;
2915 old->offset = offset - key.offset;
2916 old->len = end - offset;
2917 old->new = new;
2918 old->count = 0;
2919 list_add_tail(&old->list, &new->head);
2920next:
2921 path->slots[0]++;
2922 cond_resched();
2923 }
2924
2925 btrfs_free_path(path);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002926 atomic_inc(&fs_info->defrag_running);
Liu Bo38c227d2013-01-29 03:18:40 +00002927
2928 return new;
2929
Liu Bo38c227d2013-01-29 03:18:40 +00002930out_free_path:
2931 btrfs_free_path(path);
2932out_kfree:
Liu Bo6f519562013-10-29 10:45:05 +08002933 free_sa_defrag_extent(new);
Liu Bo38c227d2013-01-29 03:18:40 +00002934 return NULL;
2935}
2936
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002937static void btrfs_release_delalloc_bytes(struct btrfs_fs_info *fs_info,
Miao Xiee570fd22014-06-19 10:42:50 +08002938 u64 start, u64 len)
2939{
2940 struct btrfs_block_group_cache *cache;
2941
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002942 cache = btrfs_lookup_block_group(fs_info, start);
Miao Xiee570fd22014-06-19 10:42:50 +08002943 ASSERT(cache);
2944
2945 spin_lock(&cache->lock);
2946 cache->delalloc_bytes -= len;
2947 spin_unlock(&cache->lock);
2948
2949 btrfs_put_block_group(cache);
2950}
2951
Chris Masond352ac62008-09-29 15:18:18 -04002952/* as ordered data IO finishes, this gets called so we can finish
2953 * an ordered extent if the range of bytes in the file it covers are
2954 * fully written.
2955 */
Josef Bacik5fd02042012-05-02 14:00:54 -04002956static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent)
Chris Masone6dcd2d2008-07-17 12:53:50 -04002957{
Josef Bacik5fd02042012-05-02 14:00:54 -04002958 struct inode *inode = ordered_extent->inode;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002959 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002960 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04002961 struct btrfs_trans_handle *trans = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002962 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Josef Bacik2ac55d42010-02-03 19:33:23 +00002963 struct extent_state *cached_state = NULL;
Liu Bo38c227d2013-01-29 03:18:40 +00002964 struct new_sa_defrag_extent *new = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08002965 int compress_type = 0;
Josef Bacik77cef2e2013-08-29 13:57:21 -04002966 int ret = 0;
2967 u64 logical_len = ordered_extent->len;
Li Zefan82d59022011-04-20 10:33:24 +08002968 bool nolock;
Josef Bacik77cef2e2013-08-29 13:57:21 -04002969 bool truncated = false;
Filipe Mananaa7e3b972017-04-03 10:45:46 +01002970 bool range_locked = false;
2971 bool clear_new_delalloc_bytes = false;
2972
2973 if (!test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags) &&
2974 !test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags) &&
2975 !test_bit(BTRFS_ORDERED_DIRECT, &ordered_extent->flags))
2976 clear_new_delalloc_bytes = true;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002977
Nikolay Borisov70ddc552017-02-20 13:50:35 +02002978 nolock = btrfs_is_free_space_inode(BTRFS_I(inode));
Josef Bacik0cb59c92010-07-02 12:14:14 -04002979
Josef Bacik5fd02042012-05-02 14:00:54 -04002980 if (test_bit(BTRFS_ORDERED_IOERR, &ordered_extent->flags)) {
2981 ret = -EIO;
2982 goto out;
2983 }
2984
Nikolay Borisov7ab79562017-02-20 13:50:57 +02002985 btrfs_free_io_failure_record(BTRFS_I(inode),
2986 ordered_extent->file_offset,
2987 ordered_extent->file_offset +
2988 ordered_extent->len - 1);
Miao Xief6124962014-09-12 18:44:04 +08002989
Josef Bacik77cef2e2013-08-29 13:57:21 -04002990 if (test_bit(BTRFS_ORDERED_TRUNCATED, &ordered_extent->flags)) {
2991 truncated = true;
2992 logical_len = ordered_extent->truncated_len;
2993 /* Truncated the entire extent, don't bother adding */
2994 if (!logical_len)
2995 goto out;
2996 }
2997
Yan, Zhengc2167752009-11-12 09:34:21 +00002998 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags)) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002999 BUG_ON(!list_empty(&ordered_extent->list)); /* Logic error */
Qu Wenruo94ed9382015-09-08 17:25:56 +08003000
3001 /*
3002 * For mwrite(mmap + memset to write) case, we still reserve
3003 * space for NOCOW range.
3004 * As NOCOW won't cause a new delayed ref, just free the space
3005 */
Qu Wenruobc42bda2017-02-27 15:10:39 +08003006 btrfs_qgroup_free_data(inode, NULL, ordered_extent->file_offset,
Qu Wenruo94ed9382015-09-08 17:25:56 +08003007 ordered_extent->len);
Josef Bacik6c760c02012-11-09 10:53:21 -05003008 btrfs_ordered_update_i_size(inode, 0, ordered_extent);
3009 if (nolock)
3010 trans = btrfs_join_transaction_nolock(root);
3011 else
3012 trans = btrfs_join_transaction(root);
3013 if (IS_ERR(trans)) {
3014 ret = PTR_ERR(trans);
3015 trans = NULL;
3016 goto out;
Yan, Zhengc2167752009-11-12 09:34:21 +00003017 }
Josef Bacik69fe2d72017-10-19 14:15:57 -04003018 trans->block_rsv = &BTRFS_I(inode)->block_rsv;
Josef Bacik6c760c02012-11-09 10:53:21 -05003019 ret = btrfs_update_inode_fallback(trans, root, inode);
3020 if (ret) /* -ENOMEM or corruption */
Jeff Mahoney66642832016-06-10 18:19:25 -04003021 btrfs_abort_transaction(trans, ret);
Yan, Zhengc2167752009-11-12 09:34:21 +00003022 goto out;
3023 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04003024
Filipe Mananaa7e3b972017-04-03 10:45:46 +01003025 range_locked = true;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003026 lock_extent_bits(io_tree, ordered_extent->file_offset,
3027 ordered_extent->file_offset + ordered_extent->len - 1,
David Sterbaff13db42015-12-03 14:30:40 +01003028 &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003029
Liu Bo38c227d2013-01-29 03:18:40 +00003030 ret = test_range_bit(io_tree, ordered_extent->file_offset,
3031 ordered_extent->file_offset + ordered_extent->len - 1,
Liu Bo452e62b2017-05-26 17:44:23 -06003032 EXTENT_DEFRAG, 0, cached_state);
Liu Bo38c227d2013-01-29 03:18:40 +00003033 if (ret) {
3034 u64 last_snapshot = btrfs_root_last_snapshot(&root->root_item);
Josef Bacik8101c8d2014-01-29 16:05:30 -05003035 if (0 && last_snapshot >= BTRFS_I(inode)->generation)
Liu Bo38c227d2013-01-29 03:18:40 +00003036 /* the inode is shared */
3037 new = record_old_file_extents(inode, ordered_extent);
3038
3039 clear_extent_bit(io_tree, ordered_extent->file_offset,
3040 ordered_extent->file_offset + ordered_extent->len - 1,
David Sterbaae0f1622017-10-31 16:37:52 +01003041 EXTENT_DEFRAG, 0, 0, &cached_state);
Liu Bo38c227d2013-01-29 03:18:40 +00003042 }
3043
Josef Bacik0cb59c92010-07-02 12:14:14 -04003044 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003045 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04003046 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003047 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003048 if (IS_ERR(trans)) {
3049 ret = PTR_ERR(trans);
3050 trans = NULL;
Filipe Mananaa7e3b972017-04-03 10:45:46 +01003051 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003052 }
Chris Masona79b7d42014-05-22 16:18:52 -07003053
Josef Bacik69fe2d72017-10-19 14:15:57 -04003054 trans->block_rsv = &BTRFS_I(inode)->block_rsv;
Yan, Zhengc2167752009-11-12 09:34:21 +00003055
Chris Masonc8b97812008-10-29 14:49:59 -04003056 if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags))
Li Zefan261507a02010-12-17 14:21:50 +08003057 compress_type = ordered_extent->compress_type;
Yan Zhengd899e052008-10-30 14:25:28 -04003058 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
Li Zefan261507a02010-12-17 14:21:50 +08003059 BUG_ON(compress_type);
Justin Maggardb430b772017-10-30 15:29:10 -07003060 btrfs_qgroup_free_data(inode, NULL, ordered_extent->file_offset,
3061 ordered_extent->len);
Nikolay Borisov7a6d7062017-02-20 13:50:48 +02003062 ret = btrfs_mark_extent_written(trans, BTRFS_I(inode),
Yan Zhengd899e052008-10-30 14:25:28 -04003063 ordered_extent->file_offset,
3064 ordered_extent->file_offset +
Josef Bacik77cef2e2013-08-29 13:57:21 -04003065 logical_len);
Yan Zhengd899e052008-10-30 14:25:28 -04003066 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003067 BUG_ON(root == fs_info->tree_root);
Yan Zhengd899e052008-10-30 14:25:28 -04003068 ret = insert_reserved_file_extent(trans, inode,
3069 ordered_extent->file_offset,
3070 ordered_extent->start,
3071 ordered_extent->disk_len,
Josef Bacik77cef2e2013-08-29 13:57:21 -04003072 logical_len, logical_len,
Li Zefan261507a02010-12-17 14:21:50 +08003073 compress_type, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04003074 BTRFS_FILE_EXTENT_REG);
Miao Xiee570fd22014-06-19 10:42:50 +08003075 if (!ret)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003076 btrfs_release_delalloc_bytes(fs_info,
Miao Xiee570fd22014-06-19 10:42:50 +08003077 ordered_extent->start,
3078 ordered_extent->disk_len);
Yan Zhengd899e052008-10-30 14:25:28 -04003079 }
Josef Bacik5dc562c2012-08-17 13:14:17 -04003080 unpin_extent_cache(&BTRFS_I(inode)->extent_tree,
3081 ordered_extent->file_offset, ordered_extent->len,
3082 trans->transid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003083 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003084 btrfs_abort_transaction(trans, ret);
Filipe Mananaa7e3b972017-04-03 10:45:46 +01003085 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003086 }
Josef Bacik2ac55d42010-02-03 19:33:23 +00003087
Nikolay Borisovac01f262018-01-08 10:59:43 +02003088 ret = add_pending_csums(trans, inode, &ordered_extent->list);
3089 if (ret) {
3090 btrfs_abort_transaction(trans, ret);
3091 goto out;
3092 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04003093
Josef Bacik6c760c02012-11-09 10:53:21 -05003094 btrfs_ordered_update_i_size(inode, 0, ordered_extent);
3095 ret = btrfs_update_inode_fallback(trans, root, inode);
3096 if (ret) { /* -ENOMEM or corruption */
Jeff Mahoney66642832016-06-10 18:19:25 -04003097 btrfs_abort_transaction(trans, ret);
Filipe Mananaa7e3b972017-04-03 10:45:46 +01003098 goto out;
Josef Bacik1ef30be2011-04-05 19:25:36 -04003099 }
3100 ret = 0;
Yan, Zhengc2167752009-11-12 09:34:21 +00003101out:
Filipe Mananaa7e3b972017-04-03 10:45:46 +01003102 if (range_locked || clear_new_delalloc_bytes) {
3103 unsigned int clear_bits = 0;
3104
3105 if (range_locked)
3106 clear_bits |= EXTENT_LOCKED;
3107 if (clear_new_delalloc_bytes)
3108 clear_bits |= EXTENT_DELALLOC_NEW;
3109 clear_extent_bit(&BTRFS_I(inode)->io_tree,
3110 ordered_extent->file_offset,
3111 ordered_extent->file_offset +
3112 ordered_extent->len - 1,
3113 clear_bits,
3114 (clear_bits & EXTENT_LOCKED) ? 1 : 0,
David Sterbaae0f1622017-10-31 16:37:52 +01003115 0, &cached_state);
Filipe Mananaa7e3b972017-04-03 10:45:46 +01003116 }
3117
Miao Xiea698d0752012-09-20 01:51:59 -06003118 if (trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003119 btrfs_end_transaction(trans);
Josef Bacik0cb59c92010-07-02 12:14:14 -04003120
Josef Bacik77cef2e2013-08-29 13:57:21 -04003121 if (ret || truncated) {
3122 u64 start, end;
3123
3124 if (truncated)
3125 start = ordered_extent->file_offset + logical_len;
3126 else
3127 start = ordered_extent->file_offset;
3128 end = ordered_extent->file_offset + ordered_extent->len - 1;
David Sterbaf08dc362017-10-31 17:02:39 +01003129 clear_extent_uptodate(io_tree, start, end, NULL);
Josef Bacik77cef2e2013-08-29 13:57:21 -04003130
3131 /* Drop the cache for the part of the extent we didn't write. */
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02003132 btrfs_drop_extent_cache(BTRFS_I(inode), start, end, 0);
Josef Bacik5fd02042012-05-02 14:00:54 -04003133
Josef Bacik0bec9ef2013-01-31 14:58:00 -05003134 /*
3135 * If the ordered extent had an IOERR or something else went
3136 * wrong we need to return the space for this ordered extent
Josef Bacik77cef2e2013-08-29 13:57:21 -04003137 * back to the allocator. We only free the extent in the
3138 * truncated case if we didn't write out the extent at all.
Josef Bacik0bec9ef2013-01-31 14:58:00 -05003139 */
Josef Bacik77cef2e2013-08-29 13:57:21 -04003140 if ((ret || !logical_len) &&
3141 !test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags) &&
Josef Bacik0bec9ef2013-01-31 14:58:00 -05003142 !test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags))
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003143 btrfs_free_reserved_extent(fs_info,
3144 ordered_extent->start,
Miao Xiee570fd22014-06-19 10:42:50 +08003145 ordered_extent->disk_len, 1);
Josef Bacik0bec9ef2013-01-31 14:58:00 -05003146 }
3147
3148
Josef Bacik5fd02042012-05-02 14:00:54 -04003149 /*
Liu Bo8bad3c02012-06-18 12:14:23 +08003150 * This needs to be done to make sure anybody waiting knows we are done
3151 * updating everything for this ordered extent.
Josef Bacik5fd02042012-05-02 14:00:54 -04003152 */
3153 btrfs_remove_ordered_extent(inode, ordered_extent);
3154
Liu Bo38c227d2013-01-29 03:18:40 +00003155 /* for snapshot-aware defrag */
Liu Bo6f519562013-10-29 10:45:05 +08003156 if (new) {
3157 if (ret) {
3158 free_sa_defrag_extent(new);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003159 atomic_dec(&fs_info->defrag_running);
Liu Bo6f519562013-10-29 10:45:05 +08003160 } else {
3161 relink_file_extents(new);
3162 }
3163 }
Liu Bo38c227d2013-01-29 03:18:40 +00003164
Chris Masone6dcd2d2008-07-17 12:53:50 -04003165 /* once for us */
3166 btrfs_put_ordered_extent(ordered_extent);
3167 /* once for the tree */
3168 btrfs_put_ordered_extent(ordered_extent);
3169
Josef Bacik5fd02042012-05-02 14:00:54 -04003170 return ret;
3171}
3172
3173static void finish_ordered_fn(struct btrfs_work *work)
3174{
3175 struct btrfs_ordered_extent *ordered_extent;
3176 ordered_extent = container_of(work, struct btrfs_ordered_extent, work);
3177 btrfs_finish_ordered_io(ordered_extent);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003178}
3179
David Sterbac3988d62017-02-17 15:18:32 +01003180static void btrfs_writepage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason211f90e2008-07-18 11:56:15 -04003181 struct extent_state *state, int uptodate)
3182{
Josef Bacik5fd02042012-05-02 14:00:54 -04003183 struct inode *inode = page->mapping->host;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003184 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik5fd02042012-05-02 14:00:54 -04003185 struct btrfs_ordered_extent *ordered_extent = NULL;
Liu Bo9e0af232014-08-15 23:36:53 +08003186 struct btrfs_workqueue *wq;
3187 btrfs_work_func_t func;
Josef Bacik5fd02042012-05-02 14:00:54 -04003188
liubo1abe9b82011-03-24 11:18:59 +00003189 trace_btrfs_writepage_end_io_hook(page, start, end, uptodate);
3190
Chris Mason8b62b722009-09-02 16:53:46 -04003191 ClearPagePrivate2(page);
Josef Bacik5fd02042012-05-02 14:00:54 -04003192 if (!btrfs_dec_test_ordered_pending(inode, &ordered_extent, start,
3193 end - start + 1, uptodate))
David Sterbac3988d62017-02-17 15:18:32 +01003194 return;
Josef Bacik5fd02042012-05-02 14:00:54 -04003195
Nikolay Borisov70ddc552017-02-20 13:50:35 +02003196 if (btrfs_is_free_space_inode(BTRFS_I(inode))) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003197 wq = fs_info->endio_freespace_worker;
Liu Bo9e0af232014-08-15 23:36:53 +08003198 func = btrfs_freespace_write_helper;
3199 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003200 wq = fs_info->endio_write_workers;
Liu Bo9e0af232014-08-15 23:36:53 +08003201 func = btrfs_endio_write_helper;
3202 }
Josef Bacik5fd02042012-05-02 14:00:54 -04003203
Liu Bo9e0af232014-08-15 23:36:53 +08003204 btrfs_init_work(&ordered_extent->work, func, finish_ordered_fn, NULL,
3205 NULL);
3206 btrfs_queue_work(wq, &ordered_extent->work);
Chris Mason211f90e2008-07-18 11:56:15 -04003207}
3208
Miao Xiedc380ae2014-09-12 18:43:55 +08003209static int __readpage_endio_check(struct inode *inode,
3210 struct btrfs_io_bio *io_bio,
3211 int icsum, struct page *page,
3212 int pgoff, u64 start, size_t len)
3213{
3214 char *kaddr;
3215 u32 csum_expected;
3216 u32 csum = ~(u32)0;
Miao Xiedc380ae2014-09-12 18:43:55 +08003217
3218 csum_expected = *(((u32 *)io_bio->csum) + icsum);
3219
3220 kaddr = kmap_atomic(page);
3221 csum = btrfs_csum_data(kaddr + pgoff, csum, len);
Domagoj Tršan0b5e3da2016-10-27 08:52:33 +01003222 btrfs_csum_final(csum, (u8 *)&csum);
Miao Xiedc380ae2014-09-12 18:43:55 +08003223 if (csum != csum_expected)
3224 goto zeroit;
3225
3226 kunmap_atomic(kaddr);
3227 return 0;
3228zeroit:
Nikolay Borisov0970a222017-02-20 13:50:53 +02003229 btrfs_print_data_csum_error(BTRFS_I(inode), start, csum, csum_expected,
Qu Wenruo6f6b6432017-02-09 10:45:06 +08003230 io_bio->mirror_num);
Miao Xiedc380ae2014-09-12 18:43:55 +08003231 memset(kaddr + pgoff, 1, len);
3232 flush_dcache_page(page);
3233 kunmap_atomic(kaddr);
Miao Xiedc380ae2014-09-12 18:43:55 +08003234 return -EIO;
3235}
3236
Chris Masond352ac62008-09-29 15:18:18 -04003237/*
Chris Masond352ac62008-09-29 15:18:18 -04003238 * when reads are done, we need to check csums to verify the data is correct
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02003239 * if there's a match, we allow the bio to finish. If not, the code in
3240 * extent_io.c will try to find good copies for us.
Chris Masond352ac62008-09-29 15:18:18 -04003241 */
Miao Xiefacc8a222013-07-25 19:22:34 +08003242static int btrfs_readpage_end_io_hook(struct btrfs_io_bio *io_bio,
3243 u64 phy_offset, struct page *page,
3244 u64 start, u64 end, int mirror)
Chris Mason07157aa2007-08-30 08:50:51 -04003245{
Miao Xie4eee4fa2012-12-21 09:17:45 +00003246 size_t offset = start - page_offset(page);
Chris Mason07157aa2007-08-30 08:50:51 -04003247 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05003248 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masonff79f812007-10-15 16:22:25 -04003249 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond1310b22008-01-24 16:13:08 -05003250
Chris Masond20f7042008-12-08 16:58:54 -05003251 if (PageChecked(page)) {
3252 ClearPageChecked(page);
Miao Xiedc380ae2014-09-12 18:43:55 +08003253 return 0;
Chris Masond20f7042008-12-08 16:58:54 -05003254 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02003255
3256 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)
Miao Xiedc380ae2014-09-12 18:43:55 +08003257 return 0;
Chris Masond20f7042008-12-08 16:58:54 -05003258
Yan Zheng17d217f2008-12-12 10:03:38 -05003259 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID &&
Chris Mason9655d292009-09-02 15:22:30 -04003260 test_range_bit(io_tree, start, end, EXTENT_NODATASUM, 1, NULL)) {
David Sterba91166212016-04-26 23:54:39 +02003261 clear_extent_bits(io_tree, start, end, EXTENT_NODATASUM);
Yan Zheng17d217f2008-12-12 10:03:38 -05003262 return 0;
3263 }
3264
Miao Xiefacc8a222013-07-25 19:22:34 +08003265 phy_offset >>= inode->i_sb->s_blocksize_bits;
Miao Xiedc380ae2014-09-12 18:43:55 +08003266 return __readpage_endio_check(inode, io_bio, phy_offset, page, offset,
3267 start, (size_t)(end - start + 1));
Chris Mason07157aa2007-08-30 08:50:51 -04003268}
Chris Masonb888db22007-08-27 16:49:44 -04003269
Nikolay Borisovc1c3fac2018-01-16 09:31:58 +02003270/*
3271 * btrfs_add_delayed_iput - perform a delayed iput on @inode
3272 *
3273 * @inode: The inode we want to perform iput on
3274 *
3275 * This function uses the generic vfs_inode::i_count to track whether we should
3276 * just decrement it (in case it's > 1) or if this is the last iput then link
3277 * the inode to the delayed iput machinery. Delayed iputs are processed at
3278 * transaction commit time/superblock commit/cleaner kthread.
3279 */
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003280void btrfs_add_delayed_iput(struct inode *inode)
3281{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003282 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
David Sterba8089fe62015-11-19 14:15:51 +01003283 struct btrfs_inode *binode = BTRFS_I(inode);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003284
3285 if (atomic_add_unless(&inode->i_count, -1, 1))
3286 return;
3287
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003288 spin_lock(&fs_info->delayed_iput_lock);
Nikolay Borisovc1c3fac2018-01-16 09:31:58 +02003289 ASSERT(list_empty(&binode->delayed_iput));
3290 list_add_tail(&binode->delayed_iput, &fs_info->delayed_iputs);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003291 spin_unlock(&fs_info->delayed_iput_lock);
3292}
3293
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003294void btrfs_run_delayed_iputs(struct btrfs_fs_info *fs_info)
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003295{
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003296
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003297 spin_lock(&fs_info->delayed_iput_lock);
David Sterba8089fe62015-11-19 14:15:51 +01003298 while (!list_empty(&fs_info->delayed_iputs)) {
3299 struct btrfs_inode *inode;
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003300
David Sterba8089fe62015-11-19 14:15:51 +01003301 inode = list_first_entry(&fs_info->delayed_iputs,
3302 struct btrfs_inode, delayed_iput);
Nikolay Borisovc1c3fac2018-01-16 09:31:58 +02003303 list_del_init(&inode->delayed_iput);
David Sterba8089fe62015-11-19 14:15:51 +01003304 spin_unlock(&fs_info->delayed_iput_lock);
3305 iput(&inode->vfs_inode);
3306 spin_lock(&fs_info->delayed_iput_lock);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003307 }
David Sterba8089fe62015-11-19 14:15:51 +01003308 spin_unlock(&fs_info->delayed_iput_lock);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003309}
3310
Yan, Zhengd68fc572010-05-16 10:49:58 -04003311/*
Justin P. Mattock42b2aa82011-11-28 20:31:00 -08003312 * This is called in transaction commit time. If there are no orphan
Yan, Zhengd68fc572010-05-16 10:49:58 -04003313 * files in the subvolume, it removes orphan item and frees block_rsv
3314 * structure.
3315 */
3316void btrfs_orphan_commit_root(struct btrfs_trans_handle *trans,
3317 struct btrfs_root *root)
3318{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003319 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik90290e12011-12-02 15:44:12 -05003320 struct btrfs_block_rsv *block_rsv;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003321 int ret;
3322
Josef Bacik8a35d952012-05-23 14:26:42 -04003323 if (atomic_read(&root->orphan_inodes) ||
Yan, Zhengd68fc572010-05-16 10:49:58 -04003324 root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE)
3325 return;
3326
Josef Bacik90290e12011-12-02 15:44:12 -05003327 spin_lock(&root->orphan_lock);
Josef Bacik8a35d952012-05-23 14:26:42 -04003328 if (atomic_read(&root->orphan_inodes)) {
Josef Bacik90290e12011-12-02 15:44:12 -05003329 spin_unlock(&root->orphan_lock);
3330 return;
3331 }
3332
3333 if (root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE) {
3334 spin_unlock(&root->orphan_lock);
3335 return;
3336 }
3337
3338 block_rsv = root->orphan_block_rsv;
3339 root->orphan_block_rsv = NULL;
3340 spin_unlock(&root->orphan_lock);
3341
Miao Xie27cdeb72014-04-02 19:51:05 +08003342 if (test_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &root->state) &&
Yan, Zhengd68fc572010-05-16 10:49:58 -04003343 btrfs_root_refs(&root->root_item) > 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003344 ret = btrfs_del_orphan_item(trans, fs_info->tree_root,
Yan, Zhengd68fc572010-05-16 10:49:58 -04003345 root->root_key.objectid);
Josef Bacik4ef31a42013-08-13 14:10:08 -04003346 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04003347 btrfs_abort_transaction(trans, ret);
Josef Bacik4ef31a42013-08-13 14:10:08 -04003348 else
Miao Xie27cdeb72014-04-02 19:51:05 +08003349 clear_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED,
3350 &root->state);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003351 }
3352
Josef Bacik90290e12011-12-02 15:44:12 -05003353 if (block_rsv) {
3354 WARN_ON(block_rsv->size > 0);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003355 btrfs_free_block_rsv(fs_info, block_rsv);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003356 }
3357}
3358
3359/*
Josef Bacik7b128762008-07-24 12:17:14 -04003360 * This creates an orphan entry for the given inode in case something goes
3361 * wrong in the middle of an unlink/truncate.
Yan, Zhengd68fc572010-05-16 10:49:58 -04003362 *
3363 * NOTE: caller of this function should reserve 5 units of metadata for
3364 * this function.
Josef Bacik7b128762008-07-24 12:17:14 -04003365 */
Nikolay Borisov73f2e542017-02-20 13:50:59 +02003366int btrfs_orphan_add(struct btrfs_trans_handle *trans,
3367 struct btrfs_inode *inode)
Josef Bacik7b128762008-07-24 12:17:14 -04003368{
Nikolay Borisov73f2e542017-02-20 13:50:59 +02003369 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
3370 struct btrfs_root *root = inode->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003371 struct btrfs_block_rsv *block_rsv = NULL;
3372 int reserve = 0;
3373 int insert = 0;
3374 int ret;
Josef Bacik7b128762008-07-24 12:17:14 -04003375
Yan, Zhengd68fc572010-05-16 10:49:58 -04003376 if (!root->orphan_block_rsv) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003377 block_rsv = btrfs_alloc_block_rsv(fs_info,
3378 BTRFS_BLOCK_RSV_TEMP);
Tsutomu Itohb5324022011-07-19 07:27:20 +00003379 if (!block_rsv)
3380 return -ENOMEM;
Josef Bacik7b128762008-07-24 12:17:14 -04003381 }
3382
Josef Bacik8a35d952012-05-23 14:26:42 -04003383 if (!test_and_set_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
Nikolay Borisov73f2e542017-02-20 13:50:59 +02003384 &inode->runtime_flags)) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04003385#if 0
3386 /*
3387 * For proper ENOSPC handling, we should do orphan
3388 * cleanup when mounting. But this introduces backward
3389 * compatibility issue.
3390 */
3391 if (!xchg(&root->orphan_item_inserted, 1))
3392 insert = 2;
3393 else
3394 insert = 1;
3395#endif
3396 insert = 1;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003397 }
Josef Bacik7b128762008-07-24 12:17:14 -04003398
Josef Bacik72ac3c02012-05-23 14:13:11 -04003399 if (!test_and_set_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
Nikolay Borisov73f2e542017-02-20 13:50:59 +02003400 &inode->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04003401 reserve = 1;
Liu Bo3d5adda2018-01-25 11:02:55 -07003402
3403 spin_lock(&root->orphan_lock);
3404 /* If someone has created ->orphan_block_rsv, be happy to use it. */
3405 if (!root->orphan_block_rsv) {
3406 root->orphan_block_rsv = block_rsv;
3407 } else if (block_rsv) {
3408 btrfs_free_block_rsv(fs_info, block_rsv);
3409 block_rsv = NULL;
3410 }
3411
3412 if (insert)
3413 atomic_inc(&root->orphan_inodes);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003414 spin_unlock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04003415
Yan, Zhengd68fc572010-05-16 10:49:58 -04003416 /* grab metadata reservation from transaction handle */
3417 if (reserve) {
3418 ret = btrfs_orphan_reserve_metadata(trans, inode);
Josef Bacik3b6571c2016-05-27 13:03:04 -04003419 ASSERT(!ret);
3420 if (ret) {
Liu Bo1a932ef2018-01-25 11:02:54 -07003421 /*
3422 * dec doesn't need spin_lock as ->orphan_block_rsv
3423 * would be released only if ->orphan_inodes is
3424 * zero.
3425 */
Josef Bacik3b6571c2016-05-27 13:03:04 -04003426 atomic_dec(&root->orphan_inodes);
3427 clear_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
Nikolay Borisov73f2e542017-02-20 13:50:59 +02003428 &inode->runtime_flags);
Josef Bacik3b6571c2016-05-27 13:03:04 -04003429 if (insert)
3430 clear_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
Nikolay Borisov73f2e542017-02-20 13:50:59 +02003431 &inode->runtime_flags);
Josef Bacik3b6571c2016-05-27 13:03:04 -04003432 return ret;
3433 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04003434 }
3435
3436 /* insert an orphan item to track this unlinked/truncated file */
3437 if (insert >= 1) {
Nikolay Borisov73f2e542017-02-20 13:50:59 +02003438 ret = btrfs_insert_orphan_item(trans, root, btrfs_ino(inode));
Josef Bacik4ef31a42013-08-13 14:10:08 -04003439 if (ret) {
Josef Bacik4ef31a42013-08-13 14:10:08 -04003440 if (reserve) {
3441 clear_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
Nikolay Borisov73f2e542017-02-20 13:50:59 +02003442 &inode->runtime_flags);
Josef Bacik4ef31a42013-08-13 14:10:08 -04003443 btrfs_orphan_release_metadata(inode);
3444 }
Liu Bo1a932ef2018-01-25 11:02:54 -07003445 /*
3446 * btrfs_orphan_commit_root may race with us and set
3447 * ->orphan_block_rsv to zero, in order to avoid that,
3448 * decrease ->orphan_inodes after everything is done.
3449 */
3450 atomic_dec(&root->orphan_inodes);
Josef Bacik4ef31a42013-08-13 14:10:08 -04003451 if (ret != -EEXIST) {
Josef Bacike8e7cff2013-08-21 15:54:00 -04003452 clear_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
Nikolay Borisov73f2e542017-02-20 13:50:59 +02003453 &inode->runtime_flags);
Jeff Mahoney66642832016-06-10 18:19:25 -04003454 btrfs_abort_transaction(trans, ret);
Josef Bacik4ef31a42013-08-13 14:10:08 -04003455 return ret;
3456 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003457 }
3458 ret = 0;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003459 }
3460
3461 /* insert an orphan item to track subvolume contains orphan files */
3462 if (insert >= 2) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003463 ret = btrfs_insert_orphan_item(trans, fs_info->tree_root,
Yan, Zhengd68fc572010-05-16 10:49:58 -04003464 root->root_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003465 if (ret && ret != -EEXIST) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003466 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003467 return ret;
3468 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04003469 }
3470 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04003471}
3472
3473/*
3474 * We have done the truncate/delete so we can go ahead and remove the orphan
3475 * item for this particular inode.
3476 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00003477static int btrfs_orphan_del(struct btrfs_trans_handle *trans,
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02003478 struct btrfs_inode *inode)
Josef Bacik7b128762008-07-24 12:17:14 -04003479{
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02003480 struct btrfs_root *root = inode->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003481 int delete_item = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04003482 int ret = 0;
3483
Josef Bacik8a35d952012-05-23 14:26:42 -04003484 if (test_and_clear_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02003485 &inode->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04003486 delete_item = 1;
Josef Bacik7b128762008-07-24 12:17:14 -04003487
Liu Bo1a932ef2018-01-25 11:02:54 -07003488 if (delete_item && trans)
3489 ret = btrfs_del_orphan_item(trans, root, btrfs_ino(inode));
3490
Josef Bacik72ac3c02012-05-23 14:13:11 -04003491 if (test_and_clear_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02003492 &inode->runtime_flags))
Filipe David Borba Manana703c88e2013-09-22 21:54:55 +01003493 btrfs_orphan_release_metadata(inode);
3494
Liu Bo1a932ef2018-01-25 11:02:54 -07003495 /*
3496 * btrfs_orphan_commit_root may race with us and set ->orphan_block_rsv
3497 * to zero, in order to avoid that, decrease ->orphan_inodes after
3498 * everything is done.
3499 */
3500 if (delete_item)
3501 atomic_dec(&root->orphan_inodes);
3502
Josef Bacik4ef31a42013-08-13 14:10:08 -04003503 return ret;
Josef Bacik7b128762008-07-24 12:17:14 -04003504}
3505
3506/*
3507 * this cleans up any orphans that may be left on the list from the last use
3508 * of this root.
3509 */
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003510int btrfs_orphan_cleanup(struct btrfs_root *root)
Josef Bacik7b128762008-07-24 12:17:14 -04003511{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003512 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik7b128762008-07-24 12:17:14 -04003513 struct btrfs_path *path;
3514 struct extent_buffer *leaf;
Josef Bacik7b128762008-07-24 12:17:14 -04003515 struct btrfs_key key, found_key;
3516 struct btrfs_trans_handle *trans;
3517 struct inode *inode;
Josef Bacik8f6d7f42011-09-26 15:55:20 -04003518 u64 last_objectid = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04003519 int ret = 0, nr_unlink = 0, nr_truncate = 0;
3520
Yan, Zhengd68fc572010-05-16 10:49:58 -04003521 if (cmpxchg(&root->orphan_cleanup_state, 0, ORPHAN_CLEANUP_STARTED))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003522 return 0;
Yan, Zhengc71bf092009-11-12 09:34:40 +00003523
3524 path = btrfs_alloc_path();
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003525 if (!path) {
3526 ret = -ENOMEM;
3527 goto out;
3528 }
David Sterbae4058b52015-11-27 16:31:35 +01003529 path->reada = READA_BACK;
Josef Bacik7b128762008-07-24 12:17:14 -04003530
3531 key.objectid = BTRFS_ORPHAN_OBJECTID;
David Sterba962a2982014-06-04 18:41:45 +02003532 key.type = BTRFS_ORPHAN_ITEM_KEY;
Josef Bacik7b128762008-07-24 12:17:14 -04003533 key.offset = (u64)-1;
3534
Josef Bacik7b128762008-07-24 12:17:14 -04003535 while (1) {
3536 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003537 if (ret < 0)
3538 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003539
3540 /*
3541 * if ret == 0 means we found what we were searching for, which
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003542 * is weird, but possible, so only screw with path if we didn't
Josef Bacik7b128762008-07-24 12:17:14 -04003543 * find the key and see if we have stuff that matches
3544 */
3545 if (ret > 0) {
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003546 ret = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04003547 if (path->slots[0] == 0)
3548 break;
3549 path->slots[0]--;
3550 }
3551
3552 /* pull out the item */
3553 leaf = path->nodes[0];
Josef Bacik7b128762008-07-24 12:17:14 -04003554 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3555
3556 /* make sure the item matches what we want */
3557 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
3558 break;
David Sterba962a2982014-06-04 18:41:45 +02003559 if (found_key.type != BTRFS_ORPHAN_ITEM_KEY)
Josef Bacik7b128762008-07-24 12:17:14 -04003560 break;
3561
3562 /* release the path since we're done with it */
David Sterbab3b4aa72011-04-21 01:20:15 +02003563 btrfs_release_path(path);
Josef Bacik7b128762008-07-24 12:17:14 -04003564
3565 /*
3566 * this is where we are basically btrfs_lookup, without the
3567 * crossing root thing. we store the inode number in the
3568 * offset of the orphan item.
3569 */
Josef Bacik8f6d7f42011-09-26 15:55:20 -04003570
3571 if (found_key.offset == last_objectid) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003572 btrfs_err(fs_info,
3573 "Error removing orphan entry, stopping orphan cleanup");
Josef Bacik8f6d7f42011-09-26 15:55:20 -04003574 ret = -EINVAL;
3575 goto out;
3576 }
3577
3578 last_objectid = found_key.offset;
3579
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003580 found_key.objectid = found_key.offset;
3581 found_key.type = BTRFS_INODE_ITEM_KEY;
3582 found_key.offset = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003583 inode = btrfs_iget(fs_info->sb, &found_key, root, NULL);
Rusty Russell8c6ffba2013-07-15 11:20:32 +09303584 ret = PTR_ERR_OR_ZERO(inode);
Filipe Manana67710892016-06-06 11:51:25 +01003585 if (ret && ret != -ENOENT)
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003586 goto out;
Josef Bacika8c9e572011-09-21 16:55:59 -04003587
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003588 if (ret == -ENOENT && root == fs_info->tree_root) {
Arne Jansenf8e9e0b2011-12-14 20:12:02 -05003589 struct btrfs_root *dead_root;
3590 struct btrfs_fs_info *fs_info = root->fs_info;
3591 int is_dead_root = 0;
3592
3593 /*
3594 * this is an orphan in the tree root. Currently these
3595 * could come from 2 sources:
3596 * a) a snapshot deletion in progress
3597 * b) a free space cache inode
3598 * We need to distinguish those two, as the snapshot
3599 * orphan must not get deleted.
3600 * find_dead_roots already ran before us, so if this
3601 * is a snapshot deletion, we should find the root
3602 * in the dead_roots list
3603 */
3604 spin_lock(&fs_info->trans_lock);
3605 list_for_each_entry(dead_root, &fs_info->dead_roots,
3606 root_list) {
3607 if (dead_root->root_key.objectid ==
3608 found_key.objectid) {
3609 is_dead_root = 1;
3610 break;
3611 }
3612 }
3613 spin_unlock(&fs_info->trans_lock);
3614 if (is_dead_root) {
3615 /* prevent this orphan from being found again */
3616 key.offset = found_key.objectid - 1;
3617 continue;
3618 }
3619 }
Josef Bacika8c9e572011-09-21 16:55:59 -04003620 /*
3621 * Inode is already gone but the orphan item is still there,
3622 * kill the orphan item.
3623 */
Filipe Manana67710892016-06-06 11:51:25 +01003624 if (ret == -ENOENT) {
Josef Bacika8c9e572011-09-21 16:55:59 -04003625 trans = btrfs_start_transaction(root, 1);
3626 if (IS_ERR(trans)) {
3627 ret = PTR_ERR(trans);
3628 goto out;
3629 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003630 btrfs_debug(fs_info, "auto deleting %Lu",
3631 found_key.objectid);
Josef Bacika8c9e572011-09-21 16:55:59 -04003632 ret = btrfs_del_orphan_item(trans, root,
3633 found_key.objectid);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003634 btrfs_end_transaction(trans);
Josef Bacik4ef31a42013-08-13 14:10:08 -04003635 if (ret)
3636 goto out;
Josef Bacika8c9e572011-09-21 16:55:59 -04003637 continue;
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003638 }
Josef Bacik7b128762008-07-24 12:17:14 -04003639
Josef Bacik7b128762008-07-24 12:17:14 -04003640 /*
3641 * add this inode to the orphan list so btrfs_orphan_del does
3642 * the proper thing when we hit it
3643 */
Josef Bacik8a35d952012-05-23 14:26:42 -04003644 set_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
3645 &BTRFS_I(inode)->runtime_flags);
Josef Bacik925396e2013-02-01 15:57:47 -05003646 atomic_inc(&root->orphan_inodes);
Josef Bacik7b128762008-07-24 12:17:14 -04003647
Josef Bacik7b128762008-07-24 12:17:14 -04003648 /* if we have links, this was a truncate, lets do that */
3649 if (inode->i_nlink) {
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303650 if (WARN_ON(!S_ISREG(inode->i_mode))) {
Josef Bacika41ad392011-01-31 15:30:16 -05003651 iput(inode);
3652 continue;
3653 }
Josef Bacik7b128762008-07-24 12:17:14 -04003654 nr_truncate++;
Josef Bacikf3fe8202013-01-07 17:03:21 -05003655
3656 /* 1 for the orphan item deletion. */
3657 trans = btrfs_start_transaction(root, 1);
3658 if (IS_ERR(trans)) {
Josef Bacikc69b26b2013-06-03 16:51:23 -04003659 iput(inode);
Josef Bacikf3fe8202013-01-07 17:03:21 -05003660 ret = PTR_ERR(trans);
3661 goto out;
3662 }
Nikolay Borisov73f2e542017-02-20 13:50:59 +02003663 ret = btrfs_orphan_add(trans, BTRFS_I(inode));
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003664 btrfs_end_transaction(trans);
Josef Bacikc69b26b2013-06-03 16:51:23 -04003665 if (ret) {
3666 iput(inode);
Josef Bacikf3fe8202013-01-07 17:03:21 -05003667 goto out;
Josef Bacikc69b26b2013-06-03 16:51:23 -04003668 }
Josef Bacikf3fe8202013-01-07 17:03:21 -05003669
Filipe Manana213e8c52018-02-06 20:40:31 +00003670 ret = btrfs_truncate(inode, false);
Josef Bacik4a7d0f62013-02-07 16:27:28 -05003671 if (ret)
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02003672 btrfs_orphan_del(NULL, BTRFS_I(inode));
Josef Bacik7b128762008-07-24 12:17:14 -04003673 } else {
3674 nr_unlink++;
3675 }
3676
3677 /* this will do delete_inode and everything for us */
3678 iput(inode);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003679 if (ret)
3680 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003681 }
Miao Xie3254c872011-11-10 20:45:05 -05003682 /* release the path since we're done with it */
3683 btrfs_release_path(path);
3684
Yan, Zhengd68fc572010-05-16 10:49:58 -04003685 root->orphan_cleanup_state = ORPHAN_CLEANUP_DONE;
3686
3687 if (root->orphan_block_rsv)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003688 btrfs_block_rsv_release(fs_info, root->orphan_block_rsv,
Yan, Zhengd68fc572010-05-16 10:49:58 -04003689 (u64)-1);
3690
Miao Xie27cdeb72014-04-02 19:51:05 +08003691 if (root->orphan_block_rsv ||
3692 test_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &root->state)) {
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003693 trans = btrfs_join_transaction(root);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003694 if (!IS_ERR(trans))
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003695 btrfs_end_transaction(trans);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003696 }
Josef Bacik7b128762008-07-24 12:17:14 -04003697
3698 if (nr_unlink)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003699 btrfs_debug(fs_info, "unlinked %d orphans", nr_unlink);
Josef Bacik7b128762008-07-24 12:17:14 -04003700 if (nr_truncate)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003701 btrfs_debug(fs_info, "truncated %d orphans", nr_truncate);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003702
3703out:
3704 if (ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003705 btrfs_err(fs_info, "could not do orphan cleanup %d", ret);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003706 btrfs_free_path(path);
3707 return ret;
Josef Bacik7b128762008-07-24 12:17:14 -04003708}
3709
Chris Masond352ac62008-09-29 15:18:18 -04003710/*
Chris Mason46a53cc2009-04-27 11:47:50 -04003711 * very simple check to peek ahead in the leaf looking for xattrs. If we
3712 * don't find any xattrs, we know there can't be any acls.
3713 *
3714 * slot is the slot the inode is in, objectid is the objectid of the inode
3715 */
3716static noinline int acls_after_inode_item(struct extent_buffer *leaf,
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003717 int slot, u64 objectid,
3718 int *first_xattr_slot)
Chris Mason46a53cc2009-04-27 11:47:50 -04003719{
3720 u32 nritems = btrfs_header_nritems(leaf);
3721 struct btrfs_key found_key;
Josef Bacikf23b5a52013-06-19 10:16:26 -04003722 static u64 xattr_access = 0;
3723 static u64 xattr_default = 0;
Chris Mason46a53cc2009-04-27 11:47:50 -04003724 int scanned = 0;
3725
Josef Bacikf23b5a52013-06-19 10:16:26 -04003726 if (!xattr_access) {
Andreas Gruenbacher97d79292015-12-02 14:44:35 +01003727 xattr_access = btrfs_name_hash(XATTR_NAME_POSIX_ACL_ACCESS,
3728 strlen(XATTR_NAME_POSIX_ACL_ACCESS));
3729 xattr_default = btrfs_name_hash(XATTR_NAME_POSIX_ACL_DEFAULT,
3730 strlen(XATTR_NAME_POSIX_ACL_DEFAULT));
Josef Bacikf23b5a52013-06-19 10:16:26 -04003731 }
3732
Chris Mason46a53cc2009-04-27 11:47:50 -04003733 slot++;
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003734 *first_xattr_slot = -1;
Chris Mason46a53cc2009-04-27 11:47:50 -04003735 while (slot < nritems) {
3736 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3737
3738 /* we found a different objectid, there must not be acls */
3739 if (found_key.objectid != objectid)
3740 return 0;
3741
3742 /* we found an xattr, assume we've got an acl */
Josef Bacikf23b5a52013-06-19 10:16:26 -04003743 if (found_key.type == BTRFS_XATTR_ITEM_KEY) {
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003744 if (*first_xattr_slot == -1)
3745 *first_xattr_slot = slot;
Josef Bacikf23b5a52013-06-19 10:16:26 -04003746 if (found_key.offset == xattr_access ||
3747 found_key.offset == xattr_default)
3748 return 1;
3749 }
Chris Mason46a53cc2009-04-27 11:47:50 -04003750
3751 /*
3752 * we found a key greater than an xattr key, there can't
3753 * be any acls later on
3754 */
3755 if (found_key.type > BTRFS_XATTR_ITEM_KEY)
3756 return 0;
3757
3758 slot++;
3759 scanned++;
3760
3761 /*
3762 * it goes inode, inode backrefs, xattrs, extents,
3763 * so if there are a ton of hard links to an inode there can
3764 * be a lot of backrefs. Don't waste time searching too hard,
3765 * this is just an optimization
3766 */
3767 if (scanned >= 8)
3768 break;
3769 }
3770 /* we hit the end of the leaf before we found an xattr or
3771 * something larger than an xattr. We have to assume the inode
3772 * has acls
3773 */
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003774 if (*first_xattr_slot == -1)
3775 *first_xattr_slot = slot;
Chris Mason46a53cc2009-04-27 11:47:50 -04003776 return 1;
3777}
3778
3779/*
Chris Masond352ac62008-09-29 15:18:18 -04003780 * read an inode from the btree into the in-memory inode
3781 */
Filipe Manana67710892016-06-06 11:51:25 +01003782static int btrfs_read_locked_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04003783{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003784 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04003785 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04003786 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003787 struct btrfs_inode_item *inode_item;
3788 struct btrfs_root *root = BTRFS_I(inode)->root;
3789 struct btrfs_key location;
Miao Xie67de1172013-12-26 13:07:06 +08003790 unsigned long ptr;
Chris Mason46a53cc2009-04-27 11:47:50 -04003791 int maybe_acls;
Josef Bacik618e21d2007-07-11 10:18:17 -04003792 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -04003793 int ret;
Miao Xie2f7e33d2011-06-23 07:27:13 +00003794 bool filled = false;
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003795 int first_xattr_slot;
Miao Xie2f7e33d2011-06-23 07:27:13 +00003796
3797 ret = btrfs_fill_inode(inode, &rdev);
3798 if (!ret)
3799 filled = true;
Chris Mason39279cc2007-06-12 06:35:45 -04003800
3801 path = btrfs_alloc_path();
Filipe Manana67710892016-06-06 11:51:25 +01003802 if (!path) {
3803 ret = -ENOMEM;
Mark Fasheh1748f842011-07-12 11:25:31 -07003804 goto make_bad;
Filipe Manana67710892016-06-06 11:51:25 +01003805 }
Mark Fasheh1748f842011-07-12 11:25:31 -07003806
Chris Mason39279cc2007-06-12 06:35:45 -04003807 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -05003808
Chris Mason39279cc2007-06-12 06:35:45 -04003809 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Filipe Manana67710892016-06-06 11:51:25 +01003810 if (ret) {
3811 if (ret > 0)
3812 ret = -ENOENT;
Chris Mason39279cc2007-06-12 06:35:45 -04003813 goto make_bad;
Filipe Manana67710892016-06-06 11:51:25 +01003814 }
Chris Mason39279cc2007-06-12 06:35:45 -04003815
Chris Mason5f39d392007-10-15 16:14:19 -04003816 leaf = path->nodes[0];
Miao Xie2f7e33d2011-06-23 07:27:13 +00003817
3818 if (filled)
Miao Xie67de1172013-12-26 13:07:06 +08003819 goto cache_index;
Miao Xie2f7e33d2011-06-23 07:27:13 +00003820
Chris Mason5f39d392007-10-15 16:14:19 -04003821 inode_item = btrfs_item_ptr(leaf, path->slots[0],
3822 struct btrfs_inode_item);
Chris Mason5f39d392007-10-15 16:14:19 -04003823 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
Miklos Szeredibfe86842011-10-28 14:13:29 +02003824 set_nlink(inode, btrfs_inode_nlink(leaf, inode_item));
Eric W. Biederman2f2f43d2012-02-10 11:05:07 -08003825 i_uid_write(inode, btrfs_inode_uid(leaf, inode_item));
3826 i_gid_write(inode, btrfs_inode_gid(leaf, inode_item));
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02003827 btrfs_i_size_write(BTRFS_I(inode), btrfs_inode_size(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04003828
David Sterbaa937b972014-12-12 17:39:12 +01003829 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, &inode_item->atime);
3830 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, &inode_item->atime);
Chris Mason5f39d392007-10-15 16:14:19 -04003831
David Sterbaa937b972014-12-12 17:39:12 +01003832 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, &inode_item->mtime);
3833 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, &inode_item->mtime);
Chris Mason5f39d392007-10-15 16:14:19 -04003834
David Sterbaa937b972014-12-12 17:39:12 +01003835 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, &inode_item->ctime);
3836 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, &inode_item->ctime);
Chris Mason5f39d392007-10-15 16:14:19 -04003837
chandan r9cc97d62012-07-04 12:48:07 +05303838 BTRFS_I(inode)->i_otime.tv_sec =
3839 btrfs_timespec_sec(leaf, &inode_item->otime);
3840 BTRFS_I(inode)->i_otime.tv_nsec =
3841 btrfs_timespec_nsec(leaf, &inode_item->otime);
Chris Mason5f39d392007-10-15 16:14:19 -04003842
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003843 inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04003844 BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item);
Josef Bacik5dc562c2012-08-17 13:14:17 -04003845 BTRFS_I(inode)->last_trans = btrfs_inode_transid(leaf, inode_item);
3846
Jeff Laytonc7f88c42017-12-11 06:35:12 -05003847 inode_set_iversion_queried(inode,
3848 btrfs_inode_sequence(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04003849 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik618e21d2007-07-11 10:18:17 -04003850 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04003851 rdev = btrfs_inode_rdev(leaf, inode_item);
3852
Josef Bacikaec74772008-07-24 12:12:38 -04003853 BTRFS_I(inode)->index_cnt = (u64)-1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05003854 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Miao Xie67de1172013-12-26 13:07:06 +08003855
3856cache_index:
Yang Dongsheng6e17d302015-04-09 12:08:43 +08003857 /*
3858 * If we were modified in the current generation and evicted from memory
3859 * and then re-read we need to do a full sync since we don't have any
3860 * idea about which extents were modified before we were evicted from
3861 * cache.
3862 *
3863 * This is required for both inode re-read from disk and delayed inode
3864 * in delayed_nodes_tree.
3865 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003866 if (BTRFS_I(inode)->last_trans == fs_info->generation)
Yang Dongsheng6e17d302015-04-09 12:08:43 +08003867 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3868 &BTRFS_I(inode)->runtime_flags);
3869
Filipe Mananabde6c242015-07-24 00:00:19 +01003870 /*
3871 * We don't persist the id of the transaction where an unlink operation
3872 * against the inode was last made. So here we assume the inode might
3873 * have been evicted, and therefore the exact value of last_unlink_trans
3874 * lost, and set it to last_trans to avoid metadata inconsistencies
3875 * between the inode and its parent if the inode is fsync'ed and the log
3876 * replayed. For example, in the scenario:
3877 *
3878 * touch mydir/foo
3879 * ln mydir/foo mydir/bar
3880 * sync
3881 * unlink mydir/bar
3882 * echo 2 > /proc/sys/vm/drop_caches # evicts inode
3883 * xfs_io -c fsync mydir/foo
3884 * <power failure>
3885 * mount fs, triggers fsync log replay
3886 *
3887 * We must make sure that when we fsync our inode foo we also log its
3888 * parent inode, otherwise after log replay the parent still has the
3889 * dentry with the "bar" name but our inode foo has a link count of 1
3890 * and doesn't have an inode ref with the name "bar" anymore.
3891 *
3892 * Setting last_unlink_trans to last_trans is a pessimistic approach,
Nicholas D Steeves01327612016-05-19 21:18:45 -04003893 * but it guarantees correctness at the expense of occasional full
Filipe Mananabde6c242015-07-24 00:00:19 +01003894 * transaction commits on fsync if our inode is a directory, or if our
3895 * inode is not a directory, logging its parent unnecessarily.
3896 */
3897 BTRFS_I(inode)->last_unlink_trans = BTRFS_I(inode)->last_trans;
3898
Miao Xie67de1172013-12-26 13:07:06 +08003899 path->slots[0]++;
3900 if (inode->i_nlink != 1 ||
3901 path->slots[0] >= btrfs_header_nritems(leaf))
3902 goto cache_acl;
3903
3904 btrfs_item_key_to_cpu(leaf, &location, path->slots[0]);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003905 if (location.objectid != btrfs_ino(BTRFS_I(inode)))
Miao Xie67de1172013-12-26 13:07:06 +08003906 goto cache_acl;
3907
3908 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
3909 if (location.type == BTRFS_INODE_REF_KEY) {
3910 struct btrfs_inode_ref *ref;
3911
3912 ref = (struct btrfs_inode_ref *)ptr;
3913 BTRFS_I(inode)->dir_index = btrfs_inode_ref_index(leaf, ref);
3914 } else if (location.type == BTRFS_INODE_EXTREF_KEY) {
3915 struct btrfs_inode_extref *extref;
3916
3917 extref = (struct btrfs_inode_extref *)ptr;
3918 BTRFS_I(inode)->dir_index = btrfs_inode_extref_index(leaf,
3919 extref);
3920 }
Miao Xie2f7e33d2011-06-23 07:27:13 +00003921cache_acl:
Chris Mason46a53cc2009-04-27 11:47:50 -04003922 /*
3923 * try to precache a NULL acl entry for files that don't have
3924 * any xattrs or acls
3925 */
Li Zefan33345d012011-04-20 10:31:50 +08003926 maybe_acls = acls_after_inode_item(leaf, path->slots[0],
David Sterbaf85b7372017-01-20 14:54:07 +01003927 btrfs_ino(BTRFS_I(inode)), &first_xattr_slot);
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003928 if (first_xattr_slot != -1) {
3929 path->slots[0] = first_xattr_slot;
3930 ret = btrfs_load_inode_props(inode, path);
3931 if (ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003932 btrfs_err(fs_info,
David Sterba351fd352014-05-15 16:48:20 +02003933 "error loading props for ino %llu (root %llu): %d",
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003934 btrfs_ino(BTRFS_I(inode)),
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003935 root->root_key.objectid, ret);
3936 }
3937 btrfs_free_path(path);
3938
Al Viro72c04902009-06-24 16:58:48 -04003939 if (!maybe_acls)
3940 cache_no_acl(inode);
Chris Mason46a53cc2009-04-27 11:47:50 -04003941
Chris Mason39279cc2007-06-12 06:35:45 -04003942 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -04003943 case S_IFREG:
3944 inode->i_mapping->a_ops = &btrfs_aops;
Chris Masond1310b22008-01-24 16:13:08 -05003945 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04003946 inode->i_fop = &btrfs_file_operations;
3947 inode->i_op = &btrfs_file_inode_operations;
3948 break;
3949 case S_IFDIR:
3950 inode->i_fop = &btrfs_dir_file_operations;
Omar Sandoval67ade052017-01-25 17:06:38 -08003951 inode->i_op = &btrfs_dir_inode_operations;
Chris Mason39279cc2007-06-12 06:35:45 -04003952 break;
3953 case S_IFLNK:
3954 inode->i_op = &btrfs_symlink_inode_operations;
Al Viro21fc61c2015-11-17 01:07:57 -05003955 inode_nohighmem(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003956 inode->i_mapping->a_ops = &btrfs_symlink_aops;
3957 break;
Josef Bacik618e21d2007-07-11 10:18:17 -04003958 default:
Jim Owens0279b4c2009-02-04 09:29:13 -05003959 inode->i_op = &btrfs_special_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -04003960 init_special_inode(inode, inode->i_mode, rdev);
3961 break;
Chris Mason39279cc2007-06-12 06:35:45 -04003962 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02003963
3964 btrfs_update_iflags(inode);
Filipe Manana67710892016-06-06 11:51:25 +01003965 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003966
3967make_bad:
Chris Mason39279cc2007-06-12 06:35:45 -04003968 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003969 make_bad_inode(inode);
Filipe Manana67710892016-06-06 11:51:25 +01003970 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04003971}
3972
Chris Masond352ac62008-09-29 15:18:18 -04003973/*
3974 * given a leaf and an inode, copy the inode fields into the leaf
3975 */
Chris Masone02119d2008-09-05 16:13:11 -04003976static void fill_inode_item(struct btrfs_trans_handle *trans,
3977 struct extent_buffer *leaf,
Chris Mason5f39d392007-10-15 16:14:19 -04003978 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -04003979 struct inode *inode)
3980{
Liu Bo51fab692012-12-27 09:01:21 +00003981 struct btrfs_map_token token;
Chris Mason5f39d392007-10-15 16:14:19 -04003982
Liu Bo51fab692012-12-27 09:01:21 +00003983 btrfs_init_map_token(&token);
Chris Mason5f39d392007-10-15 16:14:19 -04003984
Liu Bo51fab692012-12-27 09:01:21 +00003985 btrfs_set_token_inode_uid(leaf, item, i_uid_read(inode), &token);
3986 btrfs_set_token_inode_gid(leaf, item, i_gid_read(inode), &token);
3987 btrfs_set_token_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size,
3988 &token);
3989 btrfs_set_token_inode_mode(leaf, item, inode->i_mode, &token);
3990 btrfs_set_token_inode_nlink(leaf, item, inode->i_nlink, &token);
Chris Mason5f39d392007-10-15 16:14:19 -04003991
David Sterbaa937b972014-12-12 17:39:12 +01003992 btrfs_set_token_timespec_sec(leaf, &item->atime,
Liu Bo51fab692012-12-27 09:01:21 +00003993 inode->i_atime.tv_sec, &token);
David Sterbaa937b972014-12-12 17:39:12 +01003994 btrfs_set_token_timespec_nsec(leaf, &item->atime,
Liu Bo51fab692012-12-27 09:01:21 +00003995 inode->i_atime.tv_nsec, &token);
Chris Mason5f39d392007-10-15 16:14:19 -04003996
David Sterbaa937b972014-12-12 17:39:12 +01003997 btrfs_set_token_timespec_sec(leaf, &item->mtime,
Liu Bo51fab692012-12-27 09:01:21 +00003998 inode->i_mtime.tv_sec, &token);
David Sterbaa937b972014-12-12 17:39:12 +01003999 btrfs_set_token_timespec_nsec(leaf, &item->mtime,
Liu Bo51fab692012-12-27 09:01:21 +00004000 inode->i_mtime.tv_nsec, &token);
4001
David Sterbaa937b972014-12-12 17:39:12 +01004002 btrfs_set_token_timespec_sec(leaf, &item->ctime,
Liu Bo51fab692012-12-27 09:01:21 +00004003 inode->i_ctime.tv_sec, &token);
David Sterbaa937b972014-12-12 17:39:12 +01004004 btrfs_set_token_timespec_nsec(leaf, &item->ctime,
Liu Bo51fab692012-12-27 09:01:21 +00004005 inode->i_ctime.tv_nsec, &token);
4006
chandan r9cc97d62012-07-04 12:48:07 +05304007 btrfs_set_token_timespec_sec(leaf, &item->otime,
4008 BTRFS_I(inode)->i_otime.tv_sec, &token);
4009 btrfs_set_token_timespec_nsec(leaf, &item->otime,
4010 BTRFS_I(inode)->i_otime.tv_nsec, &token);
4011
Liu Bo51fab692012-12-27 09:01:21 +00004012 btrfs_set_token_inode_nbytes(leaf, item, inode_get_bytes(inode),
4013 &token);
4014 btrfs_set_token_inode_generation(leaf, item, BTRFS_I(inode)->generation,
4015 &token);
Jeff Laytonc7f88c42017-12-11 06:35:12 -05004016 btrfs_set_token_inode_sequence(leaf, item, inode_peek_iversion(inode),
4017 &token);
Liu Bo51fab692012-12-27 09:01:21 +00004018 btrfs_set_token_inode_transid(leaf, item, trans->transid, &token);
4019 btrfs_set_token_inode_rdev(leaf, item, inode->i_rdev, &token);
4020 btrfs_set_token_inode_flags(leaf, item, BTRFS_I(inode)->flags, &token);
4021 btrfs_set_token_inode_block_group(leaf, item, 0, &token);
Chris Mason39279cc2007-06-12 06:35:45 -04004022}
4023
Chris Masond352ac62008-09-29 15:18:18 -04004024/*
4025 * copy everything in the in-memory inode into the btree.
4026 */
Chris Mason21151332011-11-10 20:39:08 -05004027static noinline int btrfs_update_inode_item(struct btrfs_trans_handle *trans,
Chris Masond3977122009-01-05 21:25:51 -05004028 struct btrfs_root *root, struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04004029{
4030 struct btrfs_inode_item *inode_item;
4031 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04004032 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04004033 int ret;
4034
4035 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08004036 if (!path)
4037 return -ENOMEM;
4038
Chris Masonb9473432009-03-13 11:00:37 -04004039 path->leave_spinning = 1;
Miao Xie16cdcec2011-04-22 18:12:22 +08004040 ret = btrfs_lookup_inode(trans, root, path, &BTRFS_I(inode)->location,
4041 1);
Chris Mason39279cc2007-06-12 06:35:45 -04004042 if (ret) {
4043 if (ret > 0)
4044 ret = -ENOENT;
4045 goto failed;
4046 }
4047
Chris Mason5f39d392007-10-15 16:14:19 -04004048 leaf = path->nodes[0];
4049 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Miao Xie16cdcec2011-04-22 18:12:22 +08004050 struct btrfs_inode_item);
Chris Mason39279cc2007-06-12 06:35:45 -04004051
Chris Masone02119d2008-09-05 16:13:11 -04004052 fill_inode_item(trans, leaf, inode_item, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004053 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04004054 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004055 ret = 0;
4056failed:
Chris Mason39279cc2007-06-12 06:35:45 -04004057 btrfs_free_path(path);
4058 return ret;
4059}
4060
Chris Masond352ac62008-09-29 15:18:18 -04004061/*
Chris Mason21151332011-11-10 20:39:08 -05004062 * copy everything in the in-memory inode into the btree.
4063 */
4064noinline int btrfs_update_inode(struct btrfs_trans_handle *trans,
4065 struct btrfs_root *root, struct inode *inode)
4066{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004067 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason21151332011-11-10 20:39:08 -05004068 int ret;
4069
4070 /*
4071 * If the inode is a free space inode, we can deadlock during commit
4072 * if we put it into the delayed code.
4073 *
4074 * The data relocation inode should also be directly updated
4075 * without delay
4076 */
Nikolay Borisov70ddc552017-02-20 13:50:35 +02004077 if (!btrfs_is_free_space_inode(BTRFS_I(inode))
Josef Bacik1d52c782014-09-18 11:30:44 -04004078 && root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004079 && !test_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags)) {
Alexander Block8ea05e32012-07-25 17:35:53 +02004080 btrfs_update_root_times(trans, root);
4081
Chris Mason21151332011-11-10 20:39:08 -05004082 ret = btrfs_delayed_update_inode(trans, root, inode);
4083 if (!ret)
4084 btrfs_set_inode_last_trans(trans, inode);
4085 return ret;
4086 }
4087
4088 return btrfs_update_inode_item(trans, root, inode);
4089}
4090
Josef Bacikbe6aef62012-10-22 15:43:12 -04004091noinline int btrfs_update_inode_fallback(struct btrfs_trans_handle *trans,
4092 struct btrfs_root *root,
4093 struct inode *inode)
Chris Mason21151332011-11-10 20:39:08 -05004094{
4095 int ret;
4096
4097 ret = btrfs_update_inode(trans, root, inode);
4098 if (ret == -ENOSPC)
4099 return btrfs_update_inode_item(trans, root, inode);
4100 return ret;
4101}
4102
4103/*
Chris Masond352ac62008-09-29 15:18:18 -04004104 * unlink helper that gets used here in inode.c and in the tree logging
4105 * recovery code. It remove a link in a directory with a given name, and
4106 * also drops the back refs in the inode to the directory
4107 */
Al Viro92986792011-03-04 17:14:37 +00004108static int __btrfs_unlink_inode(struct btrfs_trans_handle *trans,
4109 struct btrfs_root *root,
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004110 struct btrfs_inode *dir,
4111 struct btrfs_inode *inode,
Al Viro92986792011-03-04 17:14:37 +00004112 const char *name, int name_len)
Chris Mason39279cc2007-06-12 06:35:45 -04004113{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004114 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason39279cc2007-06-12 06:35:45 -04004115 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04004116 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04004117 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04004118 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -04004119 struct btrfs_key key;
Josef Bacikaec74772008-07-24 12:12:38 -04004120 u64 index;
Li Zefan33345d012011-04-20 10:31:50 +08004121 u64 ino = btrfs_ino(inode);
4122 u64 dir_ino = btrfs_ino(dir);
Chris Mason39279cc2007-06-12 06:35:45 -04004123
4124 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04004125 if (!path) {
4126 ret = -ENOMEM;
Tsutomu Itoh554233a2011-02-03 03:16:25 +00004127 goto out;
Chris Mason54aa1f42007-06-22 14:16:25 -04004128 }
4129
Chris Masonb9473432009-03-13 11:00:37 -04004130 path->leave_spinning = 1;
Li Zefan33345d012011-04-20 10:31:50 +08004131 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Chris Mason39279cc2007-06-12 06:35:45 -04004132 name, name_len, -1);
4133 if (IS_ERR(di)) {
4134 ret = PTR_ERR(di);
4135 goto err;
4136 }
4137 if (!di) {
4138 ret = -ENOENT;
4139 goto err;
4140 }
Chris Mason5f39d392007-10-15 16:14:19 -04004141 leaf = path->nodes[0];
4142 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -04004143 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -04004144 if (ret)
4145 goto err;
David Sterbab3b4aa72011-04-21 01:20:15 +02004146 btrfs_release_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04004147
Miao Xie67de1172013-12-26 13:07:06 +08004148 /*
4149 * If we don't have dir index, we have to get it by looking up
4150 * the inode ref, since we get the inode ref, remove it directly,
4151 * it is unnecessary to do delayed deletion.
4152 *
4153 * But if we have dir index, needn't search inode ref to get it.
4154 * Since the inode ref is close to the inode item, it is better
4155 * that we delay to delete it, and just do this deletion when
4156 * we update the inode item.
4157 */
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004158 if (inode->dir_index) {
Miao Xie67de1172013-12-26 13:07:06 +08004159 ret = btrfs_delayed_delete_inode_ref(inode);
4160 if (!ret) {
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004161 index = inode->dir_index;
Miao Xie67de1172013-12-26 13:07:06 +08004162 goto skip_backref;
4163 }
4164 }
4165
Li Zefan33345d012011-04-20 10:31:50 +08004166 ret = btrfs_del_inode_ref(trans, root, name, name_len, ino,
4167 dir_ino, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04004168 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004169 btrfs_info(fs_info,
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00004170 "failed to delete reference to %.*s, inode %llu parent %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02004171 name_len, name, ino, dir_ino);
Jeff Mahoney66642832016-06-10 18:19:25 -04004172 btrfs_abort_transaction(trans, ret);
Josef Bacikaec74772008-07-24 12:12:38 -04004173 goto err;
4174 }
Miao Xie67de1172013-12-26 13:07:06 +08004175skip_backref:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004176 ret = btrfs_delete_delayed_dir_index(trans, fs_info, dir, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004177 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004178 btrfs_abort_transaction(trans, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04004179 goto err;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004180 }
Chris Mason39279cc2007-06-12 06:35:45 -04004181
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004182 ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len, inode,
4183 dir_ino);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004184 if (ret != 0 && ret != -ENOENT) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004185 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004186 goto err;
4187 }
Chris Masone02119d2008-09-05 16:13:11 -04004188
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004189 ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len, dir,
4190 index);
Chris Mason6418c962010-10-30 07:34:24 -04004191 if (ret == -ENOENT)
4192 ret = 0;
Zach Brownd4e39912013-04-02 21:02:16 +00004193 else if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04004194 btrfs_abort_transaction(trans, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04004195err:
4196 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04004197 if (ret)
4198 goto out;
4199
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02004200 btrfs_i_size_write(dir, dir->vfs_inode.i_size - name_len * 2);
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004201 inode_inc_iversion(&inode->vfs_inode);
4202 inode_inc_iversion(&dir->vfs_inode);
4203 inode->vfs_inode.i_ctime = dir->vfs_inode.i_mtime =
4204 dir->vfs_inode.i_ctime = current_time(&inode->vfs_inode);
4205 ret = btrfs_update_inode(trans, root, &dir->vfs_inode);
Chris Masone02119d2008-09-05 16:13:11 -04004206out:
Chris Mason39279cc2007-06-12 06:35:45 -04004207 return ret;
4208}
4209
Al Viro92986792011-03-04 17:14:37 +00004210int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
4211 struct btrfs_root *root,
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004212 struct btrfs_inode *dir, struct btrfs_inode *inode,
Al Viro92986792011-03-04 17:14:37 +00004213 const char *name, int name_len)
4214{
4215 int ret;
4216 ret = __btrfs_unlink_inode(trans, root, dir, inode, name, name_len);
4217 if (!ret) {
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004218 drop_nlink(&inode->vfs_inode);
4219 ret = btrfs_update_inode(trans, root, &inode->vfs_inode);
Al Viro92986792011-03-04 17:14:37 +00004220 }
4221 return ret;
4222}
Yan, Zhenga22285a2010-05-16 10:48:46 -04004223
4224/*
4225 * helper to start transaction for unlink and rmdir.
4226 *
Josef Bacikd52be812013-05-29 14:54:47 -04004227 * unlink and rmdir are special in btrfs, they do not always free space, so
4228 * if we cannot make our reservations the normal way try and see if there is
4229 * plenty of slack room in the global reserve to migrate, otherwise we cannot
4230 * allow the unlink to occur.
Yan, Zhenga22285a2010-05-16 10:48:46 -04004231 */
Josef Bacikd52be812013-05-29 14:54:47 -04004232static struct btrfs_trans_handle *__unlink_start_trans(struct inode *dir)
Yan, Zhenga22285a2010-05-16 10:48:46 -04004233{
Yan, Zhenga22285a2010-05-16 10:48:46 -04004234 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004235
Josef Bacike70bea52011-10-11 14:18:24 -04004236 /*
4237 * 1 for the possible orphan item
4238 * 1 for the dir item
4239 * 1 for the dir index
4240 * 1 for the inode ref
Josef Bacike70bea52011-10-11 14:18:24 -04004241 * 1 for the inode
4242 */
Filipe Manana8eab77f2015-11-13 23:57:16 +00004243 return btrfs_start_transaction_fallback_global_rsv(root, 5, 5);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004244}
4245
Chris Mason39279cc2007-06-12 06:35:45 -04004246static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
4247{
Yan, Zhenga22285a2010-05-16 10:48:46 -04004248 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004249 struct btrfs_trans_handle *trans;
David Howells2b0143b2015-03-17 22:25:59 +00004250 struct inode *inode = d_inode(dentry);
Chris Mason39279cc2007-06-12 06:35:45 -04004251 int ret;
4252
Josef Bacikd52be812013-05-29 14:54:47 -04004253 trans = __unlink_start_trans(dir);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004254 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05004255 return PTR_ERR(trans);
Chris Mason5f39d392007-10-15 16:14:19 -04004256
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004257 btrfs_record_unlink_dir(trans, BTRFS_I(dir), BTRFS_I(d_inode(dentry)),
4258 0);
Chris Mason12fcfd22009-03-24 10:24:20 -04004259
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004260 ret = btrfs_unlink_inode(trans, root, BTRFS_I(dir),
4261 BTRFS_I(d_inode(dentry)), dentry->d_name.name,
4262 dentry->d_name.len);
Tsutomu Itohb5324022011-07-19 07:27:20 +00004263 if (ret)
4264 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04004265
Yan, Zhenga22285a2010-05-16 10:48:46 -04004266 if (inode->i_nlink == 0) {
Nikolay Borisov73f2e542017-02-20 13:50:59 +02004267 ret = btrfs_orphan_add(trans, BTRFS_I(inode));
Tsutomu Itohb5324022011-07-19 07:27:20 +00004268 if (ret)
4269 goto out;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004270 }
Josef Bacik7b128762008-07-24 12:17:14 -04004271
Tsutomu Itohb5324022011-07-19 07:27:20 +00004272out:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004273 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004274 btrfs_btree_balance_dirty(root->fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04004275 return ret;
4276}
4277
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004278int btrfs_unlink_subvol(struct btrfs_trans_handle *trans,
4279 struct btrfs_root *root,
4280 struct inode *dir, u64 objectid,
4281 const char *name, int name_len)
4282{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004283 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004284 struct btrfs_path *path;
4285 struct extent_buffer *leaf;
4286 struct btrfs_dir_item *di;
4287 struct btrfs_key key;
4288 u64 index;
4289 int ret;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004290 u64 dir_ino = btrfs_ino(BTRFS_I(dir));
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004291
4292 path = btrfs_alloc_path();
4293 if (!path)
4294 return -ENOMEM;
4295
Li Zefan33345d012011-04-20 10:31:50 +08004296 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004297 name, name_len, -1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004298 if (IS_ERR_OR_NULL(di)) {
4299 if (!di)
4300 ret = -ENOENT;
4301 else
4302 ret = PTR_ERR(di);
4303 goto out;
4304 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004305
4306 leaf = path->nodes[0];
4307 btrfs_dir_item_key_to_cpu(leaf, di, &key);
4308 WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
4309 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004310 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004311 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004312 goto out;
4313 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004314 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004315
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004316 ret = btrfs_del_root_ref(trans, fs_info, objectid,
4317 root->root_key.objectid, dir_ino,
4318 &index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004319 if (ret < 0) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004320 if (ret != -ENOENT) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004321 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004322 goto out;
4323 }
Li Zefan33345d012011-04-20 10:31:50 +08004324 di = btrfs_search_dir_index_item(root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004325 name, name_len);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004326 if (IS_ERR_OR_NULL(di)) {
4327 if (!di)
4328 ret = -ENOENT;
4329 else
4330 ret = PTR_ERR(di);
Jeff Mahoney66642832016-06-10 18:19:25 -04004331 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004332 goto out;
4333 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004334
4335 leaf = path->nodes[0];
4336 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02004337 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004338 index = key.offset;
4339 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004340 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004341
Nikolay Borisove67bbbb2017-01-10 20:35:36 +02004342 ret = btrfs_delete_delayed_dir_index(trans, fs_info, BTRFS_I(dir), index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004343 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004344 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004345 goto out;
4346 }
Miao Xie16cdcec2011-04-22 18:12:22 +08004347
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02004348 btrfs_i_size_write(BTRFS_I(dir), dir->i_size - name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04004349 inode_inc_iversion(dir);
Deepa Dinamanic2050a42016-09-14 07:48:06 -07004350 dir->i_mtime = dir->i_ctime = current_time(dir);
Josef Bacik5a24e842012-08-08 10:12:59 -06004351 ret = btrfs_update_inode_fallback(trans, root, dir);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004352 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04004353 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004354out:
Josef Bacik71d7aed2011-06-14 14:24:32 -04004355 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004356 return ret;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004357}
4358
Chris Mason39279cc2007-06-12 06:35:45 -04004359static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
4360{
David Howells2b0143b2015-03-17 22:25:59 +00004361 struct inode *inode = d_inode(dentry);
Chris Mason1832a6d2007-12-21 16:27:21 -05004362 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004363 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004364 struct btrfs_trans_handle *trans;
Filipe Manana44f714d2016-06-06 16:11:13 +01004365 u64 last_unlink_trans;
Chris Mason39279cc2007-06-12 06:35:45 -04004366
David Sterbab3ae2442012-09-13 16:04:34 -06004367 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Yan134d4512007-10-25 15:49:25 -04004368 return -ENOTEMPTY;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004369 if (btrfs_ino(BTRFS_I(inode)) == BTRFS_FIRST_FREE_OBJECTID)
David Sterbab3ae2442012-09-13 16:04:34 -06004370 return -EPERM;
Yan134d4512007-10-25 15:49:25 -04004371
Josef Bacikd52be812013-05-29 14:54:47 -04004372 trans = __unlink_start_trans(dir);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004373 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05004374 return PTR_ERR(trans);
Josef Bacik5df6a9f2009-11-10 21:23:48 -05004375
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004376 if (unlikely(btrfs_ino(BTRFS_I(inode)) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004377 err = btrfs_unlink_subvol(trans, root, dir,
4378 BTRFS_I(inode)->location.objectid,
4379 dentry->d_name.name,
4380 dentry->d_name.len);
4381 goto out;
4382 }
4383
Nikolay Borisov73f2e542017-02-20 13:50:59 +02004384 err = btrfs_orphan_add(trans, BTRFS_I(inode));
Josef Bacik7b128762008-07-24 12:17:14 -04004385 if (err)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004386 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04004387
Filipe Manana44f714d2016-06-06 16:11:13 +01004388 last_unlink_trans = BTRFS_I(inode)->last_unlink_trans;
4389
Chris Mason39279cc2007-06-12 06:35:45 -04004390 /* now the directory is empty */
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004391 err = btrfs_unlink_inode(trans, root, BTRFS_I(dir),
4392 BTRFS_I(d_inode(dentry)), dentry->d_name.name,
4393 dentry->d_name.len);
Filipe Manana44f714d2016-06-06 16:11:13 +01004394 if (!err) {
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02004395 btrfs_i_size_write(BTRFS_I(inode), 0);
Filipe Manana44f714d2016-06-06 16:11:13 +01004396 /*
4397 * Propagate the last_unlink_trans value of the deleted dir to
4398 * its parent directory. This is to prevent an unrecoverable
4399 * log tree in the case we do something like this:
4400 * 1) create dir foo
4401 * 2) create snapshot under dir foo
4402 * 3) delete the snapshot
4403 * 4) rmdir foo
4404 * 5) mkdir foo
4405 * 6) fsync foo or some file inside foo
4406 */
4407 if (last_unlink_trans >= trans->transid)
4408 BTRFS_I(dir)->last_unlink_trans = last_unlink_trans;
4409 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004410out:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004411 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004412 btrfs_btree_balance_dirty(root->fs_info);
Chris Mason39544012007-12-12 14:38:19 -05004413
Chris Mason39279cc2007-06-12 06:35:45 -04004414 return err;
4415}
4416
Chris Mason28f75a02015-02-04 06:59:29 -08004417static int truncate_space_check(struct btrfs_trans_handle *trans,
4418 struct btrfs_root *root,
4419 u64 bytes_deleted)
4420{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004421 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason28f75a02015-02-04 06:59:29 -08004422 int ret;
4423
Josef Bacikdc95f7b2016-01-13 11:48:06 -05004424 /*
4425 * This is only used to apply pressure to the enospc system, we don't
4426 * intend to use this reservation at all.
4427 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004428 bytes_deleted = btrfs_csum_bytes_to_leaves(fs_info, bytes_deleted);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004429 bytes_deleted *= fs_info->nodesize;
4430 ret = btrfs_block_rsv_add(root, &fs_info->trans_block_rsv,
Chris Mason28f75a02015-02-04 06:59:29 -08004431 bytes_deleted, BTRFS_RESERVE_NO_FLUSH);
Josef Bacikdc95f7b2016-01-13 11:48:06 -05004432 if (!ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004433 trace_btrfs_space_reservation(fs_info, "transaction",
Josef Bacikdc95f7b2016-01-13 11:48:06 -05004434 trans->transid,
4435 bytes_deleted, 1);
Chris Mason28f75a02015-02-04 06:59:29 -08004436 trans->bytes_reserved += bytes_deleted;
Josef Bacikdc95f7b2016-01-13 11:48:06 -05004437 }
Chris Mason28f75a02015-02-04 06:59:29 -08004438 return ret;
4439
4440}
4441
Josef Bacikddfae632017-10-19 14:16:02 -04004442/*
4443 * Return this if we need to call truncate_block for the last bit of the
4444 * truncate.
4445 */
4446#define NEED_TRUNCATE_BLOCK 1
Filipe Manana0305cd52015-10-16 12:34:25 +01004447
Chris Mason323ac952008-10-01 19:05:46 -04004448/*
Chris Mason39279cc2007-06-12 06:35:45 -04004449 * this can truncate away extent items, csum items and directory items.
4450 * It starts at a high offset and removes keys until it can't find
Chris Masond352ac62008-09-29 15:18:18 -04004451 * any higher than new_size
Chris Mason39279cc2007-06-12 06:35:45 -04004452 *
4453 * csum items that cross the new i_size are truncated to the new size
4454 * as well.
Josef Bacik7b128762008-07-24 12:17:14 -04004455 *
4456 * min_type is the minimum key type to truncate down to. If set to 0, this
4457 * will kill all the items on this inode, including the INODE_ITEM_KEY.
Chris Mason39279cc2007-06-12 06:35:45 -04004458 */
Yan, Zheng80825102009-11-12 09:35:36 +00004459int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
4460 struct btrfs_root *root,
4461 struct inode *inode,
4462 u64 new_size, u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04004463{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004464 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason39279cc2007-06-12 06:35:45 -04004465 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04004466 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04004467 struct btrfs_file_extent_item *fi;
Yan, Zheng80825102009-11-12 09:35:36 +00004468 struct btrfs_key key;
4469 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04004470 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04004471 u64 extent_num_bytes = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004472 u64 extent_offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004473 u64 item_end = 0;
Filipe Mananac1aa4572015-06-20 18:20:09 +01004474 u64 last_size = new_size;
Yan, Zheng80825102009-11-12 09:35:36 +00004475 u32 found_type = (u8)-1;
Chris Mason39279cc2007-06-12 06:35:45 -04004476 int found_extent;
4477 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05004478 int pending_del_nr = 0;
4479 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04004480 int extent_type = -1;
Yan, Zheng80825102009-11-12 09:35:36 +00004481 int ret;
4482 int err = 0;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004483 u64 ino = btrfs_ino(BTRFS_I(inode));
Chris Mason28ed1342014-12-17 09:41:04 -08004484 u64 bytes_deleted = 0;
Thomas Meyer897ca812017-10-07 16:02:21 +02004485 bool be_nice = false;
4486 bool should_throttle = false;
4487 bool should_end = false;
Yan, Zheng80825102009-11-12 09:35:36 +00004488
4489 BUG_ON(new_size > 0 && min_type != BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04004490
Chris Mason28ed1342014-12-17 09:41:04 -08004491 /*
4492 * for non-free space inodes and ref cows, we want to back off from
4493 * time to time
4494 */
Nikolay Borisov70ddc552017-02-20 13:50:35 +02004495 if (!btrfs_is_free_space_inode(BTRFS_I(inode)) &&
Chris Mason28ed1342014-12-17 09:41:04 -08004496 test_bit(BTRFS_ROOT_REF_COWS, &root->state))
Thomas Meyer897ca812017-10-07 16:02:21 +02004497 be_nice = true;
Chris Mason28ed1342014-12-17 09:41:04 -08004498
Mark Fasheh0eb0e192011-07-12 16:44:10 -07004499 path = btrfs_alloc_path();
4500 if (!path)
4501 return -ENOMEM;
David Sterbae4058b52015-11-27 16:31:35 +01004502 path->reada = READA_BACK;
Mark Fasheh0eb0e192011-07-12 16:44:10 -07004503
Josef Bacik5dc562c2012-08-17 13:14:17 -04004504 /*
4505 * We want to drop from the next block forward in case this new size is
4506 * not block aligned since we will be keeping the last block of the
4507 * extent just the way it is.
4508 */
Miao Xie27cdeb72014-04-02 19:51:05 +08004509 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004510 root == fs_info->tree_root)
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02004511 btrfs_drop_extent_cache(BTRFS_I(inode), ALIGN(new_size,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004512 fs_info->sectorsize),
Jeff Mahoneyda170662016-06-15 09:22:56 -04004513 (u64)-1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00004514
Miao Xie16cdcec2011-04-22 18:12:22 +08004515 /*
4516 * This function is also used to drop the items in the log tree before
4517 * we relog the inode, so if root != BTRFS_I(inode)->root, it means
4518 * it is used to drop the loged items. So we shouldn't kill the delayed
4519 * items.
4520 */
4521 if (min_type == 0 && root == BTRFS_I(inode)->root)
Nikolay Borisov4ccb5c72017-01-10 20:35:38 +02004522 btrfs_kill_delayed_inode_items(BTRFS_I(inode));
Miao Xie16cdcec2011-04-22 18:12:22 +08004523
Li Zefan33345d012011-04-20 10:31:50 +08004524 key.objectid = ino;
Chris Mason39279cc2007-06-12 06:35:45 -04004525 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04004526 key.type = (u8)-1;
4527
Chris Mason85e21ba2008-01-29 15:11:36 -05004528search_again:
Chris Mason28ed1342014-12-17 09:41:04 -08004529 /*
4530 * with a 16K leaf size and 128MB extents, you can actually queue
4531 * up a huge file in a single leaf. Most of the time that
4532 * bytes_deleted is > 0, it will be huge by the time we get here
4533 */
Byongho Leeee221842015-12-15 01:42:10 +09004534 if (be_nice && bytes_deleted > SZ_32M) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004535 if (btrfs_should_end_transaction(trans)) {
Chris Mason28ed1342014-12-17 09:41:04 -08004536 err = -EAGAIN;
4537 goto error;
4538 }
4539 }
4540
4541
Chris Masonb9473432009-03-13 11:00:37 -04004542 path->leave_spinning = 1;
Chris Mason85e21ba2008-01-29 15:11:36 -05004543 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Yan, Zheng80825102009-11-12 09:35:36 +00004544 if (ret < 0) {
4545 err = ret;
4546 goto out;
4547 }
Chris Masond3977122009-01-05 21:25:51 -05004548
Chris Mason85e21ba2008-01-29 15:11:36 -05004549 if (ret > 0) {
Chris Masone02119d2008-09-05 16:13:11 -04004550 /* there are no items in the tree for us to truncate, we're
4551 * done
4552 */
Yan, Zheng80825102009-11-12 09:35:36 +00004553 if (path->slots[0] == 0)
4554 goto out;
Chris Mason85e21ba2008-01-29 15:11:36 -05004555 path->slots[0]--;
4556 }
4557
Chris Masond3977122009-01-05 21:25:51 -05004558 while (1) {
Chris Mason39279cc2007-06-12 06:35:45 -04004559 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04004560 leaf = path->nodes[0];
4561 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
David Sterba962a2982014-06-04 18:41:45 +02004562 found_type = found_key.type;
Chris Mason39279cc2007-06-12 06:35:45 -04004563
Li Zefan33345d012011-04-20 10:31:50 +08004564 if (found_key.objectid != ino)
Chris Mason39279cc2007-06-12 06:35:45 -04004565 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004566
Chris Mason85e21ba2008-01-29 15:11:36 -05004567 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04004568 break;
4569
Chris Mason5f39d392007-10-15 16:14:19 -04004570 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04004571 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04004572 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04004573 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04004574 extent_type = btrfs_file_extent_type(leaf, fi);
4575 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04004576 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04004577 btrfs_file_extent_num_bytes(leaf, fi);
Liu Bo09ed2f12017-03-10 11:09:48 -08004578
4579 trace_btrfs_truncate_show_fi_regular(
4580 BTRFS_I(inode), leaf, fi,
4581 found_key.offset);
Chris Mason179e29e2007-11-01 11:28:41 -04004582 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason179e29e2007-11-01 11:28:41 -04004583 item_end += btrfs_file_extent_inline_len(leaf,
Chris Mason514ac8a2014-01-03 21:07:00 -08004584 path->slots[0], fi);
Liu Bo09ed2f12017-03-10 11:09:48 -08004585
4586 trace_btrfs_truncate_show_fi_inline(
4587 BTRFS_I(inode), leaf, fi, path->slots[0],
4588 found_key.offset);
Chris Mason39279cc2007-06-12 06:35:45 -04004589 }
Yan008630c2007-11-07 13:31:09 -05004590 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04004591 }
Yan, Zheng80825102009-11-12 09:35:36 +00004592 if (found_type > min_type) {
Chris Mason39279cc2007-06-12 06:35:45 -04004593 del_item = 1;
Yan, Zheng80825102009-11-12 09:35:36 +00004594 } else {
Filipe Manana76b42ab2017-02-14 16:56:01 +00004595 if (item_end < new_size)
Yan, Zheng80825102009-11-12 09:35:36 +00004596 break;
4597 if (found_key.offset >= new_size)
4598 del_item = 1;
4599 else
4600 del_item = 0;
4601 }
Chris Mason39279cc2007-06-12 06:35:45 -04004602 found_extent = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004603 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04004604 if (found_type != BTRFS_EXTENT_DATA_KEY)
4605 goto delete;
4606
4607 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04004608 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04004609 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Miao Xief70a9a6b2012-01-12 19:10:12 -05004610 if (!del_item) {
Chris Masondb945352007-10-15 16:15:53 -04004611 u64 orig_num_bytes =
4612 btrfs_file_extent_num_bytes(leaf, fi);
Qu Wenruofda28322013-02-26 08:10:22 +00004613 extent_num_bytes = ALIGN(new_size -
4614 found_key.offset,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004615 fs_info->sectorsize);
Chris Masondb945352007-10-15 16:15:53 -04004616 btrfs_set_file_extent_num_bytes(leaf, fi,
4617 extent_num_bytes);
4618 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05004619 extent_num_bytes);
Miao Xie27cdeb72014-04-02 19:51:05 +08004620 if (test_bit(BTRFS_ROOT_REF_COWS,
4621 &root->state) &&
4622 extent_start != 0)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004623 inode_sub_bytes(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04004624 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04004625 } else {
Chris Masondb945352007-10-15 16:15:53 -04004626 extent_num_bytes =
4627 btrfs_file_extent_disk_num_bytes(leaf,
4628 fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004629 extent_offset = found_key.offset -
4630 btrfs_file_extent_offset(leaf, fi);
4631
Chris Mason39279cc2007-06-12 06:35:45 -04004632 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05004633 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04004634 if (extent_start != 0) {
4635 found_extent = 1;
Miao Xie27cdeb72014-04-02 19:51:05 +08004636 if (test_bit(BTRFS_ROOT_REF_COWS,
4637 &root->state))
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004638 inode_sub_bytes(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04004639 }
4640 }
Chris Mason90692182008-02-08 13:49:28 -05004641 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04004642 /*
4643 * we can't truncate inline items that have had
4644 * special encodings
4645 */
4646 if (!del_item &&
Chris Masonc8b97812008-10-29 14:49:59 -04004647 btrfs_file_extent_encryption(leaf, fi) == 0 &&
Josef Bacikddfae632017-10-19 14:16:02 -04004648 btrfs_file_extent_other_encoding(leaf, fi) == 0 &&
4649 btrfs_file_extent_compression(leaf, fi) == 0) {
4650 u32 size = (u32)(new_size - found_key.offset);
Chris Mason514ac8a2014-01-03 21:07:00 -08004651
Josef Bacikddfae632017-10-19 14:16:02 -04004652 btrfs_set_file_extent_ram_bytes(leaf, fi, size);
4653 size = btrfs_file_extent_calc_inline_size(size);
4654 btrfs_truncate_item(root->fs_info, path, size, 1);
4655 } else if (!del_item) {
Chris Mason514ac8a2014-01-03 21:07:00 -08004656 /*
Josef Bacikddfae632017-10-19 14:16:02 -04004657 * We have to bail so the last_size is set to
4658 * just before this extent.
Chris Mason514ac8a2014-01-03 21:07:00 -08004659 */
Josef Bacikddfae632017-10-19 14:16:02 -04004660 err = NEED_TRUNCATE_BLOCK;
4661 break;
Chris Mason90692182008-02-08 13:49:28 -05004662 }
Josef Bacikddfae632017-10-19 14:16:02 -04004663
4664 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state))
4665 inode_sub_bytes(inode, item_end + 1 - new_size);
Chris Mason39279cc2007-06-12 06:35:45 -04004666 }
Chris Mason179e29e2007-11-01 11:28:41 -04004667delete:
Josef Bacikddfae632017-10-19 14:16:02 -04004668 if (del_item)
4669 last_size = found_key.offset;
4670 else
4671 last_size = new_size;
Chris Mason39279cc2007-06-12 06:35:45 -04004672 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05004673 if (!pending_del_nr) {
4674 /* no pending yet, add ourselves */
4675 pending_del_slot = path->slots[0];
4676 pending_del_nr = 1;
4677 } else if (pending_del_nr &&
4678 path->slots[0] + 1 == pending_del_slot) {
4679 /* hop on the pending chunk */
4680 pending_del_nr++;
4681 pending_del_slot = path->slots[0];
4682 } else {
Chris Masond3977122009-01-05 21:25:51 -05004683 BUG();
Chris Mason85e21ba2008-01-29 15:11:36 -05004684 }
Chris Mason39279cc2007-06-12 06:35:45 -04004685 } else {
4686 break;
4687 }
Thomas Meyer897ca812017-10-07 16:02:21 +02004688 should_throttle = false;
Chris Mason28f75a02015-02-04 06:59:29 -08004689
Miao Xie27cdeb72014-04-02 19:51:05 +08004690 if (found_extent &&
4691 (test_bit(BTRFS_ROOT_REF_COWS, &root->state) ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004692 root == fs_info->tree_root)) {
Chris Masonb9473432009-03-13 11:00:37 -04004693 btrfs_set_path_blocking(path);
Chris Mason28ed1342014-12-17 09:41:04 -08004694 bytes_deleted += extent_num_bytes;
Josef Bacik84f7d8e2017-09-29 15:43:49 -04004695 ret = btrfs_free_extent(trans, root, extent_start,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004696 extent_num_bytes, 0,
4697 btrfs_header_owner(leaf),
Filipe Mananab06c4bf2015-10-23 07:52:54 +01004698 ino, extent_offset);
Chris Mason39279cc2007-06-12 06:35:45 -04004699 BUG_ON(ret);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004700 if (btrfs_should_throttle_delayed_refs(trans, fs_info))
4701 btrfs_async_run_delayed_refs(fs_info,
Wang Xiaoguangdd4b8572016-10-18 15:56:13 +08004702 trans->delayed_ref_updates * 2,
4703 trans->transid, 0);
Chris Mason28f75a02015-02-04 06:59:29 -08004704 if (be_nice) {
4705 if (truncate_space_check(trans, root,
4706 extent_num_bytes)) {
Thomas Meyer897ca812017-10-07 16:02:21 +02004707 should_end = true;
Chris Mason28f75a02015-02-04 06:59:29 -08004708 }
4709 if (btrfs_should_throttle_delayed_refs(trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004710 fs_info))
Thomas Meyer897ca812017-10-07 16:02:21 +02004711 should_throttle = true;
Chris Mason28f75a02015-02-04 06:59:29 -08004712 }
Chris Mason39279cc2007-06-12 06:35:45 -04004713 }
Chris Mason85e21ba2008-01-29 15:11:36 -05004714
Yan, Zheng80825102009-11-12 09:35:36 +00004715 if (found_type == BTRFS_INODE_ITEM_KEY)
4716 break;
4717
4718 if (path->slots[0] == 0 ||
Josef Bacik12621332015-02-03 07:50:16 -08004719 path->slots[0] != pending_del_slot ||
Chris Mason28f75a02015-02-04 06:59:29 -08004720 should_throttle || should_end) {
Yan, Zheng80825102009-11-12 09:35:36 +00004721 if (pending_del_nr) {
4722 ret = btrfs_del_items(trans, root, path,
4723 pending_del_slot,
4724 pending_del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004725 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004726 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004727 goto error;
4728 }
Yan, Zheng80825102009-11-12 09:35:36 +00004729 pending_del_nr = 0;
4730 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004731 btrfs_release_path(path);
Chris Mason28f75a02015-02-04 06:59:29 -08004732 if (should_throttle) {
Josef Bacik12621332015-02-03 07:50:16 -08004733 unsigned long updates = trans->delayed_ref_updates;
4734 if (updates) {
4735 trans->delayed_ref_updates = 0;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004736 ret = btrfs_run_delayed_refs(trans,
4737 fs_info,
4738 updates * 2);
Josef Bacik12621332015-02-03 07:50:16 -08004739 if (ret && !err)
4740 err = ret;
4741 }
4742 }
Chris Mason28f75a02015-02-04 06:59:29 -08004743 /*
4744 * if we failed to refill our space rsv, bail out
4745 * and let the transaction restart
4746 */
4747 if (should_end) {
4748 err = -EAGAIN;
4749 goto error;
4750 }
Chris Mason85e21ba2008-01-29 15:11:36 -05004751 goto search_again;
Yan, Zheng80825102009-11-12 09:35:36 +00004752 } else {
4753 path->slots[0]--;
Chris Mason85e21ba2008-01-29 15:11:36 -05004754 }
Chris Mason39279cc2007-06-12 06:35:45 -04004755 }
Yan, Zheng80825102009-11-12 09:35:36 +00004756out:
Chris Mason85e21ba2008-01-29 15:11:36 -05004757 if (pending_del_nr) {
4758 ret = btrfs_del_items(trans, root, path, pending_del_slot,
4759 pending_del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004760 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04004761 btrfs_abort_transaction(trans, ret);
Chris Mason85e21ba2008-01-29 15:11:36 -05004762 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004763error:
Filipe Manana76b42ab2017-02-14 16:56:01 +00004764 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
4765 ASSERT(last_size >= new_size);
4766 if (!err && last_size > new_size)
4767 last_size = new_size;
Josef Bacik7f4f6e02013-08-29 16:43:28 -04004768 btrfs_ordered_update_i_size(inode, last_size, NULL);
Filipe Manana76b42ab2017-02-14 16:56:01 +00004769 }
Chris Mason28ed1342014-12-17 09:41:04 -08004770
Chris Mason39279cc2007-06-12 06:35:45 -04004771 btrfs_free_path(path);
Chris Mason28ed1342014-12-17 09:41:04 -08004772
Byongho Leeee221842015-12-15 01:42:10 +09004773 if (be_nice && bytes_deleted > SZ_32M) {
Chris Mason28ed1342014-12-17 09:41:04 -08004774 unsigned long updates = trans->delayed_ref_updates;
4775 if (updates) {
4776 trans->delayed_ref_updates = 0;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004777 ret = btrfs_run_delayed_refs(trans, fs_info,
4778 updates * 2);
Chris Mason28ed1342014-12-17 09:41:04 -08004779 if (ret && !err)
4780 err = ret;
4781 }
4782 }
Yan, Zheng80825102009-11-12 09:35:36 +00004783 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04004784}
4785
Chris Masona52d9a82007-08-27 16:49:44 -04004786/*
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304787 * btrfs_truncate_block - read, zero a chunk and write a block
Josef Bacik2aaa6652012-08-29 14:27:18 -04004788 * @inode - inode that we're zeroing
4789 * @from - the offset to start zeroing
4790 * @len - the length to zero, 0 to zero the entire range respective to the
4791 * offset
4792 * @front - zero up to the offset instead of from the offset on
4793 *
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304794 * This will find the block for the "from" offset and cow the block and zero the
Josef Bacik2aaa6652012-08-29 14:27:18 -04004795 * part we want to zero. This is used with truncate and hole punching.
Chris Masona52d9a82007-08-27 16:49:44 -04004796 */
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304797int btrfs_truncate_block(struct inode *inode, loff_t from, loff_t len,
Josef Bacik2aaa6652012-08-29 14:27:18 -04004798 int front)
Chris Masona52d9a82007-08-27 16:49:44 -04004799{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004800 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik2aaa6652012-08-29 14:27:18 -04004801 struct address_space *mapping = inode->i_mapping;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004802 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
4803 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004804 struct extent_state *cached_state = NULL;
Qu Wenruo364ecf32017-02-27 15:10:38 +08004805 struct extent_changeset *data_reserved = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004806 char *kaddr;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004807 u32 blocksize = fs_info->sectorsize;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004808 pgoff_t index = from >> PAGE_SHIFT;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304809 unsigned offset = from & (blocksize - 1);
Chris Masona52d9a82007-08-27 16:49:44 -04004810 struct page *page;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04004811 gfp_t mask = btrfs_alloc_write_mask(mapping);
Chris Masona52d9a82007-08-27 16:49:44 -04004812 int ret = 0;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304813 u64 block_start;
4814 u64 block_end;
Chris Masona52d9a82007-08-27 16:49:44 -04004815
Nikolay Borisovb03ebd92018-01-18 14:47:06 +02004816 if (IS_ALIGNED(offset, blocksize) &&
4817 (!len || IS_ALIGNED(len, blocksize)))
Chris Masona52d9a82007-08-27 16:49:44 -04004818 goto out;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304819
Josef Bacik8b62f872017-10-19 14:15:55 -04004820 block_start = round_down(from, blocksize);
4821 block_end = block_start + blocksize - 1;
4822
Qu Wenruo364ecf32017-02-27 15:10:38 +08004823 ret = btrfs_delalloc_reserve_space(inode, &data_reserved,
Josef Bacik8b62f872017-10-19 14:15:55 -04004824 block_start, blocksize);
Josef Bacik5d5e1032009-10-13 16:46:49 -04004825 if (ret)
4826 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04004827
Chris Mason211c17f2008-05-15 09:13:45 -04004828again:
Josef Bacik3b16a4e2011-09-21 15:05:58 -04004829 page = find_or_create_page(mapping, index, mask);
Josef Bacik5d5e1032009-10-13 16:46:49 -04004830 if (!page) {
Qu Wenruobc42bda2017-02-27 15:10:39 +08004831 btrfs_delalloc_release_space(inode, data_reserved,
Josef Bacik8b62f872017-10-19 14:15:55 -04004832 block_start, blocksize);
4833 btrfs_delalloc_release_extents(BTRFS_I(inode), blocksize);
Miao Xieac6a2b32012-12-05 10:56:13 +00004834 ret = -ENOMEM;
Chris Masona52d9a82007-08-27 16:49:44 -04004835 goto out;
Josef Bacik5d5e1032009-10-13 16:46:49 -04004836 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004837
Chris Masona52d9a82007-08-27 16:49:44 -04004838 if (!PageUptodate(page)) {
4839 ret = btrfs_readpage(NULL, page);
4840 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04004841 if (page->mapping != mapping) {
4842 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004843 put_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04004844 goto again;
4845 }
Chris Masona52d9a82007-08-27 16:49:44 -04004846 if (!PageUptodate(page)) {
4847 ret = -EIO;
Chris Mason89642222008-07-24 09:41:53 -04004848 goto out_unlock;
Chris Masona52d9a82007-08-27 16:49:44 -04004849 }
4850 }
Chris Mason211c17f2008-05-15 09:13:45 -04004851 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004852
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304853 lock_extent_bits(io_tree, block_start, block_end, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004854 set_page_extent_mapped(page);
4855
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304856 ordered = btrfs_lookup_ordered_extent(inode, block_start);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004857 if (ordered) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304858 unlock_extent_cached(io_tree, block_start, block_end,
David Sterbae43bbe52017-12-12 21:43:52 +01004859 &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004860 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004861 put_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04004862 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004863 btrfs_put_ordered_extent(ordered);
4864 goto again;
4865 }
4866
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304867 clear_extent_bit(&BTRFS_I(inode)->io_tree, block_start, block_end,
Liu Bo9e8a4a82012-09-05 19:10:51 -06004868 EXTENT_DIRTY | EXTENT_DELALLOC |
4869 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
David Sterbaae0f1622017-10-31 16:37:52 +01004870 0, 0, &cached_state);
Josef Bacik5d5e1032009-10-13 16:46:49 -04004871
Filipe Mananae3b8a482017-11-04 00:16:59 +00004872 ret = btrfs_set_extent_delalloc(inode, block_start, block_end, 0,
Qu Wenruoba8b04c2016-07-19 16:50:36 +08004873 &cached_state, 0);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004874 if (ret) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304875 unlock_extent_cached(io_tree, block_start, block_end,
David Sterbae43bbe52017-12-12 21:43:52 +01004876 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004877 goto out_unlock;
4878 }
4879
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304880 if (offset != blocksize) {
Josef Bacik2aaa6652012-08-29 14:27:18 -04004881 if (!len)
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304882 len = blocksize - offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004883 kaddr = kmap(page);
Josef Bacik2aaa6652012-08-29 14:27:18 -04004884 if (front)
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304885 memset(kaddr + (block_start - page_offset(page)),
4886 0, offset);
Josef Bacik2aaa6652012-08-29 14:27:18 -04004887 else
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304888 memset(kaddr + (block_start - page_offset(page)) + offset,
4889 0, len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004890 flush_dcache_page(page);
4891 kunmap(page);
4892 }
Chris Mason247e7432008-07-17 12:53:51 -04004893 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004894 set_page_dirty(page);
David Sterbae43bbe52017-12-12 21:43:52 +01004895 unlock_extent_cached(io_tree, block_start, block_end, &cached_state);
Chris Mason39279cc2007-06-12 06:35:45 -04004896
Chris Mason89642222008-07-24 09:41:53 -04004897out_unlock:
Josef Bacik5d5e1032009-10-13 16:46:49 -04004898 if (ret)
Qu Wenruobc42bda2017-02-27 15:10:39 +08004899 btrfs_delalloc_release_space(inode, data_reserved, block_start,
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304900 blocksize);
Josef Bacik8b62f872017-10-19 14:15:55 -04004901 btrfs_delalloc_release_extents(BTRFS_I(inode), blocksize);
Chris Mason39279cc2007-06-12 06:35:45 -04004902 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004903 put_page(page);
Chris Mason39279cc2007-06-12 06:35:45 -04004904out:
Qu Wenruo364ecf32017-02-27 15:10:38 +08004905 extent_changeset_free(data_reserved);
Chris Mason39279cc2007-06-12 06:35:45 -04004906 return ret;
4907}
4908
Josef Bacik16e75492013-10-22 12:18:51 -04004909static int maybe_insert_hole(struct btrfs_root *root, struct inode *inode,
4910 u64 offset, u64 len)
4911{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004912 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik16e75492013-10-22 12:18:51 -04004913 struct btrfs_trans_handle *trans;
4914 int ret;
4915
4916 /*
4917 * Still need to make sure the inode looks like it's been updated so
4918 * that any holes get logged if we fsync.
4919 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004920 if (btrfs_fs_incompat(fs_info, NO_HOLES)) {
4921 BTRFS_I(inode)->last_trans = fs_info->generation;
Josef Bacik16e75492013-10-22 12:18:51 -04004922 BTRFS_I(inode)->last_sub_trans = root->log_transid;
4923 BTRFS_I(inode)->last_log_commit = root->last_log_commit;
4924 return 0;
4925 }
4926
4927 /*
4928 * 1 - for the one we're dropping
4929 * 1 - for the one we're adding
4930 * 1 - for updating the inode.
4931 */
4932 trans = btrfs_start_transaction(root, 3);
4933 if (IS_ERR(trans))
4934 return PTR_ERR(trans);
4935
4936 ret = btrfs_drop_extents(trans, root, inode, offset, offset + len, 1);
4937 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004938 btrfs_abort_transaction(trans, ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004939 btrfs_end_transaction(trans);
Josef Bacik16e75492013-10-22 12:18:51 -04004940 return ret;
4941 }
4942
David Sterbaf85b7372017-01-20 14:54:07 +01004943 ret = btrfs_insert_file_extent(trans, root, btrfs_ino(BTRFS_I(inode)),
4944 offset, 0, 0, len, 0, len, 0, 0, 0);
Josef Bacik16e75492013-10-22 12:18:51 -04004945 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04004946 btrfs_abort_transaction(trans, ret);
Josef Bacik16e75492013-10-22 12:18:51 -04004947 else
4948 btrfs_update_inode(trans, root, inode);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004949 btrfs_end_transaction(trans);
Josef Bacik16e75492013-10-22 12:18:51 -04004950 return ret;
4951}
4952
Josef Bacik695a0d02011-03-04 15:46:53 -05004953/*
4954 * This function puts in dummy file extents for the area we're creating a hole
4955 * for. So if we are truncating this file to a larger size we need to insert
4956 * these file extents so that btrfs_get_extent will return a EXTENT_MAP_HOLE for
4957 * the range between oldsize and size
4958 */
Josef Bacika41ad392011-01-31 15:30:16 -05004959int btrfs_cont_expand(struct inode *inode, loff_t oldsize, loff_t size)
Yan Zheng9036c102008-10-30 14:19:41 -04004960{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004961 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Yan Zheng9036c102008-10-30 14:19:41 -04004962 struct btrfs_root *root = BTRFS_I(inode)->root;
4963 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004964 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004965 struct extent_state *cached_state = NULL;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004966 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004967 u64 hole_start = ALIGN(oldsize, fs_info->sectorsize);
4968 u64 block_end = ALIGN(size, fs_info->sectorsize);
Yan Zheng9036c102008-10-30 14:19:41 -04004969 u64 last_byte;
4970 u64 cur_offset;
4971 u64 hole_size;
Josef Bacik9ed74f22009-09-11 16:12:44 -04004972 int err = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04004973
Josef Bacika71754f2013-06-17 17:14:39 -04004974 /*
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304975 * If our size started in the middle of a block we need to zero out the
4976 * rest of the block before we expand the i_size, otherwise we could
Josef Bacika71754f2013-06-17 17:14:39 -04004977 * expose stale data.
4978 */
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304979 err = btrfs_truncate_block(inode, oldsize, 0, 0);
Josef Bacika71754f2013-06-17 17:14:39 -04004980 if (err)
4981 return err;
4982
Yan Zheng9036c102008-10-30 14:19:41 -04004983 if (size <= hole_start)
4984 return 0;
4985
Yan Zheng9036c102008-10-30 14:19:41 -04004986 while (1) {
4987 struct btrfs_ordered_extent *ordered;
Miao Xiefa7c1492013-09-26 13:15:27 +08004988
David Sterbaff13db42015-12-03 14:30:40 +01004989 lock_extent_bits(io_tree, hole_start, block_end - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004990 &cached_state);
Nikolay Borisova776c6f2017-02-20 13:50:49 +02004991 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), hole_start,
Miao Xiefa7c1492013-09-26 13:15:27 +08004992 block_end - hole_start);
Yan Zheng9036c102008-10-30 14:19:41 -04004993 if (!ordered)
4994 break;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004995 unlock_extent_cached(io_tree, hole_start, block_end - 1,
David Sterbae43bbe52017-12-12 21:43:52 +01004996 &cached_state);
Miao Xiefa7c1492013-09-26 13:15:27 +08004997 btrfs_start_ordered_extent(inode, ordered, 1);
Yan Zheng9036c102008-10-30 14:19:41 -04004998 btrfs_put_ordered_extent(ordered);
4999 }
5000
Yan Zheng9036c102008-10-30 14:19:41 -04005001 cur_offset = hole_start;
5002 while (1) {
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02005003 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, cur_offset,
Yan Zheng9036c102008-10-30 14:19:41 -04005004 block_end - cur_offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005005 if (IS_ERR(em)) {
5006 err = PTR_ERR(em);
Zach Brownf2767952013-01-08 19:37:58 +00005007 em = NULL;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005008 break;
5009 }
Yan Zheng9036c102008-10-30 14:19:41 -04005010 last_byte = min(extent_map_end(em), block_end);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005011 last_byte = ALIGN(last_byte, fs_info->sectorsize);
Yan, Zheng80825102009-11-12 09:35:36 +00005012 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
Josef Bacik5dc562c2012-08-17 13:14:17 -04005013 struct extent_map *hole_em;
Yan Zheng9036c102008-10-30 14:19:41 -04005014 hole_size = last_byte - cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00005015
Josef Bacik16e75492013-10-22 12:18:51 -04005016 err = maybe_insert_hole(root, inode, cur_offset,
5017 hole_size);
5018 if (err)
Chris Mason771ed682008-11-06 22:02:51 -05005019 break;
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02005020 btrfs_drop_extent_cache(BTRFS_I(inode), cur_offset,
Josef Bacik5dc562c2012-08-17 13:14:17 -04005021 cur_offset + hole_size - 1, 0);
5022 hole_em = alloc_extent_map();
5023 if (!hole_em) {
5024 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
5025 &BTRFS_I(inode)->runtime_flags);
5026 goto next;
5027 }
5028 hole_em->start = cur_offset;
5029 hole_em->len = hole_size;
5030 hole_em->orig_start = cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00005031
Josef Bacik5dc562c2012-08-17 13:14:17 -04005032 hole_em->block_start = EXTENT_MAP_HOLE;
5033 hole_em->block_len = 0;
Josef Bacikb4939682012-12-03 10:31:19 -05005034 hole_em->orig_block_len = 0;
Josef Bacikcc95bef2013-04-04 14:31:27 -04005035 hole_em->ram_bytes = hole_size;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005036 hole_em->bdev = fs_info->fs_devices->latest_bdev;
Josef Bacik5dc562c2012-08-17 13:14:17 -04005037 hole_em->compress_type = BTRFS_COMPRESS_NONE;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005038 hole_em->generation = fs_info->generation;
Josef Bacik5dc562c2012-08-17 13:14:17 -04005039
5040 while (1) {
5041 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04005042 err = add_extent_mapping(em_tree, hole_em, 1);
Josef Bacik5dc562c2012-08-17 13:14:17 -04005043 write_unlock(&em_tree->lock);
5044 if (err != -EEXIST)
5045 break;
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02005046 btrfs_drop_extent_cache(BTRFS_I(inode),
5047 cur_offset,
Josef Bacik5dc562c2012-08-17 13:14:17 -04005048 cur_offset +
5049 hole_size - 1, 0);
5050 }
5051 free_extent_map(hole_em);
Yan Zheng9036c102008-10-30 14:19:41 -04005052 }
Josef Bacik16e75492013-10-22 12:18:51 -04005053next:
Yan Zheng9036c102008-10-30 14:19:41 -04005054 free_extent_map(em);
Yan, Zhenga22285a2010-05-16 10:48:46 -04005055 em = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04005056 cur_offset = last_byte;
Yan, Zheng80825102009-11-12 09:35:36 +00005057 if (cur_offset >= block_end)
Yan Zheng9036c102008-10-30 14:19:41 -04005058 break;
5059 }
Yan, Zhenga22285a2010-05-16 10:48:46 -04005060 free_extent_map(em);
David Sterbae43bbe52017-12-12 21:43:52 +01005061 unlock_extent_cached(io_tree, hole_start, block_end - 1, &cached_state);
Yan Zheng9036c102008-10-30 14:19:41 -04005062 return err;
5063}
5064
Eric Sandeen3972f262013-01-12 02:57:22 +00005065static int btrfs_setsize(struct inode *inode, struct iattr *attr)
Yan, Zheng80825102009-11-12 09:35:36 +00005066{
Miao Xief4a2f4c2011-12-14 20:12:01 -05005067 struct btrfs_root *root = BTRFS_I(inode)->root;
5068 struct btrfs_trans_handle *trans;
Josef Bacika41ad392011-01-31 15:30:16 -05005069 loff_t oldsize = i_size_read(inode);
Eric Sandeen3972f262013-01-12 02:57:22 +00005070 loff_t newsize = attr->ia_size;
5071 int mask = attr->ia_valid;
Yan, Zheng80825102009-11-12 09:35:36 +00005072 int ret;
5073
Eric Sandeen3972f262013-01-12 02:57:22 +00005074 /*
5075 * The regular truncate() case without ATTR_CTIME and ATTR_MTIME is a
5076 * special case where we need to update the times despite not having
5077 * these flags set. For all other operations the VFS set these flags
5078 * explicitly if it wants a timestamp update.
5079 */
Christoph Hellwigdff6efc2013-11-19 07:17:07 -08005080 if (newsize != oldsize) {
5081 inode_inc_iversion(inode);
5082 if (!(mask & (ATTR_CTIME | ATTR_MTIME)))
5083 inode->i_ctime = inode->i_mtime =
Deepa Dinamanic2050a42016-09-14 07:48:06 -07005084 current_time(inode);
Christoph Hellwigdff6efc2013-11-19 07:17:07 -08005085 }
Eric Sandeen3972f262013-01-12 02:57:22 +00005086
Josef Bacika41ad392011-01-31 15:30:16 -05005087 if (newsize > oldsize) {
Filipe Manana9ea24bb2014-10-29 11:57:59 +00005088 /*
David Sterbaea14b57f2017-06-22 02:19:11 +02005089 * Don't do an expanding truncate while snapshotting is ongoing.
Filipe Manana9ea24bb2014-10-29 11:57:59 +00005090 * This is to ensure the snapshot captures a fully consistent
5091 * state of this file - if the snapshot captures this expanding
5092 * truncation, it must capture all writes that happened before
5093 * this truncation.
5094 */
Zhao Lei0bc19f902016-01-06 18:56:36 +08005095 btrfs_wait_for_snapshot_creation(root);
Josef Bacika41ad392011-01-31 15:30:16 -05005096 ret = btrfs_cont_expand(inode, oldsize, newsize);
Filipe Manana9ea24bb2014-10-29 11:57:59 +00005097 if (ret) {
David Sterbaea14b57f2017-06-22 02:19:11 +02005098 btrfs_end_write_no_snapshotting(root);
Yan, Zheng80825102009-11-12 09:35:36 +00005099 return ret;
Filipe Manana9ea24bb2014-10-29 11:57:59 +00005100 }
Yan, Zheng80825102009-11-12 09:35:36 +00005101
Miao Xief4a2f4c2011-12-14 20:12:01 -05005102 trans = btrfs_start_transaction(root, 1);
Filipe Manana9ea24bb2014-10-29 11:57:59 +00005103 if (IS_ERR(trans)) {
David Sterbaea14b57f2017-06-22 02:19:11 +02005104 btrfs_end_write_no_snapshotting(root);
Miao Xief4a2f4c2011-12-14 20:12:01 -05005105 return PTR_ERR(trans);
Filipe Manana9ea24bb2014-10-29 11:57:59 +00005106 }
Miao Xief4a2f4c2011-12-14 20:12:01 -05005107
5108 i_size_write(inode, newsize);
5109 btrfs_ordered_update_i_size(inode, i_size_read(inode), NULL);
Chandan Rajendra27772b62016-01-21 15:56:03 +05305110 pagecache_isize_extended(inode, oldsize, newsize);
Miao Xief4a2f4c2011-12-14 20:12:01 -05005111 ret = btrfs_update_inode(trans, root, inode);
David Sterbaea14b57f2017-06-22 02:19:11 +02005112 btrfs_end_write_no_snapshotting(root);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005113 btrfs_end_transaction(trans);
Josef Bacika41ad392011-01-31 15:30:16 -05005114 } else {
Yan, Zheng80825102009-11-12 09:35:36 +00005115
Josef Bacika41ad392011-01-31 15:30:16 -05005116 /*
5117 * We're truncating a file that used to have good data down to
5118 * zero. Make sure it gets into the ordered flush list so that
5119 * any new writes get down to disk quickly.
5120 */
5121 if (newsize == 0)
Josef Bacik72ac3c02012-05-23 14:13:11 -04005122 set_bit(BTRFS_INODE_ORDERED_DATA_CLOSE,
5123 &BTRFS_I(inode)->runtime_flags);
Yan, Zheng80825102009-11-12 09:35:36 +00005124
Josef Bacikf3fe8202013-01-07 17:03:21 -05005125 /*
5126 * 1 for the orphan item we're going to add
5127 * 1 for the orphan item deletion.
5128 */
5129 trans = btrfs_start_transaction(root, 2);
5130 if (IS_ERR(trans))
5131 return PTR_ERR(trans);
5132
5133 /*
5134 * We need to do this in case we fail at _any_ point during the
5135 * actual truncate. Once we do the truncate_setsize we could
5136 * invalidate pages which forces any outstanding ordered io to
5137 * be instantly completed which will give us extents that need
5138 * to be truncated. If we fail to get an orphan inode down we
5139 * could have left over extents that were never meant to live,
Nicholas D Steeves01327612016-05-19 21:18:45 -04005140 * so we need to guarantee from this point on that everything
Josef Bacikf3fe8202013-01-07 17:03:21 -05005141 * will be consistent.
5142 */
Nikolay Borisov73f2e542017-02-20 13:50:59 +02005143 ret = btrfs_orphan_add(trans, BTRFS_I(inode));
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005144 btrfs_end_transaction(trans);
Josef Bacikf3fe8202013-01-07 17:03:21 -05005145 if (ret)
5146 return ret;
5147
Josef Bacika41ad392011-01-31 15:30:16 -05005148 /* we don't support swapfiles, so vmtruncate shouldn't fail */
5149 truncate_setsize(inode, newsize);
Miao Xie2e60a512013-02-08 07:01:08 +00005150
5151 /* Disable nonlocked read DIO to avoid the end less truncate */
Nikolay Borisovabcefb12017-02-20 13:51:10 +02005152 btrfs_inode_block_unlocked_dio(BTRFS_I(inode));
Miao Xie2e60a512013-02-08 07:01:08 +00005153 inode_dio_wait(inode);
Nikolay Borisov0b581702017-02-20 13:51:11 +02005154 btrfs_inode_resume_unlocked_dio(BTRFS_I(inode));
Miao Xie2e60a512013-02-08 07:01:08 +00005155
Filipe Manana213e8c52018-02-06 20:40:31 +00005156 ret = btrfs_truncate(inode, newsize == oldsize);
Josef Bacik7f4f6e02013-08-29 16:43:28 -04005157 if (ret && inode->i_nlink) {
5158 int err;
5159
Liu Bo19fd2df2016-12-01 13:01:02 -08005160 /* To get a stable disk_i_size */
5161 err = btrfs_wait_ordered_range(inode, 0, (u64)-1);
5162 if (err) {
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02005163 btrfs_orphan_del(NULL, BTRFS_I(inode));
Liu Bo19fd2df2016-12-01 13:01:02 -08005164 return err;
5165 }
5166
Josef Bacik7f4f6e02013-08-29 16:43:28 -04005167 /*
5168 * failed to truncate, disk_i_size is only adjusted down
5169 * as we remove extents, so it should represent the true
5170 * size of the inode, so reset the in memory size and
5171 * delete our orphan entry.
5172 */
5173 trans = btrfs_join_transaction(root);
5174 if (IS_ERR(trans)) {
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02005175 btrfs_orphan_del(NULL, BTRFS_I(inode));
Josef Bacik7f4f6e02013-08-29 16:43:28 -04005176 return ret;
5177 }
5178 i_size_write(inode, BTRFS_I(inode)->disk_i_size);
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02005179 err = btrfs_orphan_del(trans, BTRFS_I(inode));
Josef Bacik7f4f6e02013-08-29 16:43:28 -04005180 if (err)
Jeff Mahoney66642832016-06-10 18:19:25 -04005181 btrfs_abort_transaction(trans, err);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005182 btrfs_end_transaction(trans);
Josef Bacik7f4f6e02013-08-29 16:43:28 -04005183 }
Yan, Zheng80825102009-11-12 09:35:36 +00005184 }
5185
Josef Bacika41ad392011-01-31 15:30:16 -05005186 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00005187}
5188
Chris Mason39279cc2007-06-12 06:35:45 -04005189static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
5190{
David Howells2b0143b2015-03-17 22:25:59 +00005191 struct inode *inode = d_inode(dentry);
Li Zefanb83cc962010-12-20 16:04:08 +08005192 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005193 int err;
5194
Li Zefanb83cc962010-12-20 16:04:08 +08005195 if (btrfs_root_readonly(root))
5196 return -EROFS;
5197
Jan Kara31051c82016-05-26 16:55:18 +02005198 err = setattr_prepare(dentry, attr);
Chris Mason39279cc2007-06-12 06:35:45 -04005199 if (err)
5200 return err;
5201
Chris Mason5a3f23d2009-03-31 13:27:11 -04005202 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
Eric Sandeen3972f262013-01-12 02:57:22 +00005203 err = btrfs_setsize(inode, attr);
Yan, Zheng80825102009-11-12 09:35:36 +00005204 if (err)
5205 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04005206 }
Yan Zheng9036c102008-10-30 14:19:41 -04005207
Christoph Hellwig10257742010-06-04 11:30:02 +02005208 if (attr->ia_valid) {
5209 setattr_copy(inode, attr);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04005210 inode_inc_iversion(inode);
Josef Bacik22c44fe2011-11-30 10:45:38 -05005211 err = btrfs_dirty_inode(inode);
Josef Bacik33268ea2008-07-24 12:16:36 -04005212
Josef Bacik22c44fe2011-11-30 10:45:38 -05005213 if (!err && attr->ia_valid & ATTR_MODE)
Christoph Hellwig996a7102013-12-20 05:16:43 -08005214 err = posix_acl_chmod(inode, inode->i_mode);
Christoph Hellwig10257742010-06-04 11:30:02 +02005215 }
5216
Chris Mason39279cc2007-06-12 06:35:45 -04005217 return err;
5218}
Chris Mason61295eb2008-01-14 16:24:38 -05005219
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005220/*
5221 * While truncating the inode pages during eviction, we get the VFS calling
5222 * btrfs_invalidatepage() against each page of the inode. This is slow because
5223 * the calls to btrfs_invalidatepage() result in a huge amount of calls to
5224 * lock_extent_bits() and clear_extent_bit(), which keep merging and splitting
5225 * extent_state structures over and over, wasting lots of time.
5226 *
5227 * Therefore if the inode is being evicted, let btrfs_invalidatepage() skip all
5228 * those expensive operations on a per page basis and do only the ordered io
5229 * finishing, while we release here the extent_map and extent_state structures,
5230 * without the excessive merging and splitting.
5231 */
5232static void evict_inode_truncate_pages(struct inode *inode)
5233{
5234 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
5235 struct extent_map_tree *map_tree = &BTRFS_I(inode)->extent_tree;
5236 struct rb_node *node;
5237
5238 ASSERT(inode->i_state & I_FREEING);
Johannes Weiner91b0abe2014-04-03 14:47:49 -07005239 truncate_inode_pages_final(&inode->i_data);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005240
5241 write_lock(&map_tree->lock);
5242 while (!RB_EMPTY_ROOT(&map_tree->map)) {
5243 struct extent_map *em;
5244
5245 node = rb_first(&map_tree->map);
5246 em = rb_entry(node, struct extent_map, rb_node);
Wang Shilong180589e2013-12-14 15:27:31 +08005247 clear_bit(EXTENT_FLAG_PINNED, &em->flags);
5248 clear_bit(EXTENT_FLAG_LOGGING, &em->flags);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005249 remove_extent_mapping(map_tree, em);
5250 free_extent_map(em);
Filipe Manana7064dd52014-08-08 02:47:05 +01005251 if (need_resched()) {
5252 write_unlock(&map_tree->lock);
5253 cond_resched();
5254 write_lock(&map_tree->lock);
5255 }
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005256 }
5257 write_unlock(&map_tree->lock);
5258
Filipe Manana6ca07092015-05-26 00:55:42 +01005259 /*
5260 * Keep looping until we have no more ranges in the io tree.
5261 * We can have ongoing bios started by readpages (called from readahead)
Filipe Manana9c6429d2015-06-10 12:55:41 +01005262 * that have their endio callback (extent_io.c:end_bio_extent_readpage)
5263 * still in progress (unlocked the pages in the bio but did not yet
5264 * unlocked the ranges in the io tree). Therefore this means some
Filipe Manana6ca07092015-05-26 00:55:42 +01005265 * ranges can still be locked and eviction started because before
5266 * submitting those bios, which are executed by a separate task (work
5267 * queue kthread), inode references (inode->i_count) were not taken
5268 * (which would be dropped in the end io callback of each bio).
5269 * Therefore here we effectively end up waiting for those bios and
5270 * anyone else holding locked ranges without having bumped the inode's
5271 * reference count - if we don't do it, when they access the inode's
5272 * io_tree to unlock a range it may be too late, leading to an
5273 * use-after-free issue.
5274 */
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005275 spin_lock(&io_tree->lock);
5276 while (!RB_EMPTY_ROOT(&io_tree->state)) {
5277 struct extent_state *state;
5278 struct extent_state *cached_state = NULL;
Filipe Manana6ca07092015-05-26 00:55:42 +01005279 u64 start;
5280 u64 end;
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005281
5282 node = rb_first(&io_tree->state);
5283 state = rb_entry(node, struct extent_state, rb_node);
Filipe Manana6ca07092015-05-26 00:55:42 +01005284 start = state->start;
5285 end = state->end;
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005286 spin_unlock(&io_tree->lock);
5287
David Sterbaff13db42015-12-03 14:30:40 +01005288 lock_extent_bits(io_tree, start, end, &cached_state);
Qu Wenruob9d0b382015-09-29 10:35:16 +08005289
5290 /*
5291 * If still has DELALLOC flag, the extent didn't reach disk,
5292 * and its reserved space won't be freed by delayed_ref.
5293 * So we need to free its reserved space here.
5294 * (Refer to comment in btrfs_invalidatepage, case 2)
5295 *
5296 * Note, end is the bytenr of last byte, so we need + 1 here.
5297 */
5298 if (state->state & EXTENT_DELALLOC)
Qu Wenruobc42bda2017-02-27 15:10:39 +08005299 btrfs_qgroup_free_data(inode, NULL, start, end - start + 1);
Qu Wenruob9d0b382015-09-29 10:35:16 +08005300
Filipe Manana6ca07092015-05-26 00:55:42 +01005301 clear_extent_bit(io_tree, start, end,
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005302 EXTENT_LOCKED | EXTENT_DIRTY |
5303 EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING |
David Sterbaae0f1622017-10-31 16:37:52 +01005304 EXTENT_DEFRAG, 1, 1, &cached_state);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005305
Filipe Manana7064dd52014-08-08 02:47:05 +01005306 cond_resched();
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005307 spin_lock(&io_tree->lock);
5308 }
5309 spin_unlock(&io_tree->lock);
5310}
5311
Al Virobd555972010-06-07 11:35:40 -04005312void btrfs_evict_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04005313{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005314 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04005315 struct btrfs_trans_handle *trans;
5316 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik726c35f2011-09-26 15:46:06 -04005317 struct btrfs_block_rsv *rsv, *global_rsv;
Josef Bacik3bce8762015-02-24 12:35:51 -08005318 int steal_from_global = 0;
Nikolay Borisov3d48d982016-06-29 09:46:41 +03005319 u64 min_size;
Chris Mason39279cc2007-06-12 06:35:45 -04005320 int ret;
5321
liubo1abe9b82011-03-24 11:18:59 +00005322 trace_btrfs_inode_evict(inode);
5323
Nikolay Borisov3d48d982016-06-29 09:46:41 +03005324 if (!root) {
Liu Boe8f1bc12018-01-25 11:02:53 -07005325 clear_inode(inode);
Nikolay Borisov3d48d982016-06-29 09:46:41 +03005326 return;
5327 }
5328
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005329 min_size = btrfs_calc_trunc_metadata_size(fs_info, 1);
Nikolay Borisov3d48d982016-06-29 09:46:41 +03005330
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005331 evict_inode_truncate_pages(inode);
5332
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02005333 if (inode->i_nlink &&
5334 ((btrfs_root_refs(&root->root_item) != 0 &&
5335 root->root_key.objectid != BTRFS_ROOT_TREE_OBJECTID) ||
Nikolay Borisov70ddc552017-02-20 13:50:35 +02005336 btrfs_is_free_space_inode(BTRFS_I(inode))))
Al Virobd555972010-06-07 11:35:40 -04005337 goto no_delete;
5338
Chris Mason39279cc2007-06-12 06:35:45 -04005339 if (is_bad_inode(inode)) {
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02005340 btrfs_orphan_del(NULL, BTRFS_I(inode));
Chris Mason39279cc2007-06-12 06:35:45 -04005341 goto no_delete;
5342 }
Al Virobd555972010-06-07 11:35:40 -04005343 /* do we really want it for ->i_nlink > 0 and zero btrfs_root_refs? */
Jeff Mahoneya30e5772015-09-11 21:44:17 -04005344 if (!special_file(inode->i_mode))
5345 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Chris Mason5f39d392007-10-15 16:14:19 -04005346
Nikolay Borisov7ab79562017-02-20 13:50:57 +02005347 btrfs_free_io_failure_record(BTRFS_I(inode), 0, (u64)-1);
Miao Xief6124962014-09-12 18:44:04 +08005348
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005349 if (test_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags)) {
Liu Bo6bf02312012-06-25 21:59:09 -06005350 BUG_ON(test_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
Josef Bacik8a35d952012-05-23 14:26:42 -04005351 &BTRFS_I(inode)->runtime_flags));
Yan, Zhengc71bf092009-11-12 09:34:40 +00005352 goto no_delete;
5353 }
5354
Yan, Zheng76dda932009-09-21 16:00:26 -04005355 if (inode->i_nlink > 0) {
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02005356 BUG_ON(btrfs_root_refs(&root->root_item) != 0 &&
5357 root->root_key.objectid != BTRFS_ROOT_TREE_OBJECTID);
Yan, Zheng76dda932009-09-21 16:00:26 -04005358 goto no_delete;
5359 }
5360
Nikolay Borisovaa790212017-01-10 20:35:40 +02005361 ret = btrfs_commit_inode_delayed_inode(BTRFS_I(inode));
Miao Xie0e8c36a2012-12-19 06:59:51 +00005362 if (ret) {
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02005363 btrfs_orphan_del(NULL, BTRFS_I(inode));
Miao Xie0e8c36a2012-12-19 06:59:51 +00005364 goto no_delete;
5365 }
5366
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005367 rsv = btrfs_alloc_block_rsv(fs_info, BTRFS_BLOCK_RSV_TEMP);
Josef Bacik4289a662011-08-05 13:22:24 -04005368 if (!rsv) {
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02005369 btrfs_orphan_del(NULL, BTRFS_I(inode));
Josef Bacik4289a662011-08-05 13:22:24 -04005370 goto no_delete;
5371 }
Josef Bacik4a338542011-08-29 11:01:31 -04005372 rsv->size = min_size;
Josef Bacikca7e70f2012-08-27 17:48:15 -04005373 rsv->failfast = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005374 global_rsv = &fs_info->global_block_rsv;
Josef Bacik4289a662011-08-05 13:22:24 -04005375
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02005376 btrfs_i_size_write(BTRFS_I(inode), 0);
Chris Mason5f39d392007-10-15 16:14:19 -04005377
Josef Bacik4289a662011-08-05 13:22:24 -04005378 /*
Miao Xie8407aa42012-09-07 01:43:32 -06005379 * This is a bit simpler than btrfs_truncate since we've already
5380 * reserved our space for our orphan item in the unlink, so we just
5381 * need to reserve some slack space in case we add bytes and update
5382 * inode item when doing the truncate.
Josef Bacik4289a662011-08-05 13:22:24 -04005383 */
Yan, Zheng80825102009-11-12 09:35:36 +00005384 while (1) {
Miao Xie08e007d2012-10-16 11:33:38 +00005385 ret = btrfs_block_rsv_refill(root, rsv, min_size,
5386 BTRFS_RESERVE_FLUSH_LIMIT);
Yan, Zheng80825102009-11-12 09:35:36 +00005387
Josef Bacik726c35f2011-09-26 15:46:06 -04005388 /*
5389 * Try and steal from the global reserve since we will
5390 * likely not use this space anyway, we want to try as
5391 * hard as possible to get this to work.
5392 */
5393 if (ret)
Josef Bacik3bce8762015-02-24 12:35:51 -08005394 steal_from_global++;
5395 else
5396 steal_from_global = 0;
5397 ret = 0;
Josef Bacik726c35f2011-09-26 15:46:06 -04005398
Josef Bacik3bce8762015-02-24 12:35:51 -08005399 /*
5400 * steal_from_global == 0: we reserved stuff, hooray!
5401 * steal_from_global == 1: we didn't reserve stuff, boo!
5402 * steal_from_global == 2: we've committed, still not a lot of
5403 * room but maybe we'll have room in the global reserve this
5404 * time.
5405 * steal_from_global == 3: abandon all hope!
5406 */
5407 if (steal_from_global > 2) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005408 btrfs_warn(fs_info,
5409 "Could not get space for a delete, will truncate on mount %d",
5410 ret);
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02005411 btrfs_orphan_del(NULL, BTRFS_I(inode));
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005412 btrfs_free_block_rsv(fs_info, rsv);
Josef Bacik4289a662011-08-05 13:22:24 -04005413 goto no_delete;
Yan, Zhengd68fc572010-05-16 10:49:58 -04005414 }
5415
Miao Xie0e8c36a2012-12-19 06:59:51 +00005416 trans = btrfs_join_transaction(root);
Josef Bacik4289a662011-08-05 13:22:24 -04005417 if (IS_ERR(trans)) {
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02005418 btrfs_orphan_del(NULL, BTRFS_I(inode));
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005419 btrfs_free_block_rsv(fs_info, rsv);
Josef Bacik4289a662011-08-05 13:22:24 -04005420 goto no_delete;
5421 }
5422
Josef Bacik3bce8762015-02-24 12:35:51 -08005423 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04005424 * We can't just steal from the global reserve, we need to make
Josef Bacik3bce8762015-02-24 12:35:51 -08005425 * sure there is room to do it, if not we need to commit and try
5426 * again.
5427 */
5428 if (steal_from_global) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005429 if (!btrfs_check_space_for_delayed_refs(trans, fs_info))
Josef Bacik3bce8762015-02-24 12:35:51 -08005430 ret = btrfs_block_rsv_migrate(global_rsv, rsv,
Josef Bacik25d609f2016-03-25 13:25:48 -04005431 min_size, 0);
Josef Bacik3bce8762015-02-24 12:35:51 -08005432 else
5433 ret = -ENOSPC;
5434 }
5435
5436 /*
5437 * Couldn't steal from the global reserve, we have too much
5438 * pending stuff built up, commit the transaction and try it
5439 * again.
5440 */
5441 if (ret) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005442 ret = btrfs_commit_transaction(trans);
Josef Bacik3bce8762015-02-24 12:35:51 -08005443 if (ret) {
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02005444 btrfs_orphan_del(NULL, BTRFS_I(inode));
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005445 btrfs_free_block_rsv(fs_info, rsv);
Josef Bacik3bce8762015-02-24 12:35:51 -08005446 goto no_delete;
5447 }
5448 continue;
5449 } else {
5450 steal_from_global = 0;
5451 }
5452
Josef Bacik4289a662011-08-05 13:22:24 -04005453 trans->block_rsv = rsv;
5454
Yan, Zhengd68fc572010-05-16 10:49:58 -04005455 ret = btrfs_truncate_inode_items(trans, root, inode, 0, 0);
Chris Mason28ed1342014-12-17 09:41:04 -08005456 if (ret != -ENOSPC && ret != -EAGAIN)
Yan, Zheng80825102009-11-12 09:35:36 +00005457 break;
5458
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005459 trans->block_rsv = &fs_info->trans_block_rsv;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005460 btrfs_end_transaction(trans);
Yan, Zheng80825102009-11-12 09:35:36 +00005461 trans = NULL;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005462 btrfs_btree_balance_dirty(fs_info);
Josef Bacik7b128762008-07-24 12:17:14 -04005463 }
5464
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005465 btrfs_free_block_rsv(fs_info, rsv);
Josef Bacik4289a662011-08-05 13:22:24 -04005466
Josef Bacik4ef31a42013-08-13 14:10:08 -04005467 /*
5468 * Errors here aren't a big deal, it just means we leave orphan items
5469 * in the tree. They will be cleaned up on the next mount.
5470 */
Yan, Zheng80825102009-11-12 09:35:36 +00005471 if (ret == 0) {
Josef Bacik4289a662011-08-05 13:22:24 -04005472 trans->block_rsv = root->orphan_block_rsv;
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02005473 btrfs_orphan_del(trans, BTRFS_I(inode));
Josef Bacik4ef31a42013-08-13 14:10:08 -04005474 } else {
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02005475 btrfs_orphan_del(NULL, BTRFS_I(inode));
Yan, Zheng80825102009-11-12 09:35:36 +00005476 }
Chris Mason85e21ba2008-01-29 15:11:36 -05005477
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005478 trans->block_rsv = &fs_info->trans_block_rsv;
5479 if (!(root == fs_info->tree_root ||
Li Zefan581bb052011-04-20 10:06:11 +08005480 root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID))
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005481 btrfs_return_ino(root, btrfs_ino(BTRFS_I(inode)));
Li Zefan581bb052011-04-20 10:06:11 +08005482
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005483 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005484 btrfs_btree_balance_dirty(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04005485no_delete:
Nikolay Borisovf48d1cf2017-01-10 20:35:39 +02005486 btrfs_remove_delayed_node(BTRFS_I(inode));
Jan Karadbd57682012-05-03 14:48:02 +02005487 clear_inode(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04005488}
5489
5490/*
5491 * this returns the key found in the dir entry in the location pointer.
Su Yue005d6712018-03-05 17:13:37 +08005492 * If no dir entries were found, returns -ENOENT.
5493 * If found a corrupted location in dir entry, returns -EUCLEAN.
Chris Mason39279cc2007-06-12 06:35:45 -04005494 */
5495static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
5496 struct btrfs_key *location)
5497{
5498 const char *name = dentry->d_name.name;
5499 int namelen = dentry->d_name.len;
5500 struct btrfs_dir_item *di;
5501 struct btrfs_path *path;
5502 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04005503 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005504
5505 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07005506 if (!path)
5507 return -ENOMEM;
Chris Mason39544012007-12-12 14:38:19 -05005508
David Sterbaf85b7372017-01-20 14:54:07 +01005509 di = btrfs_lookup_dir_item(NULL, root, path, btrfs_ino(BTRFS_I(dir)),
5510 name, namelen, 0);
Su Yue005d6712018-03-05 17:13:37 +08005511 if (!di) {
5512 ret = -ENOENT;
5513 goto out;
5514 }
5515 if (IS_ERR(di)) {
Yan0d9f7f32007-10-25 15:48:28 -04005516 ret = PTR_ERR(di);
Su Yue005d6712018-03-05 17:13:37 +08005517 goto out;
5518 }
Chris Masond3977122009-01-05 21:25:51 -05005519
Chris Mason5f39d392007-10-15 16:14:19 -04005520 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Liu Bo56a0e702017-10-30 11:14:38 -06005521 if (location->type != BTRFS_INODE_ITEM_KEY &&
5522 location->type != BTRFS_ROOT_ITEM_KEY) {
Su Yue005d6712018-03-05 17:13:37 +08005523 ret = -EUCLEAN;
Liu Bo56a0e702017-10-30 11:14:38 -06005524 btrfs_warn(root->fs_info,
5525"%s gets something invalid in DIR_ITEM (name %s, directory ino %llu, location(%llu %u %llu))",
5526 __func__, name, btrfs_ino(BTRFS_I(dir)),
5527 location->objectid, location->type, location->offset);
Liu Bo56a0e702017-10-30 11:14:38 -06005528 }
Chris Mason39279cc2007-06-12 06:35:45 -04005529out:
Chris Mason39279cc2007-06-12 06:35:45 -04005530 btrfs_free_path(path);
5531 return ret;
5532}
5533
5534/*
5535 * when we hit a tree root in a directory, the btrfs part of the inode
5536 * needs to be changed to reflect the root directory of the tree root. This
5537 * is kind of like crossing a mount point.
5538 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005539static int fixup_tree_root_location(struct btrfs_fs_info *fs_info,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005540 struct inode *dir,
5541 struct dentry *dentry,
5542 struct btrfs_key *location,
5543 struct btrfs_root **sub_root)
Chris Mason39279cc2007-06-12 06:35:45 -04005544{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005545 struct btrfs_path *path;
5546 struct btrfs_root *new_root;
5547 struct btrfs_root_ref *ref;
5548 struct extent_buffer *leaf;
David Sterba1d4c08e2015-01-02 19:36:14 +01005549 struct btrfs_key key;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005550 int ret;
5551 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005552
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005553 path = btrfs_alloc_path();
5554 if (!path) {
5555 err = -ENOMEM;
5556 goto out;
5557 }
Chris Mason39279cc2007-06-12 06:35:45 -04005558
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005559 err = -ENOENT;
David Sterba1d4c08e2015-01-02 19:36:14 +01005560 key.objectid = BTRFS_I(dir)->root->root_key.objectid;
5561 key.type = BTRFS_ROOT_REF_KEY;
5562 key.offset = location->objectid;
5563
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005564 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005565 if (ret) {
5566 if (ret < 0)
5567 err = ret;
5568 goto out;
5569 }
Chris Mason39279cc2007-06-12 06:35:45 -04005570
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005571 leaf = path->nodes[0];
5572 ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005573 if (btrfs_root_ref_dirid(leaf, ref) != btrfs_ino(BTRFS_I(dir)) ||
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005574 btrfs_root_ref_name_len(leaf, ref) != dentry->d_name.len)
5575 goto out;
5576
5577 ret = memcmp_extent_buffer(leaf, dentry->d_name.name,
5578 (unsigned long)(ref + 1),
5579 dentry->d_name.len);
5580 if (ret)
5581 goto out;
5582
David Sterbab3b4aa72011-04-21 01:20:15 +02005583 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005584
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005585 new_root = btrfs_read_fs_root_no_name(fs_info, location);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005586 if (IS_ERR(new_root)) {
5587 err = PTR_ERR(new_root);
5588 goto out;
5589 }
5590
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005591 *sub_root = new_root;
5592 location->objectid = btrfs_root_dirid(&new_root->root_item);
5593 location->type = BTRFS_INODE_ITEM_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -04005594 location->offset = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005595 err = 0;
5596out:
5597 btrfs_free_path(path);
5598 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04005599}
5600
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005601static void inode_tree_add(struct inode *inode)
5602{
5603 struct btrfs_root *root = BTRFS_I(inode)->root;
5604 struct btrfs_inode *entry;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005605 struct rb_node **p;
5606 struct rb_node *parent;
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005607 struct rb_node *new = &BTRFS_I(inode)->rb_node;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005608 u64 ino = btrfs_ino(BTRFS_I(inode));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005609
Al Viro1d3382cb2010-10-23 15:19:20 -04005610 if (inode_unhashed(inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04005611 return;
Miao Xiee1409ce2013-05-15 07:48:16 +00005612 parent = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005613 spin_lock(&root->inode_lock);
Miao Xiee1409ce2013-05-15 07:48:16 +00005614 p = &root->inode_tree.rb_node;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005615 while (*p) {
5616 parent = *p;
5617 entry = rb_entry(parent, struct btrfs_inode, rb_node);
5618
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005619 if (ino < btrfs_ino(BTRFS_I(&entry->vfs_inode)))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005620 p = &parent->rb_left;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005621 else if (ino > btrfs_ino(BTRFS_I(&entry->vfs_inode)))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005622 p = &parent->rb_right;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005623 else {
5624 WARN_ON(!(entry->vfs_inode.i_state &
Al Viroa4ffdde2010-06-02 17:38:30 -04005625 (I_WILL_FREE | I_FREEING)));
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005626 rb_replace_node(parent, new, &root->inode_tree);
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005627 RB_CLEAR_NODE(parent);
5628 spin_unlock(&root->inode_lock);
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005629 return;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005630 }
5631 }
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005632 rb_link_node(new, parent, p);
5633 rb_insert_color(new, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005634 spin_unlock(&root->inode_lock);
5635}
5636
5637static void inode_tree_del(struct inode *inode)
5638{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005639 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005640 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -04005641 int empty = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005642
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005643 spin_lock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005644 if (!RB_EMPTY_NODE(&BTRFS_I(inode)->rb_node)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005645 rb_erase(&BTRFS_I(inode)->rb_node, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005646 RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node);
Yan, Zheng76dda932009-09-21 16:00:26 -04005647 empty = RB_EMPTY_ROOT(&root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005648 }
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005649 spin_unlock(&root->inode_lock);
Yan, Zheng76dda932009-09-21 16:00:26 -04005650
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02005651 if (empty && btrfs_root_refs(&root->root_item) == 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005652 synchronize_srcu(&fs_info->subvol_srcu);
Yan, Zheng76dda932009-09-21 16:00:26 -04005653 spin_lock(&root->inode_lock);
5654 empty = RB_EMPTY_ROOT(&root->inode_tree);
5655 spin_unlock(&root->inode_lock);
5656 if (empty)
5657 btrfs_add_dead_root(root);
5658 }
5659}
5660
Jeff Mahoney143bede2012-03-01 14:56:26 +01005661void btrfs_invalidate_inodes(struct btrfs_root *root)
Yan, Zheng76dda932009-09-21 16:00:26 -04005662{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005663 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zheng76dda932009-09-21 16:00:26 -04005664 struct rb_node *node;
5665 struct rb_node *prev;
5666 struct btrfs_inode *entry;
5667 struct inode *inode;
5668 u64 objectid = 0;
5669
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005670 if (!test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state))
Liu Bo7813b3d2014-02-10 17:37:25 +08005671 WARN_ON(btrfs_root_refs(&root->root_item) != 0);
Yan, Zheng76dda932009-09-21 16:00:26 -04005672
5673 spin_lock(&root->inode_lock);
5674again:
5675 node = root->inode_tree.rb_node;
5676 prev = NULL;
5677 while (node) {
5678 prev = node;
5679 entry = rb_entry(node, struct btrfs_inode, rb_node);
5680
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005681 if (objectid < btrfs_ino(BTRFS_I(&entry->vfs_inode)))
Yan, Zheng76dda932009-09-21 16:00:26 -04005682 node = node->rb_left;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005683 else if (objectid > btrfs_ino(BTRFS_I(&entry->vfs_inode)))
Yan, Zheng76dda932009-09-21 16:00:26 -04005684 node = node->rb_right;
5685 else
5686 break;
5687 }
5688 if (!node) {
5689 while (prev) {
5690 entry = rb_entry(prev, struct btrfs_inode, rb_node);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005691 if (objectid <= btrfs_ino(BTRFS_I(&entry->vfs_inode))) {
Yan, Zheng76dda932009-09-21 16:00:26 -04005692 node = prev;
5693 break;
5694 }
5695 prev = rb_next(prev);
5696 }
5697 }
5698 while (node) {
5699 entry = rb_entry(node, struct btrfs_inode, rb_node);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005700 objectid = btrfs_ino(BTRFS_I(&entry->vfs_inode)) + 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04005701 inode = igrab(&entry->vfs_inode);
5702 if (inode) {
5703 spin_unlock(&root->inode_lock);
5704 if (atomic_read(&inode->i_count) > 1)
5705 d_prune_aliases(inode);
5706 /*
Al Viro45321ac2010-06-07 13:43:19 -04005707 * btrfs_drop_inode will have it removed from
Yan, Zheng76dda932009-09-21 16:00:26 -04005708 * the inode cache when its usage count
5709 * hits zero.
5710 */
5711 iput(inode);
5712 cond_resched();
5713 spin_lock(&root->inode_lock);
5714 goto again;
5715 }
5716
5717 if (cond_resched_lock(&root->inode_lock))
5718 goto again;
5719
5720 node = rb_next(node);
5721 }
5722 spin_unlock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005723}
5724
Chris Masone02119d2008-09-05 16:13:11 -04005725static int btrfs_init_locked_inode(struct inode *inode, void *p)
5726{
5727 struct btrfs_iget_args *args = p;
Chris Mason90d3e592014-01-09 17:28:00 -08005728 inode->i_ino = args->location->objectid;
5729 memcpy(&BTRFS_I(inode)->location, args->location,
5730 sizeof(*args->location));
Chris Masone02119d2008-09-05 16:13:11 -04005731 BTRFS_I(inode)->root = args->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005732 return 0;
5733}
5734
5735static int btrfs_find_actor(struct inode *inode, void *opaque)
5736{
5737 struct btrfs_iget_args *args = opaque;
Chris Mason90d3e592014-01-09 17:28:00 -08005738 return args->location->objectid == BTRFS_I(inode)->location.objectid &&
Chris Masond3977122009-01-05 21:25:51 -05005739 args->root == BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005740}
5741
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005742static struct inode *btrfs_iget_locked(struct super_block *s,
Chris Mason90d3e592014-01-09 17:28:00 -08005743 struct btrfs_key *location,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005744 struct btrfs_root *root)
Chris Mason39279cc2007-06-12 06:35:45 -04005745{
5746 struct inode *inode;
5747 struct btrfs_iget_args args;
Chris Mason90d3e592014-01-09 17:28:00 -08005748 unsigned long hashval = btrfs_inode_hash(location->objectid, root);
Filipe David Borba Manana778ba822013-10-06 22:22:33 +01005749
Chris Mason90d3e592014-01-09 17:28:00 -08005750 args.location = location;
Chris Mason39279cc2007-06-12 06:35:45 -04005751 args.root = root;
5752
Filipe David Borba Manana778ba822013-10-06 22:22:33 +01005753 inode = iget5_locked(s, hashval, btrfs_find_actor,
Chris Mason39279cc2007-06-12 06:35:45 -04005754 btrfs_init_locked_inode,
5755 (void *)&args);
5756 return inode;
5757}
5758
Balaji Rao1a54ef82008-07-21 02:01:04 +05305759/* Get an inode object given its location and corresponding root.
5760 * Returns in *is_new if the inode was read from disk
5761 */
5762struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
Josef Bacik73f73412009-12-04 17:38:27 +00005763 struct btrfs_root *root, int *new)
Balaji Rao1a54ef82008-07-21 02:01:04 +05305764{
5765 struct inode *inode;
5766
Chris Mason90d3e592014-01-09 17:28:00 -08005767 inode = btrfs_iget_locked(s, location, root);
Balaji Rao1a54ef82008-07-21 02:01:04 +05305768 if (!inode)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005769 return ERR_PTR(-ENOMEM);
Balaji Rao1a54ef82008-07-21 02:01:04 +05305770
5771 if (inode->i_state & I_NEW) {
Filipe Manana67710892016-06-06 11:51:25 +01005772 int ret;
5773
5774 ret = btrfs_read_locked_inode(inode);
Mark Fasheh1748f842011-07-12 11:25:31 -07005775 if (!is_bad_inode(inode)) {
5776 inode_tree_add(inode);
5777 unlock_new_inode(inode);
5778 if (new)
5779 *new = 1;
5780 } else {
Sergei Trofimoviche0b6d652011-09-11 10:52:24 -04005781 unlock_new_inode(inode);
5782 iput(inode);
Filipe Manana67710892016-06-06 11:51:25 +01005783 ASSERT(ret < 0);
5784 inode = ERR_PTR(ret < 0 ? ret : -ESTALE);
Mark Fasheh1748f842011-07-12 11:25:31 -07005785 }
5786 }
5787
Balaji Rao1a54ef82008-07-21 02:01:04 +05305788 return inode;
5789}
5790
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005791static struct inode *new_simple_dir(struct super_block *s,
5792 struct btrfs_key *key,
5793 struct btrfs_root *root)
5794{
5795 struct inode *inode = new_inode(s);
5796
5797 if (!inode)
5798 return ERR_PTR(-ENOMEM);
5799
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005800 BTRFS_I(inode)->root = root;
5801 memcpy(&BTRFS_I(inode)->location, key, sizeof(*key));
Josef Bacik72ac3c02012-05-23 14:13:11 -04005802 set_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005803
5804 inode->i_ino = BTRFS_EMPTY_SUBVOL_DIR_OBJECTID;
Li Zefan848cce02012-02-21 17:04:28 +08005805 inode->i_op = &btrfs_dir_ro_inode_operations;
Omar Sandoval1fdf4192017-01-25 17:06:39 -08005806 inode->i_opflags &= ~IOP_XATTR;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005807 inode->i_fop = &simple_dir_operations;
5808 inode->i_mode = S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO;
Deepa Dinamanic2050a42016-09-14 07:48:06 -07005809 inode->i_mtime = current_time(inode);
chandan r9cc97d62012-07-04 12:48:07 +05305810 inode->i_atime = inode->i_mtime;
5811 inode->i_ctime = inode->i_mtime;
5812 BTRFS_I(inode)->i_otime = inode->i_mtime;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005813
5814 return inode;
5815}
5816
Chris Mason3de45862008-11-17 21:02:50 -05005817struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04005818{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005819 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Chris Masond3977122009-01-05 21:25:51 -05005820 struct inode *inode;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005821 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005822 struct btrfs_root *sub_root = root;
5823 struct btrfs_key location;
Yan, Zheng76dda932009-09-21 16:00:26 -04005824 int index;
Josef Bacikb4aff1f2011-06-28 16:18:59 -04005825 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005826
5827 if (dentry->d_name.len > BTRFS_NAME_LEN)
5828 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04005829
Jeff Layton39e3c952012-11-28 11:30:53 -05005830 ret = btrfs_inode_by_name(dir, dentry, &location);
Chris Mason39279cc2007-06-12 06:35:45 -04005831 if (ret < 0)
5832 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04005833
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005834 if (location.type == BTRFS_INODE_ITEM_KEY) {
Josef Bacik73f73412009-12-04 17:38:27 +00005835 inode = btrfs_iget(dir->i_sb, &location, root, NULL);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005836 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04005837 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005838
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005839 index = srcu_read_lock(&fs_info->subvol_srcu);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005840 ret = fixup_tree_root_location(fs_info, dir, dentry,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005841 &location, &sub_root);
5842 if (ret < 0) {
5843 if (ret != -ENOENT)
5844 inode = ERR_PTR(ret);
5845 else
5846 inode = new_simple_dir(dir->i_sb, &location, sub_root);
5847 } else {
Josef Bacik73f73412009-12-04 17:38:27 +00005848 inode = btrfs_iget(dir->i_sb, &location, sub_root, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04005849 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005850 srcu_read_unlock(&fs_info->subvol_srcu, index);
Yan, Zheng76dda932009-09-21 16:00:26 -04005851
Julia Lawall34d19ba2011-01-24 19:55:19 +00005852 if (!IS_ERR(inode) && root != sub_root) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005853 down_read(&fs_info->cleanup_work_sem);
David Howellsbc98a422017-07-17 08:45:34 +01005854 if (!sb_rdonly(inode->i_sb))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05005855 ret = btrfs_orphan_cleanup(sub_root);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005856 up_read(&fs_info->cleanup_work_sem);
Josef Bacik01cd3362013-06-03 21:39:49 -04005857 if (ret) {
5858 iput(inode);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05005859 inode = ERR_PTR(ret);
Josef Bacik01cd3362013-06-03 21:39:49 -04005860 }
Yan, Zhengc71bf092009-11-12 09:34:40 +00005861 }
5862
Chris Mason3de45862008-11-17 21:02:50 -05005863 return inode;
5864}
5865
Nick Pigginfe15ce42011-01-07 17:49:23 +11005866static int btrfs_dentry_delete(const struct dentry *dentry)
Yan, Zheng76dda932009-09-21 16:00:26 -04005867{
5868 struct btrfs_root *root;
David Howells2b0143b2015-03-17 22:25:59 +00005869 struct inode *inode = d_inode(dentry);
Yan, Zheng76dda932009-09-21 16:00:26 -04005870
Li Zefan848cce02012-02-21 17:04:28 +08005871 if (!inode && !IS_ROOT(dentry))
David Howells2b0143b2015-03-17 22:25:59 +00005872 inode = d_inode(dentry->d_parent);
Yan, Zheng76dda932009-09-21 16:00:26 -04005873
Li Zefan848cce02012-02-21 17:04:28 +08005874 if (inode) {
5875 root = BTRFS_I(inode)->root;
Yan, Zhengefefb142009-10-09 09:25:16 -04005876 if (btrfs_root_refs(&root->root_item) == 0)
5877 return 1;
Li Zefan848cce02012-02-21 17:04:28 +08005878
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005879 if (btrfs_ino(BTRFS_I(inode)) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Li Zefan848cce02012-02-21 17:04:28 +08005880 return 1;
Yan, Zhengefefb142009-10-09 09:25:16 -04005881 }
Yan, Zheng76dda932009-09-21 16:00:26 -04005882 return 0;
5883}
5884
Josef Bacikb4aff1f2011-06-28 16:18:59 -04005885static void btrfs_dentry_release(struct dentry *dentry)
5886{
Daeseok Youn944a4512014-04-14 15:37:02 +09005887 kfree(dentry->d_fsdata);
Josef Bacikb4aff1f2011-06-28 16:18:59 -04005888}
5889
Chris Mason3de45862008-11-17 21:02:50 -05005890static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -04005891 unsigned int flags)
Chris Mason3de45862008-11-17 21:02:50 -05005892{
Tsutomu Itoh5662344b32013-12-13 09:51:42 +09005893 struct inode *inode;
Josef Bacika66e7cc2011-09-18 10:34:03 -04005894
Tsutomu Itoh5662344b32013-12-13 09:51:42 +09005895 inode = btrfs_lookup_dentry(dir, dentry);
5896 if (IS_ERR(inode)) {
5897 if (PTR_ERR(inode) == -ENOENT)
5898 inode = NULL;
5899 else
5900 return ERR_CAST(inode);
5901 }
5902
Al Viro41d28bc2014-10-12 22:24:21 -04005903 return d_splice_alias(inode, dentry);
Chris Mason39279cc2007-06-12 06:35:45 -04005904}
5905
Miao Xie16cdcec2011-04-22 18:12:22 +08005906unsigned char btrfs_filetype_table[] = {
Chris Mason39279cc2007-06-12 06:35:45 -04005907 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
5908};
5909
Josef Bacik23b5ec72017-07-24 15:14:25 -04005910/*
5911 * All this infrastructure exists because dir_emit can fault, and we are holding
5912 * the tree lock when doing readdir. For now just allocate a buffer and copy
5913 * our information into that, and then dir_emit from the buffer. This is
5914 * similar to what NFS does, only we don't keep the buffer around in pagecache
5915 * because I'm afraid I'll mess that up. Long term we need to make filldir do
5916 * copy_to_user_inatomic so we don't have to worry about page faulting under the
5917 * tree lock.
5918 */
5919static int btrfs_opendir(struct inode *inode, struct file *file)
5920{
5921 struct btrfs_file_private *private;
5922
5923 private = kzalloc(sizeof(struct btrfs_file_private), GFP_KERNEL);
5924 if (!private)
5925 return -ENOMEM;
5926 private->filldir_buf = kzalloc(PAGE_SIZE, GFP_KERNEL);
5927 if (!private->filldir_buf) {
5928 kfree(private);
5929 return -ENOMEM;
5930 }
5931 file->private_data = private;
5932 return 0;
5933}
5934
5935struct dir_entry {
5936 u64 ino;
5937 u64 offset;
5938 unsigned type;
5939 int name_len;
5940};
5941
5942static int btrfs_filldir(void *addr, int entries, struct dir_context *ctx)
5943{
5944 while (entries--) {
5945 struct dir_entry *entry = addr;
5946 char *name = (char *)(entry + 1);
5947
5948 ctx->pos = entry->offset;
5949 if (!dir_emit(ctx, name, entry->name_len, entry->ino,
5950 entry->type))
5951 return 1;
5952 addr += sizeof(struct dir_entry) + entry->name_len;
5953 ctx->pos++;
5954 }
5955 return 0;
5956}
5957
Al Viro9cdda8d2013-05-22 16:48:09 -04005958static int btrfs_real_readdir(struct file *file, struct dir_context *ctx)
Chris Mason39279cc2007-06-12 06:35:45 -04005959{
Al Viro9cdda8d2013-05-22 16:48:09 -04005960 struct inode *inode = file_inode(file);
Chris Mason39279cc2007-06-12 06:35:45 -04005961 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik23b5ec72017-07-24 15:14:25 -04005962 struct btrfs_file_private *private = file->private_data;
Chris Mason39279cc2007-06-12 06:35:45 -04005963 struct btrfs_dir_item *di;
5964 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04005965 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04005966 struct btrfs_path *path;
Josef Bacik23b5ec72017-07-24 15:14:25 -04005967 void *addr;
Miao Xie16cdcec2011-04-22 18:12:22 +08005968 struct list_head ins_list;
5969 struct list_head del_list;
Chris Mason39279cc2007-06-12 06:35:45 -04005970 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -04005971 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04005972 int slot;
Chris Mason5f39d392007-10-15 16:14:19 -04005973 char *name_ptr;
5974 int name_len;
Josef Bacik23b5ec72017-07-24 15:14:25 -04005975 int entries = 0;
5976 int total_len = 0;
Omar Sandoval02dbfc92016-05-20 13:50:33 -07005977 bool put = false;
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005978 struct btrfs_key location;
Chris Mason5f39d392007-10-15 16:14:19 -04005979
Al Viro9cdda8d2013-05-22 16:48:09 -04005980 if (!dir_emit_dots(file, ctx))
5981 return 0;
5982
David Woodhouse49593bf2008-08-17 17:08:36 +01005983 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08005984 if (!path)
5985 return -ENOMEM;
Chris Masonff5714c2011-05-28 07:00:39 -04005986
Josef Bacik23b5ec72017-07-24 15:14:25 -04005987 addr = private->filldir_buf;
David Sterbae4058b52015-11-27 16:31:35 +01005988 path->reada = READA_FORWARD;
David Woodhouse49593bf2008-08-17 17:08:36 +01005989
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005990 INIT_LIST_HEAD(&ins_list);
5991 INIT_LIST_HEAD(&del_list);
5992 put = btrfs_readdir_get_delayed_items(inode, &ins_list, &del_list);
Miao Xie16cdcec2011-04-22 18:12:22 +08005993
Josef Bacik23b5ec72017-07-24 15:14:25 -04005994again:
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005995 key.type = BTRFS_DIR_INDEX_KEY;
Al Viro9cdda8d2013-05-22 16:48:09 -04005996 key.offset = ctx->pos;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005997 key.objectid = btrfs_ino(BTRFS_I(inode));
Chris Mason5f39d392007-10-15 16:14:19 -04005998
Chris Mason39279cc2007-06-12 06:35:45 -04005999 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
6000 if (ret < 0)
6001 goto err;
David Woodhouse49593bf2008-08-17 17:08:36 +01006002
6003 while (1) {
Josef Bacik23b5ec72017-07-24 15:14:25 -04006004 struct dir_entry *entry;
6005
Chris Mason5f39d392007-10-15 16:14:19 -04006006 leaf = path->nodes[0];
Chris Mason39279cc2007-06-12 06:35:45 -04006007 slot = path->slots[0];
Li Zefanb9e03af2011-03-23 10:43:58 +08006008 if (slot >= btrfs_header_nritems(leaf)) {
6009 ret = btrfs_next_leaf(root, path);
6010 if (ret < 0)
6011 goto err;
6012 else if (ret > 0)
6013 break;
6014 continue;
Chris Mason39279cc2007-06-12 06:35:45 -04006015 }
Chris Mason3de45862008-11-17 21:02:50 -05006016
Chris Mason5f39d392007-10-15 16:14:19 -04006017 btrfs_item_key_to_cpu(leaf, &found_key, slot);
6018
6019 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04006020 break;
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01006021 if (found_key.type != BTRFS_DIR_INDEX_KEY)
Chris Mason39279cc2007-06-12 06:35:45 -04006022 break;
Al Viro9cdda8d2013-05-22 16:48:09 -04006023 if (found_key.offset < ctx->pos)
Li Zefanb9e03af2011-03-23 10:43:58 +08006024 goto next;
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01006025 if (btrfs_should_delete_dir_index(&del_list, found_key.offset))
Miao Xie16cdcec2011-04-22 18:12:22 +08006026 goto next;
Chris Mason39279cc2007-06-12 06:35:45 -04006027 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01006028 name_len = btrfs_dir_name_len(leaf, di);
Josef Bacik23b5ec72017-07-24 15:14:25 -04006029 if ((total_len + sizeof(struct dir_entry) + name_len) >=
6030 PAGE_SIZE) {
6031 btrfs_release_path(path);
6032 ret = btrfs_filldir(private->filldir_buf, entries, ctx);
6033 if (ret)
6034 goto nopos;
6035 addr = private->filldir_buf;
6036 entries = 0;
6037 total_len = 0;
6038 goto again;
Chris Mason39279cc2007-06-12 06:35:45 -04006039 }
Josef Bacik23b5ec72017-07-24 15:14:25 -04006040
6041 entry = addr;
6042 entry->name_len = name_len;
6043 name_ptr = (char *)(entry + 1);
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01006044 read_extent_buffer(leaf, name_ptr, (unsigned long)(di + 1),
6045 name_len);
Josef Bacik23b5ec72017-07-24 15:14:25 -04006046 entry->type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01006047 btrfs_dir_item_key_to_cpu(leaf, di, &location);
Josef Bacik23b5ec72017-07-24 15:14:25 -04006048 entry->ino = location.objectid;
6049 entry->offset = found_key.offset;
6050 entries++;
6051 addr += sizeof(struct dir_entry) + name_len;
6052 total_len += sizeof(struct dir_entry) + name_len;
Li Zefanb9e03af2011-03-23 10:43:58 +08006053next:
6054 path->slots[0]++;
Chris Mason39279cc2007-06-12 06:35:45 -04006055 }
Josef Bacik23b5ec72017-07-24 15:14:25 -04006056 btrfs_release_path(path);
6057
6058 ret = btrfs_filldir(private->filldir_buf, entries, ctx);
6059 if (ret)
6060 goto nopos;
David Woodhouse49593bf2008-08-17 17:08:36 +01006061
Jeff Mahoneyd2fbb2b2016-11-05 13:26:35 -04006062 ret = btrfs_readdir_delayed_dir_index(ctx, &ins_list);
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01006063 if (ret)
David Sterbabc4ef752015-11-13 13:44:28 +01006064 goto nopos;
6065
Zach Browndb62efb2013-07-11 16:19:42 -07006066 /*
6067 * Stop new entries from being returned after we return the last
6068 * entry.
6069 *
6070 * New directory entries are assigned a strictly increasing
6071 * offset. This means that new entries created during readdir
6072 * are *guaranteed* to be seen in the future by that readdir.
6073 * This has broken buggy programs which operate on names as
6074 * they're returned by readdir. Until we re-use freed offsets
6075 * we have this hack to stop new entries from being returned
6076 * under the assumption that they'll never reach this huge
6077 * offset.
6078 *
6079 * This is being careful not to overflow 32bit loff_t unless the
6080 * last entry requires it because doing so has broken 32bit apps
6081 * in the past.
6082 */
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01006083 if (ctx->pos >= INT_MAX)
6084 ctx->pos = LLONG_MAX;
6085 else
6086 ctx->pos = INT_MAX;
Chris Mason39279cc2007-06-12 06:35:45 -04006087nopos:
6088 ret = 0;
6089err:
Omar Sandoval02dbfc92016-05-20 13:50:33 -07006090 if (put)
6091 btrfs_readdir_put_delayed_items(inode, &ins_list, &del_list);
Chris Mason39279cc2007-06-12 06:35:45 -04006092 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04006093 return ret;
6094}
6095
Christoph Hellwiga9185b42010-03-05 09:21:37 +01006096int btrfs_write_inode(struct inode *inode, struct writeback_control *wbc)
Chris Mason39279cc2007-06-12 06:35:45 -04006097{
6098 struct btrfs_root *root = BTRFS_I(inode)->root;
6099 struct btrfs_trans_handle *trans;
6100 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04006101 bool nolock = false;
Chris Mason39279cc2007-06-12 06:35:45 -04006102
Josef Bacik72ac3c02012-05-23 14:13:11 -04006103 if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags))
Chris Mason4ca8b412008-08-05 13:30:48 -04006104 return 0;
6105
Nikolay Borisov70ddc552017-02-20 13:50:35 +02006106 if (btrfs_fs_closing(root->fs_info) &&
6107 btrfs_is_free_space_inode(BTRFS_I(inode)))
Li Zefan82d59022011-04-20 10:33:24 +08006108 nolock = true;
Josef Bacik0af3d002010-06-21 14:48:16 -04006109
Christoph Hellwiga9185b42010-03-05 09:21:37 +01006110 if (wbc->sync_mode == WB_SYNC_ALL) {
Josef Bacik0af3d002010-06-21 14:48:16 -04006111 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04006112 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0af3d002010-06-21 14:48:16 -04006113 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04006114 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00006115 if (IS_ERR(trans))
6116 return PTR_ERR(trans);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006117 ret = btrfs_commit_transaction(trans);
Chris Mason39279cc2007-06-12 06:35:45 -04006118 }
6119 return ret;
6120}
6121
6122/*
Chris Mason54aa1f42007-06-22 14:16:25 -04006123 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04006124 * inode changes. But, it is most likely to find the inode in cache.
6125 * FIXME, needs more benchmarking...there are no reasons other than performance
6126 * to keep or drop this code.
6127 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00006128static int btrfs_dirty_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04006129{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006130 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04006131 struct btrfs_root *root = BTRFS_I(inode)->root;
6132 struct btrfs_trans_handle *trans;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04006133 int ret;
6134
Josef Bacik72ac3c02012-05-23 14:13:11 -04006135 if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags))
Josef Bacik22c44fe2011-11-30 10:45:38 -05006136 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006137
Josef Bacik7a7eaa42011-04-13 12:54:33 -04006138 trans = btrfs_join_transaction(root);
Josef Bacik22c44fe2011-11-30 10:45:38 -05006139 if (IS_ERR(trans))
6140 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04006141
6142 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04006143 if (ret && ret == -ENOSPC) {
6144 /* whoops, lets try again with the full transaction */
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006145 btrfs_end_transaction(trans);
Chris Mason94b60442010-05-26 11:02:00 -04006146 trans = btrfs_start_transaction(root, 1);
Josef Bacik22c44fe2011-11-30 10:45:38 -05006147 if (IS_ERR(trans))
6148 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04006149
Chris Mason94b60442010-05-26 11:02:00 -04006150 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04006151 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006152 btrfs_end_transaction(trans);
Miao Xie16cdcec2011-04-22 18:12:22 +08006153 if (BTRFS_I(inode)->delayed_node)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006154 btrfs_balance_delayed_items(fs_info);
Josef Bacik22c44fe2011-11-30 10:45:38 -05006155
6156 return ret;
6157}
6158
6159/*
6160 * This is a copy of file_update_time. We need this so we can return error on
6161 * ENOSPC for updating the inode in the case of file write and mmap writes.
6162 */
Josef Bacike41f9412012-03-26 09:46:47 -04006163static int btrfs_update_time(struct inode *inode, struct timespec *now,
6164 int flags)
Josef Bacik22c44fe2011-11-30 10:45:38 -05006165{
Alexander Block2bc5565282012-06-15 09:49:33 +02006166 struct btrfs_root *root = BTRFS_I(inode)->root;
Jeff Layton3a8c7232017-12-11 06:35:24 -05006167 bool dirty = flags & ~S_VERSION;
Alexander Block2bc5565282012-06-15 09:49:33 +02006168
6169 if (btrfs_root_readonly(root))
6170 return -EROFS;
6171
Josef Bacike41f9412012-03-26 09:46:47 -04006172 if (flags & S_VERSION)
Jeff Layton3a8c7232017-12-11 06:35:24 -05006173 dirty |= inode_maybe_inc_iversion(inode, dirty);
Josef Bacike41f9412012-03-26 09:46:47 -04006174 if (flags & S_CTIME)
6175 inode->i_ctime = *now;
6176 if (flags & S_MTIME)
6177 inode->i_mtime = *now;
6178 if (flags & S_ATIME)
6179 inode->i_atime = *now;
Jeff Layton3a8c7232017-12-11 06:35:24 -05006180 return dirty ? btrfs_dirty_inode(inode) : 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006181}
6182
Chris Masond352ac62008-09-29 15:18:18 -04006183/*
6184 * find the highest existing sequence number in a directory
6185 * and then set the in-memory index_cnt variable to reflect
6186 * free sequence numbers
6187 */
Nikolay Borisov4c5706552017-02-20 13:50:32 +02006188static int btrfs_set_inode_index_count(struct btrfs_inode *inode)
Josef Bacikaec74772008-07-24 12:12:38 -04006189{
Nikolay Borisov4c5706552017-02-20 13:50:32 +02006190 struct btrfs_root *root = inode->root;
Josef Bacikaec74772008-07-24 12:12:38 -04006191 struct btrfs_key key, found_key;
6192 struct btrfs_path *path;
6193 struct extent_buffer *leaf;
6194 int ret;
6195
Nikolay Borisov4c5706552017-02-20 13:50:32 +02006196 key.objectid = btrfs_ino(inode);
David Sterba962a2982014-06-04 18:41:45 +02006197 key.type = BTRFS_DIR_INDEX_KEY;
Josef Bacikaec74772008-07-24 12:12:38 -04006198 key.offset = (u64)-1;
6199
6200 path = btrfs_alloc_path();
6201 if (!path)
6202 return -ENOMEM;
6203
6204 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
6205 if (ret < 0)
6206 goto out;
6207 /* FIXME: we should be able to handle this */
6208 if (ret == 0)
6209 goto out;
6210 ret = 0;
6211
6212 /*
6213 * MAGIC NUMBER EXPLANATION:
6214 * since we search a directory based on f_pos we have to start at 2
6215 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
6216 * else has to start at 2
6217 */
6218 if (path->slots[0] == 0) {
Nikolay Borisov4c5706552017-02-20 13:50:32 +02006219 inode->index_cnt = 2;
Josef Bacikaec74772008-07-24 12:12:38 -04006220 goto out;
6221 }
6222
6223 path->slots[0]--;
6224
6225 leaf = path->nodes[0];
6226 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
6227
Nikolay Borisov4c5706552017-02-20 13:50:32 +02006228 if (found_key.objectid != btrfs_ino(inode) ||
David Sterba962a2982014-06-04 18:41:45 +02006229 found_key.type != BTRFS_DIR_INDEX_KEY) {
Nikolay Borisov4c5706552017-02-20 13:50:32 +02006230 inode->index_cnt = 2;
Josef Bacikaec74772008-07-24 12:12:38 -04006231 goto out;
6232 }
6233
Nikolay Borisov4c5706552017-02-20 13:50:32 +02006234 inode->index_cnt = found_key.offset + 1;
Josef Bacikaec74772008-07-24 12:12:38 -04006235out:
6236 btrfs_free_path(path);
6237 return ret;
6238}
6239
Chris Masond352ac62008-09-29 15:18:18 -04006240/*
6241 * helper to find a free sequence number in a given directory. This current
6242 * code is very simple, later versions will do smarter things in the btree
6243 */
Nikolay Borisov877574e2017-02-20 13:50:33 +02006244int btrfs_set_inode_index(struct btrfs_inode *dir, u64 *index)
Josef Bacikaec74772008-07-24 12:12:38 -04006245{
6246 int ret = 0;
6247
Nikolay Borisov877574e2017-02-20 13:50:33 +02006248 if (dir->index_cnt == (u64)-1) {
6249 ret = btrfs_inode_delayed_dir_index_count(dir);
Miao Xie16cdcec2011-04-22 18:12:22 +08006250 if (ret) {
6251 ret = btrfs_set_inode_index_count(dir);
6252 if (ret)
6253 return ret;
6254 }
Josef Bacikaec74772008-07-24 12:12:38 -04006255 }
6256
Nikolay Borisov877574e2017-02-20 13:50:33 +02006257 *index = dir->index_cnt;
6258 dir->index_cnt++;
Josef Bacikaec74772008-07-24 12:12:38 -04006259
6260 return ret;
6261}
6262
Chris Masonb0d5d102014-09-08 13:08:51 -07006263static int btrfs_insert_inode_locked(struct inode *inode)
6264{
6265 struct btrfs_iget_args args;
6266 args.location = &BTRFS_I(inode)->location;
6267 args.root = BTRFS_I(inode)->root;
6268
6269 return insert_inode_locked4(inode,
6270 btrfs_inode_hash(inode->i_ino, BTRFS_I(inode)->root),
6271 btrfs_find_actor, &args);
6272}
6273
Anand Jain19aee8d2017-07-18 17:37:05 +08006274/*
6275 * Inherit flags from the parent inode.
6276 *
6277 * Currently only the compression flags and the cow flags are inherited.
6278 */
6279static void btrfs_inherit_iflags(struct inode *inode, struct inode *dir)
6280{
6281 unsigned int flags;
6282
6283 if (!dir)
6284 return;
6285
6286 flags = BTRFS_I(dir)->flags;
6287
6288 if (flags & BTRFS_INODE_NOCOMPRESS) {
6289 BTRFS_I(inode)->flags &= ~BTRFS_INODE_COMPRESS;
6290 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
6291 } else if (flags & BTRFS_INODE_COMPRESS) {
6292 BTRFS_I(inode)->flags &= ~BTRFS_INODE_NOCOMPRESS;
6293 BTRFS_I(inode)->flags |= BTRFS_INODE_COMPRESS;
6294 }
6295
6296 if (flags & BTRFS_INODE_NODATACOW) {
6297 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW;
6298 if (S_ISREG(inode->i_mode))
6299 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
6300 }
6301
6302 btrfs_update_iflags(inode);
6303}
6304
Chris Mason39279cc2007-06-12 06:35:45 -04006305static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
6306 struct btrfs_root *root,
Josef Bacikaec74772008-07-24 12:12:38 -04006307 struct inode *dir,
Chris Mason9c583092008-01-29 15:15:18 -05006308 const char *name, int name_len,
Al Viro175a4eb2011-07-26 03:30:54 -04006309 u64 ref_objectid, u64 objectid,
6310 umode_t mode, u64 *index)
Chris Mason39279cc2007-06-12 06:35:45 -04006311{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006312 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason39279cc2007-06-12 06:35:45 -04006313 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04006314 struct btrfs_inode_item *inode_item;
Chris Mason39279cc2007-06-12 06:35:45 -04006315 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04006316 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05006317 struct btrfs_inode_ref *ref;
6318 struct btrfs_key key[2];
6319 u32 sizes[2];
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006320 int nitems = name ? 2 : 1;
Chris Mason9c583092008-01-29 15:15:18 -05006321 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04006322 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006323
Chris Mason5f39d392007-10-15 16:14:19 -04006324 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07006325 if (!path)
6326 return ERR_PTR(-ENOMEM);
Chris Mason5f39d392007-10-15 16:14:19 -04006327
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006328 inode = new_inode(fs_info->sb);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00006329 if (!inode) {
6330 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04006331 return ERR_PTR(-ENOMEM);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00006332 }
Chris Mason39279cc2007-06-12 06:35:45 -04006333
Li Zefan581bb052011-04-20 10:06:11 +08006334 /*
Filipe Manana5762b5c2014-08-01 00:10:32 +01006335 * O_TMPFILE, set link count to 0, so that after this point,
6336 * we fill in an inode item with the correct link count.
6337 */
6338 if (!name)
6339 set_nlink(inode, 0);
6340
6341 /*
Li Zefan581bb052011-04-20 10:06:11 +08006342 * we have to initialize this early, so we can reclaim the inode
6343 * number if we fail afterwards in this function.
6344 */
6345 inode->i_ino = objectid;
6346
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006347 if (dir && name) {
liubo1abe9b82011-03-24 11:18:59 +00006348 trace_btrfs_inode_request(dir);
6349
Nikolay Borisov877574e2017-02-20 13:50:33 +02006350 ret = btrfs_set_inode_index(BTRFS_I(dir), index);
Shen Feng09771432009-04-02 16:46:06 -04006351 if (ret) {
Yoshinori Sano8fb27642011-04-09 02:30:07 +00006352 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04006353 iput(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04006354 return ERR_PTR(ret);
Shen Feng09771432009-04-02 16:46:06 -04006355 }
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006356 } else if (dir) {
6357 *index = 0;
Josef Bacikaec74772008-07-24 12:12:38 -04006358 }
6359 /*
6360 * index_cnt is ignored for everything but a dir,
Su Yuedf6703e2018-01-12 11:08:02 +08006361 * btrfs_set_inode_index_count has an explanation for the magic
Josef Bacikaec74772008-07-24 12:12:38 -04006362 * number
6363 */
6364 BTRFS_I(inode)->index_cnt = 2;
Miao Xie67de1172013-12-26 13:07:06 +08006365 BTRFS_I(inode)->dir_index = *index;
Chris Mason39279cc2007-06-12 06:35:45 -04006366 BTRFS_I(inode)->root = root;
Chris Masone02119d2008-09-05 16:13:11 -04006367 BTRFS_I(inode)->generation = trans->transid;
Josef Bacik76195852010-11-19 02:18:02 +00006368 inode->i_generation = BTRFS_I(inode)->generation;
Chris Masonb888db22007-08-27 16:49:44 -04006369
Josef Bacik5dc562c2012-08-17 13:14:17 -04006370 /*
6371 * We could have gotten an inode number from somebody who was fsynced
6372 * and then removed in this same transaction, so let's just set full
6373 * sync since it will be a full sync anyway and this will blow away the
6374 * old info in the log.
6375 */
6376 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
6377
Chris Mason9c583092008-01-29 15:15:18 -05006378 key[0].objectid = objectid;
David Sterba962a2982014-06-04 18:41:45 +02006379 key[0].type = BTRFS_INODE_ITEM_KEY;
Chris Mason9c583092008-01-29 15:15:18 -05006380 key[0].offset = 0;
6381
Chris Mason9c583092008-01-29 15:15:18 -05006382 sizes[0] = sizeof(struct btrfs_inode_item);
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006383
6384 if (name) {
6385 /*
6386 * Start new inodes with an inode_ref. This is slightly more
6387 * efficient for small numbers of hard links since they will
6388 * be packed into one item. Extended refs will kick in if we
6389 * add more hard links than can fit in the ref item.
6390 */
6391 key[1].objectid = objectid;
David Sterba962a2982014-06-04 18:41:45 +02006392 key[1].type = BTRFS_INODE_REF_KEY;
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006393 key[1].offset = ref_objectid;
6394
6395 sizes[1] = name_len + sizeof(*ref);
6396 }
Chris Mason9c583092008-01-29 15:15:18 -05006397
Chris Masonb0d5d102014-09-08 13:08:51 -07006398 location = &BTRFS_I(inode)->location;
6399 location->objectid = objectid;
6400 location->offset = 0;
David Sterba962a2982014-06-04 18:41:45 +02006401 location->type = BTRFS_INODE_ITEM_KEY;
Chris Masonb0d5d102014-09-08 13:08:51 -07006402
6403 ret = btrfs_insert_inode_locked(inode);
6404 if (ret < 0)
6405 goto fail;
6406
Chris Masonb9473432009-03-13 11:00:37 -04006407 path->leave_spinning = 1;
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006408 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, nitems);
Chris Mason9c583092008-01-29 15:15:18 -05006409 if (ret != 0)
Chris Masonb0d5d102014-09-08 13:08:51 -07006410 goto fail_unlock;
Chris Mason5f39d392007-10-15 16:14:19 -04006411
Dmitry Monakhovecc11fab2010-03-04 17:31:47 +03006412 inode_init_owner(inode, dir, mode);
Yan Zhenga76a3cd2008-10-09 11:46:29 -04006413 inode_set_bytes(inode, 0);
chandan r9cc97d62012-07-04 12:48:07 +05306414
Deepa Dinamanic2050a42016-09-14 07:48:06 -07006415 inode->i_mtime = current_time(inode);
chandan r9cc97d62012-07-04 12:48:07 +05306416 inode->i_atime = inode->i_mtime;
6417 inode->i_ctime = inode->i_mtime;
6418 BTRFS_I(inode)->i_otime = inode->i_mtime;
6419
Chris Mason5f39d392007-10-15 16:14:19 -04006420 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
6421 struct btrfs_inode_item);
David Sterbab159fa22016-11-08 18:09:03 +01006422 memzero_extent_buffer(path->nodes[0], (unsigned long)inode_item,
Li Zefan293f7e02012-07-10 00:58:58 -06006423 sizeof(*inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04006424 fill_inode_item(trans, path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05006425
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006426 if (name) {
6427 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
6428 struct btrfs_inode_ref);
6429 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
6430 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
6431 ptr = (unsigned long)(ref + 1);
6432 write_extent_buffer(path->nodes[0], name, ptr, name_len);
6433 }
Chris Mason9c583092008-01-29 15:15:18 -05006434
Chris Mason5f39d392007-10-15 16:14:19 -04006435 btrfs_mark_buffer_dirty(path->nodes[0]);
6436 btrfs_free_path(path);
6437
Christoph Hellwig6cbff002009-04-17 10:37:41 +02006438 btrfs_inherit_iflags(inode, dir);
6439
Al Viro569254b2011-07-24 17:08:40 -04006440 if (S_ISREG(mode)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006441 if (btrfs_test_opt(fs_info, NODATASUM))
Chris Mason94272162009-07-02 12:26:06 -04006442 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006443 if (btrfs_test_opt(fs_info, NODATACOW))
Josef Bacikf2bdf9a2013-02-21 15:28:28 -05006444 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW |
6445 BTRFS_INODE_NODATASUM;
Chris Mason94272162009-07-02 12:26:06 -04006446 }
6447
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006448 inode_tree_add(inode);
liubo1abe9b82011-03-24 11:18:59 +00006449
6450 trace_btrfs_inode_new(inode);
Chris Mason1973f0f2011-06-24 13:13:29 -04006451 btrfs_set_inode_last_trans(trans, inode);
liubo1abe9b82011-03-24 11:18:59 +00006452
Alexander Block8ea05e32012-07-25 17:35:53 +02006453 btrfs_update_root_times(trans, root);
6454
Filipe David Borba Manana63541922014-01-07 11:47:46 +00006455 ret = btrfs_inode_inherit_props(trans, inode, dir);
6456 if (ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006457 btrfs_err(fs_info,
Filipe David Borba Manana63541922014-01-07 11:47:46 +00006458 "error inheriting props for ino %llu (root %llu): %d",
David Sterbaf85b7372017-01-20 14:54:07 +01006459 btrfs_ino(BTRFS_I(inode)), root->root_key.objectid, ret);
Filipe David Borba Manana63541922014-01-07 11:47:46 +00006460
Chris Mason39279cc2007-06-12 06:35:45 -04006461 return inode;
Chris Masonb0d5d102014-09-08 13:08:51 -07006462
6463fail_unlock:
6464 unlock_new_inode(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04006465fail:
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006466 if (dir && name)
Josef Bacikaec74772008-07-24 12:12:38 -04006467 BTRFS_I(dir)->index_cnt--;
Chris Mason5f39d392007-10-15 16:14:19 -04006468 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04006469 iput(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04006470 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04006471}
6472
6473static inline u8 btrfs_inode_type(struct inode *inode)
6474{
6475 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
6476}
6477
Chris Masond352ac62008-09-29 15:18:18 -04006478/*
6479 * utility function to add 'inode' into 'parent_inode' with
6480 * a give name and a given sequence number.
6481 * if 'add_backref' is true, also insert a backref from the
6482 * inode to the parent directory.
6483 */
Chris Masone02119d2008-09-05 16:13:11 -04006484int btrfs_add_link(struct btrfs_trans_handle *trans,
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006485 struct btrfs_inode *parent_inode, struct btrfs_inode *inode,
Chris Masone02119d2008-09-05 16:13:11 -04006486 const char *name, int name_len, int add_backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04006487{
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006488 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006489 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006490 struct btrfs_key key;
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006491 struct btrfs_root *root = parent_inode->root;
6492 u64 ino = btrfs_ino(inode);
6493 u64 parent_ino = btrfs_ino(parent_inode);
Chris Mason5f39d392007-10-15 16:14:19 -04006494
Li Zefan33345d012011-04-20 10:31:50 +08006495 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006496 memcpy(&key, &inode->root->root_key, sizeof(key));
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006497 } else {
Li Zefan33345d012011-04-20 10:31:50 +08006498 key.objectid = ino;
David Sterba962a2982014-06-04 18:41:45 +02006499 key.type = BTRFS_INODE_ITEM_KEY;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006500 key.offset = 0;
6501 }
Chris Mason39279cc2007-06-12 06:35:45 -04006502
Li Zefan33345d012011-04-20 10:31:50 +08006503 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006504 ret = btrfs_add_root_ref(trans, fs_info, key.objectid,
6505 root->root_key.objectid, parent_ino,
6506 index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006507 } else if (add_backref) {
Li Zefan33345d012011-04-20 10:31:50 +08006508 ret = btrfs_insert_inode_ref(trans, root, name, name_len, ino,
6509 parent_ino, index);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006510 }
6511
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006512 /* Nothing to clean up yet */
6513 if (ret)
6514 return ret;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006515
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006516 ret = btrfs_insert_dir_item(trans, root, name, name_len,
6517 parent_inode, &key,
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006518 btrfs_inode_type(&inode->vfs_inode), index);
Chris Mason9c520572012-12-17 14:26:57 -05006519 if (ret == -EEXIST || ret == -EOVERFLOW)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006520 goto fail_dir_item;
6521 else if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04006522 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006523 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006524 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006525
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006526 btrfs_i_size_write(parent_inode, parent_inode->vfs_inode.i_size +
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006527 name_len * 2);
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006528 inode_inc_iversion(&parent_inode->vfs_inode);
6529 parent_inode->vfs_inode.i_mtime = parent_inode->vfs_inode.i_ctime =
6530 current_time(&parent_inode->vfs_inode);
6531 ret = btrfs_update_inode(trans, root, &parent_inode->vfs_inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006532 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04006533 btrfs_abort_transaction(trans, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04006534 return ret;
Chris Masonfe66a052012-02-20 08:40:56 -05006535
6536fail_dir_item:
6537 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
6538 u64 local_index;
6539 int err;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006540 err = btrfs_del_root_ref(trans, fs_info, key.objectid,
6541 root->root_key.objectid, parent_ino,
6542 &local_index, name, name_len);
Chris Masonfe66a052012-02-20 08:40:56 -05006543
6544 } else if (add_backref) {
6545 u64 local_index;
6546 int err;
6547
6548 err = btrfs_del_inode_ref(trans, root, name, name_len,
6549 ino, parent_ino, &local_index);
6550 }
6551 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006552}
6553
6554static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Nikolay Borisovcef415a2017-02-20 13:51:09 +02006555 struct btrfs_inode *dir, struct dentry *dentry,
6556 struct btrfs_inode *inode, int backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04006557{
Josef Bacika1b075d2010-11-19 20:36:11 +00006558 int err = btrfs_add_link(trans, dir, inode,
6559 dentry->d_name.name, dentry->d_name.len,
6560 backref, index);
Chris Mason39279cc2007-06-12 06:35:45 -04006561 if (err > 0)
6562 err = -EEXIST;
6563 return err;
6564}
6565
Josef Bacik618e21d2007-07-11 10:18:17 -04006566static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
Al Viro1a67aaf2011-07-26 01:52:52 -04006567 umode_t mode, dev_t rdev)
Josef Bacik618e21d2007-07-11 10:18:17 -04006568{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006569 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Josef Bacik618e21d2007-07-11 10:18:17 -04006570 struct btrfs_trans_handle *trans;
6571 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05006572 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04006573 int err;
6574 int drop_inode = 0;
6575 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006576 u64 index = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04006577
Josef Bacik9ed74f22009-09-11 16:12:44 -04006578 /*
6579 * 2 for inode item and ref
6580 * 2 for dir items
6581 * 1 for xattr if selinux is on
6582 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04006583 trans = btrfs_start_transaction(root, 5);
6584 if (IS_ERR(trans))
6585 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05006586
Li Zefan581bb052011-04-20 10:06:11 +08006587 err = btrfs_find_free_ino(root, &objectid);
6588 if (err)
6589 goto out_unlock;
6590
Josef Bacikaec74772008-07-24 12:12:38 -04006591 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
David Sterbaf85b7372017-01-20 14:54:07 +01006592 dentry->d_name.len, btrfs_ino(BTRFS_I(dir)), objectid,
6593 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006594 if (IS_ERR(inode)) {
6595 err = PTR_ERR(inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04006596 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006597 }
Josef Bacik618e21d2007-07-11 10:18:17 -04006598
Casey Schauflerad19db72011-12-15 10:09:07 -05006599 /*
6600 * If the active LSM wants to access the inode during
6601 * d_instantiate it needs these. Smack checks to see
6602 * if the filesystem supports xattrs by looking at the
6603 * ops vector.
6604 */
Casey Schauflerad19db72011-12-15 10:09:07 -05006605 inode->i_op = &btrfs_special_inode_operations;
Chris Masonb0d5d102014-09-08 13:08:51 -07006606 init_special_inode(inode, inode->i_mode, rdev);
6607
6608 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik618e21d2007-07-11 10:18:17 -04006609 if (err)
Chris Masonb0d5d102014-09-08 13:08:51 -07006610 goto out_unlock_inode;
6611
Nikolay Borisovcef415a2017-02-20 13:51:09 +02006612 err = btrfs_add_nondir(trans, BTRFS_I(dir), dentry, BTRFS_I(inode),
6613 0, index);
Chris Masonb0d5d102014-09-08 13:08:51 -07006614 if (err) {
6615 goto out_unlock_inode;
6616 } else {
Yan1b4ab1b2007-08-29 09:11:44 -04006617 btrfs_update_inode(trans, root, inode);
Chris Masonb0d5d102014-09-08 13:08:51 -07006618 unlock_new_inode(inode);
Al Viro08c422c2011-12-23 07:58:13 -05006619 d_instantiate(dentry, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04006620 }
Chris Masonb0d5d102014-09-08 13:08:51 -07006621
Josef Bacik618e21d2007-07-11 10:18:17 -04006622out_unlock:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006623 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006624 btrfs_btree_balance_dirty(fs_info);
Josef Bacik618e21d2007-07-11 10:18:17 -04006625 if (drop_inode) {
6626 inode_dec_link_count(inode);
6627 iput(inode);
6628 }
Josef Bacik618e21d2007-07-11 10:18:17 -04006629 return err;
Chris Masonb0d5d102014-09-08 13:08:51 -07006630
6631out_unlock_inode:
6632 drop_inode = 1;
6633 unlock_new_inode(inode);
6634 goto out_unlock;
6635
Josef Bacik618e21d2007-07-11 10:18:17 -04006636}
6637
Chris Mason39279cc2007-06-12 06:35:45 -04006638static int btrfs_create(struct inode *dir, struct dentry *dentry,
Al Viroebfc3b42012-06-10 18:05:36 -04006639 umode_t mode, bool excl)
Chris Mason39279cc2007-06-12 06:35:45 -04006640{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006641 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04006642 struct btrfs_trans_handle *trans;
6643 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05006644 struct inode *inode = NULL;
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006645 int drop_inode_on_err = 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -04006646 int err;
Chris Mason39279cc2007-06-12 06:35:45 -04006647 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006648 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006649
Josef Bacik9ed74f22009-09-11 16:12:44 -04006650 /*
6651 * 2 for inode item and ref
6652 * 2 for dir items
6653 * 1 for xattr if selinux is on
6654 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04006655 trans = btrfs_start_transaction(root, 5);
6656 if (IS_ERR(trans))
6657 return PTR_ERR(trans);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006658
Li Zefan581bb052011-04-20 10:06:11 +08006659 err = btrfs_find_free_ino(root, &objectid);
6660 if (err)
6661 goto out_unlock;
6662
Josef Bacikaec74772008-07-24 12:12:38 -04006663 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
David Sterbaf85b7372017-01-20 14:54:07 +01006664 dentry->d_name.len, btrfs_ino(BTRFS_I(dir)), objectid,
6665 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006666 if (IS_ERR(inode)) {
6667 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006668 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006669 }
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006670 drop_inode_on_err = 1;
Casey Schauflerad19db72011-12-15 10:09:07 -05006671 /*
6672 * If the active LSM wants to access the inode during
6673 * d_instantiate it needs these. Smack checks to see
6674 * if the filesystem supports xattrs by looking at the
6675 * ops vector.
6676 */
6677 inode->i_fop = &btrfs_file_operations;
6678 inode->i_op = &btrfs_file_inode_operations;
Chris Masonb0d5d102014-09-08 13:08:51 -07006679 inode->i_mapping->a_ops = &btrfs_aops;
Chris Masonb0d5d102014-09-08 13:08:51 -07006680
6681 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
6682 if (err)
6683 goto out_unlock_inode;
6684
6685 err = btrfs_update_inode(trans, root, inode);
6686 if (err)
6687 goto out_unlock_inode;
Casey Schauflerad19db72011-12-15 10:09:07 -05006688
Nikolay Borisovcef415a2017-02-20 13:51:09 +02006689 err = btrfs_add_nondir(trans, BTRFS_I(dir), dentry, BTRFS_I(inode),
6690 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04006691 if (err)
Chris Masonb0d5d102014-09-08 13:08:51 -07006692 goto out_unlock_inode;
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006693
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006694 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Masonb0d5d102014-09-08 13:08:51 -07006695 unlock_new_inode(inode);
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006696 d_instantiate(dentry, inode);
6697
Chris Mason39279cc2007-06-12 06:35:45 -04006698out_unlock:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006699 btrfs_end_transaction(trans);
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006700 if (err && drop_inode_on_err) {
Chris Mason39279cc2007-06-12 06:35:45 -04006701 inode_dec_link_count(inode);
6702 iput(inode);
6703 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006704 btrfs_btree_balance_dirty(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04006705 return err;
Chris Masonb0d5d102014-09-08 13:08:51 -07006706
6707out_unlock_inode:
6708 unlock_new_inode(inode);
6709 goto out_unlock;
6710
Chris Mason39279cc2007-06-12 06:35:45 -04006711}
6712
6713static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
6714 struct dentry *dentry)
6715{
Filipe Manana271dba452016-01-05 16:24:05 +00006716 struct btrfs_trans_handle *trans = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04006717 struct btrfs_root *root = BTRFS_I(dir)->root;
David Howells2b0143b2015-03-17 22:25:59 +00006718 struct inode *inode = d_inode(old_dentry);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006719 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason00e4e6b2008-08-05 11:18:09 -04006720 u64 index;
Chris Mason39279cc2007-06-12 06:35:45 -04006721 int err;
6722 int drop_inode = 0;
6723
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00006724 /* do not allow sys_link's with other subvols of the same device */
6725 if (root->objectid != BTRFS_I(inode)->root->objectid)
Mark Fasheh3ab35642011-03-22 17:20:26 +00006726 return -EXDEV;
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00006727
Mark Fashehf1863732012-08-08 11:32:27 -07006728 if (inode->i_nlink >= BTRFS_LINK_MAX)
Al Viroc055e992011-03-04 17:15:18 +00006729 return -EMLINK;
Josef Bacik9ed74f22009-09-11 16:12:44 -04006730
Nikolay Borisov877574e2017-02-20 13:50:33 +02006731 err = btrfs_set_inode_index(BTRFS_I(dir), &index);
Josef Bacikaec74772008-07-24 12:12:38 -04006732 if (err)
6733 goto fail;
6734
Yan, Zhenga22285a2010-05-16 10:48:46 -04006735 /*
Miao Xie7e6b6462011-02-18 09:21:17 +00006736 * 2 items for inode and inode ref
Yan, Zhenga22285a2010-05-16 10:48:46 -04006737 * 2 items for dir items
Miao Xie7e6b6462011-02-18 09:21:17 +00006738 * 1 item for parent inode
Yan, Zhenga22285a2010-05-16 10:48:46 -04006739 */
Miao Xie7e6b6462011-02-18 09:21:17 +00006740 trans = btrfs_start_transaction(root, 5);
Yan, Zhenga22285a2010-05-16 10:48:46 -04006741 if (IS_ERR(trans)) {
6742 err = PTR_ERR(trans);
Filipe Manana271dba452016-01-05 16:24:05 +00006743 trans = NULL;
Yan, Zhenga22285a2010-05-16 10:48:46 -04006744 goto fail;
6745 }
Chris Mason5f39d392007-10-15 16:14:19 -04006746
Miao Xie67de1172013-12-26 13:07:06 +08006747 /* There are several dir indexes for this inode, clear the cache. */
6748 BTRFS_I(inode)->dir_index = 0ULL;
Zach Brown8b558c52013-10-16 12:10:34 -07006749 inc_nlink(inode);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04006750 inode_inc_iversion(inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -07006751 inode->i_ctime = current_time(inode);
Al Viro7de9c6ee2010-10-23 11:11:40 -04006752 ihold(inode);
Josef Bacike9976152012-10-11 15:53:56 -04006753 set_bit(BTRFS_INODE_COPY_EVERYTHING, &BTRFS_I(inode)->runtime_flags);
Josef Bacikaec74772008-07-24 12:12:38 -04006754
Nikolay Borisovcef415a2017-02-20 13:51:09 +02006755 err = btrfs_add_nondir(trans, BTRFS_I(dir), dentry, BTRFS_I(inode),
6756 1, index);
Chris Mason5f39d392007-10-15 16:14:19 -04006757
Yan, Zhenga5719522009-09-24 09:17:31 -04006758 if (err) {
Chris Mason39279cc2007-06-12 06:35:45 -04006759 drop_inode = 1;
Yan, Zhenga5719522009-09-24 09:17:31 -04006760 } else {
Al Viro10d9f302011-07-16 23:09:10 -04006761 struct dentry *parent = dentry->d_parent;
Yan, Zhenga5719522009-09-24 09:17:31 -04006762 err = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006763 if (err)
6764 goto fail;
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006765 if (inode->i_nlink == 1) {
6766 /*
6767 * If new hard link count is 1, it's a file created
6768 * with open(2) O_TMPFILE flag.
6769 */
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02006770 err = btrfs_orphan_del(trans, BTRFS_I(inode));
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006771 if (err)
6772 goto fail;
6773 }
Al Viro08c422c2011-12-23 07:58:13 -05006774 d_instantiate(dentry, inode);
Nikolay Borisov9ca5fbfb2017-01-18 00:31:31 +02006775 btrfs_log_new_name(trans, BTRFS_I(inode), NULL, parent);
Yan, Zhenga5719522009-09-24 09:17:31 -04006776 }
Chris Mason39279cc2007-06-12 06:35:45 -04006777
Chris Mason1832a6d2007-12-21 16:27:21 -05006778fail:
Filipe Manana271dba452016-01-05 16:24:05 +00006779 if (trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006780 btrfs_end_transaction(trans);
Chris Mason39279cc2007-06-12 06:35:45 -04006781 if (drop_inode) {
6782 inode_dec_link_count(inode);
6783 iput(inode);
6784 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006785 btrfs_btree_balance_dirty(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04006786 return err;
6787}
6788
Al Viro18bb1db2011-07-26 01:41:39 -04006789static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Chris Mason39279cc2007-06-12 06:35:45 -04006790{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006791 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Chris Masonb9d86662008-05-02 16:13:49 -04006792 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04006793 struct btrfs_trans_handle *trans;
6794 struct btrfs_root *root = BTRFS_I(dir)->root;
6795 int err = 0;
6796 int drop_on_err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04006797 u64 objectid = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006798 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006799
Josef Bacik9ed74f22009-09-11 16:12:44 -04006800 /*
6801 * 2 items for inode and ref
6802 * 2 items for dir items
6803 * 1 for xattr if selinux is on
6804 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04006805 trans = btrfs_start_transaction(root, 5);
6806 if (IS_ERR(trans))
6807 return PTR_ERR(trans);
Chris Mason39279cc2007-06-12 06:35:45 -04006808
Li Zefan581bb052011-04-20 10:06:11 +08006809 err = btrfs_find_free_ino(root, &objectid);
6810 if (err)
6811 goto out_fail;
6812
Josef Bacikaec74772008-07-24 12:12:38 -04006813 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
David Sterbaf85b7372017-01-20 14:54:07 +01006814 dentry->d_name.len, btrfs_ino(BTRFS_I(dir)), objectid,
6815 S_IFDIR | mode, &index);
Chris Mason39279cc2007-06-12 06:35:45 -04006816 if (IS_ERR(inode)) {
6817 err = PTR_ERR(inode);
6818 goto out_fail;
6819 }
Chris Mason5f39d392007-10-15 16:14:19 -04006820
Chris Mason39279cc2007-06-12 06:35:45 -04006821 drop_on_err = 1;
Chris Masonb0d5d102014-09-08 13:08:51 -07006822 /* these must be set before we unlock the inode */
6823 inode->i_op = &btrfs_dir_inode_operations;
6824 inode->i_fop = &btrfs_dir_file_operations;
Josef Bacik33268ea2008-07-24 12:16:36 -04006825
Eric Paris2a7dba32011-02-01 11:05:39 -05006826 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04006827 if (err)
Chris Masonb0d5d102014-09-08 13:08:51 -07006828 goto out_fail_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04006829
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02006830 btrfs_i_size_write(BTRFS_I(inode), 0);
Chris Mason39279cc2007-06-12 06:35:45 -04006831 err = btrfs_update_inode(trans, root, inode);
6832 if (err)
Chris Masonb0d5d102014-09-08 13:08:51 -07006833 goto out_fail_inode;
Chris Mason5f39d392007-10-15 16:14:19 -04006834
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006835 err = btrfs_add_link(trans, BTRFS_I(dir), BTRFS_I(inode),
6836 dentry->d_name.name,
6837 dentry->d_name.len, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04006838 if (err)
Chris Masonb0d5d102014-09-08 13:08:51 -07006839 goto out_fail_inode;
Chris Mason5f39d392007-10-15 16:14:19 -04006840
Chris Mason39279cc2007-06-12 06:35:45 -04006841 d_instantiate(dentry, inode);
Chris Masonb0d5d102014-09-08 13:08:51 -07006842 /*
6843 * mkdir is special. We're unlocking after we call d_instantiate
6844 * to avoid a race with nfsd calling d_instantiate.
6845 */
6846 unlock_new_inode(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006847 drop_on_err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006848
6849out_fail:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006850 btrfs_end_transaction(trans);
Wang Shilongc7cfb8a2014-12-24 14:45:30 +08006851 if (drop_on_err) {
6852 inode_dec_link_count(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006853 iput(inode);
Wang Shilongc7cfb8a2014-12-24 14:45:30 +08006854 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006855 btrfs_btree_balance_dirty(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04006856 return err;
Chris Masonb0d5d102014-09-08 13:08:51 -07006857
6858out_fail_inode:
6859 unlock_new_inode(inode);
6860 goto out_fail;
Chris Mason39279cc2007-06-12 06:35:45 -04006861}
6862
Chris Masonc8b97812008-10-29 14:49:59 -04006863static noinline int uncompress_inline(struct btrfs_path *path,
Byongho Leee40da0e2015-05-19 23:46:45 +09006864 struct page *page,
Chris Masonc8b97812008-10-29 14:49:59 -04006865 size_t pg_offset, u64 extent_offset,
6866 struct btrfs_file_extent_item *item)
6867{
6868 int ret;
6869 struct extent_buffer *leaf = path->nodes[0];
6870 char *tmp;
6871 size_t max_size;
6872 unsigned long inline_size;
6873 unsigned long ptr;
Li Zefan261507a02010-12-17 14:21:50 +08006874 int compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04006875
6876 WARN_ON(pg_offset != 0);
Li Zefan261507a02010-12-17 14:21:50 +08006877 compress_type = btrfs_file_extent_compression(leaf, item);
Chris Masonc8b97812008-10-29 14:49:59 -04006878 max_size = btrfs_file_extent_ram_bytes(leaf, item);
6879 inline_size = btrfs_file_extent_inline_item_len(leaf,
Ross Kirkdd3cc162013-09-16 15:58:09 +01006880 btrfs_item_nr(path->slots[0]));
Chris Masonc8b97812008-10-29 14:49:59 -04006881 tmp = kmalloc(inline_size, GFP_NOFS);
Tsutomu Itoh8d413712011-04-25 19:43:52 -04006882 if (!tmp)
6883 return -ENOMEM;
Chris Masonc8b97812008-10-29 14:49:59 -04006884 ptr = btrfs_file_extent_inline_start(item);
6885
6886 read_extent_buffer(leaf, tmp, ptr, inline_size);
6887
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006888 max_size = min_t(unsigned long, PAGE_SIZE, max_size);
Li Zefan261507a02010-12-17 14:21:50 +08006889 ret = btrfs_decompress(compress_type, tmp, page,
6890 extent_offset, inline_size, max_size);
Zygo Blaxelle1699d22017-03-10 16:45:44 -05006891
6892 /*
6893 * decompression code contains a memset to fill in any space between the end
6894 * of the uncompressed data and the end of max_size in case the decompressed
6895 * data ends up shorter than ram_bytes. That doesn't cover the hole between
6896 * the end of an inline extent and the beginning of the next block, so we
6897 * cover that region here.
6898 */
6899
6900 if (max_size + pg_offset < PAGE_SIZE) {
6901 char *map = kmap(page);
6902 memset(map + pg_offset + max_size, 0, PAGE_SIZE - max_size - pg_offset);
6903 kunmap(page);
6904 }
Chris Masonc8b97812008-10-29 14:49:59 -04006905 kfree(tmp);
Zach Brown166ae5a2014-05-09 17:15:10 -04006906 return ret;
Chris Masonc8b97812008-10-29 14:49:59 -04006907}
6908
Chris Masond352ac62008-09-29 15:18:18 -04006909/*
6910 * a bit scary, this does extent mapping from logical file offset to the disk.
Chris Masond3977122009-01-05 21:25:51 -05006911 * the ugly parts come from merging extents from the disk with the in-ram
6912 * representation. This gets more complex because of the data=ordered code,
Chris Masond352ac62008-09-29 15:18:18 -04006913 * where the in-ram extents might be locked pending data=ordered completion.
6914 *
6915 * This also copies inline extents directly into the page.
6916 */
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02006917struct extent_map *btrfs_get_extent(struct btrfs_inode *inode,
6918 struct page *page,
6919 size_t pg_offset, u64 start, u64 len,
6920 int create)
Chris Masona52d9a82007-08-27 16:49:44 -04006921{
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02006922 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
Chris Masona52d9a82007-08-27 16:49:44 -04006923 int ret;
6924 int err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04006925 u64 extent_start = 0;
6926 u64 extent_end = 0;
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02006927 u64 objectid = btrfs_ino(inode);
Chris Masona52d9a82007-08-27 16:49:44 -04006928 u32 found_type;
Chris Masonf4219502008-07-22 11:18:09 -04006929 struct btrfs_path *path = NULL;
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02006930 struct btrfs_root *root = inode->root;
Chris Masona52d9a82007-08-27 16:49:44 -04006931 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04006932 struct extent_buffer *leaf;
6933 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04006934 struct extent_map *em = NULL;
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02006935 struct extent_map_tree *em_tree = &inode->extent_tree;
6936 struct extent_io_tree *io_tree = &inode->io_tree;
Filipe Manana7ffbb592014-06-09 03:48:05 +01006937 const bool new_inline = !page || create;
Chris Masona52d9a82007-08-27 16:49:44 -04006938
Chris Mason890871b2009-09-02 16:24:52 -04006939 read_lock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05006940 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04006941 if (em)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006942 em->bdev = fs_info->fs_devices->latest_bdev;
Chris Mason890871b2009-09-02 16:24:52 -04006943 read_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05006944
Chris Masona52d9a82007-08-27 16:49:44 -04006945 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04006946 if (em->start > start || em->start + em->len <= start)
6947 free_extent_map(em);
6948 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05006949 free_extent_map(em);
6950 else
6951 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04006952 }
David Sterba172ddd62011-04-21 00:48:27 +02006953 em = alloc_extent_map();
Chris Masona52d9a82007-08-27 16:49:44 -04006954 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05006955 err = -ENOMEM;
6956 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04006957 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006958 em->bdev = fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05006959 em->start = EXTENT_MAP_HOLE;
Chris Mason445a6942008-11-10 11:53:33 -05006960 em->orig_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05006961 em->len = (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -04006962 em->block_len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04006963
6964 if (!path) {
6965 path = btrfs_alloc_path();
Josef Bacik026fd312011-05-13 10:32:11 -04006966 if (!path) {
6967 err = -ENOMEM;
6968 goto out;
6969 }
6970 /*
6971 * Chances are we'll be called again, so go ahead and do
6972 * readahead
6973 */
David Sterbae4058b52015-11-27 16:31:35 +01006974 path->reada = READA_FORWARD;
Chris Masonf4219502008-07-22 11:18:09 -04006975 }
6976
Nikolay Borisov5c9a7022017-12-01 11:19:40 +02006977 ret = btrfs_lookup_file_extent(NULL, root, path, objectid, start, 0);
Chris Masona52d9a82007-08-27 16:49:44 -04006978 if (ret < 0) {
6979 err = ret;
6980 goto out;
6981 }
6982
6983 if (ret != 0) {
6984 if (path->slots[0] == 0)
6985 goto not_found;
6986 path->slots[0]--;
6987 }
6988
Chris Mason5f39d392007-10-15 16:14:19 -04006989 leaf = path->nodes[0];
6990 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04006991 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04006992 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04006993 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
David Sterba962a2982014-06-04 18:41:45 +02006994 found_type = found_key.type;
Chris Mason5f39d392007-10-15 16:14:19 -04006995 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04006996 found_type != BTRFS_EXTENT_DATA_KEY) {
Josef Bacik25a50342013-10-14 12:08:38 -04006997 /*
6998 * If we backup past the first extent we want to move forward
6999 * and see if there is an extent in front of us, otherwise we'll
7000 * say there is a hole for our whole search range which can
7001 * cause problems.
7002 */
7003 extent_end = start;
7004 goto next;
Chris Masona52d9a82007-08-27 16:49:44 -04007005 }
7006
Chris Mason5f39d392007-10-15 16:14:19 -04007007 found_type = btrfs_file_extent_type(leaf, item);
7008 extent_start = found_key.offset;
Yan Zhengd899e052008-10-30 14:25:28 -04007009 if (found_type == BTRFS_FILE_EXTENT_REG ||
7010 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04007011 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04007012 btrfs_file_extent_num_bytes(leaf, item);
Liu Bo09ed2f12017-03-10 11:09:48 -08007013
7014 trace_btrfs_get_extent_show_fi_regular(inode, leaf, item,
7015 extent_start);
Yan Zheng9036c102008-10-30 14:19:41 -04007016 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
7017 size_t size;
Chris Mason514ac8a2014-01-03 21:07:00 -08007018 size = btrfs_file_extent_inline_len(leaf, path->slots[0], item);
Jeff Mahoneyda170662016-06-15 09:22:56 -04007019 extent_end = ALIGN(extent_start + size,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007020 fs_info->sectorsize);
Liu Bo09ed2f12017-03-10 11:09:48 -08007021
7022 trace_btrfs_get_extent_show_fi_inline(inode, leaf, item,
7023 path->slots[0],
7024 extent_start);
Yan Zheng9036c102008-10-30 14:19:41 -04007025 }
Josef Bacik25a50342013-10-14 12:08:38 -04007026next:
Yan Zheng9036c102008-10-30 14:19:41 -04007027 if (start >= extent_end) {
7028 path->slots[0]++;
7029 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
7030 ret = btrfs_next_leaf(root, path);
7031 if (ret < 0) {
7032 err = ret;
7033 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04007034 }
Yan Zheng9036c102008-10-30 14:19:41 -04007035 if (ret > 0)
7036 goto not_found;
7037 leaf = path->nodes[0];
Chris Masona52d9a82007-08-27 16:49:44 -04007038 }
Yan Zheng9036c102008-10-30 14:19:41 -04007039 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
7040 if (found_key.objectid != objectid ||
7041 found_key.type != BTRFS_EXTENT_DATA_KEY)
7042 goto not_found;
7043 if (start + len <= found_key.offset)
7044 goto not_found;
Wang Shilonge2eca692014-07-17 11:44:14 +08007045 if (start > found_key.offset)
7046 goto next;
Yan Zheng9036c102008-10-30 14:19:41 -04007047 em->start = start;
Josef Bacik70c8a912012-10-11 16:54:30 -04007048 em->orig_start = start;
Yan Zheng9036c102008-10-30 14:19:41 -04007049 em->len = found_key.offset - start;
7050 goto not_found_em;
7051 }
7052
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02007053 btrfs_extent_item_to_extent_map(inode, path, item,
Nikolay Borisov9cdc5122017-02-20 13:51:02 +02007054 new_inline, em);
Filipe Manana7ffbb592014-06-09 03:48:05 +01007055
Yan Zhengd899e052008-10-30 14:25:28 -04007056 if (found_type == BTRFS_FILE_EXTENT_REG ||
7057 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04007058 goto insert;
7059 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04007060 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04007061 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04007062 size_t size;
7063 size_t extent_offset;
7064 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04007065
Filipe Manana7ffbb592014-06-09 03:48:05 +01007066 if (new_inline)
Yan689f9342007-10-29 11:41:07 -04007067 goto out;
Yan689f9342007-10-29 11:41:07 -04007068
Chris Mason514ac8a2014-01-03 21:07:00 -08007069 size = btrfs_file_extent_inline_len(leaf, path->slots[0], item);
Yan Zheng9036c102008-10-30 14:19:41 -04007070 extent_offset = page_offset(page) + pg_offset - extent_start;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03007071 copy_size = min_t(u64, PAGE_SIZE - pg_offset,
7072 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04007073 em->start = extent_start + extent_offset;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007074 em->len = ALIGN(copy_size, fs_info->sectorsize);
Josef Bacikb4939682012-12-03 10:31:19 -05007075 em->orig_block_len = em->len;
Josef Bacik70c8a912012-10-11 16:54:30 -04007076 em->orig_start = em->start;
Yan689f9342007-10-29 11:41:07 -04007077 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Edmund Nadolskibf46f522017-11-20 13:24:49 -07007078 if (!PageUptodate(page)) {
Li Zefan261507a02010-12-17 14:21:50 +08007079 if (btrfs_file_extent_compression(leaf, item) !=
7080 BTRFS_COMPRESS_NONE) {
Byongho Leee40da0e2015-05-19 23:46:45 +09007081 ret = uncompress_inline(path, page, pg_offset,
Chris Masonc8b97812008-10-29 14:49:59 -04007082 extent_offset, item);
Zach Brown166ae5a2014-05-09 17:15:10 -04007083 if (ret) {
7084 err = ret;
7085 goto out;
7086 }
Chris Masonc8b97812008-10-29 14:49:59 -04007087 } else {
7088 map = kmap(page);
7089 read_extent_buffer(leaf, map + pg_offset, ptr,
7090 copy_size);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03007091 if (pg_offset + copy_size < PAGE_SIZE) {
Chris Mason93c82d52009-09-11 12:36:29 -04007092 memset(map + pg_offset + copy_size, 0,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03007093 PAGE_SIZE - pg_offset -
Chris Mason93c82d52009-09-11 12:36:29 -04007094 copy_size);
7095 }
Chris Masonc8b97812008-10-29 14:49:59 -04007096 kunmap(page);
7097 }
Chris Mason179e29e2007-11-01 11:28:41 -04007098 flush_dcache_page(page);
Chris Masona52d9a82007-08-27 16:49:44 -04007099 }
Chris Masond1310b22008-01-24 16:13:08 -05007100 set_extent_uptodate(io_tree, em->start,
Arne Jansen507903b2011-04-06 10:02:20 +00007101 extent_map_end(em) - 1, NULL, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04007102 goto insert;
Chris Masona52d9a82007-08-27 16:49:44 -04007103 }
7104not_found:
7105 em->start = start;
Josef Bacik70c8a912012-10-11 16:54:30 -04007106 em->orig_start = start;
Chris Masond1310b22008-01-24 16:13:08 -05007107 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04007108not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04007109 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04007110insert:
David Sterbab3b4aa72011-04-21 01:20:15 +02007111 btrfs_release_path(path);
Chris Masond1310b22008-01-24 16:13:08 -05007112 if (em->start > start || extent_map_end(em) <= start) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007113 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04007114 "bad extent! em: [%llu %llu] passed [%llu %llu]",
7115 em->start, em->len, start, len);
Chris Masona52d9a82007-08-27 16:49:44 -04007116 err = -EIO;
7117 goto out;
7118 }
Chris Masond1310b22008-01-24 16:13:08 -05007119
7120 err = 0;
Chris Mason890871b2009-09-02 16:24:52 -04007121 write_lock(&em_tree->lock);
Liu Bo7b4df0582018-01-05 12:51:10 -07007122 err = btrfs_add_extent_mapping(em_tree, &em, start, len);
Chris Mason890871b2009-09-02 16:24:52 -04007123 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04007124out:
liubo1abe9b82011-03-24 11:18:59 +00007125
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02007126 trace_btrfs_get_extent(root, inode, em);
liubo1abe9b82011-03-24 11:18:59 +00007127
Tsutomu Itoh527afb42015-08-19 14:55:00 +09007128 btrfs_free_path(path);
Chris Masona52d9a82007-08-27 16:49:44 -04007129 if (err) {
7130 free_extent_map(em);
Chris Masona52d9a82007-08-27 16:49:44 -04007131 return ERR_PTR(err);
7132 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007133 BUG_ON(!em); /* Error is always set */
Chris Masona52d9a82007-08-27 16:49:44 -04007134 return em;
7135}
7136
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02007137struct extent_map *btrfs_get_extent_fiemap(struct btrfs_inode *inode,
7138 struct page *page,
7139 size_t pg_offset, u64 start, u64 len,
7140 int create)
Chris Masonec29ed52011-02-23 16:23:20 -05007141{
7142 struct extent_map *em;
7143 struct extent_map *hole_em = NULL;
7144 u64 range_start = start;
7145 u64 end;
7146 u64 found;
7147 u64 found_end;
7148 int err = 0;
7149
7150 em = btrfs_get_extent(inode, page, pg_offset, start, len, create);
7151 if (IS_ERR(em))
7152 return em;
Dan Carpenter99862772017-04-11 11:57:15 +03007153 /*
7154 * If our em maps to:
7155 * - a hole or
7156 * - a pre-alloc extent,
7157 * there might actually be delalloc bytes behind it.
7158 */
7159 if (em->block_start != EXTENT_MAP_HOLE &&
7160 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
7161 return em;
7162 else
7163 hole_em = em;
Chris Masonec29ed52011-02-23 16:23:20 -05007164
7165 /* check to see if we've wrapped (len == -1 or similar) */
7166 end = start + len;
7167 if (end < start)
7168 end = (u64)-1;
7169 else
7170 end -= 1;
7171
7172 em = NULL;
7173
7174 /* ok, we didn't find anything, lets look for delalloc */
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02007175 found = count_range_bits(&inode->io_tree, &range_start,
Chris Masonec29ed52011-02-23 16:23:20 -05007176 end, len, EXTENT_DELALLOC, 1);
7177 found_end = range_start + found;
7178 if (found_end < range_start)
7179 found_end = (u64)-1;
7180
7181 /*
7182 * we didn't find anything useful, return
7183 * the original results from get_extent()
7184 */
7185 if (range_start > end || found_end <= start) {
7186 em = hole_em;
7187 hole_em = NULL;
7188 goto out;
7189 }
7190
7191 /* adjust the range_start to make sure it doesn't
7192 * go backwards from the start they passed in
7193 */
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05307194 range_start = max(start, range_start);
Chris Masonec29ed52011-02-23 16:23:20 -05007195 found = found_end - range_start;
7196
7197 if (found > 0) {
7198 u64 hole_start = start;
7199 u64 hole_len = len;
7200
David Sterba172ddd62011-04-21 00:48:27 +02007201 em = alloc_extent_map();
Chris Masonec29ed52011-02-23 16:23:20 -05007202 if (!em) {
7203 err = -ENOMEM;
7204 goto out;
7205 }
7206 /*
7207 * when btrfs_get_extent can't find anything it
7208 * returns one huge hole
7209 *
7210 * make sure what it found really fits our range, and
7211 * adjust to make sure it is based on the start from
7212 * the caller
7213 */
7214 if (hole_em) {
7215 u64 calc_end = extent_map_end(hole_em);
7216
7217 if (calc_end <= start || (hole_em->start > end)) {
7218 free_extent_map(hole_em);
7219 hole_em = NULL;
7220 } else {
7221 hole_start = max(hole_em->start, start);
7222 hole_len = calc_end - hole_start;
7223 }
7224 }
7225 em->bdev = NULL;
7226 if (hole_em && range_start > hole_start) {
7227 /* our hole starts before our delalloc, so we
7228 * have to return just the parts of the hole
7229 * that go until the delalloc starts
7230 */
7231 em->len = min(hole_len,
7232 range_start - hole_start);
7233 em->start = hole_start;
7234 em->orig_start = hole_start;
7235 /*
7236 * don't adjust block start at all,
7237 * it is fixed at EXTENT_MAP_HOLE
7238 */
7239 em->block_start = hole_em->block_start;
7240 em->block_len = hole_len;
Liu Bof9e4fb52013-01-07 10:10:12 +00007241 if (test_bit(EXTENT_FLAG_PREALLOC, &hole_em->flags))
7242 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Chris Masonec29ed52011-02-23 16:23:20 -05007243 } else {
7244 em->start = range_start;
7245 em->len = found;
7246 em->orig_start = range_start;
7247 em->block_start = EXTENT_MAP_DELALLOC;
7248 em->block_len = found;
7249 }
Nikolay Borisovbf8d32b2017-12-01 11:19:43 +02007250 } else {
Chris Masonec29ed52011-02-23 16:23:20 -05007251 return hole_em;
7252 }
7253out:
7254
7255 free_extent_map(hole_em);
7256 if (err) {
7257 free_extent_map(em);
7258 return ERR_PTR(err);
7259 }
7260 return em;
7261}
7262
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007263static struct extent_map *btrfs_create_dio_extent(struct inode *inode,
7264 const u64 start,
7265 const u64 len,
7266 const u64 orig_start,
7267 const u64 block_start,
7268 const u64 block_len,
7269 const u64 orig_block_len,
7270 const u64 ram_bytes,
7271 const int type)
7272{
7273 struct extent_map *em = NULL;
7274 int ret;
7275
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007276 if (type != BTRFS_ORDERED_NOCOW) {
Liu Bo6f9994d2017-01-31 07:50:22 -08007277 em = create_io_em(inode, start, len, orig_start,
7278 block_start, block_len, orig_block_len,
7279 ram_bytes,
7280 BTRFS_COMPRESS_NONE, /* compress_type */
7281 type);
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007282 if (IS_ERR(em))
7283 goto out;
7284 }
7285 ret = btrfs_add_ordered_extent_dio(inode, start, block_start,
7286 len, block_len, type);
7287 if (ret) {
7288 if (em) {
7289 free_extent_map(em);
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02007290 btrfs_drop_extent_cache(BTRFS_I(inode), start,
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007291 start + len - 1, 0);
7292 }
7293 em = ERR_PTR(ret);
7294 }
7295 out:
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007296
7297 return em;
7298}
7299
Josef Bacik4b46fce2010-05-23 11:00:55 -04007300static struct extent_map *btrfs_new_extent_direct(struct inode *inode,
7301 u64 start, u64 len)
7302{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007303 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik4b46fce2010-05-23 11:00:55 -04007304 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik70c8a912012-10-11 16:54:30 -04007305 struct extent_map *em;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007306 struct btrfs_key ins;
7307 u64 alloc_hint;
7308 int ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007309
Josef Bacik4b46fce2010-05-23 11:00:55 -04007310 alloc_hint = get_extent_allocation_hint(inode, start, len);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007311 ret = btrfs_reserve_extent(root, len, len, fs_info->sectorsize,
Jeff Mahoneyda170662016-06-15 09:22:56 -04007312 0, alloc_hint, &ins, 1, 1);
Josef Bacik00361582013-08-14 14:02:47 -04007313 if (ret)
7314 return ERR_PTR(ret);
Josef Bacik4b46fce2010-05-23 11:00:55 -04007315
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007316 em = btrfs_create_dio_extent(inode, start, ins.offset, start,
7317 ins.objectid, ins.offset, ins.offset,
Liu Bo6288d6e2017-02-21 12:12:58 -08007318 ins.offset, BTRFS_ORDERED_REGULAR);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007319 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007320 if (IS_ERR(em))
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007321 btrfs_free_reserved_extent(fs_info, ins.objectid,
7322 ins.offset, 1);
Josef Bacik00361582013-08-14 14:02:47 -04007323
Josef Bacik4b46fce2010-05-23 11:00:55 -04007324 return em;
7325}
7326
Chris Mason46bfbb52010-05-26 11:04:10 -04007327/*
7328 * returns 1 when the nocow is safe, < 1 on error, 0 if the
7329 * block must be cow'd
7330 */
Josef Bacik00361582013-08-14 14:02:47 -04007331noinline int can_nocow_extent(struct inode *inode, u64 offset, u64 *len,
Josef Bacik7ee9e442013-06-21 16:37:03 -04007332 u64 *orig_start, u64 *orig_block_len,
7333 u64 *ram_bytes)
Chris Mason46bfbb52010-05-26 11:04:10 -04007334{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007335 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason46bfbb52010-05-26 11:04:10 -04007336 struct btrfs_path *path;
7337 int ret;
7338 struct extent_buffer *leaf;
7339 struct btrfs_root *root = BTRFS_I(inode)->root;
Miao Xie7b2b7082014-02-27 13:58:05 +08007340 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason46bfbb52010-05-26 11:04:10 -04007341 struct btrfs_file_extent_item *fi;
7342 struct btrfs_key key;
7343 u64 disk_bytenr;
7344 u64 backref_offset;
7345 u64 extent_end;
7346 u64 num_bytes;
7347 int slot;
7348 int found_type;
Josef Bacik7ee9e442013-06-21 16:37:03 -04007349 bool nocow = (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW);
Miao Xiee77751a2013-12-27 21:11:50 +08007350
Chris Mason46bfbb52010-05-26 11:04:10 -04007351 path = btrfs_alloc_path();
7352 if (!path)
7353 return -ENOMEM;
7354
David Sterbaf85b7372017-01-20 14:54:07 +01007355 ret = btrfs_lookup_file_extent(NULL, root, path,
7356 btrfs_ino(BTRFS_I(inode)), offset, 0);
Chris Mason46bfbb52010-05-26 11:04:10 -04007357 if (ret < 0)
7358 goto out;
7359
7360 slot = path->slots[0];
7361 if (ret == 1) {
7362 if (slot == 0) {
7363 /* can't find the item, must cow */
7364 ret = 0;
7365 goto out;
7366 }
7367 slot--;
7368 }
7369 ret = 0;
7370 leaf = path->nodes[0];
7371 btrfs_item_key_to_cpu(leaf, &key, slot);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02007372 if (key.objectid != btrfs_ino(BTRFS_I(inode)) ||
Chris Mason46bfbb52010-05-26 11:04:10 -04007373 key.type != BTRFS_EXTENT_DATA_KEY) {
7374 /* not our file or wrong item type, must cow */
7375 goto out;
7376 }
7377
7378 if (key.offset > offset) {
7379 /* Wrong offset, must cow */
7380 goto out;
7381 }
7382
7383 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
7384 found_type = btrfs_file_extent_type(leaf, fi);
7385 if (found_type != BTRFS_FILE_EXTENT_REG &&
7386 found_type != BTRFS_FILE_EXTENT_PREALLOC) {
7387 /* not a regular extent, must cow */
7388 goto out;
7389 }
Josef Bacik7ee9e442013-06-21 16:37:03 -04007390
7391 if (!nocow && found_type == BTRFS_FILE_EXTENT_REG)
7392 goto out;
7393
Miao Xiee77751a2013-12-27 21:11:50 +08007394 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
7395 if (extent_end <= offset)
7396 goto out;
7397
Chris Mason46bfbb52010-05-26 11:04:10 -04007398 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Josef Bacik7ee9e442013-06-21 16:37:03 -04007399 if (disk_bytenr == 0)
7400 goto out;
7401
7402 if (btrfs_file_extent_compression(leaf, fi) ||
7403 btrfs_file_extent_encryption(leaf, fi) ||
7404 btrfs_file_extent_other_encoding(leaf, fi))
7405 goto out;
7406
Chris Mason46bfbb52010-05-26 11:04:10 -04007407 backref_offset = btrfs_file_extent_offset(leaf, fi);
7408
Josef Bacik7ee9e442013-06-21 16:37:03 -04007409 if (orig_start) {
7410 *orig_start = key.offset - backref_offset;
7411 *orig_block_len = btrfs_file_extent_disk_num_bytes(leaf, fi);
7412 *ram_bytes = btrfs_file_extent_ram_bytes(leaf, fi);
7413 }
Josef Bacikeb384b52013-04-24 16:32:55 -04007414
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007415 if (btrfs_extent_readonly(fs_info, disk_bytenr))
Chris Mason46bfbb52010-05-26 11:04:10 -04007416 goto out;
Miao Xie7b2b7082014-02-27 13:58:05 +08007417
7418 num_bytes = min(offset + *len, extent_end) - offset;
7419 if (!nocow && found_type == BTRFS_FILE_EXTENT_PREALLOC) {
7420 u64 range_end;
7421
Jeff Mahoneyda170662016-06-15 09:22:56 -04007422 range_end = round_up(offset + num_bytes,
7423 root->fs_info->sectorsize) - 1;
Miao Xie7b2b7082014-02-27 13:58:05 +08007424 ret = test_range_bit(io_tree, offset, range_end,
7425 EXTENT_DELALLOC, 0, NULL);
7426 if (ret) {
7427 ret = -EAGAIN;
7428 goto out;
7429 }
7430 }
7431
Josef Bacik1bda19e2013-10-18 12:10:36 -04007432 btrfs_release_path(path);
Chris Mason46bfbb52010-05-26 11:04:10 -04007433
7434 /*
7435 * look for other files referencing this extent, if we
7436 * find any we must cow
7437 */
Josef Bacik00361582013-08-14 14:02:47 -04007438
Liu Boe4c3b2d2017-01-30 12:25:28 -08007439 ret = btrfs_cross_ref_exist(root, btrfs_ino(BTRFS_I(inode)),
Josef Bacik00361582013-08-14 14:02:47 -04007440 key.offset - backref_offset, disk_bytenr);
Josef Bacik00361582013-08-14 14:02:47 -04007441 if (ret) {
7442 ret = 0;
7443 goto out;
7444 }
Chris Mason46bfbb52010-05-26 11:04:10 -04007445
7446 /*
7447 * adjust disk_bytenr and num_bytes to cover just the bytes
7448 * in this extent we are about to write. If there
7449 * are any csums in that range we have to cow in order
7450 * to keep the csums correct
7451 */
7452 disk_bytenr += backref_offset;
7453 disk_bytenr += offset - key.offset;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007454 if (csum_exist_in_range(fs_info, disk_bytenr, num_bytes))
7455 goto out;
Chris Mason46bfbb52010-05-26 11:04:10 -04007456 /*
7457 * all of the above have passed, it is safe to overwrite this extent
7458 * without cow
7459 */
Josef Bacikeb384b52013-04-24 16:32:55 -04007460 *len = num_bytes;
Chris Mason46bfbb52010-05-26 11:04:10 -04007461 ret = 1;
7462out:
7463 btrfs_free_path(path);
7464 return ret;
7465}
7466
Josef Bacikeb838e72012-07-31 16:28:48 -04007467static int lock_extent_direct(struct inode *inode, u64 lockstart, u64 lockend,
7468 struct extent_state **cached_state, int writing)
7469{
7470 struct btrfs_ordered_extent *ordered;
7471 int ret = 0;
7472
7473 while (1) {
7474 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
David Sterbaff13db42015-12-03 14:30:40 +01007475 cached_state);
Josef Bacikeb838e72012-07-31 16:28:48 -04007476 /*
7477 * We're concerned with the entire range that we're going to be
Nicholas D Steeves01327612016-05-19 21:18:45 -04007478 * doing DIO to, so we need to make sure there's no ordered
Josef Bacikeb838e72012-07-31 16:28:48 -04007479 * extents in this range.
7480 */
Nikolay Borisova776c6f2017-02-20 13:50:49 +02007481 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), lockstart,
Josef Bacikeb838e72012-07-31 16:28:48 -04007482 lockend - lockstart + 1);
7483
7484 /*
7485 * We need to make sure there are no buffered pages in this
7486 * range either, we could have raced between the invalidate in
7487 * generic_file_direct_write and locking the extent. The
7488 * invalidate needs to happen so that reads after a write do not
7489 * get stale data.
7490 */
Alex Gartrellfc4adbff2014-05-20 13:07:56 -07007491 if (!ordered &&
David Sterba051c98e2018-03-07 15:33:22 +01007492 (!writing || !filemap_range_has_page(inode->i_mapping,
7493 lockstart, lockend)))
Josef Bacikeb838e72012-07-31 16:28:48 -04007494 break;
7495
7496 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
David Sterbae43bbe52017-12-12 21:43:52 +01007497 cached_state);
Josef Bacikeb838e72012-07-31 16:28:48 -04007498
7499 if (ordered) {
Filipe Mananaade77022016-02-18 14:28:55 +00007500 /*
7501 * If we are doing a DIO read and the ordered extent we
7502 * found is for a buffered write, we can not wait for it
7503 * to complete and retry, because if we do so we can
7504 * deadlock with concurrent buffered writes on page
7505 * locks. This happens only if our DIO read covers more
7506 * than one extent map, if at this point has already
7507 * created an ordered extent for a previous extent map
7508 * and locked its range in the inode's io tree, and a
7509 * concurrent write against that previous extent map's
7510 * range and this range started (we unlock the ranges
7511 * in the io tree only when the bios complete and
7512 * buffered writes always lock pages before attempting
7513 * to lock range in the io tree).
7514 */
7515 if (writing ||
7516 test_bit(BTRFS_ORDERED_DIRECT, &ordered->flags))
7517 btrfs_start_ordered_extent(inode, ordered, 1);
7518 else
7519 ret = -ENOTBLK;
Josef Bacikeb838e72012-07-31 16:28:48 -04007520 btrfs_put_ordered_extent(ordered);
7521 } else {
Josef Bacikeb838e72012-07-31 16:28:48 -04007522 /*
Filipe Mananab850ae12015-12-08 16:23:16 +00007523 * We could trigger writeback for this range (and wait
7524 * for it to complete) and then invalidate the pages for
7525 * this range (through invalidate_inode_pages2_range()),
7526 * but that can lead us to a deadlock with a concurrent
7527 * call to readpages() (a buffered read or a defrag call
7528 * triggered a readahead) on a page lock due to an
7529 * ordered dio extent we created before but did not have
7530 * yet a corresponding bio submitted (whence it can not
7531 * complete), which makes readpages() wait for that
7532 * ordered extent to complete while holding a lock on
7533 * that page.
Josef Bacikeb838e72012-07-31 16:28:48 -04007534 */
Filipe Mananab850ae12015-12-08 16:23:16 +00007535 ret = -ENOTBLK;
Josef Bacikeb838e72012-07-31 16:28:48 -04007536 }
7537
Filipe Mananaade77022016-02-18 14:28:55 +00007538 if (ret)
7539 break;
7540
Josef Bacikeb838e72012-07-31 16:28:48 -04007541 cond_resched();
7542 }
7543
7544 return ret;
7545}
7546
Liu Bo6f9994d2017-01-31 07:50:22 -08007547/* The callers of this must take lock_extent() */
7548static struct extent_map *create_io_em(struct inode *inode, u64 start, u64 len,
7549 u64 orig_start, u64 block_start,
7550 u64 block_len, u64 orig_block_len,
7551 u64 ram_bytes, int compress_type,
7552 int type)
Josef Bacik69ffb542012-09-11 15:40:07 -04007553{
7554 struct extent_map_tree *em_tree;
7555 struct extent_map *em;
7556 struct btrfs_root *root = BTRFS_I(inode)->root;
7557 int ret;
7558
Liu Bo6f9994d2017-01-31 07:50:22 -08007559 ASSERT(type == BTRFS_ORDERED_PREALLOC ||
7560 type == BTRFS_ORDERED_COMPRESSED ||
7561 type == BTRFS_ORDERED_NOCOW ||
Liu Bo1af4a0a2017-02-13 15:35:09 -08007562 type == BTRFS_ORDERED_REGULAR);
Liu Bo6f9994d2017-01-31 07:50:22 -08007563
Josef Bacik69ffb542012-09-11 15:40:07 -04007564 em_tree = &BTRFS_I(inode)->extent_tree;
7565 em = alloc_extent_map();
7566 if (!em)
7567 return ERR_PTR(-ENOMEM);
7568
7569 em->start = start;
7570 em->orig_start = orig_start;
7571 em->len = len;
7572 em->block_len = block_len;
7573 em->block_start = block_start;
7574 em->bdev = root->fs_info->fs_devices->latest_bdev;
Josef Bacikb4939682012-12-03 10:31:19 -05007575 em->orig_block_len = orig_block_len;
Josef Bacikcc95bef2013-04-04 14:31:27 -04007576 em->ram_bytes = ram_bytes;
Josef Bacik70c8a912012-10-11 16:54:30 -04007577 em->generation = -1;
Josef Bacik69ffb542012-09-11 15:40:07 -04007578 set_bit(EXTENT_FLAG_PINNED, &em->flags);
Liu Bo1af4a0a2017-02-13 15:35:09 -08007579 if (type == BTRFS_ORDERED_PREALLOC) {
Josef Bacikb11e2342012-12-03 10:58:15 -05007580 set_bit(EXTENT_FLAG_FILLING, &em->flags);
Liu Bo1af4a0a2017-02-13 15:35:09 -08007581 } else if (type == BTRFS_ORDERED_COMPRESSED) {
Liu Bo6f9994d2017-01-31 07:50:22 -08007582 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
7583 em->compress_type = compress_type;
7584 }
Josef Bacik69ffb542012-09-11 15:40:07 -04007585
7586 do {
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02007587 btrfs_drop_extent_cache(BTRFS_I(inode), em->start,
Josef Bacik69ffb542012-09-11 15:40:07 -04007588 em->start + em->len - 1, 0);
7589 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04007590 ret = add_extent_mapping(em_tree, em, 1);
Josef Bacik69ffb542012-09-11 15:40:07 -04007591 write_unlock(&em_tree->lock);
Liu Bo6f9994d2017-01-31 07:50:22 -08007592 /*
7593 * The caller has taken lock_extent(), who could race with us
7594 * to add em?
7595 */
Josef Bacik69ffb542012-09-11 15:40:07 -04007596 } while (ret == -EEXIST);
7597
7598 if (ret) {
7599 free_extent_map(em);
7600 return ERR_PTR(ret);
7601 }
7602
Liu Bo6f9994d2017-01-31 07:50:22 -08007603 /* em got 2 refs now, callers needs to do free_extent_map once. */
Josef Bacik69ffb542012-09-11 15:40:07 -04007604 return em;
7605}
7606
Josef Bacik4b46fce2010-05-23 11:00:55 -04007607static int btrfs_get_blocks_direct(struct inode *inode, sector_t iblock,
7608 struct buffer_head *bh_result, int create)
7609{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007610 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik4b46fce2010-05-23 11:00:55 -04007611 struct extent_map *em;
Josef Bacikeb838e72012-07-31 16:28:48 -04007612 struct extent_state *cached_state = NULL;
chandan50745b02015-08-28 21:10:13 +05307613 struct btrfs_dio_data *dio_data = NULL;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007614 u64 start = iblock << inode->i_blkbits;
Josef Bacikeb838e72012-07-31 16:28:48 -04007615 u64 lockstart, lockend;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007616 u64 len = bh_result->b_size;
Josef Bacikeb838e72012-07-31 16:28:48 -04007617 int unlock_bits = EXTENT_LOCKED;
Miao Xie09348562013-02-07 10:12:07 +00007618 int ret = 0;
Josef Bacikeb838e72012-07-31 16:28:48 -04007619
Miao Xie172a5042013-02-21 02:48:22 -07007620 if (create)
Josef Bacik32667892015-02-11 15:08:58 -05007621 unlock_bits |= EXTENT_DIRTY;
Miao Xie172a5042013-02-21 02:48:22 -07007622 else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007623 len = min_t(u64, len, fs_info->sectorsize);
Josef Bacikeb838e72012-07-31 16:28:48 -04007624
Josef Bacikc3298612012-08-03 16:49:19 -04007625 lockstart = start;
7626 lockend = start + len - 1;
7627
Josef Bacike1cbbfa2015-03-17 10:52:28 -04007628 if (current->journal_info) {
7629 /*
7630 * Need to pull our outstanding extents and set journal_info to NULL so
Nicholas D Steeves01327612016-05-19 21:18:45 -04007631 * that anything that needs to check if there's a transaction doesn't get
Josef Bacike1cbbfa2015-03-17 10:52:28 -04007632 * confused.
7633 */
chandan50745b02015-08-28 21:10:13 +05307634 dio_data = current->journal_info;
Josef Bacike1cbbfa2015-03-17 10:52:28 -04007635 current->journal_info = NULL;
7636 }
7637
Josef Bacikeb838e72012-07-31 16:28:48 -04007638 /*
7639 * If this errors out it's because we couldn't invalidate pagecache for
7640 * this range and we need to fallback to buffered.
7641 */
Filipe Manana9c9464c2015-11-04 09:52:04 +00007642 if (lock_extent_direct(inode, lockstart, lockend, &cached_state,
7643 create)) {
7644 ret = -ENOTBLK;
7645 goto err;
7646 }
Josef Bacikeb838e72012-07-31 16:28:48 -04007647
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02007648 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, start, len, 0);
Josef Bacikeb838e72012-07-31 16:28:48 -04007649 if (IS_ERR(em)) {
7650 ret = PTR_ERR(em);
7651 goto unlock_err;
7652 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04007653
7654 /*
7655 * Ok for INLINE and COMPRESSED extents we need to fallback on buffered
7656 * io. INLINE is special, and we could probably kludge it in here, but
7657 * it's still buffered so for safety lets just fall back to the generic
7658 * buffered path.
7659 *
7660 * For COMPRESSED we _have_ to read the entire extent in so we can
7661 * decompress it, so there will be buffering required no matter what we
7662 * do, so go ahead and fallback to buffered.
7663 *
Nicholas D Steeves01327612016-05-19 21:18:45 -04007664 * We return -ENOTBLK because that's what makes DIO go ahead and go back
Josef Bacik4b46fce2010-05-23 11:00:55 -04007665 * to buffered IO. Don't blame me, this is the price we pay for using
7666 * the generic code.
7667 */
7668 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) ||
7669 em->block_start == EXTENT_MAP_INLINE) {
7670 free_extent_map(em);
Josef Bacikeb838e72012-07-31 16:28:48 -04007671 ret = -ENOTBLK;
7672 goto unlock_err;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007673 }
7674
7675 /* Just a good old fashioned hole, return */
7676 if (!create && (em->block_start == EXTENT_MAP_HOLE ||
7677 test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
7678 free_extent_map(em);
Josef Bacikeb838e72012-07-31 16:28:48 -04007679 goto unlock_err;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007680 }
7681
7682 /*
7683 * We don't allocate a new extent in the following cases
7684 *
7685 * 1) The inode is marked as NODATACOW. In this case we'll just use the
7686 * existing extent.
7687 * 2) The extent is marked as PREALLOC. We're good to go here and can
7688 * just use the extent.
7689 *
7690 */
Chris Mason46bfbb52010-05-26 11:04:10 -04007691 if (!create) {
Josef Bacikeb838e72012-07-31 16:28:48 -04007692 len = min(len, em->len - (start - em->start));
7693 lockstart = start + len;
7694 goto unlock;
Chris Mason46bfbb52010-05-26 11:04:10 -04007695 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04007696
7697 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) ||
7698 ((BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) &&
7699 em->block_start != EXTENT_MAP_HOLE)) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04007700 int type;
Josef Bacikeb384b52013-04-24 16:32:55 -04007701 u64 block_start, orig_start, orig_block_len, ram_bytes;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007702
7703 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
7704 type = BTRFS_ORDERED_PREALLOC;
7705 else
7706 type = BTRFS_ORDERED_NOCOW;
Chris Mason46bfbb52010-05-26 11:04:10 -04007707 len = min(len, em->len - (start - em->start));
Josef Bacik4b46fce2010-05-23 11:00:55 -04007708 block_start = em->block_start + (start - em->start);
Chris Mason46bfbb52010-05-26 11:04:10 -04007709
Josef Bacik00361582013-08-14 14:02:47 -04007710 if (can_nocow_extent(inode, start, &len, &orig_start,
Filipe Mananaf78c4362016-05-09 13:15:41 +01007711 &orig_block_len, &ram_bytes) == 1 &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007712 btrfs_inc_nocow_writers(fs_info, block_start)) {
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007713 struct extent_map *em2;
Filipe Manana0b901912016-05-09 13:15:27 +01007714
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007715 em2 = btrfs_create_dio_extent(inode, start, len,
7716 orig_start, block_start,
7717 len, orig_block_len,
7718 ram_bytes, type);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007719 btrfs_dec_nocow_writers(fs_info, block_start);
Josef Bacik69ffb542012-09-11 15:40:07 -04007720 if (type == BTRFS_ORDERED_PREALLOC) {
7721 free_extent_map(em);
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007722 em = em2;
Josef Bacik69ffb542012-09-11 15:40:07 -04007723 }
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007724 if (em2 && IS_ERR(em2)) {
7725 ret = PTR_ERR(em2);
Josef Bacikeb838e72012-07-31 16:28:48 -04007726 goto unlock_err;
Chris Mason46bfbb52010-05-26 11:04:10 -04007727 }
Wang Xiaoguang18513092016-07-25 15:51:40 +08007728 /*
7729 * For inode marked NODATACOW or extent marked PREALLOC,
7730 * use the existing or preallocated extent, so does not
7731 * need to adjust btrfs_space_info's bytes_may_use.
7732 */
7733 btrfs_free_reserved_data_space_noquota(inode,
7734 start, len);
Chris Mason46bfbb52010-05-26 11:04:10 -04007735 goto unlock;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007736 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04007737 }
Josef Bacik00361582013-08-14 14:02:47 -04007738
Chris Mason46bfbb52010-05-26 11:04:10 -04007739 /*
7740 * this will cow the extent, reset the len in case we changed
7741 * it above
7742 */
7743 len = bh_result->b_size;
Josef Bacik70c8a912012-10-11 16:54:30 -04007744 free_extent_map(em);
7745 em = btrfs_new_extent_direct(inode, start, len);
Josef Bacikeb838e72012-07-31 16:28:48 -04007746 if (IS_ERR(em)) {
7747 ret = PTR_ERR(em);
7748 goto unlock_err;
7749 }
Chris Mason46bfbb52010-05-26 11:04:10 -04007750 len = min(len, em->len - (start - em->start));
7751unlock:
Josef Bacik4b46fce2010-05-23 11:00:55 -04007752 bh_result->b_blocknr = (em->block_start + (start - em->start)) >>
7753 inode->i_blkbits;
Chris Mason46bfbb52010-05-26 11:04:10 -04007754 bh_result->b_size = len;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007755 bh_result->b_bdev = em->bdev;
7756 set_buffer_mapped(bh_result);
Josef Bacikc3473e82012-06-19 10:59:00 -04007757 if (create) {
7758 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
7759 set_buffer_new(bh_result);
7760
7761 /*
7762 * Need to update the i_size under the extent lock so buffered
7763 * readers will get the updated i_size when we unlock.
7764 */
Liu Bo4aaedfb2016-12-14 22:36:05 -08007765 if (!dio_data->overwrite && start + len > i_size_read(inode))
Josef Bacikc3473e82012-06-19 10:59:00 -04007766 i_size_write(inode, start + len);
Miao Xie09348562013-02-07 10:12:07 +00007767
chandan50745b02015-08-28 21:10:13 +05307768 WARN_ON(dio_data->reserve < len);
7769 dio_data->reserve -= len;
Filipe Mananaf28a4922015-12-08 19:23:20 +00007770 dio_data->unsubmitted_oe_range_end = start + len;
chandan50745b02015-08-28 21:10:13 +05307771 current->journal_info = dio_data;
Josef Bacikc3473e82012-06-19 10:59:00 -04007772 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04007773
Josef Bacikeb838e72012-07-31 16:28:48 -04007774 /*
7775 * In the case of write we need to clear and unlock the entire range,
7776 * in the case of read we need to unlock only the end area that we
7777 * aren't using if there is any left over space.
7778 */
Liu Bo24c03fa2012-08-22 20:10:38 -06007779 if (lockstart < lockend) {
Miao Xie09348562013-02-07 10:12:07 +00007780 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
7781 lockend, unlock_bits, 1, 0,
David Sterbaae0f1622017-10-31 16:37:52 +01007782 &cached_state);
Liu Bo24c03fa2012-08-22 20:10:38 -06007783 } else {
Josef Bacikeb838e72012-07-31 16:28:48 -04007784 free_extent_state(cached_state);
Liu Bo24c03fa2012-08-22 20:10:38 -06007785 }
Josef Bacikeb838e72012-07-31 16:28:48 -04007786
Josef Bacik4b46fce2010-05-23 11:00:55 -04007787 free_extent_map(em);
7788
7789 return 0;
Josef Bacikeb838e72012-07-31 16:28:48 -04007790
7791unlock_err:
Josef Bacikeb838e72012-07-31 16:28:48 -04007792 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart, lockend,
David Sterbaae0f1622017-10-31 16:37:52 +01007793 unlock_bits, 1, 0, &cached_state);
Filipe Manana9c9464c2015-11-04 09:52:04 +00007794err:
chandan50745b02015-08-28 21:10:13 +05307795 if (dio_data)
7796 current->journal_info = dio_data;
Josef Bacikeb838e72012-07-31 16:28:48 -04007797 return ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007798}
7799
Omar Sandoval58efbc92017-08-22 23:45:59 -07007800static inline blk_status_t submit_dio_repair_bio(struct inode *inode,
7801 struct bio *bio,
7802 int mirror_num)
Miao Xie8b110e32014-09-12 18:44:03 +08007803{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007804 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Omar Sandoval58efbc92017-08-22 23:45:59 -07007805 blk_status_t ret;
Miao Xie8b110e32014-09-12 18:44:03 +08007806
Mike Christie37226b22016-06-05 14:31:52 -05007807 BUG_ON(bio_op(bio) == REQ_OP_WRITE);
Miao Xie8b110e32014-09-12 18:44:03 +08007808
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007809 ret = btrfs_bio_wq_end_io(fs_info, bio, BTRFS_WQ_ENDIO_DIO_REPAIR);
Miao Xie8b110e32014-09-12 18:44:03 +08007810 if (ret)
Nikolay Borisovea057f62017-12-13 10:25:38 +02007811 return ret;
Miao Xie8b110e32014-09-12 18:44:03 +08007812
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007813 ret = btrfs_map_bio(fs_info, bio, mirror_num, 0);
Nikolay Borisovea057f62017-12-13 10:25:38 +02007814
Miao Xie8b110e32014-09-12 18:44:03 +08007815 return ret;
7816}
7817
7818static int btrfs_check_dio_repairable(struct inode *inode,
7819 struct bio *failed_bio,
7820 struct io_failure_record *failrec,
7821 int failed_mirror)
7822{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007823 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie8b110e32014-09-12 18:44:03 +08007824 int num_copies;
7825
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007826 num_copies = btrfs_num_copies(fs_info, failrec->logical, failrec->len);
Miao Xie8b110e32014-09-12 18:44:03 +08007827 if (num_copies == 1) {
7828 /*
7829 * we only have a single copy of the data, so don't bother with
7830 * all the retry and error correction code that follows. no
7831 * matter what the error is, it is very likely to persist.
7832 */
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007833 btrfs_debug(fs_info,
7834 "Check DIO Repairable: cannot repair, num_copies=%d, next_mirror %d, failed_mirror %d",
7835 num_copies, failrec->this_mirror, failed_mirror);
Miao Xie8b110e32014-09-12 18:44:03 +08007836 return 0;
7837 }
7838
7839 failrec->failed_mirror = failed_mirror;
7840 failrec->this_mirror++;
7841 if (failrec->this_mirror == failed_mirror)
7842 failrec->this_mirror++;
7843
7844 if (failrec->this_mirror > num_copies) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007845 btrfs_debug(fs_info,
7846 "Check DIO Repairable: (fail) num_copies=%d, next_mirror %d, failed_mirror %d",
7847 num_copies, failrec->this_mirror, failed_mirror);
Miao Xie8b110e32014-09-12 18:44:03 +08007848 return 0;
7849 }
7850
7851 return 1;
7852}
7853
Omar Sandoval58efbc92017-08-22 23:45:59 -07007854static blk_status_t dio_read_error(struct inode *inode, struct bio *failed_bio,
7855 struct page *page, unsigned int pgoff,
7856 u64 start, u64 end, int failed_mirror,
7857 bio_end_io_t *repair_endio, void *repair_arg)
Miao Xie8b110e32014-09-12 18:44:03 +08007858{
7859 struct io_failure_record *failrec;
Josef Bacik7870d082017-05-05 11:57:15 -04007860 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
7861 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
Miao Xie8b110e32014-09-12 18:44:03 +08007862 struct bio *bio;
7863 int isector;
David Sterbaf1c77c52017-06-06 19:03:49 +02007864 unsigned int read_mode = 0;
Liu Bo17347ce2017-05-15 15:33:27 -07007865 int segs;
Miao Xie8b110e32014-09-12 18:44:03 +08007866 int ret;
Omar Sandoval58efbc92017-08-22 23:45:59 -07007867 blk_status_t status;
Ming Leic16a8ac2017-12-18 20:22:12 +08007868 struct bio_vec bvec;
Miao Xie8b110e32014-09-12 18:44:03 +08007869
Mike Christie37226b22016-06-05 14:31:52 -05007870 BUG_ON(bio_op(failed_bio) == REQ_OP_WRITE);
Miao Xie8b110e32014-09-12 18:44:03 +08007871
7872 ret = btrfs_get_io_failure_record(inode, start, end, &failrec);
7873 if (ret)
Omar Sandoval58efbc92017-08-22 23:45:59 -07007874 return errno_to_blk_status(ret);
Miao Xie8b110e32014-09-12 18:44:03 +08007875
7876 ret = btrfs_check_dio_repairable(inode, failed_bio, failrec,
7877 failed_mirror);
7878 if (!ret) {
Josef Bacik7870d082017-05-05 11:57:15 -04007879 free_io_failure(failure_tree, io_tree, failrec);
Omar Sandoval58efbc92017-08-22 23:45:59 -07007880 return BLK_STS_IOERR;
Miao Xie8b110e32014-09-12 18:44:03 +08007881 }
7882
Liu Bo17347ce2017-05-15 15:33:27 -07007883 segs = bio_segments(failed_bio);
Ming Leic16a8ac2017-12-18 20:22:12 +08007884 bio_get_first_bvec(failed_bio, &bvec);
Liu Bo17347ce2017-05-15 15:33:27 -07007885 if (segs > 1 ||
Ming Leic16a8ac2017-12-18 20:22:12 +08007886 (bvec.bv_len > btrfs_inode_sectorsize(inode)))
Christoph Hellwig70fd7612016-11-01 07:40:10 -06007887 read_mode |= REQ_FAILFAST_DEV;
Miao Xie8b110e32014-09-12 18:44:03 +08007888
7889 isector = start - btrfs_io_bio(failed_bio)->logical;
7890 isector >>= inode->i_sb->s_blocksize_bits;
7891 bio = btrfs_create_repair_bio(inode, failed_bio, failrec, page,
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307892 pgoff, isector, repair_endio, repair_arg);
Mike Christie37226b22016-06-05 14:31:52 -05007893 bio_set_op_attrs(bio, REQ_OP_READ, read_mode);
Miao Xie8b110e32014-09-12 18:44:03 +08007894
7895 btrfs_debug(BTRFS_I(inode)->root->fs_info,
David Sterba913e1532017-07-13 15:32:18 +02007896 "repair DIO read error: submitting new dio read[%#x] to this_mirror=%d, in_validation=%d",
Miao Xie8b110e32014-09-12 18:44:03 +08007897 read_mode, failrec->this_mirror, failrec->in_validation);
7898
Omar Sandoval58efbc92017-08-22 23:45:59 -07007899 status = submit_dio_repair_bio(inode, bio, failrec->this_mirror);
7900 if (status) {
Josef Bacik7870d082017-05-05 11:57:15 -04007901 free_io_failure(failure_tree, io_tree, failrec);
Miao Xie8b110e32014-09-12 18:44:03 +08007902 bio_put(bio);
7903 }
7904
Omar Sandoval58efbc92017-08-22 23:45:59 -07007905 return status;
Miao Xie8b110e32014-09-12 18:44:03 +08007906}
7907
7908struct btrfs_retry_complete {
7909 struct completion done;
7910 struct inode *inode;
7911 u64 start;
7912 int uptodate;
7913};
7914
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02007915static void btrfs_retry_endio_nocsum(struct bio *bio)
Miao Xie8b110e32014-09-12 18:44:03 +08007916{
7917 struct btrfs_retry_complete *done = bio->bi_private;
Josef Bacik7870d082017-05-05 11:57:15 -04007918 struct inode *inode = done->inode;
Miao Xie8b110e32014-09-12 18:44:03 +08007919 struct bio_vec *bvec;
Josef Bacik7870d082017-05-05 11:57:15 -04007920 struct extent_io_tree *io_tree, *failure_tree;
Miao Xie8b110e32014-09-12 18:44:03 +08007921 int i;
7922
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02007923 if (bio->bi_status)
Miao Xie8b110e32014-09-12 18:44:03 +08007924 goto end;
7925
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307926 ASSERT(bio->bi_vcnt == 1);
Josef Bacik7870d082017-05-05 11:57:15 -04007927 io_tree = &BTRFS_I(inode)->io_tree;
7928 failure_tree = &BTRFS_I(inode)->io_failure_tree;
Ming Lei263663c2017-12-18 20:22:04 +08007929 ASSERT(bio_first_bvec_all(bio)->bv_len == btrfs_inode_sectorsize(inode));
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307930
Miao Xie8b110e32014-09-12 18:44:03 +08007931 done->uptodate = 1;
David Sterbac09abff2017-07-13 18:10:07 +02007932 ASSERT(!bio_flagged(bio, BIO_CLONED));
Miao Xie8b110e32014-09-12 18:44:03 +08007933 bio_for_each_segment_all(bvec, bio, i)
Josef Bacik7870d082017-05-05 11:57:15 -04007934 clean_io_failure(BTRFS_I(inode)->root->fs_info, failure_tree,
7935 io_tree, done->start, bvec->bv_page,
7936 btrfs_ino(BTRFS_I(inode)), 0);
Miao Xie8b110e32014-09-12 18:44:03 +08007937end:
7938 complete(&done->done);
7939 bio_put(bio);
7940}
7941
Omar Sandoval58efbc92017-08-22 23:45:59 -07007942static blk_status_t __btrfs_correct_data_nocsum(struct inode *inode,
7943 struct btrfs_io_bio *io_bio)
Josef Bacik4b46fce2010-05-23 11:00:55 -04007944{
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307945 struct btrfs_fs_info *fs_info;
Liu Bo17347ce2017-05-15 15:33:27 -07007946 struct bio_vec bvec;
7947 struct bvec_iter iter;
Miao Xie8b110e32014-09-12 18:44:03 +08007948 struct btrfs_retry_complete done;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007949 u64 start;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307950 unsigned int pgoff;
7951 u32 sectorsize;
7952 int nr_sectors;
Omar Sandoval58efbc92017-08-22 23:45:59 -07007953 blk_status_t ret;
7954 blk_status_t err = BLK_STS_OK;
Miao Xiedc380ae2014-09-12 18:43:55 +08007955
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307956 fs_info = BTRFS_I(inode)->root->fs_info;
Jeff Mahoneyda170662016-06-15 09:22:56 -04007957 sectorsize = fs_info->sectorsize;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307958
Miao Xiec1dc0892014-09-12 18:43:56 +08007959 start = io_bio->logical;
Miao Xie8b110e32014-09-12 18:44:03 +08007960 done.inode = inode;
Liu Bo17347ce2017-05-15 15:33:27 -07007961 io_bio->bio.bi_iter = io_bio->iter;
Miao Xie8b110e32014-09-12 18:44:03 +08007962
Liu Bo17347ce2017-05-15 15:33:27 -07007963 bio_for_each_segment(bvec, &io_bio->bio, iter) {
7964 nr_sectors = BTRFS_BYTES_TO_BLKS(fs_info, bvec.bv_len);
7965 pgoff = bvec.bv_offset;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307966
7967next_block_or_try_again:
Miao Xie8b110e32014-09-12 18:44:03 +08007968 done.uptodate = 0;
7969 done.start = start;
7970 init_completion(&done.done);
7971
Liu Bo17347ce2017-05-15 15:33:27 -07007972 ret = dio_read_error(inode, &io_bio->bio, bvec.bv_page,
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307973 pgoff, start, start + sectorsize - 1,
7974 io_bio->mirror_num,
7975 btrfs_retry_endio_nocsum, &done);
Liu Bo629ebf42017-05-15 17:20:07 -07007976 if (ret) {
7977 err = ret;
7978 goto next;
7979 }
Miao Xie8b110e32014-09-12 18:44:03 +08007980
David Sterba9c17f6c2017-07-19 19:26:45 +02007981 wait_for_completion_io(&done.done);
Miao Xie8b110e32014-09-12 18:44:03 +08007982
7983 if (!done.uptodate) {
7984 /* We might have another mirror, so try again */
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307985 goto next_block_or_try_again;
Miao Xie8b110e32014-09-12 18:44:03 +08007986 }
7987
Liu Bo629ebf42017-05-15 17:20:07 -07007988next:
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307989 start += sectorsize;
7990
Liu Bo97bf5a52017-04-07 13:11:10 -07007991 nr_sectors--;
7992 if (nr_sectors) {
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307993 pgoff += sectorsize;
Liu Bo97bf5a52017-04-07 13:11:10 -07007994 ASSERT(pgoff < PAGE_SIZE);
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307995 goto next_block_or_try_again;
7996 }
Miao Xie8b110e32014-09-12 18:44:03 +08007997 }
7998
Liu Bo629ebf42017-05-15 17:20:07 -07007999 return err;
Miao Xie8b110e32014-09-12 18:44:03 +08008000}
8001
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008002static void btrfs_retry_endio(struct bio *bio)
Miao Xie8b110e32014-09-12 18:44:03 +08008003{
8004 struct btrfs_retry_complete *done = bio->bi_private;
8005 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
Josef Bacik7870d082017-05-05 11:57:15 -04008006 struct extent_io_tree *io_tree, *failure_tree;
8007 struct inode *inode = done->inode;
Miao Xie8b110e32014-09-12 18:44:03 +08008008 struct bio_vec *bvec;
8009 int uptodate;
8010 int ret;
8011 int i;
8012
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008013 if (bio->bi_status)
Miao Xie8b110e32014-09-12 18:44:03 +08008014 goto end;
8015
8016 uptodate = 1;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308017
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308018 ASSERT(bio->bi_vcnt == 1);
Ming Lei263663c2017-12-18 20:22:04 +08008019 ASSERT(bio_first_bvec_all(bio)->bv_len == btrfs_inode_sectorsize(done->inode));
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308020
Josef Bacik7870d082017-05-05 11:57:15 -04008021 io_tree = &BTRFS_I(inode)->io_tree;
8022 failure_tree = &BTRFS_I(inode)->io_failure_tree;
8023
David Sterbac09abff2017-07-13 18:10:07 +02008024 ASSERT(!bio_flagged(bio, BIO_CLONED));
Miao Xie8b110e32014-09-12 18:44:03 +08008025 bio_for_each_segment_all(bvec, bio, i) {
Josef Bacik7870d082017-05-05 11:57:15 -04008026 ret = __readpage_endio_check(inode, io_bio, i, bvec->bv_page,
8027 bvec->bv_offset, done->start,
8028 bvec->bv_len);
Miao Xie8b110e32014-09-12 18:44:03 +08008029 if (!ret)
Josef Bacik7870d082017-05-05 11:57:15 -04008030 clean_io_failure(BTRFS_I(inode)->root->fs_info,
8031 failure_tree, io_tree, done->start,
8032 bvec->bv_page,
8033 btrfs_ino(BTRFS_I(inode)),
8034 bvec->bv_offset);
Miao Xie8b110e32014-09-12 18:44:03 +08008035 else
8036 uptodate = 0;
8037 }
8038
8039 done->uptodate = uptodate;
8040end:
8041 complete(&done->done);
8042 bio_put(bio);
8043}
8044
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008045static blk_status_t __btrfs_subio_endio_read(struct inode *inode,
8046 struct btrfs_io_bio *io_bio, blk_status_t err)
Miao Xie8b110e32014-09-12 18:44:03 +08008047{
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308048 struct btrfs_fs_info *fs_info;
Liu Bo17347ce2017-05-15 15:33:27 -07008049 struct bio_vec bvec;
8050 struct bvec_iter iter;
Miao Xie8b110e32014-09-12 18:44:03 +08008051 struct btrfs_retry_complete done;
8052 u64 start;
8053 u64 offset = 0;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308054 u32 sectorsize;
8055 int nr_sectors;
8056 unsigned int pgoff;
8057 int csum_pos;
Liu Boef7cdac12017-04-13 18:11:48 -07008058 bool uptodate = (err == 0);
Miao Xie8b110e32014-09-12 18:44:03 +08008059 int ret;
Omar Sandoval58efbc92017-08-22 23:45:59 -07008060 blk_status_t status;
Miao Xie8b110e32014-09-12 18:44:03 +08008061
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308062 fs_info = BTRFS_I(inode)->root->fs_info;
Jeff Mahoneyda170662016-06-15 09:22:56 -04008063 sectorsize = fs_info->sectorsize;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308064
Omar Sandoval58efbc92017-08-22 23:45:59 -07008065 err = BLK_STS_OK;
Miao Xie8b110e32014-09-12 18:44:03 +08008066 start = io_bio->logical;
8067 done.inode = inode;
Liu Bo17347ce2017-05-15 15:33:27 -07008068 io_bio->bio.bi_iter = io_bio->iter;
Miao Xie8b110e32014-09-12 18:44:03 +08008069
Liu Bo17347ce2017-05-15 15:33:27 -07008070 bio_for_each_segment(bvec, &io_bio->bio, iter) {
8071 nr_sectors = BTRFS_BYTES_TO_BLKS(fs_info, bvec.bv_len);
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308072
Liu Bo17347ce2017-05-15 15:33:27 -07008073 pgoff = bvec.bv_offset;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308074next_block:
Liu Boef7cdac12017-04-13 18:11:48 -07008075 if (uptodate) {
8076 csum_pos = BTRFS_BYTES_TO_BLKS(fs_info, offset);
8077 ret = __readpage_endio_check(inode, io_bio, csum_pos,
8078 bvec.bv_page, pgoff, start, sectorsize);
8079 if (likely(!ret))
8080 goto next;
8081 }
Miao Xie8b110e32014-09-12 18:44:03 +08008082try_again:
8083 done.uptodate = 0;
8084 done.start = start;
8085 init_completion(&done.done);
8086
Omar Sandoval58efbc92017-08-22 23:45:59 -07008087 status = dio_read_error(inode, &io_bio->bio, bvec.bv_page,
8088 pgoff, start, start + sectorsize - 1,
8089 io_bio->mirror_num, btrfs_retry_endio,
8090 &done);
8091 if (status) {
8092 err = status;
Miao Xie8b110e32014-09-12 18:44:03 +08008093 goto next;
8094 }
8095
David Sterba9c17f6c2017-07-19 19:26:45 +02008096 wait_for_completion_io(&done.done);
Miao Xie8b110e32014-09-12 18:44:03 +08008097
8098 if (!done.uptodate) {
8099 /* We might have another mirror, so try again */
8100 goto try_again;
8101 }
8102next:
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308103 offset += sectorsize;
8104 start += sectorsize;
8105
8106 ASSERT(nr_sectors);
8107
Liu Bo97bf5a52017-04-07 13:11:10 -07008108 nr_sectors--;
8109 if (nr_sectors) {
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308110 pgoff += sectorsize;
Liu Bo97bf5a52017-04-07 13:11:10 -07008111 ASSERT(pgoff < PAGE_SIZE);
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308112 goto next_block;
8113 }
Kent Overstreet2c30c712013-11-07 12:20:26 -08008114 }
Miao Xiec1dc0892014-09-12 18:43:56 +08008115
8116 return err;
8117}
8118
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008119static blk_status_t btrfs_subio_endio_read(struct inode *inode,
8120 struct btrfs_io_bio *io_bio, blk_status_t err)
Miao Xie8b110e32014-09-12 18:44:03 +08008121{
8122 bool skip_csum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
8123
8124 if (skip_csum) {
8125 if (unlikely(err))
8126 return __btrfs_correct_data_nocsum(inode, io_bio);
8127 else
Omar Sandoval58efbc92017-08-22 23:45:59 -07008128 return BLK_STS_OK;
Miao Xie8b110e32014-09-12 18:44:03 +08008129 } else {
8130 return __btrfs_subio_endio_read(inode, io_bio, err);
8131 }
8132}
8133
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008134static void btrfs_endio_direct_read(struct bio *bio)
Miao Xiec1dc0892014-09-12 18:43:56 +08008135{
8136 struct btrfs_dio_private *dip = bio->bi_private;
8137 struct inode *inode = dip->inode;
8138 struct bio *dio_bio;
8139 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008140 blk_status_t err = bio->bi_status;
Miao Xiec1dc0892014-09-12 18:43:56 +08008141
Liu Bo99c4e3b92017-09-15 15:06:51 -06008142 if (dip->flags & BTRFS_DIO_ORIG_BIO_SUBMITTED)
Miao Xie8b110e32014-09-12 18:44:03 +08008143 err = btrfs_subio_endio_read(inode, io_bio, err);
Miao Xiec1dc0892014-09-12 18:43:56 +08008144
Josef Bacik4b46fce2010-05-23 11:00:55 -04008145 unlock_extent(&BTRFS_I(inode)->io_tree, dip->logical_offset,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01008146 dip->logical_offset + dip->bytes - 1);
Chris Mason9be33952013-05-17 18:30:14 -04008147 dio_bio = dip->dio_bio;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008148
Josef Bacik4b46fce2010-05-23 11:00:55 -04008149 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04008150
Liu Bo99c4e3b92017-09-15 15:06:51 -06008151 dio_bio->bi_status = err;
Christoph Hellwig40553512017-06-03 09:37:58 +02008152 dio_end_io(dio_bio);
Miao Xie23ea8e52014-09-12 18:43:54 +08008153
8154 if (io_bio->end_io)
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008155 io_bio->end_io(io_bio, blk_status_to_errno(err));
Chris Mason9be33952013-05-17 18:30:14 -04008156 bio_put(bio);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008157}
8158
Qu Wenruo524272602017-03-08 10:25:52 +08008159static void __endio_write_update_ordered(struct inode *inode,
8160 const u64 offset, const u64 bytes,
8161 const bool uptodate)
Josef Bacik4b46fce2010-05-23 11:00:55 -04008162{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008163 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008164 struct btrfs_ordered_extent *ordered = NULL;
Qu Wenruo524272602017-03-08 10:25:52 +08008165 struct btrfs_workqueue *wq;
8166 btrfs_work_func_t func;
Filipe Manana14543772015-11-24 16:23:54 +00008167 u64 ordered_offset = offset;
8168 u64 ordered_bytes = bytes;
Naohiro Aota67c003f2017-09-01 17:59:07 +09008169 u64 last_offset;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008170 int ret;
8171
Qu Wenruo524272602017-03-08 10:25:52 +08008172 if (btrfs_is_free_space_inode(BTRFS_I(inode))) {
8173 wq = fs_info->endio_freespace_worker;
8174 func = btrfs_freespace_write_helper;
8175 } else {
8176 wq = fs_info->endio_write_workers;
8177 func = btrfs_endio_write_helper;
8178 }
8179
Chris Mason163cf092010-11-28 19:56:33 -05008180again:
Naohiro Aota67c003f2017-09-01 17:59:07 +09008181 last_offset = ordered_offset;
Chris Mason163cf092010-11-28 19:56:33 -05008182 ret = btrfs_dec_test_first_ordered_pending(inode, &ordered,
8183 &ordered_offset,
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008184 ordered_bytes,
Filipe Manana14543772015-11-24 16:23:54 +00008185 uptodate);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008186 if (!ret)
Chris Mason163cf092010-11-28 19:56:33 -05008187 goto out_test;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008188
Qu Wenruo524272602017-03-08 10:25:52 +08008189 btrfs_init_work(&ordered->work, func, finish_ordered_fn, NULL, NULL);
8190 btrfs_queue_work(wq, &ordered->work);
Chris Mason163cf092010-11-28 19:56:33 -05008191out_test:
8192 /*
Naohiro Aota67c003f2017-09-01 17:59:07 +09008193 * If btrfs_dec_test_ordered_pending does not find any ordered extent
8194 * in the range, we can exit.
8195 */
8196 if (ordered_offset == last_offset)
8197 return;
8198 /*
Chris Mason163cf092010-11-28 19:56:33 -05008199 * our bio might span multiple ordered extents. If we haven't
8200 * completed the accounting for the whole dio, go back and try again
8201 */
Filipe Manana14543772015-11-24 16:23:54 +00008202 if (ordered_offset < offset + bytes) {
8203 ordered_bytes = offset + bytes - ordered_offset;
Josef Bacik5fd02042012-05-02 14:00:54 -04008204 ordered = NULL;
Chris Mason163cf092010-11-28 19:56:33 -05008205 goto again;
8206 }
Filipe Manana14543772015-11-24 16:23:54 +00008207}
8208
8209static void btrfs_endio_direct_write(struct bio *bio)
8210{
8211 struct btrfs_dio_private *dip = bio->bi_private;
8212 struct bio *dio_bio = dip->dio_bio;
8213
Qu Wenruo524272602017-03-08 10:25:52 +08008214 __endio_write_update_ordered(dip->inode, dip->logical_offset,
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008215 dip->bytes, !bio->bi_status);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008216
Josef Bacik4b46fce2010-05-23 11:00:55 -04008217 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04008218
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008219 dio_bio->bi_status = bio->bi_status;
Christoph Hellwig40553512017-06-03 09:37:58 +02008220 dio_end_io(dio_bio);
Chris Mason9be33952013-05-17 18:30:14 -04008221 bio_put(bio);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008222}
8223
Linus Torvalds8c27cb32017-07-05 16:41:23 -07008224static blk_status_t __btrfs_submit_bio_start_direct_io(void *private_data,
Chris Masoneaf25d92010-05-25 09:48:28 -04008225 struct bio *bio, int mirror_num,
8226 unsigned long bio_flags, u64 offset)
8227{
Josef Bacikc6100a42017-05-05 11:57:13 -04008228 struct inode *inode = private_data;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008229 blk_status_t ret;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008230 ret = btrfs_csum_one_bio(inode, bio, offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008231 BUG_ON(ret); /* -ENOMEM */
Chris Masoneaf25d92010-05-25 09:48:28 -04008232 return 0;
8233}
8234
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008235static void btrfs_end_dio_bio(struct bio *bio)
Miao Xiee65e1532010-11-22 03:04:43 +00008236{
8237 struct btrfs_dio_private *dip = bio->bi_private;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008238 blk_status_t err = bio->bi_status;
Miao Xiee65e1532010-11-22 03:04:43 +00008239
Miao Xie8b110e32014-09-12 18:44:03 +08008240 if (err)
8241 btrfs_warn(BTRFS_I(dip->inode)->root->fs_info,
Mike Christie6296b962016-06-05 14:32:21 -05008242 "direct IO failed ino %llu rw %d,%u sector %#Lx len %u err no %d",
David Sterbaf85b7372017-01-20 14:54:07 +01008243 btrfs_ino(BTRFS_I(dip->inode)), bio_op(bio),
8244 bio->bi_opf,
Miao Xie8b110e32014-09-12 18:44:03 +08008245 (unsigned long long)bio->bi_iter.bi_sector,
8246 bio->bi_iter.bi_size, err);
8247
8248 if (dip->subio_endio)
8249 err = dip->subio_endio(dip->inode, btrfs_io_bio(bio), err);
Miao Xiec1dc0892014-09-12 18:43:56 +08008250
8251 if (err) {
Miao Xiee65e1532010-11-22 03:04:43 +00008252 /*
Nikolay Borisovde224b72018-02-14 10:53:36 +02008253 * We want to perceive the errors flag being set before
8254 * decrementing the reference count. We don't need a barrier
8255 * since atomic operations with a return value are fully
8256 * ordered as per atomic_t.txt
Miao Xiee65e1532010-11-22 03:04:43 +00008257 */
Nikolay Borisovde224b72018-02-14 10:53:36 +02008258 dip->errors = 1;
Miao Xiee65e1532010-11-22 03:04:43 +00008259 }
8260
8261 /* if there are more bios still pending for this dio, just exit */
8262 if (!atomic_dec_and_test(&dip->pending_bios))
8263 goto out;
8264
Chris Mason9be33952013-05-17 18:30:14 -04008265 if (dip->errors) {
Miao Xiee65e1532010-11-22 03:04:43 +00008266 bio_io_error(dip->orig_bio);
Chris Mason9be33952013-05-17 18:30:14 -04008267 } else {
Anand Jain2dbe0c72017-10-14 08:35:56 +08008268 dip->dio_bio->bi_status = BLK_STS_OK;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008269 bio_endio(dip->orig_bio);
Miao Xiee65e1532010-11-22 03:04:43 +00008270 }
8271out:
8272 bio_put(bio);
8273}
8274
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008275static inline blk_status_t btrfs_lookup_and_bind_dio_csum(struct inode *inode,
Miao Xiec1dc0892014-09-12 18:43:56 +08008276 struct btrfs_dio_private *dip,
8277 struct bio *bio,
8278 u64 file_offset)
8279{
8280 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
8281 struct btrfs_io_bio *orig_io_bio = btrfs_io_bio(dip->orig_bio);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008282 blk_status_t ret;
Miao Xiec1dc0892014-09-12 18:43:56 +08008283
8284 /*
8285 * We load all the csum data we need when we submit
8286 * the first bio to reduce the csum tree search and
8287 * contention.
8288 */
8289 if (dip->logical_offset == file_offset) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008290 ret = btrfs_lookup_bio_sums_dio(inode, dip->orig_bio,
Miao Xiec1dc0892014-09-12 18:43:56 +08008291 file_offset);
8292 if (ret)
8293 return ret;
8294 }
8295
8296 if (bio == dip->orig_bio)
8297 return 0;
8298
8299 file_offset -= dip->logical_offset;
8300 file_offset >>= inode->i_sb->s_blocksize_bits;
8301 io_bio->csum = (u8 *)(((u32 *)orig_io_bio->csum) + file_offset);
8302
8303 return 0;
8304}
8305
Omar Sandoval58efbc92017-08-22 23:45:59 -07008306static inline blk_status_t
8307__btrfs_submit_dio_bio(struct bio *bio, struct inode *inode, u64 file_offset,
Linus Torvalds66ba7722017-09-09 13:27:51 -07008308 int async_submit)
Miao Xiee65e1532010-11-22 03:04:43 +00008309{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008310 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xiefacc8a222013-07-25 19:22:34 +08008311 struct btrfs_dio_private *dip = bio->bi_private;
Mike Christie37226b22016-06-05 14:31:52 -05008312 bool write = bio_op(bio) == REQ_OP_WRITE;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008313 blk_status_t ret;
Miao Xiee65e1532010-11-22 03:04:43 +00008314
Liu Bo4c274bc2017-11-01 17:19:27 -06008315 /* Check btrfs_submit_bio_hook() for rules about async submit. */
Josef Bacikb812ce22012-11-16 13:56:32 -05008316 if (async_submit)
8317 async_submit = !atomic_read(&BTRFS_I(inode)->sync_writers);
8318
Josef Bacik5fd02042012-05-02 14:00:54 -04008319 if (!write) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008320 ret = btrfs_bio_wq_end_io(fs_info, bio, BTRFS_WQ_ENDIO_DATA);
Josef Bacik5fd02042012-05-02 14:00:54 -04008321 if (ret)
8322 goto err;
8323 }
Miao Xiee65e1532010-11-22 03:04:43 +00008324
Nikolay Borisove6961ca2017-08-03 15:44:58 +03008325 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)
Josef Bacik1ae39932011-04-06 14:41:34 -04008326 goto map;
8327
8328 if (write && async_submit) {
Josef Bacikc6100a42017-05-05 11:57:13 -04008329 ret = btrfs_wq_submit_bio(fs_info, bio, 0, 0,
8330 file_offset, inode,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008331 __btrfs_submit_bio_start_direct_io,
8332 __btrfs_submit_bio_done);
Miao Xiee65e1532010-11-22 03:04:43 +00008333 goto err;
Josef Bacik1ae39932011-04-06 14:41:34 -04008334 } else if (write) {
8335 /*
8336 * If we aren't doing async submit, calculate the csum of the
8337 * bio now.
8338 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008339 ret = btrfs_csum_one_bio(inode, bio, file_offset, 1);
Josef Bacik1ae39932011-04-06 14:41:34 -04008340 if (ret)
8341 goto err;
Miao Xie23ea8e52014-09-12 18:43:54 +08008342 } else {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008343 ret = btrfs_lookup_and_bind_dio_csum(inode, dip, bio,
Miao Xiec1dc0892014-09-12 18:43:56 +08008344 file_offset);
Tsutomu Itohc2db1072011-03-01 06:48:31 +00008345 if (ret)
8346 goto err;
8347 }
Josef Bacik1ae39932011-04-06 14:41:34 -04008348map:
Liu Bo9b4a9b22017-08-18 11:54:02 -06008349 ret = btrfs_map_bio(fs_info, bio, 0, 0);
Miao Xiee65e1532010-11-22 03:04:43 +00008350err:
Miao Xiee65e1532010-11-22 03:04:43 +00008351 return ret;
8352}
8353
Nikolay Borisove6961ca2017-08-03 15:44:58 +03008354static int btrfs_submit_direct_hook(struct btrfs_dio_private *dip)
Miao Xiee65e1532010-11-22 03:04:43 +00008355{
8356 struct inode *inode = dip->inode;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008357 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xiee65e1532010-11-22 03:04:43 +00008358 struct bio *bio;
8359 struct bio *orig_bio = dip->orig_bio;
Kent Overstreet4f024f32013-10-11 15:44:27 -07008360 u64 start_sector = orig_bio->bi_iter.bi_sector;
Miao Xiee65e1532010-11-22 03:04:43 +00008361 u64 file_offset = dip->logical_offset;
Miao Xiee65e1532010-11-22 03:04:43 +00008362 u64 map_length;
Josef Bacik1ae39932011-04-06 14:41:34 -04008363 int async_submit = 0;
Liu Bo725130b2017-05-16 09:51:39 -07008364 u64 submit_len;
8365 int clone_offset = 0;
8366 int clone_len;
Chandan Rajendra5f4dc8f2016-01-21 15:56:00 +05308367 int ret;
Omar Sandoval58efbc92017-08-22 23:45:59 -07008368 blk_status_t status;
Miao Xiee65e1532010-11-22 03:04:43 +00008369
Kent Overstreet4f024f32013-10-11 15:44:27 -07008370 map_length = orig_bio->bi_iter.bi_size;
Liu Bo725130b2017-05-16 09:51:39 -07008371 submit_len = map_length;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008372 ret = btrfs_map_block(fs_info, btrfs_op(orig_bio), start_sector << 9,
8373 &map_length, NULL, 0);
Miao Xie7a5c3c92014-06-17 18:58:59 +08008374 if (ret)
Miao Xiee65e1532010-11-22 03:04:43 +00008375 return -EIO;
Miao Xiefacc8a222013-07-25 19:22:34 +08008376
Liu Bo725130b2017-05-16 09:51:39 -07008377 if (map_length >= submit_len) {
Josef Bacik02f57c72011-04-06 14:25:44 -04008378 bio = orig_bio;
Miao Xiec1dc0892014-09-12 18:43:56 +08008379 dip->flags |= BTRFS_DIO_ORIG_BIO_SUBMITTED;
Josef Bacik02f57c72011-04-06 14:25:44 -04008380 goto submit;
8381 }
8382
David Woodhouse53b381b2013-01-29 18:40:14 -05008383 /* async crcs make it difficult to collect full stripe writes. */
Jeff Mahoney1b868262017-05-17 11:38:35 -04008384 if (btrfs_data_alloc_profile(fs_info) & BTRFS_BLOCK_GROUP_RAID56_MASK)
David Woodhouse53b381b2013-01-29 18:40:14 -05008385 async_submit = 0;
8386 else
8387 async_submit = 1;
8388
Liu Bo725130b2017-05-16 09:51:39 -07008389 /* bio split */
8390 ASSERT(map_length <= INT_MAX);
Josef Bacik02f57c72011-04-06 14:25:44 -04008391 atomic_inc(&dip->pending_bios);
Arnd Bergmann3c91ee62017-05-18 15:33:29 +02008392 do {
Liu Bo725130b2017-05-16 09:51:39 -07008393 clone_len = min_t(int, submit_len, map_length);
Josef Bacik02f57c72011-04-06 14:25:44 -04008394
Liu Bo725130b2017-05-16 09:51:39 -07008395 /*
8396 * This will never fail as it's passing GPF_NOFS and
8397 * the allocation is backed by btrfs_bioset.
8398 */
Liu Boe4770942017-05-16 10:57:14 -07008399 bio = btrfs_bio_clone_partial(orig_bio, clone_offset,
Liu Bo725130b2017-05-16 09:51:39 -07008400 clone_len);
8401 bio->bi_private = dip;
8402 bio->bi_end_io = btrfs_end_dio_bio;
8403 btrfs_io_bio(bio)->logical = file_offset;
Miao Xiee65e1532010-11-22 03:04:43 +00008404
Liu Bo725130b2017-05-16 09:51:39 -07008405 ASSERT(submit_len >= clone_len);
8406 submit_len -= clone_len;
8407 if (submit_len == 0)
8408 break;
Miao Xiee65e1532010-11-22 03:04:43 +00008409
Liu Bo725130b2017-05-16 09:51:39 -07008410 /*
8411 * Increase the count before we submit the bio so we know
8412 * the end IO handler won't happen before we increase the
8413 * count. Otherwise, the dip might get freed before we're
8414 * done setting it up.
8415 */
8416 atomic_inc(&dip->pending_bios);
Miao Xiee65e1532010-11-22 03:04:43 +00008417
Linus Torvalds66ba7722017-09-09 13:27:51 -07008418 status = __btrfs_submit_dio_bio(bio, inode, file_offset,
Omar Sandoval58efbc92017-08-22 23:45:59 -07008419 async_submit);
8420 if (status) {
Liu Bo725130b2017-05-16 09:51:39 -07008421 bio_put(bio);
8422 atomic_dec(&dip->pending_bios);
8423 goto out_err;
Miao Xiee65e1532010-11-22 03:04:43 +00008424 }
Liu Bo725130b2017-05-16 09:51:39 -07008425
8426 clone_offset += clone_len;
8427 start_sector += clone_len >> 9;
8428 file_offset += clone_len;
8429
8430 map_length = submit_len;
8431 ret = btrfs_map_block(fs_info, btrfs_op(orig_bio),
8432 start_sector << 9, &map_length, NULL, 0);
8433 if (ret)
8434 goto out_err;
Arnd Bergmann3c91ee62017-05-18 15:33:29 +02008435 } while (submit_len > 0);
Miao Xiee65e1532010-11-22 03:04:43 +00008436
Josef Bacik02f57c72011-04-06 14:25:44 -04008437submit:
Linus Torvalds66ba7722017-09-09 13:27:51 -07008438 status = __btrfs_submit_dio_bio(bio, inode, file_offset, async_submit);
Omar Sandoval58efbc92017-08-22 23:45:59 -07008439 if (!status)
Miao Xiee65e1532010-11-22 03:04:43 +00008440 return 0;
8441
8442 bio_put(bio);
8443out_err:
8444 dip->errors = 1;
8445 /*
Nikolay Borisovde224b72018-02-14 10:53:36 +02008446 * Before atomic variable goto zero, we must make sure dip->errors is
8447 * perceived to be set. This ordering is ensured by the fact that an
8448 * atomic operations with a return value are fully ordered as per
8449 * atomic_t.txt
Miao Xiee65e1532010-11-22 03:04:43 +00008450 */
Miao Xiee65e1532010-11-22 03:04:43 +00008451 if (atomic_dec_and_test(&dip->pending_bios))
8452 bio_io_error(dip->orig_bio);
8453
8454 /* bio_end_io() will handle error, so we needn't return it */
8455 return 0;
8456}
8457
Mike Christie8a4c1e42016-06-05 14:31:50 -05008458static void btrfs_submit_direct(struct bio *dio_bio, struct inode *inode,
8459 loff_t file_offset)
Josef Bacik4b46fce2010-05-23 11:00:55 -04008460{
Filipe Manana61de7182015-07-01 12:13:10 +01008461 struct btrfs_dio_private *dip = NULL;
Liu Bo3892ac92017-04-17 15:00:28 -07008462 struct bio *bio = NULL;
8463 struct btrfs_io_bio *io_bio;
Mike Christie8a4c1e42016-06-05 14:31:50 -05008464 bool write = (bio_op(dio_bio) == REQ_OP_WRITE);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008465 int ret = 0;
8466
David Sterba8b6c1d52017-06-02 17:48:13 +02008467 bio = btrfs_bio_clone(dio_bio);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008468
Miao Xiec1dc0892014-09-12 18:43:56 +08008469 dip = kzalloc(sizeof(*dip), GFP_NOFS);
Chris Mason9be33952013-05-17 18:30:14 -04008470 if (!dip) {
8471 ret = -ENOMEM;
Filipe Manana61de7182015-07-01 12:13:10 +01008472 goto free_ordered;
Chris Mason9be33952013-05-17 18:30:14 -04008473 }
8474
8475 dip->private = dio_bio->bi_private;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008476 dip->inode = inode;
8477 dip->logical_offset = file_offset;
Kent Overstreet4f024f32013-10-11 15:44:27 -07008478 dip->bytes = dio_bio->bi_iter.bi_size;
8479 dip->disk_bytenr = (u64)dio_bio->bi_iter.bi_sector << 9;
Liu Bo3892ac92017-04-17 15:00:28 -07008480 bio->bi_private = dip;
8481 dip->orig_bio = bio;
Chris Mason9be33952013-05-17 18:30:14 -04008482 dip->dio_bio = dio_bio;
Miao Xiee65e1532010-11-22 03:04:43 +00008483 atomic_set(&dip->pending_bios, 0);
Liu Bo3892ac92017-04-17 15:00:28 -07008484 io_bio = btrfs_io_bio(bio);
8485 io_bio->logical = file_offset;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008486
Miao Xiec1dc0892014-09-12 18:43:56 +08008487 if (write) {
Liu Bo3892ac92017-04-17 15:00:28 -07008488 bio->bi_end_io = btrfs_endio_direct_write;
Miao Xiec1dc0892014-09-12 18:43:56 +08008489 } else {
Liu Bo3892ac92017-04-17 15:00:28 -07008490 bio->bi_end_io = btrfs_endio_direct_read;
Miao Xiec1dc0892014-09-12 18:43:56 +08008491 dip->subio_endio = btrfs_subio_endio_read;
8492 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04008493
Filipe Mananaf28a4922015-12-08 19:23:20 +00008494 /*
8495 * Reset the range for unsubmitted ordered extents (to a 0 length range)
8496 * even if we fail to submit a bio, because in such case we do the
8497 * corresponding error handling below and it must not be done a second
8498 * time by btrfs_direct_IO().
8499 */
8500 if (write) {
8501 struct btrfs_dio_data *dio_data = current->journal_info;
8502
8503 dio_data->unsubmitted_oe_range_end = dip->logical_offset +
8504 dip->bytes;
8505 dio_data->unsubmitted_oe_range_start =
8506 dio_data->unsubmitted_oe_range_end;
8507 }
8508
Nikolay Borisove6961ca2017-08-03 15:44:58 +03008509 ret = btrfs_submit_direct_hook(dip);
Miao Xiee65e1532010-11-22 03:04:43 +00008510 if (!ret)
Chris Masoneaf25d92010-05-25 09:48:28 -04008511 return;
Chris Mason9be33952013-05-17 18:30:14 -04008512
Liu Bo3892ac92017-04-17 15:00:28 -07008513 if (io_bio->end_io)
8514 io_bio->end_io(io_bio, ret);
Chris Mason9be33952013-05-17 18:30:14 -04008515
Josef Bacik4b46fce2010-05-23 11:00:55 -04008516free_ordered:
8517 /*
Filipe Manana61de7182015-07-01 12:13:10 +01008518 * If we arrived here it means either we failed to submit the dip
8519 * or we either failed to clone the dio_bio or failed to allocate the
8520 * dip. If we cloned the dio_bio and allocated the dip, we can just
8521 * call bio_endio against our io_bio so that we get proper resource
8522 * cleanup if we fail to submit the dip, otherwise, we must do the
8523 * same as btrfs_endio_direct_[write|read] because we can't call these
8524 * callbacks - they require an allocated dip and a clone of dio_bio.
Josef Bacik4b46fce2010-05-23 11:00:55 -04008525 */
Liu Bo3892ac92017-04-17 15:00:28 -07008526 if (bio && dip) {
Guoqing Jiang054ec2f2017-06-02 16:08:50 +08008527 bio_io_error(bio);
Filipe Manana61de7182015-07-01 12:13:10 +01008528 /*
Liu Bo3892ac92017-04-17 15:00:28 -07008529 * The end io callbacks free our dip, do the final put on bio
Filipe Manana61de7182015-07-01 12:13:10 +01008530 * and all the cleanup and final put for dio_bio (through
8531 * dio_end_io()).
8532 */
8533 dip = NULL;
Liu Bo3892ac92017-04-17 15:00:28 -07008534 bio = NULL;
Filipe Manana61de7182015-07-01 12:13:10 +01008535 } else {
Filipe Manana14543772015-11-24 16:23:54 +00008536 if (write)
Qu Wenruo524272602017-03-08 10:25:52 +08008537 __endio_write_update_ordered(inode,
Filipe Manana14543772015-11-24 16:23:54 +00008538 file_offset,
8539 dio_bio->bi_iter.bi_size,
Qu Wenruo524272602017-03-08 10:25:52 +08008540 false);
Filipe Manana14543772015-11-24 16:23:54 +00008541 else
Filipe Manana61de7182015-07-01 12:13:10 +01008542 unlock_extent(&BTRFS_I(inode)->io_tree, file_offset,
8543 file_offset + dio_bio->bi_iter.bi_size - 1);
Filipe Manana14543772015-11-24 16:23:54 +00008544
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008545 dio_bio->bi_status = BLK_STS_IOERR;
Filipe Manana61de7182015-07-01 12:13:10 +01008546 /*
8547 * Releases and cleans up our dio_bio, no need to bio_put()
8548 * nor bio_endio()/bio_io_error() against dio_bio.
8549 */
Christoph Hellwig40553512017-06-03 09:37:58 +02008550 dio_end_io(dio_bio);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008551 }
Liu Bo3892ac92017-04-17 15:00:28 -07008552 if (bio)
8553 bio_put(bio);
Filipe Manana61de7182015-07-01 12:13:10 +01008554 kfree(dip);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008555}
8556
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008557static ssize_t check_direct_IO(struct btrfs_fs_info *fs_info,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008558 const struct iov_iter *iter, loff_t offset)
Chris Mason5a5f79b2010-05-26 21:33:37 -04008559{
8560 int seg;
Josef Bacika1b75f72011-04-08 15:51:18 +00008561 int i;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008562 unsigned int blocksize_mask = fs_info->sectorsize - 1;
Chris Mason5a5f79b2010-05-26 21:33:37 -04008563 ssize_t retval = -EINVAL;
Chris Mason5a5f79b2010-05-26 21:33:37 -04008564
8565 if (offset & blocksize_mask)
8566 goto out;
8567
Al Viro28060d52014-03-22 05:15:17 -04008568 if (iov_iter_alignment(iter) & blocksize_mask)
8569 goto out;
Josef Bacika1b75f72011-04-08 15:51:18 +00008570
Al Viro28060d52014-03-22 05:15:17 -04008571 /* If this is a write we don't need to check anymore */
Al Virocd27e452016-10-10 13:39:05 -04008572 if (iov_iter_rw(iter) != READ || !iter_is_iovec(iter))
Al Viro28060d52014-03-22 05:15:17 -04008573 return 0;
8574 /*
8575 * Check to make sure we don't have duplicate iov_base's in this
8576 * iovec, if so return EINVAL, otherwise we'll get csum errors
8577 * when reading back.
8578 */
8579 for (seg = 0; seg < iter->nr_segs; seg++) {
8580 for (i = seg + 1; i < iter->nr_segs; i++) {
8581 if (iter->iov[seg].iov_base == iter->iov[i].iov_base)
Josef Bacika1b75f72011-04-08 15:51:18 +00008582 goto out;
8583 }
Chris Mason5a5f79b2010-05-26 21:33:37 -04008584 }
8585 retval = 0;
8586out:
8587 return retval;
8588}
Josef Bacikeb838e72012-07-31 16:28:48 -04008589
Christoph Hellwigc8b8e322016-04-07 08:51:58 -07008590static ssize_t btrfs_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
Chris Mason16432982008-04-10 10:23:21 -04008591{
Josef Bacik4b46fce2010-05-23 11:00:55 -04008592 struct file *file = iocb->ki_filp;
8593 struct inode *inode = file->f_mapping->host;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008594 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
chandan50745b02015-08-28 21:10:13 +05308595 struct btrfs_dio_data dio_data = { 0 };
Qu Wenruo364ecf32017-02-27 15:10:38 +08008596 struct extent_changeset *data_reserved = NULL;
Christoph Hellwigc8b8e322016-04-07 08:51:58 -07008597 loff_t offset = iocb->ki_pos;
Miao Xie09348562013-02-07 10:12:07 +00008598 size_t count = 0;
Miao Xie2e60a512013-02-08 07:01:08 +00008599 int flags = 0;
Miao Xie38851cc2013-02-08 07:04:11 +00008600 bool wakeup = true;
8601 bool relock = false;
Miao Xie09348562013-02-07 10:12:07 +00008602 ssize_t ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008603
Nikolay Borisov8c70c9f2017-08-21 12:43:46 +03008604 if (check_direct_IO(fs_info, iter, offset))
Chris Mason5a5f79b2010-05-26 21:33:37 -04008605 return 0;
Chris Mason5a5f79b2010-05-26 21:33:37 -04008606
Jens Axboefe0f07d2015-04-15 17:05:48 -06008607 inode_dio_begin(inode);
Miao Xie38851cc2013-02-08 07:04:11 +00008608
Josef Bacik0e267c42013-07-02 10:38:02 -04008609 /*
Miao Xie41bd9ca2014-03-06 13:54:57 +08008610 * The generic stuff only does filemap_write_and_wait_range, which
8611 * isn't enough if we've written compressed pages to this area, so
8612 * we need to flush the dirty pages again to make absolutely sure
8613 * that any outstanding dirty pages are on disk.
Josef Bacik0e267c42013-07-02 10:38:02 -04008614 */
Al Viroa6cbcd42014-03-04 22:38:00 -05008615 count = iov_iter_count(iter);
Miao Xie41bd9ca2014-03-06 13:54:57 +08008616 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
8617 &BTRFS_I(inode)->runtime_flags))
Wang Shilong9a025a02014-07-17 11:44:13 +08008618 filemap_fdatawrite_range(inode->i_mapping, offset,
8619 offset + count - 1);
Josef Bacik0e267c42013-07-02 10:38:02 -04008620
Omar Sandoval6f673762015-03-16 04:33:52 -07008621 if (iov_iter_rw(iter) == WRITE) {
Miao Xie38851cc2013-02-08 07:04:11 +00008622 /*
8623 * If the write DIO is beyond the EOF, we need update
8624 * the isize, but it is protected by i_mutex. So we can
8625 * not unlock the i_mutex at this case.
8626 */
8627 if (offset + count <= inode->i_size) {
Liu Bo4aaedfb2016-12-14 22:36:05 -08008628 dio_data.overwrite = 1;
Al Viro59551022016-01-22 15:40:57 -05008629 inode_unlock(inode);
Miao Xie38851cc2013-02-08 07:04:11 +00008630 relock = true;
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05008631 } else if (iocb->ki_flags & IOCB_NOWAIT) {
8632 ret = -EAGAIN;
8633 goto out;
Miao Xie38851cc2013-02-08 07:04:11 +00008634 }
Qu Wenruo364ecf32017-02-27 15:10:38 +08008635 ret = btrfs_delalloc_reserve_space(inode, &data_reserved,
8636 offset, count);
Miao Xie09348562013-02-07 10:12:07 +00008637 if (ret)
Miao Xie38851cc2013-02-08 07:04:11 +00008638 goto out;
Josef Bacike1cbbfa2015-03-17 10:52:28 -04008639
8640 /*
8641 * We need to know how many extents we reserved so that we can
8642 * do the accounting properly if we go over the number we
8643 * originally calculated. Abuse current->journal_info for this.
8644 */
Jeff Mahoneyda170662016-06-15 09:22:56 -04008645 dio_data.reserve = round_up(count,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008646 fs_info->sectorsize);
Filipe Mananaf28a4922015-12-08 19:23:20 +00008647 dio_data.unsubmitted_oe_range_start = (u64)offset;
8648 dio_data.unsubmitted_oe_range_end = (u64)offset;
chandan50745b02015-08-28 21:10:13 +05308649 current->journal_info = &dio_data;
Chandan Rajendra97dcdea2016-12-23 15:00:18 +05308650 down_read(&BTRFS_I(inode)->dio_sem);
David Sterbaee39b432014-09-30 01:33:33 +02008651 } else if (test_bit(BTRFS_INODE_READDIO_NEED_LOCK,
8652 &BTRFS_I(inode)->runtime_flags)) {
Jens Axboefe0f07d2015-04-15 17:05:48 -06008653 inode_dio_end(inode);
Miao Xie38851cc2013-02-08 07:04:11 +00008654 flags = DIO_LOCKING | DIO_SKIP_HOLES;
8655 wakeup = false;
Miao Xie09348562013-02-07 10:12:07 +00008656 }
8657
Omar Sandoval17f8c842015-03-16 04:33:50 -07008658 ret = __blockdev_direct_IO(iocb, inode,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008659 fs_info->fs_devices->latest_bdev,
Christoph Hellwigc8b8e322016-04-07 08:51:58 -07008660 iter, btrfs_get_blocks_direct, NULL,
Omar Sandoval17f8c842015-03-16 04:33:50 -07008661 btrfs_submit_direct, flags);
Omar Sandoval6f673762015-03-16 04:33:52 -07008662 if (iov_iter_rw(iter) == WRITE) {
Chandan Rajendra97dcdea2016-12-23 15:00:18 +05308663 up_read(&BTRFS_I(inode)->dio_sem);
Josef Bacike1cbbfa2015-03-17 10:52:28 -04008664 current->journal_info = NULL;
Liu Boddba1bf2015-06-17 16:59:58 +08008665 if (ret < 0 && ret != -EIOCBQUEUED) {
chandan50745b02015-08-28 21:10:13 +05308666 if (dio_data.reserve)
Qu Wenruobc42bda2017-02-27 15:10:39 +08008667 btrfs_delalloc_release_space(inode, data_reserved,
8668 offset, dio_data.reserve);
Filipe Mananaf28a4922015-12-08 19:23:20 +00008669 /*
8670 * On error we might have left some ordered extents
8671 * without submitting corresponding bios for them, so
8672 * cleanup them up to avoid other tasks getting them
8673 * and waiting for them to complete forever.
8674 */
8675 if (dio_data.unsubmitted_oe_range_start <
8676 dio_data.unsubmitted_oe_range_end)
Qu Wenruo524272602017-03-08 10:25:52 +08008677 __endio_write_update_ordered(inode,
Filipe Mananaf28a4922015-12-08 19:23:20 +00008678 dio_data.unsubmitted_oe_range_start,
8679 dio_data.unsubmitted_oe_range_end -
8680 dio_data.unsubmitted_oe_range_start,
Qu Wenruo524272602017-03-08 10:25:52 +08008681 false);
Liu Boddba1bf2015-06-17 16:59:58 +08008682 } else if (ret >= 0 && (size_t)ret < count)
Qu Wenruobc42bda2017-02-27 15:10:39 +08008683 btrfs_delalloc_release_space(inode, data_reserved,
8684 offset, count - (size_t)ret);
Josef Bacik69fe2d72017-10-19 14:15:57 -04008685 btrfs_delalloc_release_extents(BTRFS_I(inode), count);
Miao Xie09348562013-02-07 10:12:07 +00008686 }
Miao Xie38851cc2013-02-08 07:04:11 +00008687out:
Miao Xie2e60a512013-02-08 07:01:08 +00008688 if (wakeup)
Jens Axboefe0f07d2015-04-15 17:05:48 -06008689 inode_dio_end(inode);
Miao Xie38851cc2013-02-08 07:04:11 +00008690 if (relock)
Al Viro59551022016-01-22 15:40:57 -05008691 inode_lock(inode);
Miao Xie09348562013-02-07 10:12:07 +00008692
Qu Wenruo364ecf32017-02-27 15:10:38 +08008693 extent_changeset_free(data_reserved);
Miao Xie09348562013-02-07 10:12:07 +00008694 return ret;
Chris Mason16432982008-04-10 10:23:21 -04008695}
8696
Tsutomu Itoh05dadc02012-11-29 05:08:26 +00008697#define BTRFS_FIEMAP_FLAGS (FIEMAP_FLAG_SYNC)
8698
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05008699static int btrfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
8700 __u64 start, __u64 len)
8701{
Tsutomu Itoh05dadc02012-11-29 05:08:26 +00008702 int ret;
8703
8704 ret = fiemap_check_flags(fieinfo, BTRFS_FIEMAP_FLAGS);
8705 if (ret)
8706 return ret;
8707
David Sterba2135fb92017-06-23 04:09:57 +02008708 return extent_fiemap(inode, fieinfo, start, len);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05008709}
8710
Chris Mason9ebefb182007-06-15 13:50:00 -04008711int btrfs_readpage(struct file *file, struct page *page)
8712{
Chris Masond1310b22008-01-24 16:13:08 -05008713 struct extent_io_tree *tree;
8714 tree = &BTRFS_I(page->mapping->host)->io_tree;
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02008715 return extent_read_full_page(tree, page, btrfs_get_extent, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04008716}
Chris Mason1832a6d2007-12-21 16:27:21 -05008717
Chris Mason39279cc2007-06-12 06:35:45 -04008718static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
8719{
Josef Bacikbe7bd732015-10-22 15:05:09 -04008720 struct inode *inode = page->mapping->host;
8721 int ret;
Chris Masonb888db22007-08-27 16:49:44 -04008722
8723 if (current->flags & PF_MEMALLOC) {
8724 redirty_page_for_writepage(wbc, page);
8725 unlock_page(page);
8726 return 0;
8727 }
Josef Bacikbe7bd732015-10-22 15:05:09 -04008728
8729 /*
8730 * If we are under memory pressure we will call this directly from the
8731 * VM, we need to make sure we have the inode referenced for the ordered
8732 * extent. If not just return like we didn't do anything.
8733 */
8734 if (!igrab(inode)) {
8735 redirty_page_for_writepage(wbc, page);
8736 return AOP_WRITEPAGE_ACTIVATE;
8737 }
Nikolay Borisov0a9b0e52017-12-08 15:55:59 +02008738 ret = extent_write_full_page(page, wbc);
Josef Bacikbe7bd732015-10-22 15:05:09 -04008739 btrfs_add_delayed_iput(inode);
8740 return ret;
Chris Masona52d9a82007-08-27 16:49:44 -04008741}
Chris Mason39279cc2007-06-12 06:35:45 -04008742
Eric Sandeen48a3b632013-04-25 20:41:01 +00008743static int btrfs_writepages(struct address_space *mapping,
8744 struct writeback_control *wbc)
Chris Masonb293f02e2007-11-01 19:45:34 -04008745{
Chris Masond1310b22008-01-24 16:13:08 -05008746 struct extent_io_tree *tree;
Chris Mason771ed682008-11-06 22:02:51 -05008747
Chris Masond1310b22008-01-24 16:13:08 -05008748 tree = &BTRFS_I(mapping->host)->io_tree;
David Sterba43317592017-06-23 03:46:07 +02008749 return extent_writepages(tree, mapping, wbc);
Chris Masonb293f02e2007-11-01 19:45:34 -04008750}
8751
Chris Mason3ab2fb52007-11-08 10:59:22 -05008752static int
8753btrfs_readpages(struct file *file, struct address_space *mapping,
8754 struct list_head *pages, unsigned nr_pages)
8755{
Chris Masond1310b22008-01-24 16:13:08 -05008756 struct extent_io_tree *tree;
8757 tree = &BTRFS_I(mapping->host)->io_tree;
David Sterba09325842017-06-23 04:09:57 +02008758 return extent_readpages(tree, mapping, pages, nr_pages);
Chris Mason3ab2fb52007-11-08 10:59:22 -05008759}
Chris Masone6dcd2d2008-07-17 12:53:50 -04008760static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04008761{
Chris Masond1310b22008-01-24 16:13:08 -05008762 struct extent_io_tree *tree;
8763 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04008764 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04008765
Chris Masond1310b22008-01-24 16:13:08 -05008766 tree = &BTRFS_I(page->mapping->host)->io_tree;
8767 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05008768 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04008769 if (ret == 1) {
8770 ClearPagePrivate(page);
8771 set_page_private(page, 0);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008772 put_page(page);
Chris Masona52d9a82007-08-27 16:49:44 -04008773 }
8774 return ret;
8775}
Chris Mason39279cc2007-06-12 06:35:45 -04008776
Chris Masone6dcd2d2008-07-17 12:53:50 -04008777static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
8778{
Chris Mason98509cf2008-09-11 15:51:43 -04008779 if (PageWriteback(page) || PageDirty(page))
8780 return 0;
Michal Hocko3ba7ab22017-01-09 15:39:02 +01008781 return __btrfs_releasepage(page, gfp_flags);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008782}
8783
Lukas Czernerd47992f2013-05-21 23:17:23 -04008784static void btrfs_invalidatepage(struct page *page, unsigned int offset,
8785 unsigned int length)
Chris Masona52d9a82007-08-27 16:49:44 -04008786{
Josef Bacik5fd02042012-05-02 14:00:54 -04008787 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05008788 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008789 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00008790 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008791 u64 page_start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008792 u64 page_end = page_start + PAGE_SIZE - 1;
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308793 u64 start;
8794 u64 end;
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008795 int inode_evicting = inode->i_state & I_FREEING;
Chris Masona52d9a82007-08-27 16:49:44 -04008796
Chris Mason8b62b722009-09-02 16:53:46 -04008797 /*
8798 * we have the page locked, so new writeback can't start,
8799 * and the dirty bit won't be cleared while we are here.
8800 *
8801 * Wait for IO on this page so that we can safely clear
8802 * the PagePrivate2 bit and do ordered accounting
8803 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04008804 wait_on_page_writeback(page);
Chris Mason8b62b722009-09-02 16:53:46 -04008805
Josef Bacik5fd02042012-05-02 14:00:54 -04008806 tree = &BTRFS_I(inode)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008807 if (offset) {
8808 btrfs_releasepage(page, GFP_NOFS);
8809 return;
8810 }
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008811
8812 if (!inode_evicting)
David Sterbaff13db42015-12-03 14:30:40 +01008813 lock_extent_bits(tree, page_start, page_end, &cached_state);
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308814again:
8815 start = page_start;
Nikolay Borisova776c6f2017-02-20 13:50:49 +02008816 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), start,
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308817 page_end - start + 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008818 if (ordered) {
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308819 end = min(page_end, ordered->file_offset + ordered->len - 1);
Chris Masoneb84ae02008-07-17 13:53:27 -04008820 /*
8821 * IO on this page will never be started, so we need
8822 * to account for any ordered extents now
8823 */
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008824 if (!inode_evicting)
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308825 clear_extent_bit(tree, start, end,
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008826 EXTENT_DIRTY | EXTENT_DELALLOC |
Filipe Mananaa7e3b972017-04-03 10:45:46 +01008827 EXTENT_DELALLOC_NEW |
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008828 EXTENT_LOCKED | EXTENT_DO_ACCOUNTING |
David Sterbaae0f1622017-10-31 16:37:52 +01008829 EXTENT_DEFRAG, 1, 0, &cached_state);
Chris Mason8b62b722009-09-02 16:53:46 -04008830 /*
8831 * whoever cleared the private bit is responsible
8832 * for the finish_ordered_io
8833 */
Josef Bacik77cef2e2013-08-29 13:57:21 -04008834 if (TestClearPagePrivate2(page)) {
8835 struct btrfs_ordered_inode_tree *tree;
8836 u64 new_len;
8837
8838 tree = &BTRFS_I(inode)->ordered_tree;
8839
8840 spin_lock_irq(&tree->lock);
8841 set_bit(BTRFS_ORDERED_TRUNCATED, &ordered->flags);
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308842 new_len = start - ordered->file_offset;
Josef Bacik77cef2e2013-08-29 13:57:21 -04008843 if (new_len < ordered->truncated_len)
8844 ordered->truncated_len = new_len;
8845 spin_unlock_irq(&tree->lock);
8846
8847 if (btrfs_dec_test_ordered_pending(inode, &ordered,
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308848 start,
8849 end - start + 1, 1))
Josef Bacik77cef2e2013-08-29 13:57:21 -04008850 btrfs_finish_ordered_io(ordered);
Chris Mason8b62b722009-09-02 16:53:46 -04008851 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04008852 btrfs_put_ordered_extent(ordered);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008853 if (!inode_evicting) {
8854 cached_state = NULL;
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308855 lock_extent_bits(tree, start, end,
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008856 &cached_state);
8857 }
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308858
8859 start = end + 1;
8860 if (start < page_end)
8861 goto again;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008862 }
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008863
Qu Wenruob9d0b382015-09-29 10:35:16 +08008864 /*
8865 * Qgroup reserved space handler
8866 * Page here will be either
8867 * 1) Already written to disk
8868 * In this case, its reserved space is released from data rsv map
8869 * and will be freed by delayed_ref handler finally.
8870 * So even we call qgroup_free_data(), it won't decrease reserved
8871 * space.
8872 * 2) Not written to disk
Goldwyn Rodrigues0b34c262016-09-30 10:40:52 -05008873 * This means the reserved space should be freed here. However,
8874 * if a truncate invalidates the page (by clearing PageDirty)
8875 * and the page is accounted for while allocating extent
8876 * in btrfs_check_data_free_space() we let delayed_ref to
8877 * free the entire extent.
Qu Wenruob9d0b382015-09-29 10:35:16 +08008878 */
Goldwyn Rodrigues0b34c262016-09-30 10:40:52 -05008879 if (PageDirty(page))
Qu Wenruobc42bda2017-02-27 15:10:39 +08008880 btrfs_qgroup_free_data(inode, NULL, page_start, PAGE_SIZE);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008881 if (!inode_evicting) {
8882 clear_extent_bit(tree, page_start, page_end,
8883 EXTENT_LOCKED | EXTENT_DIRTY |
Filipe Mananaa7e3b972017-04-03 10:45:46 +01008884 EXTENT_DELALLOC | EXTENT_DELALLOC_NEW |
8885 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, 1, 1,
David Sterbaae0f1622017-10-31 16:37:52 +01008886 &cached_state);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008887
8888 __btrfs_releasepage(page, GFP_NOFS);
8889 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04008890
Chris Mason4a096752008-07-21 10:29:44 -04008891 ClearPageChecked(page);
Chris Mason9ad6b7bc2008-04-18 16:11:30 -04008892 if (PagePrivate(page)) {
Chris Mason9ad6b7bc2008-04-18 16:11:30 -04008893 ClearPagePrivate(page);
8894 set_page_private(page, 0);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008895 put_page(page);
Chris Mason9ad6b7bc2008-04-18 16:11:30 -04008896 }
Chris Mason39279cc2007-06-12 06:35:45 -04008897}
8898
Chris Mason9ebefb182007-06-15 13:50:00 -04008899/*
8900 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
8901 * called from a page fault handler when a page is first dirtied. Hence we must
8902 * be careful to check for EOF conditions here. We set the page up correctly
8903 * for a written page which means we get ENOSPC checking when writing into
8904 * holes and correct delalloc and unwritten extent mapping on filesystems that
8905 * support these features.
8906 *
8907 * We are not allowed to take the i_mutex here so we have to play games to
8908 * protect against truncate races as the page could now be beyond EOF. Because
8909 * vmtruncate() writes the inode size before removing pages, once we have the
8910 * page lock we can determine safely if the page is beyond EOF. If it is not
8911 * beyond EOF, then the page is guaranteed safe against truncation until we
8912 * unlock the page.
8913 */
Dave Jiang11bac802017-02-24 14:56:41 -08008914int btrfs_page_mkwrite(struct vm_fault *vmf)
Chris Mason9ebefb182007-06-15 13:50:00 -04008915{
Nick Pigginc2ec1752009-03-31 15:23:21 -07008916 struct page *page = vmf->page;
Dave Jiang11bac802017-02-24 14:56:41 -08008917 struct inode *inode = file_inode(vmf->vma->vm_file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008918 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008919 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
8920 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00008921 struct extent_state *cached_state = NULL;
Qu Wenruo364ecf32017-02-27 15:10:38 +08008922 struct extent_changeset *data_reserved = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008923 char *kaddr;
8924 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04008925 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05008926 int ret;
Chris Mason9998eb72012-01-25 13:47:40 -05008927 int reserved = 0;
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308928 u64 reserved_space;
Chris Masona52d9a82007-08-27 16:49:44 -04008929 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008930 u64 page_end;
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308931 u64 end;
8932
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008933 reserved_space = PAGE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04008934
Jan Karab2b5ef52012-06-12 16:20:45 +02008935 sb_start_pagefault(inode->i_sb);
Qu Wenruodf480632015-09-08 17:25:54 +08008936 page_start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008937 page_end = page_start + PAGE_SIZE - 1;
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308938 end = page_end;
Qu Wenruodf480632015-09-08 17:25:54 +08008939
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308940 /*
8941 * Reserving delalloc space after obtaining the page lock can lead to
8942 * deadlock. For example, if a dirty page is locked by this function
8943 * and the call to btrfs_delalloc_reserve_space() ends up triggering
8944 * dirty page write out, then the btrfs_writepage() function could
8945 * end up waiting indefinitely to get a lock on the page currently
8946 * being processed by btrfs_page_mkwrite() function.
8947 */
Qu Wenruo364ecf32017-02-27 15:10:38 +08008948 ret = btrfs_delalloc_reserve_space(inode, &data_reserved, page_start,
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308949 reserved_space);
Chris Mason9998eb72012-01-25 13:47:40 -05008950 if (!ret) {
Dave Jiang11bac802017-02-24 14:56:41 -08008951 ret = file_update_time(vmf->vma->vm_file);
Chris Mason9998eb72012-01-25 13:47:40 -05008952 reserved = 1;
8953 }
Nick Piggin56a76f82009-03-31 15:23:23 -07008954 if (ret) {
8955 if (ret == -ENOMEM)
8956 ret = VM_FAULT_OOM;
8957 else /* -ENOSPC, -EIO, etc */
8958 ret = VM_FAULT_SIGBUS;
Chris Mason9998eb72012-01-25 13:47:40 -05008959 if (reserved)
8960 goto out;
8961 goto out_noreserve;
Nick Piggin56a76f82009-03-31 15:23:23 -07008962 }
Chris Mason1832a6d2007-12-21 16:27:21 -05008963
Nick Piggin56a76f82009-03-31 15:23:23 -07008964 ret = VM_FAULT_NOPAGE; /* make the VM retry the fault */
Chris Masone6dcd2d2008-07-17 12:53:50 -04008965again:
Chris Mason9ebefb182007-06-15 13:50:00 -04008966 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04008967 size = i_size_read(inode);
Chris Masona52d9a82007-08-27 16:49:44 -04008968
Chris Mason9ebefb182007-06-15 13:50:00 -04008969 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04008970 (page_start >= size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04008971 /* page got truncated out from underneath us */
8972 goto out_unlock;
8973 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04008974 wait_on_page_writeback(page);
8975
David Sterbaff13db42015-12-03 14:30:40 +01008976 lock_extent_bits(io_tree, page_start, page_end, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008977 set_page_extent_mapped(page);
8978
Chris Masoneb84ae02008-07-17 13:53:27 -04008979 /*
8980 * we can't set the delalloc bits if there are pending ordered
8981 * extents. Drop our locks and wait for them to finish
8982 */
Nikolay Borisova776c6f2017-02-20 13:50:49 +02008983 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), page_start,
8984 PAGE_SIZE);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008985 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00008986 unlock_extent_cached(io_tree, page_start, page_end,
David Sterbae43bbe52017-12-12 21:43:52 +01008987 &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008988 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04008989 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008990 btrfs_put_ordered_extent(ordered);
8991 goto again;
8992 }
8993
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008994 if (page->index == ((size - 1) >> PAGE_SHIFT)) {
Jeff Mahoneyda170662016-06-15 09:22:56 -04008995 reserved_space = round_up(size - page_start,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008996 fs_info->sectorsize);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008997 if (reserved_space < PAGE_SIZE) {
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308998 end = page_start + reserved_space - 1;
Qu Wenruobc42bda2017-02-27 15:10:39 +08008999 btrfs_delalloc_release_space(inode, data_reserved,
9000 page_start, PAGE_SIZE - reserved_space);
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05309001 }
9002 }
9003
Josef Bacikfbf19082009-10-01 17:10:23 -04009004 /*
Liu Bo54160342016-12-13 12:15:19 -08009005 * page_mkwrite gets called when the page is firstly dirtied after it's
9006 * faulted in, but write(2) could also dirty a page and set delalloc
9007 * bits, thus in this case for space account reason, we still need to
9008 * clear any delalloc bits within this page range since we have to
9009 * reserve data&meta space before lock_page() (see above comments).
Josef Bacikfbf19082009-10-01 17:10:23 -04009010 */
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05309011 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, end,
Liu Bo9e8a4a82012-09-05 19:10:51 -06009012 EXTENT_DIRTY | EXTENT_DELALLOC |
9013 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
David Sterbaae0f1622017-10-31 16:37:52 +01009014 0, 0, &cached_state);
Josef Bacikfbf19082009-10-01 17:10:23 -04009015
Filipe Mananae3b8a482017-11-04 00:16:59 +00009016 ret = btrfs_set_extent_delalloc(inode, page_start, end, 0,
Qu Wenruoba8b04c2016-07-19 16:50:36 +08009017 &cached_state, 0);
Josef Bacik9ed74f22009-09-11 16:12:44 -04009018 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00009019 unlock_extent_cached(io_tree, page_start, page_end,
David Sterbae43bbe52017-12-12 21:43:52 +01009020 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04009021 ret = VM_FAULT_SIGBUS;
9022 goto out_unlock;
9023 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04009024 ret = 0;
Chris Mason9ebefb182007-06-15 13:50:00 -04009025
9026 /* page is wholly or partially inside EOF */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03009027 if (page_start + PAGE_SIZE > size)
9028 zero_start = size & ~PAGE_MASK;
Chris Mason9ebefb182007-06-15 13:50:00 -04009029 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03009030 zero_start = PAGE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04009031
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03009032 if (zero_start != PAGE_SIZE) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04009033 kaddr = kmap(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03009034 memset(kaddr + zero_start, 0, PAGE_SIZE - zero_start);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009035 flush_dcache_page(page);
9036 kunmap(page);
9037 }
Chris Mason247e7432008-07-17 12:53:51 -04009038 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009039 set_page_dirty(page);
Chris Mason50a9b212009-09-11 12:33:12 -04009040 SetPageUptodate(page);
Chris Mason5a3f23d2009-03-31 13:27:11 -04009041
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009042 BTRFS_I(inode)->last_trans = fs_info->generation;
Chris Mason257c62e2009-10-13 13:21:08 -04009043 BTRFS_I(inode)->last_sub_trans = BTRFS_I(inode)->root->log_transid;
Liu Bo46d8bc32012-08-29 01:07:55 -06009044 BTRFS_I(inode)->last_log_commit = BTRFS_I(inode)->root->last_log_commit;
Chris Mason257c62e2009-10-13 13:21:08 -04009045
David Sterbae43bbe52017-12-12 21:43:52 +01009046 unlock_extent_cached(io_tree, page_start, page_end, &cached_state);
Chris Mason9ebefb182007-06-15 13:50:00 -04009047
9048out_unlock:
Jan Karab2b5ef52012-06-12 16:20:45 +02009049 if (!ret) {
Josef Bacik8b62f872017-10-19 14:15:55 -04009050 btrfs_delalloc_release_extents(BTRFS_I(inode), PAGE_SIZE);
Jan Karab2b5ef52012-06-12 16:20:45 +02009051 sb_end_pagefault(inode->i_sb);
Qu Wenruo364ecf32017-02-27 15:10:38 +08009052 extent_changeset_free(data_reserved);
Chris Mason50a9b212009-09-11 12:33:12 -04009053 return VM_FAULT_LOCKED;
Jan Karab2b5ef52012-06-12 16:20:45 +02009054 }
Chris Mason9ebefb182007-06-15 13:50:00 -04009055 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05009056out:
Josef Bacik8b62f872017-10-19 14:15:55 -04009057 btrfs_delalloc_release_extents(BTRFS_I(inode), PAGE_SIZE);
Qu Wenruobc42bda2017-02-27 15:10:39 +08009058 btrfs_delalloc_release_space(inode, data_reserved, page_start,
9059 reserved_space);
Chris Mason9998eb72012-01-25 13:47:40 -05009060out_noreserve:
Jan Karab2b5ef52012-06-12 16:20:45 +02009061 sb_end_pagefault(inode->i_sb);
Qu Wenruo364ecf32017-02-27 15:10:38 +08009062 extent_changeset_free(data_reserved);
Chris Mason9ebefb182007-06-15 13:50:00 -04009063 return ret;
9064}
9065
Filipe Manana213e8c52018-02-06 20:40:31 +00009066static int btrfs_truncate(struct inode *inode, bool skip_writeback)
Chris Mason39279cc2007-06-12 06:35:45 -04009067{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009068 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04009069 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacikfcb80c22011-05-03 10:40:22 -04009070 struct btrfs_block_rsv *rsv;
Josef Bacika71754f2013-06-17 17:14:39 -04009071 int ret = 0;
Josef Bacik3893e332011-01-31 16:03:11 -05009072 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04009073 struct btrfs_trans_handle *trans;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009074 u64 mask = fs_info->sectorsize - 1;
9075 u64 min_size = btrfs_calc_trunc_metadata_size(fs_info, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04009076
Filipe Manana213e8c52018-02-06 20:40:31 +00009077 if (!skip_writeback) {
9078 ret = btrfs_wait_ordered_range(inode, inode->i_size & (~mask),
9079 (u64)-1);
9080 if (ret)
9081 return ret;
9082 }
Chris Mason39279cc2007-06-12 06:35:45 -04009083
Josef Bacikfcb80c22011-05-03 10:40:22 -04009084 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04009085 * Yes ladies and gentlemen, this is indeed ugly. The fact is we have
Josef Bacikfcb80c22011-05-03 10:40:22 -04009086 * 3 things going on here
9087 *
9088 * 1) We need to reserve space for our orphan item and the space to
9089 * delete our orphan item. Lord knows we don't want to have a dangling
9090 * orphan item because we didn't reserve space to remove it.
9091 *
9092 * 2) We need to reserve space to update our inode.
9093 *
9094 * 3) We need to have something to cache all the space that is going to
9095 * be free'd up by the truncate operation, but also have some slack
9096 * space reserved in case it uses space during the truncate (thank you
9097 * very much snapshotting).
9098 *
Nicholas D Steeves01327612016-05-19 21:18:45 -04009099 * And we need these to all be separate. The fact is we can use a lot of
Josef Bacikfcb80c22011-05-03 10:40:22 -04009100 * space doing the truncate, and we have no earthly idea how much space
Nicholas D Steeves01327612016-05-19 21:18:45 -04009101 * we will use, so we need the truncate reservation to be separate so it
Josef Bacikfcb80c22011-05-03 10:40:22 -04009102 * doesn't end up using space reserved for updating the inode or
9103 * removing the orphan item. We also need to be able to stop the
9104 * transaction and start a new one, which means we need to be able to
9105 * update the inode several times, and we have no idea of knowing how
9106 * many times that will be, so we can't just reserve 1 item for the
Nicholas D Steeves01327612016-05-19 21:18:45 -04009107 * entirety of the operation, so that has to be done separately as well.
Josef Bacikfcb80c22011-05-03 10:40:22 -04009108 * Then there is the orphan item, which does indeed need to be held on
9109 * to for the whole operation, and we need nobody to touch this reserved
9110 * space except the orphan code.
9111 *
9112 * So that leaves us with
9113 *
9114 * 1) root->orphan_block_rsv - for the orphan deletion.
9115 * 2) rsv - for the truncate reservation, which we will steal from the
9116 * transaction reservation.
9117 * 3) fs_info->trans_block_rsv - this will have 1 items worth left for
9118 * updating the inode.
9119 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009120 rsv = btrfs_alloc_block_rsv(fs_info, BTRFS_BLOCK_RSV_TEMP);
Josef Bacikfcb80c22011-05-03 10:40:22 -04009121 if (!rsv)
9122 return -ENOMEM;
Josef Bacik4a338542011-08-29 11:01:31 -04009123 rsv->size = min_size;
Josef Bacikca7e70f2012-08-27 17:48:15 -04009124 rsv->failfast = 1;
Josef Bacikf0cd8462011-03-04 14:37:08 -05009125
Josef Bacik907cbce2011-08-08 13:46:15 -04009126 /*
Josef Bacik07127182011-08-19 10:29:59 -04009127 * 1 for the truncate slack space
Josef Bacik907cbce2011-08-08 13:46:15 -04009128 * 1 for updating the inode.
9129 */
Josef Bacikf3fe8202013-01-07 17:03:21 -05009130 trans = btrfs_start_transaction(root, 2);
Josef Bacikfcb80c22011-05-03 10:40:22 -04009131 if (IS_ERR(trans)) {
9132 err = PTR_ERR(trans);
9133 goto out;
9134 }
Josef Bacikf0cd8462011-03-04 14:37:08 -05009135
Josef Bacik907cbce2011-08-08 13:46:15 -04009136 /* Migrate the slack space for the truncate to our reserve */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009137 ret = btrfs_block_rsv_migrate(&fs_info->trans_block_rsv, rsv,
Josef Bacik25d609f2016-03-25 13:25:48 -04009138 min_size, 0);
Josef Bacikfcb80c22011-05-03 10:40:22 -04009139 BUG_ON(ret);
Josef Bacikf0cd8462011-03-04 14:37:08 -05009140
Chris Mason5a3f23d2009-03-31 13:27:11 -04009141 /*
Josef Bacik5dc562c2012-08-17 13:14:17 -04009142 * So if we truncate and then write and fsync we normally would just
9143 * write the extents that changed, which is a problem if we need to
9144 * first truncate that entire inode. So set this flag so we write out
9145 * all of the extents in the inode to the sync log so we're completely
9146 * safe.
9147 */
9148 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
Josef Bacikca7e70f2012-08-27 17:48:15 -04009149 trans->block_rsv = rsv;
Josef Bacik5dc562c2012-08-17 13:14:17 -04009150
Yan, Zheng80825102009-11-12 09:35:36 +00009151 while (1) {
9152 ret = btrfs_truncate_inode_items(trans, root, inode,
9153 inode->i_size,
9154 BTRFS_EXTENT_DATA_KEY);
Josef Bacikddfae632017-10-19 14:16:02 -04009155 trans->block_rsv = &fs_info->trans_block_rsv;
Chris Mason28ed1342014-12-17 09:41:04 -08009156 if (ret != -ENOSPC && ret != -EAGAIN) {
Josef Bacik3893e332011-01-31 16:03:11 -05009157 err = ret;
Yan, Zheng80825102009-11-12 09:35:36 +00009158 break;
Josef Bacik3893e332011-01-31 16:03:11 -05009159 }
Chris Mason39279cc2007-06-12 06:35:45 -04009160
Yan, Zheng80825102009-11-12 09:35:36 +00009161 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05009162 if (ret) {
9163 err = ret;
9164 break;
9165 }
Josef Bacikca7e70f2012-08-27 17:48:15 -04009166
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009167 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009168 btrfs_btree_balance_dirty(fs_info);
Josef Bacikca7e70f2012-08-27 17:48:15 -04009169
9170 trans = btrfs_start_transaction(root, 2);
9171 if (IS_ERR(trans)) {
9172 ret = err = PTR_ERR(trans);
9173 trans = NULL;
9174 break;
9175 }
9176
Wang Xiaoguang47b5d642016-09-07 20:17:38 +08009177 btrfs_block_rsv_release(fs_info, rsv, -1);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009178 ret = btrfs_block_rsv_migrate(&fs_info->trans_block_rsv,
Josef Bacik25d609f2016-03-25 13:25:48 -04009179 rsv, min_size, 0);
Josef Bacikca7e70f2012-08-27 17:48:15 -04009180 BUG_ON(ret); /* shouldn't happen */
9181 trans->block_rsv = rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00009182 }
9183
Josef Bacikddfae632017-10-19 14:16:02 -04009184 /*
9185 * We can't call btrfs_truncate_block inside a trans handle as we could
9186 * deadlock with freeze, if we got NEED_TRUNCATE_BLOCK then we know
9187 * we've truncated everything except the last little bit, and can do
9188 * btrfs_truncate_block and then update the disk_i_size.
9189 */
9190 if (ret == NEED_TRUNCATE_BLOCK) {
9191 btrfs_end_transaction(trans);
9192 btrfs_btree_balance_dirty(fs_info);
9193
9194 ret = btrfs_truncate_block(inode, inode->i_size, 0, 0);
9195 if (ret)
9196 goto out;
9197 trans = btrfs_start_transaction(root, 1);
9198 if (IS_ERR(trans)) {
9199 ret = PTR_ERR(trans);
9200 goto out;
9201 }
9202 btrfs_ordered_update_i_size(inode, inode->i_size, NULL);
9203 }
9204
Yan, Zheng80825102009-11-12 09:35:36 +00009205 if (ret == 0 && inode->i_nlink > 0) {
Josef Bacikfcb80c22011-05-03 10:40:22 -04009206 trans->block_rsv = root->orphan_block_rsv;
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02009207 ret = btrfs_orphan_del(trans, BTRFS_I(inode));
Josef Bacik3893e332011-01-31 16:03:11 -05009208 if (ret)
9209 err = ret;
Yan, Zheng80825102009-11-12 09:35:36 +00009210 }
9211
Chris Mason917c16b2011-11-08 14:49:59 -05009212 if (trans) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009213 trans->block_rsv = &fs_info->trans_block_rsv;
Chris Mason917c16b2011-11-08 14:49:59 -05009214 ret = btrfs_update_inode(trans, root, inode);
9215 if (ret && !err)
9216 err = ret;
Josef Bacik7b128762008-07-24 12:17:14 -04009217
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009218 ret = btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009219 btrfs_btree_balance_dirty(fs_info);
Chris Mason917c16b2011-11-08 14:49:59 -05009220 }
Josef Bacikfcb80c22011-05-03 10:40:22 -04009221out:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009222 btrfs_free_block_rsv(fs_info, rsv);
Josef Bacikfcb80c22011-05-03 10:40:22 -04009223
Josef Bacik3893e332011-01-31 16:03:11 -05009224 if (ret && !err)
9225 err = ret;
Josef Bacika41ad392011-01-31 15:30:16 -05009226
Josef Bacik3893e332011-01-31 16:03:11 -05009227 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04009228}
9229
Sven Wegener3b963622008-06-09 21:57:42 -04009230/*
Chris Masond352ac62008-09-29 15:18:18 -04009231 * create a new subvolume directory/inode (helper for the ioctl).
9232 */
Yan Zhengd2fb3432008-12-11 16:30:39 -05009233int btrfs_create_subvol_root(struct btrfs_trans_handle *trans,
Filipe David Borba Manana63541922014-01-07 11:47:46 +00009234 struct btrfs_root *new_root,
9235 struct btrfs_root *parent_root,
9236 u64 new_dirid)
Chris Mason39279cc2007-06-12 06:35:45 -04009237{
Chris Mason39279cc2007-06-12 06:35:45 -04009238 struct inode *inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04009239 int err;
Chris Mason00e4e6b2008-08-05 11:18:09 -04009240 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04009241
Florian Albrechtskirchinger12fc9d02012-02-10 22:15:54 +01009242 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2,
9243 new_dirid, new_dirid,
9244 S_IFDIR | (~current_umask() & S_IRWXUGO),
9245 &index);
Chris Mason54aa1f42007-06-22 14:16:25 -04009246 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04009247 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04009248 inode->i_op = &btrfs_dir_inode_operations;
9249 inode->i_fop = &btrfs_dir_file_operations;
9250
Miklos Szeredibfe86842011-10-28 14:13:29 +02009251 set_nlink(inode, 1);
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02009252 btrfs_i_size_write(BTRFS_I(inode), 0);
Chris Masonb0d5d102014-09-08 13:08:51 -07009253 unlock_new_inode(inode);
Sven Wegener3b963622008-06-09 21:57:42 -04009254
Filipe David Borba Manana63541922014-01-07 11:47:46 +00009255 err = btrfs_subvol_inherit_props(trans, new_root, parent_root);
9256 if (err)
9257 btrfs_err(new_root->fs_info,
David Sterba351fd352014-05-15 16:48:20 +02009258 "error inheriting subvolume %llu properties: %d",
Filipe David Borba Manana63541922014-01-07 11:47:46 +00009259 new_root->root_key.objectid, err);
9260
Yan, Zheng76dda932009-09-21 16:00:26 -04009261 err = btrfs_update_inode(trans, new_root, inode);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04009262
Yan, Zheng76dda932009-09-21 16:00:26 -04009263 iput(inode);
Mark Fashehce598972011-07-26 11:32:23 -07009264 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04009265}
9266
Chris Mason39279cc2007-06-12 06:35:45 -04009267struct inode *btrfs_alloc_inode(struct super_block *sb)
9268{
Josef Bacik69fe2d72017-10-19 14:15:57 -04009269 struct btrfs_fs_info *fs_info = btrfs_sb(sb);
Chris Mason39279cc2007-06-12 06:35:45 -04009270 struct btrfs_inode *ei;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009271 struct inode *inode;
Chris Mason39279cc2007-06-12 06:35:45 -04009272
David Sterba712e36c2017-10-31 17:08:27 +01009273 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_KERNEL);
Chris Mason39279cc2007-06-12 06:35:45 -04009274 if (!ei)
9275 return NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009276
9277 ei->root = NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009278 ei->generation = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04009279 ei->last_trans = 0;
Chris Mason257c62e2009-10-13 13:21:08 -04009280 ei->last_sub_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04009281 ei->logged_trans = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009282 ei->delalloc_bytes = 0;
Filipe Mananaa7e3b972017-04-03 10:45:46 +01009283 ei->new_delalloc_bytes = 0;
Wang Shilong47059d92014-07-03 18:22:07 +08009284 ei->defrag_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009285 ei->disk_i_size = 0;
9286 ei->flags = 0;
Josef Bacik7709cde2011-08-04 10:25:02 -04009287 ei->csum_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009288 ei->index_cnt = (u64)-1;
Miao Xie67de1172013-12-26 13:07:06 +08009289 ei->dir_index = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009290 ei->last_unlink_trans = 0;
Liu Bo46d8bc32012-08-29 01:07:55 -06009291 ei->last_log_commit = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009292
Josef Bacik9e0baf62011-07-15 15:16:44 +00009293 spin_lock_init(&ei->lock);
9294 ei->outstanding_extents = 0;
Josef Bacik69fe2d72017-10-19 14:15:57 -04009295 if (sb->s_magic != BTRFS_TEST_MAGIC)
9296 btrfs_init_metadata_block_rsv(fs_info, &ei->block_rsv,
9297 BTRFS_BLOCK_RSV_DELALLOC);
Josef Bacik72ac3c02012-05-23 14:13:11 -04009298 ei->runtime_flags = 0;
David Sterbab52aa8c2017-07-17 19:17:20 +02009299 ei->prop_compress = BTRFS_COMPRESS_NONE;
David Sterbaeec63c62017-07-17 19:41:31 +02009300 ei->defrag_compress = BTRFS_COMPRESS_NONE;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009301
Miao Xie16cdcec2011-04-22 18:12:22 +08009302 ei->delayed_node = NULL;
9303
chandan r9cc97d62012-07-04 12:48:07 +05309304 ei->i_otime.tv_sec = 0;
9305 ei->i_otime.tv_nsec = 0;
9306
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009307 inode = &ei->vfs_inode;
David Sterbaa8067e02011-04-21 00:34:43 +02009308 extent_map_tree_init(&ei->extent_tree);
Josef Bacikc6100a42017-05-05 11:57:13 -04009309 extent_io_tree_init(&ei->io_tree, inode);
9310 extent_io_tree_init(&ei->io_failure_tree, inode);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04009311 ei->io_tree.track_uptodate = 1;
9312 ei->io_failure_tree.track_uptodate = 1;
Josef Bacikb812ce22012-11-16 13:56:32 -05009313 atomic_set(&ei->sync_writers, 0);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009314 mutex_init(&ei->log_mutex);
Josef Bacikf2486792012-01-13 12:09:22 -05009315 mutex_init(&ei->delalloc_mutex);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009316 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009317 INIT_LIST_HEAD(&ei->delalloc_inodes);
David Sterba8089fe62015-11-19 14:15:51 +01009318 INIT_LIST_HEAD(&ei->delayed_iput);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009319 RB_CLEAR_NODE(&ei->rb_node);
Filipe Manana5f9a8a52016-05-12 13:53:36 +01009320 init_rwsem(&ei->dio_sem);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009321
9322 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04009323}
9324
Josef Bacikaaedb552013-10-11 14:44:09 -04009325#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
9326void btrfs_test_destroy_inode(struct inode *inode)
9327{
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02009328 btrfs_drop_extent_cache(BTRFS_I(inode), 0, (u64)-1, 0);
Josef Bacikaaedb552013-10-11 14:44:09 -04009329 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
9330}
9331#endif
9332
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11009333static void btrfs_i_callback(struct rcu_head *head)
9334{
9335 struct inode *inode = container_of(head, struct inode, i_rcu);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11009336 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
9337}
9338
Chris Mason39279cc2007-06-12 06:35:45 -04009339void btrfs_destroy_inode(struct inode *inode)
9340{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009341 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009342 struct btrfs_ordered_extent *ordered;
Chris Mason5a3f23d2009-03-31 13:27:11 -04009343 struct btrfs_root *root = BTRFS_I(inode)->root;
9344
Al Virob3d9b7a2012-06-09 13:51:19 -04009345 WARN_ON(!hlist_empty(&inode->i_dentry));
Chris Mason39279cc2007-06-12 06:35:45 -04009346 WARN_ON(inode->i_data.nrpages);
Josef Bacik69fe2d72017-10-19 14:15:57 -04009347 WARN_ON(BTRFS_I(inode)->block_rsv.reserved);
9348 WARN_ON(BTRFS_I(inode)->block_rsv.size);
Josef Bacik9e0baf62011-07-15 15:16:44 +00009349 WARN_ON(BTRFS_I(inode)->outstanding_extents);
Josef Bacik7709cde2011-08-04 10:25:02 -04009350 WARN_ON(BTRFS_I(inode)->delalloc_bytes);
Filipe Mananaa7e3b972017-04-03 10:45:46 +01009351 WARN_ON(BTRFS_I(inode)->new_delalloc_bytes);
Josef Bacik7709cde2011-08-04 10:25:02 -04009352 WARN_ON(BTRFS_I(inode)->csum_bytes);
Wang Shilong47059d92014-07-03 18:22:07 +08009353 WARN_ON(BTRFS_I(inode)->defrag_bytes);
Chris Mason39279cc2007-06-12 06:35:45 -04009354
Chris Mason5a3f23d2009-03-31 13:27:11 -04009355 /*
Josef Bacika6dbd422009-11-11 15:53:34 -05009356 * This can happen where we create an inode, but somebody else also
9357 * created the same inode and we need to destroy the one we already
9358 * created.
9359 */
9360 if (!root)
9361 goto free;
9362
Josef Bacik8a35d952012-05-23 14:26:42 -04009363 if (test_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
9364 &BTRFS_I(inode)->runtime_flags)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009365 btrfs_info(fs_info, "inode %llu still on the orphan list",
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009366 btrfs_ino(BTRFS_I(inode)));
Josef Bacik8a35d952012-05-23 14:26:42 -04009367 atomic_dec(&root->orphan_inodes);
Josef Bacik7b128762008-07-24 12:17:14 -04009368 }
Josef Bacik7b128762008-07-24 12:17:14 -04009369
Chris Masond3977122009-01-05 21:25:51 -05009370 while (1) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04009371 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
9372 if (!ordered)
9373 break;
9374 else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009375 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04009376 "found ordered extent %llu %llu on inode cleanup",
9377 ordered->file_offset, ordered->len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009378 btrfs_remove_ordered_extent(inode, ordered);
9379 btrfs_put_ordered_extent(ordered);
9380 btrfs_put_ordered_extent(ordered);
9381 }
9382 }
Qu Wenruo56fa9d02015-10-13 09:53:10 +08009383 btrfs_qgroup_check_reserved_leak(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009384 inode_tree_del(inode);
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02009385 btrfs_drop_extent_cache(BTRFS_I(inode), 0, (u64)-1, 0);
Josef Bacika6dbd422009-11-11 15:53:34 -05009386free:
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11009387 call_rcu(&inode->i_rcu, btrfs_i_callback);
Chris Mason39279cc2007-06-12 06:35:45 -04009388}
9389
Al Viro45321ac2010-06-07 13:43:19 -04009390int btrfs_drop_inode(struct inode *inode)
Yan, Zheng76dda932009-09-21 16:00:26 -04009391{
9392 struct btrfs_root *root = BTRFS_I(inode)->root;
Al Viro45321ac2010-06-07 13:43:19 -04009393
Naohiro Aota6379ef92013-06-06 09:56:34 +00009394 if (root == NULL)
9395 return 1;
9396
Liu Bofa6ac872013-02-20 14:10:23 +00009397 /* the snap/subvol tree is on deleting */
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02009398 if (btrfs_root_refs(&root->root_item) == 0)
Al Viro45321ac2010-06-07 13:43:19 -04009399 return 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04009400 else
Al Viro45321ac2010-06-07 13:43:19 -04009401 return generic_drop_inode(inode);
Yan, Zheng76dda932009-09-21 16:00:26 -04009402}
9403
Sven Wegener0ee0fda2008-07-30 16:54:26 -04009404static void init_once(void *foo)
Chris Mason39279cc2007-06-12 06:35:45 -04009405{
9406 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
9407
9408 inode_init_once(&ei->vfs_inode);
9409}
9410
David Sterbae67c7182018-02-19 17:24:18 +01009411void __cold btrfs_destroy_cachep(void)
Chris Mason39279cc2007-06-12 06:35:45 -04009412{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +10009413 /*
9414 * Make sure all delayed rcu free inodes are flushed before we
9415 * destroy cache.
9416 */
9417 rcu_barrier();
Kinglong Mee5598e902016-01-29 21:36:35 +08009418 kmem_cache_destroy(btrfs_inode_cachep);
9419 kmem_cache_destroy(btrfs_trans_handle_cachep);
Kinglong Mee5598e902016-01-29 21:36:35 +08009420 kmem_cache_destroy(btrfs_path_cachep);
9421 kmem_cache_destroy(btrfs_free_space_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04009422}
9423
Liu Bof5c29bd2017-11-02 17:21:50 -06009424int __init btrfs_init_cachep(void)
Chris Mason39279cc2007-06-12 06:35:45 -04009425{
David Sterba837e1972012-09-07 03:00:48 -06009426 btrfs_inode_cachep = kmem_cache_create("btrfs_inode",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009427 sizeof(struct btrfs_inode), 0,
Vladimir Davydov5d097052016-01-14 15:18:21 -08009428 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD | SLAB_ACCOUNT,
9429 init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04009430 if (!btrfs_inode_cachep)
9431 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009432
David Sterba837e1972012-09-07 03:00:48 -06009433 btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009434 sizeof(struct btrfs_trans_handle), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +03009435 SLAB_TEMPORARY | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04009436 if (!btrfs_trans_handle_cachep)
9437 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009438
David Sterba837e1972012-09-07 03:00:48 -06009439 btrfs_path_cachep = kmem_cache_create("btrfs_path",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009440 sizeof(struct btrfs_path), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +03009441 SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04009442 if (!btrfs_path_cachep)
9443 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009444
David Sterba837e1972012-09-07 03:00:48 -06009445 btrfs_free_space_cachep = kmem_cache_create("btrfs_free_space",
Josef Bacikdc89e982011-01-28 17:05:48 -05009446 sizeof(struct btrfs_free_space), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +03009447 SLAB_MEM_SPREAD, NULL);
Josef Bacikdc89e982011-01-28 17:05:48 -05009448 if (!btrfs_free_space_cachep)
9449 goto fail;
9450
Chris Mason39279cc2007-06-12 06:35:45 -04009451 return 0;
9452fail:
9453 btrfs_destroy_cachep();
9454 return -ENOMEM;
9455}
9456
David Howellsa528d352017-01-31 16:46:22 +00009457static int btrfs_getattr(const struct path *path, struct kstat *stat,
9458 u32 request_mask, unsigned int flags)
Chris Mason39279cc2007-06-12 06:35:45 -04009459{
Miao Xiedf0af1a2013-01-29 10:11:59 +00009460 u64 delalloc_bytes;
David Howellsa528d352017-01-31 16:46:22 +00009461 struct inode *inode = d_inode(path->dentry);
David Sterbafadc0d82011-11-20 07:33:38 -05009462 u32 blocksize = inode->i_sb->s_blocksize;
Yonghong Song04a87e32017-05-12 15:07:43 -07009463 u32 bi_flags = BTRFS_I(inode)->flags;
9464
9465 stat->result_mask |= STATX_BTIME;
9466 stat->btime.tv_sec = BTRFS_I(inode)->i_otime.tv_sec;
9467 stat->btime.tv_nsec = BTRFS_I(inode)->i_otime.tv_nsec;
9468 if (bi_flags & BTRFS_INODE_APPEND)
9469 stat->attributes |= STATX_ATTR_APPEND;
9470 if (bi_flags & BTRFS_INODE_COMPRESS)
9471 stat->attributes |= STATX_ATTR_COMPRESSED;
9472 if (bi_flags & BTRFS_INODE_IMMUTABLE)
9473 stat->attributes |= STATX_ATTR_IMMUTABLE;
9474 if (bi_flags & BTRFS_INODE_NODUMP)
9475 stat->attributes |= STATX_ATTR_NODUMP;
9476
9477 stat->attributes_mask |= (STATX_ATTR_APPEND |
9478 STATX_ATTR_COMPRESSED |
9479 STATX_ATTR_IMMUTABLE |
9480 STATX_ATTR_NODUMP);
David Sterbafadc0d82011-11-20 07:33:38 -05009481
Chris Mason39279cc2007-06-12 06:35:45 -04009482 generic_fillattr(inode, stat);
Al Viro0ee5dc62011-07-07 15:44:25 -04009483 stat->dev = BTRFS_I(inode)->root->anon_dev;
Miao Xiedf0af1a2013-01-29 10:11:59 +00009484
9485 spin_lock(&BTRFS_I(inode)->lock);
Filipe Mananaa7e3b972017-04-03 10:45:46 +01009486 delalloc_bytes = BTRFS_I(inode)->new_delalloc_bytes;
Miao Xiedf0af1a2013-01-29 10:11:59 +00009487 spin_unlock(&BTRFS_I(inode)->lock);
David Sterbafadc0d82011-11-20 07:33:38 -05009488 stat->blocks = (ALIGN(inode_get_bytes(inode), blocksize) +
Miao Xiedf0af1a2013-01-29 10:11:59 +00009489 ALIGN(delalloc_bytes, blocksize)) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -04009490 return 0;
9491}
9492
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009493static int btrfs_rename_exchange(struct inode *old_dir,
9494 struct dentry *old_dentry,
9495 struct inode *new_dir,
9496 struct dentry *new_dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04009497{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009498 struct btrfs_fs_info *fs_info = btrfs_sb(old_dir->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04009499 struct btrfs_trans_handle *trans;
9500 struct btrfs_root *root = BTRFS_I(old_dir)->root;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009501 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009502 struct inode *new_inode = new_dentry->d_inode;
9503 struct inode *old_inode = old_dentry->d_inode;
Deepa Dinamanic2050a42016-09-14 07:48:06 -07009504 struct timespec ctime = current_time(old_inode);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009505 struct dentry *parent;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009506 u64 old_ino = btrfs_ino(BTRFS_I(old_inode));
9507 u64 new_ino = btrfs_ino(BTRFS_I(new_inode));
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009508 u64 old_idx = 0;
9509 u64 new_idx = 0;
9510 u64 root_objectid;
9511 int ret;
Filipe Manana86e8aa02016-05-05 02:02:27 +01009512 bool root_log_pinned = false;
9513 bool dest_log_pinned = false;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009514
9515 /* we only allow rename subvolume link between subvolumes */
9516 if (old_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
9517 return -EXDEV;
9518
9519 /* close the race window with snapshot create/destroy ioctl */
9520 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009521 down_read(&fs_info->subvol_sem);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009522 if (new_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009523 down_read(&fs_info->subvol_sem);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009524
9525 /*
9526 * We want to reserve the absolute worst case amount of items. So if
9527 * both inodes are subvols and we need to unlink them then that would
9528 * require 4 item modifications, but if they are both normal inodes it
9529 * would require 5 item modifications, so we'll assume their normal
9530 * inodes. So 5 * 2 is 10, plus 2 for the new links, so 12 total items
9531 * should cover the worst case number of items we'll modify.
9532 */
9533 trans = btrfs_start_transaction(root, 12);
9534 if (IS_ERR(trans)) {
9535 ret = PTR_ERR(trans);
9536 goto out_notrans;
9537 }
9538
9539 /*
9540 * We need to find a free sequence number both in the source and
9541 * in the destination directory for the exchange.
9542 */
Nikolay Borisov877574e2017-02-20 13:50:33 +02009543 ret = btrfs_set_inode_index(BTRFS_I(new_dir), &old_idx);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009544 if (ret)
9545 goto out_fail;
Nikolay Borisov877574e2017-02-20 13:50:33 +02009546 ret = btrfs_set_inode_index(BTRFS_I(old_dir), &new_idx);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009547 if (ret)
9548 goto out_fail;
9549
9550 BTRFS_I(old_inode)->dir_index = 0ULL;
9551 BTRFS_I(new_inode)->dir_index = 0ULL;
9552
9553 /* Reference for the source. */
9554 if (old_ino == BTRFS_FIRST_FREE_OBJECTID) {
9555 /* force full log commit if subvolume involved. */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009556 btrfs_set_log_full_commit(fs_info, trans);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009557 } else {
Filipe Manana376e5a52016-05-05 02:08:56 +01009558 btrfs_pin_log_trans(root);
9559 root_log_pinned = true;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009560 ret = btrfs_insert_inode_ref(trans, dest,
9561 new_dentry->d_name.name,
9562 new_dentry->d_name.len,
9563 old_ino,
David Sterbaf85b7372017-01-20 14:54:07 +01009564 btrfs_ino(BTRFS_I(new_dir)),
9565 old_idx);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009566 if (ret)
9567 goto out_fail;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009568 }
9569
9570 /* And now for the dest. */
9571 if (new_ino == BTRFS_FIRST_FREE_OBJECTID) {
9572 /* force full log commit if subvolume involved. */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009573 btrfs_set_log_full_commit(fs_info, trans);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009574 } else {
Filipe Manana376e5a52016-05-05 02:08:56 +01009575 btrfs_pin_log_trans(dest);
9576 dest_log_pinned = true;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009577 ret = btrfs_insert_inode_ref(trans, root,
9578 old_dentry->d_name.name,
9579 old_dentry->d_name.len,
9580 new_ino,
David Sterbaf85b7372017-01-20 14:54:07 +01009581 btrfs_ino(BTRFS_I(old_dir)),
9582 new_idx);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009583 if (ret)
9584 goto out_fail;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009585 }
9586
9587 /* Update inode version and ctime/mtime. */
9588 inode_inc_iversion(old_dir);
9589 inode_inc_iversion(new_dir);
9590 inode_inc_iversion(old_inode);
9591 inode_inc_iversion(new_inode);
9592 old_dir->i_ctime = old_dir->i_mtime = ctime;
9593 new_dir->i_ctime = new_dir->i_mtime = ctime;
9594 old_inode->i_ctime = ctime;
9595 new_inode->i_ctime = ctime;
9596
9597 if (old_dentry->d_parent != new_dentry->d_parent) {
David Sterbaf85b7372017-01-20 14:54:07 +01009598 btrfs_record_unlink_dir(trans, BTRFS_I(old_dir),
9599 BTRFS_I(old_inode), 1);
9600 btrfs_record_unlink_dir(trans, BTRFS_I(new_dir),
9601 BTRFS_I(new_inode), 1);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009602 }
9603
9604 /* src is a subvolume */
9605 if (old_ino == BTRFS_FIRST_FREE_OBJECTID) {
9606 root_objectid = BTRFS_I(old_inode)->root->root_key.objectid;
9607 ret = btrfs_unlink_subvol(trans, root, old_dir,
9608 root_objectid,
9609 old_dentry->d_name.name,
9610 old_dentry->d_name.len);
9611 } else { /* src is an inode */
Nikolay Borisov4ec59342017-01-18 00:31:44 +02009612 ret = __btrfs_unlink_inode(trans, root, BTRFS_I(old_dir),
9613 BTRFS_I(old_dentry->d_inode),
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009614 old_dentry->d_name.name,
9615 old_dentry->d_name.len);
9616 if (!ret)
9617 ret = btrfs_update_inode(trans, root, old_inode);
9618 }
9619 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009620 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009621 goto out_fail;
9622 }
9623
9624 /* dest is a subvolume */
9625 if (new_ino == BTRFS_FIRST_FREE_OBJECTID) {
9626 root_objectid = BTRFS_I(new_inode)->root->root_key.objectid;
9627 ret = btrfs_unlink_subvol(trans, dest, new_dir,
9628 root_objectid,
9629 new_dentry->d_name.name,
9630 new_dentry->d_name.len);
9631 } else { /* dest is an inode */
Nikolay Borisov4ec59342017-01-18 00:31:44 +02009632 ret = __btrfs_unlink_inode(trans, dest, BTRFS_I(new_dir),
9633 BTRFS_I(new_dentry->d_inode),
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009634 new_dentry->d_name.name,
9635 new_dentry->d_name.len);
9636 if (!ret)
9637 ret = btrfs_update_inode(trans, dest, new_inode);
9638 }
9639 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009640 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009641 goto out_fail;
9642 }
9643
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02009644 ret = btrfs_add_link(trans, BTRFS_I(new_dir), BTRFS_I(old_inode),
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009645 new_dentry->d_name.name,
9646 new_dentry->d_name.len, 0, old_idx);
9647 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009648 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009649 goto out_fail;
9650 }
9651
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02009652 ret = btrfs_add_link(trans, BTRFS_I(old_dir), BTRFS_I(new_inode),
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009653 old_dentry->d_name.name,
9654 old_dentry->d_name.len, 0, new_idx);
9655 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009656 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009657 goto out_fail;
9658 }
9659
9660 if (old_inode->i_nlink == 1)
9661 BTRFS_I(old_inode)->dir_index = old_idx;
9662 if (new_inode->i_nlink == 1)
9663 BTRFS_I(new_inode)->dir_index = new_idx;
9664
Filipe Manana86e8aa02016-05-05 02:02:27 +01009665 if (root_log_pinned) {
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009666 parent = new_dentry->d_parent;
David Sterbaf85b7372017-01-20 14:54:07 +01009667 btrfs_log_new_name(trans, BTRFS_I(old_inode), BTRFS_I(old_dir),
9668 parent);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009669 btrfs_end_log_trans(root);
Filipe Manana86e8aa02016-05-05 02:02:27 +01009670 root_log_pinned = false;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009671 }
Filipe Manana86e8aa02016-05-05 02:02:27 +01009672 if (dest_log_pinned) {
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009673 parent = old_dentry->d_parent;
David Sterbaf85b7372017-01-20 14:54:07 +01009674 btrfs_log_new_name(trans, BTRFS_I(new_inode), BTRFS_I(new_dir),
9675 parent);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009676 btrfs_end_log_trans(dest);
Filipe Manana86e8aa02016-05-05 02:02:27 +01009677 dest_log_pinned = false;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009678 }
9679out_fail:
Filipe Manana86e8aa02016-05-05 02:02:27 +01009680 /*
9681 * If we have pinned a log and an error happened, we unpin tasks
9682 * trying to sync the log and force them to fallback to a transaction
9683 * commit if the log currently contains any of the inodes involved in
9684 * this rename operation (to ensure we do not persist a log with an
9685 * inconsistent state for any of these inodes or leading to any
9686 * inconsistencies when replayed). If the transaction was aborted, the
9687 * abortion reason is propagated to userspace when attempting to commit
9688 * the transaction. If the log does not contain any of these inodes, we
9689 * allow the tasks to sync it.
9690 */
9691 if (ret && (root_log_pinned || dest_log_pinned)) {
Nikolay Borisov0f8939b2017-01-18 00:31:30 +02009692 if (btrfs_inode_in_log(BTRFS_I(old_dir), fs_info->generation) ||
9693 btrfs_inode_in_log(BTRFS_I(new_dir), fs_info->generation) ||
9694 btrfs_inode_in_log(BTRFS_I(old_inode), fs_info->generation) ||
Filipe Manana86e8aa02016-05-05 02:02:27 +01009695 (new_inode &&
Nikolay Borisov0f8939b2017-01-18 00:31:30 +02009696 btrfs_inode_in_log(BTRFS_I(new_inode), fs_info->generation)))
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009697 btrfs_set_log_full_commit(fs_info, trans);
Filipe Manana86e8aa02016-05-05 02:02:27 +01009698
9699 if (root_log_pinned) {
9700 btrfs_end_log_trans(root);
9701 root_log_pinned = false;
9702 }
9703 if (dest_log_pinned) {
9704 btrfs_end_log_trans(dest);
9705 dest_log_pinned = false;
9706 }
9707 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009708 ret = btrfs_end_transaction(trans);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009709out_notrans:
9710 if (new_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009711 up_read(&fs_info->subvol_sem);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009712 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009713 up_read(&fs_info->subvol_sem);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009714
9715 return ret;
9716}
9717
9718static int btrfs_whiteout_for_rename(struct btrfs_trans_handle *trans,
9719 struct btrfs_root *root,
9720 struct inode *dir,
9721 struct dentry *dentry)
9722{
9723 int ret;
9724 struct inode *inode;
9725 u64 objectid;
9726 u64 index;
9727
9728 ret = btrfs_find_free_ino(root, &objectid);
9729 if (ret)
9730 return ret;
9731
9732 inode = btrfs_new_inode(trans, root, dir,
9733 dentry->d_name.name,
9734 dentry->d_name.len,
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009735 btrfs_ino(BTRFS_I(dir)),
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009736 objectid,
9737 S_IFCHR | WHITEOUT_MODE,
9738 &index);
9739
9740 if (IS_ERR(inode)) {
9741 ret = PTR_ERR(inode);
9742 return ret;
9743 }
9744
9745 inode->i_op = &btrfs_special_inode_operations;
9746 init_special_inode(inode, inode->i_mode,
9747 WHITEOUT_DEV);
9748
9749 ret = btrfs_init_inode_security(trans, inode, dir,
9750 &dentry->d_name);
9751 if (ret)
Filipe Mananac9901612016-05-05 01:41:57 +01009752 goto out;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009753
Nikolay Borisovcef415a2017-02-20 13:51:09 +02009754 ret = btrfs_add_nondir(trans, BTRFS_I(dir), dentry,
9755 BTRFS_I(inode), 0, index);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009756 if (ret)
Filipe Mananac9901612016-05-05 01:41:57 +01009757 goto out;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009758
9759 ret = btrfs_update_inode(trans, root, inode);
Filipe Mananac9901612016-05-05 01:41:57 +01009760out:
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009761 unlock_new_inode(inode);
Filipe Mananac9901612016-05-05 01:41:57 +01009762 if (ret)
9763 inode_dec_link_count(inode);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009764 iput(inode);
9765
Filipe Mananac9901612016-05-05 01:41:57 +01009766 return ret;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009767}
9768
Chris Mason39279cc2007-06-12 06:35:45 -04009769static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry,
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009770 struct inode *new_dir, struct dentry *new_dentry,
9771 unsigned int flags)
Chris Mason39279cc2007-06-12 06:35:45 -04009772{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009773 struct btrfs_fs_info *fs_info = btrfs_sb(old_dir->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04009774 struct btrfs_trans_handle *trans;
Filipe Manana5062af32016-05-05 10:26:26 +01009775 unsigned int trans_num_items;
Chris Mason39279cc2007-06-12 06:35:45 -04009776 struct btrfs_root *root = BTRFS_I(old_dir)->root;
9777 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
David Howells2b0143b2015-03-17 22:25:59 +00009778 struct inode *new_inode = d_inode(new_dentry);
9779 struct inode *old_inode = d_inode(old_dentry);
Chris Mason00e4e6b2008-08-05 11:18:09 -04009780 u64 index = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009781 u64 root_objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04009782 int ret;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009783 u64 old_ino = btrfs_ino(BTRFS_I(old_inode));
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009784 bool log_pinned = false;
Chris Mason39279cc2007-06-12 06:35:45 -04009785
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009786 if (btrfs_ino(BTRFS_I(new_dir)) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Yan, Zhengf679a842009-09-24 09:17:31 -04009787 return -EPERM;
9788
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009789 /* we only allow rename subvolume link between subvolumes */
Li Zefan33345d012011-04-20 10:31:50 +08009790 if (old_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
Chris Mason3394e162008-11-17 20:42:26 -05009791 return -EXDEV;
9792
Li Zefan33345d012011-04-20 10:31:50 +08009793 if (old_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID ||
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009794 (new_inode && btrfs_ino(BTRFS_I(new_inode)) == BTRFS_FIRST_FREE_OBJECTID))
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009795 return -ENOTEMPTY;
9796
Chris Mason39279cc2007-06-12 06:35:45 -04009797 if (S_ISDIR(old_inode->i_mode) && new_inode &&
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009798 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Chris Mason39279cc2007-06-12 06:35:45 -04009799 return -ENOTEMPTY;
Chris Mason9c520572012-12-17 14:26:57 -05009800
9801
9802 /* check for collisions, even if the name isn't there */
Josef Bacik4871c152013-10-09 12:24:04 -04009803 ret = btrfs_check_dir_item_collision(dest, new_dir->i_ino,
Chris Mason9c520572012-12-17 14:26:57 -05009804 new_dentry->d_name.name,
9805 new_dentry->d_name.len);
9806
9807 if (ret) {
9808 if (ret == -EEXIST) {
9809 /* we shouldn't get
9810 * eexist without a new_inode */
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05309811 if (WARN_ON(!new_inode)) {
Chris Mason9c520572012-12-17 14:26:57 -05009812 return ret;
9813 }
9814 } else {
9815 /* maybe -EOVERFLOW */
9816 return ret;
9817 }
9818 }
9819 ret = 0;
9820
Chris Mason5a3f23d2009-03-31 13:27:11 -04009821 /*
Chris Mason8d875f92014-08-12 10:47:42 -07009822 * we're using rename to replace one file with another. Start IO on it
9823 * now so we don't add too much work to the end of the transaction
Chris Mason5a3f23d2009-03-31 13:27:11 -04009824 */
Chris Mason8d875f92014-08-12 10:47:42 -07009825 if (new_inode && S_ISREG(old_inode->i_mode) && new_inode->i_size)
Chris Mason5a3f23d2009-03-31 13:27:11 -04009826 filemap_flush(old_inode->i_mapping);
9827
Yan, Zheng76dda932009-09-21 16:00:26 -04009828 /* close the racy window with snapshot create/destroy ioctl */
Li Zefan33345d012011-04-20 10:31:50 +08009829 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009830 down_read(&fs_info->subvol_sem);
Yan, Zhenga22285a2010-05-16 10:48:46 -04009831 /*
9832 * We want to reserve the absolute worst case amount of items. So if
9833 * both inodes are subvols and we need to unlink them then that would
9834 * require 4 item modifications, but if they are both normal inodes it
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009835 * would require 5 item modifications, so we'll assume they are normal
Yan, Zhenga22285a2010-05-16 10:48:46 -04009836 * inodes. So 5 * 2 is 10, plus 1 for the new link, so 11 total items
9837 * should cover the worst case number of items we'll modify.
Filipe Manana5062af32016-05-05 10:26:26 +01009838 * If our rename has the whiteout flag, we need more 5 units for the
9839 * new inode (1 inode item, 1 inode ref, 2 dir items and 1 xattr item
9840 * when selinux is enabled).
Yan, Zhenga22285a2010-05-16 10:48:46 -04009841 */
Filipe Manana5062af32016-05-05 10:26:26 +01009842 trans_num_items = 11;
9843 if (flags & RENAME_WHITEOUT)
9844 trans_num_items += 5;
9845 trans = btrfs_start_transaction(root, trans_num_items);
Johann Lombardib44c59a2011-03-31 13:23:47 +00009846 if (IS_ERR(trans)) {
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009847 ret = PTR_ERR(trans);
9848 goto out_notrans;
9849 }
Chris Mason5f39d392007-10-15 16:14:19 -04009850
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009851 if (dest != root)
9852 btrfs_record_root_in_trans(trans, dest);
9853
Nikolay Borisov877574e2017-02-20 13:50:33 +02009854 ret = btrfs_set_inode_index(BTRFS_I(new_dir), &index);
Yan, Zhenga5719522009-09-24 09:17:31 -04009855 if (ret)
9856 goto out_fail;
Chris Mason5a3f23d2009-03-31 13:27:11 -04009857
Miao Xie67de1172013-12-26 13:07:06 +08009858 BTRFS_I(old_inode)->dir_index = 0ULL;
Li Zefan33345d012011-04-20 10:31:50 +08009859 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009860 /* force full log commit if subvolume involved. */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009861 btrfs_set_log_full_commit(fs_info, trans);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009862 } else {
Filipe Mananac4aba952016-04-29 13:14:42 +01009863 btrfs_pin_log_trans(root);
9864 log_pinned = true;
Yan, Zhenga5719522009-09-24 09:17:31 -04009865 ret = btrfs_insert_inode_ref(trans, dest,
9866 new_dentry->d_name.name,
9867 new_dentry->d_name.len,
Li Zefan33345d012011-04-20 10:31:50 +08009868 old_ino,
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009869 btrfs_ino(BTRFS_I(new_dir)), index);
Yan, Zhenga5719522009-09-24 09:17:31 -04009870 if (ret)
9871 goto out_fail;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009872 }
Chris Mason5a3f23d2009-03-31 13:27:11 -04009873
Josef Bacik0c4d2d92012-04-05 15:03:02 -04009874 inode_inc_iversion(old_dir);
9875 inode_inc_iversion(new_dir);
9876 inode_inc_iversion(old_inode);
Deepa Dinamani04b285f2016-02-06 23:57:21 -08009877 old_dir->i_ctime = old_dir->i_mtime =
9878 new_dir->i_ctime = new_dir->i_mtime =
Deepa Dinamanic2050a42016-09-14 07:48:06 -07009879 old_inode->i_ctime = current_time(old_dir);
Chris Mason5f39d392007-10-15 16:14:19 -04009880
Chris Mason12fcfd22009-03-24 10:24:20 -04009881 if (old_dentry->d_parent != new_dentry->d_parent)
David Sterbaf85b7372017-01-20 14:54:07 +01009882 btrfs_record_unlink_dir(trans, BTRFS_I(old_dir),
9883 BTRFS_I(old_inode), 1);
Chris Mason12fcfd22009-03-24 10:24:20 -04009884
Li Zefan33345d012011-04-20 10:31:50 +08009885 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009886 root_objectid = BTRFS_I(old_inode)->root->root_key.objectid;
9887 ret = btrfs_unlink_subvol(trans, root, old_dir, root_objectid,
9888 old_dentry->d_name.name,
9889 old_dentry->d_name.len);
9890 } else {
Nikolay Borisov4ec59342017-01-18 00:31:44 +02009891 ret = __btrfs_unlink_inode(trans, root, BTRFS_I(old_dir),
9892 BTRFS_I(d_inode(old_dentry)),
Al Viro92986792011-03-04 17:14:37 +00009893 old_dentry->d_name.name,
9894 old_dentry->d_name.len);
9895 if (!ret)
9896 ret = btrfs_update_inode(trans, root, old_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009897 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009898 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009899 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009900 goto out_fail;
9901 }
Chris Mason39279cc2007-06-12 06:35:45 -04009902
9903 if (new_inode) {
Josef Bacik0c4d2d92012-04-05 15:03:02 -04009904 inode_inc_iversion(new_inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -07009905 new_inode->i_ctime = current_time(new_inode);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009906 if (unlikely(btrfs_ino(BTRFS_I(new_inode)) ==
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009907 BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
9908 root_objectid = BTRFS_I(new_inode)->location.objectid;
9909 ret = btrfs_unlink_subvol(trans, dest, new_dir,
9910 root_objectid,
9911 new_dentry->d_name.name,
9912 new_dentry->d_name.len);
9913 BUG_ON(new_inode->i_nlink == 0);
9914 } else {
Nikolay Borisov4ec59342017-01-18 00:31:44 +02009915 ret = btrfs_unlink_inode(trans, dest, BTRFS_I(new_dir),
9916 BTRFS_I(d_inode(new_dentry)),
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009917 new_dentry->d_name.name,
9918 new_dentry->d_name.len);
9919 }
Josef Bacik4ef31a42013-08-13 14:10:08 -04009920 if (!ret && new_inode->i_nlink == 0)
Nikolay Borisov73f2e542017-02-20 13:50:59 +02009921 ret = btrfs_orphan_add(trans,
9922 BTRFS_I(d_inode(new_dentry)));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009923 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009924 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009925 goto out_fail;
9926 }
Chris Mason39279cc2007-06-12 06:35:45 -04009927 }
Josef Bacikaec74772008-07-24 12:12:38 -04009928
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02009929 ret = btrfs_add_link(trans, BTRFS_I(new_dir), BTRFS_I(old_inode),
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009930 new_dentry->d_name.name,
Yan, Zhenga5719522009-09-24 09:17:31 -04009931 new_dentry->d_name.len, 0, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009932 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009933 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009934 goto out_fail;
9935 }
Chris Mason39279cc2007-06-12 06:35:45 -04009936
Miao Xie67de1172013-12-26 13:07:06 +08009937 if (old_inode->i_nlink == 1)
9938 BTRFS_I(old_inode)->dir_index = index;
9939
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009940 if (log_pinned) {
Al Viro10d9f302011-07-16 23:09:10 -04009941 struct dentry *parent = new_dentry->d_parent;
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009942
David Sterbaf85b7372017-01-20 14:54:07 +01009943 btrfs_log_new_name(trans, BTRFS_I(old_inode), BTRFS_I(old_dir),
9944 parent);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009945 btrfs_end_log_trans(root);
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009946 log_pinned = false;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009947 }
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009948
9949 if (flags & RENAME_WHITEOUT) {
9950 ret = btrfs_whiteout_for_rename(trans, root, old_dir,
9951 old_dentry);
9952
9953 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009954 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009955 goto out_fail;
9956 }
Chris Mason12fcfd22009-03-24 10:24:20 -04009957 }
Chris Mason39279cc2007-06-12 06:35:45 -04009958out_fail:
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009959 /*
9960 * If we have pinned the log and an error happened, we unpin tasks
9961 * trying to sync the log and force them to fallback to a transaction
9962 * commit if the log currently contains any of the inodes involved in
9963 * this rename operation (to ensure we do not persist a log with an
9964 * inconsistent state for any of these inodes or leading to any
9965 * inconsistencies when replayed). If the transaction was aborted, the
9966 * abortion reason is propagated to userspace when attempting to commit
9967 * the transaction. If the log does not contain any of these inodes, we
9968 * allow the tasks to sync it.
9969 */
9970 if (ret && log_pinned) {
Nikolay Borisov0f8939b2017-01-18 00:31:30 +02009971 if (btrfs_inode_in_log(BTRFS_I(old_dir), fs_info->generation) ||
9972 btrfs_inode_in_log(BTRFS_I(new_dir), fs_info->generation) ||
9973 btrfs_inode_in_log(BTRFS_I(old_inode), fs_info->generation) ||
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009974 (new_inode &&
Nikolay Borisov0f8939b2017-01-18 00:31:30 +02009975 btrfs_inode_in_log(BTRFS_I(new_inode), fs_info->generation)))
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009976 btrfs_set_log_full_commit(fs_info, trans);
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009977
9978 btrfs_end_log_trans(root);
9979 log_pinned = false;
9980 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009981 btrfs_end_transaction(trans);
Johann Lombardib44c59a2011-03-31 13:23:47 +00009982out_notrans:
Li Zefan33345d012011-04-20 10:31:50 +08009983 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009984 up_read(&fs_info->subvol_sem);
Josef Bacik9ed74f22009-09-11 16:12:44 -04009985
Chris Mason39279cc2007-06-12 06:35:45 -04009986 return ret;
9987}
9988
Miklos Szeredi80ace852014-07-23 15:15:32 +02009989static int btrfs_rename2(struct inode *old_dir, struct dentry *old_dentry,
9990 struct inode *new_dir, struct dentry *new_dentry,
9991 unsigned int flags)
9992{
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009993 if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE | RENAME_WHITEOUT))
Miklos Szeredi80ace852014-07-23 15:15:32 +02009994 return -EINVAL;
9995
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009996 if (flags & RENAME_EXCHANGE)
9997 return btrfs_rename_exchange(old_dir, old_dentry, new_dir,
9998 new_dentry);
9999
10000 return btrfs_rename(old_dir, old_dentry, new_dir, new_dentry, flags);
Miklos Szeredi80ace852014-07-23 15:15:32 +020010001}
10002
Miao Xie8ccf6f192012-10-25 09:28:04 +000010003static void btrfs_run_delalloc_work(struct btrfs_work *work)
10004{
10005 struct btrfs_delalloc_work *delalloc_work;
Josef Bacik9f23e282013-10-28 15:03:41 -040010006 struct inode *inode;
Miao Xie8ccf6f192012-10-25 09:28:04 +000010007
10008 delalloc_work = container_of(work, struct btrfs_delalloc_work,
10009 work);
Josef Bacik9f23e282013-10-28 15:03:41 -040010010 inode = delalloc_work->inode;
David Sterba30424602015-11-27 19:27:11 +010010011 filemap_flush(inode->i_mapping);
10012 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
10013 &BTRFS_I(inode)->runtime_flags))
Josef Bacik9f23e282013-10-28 15:03:41 -040010014 filemap_flush(inode->i_mapping);
Miao Xie8ccf6f192012-10-25 09:28:04 +000010015
10016 if (delalloc_work->delay_iput)
Josef Bacik9f23e282013-10-28 15:03:41 -040010017 btrfs_add_delayed_iput(inode);
Miao Xie8ccf6f192012-10-25 09:28:04 +000010018 else
Josef Bacik9f23e282013-10-28 15:03:41 -040010019 iput(inode);
Miao Xie8ccf6f192012-10-25 09:28:04 +000010020 complete(&delalloc_work->completion);
10021}
10022
10023struct btrfs_delalloc_work *btrfs_alloc_delalloc_work(struct inode *inode,
David Sterba651d4942015-11-27 19:24:16 +010010024 int delay_iput)
Miao Xie8ccf6f192012-10-25 09:28:04 +000010025{
10026 struct btrfs_delalloc_work *work;
10027
David Sterba100d5702015-12-08 14:39:32 +010010028 work = kmalloc(sizeof(*work), GFP_NOFS);
Miao Xie8ccf6f192012-10-25 09:28:04 +000010029 if (!work)
10030 return NULL;
10031
10032 init_completion(&work->completion);
10033 INIT_LIST_HEAD(&work->list);
10034 work->inode = inode;
Miao Xie8ccf6f192012-10-25 09:28:04 +000010035 work->delay_iput = delay_iput;
Liu Bo9e0af232014-08-15 23:36:53 +080010036 WARN_ON_ONCE(!inode);
10037 btrfs_init_work(&work->work, btrfs_flush_delalloc_helper,
10038 btrfs_run_delalloc_work, NULL, NULL);
Miao Xie8ccf6f192012-10-25 09:28:04 +000010039
10040 return work;
10041}
10042
10043void btrfs_wait_and_free_delalloc_work(struct btrfs_delalloc_work *work)
10044{
10045 wait_for_completion(&work->completion);
David Sterba100d5702015-12-08 14:39:32 +010010046 kfree(work);
Miao Xie8ccf6f192012-10-25 09:28:04 +000010047}
10048
Chris Masond352ac62008-09-29 15:18:18 -040010049/*
10050 * some fairly slow code that needs optimization. This walks the list
10051 * of all the inodes with pending delalloc and forces them to disk.
10052 */
Miao Xie6c255e62014-03-06 13:55:01 +080010053static int __start_delalloc_inodes(struct btrfs_root *root, int delay_iput,
10054 int nr)
Chris Masonea8c2812008-08-04 23:17:27 -040010055{
Chris Masonea8c2812008-08-04 23:17:27 -040010056 struct btrfs_inode *binode;
Zheng Yan5b21f2e2008-09-26 10:05:38 -040010057 struct inode *inode;
Miao Xie8ccf6f192012-10-25 09:28:04 +000010058 struct btrfs_delalloc_work *work, *next;
10059 struct list_head works;
Miao Xie1eafa6c2013-01-22 10:49:00 +000010060 struct list_head splice;
Miao Xie8ccf6f192012-10-25 09:28:04 +000010061 int ret = 0;
Chris Masonea8c2812008-08-04 23:17:27 -040010062
Miao Xie8ccf6f192012-10-25 09:28:04 +000010063 INIT_LIST_HEAD(&works);
Miao Xie1eafa6c2013-01-22 10:49:00 +000010064 INIT_LIST_HEAD(&splice);
Miao Xie63607cc2013-01-22 10:50:35 +000010065
Miao Xie573bfb72014-03-06 13:55:03 +080010066 mutex_lock(&root->delalloc_mutex);
Miao Xieeb73c1b2013-05-15 07:48:22 +000010067 spin_lock(&root->delalloc_lock);
10068 list_splice_init(&root->delalloc_inodes, &splice);
Miao Xie1eafa6c2013-01-22 10:49:00 +000010069 while (!list_empty(&splice)) {
10070 binode = list_entry(splice.next, struct btrfs_inode,
Chris Masonea8c2812008-08-04 23:17:27 -040010071 delalloc_inodes);
Miao Xie1eafa6c2013-01-22 10:49:00 +000010072
Miao Xieeb73c1b2013-05-15 07:48:22 +000010073 list_move_tail(&binode->delalloc_inodes,
10074 &root->delalloc_inodes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -040010075 inode = igrab(&binode->vfs_inode);
Miao Xiedf0af1a2013-01-29 10:11:59 +000010076 if (!inode) {
Miao Xieeb73c1b2013-05-15 07:48:22 +000010077 cond_resched_lock(&root->delalloc_lock);
Miao Xie1eafa6c2013-01-22 10:49:00 +000010078 continue;
Miao Xiedf0af1a2013-01-29 10:11:59 +000010079 }
Miao Xieeb73c1b2013-05-15 07:48:22 +000010080 spin_unlock(&root->delalloc_lock);
Miao Xie1eafa6c2013-01-22 10:49:00 +000010081
David Sterba651d4942015-11-27 19:24:16 +010010082 work = btrfs_alloc_delalloc_work(inode, delay_iput);
David Sterba5d99a9982014-09-29 19:20:37 +020010083 if (!work) {
Josef Bacikf4ab9ea2013-09-17 11:25:44 -040010084 if (delay_iput)
10085 btrfs_add_delayed_iput(inode);
10086 else
10087 iput(inode);
Miao Xie1eafa6c2013-01-22 10:49:00 +000010088 ret = -ENOMEM;
Wang Shilonga1ecaab2014-04-02 19:53:32 +080010089 goto out;
Zheng Yan5b21f2e2008-09-26 10:05:38 -040010090 }
Miao Xie1eafa6c2013-01-22 10:49:00 +000010091 list_add_tail(&work->list, &works);
Qu Wenruoa44903a2014-02-28 10:46:09 +080010092 btrfs_queue_work(root->fs_info->flush_workers,
10093 &work->work);
Miao Xie6c255e62014-03-06 13:55:01 +080010094 ret++;
10095 if (nr != -1 && ret >= nr)
Wang Shilonga1ecaab2014-04-02 19:53:32 +080010096 goto out;
Zheng Yan5b21f2e2008-09-26 10:05:38 -040010097 cond_resched();
Miao Xieeb73c1b2013-05-15 07:48:22 +000010098 spin_lock(&root->delalloc_lock);
Chris Masonea8c2812008-08-04 23:17:27 -040010099 }
Miao Xieeb73c1b2013-05-15 07:48:22 +000010100 spin_unlock(&root->delalloc_lock);
Chris Mason8c8bee12008-09-29 11:19:10 -040010101
Wang Shilonga1ecaab2014-04-02 19:53:32 +080010102out:
Miao Xie1eafa6c2013-01-22 10:49:00 +000010103 list_for_each_entry_safe(work, next, &works, list) {
10104 list_del_init(&work->list);
10105 btrfs_wait_and_free_delalloc_work(work);
10106 }
10107
Miao Xieeb73c1b2013-05-15 07:48:22 +000010108 if (!list_empty_careful(&splice)) {
10109 spin_lock(&root->delalloc_lock);
10110 list_splice_tail(&splice, &root->delalloc_inodes);
10111 spin_unlock(&root->delalloc_lock);
10112 }
Miao Xie573bfb72014-03-06 13:55:03 +080010113 mutex_unlock(&root->delalloc_mutex);
Miao Xieeb73c1b2013-05-15 07:48:22 +000010114 return ret;
10115}
10116
10117int btrfs_start_delalloc_inodes(struct btrfs_root *root, int delay_iput)
10118{
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010119 struct btrfs_fs_info *fs_info = root->fs_info;
Miao Xieeb73c1b2013-05-15 07:48:22 +000010120 int ret;
10121
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010122 if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state))
Miao Xieeb73c1b2013-05-15 07:48:22 +000010123 return -EROFS;
10124
Miao Xie6c255e62014-03-06 13:55:01 +080010125 ret = __start_delalloc_inodes(root, delay_iput, -1);
10126 if (ret > 0)
10127 ret = 0;
Miao Xieeb73c1b2013-05-15 07:48:22 +000010128 return ret;
10129}
10130
Miao Xie6c255e62014-03-06 13:55:01 +080010131int btrfs_start_delalloc_roots(struct btrfs_fs_info *fs_info, int delay_iput,
10132 int nr)
Miao Xieeb73c1b2013-05-15 07:48:22 +000010133{
10134 struct btrfs_root *root;
10135 struct list_head splice;
10136 int ret;
10137
Wang Shilong2c21b4d2014-01-14 19:42:20 +080010138 if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state))
Miao Xieeb73c1b2013-05-15 07:48:22 +000010139 return -EROFS;
10140
10141 INIT_LIST_HEAD(&splice);
10142
Miao Xie573bfb72014-03-06 13:55:03 +080010143 mutex_lock(&fs_info->delalloc_root_mutex);
Miao Xieeb73c1b2013-05-15 07:48:22 +000010144 spin_lock(&fs_info->delalloc_root_lock);
10145 list_splice_init(&fs_info->delalloc_roots, &splice);
Miao Xie6c255e62014-03-06 13:55:01 +080010146 while (!list_empty(&splice) && nr) {
Miao Xieeb73c1b2013-05-15 07:48:22 +000010147 root = list_first_entry(&splice, struct btrfs_root,
10148 delalloc_root);
10149 root = btrfs_grab_fs_root(root);
10150 BUG_ON(!root);
10151 list_move_tail(&root->delalloc_root,
10152 &fs_info->delalloc_roots);
10153 spin_unlock(&fs_info->delalloc_root_lock);
10154
Miao Xie6c255e62014-03-06 13:55:01 +080010155 ret = __start_delalloc_inodes(root, delay_iput, nr);
Miao Xieeb73c1b2013-05-15 07:48:22 +000010156 btrfs_put_fs_root(root);
Miao Xie6c255e62014-03-06 13:55:01 +080010157 if (ret < 0)
Miao Xieeb73c1b2013-05-15 07:48:22 +000010158 goto out;
10159
Miao Xie6c255e62014-03-06 13:55:01 +080010160 if (nr != -1) {
10161 nr -= ret;
10162 WARN_ON(nr < 0);
10163 }
Miao Xieeb73c1b2013-05-15 07:48:22 +000010164 spin_lock(&fs_info->delalloc_root_lock);
10165 }
10166 spin_unlock(&fs_info->delalloc_root_lock);
10167
Miao Xie6c255e62014-03-06 13:55:01 +080010168 ret = 0;
Miao Xie8ccf6f192012-10-25 09:28:04 +000010169out:
Miao Xie1eafa6c2013-01-22 10:49:00 +000010170 if (!list_empty_careful(&splice)) {
Miao Xieeb73c1b2013-05-15 07:48:22 +000010171 spin_lock(&fs_info->delalloc_root_lock);
10172 list_splice_tail(&splice, &fs_info->delalloc_roots);
10173 spin_unlock(&fs_info->delalloc_root_lock);
Miao Xie1eafa6c2013-01-22 10:49:00 +000010174 }
Miao Xie573bfb72014-03-06 13:55:03 +080010175 mutex_unlock(&fs_info->delalloc_root_mutex);
Miao Xie8ccf6f192012-10-25 09:28:04 +000010176 return ret;
Chris Masonea8c2812008-08-04 23:17:27 -040010177}
10178
Chris Mason39279cc2007-06-12 06:35:45 -040010179static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
10180 const char *symname)
10181{
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010182 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -040010183 struct btrfs_trans_handle *trans;
10184 struct btrfs_root *root = BTRFS_I(dir)->root;
10185 struct btrfs_path *path;
10186 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -050010187 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -040010188 int err;
10189 int drop_inode = 0;
10190 u64 objectid;
Dulshani Gunawardhana67871252013-10-31 10:33:04 +053010191 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -040010192 int name_len;
10193 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -040010194 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -040010195 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -040010196 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -040010197
Filipe David Borba Mananaf06becc2013-09-16 09:53:28 +010010198 name_len = strlen(symname);
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010199 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(fs_info))
Chris Mason39279cc2007-06-12 06:35:45 -040010200 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -050010201
Josef Bacik9ed74f22009-09-11 16:12:44 -040010202 /*
10203 * 2 items for inode item and ref
10204 * 2 items for dir items
Filipe Manana9269d122015-12-31 18:16:29 +000010205 * 1 item for updating parent inode item
10206 * 1 item for the inline extent item
Josef Bacik9ed74f22009-09-11 16:12:44 -040010207 * 1 item for xattr if selinux is on
10208 */
Filipe Manana9269d122015-12-31 18:16:29 +000010209 trans = btrfs_start_transaction(root, 7);
Yan, Zhenga22285a2010-05-16 10:48:46 -040010210 if (IS_ERR(trans))
10211 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -050010212
Li Zefan581bb052011-04-20 10:06:11 +080010213 err = btrfs_find_free_ino(root, &objectid);
10214 if (err)
10215 goto out_unlock;
10216
Josef Bacikaec74772008-07-24 12:12:38 -040010217 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
David Sterbaf85b7372017-01-20 14:54:07 +010010218 dentry->d_name.len, btrfs_ino(BTRFS_I(dir)),
10219 objectid, S_IFLNK|S_IRWXUGO, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -040010220 if (IS_ERR(inode)) {
10221 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -040010222 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -040010223 }
Chris Mason39279cc2007-06-12 06:35:45 -040010224
Casey Schauflerad19db72011-12-15 10:09:07 -050010225 /*
10226 * If the active LSM wants to access the inode during
10227 * d_instantiate it needs these. Smack checks to see
10228 * if the filesystem supports xattrs by looking at the
10229 * ops vector.
10230 */
10231 inode->i_fop = &btrfs_file_operations;
10232 inode->i_op = &btrfs_file_inode_operations;
Chris Masonb0d5d102014-09-08 13:08:51 -070010233 inode->i_mapping->a_ops = &btrfs_aops;
Chris Masonb0d5d102014-09-08 13:08:51 -070010234 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
10235
10236 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
10237 if (err)
10238 goto out_unlock_inode;
Casey Schauflerad19db72011-12-15 10:09:07 -050010239
Chris Mason39279cc2007-06-12 06:35:45 -040010240 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -070010241 if (!path) {
10242 err = -ENOMEM;
Chris Masonb0d5d102014-09-08 13:08:51 -070010243 goto out_unlock_inode;
Mark Fashehd8926bb2011-07-13 10:38:47 -070010244 }
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +020010245 key.objectid = btrfs_ino(BTRFS_I(inode));
Chris Mason39279cc2007-06-12 06:35:45 -040010246 key.offset = 0;
David Sterba962a2982014-06-04 18:41:45 +020010247 key.type = BTRFS_EXTENT_DATA_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -040010248 datasize = btrfs_file_extent_calc_inline_size(name_len);
10249 err = btrfs_insert_empty_item(trans, root, path, &key,
10250 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -040010251 if (err) {
Julia Lawallb0839162011-05-14 07:10:51 +000010252 btrfs_free_path(path);
Chris Masonb0d5d102014-09-08 13:08:51 -070010253 goto out_unlock_inode;
Chris Mason54aa1f42007-06-22 14:16:25 -040010254 }
Chris Mason5f39d392007-10-15 16:14:19 -040010255 leaf = path->nodes[0];
10256 ei = btrfs_item_ptr(leaf, path->slots[0],
10257 struct btrfs_file_extent_item);
10258 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
10259 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -040010260 BTRFS_FILE_EXTENT_INLINE);
Chris Masonc8b97812008-10-29 14:49:59 -040010261 btrfs_set_file_extent_encryption(leaf, ei, 0);
10262 btrfs_set_file_extent_compression(leaf, ei, 0);
10263 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
10264 btrfs_set_file_extent_ram_bytes(leaf, ei, name_len);
10265
Chris Mason39279cc2007-06-12 06:35:45 -040010266 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -040010267 write_extent_buffer(leaf, symname, ptr, name_len);
10268 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -040010269 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -040010270
Chris Mason39279cc2007-06-12 06:35:45 -040010271 inode->i_op = &btrfs_symlink_inode_operations;
Al Viro21fc61c2015-11-17 01:07:57 -050010272 inode_nohighmem(inode);
Chris Mason39279cc2007-06-12 06:35:45 -040010273 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Yan Zhengd899e052008-10-30 14:25:28 -040010274 inode_set_bytes(inode, name_len);
Nikolay Borisov6ef06d22017-02-20 13:50:34 +020010275 btrfs_i_size_write(BTRFS_I(inode), name_len);
Chris Mason54aa1f42007-06-22 14:16:25 -040010276 err = btrfs_update_inode(trans, root, inode);
Filipe Mananad50866d2015-12-31 18:08:24 +000010277 /*
10278 * Last step, add directory indexes for our symlink inode. This is the
10279 * last step to avoid extra cleanup of these indexes if an error happens
10280 * elsewhere above.
10281 */
10282 if (!err)
Nikolay Borisovcef415a2017-02-20 13:51:09 +020010283 err = btrfs_add_nondir(trans, BTRFS_I(dir), dentry,
10284 BTRFS_I(inode), 0, index);
Chris Masonb0d5d102014-09-08 13:08:51 -070010285 if (err) {
Chris Mason54aa1f42007-06-22 14:16:25 -040010286 drop_inode = 1;
Chris Masonb0d5d102014-09-08 13:08:51 -070010287 goto out_unlock_inode;
10288 }
10289
10290 unlock_new_inode(inode);
10291 d_instantiate(dentry, inode);
Chris Mason39279cc2007-06-12 06:35:45 -040010292
10293out_unlock:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010294 btrfs_end_transaction(trans);
Chris Mason39279cc2007-06-12 06:35:45 -040010295 if (drop_inode) {
10296 inode_dec_link_count(inode);
10297 iput(inode);
10298 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010299 btrfs_btree_balance_dirty(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -040010300 return err;
Chris Masonb0d5d102014-09-08 13:08:51 -070010301
10302out_unlock_inode:
10303 drop_inode = 1;
10304 unlock_new_inode(inode);
10305 goto out_unlock;
Chris Mason39279cc2007-06-12 06:35:45 -040010306}
Chris Mason16432982008-04-10 10:23:21 -040010307
Josef Bacik0af3d002010-06-21 14:48:16 -040010308static int __btrfs_prealloc_file_range(struct inode *inode, int mode,
10309 u64 start, u64 num_bytes, u64 min_size,
10310 loff_t actual_len, u64 *alloc_hint,
10311 struct btrfs_trans_handle *trans)
Yan Zhengd899e052008-10-30 14:25:28 -040010312{
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010313 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik5dc562c2012-08-17 13:14:17 -040010314 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
10315 struct extent_map *em;
Yan Zhengd899e052008-10-30 14:25:28 -040010316 struct btrfs_root *root = BTRFS_I(inode)->root;
10317 struct btrfs_key ins;
Yan Zhengd899e052008-10-30 14:25:28 -040010318 u64 cur_offset = start;
Josef Bacik55a61d12010-11-22 18:50:32 +000010319 u64 i_size;
Chris Mason154ea282013-03-05 11:11:26 -050010320 u64 cur_bytes;
Josef Bacik0b670dc2015-09-23 17:11:16 -040010321 u64 last_alloc = (u64)-1;
Yan Zhengd899e052008-10-30 14:25:28 -040010322 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -040010323 bool own_trans = true;
Wang Xiaoguang18513092016-07-25 15:51:40 +080010324 u64 end = start + num_bytes - 1;
Yan Zhengd899e052008-10-30 14:25:28 -040010325
Josef Bacik0af3d002010-06-21 14:48:16 -040010326 if (trans)
10327 own_trans = false;
Yan Zhengd899e052008-10-30 14:25:28 -040010328 while (num_bytes > 0) {
Josef Bacik0af3d002010-06-21 14:48:16 -040010329 if (own_trans) {
10330 trans = btrfs_start_transaction(root, 3);
10331 if (IS_ERR(trans)) {
10332 ret = PTR_ERR(trans);
10333 break;
10334 }
Yan Zhengd899e052008-10-30 14:25:28 -040010335 }
Yan, Zheng5a303d52009-11-12 09:34:52 +000010336
Byongho Leeee221842015-12-15 01:42:10 +090010337 cur_bytes = min_t(u64, num_bytes, SZ_256M);
Chris Mason154ea282013-03-05 11:11:26 -050010338 cur_bytes = max(cur_bytes, min_size);
Josef Bacik0b670dc2015-09-23 17:11:16 -040010339 /*
10340 * If we are severely fragmented we could end up with really
10341 * small allocations, so if the allocator is returning small
10342 * chunks lets make its job easier by only searching for those
10343 * sized chunks.
10344 */
10345 cur_bytes = min(cur_bytes, last_alloc);
Wang Xiaoguang18513092016-07-25 15:51:40 +080010346 ret = btrfs_reserve_extent(root, cur_bytes, cur_bytes,
10347 min_size, 0, *alloc_hint, &ins, 1, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +000010348 if (ret) {
Josef Bacik0af3d002010-06-21 14:48:16 -040010349 if (own_trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010350 btrfs_end_transaction(trans);
Yan, Zhenga22285a2010-05-16 10:48:46 -040010351 break;
Yan, Zheng5a303d52009-11-12 09:34:52 +000010352 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010353 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Yan, Zheng5a303d52009-11-12 09:34:52 +000010354
Josef Bacik0b670dc2015-09-23 17:11:16 -040010355 last_alloc = ins.offset;
Yan Zhengd899e052008-10-30 14:25:28 -040010356 ret = insert_reserved_file_extent(trans, inode,
10357 cur_offset, ins.objectid,
10358 ins.offset, ins.offset,
Yan, Zheng920bbbf2009-11-12 09:34:08 +000010359 ins.offset, 0, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -040010360 BTRFS_FILE_EXTENT_PREALLOC);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010361 if (ret) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010362 btrfs_free_reserved_extent(fs_info, ins.objectid,
Miao Xiee570fd22014-06-19 10:42:50 +080010363 ins.offset, 0);
Jeff Mahoney66642832016-06-10 18:19:25 -040010364 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010365 if (own_trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010366 btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010367 break;
10368 }
Dongsheng Yang31193212014-12-12 16:44:35 +080010369
Nikolay Borisovdcdbc052017-02-20 13:50:45 +020010370 btrfs_drop_extent_cache(BTRFS_I(inode), cur_offset,
Chris Masona1ed8352009-09-11 12:27:37 -040010371 cur_offset + ins.offset -1, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +000010372
Josef Bacik5dc562c2012-08-17 13:14:17 -040010373 em = alloc_extent_map();
10374 if (!em) {
10375 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
10376 &BTRFS_I(inode)->runtime_flags);
10377 goto next;
10378 }
10379
10380 em->start = cur_offset;
10381 em->orig_start = cur_offset;
10382 em->len = ins.offset;
10383 em->block_start = ins.objectid;
10384 em->block_len = ins.offset;
Josef Bacikb4939682012-12-03 10:31:19 -050010385 em->orig_block_len = ins.offset;
Josef Bacikcc95bef2013-04-04 14:31:27 -040010386 em->ram_bytes = ins.offset;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010387 em->bdev = fs_info->fs_devices->latest_bdev;
Josef Bacik5dc562c2012-08-17 13:14:17 -040010388 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
10389 em->generation = trans->transid;
10390
10391 while (1) {
10392 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -040010393 ret = add_extent_mapping(em_tree, em, 1);
Josef Bacik5dc562c2012-08-17 13:14:17 -040010394 write_unlock(&em_tree->lock);
10395 if (ret != -EEXIST)
10396 break;
Nikolay Borisovdcdbc052017-02-20 13:50:45 +020010397 btrfs_drop_extent_cache(BTRFS_I(inode), cur_offset,
Josef Bacik5dc562c2012-08-17 13:14:17 -040010398 cur_offset + ins.offset - 1,
10399 0);
10400 }
10401 free_extent_map(em);
10402next:
Yan Zhengd899e052008-10-30 14:25:28 -040010403 num_bytes -= ins.offset;
10404 cur_offset += ins.offset;
Yan, Zhengefa56462010-05-16 10:49:59 -040010405 *alloc_hint = ins.objectid + ins.offset;
Yan, Zheng5a303d52009-11-12 09:34:52 +000010406
Josef Bacik0c4d2d92012-04-05 15:03:02 -040010407 inode_inc_iversion(inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -070010408 inode->i_ctime = current_time(inode);
Christoph Hellwig6cbff002009-04-17 10:37:41 +020010409 BTRFS_I(inode)->flags |= BTRFS_INODE_PREALLOC;
Yan Zhengd899e052008-10-30 14:25:28 -040010410 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
Yan, Zhengefa56462010-05-16 10:49:59 -040010411 (actual_len > inode->i_size) &&
10412 (cur_offset > inode->i_size)) {
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +000010413 if (cur_offset > actual_len)
Josef Bacik55a61d12010-11-22 18:50:32 +000010414 i_size = actual_len;
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +000010415 else
Josef Bacik55a61d12010-11-22 18:50:32 +000010416 i_size = cur_offset;
10417 i_size_write(inode, i_size);
10418 btrfs_ordered_update_i_size(inode, i_size, NULL);
Yan, Zheng5a303d52009-11-12 09:34:52 +000010419 }
10420
Yan Zhengd899e052008-10-30 14:25:28 -040010421 ret = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010422
10423 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -040010424 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010425 if (own_trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010426 btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010427 break;
10428 }
Yan Zhengd899e052008-10-30 14:25:28 -040010429
Josef Bacik0af3d002010-06-21 14:48:16 -040010430 if (own_trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010431 btrfs_end_transaction(trans);
Yan, Zheng5a303d52009-11-12 09:34:52 +000010432 }
Wang Xiaoguang18513092016-07-25 15:51:40 +080010433 if (cur_offset < end)
Qu Wenruobc42bda2017-02-27 15:10:39 +080010434 btrfs_free_reserved_data_space(inode, NULL, cur_offset,
Wang Xiaoguang18513092016-07-25 15:51:40 +080010435 end - cur_offset + 1);
Yan Zhengd899e052008-10-30 14:25:28 -040010436 return ret;
10437}
10438
Josef Bacik0af3d002010-06-21 14:48:16 -040010439int btrfs_prealloc_file_range(struct inode *inode, int mode,
10440 u64 start, u64 num_bytes, u64 min_size,
10441 loff_t actual_len, u64 *alloc_hint)
10442{
10443 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
10444 min_size, actual_len, alloc_hint,
10445 NULL);
10446}
10447
10448int btrfs_prealloc_file_range_trans(struct inode *inode,
10449 struct btrfs_trans_handle *trans, int mode,
10450 u64 start, u64 num_bytes, u64 min_size,
10451 loff_t actual_len, u64 *alloc_hint)
10452{
10453 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
10454 min_size, actual_len, alloc_hint, trans);
10455}
10456
Chris Masone6dcd2d2008-07-17 12:53:50 -040010457static int btrfs_set_page_dirty(struct page *page)
10458{
Chris Masone6dcd2d2008-07-17 12:53:50 -040010459 return __set_page_dirty_nobuffers(page);
10460}
10461
Al Viro10556cb22011-06-20 19:28:19 -040010462static int btrfs_permission(struct inode *inode, int mask)
Yanfdebe2b2008-01-14 13:26:08 -050010463{
Li Zefanb83cc962010-12-20 16:04:08 +080010464 struct btrfs_root *root = BTRFS_I(inode)->root;
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +000010465 umode_t mode = inode->i_mode;
Li Zefanb83cc962010-12-20 16:04:08 +080010466
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +000010467 if (mask & MAY_WRITE &&
10468 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode))) {
10469 if (btrfs_root_readonly(root))
10470 return -EROFS;
10471 if (BTRFS_I(inode)->flags & BTRFS_INODE_READONLY)
10472 return -EACCES;
10473 }
Al Viro2830ba72011-06-20 19:16:29 -040010474 return generic_permission(inode, mask);
Yanfdebe2b2008-01-14 13:26:08 -050010475}
Chris Mason39279cc2007-06-12 06:35:45 -040010476
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010477static int btrfs_tmpfile(struct inode *dir, struct dentry *dentry, umode_t mode)
10478{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010479 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010480 struct btrfs_trans_handle *trans;
10481 struct btrfs_root *root = BTRFS_I(dir)->root;
10482 struct inode *inode = NULL;
10483 u64 objectid;
10484 u64 index;
10485 int ret = 0;
10486
10487 /*
10488 * 5 units required for adding orphan entry
10489 */
10490 trans = btrfs_start_transaction(root, 5);
10491 if (IS_ERR(trans))
10492 return PTR_ERR(trans);
10493
10494 ret = btrfs_find_free_ino(root, &objectid);
10495 if (ret)
10496 goto out;
10497
10498 inode = btrfs_new_inode(trans, root, dir, NULL, 0,
David Sterbaf85b7372017-01-20 14:54:07 +010010499 btrfs_ino(BTRFS_I(dir)), objectid, mode, &index);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010500 if (IS_ERR(inode)) {
10501 ret = PTR_ERR(inode);
10502 inode = NULL;
10503 goto out;
10504 }
10505
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010506 inode->i_fop = &btrfs_file_operations;
10507 inode->i_op = &btrfs_file_inode_operations;
10508
10509 inode->i_mapping->a_ops = &btrfs_aops;
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010510 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
10511
Chris Masonb0d5d102014-09-08 13:08:51 -070010512 ret = btrfs_init_inode_security(trans, inode, dir, NULL);
10513 if (ret)
10514 goto out_inode;
10515
10516 ret = btrfs_update_inode(trans, root, inode);
10517 if (ret)
10518 goto out_inode;
Nikolay Borisov73f2e542017-02-20 13:50:59 +020010519 ret = btrfs_orphan_add(trans, BTRFS_I(inode));
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010520 if (ret)
Chris Masonb0d5d102014-09-08 13:08:51 -070010521 goto out_inode;
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010522
Filipe Manana5762b5c2014-08-01 00:10:32 +010010523 /*
10524 * We set number of links to 0 in btrfs_new_inode(), and here we set
10525 * it to 1 because d_tmpfile() will issue a warning if the count is 0,
10526 * through:
10527 *
10528 * d_tmpfile() -> inode_dec_link_count() -> drop_nlink()
10529 */
10530 set_nlink(inode, 1);
Chris Masonb0d5d102014-09-08 13:08:51 -070010531 unlock_new_inode(inode);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010532 d_tmpfile(dentry, inode);
10533 mark_inode_dirty(inode);
10534
10535out:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010536 btrfs_end_transaction(trans);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010537 if (ret)
10538 iput(inode);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010539 btrfs_btree_balance_dirty(fs_info);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010540 return ret;
Chris Masonb0d5d102014-09-08 13:08:51 -070010541
10542out_inode:
10543 unlock_new_inode(inode);
10544 goto out;
10545
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010546}
10547
David Sterba20a7db82017-02-17 16:24:29 +010010548__attribute__((const))
Liu Bo9d0d1c82017-03-24 15:04:50 -070010549static int btrfs_readpage_io_failed_hook(struct page *page, int failed_mirror)
David Sterba20a7db82017-02-17 16:24:29 +010010550{
Liu Bo9d0d1c82017-03-24 15:04:50 -070010551 return -EAGAIN;
David Sterba20a7db82017-02-17 16:24:29 +010010552}
10553
Josef Bacikc6100a42017-05-05 11:57:13 -040010554static struct btrfs_fs_info *iotree_fs_info(void *private_data)
10555{
10556 struct inode *inode = private_data;
10557 return btrfs_sb(inode->i_sb);
10558}
10559
10560static void btrfs_check_extent_io_range(void *private_data, const char *caller,
10561 u64 start, u64 end)
10562{
10563 struct inode *inode = private_data;
10564 u64 isize;
10565
10566 isize = i_size_read(inode);
10567 if (end >= PAGE_SIZE && (end % 2) == 0 && end != isize - 1) {
10568 btrfs_debug_rl(BTRFS_I(inode)->root->fs_info,
10569 "%s: ino %llu isize %llu odd range [%llu,%llu]",
10570 caller, btrfs_ino(BTRFS_I(inode)), isize, start, end);
10571 }
10572}
10573
10574void btrfs_set_range_writeback(void *private_data, u64 start, u64 end)
10575{
10576 struct inode *inode = private_data;
10577 unsigned long index = start >> PAGE_SHIFT;
10578 unsigned long end_index = end >> PAGE_SHIFT;
10579 struct page *page;
10580
10581 while (index <= end_index) {
10582 page = find_get_page(inode->i_mapping, index);
10583 ASSERT(page); /* Pages should be in the extent_io_tree */
10584 set_page_writeback(page);
10585 put_page(page);
10586 index++;
10587 }
10588}
10589
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010590static const struct inode_operations btrfs_dir_inode_operations = {
Chris Mason3394e162008-11-17 20:42:26 -050010591 .getattr = btrfs_getattr,
Chris Mason39279cc2007-06-12 06:35:45 -040010592 .lookup = btrfs_lookup,
10593 .create = btrfs_create,
10594 .unlink = btrfs_unlink,
10595 .link = btrfs_link,
10596 .mkdir = btrfs_mkdir,
10597 .rmdir = btrfs_rmdir,
Miklos Szeredi2773bf02016-09-27 11:03:58 +020010598 .rename = btrfs_rename2,
Chris Mason39279cc2007-06-12 06:35:45 -040010599 .symlink = btrfs_symlink,
10600 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -040010601 .mknod = btrfs_mknod,
Josef Bacik5103e942007-11-16 11:45:54 -050010602 .listxattr = btrfs_listxattr,
Yanfdebe2b2008-01-14 13:26:08 -050010603 .permission = btrfs_permission,
Christoph Hellwig4e34e712011-07-23 17:37:31 +020010604 .get_acl = btrfs_get_acl,
Christoph Hellwig996a7102013-12-20 05:16:43 -080010605 .set_acl = btrfs_set_acl,
Guangyu Sun93fd63c2013-09-16 10:42:03 -070010606 .update_time = btrfs_update_time,
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010607 .tmpfile = btrfs_tmpfile,
Chris Mason39279cc2007-06-12 06:35:45 -040010608};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010609static const struct inode_operations btrfs_dir_ro_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -040010610 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -050010611 .permission = btrfs_permission,
Guangyu Sun93fd63c2013-09-16 10:42:03 -070010612 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -040010613};
Yan, Zheng76dda932009-09-21 16:00:26 -040010614
Alexey Dobriyan828c0952009-10-01 15:43:56 -070010615static const struct file_operations btrfs_dir_file_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -040010616 .llseek = generic_file_llseek,
10617 .read = generic_read_dir,
Omar Sandoval02dbfc92016-05-20 13:50:33 -070010618 .iterate_shared = btrfs_real_readdir,
Josef Bacik23b5ec72017-07-24 15:14:25 -040010619 .open = btrfs_opendir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -040010620 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -040010621#ifdef CONFIG_COMPAT
Luke Dashjr4c63c242015-10-29 08:22:21 +000010622 .compat_ioctl = btrfs_compat_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -040010623#endif
Sage Weil6bf13c02008-06-10 10:07:39 -040010624 .release = btrfs_release_file,
Chris Masone02119d2008-09-05 16:13:11 -040010625 .fsync = btrfs_sync_file,
Chris Mason39279cc2007-06-12 06:35:45 -040010626};
10627
David Sterba20e55062015-11-19 11:42:28 +010010628static const struct extent_io_ops btrfs_extent_io_ops = {
David Sterba4d53ddd2017-02-17 15:27:44 +010010629 /* mandatory callbacks */
Chris Mason065631f2008-02-20 12:07:25 -050010630 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -040010631 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
David Sterba4d53ddd2017-02-17 15:27:44 +010010632 .merge_bio_hook = btrfs_merge_bio_hook,
Liu Bo9d0d1c82017-03-24 15:04:50 -070010633 .readpage_io_failed_hook = btrfs_readpage_io_failed_hook,
Josef Bacikc6100a42017-05-05 11:57:13 -040010634 .tree_fs_info = iotree_fs_info,
10635 .set_range_writeback = btrfs_set_range_writeback,
David Sterba4d53ddd2017-02-17 15:27:44 +010010636
10637 /* optional callbacks */
10638 .fill_delalloc = run_delalloc_range,
Chris Masone6dcd2d2008-07-17 12:53:50 -040010639 .writepage_end_io_hook = btrfs_writepage_end_io_hook,
Chris Mason247e7432008-07-17 12:53:51 -040010640 .writepage_start_hook = btrfs_writepage_start_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -050010641 .set_bit_hook = btrfs_set_bit_hook,
10642 .clear_bit_hook = btrfs_clear_bit_hook,
Josef Bacik9ed74f22009-09-11 16:12:44 -040010643 .merge_extent_hook = btrfs_merge_extent_hook,
10644 .split_extent_hook = btrfs_split_extent_hook,
Josef Bacikc6100a42017-05-05 11:57:13 -040010645 .check_extent_io_range = btrfs_check_extent_io_range,
Chris Mason07157aa2007-08-30 08:50:51 -040010646};
10647
Chris Mason35054392009-01-21 13:11:13 -050010648/*
10649 * btrfs doesn't support the bmap operation because swapfiles
10650 * use bmap to make a mapping of extents in the file. They assume
10651 * these extents won't change over the life of the file and they
10652 * use the bmap result to do IO directly to the drive.
10653 *
10654 * the btrfs bmap call would return logical addresses that aren't
10655 * suitable for IO and they also will change frequently as COW
10656 * operations happen. So, swapfile + btrfs == corruption.
10657 *
10658 * For now we're avoiding this by dropping bmap.
10659 */
Alexey Dobriyan7f094102009-09-21 17:01:10 -070010660static const struct address_space_operations btrfs_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -040010661 .readpage = btrfs_readpage,
10662 .writepage = btrfs_writepage,
Chris Masonb293f02e2007-11-01 19:45:34 -040010663 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -050010664 .readpages = btrfs_readpages,
Chris Mason16432982008-04-10 10:23:21 -040010665 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -040010666 .invalidatepage = btrfs_invalidatepage,
10667 .releasepage = btrfs_releasepage,
Chris Masone6dcd2d2008-07-17 12:53:50 -040010668 .set_page_dirty = btrfs_set_page_dirty,
Andi Kleen465fdd92009-09-16 11:50:18 +020010669 .error_remove_page = generic_error_remove_page,
Chris Mason39279cc2007-06-12 06:35:45 -040010670};
10671
Alexey Dobriyan7f094102009-09-21 17:01:10 -070010672static const struct address_space_operations btrfs_symlink_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -040010673 .readpage = btrfs_readpage,
10674 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -040010675 .invalidatepage = btrfs_invalidatepage,
10676 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -040010677};
10678
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010679static const struct inode_operations btrfs_file_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -040010680 .getattr = btrfs_getattr,
10681 .setattr = btrfs_setattr,
Josef Bacik5103e942007-11-16 11:45:54 -050010682 .listxattr = btrfs_listxattr,
Yanfdebe2b2008-01-14 13:26:08 -050010683 .permission = btrfs_permission,
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -050010684 .fiemap = btrfs_fiemap,
Christoph Hellwig4e34e712011-07-23 17:37:31 +020010685 .get_acl = btrfs_get_acl,
Christoph Hellwig996a7102013-12-20 05:16:43 -080010686 .set_acl = btrfs_set_acl,
Josef Bacike41f9412012-03-26 09:46:47 -040010687 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -040010688};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010689static const struct inode_operations btrfs_special_inode_operations = {
Josef Bacik618e21d2007-07-11 10:18:17 -040010690 .getattr = btrfs_getattr,
10691 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -050010692 .permission = btrfs_permission,
Josef Bacik33268ea2008-07-24 12:16:36 -040010693 .listxattr = btrfs_listxattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +020010694 .get_acl = btrfs_get_acl,
Christoph Hellwig996a7102013-12-20 05:16:43 -080010695 .set_acl = btrfs_set_acl,
Josef Bacike41f9412012-03-26 09:46:47 -040010696 .update_time = btrfs_update_time,
Josef Bacik618e21d2007-07-11 10:18:17 -040010697};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010698static const struct inode_operations btrfs_symlink_inode_operations = {
Al Viro6b255392015-11-17 10:20:54 -050010699 .get_link = page_get_link,
Li Zefanf2095612010-11-19 02:05:24 +000010700 .getattr = btrfs_getattr,
Josef Bacik22c44fe2011-11-30 10:45:38 -050010701 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -050010702 .permission = btrfs_permission,
Jim Owens0279b4c2009-02-04 09:29:13 -050010703 .listxattr = btrfs_listxattr,
Josef Bacike41f9412012-03-26 09:46:47 -040010704 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -040010705};
Yan, Zheng76dda932009-09-21 16:00:26 -040010706
Alexey Dobriyan82d339d2009-10-09 09:54:36 -040010707const struct dentry_operations btrfs_dentry_operations = {
Yan, Zheng76dda932009-09-21 16:00:26 -040010708 .d_delete = btrfs_dentry_delete,
Josef Bacikb4aff1f2011-06-28 16:18:59 -040010709 .d_release = btrfs_dentry_release,
Yan, Zheng76dda932009-09-21 16:00:26 -040010710};