blob: 3229c1346ea2dcd9cefb724654e5ea2160cf5a57 [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>
33#include <linux/statfs.h>
34#include <linux/compat.h>
Chris Mason9ebefb182007-06-15 13:50:00 -040035#include <linux/bit_spinlock.h>
Josef Bacik5103e942007-11-16 11:45:54 -050036#include <linux/xattr.h>
Josef Bacik33268ea2008-07-24 12:16:36 -040037#include <linux/posix_acl.h>
Yan Zhengd899e052008-10-30 14:25:28 -040038#include <linux/falloc.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090039#include <linux/slab.h>
David Sterba7a36dde2011-05-06 15:33:15 +020040#include <linux/ratelimit.h>
Josef Bacik22c44fe2011-11-30 10:45:38 -050041#include <linux/mount.h>
Filipe Brandenburger55e301f2013-01-29 06:04:50 +000042#include <linux/btrfs.h>
David Woodhouse53b381b2013-01-29 18:40:14 -050043#include <linux/blkdev.h>
Josef Bacikf23b5a52013-06-19 10:16:26 -040044#include <linux/posix_acl_xattr.h>
Christoph Hellwige2e40f22015-02-22 08:58:50 -080045#include <linux/uio.h>
Chris Mason39279cc2007-06-12 06:35:45 -040046#include "ctree.h"
47#include "disk-io.h"
48#include "transaction.h"
49#include "btrfs_inode.h"
Chris Mason39279cc2007-06-12 06:35:45 -040050#include "print-tree.h"
Chris Masone6dcd2d2008-07-17 12:53:50 -040051#include "ordered-data.h"
Christoph Hellwig95819c02008-08-28 06:21:17 -040052#include "xattr.h"
Chris Masone02119d2008-09-05 16:13:11 -040053#include "tree-log.h"
Jan Schmidt4a54c8c2011-07-22 15:41:52 +020054#include "volumes.h"
Chris Masonc8b97812008-10-29 14:49:59 -040055#include "compression.h"
Chris Masonb4ce94d2009-02-04 09:25:08 -050056#include "locking.h"
Josef Bacikdc89e982011-01-28 17:05:48 -050057#include "free-space-cache.h"
Li Zefan581bb052011-04-20 10:06:11 +080058#include "inode-map.h"
Liu Bo38c227d2013-01-29 03:18:40 +000059#include "backref.h"
Josef Bacikf23b5a52013-06-19 10:16:26 -040060#include "hash.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"
Chris Mason39279cc2007-06-12 06:35:45 -040063
64struct btrfs_iget_args {
Chris Mason90d3e592014-01-09 17:28:00 -080065 struct btrfs_key *location;
Chris Mason39279cc2007-06-12 06:35:45 -040066 struct btrfs_root *root;
67};
68
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070069static const struct inode_operations btrfs_dir_inode_operations;
70static const struct inode_operations btrfs_symlink_inode_operations;
71static const struct inode_operations btrfs_dir_ro_inode_operations;
72static const struct inode_operations btrfs_special_inode_operations;
73static const struct inode_operations btrfs_file_inode_operations;
Alexey Dobriyan7f094102009-09-21 17:01:10 -070074static const struct address_space_operations btrfs_aops;
75static const struct address_space_operations btrfs_symlink_aops;
Alexey Dobriyan828c0952009-10-01 15:43:56 -070076static const struct file_operations btrfs_dir_file_operations;
Chris Masond1310b22008-01-24 16:13:08 -050077static struct extent_io_ops btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -040078
79static struct kmem_cache *btrfs_inode_cachep;
Miao Xie8ccf6f192012-10-25 09:28:04 +000080static struct kmem_cache *btrfs_delalloc_work_cachep;
Chris Mason39279cc2007-06-12 06:35:45 -040081struct kmem_cache *btrfs_trans_handle_cachep;
82struct kmem_cache *btrfs_transaction_cachep;
Chris Mason39279cc2007-06-12 06:35:45 -040083struct kmem_cache *btrfs_path_cachep;
Josef Bacikdc89e982011-01-28 17:05:48 -050084struct kmem_cache *btrfs_free_space_cachep;
Chris Mason39279cc2007-06-12 06:35:45 -040085
86#define S_SHIFT 12
87static unsigned char btrfs_type_by_mode[S_IFMT >> S_SHIFT] = {
88 [S_IFREG >> S_SHIFT] = BTRFS_FT_REG_FILE,
89 [S_IFDIR >> S_SHIFT] = BTRFS_FT_DIR,
90 [S_IFCHR >> S_SHIFT] = BTRFS_FT_CHRDEV,
91 [S_IFBLK >> S_SHIFT] = BTRFS_FT_BLKDEV,
92 [S_IFIFO >> S_SHIFT] = BTRFS_FT_FIFO,
93 [S_IFSOCK >> S_SHIFT] = BTRFS_FT_SOCK,
94 [S_IFLNK >> S_SHIFT] = BTRFS_FT_SYMLINK,
95};
96
Eric Sandeen3972f262013-01-12 02:57:22 +000097static int btrfs_setsize(struct inode *inode, struct iattr *attr);
Josef Bacika41ad392011-01-31 15:30:16 -050098static int btrfs_truncate(struct inode *inode);
Josef Bacik5fd02042012-05-02 14:00:54 -040099static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent);
Chris Mason771ed682008-11-06 22:02:51 -0500100static noinline int cow_file_range(struct inode *inode,
101 struct page *locked_page,
102 u64 start, u64 end, int *page_started,
103 unsigned long *nr_written, int unlock);
Josef Bacik70c8a912012-10-11 16:54:30 -0400104static struct extent_map *create_pinned_em(struct inode *inode, u64 start,
105 u64 len, u64 orig_start,
106 u64 block_start, u64 block_len,
Josef Bacikcc95bef2013-04-04 14:31:27 -0400107 u64 orig_block_len, u64 ram_bytes,
108 int type);
Josef Bacik7b128762008-07-24 12:17:14 -0400109
Eric Sandeen48a3b632013-04-25 20:41:01 +0000110static int btrfs_dirty_inode(struct inode *inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400111
Josef Bacik6a3891c2015-03-16 17:38:52 -0400112#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
113void btrfs_test_inode_set_ops(struct inode *inode)
114{
115 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
116}
117#endif
118
Yan, Zhengf34f57a2009-11-12 09:35:27 +0000119static int btrfs_init_inode_security(struct btrfs_trans_handle *trans,
Eric Paris2a7dba32011-02-01 11:05:39 -0500120 struct inode *inode, struct inode *dir,
121 const struct qstr *qstr)
Jim Owens0279b4c2009-02-04 09:29:13 -0500122{
123 int err;
124
Yan, Zhengf34f57a2009-11-12 09:35:27 +0000125 err = btrfs_init_acl(trans, inode, dir);
Jim Owens0279b4c2009-02-04 09:29:13 -0500126 if (!err)
Eric Paris2a7dba32011-02-01 11:05:39 -0500127 err = btrfs_xattr_security_init(trans, inode, dir, qstr);
Jim Owens0279b4c2009-02-04 09:29:13 -0500128 return err;
129}
130
Chris Masond352ac62008-09-29 15:18:18 -0400131/*
Chris Masonc8b97812008-10-29 14:49:59 -0400132 * this does all the hard work for inserting an inline extent into
133 * the btree. The caller should have done a btrfs_drop_extents so that
134 * no overlapping inline items exist in the btree
135 */
Chris Mason40f76582014-05-21 13:35:51 -0700136static int insert_inline_extent(struct btrfs_trans_handle *trans,
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000137 struct btrfs_path *path, int extent_inserted,
Chris Masonc8b97812008-10-29 14:49:59 -0400138 struct btrfs_root *root, struct inode *inode,
139 u64 start, size_t size, size_t compressed_size,
Li Zefanfe3f5662011-03-28 08:30:38 +0000140 int compress_type,
Chris Masonc8b97812008-10-29 14:49:59 -0400141 struct page **compressed_pages)
142{
Chris Masonc8b97812008-10-29 14:49:59 -0400143 struct extent_buffer *leaf;
144 struct page *page = NULL;
145 char *kaddr;
146 unsigned long ptr;
147 struct btrfs_file_extent_item *ei;
148 int err = 0;
149 int ret;
150 size_t cur_size = size;
Chris Masonc8b97812008-10-29 14:49:59 -0400151 unsigned long offset;
Chris Masonc8b97812008-10-29 14:49:59 -0400152
Li Zefanfe3f5662011-03-28 08:30:38 +0000153 if (compressed_size && compressed_pages)
Chris Masonc8b97812008-10-29 14:49:59 -0400154 cur_size = compressed_size;
Chris Masonc8b97812008-10-29 14:49:59 -0400155
Chris Masonc8b97812008-10-29 14:49:59 -0400156 inode_add_bytes(inode, size);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000157
158 if (!extent_inserted) {
159 struct btrfs_key key;
160 size_t datasize;
161
162 key.objectid = btrfs_ino(inode);
163 key.offset = start;
David Sterba962a2982014-06-04 18:41:45 +0200164 key.type = BTRFS_EXTENT_DATA_KEY;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000165
166 datasize = btrfs_file_extent_calc_inline_size(cur_size);
167 path->leave_spinning = 1;
168 ret = btrfs_insert_empty_item(trans, root, path, &key,
169 datasize);
170 if (ret) {
171 err = ret;
172 goto fail;
173 }
Chris Masonc8b97812008-10-29 14:49:59 -0400174 }
175 leaf = path->nodes[0];
176 ei = btrfs_item_ptr(leaf, path->slots[0],
177 struct btrfs_file_extent_item);
178 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
179 btrfs_set_file_extent_type(leaf, ei, BTRFS_FILE_EXTENT_INLINE);
180 btrfs_set_file_extent_encryption(leaf, ei, 0);
181 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
182 btrfs_set_file_extent_ram_bytes(leaf, ei, size);
183 ptr = btrfs_file_extent_inline_start(ei);
184
Li Zefan261507a02010-12-17 14:21:50 +0800185 if (compress_type != BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -0400186 struct page *cpage;
187 int i = 0;
Chris Masond3977122009-01-05 21:25:51 -0500188 while (compressed_size > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -0400189 cpage = compressed_pages[i];
Chris Mason5b050f02008-11-11 09:34:41 -0500190 cur_size = min_t(unsigned long, compressed_size,
Chris Masonc8b97812008-10-29 14:49:59 -0400191 PAGE_CACHE_SIZE);
192
Cong Wang7ac687d2011-11-25 23:14:28 +0800193 kaddr = kmap_atomic(cpage);
Chris Masonc8b97812008-10-29 14:49:59 -0400194 write_extent_buffer(leaf, kaddr, ptr, cur_size);
Cong Wang7ac687d2011-11-25 23:14:28 +0800195 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -0400196
197 i++;
198 ptr += cur_size;
199 compressed_size -= cur_size;
200 }
201 btrfs_set_file_extent_compression(leaf, ei,
Li Zefan261507a02010-12-17 14:21:50 +0800202 compress_type);
Chris Masonc8b97812008-10-29 14:49:59 -0400203 } else {
204 page = find_get_page(inode->i_mapping,
205 start >> PAGE_CACHE_SHIFT);
206 btrfs_set_file_extent_compression(leaf, ei, 0);
Cong Wang7ac687d2011-11-25 23:14:28 +0800207 kaddr = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -0400208 offset = start & (PAGE_CACHE_SIZE - 1);
209 write_extent_buffer(leaf, kaddr + offset, ptr, size);
Cong Wang7ac687d2011-11-25 23:14:28 +0800210 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -0400211 page_cache_release(page);
212 }
213 btrfs_mark_buffer_dirty(leaf);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000214 btrfs_release_path(path);
Chris Masonc8b97812008-10-29 14:49:59 -0400215
Yan, Zhengc2167752009-11-12 09:34:21 +0000216 /*
217 * we're an inline extent, so nobody can
218 * extend the file past i_size without locking
219 * a page we already have locked.
220 *
221 * We must do any isize and inode updates
222 * before we unlock the pages. Otherwise we
223 * could end up racing with unlink.
224 */
Chris Masonc8b97812008-10-29 14:49:59 -0400225 BTRFS_I(inode)->disk_i_size = inode->i_size;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100226 ret = btrfs_update_inode(trans, root, inode);
Yan, Zhengc2167752009-11-12 09:34:21 +0000227
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100228 return ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400229fail:
Chris Masonc8b97812008-10-29 14:49:59 -0400230 return err;
231}
232
233
234/*
235 * conditionally insert an inline extent into the file. This
236 * does the checks required to make sure the data is small enough
237 * to fit as an inline extent.
238 */
Josef Bacik00361582013-08-14 14:02:47 -0400239static noinline int cow_file_range_inline(struct btrfs_root *root,
240 struct inode *inode, u64 start,
241 u64 end, size_t compressed_size,
242 int compress_type,
243 struct page **compressed_pages)
Chris Masonc8b97812008-10-29 14:49:59 -0400244{
Josef Bacik00361582013-08-14 14:02:47 -0400245 struct btrfs_trans_handle *trans;
Chris Masonc8b97812008-10-29 14:49:59 -0400246 u64 isize = i_size_read(inode);
247 u64 actual_end = min(end + 1, isize);
248 u64 inline_len = actual_end - start;
Qu Wenruofda28322013-02-26 08:10:22 +0000249 u64 aligned_end = ALIGN(end, root->sectorsize);
Chris Masonc8b97812008-10-29 14:49:59 -0400250 u64 data_len = inline_len;
251 int ret;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000252 struct btrfs_path *path;
253 int extent_inserted = 0;
254 u32 extent_item_size;
Chris Masonc8b97812008-10-29 14:49:59 -0400255
256 if (compressed_size)
257 data_len = compressed_size;
258
259 if (start > 0 ||
Wang Shilong354877b2014-07-17 11:44:11 +0800260 actual_end > PAGE_CACHE_SIZE ||
261 data_len > BTRFS_MAX_INLINE_DATA_SIZE(root) ||
Chris Masonc8b97812008-10-29 14:49:59 -0400262 (!compressed_size &&
263 (actual_end & (root->sectorsize - 1)) == 0) ||
264 end + 1 < isize ||
265 data_len > root->fs_info->max_inline) {
266 return 1;
267 }
268
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000269 path = btrfs_alloc_path();
270 if (!path)
271 return -ENOMEM;
272
Josef Bacik00361582013-08-14 14:02:47 -0400273 trans = btrfs_join_transaction(root);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000274 if (IS_ERR(trans)) {
275 btrfs_free_path(path);
Josef Bacik00361582013-08-14 14:02:47 -0400276 return PTR_ERR(trans);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000277 }
Josef Bacik00361582013-08-14 14:02:47 -0400278 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
279
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000280 if (compressed_size && compressed_pages)
281 extent_item_size = btrfs_file_extent_calc_inline_size(
282 compressed_size);
283 else
284 extent_item_size = btrfs_file_extent_calc_inline_size(
285 inline_len);
286
287 ret = __btrfs_drop_extents(trans, root, inode, path,
288 start, aligned_end, NULL,
289 1, 1, extent_item_size, &extent_inserted);
Josef Bacik00361582013-08-14 14:02:47 -0400290 if (ret) {
291 btrfs_abort_transaction(trans, root, ret);
292 goto out;
293 }
Chris Masonc8b97812008-10-29 14:49:59 -0400294
295 if (isize > actual_end)
296 inline_len = min_t(u64, isize, actual_end);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000297 ret = insert_inline_extent(trans, path, extent_inserted,
298 root, inode, start,
Chris Masonc8b97812008-10-29 14:49:59 -0400299 inline_len, compressed_size,
Li Zefanfe3f5662011-03-28 08:30:38 +0000300 compress_type, compressed_pages);
Josef Bacik2adcac12012-05-23 16:10:14 -0400301 if (ret && ret != -ENOSPC) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100302 btrfs_abort_transaction(trans, root, ret);
Josef Bacik00361582013-08-14 14:02:47 -0400303 goto out;
Josef Bacik2adcac12012-05-23 16:10:14 -0400304 } else if (ret == -ENOSPC) {
Josef Bacik00361582013-08-14 14:02:47 -0400305 ret = 1;
306 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100307 }
Josef Bacik2adcac12012-05-23 16:10:14 -0400308
Josef Bacikbdc20e62013-02-28 13:23:38 -0500309 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400310 btrfs_delalloc_release_metadata(inode, end + 1 - start);
Chris Masona1ed8352009-09-11 12:27:37 -0400311 btrfs_drop_extent_cache(inode, start, aligned_end - 1, 0);
Josef Bacik00361582013-08-14 14:02:47 -0400312out:
Qu Wenruo94ed9382015-09-08 17:25:56 +0800313 /*
314 * Don't forget to free the reserved space, as for inlined extent
315 * it won't count as data extent, free them directly here.
316 * And at reserve time, it's always aligned to page size, so
317 * just free one page here.
318 */
319 btrfs_qgroup_free_data(inode, 0, PAGE_CACHE_SIZE);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000320 btrfs_free_path(path);
Josef Bacik00361582013-08-14 14:02:47 -0400321 btrfs_end_transaction(trans, root);
322 return ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400323}
324
Chris Mason771ed682008-11-06 22:02:51 -0500325struct async_extent {
326 u64 start;
327 u64 ram_size;
328 u64 compressed_size;
329 struct page **pages;
330 unsigned long nr_pages;
Li Zefan261507a02010-12-17 14:21:50 +0800331 int compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500332 struct list_head list;
333};
334
335struct async_cow {
336 struct inode *inode;
337 struct btrfs_root *root;
338 struct page *locked_page;
339 u64 start;
340 u64 end;
341 struct list_head extents;
342 struct btrfs_work work;
343};
344
345static noinline int add_async_extent(struct async_cow *cow,
346 u64 start, u64 ram_size,
347 u64 compressed_size,
348 struct page **pages,
Li Zefan261507a02010-12-17 14:21:50 +0800349 unsigned long nr_pages,
350 int compress_type)
Chris Mason771ed682008-11-06 22:02:51 -0500351{
352 struct async_extent *async_extent;
353
354 async_extent = kmalloc(sizeof(*async_extent), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100355 BUG_ON(!async_extent); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -0500356 async_extent->start = start;
357 async_extent->ram_size = ram_size;
358 async_extent->compressed_size = compressed_size;
359 async_extent->pages = pages;
360 async_extent->nr_pages = nr_pages;
Li Zefan261507a02010-12-17 14:21:50 +0800361 async_extent->compress_type = compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500362 list_add_tail(&async_extent->list, &cow->extents);
363 return 0;
364}
365
Wang Shilongf79707b2014-07-17 11:44:09 +0800366static inline int inode_need_compress(struct inode *inode)
367{
368 struct btrfs_root *root = BTRFS_I(inode)->root;
369
370 /* force compress */
371 if (btrfs_test_opt(root, FORCE_COMPRESS))
372 return 1;
373 /* bad compression ratios */
374 if (BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS)
375 return 0;
376 if (btrfs_test_opt(root, COMPRESS) ||
377 BTRFS_I(inode)->flags & BTRFS_INODE_COMPRESS ||
378 BTRFS_I(inode)->force_compress)
379 return 1;
380 return 0;
381}
382
Chris Masonc8b97812008-10-29 14:49:59 -0400383/*
Chris Mason771ed682008-11-06 22:02:51 -0500384 * we create compressed extents in two phases. The first
385 * phase compresses a range of pages that have already been
386 * locked (both pages and state bits are locked).
Chris Masonc8b97812008-10-29 14:49:59 -0400387 *
Chris Mason771ed682008-11-06 22:02:51 -0500388 * This is done inside an ordered work queue, and the compression
389 * is spread across many cpus. The actual IO submission is step
390 * two, and the ordered work queue takes care of making sure that
391 * happens in the same order things were put onto the queue by
392 * writepages and friends.
Chris Masonc8b97812008-10-29 14:49:59 -0400393 *
Chris Mason771ed682008-11-06 22:02:51 -0500394 * If this code finds it can't get good compression, it puts an
395 * entry onto the work queue to write the uncompressed bytes. This
396 * makes sure that both compressed inodes and uncompressed inodes
Artem Bityutskiyb2570312012-07-25 18:12:06 +0300397 * are written in the same order that the flusher thread sent them
398 * down.
Chris Masond352ac62008-09-29 15:18:18 -0400399 */
Filipe Mananac44f6492014-10-09 21:15:44 +0100400static noinline void compress_file_range(struct inode *inode,
Chris Mason771ed682008-11-06 22:02:51 -0500401 struct page *locked_page,
402 u64 start, u64 end,
403 struct async_cow *async_cow,
404 int *num_added)
Chris Masonb888db22007-08-27 16:49:44 -0400405{
406 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masondb945352007-10-15 16:15:53 -0400407 u64 num_bytes;
Chris Masondb945352007-10-15 16:15:53 -0400408 u64 blocksize = root->sectorsize;
Chris Masonc8b97812008-10-29 14:49:59 -0400409 u64 actual_end;
Chris Mason42dc7ba2008-12-15 11:44:56 -0500410 u64 isize = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400411 int ret = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400412 struct page **pages = NULL;
413 unsigned long nr_pages;
414 unsigned long nr_pages_ret = 0;
415 unsigned long total_compressed = 0;
416 unsigned long total_in = 0;
417 unsigned long max_compressed = 128 * 1024;
Chris Mason771ed682008-11-06 22:02:51 -0500418 unsigned long max_uncompressed = 128 * 1024;
Chris Masonc8b97812008-10-29 14:49:59 -0400419 int i;
420 int will_compress;
Li Zefan261507a02010-12-17 14:21:50 +0800421 int compress_type = root->fs_info->compress_type;
Chris Mason4adaa612013-03-26 13:07:00 -0400422 int redirty = 0;
Chris Masonb888db22007-08-27 16:49:44 -0400423
Liu Bo4cb13e52012-03-29 09:57:45 -0400424 /* if this is a small write inside eof, kick off a defrag */
425 if ((end - start + 1) < 16 * 1024 &&
426 (start > 0 || end + 1 < BTRFS_I(inode)->disk_i_size))
Chris Mason4cb53002011-05-24 15:35:30 -0400427 btrfs_add_inode_defrag(NULL, inode);
428
Chris Mason42dc7ba2008-12-15 11:44:56 -0500429 actual_end = min_t(u64, isize, end + 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400430again:
431 will_compress = 0;
432 nr_pages = (end >> PAGE_CACHE_SHIFT) - (start >> PAGE_CACHE_SHIFT) + 1;
433 nr_pages = min(nr_pages, (128 * 1024UL) / PAGE_CACHE_SIZE);
434
Chris Masonf03d9302009-02-04 09:31:06 -0500435 /*
436 * we don't want to send crud past the end of i_size through
437 * compression, that's just a waste of CPU time. So, if the
438 * end of the file is before the start of our current
439 * requested range of bytes, we bail out to the uncompressed
440 * cleanup code that can deal with all of this.
441 *
442 * It isn't really the fastest way to fix things, but this is a
443 * very uncommon corner.
444 */
445 if (actual_end <= start)
446 goto cleanup_and_bail_uncompressed;
447
Chris Masonc8b97812008-10-29 14:49:59 -0400448 total_compressed = actual_end - start;
449
Shilong Wang4bcbb332014-10-07 18:44:35 -0400450 /*
451 * skip compression for a small file range(<=blocksize) that
452 * isn't an inline extent, since it dosen't save disk space at all.
453 */
454 if (total_compressed <= blocksize &&
455 (start > 0 || end + 1 < BTRFS_I(inode)->disk_i_size))
456 goto cleanup_and_bail_uncompressed;
457
Chris Masonc8b97812008-10-29 14:49:59 -0400458 /* we want to make sure that amount of ram required to uncompress
459 * an extent is reasonable, so we limit the total size in ram
Chris Mason771ed682008-11-06 22:02:51 -0500460 * of a compressed extent to 128k. This is a crucial number
461 * because it also controls how easily we can spread reads across
462 * cpus for decompression.
463 *
464 * We also want to make sure the amount of IO required to do
465 * a random read is reasonably small, so we limit the size of
466 * a compressed extent to 128k.
Chris Masonc8b97812008-10-29 14:49:59 -0400467 */
468 total_compressed = min(total_compressed, max_uncompressed);
Qu Wenruofda28322013-02-26 08:10:22 +0000469 num_bytes = ALIGN(end - start + 1, blocksize);
Chris Masonbe20aa92007-12-17 20:14:01 -0500470 num_bytes = max(blocksize, num_bytes);
Chris Masonc8b97812008-10-29 14:49:59 -0400471 total_in = 0;
472 ret = 0;
Chris Masondb945352007-10-15 16:15:53 -0400473
Chris Mason771ed682008-11-06 22:02:51 -0500474 /*
475 * we do compression for mount -o compress and when the
476 * inode has not been flagged as nocompress. This flag can
477 * change at any time if we discover bad compression ratios.
Chris Masonc8b97812008-10-29 14:49:59 -0400478 */
Wang Shilongf79707b2014-07-17 11:44:09 +0800479 if (inode_need_compress(inode)) {
Chris Masonc8b97812008-10-29 14:49:59 -0400480 WARN_ON(pages);
David Sterba31e818f2015-02-20 18:00:26 +0100481 pages = kcalloc(nr_pages, sizeof(struct page *), GFP_NOFS);
Li Zefan560f7d72011-09-08 10:22:01 +0800482 if (!pages) {
483 /* just bail out to the uncompressed code */
484 goto cont;
485 }
Chris Mason179e29e2007-11-01 11:28:41 -0400486
Li Zefan261507a02010-12-17 14:21:50 +0800487 if (BTRFS_I(inode)->force_compress)
488 compress_type = BTRFS_I(inode)->force_compress;
489
Chris Mason4adaa612013-03-26 13:07:00 -0400490 /*
491 * we need to call clear_page_dirty_for_io on each
492 * page in the range. Otherwise applications with the file
493 * mmap'd can wander in and change the page contents while
494 * we are compressing them.
495 *
496 * If the compression fails for any reason, we set the pages
497 * dirty again later on.
498 */
499 extent_range_clear_dirty_for_io(inode, start, end);
500 redirty = 1;
Li Zefan261507a02010-12-17 14:21:50 +0800501 ret = btrfs_compress_pages(compress_type,
502 inode->i_mapping, start,
503 total_compressed, pages,
504 nr_pages, &nr_pages_ret,
505 &total_in,
506 &total_compressed,
507 max_compressed);
Chris Masonc8b97812008-10-29 14:49:59 -0400508
509 if (!ret) {
510 unsigned long offset = total_compressed &
511 (PAGE_CACHE_SIZE - 1);
512 struct page *page = pages[nr_pages_ret - 1];
513 char *kaddr;
514
515 /* zero the tail end of the last page, we might be
516 * sending it down to disk
517 */
518 if (offset) {
Cong Wang7ac687d2011-11-25 23:14:28 +0800519 kaddr = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -0400520 memset(kaddr + offset, 0,
521 PAGE_CACHE_SIZE - offset);
Cong Wang7ac687d2011-11-25 23:14:28 +0800522 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -0400523 }
524 will_compress = 1;
525 }
526 }
Li Zefan560f7d72011-09-08 10:22:01 +0800527cont:
Chris Masonc8b97812008-10-29 14:49:59 -0400528 if (start == 0) {
529 /* lets try to make an inline extent */
Chris Mason771ed682008-11-06 22:02:51 -0500530 if (ret || total_in < (actual_end - start)) {
Chris Masonc8b97812008-10-29 14:49:59 -0400531 /* we didn't compress the entire range, try
Chris Mason771ed682008-11-06 22:02:51 -0500532 * to make an uncompressed inline extent.
Chris Masonc8b97812008-10-29 14:49:59 -0400533 */
Josef Bacik00361582013-08-14 14:02:47 -0400534 ret = cow_file_range_inline(root, inode, start, end,
535 0, 0, NULL);
Chris Masonc8b97812008-10-29 14:49:59 -0400536 } else {
Chris Mason771ed682008-11-06 22:02:51 -0500537 /* try making a compressed inline extent */
Josef Bacik00361582013-08-14 14:02:47 -0400538 ret = cow_file_range_inline(root, inode, start, end,
Li Zefanfe3f5662011-03-28 08:30:38 +0000539 total_compressed,
540 compress_type, pages);
Chris Masonc8b97812008-10-29 14:49:59 -0400541 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100542 if (ret <= 0) {
Josef Bacik151a41b2013-07-29 13:22:24 -0400543 unsigned long clear_flags = EXTENT_DELALLOC |
544 EXTENT_DEFRAG;
Filipe Mananae6eb4312014-10-10 10:45:12 +0100545 unsigned long page_error_op;
546
Josef Bacik151a41b2013-07-29 13:22:24 -0400547 clear_flags |= (ret < 0) ? EXTENT_DO_ACCOUNTING : 0;
Filipe Mananae6eb4312014-10-10 10:45:12 +0100548 page_error_op = ret < 0 ? PAGE_SET_ERROR : 0;
Josef Bacik151a41b2013-07-29 13:22:24 -0400549
Chris Mason771ed682008-11-06 22:02:51 -0500550 /*
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100551 * inline extent creation worked or returned error,
552 * we don't need to create any more async work items.
553 * Unlock and free up our temp pages.
Chris Mason771ed682008-11-06 22:02:51 -0500554 */
Josef Bacikc2790a22013-07-29 11:20:47 -0400555 extent_clear_unlock_delalloc(inode, start, end, NULL,
Josef Bacik151a41b2013-07-29 13:22:24 -0400556 clear_flags, PAGE_UNLOCK |
Josef Bacikc2790a22013-07-29 11:20:47 -0400557 PAGE_CLEAR_DIRTY |
558 PAGE_SET_WRITEBACK |
Filipe Mananae6eb4312014-10-10 10:45:12 +0100559 page_error_op |
Josef Bacikc2790a22013-07-29 11:20:47 -0400560 PAGE_END_WRITEBACK);
Chris Masonc8b97812008-10-29 14:49:59 -0400561 goto free_pages_out;
562 }
563 }
564
565 if (will_compress) {
566 /*
567 * we aren't doing an inline extent round the compressed size
568 * up to a block size boundary so the allocator does sane
569 * things
570 */
Qu Wenruofda28322013-02-26 08:10:22 +0000571 total_compressed = ALIGN(total_compressed, blocksize);
Chris Masonc8b97812008-10-29 14:49:59 -0400572
573 /*
574 * one last check to make sure the compression is really a
575 * win, compare the page count read with the blocks on disk
576 */
Qu Wenruofda28322013-02-26 08:10:22 +0000577 total_in = ALIGN(total_in, PAGE_CACHE_SIZE);
Chris Masonc8b97812008-10-29 14:49:59 -0400578 if (total_compressed >= total_in) {
579 will_compress = 0;
580 } else {
Chris Masonc8b97812008-10-29 14:49:59 -0400581 num_bytes = total_in;
582 }
583 }
584 if (!will_compress && pages) {
585 /*
586 * the compression code ran but failed to make things smaller,
587 * free any pages it allocated and our page pointer array
588 */
589 for (i = 0; i < nr_pages_ret; i++) {
Chris Mason70b99e62008-10-31 12:46:39 -0400590 WARN_ON(pages[i]->mapping);
Chris Masonc8b97812008-10-29 14:49:59 -0400591 page_cache_release(pages[i]);
592 }
593 kfree(pages);
594 pages = NULL;
595 total_compressed = 0;
596 nr_pages_ret = 0;
597
598 /* flag the file so we don't compress in the future */
Chris Mason1e701a32010-03-11 09:42:04 -0500599 if (!btrfs_test_opt(root, FORCE_COMPRESS) &&
600 !(BTRFS_I(inode)->force_compress)) {
Chris Masona555f812010-01-28 16:18:15 -0500601 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
Chris Mason1e701a32010-03-11 09:42:04 -0500602 }
Chris Masonc8b97812008-10-29 14:49:59 -0400603 }
Chris Mason771ed682008-11-06 22:02:51 -0500604 if (will_compress) {
605 *num_added += 1;
606
607 /* the async work queues will take care of doing actual
608 * allocation on disk for these compressed pages,
609 * and will submit them to the elevator.
610 */
611 add_async_extent(async_cow, start, num_bytes,
Li Zefan261507a02010-12-17 14:21:50 +0800612 total_compressed, pages, nr_pages_ret,
613 compress_type);
Chris Mason771ed682008-11-06 22:02:51 -0500614
Yan, Zheng24ae6362010-12-06 07:02:36 +0000615 if (start + num_bytes < end) {
Chris Mason771ed682008-11-06 22:02:51 -0500616 start += num_bytes;
617 pages = NULL;
618 cond_resched();
619 goto again;
620 }
621 } else {
Chris Masonf03d9302009-02-04 09:31:06 -0500622cleanup_and_bail_uncompressed:
Chris Mason771ed682008-11-06 22:02:51 -0500623 /*
624 * No compression, but we still need to write the pages in
625 * the file we've been given so far. redirty the locked
626 * page if it corresponds to our extent and set things up
627 * for the async work queue to run cow_file_range to do
628 * the normal delalloc dance
629 */
630 if (page_offset(locked_page) >= start &&
631 page_offset(locked_page) <= end) {
632 __set_page_dirty_nobuffers(locked_page);
633 /* unlocked later on in the async handlers */
634 }
Chris Mason4adaa612013-03-26 13:07:00 -0400635 if (redirty)
636 extent_range_redirty_for_io(inode, start, end);
Li Zefan261507a02010-12-17 14:21:50 +0800637 add_async_extent(async_cow, start, end - start + 1,
638 0, NULL, 0, BTRFS_COMPRESS_NONE);
Chris Mason771ed682008-11-06 22:02:51 -0500639 *num_added += 1;
640 }
641
Filipe Mananac44f6492014-10-09 21:15:44 +0100642 return;
Chris Mason771ed682008-11-06 22:02:51 -0500643
644free_pages_out:
645 for (i = 0; i < nr_pages_ret; i++) {
646 WARN_ON(pages[i]->mapping);
647 page_cache_release(pages[i]);
648 }
Chris Masond3977122009-01-05 21:25:51 -0500649 kfree(pages);
Chris Mason771ed682008-11-06 22:02:51 -0500650}
Chris Mason771ed682008-11-06 22:02:51 -0500651
Filipe Manana40ae8372014-10-06 22:14:24 +0100652static void free_async_extent_pages(struct async_extent *async_extent)
653{
654 int i;
655
656 if (!async_extent->pages)
657 return;
658
659 for (i = 0; i < async_extent->nr_pages; i++) {
660 WARN_ON(async_extent->pages[i]->mapping);
661 page_cache_release(async_extent->pages[i]);
662 }
663 kfree(async_extent->pages);
664 async_extent->nr_pages = 0;
665 async_extent->pages = NULL;
Chris Mason771ed682008-11-06 22:02:51 -0500666}
667
668/*
669 * phase two of compressed writeback. This is the ordered portion
670 * of the code, which only gets called in the order the work was
671 * queued. We walk all the async extents created by compress_file_range
672 * and send them down to the disk.
673 */
Filipe Mananadec8f172014-10-06 22:14:26 +0100674static noinline void submit_compressed_extents(struct inode *inode,
Chris Mason771ed682008-11-06 22:02:51 -0500675 struct async_cow *async_cow)
676{
677 struct async_extent *async_extent;
678 u64 alloc_hint = 0;
Chris Mason771ed682008-11-06 22:02:51 -0500679 struct btrfs_key ins;
680 struct extent_map *em;
681 struct btrfs_root *root = BTRFS_I(inode)->root;
682 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
683 struct extent_io_tree *io_tree;
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500684 int ret = 0;
Chris Mason771ed682008-11-06 22:02:51 -0500685
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500686again:
Chris Masond3977122009-01-05 21:25:51 -0500687 while (!list_empty(&async_cow->extents)) {
Chris Mason771ed682008-11-06 22:02:51 -0500688 async_extent = list_entry(async_cow->extents.next,
689 struct async_extent, list);
690 list_del(&async_extent->list);
691
692 io_tree = &BTRFS_I(inode)->io_tree;
693
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500694retry:
Chris Mason771ed682008-11-06 22:02:51 -0500695 /* did the compression code fall back to uncompressed IO? */
696 if (!async_extent->pages) {
697 int page_started = 0;
698 unsigned long nr_written = 0;
699
700 lock_extent(io_tree, async_extent->start,
Josef Bacik2ac55d42010-02-03 19:33:23 +0000701 async_extent->start +
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100702 async_extent->ram_size - 1);
Chris Mason771ed682008-11-06 22:02:51 -0500703
704 /* allocate blocks */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500705 ret = cow_file_range(inode, async_cow->locked_page,
706 async_extent->start,
707 async_extent->start +
708 async_extent->ram_size - 1,
709 &page_started, &nr_written, 0);
Chris Mason771ed682008-11-06 22:02:51 -0500710
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100711 /* JDM XXX */
712
Chris Mason771ed682008-11-06 22:02:51 -0500713 /*
714 * if page_started, cow_file_range inserted an
715 * inline extent and took care of all the unlocking
716 * and IO for us. Otherwise, we need to submit
717 * all those pages down to the drive.
718 */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500719 if (!page_started && !ret)
Chris Mason771ed682008-11-06 22:02:51 -0500720 extent_write_locked_range(io_tree,
721 inode, async_extent->start,
Chris Masond3977122009-01-05 21:25:51 -0500722 async_extent->start +
Chris Mason771ed682008-11-06 22:02:51 -0500723 async_extent->ram_size - 1,
724 btrfs_get_extent,
725 WB_SYNC_ALL);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500726 else if (ret)
727 unlock_page(async_cow->locked_page);
Chris Mason771ed682008-11-06 22:02:51 -0500728 kfree(async_extent);
729 cond_resched();
730 continue;
731 }
732
733 lock_extent(io_tree, async_extent->start,
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100734 async_extent->start + async_extent->ram_size - 1);
Chris Mason771ed682008-11-06 22:02:51 -0500735
Josef Bacik00361582013-08-14 14:02:47 -0400736 ret = btrfs_reserve_extent(root,
Chris Mason771ed682008-11-06 22:02:51 -0500737 async_extent->compressed_size,
738 async_extent->compressed_size,
Miao Xiee570fd22014-06-19 10:42:50 +0800739 0, alloc_hint, &ins, 1, 1);
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500740 if (ret) {
Filipe Manana40ae8372014-10-06 22:14:24 +0100741 free_async_extent_pages(async_extent);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500742
Josef Bacikfdf8e2e2013-06-14 16:58:23 -0400743 if (ret == -ENOSPC) {
744 unlock_extent(io_tree, async_extent->start,
745 async_extent->start +
746 async_extent->ram_size - 1);
Liu Boce620032014-07-24 22:48:05 +0800747
748 /*
749 * we need to redirty the pages if we decide to
750 * fallback to uncompressed IO, otherwise we
751 * will not submit these pages down to lower
752 * layers.
753 */
754 extent_range_redirty_for_io(inode,
755 async_extent->start,
756 async_extent->start +
757 async_extent->ram_size - 1);
758
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100759 goto retry;
Josef Bacikfdf8e2e2013-06-14 16:58:23 -0400760 }
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500761 goto out_free;
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500762 }
Yan, Zhengc2167752009-11-12 09:34:21 +0000763 /*
764 * here we're doing allocation and writeback of the
765 * compressed pages
766 */
767 btrfs_drop_extent_cache(inode, async_extent->start,
768 async_extent->start +
769 async_extent->ram_size - 1, 0);
770
David Sterba172ddd62011-04-21 00:48:27 +0200771 em = alloc_extent_map();
Liu Bob9aa55b2013-05-14 02:12:15 +0000772 if (!em) {
773 ret = -ENOMEM;
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500774 goto out_free_reserve;
Liu Bob9aa55b2013-05-14 02:12:15 +0000775 }
Chris Mason771ed682008-11-06 22:02:51 -0500776 em->start = async_extent->start;
777 em->len = async_extent->ram_size;
Chris Mason445a6942008-11-10 11:53:33 -0500778 em->orig_start = em->start;
Josef Bacik2ab28f32012-10-12 15:27:49 -0400779 em->mod_start = em->start;
780 em->mod_len = em->len;
Chris Mason771ed682008-11-06 22:02:51 -0500781
782 em->block_start = ins.objectid;
783 em->block_len = ins.offset;
Josef Bacikb4939682012-12-03 10:31:19 -0500784 em->orig_block_len = ins.offset;
Josef Bacikcc95bef2013-04-04 14:31:27 -0400785 em->ram_bytes = async_extent->ram_size;
Chris Mason771ed682008-11-06 22:02:51 -0500786 em->bdev = root->fs_info->fs_devices->latest_bdev;
Li Zefan261507a02010-12-17 14:21:50 +0800787 em->compress_type = async_extent->compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500788 set_bit(EXTENT_FLAG_PINNED, &em->flags);
789 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Josef Bacik70c8a912012-10-11 16:54:30 -0400790 em->generation = -1;
Chris Mason771ed682008-11-06 22:02:51 -0500791
Chris Masond3977122009-01-05 21:25:51 -0500792 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -0400793 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -0400794 ret = add_extent_mapping(em_tree, em, 1);
Chris Mason890871b2009-09-02 16:24:52 -0400795 write_unlock(&em_tree->lock);
Chris Mason771ed682008-11-06 22:02:51 -0500796 if (ret != -EEXIST) {
797 free_extent_map(em);
798 break;
799 }
800 btrfs_drop_extent_cache(inode, async_extent->start,
801 async_extent->start +
802 async_extent->ram_size - 1, 0);
803 }
804
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500805 if (ret)
806 goto out_free_reserve;
807
Li Zefan261507a02010-12-17 14:21:50 +0800808 ret = btrfs_add_ordered_extent_compress(inode,
809 async_extent->start,
810 ins.objectid,
811 async_extent->ram_size,
812 ins.offset,
813 BTRFS_ORDERED_COMPRESSED,
814 async_extent->compress_type);
Filipe Mananad9f85962014-08-25 10:43:00 +0100815 if (ret) {
816 btrfs_drop_extent_cache(inode, async_extent->start,
817 async_extent->start +
818 async_extent->ram_size - 1, 0);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500819 goto out_free_reserve;
Filipe Mananad9f85962014-08-25 10:43:00 +0100820 }
Chris Mason771ed682008-11-06 22:02:51 -0500821
Chris Mason771ed682008-11-06 22:02:51 -0500822 /*
823 * clear dirty, set writeback and unlock the pages.
824 */
Josef Bacikc2790a22013-07-29 11:20:47 -0400825 extent_clear_unlock_delalloc(inode, async_extent->start,
Chris Masona791e352009-10-08 11:27:10 -0400826 async_extent->start +
827 async_extent->ram_size - 1,
Josef Bacik151a41b2013-07-29 13:22:24 -0400828 NULL, EXTENT_LOCKED | EXTENT_DELALLOC,
829 PAGE_UNLOCK | PAGE_CLEAR_DIRTY |
Josef Bacikc2790a22013-07-29 11:20:47 -0400830 PAGE_SET_WRITEBACK);
Chris Mason771ed682008-11-06 22:02:51 -0500831 ret = btrfs_submit_compressed_write(inode,
Chris Masond3977122009-01-05 21:25:51 -0500832 async_extent->start,
833 async_extent->ram_size,
834 ins.objectid,
835 ins.offset, async_extent->pages,
836 async_extent->nr_pages);
Filipe Mananafce2a4e2014-10-06 22:14:23 +0100837 if (ret) {
838 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
839 struct page *p = async_extent->pages[0];
840 const u64 start = async_extent->start;
841 const u64 end = start + async_extent->ram_size - 1;
842
843 p->mapping = inode->i_mapping;
844 tree->ops->writepage_end_io_hook(p, start, end,
845 NULL, 0);
846 p->mapping = NULL;
847 extent_clear_unlock_delalloc(inode, start, end, NULL, 0,
848 PAGE_END_WRITEBACK |
849 PAGE_SET_ERROR);
Filipe Manana40ae8372014-10-06 22:14:24 +0100850 free_async_extent_pages(async_extent);
Filipe Mananafce2a4e2014-10-06 22:14:23 +0100851 }
Chris Mason771ed682008-11-06 22:02:51 -0500852 alloc_hint = ins.objectid + ins.offset;
853 kfree(async_extent);
854 cond_resched();
855 }
Filipe Mananadec8f172014-10-06 22:14:26 +0100856 return;
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500857out_free_reserve:
Miao Xiee570fd22014-06-19 10:42:50 +0800858 btrfs_free_reserved_extent(root, ins.objectid, ins.offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100859out_free:
Josef Bacikc2790a22013-07-29 11:20:47 -0400860 extent_clear_unlock_delalloc(inode, async_extent->start,
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500861 async_extent->start +
862 async_extent->ram_size - 1,
Josef Bacikc2790a22013-07-29 11:20:47 -0400863 NULL, EXTENT_LOCKED | EXTENT_DELALLOC |
Josef Bacik151a41b2013-07-29 13:22:24 -0400864 EXTENT_DEFRAG | EXTENT_DO_ACCOUNTING,
865 PAGE_UNLOCK | PAGE_CLEAR_DIRTY |
Filipe Manana704de492014-10-06 22:14:22 +0100866 PAGE_SET_WRITEBACK | PAGE_END_WRITEBACK |
867 PAGE_SET_ERROR);
Filipe Manana40ae8372014-10-06 22:14:24 +0100868 free_async_extent_pages(async_extent);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100869 kfree(async_extent);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500870 goto again;
Chris Mason771ed682008-11-06 22:02:51 -0500871}
872
Josef Bacik4b46fce2010-05-23 11:00:55 -0400873static u64 get_extent_allocation_hint(struct inode *inode, u64 start,
874 u64 num_bytes)
875{
876 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
877 struct extent_map *em;
878 u64 alloc_hint = 0;
879
880 read_lock(&em_tree->lock);
881 em = search_extent_mapping(em_tree, start, num_bytes);
882 if (em) {
883 /*
884 * if block start isn't an actual block number then find the
885 * first block in this inode and use that as a hint. If that
886 * block is also bogus then just don't worry about it.
887 */
888 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
889 free_extent_map(em);
890 em = search_extent_mapping(em_tree, 0, 0);
891 if (em && em->block_start < EXTENT_MAP_LAST_BYTE)
892 alloc_hint = em->block_start;
893 if (em)
894 free_extent_map(em);
895 } else {
896 alloc_hint = em->block_start;
897 free_extent_map(em);
898 }
899 }
900 read_unlock(&em_tree->lock);
901
902 return alloc_hint;
903}
904
Chris Mason771ed682008-11-06 22:02:51 -0500905/*
906 * when extent_io.c finds a delayed allocation range in the file,
907 * the call backs end up in this code. The basic idea is to
908 * allocate extents on disk for the range, and create ordered data structs
909 * in ram to track those extents.
910 *
911 * locked_page is the page that writepage had locked already. We use
912 * it to make sure we don't do extra locks or unlocks.
913 *
914 * *page_started is set to one if we unlock locked_page and do everything
915 * required to start IO on it. It may be clean and already done with
916 * IO when we return.
917 */
Josef Bacik00361582013-08-14 14:02:47 -0400918static noinline int cow_file_range(struct inode *inode,
919 struct page *locked_page,
920 u64 start, u64 end, int *page_started,
921 unsigned long *nr_written,
922 int unlock)
Chris Mason771ed682008-11-06 22:02:51 -0500923{
Josef Bacik00361582013-08-14 14:02:47 -0400924 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason771ed682008-11-06 22:02:51 -0500925 u64 alloc_hint = 0;
926 u64 num_bytes;
927 unsigned long ram_size;
928 u64 disk_num_bytes;
929 u64 cur_alloc_size;
930 u64 blocksize = root->sectorsize;
Chris Mason771ed682008-11-06 22:02:51 -0500931 struct btrfs_key ins;
932 struct extent_map *em;
933 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
934 int ret = 0;
935
Josef Bacik02ecd2c2013-10-25 16:19:08 -0400936 if (btrfs_is_free_space_inode(inode)) {
937 WARN_ON_ONCE(1);
Josef Bacik29bce2f2014-02-07 12:21:23 -0500938 ret = -EINVAL;
939 goto out_unlock;
Josef Bacik02ecd2c2013-10-25 16:19:08 -0400940 }
Chris Mason771ed682008-11-06 22:02:51 -0500941
Qu Wenruofda28322013-02-26 08:10:22 +0000942 num_bytes = ALIGN(end - start + 1, blocksize);
Chris Mason771ed682008-11-06 22:02:51 -0500943 num_bytes = max(blocksize, num_bytes);
944 disk_num_bytes = num_bytes;
Chris Mason771ed682008-11-06 22:02:51 -0500945
Chris Mason4cb53002011-05-24 15:35:30 -0400946 /* if this is a small write inside eof, kick off defrag */
Liu Bo4cb13e52012-03-29 09:57:45 -0400947 if (num_bytes < 64 * 1024 &&
948 (start > 0 || end + 1 < BTRFS_I(inode)->disk_i_size))
Josef Bacik00361582013-08-14 14:02:47 -0400949 btrfs_add_inode_defrag(NULL, inode);
Chris Mason4cb53002011-05-24 15:35:30 -0400950
Chris Mason771ed682008-11-06 22:02:51 -0500951 if (start == 0) {
952 /* lets try to make an inline extent */
Josef Bacik00361582013-08-14 14:02:47 -0400953 ret = cow_file_range_inline(root, inode, start, end, 0, 0,
954 NULL);
Chris Mason771ed682008-11-06 22:02:51 -0500955 if (ret == 0) {
Josef Bacikc2790a22013-07-29 11:20:47 -0400956 extent_clear_unlock_delalloc(inode, start, end, NULL,
957 EXTENT_LOCKED | EXTENT_DELALLOC |
Josef Bacik151a41b2013-07-29 13:22:24 -0400958 EXTENT_DEFRAG, PAGE_UNLOCK |
Josef Bacikc2790a22013-07-29 11:20:47 -0400959 PAGE_CLEAR_DIRTY | PAGE_SET_WRITEBACK |
960 PAGE_END_WRITEBACK);
Yan, Zhengc2167752009-11-12 09:34:21 +0000961
Chris Mason771ed682008-11-06 22:02:51 -0500962 *nr_written = *nr_written +
963 (end - start + PAGE_CACHE_SIZE) / PAGE_CACHE_SIZE;
964 *page_started = 1;
Chris Mason771ed682008-11-06 22:02:51 -0500965 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100966 } else if (ret < 0) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100967 goto out_unlock;
Chris Mason771ed682008-11-06 22:02:51 -0500968 }
969 }
Chris Masonc8b97812008-10-29 14:49:59 -0400970
971 BUG_ON(disk_num_bytes >
David Sterba6c417612011-04-13 15:41:04 +0200972 btrfs_super_total_bytes(root->fs_info->super_copy));
Chris Masonc8b97812008-10-29 14:49:59 -0400973
Josef Bacik4b46fce2010-05-23 11:00:55 -0400974 alloc_hint = get_extent_allocation_hint(inode, start, num_bytes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400975 btrfs_drop_extent_cache(inode, start, start + num_bytes - 1, 0);
Chris Mason3b951512008-04-17 11:29:12 -0400976
Chris Masond3977122009-01-05 21:25:51 -0500977 while (disk_num_bytes > 0) {
Chris Masona791e352009-10-08 11:27:10 -0400978 unsigned long op;
979
Josef Bacik287a0ab2010-03-19 18:07:23 +0000980 cur_alloc_size = disk_num_bytes;
Josef Bacik00361582013-08-14 14:02:47 -0400981 ret = btrfs_reserve_extent(root, cur_alloc_size,
Chris Mason771ed682008-11-06 22:02:51 -0500982 root->sectorsize, 0, alloc_hint,
Miao Xiee570fd22014-06-19 10:42:50 +0800983 &ins, 1, 1);
Josef Bacik00361582013-08-14 14:02:47 -0400984 if (ret < 0)
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100985 goto out_unlock;
Chris Masond3977122009-01-05 21:25:51 -0500986
David Sterba172ddd62011-04-21 00:48:27 +0200987 em = alloc_extent_map();
Liu Bob9aa55b2013-05-14 02:12:15 +0000988 if (!em) {
989 ret = -ENOMEM;
Liu Boace68ba2013-04-22 10:53:47 +0000990 goto out_reserve;
Liu Bob9aa55b2013-05-14 02:12:15 +0000991 }
Chris Masone6dcd2d2008-07-17 12:53:50 -0400992 em->start = start;
Chris Mason445a6942008-11-10 11:53:33 -0500993 em->orig_start = em->start;
Chris Mason771ed682008-11-06 22:02:51 -0500994 ram_size = ins.offset;
995 em->len = ins.offset;
Josef Bacik2ab28f32012-10-12 15:27:49 -0400996 em->mod_start = em->start;
997 em->mod_len = em->len;
Chris Masonc8b97812008-10-29 14:49:59 -0400998
Chris Masone6dcd2d2008-07-17 12:53:50 -0400999 em->block_start = ins.objectid;
Chris Masonc8b97812008-10-29 14:49:59 -04001000 em->block_len = ins.offset;
Josef Bacikb4939682012-12-03 10:31:19 -05001001 em->orig_block_len = ins.offset;
Josef Bacikcc95bef2013-04-04 14:31:27 -04001002 em->ram_bytes = ram_size;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001003 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -04001004 set_bit(EXTENT_FLAG_PINNED, &em->flags);
Josef Bacik70c8a912012-10-11 16:54:30 -04001005 em->generation = -1;
Chris Masonc8b97812008-10-29 14:49:59 -04001006
Chris Masond3977122009-01-05 21:25:51 -05001007 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04001008 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04001009 ret = add_extent_mapping(em_tree, em, 1);
Chris Mason890871b2009-09-02 16:24:52 -04001010 write_unlock(&em_tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001011 if (ret != -EEXIST) {
1012 free_extent_map(em);
1013 break;
1014 }
1015 btrfs_drop_extent_cache(inode, start,
Chris Masonc8b97812008-10-29 14:49:59 -04001016 start + ram_size - 1, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001017 }
Liu Boace68ba2013-04-22 10:53:47 +00001018 if (ret)
1019 goto out_reserve;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001020
Chris Mason98d20f62008-04-14 09:46:10 -04001021 cur_alloc_size = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001022 ret = btrfs_add_ordered_extent(inode, start, ins.objectid,
Chris Mason771ed682008-11-06 22:02:51 -05001023 ram_size, cur_alloc_size, 0);
Liu Boace68ba2013-04-22 10:53:47 +00001024 if (ret)
Filipe Mananad9f85962014-08-25 10:43:00 +01001025 goto out_drop_extent_cache;
Chris Masonc8b97812008-10-29 14:49:59 -04001026
Yan Zheng17d217f2008-12-12 10:03:38 -05001027 if (root->root_key.objectid ==
1028 BTRFS_DATA_RELOC_TREE_OBJECTID) {
1029 ret = btrfs_reloc_clone_csums(inode, start,
1030 cur_alloc_size);
Josef Bacik00361582013-08-14 14:02:47 -04001031 if (ret)
Filipe Mananad9f85962014-08-25 10:43:00 +01001032 goto out_drop_extent_cache;
Yan Zheng17d217f2008-12-12 10:03:38 -05001033 }
1034
Chris Masond3977122009-01-05 21:25:51 -05001035 if (disk_num_bytes < cur_alloc_size)
Chris Mason3b951512008-04-17 11:29:12 -04001036 break;
Chris Masond3977122009-01-05 21:25:51 -05001037
Chris Masonc8b97812008-10-29 14:49:59 -04001038 /* we're not doing compressed IO, don't unlock the first
1039 * page (which the caller expects to stay locked), don't
1040 * clear any dirty bits and don't set any writeback bits
Chris Mason8b62b722009-09-02 16:53:46 -04001041 *
1042 * Do set the Private2 bit so we know this page was properly
1043 * setup for writepage
Chris Masonc8b97812008-10-29 14:49:59 -04001044 */
Josef Bacikc2790a22013-07-29 11:20:47 -04001045 op = unlock ? PAGE_UNLOCK : 0;
1046 op |= PAGE_SET_PRIVATE2;
Chris Masona791e352009-10-08 11:27:10 -04001047
Josef Bacikc2790a22013-07-29 11:20:47 -04001048 extent_clear_unlock_delalloc(inode, start,
1049 start + ram_size - 1, locked_page,
1050 EXTENT_LOCKED | EXTENT_DELALLOC,
1051 op);
Chris Masonc8b97812008-10-29 14:49:59 -04001052 disk_num_bytes -= cur_alloc_size;
Chris Masonc59f8952007-12-17 20:14:04 -05001053 num_bytes -= cur_alloc_size;
1054 alloc_hint = ins.objectid + ins.offset;
1055 start += cur_alloc_size;
Chris Masonb888db22007-08-27 16:49:44 -04001056 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001057out:
Chris Masonbe20aa92007-12-17 20:14:01 -05001058 return ret;
Miao Xieb7d5b0a2012-11-01 07:32:18 +00001059
Filipe Mananad9f85962014-08-25 10:43:00 +01001060out_drop_extent_cache:
1061 btrfs_drop_extent_cache(inode, start, start + ram_size - 1, 0);
Liu Boace68ba2013-04-22 10:53:47 +00001062out_reserve:
Miao Xiee570fd22014-06-19 10:42:50 +08001063 btrfs_free_reserved_extent(root, ins.objectid, ins.offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001064out_unlock:
Josef Bacikc2790a22013-07-29 11:20:47 -04001065 extent_clear_unlock_delalloc(inode, start, end, locked_page,
Josef Bacik151a41b2013-07-29 13:22:24 -04001066 EXTENT_LOCKED | EXTENT_DO_ACCOUNTING |
1067 EXTENT_DELALLOC | EXTENT_DEFRAG,
1068 PAGE_UNLOCK | PAGE_CLEAR_DIRTY |
1069 PAGE_SET_WRITEBACK | PAGE_END_WRITEBACK);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001070 goto out;
Chris Mason771ed682008-11-06 22:02:51 -05001071}
Chris Masonc8b97812008-10-29 14:49:59 -04001072
Chris Mason771ed682008-11-06 22:02:51 -05001073/*
1074 * work queue call back to started compression on a file and pages
1075 */
1076static noinline void async_cow_start(struct btrfs_work *work)
1077{
1078 struct async_cow *async_cow;
1079 int num_added = 0;
1080 async_cow = container_of(work, struct async_cow, work);
1081
1082 compress_file_range(async_cow->inode, async_cow->locked_page,
1083 async_cow->start, async_cow->end, async_cow,
1084 &num_added);
Josef Bacik8180ef82012-06-08 15:16:12 -04001085 if (num_added == 0) {
Josef Bacikcb77fcd2012-06-15 12:19:48 -06001086 btrfs_add_delayed_iput(async_cow->inode);
Chris Mason771ed682008-11-06 22:02:51 -05001087 async_cow->inode = NULL;
Josef Bacik8180ef82012-06-08 15:16:12 -04001088 }
Chris Mason771ed682008-11-06 22:02:51 -05001089}
1090
1091/*
1092 * work queue call back to submit previously compressed pages
1093 */
1094static noinline void async_cow_submit(struct btrfs_work *work)
1095{
1096 struct async_cow *async_cow;
1097 struct btrfs_root *root;
1098 unsigned long nr_pages;
1099
1100 async_cow = container_of(work, struct async_cow, work);
1101
1102 root = async_cow->root;
1103 nr_pages = (async_cow->end - async_cow->start + PAGE_CACHE_SIZE) >>
1104 PAGE_CACHE_SHIFT;
1105
David Sterbaee863952015-02-16 19:41:40 +01001106 /*
1107 * atomic_sub_return implies a barrier for waitqueue_active
1108 */
Josef Bacik66657b32012-08-01 15:36:24 -04001109 if (atomic_sub_return(nr_pages, &root->fs_info->async_delalloc_pages) <
Liu Bo287082b2012-06-28 04:02:24 -06001110 5 * 1024 * 1024 &&
Chris Mason771ed682008-11-06 22:02:51 -05001111 waitqueue_active(&root->fs_info->async_submit_wait))
1112 wake_up(&root->fs_info->async_submit_wait);
1113
Chris Masond3977122009-01-05 21:25:51 -05001114 if (async_cow->inode)
Chris Mason771ed682008-11-06 22:02:51 -05001115 submit_compressed_extents(async_cow->inode, async_cow);
Chris Mason771ed682008-11-06 22:02:51 -05001116}
Chris Masonc8b97812008-10-29 14:49:59 -04001117
Chris Mason771ed682008-11-06 22:02:51 -05001118static noinline void async_cow_free(struct btrfs_work *work)
1119{
1120 struct async_cow *async_cow;
1121 async_cow = container_of(work, struct async_cow, work);
Josef Bacik8180ef82012-06-08 15:16:12 -04001122 if (async_cow->inode)
Josef Bacikcb77fcd2012-06-15 12:19:48 -06001123 btrfs_add_delayed_iput(async_cow->inode);
Chris Mason771ed682008-11-06 22:02:51 -05001124 kfree(async_cow);
1125}
1126
1127static int cow_file_range_async(struct inode *inode, struct page *locked_page,
1128 u64 start, u64 end, int *page_started,
1129 unsigned long *nr_written)
1130{
1131 struct async_cow *async_cow;
1132 struct btrfs_root *root = BTRFS_I(inode)->root;
1133 unsigned long nr_pages;
1134 u64 cur_end;
Liu Bo287082b2012-06-28 04:02:24 -06001135 int limit = 10 * 1024 * 1024;
Chris Mason771ed682008-11-06 22:02:51 -05001136
Chris Masona3429ab2009-10-08 12:30:20 -04001137 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, EXTENT_LOCKED,
1138 1, 0, NULL, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -05001139 while (start < end) {
Chris Mason771ed682008-11-06 22:02:51 -05001140 async_cow = kmalloc(sizeof(*async_cow), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001141 BUG_ON(!async_cow); /* -ENOMEM */
Josef Bacik8180ef82012-06-08 15:16:12 -04001142 async_cow->inode = igrab(inode);
Chris Mason771ed682008-11-06 22:02:51 -05001143 async_cow->root = root;
1144 async_cow->locked_page = locked_page;
1145 async_cow->start = start;
1146
Wang Shilongf79707b2014-07-17 11:44:09 +08001147 if (BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS &&
1148 !btrfs_test_opt(root, FORCE_COMPRESS))
Chris Mason771ed682008-11-06 22:02:51 -05001149 cur_end = end;
1150 else
1151 cur_end = min(end, start + 512 * 1024 - 1);
1152
1153 async_cow->end = cur_end;
1154 INIT_LIST_HEAD(&async_cow->extents);
1155
Liu Bo9e0af232014-08-15 23:36:53 +08001156 btrfs_init_work(&async_cow->work,
1157 btrfs_delalloc_helper,
1158 async_cow_start, async_cow_submit,
1159 async_cow_free);
Chris Mason771ed682008-11-06 22:02:51 -05001160
Chris Mason771ed682008-11-06 22:02:51 -05001161 nr_pages = (cur_end - start + PAGE_CACHE_SIZE) >>
1162 PAGE_CACHE_SHIFT;
1163 atomic_add(nr_pages, &root->fs_info->async_delalloc_pages);
1164
Qu Wenruoafe3d242014-02-28 10:46:07 +08001165 btrfs_queue_work(root->fs_info->delalloc_workers,
1166 &async_cow->work);
Chris Mason771ed682008-11-06 22:02:51 -05001167
1168 if (atomic_read(&root->fs_info->async_delalloc_pages) > limit) {
1169 wait_event(root->fs_info->async_submit_wait,
1170 (atomic_read(&root->fs_info->async_delalloc_pages) <
1171 limit));
1172 }
1173
Chris Masond3977122009-01-05 21:25:51 -05001174 while (atomic_read(&root->fs_info->async_submit_draining) &&
Chris Mason771ed682008-11-06 22:02:51 -05001175 atomic_read(&root->fs_info->async_delalloc_pages)) {
1176 wait_event(root->fs_info->async_submit_wait,
1177 (atomic_read(&root->fs_info->async_delalloc_pages) ==
1178 0));
1179 }
1180
1181 *nr_written += nr_pages;
1182 start = cur_end + 1;
1183 }
1184 *page_started = 1;
1185 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05001186}
1187
Chris Masond3977122009-01-05 21:25:51 -05001188static noinline int csum_exist_in_range(struct btrfs_root *root,
Yan Zheng17d217f2008-12-12 10:03:38 -05001189 u64 bytenr, u64 num_bytes)
1190{
1191 int ret;
1192 struct btrfs_ordered_sum *sums;
1193 LIST_HEAD(list);
1194
Yan Zheng07d400a2009-01-06 11:42:00 -05001195 ret = btrfs_lookup_csums_range(root->fs_info->csum_root, bytenr,
Arne Jansena2de7332011-03-08 14:14:00 +01001196 bytenr + num_bytes - 1, &list, 0);
Yan Zheng17d217f2008-12-12 10:03:38 -05001197 if (ret == 0 && list_empty(&list))
1198 return 0;
1199
1200 while (!list_empty(&list)) {
1201 sums = list_entry(list.next, struct btrfs_ordered_sum, list);
1202 list_del(&sums->list);
1203 kfree(sums);
1204 }
1205 return 1;
1206}
1207
Chris Masond352ac62008-09-29 15:18:18 -04001208/*
1209 * when nowcow writeback call back. This checks for snapshots or COW copies
1210 * of the extents that exist in the file, and COWs the file as required.
1211 *
1212 * If no cow copies or snapshots exist, we write directly to the existing
1213 * blocks on disk
1214 */
Chris Mason7f366cf2009-03-12 20:12:45 -04001215static noinline int run_delalloc_nocow(struct inode *inode,
1216 struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001217 u64 start, u64 end, int *page_started, int force,
1218 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001219{
Chris Masonbe20aa92007-12-17 20:14:01 -05001220 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001221 struct btrfs_trans_handle *trans;
Chris Masonbe20aa92007-12-17 20:14:01 -05001222 struct extent_buffer *leaf;
Chris Masonbe20aa92007-12-17 20:14:01 -05001223 struct btrfs_path *path;
Yan Zheng80ff3852008-10-30 14:20:02 -04001224 struct btrfs_file_extent_item *fi;
Chris Masonbe20aa92007-12-17 20:14:01 -05001225 struct btrfs_key found_key;
Yan Zheng80ff3852008-10-30 14:20:02 -04001226 u64 cow_start;
1227 u64 cur_offset;
1228 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001229 u64 extent_offset;
Yan Zheng80ff3852008-10-30 14:20:02 -04001230 u64 disk_bytenr;
1231 u64 num_bytes;
Josef Bacikb4939682012-12-03 10:31:19 -05001232 u64 disk_num_bytes;
Josef Bacikcc95bef2013-04-04 14:31:27 -04001233 u64 ram_bytes;
Yan Zheng80ff3852008-10-30 14:20:02 -04001234 int extent_type;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001235 int ret, err;
Yan Zhengd899e052008-10-30 14:25:28 -04001236 int type;
Yan Zheng80ff3852008-10-30 14:20:02 -04001237 int nocow;
1238 int check_prev = 1;
Li Zefan82d59022011-04-20 10:33:24 +08001239 bool nolock;
Li Zefan33345d012011-04-20 10:31:50 +08001240 u64 ino = btrfs_ino(inode);
Chris Masonbe20aa92007-12-17 20:14:01 -05001241
1242 path = btrfs_alloc_path();
Josef Bacik17ca04a2012-05-31 15:58:55 -04001243 if (!path) {
Josef Bacikc2790a22013-07-29 11:20:47 -04001244 extent_clear_unlock_delalloc(inode, start, end, locked_page,
1245 EXTENT_LOCKED | EXTENT_DELALLOC |
Josef Bacik151a41b2013-07-29 13:22:24 -04001246 EXTENT_DO_ACCOUNTING |
1247 EXTENT_DEFRAG, PAGE_UNLOCK |
Josef Bacikc2790a22013-07-29 11:20:47 -04001248 PAGE_CLEAR_DIRTY |
1249 PAGE_SET_WRITEBACK |
1250 PAGE_END_WRITEBACK);
Mark Fashehd8926bb2011-07-13 10:38:47 -07001251 return -ENOMEM;
Josef Bacik17ca04a2012-05-31 15:58:55 -04001252 }
Li Zefan82d59022011-04-20 10:33:24 +08001253
Liu Bo83eea1f2012-07-10 05:28:39 -06001254 nolock = btrfs_is_free_space_inode(inode);
Li Zefan82d59022011-04-20 10:33:24 +08001255
1256 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001257 trans = btrfs_join_transaction_nolock(root);
Li Zefan82d59022011-04-20 10:33:24 +08001258 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001259 trans = btrfs_join_transaction(root);
Chris Masonff5714c2011-05-28 07:00:39 -04001260
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001261 if (IS_ERR(trans)) {
Josef Bacikc2790a22013-07-29 11:20:47 -04001262 extent_clear_unlock_delalloc(inode, start, end, locked_page,
1263 EXTENT_LOCKED | EXTENT_DELALLOC |
Josef Bacik151a41b2013-07-29 13:22:24 -04001264 EXTENT_DO_ACCOUNTING |
1265 EXTENT_DEFRAG, PAGE_UNLOCK |
Josef Bacikc2790a22013-07-29 11:20:47 -04001266 PAGE_CLEAR_DIRTY |
1267 PAGE_SET_WRITEBACK |
1268 PAGE_END_WRITEBACK);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001269 btrfs_free_path(path);
1270 return PTR_ERR(trans);
1271 }
1272
Josef Bacik74b21072011-04-13 12:02:53 -04001273 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Masonbe20aa92007-12-17 20:14:01 -05001274
Yan Zheng80ff3852008-10-30 14:20:02 -04001275 cow_start = (u64)-1;
1276 cur_offset = start;
1277 while (1) {
Li Zefan33345d012011-04-20 10:31:50 +08001278 ret = btrfs_lookup_file_extent(trans, root, path, ino,
Yan Zheng80ff3852008-10-30 14:20:02 -04001279 cur_offset, 0);
Josef Bacikd788a342013-10-25 16:55:08 -04001280 if (ret < 0)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001281 goto error;
Yan Zheng80ff3852008-10-30 14:20:02 -04001282 if (ret > 0 && path->slots[0] > 0 && check_prev) {
1283 leaf = path->nodes[0];
1284 btrfs_item_key_to_cpu(leaf, &found_key,
1285 path->slots[0] - 1);
Li Zefan33345d012011-04-20 10:31:50 +08001286 if (found_key.objectid == ino &&
Yan Zheng80ff3852008-10-30 14:20:02 -04001287 found_key.type == BTRFS_EXTENT_DATA_KEY)
1288 path->slots[0]--;
1289 }
1290 check_prev = 0;
1291next_slot:
1292 leaf = path->nodes[0];
1293 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1294 ret = btrfs_next_leaf(root, path);
Josef Bacikd788a342013-10-25 16:55:08 -04001295 if (ret < 0)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001296 goto error;
Yan Zheng80ff3852008-10-30 14:20:02 -04001297 if (ret > 0)
1298 break;
1299 leaf = path->nodes[0];
1300 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001301
Yan Zheng80ff3852008-10-30 14:20:02 -04001302 nocow = 0;
1303 disk_bytenr = 0;
Yan Zheng17d217f2008-12-12 10:03:38 -05001304 num_bytes = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001305 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05001306
Li Zefan33345d012011-04-20 10:31:50 +08001307 if (found_key.objectid > ino ||
Yan Zheng80ff3852008-10-30 14:20:02 -04001308 found_key.type > BTRFS_EXTENT_DATA_KEY ||
1309 found_key.offset > end)
1310 break;
Chris Masonbe20aa92007-12-17 20:14:01 -05001311
Yan Zheng80ff3852008-10-30 14:20:02 -04001312 if (found_key.offset > cur_offset) {
1313 extent_end = found_key.offset;
Chris Masone9061e22009-10-09 09:57:45 -04001314 extent_type = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001315 goto out_check;
1316 }
Chris Masonc31f8832008-01-08 15:46:31 -05001317
Yan Zheng80ff3852008-10-30 14:20:02 -04001318 fi = btrfs_item_ptr(leaf, path->slots[0],
1319 struct btrfs_file_extent_item);
1320 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Masonbe20aa92007-12-17 20:14:01 -05001321
Josef Bacikcc95bef2013-04-04 14:31:27 -04001322 ram_bytes = btrfs_file_extent_ram_bytes(leaf, fi);
Yan Zhengd899e052008-10-30 14:25:28 -04001323 if (extent_type == BTRFS_FILE_EXTENT_REG ||
1324 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001325 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001326 extent_offset = btrfs_file_extent_offset(leaf, fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001327 extent_end = found_key.offset +
1328 btrfs_file_extent_num_bytes(leaf, fi);
Josef Bacikb4939682012-12-03 10:31:19 -05001329 disk_num_bytes =
1330 btrfs_file_extent_disk_num_bytes(leaf, fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001331 if (extent_end <= start) {
1332 path->slots[0]++;
1333 goto next_slot;
1334 }
Yan Zheng17d217f2008-12-12 10:03:38 -05001335 if (disk_bytenr == 0)
1336 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001337 if (btrfs_file_extent_compression(leaf, fi) ||
1338 btrfs_file_extent_encryption(leaf, fi) ||
1339 btrfs_file_extent_other_encoding(leaf, fi))
1340 goto out_check;
Yan Zhengd899e052008-10-30 14:25:28 -04001341 if (extent_type == BTRFS_FILE_EXTENT_REG && !force)
1342 goto out_check;
Yan Zhengd2fb3432008-12-11 16:30:39 -05001343 if (btrfs_extent_readonly(root, disk_bytenr))
Yan Zheng80ff3852008-10-30 14:20:02 -04001344 goto out_check;
Li Zefan33345d012011-04-20 10:31:50 +08001345 if (btrfs_cross_ref_exist(trans, root, ino,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001346 found_key.offset -
1347 extent_offset, disk_bytenr))
Yan Zheng17d217f2008-12-12 10:03:38 -05001348 goto out_check;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001349 disk_bytenr += extent_offset;
Yan Zheng17d217f2008-12-12 10:03:38 -05001350 disk_bytenr += cur_offset - found_key.offset;
1351 num_bytes = min(end + 1, extent_end) - cur_offset;
1352 /*
Wang Shilonge9894fd2014-03-27 11:12:25 +08001353 * if there are pending snapshots for this root,
1354 * we fall into common COW way.
1355 */
1356 if (!nolock) {
Filipe Manana9ea24bb2014-10-29 11:57:59 +00001357 err = btrfs_start_write_no_snapshoting(root);
Wang Shilonge9894fd2014-03-27 11:12:25 +08001358 if (!err)
1359 goto out_check;
1360 }
1361 /*
Yan Zheng17d217f2008-12-12 10:03:38 -05001362 * force cow if csum exists in the range.
1363 * this ensure that csum for a given extent are
1364 * either valid or do not exist.
1365 */
1366 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
1367 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001368 nocow = 1;
1369 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1370 extent_end = found_key.offset +
Chris Mason514ac8a2014-01-03 21:07:00 -08001371 btrfs_file_extent_inline_len(leaf,
1372 path->slots[0], fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001373 extent_end = ALIGN(extent_end, root->sectorsize);
1374 } else {
1375 BUG_ON(1);
1376 }
1377out_check:
1378 if (extent_end <= start) {
1379 path->slots[0]++;
Wang Shilonge9894fd2014-03-27 11:12:25 +08001380 if (!nolock && nocow)
Filipe Manana9ea24bb2014-10-29 11:57:59 +00001381 btrfs_end_write_no_snapshoting(root);
Yan Zheng80ff3852008-10-30 14:20:02 -04001382 goto next_slot;
1383 }
1384 if (!nocow) {
1385 if (cow_start == (u64)-1)
1386 cow_start = cur_offset;
1387 cur_offset = extent_end;
1388 if (cur_offset > end)
1389 break;
1390 path->slots[0]++;
1391 goto next_slot;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001392 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001393
David Sterbab3b4aa72011-04-21 01:20:15 +02001394 btrfs_release_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001395 if (cow_start != (u64)-1) {
Josef Bacik00361582013-08-14 14:02:47 -04001396 ret = cow_file_range(inode, locked_page,
1397 cow_start, found_key.offset - 1,
1398 page_started, nr_written, 1);
Wang Shilonge9894fd2014-03-27 11:12:25 +08001399 if (ret) {
1400 if (!nolock && nocow)
Filipe Manana9ea24bb2014-10-29 11:57:59 +00001401 btrfs_end_write_no_snapshoting(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001402 goto error;
Wang Shilonge9894fd2014-03-27 11:12:25 +08001403 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001404 cow_start = (u64)-1;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001405 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001406
Yan Zhengd899e052008-10-30 14:25:28 -04001407 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
1408 struct extent_map *em;
1409 struct extent_map_tree *em_tree;
1410 em_tree = &BTRFS_I(inode)->extent_tree;
David Sterba172ddd62011-04-21 00:48:27 +02001411 em = alloc_extent_map();
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001412 BUG_ON(!em); /* -ENOMEM */
Yan Zhengd899e052008-10-30 14:25:28 -04001413 em->start = cur_offset;
Josef Bacik70c8a912012-10-11 16:54:30 -04001414 em->orig_start = found_key.offset - extent_offset;
Yan Zhengd899e052008-10-30 14:25:28 -04001415 em->len = num_bytes;
1416 em->block_len = num_bytes;
1417 em->block_start = disk_bytenr;
Josef Bacikb4939682012-12-03 10:31:19 -05001418 em->orig_block_len = disk_num_bytes;
Josef Bacikcc95bef2013-04-04 14:31:27 -04001419 em->ram_bytes = ram_bytes;
Yan Zhengd899e052008-10-30 14:25:28 -04001420 em->bdev = root->fs_info->fs_devices->latest_bdev;
Josef Bacik2ab28f32012-10-12 15:27:49 -04001421 em->mod_start = em->start;
1422 em->mod_len = em->len;
Yan Zhengd899e052008-10-30 14:25:28 -04001423 set_bit(EXTENT_FLAG_PINNED, &em->flags);
Josef Bacikb11e2342012-12-03 10:58:15 -05001424 set_bit(EXTENT_FLAG_FILLING, &em->flags);
Josef Bacik70c8a912012-10-11 16:54:30 -04001425 em->generation = -1;
Yan Zhengd899e052008-10-30 14:25:28 -04001426 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04001427 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04001428 ret = add_extent_mapping(em_tree, em, 1);
Chris Mason890871b2009-09-02 16:24:52 -04001429 write_unlock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001430 if (ret != -EEXIST) {
1431 free_extent_map(em);
1432 break;
1433 }
1434 btrfs_drop_extent_cache(inode, em->start,
1435 em->start + em->len - 1, 0);
1436 }
1437 type = BTRFS_ORDERED_PREALLOC;
1438 } else {
1439 type = BTRFS_ORDERED_NOCOW;
1440 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001441
1442 ret = btrfs_add_ordered_extent(inode, cur_offset, disk_bytenr,
Yan Zhengd899e052008-10-30 14:25:28 -04001443 num_bytes, num_bytes, type);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001444 BUG_ON(ret); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -05001445
Yan, Zhengefa56462010-05-16 10:49:59 -04001446 if (root->root_key.objectid ==
1447 BTRFS_DATA_RELOC_TREE_OBJECTID) {
1448 ret = btrfs_reloc_clone_csums(inode, cur_offset,
1449 num_bytes);
Wang Shilonge9894fd2014-03-27 11:12:25 +08001450 if (ret) {
1451 if (!nolock && nocow)
Filipe Manana9ea24bb2014-10-29 11:57:59 +00001452 btrfs_end_write_no_snapshoting(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001453 goto error;
Wang Shilonge9894fd2014-03-27 11:12:25 +08001454 }
Yan, Zhengefa56462010-05-16 10:49:59 -04001455 }
1456
Josef Bacikc2790a22013-07-29 11:20:47 -04001457 extent_clear_unlock_delalloc(inode, cur_offset,
1458 cur_offset + num_bytes - 1,
1459 locked_page, EXTENT_LOCKED |
1460 EXTENT_DELALLOC, PAGE_UNLOCK |
1461 PAGE_SET_PRIVATE2);
Wang Shilonge9894fd2014-03-27 11:12:25 +08001462 if (!nolock && nocow)
Filipe Manana9ea24bb2014-10-29 11:57:59 +00001463 btrfs_end_write_no_snapshoting(root);
Yan Zheng80ff3852008-10-30 14:20:02 -04001464 cur_offset = extent_end;
1465 if (cur_offset > end)
1466 break;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001467 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001468 btrfs_release_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001469
Josef Bacik17ca04a2012-05-31 15:58:55 -04001470 if (cur_offset <= end && cow_start == (u64)-1) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001471 cow_start = cur_offset;
Josef Bacik17ca04a2012-05-31 15:58:55 -04001472 cur_offset = end;
1473 }
1474
Yan Zheng80ff3852008-10-30 14:20:02 -04001475 if (cow_start != (u64)-1) {
Josef Bacik00361582013-08-14 14:02:47 -04001476 ret = cow_file_range(inode, locked_page, cow_start, end,
1477 page_started, nr_written, 1);
Josef Bacikd788a342013-10-25 16:55:08 -04001478 if (ret)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001479 goto error;
Yan Zheng80ff3852008-10-30 14:20:02 -04001480 }
1481
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001482error:
Miao Xiea698d0752012-09-20 01:51:59 -06001483 err = btrfs_end_transaction(trans, root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001484 if (!ret)
1485 ret = err;
1486
Josef Bacik17ca04a2012-05-31 15:58:55 -04001487 if (ret && cur_offset < end)
Josef Bacikc2790a22013-07-29 11:20:47 -04001488 extent_clear_unlock_delalloc(inode, cur_offset, end,
1489 locked_page, EXTENT_LOCKED |
Josef Bacik151a41b2013-07-29 13:22:24 -04001490 EXTENT_DELALLOC | EXTENT_DEFRAG |
1491 EXTENT_DO_ACCOUNTING, PAGE_UNLOCK |
1492 PAGE_CLEAR_DIRTY |
Josef Bacikc2790a22013-07-29 11:20:47 -04001493 PAGE_SET_WRITEBACK |
1494 PAGE_END_WRITEBACK);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001495 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001496 return ret;
Chris Masonbe20aa92007-12-17 20:14:01 -05001497}
1498
Wang Shilong47059d92014-07-03 18:22:07 +08001499static inline int need_force_cow(struct inode *inode, u64 start, u64 end)
1500{
1501
1502 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) &&
1503 !(BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC))
1504 return 0;
1505
1506 /*
1507 * @defrag_bytes is a hint value, no spinlock held here,
1508 * if is not zero, it means the file is defragging.
1509 * Force cow if given extent needs to be defragged.
1510 */
1511 if (BTRFS_I(inode)->defrag_bytes &&
1512 test_range_bit(&BTRFS_I(inode)->io_tree, start, end,
1513 EXTENT_DEFRAG, 0, NULL))
1514 return 1;
1515
1516 return 0;
1517}
1518
Chris Masond352ac62008-09-29 15:18:18 -04001519/*
1520 * extent_io.c call back to do delayed allocation processing
1521 */
Chris Masonc8b97812008-10-29 14:49:59 -04001522static int run_delalloc_range(struct inode *inode, struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001523 u64 start, u64 end, int *page_started,
1524 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001525{
Chris Masonbe20aa92007-12-17 20:14:01 -05001526 int ret;
Wang Shilong47059d92014-07-03 18:22:07 +08001527 int force_cow = need_force_cow(inode, start, end);
Chris Masona2135012008-06-25 16:01:30 -04001528
Wang Shilong47059d92014-07-03 18:22:07 +08001529 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW && !force_cow) {
Chris Masonc8b97812008-10-29 14:49:59 -04001530 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001531 page_started, 1, nr_written);
Wang Shilong47059d92014-07-03 18:22:07 +08001532 } else if (BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC && !force_cow) {
Yan Zhengd899e052008-10-30 14:25:28 -04001533 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001534 page_started, 0, nr_written);
Wang Shilong78160302014-07-17 11:44:10 +08001535 } else if (!inode_need_compress(inode)) {
Chris Mason7f366cf2009-03-12 20:12:45 -04001536 ret = cow_file_range(inode, locked_page, start, end,
1537 page_started, nr_written, 1);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001538 } else {
1539 set_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
1540 &BTRFS_I(inode)->runtime_flags);
Chris Mason771ed682008-11-06 22:02:51 -05001541 ret = cow_file_range_async(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001542 page_started, nr_written);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001543 }
Chris Masonb888db22007-08-27 16:49:44 -04001544 return ret;
1545}
1546
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001547static void btrfs_split_extent_hook(struct inode *inode,
1548 struct extent_state *orig, u64 split)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001549{
Josef Bacikdcab6a32015-02-11 15:08:59 -05001550 u64 size;
1551
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001552 /* not delalloc, ignore it */
Josef Bacik9ed74f22009-09-11 16:12:44 -04001553 if (!(orig->state & EXTENT_DELALLOC))
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001554 return;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001555
Josef Bacikdcab6a32015-02-11 15:08:59 -05001556 size = orig->end - orig->start + 1;
1557 if (size > BTRFS_MAX_EXTENT_SIZE) {
1558 u64 num_extents;
1559 u64 new_size;
1560
1561 /*
Josef Bacikba117212015-03-13 15:01:24 -04001562 * See the explanation in btrfs_merge_extent_hook, the same
1563 * applies here, just in reverse.
Josef Bacikdcab6a32015-02-11 15:08:59 -05001564 */
1565 new_size = orig->end - split + 1;
Josef Bacikba117212015-03-13 15:01:24 -04001566 num_extents = div64_u64(new_size + BTRFS_MAX_EXTENT_SIZE - 1,
Josef Bacikdcab6a32015-02-11 15:08:59 -05001567 BTRFS_MAX_EXTENT_SIZE);
Josef Bacikba117212015-03-13 15:01:24 -04001568 new_size = split - orig->start;
1569 num_extents += div64_u64(new_size + BTRFS_MAX_EXTENT_SIZE - 1,
1570 BTRFS_MAX_EXTENT_SIZE);
1571 if (div64_u64(size + BTRFS_MAX_EXTENT_SIZE - 1,
1572 BTRFS_MAX_EXTENT_SIZE) >= num_extents)
Josef Bacikdcab6a32015-02-11 15:08:59 -05001573 return;
1574 }
1575
Josef Bacik9e0baf62011-07-15 15:16:44 +00001576 spin_lock(&BTRFS_I(inode)->lock);
1577 BTRFS_I(inode)->outstanding_extents++;
1578 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001579}
1580
1581/*
1582 * extent_io.c merge_extent_hook, used to track merged delayed allocation
1583 * extents so we can keep track of new extents that are just merged onto old
1584 * extents, such as when we are doing sequential writes, so we can properly
1585 * account for the metadata space we'll need.
1586 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001587static void btrfs_merge_extent_hook(struct inode *inode,
1588 struct extent_state *new,
1589 struct extent_state *other)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001590{
Josef Bacikdcab6a32015-02-11 15:08:59 -05001591 u64 new_size, old_size;
1592 u64 num_extents;
1593
Josef Bacik9ed74f22009-09-11 16:12:44 -04001594 /* not delalloc, ignore it */
1595 if (!(other->state & EXTENT_DELALLOC))
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001596 return;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001597
Josef Bacik8461a3d2015-03-13 15:12:08 -04001598 if (new->start > other->start)
1599 new_size = new->end - other->start + 1;
1600 else
1601 new_size = other->end - new->start + 1;
Josef Bacikdcab6a32015-02-11 15:08:59 -05001602
1603 /* we're not bigger than the max, unreserve the space and go */
1604 if (new_size <= BTRFS_MAX_EXTENT_SIZE) {
1605 spin_lock(&BTRFS_I(inode)->lock);
1606 BTRFS_I(inode)->outstanding_extents--;
1607 spin_unlock(&BTRFS_I(inode)->lock);
1608 return;
1609 }
1610
1611 /*
Josef Bacikba117212015-03-13 15:01:24 -04001612 * We have to add up either side to figure out how many extents were
1613 * accounted for before we merged into one big extent. If the number of
1614 * extents we accounted for is <= the amount we need for the new range
1615 * then we can return, otherwise drop. Think of it like this
1616 *
1617 * [ 4k][MAX_SIZE]
1618 *
1619 * So we've grown the extent by a MAX_SIZE extent, this would mean we
1620 * need 2 outstanding extents, on one side we have 1 and the other side
1621 * we have 1 so they are == and we can return. But in this case
1622 *
1623 * [MAX_SIZE+4k][MAX_SIZE+4k]
1624 *
1625 * Each range on their own accounts for 2 extents, but merged together
1626 * they are only 3 extents worth of accounting, so we need to drop in
1627 * this case.
Josef Bacikdcab6a32015-02-11 15:08:59 -05001628 */
Josef Bacikba117212015-03-13 15:01:24 -04001629 old_size = other->end - other->start + 1;
Josef Bacikdcab6a32015-02-11 15:08:59 -05001630 num_extents = div64_u64(old_size + BTRFS_MAX_EXTENT_SIZE - 1,
1631 BTRFS_MAX_EXTENT_SIZE);
Josef Bacikba117212015-03-13 15:01:24 -04001632 old_size = new->end - new->start + 1;
1633 num_extents += div64_u64(old_size + BTRFS_MAX_EXTENT_SIZE - 1,
1634 BTRFS_MAX_EXTENT_SIZE);
1635
Josef Bacikdcab6a32015-02-11 15:08:59 -05001636 if (div64_u64(new_size + BTRFS_MAX_EXTENT_SIZE - 1,
Josef Bacikba117212015-03-13 15:01:24 -04001637 BTRFS_MAX_EXTENT_SIZE) >= num_extents)
Josef Bacikdcab6a32015-02-11 15:08:59 -05001638 return;
1639
Josef Bacik9e0baf62011-07-15 15:16:44 +00001640 spin_lock(&BTRFS_I(inode)->lock);
1641 BTRFS_I(inode)->outstanding_extents--;
1642 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001643}
1644
Miao Xieeb73c1b2013-05-15 07:48:22 +00001645static void btrfs_add_delalloc_inodes(struct btrfs_root *root,
1646 struct inode *inode)
1647{
1648 spin_lock(&root->delalloc_lock);
1649 if (list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1650 list_add_tail(&BTRFS_I(inode)->delalloc_inodes,
1651 &root->delalloc_inodes);
1652 set_bit(BTRFS_INODE_IN_DELALLOC_LIST,
1653 &BTRFS_I(inode)->runtime_flags);
1654 root->nr_delalloc_inodes++;
1655 if (root->nr_delalloc_inodes == 1) {
1656 spin_lock(&root->fs_info->delalloc_root_lock);
1657 BUG_ON(!list_empty(&root->delalloc_root));
1658 list_add_tail(&root->delalloc_root,
1659 &root->fs_info->delalloc_roots);
1660 spin_unlock(&root->fs_info->delalloc_root_lock);
1661 }
1662 }
1663 spin_unlock(&root->delalloc_lock);
1664}
1665
1666static void btrfs_del_delalloc_inode(struct btrfs_root *root,
1667 struct inode *inode)
1668{
1669 spin_lock(&root->delalloc_lock);
1670 if (!list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1671 list_del_init(&BTRFS_I(inode)->delalloc_inodes);
1672 clear_bit(BTRFS_INODE_IN_DELALLOC_LIST,
1673 &BTRFS_I(inode)->runtime_flags);
1674 root->nr_delalloc_inodes--;
1675 if (!root->nr_delalloc_inodes) {
1676 spin_lock(&root->fs_info->delalloc_root_lock);
1677 BUG_ON(list_empty(&root->delalloc_root));
1678 list_del_init(&root->delalloc_root);
1679 spin_unlock(&root->fs_info->delalloc_root_lock);
1680 }
1681 }
1682 spin_unlock(&root->delalloc_lock);
1683}
1684
Chris Masond352ac62008-09-29 15:18:18 -04001685/*
1686 * extent_io.c set_bit_hook, used to track delayed allocation
1687 * bytes in this file, and to maintain the list of inodes that
1688 * have pending delalloc work to be done.
1689 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001690static void btrfs_set_bit_hook(struct inode *inode,
David Sterba9ee49a042015-01-14 19:52:13 +01001691 struct extent_state *state, unsigned *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001692{
Josef Bacik9ed74f22009-09-11 16:12:44 -04001693
Wang Shilong47059d92014-07-03 18:22:07 +08001694 if ((*bits & EXTENT_DEFRAG) && !(*bits & EXTENT_DELALLOC))
1695 WARN_ON(1);
Chris Mason75eff682008-12-15 15:54:40 -05001696 /*
1697 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00001698 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05001699 * bit, which is only set or cleared with irqs on
1700 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001701 if (!(state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001702 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001703 u64 len = state->end + 1 - state->start;
Liu Bo83eea1f2012-07-10 05:28:39 -06001704 bool do_list = !btrfs_is_free_space_inode(inode);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001705
Josef Bacik9e0baf62011-07-15 15:16:44 +00001706 if (*bits & EXTENT_FIRST_DELALLOC) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001707 *bits &= ~EXTENT_FIRST_DELALLOC;
Josef Bacik9e0baf62011-07-15 15:16:44 +00001708 } else {
1709 spin_lock(&BTRFS_I(inode)->lock);
1710 BTRFS_I(inode)->outstanding_extents++;
1711 spin_unlock(&BTRFS_I(inode)->lock);
1712 }
Josef Bacik287a0ab2010-03-19 18:07:23 +00001713
Josef Bacik6a3891c2015-03-16 17:38:52 -04001714 /* For sanity tests */
1715 if (btrfs_test_is_dummy_root(root))
1716 return;
1717
Miao Xie963d6782013-01-29 10:10:51 +00001718 __percpu_counter_add(&root->fs_info->delalloc_bytes, len,
1719 root->fs_info->delalloc_batch);
Miao Xiedf0af1a2013-01-29 10:11:59 +00001720 spin_lock(&BTRFS_I(inode)->lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001721 BTRFS_I(inode)->delalloc_bytes += len;
Wang Shilong47059d92014-07-03 18:22:07 +08001722 if (*bits & EXTENT_DEFRAG)
1723 BTRFS_I(inode)->defrag_bytes += len;
Miao Xiedf0af1a2013-01-29 10:11:59 +00001724 if (do_list && !test_bit(BTRFS_INODE_IN_DELALLOC_LIST,
Miao Xieeb73c1b2013-05-15 07:48:22 +00001725 &BTRFS_I(inode)->runtime_flags))
1726 btrfs_add_delalloc_inodes(root, inode);
Miao Xiedf0af1a2013-01-29 10:11:59 +00001727 spin_unlock(&BTRFS_I(inode)->lock);
Chris Mason291d6732008-01-29 15:55:23 -05001728 }
Chris Mason291d6732008-01-29 15:55:23 -05001729}
1730
Chris Masond352ac62008-09-29 15:18:18 -04001731/*
1732 * extent_io.c clear_bit_hook, see set_bit_hook for why
1733 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001734static void btrfs_clear_bit_hook(struct inode *inode,
David Sterba41074882013-04-29 13:38:46 +00001735 struct extent_state *state,
David Sterba9ee49a042015-01-14 19:52:13 +01001736 unsigned *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001737{
Wang Shilong47059d92014-07-03 18:22:07 +08001738 u64 len = state->end + 1 - state->start;
Josef Bacikdcab6a32015-02-11 15:08:59 -05001739 u64 num_extents = div64_u64(len + BTRFS_MAX_EXTENT_SIZE -1,
1740 BTRFS_MAX_EXTENT_SIZE);
Wang Shilong47059d92014-07-03 18:22:07 +08001741
1742 spin_lock(&BTRFS_I(inode)->lock);
1743 if ((state->state & EXTENT_DEFRAG) && (*bits & EXTENT_DEFRAG))
1744 BTRFS_I(inode)->defrag_bytes -= len;
1745 spin_unlock(&BTRFS_I(inode)->lock);
1746
Chris Mason75eff682008-12-15 15:54:40 -05001747 /*
1748 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00001749 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05001750 * bit, which is only set or cleared with irqs on
1751 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001752 if ((state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001753 struct btrfs_root *root = BTRFS_I(inode)->root;
Liu Bo83eea1f2012-07-10 05:28:39 -06001754 bool do_list = !btrfs_is_free_space_inode(inode);
Chris Masonbcbfce82008-04-22 13:26:47 -04001755
Josef Bacik9e0baf62011-07-15 15:16:44 +00001756 if (*bits & EXTENT_FIRST_DELALLOC) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001757 *bits &= ~EXTENT_FIRST_DELALLOC;
Josef Bacik9e0baf62011-07-15 15:16:44 +00001758 } else if (!(*bits & EXTENT_DO_ACCOUNTING)) {
1759 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacikdcab6a32015-02-11 15:08:59 -05001760 BTRFS_I(inode)->outstanding_extents -= num_extents;
Josef Bacik9e0baf62011-07-15 15:16:44 +00001761 spin_unlock(&BTRFS_I(inode)->lock);
1762 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001763
Josef Bacikb6d08f02013-09-27 14:57:43 -04001764 /*
1765 * We don't reserve metadata space for space cache inodes so we
1766 * don't need to call dellalloc_release_metadata if there is an
1767 * error.
1768 */
1769 if (*bits & EXTENT_DO_ACCOUNTING &&
1770 root != root->fs_info->tree_root)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001771 btrfs_delalloc_release_metadata(inode, len);
1772
Josef Bacik6a3891c2015-03-16 17:38:52 -04001773 /* For sanity tests. */
1774 if (btrfs_test_is_dummy_root(root))
1775 return;
1776
Josef Bacik0cb59c92010-07-02 12:14:14 -04001777 if (root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID
Josef Bacik7ee9e442013-06-21 16:37:03 -04001778 && do_list && !(state->state & EXTENT_NORESERVE))
Qu Wenruo51773be2015-10-08 18:19:37 +08001779 btrfs_free_reserved_data_space_noquota(inode,
1780 state->start, len);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001781
Miao Xie963d6782013-01-29 10:10:51 +00001782 __percpu_counter_add(&root->fs_info->delalloc_bytes, -len,
1783 root->fs_info->delalloc_batch);
Miao Xiedf0af1a2013-01-29 10:11:59 +00001784 spin_lock(&BTRFS_I(inode)->lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001785 BTRFS_I(inode)->delalloc_bytes -= len;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001786 if (do_list && BTRFS_I(inode)->delalloc_bytes == 0 &&
Miao Xiedf0af1a2013-01-29 10:11:59 +00001787 test_bit(BTRFS_INODE_IN_DELALLOC_LIST,
Miao Xieeb73c1b2013-05-15 07:48:22 +00001788 &BTRFS_I(inode)->runtime_flags))
1789 btrfs_del_delalloc_inode(root, inode);
Miao Xiedf0af1a2013-01-29 10:11:59 +00001790 spin_unlock(&BTRFS_I(inode)->lock);
Chris Mason291d6732008-01-29 15:55:23 -05001791 }
Chris Mason291d6732008-01-29 15:55:23 -05001792}
1793
Chris Masond352ac62008-09-29 15:18:18 -04001794/*
1795 * extent_io.c merge_bio_hook, this must check the chunk tree to make sure
1796 * we don't create bios that span stripes or chunks
1797 */
David Woodhouse64a16702009-07-15 23:29:37 +01001798int btrfs_merge_bio_hook(int rw, struct page *page, unsigned long offset,
Chris Masonc8b97812008-10-29 14:49:59 -04001799 size_t size, struct bio *bio,
1800 unsigned long bio_flags)
Chris Mason239b14b2008-03-24 15:02:07 -04001801{
1802 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
Kent Overstreet4f024f32013-10-11 15:44:27 -07001803 u64 logical = (u64)bio->bi_iter.bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -04001804 u64 length = 0;
1805 u64 map_length;
Chris Mason239b14b2008-03-24 15:02:07 -04001806 int ret;
1807
Chris Mason771ed682008-11-06 22:02:51 -05001808 if (bio_flags & EXTENT_BIO_COMPRESSED)
1809 return 0;
1810
Kent Overstreet4f024f32013-10-11 15:44:27 -07001811 length = bio->bi_iter.bi_size;
Chris Mason239b14b2008-03-24 15:02:07 -04001812 map_length = length;
David Woodhouse64a16702009-07-15 23:29:37 +01001813 ret = btrfs_map_block(root->fs_info, rw, logical,
Chris Masonf1885912008-04-09 16:28:12 -04001814 &map_length, NULL, 0);
Stefan Behrens3ec706c2012-11-05 15:46:42 +01001815 /* Will always return 0 with map_multi == NULL */
Jeff Mahoney3444a972011-10-03 23:23:13 -04001816 BUG_ON(ret < 0);
Chris Masond3977122009-01-05 21:25:51 -05001817 if (map_length < length + size)
Chris Mason239b14b2008-03-24 15:02:07 -04001818 return 1;
Jeff Mahoney3444a972011-10-03 23:23:13 -04001819 return 0;
Chris Mason239b14b2008-03-24 15:02:07 -04001820}
1821
Chris Masond352ac62008-09-29 15:18:18 -04001822/*
1823 * in order to insert checksums into the metadata in large chunks,
1824 * we wait until bio submission time. All the pages in the bio are
1825 * checksummed and sums are attached onto the ordered extent record.
1826 *
1827 * At IO completion time the cums attached on the ordered extent record
1828 * are inserted into the btree
1829 */
Chris Masond3977122009-01-05 21:25:51 -05001830static int __btrfs_submit_bio_start(struct inode *inode, int rw,
1831 struct bio *bio, int mirror_num,
Chris Masoneaf25d92010-05-25 09:48:28 -04001832 unsigned long bio_flags,
1833 u64 bio_offset)
Chris Mason065631f2008-02-20 12:07:25 -05001834{
Chris Mason065631f2008-02-20 12:07:25 -05001835 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason065631f2008-02-20 12:07:25 -05001836 int ret = 0;
Chris Masone0156402008-04-16 11:15:20 -04001837
Chris Masond20f7042008-12-08 16:58:54 -05001838 ret = btrfs_csum_one_bio(root, inode, bio, 0, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001839 BUG_ON(ret); /* -ENOMEM */
Chris Mason4a69a412008-11-06 22:03:00 -05001840 return 0;
1841}
Chris Masone0156402008-04-16 11:15:20 -04001842
Chris Mason4a69a412008-11-06 22:03:00 -05001843/*
1844 * in order to insert checksums into the metadata in large chunks,
1845 * we wait until bio submission time. All the pages in the bio are
1846 * checksummed and sums are attached onto the ordered extent record.
1847 *
1848 * At IO completion time the cums attached on the ordered extent record
1849 * are inserted into the btree
1850 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001851static int __btrfs_submit_bio_done(struct inode *inode, int rw, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001852 int mirror_num, unsigned long bio_flags,
1853 u64 bio_offset)
Chris Mason4a69a412008-11-06 22:03:00 -05001854{
1855 struct btrfs_root *root = BTRFS_I(inode)->root;
Stefan Behrens61891922012-11-05 18:51:52 +01001856 int ret;
1857
1858 ret = btrfs_map_bio(root, rw, bio, mirror_num, 1);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001859 if (ret) {
1860 bio->bi_error = ret;
1861 bio_endio(bio);
1862 }
Stefan Behrens61891922012-11-05 18:51:52 +01001863 return ret;
Chris Mason44b8bd72008-04-16 11:14:51 -04001864}
1865
Chris Masond352ac62008-09-29 15:18:18 -04001866/*
Chris Masoncad321a2008-12-17 14:51:42 -05001867 * extent_io.c submission hook. This does the right thing for csum calculation
1868 * on write, or reading the csums from the tree before a read
Chris Masond352ac62008-09-29 15:18:18 -04001869 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001870static int btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001871 int mirror_num, unsigned long bio_flags,
1872 u64 bio_offset)
Chris Mason44b8bd72008-04-16 11:14:51 -04001873{
1874 struct btrfs_root *root = BTRFS_I(inode)->root;
Chandan Rajendra0d51e282015-07-27 15:26:43 +05301875 enum btrfs_wq_endio_type metadata = BTRFS_WQ_ENDIO_DATA;
Chris Mason44b8bd72008-04-16 11:14:51 -04001876 int ret = 0;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001877 int skip_sum;
Josef Bacikb812ce22012-11-16 13:56:32 -05001878 int async = !atomic_read(&BTRFS_I(inode)->sync_writers);
Chris Mason44b8bd72008-04-16 11:14:51 -04001879
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001880 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
Chris Masoncad321a2008-12-17 14:51:42 -05001881
Liu Bo83eea1f2012-07-10 05:28:39 -06001882 if (btrfs_is_free_space_inode(inode))
Chandan Rajendra0d51e282015-07-27 15:26:43 +05301883 metadata = BTRFS_WQ_ENDIO_FREE_SPACE;
Jeff Mahoney04173412011-10-03 23:23:12 -04001884
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001885 if (!(rw & REQ_WRITE)) {
Josef Bacik5fd02042012-05-02 14:00:54 -04001886 ret = btrfs_bio_wq_end_io(root->fs_info, bio, metadata);
1887 if (ret)
Stefan Behrens61891922012-11-05 18:51:52 +01001888 goto out;
Josef Bacik5fd02042012-05-02 14:00:54 -04001889
Chris Masond20f7042008-12-08 16:58:54 -05001890 if (bio_flags & EXTENT_BIO_COMPRESSED) {
Stefan Behrens61891922012-11-05 18:51:52 +01001891 ret = btrfs_submit_compressed_read(inode, bio,
1892 mirror_num,
1893 bio_flags);
1894 goto out;
Tsutomu Itohc2db1072011-03-01 06:48:31 +00001895 } else if (!skip_sum) {
1896 ret = btrfs_lookup_bio_sums(root, inode, bio, NULL);
1897 if (ret)
Stefan Behrens61891922012-11-05 18:51:52 +01001898 goto out;
Tsutomu Itohc2db1072011-03-01 06:48:31 +00001899 }
Chris Mason4d1b5fb2008-08-20 09:44:52 -04001900 goto mapit;
Josef Bacikb812ce22012-11-16 13:56:32 -05001901 } else if (async && !skip_sum) {
Yan Zheng17d217f2008-12-12 10:03:38 -05001902 /* csum items have already been cloned */
1903 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
1904 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001905 /* we're doing a write, do the async checksumming */
Stefan Behrens61891922012-11-05 18:51:52 +01001906 ret = btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
Chris Mason44b8bd72008-04-16 11:14:51 -04001907 inode, rw, bio, mirror_num,
Chris Masoneaf25d92010-05-25 09:48:28 -04001908 bio_flags, bio_offset,
1909 __btrfs_submit_bio_start,
Chris Mason4a69a412008-11-06 22:03:00 -05001910 __btrfs_submit_bio_done);
Stefan Behrens61891922012-11-05 18:51:52 +01001911 goto out;
Josef Bacikb812ce22012-11-16 13:56:32 -05001912 } else if (!skip_sum) {
1913 ret = btrfs_csum_one_bio(root, inode, bio, 0, 0);
1914 if (ret)
1915 goto out;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001916 }
1917
Chris Mason0b86a832008-03-24 15:01:56 -04001918mapit:
Stefan Behrens61891922012-11-05 18:51:52 +01001919 ret = btrfs_map_bio(root, rw, bio, mirror_num, 0);
1920
1921out:
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001922 if (ret < 0) {
1923 bio->bi_error = ret;
1924 bio_endio(bio);
1925 }
Stefan Behrens61891922012-11-05 18:51:52 +01001926 return ret;
Chris Mason065631f2008-02-20 12:07:25 -05001927}
Chris Mason6885f302008-02-20 16:11:05 -05001928
Chris Masond352ac62008-09-29 15:18:18 -04001929/*
1930 * given a list of ordered sums record them in the inode. This happens
1931 * at IO completion time based on sums calculated at bio submission time.
1932 */
Chris Masonba1da2f2008-07-17 12:54:15 -04001933static noinline int add_pending_csums(struct btrfs_trans_handle *trans,
Chris Masone6dcd2d2008-07-17 12:53:50 -04001934 struct inode *inode, u64 file_offset,
1935 struct list_head *list)
1936{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001937 struct btrfs_ordered_sum *sum;
1938
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001939 list_for_each_entry(sum, list, list) {
Miao Xie39847c42013-03-28 08:08:20 +00001940 trans->adding_csums = 1;
Chris Masond20f7042008-12-08 16:58:54 -05001941 btrfs_csum_file_blocks(trans,
1942 BTRFS_I(inode)->root->fs_info->csum_root, sum);
Miao Xie39847c42013-03-28 08:08:20 +00001943 trans->adding_csums = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001944 }
1945 return 0;
1946}
1947
Josef Bacik2ac55d42010-02-03 19:33:23 +00001948int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end,
1949 struct extent_state **cached_state)
Chris Masonea8c2812008-08-04 23:17:27 -04001950{
Julia Lawall6c1500f2012-11-03 20:30:18 +00001951 WARN_ON((end & (PAGE_CACHE_SIZE - 1)) == 0);
Chris Masonea8c2812008-08-04 23:17:27 -04001952 return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001953 cached_state, GFP_NOFS);
Chris Masonea8c2812008-08-04 23:17:27 -04001954}
1955
Chris Masond352ac62008-09-29 15:18:18 -04001956/* see btrfs_writepage_start_hook for details on why this is required */
Chris Mason247e7432008-07-17 12:53:51 -04001957struct btrfs_writepage_fixup {
1958 struct page *page;
1959 struct btrfs_work work;
1960};
1961
Christoph Hellwigb2950862008-12-02 09:54:17 -05001962static void btrfs_writepage_fixup_worker(struct btrfs_work *work)
Chris Mason247e7432008-07-17 12:53:51 -04001963{
1964 struct btrfs_writepage_fixup *fixup;
1965 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00001966 struct extent_state *cached_state = NULL;
Chris Mason247e7432008-07-17 12:53:51 -04001967 struct page *page;
1968 struct inode *inode;
1969 u64 page_start;
1970 u64 page_end;
Jeff Mahoney87826df2012-02-15 16:23:57 +01001971 int ret;
Chris Mason247e7432008-07-17 12:53:51 -04001972
1973 fixup = container_of(work, struct btrfs_writepage_fixup, work);
1974 page = fixup->page;
Chris Mason4a096752008-07-21 10:29:44 -04001975again:
Chris Mason247e7432008-07-17 12:53:51 -04001976 lock_page(page);
1977 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
1978 ClearPageChecked(page);
1979 goto out_page;
1980 }
1981
1982 inode = page->mapping->host;
1983 page_start = page_offset(page);
1984 page_end = page_offset(page) + PAGE_CACHE_SIZE - 1;
1985
Josef Bacik2ac55d42010-02-03 19:33:23 +00001986 lock_extent_bits(&BTRFS_I(inode)->io_tree, page_start, page_end, 0,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001987 &cached_state);
Chris Mason4a096752008-07-21 10:29:44 -04001988
1989 /* already ordered? We're done */
Chris Mason8b62b722009-09-02 16:53:46 -04001990 if (PagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001991 goto out;
Chris Mason4a096752008-07-21 10:29:44 -04001992
1993 ordered = btrfs_lookup_ordered_extent(inode, page_start);
1994 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00001995 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start,
1996 page_end, &cached_state, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -04001997 unlock_page(page);
1998 btrfs_start_ordered_extent(inode, ordered, 1);
Jeff Mahoney87826df2012-02-15 16:23:57 +01001999 btrfs_put_ordered_extent(ordered);
Chris Mason4a096752008-07-21 10:29:44 -04002000 goto again;
2001 }
Chris Mason247e7432008-07-17 12:53:51 -04002002
Qu Wenruo7cf5b972015-09-08 17:25:55 +08002003 ret = btrfs_delalloc_reserve_space(inode, page_start,
2004 PAGE_CACHE_SIZE);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002005 if (ret) {
2006 mapping_set_error(page->mapping, ret);
2007 end_extent_writepage(page, ret, page_start, page_end);
2008 ClearPageChecked(page);
2009 goto out;
2010 }
2011
Josef Bacik2ac55d42010-02-03 19:33:23 +00002012 btrfs_set_extent_delalloc(inode, page_start, page_end, &cached_state);
Chris Mason247e7432008-07-17 12:53:51 -04002013 ClearPageChecked(page);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002014 set_page_dirty(page);
Chris Mason247e7432008-07-17 12:53:51 -04002015out:
Josef Bacik2ac55d42010-02-03 19:33:23 +00002016 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start, page_end,
2017 &cached_state, GFP_NOFS);
Chris Mason247e7432008-07-17 12:53:51 -04002018out_page:
2019 unlock_page(page);
2020 page_cache_release(page);
Miao Xieb897abe2011-01-26 16:19:22 +08002021 kfree(fixup);
Chris Mason247e7432008-07-17 12:53:51 -04002022}
2023
2024/*
2025 * There are a few paths in the higher layers of the kernel that directly
2026 * set the page dirty bit without asking the filesystem if it is a
2027 * good idea. This causes problems because we want to make sure COW
2028 * properly happens and the data=ordered rules are followed.
2029 *
Chris Masonc8b97812008-10-29 14:49:59 -04002030 * In our case any range that doesn't have the ORDERED bit set
Chris Mason247e7432008-07-17 12:53:51 -04002031 * hasn't been properly setup for IO. We kick off an async process
2032 * to fix it up. The async helper will wait for ordered extents, set
2033 * the delalloc bit and make it safe to write the page.
2034 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05002035static int btrfs_writepage_start_hook(struct page *page, u64 start, u64 end)
Chris Mason247e7432008-07-17 12:53:51 -04002036{
2037 struct inode *inode = page->mapping->host;
2038 struct btrfs_writepage_fixup *fixup;
2039 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason247e7432008-07-17 12:53:51 -04002040
Chris Mason8b62b722009-09-02 16:53:46 -04002041 /* this page is properly in the ordered list */
2042 if (TestClearPagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04002043 return 0;
2044
2045 if (PageChecked(page))
2046 return -EAGAIN;
2047
2048 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
2049 if (!fixup)
2050 return -EAGAIN;
Chris Masonf4219502008-07-22 11:18:09 -04002051
Chris Mason247e7432008-07-17 12:53:51 -04002052 SetPageChecked(page);
2053 page_cache_get(page);
Liu Bo9e0af232014-08-15 23:36:53 +08002054 btrfs_init_work(&fixup->work, btrfs_fixup_helper,
2055 btrfs_writepage_fixup_worker, NULL, NULL);
Chris Mason247e7432008-07-17 12:53:51 -04002056 fixup->page = page;
Qu Wenruodc6e3202014-02-28 10:46:14 +08002057 btrfs_queue_work(root->fs_info->fixup_workers, &fixup->work);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002058 return -EBUSY;
Chris Mason247e7432008-07-17 12:53:51 -04002059}
2060
Yan Zhengd899e052008-10-30 14:25:28 -04002061static int insert_reserved_file_extent(struct btrfs_trans_handle *trans,
2062 struct inode *inode, u64 file_pos,
2063 u64 disk_bytenr, u64 disk_num_bytes,
2064 u64 num_bytes, u64 ram_bytes,
2065 u8 compression, u8 encryption,
2066 u16 other_encoding, int extent_type)
2067{
2068 struct btrfs_root *root = BTRFS_I(inode)->root;
2069 struct btrfs_file_extent_item *fi;
2070 struct btrfs_path *path;
2071 struct extent_buffer *leaf;
2072 struct btrfs_key ins;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00002073 int extent_inserted = 0;
Yan Zhengd899e052008-10-30 14:25:28 -04002074 int ret;
2075
2076 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07002077 if (!path)
2078 return -ENOMEM;
Yan Zhengd899e052008-10-30 14:25:28 -04002079
Chris Masona1ed8352009-09-11 12:27:37 -04002080 /*
2081 * we may be replacing one extent in the tree with another.
2082 * The new extent is pinned in the extent map, and we don't want
2083 * to drop it from the cache until it is completely in the btree.
2084 *
2085 * So, tell btrfs_drop_extents to leave this extent in the cache.
2086 * the caller is expected to unpin it and allow it to be merged
2087 * with the others.
2088 */
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00002089 ret = __btrfs_drop_extents(trans, root, inode, path, file_pos,
2090 file_pos + num_bytes, NULL, 0,
2091 1, sizeof(*fi), &extent_inserted);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002092 if (ret)
2093 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -04002094
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00002095 if (!extent_inserted) {
2096 ins.objectid = btrfs_ino(inode);
2097 ins.offset = file_pos;
2098 ins.type = BTRFS_EXTENT_DATA_KEY;
2099
2100 path->leave_spinning = 1;
2101 ret = btrfs_insert_empty_item(trans, root, path, &ins,
2102 sizeof(*fi));
2103 if (ret)
2104 goto out;
2105 }
Yan Zhengd899e052008-10-30 14:25:28 -04002106 leaf = path->nodes[0];
2107 fi = btrfs_item_ptr(leaf, path->slots[0],
2108 struct btrfs_file_extent_item);
2109 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
2110 btrfs_set_file_extent_type(leaf, fi, extent_type);
2111 btrfs_set_file_extent_disk_bytenr(leaf, fi, disk_bytenr);
2112 btrfs_set_file_extent_disk_num_bytes(leaf, fi, disk_num_bytes);
2113 btrfs_set_file_extent_offset(leaf, fi, 0);
2114 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
2115 btrfs_set_file_extent_ram_bytes(leaf, fi, ram_bytes);
2116 btrfs_set_file_extent_compression(leaf, fi, compression);
2117 btrfs_set_file_extent_encryption(leaf, fi, encryption);
2118 btrfs_set_file_extent_other_encoding(leaf, fi, other_encoding);
Chris Masonb9473432009-03-13 11:00:37 -04002119
Yan Zhengd899e052008-10-30 14:25:28 -04002120 btrfs_mark_buffer_dirty(leaf);
Josef Bacikce195332012-09-25 15:26:16 -04002121 btrfs_release_path(path);
Yan Zhengd899e052008-10-30 14:25:28 -04002122
2123 inode_add_bytes(inode, num_bytes);
Yan Zhengd899e052008-10-30 14:25:28 -04002124
2125 ins.objectid = disk_bytenr;
2126 ins.offset = disk_num_bytes;
2127 ins.type = BTRFS_EXTENT_ITEM_KEY;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002128 ret = btrfs_alloc_reserved_file_extent(trans, root,
2129 root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08002130 btrfs_ino(inode), file_pos, &ins);
Qu Wenruo297d7502015-09-08 17:08:37 +08002131 if (ret < 0)
2132 goto out;
2133 /*
2134 * Release the reserved range from inode dirty range map, and
2135 * move it to delayed ref codes, as now accounting only happens at
2136 * commit_transaction() time.
2137 */
2138 btrfs_qgroup_release_data(inode, file_pos, ram_bytes);
2139 ret = btrfs_add_delayed_qgroup_reserve(root->fs_info, trans,
2140 root->objectid, disk_bytenr, ram_bytes);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002141out:
Yan Zhengd899e052008-10-30 14:25:28 -04002142 btrfs_free_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04002143
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002144 return ret;
Yan Zhengd899e052008-10-30 14:25:28 -04002145}
2146
Liu Bo38c227d2013-01-29 03:18:40 +00002147/* snapshot-aware defrag */
2148struct sa_defrag_extent_backref {
2149 struct rb_node node;
2150 struct old_sa_defrag_extent *old;
2151 u64 root_id;
2152 u64 inum;
2153 u64 file_pos;
2154 u64 extent_offset;
2155 u64 num_bytes;
2156 u64 generation;
2157};
2158
2159struct old_sa_defrag_extent {
2160 struct list_head list;
2161 struct new_sa_defrag_extent *new;
2162
2163 u64 extent_offset;
2164 u64 bytenr;
2165 u64 offset;
2166 u64 len;
2167 int count;
2168};
2169
2170struct new_sa_defrag_extent {
2171 struct rb_root root;
2172 struct list_head head;
2173 struct btrfs_path *path;
2174 struct inode *inode;
2175 u64 file_pos;
2176 u64 len;
2177 u64 bytenr;
2178 u64 disk_len;
2179 u8 compress_type;
2180};
2181
2182static int backref_comp(struct sa_defrag_extent_backref *b1,
2183 struct sa_defrag_extent_backref *b2)
2184{
2185 if (b1->root_id < b2->root_id)
2186 return -1;
2187 else if (b1->root_id > b2->root_id)
2188 return 1;
2189
2190 if (b1->inum < b2->inum)
2191 return -1;
2192 else if (b1->inum > b2->inum)
2193 return 1;
2194
2195 if (b1->file_pos < b2->file_pos)
2196 return -1;
2197 else if (b1->file_pos > b2->file_pos)
2198 return 1;
2199
2200 /*
2201 * [------------------------------] ===> (a range of space)
2202 * |<--->| |<---->| =============> (fs/file tree A)
2203 * |<---------------------------->| ===> (fs/file tree B)
2204 *
2205 * A range of space can refer to two file extents in one tree while
2206 * refer to only one file extent in another tree.
2207 *
2208 * So we may process a disk offset more than one time(two extents in A)
2209 * and locate at the same extent(one extent in B), then insert two same
2210 * backrefs(both refer to the extent in B).
2211 */
2212 return 0;
2213}
2214
2215static void backref_insert(struct rb_root *root,
2216 struct sa_defrag_extent_backref *backref)
2217{
2218 struct rb_node **p = &root->rb_node;
2219 struct rb_node *parent = NULL;
2220 struct sa_defrag_extent_backref *entry;
2221 int ret;
2222
2223 while (*p) {
2224 parent = *p;
2225 entry = rb_entry(parent, struct sa_defrag_extent_backref, node);
2226
2227 ret = backref_comp(backref, entry);
2228 if (ret < 0)
2229 p = &(*p)->rb_left;
2230 else
2231 p = &(*p)->rb_right;
2232 }
2233
2234 rb_link_node(&backref->node, parent, p);
2235 rb_insert_color(&backref->node, root);
2236}
2237
2238/*
2239 * Note the backref might has changed, and in this case we just return 0.
2240 */
2241static noinline int record_one_backref(u64 inum, u64 offset, u64 root_id,
2242 void *ctx)
2243{
2244 struct btrfs_file_extent_item *extent;
2245 struct btrfs_fs_info *fs_info;
2246 struct old_sa_defrag_extent *old = ctx;
2247 struct new_sa_defrag_extent *new = old->new;
2248 struct btrfs_path *path = new->path;
2249 struct btrfs_key key;
2250 struct btrfs_root *root;
2251 struct sa_defrag_extent_backref *backref;
2252 struct extent_buffer *leaf;
2253 struct inode *inode = new->inode;
2254 int slot;
2255 int ret;
2256 u64 extent_offset;
2257 u64 num_bytes;
2258
2259 if (BTRFS_I(inode)->root->root_key.objectid == root_id &&
2260 inum == btrfs_ino(inode))
2261 return 0;
2262
2263 key.objectid = root_id;
2264 key.type = BTRFS_ROOT_ITEM_KEY;
2265 key.offset = (u64)-1;
2266
2267 fs_info = BTRFS_I(inode)->root->fs_info;
2268 root = btrfs_read_fs_root_no_name(fs_info, &key);
2269 if (IS_ERR(root)) {
2270 if (PTR_ERR(root) == -ENOENT)
2271 return 0;
2272 WARN_ON(1);
2273 pr_debug("inum=%llu, offset=%llu, root_id=%llu\n",
2274 inum, offset, root_id);
2275 return PTR_ERR(root);
2276 }
2277
2278 key.objectid = inum;
2279 key.type = BTRFS_EXTENT_DATA_KEY;
2280 if (offset > (u64)-1 << 32)
2281 key.offset = 0;
2282 else
2283 key.offset = offset;
2284
2285 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05302286 if (WARN_ON(ret < 0))
Liu Bo38c227d2013-01-29 03:18:40 +00002287 return ret;
Josef Bacik50f13192013-07-22 12:50:37 -04002288 ret = 0;
Liu Bo38c227d2013-01-29 03:18:40 +00002289
2290 while (1) {
2291 cond_resched();
2292
2293 leaf = path->nodes[0];
2294 slot = path->slots[0];
2295
2296 if (slot >= btrfs_header_nritems(leaf)) {
2297 ret = btrfs_next_leaf(root, path);
2298 if (ret < 0) {
2299 goto out;
2300 } else if (ret > 0) {
2301 ret = 0;
2302 goto out;
2303 }
2304 continue;
2305 }
2306
2307 path->slots[0]++;
2308
2309 btrfs_item_key_to_cpu(leaf, &key, slot);
2310
2311 if (key.objectid > inum)
2312 goto out;
2313
2314 if (key.objectid < inum || key.type != BTRFS_EXTENT_DATA_KEY)
2315 continue;
2316
2317 extent = btrfs_item_ptr(leaf, slot,
2318 struct btrfs_file_extent_item);
2319
2320 if (btrfs_file_extent_disk_bytenr(leaf, extent) != old->bytenr)
2321 continue;
2322
Liu Boe68afa42013-07-01 22:13:26 +08002323 /*
2324 * 'offset' refers to the exact key.offset,
2325 * NOT the 'offset' field in btrfs_extent_data_ref, ie.
2326 * (key.offset - extent_offset).
2327 */
2328 if (key.offset != offset)
Liu Bo38c227d2013-01-29 03:18:40 +00002329 continue;
2330
Liu Boe68afa42013-07-01 22:13:26 +08002331 extent_offset = btrfs_file_extent_offset(leaf, extent);
Liu Bo38c227d2013-01-29 03:18:40 +00002332 num_bytes = btrfs_file_extent_num_bytes(leaf, extent);
Liu Boe68afa42013-07-01 22:13:26 +08002333
Liu Bo38c227d2013-01-29 03:18:40 +00002334 if (extent_offset >= old->extent_offset + old->offset +
2335 old->len || extent_offset + num_bytes <=
2336 old->extent_offset + old->offset)
2337 continue;
Liu Bo38c227d2013-01-29 03:18:40 +00002338 break;
2339 }
2340
2341 backref = kmalloc(sizeof(*backref), GFP_NOFS);
2342 if (!backref) {
2343 ret = -ENOENT;
2344 goto out;
2345 }
2346
2347 backref->root_id = root_id;
2348 backref->inum = inum;
Liu Boe68afa42013-07-01 22:13:26 +08002349 backref->file_pos = offset;
Liu Bo38c227d2013-01-29 03:18:40 +00002350 backref->num_bytes = num_bytes;
2351 backref->extent_offset = extent_offset;
2352 backref->generation = btrfs_file_extent_generation(leaf, extent);
2353 backref->old = old;
2354 backref_insert(&new->root, backref);
2355 old->count++;
2356out:
2357 btrfs_release_path(path);
2358 WARN_ON(ret);
2359 return ret;
2360}
2361
2362static noinline bool record_extent_backrefs(struct btrfs_path *path,
2363 struct new_sa_defrag_extent *new)
2364{
2365 struct btrfs_fs_info *fs_info = BTRFS_I(new->inode)->root->fs_info;
2366 struct old_sa_defrag_extent *old, *tmp;
2367 int ret;
2368
2369 new->path = path;
2370
2371 list_for_each_entry_safe(old, tmp, &new->head, list) {
Liu Boe68afa42013-07-01 22:13:26 +08002372 ret = iterate_inodes_from_logical(old->bytenr +
2373 old->extent_offset, fs_info,
Liu Bo38c227d2013-01-29 03:18:40 +00002374 path, record_one_backref,
2375 old);
Josef Bacik4724b102013-11-05 11:11:40 -05002376 if (ret < 0 && ret != -ENOENT)
2377 return false;
Liu Bo38c227d2013-01-29 03:18:40 +00002378
2379 /* no backref to be processed for this extent */
2380 if (!old->count) {
2381 list_del(&old->list);
2382 kfree(old);
2383 }
2384 }
2385
2386 if (list_empty(&new->head))
2387 return false;
2388
2389 return true;
2390}
2391
2392static int relink_is_mergable(struct extent_buffer *leaf,
2393 struct btrfs_file_extent_item *fi,
Liu Bo116e0022013-08-02 16:30:40 +08002394 struct new_sa_defrag_extent *new)
Liu Bo38c227d2013-01-29 03:18:40 +00002395{
Liu Bo116e0022013-08-02 16:30:40 +08002396 if (btrfs_file_extent_disk_bytenr(leaf, fi) != new->bytenr)
Liu Bo38c227d2013-01-29 03:18:40 +00002397 return 0;
2398
2399 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG)
2400 return 0;
2401
Liu Bo116e0022013-08-02 16:30:40 +08002402 if (btrfs_file_extent_compression(leaf, fi) != new->compress_type)
2403 return 0;
2404
2405 if (btrfs_file_extent_encryption(leaf, fi) ||
Liu Bo38c227d2013-01-29 03:18:40 +00002406 btrfs_file_extent_other_encoding(leaf, fi))
2407 return 0;
2408
2409 return 1;
2410}
2411
2412/*
2413 * Note the backref might has changed, and in this case we just return 0.
2414 */
2415static noinline int relink_extent_backref(struct btrfs_path *path,
2416 struct sa_defrag_extent_backref *prev,
2417 struct sa_defrag_extent_backref *backref)
2418{
2419 struct btrfs_file_extent_item *extent;
2420 struct btrfs_file_extent_item *item;
2421 struct btrfs_ordered_extent *ordered;
2422 struct btrfs_trans_handle *trans;
2423 struct btrfs_fs_info *fs_info;
2424 struct btrfs_root *root;
2425 struct btrfs_key key;
2426 struct extent_buffer *leaf;
2427 struct old_sa_defrag_extent *old = backref->old;
2428 struct new_sa_defrag_extent *new = old->new;
2429 struct inode *src_inode = new->inode;
2430 struct inode *inode;
2431 struct extent_state *cached = NULL;
2432 int ret = 0;
2433 u64 start;
2434 u64 len;
2435 u64 lock_start;
2436 u64 lock_end;
2437 bool merge = false;
2438 int index;
2439
2440 if (prev && prev->root_id == backref->root_id &&
2441 prev->inum == backref->inum &&
2442 prev->file_pos + prev->num_bytes == backref->file_pos)
2443 merge = true;
2444
2445 /* step 1: get root */
2446 key.objectid = backref->root_id;
2447 key.type = BTRFS_ROOT_ITEM_KEY;
2448 key.offset = (u64)-1;
2449
2450 fs_info = BTRFS_I(src_inode)->root->fs_info;
2451 index = srcu_read_lock(&fs_info->subvol_srcu);
2452
2453 root = btrfs_read_fs_root_no_name(fs_info, &key);
2454 if (IS_ERR(root)) {
2455 srcu_read_unlock(&fs_info->subvol_srcu, index);
2456 if (PTR_ERR(root) == -ENOENT)
2457 return 0;
2458 return PTR_ERR(root);
2459 }
Liu Bo38c227d2013-01-29 03:18:40 +00002460
Wang Shilongbcbba5e2014-02-08 23:46:35 +08002461 if (btrfs_root_readonly(root)) {
2462 srcu_read_unlock(&fs_info->subvol_srcu, index);
2463 return 0;
2464 }
2465
Liu Bo38c227d2013-01-29 03:18:40 +00002466 /* step 2: get inode */
2467 key.objectid = backref->inum;
2468 key.type = BTRFS_INODE_ITEM_KEY;
2469 key.offset = 0;
2470
2471 inode = btrfs_iget(fs_info->sb, &key, root, NULL);
2472 if (IS_ERR(inode)) {
2473 srcu_read_unlock(&fs_info->subvol_srcu, index);
2474 return 0;
2475 }
2476
2477 srcu_read_unlock(&fs_info->subvol_srcu, index);
2478
2479 /* step 3: relink backref */
2480 lock_start = backref->file_pos;
2481 lock_end = backref->file_pos + backref->num_bytes - 1;
2482 lock_extent_bits(&BTRFS_I(inode)->io_tree, lock_start, lock_end,
2483 0, &cached);
2484
2485 ordered = btrfs_lookup_first_ordered_extent(inode, lock_end);
2486 if (ordered) {
2487 btrfs_put_ordered_extent(ordered);
2488 goto out_unlock;
2489 }
2490
2491 trans = btrfs_join_transaction(root);
2492 if (IS_ERR(trans)) {
2493 ret = PTR_ERR(trans);
2494 goto out_unlock;
2495 }
2496
2497 key.objectid = backref->inum;
2498 key.type = BTRFS_EXTENT_DATA_KEY;
2499 key.offset = backref->file_pos;
2500
2501 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2502 if (ret < 0) {
2503 goto out_free_path;
2504 } else if (ret > 0) {
2505 ret = 0;
2506 goto out_free_path;
2507 }
2508
2509 extent = btrfs_item_ptr(path->nodes[0], path->slots[0],
2510 struct btrfs_file_extent_item);
2511
2512 if (btrfs_file_extent_generation(path->nodes[0], extent) !=
2513 backref->generation)
2514 goto out_free_path;
2515
2516 btrfs_release_path(path);
2517
2518 start = backref->file_pos;
2519 if (backref->extent_offset < old->extent_offset + old->offset)
2520 start += old->extent_offset + old->offset -
2521 backref->extent_offset;
2522
2523 len = min(backref->extent_offset + backref->num_bytes,
2524 old->extent_offset + old->offset + old->len);
2525 len -= max(backref->extent_offset, old->extent_offset + old->offset);
2526
2527 ret = btrfs_drop_extents(trans, root, inode, start,
2528 start + len, 1);
2529 if (ret)
2530 goto out_free_path;
2531again:
2532 key.objectid = btrfs_ino(inode);
2533 key.type = BTRFS_EXTENT_DATA_KEY;
2534 key.offset = start;
2535
Liu Boa09a0a72013-03-11 09:20:58 +00002536 path->leave_spinning = 1;
Liu Bo38c227d2013-01-29 03:18:40 +00002537 if (merge) {
2538 struct btrfs_file_extent_item *fi;
2539 u64 extent_len;
2540 struct btrfs_key found_key;
2541
Gui Hecheng3c9665d2014-01-23 13:41:09 +08002542 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
Liu Bo38c227d2013-01-29 03:18:40 +00002543 if (ret < 0)
2544 goto out_free_path;
2545
2546 path->slots[0]--;
2547 leaf = path->nodes[0];
2548 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2549
2550 fi = btrfs_item_ptr(leaf, path->slots[0],
2551 struct btrfs_file_extent_item);
2552 extent_len = btrfs_file_extent_num_bytes(leaf, fi);
2553
Liu Bo116e0022013-08-02 16:30:40 +08002554 if (extent_len + found_key.offset == start &&
2555 relink_is_mergable(leaf, fi, new)) {
Liu Bo38c227d2013-01-29 03:18:40 +00002556 btrfs_set_file_extent_num_bytes(leaf, fi,
2557 extent_len + len);
2558 btrfs_mark_buffer_dirty(leaf);
2559 inode_add_bytes(inode, len);
2560
2561 ret = 1;
2562 goto out_free_path;
2563 } else {
2564 merge = false;
2565 btrfs_release_path(path);
2566 goto again;
2567 }
2568 }
2569
2570 ret = btrfs_insert_empty_item(trans, root, path, &key,
2571 sizeof(*extent));
2572 if (ret) {
2573 btrfs_abort_transaction(trans, root, ret);
2574 goto out_free_path;
2575 }
2576
2577 leaf = path->nodes[0];
2578 item = btrfs_item_ptr(leaf, path->slots[0],
2579 struct btrfs_file_extent_item);
2580 btrfs_set_file_extent_disk_bytenr(leaf, item, new->bytenr);
2581 btrfs_set_file_extent_disk_num_bytes(leaf, item, new->disk_len);
2582 btrfs_set_file_extent_offset(leaf, item, start - new->file_pos);
2583 btrfs_set_file_extent_num_bytes(leaf, item, len);
2584 btrfs_set_file_extent_ram_bytes(leaf, item, new->len);
2585 btrfs_set_file_extent_generation(leaf, item, trans->transid);
2586 btrfs_set_file_extent_type(leaf, item, BTRFS_FILE_EXTENT_REG);
2587 btrfs_set_file_extent_compression(leaf, item, new->compress_type);
2588 btrfs_set_file_extent_encryption(leaf, item, 0);
2589 btrfs_set_file_extent_other_encoding(leaf, item, 0);
2590
2591 btrfs_mark_buffer_dirty(leaf);
2592 inode_add_bytes(inode, len);
Liu Boa09a0a72013-03-11 09:20:58 +00002593 btrfs_release_path(path);
Liu Bo38c227d2013-01-29 03:18:40 +00002594
2595 ret = btrfs_inc_extent_ref(trans, root, new->bytenr,
2596 new->disk_len, 0,
2597 backref->root_id, backref->inum,
2598 new->file_pos, 0); /* start - extent_offset */
2599 if (ret) {
2600 btrfs_abort_transaction(trans, root, ret);
2601 goto out_free_path;
2602 }
2603
2604 ret = 1;
2605out_free_path:
2606 btrfs_release_path(path);
Liu Boa09a0a72013-03-11 09:20:58 +00002607 path->leave_spinning = 0;
Liu Bo38c227d2013-01-29 03:18:40 +00002608 btrfs_end_transaction(trans, root);
2609out_unlock:
2610 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lock_start, lock_end,
2611 &cached, GFP_NOFS);
2612 iput(inode);
2613 return ret;
2614}
2615
Liu Bo6f519562013-10-29 10:45:05 +08002616static void free_sa_defrag_extent(struct new_sa_defrag_extent *new)
2617{
2618 struct old_sa_defrag_extent *old, *tmp;
2619
2620 if (!new)
2621 return;
2622
2623 list_for_each_entry_safe(old, tmp, &new->head, list) {
Liu Bo6f519562013-10-29 10:45:05 +08002624 kfree(old);
2625 }
2626 kfree(new);
2627}
2628
Liu Bo38c227d2013-01-29 03:18:40 +00002629static void relink_file_extents(struct new_sa_defrag_extent *new)
2630{
2631 struct btrfs_path *path;
Liu Bo38c227d2013-01-29 03:18:40 +00002632 struct sa_defrag_extent_backref *backref;
2633 struct sa_defrag_extent_backref *prev = NULL;
2634 struct inode *inode;
2635 struct btrfs_root *root;
2636 struct rb_node *node;
2637 int ret;
2638
2639 inode = new->inode;
2640 root = BTRFS_I(inode)->root;
2641
2642 path = btrfs_alloc_path();
2643 if (!path)
2644 return;
2645
2646 if (!record_extent_backrefs(path, new)) {
2647 btrfs_free_path(path);
2648 goto out;
2649 }
2650 btrfs_release_path(path);
2651
2652 while (1) {
2653 node = rb_first(&new->root);
2654 if (!node)
2655 break;
2656 rb_erase(node, &new->root);
2657
2658 backref = rb_entry(node, struct sa_defrag_extent_backref, node);
2659
2660 ret = relink_extent_backref(path, prev, backref);
2661 WARN_ON(ret < 0);
2662
2663 kfree(prev);
2664
2665 if (ret == 1)
2666 prev = backref;
2667 else
2668 prev = NULL;
2669 cond_resched();
2670 }
2671 kfree(prev);
2672
2673 btrfs_free_path(path);
Liu Bo38c227d2013-01-29 03:18:40 +00002674out:
Liu Bo6f519562013-10-29 10:45:05 +08002675 free_sa_defrag_extent(new);
2676
Liu Bo38c227d2013-01-29 03:18:40 +00002677 atomic_dec(&root->fs_info->defrag_running);
2678 wake_up(&root->fs_info->transaction_wait);
Liu Bo38c227d2013-01-29 03:18:40 +00002679}
2680
2681static struct new_sa_defrag_extent *
2682record_old_file_extents(struct inode *inode,
2683 struct btrfs_ordered_extent *ordered)
2684{
2685 struct btrfs_root *root = BTRFS_I(inode)->root;
2686 struct btrfs_path *path;
2687 struct btrfs_key key;
Liu Bo6f519562013-10-29 10:45:05 +08002688 struct old_sa_defrag_extent *old;
Liu Bo38c227d2013-01-29 03:18:40 +00002689 struct new_sa_defrag_extent *new;
2690 int ret;
2691
2692 new = kmalloc(sizeof(*new), GFP_NOFS);
2693 if (!new)
2694 return NULL;
2695
2696 new->inode = inode;
2697 new->file_pos = ordered->file_offset;
2698 new->len = ordered->len;
2699 new->bytenr = ordered->start;
2700 new->disk_len = ordered->disk_len;
2701 new->compress_type = ordered->compress_type;
2702 new->root = RB_ROOT;
2703 INIT_LIST_HEAD(&new->head);
2704
2705 path = btrfs_alloc_path();
2706 if (!path)
2707 goto out_kfree;
2708
2709 key.objectid = btrfs_ino(inode);
2710 key.type = BTRFS_EXTENT_DATA_KEY;
2711 key.offset = new->file_pos;
2712
2713 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2714 if (ret < 0)
2715 goto out_free_path;
2716 if (ret > 0 && path->slots[0] > 0)
2717 path->slots[0]--;
2718
2719 /* find out all the old extents for the file range */
2720 while (1) {
2721 struct btrfs_file_extent_item *extent;
2722 struct extent_buffer *l;
2723 int slot;
2724 u64 num_bytes;
2725 u64 offset;
2726 u64 end;
2727 u64 disk_bytenr;
2728 u64 extent_offset;
2729
2730 l = path->nodes[0];
2731 slot = path->slots[0];
2732
2733 if (slot >= btrfs_header_nritems(l)) {
2734 ret = btrfs_next_leaf(root, path);
2735 if (ret < 0)
Liu Bo6f519562013-10-29 10:45:05 +08002736 goto out_free_path;
Liu Bo38c227d2013-01-29 03:18:40 +00002737 else if (ret > 0)
2738 break;
2739 continue;
2740 }
2741
2742 btrfs_item_key_to_cpu(l, &key, slot);
2743
2744 if (key.objectid != btrfs_ino(inode))
2745 break;
2746 if (key.type != BTRFS_EXTENT_DATA_KEY)
2747 break;
2748 if (key.offset >= new->file_pos + new->len)
2749 break;
2750
2751 extent = btrfs_item_ptr(l, slot, struct btrfs_file_extent_item);
2752
2753 num_bytes = btrfs_file_extent_num_bytes(l, extent);
2754 if (key.offset + num_bytes < new->file_pos)
2755 goto next;
2756
2757 disk_bytenr = btrfs_file_extent_disk_bytenr(l, extent);
2758 if (!disk_bytenr)
2759 goto next;
2760
2761 extent_offset = btrfs_file_extent_offset(l, extent);
2762
2763 old = kmalloc(sizeof(*old), GFP_NOFS);
2764 if (!old)
Liu Bo6f519562013-10-29 10:45:05 +08002765 goto out_free_path;
Liu Bo38c227d2013-01-29 03:18:40 +00002766
2767 offset = max(new->file_pos, key.offset);
2768 end = min(new->file_pos + new->len, key.offset + num_bytes);
2769
2770 old->bytenr = disk_bytenr;
2771 old->extent_offset = extent_offset;
2772 old->offset = offset - key.offset;
2773 old->len = end - offset;
2774 old->new = new;
2775 old->count = 0;
2776 list_add_tail(&old->list, &new->head);
2777next:
2778 path->slots[0]++;
2779 cond_resched();
2780 }
2781
2782 btrfs_free_path(path);
2783 atomic_inc(&root->fs_info->defrag_running);
2784
2785 return new;
2786
Liu Bo38c227d2013-01-29 03:18:40 +00002787out_free_path:
2788 btrfs_free_path(path);
2789out_kfree:
Liu Bo6f519562013-10-29 10:45:05 +08002790 free_sa_defrag_extent(new);
Liu Bo38c227d2013-01-29 03:18:40 +00002791 return NULL;
2792}
2793
Miao Xiee570fd22014-06-19 10:42:50 +08002794static void btrfs_release_delalloc_bytes(struct btrfs_root *root,
2795 u64 start, u64 len)
2796{
2797 struct btrfs_block_group_cache *cache;
2798
2799 cache = btrfs_lookup_block_group(root->fs_info, start);
2800 ASSERT(cache);
2801
2802 spin_lock(&cache->lock);
2803 cache->delalloc_bytes -= len;
2804 spin_unlock(&cache->lock);
2805
2806 btrfs_put_block_group(cache);
2807}
2808
Chris Masond352ac62008-09-29 15:18:18 -04002809/* as ordered data IO finishes, this gets called so we can finish
2810 * an ordered extent if the range of bytes in the file it covers are
2811 * fully written.
2812 */
Josef Bacik5fd02042012-05-02 14:00:54 -04002813static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent)
Chris Masone6dcd2d2008-07-17 12:53:50 -04002814{
Josef Bacik5fd02042012-05-02 14:00:54 -04002815 struct inode *inode = ordered_extent->inode;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002816 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04002817 struct btrfs_trans_handle *trans = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002818 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Josef Bacik2ac55d42010-02-03 19:33:23 +00002819 struct extent_state *cached_state = NULL;
Liu Bo38c227d2013-01-29 03:18:40 +00002820 struct new_sa_defrag_extent *new = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08002821 int compress_type = 0;
Josef Bacik77cef2e2013-08-29 13:57:21 -04002822 int ret = 0;
2823 u64 logical_len = ordered_extent->len;
Li Zefan82d59022011-04-20 10:33:24 +08002824 bool nolock;
Josef Bacik77cef2e2013-08-29 13:57:21 -04002825 bool truncated = false;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002826
Liu Bo83eea1f2012-07-10 05:28:39 -06002827 nolock = btrfs_is_free_space_inode(inode);
Josef Bacik0cb59c92010-07-02 12:14:14 -04002828
Josef Bacik5fd02042012-05-02 14:00:54 -04002829 if (test_bit(BTRFS_ORDERED_IOERR, &ordered_extent->flags)) {
2830 ret = -EIO;
2831 goto out;
2832 }
2833
Miao Xief6124962014-09-12 18:44:04 +08002834 btrfs_free_io_failure_record(inode, ordered_extent->file_offset,
2835 ordered_extent->file_offset +
2836 ordered_extent->len - 1);
2837
Josef Bacik77cef2e2013-08-29 13:57:21 -04002838 if (test_bit(BTRFS_ORDERED_TRUNCATED, &ordered_extent->flags)) {
2839 truncated = true;
2840 logical_len = ordered_extent->truncated_len;
2841 /* Truncated the entire extent, don't bother adding */
2842 if (!logical_len)
2843 goto out;
2844 }
2845
Yan, Zhengc2167752009-11-12 09:34:21 +00002846 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags)) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002847 BUG_ON(!list_empty(&ordered_extent->list)); /* Logic error */
Qu Wenruo94ed9382015-09-08 17:25:56 +08002848
2849 /*
2850 * For mwrite(mmap + memset to write) case, we still reserve
2851 * space for NOCOW range.
2852 * As NOCOW won't cause a new delayed ref, just free the space
2853 */
2854 btrfs_qgroup_free_data(inode, ordered_extent->file_offset,
2855 ordered_extent->len);
Josef Bacik6c760c02012-11-09 10:53:21 -05002856 btrfs_ordered_update_i_size(inode, 0, ordered_extent);
2857 if (nolock)
2858 trans = btrfs_join_transaction_nolock(root);
2859 else
2860 trans = btrfs_join_transaction(root);
2861 if (IS_ERR(trans)) {
2862 ret = PTR_ERR(trans);
2863 trans = NULL;
2864 goto out;
Yan, Zhengc2167752009-11-12 09:34:21 +00002865 }
Josef Bacik6c760c02012-11-09 10:53:21 -05002866 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
2867 ret = btrfs_update_inode_fallback(trans, root, inode);
2868 if (ret) /* -ENOMEM or corruption */
2869 btrfs_abort_transaction(trans, root, ret);
Yan, Zhengc2167752009-11-12 09:34:21 +00002870 goto out;
2871 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04002872
Josef Bacik2ac55d42010-02-03 19:33:23 +00002873 lock_extent_bits(io_tree, ordered_extent->file_offset,
2874 ordered_extent->file_offset + ordered_extent->len - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01002875 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002876
Liu Bo38c227d2013-01-29 03:18:40 +00002877 ret = test_range_bit(io_tree, ordered_extent->file_offset,
2878 ordered_extent->file_offset + ordered_extent->len - 1,
2879 EXTENT_DEFRAG, 1, cached_state);
2880 if (ret) {
2881 u64 last_snapshot = btrfs_root_last_snapshot(&root->root_item);
Josef Bacik8101c8d2014-01-29 16:05:30 -05002882 if (0 && last_snapshot >= BTRFS_I(inode)->generation)
Liu Bo38c227d2013-01-29 03:18:40 +00002883 /* the inode is shared */
2884 new = record_old_file_extents(inode, ordered_extent);
2885
2886 clear_extent_bit(io_tree, ordered_extent->file_offset,
2887 ordered_extent->file_offset + ordered_extent->len - 1,
2888 EXTENT_DEFRAG, 0, 0, &cached_state, GFP_NOFS);
2889 }
2890
Josef Bacik0cb59c92010-07-02 12:14:14 -04002891 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04002892 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04002893 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04002894 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002895 if (IS_ERR(trans)) {
2896 ret = PTR_ERR(trans);
2897 trans = NULL;
2898 goto out_unlock;
2899 }
Chris Masona79b7d42014-05-22 16:18:52 -07002900
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04002901 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Yan, Zhengc2167752009-11-12 09:34:21 +00002902
Chris Masonc8b97812008-10-29 14:49:59 -04002903 if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags))
Li Zefan261507a02010-12-17 14:21:50 +08002904 compress_type = ordered_extent->compress_type;
Yan Zhengd899e052008-10-30 14:25:28 -04002905 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
Li Zefan261507a02010-12-17 14:21:50 +08002906 BUG_ON(compress_type);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00002907 ret = btrfs_mark_extent_written(trans, inode,
Yan Zhengd899e052008-10-30 14:25:28 -04002908 ordered_extent->file_offset,
2909 ordered_extent->file_offset +
Josef Bacik77cef2e2013-08-29 13:57:21 -04002910 logical_len);
Yan Zhengd899e052008-10-30 14:25:28 -04002911 } else {
Josef Bacik0af3d002010-06-21 14:48:16 -04002912 BUG_ON(root == root->fs_info->tree_root);
Yan Zhengd899e052008-10-30 14:25:28 -04002913 ret = insert_reserved_file_extent(trans, inode,
2914 ordered_extent->file_offset,
2915 ordered_extent->start,
2916 ordered_extent->disk_len,
Josef Bacik77cef2e2013-08-29 13:57:21 -04002917 logical_len, logical_len,
Li Zefan261507a02010-12-17 14:21:50 +08002918 compress_type, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04002919 BTRFS_FILE_EXTENT_REG);
Miao Xiee570fd22014-06-19 10:42:50 +08002920 if (!ret)
2921 btrfs_release_delalloc_bytes(root,
2922 ordered_extent->start,
2923 ordered_extent->disk_len);
Yan Zhengd899e052008-10-30 14:25:28 -04002924 }
Josef Bacik5dc562c2012-08-17 13:14:17 -04002925 unpin_extent_cache(&BTRFS_I(inode)->extent_tree,
2926 ordered_extent->file_offset, ordered_extent->len,
2927 trans->transid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002928 if (ret < 0) {
2929 btrfs_abort_transaction(trans, root, ret);
Josef Bacik5fd02042012-05-02 14:00:54 -04002930 goto out_unlock;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002931 }
Josef Bacik2ac55d42010-02-03 19:33:23 +00002932
Chris Masone6dcd2d2008-07-17 12:53:50 -04002933 add_pending_csums(trans, inode, ordered_extent->file_offset,
2934 &ordered_extent->list);
2935
Josef Bacik6c760c02012-11-09 10:53:21 -05002936 btrfs_ordered_update_i_size(inode, 0, ordered_extent);
2937 ret = btrfs_update_inode_fallback(trans, root, inode);
2938 if (ret) { /* -ENOMEM or corruption */
2939 btrfs_abort_transaction(trans, root, ret);
2940 goto out_unlock;
Josef Bacik1ef30be2011-04-05 19:25:36 -04002941 }
2942 ret = 0;
Josef Bacik5fd02042012-05-02 14:00:54 -04002943out_unlock:
2944 unlock_extent_cached(io_tree, ordered_extent->file_offset,
2945 ordered_extent->file_offset +
2946 ordered_extent->len - 1, &cached_state, GFP_NOFS);
Yan, Zhengc2167752009-11-12 09:34:21 +00002947out:
Josef Bacik5b0e95b2011-10-06 08:58:24 -04002948 if (root != root->fs_info->tree_root)
Josef Bacik0cb59c92010-07-02 12:14:14 -04002949 btrfs_delalloc_release_metadata(inode, ordered_extent->len);
Miao Xiea698d0752012-09-20 01:51:59 -06002950 if (trans)
2951 btrfs_end_transaction(trans, root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04002952
Josef Bacik77cef2e2013-08-29 13:57:21 -04002953 if (ret || truncated) {
2954 u64 start, end;
2955
2956 if (truncated)
2957 start = ordered_extent->file_offset + logical_len;
2958 else
2959 start = ordered_extent->file_offset;
2960 end = ordered_extent->file_offset + ordered_extent->len - 1;
2961 clear_extent_uptodate(io_tree, start, end, NULL, GFP_NOFS);
2962
2963 /* Drop the cache for the part of the extent we didn't write. */
2964 btrfs_drop_extent_cache(inode, start, end, 0);
Josef Bacik5fd02042012-05-02 14:00:54 -04002965
Josef Bacik0bec9ef2013-01-31 14:58:00 -05002966 /*
2967 * If the ordered extent had an IOERR or something else went
2968 * wrong we need to return the space for this ordered extent
Josef Bacik77cef2e2013-08-29 13:57:21 -04002969 * back to the allocator. We only free the extent in the
2970 * truncated case if we didn't write out the extent at all.
Josef Bacik0bec9ef2013-01-31 14:58:00 -05002971 */
Josef Bacik77cef2e2013-08-29 13:57:21 -04002972 if ((ret || !logical_len) &&
2973 !test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags) &&
Josef Bacik0bec9ef2013-01-31 14:58:00 -05002974 !test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags))
2975 btrfs_free_reserved_extent(root, ordered_extent->start,
Miao Xiee570fd22014-06-19 10:42:50 +08002976 ordered_extent->disk_len, 1);
Josef Bacik0bec9ef2013-01-31 14:58:00 -05002977 }
2978
2979
Josef Bacik5fd02042012-05-02 14:00:54 -04002980 /*
Liu Bo8bad3c02012-06-18 12:14:23 +08002981 * This needs to be done to make sure anybody waiting knows we are done
2982 * updating everything for this ordered extent.
Josef Bacik5fd02042012-05-02 14:00:54 -04002983 */
2984 btrfs_remove_ordered_extent(inode, ordered_extent);
2985
Liu Bo38c227d2013-01-29 03:18:40 +00002986 /* for snapshot-aware defrag */
Liu Bo6f519562013-10-29 10:45:05 +08002987 if (new) {
2988 if (ret) {
2989 free_sa_defrag_extent(new);
2990 atomic_dec(&root->fs_info->defrag_running);
2991 } else {
2992 relink_file_extents(new);
2993 }
2994 }
Liu Bo38c227d2013-01-29 03:18:40 +00002995
Chris Masone6dcd2d2008-07-17 12:53:50 -04002996 /* once for us */
2997 btrfs_put_ordered_extent(ordered_extent);
2998 /* once for the tree */
2999 btrfs_put_ordered_extent(ordered_extent);
3000
Josef Bacik5fd02042012-05-02 14:00:54 -04003001 return ret;
3002}
3003
3004static void finish_ordered_fn(struct btrfs_work *work)
3005{
3006 struct btrfs_ordered_extent *ordered_extent;
3007 ordered_extent = container_of(work, struct btrfs_ordered_extent, work);
3008 btrfs_finish_ordered_io(ordered_extent);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003009}
3010
Christoph Hellwigb2950862008-12-02 09:54:17 -05003011static int btrfs_writepage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason211f90e2008-07-18 11:56:15 -04003012 struct extent_state *state, int uptodate)
3013{
Josef Bacik5fd02042012-05-02 14:00:54 -04003014 struct inode *inode = page->mapping->host;
3015 struct btrfs_root *root = BTRFS_I(inode)->root;
3016 struct btrfs_ordered_extent *ordered_extent = NULL;
Liu Bo9e0af232014-08-15 23:36:53 +08003017 struct btrfs_workqueue *wq;
3018 btrfs_work_func_t func;
Josef Bacik5fd02042012-05-02 14:00:54 -04003019
liubo1abe9b82011-03-24 11:18:59 +00003020 trace_btrfs_writepage_end_io_hook(page, start, end, uptodate);
3021
Chris Mason8b62b722009-09-02 16:53:46 -04003022 ClearPagePrivate2(page);
Josef Bacik5fd02042012-05-02 14:00:54 -04003023 if (!btrfs_dec_test_ordered_pending(inode, &ordered_extent, start,
3024 end - start + 1, uptodate))
3025 return 0;
3026
Liu Bo9e0af232014-08-15 23:36:53 +08003027 if (btrfs_is_free_space_inode(inode)) {
3028 wq = root->fs_info->endio_freespace_worker;
3029 func = btrfs_freespace_write_helper;
3030 } else {
3031 wq = root->fs_info->endio_write_workers;
3032 func = btrfs_endio_write_helper;
3033 }
Josef Bacik5fd02042012-05-02 14:00:54 -04003034
Liu Bo9e0af232014-08-15 23:36:53 +08003035 btrfs_init_work(&ordered_extent->work, func, finish_ordered_fn, NULL,
3036 NULL);
3037 btrfs_queue_work(wq, &ordered_extent->work);
Josef Bacik5fd02042012-05-02 14:00:54 -04003038
3039 return 0;
Chris Mason211f90e2008-07-18 11:56:15 -04003040}
3041
Miao Xiedc380ae2014-09-12 18:43:55 +08003042static int __readpage_endio_check(struct inode *inode,
3043 struct btrfs_io_bio *io_bio,
3044 int icsum, struct page *page,
3045 int pgoff, u64 start, size_t len)
3046{
3047 char *kaddr;
3048 u32 csum_expected;
3049 u32 csum = ~(u32)0;
Miao Xiedc380ae2014-09-12 18:43:55 +08003050
3051 csum_expected = *(((u32 *)io_bio->csum) + icsum);
3052
3053 kaddr = kmap_atomic(page);
3054 csum = btrfs_csum_data(kaddr + pgoff, csum, len);
3055 btrfs_csum_final(csum, (char *)&csum);
3056 if (csum != csum_expected)
3057 goto zeroit;
3058
3059 kunmap_atomic(kaddr);
3060 return 0;
3061zeroit:
David Sterba94647322015-10-08 11:01:36 +02003062 btrfs_warn_rl(BTRFS_I(inode)->root->fs_info,
3063 "csum failed ino %llu off %llu csum %u expected csum %u",
Miao Xiedc380ae2014-09-12 18:43:55 +08003064 btrfs_ino(inode), start, csum, csum_expected);
3065 memset(kaddr + pgoff, 1, len);
3066 flush_dcache_page(page);
3067 kunmap_atomic(kaddr);
3068 if (csum_expected == 0)
3069 return 0;
3070 return -EIO;
3071}
3072
Chris Masond352ac62008-09-29 15:18:18 -04003073/*
Chris Masond352ac62008-09-29 15:18:18 -04003074 * when reads are done, we need to check csums to verify the data is correct
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02003075 * if there's a match, we allow the bio to finish. If not, the code in
3076 * extent_io.c will try to find good copies for us.
Chris Masond352ac62008-09-29 15:18:18 -04003077 */
Miao Xiefacc8a222013-07-25 19:22:34 +08003078static int btrfs_readpage_end_io_hook(struct btrfs_io_bio *io_bio,
3079 u64 phy_offset, struct page *page,
3080 u64 start, u64 end, int mirror)
Chris Mason07157aa2007-08-30 08:50:51 -04003081{
Miao Xie4eee4fa2012-12-21 09:17:45 +00003082 size_t offset = start - page_offset(page);
Chris Mason07157aa2007-08-30 08:50:51 -04003083 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05003084 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masonff79f812007-10-15 16:22:25 -04003085 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond1310b22008-01-24 16:13:08 -05003086
Chris Masond20f7042008-12-08 16:58:54 -05003087 if (PageChecked(page)) {
3088 ClearPageChecked(page);
Miao Xiedc380ae2014-09-12 18:43:55 +08003089 return 0;
Chris Masond20f7042008-12-08 16:58:54 -05003090 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02003091
3092 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)
Miao Xiedc380ae2014-09-12 18:43:55 +08003093 return 0;
Chris Masond20f7042008-12-08 16:58:54 -05003094
Yan Zheng17d217f2008-12-12 10:03:38 -05003095 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID &&
Chris Mason9655d292009-09-02 15:22:30 -04003096 test_range_bit(io_tree, start, end, EXTENT_NODATASUM, 1, NULL)) {
Yan Zheng17d217f2008-12-12 10:03:38 -05003097 clear_extent_bits(io_tree, start, end, EXTENT_NODATASUM,
3098 GFP_NOFS);
3099 return 0;
3100 }
3101
Miao Xiefacc8a222013-07-25 19:22:34 +08003102 phy_offset >>= inode->i_sb->s_blocksize_bits;
Miao Xiedc380ae2014-09-12 18:43:55 +08003103 return __readpage_endio_check(inode, io_bio, phy_offset, page, offset,
3104 start, (size_t)(end - start + 1));
Chris Mason07157aa2007-08-30 08:50:51 -04003105}
Chris Masonb888db22007-08-27 16:49:44 -04003106
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003107struct delayed_iput {
3108 struct list_head list;
3109 struct inode *inode;
3110};
3111
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003112/* JDM: If this is fs-wide, why can't we add a pointer to
3113 * btrfs_inode instead and avoid the allocation? */
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003114void btrfs_add_delayed_iput(struct inode *inode)
3115{
3116 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
3117 struct delayed_iput *delayed;
3118
3119 if (atomic_add_unless(&inode->i_count, -1, 1))
3120 return;
3121
3122 delayed = kmalloc(sizeof(*delayed), GFP_NOFS | __GFP_NOFAIL);
3123 delayed->inode = inode;
3124
3125 spin_lock(&fs_info->delayed_iput_lock);
3126 list_add_tail(&delayed->list, &fs_info->delayed_iputs);
3127 spin_unlock(&fs_info->delayed_iput_lock);
3128}
3129
3130void btrfs_run_delayed_iputs(struct btrfs_root *root)
3131{
3132 LIST_HEAD(list);
3133 struct btrfs_fs_info *fs_info = root->fs_info;
3134 struct delayed_iput *delayed;
3135 int empty;
3136
3137 spin_lock(&fs_info->delayed_iput_lock);
3138 empty = list_empty(&fs_info->delayed_iputs);
3139 spin_unlock(&fs_info->delayed_iput_lock);
3140 if (empty)
3141 return;
3142
Zhao Leid7c15172015-02-26 10:49:20 +08003143 down_read(&fs_info->delayed_iput_sem);
3144
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003145 spin_lock(&fs_info->delayed_iput_lock);
3146 list_splice_init(&fs_info->delayed_iputs, &list);
3147 spin_unlock(&fs_info->delayed_iput_lock);
3148
3149 while (!list_empty(&list)) {
3150 delayed = list_entry(list.next, struct delayed_iput, list);
3151 list_del(&delayed->list);
3152 iput(delayed->inode);
3153 kfree(delayed);
3154 }
Zhao Leid7c15172015-02-26 10:49:20 +08003155
3156 up_read(&root->fs_info->delayed_iput_sem);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003157}
3158
Yan, Zhengd68fc572010-05-16 10:49:58 -04003159/*
Justin P. Mattock42b2aa82011-11-28 20:31:00 -08003160 * This is called in transaction commit time. If there are no orphan
Yan, Zhengd68fc572010-05-16 10:49:58 -04003161 * files in the subvolume, it removes orphan item and frees block_rsv
3162 * structure.
3163 */
3164void btrfs_orphan_commit_root(struct btrfs_trans_handle *trans,
3165 struct btrfs_root *root)
3166{
Josef Bacik90290e12011-12-02 15:44:12 -05003167 struct btrfs_block_rsv *block_rsv;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003168 int ret;
3169
Josef Bacik8a35d952012-05-23 14:26:42 -04003170 if (atomic_read(&root->orphan_inodes) ||
Yan, Zhengd68fc572010-05-16 10:49:58 -04003171 root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE)
3172 return;
3173
Josef Bacik90290e12011-12-02 15:44:12 -05003174 spin_lock(&root->orphan_lock);
Josef Bacik8a35d952012-05-23 14:26:42 -04003175 if (atomic_read(&root->orphan_inodes)) {
Josef Bacik90290e12011-12-02 15:44:12 -05003176 spin_unlock(&root->orphan_lock);
3177 return;
3178 }
3179
3180 if (root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE) {
3181 spin_unlock(&root->orphan_lock);
3182 return;
3183 }
3184
3185 block_rsv = root->orphan_block_rsv;
3186 root->orphan_block_rsv = NULL;
3187 spin_unlock(&root->orphan_lock);
3188
Miao Xie27cdeb72014-04-02 19:51:05 +08003189 if (test_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &root->state) &&
Yan, Zhengd68fc572010-05-16 10:49:58 -04003190 btrfs_root_refs(&root->root_item) > 0) {
3191 ret = btrfs_del_orphan_item(trans, root->fs_info->tree_root,
3192 root->root_key.objectid);
Josef Bacik4ef31a42013-08-13 14:10:08 -04003193 if (ret)
3194 btrfs_abort_transaction(trans, root, ret);
3195 else
Miao Xie27cdeb72014-04-02 19:51:05 +08003196 clear_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED,
3197 &root->state);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003198 }
3199
Josef Bacik90290e12011-12-02 15:44:12 -05003200 if (block_rsv) {
3201 WARN_ON(block_rsv->size > 0);
3202 btrfs_free_block_rsv(root, block_rsv);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003203 }
3204}
3205
3206/*
Josef Bacik7b128762008-07-24 12:17:14 -04003207 * This creates an orphan entry for the given inode in case something goes
3208 * wrong in the middle of an unlink/truncate.
Yan, Zhengd68fc572010-05-16 10:49:58 -04003209 *
3210 * NOTE: caller of this function should reserve 5 units of metadata for
3211 * this function.
Josef Bacik7b128762008-07-24 12:17:14 -04003212 */
3213int btrfs_orphan_add(struct btrfs_trans_handle *trans, struct inode *inode)
3214{
3215 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003216 struct btrfs_block_rsv *block_rsv = NULL;
3217 int reserve = 0;
3218 int insert = 0;
3219 int ret;
Josef Bacik7b128762008-07-24 12:17:14 -04003220
Yan, Zhengd68fc572010-05-16 10:49:58 -04003221 if (!root->orphan_block_rsv) {
Miao Xie66d8f3d2012-09-06 04:02:28 -06003222 block_rsv = btrfs_alloc_block_rsv(root, BTRFS_BLOCK_RSV_TEMP);
Tsutomu Itohb5324022011-07-19 07:27:20 +00003223 if (!block_rsv)
3224 return -ENOMEM;
Josef Bacik7b128762008-07-24 12:17:14 -04003225 }
3226
Yan, Zhengd68fc572010-05-16 10:49:58 -04003227 spin_lock(&root->orphan_lock);
3228 if (!root->orphan_block_rsv) {
3229 root->orphan_block_rsv = block_rsv;
3230 } else if (block_rsv) {
3231 btrfs_free_block_rsv(root, block_rsv);
3232 block_rsv = NULL;
3233 }
Josef Bacik7b128762008-07-24 12:17:14 -04003234
Josef Bacik8a35d952012-05-23 14:26:42 -04003235 if (!test_and_set_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
3236 &BTRFS_I(inode)->runtime_flags)) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04003237#if 0
3238 /*
3239 * For proper ENOSPC handling, we should do orphan
3240 * cleanup when mounting. But this introduces backward
3241 * compatibility issue.
3242 */
3243 if (!xchg(&root->orphan_item_inserted, 1))
3244 insert = 2;
3245 else
3246 insert = 1;
3247#endif
3248 insert = 1;
Miao Xie321f0e72012-08-28 22:13:02 -06003249 atomic_inc(&root->orphan_inodes);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003250 }
Josef Bacik7b128762008-07-24 12:17:14 -04003251
Josef Bacik72ac3c02012-05-23 14:13:11 -04003252 if (!test_and_set_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
3253 &BTRFS_I(inode)->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04003254 reserve = 1;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003255 spin_unlock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04003256
Yan, Zhengd68fc572010-05-16 10:49:58 -04003257 /* grab metadata reservation from transaction handle */
3258 if (reserve) {
3259 ret = btrfs_orphan_reserve_metadata(trans, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003260 BUG_ON(ret); /* -ENOSPC in reservation; Logic error? JDM */
Yan, Zhengd68fc572010-05-16 10:49:58 -04003261 }
3262
3263 /* insert an orphan item to track this unlinked/truncated file */
3264 if (insert >= 1) {
Li Zefan33345d012011-04-20 10:31:50 +08003265 ret = btrfs_insert_orphan_item(trans, root, btrfs_ino(inode));
Josef Bacik4ef31a42013-08-13 14:10:08 -04003266 if (ret) {
Filipe David Borba Manana703c88e2013-09-22 21:54:55 +01003267 atomic_dec(&root->orphan_inodes);
Josef Bacik4ef31a42013-08-13 14:10:08 -04003268 if (reserve) {
3269 clear_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
3270 &BTRFS_I(inode)->runtime_flags);
3271 btrfs_orphan_release_metadata(inode);
3272 }
3273 if (ret != -EEXIST) {
Josef Bacike8e7cff2013-08-21 15:54:00 -04003274 clear_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
3275 &BTRFS_I(inode)->runtime_flags);
Josef Bacik4ef31a42013-08-13 14:10:08 -04003276 btrfs_abort_transaction(trans, root, ret);
3277 return ret;
3278 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003279 }
3280 ret = 0;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003281 }
3282
3283 /* insert an orphan item to track subvolume contains orphan files */
3284 if (insert >= 2) {
3285 ret = btrfs_insert_orphan_item(trans, root->fs_info->tree_root,
3286 root->root_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003287 if (ret && ret != -EEXIST) {
3288 btrfs_abort_transaction(trans, root, ret);
3289 return ret;
3290 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04003291 }
3292 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04003293}
3294
3295/*
3296 * We have done the truncate/delete so we can go ahead and remove the orphan
3297 * item for this particular inode.
3298 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00003299static int btrfs_orphan_del(struct btrfs_trans_handle *trans,
3300 struct inode *inode)
Josef Bacik7b128762008-07-24 12:17:14 -04003301{
3302 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003303 int delete_item = 0;
3304 int release_rsv = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04003305 int ret = 0;
3306
Yan, Zhengd68fc572010-05-16 10:49:58 -04003307 spin_lock(&root->orphan_lock);
Josef Bacik8a35d952012-05-23 14:26:42 -04003308 if (test_and_clear_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
3309 &BTRFS_I(inode)->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04003310 delete_item = 1;
Josef Bacik7b128762008-07-24 12:17:14 -04003311
Josef Bacik72ac3c02012-05-23 14:13:11 -04003312 if (test_and_clear_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
3313 &BTRFS_I(inode)->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04003314 release_rsv = 1;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003315 spin_unlock(&root->orphan_lock);
3316
Filipe David Borba Manana703c88e2013-09-22 21:54:55 +01003317 if (delete_item) {
Josef Bacik8a35d952012-05-23 14:26:42 -04003318 atomic_dec(&root->orphan_inodes);
Filipe David Borba Manana703c88e2013-09-22 21:54:55 +01003319 if (trans)
3320 ret = btrfs_del_orphan_item(trans, root,
3321 btrfs_ino(inode));
Josef Bacik8a35d952012-05-23 14:26:42 -04003322 }
Josef Bacik7b128762008-07-24 12:17:14 -04003323
Filipe David Borba Manana703c88e2013-09-22 21:54:55 +01003324 if (release_rsv)
3325 btrfs_orphan_release_metadata(inode);
3326
Josef Bacik4ef31a42013-08-13 14:10:08 -04003327 return ret;
Josef Bacik7b128762008-07-24 12:17:14 -04003328}
3329
3330/*
3331 * this cleans up any orphans that may be left on the list from the last use
3332 * of this root.
3333 */
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003334int btrfs_orphan_cleanup(struct btrfs_root *root)
Josef Bacik7b128762008-07-24 12:17:14 -04003335{
3336 struct btrfs_path *path;
3337 struct extent_buffer *leaf;
Josef Bacik7b128762008-07-24 12:17:14 -04003338 struct btrfs_key key, found_key;
3339 struct btrfs_trans_handle *trans;
3340 struct inode *inode;
Josef Bacik8f6d7f42011-09-26 15:55:20 -04003341 u64 last_objectid = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04003342 int ret = 0, nr_unlink = 0, nr_truncate = 0;
3343
Yan, Zhengd68fc572010-05-16 10:49:58 -04003344 if (cmpxchg(&root->orphan_cleanup_state, 0, ORPHAN_CLEANUP_STARTED))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003345 return 0;
Yan, Zhengc71bf092009-11-12 09:34:40 +00003346
3347 path = btrfs_alloc_path();
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003348 if (!path) {
3349 ret = -ENOMEM;
3350 goto out;
3351 }
Josef Bacik7b128762008-07-24 12:17:14 -04003352 path->reada = -1;
3353
3354 key.objectid = BTRFS_ORPHAN_OBJECTID;
David Sterba962a2982014-06-04 18:41:45 +02003355 key.type = BTRFS_ORPHAN_ITEM_KEY;
Josef Bacik7b128762008-07-24 12:17:14 -04003356 key.offset = (u64)-1;
3357
Josef Bacik7b128762008-07-24 12:17:14 -04003358 while (1) {
3359 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003360 if (ret < 0)
3361 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003362
3363 /*
3364 * if ret == 0 means we found what we were searching for, which
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003365 * is weird, but possible, so only screw with path if we didn't
Josef Bacik7b128762008-07-24 12:17:14 -04003366 * find the key and see if we have stuff that matches
3367 */
3368 if (ret > 0) {
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003369 ret = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04003370 if (path->slots[0] == 0)
3371 break;
3372 path->slots[0]--;
3373 }
3374
3375 /* pull out the item */
3376 leaf = path->nodes[0];
Josef Bacik7b128762008-07-24 12:17:14 -04003377 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3378
3379 /* make sure the item matches what we want */
3380 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
3381 break;
David Sterba962a2982014-06-04 18:41:45 +02003382 if (found_key.type != BTRFS_ORPHAN_ITEM_KEY)
Josef Bacik7b128762008-07-24 12:17:14 -04003383 break;
3384
3385 /* release the path since we're done with it */
David Sterbab3b4aa72011-04-21 01:20:15 +02003386 btrfs_release_path(path);
Josef Bacik7b128762008-07-24 12:17:14 -04003387
3388 /*
3389 * this is where we are basically btrfs_lookup, without the
3390 * crossing root thing. we store the inode number in the
3391 * offset of the orphan item.
3392 */
Josef Bacik8f6d7f42011-09-26 15:55:20 -04003393
3394 if (found_key.offset == last_objectid) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00003395 btrfs_err(root->fs_info,
3396 "Error removing orphan entry, stopping orphan cleanup");
Josef Bacik8f6d7f42011-09-26 15:55:20 -04003397 ret = -EINVAL;
3398 goto out;
3399 }
3400
3401 last_objectid = found_key.offset;
3402
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003403 found_key.objectid = found_key.offset;
3404 found_key.type = BTRFS_INODE_ITEM_KEY;
3405 found_key.offset = 0;
Josef Bacik73f73412009-12-04 17:38:27 +00003406 inode = btrfs_iget(root->fs_info->sb, &found_key, root, NULL);
Rusty Russell8c6ffba2013-07-15 11:20:32 +09303407 ret = PTR_ERR_OR_ZERO(inode);
Josef Bacika8c9e572011-09-21 16:55:59 -04003408 if (ret && ret != -ESTALE)
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003409 goto out;
Josef Bacika8c9e572011-09-21 16:55:59 -04003410
Arne Jansenf8e9e0b2011-12-14 20:12:02 -05003411 if (ret == -ESTALE && root == root->fs_info->tree_root) {
3412 struct btrfs_root *dead_root;
3413 struct btrfs_fs_info *fs_info = root->fs_info;
3414 int is_dead_root = 0;
3415
3416 /*
3417 * this is an orphan in the tree root. Currently these
3418 * could come from 2 sources:
3419 * a) a snapshot deletion in progress
3420 * b) a free space cache inode
3421 * We need to distinguish those two, as the snapshot
3422 * orphan must not get deleted.
3423 * find_dead_roots already ran before us, so if this
3424 * is a snapshot deletion, we should find the root
3425 * in the dead_roots list
3426 */
3427 spin_lock(&fs_info->trans_lock);
3428 list_for_each_entry(dead_root, &fs_info->dead_roots,
3429 root_list) {
3430 if (dead_root->root_key.objectid ==
3431 found_key.objectid) {
3432 is_dead_root = 1;
3433 break;
3434 }
3435 }
3436 spin_unlock(&fs_info->trans_lock);
3437 if (is_dead_root) {
3438 /* prevent this orphan from being found again */
3439 key.offset = found_key.objectid - 1;
3440 continue;
3441 }
3442 }
Josef Bacika8c9e572011-09-21 16:55:59 -04003443 /*
3444 * Inode is already gone but the orphan item is still there,
3445 * kill the orphan item.
3446 */
3447 if (ret == -ESTALE) {
3448 trans = btrfs_start_transaction(root, 1);
3449 if (IS_ERR(trans)) {
3450 ret = PTR_ERR(trans);
3451 goto out;
3452 }
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00003453 btrfs_debug(root->fs_info, "auto deleting %Lu",
3454 found_key.objectid);
Josef Bacika8c9e572011-09-21 16:55:59 -04003455 ret = btrfs_del_orphan_item(trans, root,
3456 found_key.objectid);
Josef Bacika8c9e572011-09-21 16:55:59 -04003457 btrfs_end_transaction(trans, root);
Josef Bacik4ef31a42013-08-13 14:10:08 -04003458 if (ret)
3459 goto out;
Josef Bacika8c9e572011-09-21 16:55:59 -04003460 continue;
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003461 }
Josef Bacik7b128762008-07-24 12:17:14 -04003462
Josef Bacik7b128762008-07-24 12:17:14 -04003463 /*
3464 * add this inode to the orphan list so btrfs_orphan_del does
3465 * the proper thing when we hit it
3466 */
Josef Bacik8a35d952012-05-23 14:26:42 -04003467 set_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
3468 &BTRFS_I(inode)->runtime_flags);
Josef Bacik925396e2013-02-01 15:57:47 -05003469 atomic_inc(&root->orphan_inodes);
Josef Bacik7b128762008-07-24 12:17:14 -04003470
Josef Bacik7b128762008-07-24 12:17:14 -04003471 /* if we have links, this was a truncate, lets do that */
3472 if (inode->i_nlink) {
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303473 if (WARN_ON(!S_ISREG(inode->i_mode))) {
Josef Bacika41ad392011-01-31 15:30:16 -05003474 iput(inode);
3475 continue;
3476 }
Josef Bacik7b128762008-07-24 12:17:14 -04003477 nr_truncate++;
Josef Bacikf3fe8202013-01-07 17:03:21 -05003478
3479 /* 1 for the orphan item deletion. */
3480 trans = btrfs_start_transaction(root, 1);
3481 if (IS_ERR(trans)) {
Josef Bacikc69b26b2013-06-03 16:51:23 -04003482 iput(inode);
Josef Bacikf3fe8202013-01-07 17:03:21 -05003483 ret = PTR_ERR(trans);
3484 goto out;
3485 }
3486 ret = btrfs_orphan_add(trans, inode);
3487 btrfs_end_transaction(trans, root);
Josef Bacikc69b26b2013-06-03 16:51:23 -04003488 if (ret) {
3489 iput(inode);
Josef Bacikf3fe8202013-01-07 17:03:21 -05003490 goto out;
Josef Bacikc69b26b2013-06-03 16:51:23 -04003491 }
Josef Bacikf3fe8202013-01-07 17:03:21 -05003492
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003493 ret = btrfs_truncate(inode);
Josef Bacik4a7d0f62013-02-07 16:27:28 -05003494 if (ret)
3495 btrfs_orphan_del(NULL, inode);
Josef Bacik7b128762008-07-24 12:17:14 -04003496 } else {
3497 nr_unlink++;
3498 }
3499
3500 /* this will do delete_inode and everything for us */
3501 iput(inode);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003502 if (ret)
3503 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003504 }
Miao Xie3254c872011-11-10 20:45:05 -05003505 /* release the path since we're done with it */
3506 btrfs_release_path(path);
3507
Yan, Zhengd68fc572010-05-16 10:49:58 -04003508 root->orphan_cleanup_state = ORPHAN_CLEANUP_DONE;
3509
3510 if (root->orphan_block_rsv)
3511 btrfs_block_rsv_release(root, root->orphan_block_rsv,
3512 (u64)-1);
3513
Miao Xie27cdeb72014-04-02 19:51:05 +08003514 if (root->orphan_block_rsv ||
3515 test_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &root->state)) {
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003516 trans = btrfs_join_transaction(root);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003517 if (!IS_ERR(trans))
3518 btrfs_end_transaction(trans, root);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003519 }
Josef Bacik7b128762008-07-24 12:17:14 -04003520
3521 if (nr_unlink)
David Sterba4884b472013-03-20 13:31:27 +00003522 btrfs_debug(root->fs_info, "unlinked %d orphans", nr_unlink);
Josef Bacik7b128762008-07-24 12:17:14 -04003523 if (nr_truncate)
David Sterba4884b472013-03-20 13:31:27 +00003524 btrfs_debug(root->fs_info, "truncated %d orphans", nr_truncate);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003525
3526out:
3527 if (ret)
David Sterba68b663d2014-12-19 18:38:37 +01003528 btrfs_err(root->fs_info,
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00003529 "could not do orphan cleanup %d", ret);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003530 btrfs_free_path(path);
3531 return ret;
Josef Bacik7b128762008-07-24 12:17:14 -04003532}
3533
Chris Masond352ac62008-09-29 15:18:18 -04003534/*
Chris Mason46a53cc2009-04-27 11:47:50 -04003535 * very simple check to peek ahead in the leaf looking for xattrs. If we
3536 * don't find any xattrs, we know there can't be any acls.
3537 *
3538 * slot is the slot the inode is in, objectid is the objectid of the inode
3539 */
3540static noinline int acls_after_inode_item(struct extent_buffer *leaf,
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003541 int slot, u64 objectid,
3542 int *first_xattr_slot)
Chris Mason46a53cc2009-04-27 11:47:50 -04003543{
3544 u32 nritems = btrfs_header_nritems(leaf);
3545 struct btrfs_key found_key;
Josef Bacikf23b5a52013-06-19 10:16:26 -04003546 static u64 xattr_access = 0;
3547 static u64 xattr_default = 0;
Chris Mason46a53cc2009-04-27 11:47:50 -04003548 int scanned = 0;
3549
Josef Bacikf23b5a52013-06-19 10:16:26 -04003550 if (!xattr_access) {
3551 xattr_access = btrfs_name_hash(POSIX_ACL_XATTR_ACCESS,
3552 strlen(POSIX_ACL_XATTR_ACCESS));
3553 xattr_default = btrfs_name_hash(POSIX_ACL_XATTR_DEFAULT,
3554 strlen(POSIX_ACL_XATTR_DEFAULT));
3555 }
3556
Chris Mason46a53cc2009-04-27 11:47:50 -04003557 slot++;
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003558 *first_xattr_slot = -1;
Chris Mason46a53cc2009-04-27 11:47:50 -04003559 while (slot < nritems) {
3560 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3561
3562 /* we found a different objectid, there must not be acls */
3563 if (found_key.objectid != objectid)
3564 return 0;
3565
3566 /* we found an xattr, assume we've got an acl */
Josef Bacikf23b5a52013-06-19 10:16:26 -04003567 if (found_key.type == BTRFS_XATTR_ITEM_KEY) {
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003568 if (*first_xattr_slot == -1)
3569 *first_xattr_slot = slot;
Josef Bacikf23b5a52013-06-19 10:16:26 -04003570 if (found_key.offset == xattr_access ||
3571 found_key.offset == xattr_default)
3572 return 1;
3573 }
Chris Mason46a53cc2009-04-27 11:47:50 -04003574
3575 /*
3576 * we found a key greater than an xattr key, there can't
3577 * be any acls later on
3578 */
3579 if (found_key.type > BTRFS_XATTR_ITEM_KEY)
3580 return 0;
3581
3582 slot++;
3583 scanned++;
3584
3585 /*
3586 * it goes inode, inode backrefs, xattrs, extents,
3587 * so if there are a ton of hard links to an inode there can
3588 * be a lot of backrefs. Don't waste time searching too hard,
3589 * this is just an optimization
3590 */
3591 if (scanned >= 8)
3592 break;
3593 }
3594 /* we hit the end of the leaf before we found an xattr or
3595 * something larger than an xattr. We have to assume the inode
3596 * has acls
3597 */
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003598 if (*first_xattr_slot == -1)
3599 *first_xattr_slot = slot;
Chris Mason46a53cc2009-04-27 11:47:50 -04003600 return 1;
3601}
3602
3603/*
Chris Masond352ac62008-09-29 15:18:18 -04003604 * read an inode from the btree into the in-memory inode
3605 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003606static void btrfs_read_locked_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04003607{
3608 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04003609 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003610 struct btrfs_inode_item *inode_item;
3611 struct btrfs_root *root = BTRFS_I(inode)->root;
3612 struct btrfs_key location;
Miao Xie67de1172013-12-26 13:07:06 +08003613 unsigned long ptr;
Chris Mason46a53cc2009-04-27 11:47:50 -04003614 int maybe_acls;
Josef Bacik618e21d2007-07-11 10:18:17 -04003615 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -04003616 int ret;
Miao Xie2f7e33d2011-06-23 07:27:13 +00003617 bool filled = false;
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003618 int first_xattr_slot;
Miao Xie2f7e33d2011-06-23 07:27:13 +00003619
3620 ret = btrfs_fill_inode(inode, &rdev);
3621 if (!ret)
3622 filled = true;
Chris Mason39279cc2007-06-12 06:35:45 -04003623
3624 path = btrfs_alloc_path();
Mark Fasheh1748f842011-07-12 11:25:31 -07003625 if (!path)
3626 goto make_bad;
3627
Chris Mason39279cc2007-06-12 06:35:45 -04003628 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -05003629
Chris Mason39279cc2007-06-12 06:35:45 -04003630 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003631 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -04003632 goto make_bad;
Chris Mason39279cc2007-06-12 06:35:45 -04003633
Chris Mason5f39d392007-10-15 16:14:19 -04003634 leaf = path->nodes[0];
Miao Xie2f7e33d2011-06-23 07:27:13 +00003635
3636 if (filled)
Miao Xie67de1172013-12-26 13:07:06 +08003637 goto cache_index;
Miao Xie2f7e33d2011-06-23 07:27:13 +00003638
Chris Mason5f39d392007-10-15 16:14:19 -04003639 inode_item = btrfs_item_ptr(leaf, path->slots[0],
3640 struct btrfs_inode_item);
Chris Mason5f39d392007-10-15 16:14:19 -04003641 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
Miklos Szeredibfe86842011-10-28 14:13:29 +02003642 set_nlink(inode, btrfs_inode_nlink(leaf, inode_item));
Eric W. Biederman2f2f43d2012-02-10 11:05:07 -08003643 i_uid_write(inode, btrfs_inode_uid(leaf, inode_item));
3644 i_gid_write(inode, btrfs_inode_gid(leaf, inode_item));
Chris Masondbe674a2008-07-17 12:54:05 -04003645 btrfs_i_size_write(inode, btrfs_inode_size(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04003646
David Sterbaa937b972014-12-12 17:39:12 +01003647 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, &inode_item->atime);
3648 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, &inode_item->atime);
Chris Mason5f39d392007-10-15 16:14:19 -04003649
David Sterbaa937b972014-12-12 17:39:12 +01003650 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, &inode_item->mtime);
3651 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, &inode_item->mtime);
Chris Mason5f39d392007-10-15 16:14:19 -04003652
David Sterbaa937b972014-12-12 17:39:12 +01003653 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, &inode_item->ctime);
3654 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, &inode_item->ctime);
Chris Mason5f39d392007-10-15 16:14:19 -04003655
chandan r9cc97d62012-07-04 12:48:07 +05303656 BTRFS_I(inode)->i_otime.tv_sec =
3657 btrfs_timespec_sec(leaf, &inode_item->otime);
3658 BTRFS_I(inode)->i_otime.tv_nsec =
3659 btrfs_timespec_nsec(leaf, &inode_item->otime);
Chris Mason5f39d392007-10-15 16:14:19 -04003660
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003661 inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04003662 BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item);
Josef Bacik5dc562c2012-08-17 13:14:17 -04003663 BTRFS_I(inode)->last_trans = btrfs_inode_transid(leaf, inode_item);
3664
Josef Bacik0c4d2d92012-04-05 15:03:02 -04003665 inode->i_version = btrfs_inode_sequence(leaf, inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04003666 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik618e21d2007-07-11 10:18:17 -04003667 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04003668 rdev = btrfs_inode_rdev(leaf, inode_item);
3669
Josef Bacikaec74772008-07-24 12:12:38 -04003670 BTRFS_I(inode)->index_cnt = (u64)-1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05003671 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Miao Xie67de1172013-12-26 13:07:06 +08003672
3673cache_index:
Yang Dongsheng6e17d302015-04-09 12:08:43 +08003674 /*
3675 * If we were modified in the current generation and evicted from memory
3676 * and then re-read we need to do a full sync since we don't have any
3677 * idea about which extents were modified before we were evicted from
3678 * cache.
3679 *
3680 * This is required for both inode re-read from disk and delayed inode
3681 * in delayed_nodes_tree.
3682 */
3683 if (BTRFS_I(inode)->last_trans == root->fs_info->generation)
3684 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3685 &BTRFS_I(inode)->runtime_flags);
3686
Filipe Mananabde6c242015-07-24 00:00:19 +01003687 /*
3688 * We don't persist the id of the transaction where an unlink operation
3689 * against the inode was last made. So here we assume the inode might
3690 * have been evicted, and therefore the exact value of last_unlink_trans
3691 * lost, and set it to last_trans to avoid metadata inconsistencies
3692 * between the inode and its parent if the inode is fsync'ed and the log
3693 * replayed. For example, in the scenario:
3694 *
3695 * touch mydir/foo
3696 * ln mydir/foo mydir/bar
3697 * sync
3698 * unlink mydir/bar
3699 * echo 2 > /proc/sys/vm/drop_caches # evicts inode
3700 * xfs_io -c fsync mydir/foo
3701 * <power failure>
3702 * mount fs, triggers fsync log replay
3703 *
3704 * We must make sure that when we fsync our inode foo we also log its
3705 * parent inode, otherwise after log replay the parent still has the
3706 * dentry with the "bar" name but our inode foo has a link count of 1
3707 * and doesn't have an inode ref with the name "bar" anymore.
3708 *
3709 * Setting last_unlink_trans to last_trans is a pessimistic approach,
3710 * but it guarantees correctness at the expense of ocassional full
3711 * transaction commits on fsync if our inode is a directory, or if our
3712 * inode is not a directory, logging its parent unnecessarily.
3713 */
3714 BTRFS_I(inode)->last_unlink_trans = BTRFS_I(inode)->last_trans;
3715
Miao Xie67de1172013-12-26 13:07:06 +08003716 path->slots[0]++;
3717 if (inode->i_nlink != 1 ||
3718 path->slots[0] >= btrfs_header_nritems(leaf))
3719 goto cache_acl;
3720
3721 btrfs_item_key_to_cpu(leaf, &location, path->slots[0]);
3722 if (location.objectid != btrfs_ino(inode))
3723 goto cache_acl;
3724
3725 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
3726 if (location.type == BTRFS_INODE_REF_KEY) {
3727 struct btrfs_inode_ref *ref;
3728
3729 ref = (struct btrfs_inode_ref *)ptr;
3730 BTRFS_I(inode)->dir_index = btrfs_inode_ref_index(leaf, ref);
3731 } else if (location.type == BTRFS_INODE_EXTREF_KEY) {
3732 struct btrfs_inode_extref *extref;
3733
3734 extref = (struct btrfs_inode_extref *)ptr;
3735 BTRFS_I(inode)->dir_index = btrfs_inode_extref_index(leaf,
3736 extref);
3737 }
Miao Xie2f7e33d2011-06-23 07:27:13 +00003738cache_acl:
Chris Mason46a53cc2009-04-27 11:47:50 -04003739 /*
3740 * try to precache a NULL acl entry for files that don't have
3741 * any xattrs or acls
3742 */
Li Zefan33345d012011-04-20 10:31:50 +08003743 maybe_acls = acls_after_inode_item(leaf, path->slots[0],
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003744 btrfs_ino(inode), &first_xattr_slot);
3745 if (first_xattr_slot != -1) {
3746 path->slots[0] = first_xattr_slot;
3747 ret = btrfs_load_inode_props(inode, path);
3748 if (ret)
3749 btrfs_err(root->fs_info,
David Sterba351fd352014-05-15 16:48:20 +02003750 "error loading props for ino %llu (root %llu): %d",
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003751 btrfs_ino(inode),
3752 root->root_key.objectid, ret);
3753 }
3754 btrfs_free_path(path);
3755
Al Viro72c04902009-06-24 16:58:48 -04003756 if (!maybe_acls)
3757 cache_no_acl(inode);
Chris Mason46a53cc2009-04-27 11:47:50 -04003758
Chris Mason39279cc2007-06-12 06:35:45 -04003759 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -04003760 case S_IFREG:
3761 inode->i_mapping->a_ops = &btrfs_aops;
Chris Masond1310b22008-01-24 16:13:08 -05003762 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04003763 inode->i_fop = &btrfs_file_operations;
3764 inode->i_op = &btrfs_file_inode_operations;
3765 break;
3766 case S_IFDIR:
3767 inode->i_fop = &btrfs_dir_file_operations;
3768 if (root == root->fs_info->tree_root)
3769 inode->i_op = &btrfs_dir_ro_inode_operations;
3770 else
3771 inode->i_op = &btrfs_dir_inode_operations;
3772 break;
3773 case S_IFLNK:
3774 inode->i_op = &btrfs_symlink_inode_operations;
3775 inode->i_mapping->a_ops = &btrfs_symlink_aops;
3776 break;
Josef Bacik618e21d2007-07-11 10:18:17 -04003777 default:
Jim Owens0279b4c2009-02-04 09:29:13 -05003778 inode->i_op = &btrfs_special_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -04003779 init_special_inode(inode, inode->i_mode, rdev);
3780 break;
Chris Mason39279cc2007-06-12 06:35:45 -04003781 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02003782
3783 btrfs_update_iflags(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003784 return;
3785
3786make_bad:
Chris Mason39279cc2007-06-12 06:35:45 -04003787 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003788 make_bad_inode(inode);
3789}
3790
Chris Masond352ac62008-09-29 15:18:18 -04003791/*
3792 * given a leaf and an inode, copy the inode fields into the leaf
3793 */
Chris Masone02119d2008-09-05 16:13:11 -04003794static void fill_inode_item(struct btrfs_trans_handle *trans,
3795 struct extent_buffer *leaf,
Chris Mason5f39d392007-10-15 16:14:19 -04003796 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -04003797 struct inode *inode)
3798{
Liu Bo51fab692012-12-27 09:01:21 +00003799 struct btrfs_map_token token;
Chris Mason5f39d392007-10-15 16:14:19 -04003800
Liu Bo51fab692012-12-27 09:01:21 +00003801 btrfs_init_map_token(&token);
Chris Mason5f39d392007-10-15 16:14:19 -04003802
Liu Bo51fab692012-12-27 09:01:21 +00003803 btrfs_set_token_inode_uid(leaf, item, i_uid_read(inode), &token);
3804 btrfs_set_token_inode_gid(leaf, item, i_gid_read(inode), &token);
3805 btrfs_set_token_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size,
3806 &token);
3807 btrfs_set_token_inode_mode(leaf, item, inode->i_mode, &token);
3808 btrfs_set_token_inode_nlink(leaf, item, inode->i_nlink, &token);
Chris Mason5f39d392007-10-15 16:14:19 -04003809
David Sterbaa937b972014-12-12 17:39:12 +01003810 btrfs_set_token_timespec_sec(leaf, &item->atime,
Liu Bo51fab692012-12-27 09:01:21 +00003811 inode->i_atime.tv_sec, &token);
David Sterbaa937b972014-12-12 17:39:12 +01003812 btrfs_set_token_timespec_nsec(leaf, &item->atime,
Liu Bo51fab692012-12-27 09:01:21 +00003813 inode->i_atime.tv_nsec, &token);
Chris Mason5f39d392007-10-15 16:14:19 -04003814
David Sterbaa937b972014-12-12 17:39:12 +01003815 btrfs_set_token_timespec_sec(leaf, &item->mtime,
Liu Bo51fab692012-12-27 09:01:21 +00003816 inode->i_mtime.tv_sec, &token);
David Sterbaa937b972014-12-12 17:39:12 +01003817 btrfs_set_token_timespec_nsec(leaf, &item->mtime,
Liu Bo51fab692012-12-27 09:01:21 +00003818 inode->i_mtime.tv_nsec, &token);
3819
David Sterbaa937b972014-12-12 17:39:12 +01003820 btrfs_set_token_timespec_sec(leaf, &item->ctime,
Liu Bo51fab692012-12-27 09:01:21 +00003821 inode->i_ctime.tv_sec, &token);
David Sterbaa937b972014-12-12 17:39:12 +01003822 btrfs_set_token_timespec_nsec(leaf, &item->ctime,
Liu Bo51fab692012-12-27 09:01:21 +00003823 inode->i_ctime.tv_nsec, &token);
3824
chandan r9cc97d62012-07-04 12:48:07 +05303825 btrfs_set_token_timespec_sec(leaf, &item->otime,
3826 BTRFS_I(inode)->i_otime.tv_sec, &token);
3827 btrfs_set_token_timespec_nsec(leaf, &item->otime,
3828 BTRFS_I(inode)->i_otime.tv_nsec, &token);
3829
Liu Bo51fab692012-12-27 09:01:21 +00003830 btrfs_set_token_inode_nbytes(leaf, item, inode_get_bytes(inode),
3831 &token);
3832 btrfs_set_token_inode_generation(leaf, item, BTRFS_I(inode)->generation,
3833 &token);
3834 btrfs_set_token_inode_sequence(leaf, item, inode->i_version, &token);
3835 btrfs_set_token_inode_transid(leaf, item, trans->transid, &token);
3836 btrfs_set_token_inode_rdev(leaf, item, inode->i_rdev, &token);
3837 btrfs_set_token_inode_flags(leaf, item, BTRFS_I(inode)->flags, &token);
3838 btrfs_set_token_inode_block_group(leaf, item, 0, &token);
Chris Mason39279cc2007-06-12 06:35:45 -04003839}
3840
Chris Masond352ac62008-09-29 15:18:18 -04003841/*
3842 * copy everything in the in-memory inode into the btree.
3843 */
Chris Mason21151332011-11-10 20:39:08 -05003844static noinline int btrfs_update_inode_item(struct btrfs_trans_handle *trans,
Chris Masond3977122009-01-05 21:25:51 -05003845 struct btrfs_root *root, struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04003846{
3847 struct btrfs_inode_item *inode_item;
3848 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04003849 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003850 int ret;
3851
3852 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08003853 if (!path)
3854 return -ENOMEM;
3855
Chris Masonb9473432009-03-13 11:00:37 -04003856 path->leave_spinning = 1;
Miao Xie16cdcec2011-04-22 18:12:22 +08003857 ret = btrfs_lookup_inode(trans, root, path, &BTRFS_I(inode)->location,
3858 1);
Chris Mason39279cc2007-06-12 06:35:45 -04003859 if (ret) {
3860 if (ret > 0)
3861 ret = -ENOENT;
3862 goto failed;
3863 }
3864
Chris Mason5f39d392007-10-15 16:14:19 -04003865 leaf = path->nodes[0];
3866 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Miao Xie16cdcec2011-04-22 18:12:22 +08003867 struct btrfs_inode_item);
Chris Mason39279cc2007-06-12 06:35:45 -04003868
Chris Masone02119d2008-09-05 16:13:11 -04003869 fill_inode_item(trans, leaf, inode_item, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04003870 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04003871 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003872 ret = 0;
3873failed:
Chris Mason39279cc2007-06-12 06:35:45 -04003874 btrfs_free_path(path);
3875 return ret;
3876}
3877
Chris Masond352ac62008-09-29 15:18:18 -04003878/*
Chris Mason21151332011-11-10 20:39:08 -05003879 * copy everything in the in-memory inode into the btree.
3880 */
3881noinline int btrfs_update_inode(struct btrfs_trans_handle *trans,
3882 struct btrfs_root *root, struct inode *inode)
3883{
3884 int ret;
3885
3886 /*
3887 * If the inode is a free space inode, we can deadlock during commit
3888 * if we put it into the delayed code.
3889 *
3890 * The data relocation inode should also be directly updated
3891 * without delay
3892 */
Liu Bo83eea1f2012-07-10 05:28:39 -06003893 if (!btrfs_is_free_space_inode(inode)
Josef Bacik1d52c782014-09-18 11:30:44 -04003894 && root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID
3895 && !root->fs_info->log_root_recovering) {
Alexander Block8ea05e32012-07-25 17:35:53 +02003896 btrfs_update_root_times(trans, root);
3897
Chris Mason21151332011-11-10 20:39:08 -05003898 ret = btrfs_delayed_update_inode(trans, root, inode);
3899 if (!ret)
3900 btrfs_set_inode_last_trans(trans, inode);
3901 return ret;
3902 }
3903
3904 return btrfs_update_inode_item(trans, root, inode);
3905}
3906
Josef Bacikbe6aef62012-10-22 15:43:12 -04003907noinline int btrfs_update_inode_fallback(struct btrfs_trans_handle *trans,
3908 struct btrfs_root *root,
3909 struct inode *inode)
Chris Mason21151332011-11-10 20:39:08 -05003910{
3911 int ret;
3912
3913 ret = btrfs_update_inode(trans, root, inode);
3914 if (ret == -ENOSPC)
3915 return btrfs_update_inode_item(trans, root, inode);
3916 return ret;
3917}
3918
3919/*
Chris Masond352ac62008-09-29 15:18:18 -04003920 * unlink helper that gets used here in inode.c and in the tree logging
3921 * recovery code. It remove a link in a directory with a given name, and
3922 * also drops the back refs in the inode to the directory
3923 */
Al Viro92986792011-03-04 17:14:37 +00003924static int __btrfs_unlink_inode(struct btrfs_trans_handle *trans,
3925 struct btrfs_root *root,
3926 struct inode *dir, struct inode *inode,
3927 const char *name, int name_len)
Chris Mason39279cc2007-06-12 06:35:45 -04003928{
3929 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04003930 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04003931 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003932 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -04003933 struct btrfs_key key;
Josef Bacikaec74772008-07-24 12:12:38 -04003934 u64 index;
Li Zefan33345d012011-04-20 10:31:50 +08003935 u64 ino = btrfs_ino(inode);
3936 u64 dir_ino = btrfs_ino(dir);
Chris Mason39279cc2007-06-12 06:35:45 -04003937
3938 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04003939 if (!path) {
3940 ret = -ENOMEM;
Tsutomu Itoh554233a2011-02-03 03:16:25 +00003941 goto out;
Chris Mason54aa1f42007-06-22 14:16:25 -04003942 }
3943
Chris Masonb9473432009-03-13 11:00:37 -04003944 path->leave_spinning = 1;
Li Zefan33345d012011-04-20 10:31:50 +08003945 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Chris Mason39279cc2007-06-12 06:35:45 -04003946 name, name_len, -1);
3947 if (IS_ERR(di)) {
3948 ret = PTR_ERR(di);
3949 goto err;
3950 }
3951 if (!di) {
3952 ret = -ENOENT;
3953 goto err;
3954 }
Chris Mason5f39d392007-10-15 16:14:19 -04003955 leaf = path->nodes[0];
3956 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -04003957 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -04003958 if (ret)
3959 goto err;
David Sterbab3b4aa72011-04-21 01:20:15 +02003960 btrfs_release_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003961
Miao Xie67de1172013-12-26 13:07:06 +08003962 /*
3963 * If we don't have dir index, we have to get it by looking up
3964 * the inode ref, since we get the inode ref, remove it directly,
3965 * it is unnecessary to do delayed deletion.
3966 *
3967 * But if we have dir index, needn't search inode ref to get it.
3968 * Since the inode ref is close to the inode item, it is better
3969 * that we delay to delete it, and just do this deletion when
3970 * we update the inode item.
3971 */
3972 if (BTRFS_I(inode)->dir_index) {
3973 ret = btrfs_delayed_delete_inode_ref(inode);
3974 if (!ret) {
3975 index = BTRFS_I(inode)->dir_index;
3976 goto skip_backref;
3977 }
3978 }
3979
Li Zefan33345d012011-04-20 10:31:50 +08003980 ret = btrfs_del_inode_ref(trans, root, name, name_len, ino,
3981 dir_ino, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04003982 if (ret) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00003983 btrfs_info(root->fs_info,
3984 "failed to delete reference to %.*s, inode %llu parent %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003985 name_len, name, ino, dir_ino);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003986 btrfs_abort_transaction(trans, root, ret);
Josef Bacikaec74772008-07-24 12:12:38 -04003987 goto err;
3988 }
Miao Xie67de1172013-12-26 13:07:06 +08003989skip_backref:
Miao Xie16cdcec2011-04-22 18:12:22 +08003990 ret = btrfs_delete_delayed_dir_index(trans, root, dir, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003991 if (ret) {
3992 btrfs_abort_transaction(trans, root, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04003993 goto err;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003994 }
Chris Mason39279cc2007-06-12 06:35:45 -04003995
Chris Masone02119d2008-09-05 16:13:11 -04003996 ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len,
Li Zefan33345d012011-04-20 10:31:50 +08003997 inode, dir_ino);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003998 if (ret != 0 && ret != -ENOENT) {
3999 btrfs_abort_transaction(trans, root, ret);
4000 goto err;
4001 }
Chris Masone02119d2008-09-05 16:13:11 -04004002
4003 ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len,
4004 dir, index);
Chris Mason6418c962010-10-30 07:34:24 -04004005 if (ret == -ENOENT)
4006 ret = 0;
Zach Brownd4e39912013-04-02 21:02:16 +00004007 else if (ret)
4008 btrfs_abort_transaction(trans, root, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04004009err:
4010 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04004011 if (ret)
4012 goto out;
4013
4014 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04004015 inode_inc_iversion(inode);
4016 inode_inc_iversion(dir);
Chris Masone02119d2008-09-05 16:13:11 -04004017 inode->i_ctime = dir->i_mtime = dir->i_ctime = CURRENT_TIME;
Tsutomu Itohb9959292012-06-25 21:25:22 -06004018 ret = btrfs_update_inode(trans, root, dir);
Chris Masone02119d2008-09-05 16:13:11 -04004019out:
Chris Mason39279cc2007-06-12 06:35:45 -04004020 return ret;
4021}
4022
Al Viro92986792011-03-04 17:14:37 +00004023int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
4024 struct btrfs_root *root,
4025 struct inode *dir, struct inode *inode,
4026 const char *name, int name_len)
4027{
4028 int ret;
4029 ret = __btrfs_unlink_inode(trans, root, dir, inode, name, name_len);
4030 if (!ret) {
Zach Brown8b558c52013-10-16 12:10:34 -07004031 drop_nlink(inode);
Al Viro92986792011-03-04 17:14:37 +00004032 ret = btrfs_update_inode(trans, root, inode);
4033 }
4034 return ret;
4035}
Yan, Zhenga22285a2010-05-16 10:48:46 -04004036
4037/*
4038 * helper to start transaction for unlink and rmdir.
4039 *
Josef Bacikd52be812013-05-29 14:54:47 -04004040 * unlink and rmdir are special in btrfs, they do not always free space, so
4041 * if we cannot make our reservations the normal way try and see if there is
4042 * plenty of slack room in the global reserve to migrate, otherwise we cannot
4043 * allow the unlink to occur.
Yan, Zhenga22285a2010-05-16 10:48:46 -04004044 */
Josef Bacikd52be812013-05-29 14:54:47 -04004045static struct btrfs_trans_handle *__unlink_start_trans(struct inode *dir)
Yan, Zhenga22285a2010-05-16 10:48:46 -04004046{
4047 struct btrfs_trans_handle *trans;
4048 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004049 int ret;
4050
Josef Bacike70bea52011-10-11 14:18:24 -04004051 /*
4052 * 1 for the possible orphan item
4053 * 1 for the dir item
4054 * 1 for the dir index
4055 * 1 for the inode ref
Josef Bacike70bea52011-10-11 14:18:24 -04004056 * 1 for the inode
4057 */
Josef Bacik6e137ed2013-03-26 15:26:55 -04004058 trans = btrfs_start_transaction(root, 5);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004059 if (!IS_ERR(trans) || PTR_ERR(trans) != -ENOSPC)
4060 return trans;
4061
Josef Bacikd52be812013-05-29 14:54:47 -04004062 if (PTR_ERR(trans) == -ENOSPC) {
4063 u64 num_bytes = btrfs_calc_trans_metadata_size(root, 5);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004064
Josef Bacikd52be812013-05-29 14:54:47 -04004065 trans = btrfs_start_transaction(root, 0);
4066 if (IS_ERR(trans))
4067 return trans;
4068 ret = btrfs_cond_migrate_bytes(root->fs_info,
4069 &root->fs_info->trans_block_rsv,
4070 num_bytes, 5);
4071 if (ret) {
4072 btrfs_end_transaction(trans, root);
4073 return ERR_PTR(ret);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004074 }
Josef Bacik5a77d762011-11-01 14:32:23 -04004075 trans->block_rsv = &root->fs_info->trans_block_rsv;
Josef Bacikd52be812013-05-29 14:54:47 -04004076 trans->bytes_reserved = num_bytes;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004077 }
Josef Bacikd52be812013-05-29 14:54:47 -04004078 return trans;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004079}
4080
Chris Mason39279cc2007-06-12 06:35:45 -04004081static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
4082{
Yan, Zhenga22285a2010-05-16 10:48:46 -04004083 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004084 struct btrfs_trans_handle *trans;
David Howells2b0143b2015-03-17 22:25:59 +00004085 struct inode *inode = d_inode(dentry);
Chris Mason39279cc2007-06-12 06:35:45 -04004086 int ret;
4087
Josef Bacikd52be812013-05-29 14:54:47 -04004088 trans = __unlink_start_trans(dir);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004089 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05004090 return PTR_ERR(trans);
Chris Mason5f39d392007-10-15 16:14:19 -04004091
David Howells2b0143b2015-03-17 22:25:59 +00004092 btrfs_record_unlink_dir(trans, dir, d_inode(dentry), 0);
Chris Mason12fcfd22009-03-24 10:24:20 -04004093
David Howells2b0143b2015-03-17 22:25:59 +00004094 ret = btrfs_unlink_inode(trans, root, dir, d_inode(dentry),
Chris Masone02119d2008-09-05 16:13:11 -04004095 dentry->d_name.name, dentry->d_name.len);
Tsutomu Itohb5324022011-07-19 07:27:20 +00004096 if (ret)
4097 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04004098
Yan, Zhenga22285a2010-05-16 10:48:46 -04004099 if (inode->i_nlink == 0) {
Josef Bacik7b128762008-07-24 12:17:14 -04004100 ret = btrfs_orphan_add(trans, inode);
Tsutomu Itohb5324022011-07-19 07:27:20 +00004101 if (ret)
4102 goto out;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004103 }
Josef Bacik7b128762008-07-24 12:17:14 -04004104
Tsutomu Itohb5324022011-07-19 07:27:20 +00004105out:
Josef Bacikd52be812013-05-29 14:54:47 -04004106 btrfs_end_transaction(trans, root);
Liu Bob53d3f52012-11-14 14:34:34 +00004107 btrfs_btree_balance_dirty(root);
Chris Mason39279cc2007-06-12 06:35:45 -04004108 return ret;
4109}
4110
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004111int btrfs_unlink_subvol(struct btrfs_trans_handle *trans,
4112 struct btrfs_root *root,
4113 struct inode *dir, u64 objectid,
4114 const char *name, int name_len)
4115{
4116 struct btrfs_path *path;
4117 struct extent_buffer *leaf;
4118 struct btrfs_dir_item *di;
4119 struct btrfs_key key;
4120 u64 index;
4121 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08004122 u64 dir_ino = btrfs_ino(dir);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004123
4124 path = btrfs_alloc_path();
4125 if (!path)
4126 return -ENOMEM;
4127
Li Zefan33345d012011-04-20 10:31:50 +08004128 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004129 name, name_len, -1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004130 if (IS_ERR_OR_NULL(di)) {
4131 if (!di)
4132 ret = -ENOENT;
4133 else
4134 ret = PTR_ERR(di);
4135 goto out;
4136 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004137
4138 leaf = path->nodes[0];
4139 btrfs_dir_item_key_to_cpu(leaf, di, &key);
4140 WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
4141 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004142 if (ret) {
4143 btrfs_abort_transaction(trans, root, ret);
4144 goto out;
4145 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004146 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004147
4148 ret = btrfs_del_root_ref(trans, root->fs_info->tree_root,
4149 objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08004150 dir_ino, &index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004151 if (ret < 0) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004152 if (ret != -ENOENT) {
4153 btrfs_abort_transaction(trans, root, ret);
4154 goto out;
4155 }
Li Zefan33345d012011-04-20 10:31:50 +08004156 di = btrfs_search_dir_index_item(root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004157 name, name_len);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004158 if (IS_ERR_OR_NULL(di)) {
4159 if (!di)
4160 ret = -ENOENT;
4161 else
4162 ret = PTR_ERR(di);
4163 btrfs_abort_transaction(trans, root, ret);
4164 goto out;
4165 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004166
4167 leaf = path->nodes[0];
4168 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02004169 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004170 index = key.offset;
4171 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004172 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004173
Miao Xie16cdcec2011-04-22 18:12:22 +08004174 ret = btrfs_delete_delayed_dir_index(trans, root, dir, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004175 if (ret) {
4176 btrfs_abort_transaction(trans, root, ret);
4177 goto out;
4178 }
Miao Xie16cdcec2011-04-22 18:12:22 +08004179
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004180 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04004181 inode_inc_iversion(dir);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004182 dir->i_mtime = dir->i_ctime = CURRENT_TIME;
Josef Bacik5a24e842012-08-08 10:12:59 -06004183 ret = btrfs_update_inode_fallback(trans, root, dir);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004184 if (ret)
4185 btrfs_abort_transaction(trans, root, ret);
4186out:
Josef Bacik71d7aed2011-06-14 14:24:32 -04004187 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004188 return ret;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004189}
4190
Chris Mason39279cc2007-06-12 06:35:45 -04004191static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
4192{
David Howells2b0143b2015-03-17 22:25:59 +00004193 struct inode *inode = d_inode(dentry);
Chris Mason1832a6d2007-12-21 16:27:21 -05004194 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004195 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004196 struct btrfs_trans_handle *trans;
Chris Mason39279cc2007-06-12 06:35:45 -04004197
David Sterbab3ae2442012-09-13 16:04:34 -06004198 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Yan134d4512007-10-25 15:49:25 -04004199 return -ENOTEMPTY;
David Sterbab3ae2442012-09-13 16:04:34 -06004200 if (btrfs_ino(inode) == BTRFS_FIRST_FREE_OBJECTID)
4201 return -EPERM;
Yan134d4512007-10-25 15:49:25 -04004202
Josef Bacikd52be812013-05-29 14:54:47 -04004203 trans = __unlink_start_trans(dir);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004204 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05004205 return PTR_ERR(trans);
Josef Bacik5df6a9f2009-11-10 21:23:48 -05004206
Li Zefan33345d012011-04-20 10:31:50 +08004207 if (unlikely(btrfs_ino(inode) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004208 err = btrfs_unlink_subvol(trans, root, dir,
4209 BTRFS_I(inode)->location.objectid,
4210 dentry->d_name.name,
4211 dentry->d_name.len);
4212 goto out;
4213 }
4214
Josef Bacik7b128762008-07-24 12:17:14 -04004215 err = btrfs_orphan_add(trans, inode);
4216 if (err)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004217 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04004218
Chris Mason39279cc2007-06-12 06:35:45 -04004219 /* now the directory is empty */
David Howells2b0143b2015-03-17 22:25:59 +00004220 err = btrfs_unlink_inode(trans, root, dir, d_inode(dentry),
Chris Masone02119d2008-09-05 16:13:11 -04004221 dentry->d_name.name, dentry->d_name.len);
Chris Masond3977122009-01-05 21:25:51 -05004222 if (!err)
Chris Masondbe674a2008-07-17 12:54:05 -04004223 btrfs_i_size_write(inode, 0);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004224out:
Josef Bacikd52be812013-05-29 14:54:47 -04004225 btrfs_end_transaction(trans, root);
Liu Bob53d3f52012-11-14 14:34:34 +00004226 btrfs_btree_balance_dirty(root);
Chris Mason39544012007-12-12 14:38:19 -05004227
Chris Mason39279cc2007-06-12 06:35:45 -04004228 return err;
4229}
4230
Chris Mason28f75a02015-02-04 06:59:29 -08004231static int truncate_space_check(struct btrfs_trans_handle *trans,
4232 struct btrfs_root *root,
4233 u64 bytes_deleted)
4234{
4235 int ret;
4236
4237 bytes_deleted = btrfs_csum_bytes_to_leaves(root, bytes_deleted);
4238 ret = btrfs_block_rsv_add(root, &root->fs_info->trans_block_rsv,
4239 bytes_deleted, BTRFS_RESERVE_NO_FLUSH);
4240 if (!ret)
4241 trans->bytes_reserved += bytes_deleted;
4242 return ret;
4243
4244}
4245
Filipe Manana0305cd52015-10-16 12:34:25 +01004246static int truncate_inline_extent(struct inode *inode,
4247 struct btrfs_path *path,
4248 struct btrfs_key *found_key,
4249 const u64 item_end,
4250 const u64 new_size)
4251{
4252 struct extent_buffer *leaf = path->nodes[0];
4253 int slot = path->slots[0];
4254 struct btrfs_file_extent_item *fi;
4255 u32 size = (u32)(new_size - found_key->offset);
4256 struct btrfs_root *root = BTRFS_I(inode)->root;
4257
4258 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
4259
4260 if (btrfs_file_extent_compression(leaf, fi) != BTRFS_COMPRESS_NONE) {
4261 loff_t offset = new_size;
4262 loff_t page_end = ALIGN(offset, PAGE_CACHE_SIZE);
4263
4264 /*
4265 * Zero out the remaining of the last page of our inline extent,
4266 * instead of directly truncating our inline extent here - that
4267 * would be much more complex (decompressing all the data, then
4268 * compressing the truncated data, which might be bigger than
4269 * the size of the inline extent, resize the extent, etc).
4270 * We release the path because to get the page we might need to
4271 * read the extent item from disk (data not in the page cache).
4272 */
4273 btrfs_release_path(path);
4274 return btrfs_truncate_page(inode, offset, page_end - offset, 0);
4275 }
4276
4277 btrfs_set_file_extent_ram_bytes(leaf, fi, size);
4278 size = btrfs_file_extent_calc_inline_size(size);
4279 btrfs_truncate_item(root, path, size, 1);
4280
4281 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state))
4282 inode_sub_bytes(inode, item_end + 1 - new_size);
4283
4284 return 0;
4285}
4286
Chris Mason323ac952008-10-01 19:05:46 -04004287/*
Chris Mason39279cc2007-06-12 06:35:45 -04004288 * this can truncate away extent items, csum items and directory items.
4289 * It starts at a high offset and removes keys until it can't find
Chris Masond352ac62008-09-29 15:18:18 -04004290 * any higher than new_size
Chris Mason39279cc2007-06-12 06:35:45 -04004291 *
4292 * csum items that cross the new i_size are truncated to the new size
4293 * as well.
Josef Bacik7b128762008-07-24 12:17:14 -04004294 *
4295 * min_type is the minimum key type to truncate down to. If set to 0, this
4296 * will kill all the items on this inode, including the INODE_ITEM_KEY.
Chris Mason39279cc2007-06-12 06:35:45 -04004297 */
Yan, Zheng80825102009-11-12 09:35:36 +00004298int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
4299 struct btrfs_root *root,
4300 struct inode *inode,
4301 u64 new_size, u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04004302{
Chris Mason39279cc2007-06-12 06:35:45 -04004303 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04004304 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04004305 struct btrfs_file_extent_item *fi;
Yan, Zheng80825102009-11-12 09:35:36 +00004306 struct btrfs_key key;
4307 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04004308 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04004309 u64 extent_num_bytes = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004310 u64 extent_offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004311 u64 item_end = 0;
Filipe Mananac1aa4572015-06-20 18:20:09 +01004312 u64 last_size = new_size;
Yan, Zheng80825102009-11-12 09:35:36 +00004313 u32 found_type = (u8)-1;
Chris Mason39279cc2007-06-12 06:35:45 -04004314 int found_extent;
4315 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05004316 int pending_del_nr = 0;
4317 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04004318 int extent_type = -1;
Yan, Zheng80825102009-11-12 09:35:36 +00004319 int ret;
4320 int err = 0;
Li Zefan33345d012011-04-20 10:31:50 +08004321 u64 ino = btrfs_ino(inode);
Chris Mason28ed1342014-12-17 09:41:04 -08004322 u64 bytes_deleted = 0;
Josef Bacik12621332015-02-03 07:50:16 -08004323 bool be_nice = 0;
4324 bool should_throttle = 0;
Chris Mason28f75a02015-02-04 06:59:29 -08004325 bool should_end = 0;
Yan, Zheng80825102009-11-12 09:35:36 +00004326
4327 BUG_ON(new_size > 0 && min_type != BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04004328
Chris Mason28ed1342014-12-17 09:41:04 -08004329 /*
4330 * for non-free space inodes and ref cows, we want to back off from
4331 * time to time
4332 */
4333 if (!btrfs_is_free_space_inode(inode) &&
4334 test_bit(BTRFS_ROOT_REF_COWS, &root->state))
4335 be_nice = 1;
4336
Mark Fasheh0eb0e192011-07-12 16:44:10 -07004337 path = btrfs_alloc_path();
4338 if (!path)
4339 return -ENOMEM;
4340 path->reada = -1;
4341
Josef Bacik5dc562c2012-08-17 13:14:17 -04004342 /*
4343 * We want to drop from the next block forward in case this new size is
4344 * not block aligned since we will be keeping the last block of the
4345 * extent just the way it is.
4346 */
Miao Xie27cdeb72014-04-02 19:51:05 +08004347 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) ||
4348 root == root->fs_info->tree_root)
Qu Wenruofda28322013-02-26 08:10:22 +00004349 btrfs_drop_extent_cache(inode, ALIGN(new_size,
4350 root->sectorsize), (u64)-1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00004351
Miao Xie16cdcec2011-04-22 18:12:22 +08004352 /*
4353 * This function is also used to drop the items in the log tree before
4354 * we relog the inode, so if root != BTRFS_I(inode)->root, it means
4355 * it is used to drop the loged items. So we shouldn't kill the delayed
4356 * items.
4357 */
4358 if (min_type == 0 && root == BTRFS_I(inode)->root)
4359 btrfs_kill_delayed_inode_items(inode);
4360
Li Zefan33345d012011-04-20 10:31:50 +08004361 key.objectid = ino;
Chris Mason39279cc2007-06-12 06:35:45 -04004362 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04004363 key.type = (u8)-1;
4364
Chris Mason85e21ba2008-01-29 15:11:36 -05004365search_again:
Chris Mason28ed1342014-12-17 09:41:04 -08004366 /*
4367 * with a 16K leaf size and 128MB extents, you can actually queue
4368 * up a huge file in a single leaf. Most of the time that
4369 * bytes_deleted is > 0, it will be huge by the time we get here
4370 */
4371 if (be_nice && bytes_deleted > 32 * 1024 * 1024) {
4372 if (btrfs_should_end_transaction(trans, root)) {
4373 err = -EAGAIN;
4374 goto error;
4375 }
4376 }
4377
4378
Chris Masonb9473432009-03-13 11:00:37 -04004379 path->leave_spinning = 1;
Chris Mason85e21ba2008-01-29 15:11:36 -05004380 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Yan, Zheng80825102009-11-12 09:35:36 +00004381 if (ret < 0) {
4382 err = ret;
4383 goto out;
4384 }
Chris Masond3977122009-01-05 21:25:51 -05004385
Chris Mason85e21ba2008-01-29 15:11:36 -05004386 if (ret > 0) {
Chris Masone02119d2008-09-05 16:13:11 -04004387 /* there are no items in the tree for us to truncate, we're
4388 * done
4389 */
Yan, Zheng80825102009-11-12 09:35:36 +00004390 if (path->slots[0] == 0)
4391 goto out;
Chris Mason85e21ba2008-01-29 15:11:36 -05004392 path->slots[0]--;
4393 }
4394
Chris Masond3977122009-01-05 21:25:51 -05004395 while (1) {
Chris Mason39279cc2007-06-12 06:35:45 -04004396 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04004397 leaf = path->nodes[0];
4398 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
David Sterba962a2982014-06-04 18:41:45 +02004399 found_type = found_key.type;
Chris Mason39279cc2007-06-12 06:35:45 -04004400
Li Zefan33345d012011-04-20 10:31:50 +08004401 if (found_key.objectid != ino)
Chris Mason39279cc2007-06-12 06:35:45 -04004402 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004403
Chris Mason85e21ba2008-01-29 15:11:36 -05004404 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04004405 break;
4406
Chris Mason5f39d392007-10-15 16:14:19 -04004407 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04004408 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04004409 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04004410 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04004411 extent_type = btrfs_file_extent_type(leaf, fi);
4412 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04004413 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04004414 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -04004415 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason179e29e2007-11-01 11:28:41 -04004416 item_end += btrfs_file_extent_inline_len(leaf,
Chris Mason514ac8a2014-01-03 21:07:00 -08004417 path->slots[0], fi);
Chris Mason39279cc2007-06-12 06:35:45 -04004418 }
Yan008630c2007-11-07 13:31:09 -05004419 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04004420 }
Yan, Zheng80825102009-11-12 09:35:36 +00004421 if (found_type > min_type) {
Chris Mason39279cc2007-06-12 06:35:45 -04004422 del_item = 1;
Yan, Zheng80825102009-11-12 09:35:36 +00004423 } else {
4424 if (item_end < new_size)
4425 break;
4426 if (found_key.offset >= new_size)
4427 del_item = 1;
4428 else
4429 del_item = 0;
4430 }
Chris Mason39279cc2007-06-12 06:35:45 -04004431 found_extent = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004432 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04004433 if (found_type != BTRFS_EXTENT_DATA_KEY)
4434 goto delete;
4435
Josef Bacik7f4f6e02013-08-29 16:43:28 -04004436 if (del_item)
4437 last_size = found_key.offset;
4438 else
4439 last_size = new_size;
4440
Chris Mason179e29e2007-11-01 11:28:41 -04004441 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04004442 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04004443 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Miao Xief70a9a6b2012-01-12 19:10:12 -05004444 if (!del_item) {
Chris Masondb945352007-10-15 16:15:53 -04004445 u64 orig_num_bytes =
4446 btrfs_file_extent_num_bytes(leaf, fi);
Qu Wenruofda28322013-02-26 08:10:22 +00004447 extent_num_bytes = ALIGN(new_size -
4448 found_key.offset,
4449 root->sectorsize);
Chris Masondb945352007-10-15 16:15:53 -04004450 btrfs_set_file_extent_num_bytes(leaf, fi,
4451 extent_num_bytes);
4452 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05004453 extent_num_bytes);
Miao Xie27cdeb72014-04-02 19:51:05 +08004454 if (test_bit(BTRFS_ROOT_REF_COWS,
4455 &root->state) &&
4456 extent_start != 0)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004457 inode_sub_bytes(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04004458 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04004459 } else {
Chris Masondb945352007-10-15 16:15:53 -04004460 extent_num_bytes =
4461 btrfs_file_extent_disk_num_bytes(leaf,
4462 fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004463 extent_offset = found_key.offset -
4464 btrfs_file_extent_offset(leaf, fi);
4465
Chris Mason39279cc2007-06-12 06:35:45 -04004466 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05004467 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04004468 if (extent_start != 0) {
4469 found_extent = 1;
Miao Xie27cdeb72014-04-02 19:51:05 +08004470 if (test_bit(BTRFS_ROOT_REF_COWS,
4471 &root->state))
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004472 inode_sub_bytes(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04004473 }
4474 }
Chris Mason90692182008-02-08 13:49:28 -05004475 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04004476 /*
4477 * we can't truncate inline items that have had
4478 * special encodings
4479 */
4480 if (!del_item &&
Chris Masonc8b97812008-10-29 14:49:59 -04004481 btrfs_file_extent_encryption(leaf, fi) == 0 &&
4482 btrfs_file_extent_other_encoding(leaf, fi) == 0) {
Chris Mason514ac8a2014-01-03 21:07:00 -08004483
4484 /*
Filipe Manana0305cd52015-10-16 12:34:25 +01004485 * Need to release path in order to truncate a
4486 * compressed extent. So delete any accumulated
4487 * extent items so far.
Chris Mason514ac8a2014-01-03 21:07:00 -08004488 */
Filipe Manana0305cd52015-10-16 12:34:25 +01004489 if (btrfs_file_extent_compression(leaf, fi) !=
4490 BTRFS_COMPRESS_NONE && pending_del_nr) {
4491 err = btrfs_del_items(trans, root, path,
4492 pending_del_slot,
4493 pending_del_nr);
4494 if (err) {
4495 btrfs_abort_transaction(trans,
4496 root,
4497 err);
4498 goto error;
4499 }
4500 pending_del_nr = 0;
4501 }
4502
4503 err = truncate_inline_extent(inode, path,
4504 &found_key,
4505 item_end,
4506 new_size);
4507 if (err) {
4508 btrfs_abort_transaction(trans,
4509 root, err);
4510 goto error;
4511 }
Miao Xie27cdeb72014-04-02 19:51:05 +08004512 } else if (test_bit(BTRFS_ROOT_REF_COWS,
4513 &root->state)) {
Filipe Manana0305cd52015-10-16 12:34:25 +01004514 inode_sub_bytes(inode, item_end + 1 - new_size);
Chris Mason90692182008-02-08 13:49:28 -05004515 }
Chris Mason39279cc2007-06-12 06:35:45 -04004516 }
Chris Mason179e29e2007-11-01 11:28:41 -04004517delete:
Chris Mason39279cc2007-06-12 06:35:45 -04004518 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05004519 if (!pending_del_nr) {
4520 /* no pending yet, add ourselves */
4521 pending_del_slot = path->slots[0];
4522 pending_del_nr = 1;
4523 } else if (pending_del_nr &&
4524 path->slots[0] + 1 == pending_del_slot) {
4525 /* hop on the pending chunk */
4526 pending_del_nr++;
4527 pending_del_slot = path->slots[0];
4528 } else {
Chris Masond3977122009-01-05 21:25:51 -05004529 BUG();
Chris Mason85e21ba2008-01-29 15:11:36 -05004530 }
Chris Mason39279cc2007-06-12 06:35:45 -04004531 } else {
4532 break;
4533 }
Chris Mason28f75a02015-02-04 06:59:29 -08004534 should_throttle = 0;
4535
Miao Xie27cdeb72014-04-02 19:51:05 +08004536 if (found_extent &&
4537 (test_bit(BTRFS_ROOT_REF_COWS, &root->state) ||
4538 root == root->fs_info->tree_root)) {
Chris Masonb9473432009-03-13 11:00:37 -04004539 btrfs_set_path_blocking(path);
Chris Mason28ed1342014-12-17 09:41:04 -08004540 bytes_deleted += extent_num_bytes;
Chris Mason39279cc2007-06-12 06:35:45 -04004541 ret = btrfs_free_extent(trans, root, extent_start,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004542 extent_num_bytes, 0,
4543 btrfs_header_owner(leaf),
Arne Jansen66d7e7f2011-09-12 15:26:38 +02004544 ino, extent_offset, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04004545 BUG_ON(ret);
Josef Bacik12621332015-02-03 07:50:16 -08004546 if (btrfs_should_throttle_delayed_refs(trans, root))
Chris Mason28ed1342014-12-17 09:41:04 -08004547 btrfs_async_run_delayed_refs(root,
4548 trans->delayed_ref_updates * 2, 0);
Chris Mason28f75a02015-02-04 06:59:29 -08004549 if (be_nice) {
4550 if (truncate_space_check(trans, root,
4551 extent_num_bytes)) {
4552 should_end = 1;
4553 }
4554 if (btrfs_should_throttle_delayed_refs(trans,
4555 root)) {
4556 should_throttle = 1;
4557 }
4558 }
Chris Mason39279cc2007-06-12 06:35:45 -04004559 }
Chris Mason85e21ba2008-01-29 15:11:36 -05004560
Yan, Zheng80825102009-11-12 09:35:36 +00004561 if (found_type == BTRFS_INODE_ITEM_KEY)
4562 break;
4563
4564 if (path->slots[0] == 0 ||
Josef Bacik12621332015-02-03 07:50:16 -08004565 path->slots[0] != pending_del_slot ||
Chris Mason28f75a02015-02-04 06:59:29 -08004566 should_throttle || should_end) {
Yan, Zheng80825102009-11-12 09:35:36 +00004567 if (pending_del_nr) {
4568 ret = btrfs_del_items(trans, root, path,
4569 pending_del_slot,
4570 pending_del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004571 if (ret) {
4572 btrfs_abort_transaction(trans,
4573 root, ret);
4574 goto error;
4575 }
Yan, Zheng80825102009-11-12 09:35:36 +00004576 pending_del_nr = 0;
4577 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004578 btrfs_release_path(path);
Chris Mason28f75a02015-02-04 06:59:29 -08004579 if (should_throttle) {
Josef Bacik12621332015-02-03 07:50:16 -08004580 unsigned long updates = trans->delayed_ref_updates;
4581 if (updates) {
4582 trans->delayed_ref_updates = 0;
4583 ret = btrfs_run_delayed_refs(trans, root, updates * 2);
4584 if (ret && !err)
4585 err = ret;
4586 }
4587 }
Chris Mason28f75a02015-02-04 06:59:29 -08004588 /*
4589 * if we failed to refill our space rsv, bail out
4590 * and let the transaction restart
4591 */
4592 if (should_end) {
4593 err = -EAGAIN;
4594 goto error;
4595 }
Chris Mason85e21ba2008-01-29 15:11:36 -05004596 goto search_again;
Yan, Zheng80825102009-11-12 09:35:36 +00004597 } else {
4598 path->slots[0]--;
Chris Mason85e21ba2008-01-29 15:11:36 -05004599 }
Chris Mason39279cc2007-06-12 06:35:45 -04004600 }
Yan, Zheng80825102009-11-12 09:35:36 +00004601out:
Chris Mason85e21ba2008-01-29 15:11:36 -05004602 if (pending_del_nr) {
4603 ret = btrfs_del_items(trans, root, path, pending_del_slot,
4604 pending_del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004605 if (ret)
4606 btrfs_abort_transaction(trans, root, ret);
Chris Mason85e21ba2008-01-29 15:11:36 -05004607 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004608error:
Filipe Mananac1aa4572015-06-20 18:20:09 +01004609 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID)
Josef Bacik7f4f6e02013-08-29 16:43:28 -04004610 btrfs_ordered_update_i_size(inode, last_size, NULL);
Chris Mason28ed1342014-12-17 09:41:04 -08004611
Chris Mason39279cc2007-06-12 06:35:45 -04004612 btrfs_free_path(path);
Chris Mason28ed1342014-12-17 09:41:04 -08004613
Chris Mason28f75a02015-02-04 06:59:29 -08004614 if (be_nice && bytes_deleted > 32 * 1024 * 1024) {
Chris Mason28ed1342014-12-17 09:41:04 -08004615 unsigned long updates = trans->delayed_ref_updates;
4616 if (updates) {
4617 trans->delayed_ref_updates = 0;
4618 ret = btrfs_run_delayed_refs(trans, root, updates * 2);
4619 if (ret && !err)
4620 err = ret;
4621 }
4622 }
Yan, Zheng80825102009-11-12 09:35:36 +00004623 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04004624}
4625
Chris Masona52d9a82007-08-27 16:49:44 -04004626/*
Josef Bacik2aaa6652012-08-29 14:27:18 -04004627 * btrfs_truncate_page - read, zero a chunk and write a page
4628 * @inode - inode that we're zeroing
4629 * @from - the offset to start zeroing
4630 * @len - the length to zero, 0 to zero the entire range respective to the
4631 * offset
4632 * @front - zero up to the offset instead of from the offset on
4633 *
4634 * This will find the page for the "from" offset and cow the page and zero the
4635 * part we want to zero. This is used with truncate and hole punching.
Chris Masona52d9a82007-08-27 16:49:44 -04004636 */
Josef Bacik2aaa6652012-08-29 14:27:18 -04004637int btrfs_truncate_page(struct inode *inode, loff_t from, loff_t len,
4638 int front)
Chris Masona52d9a82007-08-27 16:49:44 -04004639{
Josef Bacik2aaa6652012-08-29 14:27:18 -04004640 struct address_space *mapping = inode->i_mapping;
Chris Masondb945352007-10-15 16:15:53 -04004641 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004642 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
4643 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004644 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004645 char *kaddr;
Chris Masondb945352007-10-15 16:15:53 -04004646 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -04004647 pgoff_t index = from >> PAGE_CACHE_SHIFT;
4648 unsigned offset = from & (PAGE_CACHE_SIZE-1);
4649 struct page *page;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04004650 gfp_t mask = btrfs_alloc_write_mask(mapping);
Chris Masona52d9a82007-08-27 16:49:44 -04004651 int ret = 0;
4652 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004653 u64 page_end;
Chris Masona52d9a82007-08-27 16:49:44 -04004654
Josef Bacik2aaa6652012-08-29 14:27:18 -04004655 if ((offset & (blocksize - 1)) == 0 &&
4656 (!len || ((len & (blocksize - 1)) == 0)))
Chris Masona52d9a82007-08-27 16:49:44 -04004657 goto out;
Qu Wenruo7cf5b972015-09-08 17:25:55 +08004658 ret = btrfs_delalloc_reserve_space(inode,
Qu Wenruodf480632015-09-08 17:25:54 +08004659 round_down(from, PAGE_CACHE_SIZE), PAGE_CACHE_SIZE);
Josef Bacik5d5e1032009-10-13 16:46:49 -04004660 if (ret)
4661 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04004662
Chris Mason211c17f2008-05-15 09:13:45 -04004663again:
Josef Bacik3b16a4e2011-09-21 15:05:58 -04004664 page = find_or_create_page(mapping, index, mask);
Josef Bacik5d5e1032009-10-13 16:46:49 -04004665 if (!page) {
Qu Wenruo7cf5b972015-09-08 17:25:55 +08004666 btrfs_delalloc_release_space(inode,
Qu Wenruodf480632015-09-08 17:25:54 +08004667 round_down(from, PAGE_CACHE_SIZE),
4668 PAGE_CACHE_SIZE);
Miao Xieac6a2b32012-12-05 10:56:13 +00004669 ret = -ENOMEM;
Chris Masona52d9a82007-08-27 16:49:44 -04004670 goto out;
Josef Bacik5d5e1032009-10-13 16:46:49 -04004671 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004672
4673 page_start = page_offset(page);
4674 page_end = page_start + PAGE_CACHE_SIZE - 1;
4675
Chris Masona52d9a82007-08-27 16:49:44 -04004676 if (!PageUptodate(page)) {
4677 ret = btrfs_readpage(NULL, page);
4678 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04004679 if (page->mapping != mapping) {
4680 unlock_page(page);
4681 page_cache_release(page);
4682 goto again;
4683 }
Chris Masona52d9a82007-08-27 16:49:44 -04004684 if (!PageUptodate(page)) {
4685 ret = -EIO;
Chris Mason89642222008-07-24 09:41:53 -04004686 goto out_unlock;
Chris Masona52d9a82007-08-27 16:49:44 -04004687 }
4688 }
Chris Mason211c17f2008-05-15 09:13:45 -04004689 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004690
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004691 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004692 set_page_extent_mapped(page);
4693
4694 ordered = btrfs_lookup_ordered_extent(inode, page_start);
4695 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00004696 unlock_extent_cached(io_tree, page_start, page_end,
4697 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004698 unlock_page(page);
4699 page_cache_release(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04004700 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004701 btrfs_put_ordered_extent(ordered);
4702 goto again;
4703 }
4704
Josef Bacik2ac55d42010-02-03 19:33:23 +00004705 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Liu Bo9e8a4a82012-09-05 19:10:51 -06004706 EXTENT_DIRTY | EXTENT_DELALLOC |
4707 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
Josef Bacik2ac55d42010-02-03 19:33:23 +00004708 0, 0, &cached_state, GFP_NOFS);
Josef Bacik5d5e1032009-10-13 16:46:49 -04004709
Josef Bacik2ac55d42010-02-03 19:33:23 +00004710 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
4711 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004712 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00004713 unlock_extent_cached(io_tree, page_start, page_end,
4714 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004715 goto out_unlock;
4716 }
4717
Chris Masone6dcd2d2008-07-17 12:53:50 -04004718 if (offset != PAGE_CACHE_SIZE) {
Josef Bacik2aaa6652012-08-29 14:27:18 -04004719 if (!len)
4720 len = PAGE_CACHE_SIZE - offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004721 kaddr = kmap(page);
Josef Bacik2aaa6652012-08-29 14:27:18 -04004722 if (front)
4723 memset(kaddr, 0, offset);
4724 else
4725 memset(kaddr + offset, 0, len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004726 flush_dcache_page(page);
4727 kunmap(page);
4728 }
Chris Mason247e7432008-07-17 12:53:51 -04004729 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004730 set_page_dirty(page);
Josef Bacik2ac55d42010-02-03 19:33:23 +00004731 unlock_extent_cached(io_tree, page_start, page_end, &cached_state,
4732 GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04004733
Chris Mason89642222008-07-24 09:41:53 -04004734out_unlock:
Josef Bacik5d5e1032009-10-13 16:46:49 -04004735 if (ret)
Qu Wenruo7cf5b972015-09-08 17:25:55 +08004736 btrfs_delalloc_release_space(inode, page_start,
4737 PAGE_CACHE_SIZE);
Chris Mason39279cc2007-06-12 06:35:45 -04004738 unlock_page(page);
4739 page_cache_release(page);
4740out:
4741 return ret;
4742}
4743
Josef Bacik16e75492013-10-22 12:18:51 -04004744static int maybe_insert_hole(struct btrfs_root *root, struct inode *inode,
4745 u64 offset, u64 len)
4746{
4747 struct btrfs_trans_handle *trans;
4748 int ret;
4749
4750 /*
4751 * Still need to make sure the inode looks like it's been updated so
4752 * that any holes get logged if we fsync.
4753 */
4754 if (btrfs_fs_incompat(root->fs_info, NO_HOLES)) {
4755 BTRFS_I(inode)->last_trans = root->fs_info->generation;
4756 BTRFS_I(inode)->last_sub_trans = root->log_transid;
4757 BTRFS_I(inode)->last_log_commit = root->last_log_commit;
4758 return 0;
4759 }
4760
4761 /*
4762 * 1 - for the one we're dropping
4763 * 1 - for the one we're adding
4764 * 1 - for updating the inode.
4765 */
4766 trans = btrfs_start_transaction(root, 3);
4767 if (IS_ERR(trans))
4768 return PTR_ERR(trans);
4769
4770 ret = btrfs_drop_extents(trans, root, inode, offset, offset + len, 1);
4771 if (ret) {
4772 btrfs_abort_transaction(trans, root, ret);
4773 btrfs_end_transaction(trans, root);
4774 return ret;
4775 }
4776
4777 ret = btrfs_insert_file_extent(trans, root, btrfs_ino(inode), offset,
4778 0, 0, len, 0, len, 0, 0, 0);
4779 if (ret)
4780 btrfs_abort_transaction(trans, root, ret);
4781 else
4782 btrfs_update_inode(trans, root, inode);
4783 btrfs_end_transaction(trans, root);
4784 return ret;
4785}
4786
Josef Bacik695a0d02011-03-04 15:46:53 -05004787/*
4788 * This function puts in dummy file extents for the area we're creating a hole
4789 * for. So if we are truncating this file to a larger size we need to insert
4790 * these file extents so that btrfs_get_extent will return a EXTENT_MAP_HOLE for
4791 * the range between oldsize and size
4792 */
Josef Bacika41ad392011-01-31 15:30:16 -05004793int btrfs_cont_expand(struct inode *inode, loff_t oldsize, loff_t size)
Yan Zheng9036c102008-10-30 14:19:41 -04004794{
Yan Zheng9036c102008-10-30 14:19:41 -04004795 struct btrfs_root *root = BTRFS_I(inode)->root;
4796 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004797 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004798 struct extent_state *cached_state = NULL;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004799 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Qu Wenruofda28322013-02-26 08:10:22 +00004800 u64 hole_start = ALIGN(oldsize, root->sectorsize);
4801 u64 block_end = ALIGN(size, root->sectorsize);
Yan Zheng9036c102008-10-30 14:19:41 -04004802 u64 last_byte;
4803 u64 cur_offset;
4804 u64 hole_size;
Josef Bacik9ed74f22009-09-11 16:12:44 -04004805 int err = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04004806
Josef Bacika71754f2013-06-17 17:14:39 -04004807 /*
4808 * If our size started in the middle of a page we need to zero out the
4809 * rest of the page before we expand the i_size, otherwise we could
4810 * expose stale data.
4811 */
4812 err = btrfs_truncate_page(inode, oldsize, 0, 0);
4813 if (err)
4814 return err;
4815
Yan Zheng9036c102008-10-30 14:19:41 -04004816 if (size <= hole_start)
4817 return 0;
4818
Yan Zheng9036c102008-10-30 14:19:41 -04004819 while (1) {
4820 struct btrfs_ordered_extent *ordered;
Miao Xiefa7c1492013-09-26 13:15:27 +08004821
Josef Bacik2ac55d42010-02-03 19:33:23 +00004822 lock_extent_bits(io_tree, hole_start, block_end - 1, 0,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004823 &cached_state);
Miao Xiefa7c1492013-09-26 13:15:27 +08004824 ordered = btrfs_lookup_ordered_range(inode, hole_start,
4825 block_end - hole_start);
Yan Zheng9036c102008-10-30 14:19:41 -04004826 if (!ordered)
4827 break;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004828 unlock_extent_cached(io_tree, hole_start, block_end - 1,
4829 &cached_state, GFP_NOFS);
Miao Xiefa7c1492013-09-26 13:15:27 +08004830 btrfs_start_ordered_extent(inode, ordered, 1);
Yan Zheng9036c102008-10-30 14:19:41 -04004831 btrfs_put_ordered_extent(ordered);
4832 }
4833
Yan Zheng9036c102008-10-30 14:19:41 -04004834 cur_offset = hole_start;
4835 while (1) {
4836 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
4837 block_end - cur_offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004838 if (IS_ERR(em)) {
4839 err = PTR_ERR(em);
Zach Brownf2767952013-01-08 19:37:58 +00004840 em = NULL;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004841 break;
4842 }
Yan Zheng9036c102008-10-30 14:19:41 -04004843 last_byte = min(extent_map_end(em), block_end);
Qu Wenruofda28322013-02-26 08:10:22 +00004844 last_byte = ALIGN(last_byte , root->sectorsize);
Yan, Zheng80825102009-11-12 09:35:36 +00004845 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
Josef Bacik5dc562c2012-08-17 13:14:17 -04004846 struct extent_map *hole_em;
Yan Zheng9036c102008-10-30 14:19:41 -04004847 hole_size = last_byte - cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00004848
Josef Bacik16e75492013-10-22 12:18:51 -04004849 err = maybe_insert_hole(root, inode, cur_offset,
4850 hole_size);
4851 if (err)
Chris Mason771ed682008-11-06 22:02:51 -05004852 break;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004853 btrfs_drop_extent_cache(inode, cur_offset,
4854 cur_offset + hole_size - 1, 0);
4855 hole_em = alloc_extent_map();
4856 if (!hole_em) {
4857 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
4858 &BTRFS_I(inode)->runtime_flags);
4859 goto next;
4860 }
4861 hole_em->start = cur_offset;
4862 hole_em->len = hole_size;
4863 hole_em->orig_start = cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00004864
Josef Bacik5dc562c2012-08-17 13:14:17 -04004865 hole_em->block_start = EXTENT_MAP_HOLE;
4866 hole_em->block_len = 0;
Josef Bacikb4939682012-12-03 10:31:19 -05004867 hole_em->orig_block_len = 0;
Josef Bacikcc95bef2013-04-04 14:31:27 -04004868 hole_em->ram_bytes = hole_size;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004869 hole_em->bdev = root->fs_info->fs_devices->latest_bdev;
4870 hole_em->compress_type = BTRFS_COMPRESS_NONE;
Josef Bacik16e75492013-10-22 12:18:51 -04004871 hole_em->generation = root->fs_info->generation;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004872
4873 while (1) {
4874 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04004875 err = add_extent_mapping(em_tree, hole_em, 1);
Josef Bacik5dc562c2012-08-17 13:14:17 -04004876 write_unlock(&em_tree->lock);
4877 if (err != -EEXIST)
4878 break;
4879 btrfs_drop_extent_cache(inode, cur_offset,
4880 cur_offset +
4881 hole_size - 1, 0);
4882 }
4883 free_extent_map(hole_em);
Yan Zheng9036c102008-10-30 14:19:41 -04004884 }
Josef Bacik16e75492013-10-22 12:18:51 -04004885next:
Yan Zheng9036c102008-10-30 14:19:41 -04004886 free_extent_map(em);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004887 em = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04004888 cur_offset = last_byte;
Yan, Zheng80825102009-11-12 09:35:36 +00004889 if (cur_offset >= block_end)
Yan Zheng9036c102008-10-30 14:19:41 -04004890 break;
4891 }
Yan, Zhenga22285a2010-05-16 10:48:46 -04004892 free_extent_map(em);
Josef Bacik2ac55d42010-02-03 19:33:23 +00004893 unlock_extent_cached(io_tree, hole_start, block_end - 1, &cached_state,
4894 GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04004895 return err;
4896}
4897
Filipe Manana9ea24bb2014-10-29 11:57:59 +00004898static int wait_snapshoting_atomic_t(atomic_t *a)
4899{
4900 schedule();
4901 return 0;
4902}
4903
4904static void wait_for_snapshot_creation(struct btrfs_root *root)
4905{
4906 while (true) {
4907 int ret;
4908
4909 ret = btrfs_start_write_no_snapshoting(root);
4910 if (ret)
4911 break;
4912 wait_on_atomic_t(&root->will_be_snapshoted,
4913 wait_snapshoting_atomic_t,
4914 TASK_UNINTERRUPTIBLE);
4915 }
4916}
4917
Eric Sandeen3972f262013-01-12 02:57:22 +00004918static int btrfs_setsize(struct inode *inode, struct iattr *attr)
Yan, Zheng80825102009-11-12 09:35:36 +00004919{
Miao Xief4a2f4c2011-12-14 20:12:01 -05004920 struct btrfs_root *root = BTRFS_I(inode)->root;
4921 struct btrfs_trans_handle *trans;
Josef Bacika41ad392011-01-31 15:30:16 -05004922 loff_t oldsize = i_size_read(inode);
Eric Sandeen3972f262013-01-12 02:57:22 +00004923 loff_t newsize = attr->ia_size;
4924 int mask = attr->ia_valid;
Yan, Zheng80825102009-11-12 09:35:36 +00004925 int ret;
4926
Eric Sandeen3972f262013-01-12 02:57:22 +00004927 /*
4928 * The regular truncate() case without ATTR_CTIME and ATTR_MTIME is a
4929 * special case where we need to update the times despite not having
4930 * these flags set. For all other operations the VFS set these flags
4931 * explicitly if it wants a timestamp update.
4932 */
Christoph Hellwigdff6efc2013-11-19 07:17:07 -08004933 if (newsize != oldsize) {
4934 inode_inc_iversion(inode);
4935 if (!(mask & (ATTR_CTIME | ATTR_MTIME)))
4936 inode->i_ctime = inode->i_mtime =
4937 current_fs_time(inode->i_sb);
4938 }
Eric Sandeen3972f262013-01-12 02:57:22 +00004939
Josef Bacika41ad392011-01-31 15:30:16 -05004940 if (newsize > oldsize) {
Kirill A. Shutemov7caef262013-09-12 15:13:56 -07004941 truncate_pagecache(inode, newsize);
Filipe Manana9ea24bb2014-10-29 11:57:59 +00004942 /*
4943 * Don't do an expanding truncate while snapshoting is ongoing.
4944 * This is to ensure the snapshot captures a fully consistent
4945 * state of this file - if the snapshot captures this expanding
4946 * truncation, it must capture all writes that happened before
4947 * this truncation.
4948 */
4949 wait_for_snapshot_creation(root);
Josef Bacika41ad392011-01-31 15:30:16 -05004950 ret = btrfs_cont_expand(inode, oldsize, newsize);
Filipe Manana9ea24bb2014-10-29 11:57:59 +00004951 if (ret) {
4952 btrfs_end_write_no_snapshoting(root);
Yan, Zheng80825102009-11-12 09:35:36 +00004953 return ret;
Filipe Manana9ea24bb2014-10-29 11:57:59 +00004954 }
Yan, Zheng80825102009-11-12 09:35:36 +00004955
Miao Xief4a2f4c2011-12-14 20:12:01 -05004956 trans = btrfs_start_transaction(root, 1);
Filipe Manana9ea24bb2014-10-29 11:57:59 +00004957 if (IS_ERR(trans)) {
4958 btrfs_end_write_no_snapshoting(root);
Miao Xief4a2f4c2011-12-14 20:12:01 -05004959 return PTR_ERR(trans);
Filipe Manana9ea24bb2014-10-29 11:57:59 +00004960 }
Miao Xief4a2f4c2011-12-14 20:12:01 -05004961
4962 i_size_write(inode, newsize);
4963 btrfs_ordered_update_i_size(inode, i_size_read(inode), NULL);
4964 ret = btrfs_update_inode(trans, root, inode);
Filipe Manana9ea24bb2014-10-29 11:57:59 +00004965 btrfs_end_write_no_snapshoting(root);
Josef Bacik7ad85bb2012-01-12 19:10:12 -05004966 btrfs_end_transaction(trans, root);
Josef Bacika41ad392011-01-31 15:30:16 -05004967 } else {
Yan, Zheng80825102009-11-12 09:35:36 +00004968
Josef Bacika41ad392011-01-31 15:30:16 -05004969 /*
4970 * We're truncating a file that used to have good data down to
4971 * zero. Make sure it gets into the ordered flush list so that
4972 * any new writes get down to disk quickly.
4973 */
4974 if (newsize == 0)
Josef Bacik72ac3c02012-05-23 14:13:11 -04004975 set_bit(BTRFS_INODE_ORDERED_DATA_CLOSE,
4976 &BTRFS_I(inode)->runtime_flags);
Yan, Zheng80825102009-11-12 09:35:36 +00004977
Josef Bacikf3fe8202013-01-07 17:03:21 -05004978 /*
4979 * 1 for the orphan item we're going to add
4980 * 1 for the orphan item deletion.
4981 */
4982 trans = btrfs_start_transaction(root, 2);
4983 if (IS_ERR(trans))
4984 return PTR_ERR(trans);
4985
4986 /*
4987 * We need to do this in case we fail at _any_ point during the
4988 * actual truncate. Once we do the truncate_setsize we could
4989 * invalidate pages which forces any outstanding ordered io to
4990 * be instantly completed which will give us extents that need
4991 * to be truncated. If we fail to get an orphan inode down we
4992 * could have left over extents that were never meant to live,
4993 * so we need to garuntee from this point on that everything
4994 * will be consistent.
4995 */
4996 ret = btrfs_orphan_add(trans, inode);
4997 btrfs_end_transaction(trans, root);
4998 if (ret)
4999 return ret;
5000
Josef Bacika41ad392011-01-31 15:30:16 -05005001 /* we don't support swapfiles, so vmtruncate shouldn't fail */
5002 truncate_setsize(inode, newsize);
Miao Xie2e60a512013-02-08 07:01:08 +00005003
5004 /* Disable nonlocked read DIO to avoid the end less truncate */
5005 btrfs_inode_block_unlocked_dio(inode);
5006 inode_dio_wait(inode);
5007 btrfs_inode_resume_unlocked_dio(inode);
5008
Josef Bacika41ad392011-01-31 15:30:16 -05005009 ret = btrfs_truncate(inode);
Josef Bacik7f4f6e02013-08-29 16:43:28 -04005010 if (ret && inode->i_nlink) {
5011 int err;
5012
5013 /*
5014 * failed to truncate, disk_i_size is only adjusted down
5015 * as we remove extents, so it should represent the true
5016 * size of the inode, so reset the in memory size and
5017 * delete our orphan entry.
5018 */
5019 trans = btrfs_join_transaction(root);
5020 if (IS_ERR(trans)) {
5021 btrfs_orphan_del(NULL, inode);
5022 return ret;
5023 }
5024 i_size_write(inode, BTRFS_I(inode)->disk_i_size);
5025 err = btrfs_orphan_del(trans, inode);
5026 if (err)
5027 btrfs_abort_transaction(trans, root, err);
5028 btrfs_end_transaction(trans, root);
5029 }
Yan, Zheng80825102009-11-12 09:35:36 +00005030 }
5031
Josef Bacika41ad392011-01-31 15:30:16 -05005032 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00005033}
5034
Chris Mason39279cc2007-06-12 06:35:45 -04005035static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
5036{
David Howells2b0143b2015-03-17 22:25:59 +00005037 struct inode *inode = d_inode(dentry);
Li Zefanb83cc962010-12-20 16:04:08 +08005038 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005039 int err;
5040
Li Zefanb83cc962010-12-20 16:04:08 +08005041 if (btrfs_root_readonly(root))
5042 return -EROFS;
5043
Chris Mason39279cc2007-06-12 06:35:45 -04005044 err = inode_change_ok(inode, attr);
5045 if (err)
5046 return err;
5047
Chris Mason5a3f23d2009-03-31 13:27:11 -04005048 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
Eric Sandeen3972f262013-01-12 02:57:22 +00005049 err = btrfs_setsize(inode, attr);
Yan, Zheng80825102009-11-12 09:35:36 +00005050 if (err)
5051 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04005052 }
Yan Zheng9036c102008-10-30 14:19:41 -04005053
Christoph Hellwig10257742010-06-04 11:30:02 +02005054 if (attr->ia_valid) {
5055 setattr_copy(inode, attr);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04005056 inode_inc_iversion(inode);
Josef Bacik22c44fe2011-11-30 10:45:38 -05005057 err = btrfs_dirty_inode(inode);
Josef Bacik33268ea2008-07-24 12:16:36 -04005058
Josef Bacik22c44fe2011-11-30 10:45:38 -05005059 if (!err && attr->ia_valid & ATTR_MODE)
Christoph Hellwig996a7102013-12-20 05:16:43 -08005060 err = posix_acl_chmod(inode, inode->i_mode);
Christoph Hellwig10257742010-06-04 11:30:02 +02005061 }
5062
Chris Mason39279cc2007-06-12 06:35:45 -04005063 return err;
5064}
Chris Mason61295eb2008-01-14 16:24:38 -05005065
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005066/*
5067 * While truncating the inode pages during eviction, we get the VFS calling
5068 * btrfs_invalidatepage() against each page of the inode. This is slow because
5069 * the calls to btrfs_invalidatepage() result in a huge amount of calls to
5070 * lock_extent_bits() and clear_extent_bit(), which keep merging and splitting
5071 * extent_state structures over and over, wasting lots of time.
5072 *
5073 * Therefore if the inode is being evicted, let btrfs_invalidatepage() skip all
5074 * those expensive operations on a per page basis and do only the ordered io
5075 * finishing, while we release here the extent_map and extent_state structures,
5076 * without the excessive merging and splitting.
5077 */
5078static void evict_inode_truncate_pages(struct inode *inode)
5079{
5080 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
5081 struct extent_map_tree *map_tree = &BTRFS_I(inode)->extent_tree;
5082 struct rb_node *node;
5083
5084 ASSERT(inode->i_state & I_FREEING);
Johannes Weiner91b0abe2014-04-03 14:47:49 -07005085 truncate_inode_pages_final(&inode->i_data);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005086
5087 write_lock(&map_tree->lock);
5088 while (!RB_EMPTY_ROOT(&map_tree->map)) {
5089 struct extent_map *em;
5090
5091 node = rb_first(&map_tree->map);
5092 em = rb_entry(node, struct extent_map, rb_node);
Wang Shilong180589e2013-12-14 15:27:31 +08005093 clear_bit(EXTENT_FLAG_PINNED, &em->flags);
5094 clear_bit(EXTENT_FLAG_LOGGING, &em->flags);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005095 remove_extent_mapping(map_tree, em);
5096 free_extent_map(em);
Filipe Manana7064dd52014-08-08 02:47:05 +01005097 if (need_resched()) {
5098 write_unlock(&map_tree->lock);
5099 cond_resched();
5100 write_lock(&map_tree->lock);
5101 }
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005102 }
5103 write_unlock(&map_tree->lock);
5104
Filipe Manana6ca07092015-05-26 00:55:42 +01005105 /*
5106 * Keep looping until we have no more ranges in the io tree.
5107 * We can have ongoing bios started by readpages (called from readahead)
Filipe Manana9c6429d2015-06-10 12:55:41 +01005108 * that have their endio callback (extent_io.c:end_bio_extent_readpage)
5109 * still in progress (unlocked the pages in the bio but did not yet
5110 * unlocked the ranges in the io tree). Therefore this means some
Filipe Manana6ca07092015-05-26 00:55:42 +01005111 * ranges can still be locked and eviction started because before
5112 * submitting those bios, which are executed by a separate task (work
5113 * queue kthread), inode references (inode->i_count) were not taken
5114 * (which would be dropped in the end io callback of each bio).
5115 * Therefore here we effectively end up waiting for those bios and
5116 * anyone else holding locked ranges without having bumped the inode's
5117 * reference count - if we don't do it, when they access the inode's
5118 * io_tree to unlock a range it may be too late, leading to an
5119 * use-after-free issue.
5120 */
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005121 spin_lock(&io_tree->lock);
5122 while (!RB_EMPTY_ROOT(&io_tree->state)) {
5123 struct extent_state *state;
5124 struct extent_state *cached_state = NULL;
Filipe Manana6ca07092015-05-26 00:55:42 +01005125 u64 start;
5126 u64 end;
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005127
5128 node = rb_first(&io_tree->state);
5129 state = rb_entry(node, struct extent_state, rb_node);
Filipe Manana6ca07092015-05-26 00:55:42 +01005130 start = state->start;
5131 end = state->end;
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005132 spin_unlock(&io_tree->lock);
5133
Filipe Manana6ca07092015-05-26 00:55:42 +01005134 lock_extent_bits(io_tree, start, end, 0, &cached_state);
Qu Wenruob9d0b382015-09-29 10:35:16 +08005135
5136 /*
5137 * If still has DELALLOC flag, the extent didn't reach disk,
5138 * and its reserved space won't be freed by delayed_ref.
5139 * So we need to free its reserved space here.
5140 * (Refer to comment in btrfs_invalidatepage, case 2)
5141 *
5142 * Note, end is the bytenr of last byte, so we need + 1 here.
5143 */
5144 if (state->state & EXTENT_DELALLOC)
5145 btrfs_qgroup_free_data(inode, start, end - start + 1);
5146
Filipe Manana6ca07092015-05-26 00:55:42 +01005147 clear_extent_bit(io_tree, start, end,
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005148 EXTENT_LOCKED | EXTENT_DIRTY |
5149 EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING |
5150 EXTENT_DEFRAG, 1, 1,
5151 &cached_state, GFP_NOFS);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005152
Filipe Manana7064dd52014-08-08 02:47:05 +01005153 cond_resched();
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005154 spin_lock(&io_tree->lock);
5155 }
5156 spin_unlock(&io_tree->lock);
5157}
5158
Al Virobd555972010-06-07 11:35:40 -04005159void btrfs_evict_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04005160{
5161 struct btrfs_trans_handle *trans;
5162 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik726c35f2011-09-26 15:46:06 -04005163 struct btrfs_block_rsv *rsv, *global_rsv;
Josef Bacik3bce8762015-02-24 12:35:51 -08005164 int steal_from_global = 0;
Josef Bacik07127182011-08-19 10:29:59 -04005165 u64 min_size = btrfs_calc_trunc_metadata_size(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04005166 int ret;
5167
liubo1abe9b82011-03-24 11:18:59 +00005168 trace_btrfs_inode_evict(inode);
5169
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005170 evict_inode_truncate_pages(inode);
5171
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02005172 if (inode->i_nlink &&
5173 ((btrfs_root_refs(&root->root_item) != 0 &&
5174 root->root_key.objectid != BTRFS_ROOT_TREE_OBJECTID) ||
5175 btrfs_is_free_space_inode(inode)))
Al Virobd555972010-06-07 11:35:40 -04005176 goto no_delete;
5177
Chris Mason39279cc2007-06-12 06:35:45 -04005178 if (is_bad_inode(inode)) {
Josef Bacik7b128762008-07-24 12:17:14 -04005179 btrfs_orphan_del(NULL, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04005180 goto no_delete;
5181 }
Al Virobd555972010-06-07 11:35:40 -04005182 /* do we really want it for ->i_nlink > 0 and zero btrfs_root_refs? */
Jeff Mahoneya30e5772015-09-11 21:44:17 -04005183 if (!special_file(inode->i_mode))
5184 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Chris Mason5f39d392007-10-15 16:14:19 -04005185
Miao Xief6124962014-09-12 18:44:04 +08005186 btrfs_free_io_failure_record(inode, 0, (u64)-1);
5187
Yan, Zhengc71bf092009-11-12 09:34:40 +00005188 if (root->fs_info->log_root_recovering) {
Liu Bo6bf02312012-06-25 21:59:09 -06005189 BUG_ON(test_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
Josef Bacik8a35d952012-05-23 14:26:42 -04005190 &BTRFS_I(inode)->runtime_flags));
Yan, Zhengc71bf092009-11-12 09:34:40 +00005191 goto no_delete;
5192 }
5193
Yan, Zheng76dda932009-09-21 16:00:26 -04005194 if (inode->i_nlink > 0) {
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02005195 BUG_ON(btrfs_root_refs(&root->root_item) != 0 &&
5196 root->root_key.objectid != BTRFS_ROOT_TREE_OBJECTID);
Yan, Zheng76dda932009-09-21 16:00:26 -04005197 goto no_delete;
5198 }
5199
Miao Xie0e8c36a2012-12-19 06:59:51 +00005200 ret = btrfs_commit_inode_delayed_inode(inode);
5201 if (ret) {
5202 btrfs_orphan_del(NULL, inode);
5203 goto no_delete;
5204 }
5205
Miao Xie66d8f3d2012-09-06 04:02:28 -06005206 rsv = btrfs_alloc_block_rsv(root, BTRFS_BLOCK_RSV_TEMP);
Josef Bacik4289a662011-08-05 13:22:24 -04005207 if (!rsv) {
5208 btrfs_orphan_del(NULL, inode);
5209 goto no_delete;
5210 }
Josef Bacik4a338542011-08-29 11:01:31 -04005211 rsv->size = min_size;
Josef Bacikca7e70f2012-08-27 17:48:15 -04005212 rsv->failfast = 1;
Josef Bacik726c35f2011-09-26 15:46:06 -04005213 global_rsv = &root->fs_info->global_block_rsv;
Josef Bacik4289a662011-08-05 13:22:24 -04005214
Chris Masondbe674a2008-07-17 12:54:05 -04005215 btrfs_i_size_write(inode, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04005216
Josef Bacik4289a662011-08-05 13:22:24 -04005217 /*
Miao Xie8407aa42012-09-07 01:43:32 -06005218 * This is a bit simpler than btrfs_truncate since we've already
5219 * reserved our space for our orphan item in the unlink, so we just
5220 * need to reserve some slack space in case we add bytes and update
5221 * inode item when doing the truncate.
Josef Bacik4289a662011-08-05 13:22:24 -04005222 */
Yan, Zheng80825102009-11-12 09:35:36 +00005223 while (1) {
Miao Xie08e007d2012-10-16 11:33:38 +00005224 ret = btrfs_block_rsv_refill(root, rsv, min_size,
5225 BTRFS_RESERVE_FLUSH_LIMIT);
Yan, Zheng80825102009-11-12 09:35:36 +00005226
Josef Bacik726c35f2011-09-26 15:46:06 -04005227 /*
5228 * Try and steal from the global reserve since we will
5229 * likely not use this space anyway, we want to try as
5230 * hard as possible to get this to work.
5231 */
5232 if (ret)
Josef Bacik3bce8762015-02-24 12:35:51 -08005233 steal_from_global++;
5234 else
5235 steal_from_global = 0;
5236 ret = 0;
Josef Bacik726c35f2011-09-26 15:46:06 -04005237
Josef Bacik3bce8762015-02-24 12:35:51 -08005238 /*
5239 * steal_from_global == 0: we reserved stuff, hooray!
5240 * steal_from_global == 1: we didn't reserve stuff, boo!
5241 * steal_from_global == 2: we've committed, still not a lot of
5242 * room but maybe we'll have room in the global reserve this
5243 * time.
5244 * steal_from_global == 3: abandon all hope!
5245 */
5246 if (steal_from_global > 2) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00005247 btrfs_warn(root->fs_info,
5248 "Could not get space for a delete, will truncate on mount %d",
5249 ret);
Josef Bacik4289a662011-08-05 13:22:24 -04005250 btrfs_orphan_del(NULL, inode);
5251 btrfs_free_block_rsv(root, rsv);
5252 goto no_delete;
Yan, Zhengd68fc572010-05-16 10:49:58 -04005253 }
5254
Miao Xie0e8c36a2012-12-19 06:59:51 +00005255 trans = btrfs_join_transaction(root);
Josef Bacik4289a662011-08-05 13:22:24 -04005256 if (IS_ERR(trans)) {
5257 btrfs_orphan_del(NULL, inode);
5258 btrfs_free_block_rsv(root, rsv);
5259 goto no_delete;
5260 }
5261
Josef Bacik3bce8762015-02-24 12:35:51 -08005262 /*
5263 * We can't just steal from the global reserve, we need tomake
5264 * sure there is room to do it, if not we need to commit and try
5265 * again.
5266 */
5267 if (steal_from_global) {
5268 if (!btrfs_check_space_for_delayed_refs(trans, root))
5269 ret = btrfs_block_rsv_migrate(global_rsv, rsv,
5270 min_size);
5271 else
5272 ret = -ENOSPC;
5273 }
5274
5275 /*
5276 * Couldn't steal from the global reserve, we have too much
5277 * pending stuff built up, commit the transaction and try it
5278 * again.
5279 */
5280 if (ret) {
5281 ret = btrfs_commit_transaction(trans, root);
5282 if (ret) {
5283 btrfs_orphan_del(NULL, inode);
5284 btrfs_free_block_rsv(root, rsv);
5285 goto no_delete;
5286 }
5287 continue;
5288 } else {
5289 steal_from_global = 0;
5290 }
5291
Josef Bacik4289a662011-08-05 13:22:24 -04005292 trans->block_rsv = rsv;
5293
Yan, Zhengd68fc572010-05-16 10:49:58 -04005294 ret = btrfs_truncate_inode_items(trans, root, inode, 0, 0);
Chris Mason28ed1342014-12-17 09:41:04 -08005295 if (ret != -ENOSPC && ret != -EAGAIN)
Yan, Zheng80825102009-11-12 09:35:36 +00005296 break;
5297
Miao Xie8407aa42012-09-07 01:43:32 -06005298 trans->block_rsv = &root->fs_info->trans_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00005299 btrfs_end_transaction(trans, root);
5300 trans = NULL;
Liu Bob53d3f52012-11-14 14:34:34 +00005301 btrfs_btree_balance_dirty(root);
Josef Bacik7b128762008-07-24 12:17:14 -04005302 }
5303
Josef Bacik4289a662011-08-05 13:22:24 -04005304 btrfs_free_block_rsv(root, rsv);
5305
Josef Bacik4ef31a42013-08-13 14:10:08 -04005306 /*
5307 * Errors here aren't a big deal, it just means we leave orphan items
5308 * in the tree. They will be cleaned up on the next mount.
5309 */
Yan, Zheng80825102009-11-12 09:35:36 +00005310 if (ret == 0) {
Josef Bacik4289a662011-08-05 13:22:24 -04005311 trans->block_rsv = root->orphan_block_rsv;
Josef Bacik4ef31a42013-08-13 14:10:08 -04005312 btrfs_orphan_del(trans, inode);
5313 } else {
5314 btrfs_orphan_del(NULL, inode);
Yan, Zheng80825102009-11-12 09:35:36 +00005315 }
Chris Mason85e21ba2008-01-29 15:11:36 -05005316
Josef Bacik4289a662011-08-05 13:22:24 -04005317 trans->block_rsv = &root->fs_info->trans_block_rsv;
Li Zefan581bb052011-04-20 10:06:11 +08005318 if (!(root == root->fs_info->tree_root ||
5319 root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID))
Li Zefan33345d012011-04-20 10:31:50 +08005320 btrfs_return_ino(root, btrfs_ino(inode));
Li Zefan581bb052011-04-20 10:06:11 +08005321
Chris Mason54aa1f42007-06-22 14:16:25 -04005322 btrfs_end_transaction(trans, root);
Liu Bob53d3f52012-11-14 14:34:34 +00005323 btrfs_btree_balance_dirty(root);
Chris Mason39279cc2007-06-12 06:35:45 -04005324no_delete:
Miao Xie89042e52013-05-15 07:48:15 +00005325 btrfs_remove_delayed_node(inode);
Jan Karadbd57682012-05-03 14:48:02 +02005326 clear_inode(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00005327 return;
Chris Mason39279cc2007-06-12 06:35:45 -04005328}
5329
5330/*
5331 * this returns the key found in the dir entry in the location pointer.
5332 * If no dir entries were found, location->objectid is 0.
5333 */
5334static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
5335 struct btrfs_key *location)
5336{
5337 const char *name = dentry->d_name.name;
5338 int namelen = dentry->d_name.len;
5339 struct btrfs_dir_item *di;
5340 struct btrfs_path *path;
5341 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04005342 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005343
5344 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07005345 if (!path)
5346 return -ENOMEM;
Chris Mason39544012007-12-12 14:38:19 -05005347
Li Zefan33345d012011-04-20 10:31:50 +08005348 di = btrfs_lookup_dir_item(NULL, root, path, btrfs_ino(dir), name,
Chris Mason39279cc2007-06-12 06:35:45 -04005349 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04005350 if (IS_ERR(di))
5351 ret = PTR_ERR(di);
Chris Masond3977122009-01-05 21:25:51 -05005352
David Sterbac7040052011-04-19 18:00:01 +02005353 if (IS_ERR_OR_NULL(di))
Chris Mason39544012007-12-12 14:38:19 -05005354 goto out_err;
Chris Masond3977122009-01-05 21:25:51 -05005355
Chris Mason5f39d392007-10-15 16:14:19 -04005356 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04005357out:
Chris Mason39279cc2007-06-12 06:35:45 -04005358 btrfs_free_path(path);
5359 return ret;
Chris Mason39544012007-12-12 14:38:19 -05005360out_err:
5361 location->objectid = 0;
5362 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04005363}
5364
5365/*
5366 * when we hit a tree root in a directory, the btrfs part of the inode
5367 * needs to be changed to reflect the root directory of the tree root. This
5368 * is kind of like crossing a mount point.
5369 */
5370static int fixup_tree_root_location(struct btrfs_root *root,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005371 struct inode *dir,
5372 struct dentry *dentry,
5373 struct btrfs_key *location,
5374 struct btrfs_root **sub_root)
Chris Mason39279cc2007-06-12 06:35:45 -04005375{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005376 struct btrfs_path *path;
5377 struct btrfs_root *new_root;
5378 struct btrfs_root_ref *ref;
5379 struct extent_buffer *leaf;
David Sterba1d4c08e2015-01-02 19:36:14 +01005380 struct btrfs_key key;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005381 int ret;
5382 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005383
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005384 path = btrfs_alloc_path();
5385 if (!path) {
5386 err = -ENOMEM;
5387 goto out;
5388 }
Chris Mason39279cc2007-06-12 06:35:45 -04005389
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005390 err = -ENOENT;
David Sterba1d4c08e2015-01-02 19:36:14 +01005391 key.objectid = BTRFS_I(dir)->root->root_key.objectid;
5392 key.type = BTRFS_ROOT_REF_KEY;
5393 key.offset = location->objectid;
5394
5395 ret = btrfs_search_slot(NULL, root->fs_info->tree_root, &key, path,
5396 0, 0);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005397 if (ret) {
5398 if (ret < 0)
5399 err = ret;
5400 goto out;
5401 }
Chris Mason39279cc2007-06-12 06:35:45 -04005402
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005403 leaf = path->nodes[0];
5404 ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref);
Li Zefan33345d012011-04-20 10:31:50 +08005405 if (btrfs_root_ref_dirid(leaf, ref) != btrfs_ino(dir) ||
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005406 btrfs_root_ref_name_len(leaf, ref) != dentry->d_name.len)
5407 goto out;
5408
5409 ret = memcmp_extent_buffer(leaf, dentry->d_name.name,
5410 (unsigned long)(ref + 1),
5411 dentry->d_name.len);
5412 if (ret)
5413 goto out;
5414
David Sterbab3b4aa72011-04-21 01:20:15 +02005415 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005416
5417 new_root = btrfs_read_fs_root_no_name(root->fs_info, location);
5418 if (IS_ERR(new_root)) {
5419 err = PTR_ERR(new_root);
5420 goto out;
5421 }
5422
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005423 *sub_root = new_root;
5424 location->objectid = btrfs_root_dirid(&new_root->root_item);
5425 location->type = BTRFS_INODE_ITEM_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -04005426 location->offset = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005427 err = 0;
5428out:
5429 btrfs_free_path(path);
5430 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04005431}
5432
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005433static void inode_tree_add(struct inode *inode)
5434{
5435 struct btrfs_root *root = BTRFS_I(inode)->root;
5436 struct btrfs_inode *entry;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005437 struct rb_node **p;
5438 struct rb_node *parent;
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005439 struct rb_node *new = &BTRFS_I(inode)->rb_node;
Li Zefan33345d012011-04-20 10:31:50 +08005440 u64 ino = btrfs_ino(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005441
Al Viro1d3382cb2010-10-23 15:19:20 -04005442 if (inode_unhashed(inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04005443 return;
Miao Xiee1409ce2013-05-15 07:48:16 +00005444 parent = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005445 spin_lock(&root->inode_lock);
Miao Xiee1409ce2013-05-15 07:48:16 +00005446 p = &root->inode_tree.rb_node;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005447 while (*p) {
5448 parent = *p;
5449 entry = rb_entry(parent, struct btrfs_inode, rb_node);
5450
Li Zefan33345d012011-04-20 10:31:50 +08005451 if (ino < btrfs_ino(&entry->vfs_inode))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005452 p = &parent->rb_left;
Li Zefan33345d012011-04-20 10:31:50 +08005453 else if (ino > btrfs_ino(&entry->vfs_inode))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005454 p = &parent->rb_right;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005455 else {
5456 WARN_ON(!(entry->vfs_inode.i_state &
Al Viroa4ffdde2010-06-02 17:38:30 -04005457 (I_WILL_FREE | I_FREEING)));
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005458 rb_replace_node(parent, new, &root->inode_tree);
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005459 RB_CLEAR_NODE(parent);
5460 spin_unlock(&root->inode_lock);
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005461 return;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005462 }
5463 }
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005464 rb_link_node(new, parent, p);
5465 rb_insert_color(new, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005466 spin_unlock(&root->inode_lock);
5467}
5468
5469static void inode_tree_del(struct inode *inode)
5470{
5471 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -04005472 int empty = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005473
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005474 spin_lock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005475 if (!RB_EMPTY_NODE(&BTRFS_I(inode)->rb_node)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005476 rb_erase(&BTRFS_I(inode)->rb_node, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005477 RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node);
Yan, Zheng76dda932009-09-21 16:00:26 -04005478 empty = RB_EMPTY_ROOT(&root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005479 }
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005480 spin_unlock(&root->inode_lock);
Yan, Zheng76dda932009-09-21 16:00:26 -04005481
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02005482 if (empty && btrfs_root_refs(&root->root_item) == 0) {
Yan, Zheng76dda932009-09-21 16:00:26 -04005483 synchronize_srcu(&root->fs_info->subvol_srcu);
5484 spin_lock(&root->inode_lock);
5485 empty = RB_EMPTY_ROOT(&root->inode_tree);
5486 spin_unlock(&root->inode_lock);
5487 if (empty)
5488 btrfs_add_dead_root(root);
5489 }
5490}
5491
Jeff Mahoney143bede2012-03-01 14:56:26 +01005492void btrfs_invalidate_inodes(struct btrfs_root *root)
Yan, Zheng76dda932009-09-21 16:00:26 -04005493{
5494 struct rb_node *node;
5495 struct rb_node *prev;
5496 struct btrfs_inode *entry;
5497 struct inode *inode;
5498 u64 objectid = 0;
5499
Liu Bo7813b3d2014-02-10 17:37:25 +08005500 if (!test_bit(BTRFS_FS_STATE_ERROR, &root->fs_info->fs_state))
5501 WARN_ON(btrfs_root_refs(&root->root_item) != 0);
Yan, Zheng76dda932009-09-21 16:00:26 -04005502
5503 spin_lock(&root->inode_lock);
5504again:
5505 node = root->inode_tree.rb_node;
5506 prev = NULL;
5507 while (node) {
5508 prev = node;
5509 entry = rb_entry(node, struct btrfs_inode, rb_node);
5510
Li Zefan33345d012011-04-20 10:31:50 +08005511 if (objectid < btrfs_ino(&entry->vfs_inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04005512 node = node->rb_left;
Li Zefan33345d012011-04-20 10:31:50 +08005513 else if (objectid > btrfs_ino(&entry->vfs_inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04005514 node = node->rb_right;
5515 else
5516 break;
5517 }
5518 if (!node) {
5519 while (prev) {
5520 entry = rb_entry(prev, struct btrfs_inode, rb_node);
Li Zefan33345d012011-04-20 10:31:50 +08005521 if (objectid <= btrfs_ino(&entry->vfs_inode)) {
Yan, Zheng76dda932009-09-21 16:00:26 -04005522 node = prev;
5523 break;
5524 }
5525 prev = rb_next(prev);
5526 }
5527 }
5528 while (node) {
5529 entry = rb_entry(node, struct btrfs_inode, rb_node);
Li Zefan33345d012011-04-20 10:31:50 +08005530 objectid = btrfs_ino(&entry->vfs_inode) + 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04005531 inode = igrab(&entry->vfs_inode);
5532 if (inode) {
5533 spin_unlock(&root->inode_lock);
5534 if (atomic_read(&inode->i_count) > 1)
5535 d_prune_aliases(inode);
5536 /*
Al Viro45321ac2010-06-07 13:43:19 -04005537 * btrfs_drop_inode will have it removed from
Yan, Zheng76dda932009-09-21 16:00:26 -04005538 * the inode cache when its usage count
5539 * hits zero.
5540 */
5541 iput(inode);
5542 cond_resched();
5543 spin_lock(&root->inode_lock);
5544 goto again;
5545 }
5546
5547 if (cond_resched_lock(&root->inode_lock))
5548 goto again;
5549
5550 node = rb_next(node);
5551 }
5552 spin_unlock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005553}
5554
Chris Masone02119d2008-09-05 16:13:11 -04005555static int btrfs_init_locked_inode(struct inode *inode, void *p)
5556{
5557 struct btrfs_iget_args *args = p;
Chris Mason90d3e592014-01-09 17:28:00 -08005558 inode->i_ino = args->location->objectid;
5559 memcpy(&BTRFS_I(inode)->location, args->location,
5560 sizeof(*args->location));
Chris Masone02119d2008-09-05 16:13:11 -04005561 BTRFS_I(inode)->root = args->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005562 return 0;
5563}
5564
5565static int btrfs_find_actor(struct inode *inode, void *opaque)
5566{
5567 struct btrfs_iget_args *args = opaque;
Chris Mason90d3e592014-01-09 17:28:00 -08005568 return args->location->objectid == BTRFS_I(inode)->location.objectid &&
Chris Masond3977122009-01-05 21:25:51 -05005569 args->root == BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005570}
5571
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005572static struct inode *btrfs_iget_locked(struct super_block *s,
Chris Mason90d3e592014-01-09 17:28:00 -08005573 struct btrfs_key *location,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005574 struct btrfs_root *root)
Chris Mason39279cc2007-06-12 06:35:45 -04005575{
5576 struct inode *inode;
5577 struct btrfs_iget_args args;
Chris Mason90d3e592014-01-09 17:28:00 -08005578 unsigned long hashval = btrfs_inode_hash(location->objectid, root);
Filipe David Borba Manana778ba822013-10-06 22:22:33 +01005579
Chris Mason90d3e592014-01-09 17:28:00 -08005580 args.location = location;
Chris Mason39279cc2007-06-12 06:35:45 -04005581 args.root = root;
5582
Filipe David Borba Manana778ba822013-10-06 22:22:33 +01005583 inode = iget5_locked(s, hashval, btrfs_find_actor,
Chris Mason39279cc2007-06-12 06:35:45 -04005584 btrfs_init_locked_inode,
5585 (void *)&args);
5586 return inode;
5587}
5588
Balaji Rao1a54ef82008-07-21 02:01:04 +05305589/* Get an inode object given its location and corresponding root.
5590 * Returns in *is_new if the inode was read from disk
5591 */
5592struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
Josef Bacik73f73412009-12-04 17:38:27 +00005593 struct btrfs_root *root, int *new)
Balaji Rao1a54ef82008-07-21 02:01:04 +05305594{
5595 struct inode *inode;
5596
Chris Mason90d3e592014-01-09 17:28:00 -08005597 inode = btrfs_iget_locked(s, location, root);
Balaji Rao1a54ef82008-07-21 02:01:04 +05305598 if (!inode)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005599 return ERR_PTR(-ENOMEM);
Balaji Rao1a54ef82008-07-21 02:01:04 +05305600
5601 if (inode->i_state & I_NEW) {
Balaji Rao1a54ef82008-07-21 02:01:04 +05305602 btrfs_read_locked_inode(inode);
Mark Fasheh1748f842011-07-12 11:25:31 -07005603 if (!is_bad_inode(inode)) {
5604 inode_tree_add(inode);
5605 unlock_new_inode(inode);
5606 if (new)
5607 *new = 1;
5608 } else {
Sergei Trofimoviche0b6d652011-09-11 10:52:24 -04005609 unlock_new_inode(inode);
5610 iput(inode);
5611 inode = ERR_PTR(-ESTALE);
Mark Fasheh1748f842011-07-12 11:25:31 -07005612 }
5613 }
5614
Balaji Rao1a54ef82008-07-21 02:01:04 +05305615 return inode;
5616}
5617
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005618static struct inode *new_simple_dir(struct super_block *s,
5619 struct btrfs_key *key,
5620 struct btrfs_root *root)
5621{
5622 struct inode *inode = new_inode(s);
5623
5624 if (!inode)
5625 return ERR_PTR(-ENOMEM);
5626
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005627 BTRFS_I(inode)->root = root;
5628 memcpy(&BTRFS_I(inode)->location, key, sizeof(*key));
Josef Bacik72ac3c02012-05-23 14:13:11 -04005629 set_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005630
5631 inode->i_ino = BTRFS_EMPTY_SUBVOL_DIR_OBJECTID;
Li Zefan848cce02012-02-21 17:04:28 +08005632 inode->i_op = &btrfs_dir_ro_inode_operations;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005633 inode->i_fop = &simple_dir_operations;
5634 inode->i_mode = S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO;
chandan r9cc97d62012-07-04 12:48:07 +05305635 inode->i_mtime = CURRENT_TIME;
5636 inode->i_atime = inode->i_mtime;
5637 inode->i_ctime = inode->i_mtime;
5638 BTRFS_I(inode)->i_otime = inode->i_mtime;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005639
5640 return inode;
5641}
5642
Chris Mason3de45862008-11-17 21:02:50 -05005643struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04005644{
Chris Masond3977122009-01-05 21:25:51 -05005645 struct inode *inode;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005646 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005647 struct btrfs_root *sub_root = root;
5648 struct btrfs_key location;
Yan, Zheng76dda932009-09-21 16:00:26 -04005649 int index;
Josef Bacikb4aff1f2011-06-28 16:18:59 -04005650 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005651
5652 if (dentry->d_name.len > BTRFS_NAME_LEN)
5653 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04005654
Jeff Layton39e3c952012-11-28 11:30:53 -05005655 ret = btrfs_inode_by_name(dir, dentry, &location);
Chris Mason39279cc2007-06-12 06:35:45 -04005656 if (ret < 0)
5657 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04005658
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005659 if (location.objectid == 0)
Tsutomu Itoh5662344b32013-12-13 09:51:42 +09005660 return ERR_PTR(-ENOENT);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005661
5662 if (location.type == BTRFS_INODE_ITEM_KEY) {
Josef Bacik73f73412009-12-04 17:38:27 +00005663 inode = btrfs_iget(dir->i_sb, &location, root, NULL);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005664 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04005665 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005666
5667 BUG_ON(location.type != BTRFS_ROOT_ITEM_KEY);
5668
Yan, Zheng76dda932009-09-21 16:00:26 -04005669 index = srcu_read_lock(&root->fs_info->subvol_srcu);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005670 ret = fixup_tree_root_location(root, dir, dentry,
5671 &location, &sub_root);
5672 if (ret < 0) {
5673 if (ret != -ENOENT)
5674 inode = ERR_PTR(ret);
5675 else
5676 inode = new_simple_dir(dir->i_sb, &location, sub_root);
5677 } else {
Josef Bacik73f73412009-12-04 17:38:27 +00005678 inode = btrfs_iget(dir->i_sb, &location, sub_root, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04005679 }
Yan, Zheng76dda932009-09-21 16:00:26 -04005680 srcu_read_unlock(&root->fs_info->subvol_srcu, index);
5681
Julia Lawall34d19ba2011-01-24 19:55:19 +00005682 if (!IS_ERR(inode) && root != sub_root) {
Yan, Zhengc71bf092009-11-12 09:34:40 +00005683 down_read(&root->fs_info->cleanup_work_sem);
5684 if (!(inode->i_sb->s_flags & MS_RDONLY))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05005685 ret = btrfs_orphan_cleanup(sub_root);
Yan, Zhengc71bf092009-11-12 09:34:40 +00005686 up_read(&root->fs_info->cleanup_work_sem);
Josef Bacik01cd3362013-06-03 21:39:49 -04005687 if (ret) {
5688 iput(inode);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05005689 inode = ERR_PTR(ret);
Josef Bacik01cd3362013-06-03 21:39:49 -04005690 }
Yan, Zhengc71bf092009-11-12 09:34:40 +00005691 }
5692
Chris Mason3de45862008-11-17 21:02:50 -05005693 return inode;
5694}
5695
Nick Pigginfe15ce42011-01-07 17:49:23 +11005696static int btrfs_dentry_delete(const struct dentry *dentry)
Yan, Zheng76dda932009-09-21 16:00:26 -04005697{
5698 struct btrfs_root *root;
David Howells2b0143b2015-03-17 22:25:59 +00005699 struct inode *inode = d_inode(dentry);
Yan, Zheng76dda932009-09-21 16:00:26 -04005700
Li Zefan848cce02012-02-21 17:04:28 +08005701 if (!inode && !IS_ROOT(dentry))
David Howells2b0143b2015-03-17 22:25:59 +00005702 inode = d_inode(dentry->d_parent);
Yan, Zheng76dda932009-09-21 16:00:26 -04005703
Li Zefan848cce02012-02-21 17:04:28 +08005704 if (inode) {
5705 root = BTRFS_I(inode)->root;
Yan, Zhengefefb142009-10-09 09:25:16 -04005706 if (btrfs_root_refs(&root->root_item) == 0)
5707 return 1;
Li Zefan848cce02012-02-21 17:04:28 +08005708
5709 if (btrfs_ino(inode) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
5710 return 1;
Yan, Zhengefefb142009-10-09 09:25:16 -04005711 }
Yan, Zheng76dda932009-09-21 16:00:26 -04005712 return 0;
5713}
5714
Josef Bacikb4aff1f2011-06-28 16:18:59 -04005715static void btrfs_dentry_release(struct dentry *dentry)
5716{
Daeseok Youn944a4512014-04-14 15:37:02 +09005717 kfree(dentry->d_fsdata);
Josef Bacikb4aff1f2011-06-28 16:18:59 -04005718}
5719
Chris Mason3de45862008-11-17 21:02:50 -05005720static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -04005721 unsigned int flags)
Chris Mason3de45862008-11-17 21:02:50 -05005722{
Tsutomu Itoh5662344b32013-12-13 09:51:42 +09005723 struct inode *inode;
Josef Bacika66e7cc2011-09-18 10:34:03 -04005724
Tsutomu Itoh5662344b32013-12-13 09:51:42 +09005725 inode = btrfs_lookup_dentry(dir, dentry);
5726 if (IS_ERR(inode)) {
5727 if (PTR_ERR(inode) == -ENOENT)
5728 inode = NULL;
5729 else
5730 return ERR_CAST(inode);
5731 }
5732
Al Viro41d28bc2014-10-12 22:24:21 -04005733 return d_splice_alias(inode, dentry);
Chris Mason39279cc2007-06-12 06:35:45 -04005734}
5735
Miao Xie16cdcec2011-04-22 18:12:22 +08005736unsigned char btrfs_filetype_table[] = {
Chris Mason39279cc2007-06-12 06:35:45 -04005737 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
5738};
5739
Al Viro9cdda8d2013-05-22 16:48:09 -04005740static int btrfs_real_readdir(struct file *file, struct dir_context *ctx)
Chris Mason39279cc2007-06-12 06:35:45 -04005741{
Al Viro9cdda8d2013-05-22 16:48:09 -04005742 struct inode *inode = file_inode(file);
Chris Mason39279cc2007-06-12 06:35:45 -04005743 struct btrfs_root *root = BTRFS_I(inode)->root;
5744 struct btrfs_item *item;
5745 struct btrfs_dir_item *di;
5746 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04005747 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04005748 struct btrfs_path *path;
Miao Xie16cdcec2011-04-22 18:12:22 +08005749 struct list_head ins_list;
5750 struct list_head del_list;
Chris Mason39279cc2007-06-12 06:35:45 -04005751 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -04005752 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04005753 int slot;
Chris Mason39279cc2007-06-12 06:35:45 -04005754 unsigned char d_type;
5755 int over = 0;
5756 u32 di_cur;
5757 u32 di_total;
5758 u32 di_len;
5759 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04005760 char tmp_name[32];
5761 char *name_ptr;
5762 int name_len;
Al Viro9cdda8d2013-05-22 16:48:09 -04005763 int is_curr = 0; /* ctx->pos points to the current index? */
Chris Mason39279cc2007-06-12 06:35:45 -04005764
5765 /* FIXME, use a real flag for deciding about the key type */
5766 if (root->fs_info->tree_root == root)
5767 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04005768
Al Viro9cdda8d2013-05-22 16:48:09 -04005769 if (!dir_emit_dots(file, ctx))
5770 return 0;
5771
David Woodhouse49593bf2008-08-17 17:08:36 +01005772 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08005773 if (!path)
5774 return -ENOMEM;
Chris Masonff5714c2011-05-28 07:00:39 -04005775
Josef Bacik026fd312011-05-13 10:32:11 -04005776 path->reada = 1;
David Woodhouse49593bf2008-08-17 17:08:36 +01005777
Miao Xie16cdcec2011-04-22 18:12:22 +08005778 if (key_type == BTRFS_DIR_INDEX_KEY) {
5779 INIT_LIST_HEAD(&ins_list);
5780 INIT_LIST_HEAD(&del_list);
5781 btrfs_get_delayed_items(inode, &ins_list, &del_list);
5782 }
5783
David Sterba962a2982014-06-04 18:41:45 +02005784 key.type = key_type;
Al Viro9cdda8d2013-05-22 16:48:09 -04005785 key.offset = ctx->pos;
Li Zefan33345d012011-04-20 10:31:50 +08005786 key.objectid = btrfs_ino(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04005787
Chris Mason39279cc2007-06-12 06:35:45 -04005788 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
5789 if (ret < 0)
5790 goto err;
David Woodhouse49593bf2008-08-17 17:08:36 +01005791
5792 while (1) {
Chris Mason5f39d392007-10-15 16:14:19 -04005793 leaf = path->nodes[0];
Chris Mason39279cc2007-06-12 06:35:45 -04005794 slot = path->slots[0];
Li Zefanb9e03af2011-03-23 10:43:58 +08005795 if (slot >= btrfs_header_nritems(leaf)) {
5796 ret = btrfs_next_leaf(root, path);
5797 if (ret < 0)
5798 goto err;
5799 else if (ret > 0)
5800 break;
5801 continue;
Chris Mason39279cc2007-06-12 06:35:45 -04005802 }
Chris Mason3de45862008-11-17 21:02:50 -05005803
Ross Kirkdd3cc162013-09-16 15:58:09 +01005804 item = btrfs_item_nr(slot);
Chris Mason5f39d392007-10-15 16:14:19 -04005805 btrfs_item_key_to_cpu(leaf, &found_key, slot);
5806
5807 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04005808 break;
David Sterba962a2982014-06-04 18:41:45 +02005809 if (found_key.type != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04005810 break;
Al Viro9cdda8d2013-05-22 16:48:09 -04005811 if (found_key.offset < ctx->pos)
Li Zefanb9e03af2011-03-23 10:43:58 +08005812 goto next;
Miao Xie16cdcec2011-04-22 18:12:22 +08005813 if (key_type == BTRFS_DIR_INDEX_KEY &&
5814 btrfs_should_delete_dir_index(&del_list,
5815 found_key.offset))
5816 goto next;
Chris Mason5f39d392007-10-15 16:14:19 -04005817
Al Viro9cdda8d2013-05-22 16:48:09 -04005818 ctx->pos = found_key.offset;
Miao Xie16cdcec2011-04-22 18:12:22 +08005819 is_curr = 1;
David Woodhouse49593bf2008-08-17 17:08:36 +01005820
Chris Mason39279cc2007-06-12 06:35:45 -04005821 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
5822 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04005823 di_total = btrfs_item_size(leaf, item);
David Woodhouse49593bf2008-08-17 17:08:36 +01005824
5825 while (di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04005826 struct btrfs_key location;
5827
Josef Bacik22a94d42011-03-16 16:47:17 -04005828 if (verify_dir_item(root, leaf, di))
5829 break;
5830
Chris Mason5f39d392007-10-15 16:14:19 -04005831 name_len = btrfs_dir_name_len(leaf, di);
David Woodhouse49593bf2008-08-17 17:08:36 +01005832 if (name_len <= sizeof(tmp_name)) {
Chris Mason5f39d392007-10-15 16:14:19 -04005833 name_ptr = tmp_name;
5834 } else {
5835 name_ptr = kmalloc(name_len, GFP_NOFS);
David Woodhouse49593bf2008-08-17 17:08:36 +01005836 if (!name_ptr) {
5837 ret = -ENOMEM;
5838 goto err;
5839 }
Chris Mason5f39d392007-10-15 16:14:19 -04005840 }
5841 read_extent_buffer(leaf, name_ptr,
5842 (unsigned long)(di + 1), name_len);
5843
5844 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
5845 btrfs_dir_item_key_to_cpu(leaf, di, &location);
Chris Mason3de45862008-11-17 21:02:50 -05005846
Josef Bacikb4aff1f2011-06-28 16:18:59 -04005847
Chris Mason3de45862008-11-17 21:02:50 -05005848 /* is this a reference to our own snapshot? If so
Arne Jansen8c9c2bf2012-02-25 09:09:30 +01005849 * skip it.
5850 *
5851 * In contrast to old kernels, we insert the snapshot's
5852 * dir item and dir index after it has been created, so
5853 * we won't find a reference to our own snapshot. We
5854 * still keep the following code for backward
5855 * compatibility.
Chris Mason3de45862008-11-17 21:02:50 -05005856 */
5857 if (location.type == BTRFS_ROOT_ITEM_KEY &&
5858 location.objectid == root->root_key.objectid) {
5859 over = 0;
5860 goto skip;
5861 }
Al Viro9cdda8d2013-05-22 16:48:09 -04005862 over = !dir_emit(ctx, name_ptr, name_len,
5863 location.objectid, d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04005864
Chris Mason3de45862008-11-17 21:02:50 -05005865skip:
Chris Mason5f39d392007-10-15 16:14:19 -04005866 if (name_ptr != tmp_name)
5867 kfree(name_ptr);
5868
Chris Mason39279cc2007-06-12 06:35:45 -04005869 if (over)
5870 goto nopos;
Josef Bacik5103e942007-11-16 11:45:54 -05005871 di_len = btrfs_dir_name_len(leaf, di) +
David Woodhouse49593bf2008-08-17 17:08:36 +01005872 btrfs_dir_data_len(leaf, di) + sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04005873 di_cur += di_len;
5874 di = (struct btrfs_dir_item *)((char *)di + di_len);
5875 }
Li Zefanb9e03af2011-03-23 10:43:58 +08005876next:
5877 path->slots[0]++;
Chris Mason39279cc2007-06-12 06:35:45 -04005878 }
David Woodhouse49593bf2008-08-17 17:08:36 +01005879
Miao Xie16cdcec2011-04-22 18:12:22 +08005880 if (key_type == BTRFS_DIR_INDEX_KEY) {
5881 if (is_curr)
Al Viro9cdda8d2013-05-22 16:48:09 -04005882 ctx->pos++;
5883 ret = btrfs_readdir_delayed_dir_index(ctx, &ins_list);
Miao Xie16cdcec2011-04-22 18:12:22 +08005884 if (ret)
5885 goto nopos;
5886 }
5887
David Woodhouse49593bf2008-08-17 17:08:36 +01005888 /* Reached end of directory/root. Bump pos past the last item. */
Zach Browndb62efb2013-07-11 16:19:42 -07005889 ctx->pos++;
5890
5891 /*
5892 * Stop new entries from being returned after we return the last
5893 * entry.
5894 *
5895 * New directory entries are assigned a strictly increasing
5896 * offset. This means that new entries created during readdir
5897 * are *guaranteed* to be seen in the future by that readdir.
5898 * This has broken buggy programs which operate on names as
5899 * they're returned by readdir. Until we re-use freed offsets
5900 * we have this hack to stop new entries from being returned
5901 * under the assumption that they'll never reach this huge
5902 * offset.
5903 *
5904 * This is being careful not to overflow 32bit loff_t unless the
5905 * last entry requires it because doing so has broken 32bit apps
5906 * in the past.
5907 */
5908 if (key_type == BTRFS_DIR_INDEX_KEY) {
5909 if (ctx->pos >= INT_MAX)
5910 ctx->pos = LLONG_MAX;
5911 else
5912 ctx->pos = INT_MAX;
5913 }
Chris Mason39279cc2007-06-12 06:35:45 -04005914nopos:
5915 ret = 0;
5916err:
Miao Xie16cdcec2011-04-22 18:12:22 +08005917 if (key_type == BTRFS_DIR_INDEX_KEY)
5918 btrfs_put_delayed_items(&ins_list, &del_list);
Chris Mason39279cc2007-06-12 06:35:45 -04005919 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04005920 return ret;
5921}
5922
Christoph Hellwiga9185b42010-03-05 09:21:37 +01005923int btrfs_write_inode(struct inode *inode, struct writeback_control *wbc)
Chris Mason39279cc2007-06-12 06:35:45 -04005924{
5925 struct btrfs_root *root = BTRFS_I(inode)->root;
5926 struct btrfs_trans_handle *trans;
5927 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04005928 bool nolock = false;
Chris Mason39279cc2007-06-12 06:35:45 -04005929
Josef Bacik72ac3c02012-05-23 14:13:11 -04005930 if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags))
Chris Mason4ca8b412008-08-05 13:30:48 -04005931 return 0;
5932
Liu Bo83eea1f2012-07-10 05:28:39 -06005933 if (btrfs_fs_closing(root->fs_info) && btrfs_is_free_space_inode(inode))
Li Zefan82d59022011-04-20 10:33:24 +08005934 nolock = true;
Josef Bacik0af3d002010-06-21 14:48:16 -04005935
Christoph Hellwiga9185b42010-03-05 09:21:37 +01005936 if (wbc->sync_mode == WB_SYNC_ALL) {
Josef Bacik0af3d002010-06-21 14:48:16 -04005937 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005938 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0af3d002010-06-21 14:48:16 -04005939 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005940 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005941 if (IS_ERR(trans))
5942 return PTR_ERR(trans);
Miao Xiea698d0752012-09-20 01:51:59 -06005943 ret = btrfs_commit_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04005944 }
5945 return ret;
5946}
5947
5948/*
Chris Mason54aa1f42007-06-22 14:16:25 -04005949 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04005950 * inode changes. But, it is most likely to find the inode in cache.
5951 * FIXME, needs more benchmarking...there are no reasons other than performance
5952 * to keep or drop this code.
5953 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00005954static int btrfs_dirty_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04005955{
5956 struct btrfs_root *root = BTRFS_I(inode)->root;
5957 struct btrfs_trans_handle *trans;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005958 int ret;
5959
Josef Bacik72ac3c02012-05-23 14:13:11 -04005960 if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags))
Josef Bacik22c44fe2011-11-30 10:45:38 -05005961 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005962
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005963 trans = btrfs_join_transaction(root);
Josef Bacik22c44fe2011-11-30 10:45:38 -05005964 if (IS_ERR(trans))
5965 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005966
5967 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04005968 if (ret && ret == -ENOSPC) {
5969 /* whoops, lets try again with the full transaction */
5970 btrfs_end_transaction(trans, root);
5971 trans = btrfs_start_transaction(root, 1);
Josef Bacik22c44fe2011-11-30 10:45:38 -05005972 if (IS_ERR(trans))
5973 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005974
Chris Mason94b60442010-05-26 11:02:00 -04005975 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04005976 }
Chris Mason39279cc2007-06-12 06:35:45 -04005977 btrfs_end_transaction(trans, root);
Miao Xie16cdcec2011-04-22 18:12:22 +08005978 if (BTRFS_I(inode)->delayed_node)
5979 btrfs_balance_delayed_items(root);
Josef Bacik22c44fe2011-11-30 10:45:38 -05005980
5981 return ret;
5982}
5983
5984/*
5985 * This is a copy of file_update_time. We need this so we can return error on
5986 * ENOSPC for updating the inode in the case of file write and mmap writes.
5987 */
Josef Bacike41f9412012-03-26 09:46:47 -04005988static int btrfs_update_time(struct inode *inode, struct timespec *now,
5989 int flags)
Josef Bacik22c44fe2011-11-30 10:45:38 -05005990{
Alexander Block2bc5565282012-06-15 09:49:33 +02005991 struct btrfs_root *root = BTRFS_I(inode)->root;
5992
5993 if (btrfs_root_readonly(root))
5994 return -EROFS;
5995
Josef Bacike41f9412012-03-26 09:46:47 -04005996 if (flags & S_VERSION)
Josef Bacik22c44fe2011-11-30 10:45:38 -05005997 inode_inc_iversion(inode);
Josef Bacike41f9412012-03-26 09:46:47 -04005998 if (flags & S_CTIME)
5999 inode->i_ctime = *now;
6000 if (flags & S_MTIME)
6001 inode->i_mtime = *now;
6002 if (flags & S_ATIME)
6003 inode->i_atime = *now;
6004 return btrfs_dirty_inode(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006005}
6006
Chris Masond352ac62008-09-29 15:18:18 -04006007/*
6008 * find the highest existing sequence number in a directory
6009 * and then set the in-memory index_cnt variable to reflect
6010 * free sequence numbers
6011 */
Josef Bacikaec74772008-07-24 12:12:38 -04006012static int btrfs_set_inode_index_count(struct inode *inode)
6013{
6014 struct btrfs_root *root = BTRFS_I(inode)->root;
6015 struct btrfs_key key, found_key;
6016 struct btrfs_path *path;
6017 struct extent_buffer *leaf;
6018 int ret;
6019
Li Zefan33345d012011-04-20 10:31:50 +08006020 key.objectid = btrfs_ino(inode);
David Sterba962a2982014-06-04 18:41:45 +02006021 key.type = BTRFS_DIR_INDEX_KEY;
Josef Bacikaec74772008-07-24 12:12:38 -04006022 key.offset = (u64)-1;
6023
6024 path = btrfs_alloc_path();
6025 if (!path)
6026 return -ENOMEM;
6027
6028 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
6029 if (ret < 0)
6030 goto out;
6031 /* FIXME: we should be able to handle this */
6032 if (ret == 0)
6033 goto out;
6034 ret = 0;
6035
6036 /*
6037 * MAGIC NUMBER EXPLANATION:
6038 * since we search a directory based on f_pos we have to start at 2
6039 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
6040 * else has to start at 2
6041 */
6042 if (path->slots[0] == 0) {
6043 BTRFS_I(inode)->index_cnt = 2;
6044 goto out;
6045 }
6046
6047 path->slots[0]--;
6048
6049 leaf = path->nodes[0];
6050 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
6051
Li Zefan33345d012011-04-20 10:31:50 +08006052 if (found_key.objectid != btrfs_ino(inode) ||
David Sterba962a2982014-06-04 18:41:45 +02006053 found_key.type != BTRFS_DIR_INDEX_KEY) {
Josef Bacikaec74772008-07-24 12:12:38 -04006054 BTRFS_I(inode)->index_cnt = 2;
6055 goto out;
6056 }
6057
6058 BTRFS_I(inode)->index_cnt = found_key.offset + 1;
6059out:
6060 btrfs_free_path(path);
6061 return ret;
6062}
6063
Chris Masond352ac62008-09-29 15:18:18 -04006064/*
6065 * helper to find a free sequence number in a given directory. This current
6066 * code is very simple, later versions will do smarter things in the btree
6067 */
Chris Mason3de45862008-11-17 21:02:50 -05006068int btrfs_set_inode_index(struct inode *dir, u64 *index)
Josef Bacikaec74772008-07-24 12:12:38 -04006069{
6070 int ret = 0;
6071
6072 if (BTRFS_I(dir)->index_cnt == (u64)-1) {
Miao Xie16cdcec2011-04-22 18:12:22 +08006073 ret = btrfs_inode_delayed_dir_index_count(dir);
6074 if (ret) {
6075 ret = btrfs_set_inode_index_count(dir);
6076 if (ret)
6077 return ret;
6078 }
Josef Bacikaec74772008-07-24 12:12:38 -04006079 }
6080
Chris Mason00e4e6b2008-08-05 11:18:09 -04006081 *index = BTRFS_I(dir)->index_cnt;
Josef Bacikaec74772008-07-24 12:12:38 -04006082 BTRFS_I(dir)->index_cnt++;
6083
6084 return ret;
6085}
6086
Chris Masonb0d5d102014-09-08 13:08:51 -07006087static int btrfs_insert_inode_locked(struct inode *inode)
6088{
6089 struct btrfs_iget_args args;
6090 args.location = &BTRFS_I(inode)->location;
6091 args.root = BTRFS_I(inode)->root;
6092
6093 return insert_inode_locked4(inode,
6094 btrfs_inode_hash(inode->i_ino, BTRFS_I(inode)->root),
6095 btrfs_find_actor, &args);
6096}
6097
Chris Mason39279cc2007-06-12 06:35:45 -04006098static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
6099 struct btrfs_root *root,
Josef Bacikaec74772008-07-24 12:12:38 -04006100 struct inode *dir,
Chris Mason9c583092008-01-29 15:15:18 -05006101 const char *name, int name_len,
Al Viro175a4eb2011-07-26 03:30:54 -04006102 u64 ref_objectid, u64 objectid,
6103 umode_t mode, u64 *index)
Chris Mason39279cc2007-06-12 06:35:45 -04006104{
6105 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04006106 struct btrfs_inode_item *inode_item;
Chris Mason39279cc2007-06-12 06:35:45 -04006107 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04006108 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05006109 struct btrfs_inode_ref *ref;
6110 struct btrfs_key key[2];
6111 u32 sizes[2];
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006112 int nitems = name ? 2 : 1;
Chris Mason9c583092008-01-29 15:15:18 -05006113 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04006114 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006115
Chris Mason5f39d392007-10-15 16:14:19 -04006116 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07006117 if (!path)
6118 return ERR_PTR(-ENOMEM);
Chris Mason5f39d392007-10-15 16:14:19 -04006119
Chris Mason39279cc2007-06-12 06:35:45 -04006120 inode = new_inode(root->fs_info->sb);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00006121 if (!inode) {
6122 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04006123 return ERR_PTR(-ENOMEM);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00006124 }
Chris Mason39279cc2007-06-12 06:35:45 -04006125
Li Zefan581bb052011-04-20 10:06:11 +08006126 /*
Filipe Manana5762b5c2014-08-01 00:10:32 +01006127 * O_TMPFILE, set link count to 0, so that after this point,
6128 * we fill in an inode item with the correct link count.
6129 */
6130 if (!name)
6131 set_nlink(inode, 0);
6132
6133 /*
Li Zefan581bb052011-04-20 10:06:11 +08006134 * we have to initialize this early, so we can reclaim the inode
6135 * number if we fail afterwards in this function.
6136 */
6137 inode->i_ino = objectid;
6138
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006139 if (dir && name) {
liubo1abe9b82011-03-24 11:18:59 +00006140 trace_btrfs_inode_request(dir);
6141
Chris Mason3de45862008-11-17 21:02:50 -05006142 ret = btrfs_set_inode_index(dir, index);
Shen Feng09771432009-04-02 16:46:06 -04006143 if (ret) {
Yoshinori Sano8fb27642011-04-09 02:30:07 +00006144 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04006145 iput(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04006146 return ERR_PTR(ret);
Shen Feng09771432009-04-02 16:46:06 -04006147 }
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006148 } else if (dir) {
6149 *index = 0;
Josef Bacikaec74772008-07-24 12:12:38 -04006150 }
6151 /*
6152 * index_cnt is ignored for everything but a dir,
6153 * btrfs_get_inode_index_count has an explanation for the magic
6154 * number
6155 */
6156 BTRFS_I(inode)->index_cnt = 2;
Miao Xie67de1172013-12-26 13:07:06 +08006157 BTRFS_I(inode)->dir_index = *index;
Chris Mason39279cc2007-06-12 06:35:45 -04006158 BTRFS_I(inode)->root = root;
Chris Masone02119d2008-09-05 16:13:11 -04006159 BTRFS_I(inode)->generation = trans->transid;
Josef Bacik76195852010-11-19 02:18:02 +00006160 inode->i_generation = BTRFS_I(inode)->generation;
Chris Masonb888db22007-08-27 16:49:44 -04006161
Josef Bacik5dc562c2012-08-17 13:14:17 -04006162 /*
6163 * We could have gotten an inode number from somebody who was fsynced
6164 * and then removed in this same transaction, so let's just set full
6165 * sync since it will be a full sync anyway and this will blow away the
6166 * old info in the log.
6167 */
6168 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
6169
Chris Mason9c583092008-01-29 15:15:18 -05006170 key[0].objectid = objectid;
David Sterba962a2982014-06-04 18:41:45 +02006171 key[0].type = BTRFS_INODE_ITEM_KEY;
Chris Mason9c583092008-01-29 15:15:18 -05006172 key[0].offset = 0;
6173
Chris Mason9c583092008-01-29 15:15:18 -05006174 sizes[0] = sizeof(struct btrfs_inode_item);
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006175
6176 if (name) {
6177 /*
6178 * Start new inodes with an inode_ref. This is slightly more
6179 * efficient for small numbers of hard links since they will
6180 * be packed into one item. Extended refs will kick in if we
6181 * add more hard links than can fit in the ref item.
6182 */
6183 key[1].objectid = objectid;
David Sterba962a2982014-06-04 18:41:45 +02006184 key[1].type = BTRFS_INODE_REF_KEY;
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006185 key[1].offset = ref_objectid;
6186
6187 sizes[1] = name_len + sizeof(*ref);
6188 }
Chris Mason9c583092008-01-29 15:15:18 -05006189
Chris Masonb0d5d102014-09-08 13:08:51 -07006190 location = &BTRFS_I(inode)->location;
6191 location->objectid = objectid;
6192 location->offset = 0;
David Sterba962a2982014-06-04 18:41:45 +02006193 location->type = BTRFS_INODE_ITEM_KEY;
Chris Masonb0d5d102014-09-08 13:08:51 -07006194
6195 ret = btrfs_insert_inode_locked(inode);
6196 if (ret < 0)
6197 goto fail;
6198
Chris Masonb9473432009-03-13 11:00:37 -04006199 path->leave_spinning = 1;
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006200 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, nitems);
Chris Mason9c583092008-01-29 15:15:18 -05006201 if (ret != 0)
Chris Masonb0d5d102014-09-08 13:08:51 -07006202 goto fail_unlock;
Chris Mason5f39d392007-10-15 16:14:19 -04006203
Dmitry Monakhovecc11fab2010-03-04 17:31:47 +03006204 inode_init_owner(inode, dir, mode);
Yan Zhenga76a3cd2008-10-09 11:46:29 -04006205 inode_set_bytes(inode, 0);
chandan r9cc97d62012-07-04 12:48:07 +05306206
6207 inode->i_mtime = CURRENT_TIME;
6208 inode->i_atime = inode->i_mtime;
6209 inode->i_ctime = inode->i_mtime;
6210 BTRFS_I(inode)->i_otime = inode->i_mtime;
6211
Chris Mason5f39d392007-10-15 16:14:19 -04006212 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
6213 struct btrfs_inode_item);
Li Zefan293f7e02012-07-10 00:58:58 -06006214 memset_extent_buffer(path->nodes[0], 0, (unsigned long)inode_item,
6215 sizeof(*inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04006216 fill_inode_item(trans, path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05006217
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006218 if (name) {
6219 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
6220 struct btrfs_inode_ref);
6221 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
6222 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
6223 ptr = (unsigned long)(ref + 1);
6224 write_extent_buffer(path->nodes[0], name, ptr, name_len);
6225 }
Chris Mason9c583092008-01-29 15:15:18 -05006226
Chris Mason5f39d392007-10-15 16:14:19 -04006227 btrfs_mark_buffer_dirty(path->nodes[0]);
6228 btrfs_free_path(path);
6229
Christoph Hellwig6cbff002009-04-17 10:37:41 +02006230 btrfs_inherit_iflags(inode, dir);
6231
Al Viro569254b2011-07-24 17:08:40 -04006232 if (S_ISREG(mode)) {
Chris Mason94272162009-07-02 12:26:06 -04006233 if (btrfs_test_opt(root, NODATASUM))
6234 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
Liu Bo213490b2012-09-11 08:33:50 -06006235 if (btrfs_test_opt(root, NODATACOW))
Josef Bacikf2bdf9a2013-02-21 15:28:28 -05006236 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW |
6237 BTRFS_INODE_NODATASUM;
Chris Mason94272162009-07-02 12:26:06 -04006238 }
6239
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006240 inode_tree_add(inode);
liubo1abe9b82011-03-24 11:18:59 +00006241
6242 trace_btrfs_inode_new(inode);
Chris Mason1973f0f2011-06-24 13:13:29 -04006243 btrfs_set_inode_last_trans(trans, inode);
liubo1abe9b82011-03-24 11:18:59 +00006244
Alexander Block8ea05e32012-07-25 17:35:53 +02006245 btrfs_update_root_times(trans, root);
6246
Filipe David Borba Manana63541922014-01-07 11:47:46 +00006247 ret = btrfs_inode_inherit_props(trans, inode, dir);
6248 if (ret)
6249 btrfs_err(root->fs_info,
6250 "error inheriting props for ino %llu (root %llu): %d",
6251 btrfs_ino(inode), root->root_key.objectid, ret);
6252
Chris Mason39279cc2007-06-12 06:35:45 -04006253 return inode;
Chris Masonb0d5d102014-09-08 13:08:51 -07006254
6255fail_unlock:
6256 unlock_new_inode(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04006257fail:
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006258 if (dir && name)
Josef Bacikaec74772008-07-24 12:12:38 -04006259 BTRFS_I(dir)->index_cnt--;
Chris Mason5f39d392007-10-15 16:14:19 -04006260 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04006261 iput(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04006262 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04006263}
6264
6265static inline u8 btrfs_inode_type(struct inode *inode)
6266{
6267 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
6268}
6269
Chris Masond352ac62008-09-29 15:18:18 -04006270/*
6271 * utility function to add 'inode' into 'parent_inode' with
6272 * a give name and a given sequence number.
6273 * if 'add_backref' is true, also insert a backref from the
6274 * inode to the parent directory.
6275 */
Chris Masone02119d2008-09-05 16:13:11 -04006276int btrfs_add_link(struct btrfs_trans_handle *trans,
6277 struct inode *parent_inode, struct inode *inode,
6278 const char *name, int name_len, int add_backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04006279{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006280 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006281 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -04006282 struct btrfs_root *root = BTRFS_I(parent_inode)->root;
Li Zefan33345d012011-04-20 10:31:50 +08006283 u64 ino = btrfs_ino(inode);
6284 u64 parent_ino = btrfs_ino(parent_inode);
Chris Mason5f39d392007-10-15 16:14:19 -04006285
Li Zefan33345d012011-04-20 10:31:50 +08006286 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006287 memcpy(&key, &BTRFS_I(inode)->root->root_key, sizeof(key));
6288 } else {
Li Zefan33345d012011-04-20 10:31:50 +08006289 key.objectid = ino;
David Sterba962a2982014-06-04 18:41:45 +02006290 key.type = BTRFS_INODE_ITEM_KEY;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006291 key.offset = 0;
6292 }
Chris Mason39279cc2007-06-12 06:35:45 -04006293
Li Zefan33345d012011-04-20 10:31:50 +08006294 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006295 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
6296 key.objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08006297 parent_ino, index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006298 } else if (add_backref) {
Li Zefan33345d012011-04-20 10:31:50 +08006299 ret = btrfs_insert_inode_ref(trans, root, name, name_len, ino,
6300 parent_ino, index);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006301 }
6302
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006303 /* Nothing to clean up yet */
6304 if (ret)
6305 return ret;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006306
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006307 ret = btrfs_insert_dir_item(trans, root, name, name_len,
6308 parent_inode, &key,
6309 btrfs_inode_type(inode), index);
Chris Mason9c520572012-12-17 14:26:57 -05006310 if (ret == -EEXIST || ret == -EOVERFLOW)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006311 goto fail_dir_item;
6312 else if (ret) {
6313 btrfs_abort_transaction(trans, root, ret);
6314 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006315 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006316
6317 btrfs_i_size_write(parent_inode, parent_inode->i_size +
6318 name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04006319 inode_inc_iversion(parent_inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006320 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
6321 ret = btrfs_update_inode(trans, root, parent_inode);
6322 if (ret)
6323 btrfs_abort_transaction(trans, root, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04006324 return ret;
Chris Masonfe66a052012-02-20 08:40:56 -05006325
6326fail_dir_item:
6327 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
6328 u64 local_index;
6329 int err;
6330 err = btrfs_del_root_ref(trans, root->fs_info->tree_root,
6331 key.objectid, root->root_key.objectid,
6332 parent_ino, &local_index, name, name_len);
6333
6334 } else if (add_backref) {
6335 u64 local_index;
6336 int err;
6337
6338 err = btrfs_del_inode_ref(trans, root, name, name_len,
6339 ino, parent_ino, &local_index);
6340 }
6341 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006342}
6343
6344static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Josef Bacika1b075d2010-11-19 20:36:11 +00006345 struct inode *dir, struct dentry *dentry,
6346 struct inode *inode, int backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04006347{
Josef Bacika1b075d2010-11-19 20:36:11 +00006348 int err = btrfs_add_link(trans, dir, inode,
6349 dentry->d_name.name, dentry->d_name.len,
6350 backref, index);
Chris Mason39279cc2007-06-12 06:35:45 -04006351 if (err > 0)
6352 err = -EEXIST;
6353 return err;
6354}
6355
Josef Bacik618e21d2007-07-11 10:18:17 -04006356static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
Al Viro1a67aaf2011-07-26 01:52:52 -04006357 umode_t mode, dev_t rdev)
Josef Bacik618e21d2007-07-11 10:18:17 -04006358{
6359 struct btrfs_trans_handle *trans;
6360 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05006361 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04006362 int err;
6363 int drop_inode = 0;
6364 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006365 u64 index = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04006366
6367 if (!new_valid_dev(rdev))
6368 return -EINVAL;
6369
Josef Bacik9ed74f22009-09-11 16:12:44 -04006370 /*
6371 * 2 for inode item and ref
6372 * 2 for dir items
6373 * 1 for xattr if selinux is on
6374 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04006375 trans = btrfs_start_transaction(root, 5);
6376 if (IS_ERR(trans))
6377 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05006378
Li Zefan581bb052011-04-20 10:06:11 +08006379 err = btrfs_find_free_ino(root, &objectid);
6380 if (err)
6381 goto out_unlock;
6382
Josef Bacikaec74772008-07-24 12:12:38 -04006383 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08006384 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f12011-05-11 15:26:06 -04006385 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006386 if (IS_ERR(inode)) {
6387 err = PTR_ERR(inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04006388 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006389 }
Josef Bacik618e21d2007-07-11 10:18:17 -04006390
Casey Schauflerad19db72011-12-15 10:09:07 -05006391 /*
6392 * If the active LSM wants to access the inode during
6393 * d_instantiate it needs these. Smack checks to see
6394 * if the filesystem supports xattrs by looking at the
6395 * ops vector.
6396 */
Casey Schauflerad19db72011-12-15 10:09:07 -05006397 inode->i_op = &btrfs_special_inode_operations;
Chris Masonb0d5d102014-09-08 13:08:51 -07006398 init_special_inode(inode, inode->i_mode, rdev);
6399
6400 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik618e21d2007-07-11 10:18:17 -04006401 if (err)
Chris Masonb0d5d102014-09-08 13:08:51 -07006402 goto out_unlock_inode;
6403
6404 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
6405 if (err) {
6406 goto out_unlock_inode;
6407 } else {
Yan1b4ab1b2007-08-29 09:11:44 -04006408 btrfs_update_inode(trans, root, inode);
Chris Masonb0d5d102014-09-08 13:08:51 -07006409 unlock_new_inode(inode);
Al Viro08c422c2011-12-23 07:58:13 -05006410 d_instantiate(dentry, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04006411 }
Chris Masonb0d5d102014-09-08 13:08:51 -07006412
Josef Bacik618e21d2007-07-11 10:18:17 -04006413out_unlock:
Josef Bacik7ad85bb2012-01-12 19:10:12 -05006414 btrfs_end_transaction(trans, root);
Josef Bacikc581afc2014-02-06 16:06:06 -05006415 btrfs_balance_delayed_items(root);
Liu Bob53d3f52012-11-14 14:34:34 +00006416 btrfs_btree_balance_dirty(root);
Josef Bacik618e21d2007-07-11 10:18:17 -04006417 if (drop_inode) {
6418 inode_dec_link_count(inode);
6419 iput(inode);
6420 }
Josef Bacik618e21d2007-07-11 10:18:17 -04006421 return err;
Chris Masonb0d5d102014-09-08 13:08:51 -07006422
6423out_unlock_inode:
6424 drop_inode = 1;
6425 unlock_new_inode(inode);
6426 goto out_unlock;
6427
Josef Bacik618e21d2007-07-11 10:18:17 -04006428}
6429
Chris Mason39279cc2007-06-12 06:35:45 -04006430static int btrfs_create(struct inode *dir, struct dentry *dentry,
Al Viroebfc3b42012-06-10 18:05:36 -04006431 umode_t mode, bool excl)
Chris Mason39279cc2007-06-12 06:35:45 -04006432{
6433 struct btrfs_trans_handle *trans;
6434 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05006435 struct inode *inode = NULL;
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006436 int drop_inode_on_err = 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -04006437 int err;
Chris Mason39279cc2007-06-12 06:35:45 -04006438 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006439 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006440
Josef Bacik9ed74f22009-09-11 16:12:44 -04006441 /*
6442 * 2 for inode item and ref
6443 * 2 for dir items
6444 * 1 for xattr if selinux is on
6445 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04006446 trans = btrfs_start_transaction(root, 5);
6447 if (IS_ERR(trans))
6448 return PTR_ERR(trans);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006449
Li Zefan581bb052011-04-20 10:06:11 +08006450 err = btrfs_find_free_ino(root, &objectid);
6451 if (err)
6452 goto out_unlock;
6453
Josef Bacikaec74772008-07-24 12:12:38 -04006454 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08006455 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f12011-05-11 15:26:06 -04006456 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006457 if (IS_ERR(inode)) {
6458 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006459 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006460 }
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006461 drop_inode_on_err = 1;
Casey Schauflerad19db72011-12-15 10:09:07 -05006462 /*
6463 * If the active LSM wants to access the inode during
6464 * d_instantiate it needs these. Smack checks to see
6465 * if the filesystem supports xattrs by looking at the
6466 * ops vector.
6467 */
6468 inode->i_fop = &btrfs_file_operations;
6469 inode->i_op = &btrfs_file_inode_operations;
Chris Masonb0d5d102014-09-08 13:08:51 -07006470 inode->i_mapping->a_ops = &btrfs_aops;
Chris Masonb0d5d102014-09-08 13:08:51 -07006471
6472 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
6473 if (err)
6474 goto out_unlock_inode;
6475
6476 err = btrfs_update_inode(trans, root, inode);
6477 if (err)
6478 goto out_unlock_inode;
Casey Schauflerad19db72011-12-15 10:09:07 -05006479
Josef Bacika1b075d2010-11-19 20:36:11 +00006480 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04006481 if (err)
Chris Masonb0d5d102014-09-08 13:08:51 -07006482 goto out_unlock_inode;
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006483
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006484 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Masonb0d5d102014-09-08 13:08:51 -07006485 unlock_new_inode(inode);
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006486 d_instantiate(dentry, inode);
6487
Chris Mason39279cc2007-06-12 06:35:45 -04006488out_unlock:
Josef Bacik7ad85bb2012-01-12 19:10:12 -05006489 btrfs_end_transaction(trans, root);
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006490 if (err && drop_inode_on_err) {
Chris Mason39279cc2007-06-12 06:35:45 -04006491 inode_dec_link_count(inode);
6492 iput(inode);
6493 }
Josef Bacikc581afc2014-02-06 16:06:06 -05006494 btrfs_balance_delayed_items(root);
Liu Bob53d3f52012-11-14 14:34:34 +00006495 btrfs_btree_balance_dirty(root);
Chris Mason39279cc2007-06-12 06:35:45 -04006496 return err;
Chris Masonb0d5d102014-09-08 13:08:51 -07006497
6498out_unlock_inode:
6499 unlock_new_inode(inode);
6500 goto out_unlock;
6501
Chris Mason39279cc2007-06-12 06:35:45 -04006502}
6503
6504static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
6505 struct dentry *dentry)
6506{
6507 struct btrfs_trans_handle *trans;
6508 struct btrfs_root *root = BTRFS_I(dir)->root;
David Howells2b0143b2015-03-17 22:25:59 +00006509 struct inode *inode = d_inode(old_dentry);
Chris Mason00e4e6b2008-08-05 11:18:09 -04006510 u64 index;
Chris Mason39279cc2007-06-12 06:35:45 -04006511 int err;
6512 int drop_inode = 0;
6513
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00006514 /* do not allow sys_link's with other subvols of the same device */
6515 if (root->objectid != BTRFS_I(inode)->root->objectid)
Mark Fasheh3ab35642011-03-22 17:20:26 +00006516 return -EXDEV;
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00006517
Mark Fashehf1863732012-08-08 11:32:27 -07006518 if (inode->i_nlink >= BTRFS_LINK_MAX)
Al Viroc055e992011-03-04 17:15:18 +00006519 return -EMLINK;
Josef Bacik9ed74f22009-09-11 16:12:44 -04006520
Chris Mason3de45862008-11-17 21:02:50 -05006521 err = btrfs_set_inode_index(dir, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04006522 if (err)
6523 goto fail;
6524
Yan, Zhenga22285a2010-05-16 10:48:46 -04006525 /*
Miao Xie7e6b6462011-02-18 09:21:17 +00006526 * 2 items for inode and inode ref
Yan, Zhenga22285a2010-05-16 10:48:46 -04006527 * 2 items for dir items
Miao Xie7e6b6462011-02-18 09:21:17 +00006528 * 1 item for parent inode
Yan, Zhenga22285a2010-05-16 10:48:46 -04006529 */
Miao Xie7e6b6462011-02-18 09:21:17 +00006530 trans = btrfs_start_transaction(root, 5);
Yan, Zhenga22285a2010-05-16 10:48:46 -04006531 if (IS_ERR(trans)) {
6532 err = PTR_ERR(trans);
6533 goto fail;
6534 }
Chris Mason5f39d392007-10-15 16:14:19 -04006535
Miao Xie67de1172013-12-26 13:07:06 +08006536 /* There are several dir indexes for this inode, clear the cache. */
6537 BTRFS_I(inode)->dir_index = 0ULL;
Zach Brown8b558c52013-10-16 12:10:34 -07006538 inc_nlink(inode);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04006539 inode_inc_iversion(inode);
Miao Xie31534952011-04-13 13:19:21 +08006540 inode->i_ctime = CURRENT_TIME;
Al Viro7de9c6ee2010-10-23 11:11:40 -04006541 ihold(inode);
Josef Bacike9976152012-10-11 15:53:56 -04006542 set_bit(BTRFS_INODE_COPY_EVERYTHING, &BTRFS_I(inode)->runtime_flags);
Josef Bacikaec74772008-07-24 12:12:38 -04006543
Josef Bacika1b075d2010-11-19 20:36:11 +00006544 err = btrfs_add_nondir(trans, dir, dentry, inode, 1, index);
Chris Mason5f39d392007-10-15 16:14:19 -04006545
Yan, Zhenga5719522009-09-24 09:17:31 -04006546 if (err) {
Chris Mason39279cc2007-06-12 06:35:45 -04006547 drop_inode = 1;
Yan, Zhenga5719522009-09-24 09:17:31 -04006548 } else {
Al Viro10d9f302011-07-16 23:09:10 -04006549 struct dentry *parent = dentry->d_parent;
Yan, Zhenga5719522009-09-24 09:17:31 -04006550 err = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006551 if (err)
6552 goto fail;
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006553 if (inode->i_nlink == 1) {
6554 /*
6555 * If new hard link count is 1, it's a file created
6556 * with open(2) O_TMPFILE flag.
6557 */
6558 err = btrfs_orphan_del(trans, inode);
6559 if (err)
6560 goto fail;
6561 }
Al Viro08c422c2011-12-23 07:58:13 -05006562 d_instantiate(dentry, inode);
Josef Bacik6a912212010-11-20 09:48:00 +00006563 btrfs_log_new_name(trans, inode, NULL, parent);
Yan, Zhenga5719522009-09-24 09:17:31 -04006564 }
Chris Mason39279cc2007-06-12 06:35:45 -04006565
Josef Bacik7ad85bb2012-01-12 19:10:12 -05006566 btrfs_end_transaction(trans, root);
Josef Bacikc581afc2014-02-06 16:06:06 -05006567 btrfs_balance_delayed_items(root);
Chris Mason1832a6d2007-12-21 16:27:21 -05006568fail:
Chris Mason39279cc2007-06-12 06:35:45 -04006569 if (drop_inode) {
6570 inode_dec_link_count(inode);
6571 iput(inode);
6572 }
Liu Bob53d3f52012-11-14 14:34:34 +00006573 btrfs_btree_balance_dirty(root);
Chris Mason39279cc2007-06-12 06:35:45 -04006574 return err;
6575}
6576
Al Viro18bb1db2011-07-26 01:41:39 -04006577static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Chris Mason39279cc2007-06-12 06:35:45 -04006578{
Chris Masonb9d86662008-05-02 16:13:49 -04006579 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04006580 struct btrfs_trans_handle *trans;
6581 struct btrfs_root *root = BTRFS_I(dir)->root;
6582 int err = 0;
6583 int drop_on_err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04006584 u64 objectid = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006585 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006586
Josef Bacik9ed74f22009-09-11 16:12:44 -04006587 /*
6588 * 2 items for inode and ref
6589 * 2 items for dir items
6590 * 1 for xattr if selinux is on
6591 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04006592 trans = btrfs_start_transaction(root, 5);
6593 if (IS_ERR(trans))
6594 return PTR_ERR(trans);
Chris Mason39279cc2007-06-12 06:35:45 -04006595
Li Zefan581bb052011-04-20 10:06:11 +08006596 err = btrfs_find_free_ino(root, &objectid);
6597 if (err)
6598 goto out_fail;
6599
Josef Bacikaec74772008-07-24 12:12:38 -04006600 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08006601 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f12011-05-11 15:26:06 -04006602 S_IFDIR | mode, &index);
Chris Mason39279cc2007-06-12 06:35:45 -04006603 if (IS_ERR(inode)) {
6604 err = PTR_ERR(inode);
6605 goto out_fail;
6606 }
Chris Mason5f39d392007-10-15 16:14:19 -04006607
Chris Mason39279cc2007-06-12 06:35:45 -04006608 drop_on_err = 1;
Chris Masonb0d5d102014-09-08 13:08:51 -07006609 /* these must be set before we unlock the inode */
6610 inode->i_op = &btrfs_dir_inode_operations;
6611 inode->i_fop = &btrfs_dir_file_operations;
Josef Bacik33268ea2008-07-24 12:16:36 -04006612
Eric Paris2a7dba32011-02-01 11:05:39 -05006613 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04006614 if (err)
Chris Masonb0d5d102014-09-08 13:08:51 -07006615 goto out_fail_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04006616
Chris Masondbe674a2008-07-17 12:54:05 -04006617 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04006618 err = btrfs_update_inode(trans, root, inode);
6619 if (err)
Chris Masonb0d5d102014-09-08 13:08:51 -07006620 goto out_fail_inode;
Chris Mason5f39d392007-10-15 16:14:19 -04006621
Josef Bacika1b075d2010-11-19 20:36:11 +00006622 err = btrfs_add_link(trans, dir, inode, dentry->d_name.name,
6623 dentry->d_name.len, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04006624 if (err)
Chris Masonb0d5d102014-09-08 13:08:51 -07006625 goto out_fail_inode;
Chris Mason5f39d392007-10-15 16:14:19 -04006626
Chris Mason39279cc2007-06-12 06:35:45 -04006627 d_instantiate(dentry, inode);
Chris Masonb0d5d102014-09-08 13:08:51 -07006628 /*
6629 * mkdir is special. We're unlocking after we call d_instantiate
6630 * to avoid a race with nfsd calling d_instantiate.
6631 */
6632 unlock_new_inode(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006633 drop_on_err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006634
6635out_fail:
Josef Bacik7ad85bb2012-01-12 19:10:12 -05006636 btrfs_end_transaction(trans, root);
Wang Shilongc7cfb8a2014-12-24 14:45:30 +08006637 if (drop_on_err) {
6638 inode_dec_link_count(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006639 iput(inode);
Wang Shilongc7cfb8a2014-12-24 14:45:30 +08006640 }
Josef Bacikc581afc2014-02-06 16:06:06 -05006641 btrfs_balance_delayed_items(root);
Liu Bob53d3f52012-11-14 14:34:34 +00006642 btrfs_btree_balance_dirty(root);
Chris Mason39279cc2007-06-12 06:35:45 -04006643 return err;
Chris Masonb0d5d102014-09-08 13:08:51 -07006644
6645out_fail_inode:
6646 unlock_new_inode(inode);
6647 goto out_fail;
Chris Mason39279cc2007-06-12 06:35:45 -04006648}
6649
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08006650/* Find next extent map of a given extent map, caller needs to ensure locks */
6651static struct extent_map *next_extent_map(struct extent_map *em)
6652{
6653 struct rb_node *next;
6654
6655 next = rb_next(&em->rb_node);
6656 if (!next)
6657 return NULL;
6658 return container_of(next, struct extent_map, rb_node);
6659}
6660
6661static struct extent_map *prev_extent_map(struct extent_map *em)
6662{
6663 struct rb_node *prev;
6664
6665 prev = rb_prev(&em->rb_node);
6666 if (!prev)
6667 return NULL;
6668 return container_of(prev, struct extent_map, rb_node);
6669}
6670
Chris Masond352ac62008-09-29 15:18:18 -04006671/* helper for btfs_get_extent. Given an existing extent in the tree,
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08006672 * the existing extent is the nearest extent to map_start,
Chris Masond352ac62008-09-29 15:18:18 -04006673 * and an extent that you want to insert, deal with overlap and insert
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08006674 * the best fitted new extent into the tree.
Chris Masond352ac62008-09-29 15:18:18 -04006675 */
Chris Mason3b951512008-04-17 11:29:12 -04006676static int merge_extent_mapping(struct extent_map_tree *em_tree,
6677 struct extent_map *existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04006678 struct extent_map *em,
Qu Wenruo51f395a2014-08-08 13:06:20 +08006679 u64 map_start)
Chris Mason3b951512008-04-17 11:29:12 -04006680{
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08006681 struct extent_map *prev;
6682 struct extent_map *next;
6683 u64 start;
6684 u64 end;
Chris Mason3b951512008-04-17 11:29:12 -04006685 u64 start_diff;
Chris Mason3b951512008-04-17 11:29:12 -04006686
Chris Masone6dcd2d2008-07-17 12:53:50 -04006687 BUG_ON(map_start < em->start || map_start >= extent_map_end(em));
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08006688
6689 if (existing->start > map_start) {
6690 next = existing;
6691 prev = prev_extent_map(next);
6692 } else {
6693 prev = existing;
6694 next = next_extent_map(prev);
6695 }
6696
6697 start = prev ? extent_map_end(prev) : em->start;
6698 start = max_t(u64, start, em->start);
6699 end = next ? next->start : extent_map_end(em);
6700 end = min_t(u64, end, extent_map_end(em));
6701 start_diff = start - em->start;
6702 em->start = start;
6703 em->len = end - start;
Chris Masonc8b97812008-10-29 14:49:59 -04006704 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
6705 !test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04006706 em->block_start += start_diff;
Chris Masonc8b97812008-10-29 14:49:59 -04006707 em->block_len -= start_diff;
6708 }
Josef Bacik09a2a8f92013-04-05 16:51:15 -04006709 return add_extent_mapping(em_tree, em, 0);
Chris Mason3b951512008-04-17 11:29:12 -04006710}
6711
Chris Masonc8b97812008-10-29 14:49:59 -04006712static noinline int uncompress_inline(struct btrfs_path *path,
6713 struct inode *inode, struct page *page,
6714 size_t pg_offset, u64 extent_offset,
6715 struct btrfs_file_extent_item *item)
6716{
6717 int ret;
6718 struct extent_buffer *leaf = path->nodes[0];
6719 char *tmp;
6720 size_t max_size;
6721 unsigned long inline_size;
6722 unsigned long ptr;
Li Zefan261507a02010-12-17 14:21:50 +08006723 int compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04006724
6725 WARN_ON(pg_offset != 0);
Li Zefan261507a02010-12-17 14:21:50 +08006726 compress_type = btrfs_file_extent_compression(leaf, item);
Chris Masonc8b97812008-10-29 14:49:59 -04006727 max_size = btrfs_file_extent_ram_bytes(leaf, item);
6728 inline_size = btrfs_file_extent_inline_item_len(leaf,
Ross Kirkdd3cc162013-09-16 15:58:09 +01006729 btrfs_item_nr(path->slots[0]));
Chris Masonc8b97812008-10-29 14:49:59 -04006730 tmp = kmalloc(inline_size, GFP_NOFS);
Tsutomu Itoh8d413712011-04-25 19:43:52 -04006731 if (!tmp)
6732 return -ENOMEM;
Chris Masonc8b97812008-10-29 14:49:59 -04006733 ptr = btrfs_file_extent_inline_start(item);
6734
6735 read_extent_buffer(leaf, tmp, ptr, inline_size);
6736
Chris Mason5b050f02008-11-11 09:34:41 -05006737 max_size = min_t(unsigned long, PAGE_CACHE_SIZE, max_size);
Li Zefan261507a02010-12-17 14:21:50 +08006738 ret = btrfs_decompress(compress_type, tmp, page,
6739 extent_offset, inline_size, max_size);
Chris Masonc8b97812008-10-29 14:49:59 -04006740 kfree(tmp);
Zach Brown166ae5a2014-05-09 17:15:10 -04006741 return ret;
Chris Masonc8b97812008-10-29 14:49:59 -04006742}
6743
Chris Masond352ac62008-09-29 15:18:18 -04006744/*
6745 * a bit scary, this does extent mapping from logical file offset to the disk.
Chris Masond3977122009-01-05 21:25:51 -05006746 * the ugly parts come from merging extents from the disk with the in-ram
6747 * representation. This gets more complex because of the data=ordered code,
Chris Masond352ac62008-09-29 15:18:18 -04006748 * where the in-ram extents might be locked pending data=ordered completion.
6749 *
6750 * This also copies inline extents directly into the page.
6751 */
Chris Masond3977122009-01-05 21:25:51 -05006752
Chris Masona52d9a82007-08-27 16:49:44 -04006753struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05006754 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04006755 int create)
6756{
6757 int ret;
6758 int err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04006759 u64 extent_start = 0;
6760 u64 extent_end = 0;
Li Zefan33345d012011-04-20 10:31:50 +08006761 u64 objectid = btrfs_ino(inode);
Chris Masona52d9a82007-08-27 16:49:44 -04006762 u32 found_type;
Chris Masonf4219502008-07-22 11:18:09 -04006763 struct btrfs_path *path = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -04006764 struct btrfs_root *root = BTRFS_I(inode)->root;
6765 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04006766 struct extent_buffer *leaf;
6767 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04006768 struct extent_map *em = NULL;
6769 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05006770 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04006771 struct btrfs_trans_handle *trans = NULL;
Filipe Manana7ffbb592014-06-09 03:48:05 +01006772 const bool new_inline = !page || create;
Chris Masona52d9a82007-08-27 16:49:44 -04006773
Chris Masona52d9a82007-08-27 16:49:44 -04006774again:
Chris Mason890871b2009-09-02 16:24:52 -04006775 read_lock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05006776 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04006777 if (em)
6778 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason890871b2009-09-02 16:24:52 -04006779 read_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05006780
Chris Masona52d9a82007-08-27 16:49:44 -04006781 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04006782 if (em->start > start || em->start + em->len <= start)
6783 free_extent_map(em);
6784 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05006785 free_extent_map(em);
6786 else
6787 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04006788 }
David Sterba172ddd62011-04-21 00:48:27 +02006789 em = alloc_extent_map();
Chris Masona52d9a82007-08-27 16:49:44 -04006790 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05006791 err = -ENOMEM;
6792 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04006793 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006794 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05006795 em->start = EXTENT_MAP_HOLE;
Chris Mason445a6942008-11-10 11:53:33 -05006796 em->orig_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05006797 em->len = (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -04006798 em->block_len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04006799
6800 if (!path) {
6801 path = btrfs_alloc_path();
Josef Bacik026fd312011-05-13 10:32:11 -04006802 if (!path) {
6803 err = -ENOMEM;
6804 goto out;
6805 }
6806 /*
6807 * Chances are we'll be called again, so go ahead and do
6808 * readahead
6809 */
6810 path->reada = 1;
Chris Masonf4219502008-07-22 11:18:09 -04006811 }
6812
Chris Mason179e29e2007-11-01 11:28:41 -04006813 ret = btrfs_lookup_file_extent(trans, root, path,
6814 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04006815 if (ret < 0) {
6816 err = ret;
6817 goto out;
6818 }
6819
6820 if (ret != 0) {
6821 if (path->slots[0] == 0)
6822 goto not_found;
6823 path->slots[0]--;
6824 }
6825
Chris Mason5f39d392007-10-15 16:14:19 -04006826 leaf = path->nodes[0];
6827 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04006828 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04006829 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04006830 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
David Sterba962a2982014-06-04 18:41:45 +02006831 found_type = found_key.type;
Chris Mason5f39d392007-10-15 16:14:19 -04006832 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04006833 found_type != BTRFS_EXTENT_DATA_KEY) {
Josef Bacik25a50342013-10-14 12:08:38 -04006834 /*
6835 * If we backup past the first extent we want to move forward
6836 * and see if there is an extent in front of us, otherwise we'll
6837 * say there is a hole for our whole search range which can
6838 * cause problems.
6839 */
6840 extent_end = start;
6841 goto next;
Chris Masona52d9a82007-08-27 16:49:44 -04006842 }
6843
Chris Mason5f39d392007-10-15 16:14:19 -04006844 found_type = btrfs_file_extent_type(leaf, item);
6845 extent_start = found_key.offset;
Yan Zhengd899e052008-10-30 14:25:28 -04006846 if (found_type == BTRFS_FILE_EXTENT_REG ||
6847 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04006848 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04006849 btrfs_file_extent_num_bytes(leaf, item);
Yan Zheng9036c102008-10-30 14:19:41 -04006850 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
6851 size_t size;
Chris Mason514ac8a2014-01-03 21:07:00 -08006852 size = btrfs_file_extent_inline_len(leaf, path->slots[0], item);
Qu Wenruofda28322013-02-26 08:10:22 +00006853 extent_end = ALIGN(extent_start + size, root->sectorsize);
Yan Zheng9036c102008-10-30 14:19:41 -04006854 }
Josef Bacik25a50342013-10-14 12:08:38 -04006855next:
Yan Zheng9036c102008-10-30 14:19:41 -04006856 if (start >= extent_end) {
6857 path->slots[0]++;
6858 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
6859 ret = btrfs_next_leaf(root, path);
6860 if (ret < 0) {
6861 err = ret;
6862 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04006863 }
Yan Zheng9036c102008-10-30 14:19:41 -04006864 if (ret > 0)
6865 goto not_found;
6866 leaf = path->nodes[0];
Chris Masona52d9a82007-08-27 16:49:44 -04006867 }
Yan Zheng9036c102008-10-30 14:19:41 -04006868 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
6869 if (found_key.objectid != objectid ||
6870 found_key.type != BTRFS_EXTENT_DATA_KEY)
6871 goto not_found;
6872 if (start + len <= found_key.offset)
6873 goto not_found;
Wang Shilonge2eca692014-07-17 11:44:14 +08006874 if (start > found_key.offset)
6875 goto next;
Yan Zheng9036c102008-10-30 14:19:41 -04006876 em->start = start;
Josef Bacik70c8a912012-10-11 16:54:30 -04006877 em->orig_start = start;
Yan Zheng9036c102008-10-30 14:19:41 -04006878 em->len = found_key.offset - start;
6879 goto not_found_em;
6880 }
6881
Filipe Manana7ffbb592014-06-09 03:48:05 +01006882 btrfs_extent_item_to_extent_map(inode, path, item, new_inline, em);
6883
Yan Zhengd899e052008-10-30 14:25:28 -04006884 if (found_type == BTRFS_FILE_EXTENT_REG ||
6885 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04006886 goto insert;
6887 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04006888 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04006889 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04006890 size_t size;
6891 size_t extent_offset;
6892 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04006893
Filipe Manana7ffbb592014-06-09 03:48:05 +01006894 if (new_inline)
Yan689f9342007-10-29 11:41:07 -04006895 goto out;
Yan689f9342007-10-29 11:41:07 -04006896
Chris Mason514ac8a2014-01-03 21:07:00 -08006897 size = btrfs_file_extent_inline_len(leaf, path->slots[0], item);
Yan Zheng9036c102008-10-30 14:19:41 -04006898 extent_offset = page_offset(page) + pg_offset - extent_start;
Chris Mason70dec802008-01-29 09:59:12 -05006899 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
Yan689f9342007-10-29 11:41:07 -04006900 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04006901 em->start = extent_start + extent_offset;
Qu Wenruofda28322013-02-26 08:10:22 +00006902 em->len = ALIGN(copy_size, root->sectorsize);
Josef Bacikb4939682012-12-03 10:31:19 -05006903 em->orig_block_len = em->len;
Josef Bacik70c8a912012-10-11 16:54:30 -04006904 em->orig_start = em->start;
Yan689f9342007-10-29 11:41:07 -04006905 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04006906 if (create == 0 && !PageUptodate(page)) {
Li Zefan261507a02010-12-17 14:21:50 +08006907 if (btrfs_file_extent_compression(leaf, item) !=
6908 BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -04006909 ret = uncompress_inline(path, inode, page,
6910 pg_offset,
6911 extent_offset, item);
Zach Brown166ae5a2014-05-09 17:15:10 -04006912 if (ret) {
6913 err = ret;
6914 goto out;
6915 }
Chris Masonc8b97812008-10-29 14:49:59 -04006916 } else {
6917 map = kmap(page);
6918 read_extent_buffer(leaf, map + pg_offset, ptr,
6919 copy_size);
Chris Mason93c82d52009-09-11 12:36:29 -04006920 if (pg_offset + copy_size < PAGE_CACHE_SIZE) {
6921 memset(map + pg_offset + copy_size, 0,
6922 PAGE_CACHE_SIZE - pg_offset -
6923 copy_size);
6924 }
Chris Masonc8b97812008-10-29 14:49:59 -04006925 kunmap(page);
6926 }
Chris Mason179e29e2007-11-01 11:28:41 -04006927 flush_dcache_page(page);
6928 } else if (create && PageUptodate(page)) {
Jan Schmidt6bf7e082011-12-01 14:35:19 +01006929 BUG();
Chris Mason179e29e2007-11-01 11:28:41 -04006930 if (!trans) {
6931 kunmap(page);
6932 free_extent_map(em);
6933 em = NULL;
Chris Masonff5714c2011-05-28 07:00:39 -04006934
David Sterbab3b4aa72011-04-21 01:20:15 +02006935 btrfs_release_path(path);
Josef Bacik7a7eaa42011-04-13 12:54:33 -04006936 trans = btrfs_join_transaction(root);
Chris Masonff5714c2011-05-28 07:00:39 -04006937
Tsutomu Itoh3612b492011-01-25 02:51:38 +00006938 if (IS_ERR(trans))
6939 return ERR_CAST(trans);
Chris Mason179e29e2007-11-01 11:28:41 -04006940 goto again;
6941 }
Chris Masonc8b97812008-10-29 14:49:59 -04006942 map = kmap(page);
Chris Mason70dec802008-01-29 09:59:12 -05006943 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04006944 copy_size);
Chris Masonc8b97812008-10-29 14:49:59 -04006945 kunmap(page);
Chris Mason179e29e2007-11-01 11:28:41 -04006946 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04006947 }
Chris Masond1310b22008-01-24 16:13:08 -05006948 set_extent_uptodate(io_tree, em->start,
Arne Jansen507903b2011-04-06 10:02:20 +00006949 extent_map_end(em) - 1, NULL, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04006950 goto insert;
Chris Masona52d9a82007-08-27 16:49:44 -04006951 }
6952not_found:
6953 em->start = start;
Josef Bacik70c8a912012-10-11 16:54:30 -04006954 em->orig_start = start;
Chris Masond1310b22008-01-24 16:13:08 -05006955 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04006956not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04006957 em->block_start = EXTENT_MAP_HOLE;
Yan Zheng9036c102008-10-30 14:19:41 -04006958 set_bit(EXTENT_FLAG_VACANCY, &em->flags);
Chris Masona52d9a82007-08-27 16:49:44 -04006959insert:
David Sterbab3b4aa72011-04-21 01:20:15 +02006960 btrfs_release_path(path);
Chris Masond1310b22008-01-24 16:13:08 -05006961 if (em->start > start || extent_map_end(em) <= start) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006962 btrfs_err(root->fs_info, "bad extent! em: [%llu %llu] passed [%llu %llu]",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006963 em->start, em->len, start, len);
Chris Masona52d9a82007-08-27 16:49:44 -04006964 err = -EIO;
6965 goto out;
6966 }
Chris Masond1310b22008-01-24 16:13:08 -05006967
6968 err = 0;
Chris Mason890871b2009-09-02 16:24:52 -04006969 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04006970 ret = add_extent_mapping(em_tree, em, 0);
Chris Mason3b951512008-04-17 11:29:12 -04006971 /* it is possible that someone inserted the extent into the tree
6972 * while we had the lock dropped. It is also possible that
6973 * an overlapping map exists in the tree
6974 */
Chris Masona52d9a82007-08-27 16:49:44 -04006975 if (ret == -EEXIST) {
Chris Mason3b951512008-04-17 11:29:12 -04006976 struct extent_map *existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006977
6978 ret = 0;
6979
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08006980 existing = search_extent_mapping(em_tree, start, len);
6981 /*
6982 * existing will always be non-NULL, since there must be
6983 * extent causing the -EEXIST.
6984 */
6985 if (start >= extent_map_end(existing) ||
Qu Wenruo32be3a12014-09-22 09:13:03 +08006986 start <= existing->start) {
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08006987 /*
6988 * The existing extent map is the one nearest to
6989 * the [start, start + len) range which overlaps
6990 */
6991 err = merge_extent_mapping(em_tree, existing,
6992 em, start);
Chris Masone1c4b742008-04-22 13:26:46 -04006993 free_extent_map(existing);
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08006994 if (err) {
Chris Mason3b951512008-04-17 11:29:12 -04006995 free_extent_map(em);
6996 em = NULL;
6997 }
6998 } else {
6999 free_extent_map(em);
7000 em = existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04007001 err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04007002 }
Chris Masona52d9a82007-08-27 16:49:44 -04007003 }
Chris Mason890871b2009-09-02 16:24:52 -04007004 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04007005out:
liubo1abe9b82011-03-24 11:18:59 +00007006
Steven Rostedt4cd8587c2013-11-14 22:57:29 -05007007 trace_btrfs_get_extent(root, em);
liubo1abe9b82011-03-24 11:18:59 +00007008
Tsutomu Itoh527afb42015-08-19 14:55:00 +09007009 btrfs_free_path(path);
Chris Masona52d9a82007-08-27 16:49:44 -04007010 if (trans) {
7011 ret = btrfs_end_transaction(trans, root);
Chris Masond3977122009-01-05 21:25:51 -05007012 if (!err)
Chris Masona52d9a82007-08-27 16:49:44 -04007013 err = ret;
7014 }
Chris Masona52d9a82007-08-27 16:49:44 -04007015 if (err) {
7016 free_extent_map(em);
Chris Masona52d9a82007-08-27 16:49:44 -04007017 return ERR_PTR(err);
7018 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007019 BUG_ON(!em); /* Error is always set */
Chris Masona52d9a82007-08-27 16:49:44 -04007020 return em;
7021}
7022
Chris Masonec29ed52011-02-23 16:23:20 -05007023struct extent_map *btrfs_get_extent_fiemap(struct inode *inode, struct page *page,
7024 size_t pg_offset, u64 start, u64 len,
7025 int create)
7026{
7027 struct extent_map *em;
7028 struct extent_map *hole_em = NULL;
7029 u64 range_start = start;
7030 u64 end;
7031 u64 found;
7032 u64 found_end;
7033 int err = 0;
7034
7035 em = btrfs_get_extent(inode, page, pg_offset, start, len, create);
7036 if (IS_ERR(em))
7037 return em;
7038 if (em) {
7039 /*
Liu Bof9e4fb52013-01-07 10:10:12 +00007040 * if our em maps to
7041 * - a hole or
7042 * - a pre-alloc extent,
7043 * there might actually be delalloc bytes behind it.
Chris Masonec29ed52011-02-23 16:23:20 -05007044 */
Liu Bof9e4fb52013-01-07 10:10:12 +00007045 if (em->block_start != EXTENT_MAP_HOLE &&
7046 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
Chris Masonec29ed52011-02-23 16:23:20 -05007047 return em;
7048 else
7049 hole_em = em;
7050 }
7051
7052 /* check to see if we've wrapped (len == -1 or similar) */
7053 end = start + len;
7054 if (end < start)
7055 end = (u64)-1;
7056 else
7057 end -= 1;
7058
7059 em = NULL;
7060
7061 /* ok, we didn't find anything, lets look for delalloc */
7062 found = count_range_bits(&BTRFS_I(inode)->io_tree, &range_start,
7063 end, len, EXTENT_DELALLOC, 1);
7064 found_end = range_start + found;
7065 if (found_end < range_start)
7066 found_end = (u64)-1;
7067
7068 /*
7069 * we didn't find anything useful, return
7070 * the original results from get_extent()
7071 */
7072 if (range_start > end || found_end <= start) {
7073 em = hole_em;
7074 hole_em = NULL;
7075 goto out;
7076 }
7077
7078 /* adjust the range_start to make sure it doesn't
7079 * go backwards from the start they passed in
7080 */
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05307081 range_start = max(start, range_start);
Chris Masonec29ed52011-02-23 16:23:20 -05007082 found = found_end - range_start;
7083
7084 if (found > 0) {
7085 u64 hole_start = start;
7086 u64 hole_len = len;
7087
David Sterba172ddd62011-04-21 00:48:27 +02007088 em = alloc_extent_map();
Chris Masonec29ed52011-02-23 16:23:20 -05007089 if (!em) {
7090 err = -ENOMEM;
7091 goto out;
7092 }
7093 /*
7094 * when btrfs_get_extent can't find anything it
7095 * returns one huge hole
7096 *
7097 * make sure what it found really fits our range, and
7098 * adjust to make sure it is based on the start from
7099 * the caller
7100 */
7101 if (hole_em) {
7102 u64 calc_end = extent_map_end(hole_em);
7103
7104 if (calc_end <= start || (hole_em->start > end)) {
7105 free_extent_map(hole_em);
7106 hole_em = NULL;
7107 } else {
7108 hole_start = max(hole_em->start, start);
7109 hole_len = calc_end - hole_start;
7110 }
7111 }
7112 em->bdev = NULL;
7113 if (hole_em && range_start > hole_start) {
7114 /* our hole starts before our delalloc, so we
7115 * have to return just the parts of the hole
7116 * that go until the delalloc starts
7117 */
7118 em->len = min(hole_len,
7119 range_start - hole_start);
7120 em->start = hole_start;
7121 em->orig_start = hole_start;
7122 /*
7123 * don't adjust block start at all,
7124 * it is fixed at EXTENT_MAP_HOLE
7125 */
7126 em->block_start = hole_em->block_start;
7127 em->block_len = hole_len;
Liu Bof9e4fb52013-01-07 10:10:12 +00007128 if (test_bit(EXTENT_FLAG_PREALLOC, &hole_em->flags))
7129 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Chris Masonec29ed52011-02-23 16:23:20 -05007130 } else {
7131 em->start = range_start;
7132 em->len = found;
7133 em->orig_start = range_start;
7134 em->block_start = EXTENT_MAP_DELALLOC;
7135 em->block_len = found;
7136 }
7137 } else if (hole_em) {
7138 return hole_em;
7139 }
7140out:
7141
7142 free_extent_map(hole_em);
7143 if (err) {
7144 free_extent_map(em);
7145 return ERR_PTR(err);
7146 }
7147 return em;
7148}
7149
Josef Bacik4b46fce2010-05-23 11:00:55 -04007150static struct extent_map *btrfs_new_extent_direct(struct inode *inode,
7151 u64 start, u64 len)
7152{
7153 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik70c8a912012-10-11 16:54:30 -04007154 struct extent_map *em;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007155 struct btrfs_key ins;
7156 u64 alloc_hint;
7157 int ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007158
Josef Bacik4b46fce2010-05-23 11:00:55 -04007159 alloc_hint = get_extent_allocation_hint(inode, start, len);
Josef Bacik00361582013-08-14 14:02:47 -04007160 ret = btrfs_reserve_extent(root, len, root->sectorsize, 0,
Miao Xiee570fd22014-06-19 10:42:50 +08007161 alloc_hint, &ins, 1, 1);
Josef Bacik00361582013-08-14 14:02:47 -04007162 if (ret)
7163 return ERR_PTR(ret);
Josef Bacik4b46fce2010-05-23 11:00:55 -04007164
Josef Bacik70c8a912012-10-11 16:54:30 -04007165 em = create_pinned_em(inode, start, ins.offset, start, ins.objectid,
Josef Bacikcc95bef2013-04-04 14:31:27 -04007166 ins.offset, ins.offset, ins.offset, 0);
Josef Bacik00361582013-08-14 14:02:47 -04007167 if (IS_ERR(em)) {
Miao Xiee570fd22014-06-19 10:42:50 +08007168 btrfs_free_reserved_extent(root, ins.objectid, ins.offset, 1);
Josef Bacik00361582013-08-14 14:02:47 -04007169 return em;
7170 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04007171
7172 ret = btrfs_add_ordered_extent_dio(inode, start, ins.objectid,
7173 ins.offset, ins.offset, 0);
7174 if (ret) {
Miao Xiee570fd22014-06-19 10:42:50 +08007175 btrfs_free_reserved_extent(root, ins.objectid, ins.offset, 1);
Josef Bacik00361582013-08-14 14:02:47 -04007176 free_extent_map(em);
7177 return ERR_PTR(ret);
Josef Bacik4b46fce2010-05-23 11:00:55 -04007178 }
Josef Bacik00361582013-08-14 14:02:47 -04007179
Josef Bacik4b46fce2010-05-23 11:00:55 -04007180 return em;
7181}
7182
Chris Mason46bfbb52010-05-26 11:04:10 -04007183/*
7184 * returns 1 when the nocow is safe, < 1 on error, 0 if the
7185 * block must be cow'd
7186 */
Josef Bacik00361582013-08-14 14:02:47 -04007187noinline int can_nocow_extent(struct inode *inode, u64 offset, u64 *len,
Josef Bacik7ee9e442013-06-21 16:37:03 -04007188 u64 *orig_start, u64 *orig_block_len,
7189 u64 *ram_bytes)
Chris Mason46bfbb52010-05-26 11:04:10 -04007190{
Josef Bacik00361582013-08-14 14:02:47 -04007191 struct btrfs_trans_handle *trans;
Chris Mason46bfbb52010-05-26 11:04:10 -04007192 struct btrfs_path *path;
7193 int ret;
7194 struct extent_buffer *leaf;
7195 struct btrfs_root *root = BTRFS_I(inode)->root;
Miao Xie7b2b7082014-02-27 13:58:05 +08007196 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason46bfbb52010-05-26 11:04:10 -04007197 struct btrfs_file_extent_item *fi;
7198 struct btrfs_key key;
7199 u64 disk_bytenr;
7200 u64 backref_offset;
7201 u64 extent_end;
7202 u64 num_bytes;
7203 int slot;
7204 int found_type;
Josef Bacik7ee9e442013-06-21 16:37:03 -04007205 bool nocow = (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW);
Miao Xiee77751a2013-12-27 21:11:50 +08007206
Chris Mason46bfbb52010-05-26 11:04:10 -04007207 path = btrfs_alloc_path();
7208 if (!path)
7209 return -ENOMEM;
7210
Josef Bacik00361582013-08-14 14:02:47 -04007211 ret = btrfs_lookup_file_extent(NULL, root, path, btrfs_ino(inode),
Chris Mason46bfbb52010-05-26 11:04:10 -04007212 offset, 0);
7213 if (ret < 0)
7214 goto out;
7215
7216 slot = path->slots[0];
7217 if (ret == 1) {
7218 if (slot == 0) {
7219 /* can't find the item, must cow */
7220 ret = 0;
7221 goto out;
7222 }
7223 slot--;
7224 }
7225 ret = 0;
7226 leaf = path->nodes[0];
7227 btrfs_item_key_to_cpu(leaf, &key, slot);
Li Zefan33345d012011-04-20 10:31:50 +08007228 if (key.objectid != btrfs_ino(inode) ||
Chris Mason46bfbb52010-05-26 11:04:10 -04007229 key.type != BTRFS_EXTENT_DATA_KEY) {
7230 /* not our file or wrong item type, must cow */
7231 goto out;
7232 }
7233
7234 if (key.offset > offset) {
7235 /* Wrong offset, must cow */
7236 goto out;
7237 }
7238
7239 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
7240 found_type = btrfs_file_extent_type(leaf, fi);
7241 if (found_type != BTRFS_FILE_EXTENT_REG &&
7242 found_type != BTRFS_FILE_EXTENT_PREALLOC) {
7243 /* not a regular extent, must cow */
7244 goto out;
7245 }
Josef Bacik7ee9e442013-06-21 16:37:03 -04007246
7247 if (!nocow && found_type == BTRFS_FILE_EXTENT_REG)
7248 goto out;
7249
Miao Xiee77751a2013-12-27 21:11:50 +08007250 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
7251 if (extent_end <= offset)
7252 goto out;
7253
Chris Mason46bfbb52010-05-26 11:04:10 -04007254 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Josef Bacik7ee9e442013-06-21 16:37:03 -04007255 if (disk_bytenr == 0)
7256 goto out;
7257
7258 if (btrfs_file_extent_compression(leaf, fi) ||
7259 btrfs_file_extent_encryption(leaf, fi) ||
7260 btrfs_file_extent_other_encoding(leaf, fi))
7261 goto out;
7262
Chris Mason46bfbb52010-05-26 11:04:10 -04007263 backref_offset = btrfs_file_extent_offset(leaf, fi);
7264
Josef Bacik7ee9e442013-06-21 16:37:03 -04007265 if (orig_start) {
7266 *orig_start = key.offset - backref_offset;
7267 *orig_block_len = btrfs_file_extent_disk_num_bytes(leaf, fi);
7268 *ram_bytes = btrfs_file_extent_ram_bytes(leaf, fi);
7269 }
Josef Bacikeb384b52013-04-24 16:32:55 -04007270
Chris Mason46bfbb52010-05-26 11:04:10 -04007271 if (btrfs_extent_readonly(root, disk_bytenr))
7272 goto out;
Miao Xie7b2b7082014-02-27 13:58:05 +08007273
7274 num_bytes = min(offset + *len, extent_end) - offset;
7275 if (!nocow && found_type == BTRFS_FILE_EXTENT_PREALLOC) {
7276 u64 range_end;
7277
7278 range_end = round_up(offset + num_bytes, root->sectorsize) - 1;
7279 ret = test_range_bit(io_tree, offset, range_end,
7280 EXTENT_DELALLOC, 0, NULL);
7281 if (ret) {
7282 ret = -EAGAIN;
7283 goto out;
7284 }
7285 }
7286
Josef Bacik1bda19e2013-10-18 12:10:36 -04007287 btrfs_release_path(path);
Chris Mason46bfbb52010-05-26 11:04:10 -04007288
7289 /*
7290 * look for other files referencing this extent, if we
7291 * find any we must cow
7292 */
Josef Bacik00361582013-08-14 14:02:47 -04007293 trans = btrfs_join_transaction(root);
7294 if (IS_ERR(trans)) {
7295 ret = 0;
Chris Mason46bfbb52010-05-26 11:04:10 -04007296 goto out;
Josef Bacik00361582013-08-14 14:02:47 -04007297 }
7298
7299 ret = btrfs_cross_ref_exist(trans, root, btrfs_ino(inode),
7300 key.offset - backref_offset, disk_bytenr);
7301 btrfs_end_transaction(trans, root);
7302 if (ret) {
7303 ret = 0;
7304 goto out;
7305 }
Chris Mason46bfbb52010-05-26 11:04:10 -04007306
7307 /*
7308 * adjust disk_bytenr and num_bytes to cover just the bytes
7309 * in this extent we are about to write. If there
7310 * are any csums in that range we have to cow in order
7311 * to keep the csums correct
7312 */
7313 disk_bytenr += backref_offset;
7314 disk_bytenr += offset - key.offset;
Chris Mason46bfbb52010-05-26 11:04:10 -04007315 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
7316 goto out;
7317 /*
7318 * all of the above have passed, it is safe to overwrite this extent
7319 * without cow
7320 */
Josef Bacikeb384b52013-04-24 16:32:55 -04007321 *len = num_bytes;
Chris Mason46bfbb52010-05-26 11:04:10 -04007322 ret = 1;
7323out:
7324 btrfs_free_path(path);
7325 return ret;
7326}
7327
Alex Gartrellfc4adbf2014-05-20 13:07:56 -07007328bool btrfs_page_exists_in_range(struct inode *inode, loff_t start, loff_t end)
7329{
7330 struct radix_tree_root *root = &inode->i_mapping->page_tree;
7331 int found = false;
7332 void **pagep = NULL;
7333 struct page *page = NULL;
7334 int start_idx;
7335 int end_idx;
7336
7337 start_idx = start >> PAGE_CACHE_SHIFT;
7338
7339 /*
7340 * end is the last byte in the last page. end == start is legal
7341 */
7342 end_idx = end >> PAGE_CACHE_SHIFT;
7343
7344 rcu_read_lock();
7345
7346 /* Most of the code in this while loop is lifted from
7347 * find_get_page. It's been modified to begin searching from a
7348 * page and return just the first page found in that range. If the
7349 * found idx is less than or equal to the end idx then we know that
7350 * a page exists. If no pages are found or if those pages are
7351 * outside of the range then we're fine (yay!) */
7352 while (page == NULL &&
7353 radix_tree_gang_lookup_slot(root, &pagep, NULL, start_idx, 1)) {
7354 page = radix_tree_deref_slot(pagep);
7355 if (unlikely(!page))
7356 break;
7357
7358 if (radix_tree_exception(page)) {
Filipe Manana809f9012014-06-05 13:22:25 +01007359 if (radix_tree_deref_retry(page)) {
7360 page = NULL;
Alex Gartrellfc4adbf2014-05-20 13:07:56 -07007361 continue;
Filipe Manana809f9012014-06-05 13:22:25 +01007362 }
Alex Gartrellfc4adbf2014-05-20 13:07:56 -07007363 /*
7364 * Otherwise, shmem/tmpfs must be storing a swap entry
7365 * here as an exceptional entry: so return it without
7366 * attempting to raise page count.
7367 */
Filipe Manana6fdef6d2014-06-05 13:22:26 +01007368 page = NULL;
Alex Gartrellfc4adbf2014-05-20 13:07:56 -07007369 break; /* TODO: Is this relevant for this use case? */
7370 }
7371
Filipe Manana91405152014-06-05 13:22:24 +01007372 if (!page_cache_get_speculative(page)) {
7373 page = NULL;
Alex Gartrellfc4adbf2014-05-20 13:07:56 -07007374 continue;
Filipe Manana91405152014-06-05 13:22:24 +01007375 }
Alex Gartrellfc4adbf2014-05-20 13:07:56 -07007376
7377 /*
7378 * Has the page moved?
7379 * This is part of the lockless pagecache protocol. See
7380 * include/linux/pagemap.h for details.
7381 */
7382 if (unlikely(page != *pagep)) {
7383 page_cache_release(page);
7384 page = NULL;
7385 }
7386 }
7387
7388 if (page) {
7389 if (page->index <= end_idx)
7390 found = true;
7391 page_cache_release(page);
7392 }
7393
7394 rcu_read_unlock();
7395 return found;
7396}
7397
Josef Bacikeb838e72012-07-31 16:28:48 -04007398static int lock_extent_direct(struct inode *inode, u64 lockstart, u64 lockend,
7399 struct extent_state **cached_state, int writing)
7400{
7401 struct btrfs_ordered_extent *ordered;
7402 int ret = 0;
7403
7404 while (1) {
7405 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
7406 0, cached_state);
7407 /*
7408 * We're concerned with the entire range that we're going to be
7409 * doing DIO to, so we need to make sure theres no ordered
7410 * extents in this range.
7411 */
7412 ordered = btrfs_lookup_ordered_range(inode, lockstart,
7413 lockend - lockstart + 1);
7414
7415 /*
7416 * We need to make sure there are no buffered pages in this
7417 * range either, we could have raced between the invalidate in
7418 * generic_file_direct_write and locking the extent. The
7419 * invalidate needs to happen so that reads after a write do not
7420 * get stale data.
7421 */
Alex Gartrellfc4adbf2014-05-20 13:07:56 -07007422 if (!ordered &&
7423 (!writing ||
7424 !btrfs_page_exists_in_range(inode, lockstart, lockend)))
Josef Bacikeb838e72012-07-31 16:28:48 -04007425 break;
7426
7427 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
7428 cached_state, GFP_NOFS);
7429
7430 if (ordered) {
7431 btrfs_start_ordered_extent(inode, ordered, 1);
7432 btrfs_put_ordered_extent(ordered);
7433 } else {
7434 /* Screw you mmap */
Filipe Manana728404d2014-10-10 09:43:11 +01007435 ret = btrfs_fdatawrite_range(inode, lockstart, lockend);
Filipe Manana075bdbd2014-10-09 21:18:55 +01007436 if (ret)
7437 break;
7438 ret = filemap_fdatawait_range(inode->i_mapping,
7439 lockstart,
7440 lockend);
Josef Bacikeb838e72012-07-31 16:28:48 -04007441 if (ret)
7442 break;
7443
7444 /*
7445 * If we found a page that couldn't be invalidated just
7446 * fall back to buffered.
7447 */
7448 ret = invalidate_inode_pages2_range(inode->i_mapping,
7449 lockstart >> PAGE_CACHE_SHIFT,
7450 lockend >> PAGE_CACHE_SHIFT);
7451 if (ret)
7452 break;
7453 }
7454
7455 cond_resched();
7456 }
7457
7458 return ret;
7459}
7460
Josef Bacik69ffb542012-09-11 15:40:07 -04007461static struct extent_map *create_pinned_em(struct inode *inode, u64 start,
7462 u64 len, u64 orig_start,
7463 u64 block_start, u64 block_len,
Josef Bacikcc95bef2013-04-04 14:31:27 -04007464 u64 orig_block_len, u64 ram_bytes,
7465 int type)
Josef Bacik69ffb542012-09-11 15:40:07 -04007466{
7467 struct extent_map_tree *em_tree;
7468 struct extent_map *em;
7469 struct btrfs_root *root = BTRFS_I(inode)->root;
7470 int ret;
7471
7472 em_tree = &BTRFS_I(inode)->extent_tree;
7473 em = alloc_extent_map();
7474 if (!em)
7475 return ERR_PTR(-ENOMEM);
7476
7477 em->start = start;
7478 em->orig_start = orig_start;
Josef Bacik2ab28f32012-10-12 15:27:49 -04007479 em->mod_start = start;
7480 em->mod_len = len;
Josef Bacik69ffb542012-09-11 15:40:07 -04007481 em->len = len;
7482 em->block_len = block_len;
7483 em->block_start = block_start;
7484 em->bdev = root->fs_info->fs_devices->latest_bdev;
Josef Bacikb4939682012-12-03 10:31:19 -05007485 em->orig_block_len = orig_block_len;
Josef Bacikcc95bef2013-04-04 14:31:27 -04007486 em->ram_bytes = ram_bytes;
Josef Bacik70c8a912012-10-11 16:54:30 -04007487 em->generation = -1;
Josef Bacik69ffb542012-09-11 15:40:07 -04007488 set_bit(EXTENT_FLAG_PINNED, &em->flags);
7489 if (type == BTRFS_ORDERED_PREALLOC)
Josef Bacikb11e2342012-12-03 10:58:15 -05007490 set_bit(EXTENT_FLAG_FILLING, &em->flags);
Josef Bacik69ffb542012-09-11 15:40:07 -04007491
7492 do {
7493 btrfs_drop_extent_cache(inode, em->start,
7494 em->start + em->len - 1, 0);
7495 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04007496 ret = add_extent_mapping(em_tree, em, 1);
Josef Bacik69ffb542012-09-11 15:40:07 -04007497 write_unlock(&em_tree->lock);
7498 } while (ret == -EEXIST);
7499
7500 if (ret) {
7501 free_extent_map(em);
7502 return ERR_PTR(ret);
7503 }
7504
7505 return em;
7506}
7507
chandan50745b02015-08-28 21:10:13 +05307508struct btrfs_dio_data {
7509 u64 outstanding_extents;
7510 u64 reserve;
7511};
Josef Bacik69ffb542012-09-11 15:40:07 -04007512
Josef Bacik4b46fce2010-05-23 11:00:55 -04007513static int btrfs_get_blocks_direct(struct inode *inode, sector_t iblock,
7514 struct buffer_head *bh_result, int create)
7515{
7516 struct extent_map *em;
7517 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacikeb838e72012-07-31 16:28:48 -04007518 struct extent_state *cached_state = NULL;
chandan50745b02015-08-28 21:10:13 +05307519 struct btrfs_dio_data *dio_data = NULL;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007520 u64 start = iblock << inode->i_blkbits;
Josef Bacikeb838e72012-07-31 16:28:48 -04007521 u64 lockstart, lockend;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007522 u64 len = bh_result->b_size;
Josef Bacikeb838e72012-07-31 16:28:48 -04007523 int unlock_bits = EXTENT_LOCKED;
Miao Xie09348562013-02-07 10:12:07 +00007524 int ret = 0;
Josef Bacikeb838e72012-07-31 16:28:48 -04007525
Miao Xie172a5042013-02-21 02:48:22 -07007526 if (create)
Josef Bacik32667892015-02-11 15:08:58 -05007527 unlock_bits |= EXTENT_DIRTY;
Miao Xie172a5042013-02-21 02:48:22 -07007528 else
Josef Bacikc3298612012-08-03 16:49:19 -04007529 len = min_t(u64, len, root->sectorsize);
Josef Bacikeb838e72012-07-31 16:28:48 -04007530
Josef Bacikc3298612012-08-03 16:49:19 -04007531 lockstart = start;
7532 lockend = start + len - 1;
7533
Josef Bacike1cbbfa2015-03-17 10:52:28 -04007534 if (current->journal_info) {
7535 /*
7536 * Need to pull our outstanding extents and set journal_info to NULL so
7537 * that anything that needs to check if there's a transction doesn't get
7538 * confused.
7539 */
chandan50745b02015-08-28 21:10:13 +05307540 dio_data = current->journal_info;
Josef Bacike1cbbfa2015-03-17 10:52:28 -04007541 current->journal_info = NULL;
7542 }
7543
Josef Bacikeb838e72012-07-31 16:28:48 -04007544 /*
7545 * If this errors out it's because we couldn't invalidate pagecache for
7546 * this range and we need to fallback to buffered.
7547 */
7548 if (lock_extent_direct(inode, lockstart, lockend, &cached_state, create))
7549 return -ENOTBLK;
7550
Josef Bacik4b46fce2010-05-23 11:00:55 -04007551 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
Josef Bacikeb838e72012-07-31 16:28:48 -04007552 if (IS_ERR(em)) {
7553 ret = PTR_ERR(em);
7554 goto unlock_err;
7555 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04007556
7557 /*
7558 * Ok for INLINE and COMPRESSED extents we need to fallback on buffered
7559 * io. INLINE is special, and we could probably kludge it in here, but
7560 * it's still buffered so for safety lets just fall back to the generic
7561 * buffered path.
7562 *
7563 * For COMPRESSED we _have_ to read the entire extent in so we can
7564 * decompress it, so there will be buffering required no matter what we
7565 * do, so go ahead and fallback to buffered.
7566 *
7567 * We return -ENOTBLK because thats what makes DIO go ahead and go back
7568 * to buffered IO. Don't blame me, this is the price we pay for using
7569 * the generic code.
7570 */
7571 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) ||
7572 em->block_start == EXTENT_MAP_INLINE) {
7573 free_extent_map(em);
Josef Bacikeb838e72012-07-31 16:28:48 -04007574 ret = -ENOTBLK;
7575 goto unlock_err;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007576 }
7577
7578 /* Just a good old fashioned hole, return */
7579 if (!create && (em->block_start == EXTENT_MAP_HOLE ||
7580 test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
7581 free_extent_map(em);
Josef Bacikeb838e72012-07-31 16:28:48 -04007582 goto unlock_err;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007583 }
7584
7585 /*
7586 * We don't allocate a new extent in the following cases
7587 *
7588 * 1) The inode is marked as NODATACOW. In this case we'll just use the
7589 * existing extent.
7590 * 2) The extent is marked as PREALLOC. We're good to go here and can
7591 * just use the extent.
7592 *
7593 */
Chris Mason46bfbb52010-05-26 11:04:10 -04007594 if (!create) {
Josef Bacikeb838e72012-07-31 16:28:48 -04007595 len = min(len, em->len - (start - em->start));
7596 lockstart = start + len;
7597 goto unlock;
Chris Mason46bfbb52010-05-26 11:04:10 -04007598 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04007599
7600 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) ||
7601 ((BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) &&
7602 em->block_start != EXTENT_MAP_HOLE)) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04007603 int type;
Josef Bacikeb384b52013-04-24 16:32:55 -04007604 u64 block_start, orig_start, orig_block_len, ram_bytes;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007605
7606 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
7607 type = BTRFS_ORDERED_PREALLOC;
7608 else
7609 type = BTRFS_ORDERED_NOCOW;
Chris Mason46bfbb52010-05-26 11:04:10 -04007610 len = min(len, em->len - (start - em->start));
Josef Bacik4b46fce2010-05-23 11:00:55 -04007611 block_start = em->block_start + (start - em->start);
Chris Mason46bfbb52010-05-26 11:04:10 -04007612
Josef Bacik00361582013-08-14 14:02:47 -04007613 if (can_nocow_extent(inode, start, &len, &orig_start,
Josef Bacik7ee9e442013-06-21 16:37:03 -04007614 &orig_block_len, &ram_bytes) == 1) {
Josef Bacik69ffb542012-09-11 15:40:07 -04007615 if (type == BTRFS_ORDERED_PREALLOC) {
7616 free_extent_map(em);
7617 em = create_pinned_em(inode, start, len,
7618 orig_start,
Josef Bacikb4939682012-12-03 10:31:19 -05007619 block_start, len,
Josef Bacikcc95bef2013-04-04 14:31:27 -04007620 orig_block_len,
7621 ram_bytes, type);
Filipe Manana555e1282014-07-07 12:35:21 +01007622 if (IS_ERR(em)) {
7623 ret = PTR_ERR(em);
Josef Bacik69ffb542012-09-11 15:40:07 -04007624 goto unlock_err;
Filipe Manana555e1282014-07-07 12:35:21 +01007625 }
Josef Bacik69ffb542012-09-11 15:40:07 -04007626 }
7627
Chris Mason46bfbb52010-05-26 11:04:10 -04007628 ret = btrfs_add_ordered_extent_dio(inode, start,
7629 block_start, len, len, type);
Chris Mason46bfbb52010-05-26 11:04:10 -04007630 if (ret) {
7631 free_extent_map(em);
Josef Bacikeb838e72012-07-31 16:28:48 -04007632 goto unlock_err;
Chris Mason46bfbb52010-05-26 11:04:10 -04007633 }
7634 goto unlock;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007635 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04007636 }
Josef Bacik00361582013-08-14 14:02:47 -04007637
Chris Mason46bfbb52010-05-26 11:04:10 -04007638 /*
7639 * this will cow the extent, reset the len in case we changed
7640 * it above
7641 */
7642 len = bh_result->b_size;
Josef Bacik70c8a912012-10-11 16:54:30 -04007643 free_extent_map(em);
7644 em = btrfs_new_extent_direct(inode, start, len);
Josef Bacikeb838e72012-07-31 16:28:48 -04007645 if (IS_ERR(em)) {
7646 ret = PTR_ERR(em);
7647 goto unlock_err;
7648 }
Chris Mason46bfbb52010-05-26 11:04:10 -04007649 len = min(len, em->len - (start - em->start));
7650unlock:
Josef Bacik4b46fce2010-05-23 11:00:55 -04007651 bh_result->b_blocknr = (em->block_start + (start - em->start)) >>
7652 inode->i_blkbits;
Chris Mason46bfbb52010-05-26 11:04:10 -04007653 bh_result->b_size = len;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007654 bh_result->b_bdev = em->bdev;
7655 set_buffer_mapped(bh_result);
Josef Bacikc3473e82012-06-19 10:59:00 -04007656 if (create) {
7657 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
7658 set_buffer_new(bh_result);
7659
7660 /*
7661 * Need to update the i_size under the extent lock so buffered
7662 * readers will get the updated i_size when we unlock.
7663 */
7664 if (start + len > i_size_read(inode))
7665 i_size_write(inode, start + len);
Miao Xie09348562013-02-07 10:12:07 +00007666
Josef Bacike1cbbfa2015-03-17 10:52:28 -04007667 /*
7668 * If we have an outstanding_extents count still set then we're
7669 * within our reservation, otherwise we need to adjust our inode
7670 * counter appropriately.
7671 */
chandan50745b02015-08-28 21:10:13 +05307672 if (dio_data->outstanding_extents) {
7673 (dio_data->outstanding_extents)--;
Josef Bacike1cbbfa2015-03-17 10:52:28 -04007674 } else {
Josef Bacik3e05bde2015-02-11 15:08:57 -05007675 spin_lock(&BTRFS_I(inode)->lock);
7676 BTRFS_I(inode)->outstanding_extents++;
7677 spin_unlock(&BTRFS_I(inode)->lock);
7678 }
Josef Bacike1cbbfa2015-03-17 10:52:28 -04007679
Qu Wenruo7cf5b972015-09-08 17:25:55 +08007680 btrfs_free_reserved_data_space(inode, start, len);
chandan50745b02015-08-28 21:10:13 +05307681 WARN_ON(dio_data->reserve < len);
7682 dio_data->reserve -= len;
7683 current->journal_info = dio_data;
Josef Bacikc3473e82012-06-19 10:59:00 -04007684 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04007685
Josef Bacikeb838e72012-07-31 16:28:48 -04007686 /*
7687 * In the case of write we need to clear and unlock the entire range,
7688 * in the case of read we need to unlock only the end area that we
7689 * aren't using if there is any left over space.
7690 */
Liu Bo24c03fa2012-08-22 20:10:38 -06007691 if (lockstart < lockend) {
Miao Xie09348562013-02-07 10:12:07 +00007692 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
7693 lockend, unlock_bits, 1, 0,
7694 &cached_state, GFP_NOFS);
Liu Bo24c03fa2012-08-22 20:10:38 -06007695 } else {
Josef Bacikeb838e72012-07-31 16:28:48 -04007696 free_extent_state(cached_state);
Liu Bo24c03fa2012-08-22 20:10:38 -06007697 }
Josef Bacikeb838e72012-07-31 16:28:48 -04007698
Josef Bacik4b46fce2010-05-23 11:00:55 -04007699 free_extent_map(em);
7700
7701 return 0;
Josef Bacikeb838e72012-07-31 16:28:48 -04007702
7703unlock_err:
Josef Bacikeb838e72012-07-31 16:28:48 -04007704 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart, lockend,
7705 unlock_bits, 1, 0, &cached_state, GFP_NOFS);
chandan50745b02015-08-28 21:10:13 +05307706 if (dio_data)
7707 current->journal_info = dio_data;
Josef Bacikeb838e72012-07-31 16:28:48 -04007708 return ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007709}
7710
Miao Xie8b110e32014-09-12 18:44:03 +08007711static inline int submit_dio_repair_bio(struct inode *inode, struct bio *bio,
7712 int rw, int mirror_num)
7713{
7714 struct btrfs_root *root = BTRFS_I(inode)->root;
7715 int ret;
7716
7717 BUG_ON(rw & REQ_WRITE);
7718
7719 bio_get(bio);
7720
7721 ret = btrfs_bio_wq_end_io(root->fs_info, bio,
7722 BTRFS_WQ_ENDIO_DIO_REPAIR);
7723 if (ret)
7724 goto err;
7725
7726 ret = btrfs_map_bio(root, rw, bio, mirror_num, 0);
7727err:
7728 bio_put(bio);
7729 return ret;
7730}
7731
7732static int btrfs_check_dio_repairable(struct inode *inode,
7733 struct bio *failed_bio,
7734 struct io_failure_record *failrec,
7735 int failed_mirror)
7736{
7737 int num_copies;
7738
7739 num_copies = btrfs_num_copies(BTRFS_I(inode)->root->fs_info,
7740 failrec->logical, failrec->len);
7741 if (num_copies == 1) {
7742 /*
7743 * we only have a single copy of the data, so don't bother with
7744 * all the retry and error correction code that follows. no
7745 * matter what the error is, it is very likely to persist.
7746 */
7747 pr_debug("Check DIO Repairable: cannot repair, num_copies=%d, next_mirror %d, failed_mirror %d\n",
7748 num_copies, failrec->this_mirror, failed_mirror);
7749 return 0;
7750 }
7751
7752 failrec->failed_mirror = failed_mirror;
7753 failrec->this_mirror++;
7754 if (failrec->this_mirror == failed_mirror)
7755 failrec->this_mirror++;
7756
7757 if (failrec->this_mirror > num_copies) {
7758 pr_debug("Check DIO Repairable: (fail) num_copies=%d, next_mirror %d, failed_mirror %d\n",
7759 num_copies, failrec->this_mirror, failed_mirror);
7760 return 0;
7761 }
7762
7763 return 1;
7764}
7765
7766static int dio_read_error(struct inode *inode, struct bio *failed_bio,
7767 struct page *page, u64 start, u64 end,
7768 int failed_mirror, bio_end_io_t *repair_endio,
7769 void *repair_arg)
7770{
7771 struct io_failure_record *failrec;
7772 struct bio *bio;
7773 int isector;
7774 int read_mode;
7775 int ret;
7776
7777 BUG_ON(failed_bio->bi_rw & REQ_WRITE);
7778
7779 ret = btrfs_get_io_failure_record(inode, start, end, &failrec);
7780 if (ret)
7781 return ret;
7782
7783 ret = btrfs_check_dio_repairable(inode, failed_bio, failrec,
7784 failed_mirror);
7785 if (!ret) {
7786 free_io_failure(inode, failrec);
7787 return -EIO;
7788 }
7789
7790 if (failed_bio->bi_vcnt > 1)
7791 read_mode = READ_SYNC | REQ_FAILFAST_DEV;
7792 else
7793 read_mode = READ_SYNC;
7794
7795 isector = start - btrfs_io_bio(failed_bio)->logical;
7796 isector >>= inode->i_sb->s_blocksize_bits;
7797 bio = btrfs_create_repair_bio(inode, failed_bio, failrec, page,
7798 0, isector, repair_endio, repair_arg);
7799 if (!bio) {
7800 free_io_failure(inode, failrec);
7801 return -EIO;
7802 }
7803
7804 btrfs_debug(BTRFS_I(inode)->root->fs_info,
7805 "Repair DIO Read Error: submitting new dio read[%#x] to this_mirror=%d, in_validation=%d\n",
7806 read_mode, failrec->this_mirror, failrec->in_validation);
7807
7808 ret = submit_dio_repair_bio(inode, bio, read_mode,
7809 failrec->this_mirror);
7810 if (ret) {
7811 free_io_failure(inode, failrec);
7812 bio_put(bio);
7813 }
7814
7815 return ret;
7816}
7817
7818struct btrfs_retry_complete {
7819 struct completion done;
7820 struct inode *inode;
7821 u64 start;
7822 int uptodate;
7823};
7824
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02007825static void btrfs_retry_endio_nocsum(struct bio *bio)
Miao Xie8b110e32014-09-12 18:44:03 +08007826{
7827 struct btrfs_retry_complete *done = bio->bi_private;
7828 struct bio_vec *bvec;
7829 int i;
7830
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02007831 if (bio->bi_error)
Miao Xie8b110e32014-09-12 18:44:03 +08007832 goto end;
7833
7834 done->uptodate = 1;
7835 bio_for_each_segment_all(bvec, bio, i)
7836 clean_io_failure(done->inode, done->start, bvec->bv_page, 0);
7837end:
7838 complete(&done->done);
7839 bio_put(bio);
7840}
7841
7842static int __btrfs_correct_data_nocsum(struct inode *inode,
7843 struct btrfs_io_bio *io_bio)
Josef Bacik4b46fce2010-05-23 11:00:55 -04007844{
Kent Overstreet2c30c712013-11-07 12:20:26 -08007845 struct bio_vec *bvec;
Miao Xie8b110e32014-09-12 18:44:03 +08007846 struct btrfs_retry_complete done;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007847 u64 start;
Kent Overstreet2c30c712013-11-07 12:20:26 -08007848 int i;
Miao Xiec1dc0892014-09-12 18:43:56 +08007849 int ret;
Miao Xiedc380ae2014-09-12 18:43:55 +08007850
Miao Xiec1dc0892014-09-12 18:43:56 +08007851 start = io_bio->logical;
Miao Xie8b110e32014-09-12 18:44:03 +08007852 done.inode = inode;
7853
7854 bio_for_each_segment_all(bvec, &io_bio->bio, i) {
7855try_again:
7856 done.uptodate = 0;
7857 done.start = start;
7858 init_completion(&done.done);
7859
7860 ret = dio_read_error(inode, &io_bio->bio, bvec->bv_page, start,
7861 start + bvec->bv_len - 1,
7862 io_bio->mirror_num,
7863 btrfs_retry_endio_nocsum, &done);
7864 if (ret)
7865 return ret;
7866
7867 wait_for_completion(&done.done);
7868
7869 if (!done.uptodate) {
7870 /* We might have another mirror, so try again */
7871 goto try_again;
7872 }
7873
7874 start += bvec->bv_len;
7875 }
7876
7877 return 0;
7878}
7879
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02007880static void btrfs_retry_endio(struct bio *bio)
Miao Xie8b110e32014-09-12 18:44:03 +08007881{
7882 struct btrfs_retry_complete *done = bio->bi_private;
7883 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
7884 struct bio_vec *bvec;
7885 int uptodate;
7886 int ret;
7887 int i;
7888
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02007889 if (bio->bi_error)
Miao Xie8b110e32014-09-12 18:44:03 +08007890 goto end;
7891
7892 uptodate = 1;
7893 bio_for_each_segment_all(bvec, bio, i) {
7894 ret = __readpage_endio_check(done->inode, io_bio, i,
7895 bvec->bv_page, 0,
7896 done->start, bvec->bv_len);
7897 if (!ret)
7898 clean_io_failure(done->inode, done->start,
7899 bvec->bv_page, 0);
7900 else
7901 uptodate = 0;
7902 }
7903
7904 done->uptodate = uptodate;
7905end:
7906 complete(&done->done);
7907 bio_put(bio);
7908}
7909
7910static int __btrfs_subio_endio_read(struct inode *inode,
7911 struct btrfs_io_bio *io_bio, int err)
7912{
7913 struct bio_vec *bvec;
7914 struct btrfs_retry_complete done;
7915 u64 start;
7916 u64 offset = 0;
7917 int i;
7918 int ret;
7919
7920 err = 0;
7921 start = io_bio->logical;
7922 done.inode = inode;
7923
Miao Xiec1dc0892014-09-12 18:43:56 +08007924 bio_for_each_segment_all(bvec, &io_bio->bio, i) {
Miao Xiedc380ae2014-09-12 18:43:55 +08007925 ret = __readpage_endio_check(inode, io_bio, i, bvec->bv_page,
7926 0, start, bvec->bv_len);
Miao Xie8b110e32014-09-12 18:44:03 +08007927 if (likely(!ret))
7928 goto next;
7929try_again:
7930 done.uptodate = 0;
7931 done.start = start;
7932 init_completion(&done.done);
7933
7934 ret = dio_read_error(inode, &io_bio->bio, bvec->bv_page, start,
7935 start + bvec->bv_len - 1,
7936 io_bio->mirror_num,
7937 btrfs_retry_endio, &done);
7938 if (ret) {
7939 err = ret;
7940 goto next;
7941 }
7942
7943 wait_for_completion(&done.done);
7944
7945 if (!done.uptodate) {
7946 /* We might have another mirror, so try again */
7947 goto try_again;
7948 }
7949next:
7950 offset += bvec->bv_len;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007951 start += bvec->bv_len;
Kent Overstreet2c30c712013-11-07 12:20:26 -08007952 }
Miao Xiec1dc0892014-09-12 18:43:56 +08007953
7954 return err;
7955}
7956
Miao Xie8b110e32014-09-12 18:44:03 +08007957static int btrfs_subio_endio_read(struct inode *inode,
7958 struct btrfs_io_bio *io_bio, int err)
7959{
7960 bool skip_csum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
7961
7962 if (skip_csum) {
7963 if (unlikely(err))
7964 return __btrfs_correct_data_nocsum(inode, io_bio);
7965 else
7966 return 0;
7967 } else {
7968 return __btrfs_subio_endio_read(inode, io_bio, err);
7969 }
7970}
7971
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02007972static void btrfs_endio_direct_read(struct bio *bio)
Miao Xiec1dc0892014-09-12 18:43:56 +08007973{
7974 struct btrfs_dio_private *dip = bio->bi_private;
7975 struct inode *inode = dip->inode;
7976 struct bio *dio_bio;
7977 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02007978 int err = bio->bi_error;
Miao Xiec1dc0892014-09-12 18:43:56 +08007979
Miao Xie8b110e32014-09-12 18:44:03 +08007980 if (dip->flags & BTRFS_DIO_ORIG_BIO_SUBMITTED)
7981 err = btrfs_subio_endio_read(inode, io_bio, err);
Miao Xiec1dc0892014-09-12 18:43:56 +08007982
Josef Bacik4b46fce2010-05-23 11:00:55 -04007983 unlock_extent(&BTRFS_I(inode)->io_tree, dip->logical_offset,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01007984 dip->logical_offset + dip->bytes - 1);
Chris Mason9be33952013-05-17 18:30:14 -04007985 dio_bio = dip->dio_bio;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007986
Josef Bacik4b46fce2010-05-23 11:00:55 -04007987 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04007988
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02007989 dio_end_io(dio_bio, bio->bi_error);
Miao Xie23ea8e52014-09-12 18:43:54 +08007990
7991 if (io_bio->end_io)
7992 io_bio->end_io(io_bio, err);
Chris Mason9be33952013-05-17 18:30:14 -04007993 bio_put(bio);
Josef Bacik4b46fce2010-05-23 11:00:55 -04007994}
7995
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02007996static void btrfs_endio_direct_write(struct bio *bio)
Josef Bacik4b46fce2010-05-23 11:00:55 -04007997{
7998 struct btrfs_dio_private *dip = bio->bi_private;
7999 struct inode *inode = dip->inode;
8000 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008001 struct btrfs_ordered_extent *ordered = NULL;
Chris Mason163cf092010-11-28 19:56:33 -05008002 u64 ordered_offset = dip->logical_offset;
8003 u64 ordered_bytes = dip->bytes;
Chris Mason9be33952013-05-17 18:30:14 -04008004 struct bio *dio_bio;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008005 int ret;
8006
Chris Mason163cf092010-11-28 19:56:33 -05008007again:
8008 ret = btrfs_dec_test_first_ordered_pending(inode, &ordered,
8009 &ordered_offset,
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008010 ordered_bytes,
8011 !bio->bi_error);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008012 if (!ret)
Chris Mason163cf092010-11-28 19:56:33 -05008013 goto out_test;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008014
Liu Bo9e0af232014-08-15 23:36:53 +08008015 btrfs_init_work(&ordered->work, btrfs_endio_write_helper,
8016 finish_ordered_fn, NULL, NULL);
Qu Wenruofccb5d82014-02-28 10:46:10 +08008017 btrfs_queue_work(root->fs_info->endio_write_workers,
8018 &ordered->work);
Chris Mason163cf092010-11-28 19:56:33 -05008019out_test:
8020 /*
8021 * our bio might span multiple ordered extents. If we haven't
8022 * completed the accounting for the whole dio, go back and try again
8023 */
8024 if (ordered_offset < dip->logical_offset + dip->bytes) {
8025 ordered_bytes = dip->logical_offset + dip->bytes -
8026 ordered_offset;
Josef Bacik5fd02042012-05-02 14:00:54 -04008027 ordered = NULL;
Chris Mason163cf092010-11-28 19:56:33 -05008028 goto again;
8029 }
Chris Mason9be33952013-05-17 18:30:14 -04008030 dio_bio = dip->dio_bio;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008031
Josef Bacik4b46fce2010-05-23 11:00:55 -04008032 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04008033
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008034 dio_end_io(dio_bio, bio->bi_error);
Chris Mason9be33952013-05-17 18:30:14 -04008035 bio_put(bio);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008036}
8037
Chris Masoneaf25d92010-05-25 09:48:28 -04008038static int __btrfs_submit_bio_start_direct_io(struct inode *inode, int rw,
8039 struct bio *bio, int mirror_num,
8040 unsigned long bio_flags, u64 offset)
8041{
8042 int ret;
8043 struct btrfs_root *root = BTRFS_I(inode)->root;
8044 ret = btrfs_csum_one_bio(root, inode, bio, offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008045 BUG_ON(ret); /* -ENOMEM */
Chris Masoneaf25d92010-05-25 09:48:28 -04008046 return 0;
8047}
8048
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008049static void btrfs_end_dio_bio(struct bio *bio)
Miao Xiee65e1532010-11-22 03:04:43 +00008050{
8051 struct btrfs_dio_private *dip = bio->bi_private;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008052 int err = bio->bi_error;
Miao Xiee65e1532010-11-22 03:04:43 +00008053
Miao Xie8b110e32014-09-12 18:44:03 +08008054 if (err)
8055 btrfs_warn(BTRFS_I(dip->inode)->root->fs_info,
8056 "direct IO failed ino %llu rw %lu sector %#Lx len %u err no %d",
8057 btrfs_ino(dip->inode), bio->bi_rw,
8058 (unsigned long long)bio->bi_iter.bi_sector,
8059 bio->bi_iter.bi_size, err);
8060
8061 if (dip->subio_endio)
8062 err = dip->subio_endio(dip->inode, btrfs_io_bio(bio), err);
Miao Xiec1dc0892014-09-12 18:43:56 +08008063
8064 if (err) {
Miao Xiee65e1532010-11-22 03:04:43 +00008065 dip->errors = 1;
8066
8067 /*
8068 * before atomic variable goto zero, we must make sure
8069 * dip->errors is perceived to be set.
8070 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01008071 smp_mb__before_atomic();
Miao Xiee65e1532010-11-22 03:04:43 +00008072 }
8073
8074 /* if there are more bios still pending for this dio, just exit */
8075 if (!atomic_dec_and_test(&dip->pending_bios))
8076 goto out;
8077
Chris Mason9be33952013-05-17 18:30:14 -04008078 if (dip->errors) {
Miao Xiee65e1532010-11-22 03:04:43 +00008079 bio_io_error(dip->orig_bio);
Chris Mason9be33952013-05-17 18:30:14 -04008080 } else {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008081 dip->dio_bio->bi_error = 0;
8082 bio_endio(dip->orig_bio);
Miao Xiee65e1532010-11-22 03:04:43 +00008083 }
8084out:
8085 bio_put(bio);
8086}
8087
8088static struct bio *btrfs_dio_bio_alloc(struct block_device *bdev,
8089 u64 first_sector, gfp_t gfp_flags)
8090{
Chris Masonda2f0f72015-07-02 13:57:22 -07008091 struct bio *bio;
Linus Torvalds22365972015-09-05 15:14:43 -07008092 bio = btrfs_bio_alloc(bdev, first_sector, BIO_MAX_PAGES, gfp_flags);
Chris Masonda2f0f72015-07-02 13:57:22 -07008093 if (bio)
8094 bio_associate_current(bio);
8095 return bio;
Miao Xiee65e1532010-11-22 03:04:43 +00008096}
8097
Miao Xiec1dc0892014-09-12 18:43:56 +08008098static inline int btrfs_lookup_and_bind_dio_csum(struct btrfs_root *root,
8099 struct inode *inode,
8100 struct btrfs_dio_private *dip,
8101 struct bio *bio,
8102 u64 file_offset)
8103{
8104 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
8105 struct btrfs_io_bio *orig_io_bio = btrfs_io_bio(dip->orig_bio);
8106 int ret;
8107
8108 /*
8109 * We load all the csum data we need when we submit
8110 * the first bio to reduce the csum tree search and
8111 * contention.
8112 */
8113 if (dip->logical_offset == file_offset) {
8114 ret = btrfs_lookup_bio_sums_dio(root, inode, dip->orig_bio,
8115 file_offset);
8116 if (ret)
8117 return ret;
8118 }
8119
8120 if (bio == dip->orig_bio)
8121 return 0;
8122
8123 file_offset -= dip->logical_offset;
8124 file_offset >>= inode->i_sb->s_blocksize_bits;
8125 io_bio->csum = (u8 *)(((u32 *)orig_io_bio->csum) + file_offset);
8126
8127 return 0;
8128}
8129
Miao Xiee65e1532010-11-22 03:04:43 +00008130static inline int __btrfs_submit_dio_bio(struct bio *bio, struct inode *inode,
8131 int rw, u64 file_offset, int skip_sum,
Josef Bacikc3298612012-08-03 16:49:19 -04008132 int async_submit)
Miao Xiee65e1532010-11-22 03:04:43 +00008133{
Miao Xiefacc8a222013-07-25 19:22:34 +08008134 struct btrfs_dio_private *dip = bio->bi_private;
Miao Xiee65e1532010-11-22 03:04:43 +00008135 int write = rw & REQ_WRITE;
8136 struct btrfs_root *root = BTRFS_I(inode)->root;
8137 int ret;
8138
Josef Bacikb812ce22012-11-16 13:56:32 -05008139 if (async_submit)
8140 async_submit = !atomic_read(&BTRFS_I(inode)->sync_writers);
8141
Miao Xiee65e1532010-11-22 03:04:43 +00008142 bio_get(bio);
Josef Bacik5fd02042012-05-02 14:00:54 -04008143
8144 if (!write) {
David Sterbabfebd8b2014-07-30 00:25:45 +02008145 ret = btrfs_bio_wq_end_io(root->fs_info, bio,
8146 BTRFS_WQ_ENDIO_DATA);
Josef Bacik5fd02042012-05-02 14:00:54 -04008147 if (ret)
8148 goto err;
8149 }
Miao Xiee65e1532010-11-22 03:04:43 +00008150
Josef Bacik1ae39932011-04-06 14:41:34 -04008151 if (skip_sum)
8152 goto map;
8153
8154 if (write && async_submit) {
Miao Xiee65e1532010-11-22 03:04:43 +00008155 ret = btrfs_wq_submit_bio(root->fs_info,
8156 inode, rw, bio, 0, 0,
8157 file_offset,
8158 __btrfs_submit_bio_start_direct_io,
8159 __btrfs_submit_bio_done);
8160 goto err;
Josef Bacik1ae39932011-04-06 14:41:34 -04008161 } else if (write) {
8162 /*
8163 * If we aren't doing async submit, calculate the csum of the
8164 * bio now.
8165 */
8166 ret = btrfs_csum_one_bio(root, inode, bio, file_offset, 1);
8167 if (ret)
8168 goto err;
Miao Xie23ea8e52014-09-12 18:43:54 +08008169 } else {
Miao Xiec1dc0892014-09-12 18:43:56 +08008170 ret = btrfs_lookup_and_bind_dio_csum(root, inode, dip, bio,
8171 file_offset);
Tsutomu Itohc2db1072011-03-01 06:48:31 +00008172 if (ret)
8173 goto err;
8174 }
Josef Bacik1ae39932011-04-06 14:41:34 -04008175map:
8176 ret = btrfs_map_bio(root, rw, bio, 0, async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00008177err:
8178 bio_put(bio);
8179 return ret;
8180}
8181
8182static int btrfs_submit_direct_hook(int rw, struct btrfs_dio_private *dip,
8183 int skip_sum)
8184{
8185 struct inode *inode = dip->inode;
8186 struct btrfs_root *root = BTRFS_I(inode)->root;
Miao Xiee65e1532010-11-22 03:04:43 +00008187 struct bio *bio;
8188 struct bio *orig_bio = dip->orig_bio;
8189 struct bio_vec *bvec = orig_bio->bi_io_vec;
Kent Overstreet4f024f32013-10-11 15:44:27 -07008190 u64 start_sector = orig_bio->bi_iter.bi_sector;
Miao Xiee65e1532010-11-22 03:04:43 +00008191 u64 file_offset = dip->logical_offset;
8192 u64 submit_len = 0;
8193 u64 map_length;
8194 int nr_pages = 0;
Miao Xie23ea8e52014-09-12 18:43:54 +08008195 int ret;
Josef Bacik1ae39932011-04-06 14:41:34 -04008196 int async_submit = 0;
Miao Xiee65e1532010-11-22 03:04:43 +00008197
Kent Overstreet4f024f32013-10-11 15:44:27 -07008198 map_length = orig_bio->bi_iter.bi_size;
David Woodhouse53b381b2013-01-29 18:40:14 -05008199 ret = btrfs_map_block(root->fs_info, rw, start_sector << 9,
Miao Xiee65e1532010-11-22 03:04:43 +00008200 &map_length, NULL, 0);
Miao Xie7a5c3c92014-06-17 18:58:59 +08008201 if (ret)
Miao Xiee65e1532010-11-22 03:04:43 +00008202 return -EIO;
Miao Xiefacc8a222013-07-25 19:22:34 +08008203
Kent Overstreet4f024f32013-10-11 15:44:27 -07008204 if (map_length >= orig_bio->bi_iter.bi_size) {
Josef Bacik02f57c72011-04-06 14:25:44 -04008205 bio = orig_bio;
Miao Xiec1dc0892014-09-12 18:43:56 +08008206 dip->flags |= BTRFS_DIO_ORIG_BIO_SUBMITTED;
Josef Bacik02f57c72011-04-06 14:25:44 -04008207 goto submit;
8208 }
8209
David Woodhouse53b381b2013-01-29 18:40:14 -05008210 /* async crcs make it difficult to collect full stripe writes. */
Zhao Leiffe2d202015-01-20 15:11:44 +08008211 if (btrfs_get_alloc_profile(root, 1) & BTRFS_BLOCK_GROUP_RAID56_MASK)
David Woodhouse53b381b2013-01-29 18:40:14 -05008212 async_submit = 0;
8213 else
8214 async_submit = 1;
8215
Josef Bacik02f57c72011-04-06 14:25:44 -04008216 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev, start_sector, GFP_NOFS);
8217 if (!bio)
8218 return -ENOMEM;
Miao Xie7a5c3c92014-06-17 18:58:59 +08008219
Josef Bacik02f57c72011-04-06 14:25:44 -04008220 bio->bi_private = dip;
8221 bio->bi_end_io = btrfs_end_dio_bio;
Miao Xiec1dc0892014-09-12 18:43:56 +08008222 btrfs_io_bio(bio)->logical = file_offset;
Josef Bacik02f57c72011-04-06 14:25:44 -04008223 atomic_inc(&dip->pending_bios);
8224
Miao Xiee65e1532010-11-22 03:04:43 +00008225 while (bvec <= (orig_bio->bi_io_vec + orig_bio->bi_vcnt - 1)) {
David Sterbaee39b432014-09-30 01:33:33 +02008226 if (map_length < submit_len + bvec->bv_len ||
Miao Xiee65e1532010-11-22 03:04:43 +00008227 bio_add_page(bio, bvec->bv_page, bvec->bv_len,
David Sterbaee39b432014-09-30 01:33:33 +02008228 bvec->bv_offset) < bvec->bv_len) {
Miao Xiee65e1532010-11-22 03:04:43 +00008229 /*
8230 * inc the count before we submit the bio so
8231 * we know the end IO handler won't happen before
8232 * we inc the count. Otherwise, the dip might get freed
8233 * before we're done setting it up
8234 */
8235 atomic_inc(&dip->pending_bios);
8236 ret = __btrfs_submit_dio_bio(bio, inode, rw,
8237 file_offset, skip_sum,
Josef Bacikc3298612012-08-03 16:49:19 -04008238 async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00008239 if (ret) {
8240 bio_put(bio);
8241 atomic_dec(&dip->pending_bios);
8242 goto out_err;
8243 }
8244
Miao Xiee65e1532010-11-22 03:04:43 +00008245 start_sector += submit_len >> 9;
8246 file_offset += submit_len;
8247
8248 submit_len = 0;
8249 nr_pages = 0;
8250
8251 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev,
8252 start_sector, GFP_NOFS);
8253 if (!bio)
8254 goto out_err;
8255 bio->bi_private = dip;
8256 bio->bi_end_io = btrfs_end_dio_bio;
Miao Xiec1dc0892014-09-12 18:43:56 +08008257 btrfs_io_bio(bio)->logical = file_offset;
Miao Xiee65e1532010-11-22 03:04:43 +00008258
Kent Overstreet4f024f32013-10-11 15:44:27 -07008259 map_length = orig_bio->bi_iter.bi_size;
David Woodhouse53b381b2013-01-29 18:40:14 -05008260 ret = btrfs_map_block(root->fs_info, rw,
Stefan Behrens3ec706c2012-11-05 15:46:42 +01008261 start_sector << 9,
Miao Xiee65e1532010-11-22 03:04:43 +00008262 &map_length, NULL, 0);
8263 if (ret) {
8264 bio_put(bio);
8265 goto out_err;
8266 }
8267 } else {
8268 submit_len += bvec->bv_len;
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05308269 nr_pages++;
Miao Xiee65e1532010-11-22 03:04:43 +00008270 bvec++;
8271 }
8272 }
8273
Josef Bacik02f57c72011-04-06 14:25:44 -04008274submit:
Miao Xiee65e1532010-11-22 03:04:43 +00008275 ret = __btrfs_submit_dio_bio(bio, inode, rw, file_offset, skip_sum,
Josef Bacikc3298612012-08-03 16:49:19 -04008276 async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00008277 if (!ret)
8278 return 0;
8279
8280 bio_put(bio);
8281out_err:
8282 dip->errors = 1;
8283 /*
8284 * before atomic variable goto zero, we must
8285 * make sure dip->errors is perceived to be set.
8286 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01008287 smp_mb__before_atomic();
Miao Xiee65e1532010-11-22 03:04:43 +00008288 if (atomic_dec_and_test(&dip->pending_bios))
8289 bio_io_error(dip->orig_bio);
8290
8291 /* bio_end_io() will handle error, so we needn't return it */
8292 return 0;
8293}
8294
Chris Mason9be33952013-05-17 18:30:14 -04008295static void btrfs_submit_direct(int rw, struct bio *dio_bio,
8296 struct inode *inode, loff_t file_offset)
Josef Bacik4b46fce2010-05-23 11:00:55 -04008297{
Filipe Manana61de7182015-07-01 12:13:10 +01008298 struct btrfs_dio_private *dip = NULL;
8299 struct bio *io_bio = NULL;
Miao Xie23ea8e52014-09-12 18:43:54 +08008300 struct btrfs_io_bio *btrfs_bio;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008301 int skip_sum;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02008302 int write = rw & REQ_WRITE;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008303 int ret = 0;
8304
8305 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
8306
Chris Mason9be33952013-05-17 18:30:14 -04008307 io_bio = btrfs_bio_clone(dio_bio, GFP_NOFS);
Chris Mason9be33952013-05-17 18:30:14 -04008308 if (!io_bio) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04008309 ret = -ENOMEM;
8310 goto free_ordered;
8311 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04008312
Miao Xiec1dc0892014-09-12 18:43:56 +08008313 dip = kzalloc(sizeof(*dip), GFP_NOFS);
Chris Mason9be33952013-05-17 18:30:14 -04008314 if (!dip) {
8315 ret = -ENOMEM;
Filipe Manana61de7182015-07-01 12:13:10 +01008316 goto free_ordered;
Chris Mason9be33952013-05-17 18:30:14 -04008317 }
8318
8319 dip->private = dio_bio->bi_private;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008320 dip->inode = inode;
8321 dip->logical_offset = file_offset;
Kent Overstreet4f024f32013-10-11 15:44:27 -07008322 dip->bytes = dio_bio->bi_iter.bi_size;
8323 dip->disk_bytenr = (u64)dio_bio->bi_iter.bi_sector << 9;
Chris Mason9be33952013-05-17 18:30:14 -04008324 io_bio->bi_private = dip;
Chris Mason9be33952013-05-17 18:30:14 -04008325 dip->orig_bio = io_bio;
8326 dip->dio_bio = dio_bio;
Miao Xiee65e1532010-11-22 03:04:43 +00008327 atomic_set(&dip->pending_bios, 0);
Miao Xiec1dc0892014-09-12 18:43:56 +08008328 btrfs_bio = btrfs_io_bio(io_bio);
8329 btrfs_bio->logical = file_offset;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008330
Miao Xiec1dc0892014-09-12 18:43:56 +08008331 if (write) {
Chris Mason9be33952013-05-17 18:30:14 -04008332 io_bio->bi_end_io = btrfs_endio_direct_write;
Miao Xiec1dc0892014-09-12 18:43:56 +08008333 } else {
Chris Mason9be33952013-05-17 18:30:14 -04008334 io_bio->bi_end_io = btrfs_endio_direct_read;
Miao Xiec1dc0892014-09-12 18:43:56 +08008335 dip->subio_endio = btrfs_subio_endio_read;
8336 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04008337
Miao Xiee65e1532010-11-22 03:04:43 +00008338 ret = btrfs_submit_direct_hook(rw, dip, skip_sum);
8339 if (!ret)
Chris Masoneaf25d92010-05-25 09:48:28 -04008340 return;
Chris Mason9be33952013-05-17 18:30:14 -04008341
Miao Xie23ea8e52014-09-12 18:43:54 +08008342 if (btrfs_bio->end_io)
8343 btrfs_bio->end_io(btrfs_bio, ret);
Chris Mason9be33952013-05-17 18:30:14 -04008344
Josef Bacik4b46fce2010-05-23 11:00:55 -04008345free_ordered:
8346 /*
Filipe Manana61de7182015-07-01 12:13:10 +01008347 * If we arrived here it means either we failed to submit the dip
8348 * or we either failed to clone the dio_bio or failed to allocate the
8349 * dip. If we cloned the dio_bio and allocated the dip, we can just
8350 * call bio_endio against our io_bio so that we get proper resource
8351 * cleanup if we fail to submit the dip, otherwise, we must do the
8352 * same as btrfs_endio_direct_[write|read] because we can't call these
8353 * callbacks - they require an allocated dip and a clone of dio_bio.
Josef Bacik4b46fce2010-05-23 11:00:55 -04008354 */
Filipe Manana61de7182015-07-01 12:13:10 +01008355 if (io_bio && dip) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008356 io_bio->bi_error = -EIO;
8357 bio_endio(io_bio);
Filipe Manana61de7182015-07-01 12:13:10 +01008358 /*
8359 * The end io callbacks free our dip, do the final put on io_bio
8360 * and all the cleanup and final put for dio_bio (through
8361 * dio_end_io()).
8362 */
8363 dip = NULL;
8364 io_bio = NULL;
8365 } else {
8366 if (write) {
8367 struct btrfs_ordered_extent *ordered;
8368
8369 ordered = btrfs_lookup_ordered_extent(inode,
8370 file_offset);
8371 set_bit(BTRFS_ORDERED_IOERR, &ordered->flags);
8372 /*
8373 * Decrements our ref on the ordered extent and removes
8374 * the ordered extent from the inode's ordered tree,
8375 * doing all the proper resource cleanup such as for the
8376 * reserved space and waking up any waiters for this
8377 * ordered extent (through btrfs_remove_ordered_extent).
8378 */
8379 btrfs_finish_ordered_io(ordered);
8380 } else {
8381 unlock_extent(&BTRFS_I(inode)->io_tree, file_offset,
8382 file_offset + dio_bio->bi_iter.bi_size - 1);
8383 }
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008384 dio_bio->bi_error = -EIO;
Filipe Manana61de7182015-07-01 12:13:10 +01008385 /*
8386 * Releases and cleans up our dio_bio, no need to bio_put()
8387 * nor bio_endio()/bio_io_error() against dio_bio.
8388 */
8389 dio_end_io(dio_bio, ret);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008390 }
Filipe Manana61de7182015-07-01 12:13:10 +01008391 if (io_bio)
8392 bio_put(io_bio);
8393 kfree(dip);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008394}
8395
Omar Sandoval6f673762015-03-16 04:33:52 -07008396static ssize_t check_direct_IO(struct btrfs_root *root, struct kiocb *iocb,
Al Viro28060d52014-03-22 05:15:17 -04008397 const struct iov_iter *iter, loff_t offset)
Chris Mason5a5f79b2010-05-26 21:33:37 -04008398{
8399 int seg;
Josef Bacika1b75f72011-04-08 15:51:18 +00008400 int i;
Chris Mason5a5f79b2010-05-26 21:33:37 -04008401 unsigned blocksize_mask = root->sectorsize - 1;
8402 ssize_t retval = -EINVAL;
Chris Mason5a5f79b2010-05-26 21:33:37 -04008403
8404 if (offset & blocksize_mask)
8405 goto out;
8406
Al Viro28060d52014-03-22 05:15:17 -04008407 if (iov_iter_alignment(iter) & blocksize_mask)
8408 goto out;
Josef Bacika1b75f72011-04-08 15:51:18 +00008409
Al Viro28060d52014-03-22 05:15:17 -04008410 /* If this is a write we don't need to check anymore */
Omar Sandoval6f673762015-03-16 04:33:52 -07008411 if (iov_iter_rw(iter) == WRITE)
Al Viro28060d52014-03-22 05:15:17 -04008412 return 0;
8413 /*
8414 * Check to make sure we don't have duplicate iov_base's in this
8415 * iovec, if so return EINVAL, otherwise we'll get csum errors
8416 * when reading back.
8417 */
8418 for (seg = 0; seg < iter->nr_segs; seg++) {
8419 for (i = seg + 1; i < iter->nr_segs; i++) {
8420 if (iter->iov[seg].iov_base == iter->iov[i].iov_base)
Josef Bacika1b75f72011-04-08 15:51:18 +00008421 goto out;
8422 }
Chris Mason5a5f79b2010-05-26 21:33:37 -04008423 }
8424 retval = 0;
8425out:
8426 return retval;
8427}
Josef Bacikeb838e72012-07-31 16:28:48 -04008428
Omar Sandoval22c61862015-03-16 04:33:53 -07008429static ssize_t btrfs_direct_IO(struct kiocb *iocb, struct iov_iter *iter,
8430 loff_t offset)
Chris Mason16432982008-04-10 10:23:21 -04008431{
Josef Bacik4b46fce2010-05-23 11:00:55 -04008432 struct file *file = iocb->ki_filp;
8433 struct inode *inode = file->f_mapping->host;
chandan50745b02015-08-28 21:10:13 +05308434 struct btrfs_root *root = BTRFS_I(inode)->root;
8435 struct btrfs_dio_data dio_data = { 0 };
Miao Xie09348562013-02-07 10:12:07 +00008436 size_t count = 0;
Miao Xie2e60a512013-02-08 07:01:08 +00008437 int flags = 0;
Miao Xie38851cc2013-02-08 07:04:11 +00008438 bool wakeup = true;
8439 bool relock = false;
Miao Xie09348562013-02-07 10:12:07 +00008440 ssize_t ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008441
Omar Sandoval6f673762015-03-16 04:33:52 -07008442 if (check_direct_IO(BTRFS_I(inode)->root, iocb, iter, offset))
Chris Mason5a5f79b2010-05-26 21:33:37 -04008443 return 0;
Chris Mason5a5f79b2010-05-26 21:33:37 -04008444
Jens Axboefe0f07d2015-04-15 17:05:48 -06008445 inode_dio_begin(inode);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01008446 smp_mb__after_atomic();
Miao Xie38851cc2013-02-08 07:04:11 +00008447
Josef Bacik0e267c42013-07-02 10:38:02 -04008448 /*
Miao Xie41bd9ca2014-03-06 13:54:57 +08008449 * The generic stuff only does filemap_write_and_wait_range, which
8450 * isn't enough if we've written compressed pages to this area, so
8451 * we need to flush the dirty pages again to make absolutely sure
8452 * that any outstanding dirty pages are on disk.
Josef Bacik0e267c42013-07-02 10:38:02 -04008453 */
Al Viroa6cbcd42014-03-04 22:38:00 -05008454 count = iov_iter_count(iter);
Miao Xie41bd9ca2014-03-06 13:54:57 +08008455 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
8456 &BTRFS_I(inode)->runtime_flags))
Wang Shilong9a025a02014-07-17 11:44:13 +08008457 filemap_fdatawrite_range(inode->i_mapping, offset,
8458 offset + count - 1);
Josef Bacik0e267c42013-07-02 10:38:02 -04008459
Omar Sandoval6f673762015-03-16 04:33:52 -07008460 if (iov_iter_rw(iter) == WRITE) {
Miao Xie38851cc2013-02-08 07:04:11 +00008461 /*
8462 * If the write DIO is beyond the EOF, we need update
8463 * the isize, but it is protected by i_mutex. So we can
8464 * not unlock the i_mutex at this case.
8465 */
8466 if (offset + count <= inode->i_size) {
8467 mutex_unlock(&inode->i_mutex);
8468 relock = true;
8469 }
Qu Wenruo7cf5b972015-09-08 17:25:55 +08008470 ret = btrfs_delalloc_reserve_space(inode, offset, count);
Miao Xie09348562013-02-07 10:12:07 +00008471 if (ret)
Miao Xie38851cc2013-02-08 07:04:11 +00008472 goto out;
chandan50745b02015-08-28 21:10:13 +05308473 dio_data.outstanding_extents = div64_u64(count +
Josef Bacike1cbbfa2015-03-17 10:52:28 -04008474 BTRFS_MAX_EXTENT_SIZE - 1,
8475 BTRFS_MAX_EXTENT_SIZE);
8476
8477 /*
8478 * We need to know how many extents we reserved so that we can
8479 * do the accounting properly if we go over the number we
8480 * originally calculated. Abuse current->journal_info for this.
8481 */
chandan50745b02015-08-28 21:10:13 +05308482 dio_data.reserve = round_up(count, root->sectorsize);
8483 current->journal_info = &dio_data;
David Sterbaee39b432014-09-30 01:33:33 +02008484 } else if (test_bit(BTRFS_INODE_READDIO_NEED_LOCK,
8485 &BTRFS_I(inode)->runtime_flags)) {
Jens Axboefe0f07d2015-04-15 17:05:48 -06008486 inode_dio_end(inode);
Miao Xie38851cc2013-02-08 07:04:11 +00008487 flags = DIO_LOCKING | DIO_SKIP_HOLES;
8488 wakeup = false;
Miao Xie09348562013-02-07 10:12:07 +00008489 }
8490
Omar Sandoval17f8c842015-03-16 04:33:50 -07008491 ret = __blockdev_direct_IO(iocb, inode,
8492 BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev,
8493 iter, offset, btrfs_get_blocks_direct, NULL,
8494 btrfs_submit_direct, flags);
Omar Sandoval6f673762015-03-16 04:33:52 -07008495 if (iov_iter_rw(iter) == WRITE) {
Josef Bacike1cbbfa2015-03-17 10:52:28 -04008496 current->journal_info = NULL;
Liu Boddba1bf2015-06-17 16:59:58 +08008497 if (ret < 0 && ret != -EIOCBQUEUED) {
chandan50745b02015-08-28 21:10:13 +05308498 if (dio_data.reserve)
Qu Wenruo7cf5b972015-09-08 17:25:55 +08008499 btrfs_delalloc_release_space(inode, offset,
8500 dio_data.reserve);
Liu Boddba1bf2015-06-17 16:59:58 +08008501 } else if (ret >= 0 && (size_t)ret < count)
Qu Wenruo7cf5b972015-09-08 17:25:55 +08008502 btrfs_delalloc_release_space(inode, offset,
8503 count - (size_t)ret);
Miao Xie09348562013-02-07 10:12:07 +00008504 }
Miao Xie38851cc2013-02-08 07:04:11 +00008505out:
Miao Xie2e60a512013-02-08 07:01:08 +00008506 if (wakeup)
Jens Axboefe0f07d2015-04-15 17:05:48 -06008507 inode_dio_end(inode);
Miao Xie38851cc2013-02-08 07:04:11 +00008508 if (relock)
8509 mutex_lock(&inode->i_mutex);
Miao Xie09348562013-02-07 10:12:07 +00008510
8511 return ret;
Chris Mason16432982008-04-10 10:23:21 -04008512}
8513
Tsutomu Itoh05dadc02012-11-29 05:08:26 +00008514#define BTRFS_FIEMAP_FLAGS (FIEMAP_FLAG_SYNC)
8515
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05008516static int btrfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
8517 __u64 start, __u64 len)
8518{
Tsutomu Itoh05dadc02012-11-29 05:08:26 +00008519 int ret;
8520
8521 ret = fiemap_check_flags(fieinfo, BTRFS_FIEMAP_FLAGS);
8522 if (ret)
8523 return ret;
8524
Chris Masonec29ed52011-02-23 16:23:20 -05008525 return extent_fiemap(inode, fieinfo, start, len, btrfs_get_extent_fiemap);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05008526}
8527
Chris Mason9ebefb182007-06-15 13:50:00 -04008528int btrfs_readpage(struct file *file, struct page *page)
8529{
Chris Masond1310b22008-01-24 16:13:08 -05008530 struct extent_io_tree *tree;
8531 tree = &BTRFS_I(page->mapping->host)->io_tree;
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02008532 return extent_read_full_page(tree, page, btrfs_get_extent, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04008533}
Chris Mason1832a6d2007-12-21 16:27:21 -05008534
Chris Mason39279cc2007-06-12 06:35:45 -04008535static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
8536{
Chris Masond1310b22008-01-24 16:13:08 -05008537 struct extent_io_tree *tree;
Chris Masonb888db22007-08-27 16:49:44 -04008538
8539
8540 if (current->flags & PF_MEMALLOC) {
8541 redirty_page_for_writepage(wbc, page);
8542 unlock_page(page);
8543 return 0;
8544 }
Chris Masond1310b22008-01-24 16:13:08 -05008545 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04008546 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
8547}
Chris Mason39279cc2007-06-12 06:35:45 -04008548
Eric Sandeen48a3b632013-04-25 20:41:01 +00008549static int btrfs_writepages(struct address_space *mapping,
8550 struct writeback_control *wbc)
Chris Masonb293f022007-11-01 19:45:34 -04008551{
Chris Masond1310b22008-01-24 16:13:08 -05008552 struct extent_io_tree *tree;
Chris Mason771ed682008-11-06 22:02:51 -05008553
Chris Masond1310b22008-01-24 16:13:08 -05008554 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f022007-11-01 19:45:34 -04008555 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
8556}
8557
Chris Mason3ab2fb52007-11-08 10:59:22 -05008558static int
8559btrfs_readpages(struct file *file, struct address_space *mapping,
8560 struct list_head *pages, unsigned nr_pages)
8561{
Chris Masond1310b22008-01-24 16:13:08 -05008562 struct extent_io_tree *tree;
8563 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05008564 return extent_readpages(tree, mapping, pages, nr_pages,
8565 btrfs_get_extent);
8566}
Chris Masone6dcd2d2008-07-17 12:53:50 -04008567static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04008568{
Chris Masond1310b22008-01-24 16:13:08 -05008569 struct extent_io_tree *tree;
8570 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04008571 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04008572
Chris Masond1310b22008-01-24 16:13:08 -05008573 tree = &BTRFS_I(page->mapping->host)->io_tree;
8574 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05008575 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04008576 if (ret == 1) {
8577 ClearPagePrivate(page);
8578 set_page_private(page, 0);
8579 page_cache_release(page);
8580 }
8581 return ret;
8582}
Chris Mason39279cc2007-06-12 06:35:45 -04008583
Chris Masone6dcd2d2008-07-17 12:53:50 -04008584static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
8585{
Chris Mason98509cf2008-09-11 15:51:43 -04008586 if (PageWriteback(page) || PageDirty(page))
8587 return 0;
Yan Zhengb335b002009-02-12 10:06:04 -05008588 return __btrfs_releasepage(page, gfp_flags & GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008589}
8590
Lukas Czernerd47992f2013-05-21 23:17:23 -04008591static void btrfs_invalidatepage(struct page *page, unsigned int offset,
8592 unsigned int length)
Chris Masona52d9a82007-08-27 16:49:44 -04008593{
Josef Bacik5fd02042012-05-02 14:00:54 -04008594 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05008595 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008596 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00008597 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008598 u64 page_start = page_offset(page);
8599 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008600 int inode_evicting = inode->i_state & I_FREEING;
Chris Masona52d9a82007-08-27 16:49:44 -04008601
Chris Mason8b62b722009-09-02 16:53:46 -04008602 /*
8603 * we have the page locked, so new writeback can't start,
8604 * and the dirty bit won't be cleared while we are here.
8605 *
8606 * Wait for IO on this page so that we can safely clear
8607 * the PagePrivate2 bit and do ordered accounting
8608 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04008609 wait_on_page_writeback(page);
Chris Mason8b62b722009-09-02 16:53:46 -04008610
Josef Bacik5fd02042012-05-02 14:00:54 -04008611 tree = &BTRFS_I(inode)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008612 if (offset) {
8613 btrfs_releasepage(page, GFP_NOFS);
8614 return;
8615 }
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008616
8617 if (!inode_evicting)
8618 lock_extent_bits(tree, page_start, page_end, 0, &cached_state);
8619 ordered = btrfs_lookup_ordered_extent(inode, page_start);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008620 if (ordered) {
Chris Masoneb84ae02008-07-17 13:53:27 -04008621 /*
8622 * IO on this page will never be started, so we need
8623 * to account for any ordered extents now
8624 */
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008625 if (!inode_evicting)
8626 clear_extent_bit(tree, page_start, page_end,
8627 EXTENT_DIRTY | EXTENT_DELALLOC |
8628 EXTENT_LOCKED | EXTENT_DO_ACCOUNTING |
8629 EXTENT_DEFRAG, 1, 0, &cached_state,
8630 GFP_NOFS);
Chris Mason8b62b722009-09-02 16:53:46 -04008631 /*
8632 * whoever cleared the private bit is responsible
8633 * for the finish_ordered_io
8634 */
Josef Bacik77cef2e2013-08-29 13:57:21 -04008635 if (TestClearPagePrivate2(page)) {
8636 struct btrfs_ordered_inode_tree *tree;
8637 u64 new_len;
8638
8639 tree = &BTRFS_I(inode)->ordered_tree;
8640
8641 spin_lock_irq(&tree->lock);
8642 set_bit(BTRFS_ORDERED_TRUNCATED, &ordered->flags);
8643 new_len = page_start - ordered->file_offset;
8644 if (new_len < ordered->truncated_len)
8645 ordered->truncated_len = new_len;
8646 spin_unlock_irq(&tree->lock);
8647
8648 if (btrfs_dec_test_ordered_pending(inode, &ordered,
8649 page_start,
8650 PAGE_CACHE_SIZE, 1))
8651 btrfs_finish_ordered_io(ordered);
Chris Mason8b62b722009-09-02 16:53:46 -04008652 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04008653 btrfs_put_ordered_extent(ordered);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008654 if (!inode_evicting) {
8655 cached_state = NULL;
8656 lock_extent_bits(tree, page_start, page_end, 0,
8657 &cached_state);
8658 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04008659 }
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008660
Qu Wenruob9d0b382015-09-29 10:35:16 +08008661 /*
8662 * Qgroup reserved space handler
8663 * Page here will be either
8664 * 1) Already written to disk
8665 * In this case, its reserved space is released from data rsv map
8666 * and will be freed by delayed_ref handler finally.
8667 * So even we call qgroup_free_data(), it won't decrease reserved
8668 * space.
8669 * 2) Not written to disk
8670 * This means the reserved space should be freed here.
8671 */
8672 btrfs_qgroup_free_data(inode, page_start, PAGE_CACHE_SIZE);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008673 if (!inode_evicting) {
8674 clear_extent_bit(tree, page_start, page_end,
8675 EXTENT_LOCKED | EXTENT_DIRTY |
8676 EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING |
8677 EXTENT_DEFRAG, 1, 1,
8678 &cached_state, GFP_NOFS);
8679
8680 __btrfs_releasepage(page, GFP_NOFS);
8681 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04008682
Chris Mason4a096752008-07-21 10:29:44 -04008683 ClearPageChecked(page);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04008684 if (PagePrivate(page)) {
Chris Mason9ad6b7b2008-04-18 16:11:30 -04008685 ClearPagePrivate(page);
8686 set_page_private(page, 0);
8687 page_cache_release(page);
8688 }
Chris Mason39279cc2007-06-12 06:35:45 -04008689}
8690
Chris Mason9ebefb182007-06-15 13:50:00 -04008691/*
8692 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
8693 * called from a page fault handler when a page is first dirtied. Hence we must
8694 * be careful to check for EOF conditions here. We set the page up correctly
8695 * for a written page which means we get ENOSPC checking when writing into
8696 * holes and correct delalloc and unwritten extent mapping on filesystems that
8697 * support these features.
8698 *
8699 * We are not allowed to take the i_mutex here so we have to play games to
8700 * protect against truncate races as the page could now be beyond EOF. Because
8701 * vmtruncate() writes the inode size before removing pages, once we have the
8702 * page lock we can determine safely if the page is beyond EOF. If it is not
8703 * beyond EOF, then the page is guaranteed safe against truncation until we
8704 * unlock the page.
8705 */
Nick Pigginc2ec1752009-03-31 15:23:21 -07008706int btrfs_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Chris Mason9ebefb182007-06-15 13:50:00 -04008707{
Nick Pigginc2ec1752009-03-31 15:23:21 -07008708 struct page *page = vmf->page;
Al Viro496ad9a2013-01-23 17:07:38 -05008709 struct inode *inode = file_inode(vma->vm_file);
Chris Mason1832a6d2007-12-21 16:27:21 -05008710 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008711 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
8712 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00008713 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008714 char *kaddr;
8715 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04008716 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05008717 int ret;
Chris Mason9998eb72012-01-25 13:47:40 -05008718 int reserved = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04008719 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008720 u64 page_end;
Chris Mason9ebefb182007-06-15 13:50:00 -04008721
Jan Karab2b5ef52012-06-12 16:20:45 +02008722 sb_start_pagefault(inode->i_sb);
Qu Wenruodf480632015-09-08 17:25:54 +08008723 page_start = page_offset(page);
8724 page_end = page_start + PAGE_CACHE_SIZE - 1;
8725
Qu Wenruo7cf5b972015-09-08 17:25:55 +08008726 ret = btrfs_delalloc_reserve_space(inode, page_start,
8727 PAGE_CACHE_SIZE);
Chris Mason9998eb72012-01-25 13:47:40 -05008728 if (!ret) {
Josef Bacike41f9412012-03-26 09:46:47 -04008729 ret = file_update_time(vma->vm_file);
Chris Mason9998eb72012-01-25 13:47:40 -05008730 reserved = 1;
8731 }
Nick Piggin56a76f82009-03-31 15:23:23 -07008732 if (ret) {
8733 if (ret == -ENOMEM)
8734 ret = VM_FAULT_OOM;
8735 else /* -ENOSPC, -EIO, etc */
8736 ret = VM_FAULT_SIGBUS;
Chris Mason9998eb72012-01-25 13:47:40 -05008737 if (reserved)
8738 goto out;
8739 goto out_noreserve;
Nick Piggin56a76f82009-03-31 15:23:23 -07008740 }
Chris Mason1832a6d2007-12-21 16:27:21 -05008741
Nick Piggin56a76f82009-03-31 15:23:23 -07008742 ret = VM_FAULT_NOPAGE; /* make the VM retry the fault */
Chris Masone6dcd2d2008-07-17 12:53:50 -04008743again:
Chris Mason9ebefb182007-06-15 13:50:00 -04008744 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04008745 size = i_size_read(inode);
Chris Masona52d9a82007-08-27 16:49:44 -04008746
Chris Mason9ebefb182007-06-15 13:50:00 -04008747 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04008748 (page_start >= size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04008749 /* page got truncated out from underneath us */
8750 goto out_unlock;
8751 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04008752 wait_on_page_writeback(page);
8753
Jeff Mahoneyd0082372012-03-01 14:57:19 +01008754 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008755 set_page_extent_mapped(page);
8756
Chris Masoneb84ae02008-07-17 13:53:27 -04008757 /*
8758 * we can't set the delalloc bits if there are pending ordered
8759 * extents. Drop our locks and wait for them to finish
8760 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04008761 ordered = btrfs_lookup_ordered_extent(inode, page_start);
8762 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00008763 unlock_extent_cached(io_tree, page_start, page_end,
8764 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008765 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04008766 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008767 btrfs_put_ordered_extent(ordered);
8768 goto again;
8769 }
8770
Josef Bacikfbf19082009-10-01 17:10:23 -04008771 /*
8772 * XXX - page_mkwrite gets called every time the page is dirtied, even
8773 * if it was already dirty, so for space accounting reasons we need to
8774 * clear any delalloc bits for the range we are fixing to save. There
8775 * is probably a better way to do this, but for now keep consistent with
8776 * prepare_pages in the normal write path.
8777 */
Josef Bacik2ac55d42010-02-03 19:33:23 +00008778 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Liu Bo9e8a4a82012-09-05 19:10:51 -06008779 EXTENT_DIRTY | EXTENT_DELALLOC |
8780 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
Josef Bacik2ac55d42010-02-03 19:33:23 +00008781 0, 0, &cached_state, GFP_NOFS);
Josef Bacikfbf19082009-10-01 17:10:23 -04008782
Josef Bacik2ac55d42010-02-03 19:33:23 +00008783 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
8784 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04008785 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00008786 unlock_extent_cached(io_tree, page_start, page_end,
8787 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04008788 ret = VM_FAULT_SIGBUS;
8789 goto out_unlock;
8790 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04008791 ret = 0;
Chris Mason9ebefb182007-06-15 13:50:00 -04008792
8793 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04008794 if (page_start + PAGE_CACHE_SIZE > size)
Chris Masone6dcd2d2008-07-17 12:53:50 -04008795 zero_start = size & ~PAGE_CACHE_MASK;
Chris Mason9ebefb182007-06-15 13:50:00 -04008796 else
Chris Masone6dcd2d2008-07-17 12:53:50 -04008797 zero_start = PAGE_CACHE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04008798
Chris Masone6dcd2d2008-07-17 12:53:50 -04008799 if (zero_start != PAGE_CACHE_SIZE) {
8800 kaddr = kmap(page);
8801 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
8802 flush_dcache_page(page);
8803 kunmap(page);
8804 }
Chris Mason247e7432008-07-17 12:53:51 -04008805 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008806 set_page_dirty(page);
Chris Mason50a9b212009-09-11 12:33:12 -04008807 SetPageUptodate(page);
Chris Mason5a3f23d2009-03-31 13:27:11 -04008808
Chris Mason257c62e2009-10-13 13:21:08 -04008809 BTRFS_I(inode)->last_trans = root->fs_info->generation;
8810 BTRFS_I(inode)->last_sub_trans = BTRFS_I(inode)->root->log_transid;
Liu Bo46d8bc32012-08-29 01:07:55 -06008811 BTRFS_I(inode)->last_log_commit = BTRFS_I(inode)->root->last_log_commit;
Chris Mason257c62e2009-10-13 13:21:08 -04008812
Josef Bacik2ac55d42010-02-03 19:33:23 +00008813 unlock_extent_cached(io_tree, page_start, page_end, &cached_state, GFP_NOFS);
Chris Mason9ebefb182007-06-15 13:50:00 -04008814
8815out_unlock:
Jan Karab2b5ef52012-06-12 16:20:45 +02008816 if (!ret) {
8817 sb_end_pagefault(inode->i_sb);
Chris Mason50a9b212009-09-11 12:33:12 -04008818 return VM_FAULT_LOCKED;
Jan Karab2b5ef52012-06-12 16:20:45 +02008819 }
Chris Mason9ebefb182007-06-15 13:50:00 -04008820 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05008821out:
Qu Wenruo7cf5b972015-09-08 17:25:55 +08008822 btrfs_delalloc_release_space(inode, page_start, PAGE_CACHE_SIZE);
Chris Mason9998eb72012-01-25 13:47:40 -05008823out_noreserve:
Jan Karab2b5ef52012-06-12 16:20:45 +02008824 sb_end_pagefault(inode->i_sb);
Chris Mason9ebefb182007-06-15 13:50:00 -04008825 return ret;
8826}
8827
Josef Bacika41ad392011-01-31 15:30:16 -05008828static int btrfs_truncate(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04008829{
8830 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacikfcb80c22011-05-03 10:40:22 -04008831 struct btrfs_block_rsv *rsv;
Josef Bacika71754f2013-06-17 17:14:39 -04008832 int ret = 0;
Josef Bacik3893e332011-01-31 16:03:11 -05008833 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04008834 struct btrfs_trans_handle *trans;
Chris Masondbe674a2008-07-17 12:54:05 -04008835 u64 mask = root->sectorsize - 1;
Josef Bacik07127182011-08-19 10:29:59 -04008836 u64 min_size = btrfs_calc_trunc_metadata_size(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04008837
Josef Bacik0ef8b722013-10-25 16:13:35 -04008838 ret = btrfs_wait_ordered_range(inode, inode->i_size & (~mask),
8839 (u64)-1);
8840 if (ret)
8841 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04008842
Josef Bacikfcb80c22011-05-03 10:40:22 -04008843 /*
8844 * Yes ladies and gentelment, this is indeed ugly. The fact is we have
8845 * 3 things going on here
8846 *
8847 * 1) We need to reserve space for our orphan item and the space to
8848 * delete our orphan item. Lord knows we don't want to have a dangling
8849 * orphan item because we didn't reserve space to remove it.
8850 *
8851 * 2) We need to reserve space to update our inode.
8852 *
8853 * 3) We need to have something to cache all the space that is going to
8854 * be free'd up by the truncate operation, but also have some slack
8855 * space reserved in case it uses space during the truncate (thank you
8856 * very much snapshotting).
8857 *
8858 * And we need these to all be seperate. The fact is we can use alot of
8859 * space doing the truncate, and we have no earthly idea how much space
8860 * we will use, so we need the truncate reservation to be seperate so it
8861 * doesn't end up using space reserved for updating the inode or
8862 * removing the orphan item. We also need to be able to stop the
8863 * transaction and start a new one, which means we need to be able to
8864 * update the inode several times, and we have no idea of knowing how
8865 * many times that will be, so we can't just reserve 1 item for the
8866 * entirety of the opration, so that has to be done seperately as well.
8867 * Then there is the orphan item, which does indeed need to be held on
8868 * to for the whole operation, and we need nobody to touch this reserved
8869 * space except the orphan code.
8870 *
8871 * So that leaves us with
8872 *
8873 * 1) root->orphan_block_rsv - for the orphan deletion.
8874 * 2) rsv - for the truncate reservation, which we will steal from the
8875 * transaction reservation.
8876 * 3) fs_info->trans_block_rsv - this will have 1 items worth left for
8877 * updating the inode.
8878 */
Miao Xie66d8f3d2012-09-06 04:02:28 -06008879 rsv = btrfs_alloc_block_rsv(root, BTRFS_BLOCK_RSV_TEMP);
Josef Bacikfcb80c22011-05-03 10:40:22 -04008880 if (!rsv)
8881 return -ENOMEM;
Josef Bacik4a338542011-08-29 11:01:31 -04008882 rsv->size = min_size;
Josef Bacikca7e70f2012-08-27 17:48:15 -04008883 rsv->failfast = 1;
Josef Bacikf0cd8462011-03-04 14:37:08 -05008884
Josef Bacik907cbce2011-08-08 13:46:15 -04008885 /*
Josef Bacik07127182011-08-19 10:29:59 -04008886 * 1 for the truncate slack space
Josef Bacik907cbce2011-08-08 13:46:15 -04008887 * 1 for updating the inode.
8888 */
Josef Bacikf3fe8202013-01-07 17:03:21 -05008889 trans = btrfs_start_transaction(root, 2);
Josef Bacikfcb80c22011-05-03 10:40:22 -04008890 if (IS_ERR(trans)) {
8891 err = PTR_ERR(trans);
8892 goto out;
8893 }
Josef Bacikf0cd8462011-03-04 14:37:08 -05008894
Josef Bacik907cbce2011-08-08 13:46:15 -04008895 /* Migrate the slack space for the truncate to our reserve */
8896 ret = btrfs_block_rsv_migrate(&root->fs_info->trans_block_rsv, rsv,
8897 min_size);
Josef Bacikfcb80c22011-05-03 10:40:22 -04008898 BUG_ON(ret);
Josef Bacikf0cd8462011-03-04 14:37:08 -05008899
Chris Mason5a3f23d2009-03-31 13:27:11 -04008900 /*
Josef Bacik5dc562c2012-08-17 13:14:17 -04008901 * So if we truncate and then write and fsync we normally would just
8902 * write the extents that changed, which is a problem if we need to
8903 * first truncate that entire inode. So set this flag so we write out
8904 * all of the extents in the inode to the sync log so we're completely
8905 * safe.
8906 */
8907 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
Josef Bacikca7e70f2012-08-27 17:48:15 -04008908 trans->block_rsv = rsv;
Josef Bacik5dc562c2012-08-17 13:14:17 -04008909
Yan, Zheng80825102009-11-12 09:35:36 +00008910 while (1) {
8911 ret = btrfs_truncate_inode_items(trans, root, inode,
8912 inode->i_size,
8913 BTRFS_EXTENT_DATA_KEY);
Chris Mason28ed1342014-12-17 09:41:04 -08008914 if (ret != -ENOSPC && ret != -EAGAIN) {
Josef Bacik3893e332011-01-31 16:03:11 -05008915 err = ret;
Yan, Zheng80825102009-11-12 09:35:36 +00008916 break;
Josef Bacik3893e332011-01-31 16:03:11 -05008917 }
Chris Mason39279cc2007-06-12 06:35:45 -04008918
Josef Bacikfcb80c22011-05-03 10:40:22 -04008919 trans->block_rsv = &root->fs_info->trans_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00008920 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05008921 if (ret) {
8922 err = ret;
8923 break;
8924 }
Josef Bacikca7e70f2012-08-27 17:48:15 -04008925
Yan, Zheng80825102009-11-12 09:35:36 +00008926 btrfs_end_transaction(trans, root);
Liu Bob53d3f52012-11-14 14:34:34 +00008927 btrfs_btree_balance_dirty(root);
Josef Bacikca7e70f2012-08-27 17:48:15 -04008928
8929 trans = btrfs_start_transaction(root, 2);
8930 if (IS_ERR(trans)) {
8931 ret = err = PTR_ERR(trans);
8932 trans = NULL;
8933 break;
8934 }
8935
8936 ret = btrfs_block_rsv_migrate(&root->fs_info->trans_block_rsv,
8937 rsv, min_size);
8938 BUG_ON(ret); /* shouldn't happen */
8939 trans->block_rsv = rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00008940 }
8941
8942 if (ret == 0 && inode->i_nlink > 0) {
Josef Bacikfcb80c22011-05-03 10:40:22 -04008943 trans->block_rsv = root->orphan_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00008944 ret = btrfs_orphan_del(trans, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05008945 if (ret)
8946 err = ret;
Yan, Zheng80825102009-11-12 09:35:36 +00008947 }
8948
Chris Mason917c16b2011-11-08 14:49:59 -05008949 if (trans) {
8950 trans->block_rsv = &root->fs_info->trans_block_rsv;
8951 ret = btrfs_update_inode(trans, root, inode);
8952 if (ret && !err)
8953 err = ret;
Josef Bacik7b128762008-07-24 12:17:14 -04008954
Josef Bacik7ad85bb2012-01-12 19:10:12 -05008955 ret = btrfs_end_transaction(trans, root);
Liu Bob53d3f52012-11-14 14:34:34 +00008956 btrfs_btree_balance_dirty(root);
Chris Mason917c16b2011-11-08 14:49:59 -05008957 }
Josef Bacikfcb80c22011-05-03 10:40:22 -04008958
8959out:
8960 btrfs_free_block_rsv(root, rsv);
8961
Josef Bacik3893e332011-01-31 16:03:11 -05008962 if (ret && !err)
8963 err = ret;
Josef Bacika41ad392011-01-31 15:30:16 -05008964
Josef Bacik3893e332011-01-31 16:03:11 -05008965 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04008966}
8967
Sven Wegener3b963622008-06-09 21:57:42 -04008968/*
Chris Masond352ac62008-09-29 15:18:18 -04008969 * create a new subvolume directory/inode (helper for the ioctl).
8970 */
Yan Zhengd2fb3432008-12-11 16:30:39 -05008971int btrfs_create_subvol_root(struct btrfs_trans_handle *trans,
Filipe David Borba Manana63541922014-01-07 11:47:46 +00008972 struct btrfs_root *new_root,
8973 struct btrfs_root *parent_root,
8974 u64 new_dirid)
Chris Mason39279cc2007-06-12 06:35:45 -04008975{
Chris Mason39279cc2007-06-12 06:35:45 -04008976 struct inode *inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04008977 int err;
Chris Mason00e4e6b2008-08-05 11:18:09 -04008978 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04008979
Florian Albrechtskirchinger12fc9d02012-02-10 22:15:54 +01008980 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2,
8981 new_dirid, new_dirid,
8982 S_IFDIR | (~current_umask() & S_IRWXUGO),
8983 &index);
Chris Mason54aa1f42007-06-22 14:16:25 -04008984 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04008985 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04008986 inode->i_op = &btrfs_dir_inode_operations;
8987 inode->i_fop = &btrfs_dir_file_operations;
8988
Miklos Szeredibfe86842011-10-28 14:13:29 +02008989 set_nlink(inode, 1);
Chris Masondbe674a2008-07-17 12:54:05 -04008990 btrfs_i_size_write(inode, 0);
Chris Masonb0d5d102014-09-08 13:08:51 -07008991 unlock_new_inode(inode);
Sven Wegener3b963622008-06-09 21:57:42 -04008992
Filipe David Borba Manana63541922014-01-07 11:47:46 +00008993 err = btrfs_subvol_inherit_props(trans, new_root, parent_root);
8994 if (err)
8995 btrfs_err(new_root->fs_info,
David Sterba351fd352014-05-15 16:48:20 +02008996 "error inheriting subvolume %llu properties: %d",
Filipe David Borba Manana63541922014-01-07 11:47:46 +00008997 new_root->root_key.objectid, err);
8998
Yan, Zheng76dda932009-09-21 16:00:26 -04008999 err = btrfs_update_inode(trans, new_root, inode);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04009000
Yan, Zheng76dda932009-09-21 16:00:26 -04009001 iput(inode);
Mark Fashehce598972011-07-26 11:32:23 -07009002 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04009003}
9004
Chris Mason39279cc2007-06-12 06:35:45 -04009005struct inode *btrfs_alloc_inode(struct super_block *sb)
9006{
9007 struct btrfs_inode *ei;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009008 struct inode *inode;
Chris Mason39279cc2007-06-12 06:35:45 -04009009
9010 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
9011 if (!ei)
9012 return NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009013
9014 ei->root = NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009015 ei->generation = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04009016 ei->last_trans = 0;
Chris Mason257c62e2009-10-13 13:21:08 -04009017 ei->last_sub_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04009018 ei->logged_trans = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009019 ei->delalloc_bytes = 0;
Wang Shilong47059d92014-07-03 18:22:07 +08009020 ei->defrag_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009021 ei->disk_i_size = 0;
9022 ei->flags = 0;
Josef Bacik7709cde2011-08-04 10:25:02 -04009023 ei->csum_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009024 ei->index_cnt = (u64)-1;
Miao Xie67de1172013-12-26 13:07:06 +08009025 ei->dir_index = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009026 ei->last_unlink_trans = 0;
Liu Bo46d8bc32012-08-29 01:07:55 -06009027 ei->last_log_commit = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009028
Josef Bacik9e0baf62011-07-15 15:16:44 +00009029 spin_lock_init(&ei->lock);
9030 ei->outstanding_extents = 0;
9031 ei->reserved_extents = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009032
Josef Bacik72ac3c02012-05-23 14:13:11 -04009033 ei->runtime_flags = 0;
Li Zefan261507a02010-12-17 14:21:50 +08009034 ei->force_compress = BTRFS_COMPRESS_NONE;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009035
Miao Xie16cdcec2011-04-22 18:12:22 +08009036 ei->delayed_node = NULL;
9037
chandan r9cc97d62012-07-04 12:48:07 +05309038 ei->i_otime.tv_sec = 0;
9039 ei->i_otime.tv_nsec = 0;
9040
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009041 inode = &ei->vfs_inode;
David Sterbaa8067e02011-04-21 00:34:43 +02009042 extent_map_tree_init(&ei->extent_tree);
David Sterbaf993c882011-04-20 23:35:57 +02009043 extent_io_tree_init(&ei->io_tree, &inode->i_data);
9044 extent_io_tree_init(&ei->io_failure_tree, &inode->i_data);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04009045 ei->io_tree.track_uptodate = 1;
9046 ei->io_failure_tree.track_uptodate = 1;
Josef Bacikb812ce22012-11-16 13:56:32 -05009047 atomic_set(&ei->sync_writers, 0);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009048 mutex_init(&ei->log_mutex);
Josef Bacikf2486792012-01-13 12:09:22 -05009049 mutex_init(&ei->delalloc_mutex);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009050 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009051 INIT_LIST_HEAD(&ei->delalloc_inodes);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009052 RB_CLEAR_NODE(&ei->rb_node);
9053
9054 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04009055}
9056
Josef Bacikaaedb552013-10-11 14:44:09 -04009057#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
9058void btrfs_test_destroy_inode(struct inode *inode)
9059{
9060 btrfs_drop_extent_cache(inode, 0, (u64)-1, 0);
9061 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
9062}
9063#endif
9064
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11009065static void btrfs_i_callback(struct rcu_head *head)
9066{
9067 struct inode *inode = container_of(head, struct inode, i_rcu);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11009068 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
9069}
9070
Chris Mason39279cc2007-06-12 06:35:45 -04009071void btrfs_destroy_inode(struct inode *inode)
9072{
Chris Masone6dcd2d2008-07-17 12:53:50 -04009073 struct btrfs_ordered_extent *ordered;
Chris Mason5a3f23d2009-03-31 13:27:11 -04009074 struct btrfs_root *root = BTRFS_I(inode)->root;
9075
Al Virob3d9b7a2012-06-09 13:51:19 -04009076 WARN_ON(!hlist_empty(&inode->i_dentry));
Chris Mason39279cc2007-06-12 06:35:45 -04009077 WARN_ON(inode->i_data.nrpages);
Josef Bacik9e0baf62011-07-15 15:16:44 +00009078 WARN_ON(BTRFS_I(inode)->outstanding_extents);
9079 WARN_ON(BTRFS_I(inode)->reserved_extents);
Josef Bacik7709cde2011-08-04 10:25:02 -04009080 WARN_ON(BTRFS_I(inode)->delalloc_bytes);
9081 WARN_ON(BTRFS_I(inode)->csum_bytes);
Wang Shilong47059d92014-07-03 18:22:07 +08009082 WARN_ON(BTRFS_I(inode)->defrag_bytes);
Chris Mason39279cc2007-06-12 06:35:45 -04009083
Chris Mason5a3f23d2009-03-31 13:27:11 -04009084 /*
Josef Bacika6dbd422009-11-11 15:53:34 -05009085 * This can happen where we create an inode, but somebody else also
9086 * created the same inode and we need to destroy the one we already
9087 * created.
9088 */
9089 if (!root)
9090 goto free;
9091
Josef Bacik8a35d952012-05-23 14:26:42 -04009092 if (test_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
9093 &BTRFS_I(inode)->runtime_flags)) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00009094 btrfs_info(root->fs_info, "inode %llu still on the orphan list",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02009095 btrfs_ino(inode));
Josef Bacik8a35d952012-05-23 14:26:42 -04009096 atomic_dec(&root->orphan_inodes);
Josef Bacik7b128762008-07-24 12:17:14 -04009097 }
Josef Bacik7b128762008-07-24 12:17:14 -04009098
Chris Masond3977122009-01-05 21:25:51 -05009099 while (1) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04009100 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
9101 if (!ordered)
9102 break;
9103 else {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00009104 btrfs_err(root->fs_info, "found ordered extent %llu %llu on inode cleanup",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02009105 ordered->file_offset, ordered->len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009106 btrfs_remove_ordered_extent(inode, ordered);
9107 btrfs_put_ordered_extent(ordered);
9108 btrfs_put_ordered_extent(ordered);
9109 }
9110 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009111 inode_tree_del(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04009112 btrfs_drop_extent_cache(inode, 0, (u64)-1, 0);
Josef Bacika6dbd422009-11-11 15:53:34 -05009113free:
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11009114 call_rcu(&inode->i_rcu, btrfs_i_callback);
Chris Mason39279cc2007-06-12 06:35:45 -04009115}
9116
Al Viro45321ac2010-06-07 13:43:19 -04009117int btrfs_drop_inode(struct inode *inode)
Yan, Zheng76dda932009-09-21 16:00:26 -04009118{
9119 struct btrfs_root *root = BTRFS_I(inode)->root;
Al Viro45321ac2010-06-07 13:43:19 -04009120
Naohiro Aota6379ef92013-06-06 09:56:34 +00009121 if (root == NULL)
9122 return 1;
9123
Liu Bofa6ac872013-02-20 14:10:23 +00009124 /* the snap/subvol tree is on deleting */
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02009125 if (btrfs_root_refs(&root->root_item) == 0)
Al Viro45321ac2010-06-07 13:43:19 -04009126 return 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04009127 else
Al Viro45321ac2010-06-07 13:43:19 -04009128 return generic_drop_inode(inode);
Yan, Zheng76dda932009-09-21 16:00:26 -04009129}
9130
Sven Wegener0ee0fda2008-07-30 16:54:26 -04009131static void init_once(void *foo)
Chris Mason39279cc2007-06-12 06:35:45 -04009132{
9133 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
9134
9135 inode_init_once(&ei->vfs_inode);
9136}
9137
9138void btrfs_destroy_cachep(void)
9139{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +10009140 /*
9141 * Make sure all delayed rcu free inodes are flushed before we
9142 * destroy cache.
9143 */
9144 rcu_barrier();
Chris Mason39279cc2007-06-12 06:35:45 -04009145 if (btrfs_inode_cachep)
9146 kmem_cache_destroy(btrfs_inode_cachep);
9147 if (btrfs_trans_handle_cachep)
9148 kmem_cache_destroy(btrfs_trans_handle_cachep);
9149 if (btrfs_transaction_cachep)
9150 kmem_cache_destroy(btrfs_transaction_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04009151 if (btrfs_path_cachep)
9152 kmem_cache_destroy(btrfs_path_cachep);
Josef Bacikdc89e982011-01-28 17:05:48 -05009153 if (btrfs_free_space_cachep)
9154 kmem_cache_destroy(btrfs_free_space_cachep);
Miao Xie8ccf6f192012-10-25 09:28:04 +00009155 if (btrfs_delalloc_work_cachep)
9156 kmem_cache_destroy(btrfs_delalloc_work_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04009157}
9158
9159int btrfs_init_cachep(void)
9160{
David Sterba837e1972012-09-07 03:00:48 -06009161 btrfs_inode_cachep = kmem_cache_create("btrfs_inode",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009162 sizeof(struct btrfs_inode), 0,
9163 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04009164 if (!btrfs_inode_cachep)
9165 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009166
David Sterba837e1972012-09-07 03:00:48 -06009167 btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009168 sizeof(struct btrfs_trans_handle), 0,
9169 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04009170 if (!btrfs_trans_handle_cachep)
9171 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009172
David Sterba837e1972012-09-07 03:00:48 -06009173 btrfs_transaction_cachep = kmem_cache_create("btrfs_transaction",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009174 sizeof(struct btrfs_transaction), 0,
9175 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04009176 if (!btrfs_transaction_cachep)
9177 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009178
David Sterba837e1972012-09-07 03:00:48 -06009179 btrfs_path_cachep = kmem_cache_create("btrfs_path",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009180 sizeof(struct btrfs_path), 0,
9181 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04009182 if (!btrfs_path_cachep)
9183 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009184
David Sterba837e1972012-09-07 03:00:48 -06009185 btrfs_free_space_cachep = kmem_cache_create("btrfs_free_space",
Josef Bacikdc89e982011-01-28 17:05:48 -05009186 sizeof(struct btrfs_free_space), 0,
9187 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
9188 if (!btrfs_free_space_cachep)
9189 goto fail;
9190
Miao Xie8ccf6f192012-10-25 09:28:04 +00009191 btrfs_delalloc_work_cachep = kmem_cache_create("btrfs_delalloc_work",
9192 sizeof(struct btrfs_delalloc_work), 0,
9193 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD,
9194 NULL);
9195 if (!btrfs_delalloc_work_cachep)
9196 goto fail;
9197
Chris Mason39279cc2007-06-12 06:35:45 -04009198 return 0;
9199fail:
9200 btrfs_destroy_cachep();
9201 return -ENOMEM;
9202}
9203
9204static int btrfs_getattr(struct vfsmount *mnt,
9205 struct dentry *dentry, struct kstat *stat)
9206{
Miao Xiedf0af1a2013-01-29 10:11:59 +00009207 u64 delalloc_bytes;
David Howells2b0143b2015-03-17 22:25:59 +00009208 struct inode *inode = d_inode(dentry);
David Sterbafadc0d82011-11-20 07:33:38 -05009209 u32 blocksize = inode->i_sb->s_blocksize;
9210
Chris Mason39279cc2007-06-12 06:35:45 -04009211 generic_fillattr(inode, stat);
Al Viro0ee5dc62011-07-07 15:44:25 -04009212 stat->dev = BTRFS_I(inode)->root->anon_dev;
Chris Masond6667462008-01-03 14:51:00 -05009213 stat->blksize = PAGE_CACHE_SIZE;
Miao Xiedf0af1a2013-01-29 10:11:59 +00009214
9215 spin_lock(&BTRFS_I(inode)->lock);
9216 delalloc_bytes = BTRFS_I(inode)->delalloc_bytes;
9217 spin_unlock(&BTRFS_I(inode)->lock);
David Sterbafadc0d82011-11-20 07:33:38 -05009218 stat->blocks = (ALIGN(inode_get_bytes(inode), blocksize) +
Miao Xiedf0af1a2013-01-29 10:11:59 +00009219 ALIGN(delalloc_bytes, blocksize)) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -04009220 return 0;
9221}
9222
Chris Masond3977122009-01-05 21:25:51 -05009223static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry,
9224 struct inode *new_dir, struct dentry *new_dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04009225{
9226 struct btrfs_trans_handle *trans;
9227 struct btrfs_root *root = BTRFS_I(old_dir)->root;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009228 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
David Howells2b0143b2015-03-17 22:25:59 +00009229 struct inode *new_inode = d_inode(new_dentry);
9230 struct inode *old_inode = d_inode(old_dentry);
Chris Mason39279cc2007-06-12 06:35:45 -04009231 struct timespec ctime = CURRENT_TIME;
Chris Mason00e4e6b2008-08-05 11:18:09 -04009232 u64 index = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009233 u64 root_objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04009234 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08009235 u64 old_ino = btrfs_ino(old_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04009236
Li Zefan33345d012011-04-20 10:31:50 +08009237 if (btrfs_ino(new_dir) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Yan, Zhengf679a842009-09-24 09:17:31 -04009238 return -EPERM;
9239
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009240 /* we only allow rename subvolume link between subvolumes */
Li Zefan33345d012011-04-20 10:31:50 +08009241 if (old_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
Chris Mason3394e162008-11-17 20:42:26 -05009242 return -EXDEV;
9243
Li Zefan33345d012011-04-20 10:31:50 +08009244 if (old_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID ||
9245 (new_inode && btrfs_ino(new_inode) == BTRFS_FIRST_FREE_OBJECTID))
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009246 return -ENOTEMPTY;
9247
Chris Mason39279cc2007-06-12 06:35:45 -04009248 if (S_ISDIR(old_inode->i_mode) && new_inode &&
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009249 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Chris Mason39279cc2007-06-12 06:35:45 -04009250 return -ENOTEMPTY;
Chris Mason9c520572012-12-17 14:26:57 -05009251
9252
9253 /* check for collisions, even if the name isn't there */
Josef Bacik4871c152013-10-09 12:24:04 -04009254 ret = btrfs_check_dir_item_collision(dest, new_dir->i_ino,
Chris Mason9c520572012-12-17 14:26:57 -05009255 new_dentry->d_name.name,
9256 new_dentry->d_name.len);
9257
9258 if (ret) {
9259 if (ret == -EEXIST) {
9260 /* we shouldn't get
9261 * eexist without a new_inode */
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05309262 if (WARN_ON(!new_inode)) {
Chris Mason9c520572012-12-17 14:26:57 -05009263 return ret;
9264 }
9265 } else {
9266 /* maybe -EOVERFLOW */
9267 return ret;
9268 }
9269 }
9270 ret = 0;
9271
Chris Mason5a3f23d2009-03-31 13:27:11 -04009272 /*
Chris Mason8d875f92014-08-12 10:47:42 -07009273 * we're using rename to replace one file with another. Start IO on it
9274 * now so we don't add too much work to the end of the transaction
Chris Mason5a3f23d2009-03-31 13:27:11 -04009275 */
Chris Mason8d875f92014-08-12 10:47:42 -07009276 if (new_inode && S_ISREG(old_inode->i_mode) && new_inode->i_size)
Chris Mason5a3f23d2009-03-31 13:27:11 -04009277 filemap_flush(old_inode->i_mapping);
9278
Yan, Zheng76dda932009-09-21 16:00:26 -04009279 /* close the racy window with snapshot create/destroy ioctl */
Li Zefan33345d012011-04-20 10:31:50 +08009280 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Yan, Zheng76dda932009-09-21 16:00:26 -04009281 down_read(&root->fs_info->subvol_sem);
Yan, Zhenga22285a2010-05-16 10:48:46 -04009282 /*
9283 * We want to reserve the absolute worst case amount of items. So if
9284 * both inodes are subvols and we need to unlink them then that would
9285 * require 4 item modifications, but if they are both normal inodes it
9286 * would require 5 item modifications, so we'll assume their normal
9287 * inodes. So 5 * 2 is 10, plus 1 for the new link, so 11 total items
9288 * should cover the worst case number of items we'll modify.
9289 */
Josef Bacik6e137ed2013-03-26 15:26:55 -04009290 trans = btrfs_start_transaction(root, 11);
Johann Lombardib44c59a2011-03-31 13:23:47 +00009291 if (IS_ERR(trans)) {
9292 ret = PTR_ERR(trans);
9293 goto out_notrans;
9294 }
Chris Mason5f39d392007-10-15 16:14:19 -04009295
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009296 if (dest != root)
9297 btrfs_record_root_in_trans(trans, dest);
9298
Yan, Zhenga5719522009-09-24 09:17:31 -04009299 ret = btrfs_set_inode_index(new_dir, &index);
9300 if (ret)
9301 goto out_fail;
Chris Mason5a3f23d2009-03-31 13:27:11 -04009302
Miao Xie67de1172013-12-26 13:07:06 +08009303 BTRFS_I(old_inode)->dir_index = 0ULL;
Li Zefan33345d012011-04-20 10:31:50 +08009304 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009305 /* force full log commit if subvolume involved. */
Miao Xie995946d2014-04-02 19:51:06 +08009306 btrfs_set_log_full_commit(root->fs_info, trans);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009307 } else {
Yan, Zhenga5719522009-09-24 09:17:31 -04009308 ret = btrfs_insert_inode_ref(trans, dest,
9309 new_dentry->d_name.name,
9310 new_dentry->d_name.len,
Li Zefan33345d012011-04-20 10:31:50 +08009311 old_ino,
9312 btrfs_ino(new_dir), index);
Yan, Zhenga5719522009-09-24 09:17:31 -04009313 if (ret)
9314 goto out_fail;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009315 /*
9316 * this is an ugly little race, but the rename is required
9317 * to make sure that if we crash, the inode is either at the
9318 * old name or the new one. pinning the log transaction lets
9319 * us make sure we don't allow a log commit to come in after
9320 * we unlink the name but before we add the new name back in.
9321 */
9322 btrfs_pin_log_trans(root);
9323 }
Chris Mason5a3f23d2009-03-31 13:27:11 -04009324
Josef Bacik0c4d2d92012-04-05 15:03:02 -04009325 inode_inc_iversion(old_dir);
9326 inode_inc_iversion(new_dir);
9327 inode_inc_iversion(old_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04009328 old_dir->i_ctime = old_dir->i_mtime = ctime;
9329 new_dir->i_ctime = new_dir->i_mtime = ctime;
9330 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04009331
Chris Mason12fcfd22009-03-24 10:24:20 -04009332 if (old_dentry->d_parent != new_dentry->d_parent)
9333 btrfs_record_unlink_dir(trans, old_dir, old_inode, 1);
9334
Li Zefan33345d012011-04-20 10:31:50 +08009335 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009336 root_objectid = BTRFS_I(old_inode)->root->root_key.objectid;
9337 ret = btrfs_unlink_subvol(trans, root, old_dir, root_objectid,
9338 old_dentry->d_name.name,
9339 old_dentry->d_name.len);
9340 } else {
Al Viro92986792011-03-04 17:14:37 +00009341 ret = __btrfs_unlink_inode(trans, root, old_dir,
David Howells2b0143b2015-03-17 22:25:59 +00009342 d_inode(old_dentry),
Al Viro92986792011-03-04 17:14:37 +00009343 old_dentry->d_name.name,
9344 old_dentry->d_name.len);
9345 if (!ret)
9346 ret = btrfs_update_inode(trans, root, old_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009347 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009348 if (ret) {
9349 btrfs_abort_transaction(trans, root, ret);
9350 goto out_fail;
9351 }
Chris Mason39279cc2007-06-12 06:35:45 -04009352
9353 if (new_inode) {
Josef Bacik0c4d2d92012-04-05 15:03:02 -04009354 inode_inc_iversion(new_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04009355 new_inode->i_ctime = CURRENT_TIME;
Li Zefan33345d012011-04-20 10:31:50 +08009356 if (unlikely(btrfs_ino(new_inode) ==
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009357 BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
9358 root_objectid = BTRFS_I(new_inode)->location.objectid;
9359 ret = btrfs_unlink_subvol(trans, dest, new_dir,
9360 root_objectid,
9361 new_dentry->d_name.name,
9362 new_dentry->d_name.len);
9363 BUG_ON(new_inode->i_nlink == 0);
9364 } else {
9365 ret = btrfs_unlink_inode(trans, dest, new_dir,
David Howells2b0143b2015-03-17 22:25:59 +00009366 d_inode(new_dentry),
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009367 new_dentry->d_name.name,
9368 new_dentry->d_name.len);
9369 }
Josef Bacik4ef31a42013-08-13 14:10:08 -04009370 if (!ret && new_inode->i_nlink == 0)
David Howells2b0143b2015-03-17 22:25:59 +00009371 ret = btrfs_orphan_add(trans, d_inode(new_dentry));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009372 if (ret) {
9373 btrfs_abort_transaction(trans, root, ret);
9374 goto out_fail;
9375 }
Chris Mason39279cc2007-06-12 06:35:45 -04009376 }
Josef Bacikaec74772008-07-24 12:12:38 -04009377
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009378 ret = btrfs_add_link(trans, new_dir, old_inode,
9379 new_dentry->d_name.name,
Yan, Zhenga5719522009-09-24 09:17:31 -04009380 new_dentry->d_name.len, 0, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009381 if (ret) {
9382 btrfs_abort_transaction(trans, root, ret);
9383 goto out_fail;
9384 }
Chris Mason39279cc2007-06-12 06:35:45 -04009385
Miao Xie67de1172013-12-26 13:07:06 +08009386 if (old_inode->i_nlink == 1)
9387 BTRFS_I(old_inode)->dir_index = index;
9388
Li Zefan33345d012011-04-20 10:31:50 +08009389 if (old_ino != BTRFS_FIRST_FREE_OBJECTID) {
Al Viro10d9f302011-07-16 23:09:10 -04009390 struct dentry *parent = new_dentry->d_parent;
Josef Bacik6a912212010-11-20 09:48:00 +00009391 btrfs_log_new_name(trans, old_inode, old_dir, parent);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009392 btrfs_end_log_trans(root);
9393 }
Chris Mason39279cc2007-06-12 06:35:45 -04009394out_fail:
Josef Bacik7ad85bb2012-01-12 19:10:12 -05009395 btrfs_end_transaction(trans, root);
Johann Lombardib44c59a2011-03-31 13:23:47 +00009396out_notrans:
Li Zefan33345d012011-04-20 10:31:50 +08009397 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Yan, Zheng76dda932009-09-21 16:00:26 -04009398 up_read(&root->fs_info->subvol_sem);
Josef Bacik9ed74f22009-09-11 16:12:44 -04009399
Chris Mason39279cc2007-06-12 06:35:45 -04009400 return ret;
9401}
9402
Miklos Szeredi80ace852014-07-23 15:15:32 +02009403static int btrfs_rename2(struct inode *old_dir, struct dentry *old_dentry,
9404 struct inode *new_dir, struct dentry *new_dentry,
9405 unsigned int flags)
9406{
9407 if (flags & ~RENAME_NOREPLACE)
9408 return -EINVAL;
9409
9410 return btrfs_rename(old_dir, old_dentry, new_dir, new_dentry);
9411}
9412
Miao Xie8ccf6f192012-10-25 09:28:04 +00009413static void btrfs_run_delalloc_work(struct btrfs_work *work)
9414{
9415 struct btrfs_delalloc_work *delalloc_work;
Josef Bacik9f23e282013-10-28 15:03:41 -04009416 struct inode *inode;
Miao Xie8ccf6f192012-10-25 09:28:04 +00009417
9418 delalloc_work = container_of(work, struct btrfs_delalloc_work,
9419 work);
Josef Bacik9f23e282013-10-28 15:03:41 -04009420 inode = delalloc_work->inode;
9421 if (delalloc_work->wait) {
9422 btrfs_wait_ordered_range(inode, 0, (u64)-1);
9423 } else {
9424 filemap_flush(inode->i_mapping);
9425 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
9426 &BTRFS_I(inode)->runtime_flags))
9427 filemap_flush(inode->i_mapping);
9428 }
Miao Xie8ccf6f192012-10-25 09:28:04 +00009429
9430 if (delalloc_work->delay_iput)
Josef Bacik9f23e282013-10-28 15:03:41 -04009431 btrfs_add_delayed_iput(inode);
Miao Xie8ccf6f192012-10-25 09:28:04 +00009432 else
Josef Bacik9f23e282013-10-28 15:03:41 -04009433 iput(inode);
Miao Xie8ccf6f192012-10-25 09:28:04 +00009434 complete(&delalloc_work->completion);
9435}
9436
9437struct btrfs_delalloc_work *btrfs_alloc_delalloc_work(struct inode *inode,
9438 int wait, int delay_iput)
9439{
9440 struct btrfs_delalloc_work *work;
9441
9442 work = kmem_cache_zalloc(btrfs_delalloc_work_cachep, GFP_NOFS);
9443 if (!work)
9444 return NULL;
9445
9446 init_completion(&work->completion);
9447 INIT_LIST_HEAD(&work->list);
9448 work->inode = inode;
9449 work->wait = wait;
9450 work->delay_iput = delay_iput;
Liu Bo9e0af232014-08-15 23:36:53 +08009451 WARN_ON_ONCE(!inode);
9452 btrfs_init_work(&work->work, btrfs_flush_delalloc_helper,
9453 btrfs_run_delalloc_work, NULL, NULL);
Miao Xie8ccf6f192012-10-25 09:28:04 +00009454
9455 return work;
9456}
9457
9458void btrfs_wait_and_free_delalloc_work(struct btrfs_delalloc_work *work)
9459{
9460 wait_for_completion(&work->completion);
9461 kmem_cache_free(btrfs_delalloc_work_cachep, work);
9462}
9463
Chris Masond352ac62008-09-29 15:18:18 -04009464/*
9465 * some fairly slow code that needs optimization. This walks the list
9466 * of all the inodes with pending delalloc and forces them to disk.
9467 */
Miao Xie6c255e62014-03-06 13:55:01 +08009468static int __start_delalloc_inodes(struct btrfs_root *root, int delay_iput,
9469 int nr)
Chris Masonea8c2812008-08-04 23:17:27 -04009470{
Chris Masonea8c2812008-08-04 23:17:27 -04009471 struct btrfs_inode *binode;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04009472 struct inode *inode;
Miao Xie8ccf6f192012-10-25 09:28:04 +00009473 struct btrfs_delalloc_work *work, *next;
9474 struct list_head works;
Miao Xie1eafa6c2013-01-22 10:49:00 +00009475 struct list_head splice;
Miao Xie8ccf6f192012-10-25 09:28:04 +00009476 int ret = 0;
Chris Masonea8c2812008-08-04 23:17:27 -04009477
Miao Xie8ccf6f192012-10-25 09:28:04 +00009478 INIT_LIST_HEAD(&works);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009479 INIT_LIST_HEAD(&splice);
Miao Xie63607cc2013-01-22 10:50:35 +00009480
Miao Xie573bfb72014-03-06 13:55:03 +08009481 mutex_lock(&root->delalloc_mutex);
Miao Xieeb73c1b2013-05-15 07:48:22 +00009482 spin_lock(&root->delalloc_lock);
9483 list_splice_init(&root->delalloc_inodes, &splice);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009484 while (!list_empty(&splice)) {
9485 binode = list_entry(splice.next, struct btrfs_inode,
Chris Masonea8c2812008-08-04 23:17:27 -04009486 delalloc_inodes);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009487
Miao Xieeb73c1b2013-05-15 07:48:22 +00009488 list_move_tail(&binode->delalloc_inodes,
9489 &root->delalloc_inodes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04009490 inode = igrab(&binode->vfs_inode);
Miao Xiedf0af1a2013-01-29 10:11:59 +00009491 if (!inode) {
Miao Xieeb73c1b2013-05-15 07:48:22 +00009492 cond_resched_lock(&root->delalloc_lock);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009493 continue;
Miao Xiedf0af1a2013-01-29 10:11:59 +00009494 }
Miao Xieeb73c1b2013-05-15 07:48:22 +00009495 spin_unlock(&root->delalloc_lock);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009496
9497 work = btrfs_alloc_delalloc_work(inode, 0, delay_iput);
David Sterba5d99a9982014-09-29 19:20:37 +02009498 if (!work) {
Josef Bacikf4ab9ea2013-09-17 11:25:44 -04009499 if (delay_iput)
9500 btrfs_add_delayed_iput(inode);
9501 else
9502 iput(inode);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009503 ret = -ENOMEM;
Wang Shilonga1ecaab2014-04-02 19:53:32 +08009504 goto out;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04009505 }
Miao Xie1eafa6c2013-01-22 10:49:00 +00009506 list_add_tail(&work->list, &works);
Qu Wenruoa44903a2014-02-28 10:46:09 +08009507 btrfs_queue_work(root->fs_info->flush_workers,
9508 &work->work);
Miao Xie6c255e62014-03-06 13:55:01 +08009509 ret++;
9510 if (nr != -1 && ret >= nr)
Wang Shilonga1ecaab2014-04-02 19:53:32 +08009511 goto out;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04009512 cond_resched();
Miao Xieeb73c1b2013-05-15 07:48:22 +00009513 spin_lock(&root->delalloc_lock);
Chris Masonea8c2812008-08-04 23:17:27 -04009514 }
Miao Xieeb73c1b2013-05-15 07:48:22 +00009515 spin_unlock(&root->delalloc_lock);
Chris Mason8c8bee12008-09-29 11:19:10 -04009516
Wang Shilonga1ecaab2014-04-02 19:53:32 +08009517out:
Miao Xie1eafa6c2013-01-22 10:49:00 +00009518 list_for_each_entry_safe(work, next, &works, list) {
9519 list_del_init(&work->list);
9520 btrfs_wait_and_free_delalloc_work(work);
9521 }
9522
Miao Xieeb73c1b2013-05-15 07:48:22 +00009523 if (!list_empty_careful(&splice)) {
9524 spin_lock(&root->delalloc_lock);
9525 list_splice_tail(&splice, &root->delalloc_inodes);
9526 spin_unlock(&root->delalloc_lock);
9527 }
Miao Xie573bfb72014-03-06 13:55:03 +08009528 mutex_unlock(&root->delalloc_mutex);
Miao Xieeb73c1b2013-05-15 07:48:22 +00009529 return ret;
9530}
9531
9532int btrfs_start_delalloc_inodes(struct btrfs_root *root, int delay_iput)
9533{
9534 int ret;
9535
Wang Shilong2c21b4d2014-01-14 19:42:20 +08009536 if (test_bit(BTRFS_FS_STATE_ERROR, &root->fs_info->fs_state))
Miao Xieeb73c1b2013-05-15 07:48:22 +00009537 return -EROFS;
9538
Miao Xie6c255e62014-03-06 13:55:01 +08009539 ret = __start_delalloc_inodes(root, delay_iput, -1);
9540 if (ret > 0)
9541 ret = 0;
Miao Xieeb73c1b2013-05-15 07:48:22 +00009542 /*
9543 * the filemap_flush will queue IO into the worker threads, but
Chris Mason8c8bee12008-09-29 11:19:10 -04009544 * we have to make sure the IO is actually started and that
9545 * ordered extents get created before we return
9546 */
9547 atomic_inc(&root->fs_info->async_submit_draining);
Chris Masond3977122009-01-05 21:25:51 -05009548 while (atomic_read(&root->fs_info->nr_async_submits) ||
Chris Mason771ed682008-11-06 22:02:51 -05009549 atomic_read(&root->fs_info->async_delalloc_pages)) {
Chris Mason8c8bee12008-09-29 11:19:10 -04009550 wait_event(root->fs_info->async_submit_wait,
Chris Mason771ed682008-11-06 22:02:51 -05009551 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
9552 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
Chris Mason8c8bee12008-09-29 11:19:10 -04009553 }
9554 atomic_dec(&root->fs_info->async_submit_draining);
Miao Xieeb73c1b2013-05-15 07:48:22 +00009555 return ret;
9556}
9557
Miao Xie6c255e62014-03-06 13:55:01 +08009558int btrfs_start_delalloc_roots(struct btrfs_fs_info *fs_info, int delay_iput,
9559 int nr)
Miao Xieeb73c1b2013-05-15 07:48:22 +00009560{
9561 struct btrfs_root *root;
9562 struct list_head splice;
9563 int ret;
9564
Wang Shilong2c21b4d2014-01-14 19:42:20 +08009565 if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state))
Miao Xieeb73c1b2013-05-15 07:48:22 +00009566 return -EROFS;
9567
9568 INIT_LIST_HEAD(&splice);
9569
Miao Xie573bfb72014-03-06 13:55:03 +08009570 mutex_lock(&fs_info->delalloc_root_mutex);
Miao Xieeb73c1b2013-05-15 07:48:22 +00009571 spin_lock(&fs_info->delalloc_root_lock);
9572 list_splice_init(&fs_info->delalloc_roots, &splice);
Miao Xie6c255e62014-03-06 13:55:01 +08009573 while (!list_empty(&splice) && nr) {
Miao Xieeb73c1b2013-05-15 07:48:22 +00009574 root = list_first_entry(&splice, struct btrfs_root,
9575 delalloc_root);
9576 root = btrfs_grab_fs_root(root);
9577 BUG_ON(!root);
9578 list_move_tail(&root->delalloc_root,
9579 &fs_info->delalloc_roots);
9580 spin_unlock(&fs_info->delalloc_root_lock);
9581
Miao Xie6c255e62014-03-06 13:55:01 +08009582 ret = __start_delalloc_inodes(root, delay_iput, nr);
Miao Xieeb73c1b2013-05-15 07:48:22 +00009583 btrfs_put_fs_root(root);
Miao Xie6c255e62014-03-06 13:55:01 +08009584 if (ret < 0)
Miao Xieeb73c1b2013-05-15 07:48:22 +00009585 goto out;
9586
Miao Xie6c255e62014-03-06 13:55:01 +08009587 if (nr != -1) {
9588 nr -= ret;
9589 WARN_ON(nr < 0);
9590 }
Miao Xieeb73c1b2013-05-15 07:48:22 +00009591 spin_lock(&fs_info->delalloc_root_lock);
9592 }
9593 spin_unlock(&fs_info->delalloc_root_lock);
9594
Miao Xie6c255e62014-03-06 13:55:01 +08009595 ret = 0;
Miao Xieeb73c1b2013-05-15 07:48:22 +00009596 atomic_inc(&fs_info->async_submit_draining);
9597 while (atomic_read(&fs_info->nr_async_submits) ||
9598 atomic_read(&fs_info->async_delalloc_pages)) {
9599 wait_event(fs_info->async_submit_wait,
9600 (atomic_read(&fs_info->nr_async_submits) == 0 &&
9601 atomic_read(&fs_info->async_delalloc_pages) == 0));
9602 }
9603 atomic_dec(&fs_info->async_submit_draining);
Miao Xie8ccf6f192012-10-25 09:28:04 +00009604out:
Miao Xie1eafa6c2013-01-22 10:49:00 +00009605 if (!list_empty_careful(&splice)) {
Miao Xieeb73c1b2013-05-15 07:48:22 +00009606 spin_lock(&fs_info->delalloc_root_lock);
9607 list_splice_tail(&splice, &fs_info->delalloc_roots);
9608 spin_unlock(&fs_info->delalloc_root_lock);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009609 }
Miao Xie573bfb72014-03-06 13:55:03 +08009610 mutex_unlock(&fs_info->delalloc_root_mutex);
Miao Xie8ccf6f192012-10-25 09:28:04 +00009611 return ret;
Chris Masonea8c2812008-08-04 23:17:27 -04009612}
9613
Chris Mason39279cc2007-06-12 06:35:45 -04009614static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
9615 const char *symname)
9616{
9617 struct btrfs_trans_handle *trans;
9618 struct btrfs_root *root = BTRFS_I(dir)->root;
9619 struct btrfs_path *path;
9620 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05009621 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04009622 int err;
9623 int drop_inode = 0;
9624 u64 objectid;
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05309625 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04009626 int name_len;
9627 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04009628 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04009629 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04009630 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04009631
Filipe David Borba Mananaf06becc2013-09-16 09:53:28 +01009632 name_len = strlen(symname);
Chris Mason39279cc2007-06-12 06:35:45 -04009633 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
9634 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05009635
Josef Bacik9ed74f22009-09-11 16:12:44 -04009636 /*
9637 * 2 items for inode item and ref
9638 * 2 items for dir items
9639 * 1 item for xattr if selinux is on
9640 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04009641 trans = btrfs_start_transaction(root, 5);
9642 if (IS_ERR(trans))
9643 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05009644
Li Zefan581bb052011-04-20 10:06:11 +08009645 err = btrfs_find_free_ino(root, &objectid);
9646 if (err)
9647 goto out_unlock;
9648
Josef Bacikaec74772008-07-24 12:12:38 -04009649 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08009650 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f12011-05-11 15:26:06 -04009651 S_IFLNK|S_IRWXUGO, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04009652 if (IS_ERR(inode)) {
9653 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04009654 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04009655 }
Chris Mason39279cc2007-06-12 06:35:45 -04009656
Casey Schauflerad19db72011-12-15 10:09:07 -05009657 /*
9658 * If the active LSM wants to access the inode during
9659 * d_instantiate it needs these. Smack checks to see
9660 * if the filesystem supports xattrs by looking at the
9661 * ops vector.
9662 */
9663 inode->i_fop = &btrfs_file_operations;
9664 inode->i_op = &btrfs_file_inode_operations;
Chris Masonb0d5d102014-09-08 13:08:51 -07009665 inode->i_mapping->a_ops = &btrfs_aops;
Chris Masonb0d5d102014-09-08 13:08:51 -07009666 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
9667
9668 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
9669 if (err)
9670 goto out_unlock_inode;
Casey Schauflerad19db72011-12-15 10:09:07 -05009671
Josef Bacika1b075d2010-11-19 20:36:11 +00009672 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04009673 if (err)
Chris Masonb0d5d102014-09-08 13:08:51 -07009674 goto out_unlock_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04009675
9676 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07009677 if (!path) {
9678 err = -ENOMEM;
Chris Masonb0d5d102014-09-08 13:08:51 -07009679 goto out_unlock_inode;
Mark Fashehd8926bb2011-07-13 10:38:47 -07009680 }
Li Zefan33345d012011-04-20 10:31:50 +08009681 key.objectid = btrfs_ino(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04009682 key.offset = 0;
David Sterba962a2982014-06-04 18:41:45 +02009683 key.type = BTRFS_EXTENT_DATA_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -04009684 datasize = btrfs_file_extent_calc_inline_size(name_len);
9685 err = btrfs_insert_empty_item(trans, root, path, &key,
9686 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04009687 if (err) {
Julia Lawallb0839162011-05-14 07:10:51 +00009688 btrfs_free_path(path);
Chris Masonb0d5d102014-09-08 13:08:51 -07009689 goto out_unlock_inode;
Chris Mason54aa1f42007-06-22 14:16:25 -04009690 }
Chris Mason5f39d392007-10-15 16:14:19 -04009691 leaf = path->nodes[0];
9692 ei = btrfs_item_ptr(leaf, path->slots[0],
9693 struct btrfs_file_extent_item);
9694 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
9695 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04009696 BTRFS_FILE_EXTENT_INLINE);
Chris Masonc8b97812008-10-29 14:49:59 -04009697 btrfs_set_file_extent_encryption(leaf, ei, 0);
9698 btrfs_set_file_extent_compression(leaf, ei, 0);
9699 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
9700 btrfs_set_file_extent_ram_bytes(leaf, ei, name_len);
9701
Chris Mason39279cc2007-06-12 06:35:45 -04009702 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04009703 write_extent_buffer(leaf, symname, ptr, name_len);
9704 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04009705 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04009706
Chris Mason39279cc2007-06-12 06:35:45 -04009707 inode->i_op = &btrfs_symlink_inode_operations;
9708 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Yan Zhengd899e052008-10-30 14:25:28 -04009709 inode_set_bytes(inode, name_len);
Filipe David Borba Mananaf06becc2013-09-16 09:53:28 +01009710 btrfs_i_size_write(inode, name_len);
Chris Mason54aa1f42007-06-22 14:16:25 -04009711 err = btrfs_update_inode(trans, root, inode);
Chris Masonb0d5d102014-09-08 13:08:51 -07009712 if (err) {
Chris Mason54aa1f42007-06-22 14:16:25 -04009713 drop_inode = 1;
Chris Masonb0d5d102014-09-08 13:08:51 -07009714 goto out_unlock_inode;
9715 }
9716
9717 unlock_new_inode(inode);
9718 d_instantiate(dentry, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04009719
9720out_unlock:
Josef Bacik7ad85bb2012-01-12 19:10:12 -05009721 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04009722 if (drop_inode) {
9723 inode_dec_link_count(inode);
9724 iput(inode);
9725 }
Liu Bob53d3f52012-11-14 14:34:34 +00009726 btrfs_btree_balance_dirty(root);
Chris Mason39279cc2007-06-12 06:35:45 -04009727 return err;
Chris Masonb0d5d102014-09-08 13:08:51 -07009728
9729out_unlock_inode:
9730 drop_inode = 1;
9731 unlock_new_inode(inode);
9732 goto out_unlock;
Chris Mason39279cc2007-06-12 06:35:45 -04009733}
Chris Mason16432982008-04-10 10:23:21 -04009734
Josef Bacik0af3d002010-06-21 14:48:16 -04009735static int __btrfs_prealloc_file_range(struct inode *inode, int mode,
9736 u64 start, u64 num_bytes, u64 min_size,
9737 loff_t actual_len, u64 *alloc_hint,
9738 struct btrfs_trans_handle *trans)
Yan Zhengd899e052008-10-30 14:25:28 -04009739{
Josef Bacik5dc562c2012-08-17 13:14:17 -04009740 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
9741 struct extent_map *em;
Yan Zhengd899e052008-10-30 14:25:28 -04009742 struct btrfs_root *root = BTRFS_I(inode)->root;
9743 struct btrfs_key ins;
Yan Zhengd899e052008-10-30 14:25:28 -04009744 u64 cur_offset = start;
Josef Bacik55a61d12010-11-22 18:50:32 +00009745 u64 i_size;
Chris Mason154ea282013-03-05 11:11:26 -05009746 u64 cur_bytes;
Yan Zhengd899e052008-10-30 14:25:28 -04009747 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04009748 bool own_trans = true;
Yan Zhengd899e052008-10-30 14:25:28 -04009749
Josef Bacik0af3d002010-06-21 14:48:16 -04009750 if (trans)
9751 own_trans = false;
Yan Zhengd899e052008-10-30 14:25:28 -04009752 while (num_bytes > 0) {
Josef Bacik0af3d002010-06-21 14:48:16 -04009753 if (own_trans) {
9754 trans = btrfs_start_transaction(root, 3);
9755 if (IS_ERR(trans)) {
9756 ret = PTR_ERR(trans);
9757 break;
9758 }
Yan Zhengd899e052008-10-30 14:25:28 -04009759 }
Yan, Zheng5a303d52009-11-12 09:34:52 +00009760
Chris Mason154ea282013-03-05 11:11:26 -05009761 cur_bytes = min(num_bytes, 256ULL * 1024 * 1024);
9762 cur_bytes = max(cur_bytes, min_size);
Josef Bacik00361582013-08-14 14:02:47 -04009763 ret = btrfs_reserve_extent(root, cur_bytes, min_size, 0,
Miao Xiee570fd22014-06-19 10:42:50 +08009764 *alloc_hint, &ins, 1, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +00009765 if (ret) {
Josef Bacik0af3d002010-06-21 14:48:16 -04009766 if (own_trans)
9767 btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04009768 break;
Yan, Zheng5a303d52009-11-12 09:34:52 +00009769 }
9770
Yan Zhengd899e052008-10-30 14:25:28 -04009771 ret = insert_reserved_file_extent(trans, inode,
9772 cur_offset, ins.objectid,
9773 ins.offset, ins.offset,
Yan, Zheng920bbbf2009-11-12 09:34:08 +00009774 ins.offset, 0, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04009775 BTRFS_FILE_EXTENT_PREALLOC);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009776 if (ret) {
Josef Bacik857cc2f2013-10-07 15:21:08 -04009777 btrfs_free_reserved_extent(root, ins.objectid,
Miao Xiee570fd22014-06-19 10:42:50 +08009778 ins.offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009779 btrfs_abort_transaction(trans, root, ret);
9780 if (own_trans)
9781 btrfs_end_transaction(trans, root);
9782 break;
9783 }
Dongsheng Yang31193212014-12-12 16:44:35 +08009784
Chris Masona1ed8352009-09-11 12:27:37 -04009785 btrfs_drop_extent_cache(inode, cur_offset,
9786 cur_offset + ins.offset -1, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +00009787
Josef Bacik5dc562c2012-08-17 13:14:17 -04009788 em = alloc_extent_map();
9789 if (!em) {
9790 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
9791 &BTRFS_I(inode)->runtime_flags);
9792 goto next;
9793 }
9794
9795 em->start = cur_offset;
9796 em->orig_start = cur_offset;
9797 em->len = ins.offset;
9798 em->block_start = ins.objectid;
9799 em->block_len = ins.offset;
Josef Bacikb4939682012-12-03 10:31:19 -05009800 em->orig_block_len = ins.offset;
Josef Bacikcc95bef2013-04-04 14:31:27 -04009801 em->ram_bytes = ins.offset;
Josef Bacik5dc562c2012-08-17 13:14:17 -04009802 em->bdev = root->fs_info->fs_devices->latest_bdev;
9803 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
9804 em->generation = trans->transid;
9805
9806 while (1) {
9807 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04009808 ret = add_extent_mapping(em_tree, em, 1);
Josef Bacik5dc562c2012-08-17 13:14:17 -04009809 write_unlock(&em_tree->lock);
9810 if (ret != -EEXIST)
9811 break;
9812 btrfs_drop_extent_cache(inode, cur_offset,
9813 cur_offset + ins.offset - 1,
9814 0);
9815 }
9816 free_extent_map(em);
9817next:
Yan Zhengd899e052008-10-30 14:25:28 -04009818 num_bytes -= ins.offset;
9819 cur_offset += ins.offset;
Yan, Zhengefa56462010-05-16 10:49:59 -04009820 *alloc_hint = ins.objectid + ins.offset;
Yan, Zheng5a303d52009-11-12 09:34:52 +00009821
Josef Bacik0c4d2d92012-04-05 15:03:02 -04009822 inode_inc_iversion(inode);
Yan Zhengd899e052008-10-30 14:25:28 -04009823 inode->i_ctime = CURRENT_TIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +02009824 BTRFS_I(inode)->flags |= BTRFS_INODE_PREALLOC;
Yan Zhengd899e052008-10-30 14:25:28 -04009825 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
Yan, Zhengefa56462010-05-16 10:49:59 -04009826 (actual_len > inode->i_size) &&
9827 (cur_offset > inode->i_size)) {
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00009828 if (cur_offset > actual_len)
Josef Bacik55a61d12010-11-22 18:50:32 +00009829 i_size = actual_len;
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00009830 else
Josef Bacik55a61d12010-11-22 18:50:32 +00009831 i_size = cur_offset;
9832 i_size_write(inode, i_size);
9833 btrfs_ordered_update_i_size(inode, i_size, NULL);
Yan, Zheng5a303d52009-11-12 09:34:52 +00009834 }
9835
Yan Zhengd899e052008-10-30 14:25:28 -04009836 ret = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009837
9838 if (ret) {
9839 btrfs_abort_transaction(trans, root, ret);
9840 if (own_trans)
9841 btrfs_end_transaction(trans, root);
9842 break;
9843 }
Yan Zhengd899e052008-10-30 14:25:28 -04009844
Josef Bacik0af3d002010-06-21 14:48:16 -04009845 if (own_trans)
9846 btrfs_end_transaction(trans, root);
Yan, Zheng5a303d52009-11-12 09:34:52 +00009847 }
Yan Zhengd899e052008-10-30 14:25:28 -04009848 return ret;
9849}
9850
Josef Bacik0af3d002010-06-21 14:48:16 -04009851int btrfs_prealloc_file_range(struct inode *inode, int mode,
9852 u64 start, u64 num_bytes, u64 min_size,
9853 loff_t actual_len, u64 *alloc_hint)
9854{
9855 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
9856 min_size, actual_len, alloc_hint,
9857 NULL);
9858}
9859
9860int btrfs_prealloc_file_range_trans(struct inode *inode,
9861 struct btrfs_trans_handle *trans, int mode,
9862 u64 start, u64 num_bytes, u64 min_size,
9863 loff_t actual_len, u64 *alloc_hint)
9864{
9865 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
9866 min_size, actual_len, alloc_hint, trans);
9867}
9868
Chris Masone6dcd2d2008-07-17 12:53:50 -04009869static int btrfs_set_page_dirty(struct page *page)
9870{
Chris Masone6dcd2d2008-07-17 12:53:50 -04009871 return __set_page_dirty_nobuffers(page);
9872}
9873
Al Viro10556cb2011-06-20 19:28:19 -04009874static int btrfs_permission(struct inode *inode, int mask)
Yanfdebe2b2008-01-14 13:26:08 -05009875{
Li Zefanb83cc962010-12-20 16:04:08 +08009876 struct btrfs_root *root = BTRFS_I(inode)->root;
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +00009877 umode_t mode = inode->i_mode;
Li Zefanb83cc962010-12-20 16:04:08 +08009878
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +00009879 if (mask & MAY_WRITE &&
9880 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode))) {
9881 if (btrfs_root_readonly(root))
9882 return -EROFS;
9883 if (BTRFS_I(inode)->flags & BTRFS_INODE_READONLY)
9884 return -EACCES;
9885 }
Al Viro2830ba72011-06-20 19:16:29 -04009886 return generic_permission(inode, mask);
Yanfdebe2b2008-01-14 13:26:08 -05009887}
Chris Mason39279cc2007-06-12 06:35:45 -04009888
Filipe Mananaef3b9af2014-04-27 20:40:45 +01009889static int btrfs_tmpfile(struct inode *dir, struct dentry *dentry, umode_t mode)
9890{
9891 struct btrfs_trans_handle *trans;
9892 struct btrfs_root *root = BTRFS_I(dir)->root;
9893 struct inode *inode = NULL;
9894 u64 objectid;
9895 u64 index;
9896 int ret = 0;
9897
9898 /*
9899 * 5 units required for adding orphan entry
9900 */
9901 trans = btrfs_start_transaction(root, 5);
9902 if (IS_ERR(trans))
9903 return PTR_ERR(trans);
9904
9905 ret = btrfs_find_free_ino(root, &objectid);
9906 if (ret)
9907 goto out;
9908
9909 inode = btrfs_new_inode(trans, root, dir, NULL, 0,
9910 btrfs_ino(dir), objectid, mode, &index);
9911 if (IS_ERR(inode)) {
9912 ret = PTR_ERR(inode);
9913 inode = NULL;
9914 goto out;
9915 }
9916
Filipe Mananaef3b9af2014-04-27 20:40:45 +01009917 inode->i_fop = &btrfs_file_operations;
9918 inode->i_op = &btrfs_file_inode_operations;
9919
9920 inode->i_mapping->a_ops = &btrfs_aops;
Filipe Mananaef3b9af2014-04-27 20:40:45 +01009921 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
9922
Chris Masonb0d5d102014-09-08 13:08:51 -07009923 ret = btrfs_init_inode_security(trans, inode, dir, NULL);
9924 if (ret)
9925 goto out_inode;
9926
9927 ret = btrfs_update_inode(trans, root, inode);
9928 if (ret)
9929 goto out_inode;
Filipe Mananaef3b9af2014-04-27 20:40:45 +01009930 ret = btrfs_orphan_add(trans, inode);
9931 if (ret)
Chris Masonb0d5d102014-09-08 13:08:51 -07009932 goto out_inode;
Filipe Mananaef3b9af2014-04-27 20:40:45 +01009933
Filipe Manana5762b5c2014-08-01 00:10:32 +01009934 /*
9935 * We set number of links to 0 in btrfs_new_inode(), and here we set
9936 * it to 1 because d_tmpfile() will issue a warning if the count is 0,
9937 * through:
9938 *
9939 * d_tmpfile() -> inode_dec_link_count() -> drop_nlink()
9940 */
9941 set_nlink(inode, 1);
Chris Masonb0d5d102014-09-08 13:08:51 -07009942 unlock_new_inode(inode);
Filipe Mananaef3b9af2014-04-27 20:40:45 +01009943 d_tmpfile(dentry, inode);
9944 mark_inode_dirty(inode);
9945
9946out:
9947 btrfs_end_transaction(trans, root);
9948 if (ret)
9949 iput(inode);
9950 btrfs_balance_delayed_items(root);
9951 btrfs_btree_balance_dirty(root);
Filipe Mananaef3b9af2014-04-27 20:40:45 +01009952 return ret;
Chris Masonb0d5d102014-09-08 13:08:51 -07009953
9954out_inode:
9955 unlock_new_inode(inode);
9956 goto out;
9957
Filipe Mananaef3b9af2014-04-27 20:40:45 +01009958}
9959
Filipe Mananab38ef712014-11-13 17:01:45 +00009960/* Inspired by filemap_check_errors() */
9961int btrfs_inode_check_errors(struct inode *inode)
9962{
9963 int ret = 0;
9964
9965 if (test_bit(AS_ENOSPC, &inode->i_mapping->flags) &&
9966 test_and_clear_bit(AS_ENOSPC, &inode->i_mapping->flags))
9967 ret = -ENOSPC;
9968 if (test_bit(AS_EIO, &inode->i_mapping->flags) &&
9969 test_and_clear_bit(AS_EIO, &inode->i_mapping->flags))
9970 ret = -EIO;
9971
9972 return ret;
9973}
9974
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07009975static const struct inode_operations btrfs_dir_inode_operations = {
Chris Mason3394e162008-11-17 20:42:26 -05009976 .getattr = btrfs_getattr,
Chris Mason39279cc2007-06-12 06:35:45 -04009977 .lookup = btrfs_lookup,
9978 .create = btrfs_create,
9979 .unlink = btrfs_unlink,
9980 .link = btrfs_link,
9981 .mkdir = btrfs_mkdir,
9982 .rmdir = btrfs_rmdir,
Miklos Szeredi80ace852014-07-23 15:15:32 +02009983 .rename2 = btrfs_rename2,
Chris Mason39279cc2007-06-12 06:35:45 -04009984 .symlink = btrfs_symlink,
9985 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04009986 .mknod = btrfs_mknod,
Christoph Hellwig95819c02008-08-28 06:21:17 -04009987 .setxattr = btrfs_setxattr,
9988 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05009989 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04009990 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05009991 .permission = btrfs_permission,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02009992 .get_acl = btrfs_get_acl,
Christoph Hellwig996a7102013-12-20 05:16:43 -08009993 .set_acl = btrfs_set_acl,
Guangyu Sun93fd63c2013-09-16 10:42:03 -07009994 .update_time = btrfs_update_time,
Filipe Mananaef3b9af2014-04-27 20:40:45 +01009995 .tmpfile = btrfs_tmpfile,
Chris Mason39279cc2007-06-12 06:35:45 -04009996};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07009997static const struct inode_operations btrfs_dir_ro_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04009998 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -05009999 .permission = btrfs_permission,
Christoph Hellwig4e34e712011-07-23 17:37:31 +020010000 .get_acl = btrfs_get_acl,
Christoph Hellwig996a7102013-12-20 05:16:43 -080010001 .set_acl = btrfs_set_acl,
Guangyu Sun93fd63c2013-09-16 10:42:03 -070010002 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -040010003};
Yan, Zheng76dda932009-09-21 16:00:26 -040010004
Alexey Dobriyan828c0952009-10-01 15:43:56 -070010005static const struct file_operations btrfs_dir_file_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -040010006 .llseek = generic_file_llseek,
10007 .read = generic_read_dir,
Al Viro9cdda8d2013-05-22 16:48:09 -040010008 .iterate = btrfs_real_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -040010009 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -040010010#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -040010011 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -040010012#endif
Sage Weil6bf13c02008-06-10 10:07:39 -040010013 .release = btrfs_release_file,
Chris Masone02119d2008-09-05 16:13:11 -040010014 .fsync = btrfs_sync_file,
Chris Mason39279cc2007-06-12 06:35:45 -040010015};
10016
Chris Masond1310b22008-01-24 16:13:08 -050010017static struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -040010018 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -050010019 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -040010020 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -040010021 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Masone6dcd2d2008-07-17 12:53:50 -040010022 .writepage_end_io_hook = btrfs_writepage_end_io_hook,
Chris Mason247e7432008-07-17 12:53:51 -040010023 .writepage_start_hook = btrfs_writepage_start_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -050010024 .set_bit_hook = btrfs_set_bit_hook,
10025 .clear_bit_hook = btrfs_clear_bit_hook,
Josef Bacik9ed74f22009-09-11 16:12:44 -040010026 .merge_extent_hook = btrfs_merge_extent_hook,
10027 .split_extent_hook = btrfs_split_extent_hook,
Chris Mason07157aa2007-08-30 08:50:51 -040010028};
10029
Chris Mason35054392009-01-21 13:11:13 -050010030/*
10031 * btrfs doesn't support the bmap operation because swapfiles
10032 * use bmap to make a mapping of extents in the file. They assume
10033 * these extents won't change over the life of the file and they
10034 * use the bmap result to do IO directly to the drive.
10035 *
10036 * the btrfs bmap call would return logical addresses that aren't
10037 * suitable for IO and they also will change frequently as COW
10038 * operations happen. So, swapfile + btrfs == corruption.
10039 *
10040 * For now we're avoiding this by dropping bmap.
10041 */
Alexey Dobriyan7f094102009-09-21 17:01:10 -070010042static const struct address_space_operations btrfs_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -040010043 .readpage = btrfs_readpage,
10044 .writepage = btrfs_writepage,
Chris Masonb293f022007-11-01 19:45:34 -040010045 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -050010046 .readpages = btrfs_readpages,
Chris Mason16432982008-04-10 10:23:21 -040010047 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -040010048 .invalidatepage = btrfs_invalidatepage,
10049 .releasepage = btrfs_releasepage,
Chris Masone6dcd2d2008-07-17 12:53:50 -040010050 .set_page_dirty = btrfs_set_page_dirty,
Andi Kleen465fdd92009-09-16 11:50:18 +020010051 .error_remove_page = generic_error_remove_page,
Chris Mason39279cc2007-06-12 06:35:45 -040010052};
10053
Alexey Dobriyan7f094102009-09-21 17:01:10 -070010054static const struct address_space_operations btrfs_symlink_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -040010055 .readpage = btrfs_readpage,
10056 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -040010057 .invalidatepage = btrfs_invalidatepage,
10058 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -040010059};
10060
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010061static const struct inode_operations btrfs_file_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -040010062 .getattr = btrfs_getattr,
10063 .setattr = btrfs_setattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -040010064 .setxattr = btrfs_setxattr,
10065 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -050010066 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -040010067 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -050010068 .permission = btrfs_permission,
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -050010069 .fiemap = btrfs_fiemap,
Christoph Hellwig4e34e712011-07-23 17:37:31 +020010070 .get_acl = btrfs_get_acl,
Christoph Hellwig996a7102013-12-20 05:16:43 -080010071 .set_acl = btrfs_set_acl,
Josef Bacike41f9412012-03-26 09:46:47 -040010072 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -040010073};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010074static const struct inode_operations btrfs_special_inode_operations = {
Josef Bacik618e21d2007-07-11 10:18:17 -040010075 .getattr = btrfs_getattr,
10076 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -050010077 .permission = btrfs_permission,
Christoph Hellwig95819c02008-08-28 06:21:17 -040010078 .setxattr = btrfs_setxattr,
10079 .getxattr = btrfs_getxattr,
Josef Bacik33268ea2008-07-24 12:16:36 -040010080 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -040010081 .removexattr = btrfs_removexattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +020010082 .get_acl = btrfs_get_acl,
Christoph Hellwig996a7102013-12-20 05:16:43 -080010083 .set_acl = btrfs_set_acl,
Josef Bacike41f9412012-03-26 09:46:47 -040010084 .update_time = btrfs_update_time,
Josef Bacik618e21d2007-07-11 10:18:17 -040010085};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010086static const struct inode_operations btrfs_symlink_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -040010087 .readlink = generic_readlink,
10088 .follow_link = page_follow_link_light,
10089 .put_link = page_put_link,
Li Zefanf2095612010-11-19 02:05:24 +000010090 .getattr = btrfs_getattr,
Josef Bacik22c44fe2011-11-30 10:45:38 -050010091 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -050010092 .permission = btrfs_permission,
Jim Owens0279b4c2009-02-04 09:29:13 -050010093 .setxattr = btrfs_setxattr,
10094 .getxattr = btrfs_getxattr,
10095 .listxattr = btrfs_listxattr,
10096 .removexattr = btrfs_removexattr,
Josef Bacike41f9412012-03-26 09:46:47 -040010097 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -040010098};
Yan, Zheng76dda932009-09-21 16:00:26 -040010099
Alexey Dobriyan82d339d2009-10-09 09:54:36 -040010100const struct dentry_operations btrfs_dentry_operations = {
Yan, Zheng76dda932009-09-21 16:00:26 -040010101 .d_delete = btrfs_dentry_delete,
Josef Bacikb4aff1f2011-06-28 16:18:59 -040010102 .d_release = btrfs_dentry_release,
Yan, Zheng76dda932009-09-21 16:00:26 -040010103};