blob: a3e078365de537f9e12d96c8f140fc33da52b8b5 [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:
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000313 btrfs_free_path(path);
Josef Bacik00361582013-08-14 14:02:47 -0400314 btrfs_end_transaction(trans, root);
315 return ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400316}
317
Chris Mason771ed682008-11-06 22:02:51 -0500318struct async_extent {
319 u64 start;
320 u64 ram_size;
321 u64 compressed_size;
322 struct page **pages;
323 unsigned long nr_pages;
Li Zefan261507a02010-12-17 14:21:50 +0800324 int compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500325 struct list_head list;
326};
327
328struct async_cow {
329 struct inode *inode;
330 struct btrfs_root *root;
331 struct page *locked_page;
332 u64 start;
333 u64 end;
334 struct list_head extents;
335 struct btrfs_work work;
336};
337
338static noinline int add_async_extent(struct async_cow *cow,
339 u64 start, u64 ram_size,
340 u64 compressed_size,
341 struct page **pages,
Li Zefan261507a02010-12-17 14:21:50 +0800342 unsigned long nr_pages,
343 int compress_type)
Chris Mason771ed682008-11-06 22:02:51 -0500344{
345 struct async_extent *async_extent;
346
347 async_extent = kmalloc(sizeof(*async_extent), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100348 BUG_ON(!async_extent); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -0500349 async_extent->start = start;
350 async_extent->ram_size = ram_size;
351 async_extent->compressed_size = compressed_size;
352 async_extent->pages = pages;
353 async_extent->nr_pages = nr_pages;
Li Zefan261507a02010-12-17 14:21:50 +0800354 async_extent->compress_type = compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500355 list_add_tail(&async_extent->list, &cow->extents);
356 return 0;
357}
358
Wang Shilongf79707b2014-07-17 11:44:09 +0800359static inline int inode_need_compress(struct inode *inode)
360{
361 struct btrfs_root *root = BTRFS_I(inode)->root;
362
363 /* force compress */
364 if (btrfs_test_opt(root, FORCE_COMPRESS))
365 return 1;
366 /* bad compression ratios */
367 if (BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS)
368 return 0;
369 if (btrfs_test_opt(root, COMPRESS) ||
370 BTRFS_I(inode)->flags & BTRFS_INODE_COMPRESS ||
371 BTRFS_I(inode)->force_compress)
372 return 1;
373 return 0;
374}
375
Chris Masonc8b97812008-10-29 14:49:59 -0400376/*
Chris Mason771ed682008-11-06 22:02:51 -0500377 * we create compressed extents in two phases. The first
378 * phase compresses a range of pages that have already been
379 * locked (both pages and state bits are locked).
Chris Masonc8b97812008-10-29 14:49:59 -0400380 *
Chris Mason771ed682008-11-06 22:02:51 -0500381 * This is done inside an ordered work queue, and the compression
382 * is spread across many cpus. The actual IO submission is step
383 * two, and the ordered work queue takes care of making sure that
384 * happens in the same order things were put onto the queue by
385 * writepages and friends.
Chris Masonc8b97812008-10-29 14:49:59 -0400386 *
Chris Mason771ed682008-11-06 22:02:51 -0500387 * If this code finds it can't get good compression, it puts an
388 * entry onto the work queue to write the uncompressed bytes. This
389 * makes sure that both compressed inodes and uncompressed inodes
Artem Bityutskiyb2570312012-07-25 18:12:06 +0300390 * are written in the same order that the flusher thread sent them
391 * down.
Chris Masond352ac62008-09-29 15:18:18 -0400392 */
Filipe Mananac44f6492014-10-09 21:15:44 +0100393static noinline void compress_file_range(struct inode *inode,
Chris Mason771ed682008-11-06 22:02:51 -0500394 struct page *locked_page,
395 u64 start, u64 end,
396 struct async_cow *async_cow,
397 int *num_added)
Chris Masonb888db22007-08-27 16:49:44 -0400398{
399 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masondb945352007-10-15 16:15:53 -0400400 u64 num_bytes;
Chris Masondb945352007-10-15 16:15:53 -0400401 u64 blocksize = root->sectorsize;
Chris Masonc8b97812008-10-29 14:49:59 -0400402 u64 actual_end;
Chris Mason42dc7ba2008-12-15 11:44:56 -0500403 u64 isize = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400404 int ret = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400405 struct page **pages = NULL;
406 unsigned long nr_pages;
407 unsigned long nr_pages_ret = 0;
408 unsigned long total_compressed = 0;
409 unsigned long total_in = 0;
410 unsigned long max_compressed = 128 * 1024;
Chris Mason771ed682008-11-06 22:02:51 -0500411 unsigned long max_uncompressed = 128 * 1024;
Chris Masonc8b97812008-10-29 14:49:59 -0400412 int i;
413 int will_compress;
Li Zefan261507a02010-12-17 14:21:50 +0800414 int compress_type = root->fs_info->compress_type;
Chris Mason4adaa612013-03-26 13:07:00 -0400415 int redirty = 0;
Chris Masonb888db22007-08-27 16:49:44 -0400416
Liu Bo4cb13e52012-03-29 09:57:45 -0400417 /* if this is a small write inside eof, kick off a defrag */
418 if ((end - start + 1) < 16 * 1024 &&
419 (start > 0 || end + 1 < BTRFS_I(inode)->disk_i_size))
Chris Mason4cb53002011-05-24 15:35:30 -0400420 btrfs_add_inode_defrag(NULL, inode);
421
Chris Mason42dc7ba2008-12-15 11:44:56 -0500422 actual_end = min_t(u64, isize, end + 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400423again:
424 will_compress = 0;
425 nr_pages = (end >> PAGE_CACHE_SHIFT) - (start >> PAGE_CACHE_SHIFT) + 1;
426 nr_pages = min(nr_pages, (128 * 1024UL) / PAGE_CACHE_SIZE);
427
Chris Masonf03d9301f2009-02-04 09:31:06 -0500428 /*
429 * we don't want to send crud past the end of i_size through
430 * compression, that's just a waste of CPU time. So, if the
431 * end of the file is before the start of our current
432 * requested range of bytes, we bail out to the uncompressed
433 * cleanup code that can deal with all of this.
434 *
435 * It isn't really the fastest way to fix things, but this is a
436 * very uncommon corner.
437 */
438 if (actual_end <= start)
439 goto cleanup_and_bail_uncompressed;
440
Chris Masonc8b97812008-10-29 14:49:59 -0400441 total_compressed = actual_end - start;
442
Shilong Wang4bcbb332014-10-07 18:44:35 -0400443 /*
444 * skip compression for a small file range(<=blocksize) that
445 * isn't an inline extent, since it dosen't save disk space at all.
446 */
447 if (total_compressed <= blocksize &&
448 (start > 0 || end + 1 < BTRFS_I(inode)->disk_i_size))
449 goto cleanup_and_bail_uncompressed;
450
Chris Masonc8b97812008-10-29 14:49:59 -0400451 /* we want to make sure that amount of ram required to uncompress
452 * an extent is reasonable, so we limit the total size in ram
Chris Mason771ed682008-11-06 22:02:51 -0500453 * of a compressed extent to 128k. This is a crucial number
454 * because it also controls how easily we can spread reads across
455 * cpus for decompression.
456 *
457 * We also want to make sure the amount of IO required to do
458 * a random read is reasonably small, so we limit the size of
459 * a compressed extent to 128k.
Chris Masonc8b97812008-10-29 14:49:59 -0400460 */
461 total_compressed = min(total_compressed, max_uncompressed);
Qu Wenruofda28322013-02-26 08:10:22 +0000462 num_bytes = ALIGN(end - start + 1, blocksize);
Chris Masonbe20aa92007-12-17 20:14:01 -0500463 num_bytes = max(blocksize, num_bytes);
Chris Masonc8b97812008-10-29 14:49:59 -0400464 total_in = 0;
465 ret = 0;
Chris Masondb945352007-10-15 16:15:53 -0400466
Chris Mason771ed682008-11-06 22:02:51 -0500467 /*
468 * we do compression for mount -o compress and when the
469 * inode has not been flagged as nocompress. This flag can
470 * change at any time if we discover bad compression ratios.
Chris Masonc8b97812008-10-29 14:49:59 -0400471 */
Wang Shilongf79707b2014-07-17 11:44:09 +0800472 if (inode_need_compress(inode)) {
Chris Masonc8b97812008-10-29 14:49:59 -0400473 WARN_ON(pages);
David Sterba31e818f2015-02-20 18:00:26 +0100474 pages = kcalloc(nr_pages, sizeof(struct page *), GFP_NOFS);
Li Zefan560f7d72011-09-08 10:22:01 +0800475 if (!pages) {
476 /* just bail out to the uncompressed code */
477 goto cont;
478 }
Chris Mason179e29e2007-11-01 11:28:41 -0400479
Li Zefan261507a02010-12-17 14:21:50 +0800480 if (BTRFS_I(inode)->force_compress)
481 compress_type = BTRFS_I(inode)->force_compress;
482
Chris Mason4adaa612013-03-26 13:07:00 -0400483 /*
484 * we need to call clear_page_dirty_for_io on each
485 * page in the range. Otherwise applications with the file
486 * mmap'd can wander in and change the page contents while
487 * we are compressing them.
488 *
489 * If the compression fails for any reason, we set the pages
490 * dirty again later on.
491 */
492 extent_range_clear_dirty_for_io(inode, start, end);
493 redirty = 1;
Li Zefan261507a02010-12-17 14:21:50 +0800494 ret = btrfs_compress_pages(compress_type,
495 inode->i_mapping, start,
496 total_compressed, pages,
497 nr_pages, &nr_pages_ret,
498 &total_in,
499 &total_compressed,
500 max_compressed);
Chris Masonc8b97812008-10-29 14:49:59 -0400501
502 if (!ret) {
503 unsigned long offset = total_compressed &
504 (PAGE_CACHE_SIZE - 1);
505 struct page *page = pages[nr_pages_ret - 1];
506 char *kaddr;
507
508 /* zero the tail end of the last page, we might be
509 * sending it down to disk
510 */
511 if (offset) {
Cong Wang7ac687d2011-11-25 23:14:28 +0800512 kaddr = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -0400513 memset(kaddr + offset, 0,
514 PAGE_CACHE_SIZE - offset);
Cong Wang7ac687d2011-11-25 23:14:28 +0800515 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -0400516 }
517 will_compress = 1;
518 }
519 }
Li Zefan560f7d72011-09-08 10:22:01 +0800520cont:
Chris Masonc8b97812008-10-29 14:49:59 -0400521 if (start == 0) {
522 /* lets try to make an inline extent */
Chris Mason771ed682008-11-06 22:02:51 -0500523 if (ret || total_in < (actual_end - start)) {
Chris Masonc8b97812008-10-29 14:49:59 -0400524 /* we didn't compress the entire range, try
Chris Mason771ed682008-11-06 22:02:51 -0500525 * to make an uncompressed inline extent.
Chris Masonc8b97812008-10-29 14:49:59 -0400526 */
Josef Bacik00361582013-08-14 14:02:47 -0400527 ret = cow_file_range_inline(root, inode, start, end,
528 0, 0, NULL);
Chris Masonc8b97812008-10-29 14:49:59 -0400529 } else {
Chris Mason771ed682008-11-06 22:02:51 -0500530 /* try making a compressed inline extent */
Josef Bacik00361582013-08-14 14:02:47 -0400531 ret = cow_file_range_inline(root, inode, start, end,
Li Zefanfe3f5662011-03-28 08:30:38 +0000532 total_compressed,
533 compress_type, pages);
Chris Masonc8b97812008-10-29 14:49:59 -0400534 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100535 if (ret <= 0) {
Josef Bacik151a41b2013-07-29 13:22:24 -0400536 unsigned long clear_flags = EXTENT_DELALLOC |
537 EXTENT_DEFRAG;
Filipe Mananae6eb4312014-10-10 10:45:12 +0100538 unsigned long page_error_op;
539
Josef Bacik151a41b2013-07-29 13:22:24 -0400540 clear_flags |= (ret < 0) ? EXTENT_DO_ACCOUNTING : 0;
Filipe Mananae6eb4312014-10-10 10:45:12 +0100541 page_error_op = ret < 0 ? PAGE_SET_ERROR : 0;
Josef Bacik151a41b2013-07-29 13:22:24 -0400542
Chris Mason771ed682008-11-06 22:02:51 -0500543 /*
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100544 * inline extent creation worked or returned error,
545 * we don't need to create any more async work items.
546 * Unlock and free up our temp pages.
Chris Mason771ed682008-11-06 22:02:51 -0500547 */
Josef Bacikc2790a22013-07-29 11:20:47 -0400548 extent_clear_unlock_delalloc(inode, start, end, NULL,
Josef Bacik151a41b2013-07-29 13:22:24 -0400549 clear_flags, PAGE_UNLOCK |
Josef Bacikc2790a22013-07-29 11:20:47 -0400550 PAGE_CLEAR_DIRTY |
551 PAGE_SET_WRITEBACK |
Filipe Mananae6eb4312014-10-10 10:45:12 +0100552 page_error_op |
Josef Bacikc2790a22013-07-29 11:20:47 -0400553 PAGE_END_WRITEBACK);
Chris Masonc8b97812008-10-29 14:49:59 -0400554 goto free_pages_out;
555 }
556 }
557
558 if (will_compress) {
559 /*
560 * we aren't doing an inline extent round the compressed size
561 * up to a block size boundary so the allocator does sane
562 * things
563 */
Qu Wenruofda28322013-02-26 08:10:22 +0000564 total_compressed = ALIGN(total_compressed, blocksize);
Chris Masonc8b97812008-10-29 14:49:59 -0400565
566 /*
567 * one last check to make sure the compression is really a
568 * win, compare the page count read with the blocks on disk
569 */
Qu Wenruofda28322013-02-26 08:10:22 +0000570 total_in = ALIGN(total_in, PAGE_CACHE_SIZE);
Chris Masonc8b97812008-10-29 14:49:59 -0400571 if (total_compressed >= total_in) {
572 will_compress = 0;
573 } else {
Chris Masonc8b97812008-10-29 14:49:59 -0400574 num_bytes = total_in;
575 }
576 }
577 if (!will_compress && pages) {
578 /*
579 * the compression code ran but failed to make things smaller,
580 * free any pages it allocated and our page pointer array
581 */
582 for (i = 0; i < nr_pages_ret; i++) {
Chris Mason70b99e62008-10-31 12:46:39 -0400583 WARN_ON(pages[i]->mapping);
Chris Masonc8b97812008-10-29 14:49:59 -0400584 page_cache_release(pages[i]);
585 }
586 kfree(pages);
587 pages = NULL;
588 total_compressed = 0;
589 nr_pages_ret = 0;
590
591 /* flag the file so we don't compress in the future */
Chris Mason1e701a32010-03-11 09:42:04 -0500592 if (!btrfs_test_opt(root, FORCE_COMPRESS) &&
593 !(BTRFS_I(inode)->force_compress)) {
Chris Masona555f812010-01-28 16:18:15 -0500594 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
Chris Mason1e701a32010-03-11 09:42:04 -0500595 }
Chris Masonc8b97812008-10-29 14:49:59 -0400596 }
Chris Mason771ed682008-11-06 22:02:51 -0500597 if (will_compress) {
598 *num_added += 1;
599
600 /* the async work queues will take care of doing actual
601 * allocation on disk for these compressed pages,
602 * and will submit them to the elevator.
603 */
604 add_async_extent(async_cow, start, num_bytes,
Li Zefan261507a02010-12-17 14:21:50 +0800605 total_compressed, pages, nr_pages_ret,
606 compress_type);
Chris Mason771ed682008-11-06 22:02:51 -0500607
Yan, Zheng24ae6362010-12-06 07:02:36 +0000608 if (start + num_bytes < end) {
Chris Mason771ed682008-11-06 22:02:51 -0500609 start += num_bytes;
610 pages = NULL;
611 cond_resched();
612 goto again;
613 }
614 } else {
Chris Masonf03d9301f2009-02-04 09:31:06 -0500615cleanup_and_bail_uncompressed:
Chris Mason771ed682008-11-06 22:02:51 -0500616 /*
617 * No compression, but we still need to write the pages in
618 * the file we've been given so far. redirty the locked
619 * page if it corresponds to our extent and set things up
620 * for the async work queue to run cow_file_range to do
621 * the normal delalloc dance
622 */
623 if (page_offset(locked_page) >= start &&
624 page_offset(locked_page) <= end) {
625 __set_page_dirty_nobuffers(locked_page);
626 /* unlocked later on in the async handlers */
627 }
Chris Mason4adaa612013-03-26 13:07:00 -0400628 if (redirty)
629 extent_range_redirty_for_io(inode, start, end);
Li Zefan261507a02010-12-17 14:21:50 +0800630 add_async_extent(async_cow, start, end - start + 1,
631 0, NULL, 0, BTRFS_COMPRESS_NONE);
Chris Mason771ed682008-11-06 22:02:51 -0500632 *num_added += 1;
633 }
634
Filipe Mananac44f6492014-10-09 21:15:44 +0100635 return;
Chris Mason771ed682008-11-06 22:02:51 -0500636
637free_pages_out:
638 for (i = 0; i < nr_pages_ret; i++) {
639 WARN_ON(pages[i]->mapping);
640 page_cache_release(pages[i]);
641 }
Chris Masond3977122009-01-05 21:25:51 -0500642 kfree(pages);
Chris Mason771ed682008-11-06 22:02:51 -0500643}
Chris Mason771ed682008-11-06 22:02:51 -0500644
Filipe Manana40ae8372014-10-06 22:14:24 +0100645static void free_async_extent_pages(struct async_extent *async_extent)
646{
647 int i;
648
649 if (!async_extent->pages)
650 return;
651
652 for (i = 0; i < async_extent->nr_pages; i++) {
653 WARN_ON(async_extent->pages[i]->mapping);
654 page_cache_release(async_extent->pages[i]);
655 }
656 kfree(async_extent->pages);
657 async_extent->nr_pages = 0;
658 async_extent->pages = NULL;
Chris Mason771ed682008-11-06 22:02:51 -0500659}
660
661/*
662 * phase two of compressed writeback. This is the ordered portion
663 * of the code, which only gets called in the order the work was
664 * queued. We walk all the async extents created by compress_file_range
665 * and send them down to the disk.
666 */
Filipe Mananadec8f172014-10-06 22:14:26 +0100667static noinline void submit_compressed_extents(struct inode *inode,
Chris Mason771ed682008-11-06 22:02:51 -0500668 struct async_cow *async_cow)
669{
670 struct async_extent *async_extent;
671 u64 alloc_hint = 0;
Chris Mason771ed682008-11-06 22:02:51 -0500672 struct btrfs_key ins;
673 struct extent_map *em;
674 struct btrfs_root *root = BTRFS_I(inode)->root;
675 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
676 struct extent_io_tree *io_tree;
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500677 int ret = 0;
Chris Mason771ed682008-11-06 22:02:51 -0500678
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500679again:
Chris Masond3977122009-01-05 21:25:51 -0500680 while (!list_empty(&async_cow->extents)) {
Chris Mason771ed682008-11-06 22:02:51 -0500681 async_extent = list_entry(async_cow->extents.next,
682 struct async_extent, list);
683 list_del(&async_extent->list);
684
685 io_tree = &BTRFS_I(inode)->io_tree;
686
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500687retry:
Chris Mason771ed682008-11-06 22:02:51 -0500688 /* did the compression code fall back to uncompressed IO? */
689 if (!async_extent->pages) {
690 int page_started = 0;
691 unsigned long nr_written = 0;
692
693 lock_extent(io_tree, async_extent->start,
Josef Bacik2ac55d42010-02-03 19:33:23 +0000694 async_extent->start +
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100695 async_extent->ram_size - 1);
Chris Mason771ed682008-11-06 22:02:51 -0500696
697 /* allocate blocks */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500698 ret = cow_file_range(inode, async_cow->locked_page,
699 async_extent->start,
700 async_extent->start +
701 async_extent->ram_size - 1,
702 &page_started, &nr_written, 0);
Chris Mason771ed682008-11-06 22:02:51 -0500703
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100704 /* JDM XXX */
705
Chris Mason771ed682008-11-06 22:02:51 -0500706 /*
707 * if page_started, cow_file_range inserted an
708 * inline extent and took care of all the unlocking
709 * and IO for us. Otherwise, we need to submit
710 * all those pages down to the drive.
711 */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500712 if (!page_started && !ret)
Chris Mason771ed682008-11-06 22:02:51 -0500713 extent_write_locked_range(io_tree,
714 inode, async_extent->start,
Chris Masond3977122009-01-05 21:25:51 -0500715 async_extent->start +
Chris Mason771ed682008-11-06 22:02:51 -0500716 async_extent->ram_size - 1,
717 btrfs_get_extent,
718 WB_SYNC_ALL);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500719 else if (ret)
720 unlock_page(async_cow->locked_page);
Chris Mason771ed682008-11-06 22:02:51 -0500721 kfree(async_extent);
722 cond_resched();
723 continue;
724 }
725
726 lock_extent(io_tree, async_extent->start,
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100727 async_extent->start + async_extent->ram_size - 1);
Chris Mason771ed682008-11-06 22:02:51 -0500728
Josef Bacik00361582013-08-14 14:02:47 -0400729 ret = btrfs_reserve_extent(root,
Chris Mason771ed682008-11-06 22:02:51 -0500730 async_extent->compressed_size,
731 async_extent->compressed_size,
Miao Xiee570fd22014-06-19 10:42:50 +0800732 0, alloc_hint, &ins, 1, 1);
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500733 if (ret) {
Filipe Manana40ae8372014-10-06 22:14:24 +0100734 free_async_extent_pages(async_extent);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500735
Josef Bacikfdf8e2e2013-06-14 16:58:23 -0400736 if (ret == -ENOSPC) {
737 unlock_extent(io_tree, async_extent->start,
738 async_extent->start +
739 async_extent->ram_size - 1);
Liu Boce620032014-07-24 22:48:05 +0800740
741 /*
742 * we need to redirty the pages if we decide to
743 * fallback to uncompressed IO, otherwise we
744 * will not submit these pages down to lower
745 * layers.
746 */
747 extent_range_redirty_for_io(inode,
748 async_extent->start,
749 async_extent->start +
750 async_extent->ram_size - 1);
751
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100752 goto retry;
Josef Bacikfdf8e2e2013-06-14 16:58:23 -0400753 }
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500754 goto out_free;
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500755 }
Yan, Zhengc2167752009-11-12 09:34:21 +0000756 /*
757 * here we're doing allocation and writeback of the
758 * compressed pages
759 */
760 btrfs_drop_extent_cache(inode, async_extent->start,
761 async_extent->start +
762 async_extent->ram_size - 1, 0);
763
David Sterba172ddd62011-04-21 00:48:27 +0200764 em = alloc_extent_map();
Liu Bob9aa55b2013-05-14 02:12:15 +0000765 if (!em) {
766 ret = -ENOMEM;
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500767 goto out_free_reserve;
Liu Bob9aa55b2013-05-14 02:12:15 +0000768 }
Chris Mason771ed682008-11-06 22:02:51 -0500769 em->start = async_extent->start;
770 em->len = async_extent->ram_size;
Chris Mason445a6942008-11-10 11:53:33 -0500771 em->orig_start = em->start;
Josef Bacik2ab28f32012-10-12 15:27:49 -0400772 em->mod_start = em->start;
773 em->mod_len = em->len;
Chris Mason771ed682008-11-06 22:02:51 -0500774
775 em->block_start = ins.objectid;
776 em->block_len = ins.offset;
Josef Bacikb4939682012-12-03 10:31:19 -0500777 em->orig_block_len = ins.offset;
Josef Bacikcc95bef2013-04-04 14:31:27 -0400778 em->ram_bytes = async_extent->ram_size;
Chris Mason771ed682008-11-06 22:02:51 -0500779 em->bdev = root->fs_info->fs_devices->latest_bdev;
Li Zefan261507a02010-12-17 14:21:50 +0800780 em->compress_type = async_extent->compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500781 set_bit(EXTENT_FLAG_PINNED, &em->flags);
782 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Josef Bacik70c8a912012-10-11 16:54:30 -0400783 em->generation = -1;
Chris Mason771ed682008-11-06 22:02:51 -0500784
Chris Masond3977122009-01-05 21:25:51 -0500785 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -0400786 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -0400787 ret = add_extent_mapping(em_tree, em, 1);
Chris Mason890871b2009-09-02 16:24:52 -0400788 write_unlock(&em_tree->lock);
Chris Mason771ed682008-11-06 22:02:51 -0500789 if (ret != -EEXIST) {
790 free_extent_map(em);
791 break;
792 }
793 btrfs_drop_extent_cache(inode, async_extent->start,
794 async_extent->start +
795 async_extent->ram_size - 1, 0);
796 }
797
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500798 if (ret)
799 goto out_free_reserve;
800
Li Zefan261507a02010-12-17 14:21:50 +0800801 ret = btrfs_add_ordered_extent_compress(inode,
802 async_extent->start,
803 ins.objectid,
804 async_extent->ram_size,
805 ins.offset,
806 BTRFS_ORDERED_COMPRESSED,
807 async_extent->compress_type);
Filipe Mananad9f85962014-08-25 10:43:00 +0100808 if (ret) {
809 btrfs_drop_extent_cache(inode, async_extent->start,
810 async_extent->start +
811 async_extent->ram_size - 1, 0);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500812 goto out_free_reserve;
Filipe Mananad9f85962014-08-25 10:43:00 +0100813 }
Chris Mason771ed682008-11-06 22:02:51 -0500814
Chris Mason771ed682008-11-06 22:02:51 -0500815 /*
816 * clear dirty, set writeback and unlock the pages.
817 */
Josef Bacikc2790a22013-07-29 11:20:47 -0400818 extent_clear_unlock_delalloc(inode, async_extent->start,
Chris Masona791e352009-10-08 11:27:10 -0400819 async_extent->start +
820 async_extent->ram_size - 1,
Josef Bacik151a41b2013-07-29 13:22:24 -0400821 NULL, EXTENT_LOCKED | EXTENT_DELALLOC,
822 PAGE_UNLOCK | PAGE_CLEAR_DIRTY |
Josef Bacikc2790a22013-07-29 11:20:47 -0400823 PAGE_SET_WRITEBACK);
Chris Mason771ed682008-11-06 22:02:51 -0500824 ret = btrfs_submit_compressed_write(inode,
Chris Masond3977122009-01-05 21:25:51 -0500825 async_extent->start,
826 async_extent->ram_size,
827 ins.objectid,
828 ins.offset, async_extent->pages,
829 async_extent->nr_pages);
Filipe Mananafce2a4e2014-10-06 22:14:23 +0100830 if (ret) {
831 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
832 struct page *p = async_extent->pages[0];
833 const u64 start = async_extent->start;
834 const u64 end = start + async_extent->ram_size - 1;
835
836 p->mapping = inode->i_mapping;
837 tree->ops->writepage_end_io_hook(p, start, end,
838 NULL, 0);
839 p->mapping = NULL;
840 extent_clear_unlock_delalloc(inode, start, end, NULL, 0,
841 PAGE_END_WRITEBACK |
842 PAGE_SET_ERROR);
Filipe Manana40ae8372014-10-06 22:14:24 +0100843 free_async_extent_pages(async_extent);
Filipe Mananafce2a4e2014-10-06 22:14:23 +0100844 }
Chris Mason771ed682008-11-06 22:02:51 -0500845 alloc_hint = ins.objectid + ins.offset;
846 kfree(async_extent);
847 cond_resched();
848 }
Filipe Mananadec8f172014-10-06 22:14:26 +0100849 return;
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500850out_free_reserve:
Miao Xiee570fd22014-06-19 10:42:50 +0800851 btrfs_free_reserved_extent(root, ins.objectid, ins.offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100852out_free:
Josef Bacikc2790a22013-07-29 11:20:47 -0400853 extent_clear_unlock_delalloc(inode, async_extent->start,
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500854 async_extent->start +
855 async_extent->ram_size - 1,
Josef Bacikc2790a22013-07-29 11:20:47 -0400856 NULL, EXTENT_LOCKED | EXTENT_DELALLOC |
Josef Bacik151a41b2013-07-29 13:22:24 -0400857 EXTENT_DEFRAG | EXTENT_DO_ACCOUNTING,
858 PAGE_UNLOCK | PAGE_CLEAR_DIRTY |
Filipe Manana704de492014-10-06 22:14:22 +0100859 PAGE_SET_WRITEBACK | PAGE_END_WRITEBACK |
860 PAGE_SET_ERROR);
Filipe Manana40ae8372014-10-06 22:14:24 +0100861 free_async_extent_pages(async_extent);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100862 kfree(async_extent);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500863 goto again;
Chris Mason771ed682008-11-06 22:02:51 -0500864}
865
Josef Bacik4b46fce2010-05-23 11:00:55 -0400866static u64 get_extent_allocation_hint(struct inode *inode, u64 start,
867 u64 num_bytes)
868{
869 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
870 struct extent_map *em;
871 u64 alloc_hint = 0;
872
873 read_lock(&em_tree->lock);
874 em = search_extent_mapping(em_tree, start, num_bytes);
875 if (em) {
876 /*
877 * if block start isn't an actual block number then find the
878 * first block in this inode and use that as a hint. If that
879 * block is also bogus then just don't worry about it.
880 */
881 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
882 free_extent_map(em);
883 em = search_extent_mapping(em_tree, 0, 0);
884 if (em && em->block_start < EXTENT_MAP_LAST_BYTE)
885 alloc_hint = em->block_start;
886 if (em)
887 free_extent_map(em);
888 } else {
889 alloc_hint = em->block_start;
890 free_extent_map(em);
891 }
892 }
893 read_unlock(&em_tree->lock);
894
895 return alloc_hint;
896}
897
Chris Mason771ed682008-11-06 22:02:51 -0500898/*
899 * when extent_io.c finds a delayed allocation range in the file,
900 * the call backs end up in this code. The basic idea is to
901 * allocate extents on disk for the range, and create ordered data structs
902 * in ram to track those extents.
903 *
904 * locked_page is the page that writepage had locked already. We use
905 * it to make sure we don't do extra locks or unlocks.
906 *
907 * *page_started is set to one if we unlock locked_page and do everything
908 * required to start IO on it. It may be clean and already done with
909 * IO when we return.
910 */
Josef Bacik00361582013-08-14 14:02:47 -0400911static noinline int cow_file_range(struct inode *inode,
912 struct page *locked_page,
913 u64 start, u64 end, int *page_started,
914 unsigned long *nr_written,
915 int unlock)
Chris Mason771ed682008-11-06 22:02:51 -0500916{
Josef Bacik00361582013-08-14 14:02:47 -0400917 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason771ed682008-11-06 22:02:51 -0500918 u64 alloc_hint = 0;
919 u64 num_bytes;
920 unsigned long ram_size;
921 u64 disk_num_bytes;
922 u64 cur_alloc_size;
923 u64 blocksize = root->sectorsize;
Chris Mason771ed682008-11-06 22:02:51 -0500924 struct btrfs_key ins;
925 struct extent_map *em;
926 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
927 int ret = 0;
928
Josef Bacik02ecd2c2013-10-25 16:19:08 -0400929 if (btrfs_is_free_space_inode(inode)) {
930 WARN_ON_ONCE(1);
Josef Bacik29bce2f2014-02-07 12:21:23 -0500931 ret = -EINVAL;
932 goto out_unlock;
Josef Bacik02ecd2c2013-10-25 16:19:08 -0400933 }
Chris Mason771ed682008-11-06 22:02:51 -0500934
Qu Wenruofda28322013-02-26 08:10:22 +0000935 num_bytes = ALIGN(end - start + 1, blocksize);
Chris Mason771ed682008-11-06 22:02:51 -0500936 num_bytes = max(blocksize, num_bytes);
937 disk_num_bytes = num_bytes;
Chris Mason771ed682008-11-06 22:02:51 -0500938
Chris Mason4cb53002011-05-24 15:35:30 -0400939 /* if this is a small write inside eof, kick off defrag */
Liu Bo4cb13e52012-03-29 09:57:45 -0400940 if (num_bytes < 64 * 1024 &&
941 (start > 0 || end + 1 < BTRFS_I(inode)->disk_i_size))
Josef Bacik00361582013-08-14 14:02:47 -0400942 btrfs_add_inode_defrag(NULL, inode);
Chris Mason4cb53002011-05-24 15:35:30 -0400943
Chris Mason771ed682008-11-06 22:02:51 -0500944 if (start == 0) {
945 /* lets try to make an inline extent */
Josef Bacik00361582013-08-14 14:02:47 -0400946 ret = cow_file_range_inline(root, inode, start, end, 0, 0,
947 NULL);
Chris Mason771ed682008-11-06 22:02:51 -0500948 if (ret == 0) {
Josef Bacikc2790a22013-07-29 11:20:47 -0400949 extent_clear_unlock_delalloc(inode, start, end, NULL,
950 EXTENT_LOCKED | EXTENT_DELALLOC |
Josef Bacik151a41b2013-07-29 13:22:24 -0400951 EXTENT_DEFRAG, PAGE_UNLOCK |
Josef Bacikc2790a22013-07-29 11:20:47 -0400952 PAGE_CLEAR_DIRTY | PAGE_SET_WRITEBACK |
953 PAGE_END_WRITEBACK);
Yan, Zhengc2167752009-11-12 09:34:21 +0000954
Chris Mason771ed682008-11-06 22:02:51 -0500955 *nr_written = *nr_written +
956 (end - start + PAGE_CACHE_SIZE) / PAGE_CACHE_SIZE;
957 *page_started = 1;
Chris Mason771ed682008-11-06 22:02:51 -0500958 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100959 } else if (ret < 0) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100960 goto out_unlock;
Chris Mason771ed682008-11-06 22:02:51 -0500961 }
962 }
Chris Masonc8b97812008-10-29 14:49:59 -0400963
964 BUG_ON(disk_num_bytes >
David Sterba6c417612011-04-13 15:41:04 +0200965 btrfs_super_total_bytes(root->fs_info->super_copy));
Chris Masonc8b97812008-10-29 14:49:59 -0400966
Josef Bacik4b46fce2010-05-23 11:00:55 -0400967 alloc_hint = get_extent_allocation_hint(inode, start, num_bytes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400968 btrfs_drop_extent_cache(inode, start, start + num_bytes - 1, 0);
Chris Mason3b951512008-04-17 11:29:12 -0400969
Chris Masond3977122009-01-05 21:25:51 -0500970 while (disk_num_bytes > 0) {
Chris Masona791e352009-10-08 11:27:10 -0400971 unsigned long op;
972
Josef Bacik287a0ab2010-03-19 18:07:23 +0000973 cur_alloc_size = disk_num_bytes;
Josef Bacik00361582013-08-14 14:02:47 -0400974 ret = btrfs_reserve_extent(root, cur_alloc_size,
Chris Mason771ed682008-11-06 22:02:51 -0500975 root->sectorsize, 0, alloc_hint,
Miao Xiee570fd22014-06-19 10:42:50 +0800976 &ins, 1, 1);
Josef Bacik00361582013-08-14 14:02:47 -0400977 if (ret < 0)
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100978 goto out_unlock;
Chris Masond3977122009-01-05 21:25:51 -0500979
David Sterba172ddd62011-04-21 00:48:27 +0200980 em = alloc_extent_map();
Liu Bob9aa55b2013-05-14 02:12:15 +0000981 if (!em) {
982 ret = -ENOMEM;
Liu Boace68ba2013-04-22 10:53:47 +0000983 goto out_reserve;
Liu Bob9aa55b2013-05-14 02:12:15 +0000984 }
Chris Masone6dcd2d2008-07-17 12:53:50 -0400985 em->start = start;
Chris Mason445a6942008-11-10 11:53:33 -0500986 em->orig_start = em->start;
Chris Mason771ed682008-11-06 22:02:51 -0500987 ram_size = ins.offset;
988 em->len = ins.offset;
Josef Bacik2ab28f32012-10-12 15:27:49 -0400989 em->mod_start = em->start;
990 em->mod_len = em->len;
Chris Masonc8b97812008-10-29 14:49:59 -0400991
Chris Masone6dcd2d2008-07-17 12:53:50 -0400992 em->block_start = ins.objectid;
Chris Masonc8b97812008-10-29 14:49:59 -0400993 em->block_len = ins.offset;
Josef Bacikb4939682012-12-03 10:31:19 -0500994 em->orig_block_len = ins.offset;
Josef Bacikcc95bef2013-04-04 14:31:27 -0400995 em->ram_bytes = ram_size;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400996 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -0400997 set_bit(EXTENT_FLAG_PINNED, &em->flags);
Josef Bacik70c8a912012-10-11 16:54:30 -0400998 em->generation = -1;
Chris Masonc8b97812008-10-29 14:49:59 -0400999
Chris Masond3977122009-01-05 21:25:51 -05001000 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04001001 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04001002 ret = add_extent_mapping(em_tree, em, 1);
Chris Mason890871b2009-09-02 16:24:52 -04001003 write_unlock(&em_tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001004 if (ret != -EEXIST) {
1005 free_extent_map(em);
1006 break;
1007 }
1008 btrfs_drop_extent_cache(inode, start,
Chris Masonc8b97812008-10-29 14:49:59 -04001009 start + ram_size - 1, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001010 }
Liu Boace68ba2013-04-22 10:53:47 +00001011 if (ret)
1012 goto out_reserve;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001013
Chris Mason98d20f62008-04-14 09:46:10 -04001014 cur_alloc_size = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001015 ret = btrfs_add_ordered_extent(inode, start, ins.objectid,
Chris Mason771ed682008-11-06 22:02:51 -05001016 ram_size, cur_alloc_size, 0);
Liu Boace68ba2013-04-22 10:53:47 +00001017 if (ret)
Filipe Mananad9f85962014-08-25 10:43:00 +01001018 goto out_drop_extent_cache;
Chris Masonc8b97812008-10-29 14:49:59 -04001019
Yan Zheng17d217f2008-12-12 10:03:38 -05001020 if (root->root_key.objectid ==
1021 BTRFS_DATA_RELOC_TREE_OBJECTID) {
1022 ret = btrfs_reloc_clone_csums(inode, start,
1023 cur_alloc_size);
Josef Bacik00361582013-08-14 14:02:47 -04001024 if (ret)
Filipe Mananad9f85962014-08-25 10:43:00 +01001025 goto out_drop_extent_cache;
Yan Zheng17d217f2008-12-12 10:03:38 -05001026 }
1027
Chris Masond3977122009-01-05 21:25:51 -05001028 if (disk_num_bytes < cur_alloc_size)
Chris Mason3b951512008-04-17 11:29:12 -04001029 break;
Chris Masond3977122009-01-05 21:25:51 -05001030
Chris Masonc8b97812008-10-29 14:49:59 -04001031 /* we're not doing compressed IO, don't unlock the first
1032 * page (which the caller expects to stay locked), don't
1033 * clear any dirty bits and don't set any writeback bits
Chris Mason8b62b722009-09-02 16:53:46 -04001034 *
1035 * Do set the Private2 bit so we know this page was properly
1036 * setup for writepage
Chris Masonc8b97812008-10-29 14:49:59 -04001037 */
Josef Bacikc2790a22013-07-29 11:20:47 -04001038 op = unlock ? PAGE_UNLOCK : 0;
1039 op |= PAGE_SET_PRIVATE2;
Chris Masona791e352009-10-08 11:27:10 -04001040
Josef Bacikc2790a22013-07-29 11:20:47 -04001041 extent_clear_unlock_delalloc(inode, start,
1042 start + ram_size - 1, locked_page,
1043 EXTENT_LOCKED | EXTENT_DELALLOC,
1044 op);
Chris Masonc8b97812008-10-29 14:49:59 -04001045 disk_num_bytes -= cur_alloc_size;
Chris Masonc59f8952007-12-17 20:14:04 -05001046 num_bytes -= cur_alloc_size;
1047 alloc_hint = ins.objectid + ins.offset;
1048 start += cur_alloc_size;
Chris Masonb888db22007-08-27 16:49:44 -04001049 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001050out:
Chris Masonbe20aa92007-12-17 20:14:01 -05001051 return ret;
Miao Xieb7d5b0a2012-11-01 07:32:18 +00001052
Filipe Mananad9f85962014-08-25 10:43:00 +01001053out_drop_extent_cache:
1054 btrfs_drop_extent_cache(inode, start, start + ram_size - 1, 0);
Liu Boace68ba2013-04-22 10:53:47 +00001055out_reserve:
Miao Xiee570fd22014-06-19 10:42:50 +08001056 btrfs_free_reserved_extent(root, ins.objectid, ins.offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001057out_unlock:
Josef Bacikc2790a22013-07-29 11:20:47 -04001058 extent_clear_unlock_delalloc(inode, start, end, locked_page,
Josef Bacik151a41b2013-07-29 13:22:24 -04001059 EXTENT_LOCKED | EXTENT_DO_ACCOUNTING |
1060 EXTENT_DELALLOC | EXTENT_DEFRAG,
1061 PAGE_UNLOCK | PAGE_CLEAR_DIRTY |
1062 PAGE_SET_WRITEBACK | PAGE_END_WRITEBACK);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001063 goto out;
Chris Mason771ed682008-11-06 22:02:51 -05001064}
Chris Masonc8b97812008-10-29 14:49:59 -04001065
Chris Mason771ed682008-11-06 22:02:51 -05001066/*
1067 * work queue call back to started compression on a file and pages
1068 */
1069static noinline void async_cow_start(struct btrfs_work *work)
1070{
1071 struct async_cow *async_cow;
1072 int num_added = 0;
1073 async_cow = container_of(work, struct async_cow, work);
1074
1075 compress_file_range(async_cow->inode, async_cow->locked_page,
1076 async_cow->start, async_cow->end, async_cow,
1077 &num_added);
Josef Bacik8180ef82012-06-08 15:16:12 -04001078 if (num_added == 0) {
Josef Bacikcb77fcd2012-06-15 12:19:48 -06001079 btrfs_add_delayed_iput(async_cow->inode);
Chris Mason771ed682008-11-06 22:02:51 -05001080 async_cow->inode = NULL;
Josef Bacik8180ef82012-06-08 15:16:12 -04001081 }
Chris Mason771ed682008-11-06 22:02:51 -05001082}
1083
1084/*
1085 * work queue call back to submit previously compressed pages
1086 */
1087static noinline void async_cow_submit(struct btrfs_work *work)
1088{
1089 struct async_cow *async_cow;
1090 struct btrfs_root *root;
1091 unsigned long nr_pages;
1092
1093 async_cow = container_of(work, struct async_cow, work);
1094
1095 root = async_cow->root;
1096 nr_pages = (async_cow->end - async_cow->start + PAGE_CACHE_SIZE) >>
1097 PAGE_CACHE_SHIFT;
1098
David Sterbaee863952015-02-16 19:41:40 +01001099 /*
1100 * atomic_sub_return implies a barrier for waitqueue_active
1101 */
Josef Bacik66657b32012-08-01 15:36:24 -04001102 if (atomic_sub_return(nr_pages, &root->fs_info->async_delalloc_pages) <
Liu Bo287082b2012-06-28 04:02:24 -06001103 5 * 1024 * 1024 &&
Chris Mason771ed682008-11-06 22:02:51 -05001104 waitqueue_active(&root->fs_info->async_submit_wait))
1105 wake_up(&root->fs_info->async_submit_wait);
1106
Chris Masond3977122009-01-05 21:25:51 -05001107 if (async_cow->inode)
Chris Mason771ed682008-11-06 22:02:51 -05001108 submit_compressed_extents(async_cow->inode, async_cow);
Chris Mason771ed682008-11-06 22:02:51 -05001109}
Chris Masonc8b97812008-10-29 14:49:59 -04001110
Chris Mason771ed682008-11-06 22:02:51 -05001111static noinline void async_cow_free(struct btrfs_work *work)
1112{
1113 struct async_cow *async_cow;
1114 async_cow = container_of(work, struct async_cow, work);
Josef Bacik8180ef82012-06-08 15:16:12 -04001115 if (async_cow->inode)
Josef Bacikcb77fcd2012-06-15 12:19:48 -06001116 btrfs_add_delayed_iput(async_cow->inode);
Chris Mason771ed682008-11-06 22:02:51 -05001117 kfree(async_cow);
1118}
1119
1120static int cow_file_range_async(struct inode *inode, struct page *locked_page,
1121 u64 start, u64 end, int *page_started,
1122 unsigned long *nr_written)
1123{
1124 struct async_cow *async_cow;
1125 struct btrfs_root *root = BTRFS_I(inode)->root;
1126 unsigned long nr_pages;
1127 u64 cur_end;
Liu Bo287082b2012-06-28 04:02:24 -06001128 int limit = 10 * 1024 * 1024;
Chris Mason771ed682008-11-06 22:02:51 -05001129
Chris Masona3429ab2009-10-08 12:30:20 -04001130 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, EXTENT_LOCKED,
1131 1, 0, NULL, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -05001132 while (start < end) {
Chris Mason771ed682008-11-06 22:02:51 -05001133 async_cow = kmalloc(sizeof(*async_cow), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001134 BUG_ON(!async_cow); /* -ENOMEM */
Josef Bacik8180ef82012-06-08 15:16:12 -04001135 async_cow->inode = igrab(inode);
Chris Mason771ed682008-11-06 22:02:51 -05001136 async_cow->root = root;
1137 async_cow->locked_page = locked_page;
1138 async_cow->start = start;
1139
Wang Shilongf79707b2014-07-17 11:44:09 +08001140 if (BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS &&
1141 !btrfs_test_opt(root, FORCE_COMPRESS))
Chris Mason771ed682008-11-06 22:02:51 -05001142 cur_end = end;
1143 else
1144 cur_end = min(end, start + 512 * 1024 - 1);
1145
1146 async_cow->end = cur_end;
1147 INIT_LIST_HEAD(&async_cow->extents);
1148
Liu Bo9e0af232014-08-15 23:36:53 +08001149 btrfs_init_work(&async_cow->work,
1150 btrfs_delalloc_helper,
1151 async_cow_start, async_cow_submit,
1152 async_cow_free);
Chris Mason771ed682008-11-06 22:02:51 -05001153
Chris Mason771ed682008-11-06 22:02:51 -05001154 nr_pages = (cur_end - start + PAGE_CACHE_SIZE) >>
1155 PAGE_CACHE_SHIFT;
1156 atomic_add(nr_pages, &root->fs_info->async_delalloc_pages);
1157
Qu Wenruoafe3d242014-02-28 10:46:07 +08001158 btrfs_queue_work(root->fs_info->delalloc_workers,
1159 &async_cow->work);
Chris Mason771ed682008-11-06 22:02:51 -05001160
1161 if (atomic_read(&root->fs_info->async_delalloc_pages) > limit) {
1162 wait_event(root->fs_info->async_submit_wait,
1163 (atomic_read(&root->fs_info->async_delalloc_pages) <
1164 limit));
1165 }
1166
Chris Masond3977122009-01-05 21:25:51 -05001167 while (atomic_read(&root->fs_info->async_submit_draining) &&
Chris Mason771ed682008-11-06 22:02:51 -05001168 atomic_read(&root->fs_info->async_delalloc_pages)) {
1169 wait_event(root->fs_info->async_submit_wait,
1170 (atomic_read(&root->fs_info->async_delalloc_pages) ==
1171 0));
1172 }
1173
1174 *nr_written += nr_pages;
1175 start = cur_end + 1;
1176 }
1177 *page_started = 1;
1178 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05001179}
1180
Chris Masond3977122009-01-05 21:25:51 -05001181static noinline int csum_exist_in_range(struct btrfs_root *root,
Yan Zheng17d217f2008-12-12 10:03:38 -05001182 u64 bytenr, u64 num_bytes)
1183{
1184 int ret;
1185 struct btrfs_ordered_sum *sums;
1186 LIST_HEAD(list);
1187
Yan Zheng07d400a2009-01-06 11:42:00 -05001188 ret = btrfs_lookup_csums_range(root->fs_info->csum_root, bytenr,
Arne Jansena2de7332011-03-08 14:14:00 +01001189 bytenr + num_bytes - 1, &list, 0);
Yan Zheng17d217f2008-12-12 10:03:38 -05001190 if (ret == 0 && list_empty(&list))
1191 return 0;
1192
1193 while (!list_empty(&list)) {
1194 sums = list_entry(list.next, struct btrfs_ordered_sum, list);
1195 list_del(&sums->list);
1196 kfree(sums);
1197 }
1198 return 1;
1199}
1200
Chris Masond352ac62008-09-29 15:18:18 -04001201/*
1202 * when nowcow writeback call back. This checks for snapshots or COW copies
1203 * of the extents that exist in the file, and COWs the file as required.
1204 *
1205 * If no cow copies or snapshots exist, we write directly to the existing
1206 * blocks on disk
1207 */
Chris Mason7f366cf2009-03-12 20:12:45 -04001208static noinline int run_delalloc_nocow(struct inode *inode,
1209 struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001210 u64 start, u64 end, int *page_started, int force,
1211 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001212{
Chris Masonbe20aa92007-12-17 20:14:01 -05001213 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001214 struct btrfs_trans_handle *trans;
Chris Masonbe20aa92007-12-17 20:14:01 -05001215 struct extent_buffer *leaf;
Chris Masonbe20aa92007-12-17 20:14:01 -05001216 struct btrfs_path *path;
Yan Zheng80ff3852008-10-30 14:20:02 -04001217 struct btrfs_file_extent_item *fi;
Chris Masonbe20aa92007-12-17 20:14:01 -05001218 struct btrfs_key found_key;
Yan Zheng80ff3852008-10-30 14:20:02 -04001219 u64 cow_start;
1220 u64 cur_offset;
1221 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001222 u64 extent_offset;
Yan Zheng80ff3852008-10-30 14:20:02 -04001223 u64 disk_bytenr;
1224 u64 num_bytes;
Josef Bacikb4939682012-12-03 10:31:19 -05001225 u64 disk_num_bytes;
Josef Bacikcc95bef2013-04-04 14:31:27 -04001226 u64 ram_bytes;
Yan Zheng80ff3852008-10-30 14:20:02 -04001227 int extent_type;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001228 int ret, err;
Yan Zhengd899e052008-10-30 14:25:28 -04001229 int type;
Yan Zheng80ff3852008-10-30 14:20:02 -04001230 int nocow;
1231 int check_prev = 1;
Li Zefan82d59022011-04-20 10:33:24 +08001232 bool nolock;
Li Zefan33345d012011-04-20 10:31:50 +08001233 u64 ino = btrfs_ino(inode);
Chris Masonbe20aa92007-12-17 20:14:01 -05001234
1235 path = btrfs_alloc_path();
Josef Bacik17ca04a2012-05-31 15:58:55 -04001236 if (!path) {
Josef Bacikc2790a22013-07-29 11:20:47 -04001237 extent_clear_unlock_delalloc(inode, start, end, locked_page,
1238 EXTENT_LOCKED | EXTENT_DELALLOC |
Josef Bacik151a41b2013-07-29 13:22:24 -04001239 EXTENT_DO_ACCOUNTING |
1240 EXTENT_DEFRAG, PAGE_UNLOCK |
Josef Bacikc2790a22013-07-29 11:20:47 -04001241 PAGE_CLEAR_DIRTY |
1242 PAGE_SET_WRITEBACK |
1243 PAGE_END_WRITEBACK);
Mark Fashehd8926bb2011-07-13 10:38:47 -07001244 return -ENOMEM;
Josef Bacik17ca04a2012-05-31 15:58:55 -04001245 }
Li Zefan82d59022011-04-20 10:33:24 +08001246
Liu Bo83eea1f2012-07-10 05:28:39 -06001247 nolock = btrfs_is_free_space_inode(inode);
Li Zefan82d59022011-04-20 10:33:24 +08001248
1249 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001250 trans = btrfs_join_transaction_nolock(root);
Li Zefan82d59022011-04-20 10:33:24 +08001251 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001252 trans = btrfs_join_transaction(root);
Chris Masonff5714c2011-05-28 07:00:39 -04001253
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001254 if (IS_ERR(trans)) {
Josef Bacikc2790a22013-07-29 11:20:47 -04001255 extent_clear_unlock_delalloc(inode, start, end, locked_page,
1256 EXTENT_LOCKED | EXTENT_DELALLOC |
Josef Bacik151a41b2013-07-29 13:22:24 -04001257 EXTENT_DO_ACCOUNTING |
1258 EXTENT_DEFRAG, PAGE_UNLOCK |
Josef Bacikc2790a22013-07-29 11:20:47 -04001259 PAGE_CLEAR_DIRTY |
1260 PAGE_SET_WRITEBACK |
1261 PAGE_END_WRITEBACK);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001262 btrfs_free_path(path);
1263 return PTR_ERR(trans);
1264 }
1265
Josef Bacik74b21072011-04-13 12:02:53 -04001266 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Masonbe20aa92007-12-17 20:14:01 -05001267
Yan Zheng80ff3852008-10-30 14:20:02 -04001268 cow_start = (u64)-1;
1269 cur_offset = start;
1270 while (1) {
Li Zefan33345d012011-04-20 10:31:50 +08001271 ret = btrfs_lookup_file_extent(trans, root, path, ino,
Yan Zheng80ff3852008-10-30 14:20:02 -04001272 cur_offset, 0);
Josef Bacikd788a342013-10-25 16:55:08 -04001273 if (ret < 0)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001274 goto error;
Yan Zheng80ff3852008-10-30 14:20:02 -04001275 if (ret > 0 && path->slots[0] > 0 && check_prev) {
1276 leaf = path->nodes[0];
1277 btrfs_item_key_to_cpu(leaf, &found_key,
1278 path->slots[0] - 1);
Li Zefan33345d012011-04-20 10:31:50 +08001279 if (found_key.objectid == ino &&
Yan Zheng80ff3852008-10-30 14:20:02 -04001280 found_key.type == BTRFS_EXTENT_DATA_KEY)
1281 path->slots[0]--;
1282 }
1283 check_prev = 0;
1284next_slot:
1285 leaf = path->nodes[0];
1286 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1287 ret = btrfs_next_leaf(root, path);
Josef Bacikd788a342013-10-25 16:55:08 -04001288 if (ret < 0)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001289 goto error;
Yan Zheng80ff3852008-10-30 14:20:02 -04001290 if (ret > 0)
1291 break;
1292 leaf = path->nodes[0];
1293 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001294
Yan Zheng80ff3852008-10-30 14:20:02 -04001295 nocow = 0;
1296 disk_bytenr = 0;
Yan Zheng17d217f2008-12-12 10:03:38 -05001297 num_bytes = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001298 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05001299
Li Zefan33345d012011-04-20 10:31:50 +08001300 if (found_key.objectid > ino ||
Yan Zheng80ff3852008-10-30 14:20:02 -04001301 found_key.type > BTRFS_EXTENT_DATA_KEY ||
1302 found_key.offset > end)
1303 break;
Chris Masonbe20aa92007-12-17 20:14:01 -05001304
Yan Zheng80ff3852008-10-30 14:20:02 -04001305 if (found_key.offset > cur_offset) {
1306 extent_end = found_key.offset;
Chris Masone9061e22009-10-09 09:57:45 -04001307 extent_type = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001308 goto out_check;
1309 }
Chris Masonc31f8832008-01-08 15:46:31 -05001310
Yan Zheng80ff3852008-10-30 14:20:02 -04001311 fi = btrfs_item_ptr(leaf, path->slots[0],
1312 struct btrfs_file_extent_item);
1313 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Masonbe20aa92007-12-17 20:14:01 -05001314
Josef Bacikcc95bef2013-04-04 14:31:27 -04001315 ram_bytes = btrfs_file_extent_ram_bytes(leaf, fi);
Yan Zhengd899e052008-10-30 14:25:28 -04001316 if (extent_type == BTRFS_FILE_EXTENT_REG ||
1317 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001318 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001319 extent_offset = btrfs_file_extent_offset(leaf, fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001320 extent_end = found_key.offset +
1321 btrfs_file_extent_num_bytes(leaf, fi);
Josef Bacikb4939682012-12-03 10:31:19 -05001322 disk_num_bytes =
1323 btrfs_file_extent_disk_num_bytes(leaf, fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001324 if (extent_end <= start) {
1325 path->slots[0]++;
1326 goto next_slot;
1327 }
Yan Zheng17d217f2008-12-12 10:03:38 -05001328 if (disk_bytenr == 0)
1329 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001330 if (btrfs_file_extent_compression(leaf, fi) ||
1331 btrfs_file_extent_encryption(leaf, fi) ||
1332 btrfs_file_extent_other_encoding(leaf, fi))
1333 goto out_check;
Yan Zhengd899e052008-10-30 14:25:28 -04001334 if (extent_type == BTRFS_FILE_EXTENT_REG && !force)
1335 goto out_check;
Yan Zhengd2fb3432008-12-11 16:30:39 -05001336 if (btrfs_extent_readonly(root, disk_bytenr))
Yan Zheng80ff3852008-10-30 14:20:02 -04001337 goto out_check;
Li Zefan33345d012011-04-20 10:31:50 +08001338 if (btrfs_cross_ref_exist(trans, root, ino,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001339 found_key.offset -
1340 extent_offset, disk_bytenr))
Yan Zheng17d217f2008-12-12 10:03:38 -05001341 goto out_check;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001342 disk_bytenr += extent_offset;
Yan Zheng17d217f2008-12-12 10:03:38 -05001343 disk_bytenr += cur_offset - found_key.offset;
1344 num_bytes = min(end + 1, extent_end) - cur_offset;
1345 /*
Wang Shilonge9894fd2014-03-27 11:12:25 +08001346 * if there are pending snapshots for this root,
1347 * we fall into common COW way.
1348 */
1349 if (!nolock) {
Filipe Manana9ea24bb2014-10-29 11:57:59 +00001350 err = btrfs_start_write_no_snapshoting(root);
Wang Shilonge9894fd2014-03-27 11:12:25 +08001351 if (!err)
1352 goto out_check;
1353 }
1354 /*
Yan Zheng17d217f2008-12-12 10:03:38 -05001355 * force cow if csum exists in the range.
1356 * this ensure that csum for a given extent are
1357 * either valid or do not exist.
1358 */
1359 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
1360 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001361 nocow = 1;
1362 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1363 extent_end = found_key.offset +
Chris Mason514ac8a2014-01-03 21:07:00 -08001364 btrfs_file_extent_inline_len(leaf,
1365 path->slots[0], fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001366 extent_end = ALIGN(extent_end, root->sectorsize);
1367 } else {
1368 BUG_ON(1);
1369 }
1370out_check:
1371 if (extent_end <= start) {
1372 path->slots[0]++;
Wang Shilonge9894fd2014-03-27 11:12:25 +08001373 if (!nolock && nocow)
Filipe Manana9ea24bb2014-10-29 11:57:59 +00001374 btrfs_end_write_no_snapshoting(root);
Yan Zheng80ff3852008-10-30 14:20:02 -04001375 goto next_slot;
1376 }
1377 if (!nocow) {
1378 if (cow_start == (u64)-1)
1379 cow_start = cur_offset;
1380 cur_offset = extent_end;
1381 if (cur_offset > end)
1382 break;
1383 path->slots[0]++;
1384 goto next_slot;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001385 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001386
David Sterbab3b4aa72011-04-21 01:20:15 +02001387 btrfs_release_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001388 if (cow_start != (u64)-1) {
Josef Bacik00361582013-08-14 14:02:47 -04001389 ret = cow_file_range(inode, locked_page,
1390 cow_start, found_key.offset - 1,
1391 page_started, nr_written, 1);
Wang Shilonge9894fd2014-03-27 11:12:25 +08001392 if (ret) {
1393 if (!nolock && nocow)
Filipe Manana9ea24bb2014-10-29 11:57:59 +00001394 btrfs_end_write_no_snapshoting(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001395 goto error;
Wang Shilonge9894fd2014-03-27 11:12:25 +08001396 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001397 cow_start = (u64)-1;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001398 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001399
Yan Zhengd899e052008-10-30 14:25:28 -04001400 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
1401 struct extent_map *em;
1402 struct extent_map_tree *em_tree;
1403 em_tree = &BTRFS_I(inode)->extent_tree;
David Sterba172ddd62011-04-21 00:48:27 +02001404 em = alloc_extent_map();
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001405 BUG_ON(!em); /* -ENOMEM */
Yan Zhengd899e052008-10-30 14:25:28 -04001406 em->start = cur_offset;
Josef Bacik70c8a912012-10-11 16:54:30 -04001407 em->orig_start = found_key.offset - extent_offset;
Yan Zhengd899e052008-10-30 14:25:28 -04001408 em->len = num_bytes;
1409 em->block_len = num_bytes;
1410 em->block_start = disk_bytenr;
Josef Bacikb4939682012-12-03 10:31:19 -05001411 em->orig_block_len = disk_num_bytes;
Josef Bacikcc95bef2013-04-04 14:31:27 -04001412 em->ram_bytes = ram_bytes;
Yan Zhengd899e052008-10-30 14:25:28 -04001413 em->bdev = root->fs_info->fs_devices->latest_bdev;
Josef Bacik2ab28f32012-10-12 15:27:49 -04001414 em->mod_start = em->start;
1415 em->mod_len = em->len;
Yan Zhengd899e052008-10-30 14:25:28 -04001416 set_bit(EXTENT_FLAG_PINNED, &em->flags);
Josef Bacikb11e2342012-12-03 10:58:15 -05001417 set_bit(EXTENT_FLAG_FILLING, &em->flags);
Josef Bacik70c8a912012-10-11 16:54:30 -04001418 em->generation = -1;
Yan Zhengd899e052008-10-30 14:25:28 -04001419 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04001420 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04001421 ret = add_extent_mapping(em_tree, em, 1);
Chris Mason890871b2009-09-02 16:24:52 -04001422 write_unlock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001423 if (ret != -EEXIST) {
1424 free_extent_map(em);
1425 break;
1426 }
1427 btrfs_drop_extent_cache(inode, em->start,
1428 em->start + em->len - 1, 0);
1429 }
1430 type = BTRFS_ORDERED_PREALLOC;
1431 } else {
1432 type = BTRFS_ORDERED_NOCOW;
1433 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001434
1435 ret = btrfs_add_ordered_extent(inode, cur_offset, disk_bytenr,
Yan Zhengd899e052008-10-30 14:25:28 -04001436 num_bytes, num_bytes, type);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001437 BUG_ON(ret); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -05001438
Yan, Zhengefa56462010-05-16 10:49:59 -04001439 if (root->root_key.objectid ==
1440 BTRFS_DATA_RELOC_TREE_OBJECTID) {
1441 ret = btrfs_reloc_clone_csums(inode, cur_offset,
1442 num_bytes);
Wang Shilonge9894fd2014-03-27 11:12:25 +08001443 if (ret) {
1444 if (!nolock && nocow)
Filipe Manana9ea24bb2014-10-29 11:57:59 +00001445 btrfs_end_write_no_snapshoting(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001446 goto error;
Wang Shilonge9894fd2014-03-27 11:12:25 +08001447 }
Yan, Zhengefa56462010-05-16 10:49:59 -04001448 }
1449
Josef Bacikc2790a22013-07-29 11:20:47 -04001450 extent_clear_unlock_delalloc(inode, cur_offset,
1451 cur_offset + num_bytes - 1,
1452 locked_page, EXTENT_LOCKED |
1453 EXTENT_DELALLOC, PAGE_UNLOCK |
1454 PAGE_SET_PRIVATE2);
Wang Shilonge9894fd2014-03-27 11:12:25 +08001455 if (!nolock && nocow)
Filipe Manana9ea24bb2014-10-29 11:57:59 +00001456 btrfs_end_write_no_snapshoting(root);
Yan Zheng80ff3852008-10-30 14:20:02 -04001457 cur_offset = extent_end;
1458 if (cur_offset > end)
1459 break;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001460 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001461 btrfs_release_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001462
Josef Bacik17ca04a2012-05-31 15:58:55 -04001463 if (cur_offset <= end && cow_start == (u64)-1) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001464 cow_start = cur_offset;
Josef Bacik17ca04a2012-05-31 15:58:55 -04001465 cur_offset = end;
1466 }
1467
Yan Zheng80ff3852008-10-30 14:20:02 -04001468 if (cow_start != (u64)-1) {
Josef Bacik00361582013-08-14 14:02:47 -04001469 ret = cow_file_range(inode, locked_page, cow_start, end,
1470 page_started, nr_written, 1);
Josef Bacikd788a342013-10-25 16:55:08 -04001471 if (ret)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001472 goto error;
Yan Zheng80ff3852008-10-30 14:20:02 -04001473 }
1474
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001475error:
Miao Xiea698d0752012-09-20 01:51:59 -06001476 err = btrfs_end_transaction(trans, root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001477 if (!ret)
1478 ret = err;
1479
Josef Bacik17ca04a2012-05-31 15:58:55 -04001480 if (ret && cur_offset < end)
Josef Bacikc2790a22013-07-29 11:20:47 -04001481 extent_clear_unlock_delalloc(inode, cur_offset, end,
1482 locked_page, EXTENT_LOCKED |
Josef Bacik151a41b2013-07-29 13:22:24 -04001483 EXTENT_DELALLOC | EXTENT_DEFRAG |
1484 EXTENT_DO_ACCOUNTING, PAGE_UNLOCK |
1485 PAGE_CLEAR_DIRTY |
Josef Bacikc2790a22013-07-29 11:20:47 -04001486 PAGE_SET_WRITEBACK |
1487 PAGE_END_WRITEBACK);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001488 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001489 return ret;
Chris Masonbe20aa92007-12-17 20:14:01 -05001490}
1491
Wang Shilong47059d92014-07-03 18:22:07 +08001492static inline int need_force_cow(struct inode *inode, u64 start, u64 end)
1493{
1494
1495 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) &&
1496 !(BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC))
1497 return 0;
1498
1499 /*
1500 * @defrag_bytes is a hint value, no spinlock held here,
1501 * if is not zero, it means the file is defragging.
1502 * Force cow if given extent needs to be defragged.
1503 */
1504 if (BTRFS_I(inode)->defrag_bytes &&
1505 test_range_bit(&BTRFS_I(inode)->io_tree, start, end,
1506 EXTENT_DEFRAG, 0, NULL))
1507 return 1;
1508
1509 return 0;
1510}
1511
Chris Masond352ac62008-09-29 15:18:18 -04001512/*
1513 * extent_io.c call back to do delayed allocation processing
1514 */
Chris Masonc8b97812008-10-29 14:49:59 -04001515static int run_delalloc_range(struct inode *inode, struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001516 u64 start, u64 end, int *page_started,
1517 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001518{
Chris Masonbe20aa92007-12-17 20:14:01 -05001519 int ret;
Wang Shilong47059d92014-07-03 18:22:07 +08001520 int force_cow = need_force_cow(inode, start, end);
Chris Masona2135012008-06-25 16:01:30 -04001521
Wang Shilong47059d92014-07-03 18:22:07 +08001522 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW && !force_cow) {
Chris Masonc8b97812008-10-29 14:49:59 -04001523 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001524 page_started, 1, nr_written);
Wang Shilong47059d92014-07-03 18:22:07 +08001525 } else if (BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC && !force_cow) {
Yan Zhengd899e052008-10-30 14:25:28 -04001526 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001527 page_started, 0, nr_written);
Wang Shilong78160302014-07-17 11:44:10 +08001528 } else if (!inode_need_compress(inode)) {
Chris Mason7f366cf2009-03-12 20:12:45 -04001529 ret = cow_file_range(inode, locked_page, start, end,
1530 page_started, nr_written, 1);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001531 } else {
1532 set_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
1533 &BTRFS_I(inode)->runtime_flags);
Chris Mason771ed682008-11-06 22:02:51 -05001534 ret = cow_file_range_async(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001535 page_started, nr_written);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001536 }
Chris Masonb888db22007-08-27 16:49:44 -04001537 return ret;
1538}
1539
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001540static void btrfs_split_extent_hook(struct inode *inode,
1541 struct extent_state *orig, u64 split)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001542{
Josef Bacikdcab6a32015-02-11 15:08:59 -05001543 u64 size;
1544
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001545 /* not delalloc, ignore it */
Josef Bacik9ed74f22009-09-11 16:12:44 -04001546 if (!(orig->state & EXTENT_DELALLOC))
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001547 return;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001548
Josef Bacikdcab6a32015-02-11 15:08:59 -05001549 size = orig->end - orig->start + 1;
1550 if (size > BTRFS_MAX_EXTENT_SIZE) {
1551 u64 num_extents;
1552 u64 new_size;
1553
1554 /*
Josef Bacikba117212015-03-13 15:01:24 -04001555 * See the explanation in btrfs_merge_extent_hook, the same
1556 * applies here, just in reverse.
Josef Bacikdcab6a32015-02-11 15:08:59 -05001557 */
1558 new_size = orig->end - split + 1;
Josef Bacikba117212015-03-13 15:01:24 -04001559 num_extents = div64_u64(new_size + BTRFS_MAX_EXTENT_SIZE - 1,
Josef Bacikdcab6a32015-02-11 15:08:59 -05001560 BTRFS_MAX_EXTENT_SIZE);
Josef Bacikba117212015-03-13 15:01:24 -04001561 new_size = split - orig->start;
1562 num_extents += div64_u64(new_size + BTRFS_MAX_EXTENT_SIZE - 1,
1563 BTRFS_MAX_EXTENT_SIZE);
1564 if (div64_u64(size + BTRFS_MAX_EXTENT_SIZE - 1,
1565 BTRFS_MAX_EXTENT_SIZE) >= num_extents)
Josef Bacikdcab6a32015-02-11 15:08:59 -05001566 return;
1567 }
1568
Josef Bacik9e0baf62011-07-15 15:16:44 +00001569 spin_lock(&BTRFS_I(inode)->lock);
1570 BTRFS_I(inode)->outstanding_extents++;
1571 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001572}
1573
1574/*
1575 * extent_io.c merge_extent_hook, used to track merged delayed allocation
1576 * extents so we can keep track of new extents that are just merged onto old
1577 * extents, such as when we are doing sequential writes, so we can properly
1578 * account for the metadata space we'll need.
1579 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001580static void btrfs_merge_extent_hook(struct inode *inode,
1581 struct extent_state *new,
1582 struct extent_state *other)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001583{
Josef Bacikdcab6a32015-02-11 15:08:59 -05001584 u64 new_size, old_size;
1585 u64 num_extents;
1586
Josef Bacik9ed74f22009-09-11 16:12:44 -04001587 /* not delalloc, ignore it */
1588 if (!(other->state & EXTENT_DELALLOC))
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001589 return;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001590
Josef Bacik8461a3d2015-03-13 15:12:08 -04001591 if (new->start > other->start)
1592 new_size = new->end - other->start + 1;
1593 else
1594 new_size = other->end - new->start + 1;
Josef Bacikdcab6a32015-02-11 15:08:59 -05001595
1596 /* we're not bigger than the max, unreserve the space and go */
1597 if (new_size <= BTRFS_MAX_EXTENT_SIZE) {
1598 spin_lock(&BTRFS_I(inode)->lock);
1599 BTRFS_I(inode)->outstanding_extents--;
1600 spin_unlock(&BTRFS_I(inode)->lock);
1601 return;
1602 }
1603
1604 /*
Josef Bacikba117212015-03-13 15:01:24 -04001605 * We have to add up either side to figure out how many extents were
1606 * accounted for before we merged into one big extent. If the number of
1607 * extents we accounted for is <= the amount we need for the new range
1608 * then we can return, otherwise drop. Think of it like this
1609 *
1610 * [ 4k][MAX_SIZE]
1611 *
1612 * So we've grown the extent by a MAX_SIZE extent, this would mean we
1613 * need 2 outstanding extents, on one side we have 1 and the other side
1614 * we have 1 so they are == and we can return. But in this case
1615 *
1616 * [MAX_SIZE+4k][MAX_SIZE+4k]
1617 *
1618 * Each range on their own accounts for 2 extents, but merged together
1619 * they are only 3 extents worth of accounting, so we need to drop in
1620 * this case.
Josef Bacikdcab6a32015-02-11 15:08:59 -05001621 */
Josef Bacikba117212015-03-13 15:01:24 -04001622 old_size = other->end - other->start + 1;
Josef Bacikdcab6a32015-02-11 15:08:59 -05001623 num_extents = div64_u64(old_size + BTRFS_MAX_EXTENT_SIZE - 1,
1624 BTRFS_MAX_EXTENT_SIZE);
Josef Bacikba117212015-03-13 15:01:24 -04001625 old_size = new->end - new->start + 1;
1626 num_extents += div64_u64(old_size + BTRFS_MAX_EXTENT_SIZE - 1,
1627 BTRFS_MAX_EXTENT_SIZE);
1628
Josef Bacikdcab6a32015-02-11 15:08:59 -05001629 if (div64_u64(new_size + BTRFS_MAX_EXTENT_SIZE - 1,
Josef Bacikba117212015-03-13 15:01:24 -04001630 BTRFS_MAX_EXTENT_SIZE) >= num_extents)
Josef Bacikdcab6a32015-02-11 15:08:59 -05001631 return;
1632
Josef Bacik9e0baf62011-07-15 15:16:44 +00001633 spin_lock(&BTRFS_I(inode)->lock);
1634 BTRFS_I(inode)->outstanding_extents--;
1635 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001636}
1637
Miao Xieeb73c1b2013-05-15 07:48:22 +00001638static void btrfs_add_delalloc_inodes(struct btrfs_root *root,
1639 struct inode *inode)
1640{
1641 spin_lock(&root->delalloc_lock);
1642 if (list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1643 list_add_tail(&BTRFS_I(inode)->delalloc_inodes,
1644 &root->delalloc_inodes);
1645 set_bit(BTRFS_INODE_IN_DELALLOC_LIST,
1646 &BTRFS_I(inode)->runtime_flags);
1647 root->nr_delalloc_inodes++;
1648 if (root->nr_delalloc_inodes == 1) {
1649 spin_lock(&root->fs_info->delalloc_root_lock);
1650 BUG_ON(!list_empty(&root->delalloc_root));
1651 list_add_tail(&root->delalloc_root,
1652 &root->fs_info->delalloc_roots);
1653 spin_unlock(&root->fs_info->delalloc_root_lock);
1654 }
1655 }
1656 spin_unlock(&root->delalloc_lock);
1657}
1658
1659static void btrfs_del_delalloc_inode(struct btrfs_root *root,
1660 struct inode *inode)
1661{
1662 spin_lock(&root->delalloc_lock);
1663 if (!list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1664 list_del_init(&BTRFS_I(inode)->delalloc_inodes);
1665 clear_bit(BTRFS_INODE_IN_DELALLOC_LIST,
1666 &BTRFS_I(inode)->runtime_flags);
1667 root->nr_delalloc_inodes--;
1668 if (!root->nr_delalloc_inodes) {
1669 spin_lock(&root->fs_info->delalloc_root_lock);
1670 BUG_ON(list_empty(&root->delalloc_root));
1671 list_del_init(&root->delalloc_root);
1672 spin_unlock(&root->fs_info->delalloc_root_lock);
1673 }
1674 }
1675 spin_unlock(&root->delalloc_lock);
1676}
1677
Chris Masond352ac62008-09-29 15:18:18 -04001678/*
1679 * extent_io.c set_bit_hook, used to track delayed allocation
1680 * bytes in this file, and to maintain the list of inodes that
1681 * have pending delalloc work to be done.
1682 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001683static void btrfs_set_bit_hook(struct inode *inode,
David Sterba9ee49a042015-01-14 19:52:13 +01001684 struct extent_state *state, unsigned *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001685{
Josef Bacik9ed74f22009-09-11 16:12:44 -04001686
Wang Shilong47059d92014-07-03 18:22:07 +08001687 if ((*bits & EXTENT_DEFRAG) && !(*bits & EXTENT_DELALLOC))
1688 WARN_ON(1);
Chris Mason75eff682008-12-15 15:54:40 -05001689 /*
1690 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00001691 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05001692 * bit, which is only set or cleared with irqs on
1693 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001694 if (!(state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001695 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001696 u64 len = state->end + 1 - state->start;
Liu Bo83eea1f2012-07-10 05:28:39 -06001697 bool do_list = !btrfs_is_free_space_inode(inode);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001698
Josef Bacik9e0baf62011-07-15 15:16:44 +00001699 if (*bits & EXTENT_FIRST_DELALLOC) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001700 *bits &= ~EXTENT_FIRST_DELALLOC;
Josef Bacik9e0baf62011-07-15 15:16:44 +00001701 } else {
1702 spin_lock(&BTRFS_I(inode)->lock);
1703 BTRFS_I(inode)->outstanding_extents++;
1704 spin_unlock(&BTRFS_I(inode)->lock);
1705 }
Josef Bacik287a0ab2010-03-19 18:07:23 +00001706
Josef Bacik6a3891c2015-03-16 17:38:52 -04001707 /* For sanity tests */
1708 if (btrfs_test_is_dummy_root(root))
1709 return;
1710
Miao Xie963d6782013-01-29 10:10:51 +00001711 __percpu_counter_add(&root->fs_info->delalloc_bytes, len,
1712 root->fs_info->delalloc_batch);
Miao Xiedf0af1a2013-01-29 10:11:59 +00001713 spin_lock(&BTRFS_I(inode)->lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001714 BTRFS_I(inode)->delalloc_bytes += len;
Wang Shilong47059d92014-07-03 18:22:07 +08001715 if (*bits & EXTENT_DEFRAG)
1716 BTRFS_I(inode)->defrag_bytes += len;
Miao Xiedf0af1a2013-01-29 10:11:59 +00001717 if (do_list && !test_bit(BTRFS_INODE_IN_DELALLOC_LIST,
Miao Xieeb73c1b2013-05-15 07:48:22 +00001718 &BTRFS_I(inode)->runtime_flags))
1719 btrfs_add_delalloc_inodes(root, inode);
Miao Xiedf0af1a2013-01-29 10:11:59 +00001720 spin_unlock(&BTRFS_I(inode)->lock);
Chris Mason291d6732008-01-29 15:55:23 -05001721 }
Chris Mason291d6732008-01-29 15:55:23 -05001722}
1723
Chris Masond352ac62008-09-29 15:18:18 -04001724/*
1725 * extent_io.c clear_bit_hook, see set_bit_hook for why
1726 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001727static void btrfs_clear_bit_hook(struct inode *inode,
David Sterba41074882013-04-29 13:38:46 +00001728 struct extent_state *state,
David Sterba9ee49a042015-01-14 19:52:13 +01001729 unsigned *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001730{
Wang Shilong47059d92014-07-03 18:22:07 +08001731 u64 len = state->end + 1 - state->start;
Josef Bacikdcab6a32015-02-11 15:08:59 -05001732 u64 num_extents = div64_u64(len + BTRFS_MAX_EXTENT_SIZE -1,
1733 BTRFS_MAX_EXTENT_SIZE);
Wang Shilong47059d92014-07-03 18:22:07 +08001734
1735 spin_lock(&BTRFS_I(inode)->lock);
1736 if ((state->state & EXTENT_DEFRAG) && (*bits & EXTENT_DEFRAG))
1737 BTRFS_I(inode)->defrag_bytes -= len;
1738 spin_unlock(&BTRFS_I(inode)->lock);
1739
Chris Mason75eff682008-12-15 15:54:40 -05001740 /*
1741 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00001742 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05001743 * bit, which is only set or cleared with irqs on
1744 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001745 if ((state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001746 struct btrfs_root *root = BTRFS_I(inode)->root;
Liu Bo83eea1f2012-07-10 05:28:39 -06001747 bool do_list = !btrfs_is_free_space_inode(inode);
Chris Masonbcbfce82008-04-22 13:26:47 -04001748
Josef Bacik9e0baf62011-07-15 15:16:44 +00001749 if (*bits & EXTENT_FIRST_DELALLOC) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001750 *bits &= ~EXTENT_FIRST_DELALLOC;
Josef Bacik9e0baf62011-07-15 15:16:44 +00001751 } else if (!(*bits & EXTENT_DO_ACCOUNTING)) {
1752 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacikdcab6a32015-02-11 15:08:59 -05001753 BTRFS_I(inode)->outstanding_extents -= num_extents;
Josef Bacik9e0baf62011-07-15 15:16:44 +00001754 spin_unlock(&BTRFS_I(inode)->lock);
1755 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001756
Josef Bacikb6d08f02013-09-27 14:57:43 -04001757 /*
1758 * We don't reserve metadata space for space cache inodes so we
1759 * don't need to call dellalloc_release_metadata if there is an
1760 * error.
1761 */
1762 if (*bits & EXTENT_DO_ACCOUNTING &&
1763 root != root->fs_info->tree_root)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001764 btrfs_delalloc_release_metadata(inode, len);
1765
Josef Bacik6a3891c2015-03-16 17:38:52 -04001766 /* For sanity tests. */
1767 if (btrfs_test_is_dummy_root(root))
1768 return;
1769
Josef Bacik0cb59c92010-07-02 12:14:14 -04001770 if (root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID
Josef Bacik7ee9e442013-06-21 16:37:03 -04001771 && do_list && !(state->state & EXTENT_NORESERVE))
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001772 btrfs_free_reserved_data_space(inode, len);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001773
Miao Xie963d6782013-01-29 10:10:51 +00001774 __percpu_counter_add(&root->fs_info->delalloc_bytes, -len,
1775 root->fs_info->delalloc_batch);
Miao Xiedf0af1a2013-01-29 10:11:59 +00001776 spin_lock(&BTRFS_I(inode)->lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001777 BTRFS_I(inode)->delalloc_bytes -= len;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001778 if (do_list && BTRFS_I(inode)->delalloc_bytes == 0 &&
Miao Xiedf0af1a2013-01-29 10:11:59 +00001779 test_bit(BTRFS_INODE_IN_DELALLOC_LIST,
Miao Xieeb73c1b2013-05-15 07:48:22 +00001780 &BTRFS_I(inode)->runtime_flags))
1781 btrfs_del_delalloc_inode(root, inode);
Miao Xiedf0af1a2013-01-29 10:11:59 +00001782 spin_unlock(&BTRFS_I(inode)->lock);
Chris Mason291d6732008-01-29 15:55:23 -05001783 }
Chris Mason291d6732008-01-29 15:55:23 -05001784}
1785
Chris Masond352ac62008-09-29 15:18:18 -04001786/*
1787 * extent_io.c merge_bio_hook, this must check the chunk tree to make sure
1788 * we don't create bios that span stripes or chunks
1789 */
David Woodhouse64a16702009-07-15 23:29:37 +01001790int btrfs_merge_bio_hook(int rw, struct page *page, unsigned long offset,
Chris Masonc8b97812008-10-29 14:49:59 -04001791 size_t size, struct bio *bio,
1792 unsigned long bio_flags)
Chris Mason239b14b2008-03-24 15:02:07 -04001793{
1794 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
Kent Overstreet4f024f32013-10-11 15:44:27 -07001795 u64 logical = (u64)bio->bi_iter.bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -04001796 u64 length = 0;
1797 u64 map_length;
Chris Mason239b14b2008-03-24 15:02:07 -04001798 int ret;
1799
Chris Mason771ed682008-11-06 22:02:51 -05001800 if (bio_flags & EXTENT_BIO_COMPRESSED)
1801 return 0;
1802
Kent Overstreet4f024f32013-10-11 15:44:27 -07001803 length = bio->bi_iter.bi_size;
Chris Mason239b14b2008-03-24 15:02:07 -04001804 map_length = length;
David Woodhouse64a16702009-07-15 23:29:37 +01001805 ret = btrfs_map_block(root->fs_info, rw, logical,
Chris Masonf1885912008-04-09 16:28:12 -04001806 &map_length, NULL, 0);
Stefan Behrens3ec706c2012-11-05 15:46:42 +01001807 /* Will always return 0 with map_multi == NULL */
Jeff Mahoney3444a972011-10-03 23:23:13 -04001808 BUG_ON(ret < 0);
Chris Masond3977122009-01-05 21:25:51 -05001809 if (map_length < length + size)
Chris Mason239b14b2008-03-24 15:02:07 -04001810 return 1;
Jeff Mahoney3444a972011-10-03 23:23:13 -04001811 return 0;
Chris Mason239b14b2008-03-24 15:02:07 -04001812}
1813
Chris Masond352ac62008-09-29 15:18:18 -04001814/*
1815 * in order to insert checksums into the metadata in large chunks,
1816 * we wait until bio submission time. All the pages in the bio are
1817 * checksummed and sums are attached onto the ordered extent record.
1818 *
1819 * At IO completion time the cums attached on the ordered extent record
1820 * are inserted into the btree
1821 */
Chris Masond3977122009-01-05 21:25:51 -05001822static int __btrfs_submit_bio_start(struct inode *inode, int rw,
1823 struct bio *bio, int mirror_num,
Chris Masoneaf25d92010-05-25 09:48:28 -04001824 unsigned long bio_flags,
1825 u64 bio_offset)
Chris Mason065631f2008-02-20 12:07:25 -05001826{
Chris Mason065631f2008-02-20 12:07:25 -05001827 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason065631f2008-02-20 12:07:25 -05001828 int ret = 0;
Chris Masone0156402008-04-16 11:15:20 -04001829
Chris Masond20f7042008-12-08 16:58:54 -05001830 ret = btrfs_csum_one_bio(root, inode, bio, 0, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001831 BUG_ON(ret); /* -ENOMEM */
Chris Mason4a69a412008-11-06 22:03:00 -05001832 return 0;
1833}
Chris Masone0156402008-04-16 11:15:20 -04001834
Chris Mason4a69a412008-11-06 22:03:00 -05001835/*
1836 * in order to insert checksums into the metadata in large chunks,
1837 * we wait until bio submission time. All the pages in the bio are
1838 * checksummed and sums are attached onto the ordered extent record.
1839 *
1840 * At IO completion time the cums attached on the ordered extent record
1841 * are inserted into the btree
1842 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001843static int __btrfs_submit_bio_done(struct inode *inode, int rw, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001844 int mirror_num, unsigned long bio_flags,
1845 u64 bio_offset)
Chris Mason4a69a412008-11-06 22:03:00 -05001846{
1847 struct btrfs_root *root = BTRFS_I(inode)->root;
Stefan Behrens61891922012-11-05 18:51:52 +01001848 int ret;
1849
1850 ret = btrfs_map_bio(root, rw, bio, mirror_num, 1);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001851 if (ret) {
1852 bio->bi_error = ret;
1853 bio_endio(bio);
1854 }
Stefan Behrens61891922012-11-05 18:51:52 +01001855 return ret;
Chris Mason44b8bd72008-04-16 11:14:51 -04001856}
1857
Chris Masond352ac62008-09-29 15:18:18 -04001858/*
Chris Masoncad321a2008-12-17 14:51:42 -05001859 * extent_io.c submission hook. This does the right thing for csum calculation
1860 * on write, or reading the csums from the tree before a read
Chris Masond352ac62008-09-29 15:18:18 -04001861 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001862static int btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001863 int mirror_num, unsigned long bio_flags,
1864 u64 bio_offset)
Chris Mason44b8bd72008-04-16 11:14:51 -04001865{
1866 struct btrfs_root *root = BTRFS_I(inode)->root;
Chandan Rajendra0d51e282015-07-27 15:26:43 +05301867 enum btrfs_wq_endio_type metadata = BTRFS_WQ_ENDIO_DATA;
Chris Mason44b8bd72008-04-16 11:14:51 -04001868 int ret = 0;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001869 int skip_sum;
Josef Bacikb812ce22012-11-16 13:56:32 -05001870 int async = !atomic_read(&BTRFS_I(inode)->sync_writers);
Chris Mason44b8bd72008-04-16 11:14:51 -04001871
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001872 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
Chris Masoncad321a2008-12-17 14:51:42 -05001873
Liu Bo83eea1f2012-07-10 05:28:39 -06001874 if (btrfs_is_free_space_inode(inode))
Chandan Rajendra0d51e282015-07-27 15:26:43 +05301875 metadata = BTRFS_WQ_ENDIO_FREE_SPACE;
Jeff Mahoney04173412011-10-03 23:23:12 -04001876
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001877 if (!(rw & REQ_WRITE)) {
Josef Bacik5fd02042012-05-02 14:00:54 -04001878 ret = btrfs_bio_wq_end_io(root->fs_info, bio, metadata);
1879 if (ret)
Stefan Behrens61891922012-11-05 18:51:52 +01001880 goto out;
Josef Bacik5fd02042012-05-02 14:00:54 -04001881
Chris Masond20f7042008-12-08 16:58:54 -05001882 if (bio_flags & EXTENT_BIO_COMPRESSED) {
Stefan Behrens61891922012-11-05 18:51:52 +01001883 ret = btrfs_submit_compressed_read(inode, bio,
1884 mirror_num,
1885 bio_flags);
1886 goto out;
Tsutomu Itohc2db1072011-03-01 06:48:31 +00001887 } else if (!skip_sum) {
1888 ret = btrfs_lookup_bio_sums(root, inode, bio, NULL);
1889 if (ret)
Stefan Behrens61891922012-11-05 18:51:52 +01001890 goto out;
Tsutomu Itohc2db1072011-03-01 06:48:31 +00001891 }
Chris Mason4d1b5fb2008-08-20 09:44:52 -04001892 goto mapit;
Josef Bacikb812ce22012-11-16 13:56:32 -05001893 } else if (async && !skip_sum) {
Yan Zheng17d217f2008-12-12 10:03:38 -05001894 /* csum items have already been cloned */
1895 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
1896 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001897 /* we're doing a write, do the async checksumming */
Stefan Behrens61891922012-11-05 18:51:52 +01001898 ret = btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
Chris Mason44b8bd72008-04-16 11:14:51 -04001899 inode, rw, bio, mirror_num,
Chris Masoneaf25d92010-05-25 09:48:28 -04001900 bio_flags, bio_offset,
1901 __btrfs_submit_bio_start,
Chris Mason4a69a412008-11-06 22:03:00 -05001902 __btrfs_submit_bio_done);
Stefan Behrens61891922012-11-05 18:51:52 +01001903 goto out;
Josef Bacikb812ce22012-11-16 13:56:32 -05001904 } else if (!skip_sum) {
1905 ret = btrfs_csum_one_bio(root, inode, bio, 0, 0);
1906 if (ret)
1907 goto out;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001908 }
1909
Chris Mason0b86a832008-03-24 15:01:56 -04001910mapit:
Stefan Behrens61891922012-11-05 18:51:52 +01001911 ret = btrfs_map_bio(root, rw, bio, mirror_num, 0);
1912
1913out:
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001914 if (ret < 0) {
1915 bio->bi_error = ret;
1916 bio_endio(bio);
1917 }
Stefan Behrens61891922012-11-05 18:51:52 +01001918 return ret;
Chris Mason065631f2008-02-20 12:07:25 -05001919}
Chris Mason6885f302008-02-20 16:11:05 -05001920
Chris Masond352ac62008-09-29 15:18:18 -04001921/*
1922 * given a list of ordered sums record them in the inode. This happens
1923 * at IO completion time based on sums calculated at bio submission time.
1924 */
Chris Masonba1da2f2008-07-17 12:54:15 -04001925static noinline int add_pending_csums(struct btrfs_trans_handle *trans,
Chris Masone6dcd2d2008-07-17 12:53:50 -04001926 struct inode *inode, u64 file_offset,
1927 struct list_head *list)
1928{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001929 struct btrfs_ordered_sum *sum;
1930
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001931 list_for_each_entry(sum, list, list) {
Miao Xie39847c42013-03-28 08:08:20 +00001932 trans->adding_csums = 1;
Chris Masond20f7042008-12-08 16:58:54 -05001933 btrfs_csum_file_blocks(trans,
1934 BTRFS_I(inode)->root->fs_info->csum_root, sum);
Miao Xie39847c42013-03-28 08:08:20 +00001935 trans->adding_csums = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001936 }
1937 return 0;
1938}
1939
Josef Bacik2ac55d42010-02-03 19:33:23 +00001940int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end,
1941 struct extent_state **cached_state)
Chris Masonea8c2812008-08-04 23:17:27 -04001942{
Julia Lawall6c1500f2012-11-03 20:30:18 +00001943 WARN_ON((end & (PAGE_CACHE_SIZE - 1)) == 0);
Chris Masonea8c2812008-08-04 23:17:27 -04001944 return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001945 cached_state, GFP_NOFS);
Chris Masonea8c2812008-08-04 23:17:27 -04001946}
1947
Chris Masond352ac62008-09-29 15:18:18 -04001948/* see btrfs_writepage_start_hook for details on why this is required */
Chris Mason247e7432008-07-17 12:53:51 -04001949struct btrfs_writepage_fixup {
1950 struct page *page;
1951 struct btrfs_work work;
1952};
1953
Christoph Hellwigb2950862008-12-02 09:54:17 -05001954static void btrfs_writepage_fixup_worker(struct btrfs_work *work)
Chris Mason247e7432008-07-17 12:53:51 -04001955{
1956 struct btrfs_writepage_fixup *fixup;
1957 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00001958 struct extent_state *cached_state = NULL;
Chris Mason247e7432008-07-17 12:53:51 -04001959 struct page *page;
1960 struct inode *inode;
1961 u64 page_start;
1962 u64 page_end;
Jeff Mahoney87826df2012-02-15 16:23:57 +01001963 int ret;
Chris Mason247e7432008-07-17 12:53:51 -04001964
1965 fixup = container_of(work, struct btrfs_writepage_fixup, work);
1966 page = fixup->page;
Chris Mason4a096752008-07-21 10:29:44 -04001967again:
Chris Mason247e7432008-07-17 12:53:51 -04001968 lock_page(page);
1969 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
1970 ClearPageChecked(page);
1971 goto out_page;
1972 }
1973
1974 inode = page->mapping->host;
1975 page_start = page_offset(page);
1976 page_end = page_offset(page) + PAGE_CACHE_SIZE - 1;
1977
Josef Bacik2ac55d42010-02-03 19:33:23 +00001978 lock_extent_bits(&BTRFS_I(inode)->io_tree, page_start, page_end, 0,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001979 &cached_state);
Chris Mason4a096752008-07-21 10:29:44 -04001980
1981 /* already ordered? We're done */
Chris Mason8b62b722009-09-02 16:53:46 -04001982 if (PagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001983 goto out;
Chris Mason4a096752008-07-21 10:29:44 -04001984
1985 ordered = btrfs_lookup_ordered_extent(inode, page_start);
1986 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00001987 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start,
1988 page_end, &cached_state, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -04001989 unlock_page(page);
1990 btrfs_start_ordered_extent(inode, ordered, 1);
Jeff Mahoney87826df2012-02-15 16:23:57 +01001991 btrfs_put_ordered_extent(ordered);
Chris Mason4a096752008-07-21 10:29:44 -04001992 goto again;
1993 }
Chris Mason247e7432008-07-17 12:53:51 -04001994
Jeff Mahoney87826df2012-02-15 16:23:57 +01001995 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
1996 if (ret) {
1997 mapping_set_error(page->mapping, ret);
1998 end_extent_writepage(page, ret, page_start, page_end);
1999 ClearPageChecked(page);
2000 goto out;
2001 }
2002
Josef Bacik2ac55d42010-02-03 19:33:23 +00002003 btrfs_set_extent_delalloc(inode, page_start, page_end, &cached_state);
Chris Mason247e7432008-07-17 12:53:51 -04002004 ClearPageChecked(page);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002005 set_page_dirty(page);
Chris Mason247e7432008-07-17 12:53:51 -04002006out:
Josef Bacik2ac55d42010-02-03 19:33:23 +00002007 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start, page_end,
2008 &cached_state, GFP_NOFS);
Chris Mason247e7432008-07-17 12:53:51 -04002009out_page:
2010 unlock_page(page);
2011 page_cache_release(page);
Miao Xieb897abe2011-01-26 16:19:22 +08002012 kfree(fixup);
Chris Mason247e7432008-07-17 12:53:51 -04002013}
2014
2015/*
2016 * There are a few paths in the higher layers of the kernel that directly
2017 * set the page dirty bit without asking the filesystem if it is a
2018 * good idea. This causes problems because we want to make sure COW
2019 * properly happens and the data=ordered rules are followed.
2020 *
Chris Masonc8b97812008-10-29 14:49:59 -04002021 * In our case any range that doesn't have the ORDERED bit set
Chris Mason247e7432008-07-17 12:53:51 -04002022 * hasn't been properly setup for IO. We kick off an async process
2023 * to fix it up. The async helper will wait for ordered extents, set
2024 * the delalloc bit and make it safe to write the page.
2025 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05002026static int btrfs_writepage_start_hook(struct page *page, u64 start, u64 end)
Chris Mason247e7432008-07-17 12:53:51 -04002027{
2028 struct inode *inode = page->mapping->host;
2029 struct btrfs_writepage_fixup *fixup;
2030 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason247e7432008-07-17 12:53:51 -04002031
Chris Mason8b62b722009-09-02 16:53:46 -04002032 /* this page is properly in the ordered list */
2033 if (TestClearPagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04002034 return 0;
2035
2036 if (PageChecked(page))
2037 return -EAGAIN;
2038
2039 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
2040 if (!fixup)
2041 return -EAGAIN;
Chris Masonf4219502008-07-22 11:18:09 -04002042
Chris Mason247e7432008-07-17 12:53:51 -04002043 SetPageChecked(page);
2044 page_cache_get(page);
Liu Bo9e0af232014-08-15 23:36:53 +08002045 btrfs_init_work(&fixup->work, btrfs_fixup_helper,
2046 btrfs_writepage_fixup_worker, NULL, NULL);
Chris Mason247e7432008-07-17 12:53:51 -04002047 fixup->page = page;
Qu Wenruodc6e3202014-02-28 10:46:14 +08002048 btrfs_queue_work(root->fs_info->fixup_workers, &fixup->work);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002049 return -EBUSY;
Chris Mason247e7432008-07-17 12:53:51 -04002050}
2051
Yan Zhengd899e052008-10-30 14:25:28 -04002052static int insert_reserved_file_extent(struct btrfs_trans_handle *trans,
2053 struct inode *inode, u64 file_pos,
2054 u64 disk_bytenr, u64 disk_num_bytes,
2055 u64 num_bytes, u64 ram_bytes,
2056 u8 compression, u8 encryption,
2057 u16 other_encoding, int extent_type)
2058{
2059 struct btrfs_root *root = BTRFS_I(inode)->root;
2060 struct btrfs_file_extent_item *fi;
2061 struct btrfs_path *path;
2062 struct extent_buffer *leaf;
2063 struct btrfs_key ins;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00002064 int extent_inserted = 0;
Yan Zhengd899e052008-10-30 14:25:28 -04002065 int ret;
2066
2067 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07002068 if (!path)
2069 return -ENOMEM;
Yan Zhengd899e052008-10-30 14:25:28 -04002070
Chris Masona1ed8352009-09-11 12:27:37 -04002071 /*
2072 * we may be replacing one extent in the tree with another.
2073 * The new extent is pinned in the extent map, and we don't want
2074 * to drop it from the cache until it is completely in the btree.
2075 *
2076 * So, tell btrfs_drop_extents to leave this extent in the cache.
2077 * the caller is expected to unpin it and allow it to be merged
2078 * with the others.
2079 */
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00002080 ret = __btrfs_drop_extents(trans, root, inode, path, file_pos,
2081 file_pos + num_bytes, NULL, 0,
2082 1, sizeof(*fi), &extent_inserted);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002083 if (ret)
2084 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -04002085
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00002086 if (!extent_inserted) {
2087 ins.objectid = btrfs_ino(inode);
2088 ins.offset = file_pos;
2089 ins.type = BTRFS_EXTENT_DATA_KEY;
2090
2091 path->leave_spinning = 1;
2092 ret = btrfs_insert_empty_item(trans, root, path, &ins,
2093 sizeof(*fi));
2094 if (ret)
2095 goto out;
2096 }
Yan Zhengd899e052008-10-30 14:25:28 -04002097 leaf = path->nodes[0];
2098 fi = btrfs_item_ptr(leaf, path->slots[0],
2099 struct btrfs_file_extent_item);
2100 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
2101 btrfs_set_file_extent_type(leaf, fi, extent_type);
2102 btrfs_set_file_extent_disk_bytenr(leaf, fi, disk_bytenr);
2103 btrfs_set_file_extent_disk_num_bytes(leaf, fi, disk_num_bytes);
2104 btrfs_set_file_extent_offset(leaf, fi, 0);
2105 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
2106 btrfs_set_file_extent_ram_bytes(leaf, fi, ram_bytes);
2107 btrfs_set_file_extent_compression(leaf, fi, compression);
2108 btrfs_set_file_extent_encryption(leaf, fi, encryption);
2109 btrfs_set_file_extent_other_encoding(leaf, fi, other_encoding);
Chris Masonb9473432009-03-13 11:00:37 -04002110
Yan Zhengd899e052008-10-30 14:25:28 -04002111 btrfs_mark_buffer_dirty(leaf);
Josef Bacikce195332012-09-25 15:26:16 -04002112 btrfs_release_path(path);
Yan Zhengd899e052008-10-30 14:25:28 -04002113
2114 inode_add_bytes(inode, num_bytes);
Yan Zhengd899e052008-10-30 14:25:28 -04002115
2116 ins.objectid = disk_bytenr;
2117 ins.offset = disk_num_bytes;
2118 ins.type = BTRFS_EXTENT_ITEM_KEY;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002119 ret = btrfs_alloc_reserved_file_extent(trans, root,
2120 root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08002121 btrfs_ino(inode), file_pos, &ins);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002122out:
Yan Zhengd899e052008-10-30 14:25:28 -04002123 btrfs_free_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04002124
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002125 return ret;
Yan Zhengd899e052008-10-30 14:25:28 -04002126}
2127
Liu Bo38c227d2013-01-29 03:18:40 +00002128/* snapshot-aware defrag */
2129struct sa_defrag_extent_backref {
2130 struct rb_node node;
2131 struct old_sa_defrag_extent *old;
2132 u64 root_id;
2133 u64 inum;
2134 u64 file_pos;
2135 u64 extent_offset;
2136 u64 num_bytes;
2137 u64 generation;
2138};
2139
2140struct old_sa_defrag_extent {
2141 struct list_head list;
2142 struct new_sa_defrag_extent *new;
2143
2144 u64 extent_offset;
2145 u64 bytenr;
2146 u64 offset;
2147 u64 len;
2148 int count;
2149};
2150
2151struct new_sa_defrag_extent {
2152 struct rb_root root;
2153 struct list_head head;
2154 struct btrfs_path *path;
2155 struct inode *inode;
2156 u64 file_pos;
2157 u64 len;
2158 u64 bytenr;
2159 u64 disk_len;
2160 u8 compress_type;
2161};
2162
2163static int backref_comp(struct sa_defrag_extent_backref *b1,
2164 struct sa_defrag_extent_backref *b2)
2165{
2166 if (b1->root_id < b2->root_id)
2167 return -1;
2168 else if (b1->root_id > b2->root_id)
2169 return 1;
2170
2171 if (b1->inum < b2->inum)
2172 return -1;
2173 else if (b1->inum > b2->inum)
2174 return 1;
2175
2176 if (b1->file_pos < b2->file_pos)
2177 return -1;
2178 else if (b1->file_pos > b2->file_pos)
2179 return 1;
2180
2181 /*
2182 * [------------------------------] ===> (a range of space)
2183 * |<--->| |<---->| =============> (fs/file tree A)
2184 * |<---------------------------->| ===> (fs/file tree B)
2185 *
2186 * A range of space can refer to two file extents in one tree while
2187 * refer to only one file extent in another tree.
2188 *
2189 * So we may process a disk offset more than one time(two extents in A)
2190 * and locate at the same extent(one extent in B), then insert two same
2191 * backrefs(both refer to the extent in B).
2192 */
2193 return 0;
2194}
2195
2196static void backref_insert(struct rb_root *root,
2197 struct sa_defrag_extent_backref *backref)
2198{
2199 struct rb_node **p = &root->rb_node;
2200 struct rb_node *parent = NULL;
2201 struct sa_defrag_extent_backref *entry;
2202 int ret;
2203
2204 while (*p) {
2205 parent = *p;
2206 entry = rb_entry(parent, struct sa_defrag_extent_backref, node);
2207
2208 ret = backref_comp(backref, entry);
2209 if (ret < 0)
2210 p = &(*p)->rb_left;
2211 else
2212 p = &(*p)->rb_right;
2213 }
2214
2215 rb_link_node(&backref->node, parent, p);
2216 rb_insert_color(&backref->node, root);
2217}
2218
2219/*
2220 * Note the backref might has changed, and in this case we just return 0.
2221 */
2222static noinline int record_one_backref(u64 inum, u64 offset, u64 root_id,
2223 void *ctx)
2224{
2225 struct btrfs_file_extent_item *extent;
2226 struct btrfs_fs_info *fs_info;
2227 struct old_sa_defrag_extent *old = ctx;
2228 struct new_sa_defrag_extent *new = old->new;
2229 struct btrfs_path *path = new->path;
2230 struct btrfs_key key;
2231 struct btrfs_root *root;
2232 struct sa_defrag_extent_backref *backref;
2233 struct extent_buffer *leaf;
2234 struct inode *inode = new->inode;
2235 int slot;
2236 int ret;
2237 u64 extent_offset;
2238 u64 num_bytes;
2239
2240 if (BTRFS_I(inode)->root->root_key.objectid == root_id &&
2241 inum == btrfs_ino(inode))
2242 return 0;
2243
2244 key.objectid = root_id;
2245 key.type = BTRFS_ROOT_ITEM_KEY;
2246 key.offset = (u64)-1;
2247
2248 fs_info = BTRFS_I(inode)->root->fs_info;
2249 root = btrfs_read_fs_root_no_name(fs_info, &key);
2250 if (IS_ERR(root)) {
2251 if (PTR_ERR(root) == -ENOENT)
2252 return 0;
2253 WARN_ON(1);
2254 pr_debug("inum=%llu, offset=%llu, root_id=%llu\n",
2255 inum, offset, root_id);
2256 return PTR_ERR(root);
2257 }
2258
2259 key.objectid = inum;
2260 key.type = BTRFS_EXTENT_DATA_KEY;
2261 if (offset > (u64)-1 << 32)
2262 key.offset = 0;
2263 else
2264 key.offset = offset;
2265
2266 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05302267 if (WARN_ON(ret < 0))
Liu Bo38c227d2013-01-29 03:18:40 +00002268 return ret;
Josef Bacik50f13192013-07-22 12:50:37 -04002269 ret = 0;
Liu Bo38c227d2013-01-29 03:18:40 +00002270
2271 while (1) {
2272 cond_resched();
2273
2274 leaf = path->nodes[0];
2275 slot = path->slots[0];
2276
2277 if (slot >= btrfs_header_nritems(leaf)) {
2278 ret = btrfs_next_leaf(root, path);
2279 if (ret < 0) {
2280 goto out;
2281 } else if (ret > 0) {
2282 ret = 0;
2283 goto out;
2284 }
2285 continue;
2286 }
2287
2288 path->slots[0]++;
2289
2290 btrfs_item_key_to_cpu(leaf, &key, slot);
2291
2292 if (key.objectid > inum)
2293 goto out;
2294
2295 if (key.objectid < inum || key.type != BTRFS_EXTENT_DATA_KEY)
2296 continue;
2297
2298 extent = btrfs_item_ptr(leaf, slot,
2299 struct btrfs_file_extent_item);
2300
2301 if (btrfs_file_extent_disk_bytenr(leaf, extent) != old->bytenr)
2302 continue;
2303
Liu Boe68afa42013-07-01 22:13:26 +08002304 /*
2305 * 'offset' refers to the exact key.offset,
2306 * NOT the 'offset' field in btrfs_extent_data_ref, ie.
2307 * (key.offset - extent_offset).
2308 */
2309 if (key.offset != offset)
Liu Bo38c227d2013-01-29 03:18:40 +00002310 continue;
2311
Liu Boe68afa42013-07-01 22:13:26 +08002312 extent_offset = btrfs_file_extent_offset(leaf, extent);
Liu Bo38c227d2013-01-29 03:18:40 +00002313 num_bytes = btrfs_file_extent_num_bytes(leaf, extent);
Liu Boe68afa42013-07-01 22:13:26 +08002314
Liu Bo38c227d2013-01-29 03:18:40 +00002315 if (extent_offset >= old->extent_offset + old->offset +
2316 old->len || extent_offset + num_bytes <=
2317 old->extent_offset + old->offset)
2318 continue;
Liu Bo38c227d2013-01-29 03:18:40 +00002319 break;
2320 }
2321
2322 backref = kmalloc(sizeof(*backref), GFP_NOFS);
2323 if (!backref) {
2324 ret = -ENOENT;
2325 goto out;
2326 }
2327
2328 backref->root_id = root_id;
2329 backref->inum = inum;
Liu Boe68afa42013-07-01 22:13:26 +08002330 backref->file_pos = offset;
Liu Bo38c227d2013-01-29 03:18:40 +00002331 backref->num_bytes = num_bytes;
2332 backref->extent_offset = extent_offset;
2333 backref->generation = btrfs_file_extent_generation(leaf, extent);
2334 backref->old = old;
2335 backref_insert(&new->root, backref);
2336 old->count++;
2337out:
2338 btrfs_release_path(path);
2339 WARN_ON(ret);
2340 return ret;
2341}
2342
2343static noinline bool record_extent_backrefs(struct btrfs_path *path,
2344 struct new_sa_defrag_extent *new)
2345{
2346 struct btrfs_fs_info *fs_info = BTRFS_I(new->inode)->root->fs_info;
2347 struct old_sa_defrag_extent *old, *tmp;
2348 int ret;
2349
2350 new->path = path;
2351
2352 list_for_each_entry_safe(old, tmp, &new->head, list) {
Liu Boe68afa42013-07-01 22:13:26 +08002353 ret = iterate_inodes_from_logical(old->bytenr +
2354 old->extent_offset, fs_info,
Liu Bo38c227d2013-01-29 03:18:40 +00002355 path, record_one_backref,
2356 old);
Josef Bacik4724b102013-11-05 11:11:40 -05002357 if (ret < 0 && ret != -ENOENT)
2358 return false;
Liu Bo38c227d2013-01-29 03:18:40 +00002359
2360 /* no backref to be processed for this extent */
2361 if (!old->count) {
2362 list_del(&old->list);
2363 kfree(old);
2364 }
2365 }
2366
2367 if (list_empty(&new->head))
2368 return false;
2369
2370 return true;
2371}
2372
2373static int relink_is_mergable(struct extent_buffer *leaf,
2374 struct btrfs_file_extent_item *fi,
Liu Bo116e0022013-08-02 16:30:40 +08002375 struct new_sa_defrag_extent *new)
Liu Bo38c227d2013-01-29 03:18:40 +00002376{
Liu Bo116e0022013-08-02 16:30:40 +08002377 if (btrfs_file_extent_disk_bytenr(leaf, fi) != new->bytenr)
Liu Bo38c227d2013-01-29 03:18:40 +00002378 return 0;
2379
2380 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG)
2381 return 0;
2382
Liu Bo116e0022013-08-02 16:30:40 +08002383 if (btrfs_file_extent_compression(leaf, fi) != new->compress_type)
2384 return 0;
2385
2386 if (btrfs_file_extent_encryption(leaf, fi) ||
Liu Bo38c227d2013-01-29 03:18:40 +00002387 btrfs_file_extent_other_encoding(leaf, fi))
2388 return 0;
2389
2390 return 1;
2391}
2392
2393/*
2394 * Note the backref might has changed, and in this case we just return 0.
2395 */
2396static noinline int relink_extent_backref(struct btrfs_path *path,
2397 struct sa_defrag_extent_backref *prev,
2398 struct sa_defrag_extent_backref *backref)
2399{
2400 struct btrfs_file_extent_item *extent;
2401 struct btrfs_file_extent_item *item;
2402 struct btrfs_ordered_extent *ordered;
2403 struct btrfs_trans_handle *trans;
2404 struct btrfs_fs_info *fs_info;
2405 struct btrfs_root *root;
2406 struct btrfs_key key;
2407 struct extent_buffer *leaf;
2408 struct old_sa_defrag_extent *old = backref->old;
2409 struct new_sa_defrag_extent *new = old->new;
2410 struct inode *src_inode = new->inode;
2411 struct inode *inode;
2412 struct extent_state *cached = NULL;
2413 int ret = 0;
2414 u64 start;
2415 u64 len;
2416 u64 lock_start;
2417 u64 lock_end;
2418 bool merge = false;
2419 int index;
2420
2421 if (prev && prev->root_id == backref->root_id &&
2422 prev->inum == backref->inum &&
2423 prev->file_pos + prev->num_bytes == backref->file_pos)
2424 merge = true;
2425
2426 /* step 1: get root */
2427 key.objectid = backref->root_id;
2428 key.type = BTRFS_ROOT_ITEM_KEY;
2429 key.offset = (u64)-1;
2430
2431 fs_info = BTRFS_I(src_inode)->root->fs_info;
2432 index = srcu_read_lock(&fs_info->subvol_srcu);
2433
2434 root = btrfs_read_fs_root_no_name(fs_info, &key);
2435 if (IS_ERR(root)) {
2436 srcu_read_unlock(&fs_info->subvol_srcu, index);
2437 if (PTR_ERR(root) == -ENOENT)
2438 return 0;
2439 return PTR_ERR(root);
2440 }
Liu Bo38c227d2013-01-29 03:18:40 +00002441
Wang Shilongbcbba5e2014-02-08 23:46:35 +08002442 if (btrfs_root_readonly(root)) {
2443 srcu_read_unlock(&fs_info->subvol_srcu, index);
2444 return 0;
2445 }
2446
Liu Bo38c227d2013-01-29 03:18:40 +00002447 /* step 2: get inode */
2448 key.objectid = backref->inum;
2449 key.type = BTRFS_INODE_ITEM_KEY;
2450 key.offset = 0;
2451
2452 inode = btrfs_iget(fs_info->sb, &key, root, NULL);
2453 if (IS_ERR(inode)) {
2454 srcu_read_unlock(&fs_info->subvol_srcu, index);
2455 return 0;
2456 }
2457
2458 srcu_read_unlock(&fs_info->subvol_srcu, index);
2459
2460 /* step 3: relink backref */
2461 lock_start = backref->file_pos;
2462 lock_end = backref->file_pos + backref->num_bytes - 1;
2463 lock_extent_bits(&BTRFS_I(inode)->io_tree, lock_start, lock_end,
2464 0, &cached);
2465
2466 ordered = btrfs_lookup_first_ordered_extent(inode, lock_end);
2467 if (ordered) {
2468 btrfs_put_ordered_extent(ordered);
2469 goto out_unlock;
2470 }
2471
2472 trans = btrfs_join_transaction(root);
2473 if (IS_ERR(trans)) {
2474 ret = PTR_ERR(trans);
2475 goto out_unlock;
2476 }
2477
2478 key.objectid = backref->inum;
2479 key.type = BTRFS_EXTENT_DATA_KEY;
2480 key.offset = backref->file_pos;
2481
2482 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2483 if (ret < 0) {
2484 goto out_free_path;
2485 } else if (ret > 0) {
2486 ret = 0;
2487 goto out_free_path;
2488 }
2489
2490 extent = btrfs_item_ptr(path->nodes[0], path->slots[0],
2491 struct btrfs_file_extent_item);
2492
2493 if (btrfs_file_extent_generation(path->nodes[0], extent) !=
2494 backref->generation)
2495 goto out_free_path;
2496
2497 btrfs_release_path(path);
2498
2499 start = backref->file_pos;
2500 if (backref->extent_offset < old->extent_offset + old->offset)
2501 start += old->extent_offset + old->offset -
2502 backref->extent_offset;
2503
2504 len = min(backref->extent_offset + backref->num_bytes,
2505 old->extent_offset + old->offset + old->len);
2506 len -= max(backref->extent_offset, old->extent_offset + old->offset);
2507
2508 ret = btrfs_drop_extents(trans, root, inode, start,
2509 start + len, 1);
2510 if (ret)
2511 goto out_free_path;
2512again:
2513 key.objectid = btrfs_ino(inode);
2514 key.type = BTRFS_EXTENT_DATA_KEY;
2515 key.offset = start;
2516
Liu Boa09a0a72013-03-11 09:20:58 +00002517 path->leave_spinning = 1;
Liu Bo38c227d2013-01-29 03:18:40 +00002518 if (merge) {
2519 struct btrfs_file_extent_item *fi;
2520 u64 extent_len;
2521 struct btrfs_key found_key;
2522
Gui Hecheng3c9665d2014-01-23 13:41:09 +08002523 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
Liu Bo38c227d2013-01-29 03:18:40 +00002524 if (ret < 0)
2525 goto out_free_path;
2526
2527 path->slots[0]--;
2528 leaf = path->nodes[0];
2529 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2530
2531 fi = btrfs_item_ptr(leaf, path->slots[0],
2532 struct btrfs_file_extent_item);
2533 extent_len = btrfs_file_extent_num_bytes(leaf, fi);
2534
Liu Bo116e0022013-08-02 16:30:40 +08002535 if (extent_len + found_key.offset == start &&
2536 relink_is_mergable(leaf, fi, new)) {
Liu Bo38c227d2013-01-29 03:18:40 +00002537 btrfs_set_file_extent_num_bytes(leaf, fi,
2538 extent_len + len);
2539 btrfs_mark_buffer_dirty(leaf);
2540 inode_add_bytes(inode, len);
2541
2542 ret = 1;
2543 goto out_free_path;
2544 } else {
2545 merge = false;
2546 btrfs_release_path(path);
2547 goto again;
2548 }
2549 }
2550
2551 ret = btrfs_insert_empty_item(trans, root, path, &key,
2552 sizeof(*extent));
2553 if (ret) {
2554 btrfs_abort_transaction(trans, root, ret);
2555 goto out_free_path;
2556 }
2557
2558 leaf = path->nodes[0];
2559 item = btrfs_item_ptr(leaf, path->slots[0],
2560 struct btrfs_file_extent_item);
2561 btrfs_set_file_extent_disk_bytenr(leaf, item, new->bytenr);
2562 btrfs_set_file_extent_disk_num_bytes(leaf, item, new->disk_len);
2563 btrfs_set_file_extent_offset(leaf, item, start - new->file_pos);
2564 btrfs_set_file_extent_num_bytes(leaf, item, len);
2565 btrfs_set_file_extent_ram_bytes(leaf, item, new->len);
2566 btrfs_set_file_extent_generation(leaf, item, trans->transid);
2567 btrfs_set_file_extent_type(leaf, item, BTRFS_FILE_EXTENT_REG);
2568 btrfs_set_file_extent_compression(leaf, item, new->compress_type);
2569 btrfs_set_file_extent_encryption(leaf, item, 0);
2570 btrfs_set_file_extent_other_encoding(leaf, item, 0);
2571
2572 btrfs_mark_buffer_dirty(leaf);
2573 inode_add_bytes(inode, len);
Liu Boa09a0a72013-03-11 09:20:58 +00002574 btrfs_release_path(path);
Liu Bo38c227d2013-01-29 03:18:40 +00002575
2576 ret = btrfs_inc_extent_ref(trans, root, new->bytenr,
2577 new->disk_len, 0,
2578 backref->root_id, backref->inum,
2579 new->file_pos, 0); /* start - extent_offset */
2580 if (ret) {
2581 btrfs_abort_transaction(trans, root, ret);
2582 goto out_free_path;
2583 }
2584
2585 ret = 1;
2586out_free_path:
2587 btrfs_release_path(path);
Liu Boa09a0a72013-03-11 09:20:58 +00002588 path->leave_spinning = 0;
Liu Bo38c227d2013-01-29 03:18:40 +00002589 btrfs_end_transaction(trans, root);
2590out_unlock:
2591 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lock_start, lock_end,
2592 &cached, GFP_NOFS);
2593 iput(inode);
2594 return ret;
2595}
2596
Liu Bo6f519562013-10-29 10:45:05 +08002597static void free_sa_defrag_extent(struct new_sa_defrag_extent *new)
2598{
2599 struct old_sa_defrag_extent *old, *tmp;
2600
2601 if (!new)
2602 return;
2603
2604 list_for_each_entry_safe(old, tmp, &new->head, list) {
Liu Bo6f519562013-10-29 10:45:05 +08002605 kfree(old);
2606 }
2607 kfree(new);
2608}
2609
Liu Bo38c227d2013-01-29 03:18:40 +00002610static void relink_file_extents(struct new_sa_defrag_extent *new)
2611{
2612 struct btrfs_path *path;
Liu Bo38c227d2013-01-29 03:18:40 +00002613 struct sa_defrag_extent_backref *backref;
2614 struct sa_defrag_extent_backref *prev = NULL;
2615 struct inode *inode;
2616 struct btrfs_root *root;
2617 struct rb_node *node;
2618 int ret;
2619
2620 inode = new->inode;
2621 root = BTRFS_I(inode)->root;
2622
2623 path = btrfs_alloc_path();
2624 if (!path)
2625 return;
2626
2627 if (!record_extent_backrefs(path, new)) {
2628 btrfs_free_path(path);
2629 goto out;
2630 }
2631 btrfs_release_path(path);
2632
2633 while (1) {
2634 node = rb_first(&new->root);
2635 if (!node)
2636 break;
2637 rb_erase(node, &new->root);
2638
2639 backref = rb_entry(node, struct sa_defrag_extent_backref, node);
2640
2641 ret = relink_extent_backref(path, prev, backref);
2642 WARN_ON(ret < 0);
2643
2644 kfree(prev);
2645
2646 if (ret == 1)
2647 prev = backref;
2648 else
2649 prev = NULL;
2650 cond_resched();
2651 }
2652 kfree(prev);
2653
2654 btrfs_free_path(path);
Liu Bo38c227d2013-01-29 03:18:40 +00002655out:
Liu Bo6f519562013-10-29 10:45:05 +08002656 free_sa_defrag_extent(new);
2657
Liu Bo38c227d2013-01-29 03:18:40 +00002658 atomic_dec(&root->fs_info->defrag_running);
2659 wake_up(&root->fs_info->transaction_wait);
Liu Bo38c227d2013-01-29 03:18:40 +00002660}
2661
2662static struct new_sa_defrag_extent *
2663record_old_file_extents(struct inode *inode,
2664 struct btrfs_ordered_extent *ordered)
2665{
2666 struct btrfs_root *root = BTRFS_I(inode)->root;
2667 struct btrfs_path *path;
2668 struct btrfs_key key;
Liu Bo6f519562013-10-29 10:45:05 +08002669 struct old_sa_defrag_extent *old;
Liu Bo38c227d2013-01-29 03:18:40 +00002670 struct new_sa_defrag_extent *new;
2671 int ret;
2672
2673 new = kmalloc(sizeof(*new), GFP_NOFS);
2674 if (!new)
2675 return NULL;
2676
2677 new->inode = inode;
2678 new->file_pos = ordered->file_offset;
2679 new->len = ordered->len;
2680 new->bytenr = ordered->start;
2681 new->disk_len = ordered->disk_len;
2682 new->compress_type = ordered->compress_type;
2683 new->root = RB_ROOT;
2684 INIT_LIST_HEAD(&new->head);
2685
2686 path = btrfs_alloc_path();
2687 if (!path)
2688 goto out_kfree;
2689
2690 key.objectid = btrfs_ino(inode);
2691 key.type = BTRFS_EXTENT_DATA_KEY;
2692 key.offset = new->file_pos;
2693
2694 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2695 if (ret < 0)
2696 goto out_free_path;
2697 if (ret > 0 && path->slots[0] > 0)
2698 path->slots[0]--;
2699
2700 /* find out all the old extents for the file range */
2701 while (1) {
2702 struct btrfs_file_extent_item *extent;
2703 struct extent_buffer *l;
2704 int slot;
2705 u64 num_bytes;
2706 u64 offset;
2707 u64 end;
2708 u64 disk_bytenr;
2709 u64 extent_offset;
2710
2711 l = path->nodes[0];
2712 slot = path->slots[0];
2713
2714 if (slot >= btrfs_header_nritems(l)) {
2715 ret = btrfs_next_leaf(root, path);
2716 if (ret < 0)
Liu Bo6f519562013-10-29 10:45:05 +08002717 goto out_free_path;
Liu Bo38c227d2013-01-29 03:18:40 +00002718 else if (ret > 0)
2719 break;
2720 continue;
2721 }
2722
2723 btrfs_item_key_to_cpu(l, &key, slot);
2724
2725 if (key.objectid != btrfs_ino(inode))
2726 break;
2727 if (key.type != BTRFS_EXTENT_DATA_KEY)
2728 break;
2729 if (key.offset >= new->file_pos + new->len)
2730 break;
2731
2732 extent = btrfs_item_ptr(l, slot, struct btrfs_file_extent_item);
2733
2734 num_bytes = btrfs_file_extent_num_bytes(l, extent);
2735 if (key.offset + num_bytes < new->file_pos)
2736 goto next;
2737
2738 disk_bytenr = btrfs_file_extent_disk_bytenr(l, extent);
2739 if (!disk_bytenr)
2740 goto next;
2741
2742 extent_offset = btrfs_file_extent_offset(l, extent);
2743
2744 old = kmalloc(sizeof(*old), GFP_NOFS);
2745 if (!old)
Liu Bo6f519562013-10-29 10:45:05 +08002746 goto out_free_path;
Liu Bo38c227d2013-01-29 03:18:40 +00002747
2748 offset = max(new->file_pos, key.offset);
2749 end = min(new->file_pos + new->len, key.offset + num_bytes);
2750
2751 old->bytenr = disk_bytenr;
2752 old->extent_offset = extent_offset;
2753 old->offset = offset - key.offset;
2754 old->len = end - offset;
2755 old->new = new;
2756 old->count = 0;
2757 list_add_tail(&old->list, &new->head);
2758next:
2759 path->slots[0]++;
2760 cond_resched();
2761 }
2762
2763 btrfs_free_path(path);
2764 atomic_inc(&root->fs_info->defrag_running);
2765
2766 return new;
2767
Liu Bo38c227d2013-01-29 03:18:40 +00002768out_free_path:
2769 btrfs_free_path(path);
2770out_kfree:
Liu Bo6f519562013-10-29 10:45:05 +08002771 free_sa_defrag_extent(new);
Liu Bo38c227d2013-01-29 03:18:40 +00002772 return NULL;
2773}
2774
Miao Xiee570fd22014-06-19 10:42:50 +08002775static void btrfs_release_delalloc_bytes(struct btrfs_root *root,
2776 u64 start, u64 len)
2777{
2778 struct btrfs_block_group_cache *cache;
2779
2780 cache = btrfs_lookup_block_group(root->fs_info, start);
2781 ASSERT(cache);
2782
2783 spin_lock(&cache->lock);
2784 cache->delalloc_bytes -= len;
2785 spin_unlock(&cache->lock);
2786
2787 btrfs_put_block_group(cache);
2788}
2789
Chris Masond352ac62008-09-29 15:18:18 -04002790/* as ordered data IO finishes, this gets called so we can finish
2791 * an ordered extent if the range of bytes in the file it covers are
2792 * fully written.
2793 */
Josef Bacik5fd02042012-05-02 14:00:54 -04002794static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent)
Chris Masone6dcd2d2008-07-17 12:53:50 -04002795{
Josef Bacik5fd02042012-05-02 14:00:54 -04002796 struct inode *inode = ordered_extent->inode;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002797 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04002798 struct btrfs_trans_handle *trans = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002799 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Josef Bacik2ac55d42010-02-03 19:33:23 +00002800 struct extent_state *cached_state = NULL;
Liu Bo38c227d2013-01-29 03:18:40 +00002801 struct new_sa_defrag_extent *new = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08002802 int compress_type = 0;
Josef Bacik77cef2e2013-08-29 13:57:21 -04002803 int ret = 0;
2804 u64 logical_len = ordered_extent->len;
Li Zefan82d59022011-04-20 10:33:24 +08002805 bool nolock;
Josef Bacik77cef2e2013-08-29 13:57:21 -04002806 bool truncated = false;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002807
Liu Bo83eea1f2012-07-10 05:28:39 -06002808 nolock = btrfs_is_free_space_inode(inode);
Josef Bacik0cb59c92010-07-02 12:14:14 -04002809
Josef Bacik5fd02042012-05-02 14:00:54 -04002810 if (test_bit(BTRFS_ORDERED_IOERR, &ordered_extent->flags)) {
2811 ret = -EIO;
2812 goto out;
2813 }
2814
Miao Xief6124962014-09-12 18:44:04 +08002815 btrfs_free_io_failure_record(inode, ordered_extent->file_offset,
2816 ordered_extent->file_offset +
2817 ordered_extent->len - 1);
2818
Josef Bacik77cef2e2013-08-29 13:57:21 -04002819 if (test_bit(BTRFS_ORDERED_TRUNCATED, &ordered_extent->flags)) {
2820 truncated = true;
2821 logical_len = ordered_extent->truncated_len;
2822 /* Truncated the entire extent, don't bother adding */
2823 if (!logical_len)
2824 goto out;
2825 }
2826
Yan, Zhengc2167752009-11-12 09:34:21 +00002827 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags)) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002828 BUG_ON(!list_empty(&ordered_extent->list)); /* Logic error */
Josef Bacik6c760c02012-11-09 10:53:21 -05002829 btrfs_ordered_update_i_size(inode, 0, ordered_extent);
2830 if (nolock)
2831 trans = btrfs_join_transaction_nolock(root);
2832 else
2833 trans = btrfs_join_transaction(root);
2834 if (IS_ERR(trans)) {
2835 ret = PTR_ERR(trans);
2836 trans = NULL;
2837 goto out;
Yan, Zhengc2167752009-11-12 09:34:21 +00002838 }
Josef Bacik6c760c02012-11-09 10:53:21 -05002839 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
2840 ret = btrfs_update_inode_fallback(trans, root, inode);
2841 if (ret) /* -ENOMEM or corruption */
2842 btrfs_abort_transaction(trans, root, ret);
Yan, Zhengc2167752009-11-12 09:34:21 +00002843 goto out;
2844 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04002845
Josef Bacik2ac55d42010-02-03 19:33:23 +00002846 lock_extent_bits(io_tree, ordered_extent->file_offset,
2847 ordered_extent->file_offset + ordered_extent->len - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01002848 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002849
Liu Bo38c227d2013-01-29 03:18:40 +00002850 ret = test_range_bit(io_tree, ordered_extent->file_offset,
2851 ordered_extent->file_offset + ordered_extent->len - 1,
2852 EXTENT_DEFRAG, 1, cached_state);
2853 if (ret) {
2854 u64 last_snapshot = btrfs_root_last_snapshot(&root->root_item);
Josef Bacik8101c8d2014-01-29 16:05:30 -05002855 if (0 && last_snapshot >= BTRFS_I(inode)->generation)
Liu Bo38c227d2013-01-29 03:18:40 +00002856 /* the inode is shared */
2857 new = record_old_file_extents(inode, ordered_extent);
2858
2859 clear_extent_bit(io_tree, ordered_extent->file_offset,
2860 ordered_extent->file_offset + ordered_extent->len - 1,
2861 EXTENT_DEFRAG, 0, 0, &cached_state, GFP_NOFS);
2862 }
2863
Josef Bacik0cb59c92010-07-02 12:14:14 -04002864 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04002865 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04002866 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04002867 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002868 if (IS_ERR(trans)) {
2869 ret = PTR_ERR(trans);
2870 trans = NULL;
2871 goto out_unlock;
2872 }
Chris Masona79b7d42014-05-22 16:18:52 -07002873
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04002874 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Yan, Zhengc2167752009-11-12 09:34:21 +00002875
Chris Masonc8b97812008-10-29 14:49:59 -04002876 if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags))
Li Zefan261507a02010-12-17 14:21:50 +08002877 compress_type = ordered_extent->compress_type;
Yan Zhengd899e052008-10-30 14:25:28 -04002878 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
Li Zefan261507a02010-12-17 14:21:50 +08002879 BUG_ON(compress_type);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00002880 ret = btrfs_mark_extent_written(trans, inode,
Yan Zhengd899e052008-10-30 14:25:28 -04002881 ordered_extent->file_offset,
2882 ordered_extent->file_offset +
Josef Bacik77cef2e2013-08-29 13:57:21 -04002883 logical_len);
Yan Zhengd899e052008-10-30 14:25:28 -04002884 } else {
Josef Bacik0af3d002010-06-21 14:48:16 -04002885 BUG_ON(root == root->fs_info->tree_root);
Yan Zhengd899e052008-10-30 14:25:28 -04002886 ret = insert_reserved_file_extent(trans, inode,
2887 ordered_extent->file_offset,
2888 ordered_extent->start,
2889 ordered_extent->disk_len,
Josef Bacik77cef2e2013-08-29 13:57:21 -04002890 logical_len, logical_len,
Li Zefan261507a02010-12-17 14:21:50 +08002891 compress_type, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04002892 BTRFS_FILE_EXTENT_REG);
Miao Xiee570fd22014-06-19 10:42:50 +08002893 if (!ret)
2894 btrfs_release_delalloc_bytes(root,
2895 ordered_extent->start,
2896 ordered_extent->disk_len);
Yan Zhengd899e052008-10-30 14:25:28 -04002897 }
Josef Bacik5dc562c2012-08-17 13:14:17 -04002898 unpin_extent_cache(&BTRFS_I(inode)->extent_tree,
2899 ordered_extent->file_offset, ordered_extent->len,
2900 trans->transid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002901 if (ret < 0) {
2902 btrfs_abort_transaction(trans, root, ret);
Josef Bacik5fd02042012-05-02 14:00:54 -04002903 goto out_unlock;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002904 }
Josef Bacik2ac55d42010-02-03 19:33:23 +00002905
Chris Masone6dcd2d2008-07-17 12:53:50 -04002906 add_pending_csums(trans, inode, ordered_extent->file_offset,
2907 &ordered_extent->list);
2908
Josef Bacik6c760c02012-11-09 10:53:21 -05002909 btrfs_ordered_update_i_size(inode, 0, ordered_extent);
2910 ret = btrfs_update_inode_fallback(trans, root, inode);
2911 if (ret) { /* -ENOMEM or corruption */
2912 btrfs_abort_transaction(trans, root, ret);
2913 goto out_unlock;
Josef Bacik1ef30be2011-04-05 19:25:36 -04002914 }
2915 ret = 0;
Josef Bacik5fd02042012-05-02 14:00:54 -04002916out_unlock:
2917 unlock_extent_cached(io_tree, ordered_extent->file_offset,
2918 ordered_extent->file_offset +
2919 ordered_extent->len - 1, &cached_state, GFP_NOFS);
Yan, Zhengc2167752009-11-12 09:34:21 +00002920out:
Josef Bacik5b0e95b2011-10-06 08:58:24 -04002921 if (root != root->fs_info->tree_root)
Josef Bacik0cb59c92010-07-02 12:14:14 -04002922 btrfs_delalloc_release_metadata(inode, ordered_extent->len);
Miao Xiea698d0752012-09-20 01:51:59 -06002923 if (trans)
2924 btrfs_end_transaction(trans, root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04002925
Josef Bacik77cef2e2013-08-29 13:57:21 -04002926 if (ret || truncated) {
2927 u64 start, end;
2928
2929 if (truncated)
2930 start = ordered_extent->file_offset + logical_len;
2931 else
2932 start = ordered_extent->file_offset;
2933 end = ordered_extent->file_offset + ordered_extent->len - 1;
2934 clear_extent_uptodate(io_tree, start, end, NULL, GFP_NOFS);
2935
2936 /* Drop the cache for the part of the extent we didn't write. */
2937 btrfs_drop_extent_cache(inode, start, end, 0);
Josef Bacik5fd02042012-05-02 14:00:54 -04002938
Josef Bacik0bec9ef2013-01-31 14:58:00 -05002939 /*
2940 * If the ordered extent had an IOERR or something else went
2941 * wrong we need to return the space for this ordered extent
Josef Bacik77cef2e2013-08-29 13:57:21 -04002942 * back to the allocator. We only free the extent in the
2943 * truncated case if we didn't write out the extent at all.
Josef Bacik0bec9ef2013-01-31 14:58:00 -05002944 */
Josef Bacik77cef2e2013-08-29 13:57:21 -04002945 if ((ret || !logical_len) &&
2946 !test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags) &&
Josef Bacik0bec9ef2013-01-31 14:58:00 -05002947 !test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags))
2948 btrfs_free_reserved_extent(root, ordered_extent->start,
Miao Xiee570fd22014-06-19 10:42:50 +08002949 ordered_extent->disk_len, 1);
Josef Bacik0bec9ef2013-01-31 14:58:00 -05002950 }
2951
2952
Josef Bacik5fd02042012-05-02 14:00:54 -04002953 /*
Liu Bo8bad3c02012-06-18 12:14:23 +08002954 * This needs to be done to make sure anybody waiting knows we are done
2955 * updating everything for this ordered extent.
Josef Bacik5fd02042012-05-02 14:00:54 -04002956 */
2957 btrfs_remove_ordered_extent(inode, ordered_extent);
2958
Liu Bo38c227d2013-01-29 03:18:40 +00002959 /* for snapshot-aware defrag */
Liu Bo6f519562013-10-29 10:45:05 +08002960 if (new) {
2961 if (ret) {
2962 free_sa_defrag_extent(new);
2963 atomic_dec(&root->fs_info->defrag_running);
2964 } else {
2965 relink_file_extents(new);
2966 }
2967 }
Liu Bo38c227d2013-01-29 03:18:40 +00002968
Chris Masone6dcd2d2008-07-17 12:53:50 -04002969 /* once for us */
2970 btrfs_put_ordered_extent(ordered_extent);
2971 /* once for the tree */
2972 btrfs_put_ordered_extent(ordered_extent);
2973
Josef Bacik5fd02042012-05-02 14:00:54 -04002974 return ret;
2975}
2976
2977static void finish_ordered_fn(struct btrfs_work *work)
2978{
2979 struct btrfs_ordered_extent *ordered_extent;
2980 ordered_extent = container_of(work, struct btrfs_ordered_extent, work);
2981 btrfs_finish_ordered_io(ordered_extent);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002982}
2983
Christoph Hellwigb2950862008-12-02 09:54:17 -05002984static int btrfs_writepage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason211f90e2008-07-18 11:56:15 -04002985 struct extent_state *state, int uptodate)
2986{
Josef Bacik5fd02042012-05-02 14:00:54 -04002987 struct inode *inode = page->mapping->host;
2988 struct btrfs_root *root = BTRFS_I(inode)->root;
2989 struct btrfs_ordered_extent *ordered_extent = NULL;
Liu Bo9e0af232014-08-15 23:36:53 +08002990 struct btrfs_workqueue *wq;
2991 btrfs_work_func_t func;
Josef Bacik5fd02042012-05-02 14:00:54 -04002992
liubo1abe9b82011-03-24 11:18:59 +00002993 trace_btrfs_writepage_end_io_hook(page, start, end, uptodate);
2994
Chris Mason8b62b722009-09-02 16:53:46 -04002995 ClearPagePrivate2(page);
Josef Bacik5fd02042012-05-02 14:00:54 -04002996 if (!btrfs_dec_test_ordered_pending(inode, &ordered_extent, start,
2997 end - start + 1, uptodate))
2998 return 0;
2999
Liu Bo9e0af232014-08-15 23:36:53 +08003000 if (btrfs_is_free_space_inode(inode)) {
3001 wq = root->fs_info->endio_freespace_worker;
3002 func = btrfs_freespace_write_helper;
3003 } else {
3004 wq = root->fs_info->endio_write_workers;
3005 func = btrfs_endio_write_helper;
3006 }
Josef Bacik5fd02042012-05-02 14:00:54 -04003007
Liu Bo9e0af232014-08-15 23:36:53 +08003008 btrfs_init_work(&ordered_extent->work, func, finish_ordered_fn, NULL,
3009 NULL);
3010 btrfs_queue_work(wq, &ordered_extent->work);
Josef Bacik5fd02042012-05-02 14:00:54 -04003011
3012 return 0;
Chris Mason211f90e2008-07-18 11:56:15 -04003013}
3014
Miao Xiedc380ae2014-09-12 18:43:55 +08003015static int __readpage_endio_check(struct inode *inode,
3016 struct btrfs_io_bio *io_bio,
3017 int icsum, struct page *page,
3018 int pgoff, u64 start, size_t len)
3019{
3020 char *kaddr;
3021 u32 csum_expected;
3022 u32 csum = ~(u32)0;
Miao Xiedc380ae2014-09-12 18:43:55 +08003023
3024 csum_expected = *(((u32 *)io_bio->csum) + icsum);
3025
3026 kaddr = kmap_atomic(page);
3027 csum = btrfs_csum_data(kaddr + pgoff, csum, len);
3028 btrfs_csum_final(csum, (char *)&csum);
3029 if (csum != csum_expected)
3030 goto zeroit;
3031
3032 kunmap_atomic(kaddr);
3033 return 0;
3034zeroit:
David Sterba94647322015-10-08 11:01:36 +02003035 btrfs_warn_rl(BTRFS_I(inode)->root->fs_info,
3036 "csum failed ino %llu off %llu csum %u expected csum %u",
Miao Xiedc380ae2014-09-12 18:43:55 +08003037 btrfs_ino(inode), start, csum, csum_expected);
3038 memset(kaddr + pgoff, 1, len);
3039 flush_dcache_page(page);
3040 kunmap_atomic(kaddr);
3041 if (csum_expected == 0)
3042 return 0;
3043 return -EIO;
3044}
3045
Chris Masond352ac62008-09-29 15:18:18 -04003046/*
Chris Masond352ac62008-09-29 15:18:18 -04003047 * when reads are done, we need to check csums to verify the data is correct
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02003048 * if there's a match, we allow the bio to finish. If not, the code in
3049 * extent_io.c will try to find good copies for us.
Chris Masond352ac62008-09-29 15:18:18 -04003050 */
Miao Xiefacc8a222013-07-25 19:22:34 +08003051static int btrfs_readpage_end_io_hook(struct btrfs_io_bio *io_bio,
3052 u64 phy_offset, struct page *page,
3053 u64 start, u64 end, int mirror)
Chris Mason07157aa2007-08-30 08:50:51 -04003054{
Miao Xie4eee4fa2012-12-21 09:17:45 +00003055 size_t offset = start - page_offset(page);
Chris Mason07157aa2007-08-30 08:50:51 -04003056 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05003057 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masonff79f812007-10-15 16:22:25 -04003058 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond1310b22008-01-24 16:13:08 -05003059
Chris Masond20f7042008-12-08 16:58:54 -05003060 if (PageChecked(page)) {
3061 ClearPageChecked(page);
Miao Xiedc380ae2014-09-12 18:43:55 +08003062 return 0;
Chris Masond20f7042008-12-08 16:58:54 -05003063 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02003064
3065 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)
Miao Xiedc380ae2014-09-12 18:43:55 +08003066 return 0;
Chris Masond20f7042008-12-08 16:58:54 -05003067
Yan Zheng17d217f2008-12-12 10:03:38 -05003068 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID &&
Chris Mason9655d292009-09-02 15:22:30 -04003069 test_range_bit(io_tree, start, end, EXTENT_NODATASUM, 1, NULL)) {
Yan Zheng17d217f2008-12-12 10:03:38 -05003070 clear_extent_bits(io_tree, start, end, EXTENT_NODATASUM,
3071 GFP_NOFS);
3072 return 0;
3073 }
3074
Miao Xiefacc8a222013-07-25 19:22:34 +08003075 phy_offset >>= inode->i_sb->s_blocksize_bits;
Miao Xiedc380ae2014-09-12 18:43:55 +08003076 return __readpage_endio_check(inode, io_bio, phy_offset, page, offset,
3077 start, (size_t)(end - start + 1));
Chris Mason07157aa2007-08-30 08:50:51 -04003078}
Chris Masonb888db22007-08-27 16:49:44 -04003079
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003080struct delayed_iput {
3081 struct list_head list;
3082 struct inode *inode;
3083};
3084
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003085/* JDM: If this is fs-wide, why can't we add a pointer to
3086 * btrfs_inode instead and avoid the allocation? */
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003087void btrfs_add_delayed_iput(struct inode *inode)
3088{
3089 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
3090 struct delayed_iput *delayed;
3091
3092 if (atomic_add_unless(&inode->i_count, -1, 1))
3093 return;
3094
3095 delayed = kmalloc(sizeof(*delayed), GFP_NOFS | __GFP_NOFAIL);
3096 delayed->inode = inode;
3097
3098 spin_lock(&fs_info->delayed_iput_lock);
3099 list_add_tail(&delayed->list, &fs_info->delayed_iputs);
3100 spin_unlock(&fs_info->delayed_iput_lock);
3101}
3102
3103void btrfs_run_delayed_iputs(struct btrfs_root *root)
3104{
3105 LIST_HEAD(list);
3106 struct btrfs_fs_info *fs_info = root->fs_info;
3107 struct delayed_iput *delayed;
3108 int empty;
3109
3110 spin_lock(&fs_info->delayed_iput_lock);
3111 empty = list_empty(&fs_info->delayed_iputs);
3112 spin_unlock(&fs_info->delayed_iput_lock);
3113 if (empty)
3114 return;
3115
Zhao Leid7c15172015-02-26 10:49:20 +08003116 down_read(&fs_info->delayed_iput_sem);
3117
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003118 spin_lock(&fs_info->delayed_iput_lock);
3119 list_splice_init(&fs_info->delayed_iputs, &list);
3120 spin_unlock(&fs_info->delayed_iput_lock);
3121
3122 while (!list_empty(&list)) {
3123 delayed = list_entry(list.next, struct delayed_iput, list);
3124 list_del(&delayed->list);
3125 iput(delayed->inode);
3126 kfree(delayed);
3127 }
Zhao Leid7c15172015-02-26 10:49:20 +08003128
3129 up_read(&root->fs_info->delayed_iput_sem);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003130}
3131
Yan, Zhengd68fc572010-05-16 10:49:58 -04003132/*
Justin P. Mattock42b2aa82011-11-28 20:31:00 -08003133 * This is called in transaction commit time. If there are no orphan
Yan, Zhengd68fc572010-05-16 10:49:58 -04003134 * files in the subvolume, it removes orphan item and frees block_rsv
3135 * structure.
3136 */
3137void btrfs_orphan_commit_root(struct btrfs_trans_handle *trans,
3138 struct btrfs_root *root)
3139{
Josef Bacik90290e12011-12-02 15:44:12 -05003140 struct btrfs_block_rsv *block_rsv;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003141 int ret;
3142
Josef Bacik8a35d952012-05-23 14:26:42 -04003143 if (atomic_read(&root->orphan_inodes) ||
Yan, Zhengd68fc572010-05-16 10:49:58 -04003144 root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE)
3145 return;
3146
Josef Bacik90290e12011-12-02 15:44:12 -05003147 spin_lock(&root->orphan_lock);
Josef Bacik8a35d952012-05-23 14:26:42 -04003148 if (atomic_read(&root->orphan_inodes)) {
Josef Bacik90290e12011-12-02 15:44:12 -05003149 spin_unlock(&root->orphan_lock);
3150 return;
3151 }
3152
3153 if (root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE) {
3154 spin_unlock(&root->orphan_lock);
3155 return;
3156 }
3157
3158 block_rsv = root->orphan_block_rsv;
3159 root->orphan_block_rsv = NULL;
3160 spin_unlock(&root->orphan_lock);
3161
Miao Xie27cdeb72014-04-02 19:51:05 +08003162 if (test_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &root->state) &&
Yan, Zhengd68fc572010-05-16 10:49:58 -04003163 btrfs_root_refs(&root->root_item) > 0) {
3164 ret = btrfs_del_orphan_item(trans, root->fs_info->tree_root,
3165 root->root_key.objectid);
Josef Bacik4ef31a42013-08-13 14:10:08 -04003166 if (ret)
3167 btrfs_abort_transaction(trans, root, ret);
3168 else
Miao Xie27cdeb72014-04-02 19:51:05 +08003169 clear_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED,
3170 &root->state);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003171 }
3172
Josef Bacik90290e12011-12-02 15:44:12 -05003173 if (block_rsv) {
3174 WARN_ON(block_rsv->size > 0);
3175 btrfs_free_block_rsv(root, block_rsv);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003176 }
3177}
3178
3179/*
Josef Bacik7b128762008-07-24 12:17:14 -04003180 * This creates an orphan entry for the given inode in case something goes
3181 * wrong in the middle of an unlink/truncate.
Yan, Zhengd68fc572010-05-16 10:49:58 -04003182 *
3183 * NOTE: caller of this function should reserve 5 units of metadata for
3184 * this function.
Josef Bacik7b128762008-07-24 12:17:14 -04003185 */
3186int btrfs_orphan_add(struct btrfs_trans_handle *trans, struct inode *inode)
3187{
3188 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003189 struct btrfs_block_rsv *block_rsv = NULL;
3190 int reserve = 0;
3191 int insert = 0;
3192 int ret;
Josef Bacik7b128762008-07-24 12:17:14 -04003193
Yan, Zhengd68fc572010-05-16 10:49:58 -04003194 if (!root->orphan_block_rsv) {
Miao Xie66d8f3d2012-09-06 04:02:28 -06003195 block_rsv = btrfs_alloc_block_rsv(root, BTRFS_BLOCK_RSV_TEMP);
Tsutomu Itohb5324022011-07-19 07:27:20 +00003196 if (!block_rsv)
3197 return -ENOMEM;
Josef Bacik7b128762008-07-24 12:17:14 -04003198 }
3199
Yan, Zhengd68fc572010-05-16 10:49:58 -04003200 spin_lock(&root->orphan_lock);
3201 if (!root->orphan_block_rsv) {
3202 root->orphan_block_rsv = block_rsv;
3203 } else if (block_rsv) {
3204 btrfs_free_block_rsv(root, block_rsv);
3205 block_rsv = NULL;
3206 }
Josef Bacik7b128762008-07-24 12:17:14 -04003207
Josef Bacik8a35d952012-05-23 14:26:42 -04003208 if (!test_and_set_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
3209 &BTRFS_I(inode)->runtime_flags)) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04003210#if 0
3211 /*
3212 * For proper ENOSPC handling, we should do orphan
3213 * cleanup when mounting. But this introduces backward
3214 * compatibility issue.
3215 */
3216 if (!xchg(&root->orphan_item_inserted, 1))
3217 insert = 2;
3218 else
3219 insert = 1;
3220#endif
3221 insert = 1;
Miao Xie321f0e72012-08-28 22:13:02 -06003222 atomic_inc(&root->orphan_inodes);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003223 }
Josef Bacik7b128762008-07-24 12:17:14 -04003224
Josef Bacik72ac3c02012-05-23 14:13:11 -04003225 if (!test_and_set_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
3226 &BTRFS_I(inode)->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04003227 reserve = 1;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003228 spin_unlock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04003229
Yan, Zhengd68fc572010-05-16 10:49:58 -04003230 /* grab metadata reservation from transaction handle */
3231 if (reserve) {
3232 ret = btrfs_orphan_reserve_metadata(trans, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003233 BUG_ON(ret); /* -ENOSPC in reservation; Logic error? JDM */
Yan, Zhengd68fc572010-05-16 10:49:58 -04003234 }
3235
3236 /* insert an orphan item to track this unlinked/truncated file */
3237 if (insert >= 1) {
Li Zefan33345d012011-04-20 10:31:50 +08003238 ret = btrfs_insert_orphan_item(trans, root, btrfs_ino(inode));
Josef Bacik4ef31a42013-08-13 14:10:08 -04003239 if (ret) {
Filipe David Borba Manana703c88e2013-09-22 21:54:55 +01003240 atomic_dec(&root->orphan_inodes);
Josef Bacik4ef31a42013-08-13 14:10:08 -04003241 if (reserve) {
3242 clear_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
3243 &BTRFS_I(inode)->runtime_flags);
3244 btrfs_orphan_release_metadata(inode);
3245 }
3246 if (ret != -EEXIST) {
Josef Bacike8e7cff2013-08-21 15:54:00 -04003247 clear_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
3248 &BTRFS_I(inode)->runtime_flags);
Josef Bacik4ef31a42013-08-13 14:10:08 -04003249 btrfs_abort_transaction(trans, root, ret);
3250 return ret;
3251 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003252 }
3253 ret = 0;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003254 }
3255
3256 /* insert an orphan item to track subvolume contains orphan files */
3257 if (insert >= 2) {
3258 ret = btrfs_insert_orphan_item(trans, root->fs_info->tree_root,
3259 root->root_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003260 if (ret && ret != -EEXIST) {
3261 btrfs_abort_transaction(trans, root, ret);
3262 return ret;
3263 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04003264 }
3265 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04003266}
3267
3268/*
3269 * We have done the truncate/delete so we can go ahead and remove the orphan
3270 * item for this particular inode.
3271 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00003272static int btrfs_orphan_del(struct btrfs_trans_handle *trans,
3273 struct inode *inode)
Josef Bacik7b128762008-07-24 12:17:14 -04003274{
3275 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003276 int delete_item = 0;
3277 int release_rsv = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04003278 int ret = 0;
3279
Yan, Zhengd68fc572010-05-16 10:49:58 -04003280 spin_lock(&root->orphan_lock);
Josef Bacik8a35d952012-05-23 14:26:42 -04003281 if (test_and_clear_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
3282 &BTRFS_I(inode)->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04003283 delete_item = 1;
Josef Bacik7b128762008-07-24 12:17:14 -04003284
Josef Bacik72ac3c02012-05-23 14:13:11 -04003285 if (test_and_clear_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
3286 &BTRFS_I(inode)->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04003287 release_rsv = 1;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003288 spin_unlock(&root->orphan_lock);
3289
Filipe David Borba Manana703c88e2013-09-22 21:54:55 +01003290 if (delete_item) {
Josef Bacik8a35d952012-05-23 14:26:42 -04003291 atomic_dec(&root->orphan_inodes);
Filipe David Borba Manana703c88e2013-09-22 21:54:55 +01003292 if (trans)
3293 ret = btrfs_del_orphan_item(trans, root,
3294 btrfs_ino(inode));
Josef Bacik8a35d952012-05-23 14:26:42 -04003295 }
Josef Bacik7b128762008-07-24 12:17:14 -04003296
Filipe David Borba Manana703c88e2013-09-22 21:54:55 +01003297 if (release_rsv)
3298 btrfs_orphan_release_metadata(inode);
3299
Josef Bacik4ef31a42013-08-13 14:10:08 -04003300 return ret;
Josef Bacik7b128762008-07-24 12:17:14 -04003301}
3302
3303/*
3304 * this cleans up any orphans that may be left on the list from the last use
3305 * of this root.
3306 */
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003307int btrfs_orphan_cleanup(struct btrfs_root *root)
Josef Bacik7b128762008-07-24 12:17:14 -04003308{
3309 struct btrfs_path *path;
3310 struct extent_buffer *leaf;
Josef Bacik7b128762008-07-24 12:17:14 -04003311 struct btrfs_key key, found_key;
3312 struct btrfs_trans_handle *trans;
3313 struct inode *inode;
Josef Bacik8f6d7f42011-09-26 15:55:20 -04003314 u64 last_objectid = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04003315 int ret = 0, nr_unlink = 0, nr_truncate = 0;
3316
Yan, Zhengd68fc572010-05-16 10:49:58 -04003317 if (cmpxchg(&root->orphan_cleanup_state, 0, ORPHAN_CLEANUP_STARTED))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003318 return 0;
Yan, Zhengc71bf092009-11-12 09:34:40 +00003319
3320 path = btrfs_alloc_path();
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003321 if (!path) {
3322 ret = -ENOMEM;
3323 goto out;
3324 }
Josef Bacik7b128762008-07-24 12:17:14 -04003325 path->reada = -1;
3326
3327 key.objectid = BTRFS_ORPHAN_OBJECTID;
David Sterba962a2982014-06-04 18:41:45 +02003328 key.type = BTRFS_ORPHAN_ITEM_KEY;
Josef Bacik7b128762008-07-24 12:17:14 -04003329 key.offset = (u64)-1;
3330
Josef Bacik7b128762008-07-24 12:17:14 -04003331 while (1) {
3332 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003333 if (ret < 0)
3334 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003335
3336 /*
3337 * if ret == 0 means we found what we were searching for, which
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003338 * is weird, but possible, so only screw with path if we didn't
Josef Bacik7b128762008-07-24 12:17:14 -04003339 * find the key and see if we have stuff that matches
3340 */
3341 if (ret > 0) {
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003342 ret = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04003343 if (path->slots[0] == 0)
3344 break;
3345 path->slots[0]--;
3346 }
3347
3348 /* pull out the item */
3349 leaf = path->nodes[0];
Josef Bacik7b128762008-07-24 12:17:14 -04003350 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3351
3352 /* make sure the item matches what we want */
3353 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
3354 break;
David Sterba962a2982014-06-04 18:41:45 +02003355 if (found_key.type != BTRFS_ORPHAN_ITEM_KEY)
Josef Bacik7b128762008-07-24 12:17:14 -04003356 break;
3357
3358 /* release the path since we're done with it */
David Sterbab3b4aa72011-04-21 01:20:15 +02003359 btrfs_release_path(path);
Josef Bacik7b128762008-07-24 12:17:14 -04003360
3361 /*
3362 * this is where we are basically btrfs_lookup, without the
3363 * crossing root thing. we store the inode number in the
3364 * offset of the orphan item.
3365 */
Josef Bacik8f6d7f42011-09-26 15:55:20 -04003366
3367 if (found_key.offset == last_objectid) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00003368 btrfs_err(root->fs_info,
3369 "Error removing orphan entry, stopping orphan cleanup");
Josef Bacik8f6d7f42011-09-26 15:55:20 -04003370 ret = -EINVAL;
3371 goto out;
3372 }
3373
3374 last_objectid = found_key.offset;
3375
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003376 found_key.objectid = found_key.offset;
3377 found_key.type = BTRFS_INODE_ITEM_KEY;
3378 found_key.offset = 0;
Josef Bacik73f73412009-12-04 17:38:27 +00003379 inode = btrfs_iget(root->fs_info->sb, &found_key, root, NULL);
Rusty Russell8c6ffba2013-07-15 11:20:32 +09303380 ret = PTR_ERR_OR_ZERO(inode);
Josef Bacika8c9e572011-09-21 16:55:59 -04003381 if (ret && ret != -ESTALE)
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003382 goto out;
Josef Bacika8c9e572011-09-21 16:55:59 -04003383
Arne Jansenf8e9e0b2011-12-14 20:12:02 -05003384 if (ret == -ESTALE && root == root->fs_info->tree_root) {
3385 struct btrfs_root *dead_root;
3386 struct btrfs_fs_info *fs_info = root->fs_info;
3387 int is_dead_root = 0;
3388
3389 /*
3390 * this is an orphan in the tree root. Currently these
3391 * could come from 2 sources:
3392 * a) a snapshot deletion in progress
3393 * b) a free space cache inode
3394 * We need to distinguish those two, as the snapshot
3395 * orphan must not get deleted.
3396 * find_dead_roots already ran before us, so if this
3397 * is a snapshot deletion, we should find the root
3398 * in the dead_roots list
3399 */
3400 spin_lock(&fs_info->trans_lock);
3401 list_for_each_entry(dead_root, &fs_info->dead_roots,
3402 root_list) {
3403 if (dead_root->root_key.objectid ==
3404 found_key.objectid) {
3405 is_dead_root = 1;
3406 break;
3407 }
3408 }
3409 spin_unlock(&fs_info->trans_lock);
3410 if (is_dead_root) {
3411 /* prevent this orphan from being found again */
3412 key.offset = found_key.objectid - 1;
3413 continue;
3414 }
3415 }
Josef Bacika8c9e572011-09-21 16:55:59 -04003416 /*
3417 * Inode is already gone but the orphan item is still there,
3418 * kill the orphan item.
3419 */
3420 if (ret == -ESTALE) {
3421 trans = btrfs_start_transaction(root, 1);
3422 if (IS_ERR(trans)) {
3423 ret = PTR_ERR(trans);
3424 goto out;
3425 }
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00003426 btrfs_debug(root->fs_info, "auto deleting %Lu",
3427 found_key.objectid);
Josef Bacika8c9e572011-09-21 16:55:59 -04003428 ret = btrfs_del_orphan_item(trans, root,
3429 found_key.objectid);
Josef Bacika8c9e572011-09-21 16:55:59 -04003430 btrfs_end_transaction(trans, root);
Josef Bacik4ef31a42013-08-13 14:10:08 -04003431 if (ret)
3432 goto out;
Josef Bacika8c9e572011-09-21 16:55:59 -04003433 continue;
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003434 }
Josef Bacik7b128762008-07-24 12:17:14 -04003435
Josef Bacik7b128762008-07-24 12:17:14 -04003436 /*
3437 * add this inode to the orphan list so btrfs_orphan_del does
3438 * the proper thing when we hit it
3439 */
Josef Bacik8a35d952012-05-23 14:26:42 -04003440 set_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
3441 &BTRFS_I(inode)->runtime_flags);
Josef Bacik925396e2013-02-01 15:57:47 -05003442 atomic_inc(&root->orphan_inodes);
Josef Bacik7b128762008-07-24 12:17:14 -04003443
Josef Bacik7b128762008-07-24 12:17:14 -04003444 /* if we have links, this was a truncate, lets do that */
3445 if (inode->i_nlink) {
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303446 if (WARN_ON(!S_ISREG(inode->i_mode))) {
Josef Bacika41ad392011-01-31 15:30:16 -05003447 iput(inode);
3448 continue;
3449 }
Josef Bacik7b128762008-07-24 12:17:14 -04003450 nr_truncate++;
Josef Bacikf3fe8202013-01-07 17:03:21 -05003451
3452 /* 1 for the orphan item deletion. */
3453 trans = btrfs_start_transaction(root, 1);
3454 if (IS_ERR(trans)) {
Josef Bacikc69b26b2013-06-03 16:51:23 -04003455 iput(inode);
Josef Bacikf3fe8202013-01-07 17:03:21 -05003456 ret = PTR_ERR(trans);
3457 goto out;
3458 }
3459 ret = btrfs_orphan_add(trans, inode);
3460 btrfs_end_transaction(trans, root);
Josef Bacikc69b26b2013-06-03 16:51:23 -04003461 if (ret) {
3462 iput(inode);
Josef Bacikf3fe8202013-01-07 17:03:21 -05003463 goto out;
Josef Bacikc69b26b2013-06-03 16:51:23 -04003464 }
Josef Bacikf3fe8202013-01-07 17:03:21 -05003465
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003466 ret = btrfs_truncate(inode);
Josef Bacik4a7d0f62013-02-07 16:27:28 -05003467 if (ret)
3468 btrfs_orphan_del(NULL, inode);
Josef Bacik7b128762008-07-24 12:17:14 -04003469 } else {
3470 nr_unlink++;
3471 }
3472
3473 /* this will do delete_inode and everything for us */
3474 iput(inode);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003475 if (ret)
3476 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003477 }
Miao Xie3254c872011-11-10 20:45:05 -05003478 /* release the path since we're done with it */
3479 btrfs_release_path(path);
3480
Yan, Zhengd68fc572010-05-16 10:49:58 -04003481 root->orphan_cleanup_state = ORPHAN_CLEANUP_DONE;
3482
3483 if (root->orphan_block_rsv)
3484 btrfs_block_rsv_release(root, root->orphan_block_rsv,
3485 (u64)-1);
3486
Miao Xie27cdeb72014-04-02 19:51:05 +08003487 if (root->orphan_block_rsv ||
3488 test_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &root->state)) {
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003489 trans = btrfs_join_transaction(root);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003490 if (!IS_ERR(trans))
3491 btrfs_end_transaction(trans, root);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003492 }
Josef Bacik7b128762008-07-24 12:17:14 -04003493
3494 if (nr_unlink)
David Sterba4884b472013-03-20 13:31:27 +00003495 btrfs_debug(root->fs_info, "unlinked %d orphans", nr_unlink);
Josef Bacik7b128762008-07-24 12:17:14 -04003496 if (nr_truncate)
David Sterba4884b472013-03-20 13:31:27 +00003497 btrfs_debug(root->fs_info, "truncated %d orphans", nr_truncate);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003498
3499out:
3500 if (ret)
David Sterba68b663d2014-12-19 18:38:37 +01003501 btrfs_err(root->fs_info,
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00003502 "could not do orphan cleanup %d", ret);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003503 btrfs_free_path(path);
3504 return ret;
Josef Bacik7b128762008-07-24 12:17:14 -04003505}
3506
Chris Masond352ac62008-09-29 15:18:18 -04003507/*
Chris Mason46a53cc2009-04-27 11:47:50 -04003508 * very simple check to peek ahead in the leaf looking for xattrs. If we
3509 * don't find any xattrs, we know there can't be any acls.
3510 *
3511 * slot is the slot the inode is in, objectid is the objectid of the inode
3512 */
3513static noinline int acls_after_inode_item(struct extent_buffer *leaf,
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003514 int slot, u64 objectid,
3515 int *first_xattr_slot)
Chris Mason46a53cc2009-04-27 11:47:50 -04003516{
3517 u32 nritems = btrfs_header_nritems(leaf);
3518 struct btrfs_key found_key;
Josef Bacikf23b5a52013-06-19 10:16:26 -04003519 static u64 xattr_access = 0;
3520 static u64 xattr_default = 0;
Chris Mason46a53cc2009-04-27 11:47:50 -04003521 int scanned = 0;
3522
Josef Bacikf23b5a52013-06-19 10:16:26 -04003523 if (!xattr_access) {
3524 xattr_access = btrfs_name_hash(POSIX_ACL_XATTR_ACCESS,
3525 strlen(POSIX_ACL_XATTR_ACCESS));
3526 xattr_default = btrfs_name_hash(POSIX_ACL_XATTR_DEFAULT,
3527 strlen(POSIX_ACL_XATTR_DEFAULT));
3528 }
3529
Chris Mason46a53cc2009-04-27 11:47:50 -04003530 slot++;
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003531 *first_xattr_slot = -1;
Chris Mason46a53cc2009-04-27 11:47:50 -04003532 while (slot < nritems) {
3533 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3534
3535 /* we found a different objectid, there must not be acls */
3536 if (found_key.objectid != objectid)
3537 return 0;
3538
3539 /* we found an xattr, assume we've got an acl */
Josef Bacikf23b5a52013-06-19 10:16:26 -04003540 if (found_key.type == BTRFS_XATTR_ITEM_KEY) {
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003541 if (*first_xattr_slot == -1)
3542 *first_xattr_slot = slot;
Josef Bacikf23b5a52013-06-19 10:16:26 -04003543 if (found_key.offset == xattr_access ||
3544 found_key.offset == xattr_default)
3545 return 1;
3546 }
Chris Mason46a53cc2009-04-27 11:47:50 -04003547
3548 /*
3549 * we found a key greater than an xattr key, there can't
3550 * be any acls later on
3551 */
3552 if (found_key.type > BTRFS_XATTR_ITEM_KEY)
3553 return 0;
3554
3555 slot++;
3556 scanned++;
3557
3558 /*
3559 * it goes inode, inode backrefs, xattrs, extents,
3560 * so if there are a ton of hard links to an inode there can
3561 * be a lot of backrefs. Don't waste time searching too hard,
3562 * this is just an optimization
3563 */
3564 if (scanned >= 8)
3565 break;
3566 }
3567 /* we hit the end of the leaf before we found an xattr or
3568 * something larger than an xattr. We have to assume the inode
3569 * has acls
3570 */
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003571 if (*first_xattr_slot == -1)
3572 *first_xattr_slot = slot;
Chris Mason46a53cc2009-04-27 11:47:50 -04003573 return 1;
3574}
3575
3576/*
Chris Masond352ac62008-09-29 15:18:18 -04003577 * read an inode from the btree into the in-memory inode
3578 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003579static void btrfs_read_locked_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04003580{
3581 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04003582 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003583 struct btrfs_inode_item *inode_item;
3584 struct btrfs_root *root = BTRFS_I(inode)->root;
3585 struct btrfs_key location;
Miao Xie67de1172013-12-26 13:07:06 +08003586 unsigned long ptr;
Chris Mason46a53cc2009-04-27 11:47:50 -04003587 int maybe_acls;
Josef Bacik618e21d2007-07-11 10:18:17 -04003588 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -04003589 int ret;
Miao Xie2f7e33d2011-06-23 07:27:13 +00003590 bool filled = false;
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003591 int first_xattr_slot;
Miao Xie2f7e33d2011-06-23 07:27:13 +00003592
3593 ret = btrfs_fill_inode(inode, &rdev);
3594 if (!ret)
3595 filled = true;
Chris Mason39279cc2007-06-12 06:35:45 -04003596
3597 path = btrfs_alloc_path();
Mark Fasheh1748f842011-07-12 11:25:31 -07003598 if (!path)
3599 goto make_bad;
3600
Chris Mason39279cc2007-06-12 06:35:45 -04003601 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -05003602
Chris Mason39279cc2007-06-12 06:35:45 -04003603 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003604 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -04003605 goto make_bad;
Chris Mason39279cc2007-06-12 06:35:45 -04003606
Chris Mason5f39d392007-10-15 16:14:19 -04003607 leaf = path->nodes[0];
Miao Xie2f7e33d2011-06-23 07:27:13 +00003608
3609 if (filled)
Miao Xie67de1172013-12-26 13:07:06 +08003610 goto cache_index;
Miao Xie2f7e33d2011-06-23 07:27:13 +00003611
Chris Mason5f39d392007-10-15 16:14:19 -04003612 inode_item = btrfs_item_ptr(leaf, path->slots[0],
3613 struct btrfs_inode_item);
Chris Mason5f39d392007-10-15 16:14:19 -04003614 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
Miklos Szeredibfe86842011-10-28 14:13:29 +02003615 set_nlink(inode, btrfs_inode_nlink(leaf, inode_item));
Eric W. Biederman2f2f43d2012-02-10 11:05:07 -08003616 i_uid_write(inode, btrfs_inode_uid(leaf, inode_item));
3617 i_gid_write(inode, btrfs_inode_gid(leaf, inode_item));
Chris Masondbe674a2008-07-17 12:54:05 -04003618 btrfs_i_size_write(inode, btrfs_inode_size(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04003619
David Sterbaa937b972014-12-12 17:39:12 +01003620 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, &inode_item->atime);
3621 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, &inode_item->atime);
Chris Mason5f39d392007-10-15 16:14:19 -04003622
David Sterbaa937b972014-12-12 17:39:12 +01003623 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, &inode_item->mtime);
3624 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, &inode_item->mtime);
Chris Mason5f39d392007-10-15 16:14:19 -04003625
David Sterbaa937b972014-12-12 17:39:12 +01003626 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, &inode_item->ctime);
3627 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, &inode_item->ctime);
Chris Mason5f39d392007-10-15 16:14:19 -04003628
chandan r9cc97d62012-07-04 12:48:07 +05303629 BTRFS_I(inode)->i_otime.tv_sec =
3630 btrfs_timespec_sec(leaf, &inode_item->otime);
3631 BTRFS_I(inode)->i_otime.tv_nsec =
3632 btrfs_timespec_nsec(leaf, &inode_item->otime);
Chris Mason5f39d392007-10-15 16:14:19 -04003633
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003634 inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04003635 BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item);
Josef Bacik5dc562c2012-08-17 13:14:17 -04003636 BTRFS_I(inode)->last_trans = btrfs_inode_transid(leaf, inode_item);
3637
Josef Bacik0c4d2d92012-04-05 15:03:02 -04003638 inode->i_version = btrfs_inode_sequence(leaf, inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04003639 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik618e21d2007-07-11 10:18:17 -04003640 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04003641 rdev = btrfs_inode_rdev(leaf, inode_item);
3642
Josef Bacikaec74772008-07-24 12:12:38 -04003643 BTRFS_I(inode)->index_cnt = (u64)-1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05003644 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Miao Xie67de1172013-12-26 13:07:06 +08003645
3646cache_index:
Yang Dongsheng6e17d302015-04-09 12:08:43 +08003647 /*
3648 * If we were modified in the current generation and evicted from memory
3649 * and then re-read we need to do a full sync since we don't have any
3650 * idea about which extents were modified before we were evicted from
3651 * cache.
3652 *
3653 * This is required for both inode re-read from disk and delayed inode
3654 * in delayed_nodes_tree.
3655 */
3656 if (BTRFS_I(inode)->last_trans == root->fs_info->generation)
3657 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3658 &BTRFS_I(inode)->runtime_flags);
3659
Filipe Mananabde6c242015-07-24 00:00:19 +01003660 /*
3661 * We don't persist the id of the transaction where an unlink operation
3662 * against the inode was last made. So here we assume the inode might
3663 * have been evicted, and therefore the exact value of last_unlink_trans
3664 * lost, and set it to last_trans to avoid metadata inconsistencies
3665 * between the inode and its parent if the inode is fsync'ed and the log
3666 * replayed. For example, in the scenario:
3667 *
3668 * touch mydir/foo
3669 * ln mydir/foo mydir/bar
3670 * sync
3671 * unlink mydir/bar
3672 * echo 2 > /proc/sys/vm/drop_caches # evicts inode
3673 * xfs_io -c fsync mydir/foo
3674 * <power failure>
3675 * mount fs, triggers fsync log replay
3676 *
3677 * We must make sure that when we fsync our inode foo we also log its
3678 * parent inode, otherwise after log replay the parent still has the
3679 * dentry with the "bar" name but our inode foo has a link count of 1
3680 * and doesn't have an inode ref with the name "bar" anymore.
3681 *
3682 * Setting last_unlink_trans to last_trans is a pessimistic approach,
3683 * but it guarantees correctness at the expense of ocassional full
3684 * transaction commits on fsync if our inode is a directory, or if our
3685 * inode is not a directory, logging its parent unnecessarily.
3686 */
3687 BTRFS_I(inode)->last_unlink_trans = BTRFS_I(inode)->last_trans;
3688
Miao Xie67de1172013-12-26 13:07:06 +08003689 path->slots[0]++;
3690 if (inode->i_nlink != 1 ||
3691 path->slots[0] >= btrfs_header_nritems(leaf))
3692 goto cache_acl;
3693
3694 btrfs_item_key_to_cpu(leaf, &location, path->slots[0]);
3695 if (location.objectid != btrfs_ino(inode))
3696 goto cache_acl;
3697
3698 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
3699 if (location.type == BTRFS_INODE_REF_KEY) {
3700 struct btrfs_inode_ref *ref;
3701
3702 ref = (struct btrfs_inode_ref *)ptr;
3703 BTRFS_I(inode)->dir_index = btrfs_inode_ref_index(leaf, ref);
3704 } else if (location.type == BTRFS_INODE_EXTREF_KEY) {
3705 struct btrfs_inode_extref *extref;
3706
3707 extref = (struct btrfs_inode_extref *)ptr;
3708 BTRFS_I(inode)->dir_index = btrfs_inode_extref_index(leaf,
3709 extref);
3710 }
Miao Xie2f7e33d2011-06-23 07:27:13 +00003711cache_acl:
Chris Mason46a53cc2009-04-27 11:47:50 -04003712 /*
3713 * try to precache a NULL acl entry for files that don't have
3714 * any xattrs or acls
3715 */
Li Zefan33345d012011-04-20 10:31:50 +08003716 maybe_acls = acls_after_inode_item(leaf, path->slots[0],
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003717 btrfs_ino(inode), &first_xattr_slot);
3718 if (first_xattr_slot != -1) {
3719 path->slots[0] = first_xattr_slot;
3720 ret = btrfs_load_inode_props(inode, path);
3721 if (ret)
3722 btrfs_err(root->fs_info,
David Sterba351fd352014-05-15 16:48:20 +02003723 "error loading props for ino %llu (root %llu): %d",
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003724 btrfs_ino(inode),
3725 root->root_key.objectid, ret);
3726 }
3727 btrfs_free_path(path);
3728
Al Viro72c04902009-06-24 16:58:48 -04003729 if (!maybe_acls)
3730 cache_no_acl(inode);
Chris Mason46a53cc2009-04-27 11:47:50 -04003731
Chris Mason39279cc2007-06-12 06:35:45 -04003732 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -04003733 case S_IFREG:
3734 inode->i_mapping->a_ops = &btrfs_aops;
Chris Masond1310b22008-01-24 16:13:08 -05003735 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04003736 inode->i_fop = &btrfs_file_operations;
3737 inode->i_op = &btrfs_file_inode_operations;
3738 break;
3739 case S_IFDIR:
3740 inode->i_fop = &btrfs_dir_file_operations;
3741 if (root == root->fs_info->tree_root)
3742 inode->i_op = &btrfs_dir_ro_inode_operations;
3743 else
3744 inode->i_op = &btrfs_dir_inode_operations;
3745 break;
3746 case S_IFLNK:
3747 inode->i_op = &btrfs_symlink_inode_operations;
3748 inode->i_mapping->a_ops = &btrfs_symlink_aops;
3749 break;
Josef Bacik618e21d2007-07-11 10:18:17 -04003750 default:
Jim Owens0279b4c2009-02-04 09:29:13 -05003751 inode->i_op = &btrfs_special_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -04003752 init_special_inode(inode, inode->i_mode, rdev);
3753 break;
Chris Mason39279cc2007-06-12 06:35:45 -04003754 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02003755
3756 btrfs_update_iflags(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003757 return;
3758
3759make_bad:
Chris Mason39279cc2007-06-12 06:35:45 -04003760 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003761 make_bad_inode(inode);
3762}
3763
Chris Masond352ac62008-09-29 15:18:18 -04003764/*
3765 * given a leaf and an inode, copy the inode fields into the leaf
3766 */
Chris Masone02119d2008-09-05 16:13:11 -04003767static void fill_inode_item(struct btrfs_trans_handle *trans,
3768 struct extent_buffer *leaf,
Chris Mason5f39d392007-10-15 16:14:19 -04003769 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -04003770 struct inode *inode)
3771{
Liu Bo51fab692012-12-27 09:01:21 +00003772 struct btrfs_map_token token;
Chris Mason5f39d392007-10-15 16:14:19 -04003773
Liu Bo51fab692012-12-27 09:01:21 +00003774 btrfs_init_map_token(&token);
Chris Mason5f39d392007-10-15 16:14:19 -04003775
Liu Bo51fab692012-12-27 09:01:21 +00003776 btrfs_set_token_inode_uid(leaf, item, i_uid_read(inode), &token);
3777 btrfs_set_token_inode_gid(leaf, item, i_gid_read(inode), &token);
3778 btrfs_set_token_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size,
3779 &token);
3780 btrfs_set_token_inode_mode(leaf, item, inode->i_mode, &token);
3781 btrfs_set_token_inode_nlink(leaf, item, inode->i_nlink, &token);
Chris Mason5f39d392007-10-15 16:14:19 -04003782
David Sterbaa937b972014-12-12 17:39:12 +01003783 btrfs_set_token_timespec_sec(leaf, &item->atime,
Liu Bo51fab692012-12-27 09:01:21 +00003784 inode->i_atime.tv_sec, &token);
David Sterbaa937b972014-12-12 17:39:12 +01003785 btrfs_set_token_timespec_nsec(leaf, &item->atime,
Liu Bo51fab692012-12-27 09:01:21 +00003786 inode->i_atime.tv_nsec, &token);
Chris Mason5f39d392007-10-15 16:14:19 -04003787
David Sterbaa937b972014-12-12 17:39:12 +01003788 btrfs_set_token_timespec_sec(leaf, &item->mtime,
Liu Bo51fab692012-12-27 09:01:21 +00003789 inode->i_mtime.tv_sec, &token);
David Sterbaa937b972014-12-12 17:39:12 +01003790 btrfs_set_token_timespec_nsec(leaf, &item->mtime,
Liu Bo51fab692012-12-27 09:01:21 +00003791 inode->i_mtime.tv_nsec, &token);
3792
David Sterbaa937b972014-12-12 17:39:12 +01003793 btrfs_set_token_timespec_sec(leaf, &item->ctime,
Liu Bo51fab692012-12-27 09:01:21 +00003794 inode->i_ctime.tv_sec, &token);
David Sterbaa937b972014-12-12 17:39:12 +01003795 btrfs_set_token_timespec_nsec(leaf, &item->ctime,
Liu Bo51fab692012-12-27 09:01:21 +00003796 inode->i_ctime.tv_nsec, &token);
3797
chandan r9cc97d62012-07-04 12:48:07 +05303798 btrfs_set_token_timespec_sec(leaf, &item->otime,
3799 BTRFS_I(inode)->i_otime.tv_sec, &token);
3800 btrfs_set_token_timespec_nsec(leaf, &item->otime,
3801 BTRFS_I(inode)->i_otime.tv_nsec, &token);
3802
Liu Bo51fab692012-12-27 09:01:21 +00003803 btrfs_set_token_inode_nbytes(leaf, item, inode_get_bytes(inode),
3804 &token);
3805 btrfs_set_token_inode_generation(leaf, item, BTRFS_I(inode)->generation,
3806 &token);
3807 btrfs_set_token_inode_sequence(leaf, item, inode->i_version, &token);
3808 btrfs_set_token_inode_transid(leaf, item, trans->transid, &token);
3809 btrfs_set_token_inode_rdev(leaf, item, inode->i_rdev, &token);
3810 btrfs_set_token_inode_flags(leaf, item, BTRFS_I(inode)->flags, &token);
3811 btrfs_set_token_inode_block_group(leaf, item, 0, &token);
Chris Mason39279cc2007-06-12 06:35:45 -04003812}
3813
Chris Masond352ac62008-09-29 15:18:18 -04003814/*
3815 * copy everything in the in-memory inode into the btree.
3816 */
Chris Mason21151332011-11-10 20:39:08 -05003817static noinline int btrfs_update_inode_item(struct btrfs_trans_handle *trans,
Chris Masond3977122009-01-05 21:25:51 -05003818 struct btrfs_root *root, struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04003819{
3820 struct btrfs_inode_item *inode_item;
3821 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04003822 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003823 int ret;
3824
3825 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08003826 if (!path)
3827 return -ENOMEM;
3828
Chris Masonb9473432009-03-13 11:00:37 -04003829 path->leave_spinning = 1;
Miao Xie16cdcec2011-04-22 18:12:22 +08003830 ret = btrfs_lookup_inode(trans, root, path, &BTRFS_I(inode)->location,
3831 1);
Chris Mason39279cc2007-06-12 06:35:45 -04003832 if (ret) {
3833 if (ret > 0)
3834 ret = -ENOENT;
3835 goto failed;
3836 }
3837
Chris Mason5f39d392007-10-15 16:14:19 -04003838 leaf = path->nodes[0];
3839 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Miao Xie16cdcec2011-04-22 18:12:22 +08003840 struct btrfs_inode_item);
Chris Mason39279cc2007-06-12 06:35:45 -04003841
Chris Masone02119d2008-09-05 16:13:11 -04003842 fill_inode_item(trans, leaf, inode_item, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04003843 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04003844 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003845 ret = 0;
3846failed:
Chris Mason39279cc2007-06-12 06:35:45 -04003847 btrfs_free_path(path);
3848 return ret;
3849}
3850
Chris Masond352ac62008-09-29 15:18:18 -04003851/*
Chris Mason21151332011-11-10 20:39:08 -05003852 * copy everything in the in-memory inode into the btree.
3853 */
3854noinline int btrfs_update_inode(struct btrfs_trans_handle *trans,
3855 struct btrfs_root *root, struct inode *inode)
3856{
3857 int ret;
3858
3859 /*
3860 * If the inode is a free space inode, we can deadlock during commit
3861 * if we put it into the delayed code.
3862 *
3863 * The data relocation inode should also be directly updated
3864 * without delay
3865 */
Liu Bo83eea1f2012-07-10 05:28:39 -06003866 if (!btrfs_is_free_space_inode(inode)
Josef Bacik1d52c782014-09-18 11:30:44 -04003867 && root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID
3868 && !root->fs_info->log_root_recovering) {
Alexander Block8ea05e32012-07-25 17:35:53 +02003869 btrfs_update_root_times(trans, root);
3870
Chris Mason21151332011-11-10 20:39:08 -05003871 ret = btrfs_delayed_update_inode(trans, root, inode);
3872 if (!ret)
3873 btrfs_set_inode_last_trans(trans, inode);
3874 return ret;
3875 }
3876
3877 return btrfs_update_inode_item(trans, root, inode);
3878}
3879
Josef Bacikbe6aef62012-10-22 15:43:12 -04003880noinline int btrfs_update_inode_fallback(struct btrfs_trans_handle *trans,
3881 struct btrfs_root *root,
3882 struct inode *inode)
Chris Mason21151332011-11-10 20:39:08 -05003883{
3884 int ret;
3885
3886 ret = btrfs_update_inode(trans, root, inode);
3887 if (ret == -ENOSPC)
3888 return btrfs_update_inode_item(trans, root, inode);
3889 return ret;
3890}
3891
3892/*
Chris Masond352ac62008-09-29 15:18:18 -04003893 * unlink helper that gets used here in inode.c and in the tree logging
3894 * recovery code. It remove a link in a directory with a given name, and
3895 * also drops the back refs in the inode to the directory
3896 */
Al Viro92986792011-03-04 17:14:37 +00003897static int __btrfs_unlink_inode(struct btrfs_trans_handle *trans,
3898 struct btrfs_root *root,
3899 struct inode *dir, struct inode *inode,
3900 const char *name, int name_len)
Chris Mason39279cc2007-06-12 06:35:45 -04003901{
3902 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04003903 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04003904 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003905 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -04003906 struct btrfs_key key;
Josef Bacikaec74772008-07-24 12:12:38 -04003907 u64 index;
Li Zefan33345d012011-04-20 10:31:50 +08003908 u64 ino = btrfs_ino(inode);
3909 u64 dir_ino = btrfs_ino(dir);
Chris Mason39279cc2007-06-12 06:35:45 -04003910
3911 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04003912 if (!path) {
3913 ret = -ENOMEM;
Tsutomu Itoh554233a2011-02-03 03:16:25 +00003914 goto out;
Chris Mason54aa1f42007-06-22 14:16:25 -04003915 }
3916
Chris Masonb9473432009-03-13 11:00:37 -04003917 path->leave_spinning = 1;
Li Zefan33345d012011-04-20 10:31:50 +08003918 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Chris Mason39279cc2007-06-12 06:35:45 -04003919 name, name_len, -1);
3920 if (IS_ERR(di)) {
3921 ret = PTR_ERR(di);
3922 goto err;
3923 }
3924 if (!di) {
3925 ret = -ENOENT;
3926 goto err;
3927 }
Chris Mason5f39d392007-10-15 16:14:19 -04003928 leaf = path->nodes[0];
3929 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -04003930 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -04003931 if (ret)
3932 goto err;
David Sterbab3b4aa72011-04-21 01:20:15 +02003933 btrfs_release_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003934
Miao Xie67de1172013-12-26 13:07:06 +08003935 /*
3936 * If we don't have dir index, we have to get it by looking up
3937 * the inode ref, since we get the inode ref, remove it directly,
3938 * it is unnecessary to do delayed deletion.
3939 *
3940 * But if we have dir index, needn't search inode ref to get it.
3941 * Since the inode ref is close to the inode item, it is better
3942 * that we delay to delete it, and just do this deletion when
3943 * we update the inode item.
3944 */
3945 if (BTRFS_I(inode)->dir_index) {
3946 ret = btrfs_delayed_delete_inode_ref(inode);
3947 if (!ret) {
3948 index = BTRFS_I(inode)->dir_index;
3949 goto skip_backref;
3950 }
3951 }
3952
Li Zefan33345d012011-04-20 10:31:50 +08003953 ret = btrfs_del_inode_ref(trans, root, name, name_len, ino,
3954 dir_ino, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04003955 if (ret) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00003956 btrfs_info(root->fs_info,
3957 "failed to delete reference to %.*s, inode %llu parent %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003958 name_len, name, ino, dir_ino);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003959 btrfs_abort_transaction(trans, root, ret);
Josef Bacikaec74772008-07-24 12:12:38 -04003960 goto err;
3961 }
Miao Xie67de1172013-12-26 13:07:06 +08003962skip_backref:
Miao Xie16cdcec2011-04-22 18:12:22 +08003963 ret = btrfs_delete_delayed_dir_index(trans, root, dir, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003964 if (ret) {
3965 btrfs_abort_transaction(trans, root, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04003966 goto err;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003967 }
Chris Mason39279cc2007-06-12 06:35:45 -04003968
Chris Masone02119d2008-09-05 16:13:11 -04003969 ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len,
Li Zefan33345d012011-04-20 10:31:50 +08003970 inode, dir_ino);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003971 if (ret != 0 && ret != -ENOENT) {
3972 btrfs_abort_transaction(trans, root, ret);
3973 goto err;
3974 }
Chris Masone02119d2008-09-05 16:13:11 -04003975
3976 ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len,
3977 dir, index);
Chris Mason6418c962010-10-30 07:34:24 -04003978 if (ret == -ENOENT)
3979 ret = 0;
Zach Brownd4e39912013-04-02 21:02:16 +00003980 else if (ret)
3981 btrfs_abort_transaction(trans, root, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04003982err:
3983 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04003984 if (ret)
3985 goto out;
3986
3987 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04003988 inode_inc_iversion(inode);
3989 inode_inc_iversion(dir);
Chris Masone02119d2008-09-05 16:13:11 -04003990 inode->i_ctime = dir->i_mtime = dir->i_ctime = CURRENT_TIME;
Tsutomu Itohb9959292012-06-25 21:25:22 -06003991 ret = btrfs_update_inode(trans, root, dir);
Chris Masone02119d2008-09-05 16:13:11 -04003992out:
Chris Mason39279cc2007-06-12 06:35:45 -04003993 return ret;
3994}
3995
Al Viro92986792011-03-04 17:14:37 +00003996int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
3997 struct btrfs_root *root,
3998 struct inode *dir, struct inode *inode,
3999 const char *name, int name_len)
4000{
4001 int ret;
4002 ret = __btrfs_unlink_inode(trans, root, dir, inode, name, name_len);
4003 if (!ret) {
Zach Brown8b558c52013-10-16 12:10:34 -07004004 drop_nlink(inode);
Al Viro92986792011-03-04 17:14:37 +00004005 ret = btrfs_update_inode(trans, root, inode);
4006 }
4007 return ret;
4008}
Yan, Zhenga22285a2010-05-16 10:48:46 -04004009
4010/*
4011 * helper to start transaction for unlink and rmdir.
4012 *
Josef Bacikd52be812013-05-29 14:54:47 -04004013 * unlink and rmdir are special in btrfs, they do not always free space, so
4014 * if we cannot make our reservations the normal way try and see if there is
4015 * plenty of slack room in the global reserve to migrate, otherwise we cannot
4016 * allow the unlink to occur.
Yan, Zhenga22285a2010-05-16 10:48:46 -04004017 */
Josef Bacikd52be812013-05-29 14:54:47 -04004018static struct btrfs_trans_handle *__unlink_start_trans(struct inode *dir)
Yan, Zhenga22285a2010-05-16 10:48:46 -04004019{
4020 struct btrfs_trans_handle *trans;
4021 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004022 int ret;
4023
Josef Bacike70bea52011-10-11 14:18:24 -04004024 /*
4025 * 1 for the possible orphan item
4026 * 1 for the dir item
4027 * 1 for the dir index
4028 * 1 for the inode ref
Josef Bacike70bea52011-10-11 14:18:24 -04004029 * 1 for the inode
4030 */
Josef Bacik6e137ed2013-03-26 15:26:55 -04004031 trans = btrfs_start_transaction(root, 5);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004032 if (!IS_ERR(trans) || PTR_ERR(trans) != -ENOSPC)
4033 return trans;
4034
Josef Bacikd52be812013-05-29 14:54:47 -04004035 if (PTR_ERR(trans) == -ENOSPC) {
4036 u64 num_bytes = btrfs_calc_trans_metadata_size(root, 5);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004037
Josef Bacikd52be812013-05-29 14:54:47 -04004038 trans = btrfs_start_transaction(root, 0);
4039 if (IS_ERR(trans))
4040 return trans;
4041 ret = btrfs_cond_migrate_bytes(root->fs_info,
4042 &root->fs_info->trans_block_rsv,
4043 num_bytes, 5);
4044 if (ret) {
4045 btrfs_end_transaction(trans, root);
4046 return ERR_PTR(ret);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004047 }
Josef Bacik5a77d762011-11-01 14:32:23 -04004048 trans->block_rsv = &root->fs_info->trans_block_rsv;
Josef Bacikd52be812013-05-29 14:54:47 -04004049 trans->bytes_reserved = num_bytes;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004050 }
Josef Bacikd52be812013-05-29 14:54:47 -04004051 return trans;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004052}
4053
Chris Mason39279cc2007-06-12 06:35:45 -04004054static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
4055{
Yan, Zhenga22285a2010-05-16 10:48:46 -04004056 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004057 struct btrfs_trans_handle *trans;
David Howells2b0143b2015-03-17 22:25:59 +00004058 struct inode *inode = d_inode(dentry);
Chris Mason39279cc2007-06-12 06:35:45 -04004059 int ret;
4060
Josef Bacikd52be812013-05-29 14:54:47 -04004061 trans = __unlink_start_trans(dir);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004062 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05004063 return PTR_ERR(trans);
Chris Mason5f39d392007-10-15 16:14:19 -04004064
David Howells2b0143b2015-03-17 22:25:59 +00004065 btrfs_record_unlink_dir(trans, dir, d_inode(dentry), 0);
Chris Mason12fcfd22009-03-24 10:24:20 -04004066
David Howells2b0143b2015-03-17 22:25:59 +00004067 ret = btrfs_unlink_inode(trans, root, dir, d_inode(dentry),
Chris Masone02119d2008-09-05 16:13:11 -04004068 dentry->d_name.name, dentry->d_name.len);
Tsutomu Itohb5324022011-07-19 07:27:20 +00004069 if (ret)
4070 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04004071
Yan, Zhenga22285a2010-05-16 10:48:46 -04004072 if (inode->i_nlink == 0) {
Josef Bacik7b128762008-07-24 12:17:14 -04004073 ret = btrfs_orphan_add(trans, inode);
Tsutomu Itohb5324022011-07-19 07:27:20 +00004074 if (ret)
4075 goto out;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004076 }
Josef Bacik7b128762008-07-24 12:17:14 -04004077
Tsutomu Itohb5324022011-07-19 07:27:20 +00004078out:
Josef Bacikd52be812013-05-29 14:54:47 -04004079 btrfs_end_transaction(trans, root);
Liu Bob53d3f52012-11-14 14:34:34 +00004080 btrfs_btree_balance_dirty(root);
Chris Mason39279cc2007-06-12 06:35:45 -04004081 return ret;
4082}
4083
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004084int btrfs_unlink_subvol(struct btrfs_trans_handle *trans,
4085 struct btrfs_root *root,
4086 struct inode *dir, u64 objectid,
4087 const char *name, int name_len)
4088{
4089 struct btrfs_path *path;
4090 struct extent_buffer *leaf;
4091 struct btrfs_dir_item *di;
4092 struct btrfs_key key;
4093 u64 index;
4094 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08004095 u64 dir_ino = btrfs_ino(dir);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004096
4097 path = btrfs_alloc_path();
4098 if (!path)
4099 return -ENOMEM;
4100
Li Zefan33345d012011-04-20 10:31:50 +08004101 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004102 name, name_len, -1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004103 if (IS_ERR_OR_NULL(di)) {
4104 if (!di)
4105 ret = -ENOENT;
4106 else
4107 ret = PTR_ERR(di);
4108 goto out;
4109 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004110
4111 leaf = path->nodes[0];
4112 btrfs_dir_item_key_to_cpu(leaf, di, &key);
4113 WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
4114 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004115 if (ret) {
4116 btrfs_abort_transaction(trans, root, ret);
4117 goto out;
4118 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004119 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004120
4121 ret = btrfs_del_root_ref(trans, root->fs_info->tree_root,
4122 objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08004123 dir_ino, &index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004124 if (ret < 0) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004125 if (ret != -ENOENT) {
4126 btrfs_abort_transaction(trans, root, ret);
4127 goto out;
4128 }
Li Zefan33345d012011-04-20 10:31:50 +08004129 di = btrfs_search_dir_index_item(root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004130 name, name_len);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004131 if (IS_ERR_OR_NULL(di)) {
4132 if (!di)
4133 ret = -ENOENT;
4134 else
4135 ret = PTR_ERR(di);
4136 btrfs_abort_transaction(trans, root, ret);
4137 goto out;
4138 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004139
4140 leaf = path->nodes[0];
4141 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02004142 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004143 index = key.offset;
4144 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004145 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004146
Miao Xie16cdcec2011-04-22 18:12:22 +08004147 ret = btrfs_delete_delayed_dir_index(trans, root, dir, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004148 if (ret) {
4149 btrfs_abort_transaction(trans, root, ret);
4150 goto out;
4151 }
Miao Xie16cdcec2011-04-22 18:12:22 +08004152
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004153 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04004154 inode_inc_iversion(dir);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004155 dir->i_mtime = dir->i_ctime = CURRENT_TIME;
Josef Bacik5a24e842012-08-08 10:12:59 -06004156 ret = btrfs_update_inode_fallback(trans, root, dir);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004157 if (ret)
4158 btrfs_abort_transaction(trans, root, ret);
4159out:
Josef Bacik71d7aed2011-06-14 14:24:32 -04004160 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004161 return ret;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004162}
4163
Chris Mason39279cc2007-06-12 06:35:45 -04004164static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
4165{
David Howells2b0143b2015-03-17 22:25:59 +00004166 struct inode *inode = d_inode(dentry);
Chris Mason1832a6d2007-12-21 16:27:21 -05004167 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004168 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004169 struct btrfs_trans_handle *trans;
Chris Mason39279cc2007-06-12 06:35:45 -04004170
David Sterbab3ae2442012-09-13 16:04:34 -06004171 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Yan134d4512007-10-25 15:49:25 -04004172 return -ENOTEMPTY;
David Sterbab3ae2442012-09-13 16:04:34 -06004173 if (btrfs_ino(inode) == BTRFS_FIRST_FREE_OBJECTID)
4174 return -EPERM;
Yan134d4512007-10-25 15:49:25 -04004175
Josef Bacikd52be812013-05-29 14:54:47 -04004176 trans = __unlink_start_trans(dir);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004177 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05004178 return PTR_ERR(trans);
Josef Bacik5df6a9f2009-11-10 21:23:48 -05004179
Li Zefan33345d012011-04-20 10:31:50 +08004180 if (unlikely(btrfs_ino(inode) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004181 err = btrfs_unlink_subvol(trans, root, dir,
4182 BTRFS_I(inode)->location.objectid,
4183 dentry->d_name.name,
4184 dentry->d_name.len);
4185 goto out;
4186 }
4187
Josef Bacik7b128762008-07-24 12:17:14 -04004188 err = btrfs_orphan_add(trans, inode);
4189 if (err)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004190 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04004191
Chris Mason39279cc2007-06-12 06:35:45 -04004192 /* now the directory is empty */
David Howells2b0143b2015-03-17 22:25:59 +00004193 err = btrfs_unlink_inode(trans, root, dir, d_inode(dentry),
Chris Masone02119d2008-09-05 16:13:11 -04004194 dentry->d_name.name, dentry->d_name.len);
Chris Masond3977122009-01-05 21:25:51 -05004195 if (!err)
Chris Masondbe674a2008-07-17 12:54:05 -04004196 btrfs_i_size_write(inode, 0);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004197out:
Josef Bacikd52be812013-05-29 14:54:47 -04004198 btrfs_end_transaction(trans, root);
Liu Bob53d3f52012-11-14 14:34:34 +00004199 btrfs_btree_balance_dirty(root);
Chris Mason39544012007-12-12 14:38:19 -05004200
Chris Mason39279cc2007-06-12 06:35:45 -04004201 return err;
4202}
4203
Chris Mason28f75a02015-02-04 06:59:29 -08004204static int truncate_space_check(struct btrfs_trans_handle *trans,
4205 struct btrfs_root *root,
4206 u64 bytes_deleted)
4207{
4208 int ret;
4209
4210 bytes_deleted = btrfs_csum_bytes_to_leaves(root, bytes_deleted);
4211 ret = btrfs_block_rsv_add(root, &root->fs_info->trans_block_rsv,
4212 bytes_deleted, BTRFS_RESERVE_NO_FLUSH);
4213 if (!ret)
4214 trans->bytes_reserved += bytes_deleted;
4215 return ret;
4216
4217}
4218
Filipe Manana0305cd52015-10-16 12:34:25 +01004219static int truncate_inline_extent(struct inode *inode,
4220 struct btrfs_path *path,
4221 struct btrfs_key *found_key,
4222 const u64 item_end,
4223 const u64 new_size)
4224{
4225 struct extent_buffer *leaf = path->nodes[0];
4226 int slot = path->slots[0];
4227 struct btrfs_file_extent_item *fi;
4228 u32 size = (u32)(new_size - found_key->offset);
4229 struct btrfs_root *root = BTRFS_I(inode)->root;
4230
4231 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
4232
4233 if (btrfs_file_extent_compression(leaf, fi) != BTRFS_COMPRESS_NONE) {
4234 loff_t offset = new_size;
4235 loff_t page_end = ALIGN(offset, PAGE_CACHE_SIZE);
4236
4237 /*
4238 * Zero out the remaining of the last page of our inline extent,
4239 * instead of directly truncating our inline extent here - that
4240 * would be much more complex (decompressing all the data, then
4241 * compressing the truncated data, which might be bigger than
4242 * the size of the inline extent, resize the extent, etc).
4243 * We release the path because to get the page we might need to
4244 * read the extent item from disk (data not in the page cache).
4245 */
4246 btrfs_release_path(path);
4247 return btrfs_truncate_page(inode, offset, page_end - offset, 0);
4248 }
4249
4250 btrfs_set_file_extent_ram_bytes(leaf, fi, size);
4251 size = btrfs_file_extent_calc_inline_size(size);
4252 btrfs_truncate_item(root, path, size, 1);
4253
4254 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state))
4255 inode_sub_bytes(inode, item_end + 1 - new_size);
4256
4257 return 0;
4258}
4259
Chris Mason323ac952008-10-01 19:05:46 -04004260/*
Chris Mason39279cc2007-06-12 06:35:45 -04004261 * this can truncate away extent items, csum items and directory items.
4262 * It starts at a high offset and removes keys until it can't find
Chris Masond352ac62008-09-29 15:18:18 -04004263 * any higher than new_size
Chris Mason39279cc2007-06-12 06:35:45 -04004264 *
4265 * csum items that cross the new i_size are truncated to the new size
4266 * as well.
Josef Bacik7b128762008-07-24 12:17:14 -04004267 *
4268 * min_type is the minimum key type to truncate down to. If set to 0, this
4269 * will kill all the items on this inode, including the INODE_ITEM_KEY.
Chris Mason39279cc2007-06-12 06:35:45 -04004270 */
Yan, Zheng80825102009-11-12 09:35:36 +00004271int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
4272 struct btrfs_root *root,
4273 struct inode *inode,
4274 u64 new_size, u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04004275{
Chris Mason39279cc2007-06-12 06:35:45 -04004276 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04004277 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04004278 struct btrfs_file_extent_item *fi;
Yan, Zheng80825102009-11-12 09:35:36 +00004279 struct btrfs_key key;
4280 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04004281 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04004282 u64 extent_num_bytes = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004283 u64 extent_offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004284 u64 item_end = 0;
Filipe Mananac1aa4572015-06-20 18:20:09 +01004285 u64 last_size = new_size;
Yan, Zheng80825102009-11-12 09:35:36 +00004286 u32 found_type = (u8)-1;
Chris Mason39279cc2007-06-12 06:35:45 -04004287 int found_extent;
4288 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05004289 int pending_del_nr = 0;
4290 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04004291 int extent_type = -1;
Yan, Zheng80825102009-11-12 09:35:36 +00004292 int ret;
4293 int err = 0;
Li Zefan33345d012011-04-20 10:31:50 +08004294 u64 ino = btrfs_ino(inode);
Chris Mason28ed1342014-12-17 09:41:04 -08004295 u64 bytes_deleted = 0;
Josef Bacik12621332015-02-03 07:50:16 -08004296 bool be_nice = 0;
4297 bool should_throttle = 0;
Chris Mason28f75a02015-02-04 06:59:29 -08004298 bool should_end = 0;
Yan, Zheng80825102009-11-12 09:35:36 +00004299
4300 BUG_ON(new_size > 0 && min_type != BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04004301
Chris Mason28ed1342014-12-17 09:41:04 -08004302 /*
4303 * for non-free space inodes and ref cows, we want to back off from
4304 * time to time
4305 */
4306 if (!btrfs_is_free_space_inode(inode) &&
4307 test_bit(BTRFS_ROOT_REF_COWS, &root->state))
4308 be_nice = 1;
4309
Mark Fasheh0eb0e192011-07-12 16:44:10 -07004310 path = btrfs_alloc_path();
4311 if (!path)
4312 return -ENOMEM;
4313 path->reada = -1;
4314
Josef Bacik5dc562c2012-08-17 13:14:17 -04004315 /*
4316 * We want to drop from the next block forward in case this new size is
4317 * not block aligned since we will be keeping the last block of the
4318 * extent just the way it is.
4319 */
Miao Xie27cdeb72014-04-02 19:51:05 +08004320 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) ||
4321 root == root->fs_info->tree_root)
Qu Wenruofda28322013-02-26 08:10:22 +00004322 btrfs_drop_extent_cache(inode, ALIGN(new_size,
4323 root->sectorsize), (u64)-1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00004324
Miao Xie16cdcec2011-04-22 18:12:22 +08004325 /*
4326 * This function is also used to drop the items in the log tree before
4327 * we relog the inode, so if root != BTRFS_I(inode)->root, it means
4328 * it is used to drop the loged items. So we shouldn't kill the delayed
4329 * items.
4330 */
4331 if (min_type == 0 && root == BTRFS_I(inode)->root)
4332 btrfs_kill_delayed_inode_items(inode);
4333
Li Zefan33345d012011-04-20 10:31:50 +08004334 key.objectid = ino;
Chris Mason39279cc2007-06-12 06:35:45 -04004335 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04004336 key.type = (u8)-1;
4337
Chris Mason85e21ba2008-01-29 15:11:36 -05004338search_again:
Chris Mason28ed1342014-12-17 09:41:04 -08004339 /*
4340 * with a 16K leaf size and 128MB extents, you can actually queue
4341 * up a huge file in a single leaf. Most of the time that
4342 * bytes_deleted is > 0, it will be huge by the time we get here
4343 */
4344 if (be_nice && bytes_deleted > 32 * 1024 * 1024) {
4345 if (btrfs_should_end_transaction(trans, root)) {
4346 err = -EAGAIN;
4347 goto error;
4348 }
4349 }
4350
4351
Chris Masonb9473432009-03-13 11:00:37 -04004352 path->leave_spinning = 1;
Chris Mason85e21ba2008-01-29 15:11:36 -05004353 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Yan, Zheng80825102009-11-12 09:35:36 +00004354 if (ret < 0) {
4355 err = ret;
4356 goto out;
4357 }
Chris Masond3977122009-01-05 21:25:51 -05004358
Chris Mason85e21ba2008-01-29 15:11:36 -05004359 if (ret > 0) {
Chris Masone02119d2008-09-05 16:13:11 -04004360 /* there are no items in the tree for us to truncate, we're
4361 * done
4362 */
Yan, Zheng80825102009-11-12 09:35:36 +00004363 if (path->slots[0] == 0)
4364 goto out;
Chris Mason85e21ba2008-01-29 15:11:36 -05004365 path->slots[0]--;
4366 }
4367
Chris Masond3977122009-01-05 21:25:51 -05004368 while (1) {
Chris Mason39279cc2007-06-12 06:35:45 -04004369 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04004370 leaf = path->nodes[0];
4371 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
David Sterba962a2982014-06-04 18:41:45 +02004372 found_type = found_key.type;
Chris Mason39279cc2007-06-12 06:35:45 -04004373
Li Zefan33345d012011-04-20 10:31:50 +08004374 if (found_key.objectid != ino)
Chris Mason39279cc2007-06-12 06:35:45 -04004375 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004376
Chris Mason85e21ba2008-01-29 15:11:36 -05004377 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04004378 break;
4379
Chris Mason5f39d392007-10-15 16:14:19 -04004380 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04004381 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04004382 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04004383 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04004384 extent_type = btrfs_file_extent_type(leaf, fi);
4385 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04004386 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04004387 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -04004388 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason179e29e2007-11-01 11:28:41 -04004389 item_end += btrfs_file_extent_inline_len(leaf,
Chris Mason514ac8a2014-01-03 21:07:00 -08004390 path->slots[0], fi);
Chris Mason39279cc2007-06-12 06:35:45 -04004391 }
Yan008630c2007-11-07 13:31:09 -05004392 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04004393 }
Yan, Zheng80825102009-11-12 09:35:36 +00004394 if (found_type > min_type) {
Chris Mason39279cc2007-06-12 06:35:45 -04004395 del_item = 1;
Yan, Zheng80825102009-11-12 09:35:36 +00004396 } else {
4397 if (item_end < new_size)
4398 break;
4399 if (found_key.offset >= new_size)
4400 del_item = 1;
4401 else
4402 del_item = 0;
4403 }
Chris Mason39279cc2007-06-12 06:35:45 -04004404 found_extent = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004405 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04004406 if (found_type != BTRFS_EXTENT_DATA_KEY)
4407 goto delete;
4408
Josef Bacik7f4f6e02013-08-29 16:43:28 -04004409 if (del_item)
4410 last_size = found_key.offset;
4411 else
4412 last_size = new_size;
4413
Chris Mason179e29e2007-11-01 11:28:41 -04004414 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04004415 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04004416 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Miao Xief70a9a6b2012-01-12 19:10:12 -05004417 if (!del_item) {
Chris Masondb945352007-10-15 16:15:53 -04004418 u64 orig_num_bytes =
4419 btrfs_file_extent_num_bytes(leaf, fi);
Qu Wenruofda28322013-02-26 08:10:22 +00004420 extent_num_bytes = ALIGN(new_size -
4421 found_key.offset,
4422 root->sectorsize);
Chris Masondb945352007-10-15 16:15:53 -04004423 btrfs_set_file_extent_num_bytes(leaf, fi,
4424 extent_num_bytes);
4425 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05004426 extent_num_bytes);
Miao Xie27cdeb72014-04-02 19:51:05 +08004427 if (test_bit(BTRFS_ROOT_REF_COWS,
4428 &root->state) &&
4429 extent_start != 0)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004430 inode_sub_bytes(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04004431 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04004432 } else {
Chris Masondb945352007-10-15 16:15:53 -04004433 extent_num_bytes =
4434 btrfs_file_extent_disk_num_bytes(leaf,
4435 fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004436 extent_offset = found_key.offset -
4437 btrfs_file_extent_offset(leaf, fi);
4438
Chris Mason39279cc2007-06-12 06:35:45 -04004439 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05004440 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04004441 if (extent_start != 0) {
4442 found_extent = 1;
Miao Xie27cdeb72014-04-02 19:51:05 +08004443 if (test_bit(BTRFS_ROOT_REF_COWS,
4444 &root->state))
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004445 inode_sub_bytes(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04004446 }
4447 }
Chris Mason90692182008-02-08 13:49:28 -05004448 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04004449 /*
4450 * we can't truncate inline items that have had
4451 * special encodings
4452 */
4453 if (!del_item &&
Chris Masonc8b97812008-10-29 14:49:59 -04004454 btrfs_file_extent_encryption(leaf, fi) == 0 &&
4455 btrfs_file_extent_other_encoding(leaf, fi) == 0) {
Chris Mason514ac8a2014-01-03 21:07:00 -08004456
4457 /*
Filipe Manana0305cd52015-10-16 12:34:25 +01004458 * Need to release path in order to truncate a
4459 * compressed extent. So delete any accumulated
4460 * extent items so far.
Chris Mason514ac8a2014-01-03 21:07:00 -08004461 */
Filipe Manana0305cd52015-10-16 12:34:25 +01004462 if (btrfs_file_extent_compression(leaf, fi) !=
4463 BTRFS_COMPRESS_NONE && pending_del_nr) {
4464 err = btrfs_del_items(trans, root, path,
4465 pending_del_slot,
4466 pending_del_nr);
4467 if (err) {
4468 btrfs_abort_transaction(trans,
4469 root,
4470 err);
4471 goto error;
4472 }
4473 pending_del_nr = 0;
4474 }
4475
4476 err = truncate_inline_extent(inode, path,
4477 &found_key,
4478 item_end,
4479 new_size);
4480 if (err) {
4481 btrfs_abort_transaction(trans,
4482 root, err);
4483 goto error;
4484 }
Miao Xie27cdeb72014-04-02 19:51:05 +08004485 } else if (test_bit(BTRFS_ROOT_REF_COWS,
4486 &root->state)) {
Filipe Manana0305cd52015-10-16 12:34:25 +01004487 inode_sub_bytes(inode, item_end + 1 - new_size);
Chris Mason90692182008-02-08 13:49:28 -05004488 }
Chris Mason39279cc2007-06-12 06:35:45 -04004489 }
Chris Mason179e29e2007-11-01 11:28:41 -04004490delete:
Chris Mason39279cc2007-06-12 06:35:45 -04004491 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05004492 if (!pending_del_nr) {
4493 /* no pending yet, add ourselves */
4494 pending_del_slot = path->slots[0];
4495 pending_del_nr = 1;
4496 } else if (pending_del_nr &&
4497 path->slots[0] + 1 == pending_del_slot) {
4498 /* hop on the pending chunk */
4499 pending_del_nr++;
4500 pending_del_slot = path->slots[0];
4501 } else {
Chris Masond3977122009-01-05 21:25:51 -05004502 BUG();
Chris Mason85e21ba2008-01-29 15:11:36 -05004503 }
Chris Mason39279cc2007-06-12 06:35:45 -04004504 } else {
4505 break;
4506 }
Chris Mason28f75a02015-02-04 06:59:29 -08004507 should_throttle = 0;
4508
Miao Xie27cdeb72014-04-02 19:51:05 +08004509 if (found_extent &&
4510 (test_bit(BTRFS_ROOT_REF_COWS, &root->state) ||
4511 root == root->fs_info->tree_root)) {
Chris Masonb9473432009-03-13 11:00:37 -04004512 btrfs_set_path_blocking(path);
Chris Mason28ed1342014-12-17 09:41:04 -08004513 bytes_deleted += extent_num_bytes;
Chris Mason39279cc2007-06-12 06:35:45 -04004514 ret = btrfs_free_extent(trans, root, extent_start,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004515 extent_num_bytes, 0,
4516 btrfs_header_owner(leaf),
Arne Jansen66d7e7f2011-09-12 15:26:38 +02004517 ino, extent_offset, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04004518 BUG_ON(ret);
Josef Bacik12621332015-02-03 07:50:16 -08004519 if (btrfs_should_throttle_delayed_refs(trans, root))
Chris Mason28ed1342014-12-17 09:41:04 -08004520 btrfs_async_run_delayed_refs(root,
4521 trans->delayed_ref_updates * 2, 0);
Chris Mason28f75a02015-02-04 06:59:29 -08004522 if (be_nice) {
4523 if (truncate_space_check(trans, root,
4524 extent_num_bytes)) {
4525 should_end = 1;
4526 }
4527 if (btrfs_should_throttle_delayed_refs(trans,
4528 root)) {
4529 should_throttle = 1;
4530 }
4531 }
Chris Mason39279cc2007-06-12 06:35:45 -04004532 }
Chris Mason85e21ba2008-01-29 15:11:36 -05004533
Yan, Zheng80825102009-11-12 09:35:36 +00004534 if (found_type == BTRFS_INODE_ITEM_KEY)
4535 break;
4536
4537 if (path->slots[0] == 0 ||
Josef Bacik12621332015-02-03 07:50:16 -08004538 path->slots[0] != pending_del_slot ||
Chris Mason28f75a02015-02-04 06:59:29 -08004539 should_throttle || should_end) {
Yan, Zheng80825102009-11-12 09:35:36 +00004540 if (pending_del_nr) {
4541 ret = btrfs_del_items(trans, root, path,
4542 pending_del_slot,
4543 pending_del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004544 if (ret) {
4545 btrfs_abort_transaction(trans,
4546 root, ret);
4547 goto error;
4548 }
Yan, Zheng80825102009-11-12 09:35:36 +00004549 pending_del_nr = 0;
4550 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004551 btrfs_release_path(path);
Chris Mason28f75a02015-02-04 06:59:29 -08004552 if (should_throttle) {
Josef Bacik12621332015-02-03 07:50:16 -08004553 unsigned long updates = trans->delayed_ref_updates;
4554 if (updates) {
4555 trans->delayed_ref_updates = 0;
4556 ret = btrfs_run_delayed_refs(trans, root, updates * 2);
4557 if (ret && !err)
4558 err = ret;
4559 }
4560 }
Chris Mason28f75a02015-02-04 06:59:29 -08004561 /*
4562 * if we failed to refill our space rsv, bail out
4563 * and let the transaction restart
4564 */
4565 if (should_end) {
4566 err = -EAGAIN;
4567 goto error;
4568 }
Chris Mason85e21ba2008-01-29 15:11:36 -05004569 goto search_again;
Yan, Zheng80825102009-11-12 09:35:36 +00004570 } else {
4571 path->slots[0]--;
Chris Mason85e21ba2008-01-29 15:11:36 -05004572 }
Chris Mason39279cc2007-06-12 06:35:45 -04004573 }
Yan, Zheng80825102009-11-12 09:35:36 +00004574out:
Chris Mason85e21ba2008-01-29 15:11:36 -05004575 if (pending_del_nr) {
4576 ret = btrfs_del_items(trans, root, path, pending_del_slot,
4577 pending_del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004578 if (ret)
4579 btrfs_abort_transaction(trans, root, ret);
Chris Mason85e21ba2008-01-29 15:11:36 -05004580 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004581error:
Filipe Mananac1aa4572015-06-20 18:20:09 +01004582 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID)
Josef Bacik7f4f6e02013-08-29 16:43:28 -04004583 btrfs_ordered_update_i_size(inode, last_size, NULL);
Chris Mason28ed1342014-12-17 09:41:04 -08004584
Chris Mason39279cc2007-06-12 06:35:45 -04004585 btrfs_free_path(path);
Chris Mason28ed1342014-12-17 09:41:04 -08004586
Chris Mason28f75a02015-02-04 06:59:29 -08004587 if (be_nice && bytes_deleted > 32 * 1024 * 1024) {
Chris Mason28ed1342014-12-17 09:41:04 -08004588 unsigned long updates = trans->delayed_ref_updates;
4589 if (updates) {
4590 trans->delayed_ref_updates = 0;
4591 ret = btrfs_run_delayed_refs(trans, root, updates * 2);
4592 if (ret && !err)
4593 err = ret;
4594 }
4595 }
Yan, Zheng80825102009-11-12 09:35:36 +00004596 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04004597}
4598
Chris Masona52d9a82007-08-27 16:49:44 -04004599/*
Josef Bacik2aaa6652012-08-29 14:27:18 -04004600 * btrfs_truncate_page - read, zero a chunk and write a page
4601 * @inode - inode that we're zeroing
4602 * @from - the offset to start zeroing
4603 * @len - the length to zero, 0 to zero the entire range respective to the
4604 * offset
4605 * @front - zero up to the offset instead of from the offset on
4606 *
4607 * This will find the page for the "from" offset and cow the page and zero the
4608 * part we want to zero. This is used with truncate and hole punching.
Chris Masona52d9a82007-08-27 16:49:44 -04004609 */
Josef Bacik2aaa6652012-08-29 14:27:18 -04004610int btrfs_truncate_page(struct inode *inode, loff_t from, loff_t len,
4611 int front)
Chris Masona52d9a82007-08-27 16:49:44 -04004612{
Josef Bacik2aaa6652012-08-29 14:27:18 -04004613 struct address_space *mapping = inode->i_mapping;
Chris Masondb945352007-10-15 16:15:53 -04004614 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004615 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
4616 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004617 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004618 char *kaddr;
Chris Masondb945352007-10-15 16:15:53 -04004619 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -04004620 pgoff_t index = from >> PAGE_CACHE_SHIFT;
4621 unsigned offset = from & (PAGE_CACHE_SIZE-1);
4622 struct page *page;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04004623 gfp_t mask = btrfs_alloc_write_mask(mapping);
Chris Masona52d9a82007-08-27 16:49:44 -04004624 int ret = 0;
4625 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004626 u64 page_end;
Chris Masona52d9a82007-08-27 16:49:44 -04004627
Josef Bacik2aaa6652012-08-29 14:27:18 -04004628 if ((offset & (blocksize - 1)) == 0 &&
4629 (!len || ((len & (blocksize - 1)) == 0)))
Chris Masona52d9a82007-08-27 16:49:44 -04004630 goto out;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004631 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
Josef Bacik5d5e1032009-10-13 16:46:49 -04004632 if (ret)
4633 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04004634
Chris Mason211c17f2008-05-15 09:13:45 -04004635again:
Josef Bacik3b16a4e2011-09-21 15:05:58 -04004636 page = find_or_create_page(mapping, index, mask);
Josef Bacik5d5e1032009-10-13 16:46:49 -04004637 if (!page) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004638 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Miao Xieac6a2b32012-12-05 10:56:13 +00004639 ret = -ENOMEM;
Chris Masona52d9a82007-08-27 16:49:44 -04004640 goto out;
Josef Bacik5d5e1032009-10-13 16:46:49 -04004641 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004642
4643 page_start = page_offset(page);
4644 page_end = page_start + PAGE_CACHE_SIZE - 1;
4645
Chris Masona52d9a82007-08-27 16:49:44 -04004646 if (!PageUptodate(page)) {
4647 ret = btrfs_readpage(NULL, page);
4648 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04004649 if (page->mapping != mapping) {
4650 unlock_page(page);
4651 page_cache_release(page);
4652 goto again;
4653 }
Chris Masona52d9a82007-08-27 16:49:44 -04004654 if (!PageUptodate(page)) {
4655 ret = -EIO;
Chris Mason89642222008-07-24 09:41:53 -04004656 goto out_unlock;
Chris Masona52d9a82007-08-27 16:49:44 -04004657 }
4658 }
Chris Mason211c17f2008-05-15 09:13:45 -04004659 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004660
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004661 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004662 set_page_extent_mapped(page);
4663
4664 ordered = btrfs_lookup_ordered_extent(inode, page_start);
4665 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00004666 unlock_extent_cached(io_tree, page_start, page_end,
4667 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004668 unlock_page(page);
4669 page_cache_release(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04004670 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004671 btrfs_put_ordered_extent(ordered);
4672 goto again;
4673 }
4674
Josef Bacik2ac55d42010-02-03 19:33:23 +00004675 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Liu Bo9e8a4a82012-09-05 19:10:51 -06004676 EXTENT_DIRTY | EXTENT_DELALLOC |
4677 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
Josef Bacik2ac55d42010-02-03 19:33:23 +00004678 0, 0, &cached_state, GFP_NOFS);
Josef Bacik5d5e1032009-10-13 16:46:49 -04004679
Josef Bacik2ac55d42010-02-03 19:33:23 +00004680 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
4681 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004682 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00004683 unlock_extent_cached(io_tree, page_start, page_end,
4684 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004685 goto out_unlock;
4686 }
4687
Chris Masone6dcd2d2008-07-17 12:53:50 -04004688 if (offset != PAGE_CACHE_SIZE) {
Josef Bacik2aaa6652012-08-29 14:27:18 -04004689 if (!len)
4690 len = PAGE_CACHE_SIZE - offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004691 kaddr = kmap(page);
Josef Bacik2aaa6652012-08-29 14:27:18 -04004692 if (front)
4693 memset(kaddr, 0, offset);
4694 else
4695 memset(kaddr + offset, 0, len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004696 flush_dcache_page(page);
4697 kunmap(page);
4698 }
Chris Mason247e7432008-07-17 12:53:51 -04004699 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004700 set_page_dirty(page);
Josef Bacik2ac55d42010-02-03 19:33:23 +00004701 unlock_extent_cached(io_tree, page_start, page_end, &cached_state,
4702 GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04004703
Chris Mason89642222008-07-24 09:41:53 -04004704out_unlock:
Josef Bacik5d5e1032009-10-13 16:46:49 -04004705 if (ret)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004706 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Mason39279cc2007-06-12 06:35:45 -04004707 unlock_page(page);
4708 page_cache_release(page);
4709out:
4710 return ret;
4711}
4712
Josef Bacik16e75492013-10-22 12:18:51 -04004713static int maybe_insert_hole(struct btrfs_root *root, struct inode *inode,
4714 u64 offset, u64 len)
4715{
4716 struct btrfs_trans_handle *trans;
4717 int ret;
4718
4719 /*
4720 * Still need to make sure the inode looks like it's been updated so
4721 * that any holes get logged if we fsync.
4722 */
4723 if (btrfs_fs_incompat(root->fs_info, NO_HOLES)) {
4724 BTRFS_I(inode)->last_trans = root->fs_info->generation;
4725 BTRFS_I(inode)->last_sub_trans = root->log_transid;
4726 BTRFS_I(inode)->last_log_commit = root->last_log_commit;
4727 return 0;
4728 }
4729
4730 /*
4731 * 1 - for the one we're dropping
4732 * 1 - for the one we're adding
4733 * 1 - for updating the inode.
4734 */
4735 trans = btrfs_start_transaction(root, 3);
4736 if (IS_ERR(trans))
4737 return PTR_ERR(trans);
4738
4739 ret = btrfs_drop_extents(trans, root, inode, offset, offset + len, 1);
4740 if (ret) {
4741 btrfs_abort_transaction(trans, root, ret);
4742 btrfs_end_transaction(trans, root);
4743 return ret;
4744 }
4745
4746 ret = btrfs_insert_file_extent(trans, root, btrfs_ino(inode), offset,
4747 0, 0, len, 0, len, 0, 0, 0);
4748 if (ret)
4749 btrfs_abort_transaction(trans, root, ret);
4750 else
4751 btrfs_update_inode(trans, root, inode);
4752 btrfs_end_transaction(trans, root);
4753 return ret;
4754}
4755
Josef Bacik695a0d02011-03-04 15:46:53 -05004756/*
4757 * This function puts in dummy file extents for the area we're creating a hole
4758 * for. So if we are truncating this file to a larger size we need to insert
4759 * these file extents so that btrfs_get_extent will return a EXTENT_MAP_HOLE for
4760 * the range between oldsize and size
4761 */
Josef Bacika41ad392011-01-31 15:30:16 -05004762int btrfs_cont_expand(struct inode *inode, loff_t oldsize, loff_t size)
Yan Zheng9036c102008-10-30 14:19:41 -04004763{
Yan Zheng9036c102008-10-30 14:19:41 -04004764 struct btrfs_root *root = BTRFS_I(inode)->root;
4765 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004766 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004767 struct extent_state *cached_state = NULL;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004768 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Qu Wenruofda28322013-02-26 08:10:22 +00004769 u64 hole_start = ALIGN(oldsize, root->sectorsize);
4770 u64 block_end = ALIGN(size, root->sectorsize);
Yan Zheng9036c102008-10-30 14:19:41 -04004771 u64 last_byte;
4772 u64 cur_offset;
4773 u64 hole_size;
Josef Bacik9ed74f22009-09-11 16:12:44 -04004774 int err = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04004775
Josef Bacika71754f2013-06-17 17:14:39 -04004776 /*
4777 * If our size started in the middle of a page we need to zero out the
4778 * rest of the page before we expand the i_size, otherwise we could
4779 * expose stale data.
4780 */
4781 err = btrfs_truncate_page(inode, oldsize, 0, 0);
4782 if (err)
4783 return err;
4784
Yan Zheng9036c102008-10-30 14:19:41 -04004785 if (size <= hole_start)
4786 return 0;
4787
Yan Zheng9036c102008-10-30 14:19:41 -04004788 while (1) {
4789 struct btrfs_ordered_extent *ordered;
Miao Xiefa7c1492013-09-26 13:15:27 +08004790
Josef Bacik2ac55d42010-02-03 19:33:23 +00004791 lock_extent_bits(io_tree, hole_start, block_end - 1, 0,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004792 &cached_state);
Miao Xiefa7c1492013-09-26 13:15:27 +08004793 ordered = btrfs_lookup_ordered_range(inode, hole_start,
4794 block_end - hole_start);
Yan Zheng9036c102008-10-30 14:19:41 -04004795 if (!ordered)
4796 break;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004797 unlock_extent_cached(io_tree, hole_start, block_end - 1,
4798 &cached_state, GFP_NOFS);
Miao Xiefa7c1492013-09-26 13:15:27 +08004799 btrfs_start_ordered_extent(inode, ordered, 1);
Yan Zheng9036c102008-10-30 14:19:41 -04004800 btrfs_put_ordered_extent(ordered);
4801 }
4802
Yan Zheng9036c102008-10-30 14:19:41 -04004803 cur_offset = hole_start;
4804 while (1) {
4805 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
4806 block_end - cur_offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004807 if (IS_ERR(em)) {
4808 err = PTR_ERR(em);
Zach Brownf2767952013-01-08 19:37:58 +00004809 em = NULL;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004810 break;
4811 }
Yan Zheng9036c102008-10-30 14:19:41 -04004812 last_byte = min(extent_map_end(em), block_end);
Qu Wenruofda28322013-02-26 08:10:22 +00004813 last_byte = ALIGN(last_byte , root->sectorsize);
Yan, Zheng80825102009-11-12 09:35:36 +00004814 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
Josef Bacik5dc562c2012-08-17 13:14:17 -04004815 struct extent_map *hole_em;
Yan Zheng9036c102008-10-30 14:19:41 -04004816 hole_size = last_byte - cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00004817
Josef Bacik16e75492013-10-22 12:18:51 -04004818 err = maybe_insert_hole(root, inode, cur_offset,
4819 hole_size);
4820 if (err)
Chris Mason771ed682008-11-06 22:02:51 -05004821 break;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004822 btrfs_drop_extent_cache(inode, cur_offset,
4823 cur_offset + hole_size - 1, 0);
4824 hole_em = alloc_extent_map();
4825 if (!hole_em) {
4826 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
4827 &BTRFS_I(inode)->runtime_flags);
4828 goto next;
4829 }
4830 hole_em->start = cur_offset;
4831 hole_em->len = hole_size;
4832 hole_em->orig_start = cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00004833
Josef Bacik5dc562c2012-08-17 13:14:17 -04004834 hole_em->block_start = EXTENT_MAP_HOLE;
4835 hole_em->block_len = 0;
Josef Bacikb4939682012-12-03 10:31:19 -05004836 hole_em->orig_block_len = 0;
Josef Bacikcc95bef2013-04-04 14:31:27 -04004837 hole_em->ram_bytes = hole_size;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004838 hole_em->bdev = root->fs_info->fs_devices->latest_bdev;
4839 hole_em->compress_type = BTRFS_COMPRESS_NONE;
Josef Bacik16e75492013-10-22 12:18:51 -04004840 hole_em->generation = root->fs_info->generation;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004841
4842 while (1) {
4843 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04004844 err = add_extent_mapping(em_tree, hole_em, 1);
Josef Bacik5dc562c2012-08-17 13:14:17 -04004845 write_unlock(&em_tree->lock);
4846 if (err != -EEXIST)
4847 break;
4848 btrfs_drop_extent_cache(inode, cur_offset,
4849 cur_offset +
4850 hole_size - 1, 0);
4851 }
4852 free_extent_map(hole_em);
Yan Zheng9036c102008-10-30 14:19:41 -04004853 }
Josef Bacik16e75492013-10-22 12:18:51 -04004854next:
Yan Zheng9036c102008-10-30 14:19:41 -04004855 free_extent_map(em);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004856 em = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04004857 cur_offset = last_byte;
Yan, Zheng80825102009-11-12 09:35:36 +00004858 if (cur_offset >= block_end)
Yan Zheng9036c102008-10-30 14:19:41 -04004859 break;
4860 }
Yan, Zhenga22285a2010-05-16 10:48:46 -04004861 free_extent_map(em);
Josef Bacik2ac55d42010-02-03 19:33:23 +00004862 unlock_extent_cached(io_tree, hole_start, block_end - 1, &cached_state,
4863 GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04004864 return err;
4865}
4866
Filipe Manana9ea24bb2014-10-29 11:57:59 +00004867static int wait_snapshoting_atomic_t(atomic_t *a)
4868{
4869 schedule();
4870 return 0;
4871}
4872
4873static void wait_for_snapshot_creation(struct btrfs_root *root)
4874{
4875 while (true) {
4876 int ret;
4877
4878 ret = btrfs_start_write_no_snapshoting(root);
4879 if (ret)
4880 break;
4881 wait_on_atomic_t(&root->will_be_snapshoted,
4882 wait_snapshoting_atomic_t,
4883 TASK_UNINTERRUPTIBLE);
4884 }
4885}
4886
Eric Sandeen3972f262013-01-12 02:57:22 +00004887static int btrfs_setsize(struct inode *inode, struct iattr *attr)
Yan, Zheng80825102009-11-12 09:35:36 +00004888{
Miao Xief4a2f4c2011-12-14 20:12:01 -05004889 struct btrfs_root *root = BTRFS_I(inode)->root;
4890 struct btrfs_trans_handle *trans;
Josef Bacika41ad392011-01-31 15:30:16 -05004891 loff_t oldsize = i_size_read(inode);
Eric Sandeen3972f262013-01-12 02:57:22 +00004892 loff_t newsize = attr->ia_size;
4893 int mask = attr->ia_valid;
Yan, Zheng80825102009-11-12 09:35:36 +00004894 int ret;
4895
Eric Sandeen3972f262013-01-12 02:57:22 +00004896 /*
4897 * The regular truncate() case without ATTR_CTIME and ATTR_MTIME is a
4898 * special case where we need to update the times despite not having
4899 * these flags set. For all other operations the VFS set these flags
4900 * explicitly if it wants a timestamp update.
4901 */
Christoph Hellwigdff6efc2013-11-19 07:17:07 -08004902 if (newsize != oldsize) {
4903 inode_inc_iversion(inode);
4904 if (!(mask & (ATTR_CTIME | ATTR_MTIME)))
4905 inode->i_ctime = inode->i_mtime =
4906 current_fs_time(inode->i_sb);
4907 }
Eric Sandeen3972f262013-01-12 02:57:22 +00004908
Josef Bacika41ad392011-01-31 15:30:16 -05004909 if (newsize > oldsize) {
Kirill A. Shutemov7caef262013-09-12 15:13:56 -07004910 truncate_pagecache(inode, newsize);
Filipe Manana9ea24bb2014-10-29 11:57:59 +00004911 /*
4912 * Don't do an expanding truncate while snapshoting is ongoing.
4913 * This is to ensure the snapshot captures a fully consistent
4914 * state of this file - if the snapshot captures this expanding
4915 * truncation, it must capture all writes that happened before
4916 * this truncation.
4917 */
4918 wait_for_snapshot_creation(root);
Josef Bacika41ad392011-01-31 15:30:16 -05004919 ret = btrfs_cont_expand(inode, oldsize, newsize);
Filipe Manana9ea24bb2014-10-29 11:57:59 +00004920 if (ret) {
4921 btrfs_end_write_no_snapshoting(root);
Yan, Zheng80825102009-11-12 09:35:36 +00004922 return ret;
Filipe Manana9ea24bb2014-10-29 11:57:59 +00004923 }
Yan, Zheng80825102009-11-12 09:35:36 +00004924
Miao Xief4a2f4c2011-12-14 20:12:01 -05004925 trans = btrfs_start_transaction(root, 1);
Filipe Manana9ea24bb2014-10-29 11:57:59 +00004926 if (IS_ERR(trans)) {
4927 btrfs_end_write_no_snapshoting(root);
Miao Xief4a2f4c2011-12-14 20:12:01 -05004928 return PTR_ERR(trans);
Filipe Manana9ea24bb2014-10-29 11:57:59 +00004929 }
Miao Xief4a2f4c2011-12-14 20:12:01 -05004930
4931 i_size_write(inode, newsize);
4932 btrfs_ordered_update_i_size(inode, i_size_read(inode), NULL);
4933 ret = btrfs_update_inode(trans, root, inode);
Filipe Manana9ea24bb2014-10-29 11:57:59 +00004934 btrfs_end_write_no_snapshoting(root);
Josef Bacik7ad85bb2012-01-12 19:10:12 -05004935 btrfs_end_transaction(trans, root);
Josef Bacika41ad392011-01-31 15:30:16 -05004936 } else {
Yan, Zheng80825102009-11-12 09:35:36 +00004937
Josef Bacika41ad392011-01-31 15:30:16 -05004938 /*
4939 * We're truncating a file that used to have good data down to
4940 * zero. Make sure it gets into the ordered flush list so that
4941 * any new writes get down to disk quickly.
4942 */
4943 if (newsize == 0)
Josef Bacik72ac3c02012-05-23 14:13:11 -04004944 set_bit(BTRFS_INODE_ORDERED_DATA_CLOSE,
4945 &BTRFS_I(inode)->runtime_flags);
Yan, Zheng80825102009-11-12 09:35:36 +00004946
Josef Bacikf3fe8202013-01-07 17:03:21 -05004947 /*
4948 * 1 for the orphan item we're going to add
4949 * 1 for the orphan item deletion.
4950 */
4951 trans = btrfs_start_transaction(root, 2);
4952 if (IS_ERR(trans))
4953 return PTR_ERR(trans);
4954
4955 /*
4956 * We need to do this in case we fail at _any_ point during the
4957 * actual truncate. Once we do the truncate_setsize we could
4958 * invalidate pages which forces any outstanding ordered io to
4959 * be instantly completed which will give us extents that need
4960 * to be truncated. If we fail to get an orphan inode down we
4961 * could have left over extents that were never meant to live,
4962 * so we need to garuntee from this point on that everything
4963 * will be consistent.
4964 */
4965 ret = btrfs_orphan_add(trans, inode);
4966 btrfs_end_transaction(trans, root);
4967 if (ret)
4968 return ret;
4969
Josef Bacika41ad392011-01-31 15:30:16 -05004970 /* we don't support swapfiles, so vmtruncate shouldn't fail */
4971 truncate_setsize(inode, newsize);
Miao Xie2e60a512013-02-08 07:01:08 +00004972
4973 /* Disable nonlocked read DIO to avoid the end less truncate */
4974 btrfs_inode_block_unlocked_dio(inode);
4975 inode_dio_wait(inode);
4976 btrfs_inode_resume_unlocked_dio(inode);
4977
Josef Bacika41ad392011-01-31 15:30:16 -05004978 ret = btrfs_truncate(inode);
Josef Bacik7f4f6e02013-08-29 16:43:28 -04004979 if (ret && inode->i_nlink) {
4980 int err;
4981
4982 /*
4983 * failed to truncate, disk_i_size is only adjusted down
4984 * as we remove extents, so it should represent the true
4985 * size of the inode, so reset the in memory size and
4986 * delete our orphan entry.
4987 */
4988 trans = btrfs_join_transaction(root);
4989 if (IS_ERR(trans)) {
4990 btrfs_orphan_del(NULL, inode);
4991 return ret;
4992 }
4993 i_size_write(inode, BTRFS_I(inode)->disk_i_size);
4994 err = btrfs_orphan_del(trans, inode);
4995 if (err)
4996 btrfs_abort_transaction(trans, root, err);
4997 btrfs_end_transaction(trans, root);
4998 }
Yan, Zheng80825102009-11-12 09:35:36 +00004999 }
5000
Josef Bacika41ad392011-01-31 15:30:16 -05005001 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00005002}
5003
Chris Mason39279cc2007-06-12 06:35:45 -04005004static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
5005{
David Howells2b0143b2015-03-17 22:25:59 +00005006 struct inode *inode = d_inode(dentry);
Li Zefanb83cc962010-12-20 16:04:08 +08005007 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005008 int err;
5009
Li Zefanb83cc962010-12-20 16:04:08 +08005010 if (btrfs_root_readonly(root))
5011 return -EROFS;
5012
Chris Mason39279cc2007-06-12 06:35:45 -04005013 err = inode_change_ok(inode, attr);
5014 if (err)
5015 return err;
5016
Chris Mason5a3f23d2009-03-31 13:27:11 -04005017 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
Eric Sandeen3972f262013-01-12 02:57:22 +00005018 err = btrfs_setsize(inode, attr);
Yan, Zheng80825102009-11-12 09:35:36 +00005019 if (err)
5020 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04005021 }
Yan Zheng9036c102008-10-30 14:19:41 -04005022
Christoph Hellwig10257742010-06-04 11:30:02 +02005023 if (attr->ia_valid) {
5024 setattr_copy(inode, attr);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04005025 inode_inc_iversion(inode);
Josef Bacik22c44fe2011-11-30 10:45:38 -05005026 err = btrfs_dirty_inode(inode);
Josef Bacik33268ea2008-07-24 12:16:36 -04005027
Josef Bacik22c44fe2011-11-30 10:45:38 -05005028 if (!err && attr->ia_valid & ATTR_MODE)
Christoph Hellwig996a7102013-12-20 05:16:43 -08005029 err = posix_acl_chmod(inode, inode->i_mode);
Christoph Hellwig10257742010-06-04 11:30:02 +02005030 }
5031
Chris Mason39279cc2007-06-12 06:35:45 -04005032 return err;
5033}
Chris Mason61295eb2008-01-14 16:24:38 -05005034
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005035/*
5036 * While truncating the inode pages during eviction, we get the VFS calling
5037 * btrfs_invalidatepage() against each page of the inode. This is slow because
5038 * the calls to btrfs_invalidatepage() result in a huge amount of calls to
5039 * lock_extent_bits() and clear_extent_bit(), which keep merging and splitting
5040 * extent_state structures over and over, wasting lots of time.
5041 *
5042 * Therefore if the inode is being evicted, let btrfs_invalidatepage() skip all
5043 * those expensive operations on a per page basis and do only the ordered io
5044 * finishing, while we release here the extent_map and extent_state structures,
5045 * without the excessive merging and splitting.
5046 */
5047static void evict_inode_truncate_pages(struct inode *inode)
5048{
5049 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
5050 struct extent_map_tree *map_tree = &BTRFS_I(inode)->extent_tree;
5051 struct rb_node *node;
5052
5053 ASSERT(inode->i_state & I_FREEING);
Johannes Weiner91b0abe2014-04-03 14:47:49 -07005054 truncate_inode_pages_final(&inode->i_data);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005055
5056 write_lock(&map_tree->lock);
5057 while (!RB_EMPTY_ROOT(&map_tree->map)) {
5058 struct extent_map *em;
5059
5060 node = rb_first(&map_tree->map);
5061 em = rb_entry(node, struct extent_map, rb_node);
Wang Shilong180589e2013-12-14 15:27:31 +08005062 clear_bit(EXTENT_FLAG_PINNED, &em->flags);
5063 clear_bit(EXTENT_FLAG_LOGGING, &em->flags);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005064 remove_extent_mapping(map_tree, em);
5065 free_extent_map(em);
Filipe Manana7064dd52014-08-08 02:47:05 +01005066 if (need_resched()) {
5067 write_unlock(&map_tree->lock);
5068 cond_resched();
5069 write_lock(&map_tree->lock);
5070 }
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005071 }
5072 write_unlock(&map_tree->lock);
5073
Filipe Manana6ca07092015-05-26 00:55:42 +01005074 /*
5075 * Keep looping until we have no more ranges in the io tree.
5076 * We can have ongoing bios started by readpages (called from readahead)
Filipe Manana9c6429d2015-06-10 12:55:41 +01005077 * that have their endio callback (extent_io.c:end_bio_extent_readpage)
5078 * still in progress (unlocked the pages in the bio but did not yet
5079 * unlocked the ranges in the io tree). Therefore this means some
Filipe Manana6ca07092015-05-26 00:55:42 +01005080 * ranges can still be locked and eviction started because before
5081 * submitting those bios, which are executed by a separate task (work
5082 * queue kthread), inode references (inode->i_count) were not taken
5083 * (which would be dropped in the end io callback of each bio).
5084 * Therefore here we effectively end up waiting for those bios and
5085 * anyone else holding locked ranges without having bumped the inode's
5086 * reference count - if we don't do it, when they access the inode's
5087 * io_tree to unlock a range it may be too late, leading to an
5088 * use-after-free issue.
5089 */
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005090 spin_lock(&io_tree->lock);
5091 while (!RB_EMPTY_ROOT(&io_tree->state)) {
5092 struct extent_state *state;
5093 struct extent_state *cached_state = NULL;
Filipe Manana6ca07092015-05-26 00:55:42 +01005094 u64 start;
5095 u64 end;
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005096
5097 node = rb_first(&io_tree->state);
5098 state = rb_entry(node, struct extent_state, rb_node);
Filipe Manana6ca07092015-05-26 00:55:42 +01005099 start = state->start;
5100 end = state->end;
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005101 spin_unlock(&io_tree->lock);
5102
Filipe Manana6ca07092015-05-26 00:55:42 +01005103 lock_extent_bits(io_tree, start, end, 0, &cached_state);
5104 clear_extent_bit(io_tree, start, end,
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005105 EXTENT_LOCKED | EXTENT_DIRTY |
5106 EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING |
5107 EXTENT_DEFRAG, 1, 1,
5108 &cached_state, GFP_NOFS);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005109
Filipe Manana7064dd52014-08-08 02:47:05 +01005110 cond_resched();
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005111 spin_lock(&io_tree->lock);
5112 }
5113 spin_unlock(&io_tree->lock);
5114}
5115
Al Virobd555972010-06-07 11:35:40 -04005116void btrfs_evict_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04005117{
5118 struct btrfs_trans_handle *trans;
5119 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik726c35f2011-09-26 15:46:06 -04005120 struct btrfs_block_rsv *rsv, *global_rsv;
Josef Bacik3bce8762015-02-24 12:35:51 -08005121 int steal_from_global = 0;
Josef Bacik07127182011-08-19 10:29:59 -04005122 u64 min_size = btrfs_calc_trunc_metadata_size(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04005123 int ret;
5124
liubo1abe9b82011-03-24 11:18:59 +00005125 trace_btrfs_inode_evict(inode);
5126
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005127 evict_inode_truncate_pages(inode);
5128
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02005129 if (inode->i_nlink &&
5130 ((btrfs_root_refs(&root->root_item) != 0 &&
5131 root->root_key.objectid != BTRFS_ROOT_TREE_OBJECTID) ||
5132 btrfs_is_free_space_inode(inode)))
Al Virobd555972010-06-07 11:35:40 -04005133 goto no_delete;
5134
Chris Mason39279cc2007-06-12 06:35:45 -04005135 if (is_bad_inode(inode)) {
Josef Bacik7b128762008-07-24 12:17:14 -04005136 btrfs_orphan_del(NULL, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04005137 goto no_delete;
5138 }
Al Virobd555972010-06-07 11:35:40 -04005139 /* do we really want it for ->i_nlink > 0 and zero btrfs_root_refs? */
Jeff Mahoneya30e5772015-09-11 21:44:17 -04005140 if (!special_file(inode->i_mode))
5141 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Chris Mason5f39d392007-10-15 16:14:19 -04005142
Miao Xief6124962014-09-12 18:44:04 +08005143 btrfs_free_io_failure_record(inode, 0, (u64)-1);
5144
Yan, Zhengc71bf092009-11-12 09:34:40 +00005145 if (root->fs_info->log_root_recovering) {
Liu Bo6bf02312012-06-25 21:59:09 -06005146 BUG_ON(test_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
Josef Bacik8a35d952012-05-23 14:26:42 -04005147 &BTRFS_I(inode)->runtime_flags));
Yan, Zhengc71bf092009-11-12 09:34:40 +00005148 goto no_delete;
5149 }
5150
Yan, Zheng76dda932009-09-21 16:00:26 -04005151 if (inode->i_nlink > 0) {
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02005152 BUG_ON(btrfs_root_refs(&root->root_item) != 0 &&
5153 root->root_key.objectid != BTRFS_ROOT_TREE_OBJECTID);
Yan, Zheng76dda932009-09-21 16:00:26 -04005154 goto no_delete;
5155 }
5156
Miao Xie0e8c36a2012-12-19 06:59:51 +00005157 ret = btrfs_commit_inode_delayed_inode(inode);
5158 if (ret) {
5159 btrfs_orphan_del(NULL, inode);
5160 goto no_delete;
5161 }
5162
Miao Xie66d8f3d2012-09-06 04:02:28 -06005163 rsv = btrfs_alloc_block_rsv(root, BTRFS_BLOCK_RSV_TEMP);
Josef Bacik4289a662011-08-05 13:22:24 -04005164 if (!rsv) {
5165 btrfs_orphan_del(NULL, inode);
5166 goto no_delete;
5167 }
Josef Bacik4a338542011-08-29 11:01:31 -04005168 rsv->size = min_size;
Josef Bacikca7e70f2012-08-27 17:48:15 -04005169 rsv->failfast = 1;
Josef Bacik726c35f2011-09-26 15:46:06 -04005170 global_rsv = &root->fs_info->global_block_rsv;
Josef Bacik4289a662011-08-05 13:22:24 -04005171
Chris Masondbe674a2008-07-17 12:54:05 -04005172 btrfs_i_size_write(inode, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04005173
Josef Bacik4289a662011-08-05 13:22:24 -04005174 /*
Miao Xie8407aa42012-09-07 01:43:32 -06005175 * This is a bit simpler than btrfs_truncate since we've already
5176 * reserved our space for our orphan item in the unlink, so we just
5177 * need to reserve some slack space in case we add bytes and update
5178 * inode item when doing the truncate.
Josef Bacik4289a662011-08-05 13:22:24 -04005179 */
Yan, Zheng80825102009-11-12 09:35:36 +00005180 while (1) {
Miao Xie08e007d2012-10-16 11:33:38 +00005181 ret = btrfs_block_rsv_refill(root, rsv, min_size,
5182 BTRFS_RESERVE_FLUSH_LIMIT);
Yan, Zheng80825102009-11-12 09:35:36 +00005183
Josef Bacik726c35f2011-09-26 15:46:06 -04005184 /*
5185 * Try and steal from the global reserve since we will
5186 * likely not use this space anyway, we want to try as
5187 * hard as possible to get this to work.
5188 */
5189 if (ret)
Josef Bacik3bce8762015-02-24 12:35:51 -08005190 steal_from_global++;
5191 else
5192 steal_from_global = 0;
5193 ret = 0;
Josef Bacik726c35f2011-09-26 15:46:06 -04005194
Josef Bacik3bce8762015-02-24 12:35:51 -08005195 /*
5196 * steal_from_global == 0: we reserved stuff, hooray!
5197 * steal_from_global == 1: we didn't reserve stuff, boo!
5198 * steal_from_global == 2: we've committed, still not a lot of
5199 * room but maybe we'll have room in the global reserve this
5200 * time.
5201 * steal_from_global == 3: abandon all hope!
5202 */
5203 if (steal_from_global > 2) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00005204 btrfs_warn(root->fs_info,
5205 "Could not get space for a delete, will truncate on mount %d",
5206 ret);
Josef Bacik4289a662011-08-05 13:22:24 -04005207 btrfs_orphan_del(NULL, inode);
5208 btrfs_free_block_rsv(root, rsv);
5209 goto no_delete;
Yan, Zhengd68fc572010-05-16 10:49:58 -04005210 }
5211
Miao Xie0e8c36a2012-12-19 06:59:51 +00005212 trans = btrfs_join_transaction(root);
Josef Bacik4289a662011-08-05 13:22:24 -04005213 if (IS_ERR(trans)) {
5214 btrfs_orphan_del(NULL, inode);
5215 btrfs_free_block_rsv(root, rsv);
5216 goto no_delete;
5217 }
5218
Josef Bacik3bce8762015-02-24 12:35:51 -08005219 /*
5220 * We can't just steal from the global reserve, we need tomake
5221 * sure there is room to do it, if not we need to commit and try
5222 * again.
5223 */
5224 if (steal_from_global) {
5225 if (!btrfs_check_space_for_delayed_refs(trans, root))
5226 ret = btrfs_block_rsv_migrate(global_rsv, rsv,
5227 min_size);
5228 else
5229 ret = -ENOSPC;
5230 }
5231
5232 /*
5233 * Couldn't steal from the global reserve, we have too much
5234 * pending stuff built up, commit the transaction and try it
5235 * again.
5236 */
5237 if (ret) {
5238 ret = btrfs_commit_transaction(trans, root);
5239 if (ret) {
5240 btrfs_orphan_del(NULL, inode);
5241 btrfs_free_block_rsv(root, rsv);
5242 goto no_delete;
5243 }
5244 continue;
5245 } else {
5246 steal_from_global = 0;
5247 }
5248
Josef Bacik4289a662011-08-05 13:22:24 -04005249 trans->block_rsv = rsv;
5250
Yan, Zhengd68fc572010-05-16 10:49:58 -04005251 ret = btrfs_truncate_inode_items(trans, root, inode, 0, 0);
Chris Mason28ed1342014-12-17 09:41:04 -08005252 if (ret != -ENOSPC && ret != -EAGAIN)
Yan, Zheng80825102009-11-12 09:35:36 +00005253 break;
5254
Miao Xie8407aa42012-09-07 01:43:32 -06005255 trans->block_rsv = &root->fs_info->trans_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00005256 btrfs_end_transaction(trans, root);
5257 trans = NULL;
Liu Bob53d3f52012-11-14 14:34:34 +00005258 btrfs_btree_balance_dirty(root);
Josef Bacik7b128762008-07-24 12:17:14 -04005259 }
5260
Josef Bacik4289a662011-08-05 13:22:24 -04005261 btrfs_free_block_rsv(root, rsv);
5262
Josef Bacik4ef31a42013-08-13 14:10:08 -04005263 /*
5264 * Errors here aren't a big deal, it just means we leave orphan items
5265 * in the tree. They will be cleaned up on the next mount.
5266 */
Yan, Zheng80825102009-11-12 09:35:36 +00005267 if (ret == 0) {
Josef Bacik4289a662011-08-05 13:22:24 -04005268 trans->block_rsv = root->orphan_block_rsv;
Josef Bacik4ef31a42013-08-13 14:10:08 -04005269 btrfs_orphan_del(trans, inode);
5270 } else {
5271 btrfs_orphan_del(NULL, inode);
Yan, Zheng80825102009-11-12 09:35:36 +00005272 }
Chris Mason85e21ba2008-01-29 15:11:36 -05005273
Josef Bacik4289a662011-08-05 13:22:24 -04005274 trans->block_rsv = &root->fs_info->trans_block_rsv;
Li Zefan581bb052011-04-20 10:06:11 +08005275 if (!(root == root->fs_info->tree_root ||
5276 root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID))
Li Zefan33345d012011-04-20 10:31:50 +08005277 btrfs_return_ino(root, btrfs_ino(inode));
Li Zefan581bb052011-04-20 10:06:11 +08005278
Chris Mason54aa1f42007-06-22 14:16:25 -04005279 btrfs_end_transaction(trans, root);
Liu Bob53d3f52012-11-14 14:34:34 +00005280 btrfs_btree_balance_dirty(root);
Chris Mason39279cc2007-06-12 06:35:45 -04005281no_delete:
Miao Xie89042e52013-05-15 07:48:15 +00005282 btrfs_remove_delayed_node(inode);
Jan Karadbd57682012-05-03 14:48:02 +02005283 clear_inode(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00005284 return;
Chris Mason39279cc2007-06-12 06:35:45 -04005285}
5286
5287/*
5288 * this returns the key found in the dir entry in the location pointer.
5289 * If no dir entries were found, location->objectid is 0.
5290 */
5291static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
5292 struct btrfs_key *location)
5293{
5294 const char *name = dentry->d_name.name;
5295 int namelen = dentry->d_name.len;
5296 struct btrfs_dir_item *di;
5297 struct btrfs_path *path;
5298 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04005299 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005300
5301 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07005302 if (!path)
5303 return -ENOMEM;
Chris Mason39544012007-12-12 14:38:19 -05005304
Li Zefan33345d012011-04-20 10:31:50 +08005305 di = btrfs_lookup_dir_item(NULL, root, path, btrfs_ino(dir), name,
Chris Mason39279cc2007-06-12 06:35:45 -04005306 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04005307 if (IS_ERR(di))
5308 ret = PTR_ERR(di);
Chris Masond3977122009-01-05 21:25:51 -05005309
David Sterbac7040052011-04-19 18:00:01 +02005310 if (IS_ERR_OR_NULL(di))
Chris Mason39544012007-12-12 14:38:19 -05005311 goto out_err;
Chris Masond3977122009-01-05 21:25:51 -05005312
Chris Mason5f39d392007-10-15 16:14:19 -04005313 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04005314out:
Chris Mason39279cc2007-06-12 06:35:45 -04005315 btrfs_free_path(path);
5316 return ret;
Chris Mason39544012007-12-12 14:38:19 -05005317out_err:
5318 location->objectid = 0;
5319 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04005320}
5321
5322/*
5323 * when we hit a tree root in a directory, the btrfs part of the inode
5324 * needs to be changed to reflect the root directory of the tree root. This
5325 * is kind of like crossing a mount point.
5326 */
5327static int fixup_tree_root_location(struct btrfs_root *root,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005328 struct inode *dir,
5329 struct dentry *dentry,
5330 struct btrfs_key *location,
5331 struct btrfs_root **sub_root)
Chris Mason39279cc2007-06-12 06:35:45 -04005332{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005333 struct btrfs_path *path;
5334 struct btrfs_root *new_root;
5335 struct btrfs_root_ref *ref;
5336 struct extent_buffer *leaf;
David Sterba1d4c08e2015-01-02 19:36:14 +01005337 struct btrfs_key key;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005338 int ret;
5339 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005340
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005341 path = btrfs_alloc_path();
5342 if (!path) {
5343 err = -ENOMEM;
5344 goto out;
5345 }
Chris Mason39279cc2007-06-12 06:35:45 -04005346
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005347 err = -ENOENT;
David Sterba1d4c08e2015-01-02 19:36:14 +01005348 key.objectid = BTRFS_I(dir)->root->root_key.objectid;
5349 key.type = BTRFS_ROOT_REF_KEY;
5350 key.offset = location->objectid;
5351
5352 ret = btrfs_search_slot(NULL, root->fs_info->tree_root, &key, path,
5353 0, 0);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005354 if (ret) {
5355 if (ret < 0)
5356 err = ret;
5357 goto out;
5358 }
Chris Mason39279cc2007-06-12 06:35:45 -04005359
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005360 leaf = path->nodes[0];
5361 ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref);
Li Zefan33345d012011-04-20 10:31:50 +08005362 if (btrfs_root_ref_dirid(leaf, ref) != btrfs_ino(dir) ||
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005363 btrfs_root_ref_name_len(leaf, ref) != dentry->d_name.len)
5364 goto out;
5365
5366 ret = memcmp_extent_buffer(leaf, dentry->d_name.name,
5367 (unsigned long)(ref + 1),
5368 dentry->d_name.len);
5369 if (ret)
5370 goto out;
5371
David Sterbab3b4aa72011-04-21 01:20:15 +02005372 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005373
5374 new_root = btrfs_read_fs_root_no_name(root->fs_info, location);
5375 if (IS_ERR(new_root)) {
5376 err = PTR_ERR(new_root);
5377 goto out;
5378 }
5379
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005380 *sub_root = new_root;
5381 location->objectid = btrfs_root_dirid(&new_root->root_item);
5382 location->type = BTRFS_INODE_ITEM_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -04005383 location->offset = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005384 err = 0;
5385out:
5386 btrfs_free_path(path);
5387 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04005388}
5389
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005390static void inode_tree_add(struct inode *inode)
5391{
5392 struct btrfs_root *root = BTRFS_I(inode)->root;
5393 struct btrfs_inode *entry;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005394 struct rb_node **p;
5395 struct rb_node *parent;
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005396 struct rb_node *new = &BTRFS_I(inode)->rb_node;
Li Zefan33345d012011-04-20 10:31:50 +08005397 u64 ino = btrfs_ino(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005398
Al Viro1d3382cb2010-10-23 15:19:20 -04005399 if (inode_unhashed(inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04005400 return;
Miao Xiee1409ce2013-05-15 07:48:16 +00005401 parent = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005402 spin_lock(&root->inode_lock);
Miao Xiee1409ce2013-05-15 07:48:16 +00005403 p = &root->inode_tree.rb_node;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005404 while (*p) {
5405 parent = *p;
5406 entry = rb_entry(parent, struct btrfs_inode, rb_node);
5407
Li Zefan33345d012011-04-20 10:31:50 +08005408 if (ino < btrfs_ino(&entry->vfs_inode))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005409 p = &parent->rb_left;
Li Zefan33345d012011-04-20 10:31:50 +08005410 else if (ino > btrfs_ino(&entry->vfs_inode))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005411 p = &parent->rb_right;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005412 else {
5413 WARN_ON(!(entry->vfs_inode.i_state &
Al Viroa4ffdde2010-06-02 17:38:30 -04005414 (I_WILL_FREE | I_FREEING)));
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005415 rb_replace_node(parent, new, &root->inode_tree);
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005416 RB_CLEAR_NODE(parent);
5417 spin_unlock(&root->inode_lock);
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005418 return;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005419 }
5420 }
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005421 rb_link_node(new, parent, p);
5422 rb_insert_color(new, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005423 spin_unlock(&root->inode_lock);
5424}
5425
5426static void inode_tree_del(struct inode *inode)
5427{
5428 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -04005429 int empty = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005430
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005431 spin_lock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005432 if (!RB_EMPTY_NODE(&BTRFS_I(inode)->rb_node)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005433 rb_erase(&BTRFS_I(inode)->rb_node, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005434 RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node);
Yan, Zheng76dda932009-09-21 16:00:26 -04005435 empty = RB_EMPTY_ROOT(&root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005436 }
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005437 spin_unlock(&root->inode_lock);
Yan, Zheng76dda932009-09-21 16:00:26 -04005438
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02005439 if (empty && btrfs_root_refs(&root->root_item) == 0) {
Yan, Zheng76dda932009-09-21 16:00:26 -04005440 synchronize_srcu(&root->fs_info->subvol_srcu);
5441 spin_lock(&root->inode_lock);
5442 empty = RB_EMPTY_ROOT(&root->inode_tree);
5443 spin_unlock(&root->inode_lock);
5444 if (empty)
5445 btrfs_add_dead_root(root);
5446 }
5447}
5448
Jeff Mahoney143bede2012-03-01 14:56:26 +01005449void btrfs_invalidate_inodes(struct btrfs_root *root)
Yan, Zheng76dda932009-09-21 16:00:26 -04005450{
5451 struct rb_node *node;
5452 struct rb_node *prev;
5453 struct btrfs_inode *entry;
5454 struct inode *inode;
5455 u64 objectid = 0;
5456
Liu Bo7813b3d2014-02-10 17:37:25 +08005457 if (!test_bit(BTRFS_FS_STATE_ERROR, &root->fs_info->fs_state))
5458 WARN_ON(btrfs_root_refs(&root->root_item) != 0);
Yan, Zheng76dda932009-09-21 16:00:26 -04005459
5460 spin_lock(&root->inode_lock);
5461again:
5462 node = root->inode_tree.rb_node;
5463 prev = NULL;
5464 while (node) {
5465 prev = node;
5466 entry = rb_entry(node, struct btrfs_inode, rb_node);
5467
Li Zefan33345d012011-04-20 10:31:50 +08005468 if (objectid < btrfs_ino(&entry->vfs_inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04005469 node = node->rb_left;
Li Zefan33345d012011-04-20 10:31:50 +08005470 else if (objectid > btrfs_ino(&entry->vfs_inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04005471 node = node->rb_right;
5472 else
5473 break;
5474 }
5475 if (!node) {
5476 while (prev) {
5477 entry = rb_entry(prev, struct btrfs_inode, rb_node);
Li Zefan33345d012011-04-20 10:31:50 +08005478 if (objectid <= btrfs_ino(&entry->vfs_inode)) {
Yan, Zheng76dda932009-09-21 16:00:26 -04005479 node = prev;
5480 break;
5481 }
5482 prev = rb_next(prev);
5483 }
5484 }
5485 while (node) {
5486 entry = rb_entry(node, struct btrfs_inode, rb_node);
Li Zefan33345d012011-04-20 10:31:50 +08005487 objectid = btrfs_ino(&entry->vfs_inode) + 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04005488 inode = igrab(&entry->vfs_inode);
5489 if (inode) {
5490 spin_unlock(&root->inode_lock);
5491 if (atomic_read(&inode->i_count) > 1)
5492 d_prune_aliases(inode);
5493 /*
Al Viro45321ac2010-06-07 13:43:19 -04005494 * btrfs_drop_inode will have it removed from
Yan, Zheng76dda932009-09-21 16:00:26 -04005495 * the inode cache when its usage count
5496 * hits zero.
5497 */
5498 iput(inode);
5499 cond_resched();
5500 spin_lock(&root->inode_lock);
5501 goto again;
5502 }
5503
5504 if (cond_resched_lock(&root->inode_lock))
5505 goto again;
5506
5507 node = rb_next(node);
5508 }
5509 spin_unlock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005510}
5511
Chris Masone02119d2008-09-05 16:13:11 -04005512static int btrfs_init_locked_inode(struct inode *inode, void *p)
5513{
5514 struct btrfs_iget_args *args = p;
Chris Mason90d3e592014-01-09 17:28:00 -08005515 inode->i_ino = args->location->objectid;
5516 memcpy(&BTRFS_I(inode)->location, args->location,
5517 sizeof(*args->location));
Chris Masone02119d2008-09-05 16:13:11 -04005518 BTRFS_I(inode)->root = args->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005519 return 0;
5520}
5521
5522static int btrfs_find_actor(struct inode *inode, void *opaque)
5523{
5524 struct btrfs_iget_args *args = opaque;
Chris Mason90d3e592014-01-09 17:28:00 -08005525 return args->location->objectid == BTRFS_I(inode)->location.objectid &&
Chris Masond3977122009-01-05 21:25:51 -05005526 args->root == BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005527}
5528
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005529static struct inode *btrfs_iget_locked(struct super_block *s,
Chris Mason90d3e592014-01-09 17:28:00 -08005530 struct btrfs_key *location,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005531 struct btrfs_root *root)
Chris Mason39279cc2007-06-12 06:35:45 -04005532{
5533 struct inode *inode;
5534 struct btrfs_iget_args args;
Chris Mason90d3e592014-01-09 17:28:00 -08005535 unsigned long hashval = btrfs_inode_hash(location->objectid, root);
Filipe David Borba Manana778ba822013-10-06 22:22:33 +01005536
Chris Mason90d3e592014-01-09 17:28:00 -08005537 args.location = location;
Chris Mason39279cc2007-06-12 06:35:45 -04005538 args.root = root;
5539
Filipe David Borba Manana778ba822013-10-06 22:22:33 +01005540 inode = iget5_locked(s, hashval, btrfs_find_actor,
Chris Mason39279cc2007-06-12 06:35:45 -04005541 btrfs_init_locked_inode,
5542 (void *)&args);
5543 return inode;
5544}
5545
Balaji Rao1a54ef82008-07-21 02:01:04 +05305546/* Get an inode object given its location and corresponding root.
5547 * Returns in *is_new if the inode was read from disk
5548 */
5549struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
Josef Bacik73f73412009-12-04 17:38:27 +00005550 struct btrfs_root *root, int *new)
Balaji Rao1a54ef82008-07-21 02:01:04 +05305551{
5552 struct inode *inode;
5553
Chris Mason90d3e592014-01-09 17:28:00 -08005554 inode = btrfs_iget_locked(s, location, root);
Balaji Rao1a54ef82008-07-21 02:01:04 +05305555 if (!inode)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005556 return ERR_PTR(-ENOMEM);
Balaji Rao1a54ef82008-07-21 02:01:04 +05305557
5558 if (inode->i_state & I_NEW) {
Balaji Rao1a54ef82008-07-21 02:01:04 +05305559 btrfs_read_locked_inode(inode);
Mark Fasheh1748f842011-07-12 11:25:31 -07005560 if (!is_bad_inode(inode)) {
5561 inode_tree_add(inode);
5562 unlock_new_inode(inode);
5563 if (new)
5564 *new = 1;
5565 } else {
Sergei Trofimoviche0b6d652011-09-11 10:52:24 -04005566 unlock_new_inode(inode);
5567 iput(inode);
5568 inode = ERR_PTR(-ESTALE);
Mark Fasheh1748f842011-07-12 11:25:31 -07005569 }
5570 }
5571
Balaji Rao1a54ef82008-07-21 02:01:04 +05305572 return inode;
5573}
5574
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005575static struct inode *new_simple_dir(struct super_block *s,
5576 struct btrfs_key *key,
5577 struct btrfs_root *root)
5578{
5579 struct inode *inode = new_inode(s);
5580
5581 if (!inode)
5582 return ERR_PTR(-ENOMEM);
5583
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005584 BTRFS_I(inode)->root = root;
5585 memcpy(&BTRFS_I(inode)->location, key, sizeof(*key));
Josef Bacik72ac3c02012-05-23 14:13:11 -04005586 set_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005587
5588 inode->i_ino = BTRFS_EMPTY_SUBVOL_DIR_OBJECTID;
Li Zefan848cce02012-02-21 17:04:28 +08005589 inode->i_op = &btrfs_dir_ro_inode_operations;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005590 inode->i_fop = &simple_dir_operations;
5591 inode->i_mode = S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO;
chandan r9cc97d62012-07-04 12:48:07 +05305592 inode->i_mtime = CURRENT_TIME;
5593 inode->i_atime = inode->i_mtime;
5594 inode->i_ctime = inode->i_mtime;
5595 BTRFS_I(inode)->i_otime = inode->i_mtime;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005596
5597 return inode;
5598}
5599
Chris Mason3de45862008-11-17 21:02:50 -05005600struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04005601{
Chris Masond3977122009-01-05 21:25:51 -05005602 struct inode *inode;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005603 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005604 struct btrfs_root *sub_root = root;
5605 struct btrfs_key location;
Yan, Zheng76dda932009-09-21 16:00:26 -04005606 int index;
Josef Bacikb4aff1f2011-06-28 16:18:59 -04005607 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005608
5609 if (dentry->d_name.len > BTRFS_NAME_LEN)
5610 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04005611
Jeff Layton39e3c952012-11-28 11:30:53 -05005612 ret = btrfs_inode_by_name(dir, dentry, &location);
Chris Mason39279cc2007-06-12 06:35:45 -04005613 if (ret < 0)
5614 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04005615
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005616 if (location.objectid == 0)
Tsutomu Itoh5662344b32013-12-13 09:51:42 +09005617 return ERR_PTR(-ENOENT);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005618
5619 if (location.type == BTRFS_INODE_ITEM_KEY) {
Josef Bacik73f73412009-12-04 17:38:27 +00005620 inode = btrfs_iget(dir->i_sb, &location, root, NULL);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005621 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04005622 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005623
5624 BUG_ON(location.type != BTRFS_ROOT_ITEM_KEY);
5625
Yan, Zheng76dda932009-09-21 16:00:26 -04005626 index = srcu_read_lock(&root->fs_info->subvol_srcu);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005627 ret = fixup_tree_root_location(root, dir, dentry,
5628 &location, &sub_root);
5629 if (ret < 0) {
5630 if (ret != -ENOENT)
5631 inode = ERR_PTR(ret);
5632 else
5633 inode = new_simple_dir(dir->i_sb, &location, sub_root);
5634 } else {
Josef Bacik73f73412009-12-04 17:38:27 +00005635 inode = btrfs_iget(dir->i_sb, &location, sub_root, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04005636 }
Yan, Zheng76dda932009-09-21 16:00:26 -04005637 srcu_read_unlock(&root->fs_info->subvol_srcu, index);
5638
Julia Lawall34d19ba2011-01-24 19:55:19 +00005639 if (!IS_ERR(inode) && root != sub_root) {
Yan, Zhengc71bf092009-11-12 09:34:40 +00005640 down_read(&root->fs_info->cleanup_work_sem);
5641 if (!(inode->i_sb->s_flags & MS_RDONLY))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05005642 ret = btrfs_orphan_cleanup(sub_root);
Yan, Zhengc71bf092009-11-12 09:34:40 +00005643 up_read(&root->fs_info->cleanup_work_sem);
Josef Bacik01cd3362013-06-03 21:39:49 -04005644 if (ret) {
5645 iput(inode);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05005646 inode = ERR_PTR(ret);
Josef Bacik01cd3362013-06-03 21:39:49 -04005647 }
Yan, Zhengc71bf092009-11-12 09:34:40 +00005648 }
5649
Chris Mason3de45862008-11-17 21:02:50 -05005650 return inode;
5651}
5652
Nick Pigginfe15ce42011-01-07 17:49:23 +11005653static int btrfs_dentry_delete(const struct dentry *dentry)
Yan, Zheng76dda932009-09-21 16:00:26 -04005654{
5655 struct btrfs_root *root;
David Howells2b0143b2015-03-17 22:25:59 +00005656 struct inode *inode = d_inode(dentry);
Yan, Zheng76dda932009-09-21 16:00:26 -04005657
Li Zefan848cce02012-02-21 17:04:28 +08005658 if (!inode && !IS_ROOT(dentry))
David Howells2b0143b2015-03-17 22:25:59 +00005659 inode = d_inode(dentry->d_parent);
Yan, Zheng76dda932009-09-21 16:00:26 -04005660
Li Zefan848cce02012-02-21 17:04:28 +08005661 if (inode) {
5662 root = BTRFS_I(inode)->root;
Yan, Zhengefefb142009-10-09 09:25:16 -04005663 if (btrfs_root_refs(&root->root_item) == 0)
5664 return 1;
Li Zefan848cce02012-02-21 17:04:28 +08005665
5666 if (btrfs_ino(inode) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
5667 return 1;
Yan, Zhengefefb142009-10-09 09:25:16 -04005668 }
Yan, Zheng76dda932009-09-21 16:00:26 -04005669 return 0;
5670}
5671
Josef Bacikb4aff1f2011-06-28 16:18:59 -04005672static void btrfs_dentry_release(struct dentry *dentry)
5673{
Daeseok Youn944a4512014-04-14 15:37:02 +09005674 kfree(dentry->d_fsdata);
Josef Bacikb4aff1f2011-06-28 16:18:59 -04005675}
5676
Chris Mason3de45862008-11-17 21:02:50 -05005677static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -04005678 unsigned int flags)
Chris Mason3de45862008-11-17 21:02:50 -05005679{
Tsutomu Itoh5662344b32013-12-13 09:51:42 +09005680 struct inode *inode;
Josef Bacika66e7cc2011-09-18 10:34:03 -04005681
Tsutomu Itoh5662344b32013-12-13 09:51:42 +09005682 inode = btrfs_lookup_dentry(dir, dentry);
5683 if (IS_ERR(inode)) {
5684 if (PTR_ERR(inode) == -ENOENT)
5685 inode = NULL;
5686 else
5687 return ERR_CAST(inode);
5688 }
5689
Al Viro41d28bc2014-10-12 22:24:21 -04005690 return d_splice_alias(inode, dentry);
Chris Mason39279cc2007-06-12 06:35:45 -04005691}
5692
Miao Xie16cdcec2011-04-22 18:12:22 +08005693unsigned char btrfs_filetype_table[] = {
Chris Mason39279cc2007-06-12 06:35:45 -04005694 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
5695};
5696
Al Viro9cdda8d2013-05-22 16:48:09 -04005697static int btrfs_real_readdir(struct file *file, struct dir_context *ctx)
Chris Mason39279cc2007-06-12 06:35:45 -04005698{
Al Viro9cdda8d2013-05-22 16:48:09 -04005699 struct inode *inode = file_inode(file);
Chris Mason39279cc2007-06-12 06:35:45 -04005700 struct btrfs_root *root = BTRFS_I(inode)->root;
5701 struct btrfs_item *item;
5702 struct btrfs_dir_item *di;
5703 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04005704 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04005705 struct btrfs_path *path;
Miao Xie16cdcec2011-04-22 18:12:22 +08005706 struct list_head ins_list;
5707 struct list_head del_list;
Chris Mason39279cc2007-06-12 06:35:45 -04005708 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -04005709 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04005710 int slot;
Chris Mason39279cc2007-06-12 06:35:45 -04005711 unsigned char d_type;
5712 int over = 0;
5713 u32 di_cur;
5714 u32 di_total;
5715 u32 di_len;
5716 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04005717 char tmp_name[32];
5718 char *name_ptr;
5719 int name_len;
Al Viro9cdda8d2013-05-22 16:48:09 -04005720 int is_curr = 0; /* ctx->pos points to the current index? */
Chris Mason39279cc2007-06-12 06:35:45 -04005721
5722 /* FIXME, use a real flag for deciding about the key type */
5723 if (root->fs_info->tree_root == root)
5724 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04005725
Al Viro9cdda8d2013-05-22 16:48:09 -04005726 if (!dir_emit_dots(file, ctx))
5727 return 0;
5728
David Woodhouse49593bf2008-08-17 17:08:36 +01005729 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08005730 if (!path)
5731 return -ENOMEM;
Chris Masonff5714c2011-05-28 07:00:39 -04005732
Josef Bacik026fd312011-05-13 10:32:11 -04005733 path->reada = 1;
David Woodhouse49593bf2008-08-17 17:08:36 +01005734
Miao Xie16cdcec2011-04-22 18:12:22 +08005735 if (key_type == BTRFS_DIR_INDEX_KEY) {
5736 INIT_LIST_HEAD(&ins_list);
5737 INIT_LIST_HEAD(&del_list);
5738 btrfs_get_delayed_items(inode, &ins_list, &del_list);
5739 }
5740
David Sterba962a2982014-06-04 18:41:45 +02005741 key.type = key_type;
Al Viro9cdda8d2013-05-22 16:48:09 -04005742 key.offset = ctx->pos;
Li Zefan33345d012011-04-20 10:31:50 +08005743 key.objectid = btrfs_ino(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04005744
Chris Mason39279cc2007-06-12 06:35:45 -04005745 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
5746 if (ret < 0)
5747 goto err;
David Woodhouse49593bf2008-08-17 17:08:36 +01005748
5749 while (1) {
Chris Mason5f39d392007-10-15 16:14:19 -04005750 leaf = path->nodes[0];
Chris Mason39279cc2007-06-12 06:35:45 -04005751 slot = path->slots[0];
Li Zefanb9e03af2011-03-23 10:43:58 +08005752 if (slot >= btrfs_header_nritems(leaf)) {
5753 ret = btrfs_next_leaf(root, path);
5754 if (ret < 0)
5755 goto err;
5756 else if (ret > 0)
5757 break;
5758 continue;
Chris Mason39279cc2007-06-12 06:35:45 -04005759 }
Chris Mason3de45862008-11-17 21:02:50 -05005760
Ross Kirkdd3cc162013-09-16 15:58:09 +01005761 item = btrfs_item_nr(slot);
Chris Mason5f39d392007-10-15 16:14:19 -04005762 btrfs_item_key_to_cpu(leaf, &found_key, slot);
5763
5764 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04005765 break;
David Sterba962a2982014-06-04 18:41:45 +02005766 if (found_key.type != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04005767 break;
Al Viro9cdda8d2013-05-22 16:48:09 -04005768 if (found_key.offset < ctx->pos)
Li Zefanb9e03af2011-03-23 10:43:58 +08005769 goto next;
Miao Xie16cdcec2011-04-22 18:12:22 +08005770 if (key_type == BTRFS_DIR_INDEX_KEY &&
5771 btrfs_should_delete_dir_index(&del_list,
5772 found_key.offset))
5773 goto next;
Chris Mason5f39d392007-10-15 16:14:19 -04005774
Al Viro9cdda8d2013-05-22 16:48:09 -04005775 ctx->pos = found_key.offset;
Miao Xie16cdcec2011-04-22 18:12:22 +08005776 is_curr = 1;
David Woodhouse49593bf2008-08-17 17:08:36 +01005777
Chris Mason39279cc2007-06-12 06:35:45 -04005778 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
5779 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04005780 di_total = btrfs_item_size(leaf, item);
David Woodhouse49593bf2008-08-17 17:08:36 +01005781
5782 while (di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04005783 struct btrfs_key location;
5784
Josef Bacik22a94d42011-03-16 16:47:17 -04005785 if (verify_dir_item(root, leaf, di))
5786 break;
5787
Chris Mason5f39d392007-10-15 16:14:19 -04005788 name_len = btrfs_dir_name_len(leaf, di);
David Woodhouse49593bf2008-08-17 17:08:36 +01005789 if (name_len <= sizeof(tmp_name)) {
Chris Mason5f39d392007-10-15 16:14:19 -04005790 name_ptr = tmp_name;
5791 } else {
5792 name_ptr = kmalloc(name_len, GFP_NOFS);
David Woodhouse49593bf2008-08-17 17:08:36 +01005793 if (!name_ptr) {
5794 ret = -ENOMEM;
5795 goto err;
5796 }
Chris Mason5f39d392007-10-15 16:14:19 -04005797 }
5798 read_extent_buffer(leaf, name_ptr,
5799 (unsigned long)(di + 1), name_len);
5800
5801 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
5802 btrfs_dir_item_key_to_cpu(leaf, di, &location);
Chris Mason3de45862008-11-17 21:02:50 -05005803
Josef Bacikb4aff1f2011-06-28 16:18:59 -04005804
Chris Mason3de45862008-11-17 21:02:50 -05005805 /* is this a reference to our own snapshot? If so
Arne Jansen8c9c2bf2012-02-25 09:09:30 +01005806 * skip it.
5807 *
5808 * In contrast to old kernels, we insert the snapshot's
5809 * dir item and dir index after it has been created, so
5810 * we won't find a reference to our own snapshot. We
5811 * still keep the following code for backward
5812 * compatibility.
Chris Mason3de45862008-11-17 21:02:50 -05005813 */
5814 if (location.type == BTRFS_ROOT_ITEM_KEY &&
5815 location.objectid == root->root_key.objectid) {
5816 over = 0;
5817 goto skip;
5818 }
Al Viro9cdda8d2013-05-22 16:48:09 -04005819 over = !dir_emit(ctx, name_ptr, name_len,
5820 location.objectid, d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04005821
Chris Mason3de45862008-11-17 21:02:50 -05005822skip:
Chris Mason5f39d392007-10-15 16:14:19 -04005823 if (name_ptr != tmp_name)
5824 kfree(name_ptr);
5825
Chris Mason39279cc2007-06-12 06:35:45 -04005826 if (over)
5827 goto nopos;
Josef Bacik5103e942007-11-16 11:45:54 -05005828 di_len = btrfs_dir_name_len(leaf, di) +
David Woodhouse49593bf2008-08-17 17:08:36 +01005829 btrfs_dir_data_len(leaf, di) + sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04005830 di_cur += di_len;
5831 di = (struct btrfs_dir_item *)((char *)di + di_len);
5832 }
Li Zefanb9e03af2011-03-23 10:43:58 +08005833next:
5834 path->slots[0]++;
Chris Mason39279cc2007-06-12 06:35:45 -04005835 }
David Woodhouse49593bf2008-08-17 17:08:36 +01005836
Miao Xie16cdcec2011-04-22 18:12:22 +08005837 if (key_type == BTRFS_DIR_INDEX_KEY) {
5838 if (is_curr)
Al Viro9cdda8d2013-05-22 16:48:09 -04005839 ctx->pos++;
5840 ret = btrfs_readdir_delayed_dir_index(ctx, &ins_list);
Miao Xie16cdcec2011-04-22 18:12:22 +08005841 if (ret)
5842 goto nopos;
5843 }
5844
David Woodhouse49593bf2008-08-17 17:08:36 +01005845 /* Reached end of directory/root. Bump pos past the last item. */
Zach Browndb62efb2013-07-11 16:19:42 -07005846 ctx->pos++;
5847
5848 /*
5849 * Stop new entries from being returned after we return the last
5850 * entry.
5851 *
5852 * New directory entries are assigned a strictly increasing
5853 * offset. This means that new entries created during readdir
5854 * are *guaranteed* to be seen in the future by that readdir.
5855 * This has broken buggy programs which operate on names as
5856 * they're returned by readdir. Until we re-use freed offsets
5857 * we have this hack to stop new entries from being returned
5858 * under the assumption that they'll never reach this huge
5859 * offset.
5860 *
5861 * This is being careful not to overflow 32bit loff_t unless the
5862 * last entry requires it because doing so has broken 32bit apps
5863 * in the past.
5864 */
5865 if (key_type == BTRFS_DIR_INDEX_KEY) {
5866 if (ctx->pos >= INT_MAX)
5867 ctx->pos = LLONG_MAX;
5868 else
5869 ctx->pos = INT_MAX;
5870 }
Chris Mason39279cc2007-06-12 06:35:45 -04005871nopos:
5872 ret = 0;
5873err:
Miao Xie16cdcec2011-04-22 18:12:22 +08005874 if (key_type == BTRFS_DIR_INDEX_KEY)
5875 btrfs_put_delayed_items(&ins_list, &del_list);
Chris Mason39279cc2007-06-12 06:35:45 -04005876 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04005877 return ret;
5878}
5879
Christoph Hellwiga9185b42010-03-05 09:21:37 +01005880int btrfs_write_inode(struct inode *inode, struct writeback_control *wbc)
Chris Mason39279cc2007-06-12 06:35:45 -04005881{
5882 struct btrfs_root *root = BTRFS_I(inode)->root;
5883 struct btrfs_trans_handle *trans;
5884 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04005885 bool nolock = false;
Chris Mason39279cc2007-06-12 06:35:45 -04005886
Josef Bacik72ac3c02012-05-23 14:13:11 -04005887 if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags))
Chris Mason4ca8b412008-08-05 13:30:48 -04005888 return 0;
5889
Liu Bo83eea1f2012-07-10 05:28:39 -06005890 if (btrfs_fs_closing(root->fs_info) && btrfs_is_free_space_inode(inode))
Li Zefan82d59022011-04-20 10:33:24 +08005891 nolock = true;
Josef Bacik0af3d002010-06-21 14:48:16 -04005892
Christoph Hellwiga9185b42010-03-05 09:21:37 +01005893 if (wbc->sync_mode == WB_SYNC_ALL) {
Josef Bacik0af3d002010-06-21 14:48:16 -04005894 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005895 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0af3d002010-06-21 14:48:16 -04005896 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005897 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005898 if (IS_ERR(trans))
5899 return PTR_ERR(trans);
Miao Xiea698d0752012-09-20 01:51:59 -06005900 ret = btrfs_commit_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04005901 }
5902 return ret;
5903}
5904
5905/*
Chris Mason54aa1f42007-06-22 14:16:25 -04005906 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04005907 * inode changes. But, it is most likely to find the inode in cache.
5908 * FIXME, needs more benchmarking...there are no reasons other than performance
5909 * to keep or drop this code.
5910 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00005911static int btrfs_dirty_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04005912{
5913 struct btrfs_root *root = BTRFS_I(inode)->root;
5914 struct btrfs_trans_handle *trans;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005915 int ret;
5916
Josef Bacik72ac3c02012-05-23 14:13:11 -04005917 if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags))
Josef Bacik22c44fe2011-11-30 10:45:38 -05005918 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005919
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005920 trans = btrfs_join_transaction(root);
Josef Bacik22c44fe2011-11-30 10:45:38 -05005921 if (IS_ERR(trans))
5922 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005923
5924 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04005925 if (ret && ret == -ENOSPC) {
5926 /* whoops, lets try again with the full transaction */
5927 btrfs_end_transaction(trans, root);
5928 trans = btrfs_start_transaction(root, 1);
Josef Bacik22c44fe2011-11-30 10:45:38 -05005929 if (IS_ERR(trans))
5930 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005931
Chris Mason94b60442010-05-26 11:02:00 -04005932 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04005933 }
Chris Mason39279cc2007-06-12 06:35:45 -04005934 btrfs_end_transaction(trans, root);
Miao Xie16cdcec2011-04-22 18:12:22 +08005935 if (BTRFS_I(inode)->delayed_node)
5936 btrfs_balance_delayed_items(root);
Josef Bacik22c44fe2011-11-30 10:45:38 -05005937
5938 return ret;
5939}
5940
5941/*
5942 * This is a copy of file_update_time. We need this so we can return error on
5943 * ENOSPC for updating the inode in the case of file write and mmap writes.
5944 */
Josef Bacike41f9412012-03-26 09:46:47 -04005945static int btrfs_update_time(struct inode *inode, struct timespec *now,
5946 int flags)
Josef Bacik22c44fe2011-11-30 10:45:38 -05005947{
Alexander Block2bc5565282012-06-15 09:49:33 +02005948 struct btrfs_root *root = BTRFS_I(inode)->root;
5949
5950 if (btrfs_root_readonly(root))
5951 return -EROFS;
5952
Josef Bacike41f9412012-03-26 09:46:47 -04005953 if (flags & S_VERSION)
Josef Bacik22c44fe2011-11-30 10:45:38 -05005954 inode_inc_iversion(inode);
Josef Bacike41f9412012-03-26 09:46:47 -04005955 if (flags & S_CTIME)
5956 inode->i_ctime = *now;
5957 if (flags & S_MTIME)
5958 inode->i_mtime = *now;
5959 if (flags & S_ATIME)
5960 inode->i_atime = *now;
5961 return btrfs_dirty_inode(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04005962}
5963
Chris Masond352ac62008-09-29 15:18:18 -04005964/*
5965 * find the highest existing sequence number in a directory
5966 * and then set the in-memory index_cnt variable to reflect
5967 * free sequence numbers
5968 */
Josef Bacikaec74772008-07-24 12:12:38 -04005969static int btrfs_set_inode_index_count(struct inode *inode)
5970{
5971 struct btrfs_root *root = BTRFS_I(inode)->root;
5972 struct btrfs_key key, found_key;
5973 struct btrfs_path *path;
5974 struct extent_buffer *leaf;
5975 int ret;
5976
Li Zefan33345d012011-04-20 10:31:50 +08005977 key.objectid = btrfs_ino(inode);
David Sterba962a2982014-06-04 18:41:45 +02005978 key.type = BTRFS_DIR_INDEX_KEY;
Josef Bacikaec74772008-07-24 12:12:38 -04005979 key.offset = (u64)-1;
5980
5981 path = btrfs_alloc_path();
5982 if (!path)
5983 return -ENOMEM;
5984
5985 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
5986 if (ret < 0)
5987 goto out;
5988 /* FIXME: we should be able to handle this */
5989 if (ret == 0)
5990 goto out;
5991 ret = 0;
5992
5993 /*
5994 * MAGIC NUMBER EXPLANATION:
5995 * since we search a directory based on f_pos we have to start at 2
5996 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
5997 * else has to start at 2
5998 */
5999 if (path->slots[0] == 0) {
6000 BTRFS_I(inode)->index_cnt = 2;
6001 goto out;
6002 }
6003
6004 path->slots[0]--;
6005
6006 leaf = path->nodes[0];
6007 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
6008
Li Zefan33345d012011-04-20 10:31:50 +08006009 if (found_key.objectid != btrfs_ino(inode) ||
David Sterba962a2982014-06-04 18:41:45 +02006010 found_key.type != BTRFS_DIR_INDEX_KEY) {
Josef Bacikaec74772008-07-24 12:12:38 -04006011 BTRFS_I(inode)->index_cnt = 2;
6012 goto out;
6013 }
6014
6015 BTRFS_I(inode)->index_cnt = found_key.offset + 1;
6016out:
6017 btrfs_free_path(path);
6018 return ret;
6019}
6020
Chris Masond352ac62008-09-29 15:18:18 -04006021/*
6022 * helper to find a free sequence number in a given directory. This current
6023 * code is very simple, later versions will do smarter things in the btree
6024 */
Chris Mason3de45862008-11-17 21:02:50 -05006025int btrfs_set_inode_index(struct inode *dir, u64 *index)
Josef Bacikaec74772008-07-24 12:12:38 -04006026{
6027 int ret = 0;
6028
6029 if (BTRFS_I(dir)->index_cnt == (u64)-1) {
Miao Xie16cdcec2011-04-22 18:12:22 +08006030 ret = btrfs_inode_delayed_dir_index_count(dir);
6031 if (ret) {
6032 ret = btrfs_set_inode_index_count(dir);
6033 if (ret)
6034 return ret;
6035 }
Josef Bacikaec74772008-07-24 12:12:38 -04006036 }
6037
Chris Mason00e4e6b2008-08-05 11:18:09 -04006038 *index = BTRFS_I(dir)->index_cnt;
Josef Bacikaec74772008-07-24 12:12:38 -04006039 BTRFS_I(dir)->index_cnt++;
6040
6041 return ret;
6042}
6043
Chris Masonb0d5d102014-09-08 13:08:51 -07006044static int btrfs_insert_inode_locked(struct inode *inode)
6045{
6046 struct btrfs_iget_args args;
6047 args.location = &BTRFS_I(inode)->location;
6048 args.root = BTRFS_I(inode)->root;
6049
6050 return insert_inode_locked4(inode,
6051 btrfs_inode_hash(inode->i_ino, BTRFS_I(inode)->root),
6052 btrfs_find_actor, &args);
6053}
6054
Chris Mason39279cc2007-06-12 06:35:45 -04006055static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
6056 struct btrfs_root *root,
Josef Bacikaec74772008-07-24 12:12:38 -04006057 struct inode *dir,
Chris Mason9c583092008-01-29 15:15:18 -05006058 const char *name, int name_len,
Al Viro175a4eb2011-07-26 03:30:54 -04006059 u64 ref_objectid, u64 objectid,
6060 umode_t mode, u64 *index)
Chris Mason39279cc2007-06-12 06:35:45 -04006061{
6062 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04006063 struct btrfs_inode_item *inode_item;
Chris Mason39279cc2007-06-12 06:35:45 -04006064 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04006065 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05006066 struct btrfs_inode_ref *ref;
6067 struct btrfs_key key[2];
6068 u32 sizes[2];
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006069 int nitems = name ? 2 : 1;
Chris Mason9c583092008-01-29 15:15:18 -05006070 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04006071 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006072
Chris Mason5f39d392007-10-15 16:14:19 -04006073 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07006074 if (!path)
6075 return ERR_PTR(-ENOMEM);
Chris Mason5f39d392007-10-15 16:14:19 -04006076
Chris Mason39279cc2007-06-12 06:35:45 -04006077 inode = new_inode(root->fs_info->sb);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00006078 if (!inode) {
6079 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04006080 return ERR_PTR(-ENOMEM);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00006081 }
Chris Mason39279cc2007-06-12 06:35:45 -04006082
Li Zefan581bb052011-04-20 10:06:11 +08006083 /*
Filipe Manana5762b5c2014-08-01 00:10:32 +01006084 * O_TMPFILE, set link count to 0, so that after this point,
6085 * we fill in an inode item with the correct link count.
6086 */
6087 if (!name)
6088 set_nlink(inode, 0);
6089
6090 /*
Li Zefan581bb052011-04-20 10:06:11 +08006091 * we have to initialize this early, so we can reclaim the inode
6092 * number if we fail afterwards in this function.
6093 */
6094 inode->i_ino = objectid;
6095
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006096 if (dir && name) {
liubo1abe9b82011-03-24 11:18:59 +00006097 trace_btrfs_inode_request(dir);
6098
Chris Mason3de45862008-11-17 21:02:50 -05006099 ret = btrfs_set_inode_index(dir, index);
Shen Feng09771432009-04-02 16:46:06 -04006100 if (ret) {
Yoshinori Sano8fb27642011-04-09 02:30:07 +00006101 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04006102 iput(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04006103 return ERR_PTR(ret);
Shen Feng09771432009-04-02 16:46:06 -04006104 }
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006105 } else if (dir) {
6106 *index = 0;
Josef Bacikaec74772008-07-24 12:12:38 -04006107 }
6108 /*
6109 * index_cnt is ignored for everything but a dir,
6110 * btrfs_get_inode_index_count has an explanation for the magic
6111 * number
6112 */
6113 BTRFS_I(inode)->index_cnt = 2;
Miao Xie67de1172013-12-26 13:07:06 +08006114 BTRFS_I(inode)->dir_index = *index;
Chris Mason39279cc2007-06-12 06:35:45 -04006115 BTRFS_I(inode)->root = root;
Chris Masone02119d2008-09-05 16:13:11 -04006116 BTRFS_I(inode)->generation = trans->transid;
Josef Bacik76195852010-11-19 02:18:02 +00006117 inode->i_generation = BTRFS_I(inode)->generation;
Chris Masonb888db22007-08-27 16:49:44 -04006118
Josef Bacik5dc562c2012-08-17 13:14:17 -04006119 /*
6120 * We could have gotten an inode number from somebody who was fsynced
6121 * and then removed in this same transaction, so let's just set full
6122 * sync since it will be a full sync anyway and this will blow away the
6123 * old info in the log.
6124 */
6125 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
6126
Chris Mason9c583092008-01-29 15:15:18 -05006127 key[0].objectid = objectid;
David Sterba962a2982014-06-04 18:41:45 +02006128 key[0].type = BTRFS_INODE_ITEM_KEY;
Chris Mason9c583092008-01-29 15:15:18 -05006129 key[0].offset = 0;
6130
Chris Mason9c583092008-01-29 15:15:18 -05006131 sizes[0] = sizeof(struct btrfs_inode_item);
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006132
6133 if (name) {
6134 /*
6135 * Start new inodes with an inode_ref. This is slightly more
6136 * efficient for small numbers of hard links since they will
6137 * be packed into one item. Extended refs will kick in if we
6138 * add more hard links than can fit in the ref item.
6139 */
6140 key[1].objectid = objectid;
David Sterba962a2982014-06-04 18:41:45 +02006141 key[1].type = BTRFS_INODE_REF_KEY;
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006142 key[1].offset = ref_objectid;
6143
6144 sizes[1] = name_len + sizeof(*ref);
6145 }
Chris Mason9c583092008-01-29 15:15:18 -05006146
Chris Masonb0d5d102014-09-08 13:08:51 -07006147 location = &BTRFS_I(inode)->location;
6148 location->objectid = objectid;
6149 location->offset = 0;
David Sterba962a2982014-06-04 18:41:45 +02006150 location->type = BTRFS_INODE_ITEM_KEY;
Chris Masonb0d5d102014-09-08 13:08:51 -07006151
6152 ret = btrfs_insert_inode_locked(inode);
6153 if (ret < 0)
6154 goto fail;
6155
Chris Masonb9473432009-03-13 11:00:37 -04006156 path->leave_spinning = 1;
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006157 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, nitems);
Chris Mason9c583092008-01-29 15:15:18 -05006158 if (ret != 0)
Chris Masonb0d5d102014-09-08 13:08:51 -07006159 goto fail_unlock;
Chris Mason5f39d392007-10-15 16:14:19 -04006160
Dmitry Monakhovecc11fab2010-03-04 17:31:47 +03006161 inode_init_owner(inode, dir, mode);
Yan Zhenga76a3cd2008-10-09 11:46:29 -04006162 inode_set_bytes(inode, 0);
chandan r9cc97d62012-07-04 12:48:07 +05306163
6164 inode->i_mtime = CURRENT_TIME;
6165 inode->i_atime = inode->i_mtime;
6166 inode->i_ctime = inode->i_mtime;
6167 BTRFS_I(inode)->i_otime = inode->i_mtime;
6168
Chris Mason5f39d392007-10-15 16:14:19 -04006169 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
6170 struct btrfs_inode_item);
Li Zefan293f7e02012-07-10 00:58:58 -06006171 memset_extent_buffer(path->nodes[0], 0, (unsigned long)inode_item,
6172 sizeof(*inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04006173 fill_inode_item(trans, path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05006174
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006175 if (name) {
6176 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
6177 struct btrfs_inode_ref);
6178 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
6179 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
6180 ptr = (unsigned long)(ref + 1);
6181 write_extent_buffer(path->nodes[0], name, ptr, name_len);
6182 }
Chris Mason9c583092008-01-29 15:15:18 -05006183
Chris Mason5f39d392007-10-15 16:14:19 -04006184 btrfs_mark_buffer_dirty(path->nodes[0]);
6185 btrfs_free_path(path);
6186
Christoph Hellwig6cbff002009-04-17 10:37:41 +02006187 btrfs_inherit_iflags(inode, dir);
6188
Al Viro569254b2011-07-24 17:08:40 -04006189 if (S_ISREG(mode)) {
Chris Mason94272162009-07-02 12:26:06 -04006190 if (btrfs_test_opt(root, NODATASUM))
6191 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
Liu Bo213490b2012-09-11 08:33:50 -06006192 if (btrfs_test_opt(root, NODATACOW))
Josef Bacikf2bdf9a2013-02-21 15:28:28 -05006193 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW |
6194 BTRFS_INODE_NODATASUM;
Chris Mason94272162009-07-02 12:26:06 -04006195 }
6196
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006197 inode_tree_add(inode);
liubo1abe9b82011-03-24 11:18:59 +00006198
6199 trace_btrfs_inode_new(inode);
Chris Mason1973f0f2011-06-24 13:13:29 -04006200 btrfs_set_inode_last_trans(trans, inode);
liubo1abe9b82011-03-24 11:18:59 +00006201
Alexander Block8ea05e32012-07-25 17:35:53 +02006202 btrfs_update_root_times(trans, root);
6203
Filipe David Borba Manana63541922014-01-07 11:47:46 +00006204 ret = btrfs_inode_inherit_props(trans, inode, dir);
6205 if (ret)
6206 btrfs_err(root->fs_info,
6207 "error inheriting props for ino %llu (root %llu): %d",
6208 btrfs_ino(inode), root->root_key.objectid, ret);
6209
Chris Mason39279cc2007-06-12 06:35:45 -04006210 return inode;
Chris Masonb0d5d102014-09-08 13:08:51 -07006211
6212fail_unlock:
6213 unlock_new_inode(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04006214fail:
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006215 if (dir && name)
Josef Bacikaec74772008-07-24 12:12:38 -04006216 BTRFS_I(dir)->index_cnt--;
Chris Mason5f39d392007-10-15 16:14:19 -04006217 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04006218 iput(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04006219 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04006220}
6221
6222static inline u8 btrfs_inode_type(struct inode *inode)
6223{
6224 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
6225}
6226
Chris Masond352ac62008-09-29 15:18:18 -04006227/*
6228 * utility function to add 'inode' into 'parent_inode' with
6229 * a give name and a given sequence number.
6230 * if 'add_backref' is true, also insert a backref from the
6231 * inode to the parent directory.
6232 */
Chris Masone02119d2008-09-05 16:13:11 -04006233int btrfs_add_link(struct btrfs_trans_handle *trans,
6234 struct inode *parent_inode, struct inode *inode,
6235 const char *name, int name_len, int add_backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04006236{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006237 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006238 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -04006239 struct btrfs_root *root = BTRFS_I(parent_inode)->root;
Li Zefan33345d012011-04-20 10:31:50 +08006240 u64 ino = btrfs_ino(inode);
6241 u64 parent_ino = btrfs_ino(parent_inode);
Chris Mason5f39d392007-10-15 16:14:19 -04006242
Li Zefan33345d012011-04-20 10:31:50 +08006243 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006244 memcpy(&key, &BTRFS_I(inode)->root->root_key, sizeof(key));
6245 } else {
Li Zefan33345d012011-04-20 10:31:50 +08006246 key.objectid = ino;
David Sterba962a2982014-06-04 18:41:45 +02006247 key.type = BTRFS_INODE_ITEM_KEY;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006248 key.offset = 0;
6249 }
Chris Mason39279cc2007-06-12 06:35:45 -04006250
Li Zefan33345d012011-04-20 10:31:50 +08006251 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006252 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
6253 key.objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08006254 parent_ino, index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006255 } else if (add_backref) {
Li Zefan33345d012011-04-20 10:31:50 +08006256 ret = btrfs_insert_inode_ref(trans, root, name, name_len, ino,
6257 parent_ino, index);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006258 }
6259
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006260 /* Nothing to clean up yet */
6261 if (ret)
6262 return ret;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006263
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006264 ret = btrfs_insert_dir_item(trans, root, name, name_len,
6265 parent_inode, &key,
6266 btrfs_inode_type(inode), index);
Chris Mason9c520572012-12-17 14:26:57 -05006267 if (ret == -EEXIST || ret == -EOVERFLOW)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006268 goto fail_dir_item;
6269 else if (ret) {
6270 btrfs_abort_transaction(trans, root, ret);
6271 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006272 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006273
6274 btrfs_i_size_write(parent_inode, parent_inode->i_size +
6275 name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04006276 inode_inc_iversion(parent_inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006277 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
6278 ret = btrfs_update_inode(trans, root, parent_inode);
6279 if (ret)
6280 btrfs_abort_transaction(trans, root, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04006281 return ret;
Chris Masonfe66a052012-02-20 08:40:56 -05006282
6283fail_dir_item:
6284 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
6285 u64 local_index;
6286 int err;
6287 err = btrfs_del_root_ref(trans, root->fs_info->tree_root,
6288 key.objectid, root->root_key.objectid,
6289 parent_ino, &local_index, name, name_len);
6290
6291 } else if (add_backref) {
6292 u64 local_index;
6293 int err;
6294
6295 err = btrfs_del_inode_ref(trans, root, name, name_len,
6296 ino, parent_ino, &local_index);
6297 }
6298 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006299}
6300
6301static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Josef Bacika1b075d2010-11-19 20:36:11 +00006302 struct inode *dir, struct dentry *dentry,
6303 struct inode *inode, int backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04006304{
Josef Bacika1b075d2010-11-19 20:36:11 +00006305 int err = btrfs_add_link(trans, dir, inode,
6306 dentry->d_name.name, dentry->d_name.len,
6307 backref, index);
Chris Mason39279cc2007-06-12 06:35:45 -04006308 if (err > 0)
6309 err = -EEXIST;
6310 return err;
6311}
6312
Josef Bacik618e21d2007-07-11 10:18:17 -04006313static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
Al Viro1a67aaf2011-07-26 01:52:52 -04006314 umode_t mode, dev_t rdev)
Josef Bacik618e21d2007-07-11 10:18:17 -04006315{
6316 struct btrfs_trans_handle *trans;
6317 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05006318 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04006319 int err;
6320 int drop_inode = 0;
6321 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006322 u64 index = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04006323
6324 if (!new_valid_dev(rdev))
6325 return -EINVAL;
6326
Josef Bacik9ed74f22009-09-11 16:12:44 -04006327 /*
6328 * 2 for inode item and ref
6329 * 2 for dir items
6330 * 1 for xattr if selinux is on
6331 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04006332 trans = btrfs_start_transaction(root, 5);
6333 if (IS_ERR(trans))
6334 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05006335
Li Zefan581bb052011-04-20 10:06:11 +08006336 err = btrfs_find_free_ino(root, &objectid);
6337 if (err)
6338 goto out_unlock;
6339
Josef Bacikaec74772008-07-24 12:12:38 -04006340 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08006341 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04006342 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006343 if (IS_ERR(inode)) {
6344 err = PTR_ERR(inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04006345 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006346 }
Josef Bacik618e21d2007-07-11 10:18:17 -04006347
Casey Schauflerad19db72011-12-15 10:09:07 -05006348 /*
6349 * If the active LSM wants to access the inode during
6350 * d_instantiate it needs these. Smack checks to see
6351 * if the filesystem supports xattrs by looking at the
6352 * ops vector.
6353 */
Casey Schauflerad19db72011-12-15 10:09:07 -05006354 inode->i_op = &btrfs_special_inode_operations;
Chris Masonb0d5d102014-09-08 13:08:51 -07006355 init_special_inode(inode, inode->i_mode, rdev);
6356
6357 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik618e21d2007-07-11 10:18:17 -04006358 if (err)
Chris Masonb0d5d102014-09-08 13:08:51 -07006359 goto out_unlock_inode;
6360
6361 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
6362 if (err) {
6363 goto out_unlock_inode;
6364 } else {
Yan1b4ab1b2007-08-29 09:11:44 -04006365 btrfs_update_inode(trans, root, inode);
Chris Masonb0d5d102014-09-08 13:08:51 -07006366 unlock_new_inode(inode);
Al Viro08c422c2011-12-23 07:58:13 -05006367 d_instantiate(dentry, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04006368 }
Chris Masonb0d5d102014-09-08 13:08:51 -07006369
Josef Bacik618e21d2007-07-11 10:18:17 -04006370out_unlock:
Josef Bacik7ad85bb2012-01-12 19:10:12 -05006371 btrfs_end_transaction(trans, root);
Josef Bacikc581afc2014-02-06 16:06:06 -05006372 btrfs_balance_delayed_items(root);
Liu Bob53d3f52012-11-14 14:34:34 +00006373 btrfs_btree_balance_dirty(root);
Josef Bacik618e21d2007-07-11 10:18:17 -04006374 if (drop_inode) {
6375 inode_dec_link_count(inode);
6376 iput(inode);
6377 }
Josef Bacik618e21d2007-07-11 10:18:17 -04006378 return err;
Chris Masonb0d5d102014-09-08 13:08:51 -07006379
6380out_unlock_inode:
6381 drop_inode = 1;
6382 unlock_new_inode(inode);
6383 goto out_unlock;
6384
Josef Bacik618e21d2007-07-11 10:18:17 -04006385}
6386
Chris Mason39279cc2007-06-12 06:35:45 -04006387static int btrfs_create(struct inode *dir, struct dentry *dentry,
Al Viroebfc3b42012-06-10 18:05:36 -04006388 umode_t mode, bool excl)
Chris Mason39279cc2007-06-12 06:35:45 -04006389{
6390 struct btrfs_trans_handle *trans;
6391 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05006392 struct inode *inode = NULL;
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006393 int drop_inode_on_err = 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -04006394 int err;
Chris Mason39279cc2007-06-12 06:35:45 -04006395 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006396 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006397
Josef Bacik9ed74f22009-09-11 16:12:44 -04006398 /*
6399 * 2 for inode item and ref
6400 * 2 for dir items
6401 * 1 for xattr if selinux is on
6402 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04006403 trans = btrfs_start_transaction(root, 5);
6404 if (IS_ERR(trans))
6405 return PTR_ERR(trans);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006406
Li Zefan581bb052011-04-20 10:06:11 +08006407 err = btrfs_find_free_ino(root, &objectid);
6408 if (err)
6409 goto out_unlock;
6410
Josef Bacikaec74772008-07-24 12:12:38 -04006411 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08006412 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04006413 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006414 if (IS_ERR(inode)) {
6415 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006416 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006417 }
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006418 drop_inode_on_err = 1;
Casey Schauflerad19db72011-12-15 10:09:07 -05006419 /*
6420 * If the active LSM wants to access the inode during
6421 * d_instantiate it needs these. Smack checks to see
6422 * if the filesystem supports xattrs by looking at the
6423 * ops vector.
6424 */
6425 inode->i_fop = &btrfs_file_operations;
6426 inode->i_op = &btrfs_file_inode_operations;
Chris Masonb0d5d102014-09-08 13:08:51 -07006427 inode->i_mapping->a_ops = &btrfs_aops;
Chris Masonb0d5d102014-09-08 13:08:51 -07006428
6429 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
6430 if (err)
6431 goto out_unlock_inode;
6432
6433 err = btrfs_update_inode(trans, root, inode);
6434 if (err)
6435 goto out_unlock_inode;
Casey Schauflerad19db72011-12-15 10:09:07 -05006436
Josef Bacika1b075d2010-11-19 20:36:11 +00006437 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04006438 if (err)
Chris Masonb0d5d102014-09-08 13:08:51 -07006439 goto out_unlock_inode;
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006440
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006441 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Masonb0d5d102014-09-08 13:08:51 -07006442 unlock_new_inode(inode);
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006443 d_instantiate(dentry, inode);
6444
Chris Mason39279cc2007-06-12 06:35:45 -04006445out_unlock:
Josef Bacik7ad85bb2012-01-12 19:10:12 -05006446 btrfs_end_transaction(trans, root);
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006447 if (err && drop_inode_on_err) {
Chris Mason39279cc2007-06-12 06:35:45 -04006448 inode_dec_link_count(inode);
6449 iput(inode);
6450 }
Josef Bacikc581afc2014-02-06 16:06:06 -05006451 btrfs_balance_delayed_items(root);
Liu Bob53d3f52012-11-14 14:34:34 +00006452 btrfs_btree_balance_dirty(root);
Chris Mason39279cc2007-06-12 06:35:45 -04006453 return err;
Chris Masonb0d5d102014-09-08 13:08:51 -07006454
6455out_unlock_inode:
6456 unlock_new_inode(inode);
6457 goto out_unlock;
6458
Chris Mason39279cc2007-06-12 06:35:45 -04006459}
6460
6461static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
6462 struct dentry *dentry)
6463{
6464 struct btrfs_trans_handle *trans;
6465 struct btrfs_root *root = BTRFS_I(dir)->root;
David Howells2b0143b2015-03-17 22:25:59 +00006466 struct inode *inode = d_inode(old_dentry);
Chris Mason00e4e6b2008-08-05 11:18:09 -04006467 u64 index;
Chris Mason39279cc2007-06-12 06:35:45 -04006468 int err;
6469 int drop_inode = 0;
6470
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00006471 /* do not allow sys_link's with other subvols of the same device */
6472 if (root->objectid != BTRFS_I(inode)->root->objectid)
Mark Fasheh3ab35642011-03-22 17:20:26 +00006473 return -EXDEV;
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00006474
Mark Fashehf1863732012-08-08 11:32:27 -07006475 if (inode->i_nlink >= BTRFS_LINK_MAX)
Al Viroc055e992011-03-04 17:15:18 +00006476 return -EMLINK;
Josef Bacik9ed74f22009-09-11 16:12:44 -04006477
Chris Mason3de45862008-11-17 21:02:50 -05006478 err = btrfs_set_inode_index(dir, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04006479 if (err)
6480 goto fail;
6481
Yan, Zhenga22285a2010-05-16 10:48:46 -04006482 /*
Miao Xie7e6b6462011-02-18 09:21:17 +00006483 * 2 items for inode and inode ref
Yan, Zhenga22285a2010-05-16 10:48:46 -04006484 * 2 items for dir items
Miao Xie7e6b6462011-02-18 09:21:17 +00006485 * 1 item for parent inode
Yan, Zhenga22285a2010-05-16 10:48:46 -04006486 */
Miao Xie7e6b6462011-02-18 09:21:17 +00006487 trans = btrfs_start_transaction(root, 5);
Yan, Zhenga22285a2010-05-16 10:48:46 -04006488 if (IS_ERR(trans)) {
6489 err = PTR_ERR(trans);
6490 goto fail;
6491 }
Chris Mason5f39d392007-10-15 16:14:19 -04006492
Miao Xie67de1172013-12-26 13:07:06 +08006493 /* There are several dir indexes for this inode, clear the cache. */
6494 BTRFS_I(inode)->dir_index = 0ULL;
Zach Brown8b558c52013-10-16 12:10:34 -07006495 inc_nlink(inode);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04006496 inode_inc_iversion(inode);
Miao Xie31534952011-04-13 13:19:21 +08006497 inode->i_ctime = CURRENT_TIME;
Al Viro7de9c6ee2010-10-23 11:11:40 -04006498 ihold(inode);
Josef Bacike9976152012-10-11 15:53:56 -04006499 set_bit(BTRFS_INODE_COPY_EVERYTHING, &BTRFS_I(inode)->runtime_flags);
Josef Bacikaec74772008-07-24 12:12:38 -04006500
Josef Bacika1b075d2010-11-19 20:36:11 +00006501 err = btrfs_add_nondir(trans, dir, dentry, inode, 1, index);
Chris Mason5f39d392007-10-15 16:14:19 -04006502
Yan, Zhenga5719522009-09-24 09:17:31 -04006503 if (err) {
Chris Mason39279cc2007-06-12 06:35:45 -04006504 drop_inode = 1;
Yan, Zhenga5719522009-09-24 09:17:31 -04006505 } else {
Al Viro10d9f302011-07-16 23:09:10 -04006506 struct dentry *parent = dentry->d_parent;
Yan, Zhenga5719522009-09-24 09:17:31 -04006507 err = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006508 if (err)
6509 goto fail;
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006510 if (inode->i_nlink == 1) {
6511 /*
6512 * If new hard link count is 1, it's a file created
6513 * with open(2) O_TMPFILE flag.
6514 */
6515 err = btrfs_orphan_del(trans, inode);
6516 if (err)
6517 goto fail;
6518 }
Al Viro08c422c2011-12-23 07:58:13 -05006519 d_instantiate(dentry, inode);
Josef Bacik6a912212010-11-20 09:48:00 +00006520 btrfs_log_new_name(trans, inode, NULL, parent);
Yan, Zhenga5719522009-09-24 09:17:31 -04006521 }
Chris Mason39279cc2007-06-12 06:35:45 -04006522
Josef Bacik7ad85bb2012-01-12 19:10:12 -05006523 btrfs_end_transaction(trans, root);
Josef Bacikc581afc2014-02-06 16:06:06 -05006524 btrfs_balance_delayed_items(root);
Chris Mason1832a6d2007-12-21 16:27:21 -05006525fail:
Chris Mason39279cc2007-06-12 06:35:45 -04006526 if (drop_inode) {
6527 inode_dec_link_count(inode);
6528 iput(inode);
6529 }
Liu Bob53d3f52012-11-14 14:34:34 +00006530 btrfs_btree_balance_dirty(root);
Chris Mason39279cc2007-06-12 06:35:45 -04006531 return err;
6532}
6533
Al Viro18bb1db2011-07-26 01:41:39 -04006534static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Chris Mason39279cc2007-06-12 06:35:45 -04006535{
Chris Masonb9d86662008-05-02 16:13:49 -04006536 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04006537 struct btrfs_trans_handle *trans;
6538 struct btrfs_root *root = BTRFS_I(dir)->root;
6539 int err = 0;
6540 int drop_on_err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04006541 u64 objectid = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006542 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006543
Josef Bacik9ed74f22009-09-11 16:12:44 -04006544 /*
6545 * 2 items for inode and ref
6546 * 2 items for dir items
6547 * 1 for xattr if selinux is on
6548 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04006549 trans = btrfs_start_transaction(root, 5);
6550 if (IS_ERR(trans))
6551 return PTR_ERR(trans);
Chris Mason39279cc2007-06-12 06:35:45 -04006552
Li Zefan581bb052011-04-20 10:06:11 +08006553 err = btrfs_find_free_ino(root, &objectid);
6554 if (err)
6555 goto out_fail;
6556
Josef Bacikaec74772008-07-24 12:12:38 -04006557 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08006558 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04006559 S_IFDIR | mode, &index);
Chris Mason39279cc2007-06-12 06:35:45 -04006560 if (IS_ERR(inode)) {
6561 err = PTR_ERR(inode);
6562 goto out_fail;
6563 }
Chris Mason5f39d392007-10-15 16:14:19 -04006564
Chris Mason39279cc2007-06-12 06:35:45 -04006565 drop_on_err = 1;
Chris Masonb0d5d102014-09-08 13:08:51 -07006566 /* these must be set before we unlock the inode */
6567 inode->i_op = &btrfs_dir_inode_operations;
6568 inode->i_fop = &btrfs_dir_file_operations;
Josef Bacik33268ea2008-07-24 12:16:36 -04006569
Eric Paris2a7dba32011-02-01 11:05:39 -05006570 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04006571 if (err)
Chris Masonb0d5d102014-09-08 13:08:51 -07006572 goto out_fail_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04006573
Chris Masondbe674a2008-07-17 12:54:05 -04006574 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04006575 err = btrfs_update_inode(trans, root, inode);
6576 if (err)
Chris Masonb0d5d102014-09-08 13:08:51 -07006577 goto out_fail_inode;
Chris Mason5f39d392007-10-15 16:14:19 -04006578
Josef Bacika1b075d2010-11-19 20:36:11 +00006579 err = btrfs_add_link(trans, dir, inode, dentry->d_name.name,
6580 dentry->d_name.len, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04006581 if (err)
Chris Masonb0d5d102014-09-08 13:08:51 -07006582 goto out_fail_inode;
Chris Mason5f39d392007-10-15 16:14:19 -04006583
Chris Mason39279cc2007-06-12 06:35:45 -04006584 d_instantiate(dentry, inode);
Chris Masonb0d5d102014-09-08 13:08:51 -07006585 /*
6586 * mkdir is special. We're unlocking after we call d_instantiate
6587 * to avoid a race with nfsd calling d_instantiate.
6588 */
6589 unlock_new_inode(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006590 drop_on_err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006591
6592out_fail:
Josef Bacik7ad85bb2012-01-12 19:10:12 -05006593 btrfs_end_transaction(trans, root);
Wang Shilongc7cfb8a2014-12-24 14:45:30 +08006594 if (drop_on_err) {
6595 inode_dec_link_count(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006596 iput(inode);
Wang Shilongc7cfb8a2014-12-24 14:45:30 +08006597 }
Josef Bacikc581afc2014-02-06 16:06:06 -05006598 btrfs_balance_delayed_items(root);
Liu Bob53d3f52012-11-14 14:34:34 +00006599 btrfs_btree_balance_dirty(root);
Chris Mason39279cc2007-06-12 06:35:45 -04006600 return err;
Chris Masonb0d5d102014-09-08 13:08:51 -07006601
6602out_fail_inode:
6603 unlock_new_inode(inode);
6604 goto out_fail;
Chris Mason39279cc2007-06-12 06:35:45 -04006605}
6606
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08006607/* Find next extent map of a given extent map, caller needs to ensure locks */
6608static struct extent_map *next_extent_map(struct extent_map *em)
6609{
6610 struct rb_node *next;
6611
6612 next = rb_next(&em->rb_node);
6613 if (!next)
6614 return NULL;
6615 return container_of(next, struct extent_map, rb_node);
6616}
6617
6618static struct extent_map *prev_extent_map(struct extent_map *em)
6619{
6620 struct rb_node *prev;
6621
6622 prev = rb_prev(&em->rb_node);
6623 if (!prev)
6624 return NULL;
6625 return container_of(prev, struct extent_map, rb_node);
6626}
6627
Chris Masond352ac62008-09-29 15:18:18 -04006628/* helper for btfs_get_extent. Given an existing extent in the tree,
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08006629 * the existing extent is the nearest extent to map_start,
Chris Masond352ac62008-09-29 15:18:18 -04006630 * and an extent that you want to insert, deal with overlap and insert
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08006631 * the best fitted new extent into the tree.
Chris Masond352ac62008-09-29 15:18:18 -04006632 */
Chris Mason3b951512008-04-17 11:29:12 -04006633static int merge_extent_mapping(struct extent_map_tree *em_tree,
6634 struct extent_map *existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04006635 struct extent_map *em,
Qu Wenruo51f395a2014-08-08 13:06:20 +08006636 u64 map_start)
Chris Mason3b951512008-04-17 11:29:12 -04006637{
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08006638 struct extent_map *prev;
6639 struct extent_map *next;
6640 u64 start;
6641 u64 end;
Chris Mason3b951512008-04-17 11:29:12 -04006642 u64 start_diff;
Chris Mason3b951512008-04-17 11:29:12 -04006643
Chris Masone6dcd2d2008-07-17 12:53:50 -04006644 BUG_ON(map_start < em->start || map_start >= extent_map_end(em));
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08006645
6646 if (existing->start > map_start) {
6647 next = existing;
6648 prev = prev_extent_map(next);
6649 } else {
6650 prev = existing;
6651 next = next_extent_map(prev);
6652 }
6653
6654 start = prev ? extent_map_end(prev) : em->start;
6655 start = max_t(u64, start, em->start);
6656 end = next ? next->start : extent_map_end(em);
6657 end = min_t(u64, end, extent_map_end(em));
6658 start_diff = start - em->start;
6659 em->start = start;
6660 em->len = end - start;
Chris Masonc8b97812008-10-29 14:49:59 -04006661 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
6662 !test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04006663 em->block_start += start_diff;
Chris Masonc8b97812008-10-29 14:49:59 -04006664 em->block_len -= start_diff;
6665 }
Josef Bacik09a2a8f92013-04-05 16:51:15 -04006666 return add_extent_mapping(em_tree, em, 0);
Chris Mason3b951512008-04-17 11:29:12 -04006667}
6668
Chris Masonc8b97812008-10-29 14:49:59 -04006669static noinline int uncompress_inline(struct btrfs_path *path,
6670 struct inode *inode, struct page *page,
6671 size_t pg_offset, u64 extent_offset,
6672 struct btrfs_file_extent_item *item)
6673{
6674 int ret;
6675 struct extent_buffer *leaf = path->nodes[0];
6676 char *tmp;
6677 size_t max_size;
6678 unsigned long inline_size;
6679 unsigned long ptr;
Li Zefan261507a02010-12-17 14:21:50 +08006680 int compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04006681
6682 WARN_ON(pg_offset != 0);
Li Zefan261507a02010-12-17 14:21:50 +08006683 compress_type = btrfs_file_extent_compression(leaf, item);
Chris Masonc8b97812008-10-29 14:49:59 -04006684 max_size = btrfs_file_extent_ram_bytes(leaf, item);
6685 inline_size = btrfs_file_extent_inline_item_len(leaf,
Ross Kirkdd3cc162013-09-16 15:58:09 +01006686 btrfs_item_nr(path->slots[0]));
Chris Masonc8b97812008-10-29 14:49:59 -04006687 tmp = kmalloc(inline_size, GFP_NOFS);
Tsutomu Itoh8d413712011-04-25 19:43:52 -04006688 if (!tmp)
6689 return -ENOMEM;
Chris Masonc8b97812008-10-29 14:49:59 -04006690 ptr = btrfs_file_extent_inline_start(item);
6691
6692 read_extent_buffer(leaf, tmp, ptr, inline_size);
6693
Chris Mason5b050f02008-11-11 09:34:41 -05006694 max_size = min_t(unsigned long, PAGE_CACHE_SIZE, max_size);
Li Zefan261507a02010-12-17 14:21:50 +08006695 ret = btrfs_decompress(compress_type, tmp, page,
6696 extent_offset, inline_size, max_size);
Chris Masonc8b97812008-10-29 14:49:59 -04006697 kfree(tmp);
Zach Brown166ae5a2014-05-09 17:15:10 -04006698 return ret;
Chris Masonc8b97812008-10-29 14:49:59 -04006699}
6700
Chris Masond352ac62008-09-29 15:18:18 -04006701/*
6702 * a bit scary, this does extent mapping from logical file offset to the disk.
Chris Masond3977122009-01-05 21:25:51 -05006703 * the ugly parts come from merging extents from the disk with the in-ram
6704 * representation. This gets more complex because of the data=ordered code,
Chris Masond352ac62008-09-29 15:18:18 -04006705 * where the in-ram extents might be locked pending data=ordered completion.
6706 *
6707 * This also copies inline extents directly into the page.
6708 */
Chris Masond3977122009-01-05 21:25:51 -05006709
Chris Masona52d9a82007-08-27 16:49:44 -04006710struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05006711 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04006712 int create)
6713{
6714 int ret;
6715 int err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04006716 u64 extent_start = 0;
6717 u64 extent_end = 0;
Li Zefan33345d012011-04-20 10:31:50 +08006718 u64 objectid = btrfs_ino(inode);
Chris Masona52d9a82007-08-27 16:49:44 -04006719 u32 found_type;
Chris Masonf4219502008-07-22 11:18:09 -04006720 struct btrfs_path *path = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -04006721 struct btrfs_root *root = BTRFS_I(inode)->root;
6722 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04006723 struct extent_buffer *leaf;
6724 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04006725 struct extent_map *em = NULL;
6726 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05006727 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04006728 struct btrfs_trans_handle *trans = NULL;
Filipe Manana7ffbb592014-06-09 03:48:05 +01006729 const bool new_inline = !page || create;
Chris Masona52d9a82007-08-27 16:49:44 -04006730
Chris Masona52d9a82007-08-27 16:49:44 -04006731again:
Chris Mason890871b2009-09-02 16:24:52 -04006732 read_lock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05006733 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04006734 if (em)
6735 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason890871b2009-09-02 16:24:52 -04006736 read_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05006737
Chris Masona52d9a82007-08-27 16:49:44 -04006738 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04006739 if (em->start > start || em->start + em->len <= start)
6740 free_extent_map(em);
6741 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05006742 free_extent_map(em);
6743 else
6744 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04006745 }
David Sterba172ddd62011-04-21 00:48:27 +02006746 em = alloc_extent_map();
Chris Masona52d9a82007-08-27 16:49:44 -04006747 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05006748 err = -ENOMEM;
6749 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04006750 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006751 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05006752 em->start = EXTENT_MAP_HOLE;
Chris Mason445a6942008-11-10 11:53:33 -05006753 em->orig_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05006754 em->len = (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -04006755 em->block_len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04006756
6757 if (!path) {
6758 path = btrfs_alloc_path();
Josef Bacik026fd312011-05-13 10:32:11 -04006759 if (!path) {
6760 err = -ENOMEM;
6761 goto out;
6762 }
6763 /*
6764 * Chances are we'll be called again, so go ahead and do
6765 * readahead
6766 */
6767 path->reada = 1;
Chris Masonf4219502008-07-22 11:18:09 -04006768 }
6769
Chris Mason179e29e2007-11-01 11:28:41 -04006770 ret = btrfs_lookup_file_extent(trans, root, path,
6771 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04006772 if (ret < 0) {
6773 err = ret;
6774 goto out;
6775 }
6776
6777 if (ret != 0) {
6778 if (path->slots[0] == 0)
6779 goto not_found;
6780 path->slots[0]--;
6781 }
6782
Chris Mason5f39d392007-10-15 16:14:19 -04006783 leaf = path->nodes[0];
6784 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04006785 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04006786 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04006787 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
David Sterba962a2982014-06-04 18:41:45 +02006788 found_type = found_key.type;
Chris Mason5f39d392007-10-15 16:14:19 -04006789 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04006790 found_type != BTRFS_EXTENT_DATA_KEY) {
Josef Bacik25a50342013-10-14 12:08:38 -04006791 /*
6792 * If we backup past the first extent we want to move forward
6793 * and see if there is an extent in front of us, otherwise we'll
6794 * say there is a hole for our whole search range which can
6795 * cause problems.
6796 */
6797 extent_end = start;
6798 goto next;
Chris Masona52d9a82007-08-27 16:49:44 -04006799 }
6800
Chris Mason5f39d392007-10-15 16:14:19 -04006801 found_type = btrfs_file_extent_type(leaf, item);
6802 extent_start = found_key.offset;
Yan Zhengd899e052008-10-30 14:25:28 -04006803 if (found_type == BTRFS_FILE_EXTENT_REG ||
6804 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04006805 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04006806 btrfs_file_extent_num_bytes(leaf, item);
Yan Zheng9036c102008-10-30 14:19:41 -04006807 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
6808 size_t size;
Chris Mason514ac8a2014-01-03 21:07:00 -08006809 size = btrfs_file_extent_inline_len(leaf, path->slots[0], item);
Qu Wenruofda28322013-02-26 08:10:22 +00006810 extent_end = ALIGN(extent_start + size, root->sectorsize);
Yan Zheng9036c102008-10-30 14:19:41 -04006811 }
Josef Bacik25a50342013-10-14 12:08:38 -04006812next:
Yan Zheng9036c102008-10-30 14:19:41 -04006813 if (start >= extent_end) {
6814 path->slots[0]++;
6815 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
6816 ret = btrfs_next_leaf(root, path);
6817 if (ret < 0) {
6818 err = ret;
6819 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04006820 }
Yan Zheng9036c102008-10-30 14:19:41 -04006821 if (ret > 0)
6822 goto not_found;
6823 leaf = path->nodes[0];
Chris Masona52d9a82007-08-27 16:49:44 -04006824 }
Yan Zheng9036c102008-10-30 14:19:41 -04006825 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
6826 if (found_key.objectid != objectid ||
6827 found_key.type != BTRFS_EXTENT_DATA_KEY)
6828 goto not_found;
6829 if (start + len <= found_key.offset)
6830 goto not_found;
Wang Shilonge2eca692014-07-17 11:44:14 +08006831 if (start > found_key.offset)
6832 goto next;
Yan Zheng9036c102008-10-30 14:19:41 -04006833 em->start = start;
Josef Bacik70c8a912012-10-11 16:54:30 -04006834 em->orig_start = start;
Yan Zheng9036c102008-10-30 14:19:41 -04006835 em->len = found_key.offset - start;
6836 goto not_found_em;
6837 }
6838
Filipe Manana7ffbb592014-06-09 03:48:05 +01006839 btrfs_extent_item_to_extent_map(inode, path, item, new_inline, em);
6840
Yan Zhengd899e052008-10-30 14:25:28 -04006841 if (found_type == BTRFS_FILE_EXTENT_REG ||
6842 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04006843 goto insert;
6844 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04006845 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04006846 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04006847 size_t size;
6848 size_t extent_offset;
6849 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04006850
Filipe Manana7ffbb592014-06-09 03:48:05 +01006851 if (new_inline)
Yan689f9342007-10-29 11:41:07 -04006852 goto out;
Yan689f9342007-10-29 11:41:07 -04006853
Chris Mason514ac8a2014-01-03 21:07:00 -08006854 size = btrfs_file_extent_inline_len(leaf, path->slots[0], item);
Yan Zheng9036c102008-10-30 14:19:41 -04006855 extent_offset = page_offset(page) + pg_offset - extent_start;
Chris Mason70dec802008-01-29 09:59:12 -05006856 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
Yan689f9342007-10-29 11:41:07 -04006857 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04006858 em->start = extent_start + extent_offset;
Qu Wenruofda28322013-02-26 08:10:22 +00006859 em->len = ALIGN(copy_size, root->sectorsize);
Josef Bacikb4939682012-12-03 10:31:19 -05006860 em->orig_block_len = em->len;
Josef Bacik70c8a912012-10-11 16:54:30 -04006861 em->orig_start = em->start;
Yan689f9342007-10-29 11:41:07 -04006862 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04006863 if (create == 0 && !PageUptodate(page)) {
Li Zefan261507a02010-12-17 14:21:50 +08006864 if (btrfs_file_extent_compression(leaf, item) !=
6865 BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -04006866 ret = uncompress_inline(path, inode, page,
6867 pg_offset,
6868 extent_offset, item);
Zach Brown166ae5a2014-05-09 17:15:10 -04006869 if (ret) {
6870 err = ret;
6871 goto out;
6872 }
Chris Masonc8b97812008-10-29 14:49:59 -04006873 } else {
6874 map = kmap(page);
6875 read_extent_buffer(leaf, map + pg_offset, ptr,
6876 copy_size);
Chris Mason93c82d52009-09-11 12:36:29 -04006877 if (pg_offset + copy_size < PAGE_CACHE_SIZE) {
6878 memset(map + pg_offset + copy_size, 0,
6879 PAGE_CACHE_SIZE - pg_offset -
6880 copy_size);
6881 }
Chris Masonc8b97812008-10-29 14:49:59 -04006882 kunmap(page);
6883 }
Chris Mason179e29e2007-11-01 11:28:41 -04006884 flush_dcache_page(page);
6885 } else if (create && PageUptodate(page)) {
Jan Schmidt6bf7e082011-12-01 14:35:19 +01006886 BUG();
Chris Mason179e29e2007-11-01 11:28:41 -04006887 if (!trans) {
6888 kunmap(page);
6889 free_extent_map(em);
6890 em = NULL;
Chris Masonff5714c2011-05-28 07:00:39 -04006891
David Sterbab3b4aa72011-04-21 01:20:15 +02006892 btrfs_release_path(path);
Josef Bacik7a7eaa42011-04-13 12:54:33 -04006893 trans = btrfs_join_transaction(root);
Chris Masonff5714c2011-05-28 07:00:39 -04006894
Tsutomu Itoh3612b492011-01-25 02:51:38 +00006895 if (IS_ERR(trans))
6896 return ERR_CAST(trans);
Chris Mason179e29e2007-11-01 11:28:41 -04006897 goto again;
6898 }
Chris Masonc8b97812008-10-29 14:49:59 -04006899 map = kmap(page);
Chris Mason70dec802008-01-29 09:59:12 -05006900 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04006901 copy_size);
Chris Masonc8b97812008-10-29 14:49:59 -04006902 kunmap(page);
Chris Mason179e29e2007-11-01 11:28:41 -04006903 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04006904 }
Chris Masond1310b22008-01-24 16:13:08 -05006905 set_extent_uptodate(io_tree, em->start,
Arne Jansen507903b2011-04-06 10:02:20 +00006906 extent_map_end(em) - 1, NULL, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04006907 goto insert;
Chris Masona52d9a82007-08-27 16:49:44 -04006908 }
6909not_found:
6910 em->start = start;
Josef Bacik70c8a912012-10-11 16:54:30 -04006911 em->orig_start = start;
Chris Masond1310b22008-01-24 16:13:08 -05006912 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04006913not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04006914 em->block_start = EXTENT_MAP_HOLE;
Yan Zheng9036c102008-10-30 14:19:41 -04006915 set_bit(EXTENT_FLAG_VACANCY, &em->flags);
Chris Masona52d9a82007-08-27 16:49:44 -04006916insert:
David Sterbab3b4aa72011-04-21 01:20:15 +02006917 btrfs_release_path(path);
Chris Masond1310b22008-01-24 16:13:08 -05006918 if (em->start > start || extent_map_end(em) <= start) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006919 btrfs_err(root->fs_info, "bad extent! em: [%llu %llu] passed [%llu %llu]",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006920 em->start, em->len, start, len);
Chris Masona52d9a82007-08-27 16:49:44 -04006921 err = -EIO;
6922 goto out;
6923 }
Chris Masond1310b22008-01-24 16:13:08 -05006924
6925 err = 0;
Chris Mason890871b2009-09-02 16:24:52 -04006926 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04006927 ret = add_extent_mapping(em_tree, em, 0);
Chris Mason3b951512008-04-17 11:29:12 -04006928 /* it is possible that someone inserted the extent into the tree
6929 * while we had the lock dropped. It is also possible that
6930 * an overlapping map exists in the tree
6931 */
Chris Masona52d9a82007-08-27 16:49:44 -04006932 if (ret == -EEXIST) {
Chris Mason3b951512008-04-17 11:29:12 -04006933 struct extent_map *existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006934
6935 ret = 0;
6936
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08006937 existing = search_extent_mapping(em_tree, start, len);
6938 /*
6939 * existing will always be non-NULL, since there must be
6940 * extent causing the -EEXIST.
6941 */
6942 if (start >= extent_map_end(existing) ||
Qu Wenruo32be3a12014-09-22 09:13:03 +08006943 start <= existing->start) {
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08006944 /*
6945 * The existing extent map is the one nearest to
6946 * the [start, start + len) range which overlaps
6947 */
6948 err = merge_extent_mapping(em_tree, existing,
6949 em, start);
Chris Masone1c4b742008-04-22 13:26:46 -04006950 free_extent_map(existing);
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08006951 if (err) {
Chris Mason3b951512008-04-17 11:29:12 -04006952 free_extent_map(em);
6953 em = NULL;
6954 }
6955 } else {
6956 free_extent_map(em);
6957 em = existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006958 err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04006959 }
Chris Masona52d9a82007-08-27 16:49:44 -04006960 }
Chris Mason890871b2009-09-02 16:24:52 -04006961 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04006962out:
liubo1abe9b82011-03-24 11:18:59 +00006963
Steven Rostedt4cd85872013-11-14 22:57:29 -05006964 trace_btrfs_get_extent(root, em);
liubo1abe9b82011-03-24 11:18:59 +00006965
Tsutomu Itoh527afb42015-08-19 14:55:00 +09006966 btrfs_free_path(path);
Chris Masona52d9a82007-08-27 16:49:44 -04006967 if (trans) {
6968 ret = btrfs_end_transaction(trans, root);
Chris Masond3977122009-01-05 21:25:51 -05006969 if (!err)
Chris Masona52d9a82007-08-27 16:49:44 -04006970 err = ret;
6971 }
Chris Masona52d9a82007-08-27 16:49:44 -04006972 if (err) {
6973 free_extent_map(em);
Chris Masona52d9a82007-08-27 16:49:44 -04006974 return ERR_PTR(err);
6975 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006976 BUG_ON(!em); /* Error is always set */
Chris Masona52d9a82007-08-27 16:49:44 -04006977 return em;
6978}
6979
Chris Masonec29ed52011-02-23 16:23:20 -05006980struct extent_map *btrfs_get_extent_fiemap(struct inode *inode, struct page *page,
6981 size_t pg_offset, u64 start, u64 len,
6982 int create)
6983{
6984 struct extent_map *em;
6985 struct extent_map *hole_em = NULL;
6986 u64 range_start = start;
6987 u64 end;
6988 u64 found;
6989 u64 found_end;
6990 int err = 0;
6991
6992 em = btrfs_get_extent(inode, page, pg_offset, start, len, create);
6993 if (IS_ERR(em))
6994 return em;
6995 if (em) {
6996 /*
Liu Bof9e4fb52013-01-07 10:10:12 +00006997 * if our em maps to
6998 * - a hole or
6999 * - a pre-alloc extent,
7000 * there might actually be delalloc bytes behind it.
Chris Masonec29ed52011-02-23 16:23:20 -05007001 */
Liu Bof9e4fb52013-01-07 10:10:12 +00007002 if (em->block_start != EXTENT_MAP_HOLE &&
7003 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
Chris Masonec29ed52011-02-23 16:23:20 -05007004 return em;
7005 else
7006 hole_em = em;
7007 }
7008
7009 /* check to see if we've wrapped (len == -1 or similar) */
7010 end = start + len;
7011 if (end < start)
7012 end = (u64)-1;
7013 else
7014 end -= 1;
7015
7016 em = NULL;
7017
7018 /* ok, we didn't find anything, lets look for delalloc */
7019 found = count_range_bits(&BTRFS_I(inode)->io_tree, &range_start,
7020 end, len, EXTENT_DELALLOC, 1);
7021 found_end = range_start + found;
7022 if (found_end < range_start)
7023 found_end = (u64)-1;
7024
7025 /*
7026 * we didn't find anything useful, return
7027 * the original results from get_extent()
7028 */
7029 if (range_start > end || found_end <= start) {
7030 em = hole_em;
7031 hole_em = NULL;
7032 goto out;
7033 }
7034
7035 /* adjust the range_start to make sure it doesn't
7036 * go backwards from the start they passed in
7037 */
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05307038 range_start = max(start, range_start);
Chris Masonec29ed52011-02-23 16:23:20 -05007039 found = found_end - range_start;
7040
7041 if (found > 0) {
7042 u64 hole_start = start;
7043 u64 hole_len = len;
7044
David Sterba172ddd62011-04-21 00:48:27 +02007045 em = alloc_extent_map();
Chris Masonec29ed52011-02-23 16:23:20 -05007046 if (!em) {
7047 err = -ENOMEM;
7048 goto out;
7049 }
7050 /*
7051 * when btrfs_get_extent can't find anything it
7052 * returns one huge hole
7053 *
7054 * make sure what it found really fits our range, and
7055 * adjust to make sure it is based on the start from
7056 * the caller
7057 */
7058 if (hole_em) {
7059 u64 calc_end = extent_map_end(hole_em);
7060
7061 if (calc_end <= start || (hole_em->start > end)) {
7062 free_extent_map(hole_em);
7063 hole_em = NULL;
7064 } else {
7065 hole_start = max(hole_em->start, start);
7066 hole_len = calc_end - hole_start;
7067 }
7068 }
7069 em->bdev = NULL;
7070 if (hole_em && range_start > hole_start) {
7071 /* our hole starts before our delalloc, so we
7072 * have to return just the parts of the hole
7073 * that go until the delalloc starts
7074 */
7075 em->len = min(hole_len,
7076 range_start - hole_start);
7077 em->start = hole_start;
7078 em->orig_start = hole_start;
7079 /*
7080 * don't adjust block start at all,
7081 * it is fixed at EXTENT_MAP_HOLE
7082 */
7083 em->block_start = hole_em->block_start;
7084 em->block_len = hole_len;
Liu Bof9e4fb52013-01-07 10:10:12 +00007085 if (test_bit(EXTENT_FLAG_PREALLOC, &hole_em->flags))
7086 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Chris Masonec29ed52011-02-23 16:23:20 -05007087 } else {
7088 em->start = range_start;
7089 em->len = found;
7090 em->orig_start = range_start;
7091 em->block_start = EXTENT_MAP_DELALLOC;
7092 em->block_len = found;
7093 }
7094 } else if (hole_em) {
7095 return hole_em;
7096 }
7097out:
7098
7099 free_extent_map(hole_em);
7100 if (err) {
7101 free_extent_map(em);
7102 return ERR_PTR(err);
7103 }
7104 return em;
7105}
7106
Josef Bacik4b46fce2010-05-23 11:00:55 -04007107static struct extent_map *btrfs_new_extent_direct(struct inode *inode,
7108 u64 start, u64 len)
7109{
7110 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik70c8a912012-10-11 16:54:30 -04007111 struct extent_map *em;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007112 struct btrfs_key ins;
7113 u64 alloc_hint;
7114 int ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007115
Josef Bacik4b46fce2010-05-23 11:00:55 -04007116 alloc_hint = get_extent_allocation_hint(inode, start, len);
Josef Bacik00361582013-08-14 14:02:47 -04007117 ret = btrfs_reserve_extent(root, len, root->sectorsize, 0,
Miao Xiee570fd22014-06-19 10:42:50 +08007118 alloc_hint, &ins, 1, 1);
Josef Bacik00361582013-08-14 14:02:47 -04007119 if (ret)
7120 return ERR_PTR(ret);
Josef Bacik4b46fce2010-05-23 11:00:55 -04007121
Josef Bacik70c8a912012-10-11 16:54:30 -04007122 em = create_pinned_em(inode, start, ins.offset, start, ins.objectid,
Josef Bacikcc95bef2013-04-04 14:31:27 -04007123 ins.offset, ins.offset, ins.offset, 0);
Josef Bacik00361582013-08-14 14:02:47 -04007124 if (IS_ERR(em)) {
Miao Xiee570fd22014-06-19 10:42:50 +08007125 btrfs_free_reserved_extent(root, ins.objectid, ins.offset, 1);
Josef Bacik00361582013-08-14 14:02:47 -04007126 return em;
7127 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04007128
7129 ret = btrfs_add_ordered_extent_dio(inode, start, ins.objectid,
7130 ins.offset, ins.offset, 0);
7131 if (ret) {
Miao Xiee570fd22014-06-19 10:42:50 +08007132 btrfs_free_reserved_extent(root, ins.objectid, ins.offset, 1);
Josef Bacik00361582013-08-14 14:02:47 -04007133 free_extent_map(em);
7134 return ERR_PTR(ret);
Josef Bacik4b46fce2010-05-23 11:00:55 -04007135 }
Josef Bacik00361582013-08-14 14:02:47 -04007136
Josef Bacik4b46fce2010-05-23 11:00:55 -04007137 return em;
7138}
7139
Chris Mason46bfbb52010-05-26 11:04:10 -04007140/*
7141 * returns 1 when the nocow is safe, < 1 on error, 0 if the
7142 * block must be cow'd
7143 */
Josef Bacik00361582013-08-14 14:02:47 -04007144noinline int can_nocow_extent(struct inode *inode, u64 offset, u64 *len,
Josef Bacik7ee9e442013-06-21 16:37:03 -04007145 u64 *orig_start, u64 *orig_block_len,
7146 u64 *ram_bytes)
Chris Mason46bfbb52010-05-26 11:04:10 -04007147{
Josef Bacik00361582013-08-14 14:02:47 -04007148 struct btrfs_trans_handle *trans;
Chris Mason46bfbb52010-05-26 11:04:10 -04007149 struct btrfs_path *path;
7150 int ret;
7151 struct extent_buffer *leaf;
7152 struct btrfs_root *root = BTRFS_I(inode)->root;
Miao Xie7b2b7082014-02-27 13:58:05 +08007153 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason46bfbb52010-05-26 11:04:10 -04007154 struct btrfs_file_extent_item *fi;
7155 struct btrfs_key key;
7156 u64 disk_bytenr;
7157 u64 backref_offset;
7158 u64 extent_end;
7159 u64 num_bytes;
7160 int slot;
7161 int found_type;
Josef Bacik7ee9e442013-06-21 16:37:03 -04007162 bool nocow = (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW);
Miao Xiee77751a2013-12-27 21:11:50 +08007163
Chris Mason46bfbb52010-05-26 11:04:10 -04007164 path = btrfs_alloc_path();
7165 if (!path)
7166 return -ENOMEM;
7167
Josef Bacik00361582013-08-14 14:02:47 -04007168 ret = btrfs_lookup_file_extent(NULL, root, path, btrfs_ino(inode),
Chris Mason46bfbb52010-05-26 11:04:10 -04007169 offset, 0);
7170 if (ret < 0)
7171 goto out;
7172
7173 slot = path->slots[0];
7174 if (ret == 1) {
7175 if (slot == 0) {
7176 /* can't find the item, must cow */
7177 ret = 0;
7178 goto out;
7179 }
7180 slot--;
7181 }
7182 ret = 0;
7183 leaf = path->nodes[0];
7184 btrfs_item_key_to_cpu(leaf, &key, slot);
Li Zefan33345d012011-04-20 10:31:50 +08007185 if (key.objectid != btrfs_ino(inode) ||
Chris Mason46bfbb52010-05-26 11:04:10 -04007186 key.type != BTRFS_EXTENT_DATA_KEY) {
7187 /* not our file or wrong item type, must cow */
7188 goto out;
7189 }
7190
7191 if (key.offset > offset) {
7192 /* Wrong offset, must cow */
7193 goto out;
7194 }
7195
7196 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
7197 found_type = btrfs_file_extent_type(leaf, fi);
7198 if (found_type != BTRFS_FILE_EXTENT_REG &&
7199 found_type != BTRFS_FILE_EXTENT_PREALLOC) {
7200 /* not a regular extent, must cow */
7201 goto out;
7202 }
Josef Bacik7ee9e442013-06-21 16:37:03 -04007203
7204 if (!nocow && found_type == BTRFS_FILE_EXTENT_REG)
7205 goto out;
7206
Miao Xiee77751a2013-12-27 21:11:50 +08007207 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
7208 if (extent_end <= offset)
7209 goto out;
7210
Chris Mason46bfbb52010-05-26 11:04:10 -04007211 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Josef Bacik7ee9e442013-06-21 16:37:03 -04007212 if (disk_bytenr == 0)
7213 goto out;
7214
7215 if (btrfs_file_extent_compression(leaf, fi) ||
7216 btrfs_file_extent_encryption(leaf, fi) ||
7217 btrfs_file_extent_other_encoding(leaf, fi))
7218 goto out;
7219
Chris Mason46bfbb52010-05-26 11:04:10 -04007220 backref_offset = btrfs_file_extent_offset(leaf, fi);
7221
Josef Bacik7ee9e442013-06-21 16:37:03 -04007222 if (orig_start) {
7223 *orig_start = key.offset - backref_offset;
7224 *orig_block_len = btrfs_file_extent_disk_num_bytes(leaf, fi);
7225 *ram_bytes = btrfs_file_extent_ram_bytes(leaf, fi);
7226 }
Josef Bacikeb384b52013-04-24 16:32:55 -04007227
Chris Mason46bfbb52010-05-26 11:04:10 -04007228 if (btrfs_extent_readonly(root, disk_bytenr))
7229 goto out;
Miao Xie7b2b7082014-02-27 13:58:05 +08007230
7231 num_bytes = min(offset + *len, extent_end) - offset;
7232 if (!nocow && found_type == BTRFS_FILE_EXTENT_PREALLOC) {
7233 u64 range_end;
7234
7235 range_end = round_up(offset + num_bytes, root->sectorsize) - 1;
7236 ret = test_range_bit(io_tree, offset, range_end,
7237 EXTENT_DELALLOC, 0, NULL);
7238 if (ret) {
7239 ret = -EAGAIN;
7240 goto out;
7241 }
7242 }
7243
Josef Bacik1bda19e2013-10-18 12:10:36 -04007244 btrfs_release_path(path);
Chris Mason46bfbb52010-05-26 11:04:10 -04007245
7246 /*
7247 * look for other files referencing this extent, if we
7248 * find any we must cow
7249 */
Josef Bacik00361582013-08-14 14:02:47 -04007250 trans = btrfs_join_transaction(root);
7251 if (IS_ERR(trans)) {
7252 ret = 0;
Chris Mason46bfbb52010-05-26 11:04:10 -04007253 goto out;
Josef Bacik00361582013-08-14 14:02:47 -04007254 }
7255
7256 ret = btrfs_cross_ref_exist(trans, root, btrfs_ino(inode),
7257 key.offset - backref_offset, disk_bytenr);
7258 btrfs_end_transaction(trans, root);
7259 if (ret) {
7260 ret = 0;
7261 goto out;
7262 }
Chris Mason46bfbb52010-05-26 11:04:10 -04007263
7264 /*
7265 * adjust disk_bytenr and num_bytes to cover just the bytes
7266 * in this extent we are about to write. If there
7267 * are any csums in that range we have to cow in order
7268 * to keep the csums correct
7269 */
7270 disk_bytenr += backref_offset;
7271 disk_bytenr += offset - key.offset;
Chris Mason46bfbb52010-05-26 11:04:10 -04007272 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
7273 goto out;
7274 /*
7275 * all of the above have passed, it is safe to overwrite this extent
7276 * without cow
7277 */
Josef Bacikeb384b52013-04-24 16:32:55 -04007278 *len = num_bytes;
Chris Mason46bfbb52010-05-26 11:04:10 -04007279 ret = 1;
7280out:
7281 btrfs_free_path(path);
7282 return ret;
7283}
7284
Alex Gartrellfc4adbff2014-05-20 13:07:56 -07007285bool btrfs_page_exists_in_range(struct inode *inode, loff_t start, loff_t end)
7286{
7287 struct radix_tree_root *root = &inode->i_mapping->page_tree;
7288 int found = false;
7289 void **pagep = NULL;
7290 struct page *page = NULL;
7291 int start_idx;
7292 int end_idx;
7293
7294 start_idx = start >> PAGE_CACHE_SHIFT;
7295
7296 /*
7297 * end is the last byte in the last page. end == start is legal
7298 */
7299 end_idx = end >> PAGE_CACHE_SHIFT;
7300
7301 rcu_read_lock();
7302
7303 /* Most of the code in this while loop is lifted from
7304 * find_get_page. It's been modified to begin searching from a
7305 * page and return just the first page found in that range. If the
7306 * found idx is less than or equal to the end idx then we know that
7307 * a page exists. If no pages are found or if those pages are
7308 * outside of the range then we're fine (yay!) */
7309 while (page == NULL &&
7310 radix_tree_gang_lookup_slot(root, &pagep, NULL, start_idx, 1)) {
7311 page = radix_tree_deref_slot(pagep);
7312 if (unlikely(!page))
7313 break;
7314
7315 if (radix_tree_exception(page)) {
Filipe Manana809f9012014-06-05 13:22:25 +01007316 if (radix_tree_deref_retry(page)) {
7317 page = NULL;
Alex Gartrellfc4adbff2014-05-20 13:07:56 -07007318 continue;
Filipe Manana809f9012014-06-05 13:22:25 +01007319 }
Alex Gartrellfc4adbff2014-05-20 13:07:56 -07007320 /*
7321 * Otherwise, shmem/tmpfs must be storing a swap entry
7322 * here as an exceptional entry: so return it without
7323 * attempting to raise page count.
7324 */
Filipe Manana6fdef6d2014-06-05 13:22:26 +01007325 page = NULL;
Alex Gartrellfc4adbff2014-05-20 13:07:56 -07007326 break; /* TODO: Is this relevant for this use case? */
7327 }
7328
Filipe Manana91405152014-06-05 13:22:24 +01007329 if (!page_cache_get_speculative(page)) {
7330 page = NULL;
Alex Gartrellfc4adbff2014-05-20 13:07:56 -07007331 continue;
Filipe Manana91405152014-06-05 13:22:24 +01007332 }
Alex Gartrellfc4adbff2014-05-20 13:07:56 -07007333
7334 /*
7335 * Has the page moved?
7336 * This is part of the lockless pagecache protocol. See
7337 * include/linux/pagemap.h for details.
7338 */
7339 if (unlikely(page != *pagep)) {
7340 page_cache_release(page);
7341 page = NULL;
7342 }
7343 }
7344
7345 if (page) {
7346 if (page->index <= end_idx)
7347 found = true;
7348 page_cache_release(page);
7349 }
7350
7351 rcu_read_unlock();
7352 return found;
7353}
7354
Josef Bacikeb838e72012-07-31 16:28:48 -04007355static int lock_extent_direct(struct inode *inode, u64 lockstart, u64 lockend,
7356 struct extent_state **cached_state, int writing)
7357{
7358 struct btrfs_ordered_extent *ordered;
7359 int ret = 0;
7360
7361 while (1) {
7362 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
7363 0, cached_state);
7364 /*
7365 * We're concerned with the entire range that we're going to be
7366 * doing DIO to, so we need to make sure theres no ordered
7367 * extents in this range.
7368 */
7369 ordered = btrfs_lookup_ordered_range(inode, lockstart,
7370 lockend - lockstart + 1);
7371
7372 /*
7373 * We need to make sure there are no buffered pages in this
7374 * range either, we could have raced between the invalidate in
7375 * generic_file_direct_write and locking the extent. The
7376 * invalidate needs to happen so that reads after a write do not
7377 * get stale data.
7378 */
Alex Gartrellfc4adbff2014-05-20 13:07:56 -07007379 if (!ordered &&
7380 (!writing ||
7381 !btrfs_page_exists_in_range(inode, lockstart, lockend)))
Josef Bacikeb838e72012-07-31 16:28:48 -04007382 break;
7383
7384 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
7385 cached_state, GFP_NOFS);
7386
7387 if (ordered) {
7388 btrfs_start_ordered_extent(inode, ordered, 1);
7389 btrfs_put_ordered_extent(ordered);
7390 } else {
7391 /* Screw you mmap */
Filipe Manana728404d2014-10-10 09:43:11 +01007392 ret = btrfs_fdatawrite_range(inode, lockstart, lockend);
Filipe Manana075bdbd2014-10-09 21:18:55 +01007393 if (ret)
7394 break;
7395 ret = filemap_fdatawait_range(inode->i_mapping,
7396 lockstart,
7397 lockend);
Josef Bacikeb838e72012-07-31 16:28:48 -04007398 if (ret)
7399 break;
7400
7401 /*
7402 * If we found a page that couldn't be invalidated just
7403 * fall back to buffered.
7404 */
7405 ret = invalidate_inode_pages2_range(inode->i_mapping,
7406 lockstart >> PAGE_CACHE_SHIFT,
7407 lockend >> PAGE_CACHE_SHIFT);
7408 if (ret)
7409 break;
7410 }
7411
7412 cond_resched();
7413 }
7414
7415 return ret;
7416}
7417
Josef Bacik69ffb542012-09-11 15:40:07 -04007418static struct extent_map *create_pinned_em(struct inode *inode, u64 start,
7419 u64 len, u64 orig_start,
7420 u64 block_start, u64 block_len,
Josef Bacikcc95bef2013-04-04 14:31:27 -04007421 u64 orig_block_len, u64 ram_bytes,
7422 int type)
Josef Bacik69ffb542012-09-11 15:40:07 -04007423{
7424 struct extent_map_tree *em_tree;
7425 struct extent_map *em;
7426 struct btrfs_root *root = BTRFS_I(inode)->root;
7427 int ret;
7428
7429 em_tree = &BTRFS_I(inode)->extent_tree;
7430 em = alloc_extent_map();
7431 if (!em)
7432 return ERR_PTR(-ENOMEM);
7433
7434 em->start = start;
7435 em->orig_start = orig_start;
Josef Bacik2ab28f32012-10-12 15:27:49 -04007436 em->mod_start = start;
7437 em->mod_len = len;
Josef Bacik69ffb542012-09-11 15:40:07 -04007438 em->len = len;
7439 em->block_len = block_len;
7440 em->block_start = block_start;
7441 em->bdev = root->fs_info->fs_devices->latest_bdev;
Josef Bacikb4939682012-12-03 10:31:19 -05007442 em->orig_block_len = orig_block_len;
Josef Bacikcc95bef2013-04-04 14:31:27 -04007443 em->ram_bytes = ram_bytes;
Josef Bacik70c8a912012-10-11 16:54:30 -04007444 em->generation = -1;
Josef Bacik69ffb542012-09-11 15:40:07 -04007445 set_bit(EXTENT_FLAG_PINNED, &em->flags);
7446 if (type == BTRFS_ORDERED_PREALLOC)
Josef Bacikb11e2342012-12-03 10:58:15 -05007447 set_bit(EXTENT_FLAG_FILLING, &em->flags);
Josef Bacik69ffb542012-09-11 15:40:07 -04007448
7449 do {
7450 btrfs_drop_extent_cache(inode, em->start,
7451 em->start + em->len - 1, 0);
7452 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04007453 ret = add_extent_mapping(em_tree, em, 1);
Josef Bacik69ffb542012-09-11 15:40:07 -04007454 write_unlock(&em_tree->lock);
7455 } while (ret == -EEXIST);
7456
7457 if (ret) {
7458 free_extent_map(em);
7459 return ERR_PTR(ret);
7460 }
7461
7462 return em;
7463}
7464
chandan50745b02015-08-28 21:10:13 +05307465struct btrfs_dio_data {
7466 u64 outstanding_extents;
7467 u64 reserve;
7468};
Josef Bacik69ffb542012-09-11 15:40:07 -04007469
Josef Bacik4b46fce2010-05-23 11:00:55 -04007470static int btrfs_get_blocks_direct(struct inode *inode, sector_t iblock,
7471 struct buffer_head *bh_result, int create)
7472{
7473 struct extent_map *em;
7474 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacikeb838e72012-07-31 16:28:48 -04007475 struct extent_state *cached_state = NULL;
chandan50745b02015-08-28 21:10:13 +05307476 struct btrfs_dio_data *dio_data = NULL;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007477 u64 start = iblock << inode->i_blkbits;
Josef Bacikeb838e72012-07-31 16:28:48 -04007478 u64 lockstart, lockend;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007479 u64 len = bh_result->b_size;
Josef Bacikeb838e72012-07-31 16:28:48 -04007480 int unlock_bits = EXTENT_LOCKED;
Miao Xie09348562013-02-07 10:12:07 +00007481 int ret = 0;
Josef Bacikeb838e72012-07-31 16:28:48 -04007482
Miao Xie172a5042013-02-21 02:48:22 -07007483 if (create)
Josef Bacik32667892015-02-11 15:08:58 -05007484 unlock_bits |= EXTENT_DIRTY;
Miao Xie172a5042013-02-21 02:48:22 -07007485 else
Josef Bacikc3298612012-08-03 16:49:19 -04007486 len = min_t(u64, len, root->sectorsize);
Josef Bacikeb838e72012-07-31 16:28:48 -04007487
Josef Bacikc3298612012-08-03 16:49:19 -04007488 lockstart = start;
7489 lockend = start + len - 1;
7490
Josef Bacike1cbbfa2015-03-17 10:52:28 -04007491 if (current->journal_info) {
7492 /*
7493 * Need to pull our outstanding extents and set journal_info to NULL so
7494 * that anything that needs to check if there's a transction doesn't get
7495 * confused.
7496 */
chandan50745b02015-08-28 21:10:13 +05307497 dio_data = current->journal_info;
Josef Bacike1cbbfa2015-03-17 10:52:28 -04007498 current->journal_info = NULL;
7499 }
7500
Josef Bacikeb838e72012-07-31 16:28:48 -04007501 /*
7502 * If this errors out it's because we couldn't invalidate pagecache for
7503 * this range and we need to fallback to buffered.
7504 */
7505 if (lock_extent_direct(inode, lockstart, lockend, &cached_state, create))
7506 return -ENOTBLK;
7507
Josef Bacik4b46fce2010-05-23 11:00:55 -04007508 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
Josef Bacikeb838e72012-07-31 16:28:48 -04007509 if (IS_ERR(em)) {
7510 ret = PTR_ERR(em);
7511 goto unlock_err;
7512 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04007513
7514 /*
7515 * Ok for INLINE and COMPRESSED extents we need to fallback on buffered
7516 * io. INLINE is special, and we could probably kludge it in here, but
7517 * it's still buffered so for safety lets just fall back to the generic
7518 * buffered path.
7519 *
7520 * For COMPRESSED we _have_ to read the entire extent in so we can
7521 * decompress it, so there will be buffering required no matter what we
7522 * do, so go ahead and fallback to buffered.
7523 *
7524 * We return -ENOTBLK because thats what makes DIO go ahead and go back
7525 * to buffered IO. Don't blame me, this is the price we pay for using
7526 * the generic code.
7527 */
7528 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) ||
7529 em->block_start == EXTENT_MAP_INLINE) {
7530 free_extent_map(em);
Josef Bacikeb838e72012-07-31 16:28:48 -04007531 ret = -ENOTBLK;
7532 goto unlock_err;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007533 }
7534
7535 /* Just a good old fashioned hole, return */
7536 if (!create && (em->block_start == EXTENT_MAP_HOLE ||
7537 test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
7538 free_extent_map(em);
Josef Bacikeb838e72012-07-31 16:28:48 -04007539 goto unlock_err;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007540 }
7541
7542 /*
7543 * We don't allocate a new extent in the following cases
7544 *
7545 * 1) The inode is marked as NODATACOW. In this case we'll just use the
7546 * existing extent.
7547 * 2) The extent is marked as PREALLOC. We're good to go here and can
7548 * just use the extent.
7549 *
7550 */
Chris Mason46bfbb52010-05-26 11:04:10 -04007551 if (!create) {
Josef Bacikeb838e72012-07-31 16:28:48 -04007552 len = min(len, em->len - (start - em->start));
7553 lockstart = start + len;
7554 goto unlock;
Chris Mason46bfbb52010-05-26 11:04:10 -04007555 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04007556
7557 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) ||
7558 ((BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) &&
7559 em->block_start != EXTENT_MAP_HOLE)) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04007560 int type;
Josef Bacikeb384b52013-04-24 16:32:55 -04007561 u64 block_start, orig_start, orig_block_len, ram_bytes;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007562
7563 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
7564 type = BTRFS_ORDERED_PREALLOC;
7565 else
7566 type = BTRFS_ORDERED_NOCOW;
Chris Mason46bfbb52010-05-26 11:04:10 -04007567 len = min(len, em->len - (start - em->start));
Josef Bacik4b46fce2010-05-23 11:00:55 -04007568 block_start = em->block_start + (start - em->start);
Chris Mason46bfbb52010-05-26 11:04:10 -04007569
Josef Bacik00361582013-08-14 14:02:47 -04007570 if (can_nocow_extent(inode, start, &len, &orig_start,
Josef Bacik7ee9e442013-06-21 16:37:03 -04007571 &orig_block_len, &ram_bytes) == 1) {
Josef Bacik69ffb542012-09-11 15:40:07 -04007572 if (type == BTRFS_ORDERED_PREALLOC) {
7573 free_extent_map(em);
7574 em = create_pinned_em(inode, start, len,
7575 orig_start,
Josef Bacikb4939682012-12-03 10:31:19 -05007576 block_start, len,
Josef Bacikcc95bef2013-04-04 14:31:27 -04007577 orig_block_len,
7578 ram_bytes, type);
Filipe Manana555e1282014-07-07 12:35:21 +01007579 if (IS_ERR(em)) {
7580 ret = PTR_ERR(em);
Josef Bacik69ffb542012-09-11 15:40:07 -04007581 goto unlock_err;
Filipe Manana555e1282014-07-07 12:35:21 +01007582 }
Josef Bacik69ffb542012-09-11 15:40:07 -04007583 }
7584
Chris Mason46bfbb52010-05-26 11:04:10 -04007585 ret = btrfs_add_ordered_extent_dio(inode, start,
7586 block_start, len, len, type);
Chris Mason46bfbb52010-05-26 11:04:10 -04007587 if (ret) {
7588 free_extent_map(em);
Josef Bacikeb838e72012-07-31 16:28:48 -04007589 goto unlock_err;
Chris Mason46bfbb52010-05-26 11:04:10 -04007590 }
7591 goto unlock;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007592 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04007593 }
Josef Bacik00361582013-08-14 14:02:47 -04007594
Chris Mason46bfbb52010-05-26 11:04:10 -04007595 /*
7596 * this will cow the extent, reset the len in case we changed
7597 * it above
7598 */
7599 len = bh_result->b_size;
Josef Bacik70c8a912012-10-11 16:54:30 -04007600 free_extent_map(em);
7601 em = btrfs_new_extent_direct(inode, start, len);
Josef Bacikeb838e72012-07-31 16:28:48 -04007602 if (IS_ERR(em)) {
7603 ret = PTR_ERR(em);
7604 goto unlock_err;
7605 }
Chris Mason46bfbb52010-05-26 11:04:10 -04007606 len = min(len, em->len - (start - em->start));
7607unlock:
Josef Bacik4b46fce2010-05-23 11:00:55 -04007608 bh_result->b_blocknr = (em->block_start + (start - em->start)) >>
7609 inode->i_blkbits;
Chris Mason46bfbb52010-05-26 11:04:10 -04007610 bh_result->b_size = len;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007611 bh_result->b_bdev = em->bdev;
7612 set_buffer_mapped(bh_result);
Josef Bacikc3473e82012-06-19 10:59:00 -04007613 if (create) {
7614 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
7615 set_buffer_new(bh_result);
7616
7617 /*
7618 * Need to update the i_size under the extent lock so buffered
7619 * readers will get the updated i_size when we unlock.
7620 */
7621 if (start + len > i_size_read(inode))
7622 i_size_write(inode, start + len);
Miao Xie09348562013-02-07 10:12:07 +00007623
Josef Bacike1cbbfa2015-03-17 10:52:28 -04007624 /*
7625 * If we have an outstanding_extents count still set then we're
7626 * within our reservation, otherwise we need to adjust our inode
7627 * counter appropriately.
7628 */
chandan50745b02015-08-28 21:10:13 +05307629 if (dio_data->outstanding_extents) {
7630 (dio_data->outstanding_extents)--;
Josef Bacike1cbbfa2015-03-17 10:52:28 -04007631 } else {
Josef Bacik3e05bde2015-02-11 15:08:57 -05007632 spin_lock(&BTRFS_I(inode)->lock);
7633 BTRFS_I(inode)->outstanding_extents++;
7634 spin_unlock(&BTRFS_I(inode)->lock);
7635 }
Josef Bacike1cbbfa2015-03-17 10:52:28 -04007636
Josef Bacik32667892015-02-11 15:08:58 -05007637 btrfs_free_reserved_data_space(inode, len);
chandan50745b02015-08-28 21:10:13 +05307638 WARN_ON(dio_data->reserve < len);
7639 dio_data->reserve -= len;
7640 current->journal_info = dio_data;
Josef Bacikc3473e82012-06-19 10:59:00 -04007641 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04007642
Josef Bacikeb838e72012-07-31 16:28:48 -04007643 /*
7644 * In the case of write we need to clear and unlock the entire range,
7645 * in the case of read we need to unlock only the end area that we
7646 * aren't using if there is any left over space.
7647 */
Liu Bo24c03fa2012-08-22 20:10:38 -06007648 if (lockstart < lockend) {
Miao Xie09348562013-02-07 10:12:07 +00007649 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
7650 lockend, unlock_bits, 1, 0,
7651 &cached_state, GFP_NOFS);
Liu Bo24c03fa2012-08-22 20:10:38 -06007652 } else {
Josef Bacikeb838e72012-07-31 16:28:48 -04007653 free_extent_state(cached_state);
Liu Bo24c03fa2012-08-22 20:10:38 -06007654 }
Josef Bacikeb838e72012-07-31 16:28:48 -04007655
Josef Bacik4b46fce2010-05-23 11:00:55 -04007656 free_extent_map(em);
7657
7658 return 0;
Josef Bacikeb838e72012-07-31 16:28:48 -04007659
7660unlock_err:
Josef Bacikeb838e72012-07-31 16:28:48 -04007661 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart, lockend,
7662 unlock_bits, 1, 0, &cached_state, GFP_NOFS);
chandan50745b02015-08-28 21:10:13 +05307663 if (dio_data)
7664 current->journal_info = dio_data;
Josef Bacikeb838e72012-07-31 16:28:48 -04007665 return ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007666}
7667
Miao Xie8b110e32014-09-12 18:44:03 +08007668static inline int submit_dio_repair_bio(struct inode *inode, struct bio *bio,
7669 int rw, int mirror_num)
7670{
7671 struct btrfs_root *root = BTRFS_I(inode)->root;
7672 int ret;
7673
7674 BUG_ON(rw & REQ_WRITE);
7675
7676 bio_get(bio);
7677
7678 ret = btrfs_bio_wq_end_io(root->fs_info, bio,
7679 BTRFS_WQ_ENDIO_DIO_REPAIR);
7680 if (ret)
7681 goto err;
7682
7683 ret = btrfs_map_bio(root, rw, bio, mirror_num, 0);
7684err:
7685 bio_put(bio);
7686 return ret;
7687}
7688
7689static int btrfs_check_dio_repairable(struct inode *inode,
7690 struct bio *failed_bio,
7691 struct io_failure_record *failrec,
7692 int failed_mirror)
7693{
7694 int num_copies;
7695
7696 num_copies = btrfs_num_copies(BTRFS_I(inode)->root->fs_info,
7697 failrec->logical, failrec->len);
7698 if (num_copies == 1) {
7699 /*
7700 * we only have a single copy of the data, so don't bother with
7701 * all the retry and error correction code that follows. no
7702 * matter what the error is, it is very likely to persist.
7703 */
7704 pr_debug("Check DIO Repairable: cannot repair, num_copies=%d, next_mirror %d, failed_mirror %d\n",
7705 num_copies, failrec->this_mirror, failed_mirror);
7706 return 0;
7707 }
7708
7709 failrec->failed_mirror = failed_mirror;
7710 failrec->this_mirror++;
7711 if (failrec->this_mirror == failed_mirror)
7712 failrec->this_mirror++;
7713
7714 if (failrec->this_mirror > num_copies) {
7715 pr_debug("Check DIO Repairable: (fail) num_copies=%d, next_mirror %d, failed_mirror %d\n",
7716 num_copies, failrec->this_mirror, failed_mirror);
7717 return 0;
7718 }
7719
7720 return 1;
7721}
7722
7723static int dio_read_error(struct inode *inode, struct bio *failed_bio,
7724 struct page *page, u64 start, u64 end,
7725 int failed_mirror, bio_end_io_t *repair_endio,
7726 void *repair_arg)
7727{
7728 struct io_failure_record *failrec;
7729 struct bio *bio;
7730 int isector;
7731 int read_mode;
7732 int ret;
7733
7734 BUG_ON(failed_bio->bi_rw & REQ_WRITE);
7735
7736 ret = btrfs_get_io_failure_record(inode, start, end, &failrec);
7737 if (ret)
7738 return ret;
7739
7740 ret = btrfs_check_dio_repairable(inode, failed_bio, failrec,
7741 failed_mirror);
7742 if (!ret) {
7743 free_io_failure(inode, failrec);
7744 return -EIO;
7745 }
7746
7747 if (failed_bio->bi_vcnt > 1)
7748 read_mode = READ_SYNC | REQ_FAILFAST_DEV;
7749 else
7750 read_mode = READ_SYNC;
7751
7752 isector = start - btrfs_io_bio(failed_bio)->logical;
7753 isector >>= inode->i_sb->s_blocksize_bits;
7754 bio = btrfs_create_repair_bio(inode, failed_bio, failrec, page,
7755 0, isector, repair_endio, repair_arg);
7756 if (!bio) {
7757 free_io_failure(inode, failrec);
7758 return -EIO;
7759 }
7760
7761 btrfs_debug(BTRFS_I(inode)->root->fs_info,
7762 "Repair DIO Read Error: submitting new dio read[%#x] to this_mirror=%d, in_validation=%d\n",
7763 read_mode, failrec->this_mirror, failrec->in_validation);
7764
7765 ret = submit_dio_repair_bio(inode, bio, read_mode,
7766 failrec->this_mirror);
7767 if (ret) {
7768 free_io_failure(inode, failrec);
7769 bio_put(bio);
7770 }
7771
7772 return ret;
7773}
7774
7775struct btrfs_retry_complete {
7776 struct completion done;
7777 struct inode *inode;
7778 u64 start;
7779 int uptodate;
7780};
7781
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02007782static void btrfs_retry_endio_nocsum(struct bio *bio)
Miao Xie8b110e32014-09-12 18:44:03 +08007783{
7784 struct btrfs_retry_complete *done = bio->bi_private;
7785 struct bio_vec *bvec;
7786 int i;
7787
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02007788 if (bio->bi_error)
Miao Xie8b110e32014-09-12 18:44:03 +08007789 goto end;
7790
7791 done->uptodate = 1;
7792 bio_for_each_segment_all(bvec, bio, i)
7793 clean_io_failure(done->inode, done->start, bvec->bv_page, 0);
7794end:
7795 complete(&done->done);
7796 bio_put(bio);
7797}
7798
7799static int __btrfs_correct_data_nocsum(struct inode *inode,
7800 struct btrfs_io_bio *io_bio)
Josef Bacik4b46fce2010-05-23 11:00:55 -04007801{
Kent Overstreet2c30c712013-11-07 12:20:26 -08007802 struct bio_vec *bvec;
Miao Xie8b110e32014-09-12 18:44:03 +08007803 struct btrfs_retry_complete done;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007804 u64 start;
Kent Overstreet2c30c712013-11-07 12:20:26 -08007805 int i;
Miao Xiec1dc0892014-09-12 18:43:56 +08007806 int ret;
Miao Xiedc380ae2014-09-12 18:43:55 +08007807
Miao Xiec1dc0892014-09-12 18:43:56 +08007808 start = io_bio->logical;
Miao Xie8b110e32014-09-12 18:44:03 +08007809 done.inode = inode;
7810
7811 bio_for_each_segment_all(bvec, &io_bio->bio, i) {
7812try_again:
7813 done.uptodate = 0;
7814 done.start = start;
7815 init_completion(&done.done);
7816
7817 ret = dio_read_error(inode, &io_bio->bio, bvec->bv_page, start,
7818 start + bvec->bv_len - 1,
7819 io_bio->mirror_num,
7820 btrfs_retry_endio_nocsum, &done);
7821 if (ret)
7822 return ret;
7823
7824 wait_for_completion(&done.done);
7825
7826 if (!done.uptodate) {
7827 /* We might have another mirror, so try again */
7828 goto try_again;
7829 }
7830
7831 start += bvec->bv_len;
7832 }
7833
7834 return 0;
7835}
7836
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02007837static void btrfs_retry_endio(struct bio *bio)
Miao Xie8b110e32014-09-12 18:44:03 +08007838{
7839 struct btrfs_retry_complete *done = bio->bi_private;
7840 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
7841 struct bio_vec *bvec;
7842 int uptodate;
7843 int ret;
7844 int i;
7845
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02007846 if (bio->bi_error)
Miao Xie8b110e32014-09-12 18:44:03 +08007847 goto end;
7848
7849 uptodate = 1;
7850 bio_for_each_segment_all(bvec, bio, i) {
7851 ret = __readpage_endio_check(done->inode, io_bio, i,
7852 bvec->bv_page, 0,
7853 done->start, bvec->bv_len);
7854 if (!ret)
7855 clean_io_failure(done->inode, done->start,
7856 bvec->bv_page, 0);
7857 else
7858 uptodate = 0;
7859 }
7860
7861 done->uptodate = uptodate;
7862end:
7863 complete(&done->done);
7864 bio_put(bio);
7865}
7866
7867static int __btrfs_subio_endio_read(struct inode *inode,
7868 struct btrfs_io_bio *io_bio, int err)
7869{
7870 struct bio_vec *bvec;
7871 struct btrfs_retry_complete done;
7872 u64 start;
7873 u64 offset = 0;
7874 int i;
7875 int ret;
7876
7877 err = 0;
7878 start = io_bio->logical;
7879 done.inode = inode;
7880
Miao Xiec1dc0892014-09-12 18:43:56 +08007881 bio_for_each_segment_all(bvec, &io_bio->bio, i) {
Miao Xiedc380ae2014-09-12 18:43:55 +08007882 ret = __readpage_endio_check(inode, io_bio, i, bvec->bv_page,
7883 0, start, bvec->bv_len);
Miao Xie8b110e32014-09-12 18:44:03 +08007884 if (likely(!ret))
7885 goto next;
7886try_again:
7887 done.uptodate = 0;
7888 done.start = start;
7889 init_completion(&done.done);
7890
7891 ret = dio_read_error(inode, &io_bio->bio, bvec->bv_page, start,
7892 start + bvec->bv_len - 1,
7893 io_bio->mirror_num,
7894 btrfs_retry_endio, &done);
7895 if (ret) {
7896 err = ret;
7897 goto next;
7898 }
7899
7900 wait_for_completion(&done.done);
7901
7902 if (!done.uptodate) {
7903 /* We might have another mirror, so try again */
7904 goto try_again;
7905 }
7906next:
7907 offset += bvec->bv_len;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007908 start += bvec->bv_len;
Kent Overstreet2c30c712013-11-07 12:20:26 -08007909 }
Miao Xiec1dc0892014-09-12 18:43:56 +08007910
7911 return err;
7912}
7913
Miao Xie8b110e32014-09-12 18:44:03 +08007914static int btrfs_subio_endio_read(struct inode *inode,
7915 struct btrfs_io_bio *io_bio, int err)
7916{
7917 bool skip_csum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
7918
7919 if (skip_csum) {
7920 if (unlikely(err))
7921 return __btrfs_correct_data_nocsum(inode, io_bio);
7922 else
7923 return 0;
7924 } else {
7925 return __btrfs_subio_endio_read(inode, io_bio, err);
7926 }
7927}
7928
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02007929static void btrfs_endio_direct_read(struct bio *bio)
Miao Xiec1dc0892014-09-12 18:43:56 +08007930{
7931 struct btrfs_dio_private *dip = bio->bi_private;
7932 struct inode *inode = dip->inode;
7933 struct bio *dio_bio;
7934 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02007935 int err = bio->bi_error;
Miao Xiec1dc0892014-09-12 18:43:56 +08007936
Miao Xie8b110e32014-09-12 18:44:03 +08007937 if (dip->flags & BTRFS_DIO_ORIG_BIO_SUBMITTED)
7938 err = btrfs_subio_endio_read(inode, io_bio, err);
Miao Xiec1dc0892014-09-12 18:43:56 +08007939
Josef Bacik4b46fce2010-05-23 11:00:55 -04007940 unlock_extent(&BTRFS_I(inode)->io_tree, dip->logical_offset,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01007941 dip->logical_offset + dip->bytes - 1);
Chris Mason9be33952013-05-17 18:30:14 -04007942 dio_bio = dip->dio_bio;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007943
Josef Bacik4b46fce2010-05-23 11:00:55 -04007944 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04007945
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02007946 dio_end_io(dio_bio, bio->bi_error);
Miao Xie23ea8e52014-09-12 18:43:54 +08007947
7948 if (io_bio->end_io)
7949 io_bio->end_io(io_bio, err);
Chris Mason9be33952013-05-17 18:30:14 -04007950 bio_put(bio);
Josef Bacik4b46fce2010-05-23 11:00:55 -04007951}
7952
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02007953static void btrfs_endio_direct_write(struct bio *bio)
Josef Bacik4b46fce2010-05-23 11:00:55 -04007954{
7955 struct btrfs_dio_private *dip = bio->bi_private;
7956 struct inode *inode = dip->inode;
7957 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007958 struct btrfs_ordered_extent *ordered = NULL;
Chris Mason163cf092010-11-28 19:56:33 -05007959 u64 ordered_offset = dip->logical_offset;
7960 u64 ordered_bytes = dip->bytes;
Chris Mason9be33952013-05-17 18:30:14 -04007961 struct bio *dio_bio;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007962 int ret;
7963
Chris Mason163cf092010-11-28 19:56:33 -05007964again:
7965 ret = btrfs_dec_test_first_ordered_pending(inode, &ordered,
7966 &ordered_offset,
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02007967 ordered_bytes,
7968 !bio->bi_error);
Josef Bacik4b46fce2010-05-23 11:00:55 -04007969 if (!ret)
Chris Mason163cf092010-11-28 19:56:33 -05007970 goto out_test;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007971
Liu Bo9e0af232014-08-15 23:36:53 +08007972 btrfs_init_work(&ordered->work, btrfs_endio_write_helper,
7973 finish_ordered_fn, NULL, NULL);
Qu Wenruofccb5d82014-02-28 10:46:10 +08007974 btrfs_queue_work(root->fs_info->endio_write_workers,
7975 &ordered->work);
Chris Mason163cf092010-11-28 19:56:33 -05007976out_test:
7977 /*
7978 * our bio might span multiple ordered extents. If we haven't
7979 * completed the accounting for the whole dio, go back and try again
7980 */
7981 if (ordered_offset < dip->logical_offset + dip->bytes) {
7982 ordered_bytes = dip->logical_offset + dip->bytes -
7983 ordered_offset;
Josef Bacik5fd02042012-05-02 14:00:54 -04007984 ordered = NULL;
Chris Mason163cf092010-11-28 19:56:33 -05007985 goto again;
7986 }
Chris Mason9be33952013-05-17 18:30:14 -04007987 dio_bio = dip->dio_bio;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007988
Josef Bacik4b46fce2010-05-23 11:00:55 -04007989 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04007990
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02007991 dio_end_io(dio_bio, bio->bi_error);
Chris Mason9be33952013-05-17 18:30:14 -04007992 bio_put(bio);
Josef Bacik4b46fce2010-05-23 11:00:55 -04007993}
7994
Chris Masoneaf25d92010-05-25 09:48:28 -04007995static int __btrfs_submit_bio_start_direct_io(struct inode *inode, int rw,
7996 struct bio *bio, int mirror_num,
7997 unsigned long bio_flags, u64 offset)
7998{
7999 int ret;
8000 struct btrfs_root *root = BTRFS_I(inode)->root;
8001 ret = btrfs_csum_one_bio(root, inode, bio, offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008002 BUG_ON(ret); /* -ENOMEM */
Chris Masoneaf25d92010-05-25 09:48:28 -04008003 return 0;
8004}
8005
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008006static void btrfs_end_dio_bio(struct bio *bio)
Miao Xiee65e1532010-11-22 03:04:43 +00008007{
8008 struct btrfs_dio_private *dip = bio->bi_private;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008009 int err = bio->bi_error;
Miao Xiee65e1532010-11-22 03:04:43 +00008010
Miao Xie8b110e32014-09-12 18:44:03 +08008011 if (err)
8012 btrfs_warn(BTRFS_I(dip->inode)->root->fs_info,
8013 "direct IO failed ino %llu rw %lu sector %#Lx len %u err no %d",
8014 btrfs_ino(dip->inode), bio->bi_rw,
8015 (unsigned long long)bio->bi_iter.bi_sector,
8016 bio->bi_iter.bi_size, err);
8017
8018 if (dip->subio_endio)
8019 err = dip->subio_endio(dip->inode, btrfs_io_bio(bio), err);
Miao Xiec1dc0892014-09-12 18:43:56 +08008020
8021 if (err) {
Miao Xiee65e1532010-11-22 03:04:43 +00008022 dip->errors = 1;
8023
8024 /*
8025 * before atomic variable goto zero, we must make sure
8026 * dip->errors is perceived to be set.
8027 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01008028 smp_mb__before_atomic();
Miao Xiee65e1532010-11-22 03:04:43 +00008029 }
8030
8031 /* if there are more bios still pending for this dio, just exit */
8032 if (!atomic_dec_and_test(&dip->pending_bios))
8033 goto out;
8034
Chris Mason9be33952013-05-17 18:30:14 -04008035 if (dip->errors) {
Miao Xiee65e1532010-11-22 03:04:43 +00008036 bio_io_error(dip->orig_bio);
Chris Mason9be33952013-05-17 18:30:14 -04008037 } else {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008038 dip->dio_bio->bi_error = 0;
8039 bio_endio(dip->orig_bio);
Miao Xiee65e1532010-11-22 03:04:43 +00008040 }
8041out:
8042 bio_put(bio);
8043}
8044
8045static struct bio *btrfs_dio_bio_alloc(struct block_device *bdev,
8046 u64 first_sector, gfp_t gfp_flags)
8047{
Chris Masonda2f0f72015-07-02 13:57:22 -07008048 struct bio *bio;
Linus Torvalds22365972015-09-05 15:14:43 -07008049 bio = btrfs_bio_alloc(bdev, first_sector, BIO_MAX_PAGES, gfp_flags);
Chris Masonda2f0f72015-07-02 13:57:22 -07008050 if (bio)
8051 bio_associate_current(bio);
8052 return bio;
Miao Xiee65e1532010-11-22 03:04:43 +00008053}
8054
Miao Xiec1dc0892014-09-12 18:43:56 +08008055static inline int btrfs_lookup_and_bind_dio_csum(struct btrfs_root *root,
8056 struct inode *inode,
8057 struct btrfs_dio_private *dip,
8058 struct bio *bio,
8059 u64 file_offset)
8060{
8061 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
8062 struct btrfs_io_bio *orig_io_bio = btrfs_io_bio(dip->orig_bio);
8063 int ret;
8064
8065 /*
8066 * We load all the csum data we need when we submit
8067 * the first bio to reduce the csum tree search and
8068 * contention.
8069 */
8070 if (dip->logical_offset == file_offset) {
8071 ret = btrfs_lookup_bio_sums_dio(root, inode, dip->orig_bio,
8072 file_offset);
8073 if (ret)
8074 return ret;
8075 }
8076
8077 if (bio == dip->orig_bio)
8078 return 0;
8079
8080 file_offset -= dip->logical_offset;
8081 file_offset >>= inode->i_sb->s_blocksize_bits;
8082 io_bio->csum = (u8 *)(((u32 *)orig_io_bio->csum) + file_offset);
8083
8084 return 0;
8085}
8086
Miao Xiee65e1532010-11-22 03:04:43 +00008087static inline int __btrfs_submit_dio_bio(struct bio *bio, struct inode *inode,
8088 int rw, u64 file_offset, int skip_sum,
Josef Bacikc3298612012-08-03 16:49:19 -04008089 int async_submit)
Miao Xiee65e1532010-11-22 03:04:43 +00008090{
Miao Xiefacc8a222013-07-25 19:22:34 +08008091 struct btrfs_dio_private *dip = bio->bi_private;
Miao Xiee65e1532010-11-22 03:04:43 +00008092 int write = rw & REQ_WRITE;
8093 struct btrfs_root *root = BTRFS_I(inode)->root;
8094 int ret;
8095
Josef Bacikb812ce22012-11-16 13:56:32 -05008096 if (async_submit)
8097 async_submit = !atomic_read(&BTRFS_I(inode)->sync_writers);
8098
Miao Xiee65e1532010-11-22 03:04:43 +00008099 bio_get(bio);
Josef Bacik5fd02042012-05-02 14:00:54 -04008100
8101 if (!write) {
David Sterbabfebd8b2014-07-30 00:25:45 +02008102 ret = btrfs_bio_wq_end_io(root->fs_info, bio,
8103 BTRFS_WQ_ENDIO_DATA);
Josef Bacik5fd02042012-05-02 14:00:54 -04008104 if (ret)
8105 goto err;
8106 }
Miao Xiee65e1532010-11-22 03:04:43 +00008107
Josef Bacik1ae39932011-04-06 14:41:34 -04008108 if (skip_sum)
8109 goto map;
8110
8111 if (write && async_submit) {
Miao Xiee65e1532010-11-22 03:04:43 +00008112 ret = btrfs_wq_submit_bio(root->fs_info,
8113 inode, rw, bio, 0, 0,
8114 file_offset,
8115 __btrfs_submit_bio_start_direct_io,
8116 __btrfs_submit_bio_done);
8117 goto err;
Josef Bacik1ae39932011-04-06 14:41:34 -04008118 } else if (write) {
8119 /*
8120 * If we aren't doing async submit, calculate the csum of the
8121 * bio now.
8122 */
8123 ret = btrfs_csum_one_bio(root, inode, bio, file_offset, 1);
8124 if (ret)
8125 goto err;
Miao Xie23ea8e52014-09-12 18:43:54 +08008126 } else {
Miao Xiec1dc0892014-09-12 18:43:56 +08008127 ret = btrfs_lookup_and_bind_dio_csum(root, inode, dip, bio,
8128 file_offset);
Tsutomu Itohc2db1072011-03-01 06:48:31 +00008129 if (ret)
8130 goto err;
8131 }
Josef Bacik1ae39932011-04-06 14:41:34 -04008132map:
8133 ret = btrfs_map_bio(root, rw, bio, 0, async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00008134err:
8135 bio_put(bio);
8136 return ret;
8137}
8138
8139static int btrfs_submit_direct_hook(int rw, struct btrfs_dio_private *dip,
8140 int skip_sum)
8141{
8142 struct inode *inode = dip->inode;
8143 struct btrfs_root *root = BTRFS_I(inode)->root;
Miao Xiee65e1532010-11-22 03:04:43 +00008144 struct bio *bio;
8145 struct bio *orig_bio = dip->orig_bio;
8146 struct bio_vec *bvec = orig_bio->bi_io_vec;
Kent Overstreet4f024f32013-10-11 15:44:27 -07008147 u64 start_sector = orig_bio->bi_iter.bi_sector;
Miao Xiee65e1532010-11-22 03:04:43 +00008148 u64 file_offset = dip->logical_offset;
8149 u64 submit_len = 0;
8150 u64 map_length;
8151 int nr_pages = 0;
Miao Xie23ea8e52014-09-12 18:43:54 +08008152 int ret;
Josef Bacik1ae39932011-04-06 14:41:34 -04008153 int async_submit = 0;
Miao Xiee65e1532010-11-22 03:04:43 +00008154
Kent Overstreet4f024f32013-10-11 15:44:27 -07008155 map_length = orig_bio->bi_iter.bi_size;
David Woodhouse53b381b2013-01-29 18:40:14 -05008156 ret = btrfs_map_block(root->fs_info, rw, start_sector << 9,
Miao Xiee65e1532010-11-22 03:04:43 +00008157 &map_length, NULL, 0);
Miao Xie7a5c3c92014-06-17 18:58:59 +08008158 if (ret)
Miao Xiee65e1532010-11-22 03:04:43 +00008159 return -EIO;
Miao Xiefacc8a222013-07-25 19:22:34 +08008160
Kent Overstreet4f024f32013-10-11 15:44:27 -07008161 if (map_length >= orig_bio->bi_iter.bi_size) {
Josef Bacik02f57c72011-04-06 14:25:44 -04008162 bio = orig_bio;
Miao Xiec1dc0892014-09-12 18:43:56 +08008163 dip->flags |= BTRFS_DIO_ORIG_BIO_SUBMITTED;
Josef Bacik02f57c72011-04-06 14:25:44 -04008164 goto submit;
8165 }
8166
David Woodhouse53b381b2013-01-29 18:40:14 -05008167 /* async crcs make it difficult to collect full stripe writes. */
Zhao Leiffe2d202015-01-20 15:11:44 +08008168 if (btrfs_get_alloc_profile(root, 1) & BTRFS_BLOCK_GROUP_RAID56_MASK)
David Woodhouse53b381b2013-01-29 18:40:14 -05008169 async_submit = 0;
8170 else
8171 async_submit = 1;
8172
Josef Bacik02f57c72011-04-06 14:25:44 -04008173 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev, start_sector, GFP_NOFS);
8174 if (!bio)
8175 return -ENOMEM;
Miao Xie7a5c3c92014-06-17 18:58:59 +08008176
Josef Bacik02f57c72011-04-06 14:25:44 -04008177 bio->bi_private = dip;
8178 bio->bi_end_io = btrfs_end_dio_bio;
Miao Xiec1dc0892014-09-12 18:43:56 +08008179 btrfs_io_bio(bio)->logical = file_offset;
Josef Bacik02f57c72011-04-06 14:25:44 -04008180 atomic_inc(&dip->pending_bios);
8181
Miao Xiee65e1532010-11-22 03:04:43 +00008182 while (bvec <= (orig_bio->bi_io_vec + orig_bio->bi_vcnt - 1)) {
David Sterbaee39b432014-09-30 01:33:33 +02008183 if (map_length < submit_len + bvec->bv_len ||
Miao Xiee65e1532010-11-22 03:04:43 +00008184 bio_add_page(bio, bvec->bv_page, bvec->bv_len,
David Sterbaee39b432014-09-30 01:33:33 +02008185 bvec->bv_offset) < bvec->bv_len) {
Miao Xiee65e1532010-11-22 03:04:43 +00008186 /*
8187 * inc the count before we submit the bio so
8188 * we know the end IO handler won't happen before
8189 * we inc the count. Otherwise, the dip might get freed
8190 * before we're done setting it up
8191 */
8192 atomic_inc(&dip->pending_bios);
8193 ret = __btrfs_submit_dio_bio(bio, inode, rw,
8194 file_offset, skip_sum,
Josef Bacikc3298612012-08-03 16:49:19 -04008195 async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00008196 if (ret) {
8197 bio_put(bio);
8198 atomic_dec(&dip->pending_bios);
8199 goto out_err;
8200 }
8201
Miao Xiee65e1532010-11-22 03:04:43 +00008202 start_sector += submit_len >> 9;
8203 file_offset += submit_len;
8204
8205 submit_len = 0;
8206 nr_pages = 0;
8207
8208 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev,
8209 start_sector, GFP_NOFS);
8210 if (!bio)
8211 goto out_err;
8212 bio->bi_private = dip;
8213 bio->bi_end_io = btrfs_end_dio_bio;
Miao Xiec1dc0892014-09-12 18:43:56 +08008214 btrfs_io_bio(bio)->logical = file_offset;
Miao Xiee65e1532010-11-22 03:04:43 +00008215
Kent Overstreet4f024f32013-10-11 15:44:27 -07008216 map_length = orig_bio->bi_iter.bi_size;
David Woodhouse53b381b2013-01-29 18:40:14 -05008217 ret = btrfs_map_block(root->fs_info, rw,
Stefan Behrens3ec706c2012-11-05 15:46:42 +01008218 start_sector << 9,
Miao Xiee65e1532010-11-22 03:04:43 +00008219 &map_length, NULL, 0);
8220 if (ret) {
8221 bio_put(bio);
8222 goto out_err;
8223 }
8224 } else {
8225 submit_len += bvec->bv_len;
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05308226 nr_pages++;
Miao Xiee65e1532010-11-22 03:04:43 +00008227 bvec++;
8228 }
8229 }
8230
Josef Bacik02f57c72011-04-06 14:25:44 -04008231submit:
Miao Xiee65e1532010-11-22 03:04:43 +00008232 ret = __btrfs_submit_dio_bio(bio, inode, rw, file_offset, skip_sum,
Josef Bacikc3298612012-08-03 16:49:19 -04008233 async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00008234 if (!ret)
8235 return 0;
8236
8237 bio_put(bio);
8238out_err:
8239 dip->errors = 1;
8240 /*
8241 * before atomic variable goto zero, we must
8242 * make sure dip->errors is perceived to be set.
8243 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01008244 smp_mb__before_atomic();
Miao Xiee65e1532010-11-22 03:04:43 +00008245 if (atomic_dec_and_test(&dip->pending_bios))
8246 bio_io_error(dip->orig_bio);
8247
8248 /* bio_end_io() will handle error, so we needn't return it */
8249 return 0;
8250}
8251
Chris Mason9be33952013-05-17 18:30:14 -04008252static void btrfs_submit_direct(int rw, struct bio *dio_bio,
8253 struct inode *inode, loff_t file_offset)
Josef Bacik4b46fce2010-05-23 11:00:55 -04008254{
Filipe Manana61de7182015-07-01 12:13:10 +01008255 struct btrfs_dio_private *dip = NULL;
8256 struct bio *io_bio = NULL;
Miao Xie23ea8e52014-09-12 18:43:54 +08008257 struct btrfs_io_bio *btrfs_bio;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008258 int skip_sum;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02008259 int write = rw & REQ_WRITE;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008260 int ret = 0;
8261
8262 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
8263
Chris Mason9be33952013-05-17 18:30:14 -04008264 io_bio = btrfs_bio_clone(dio_bio, GFP_NOFS);
Chris Mason9be33952013-05-17 18:30:14 -04008265 if (!io_bio) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04008266 ret = -ENOMEM;
8267 goto free_ordered;
8268 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04008269
Miao Xiec1dc0892014-09-12 18:43:56 +08008270 dip = kzalloc(sizeof(*dip), GFP_NOFS);
Chris Mason9be33952013-05-17 18:30:14 -04008271 if (!dip) {
8272 ret = -ENOMEM;
Filipe Manana61de7182015-07-01 12:13:10 +01008273 goto free_ordered;
Chris Mason9be33952013-05-17 18:30:14 -04008274 }
8275
8276 dip->private = dio_bio->bi_private;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008277 dip->inode = inode;
8278 dip->logical_offset = file_offset;
Kent Overstreet4f024f32013-10-11 15:44:27 -07008279 dip->bytes = dio_bio->bi_iter.bi_size;
8280 dip->disk_bytenr = (u64)dio_bio->bi_iter.bi_sector << 9;
Chris Mason9be33952013-05-17 18:30:14 -04008281 io_bio->bi_private = dip;
Chris Mason9be33952013-05-17 18:30:14 -04008282 dip->orig_bio = io_bio;
8283 dip->dio_bio = dio_bio;
Miao Xiee65e1532010-11-22 03:04:43 +00008284 atomic_set(&dip->pending_bios, 0);
Miao Xiec1dc0892014-09-12 18:43:56 +08008285 btrfs_bio = btrfs_io_bio(io_bio);
8286 btrfs_bio->logical = file_offset;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008287
Miao Xiec1dc0892014-09-12 18:43:56 +08008288 if (write) {
Chris Mason9be33952013-05-17 18:30:14 -04008289 io_bio->bi_end_io = btrfs_endio_direct_write;
Miao Xiec1dc0892014-09-12 18:43:56 +08008290 } else {
Chris Mason9be33952013-05-17 18:30:14 -04008291 io_bio->bi_end_io = btrfs_endio_direct_read;
Miao Xiec1dc0892014-09-12 18:43:56 +08008292 dip->subio_endio = btrfs_subio_endio_read;
8293 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04008294
Miao Xiee65e1532010-11-22 03:04:43 +00008295 ret = btrfs_submit_direct_hook(rw, dip, skip_sum);
8296 if (!ret)
Chris Masoneaf25d92010-05-25 09:48:28 -04008297 return;
Chris Mason9be33952013-05-17 18:30:14 -04008298
Miao Xie23ea8e52014-09-12 18:43:54 +08008299 if (btrfs_bio->end_io)
8300 btrfs_bio->end_io(btrfs_bio, ret);
Chris Mason9be33952013-05-17 18:30:14 -04008301
Josef Bacik4b46fce2010-05-23 11:00:55 -04008302free_ordered:
8303 /*
Filipe Manana61de7182015-07-01 12:13:10 +01008304 * If we arrived here it means either we failed to submit the dip
8305 * or we either failed to clone the dio_bio or failed to allocate the
8306 * dip. If we cloned the dio_bio and allocated the dip, we can just
8307 * call bio_endio against our io_bio so that we get proper resource
8308 * cleanup if we fail to submit the dip, otherwise, we must do the
8309 * same as btrfs_endio_direct_[write|read] because we can't call these
8310 * callbacks - they require an allocated dip and a clone of dio_bio.
Josef Bacik4b46fce2010-05-23 11:00:55 -04008311 */
Filipe Manana61de7182015-07-01 12:13:10 +01008312 if (io_bio && dip) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008313 io_bio->bi_error = -EIO;
8314 bio_endio(io_bio);
Filipe Manana61de7182015-07-01 12:13:10 +01008315 /*
8316 * The end io callbacks free our dip, do the final put on io_bio
8317 * and all the cleanup and final put for dio_bio (through
8318 * dio_end_io()).
8319 */
8320 dip = NULL;
8321 io_bio = NULL;
8322 } else {
8323 if (write) {
8324 struct btrfs_ordered_extent *ordered;
8325
8326 ordered = btrfs_lookup_ordered_extent(inode,
8327 file_offset);
8328 set_bit(BTRFS_ORDERED_IOERR, &ordered->flags);
8329 /*
8330 * Decrements our ref on the ordered extent and removes
8331 * the ordered extent from the inode's ordered tree,
8332 * doing all the proper resource cleanup such as for the
8333 * reserved space and waking up any waiters for this
8334 * ordered extent (through btrfs_remove_ordered_extent).
8335 */
8336 btrfs_finish_ordered_io(ordered);
8337 } else {
8338 unlock_extent(&BTRFS_I(inode)->io_tree, file_offset,
8339 file_offset + dio_bio->bi_iter.bi_size - 1);
8340 }
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008341 dio_bio->bi_error = -EIO;
Filipe Manana61de7182015-07-01 12:13:10 +01008342 /*
8343 * Releases and cleans up our dio_bio, no need to bio_put()
8344 * nor bio_endio()/bio_io_error() against dio_bio.
8345 */
8346 dio_end_io(dio_bio, ret);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008347 }
Filipe Manana61de7182015-07-01 12:13:10 +01008348 if (io_bio)
8349 bio_put(io_bio);
8350 kfree(dip);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008351}
8352
Omar Sandoval6f673762015-03-16 04:33:52 -07008353static ssize_t check_direct_IO(struct btrfs_root *root, struct kiocb *iocb,
Al Viro28060d52014-03-22 05:15:17 -04008354 const struct iov_iter *iter, loff_t offset)
Chris Mason5a5f79b2010-05-26 21:33:37 -04008355{
8356 int seg;
Josef Bacika1b75f72011-04-08 15:51:18 +00008357 int i;
Chris Mason5a5f79b2010-05-26 21:33:37 -04008358 unsigned blocksize_mask = root->sectorsize - 1;
8359 ssize_t retval = -EINVAL;
Chris Mason5a5f79b2010-05-26 21:33:37 -04008360
8361 if (offset & blocksize_mask)
8362 goto out;
8363
Al Viro28060d52014-03-22 05:15:17 -04008364 if (iov_iter_alignment(iter) & blocksize_mask)
8365 goto out;
Josef Bacika1b75f72011-04-08 15:51:18 +00008366
Al Viro28060d52014-03-22 05:15:17 -04008367 /* If this is a write we don't need to check anymore */
Omar Sandoval6f673762015-03-16 04:33:52 -07008368 if (iov_iter_rw(iter) == WRITE)
Al Viro28060d52014-03-22 05:15:17 -04008369 return 0;
8370 /*
8371 * Check to make sure we don't have duplicate iov_base's in this
8372 * iovec, if so return EINVAL, otherwise we'll get csum errors
8373 * when reading back.
8374 */
8375 for (seg = 0; seg < iter->nr_segs; seg++) {
8376 for (i = seg + 1; i < iter->nr_segs; i++) {
8377 if (iter->iov[seg].iov_base == iter->iov[i].iov_base)
Josef Bacika1b75f72011-04-08 15:51:18 +00008378 goto out;
8379 }
Chris Mason5a5f79b2010-05-26 21:33:37 -04008380 }
8381 retval = 0;
8382out:
8383 return retval;
8384}
Josef Bacikeb838e72012-07-31 16:28:48 -04008385
Omar Sandoval22c61862015-03-16 04:33:53 -07008386static ssize_t btrfs_direct_IO(struct kiocb *iocb, struct iov_iter *iter,
8387 loff_t offset)
Chris Mason16432982008-04-10 10:23:21 -04008388{
Josef Bacik4b46fce2010-05-23 11:00:55 -04008389 struct file *file = iocb->ki_filp;
8390 struct inode *inode = file->f_mapping->host;
chandan50745b02015-08-28 21:10:13 +05308391 struct btrfs_root *root = BTRFS_I(inode)->root;
8392 struct btrfs_dio_data dio_data = { 0 };
Miao Xie09348562013-02-07 10:12:07 +00008393 size_t count = 0;
Miao Xie2e60a512013-02-08 07:01:08 +00008394 int flags = 0;
Miao Xie38851cc2013-02-08 07:04:11 +00008395 bool wakeup = true;
8396 bool relock = false;
Miao Xie09348562013-02-07 10:12:07 +00008397 ssize_t ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008398
Omar Sandoval6f673762015-03-16 04:33:52 -07008399 if (check_direct_IO(BTRFS_I(inode)->root, iocb, iter, offset))
Chris Mason5a5f79b2010-05-26 21:33:37 -04008400 return 0;
Chris Mason5a5f79b2010-05-26 21:33:37 -04008401
Jens Axboefe0f07d2015-04-15 17:05:48 -06008402 inode_dio_begin(inode);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01008403 smp_mb__after_atomic();
Miao Xie38851cc2013-02-08 07:04:11 +00008404
Josef Bacik0e267c42013-07-02 10:38:02 -04008405 /*
Miao Xie41bd9ca2014-03-06 13:54:57 +08008406 * The generic stuff only does filemap_write_and_wait_range, which
8407 * isn't enough if we've written compressed pages to this area, so
8408 * we need to flush the dirty pages again to make absolutely sure
8409 * that any outstanding dirty pages are on disk.
Josef Bacik0e267c42013-07-02 10:38:02 -04008410 */
Al Viroa6cbcd42014-03-04 22:38:00 -05008411 count = iov_iter_count(iter);
Miao Xie41bd9ca2014-03-06 13:54:57 +08008412 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
8413 &BTRFS_I(inode)->runtime_flags))
Wang Shilong9a025a02014-07-17 11:44:13 +08008414 filemap_fdatawrite_range(inode->i_mapping, offset,
8415 offset + count - 1);
Josef Bacik0e267c42013-07-02 10:38:02 -04008416
Omar Sandoval6f673762015-03-16 04:33:52 -07008417 if (iov_iter_rw(iter) == WRITE) {
Miao Xie38851cc2013-02-08 07:04:11 +00008418 /*
8419 * If the write DIO is beyond the EOF, we need update
8420 * the isize, but it is protected by i_mutex. So we can
8421 * not unlock the i_mutex at this case.
8422 */
8423 if (offset + count <= inode->i_size) {
8424 mutex_unlock(&inode->i_mutex);
8425 relock = true;
8426 }
Miao Xie09348562013-02-07 10:12:07 +00008427 ret = btrfs_delalloc_reserve_space(inode, count);
8428 if (ret)
Miao Xie38851cc2013-02-08 07:04:11 +00008429 goto out;
chandan50745b02015-08-28 21:10:13 +05308430 dio_data.outstanding_extents = div64_u64(count +
Josef Bacike1cbbfa2015-03-17 10:52:28 -04008431 BTRFS_MAX_EXTENT_SIZE - 1,
8432 BTRFS_MAX_EXTENT_SIZE);
8433
8434 /*
8435 * We need to know how many extents we reserved so that we can
8436 * do the accounting properly if we go over the number we
8437 * originally calculated. Abuse current->journal_info for this.
8438 */
chandan50745b02015-08-28 21:10:13 +05308439 dio_data.reserve = round_up(count, root->sectorsize);
8440 current->journal_info = &dio_data;
David Sterbaee39b432014-09-30 01:33:33 +02008441 } else if (test_bit(BTRFS_INODE_READDIO_NEED_LOCK,
8442 &BTRFS_I(inode)->runtime_flags)) {
Jens Axboefe0f07d2015-04-15 17:05:48 -06008443 inode_dio_end(inode);
Miao Xie38851cc2013-02-08 07:04:11 +00008444 flags = DIO_LOCKING | DIO_SKIP_HOLES;
8445 wakeup = false;
Miao Xie09348562013-02-07 10:12:07 +00008446 }
8447
Omar Sandoval17f8c842015-03-16 04:33:50 -07008448 ret = __blockdev_direct_IO(iocb, inode,
8449 BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev,
8450 iter, offset, btrfs_get_blocks_direct, NULL,
8451 btrfs_submit_direct, flags);
Omar Sandoval6f673762015-03-16 04:33:52 -07008452 if (iov_iter_rw(iter) == WRITE) {
Josef Bacike1cbbfa2015-03-17 10:52:28 -04008453 current->journal_info = NULL;
Liu Boddba1bf2015-06-17 16:59:58 +08008454 if (ret < 0 && ret != -EIOCBQUEUED) {
chandan50745b02015-08-28 21:10:13 +05308455 if (dio_data.reserve)
8456 btrfs_delalloc_release_space(inode,
8457 dio_data.reserve);
Liu Boddba1bf2015-06-17 16:59:58 +08008458 } else if (ret >= 0 && (size_t)ret < count)
Miao Xie09348562013-02-07 10:12:07 +00008459 btrfs_delalloc_release_space(inode,
8460 count - (size_t)ret);
Miao Xie09348562013-02-07 10:12:07 +00008461 }
Miao Xie38851cc2013-02-08 07:04:11 +00008462out:
Miao Xie2e60a512013-02-08 07:01:08 +00008463 if (wakeup)
Jens Axboefe0f07d2015-04-15 17:05:48 -06008464 inode_dio_end(inode);
Miao Xie38851cc2013-02-08 07:04:11 +00008465 if (relock)
8466 mutex_lock(&inode->i_mutex);
Miao Xie09348562013-02-07 10:12:07 +00008467
8468 return ret;
Chris Mason16432982008-04-10 10:23:21 -04008469}
8470
Tsutomu Itoh05dadc02012-11-29 05:08:26 +00008471#define BTRFS_FIEMAP_FLAGS (FIEMAP_FLAG_SYNC)
8472
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05008473static int btrfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
8474 __u64 start, __u64 len)
8475{
Tsutomu Itoh05dadc02012-11-29 05:08:26 +00008476 int ret;
8477
8478 ret = fiemap_check_flags(fieinfo, BTRFS_FIEMAP_FLAGS);
8479 if (ret)
8480 return ret;
8481
Chris Masonec29ed52011-02-23 16:23:20 -05008482 return extent_fiemap(inode, fieinfo, start, len, btrfs_get_extent_fiemap);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05008483}
8484
Chris Mason9ebefb182007-06-15 13:50:00 -04008485int btrfs_readpage(struct file *file, struct page *page)
8486{
Chris Masond1310b22008-01-24 16:13:08 -05008487 struct extent_io_tree *tree;
8488 tree = &BTRFS_I(page->mapping->host)->io_tree;
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02008489 return extent_read_full_page(tree, page, btrfs_get_extent, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04008490}
Chris Mason1832a6d2007-12-21 16:27:21 -05008491
Chris Mason39279cc2007-06-12 06:35:45 -04008492static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
8493{
Chris Masond1310b22008-01-24 16:13:08 -05008494 struct extent_io_tree *tree;
Chris Masonb888db22007-08-27 16:49:44 -04008495
8496
8497 if (current->flags & PF_MEMALLOC) {
8498 redirty_page_for_writepage(wbc, page);
8499 unlock_page(page);
8500 return 0;
8501 }
Chris Masond1310b22008-01-24 16:13:08 -05008502 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04008503 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
8504}
Chris Mason39279cc2007-06-12 06:35:45 -04008505
Eric Sandeen48a3b632013-04-25 20:41:01 +00008506static int btrfs_writepages(struct address_space *mapping,
8507 struct writeback_control *wbc)
Chris Masonb293f02e2007-11-01 19:45:34 -04008508{
Chris Masond1310b22008-01-24 16:13:08 -05008509 struct extent_io_tree *tree;
Chris Mason771ed682008-11-06 22:02:51 -05008510
Chris Masond1310b22008-01-24 16:13:08 -05008511 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f02e2007-11-01 19:45:34 -04008512 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
8513}
8514
Chris Mason3ab2fb52007-11-08 10:59:22 -05008515static int
8516btrfs_readpages(struct file *file, struct address_space *mapping,
8517 struct list_head *pages, unsigned nr_pages)
8518{
Chris Masond1310b22008-01-24 16:13:08 -05008519 struct extent_io_tree *tree;
8520 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05008521 return extent_readpages(tree, mapping, pages, nr_pages,
8522 btrfs_get_extent);
8523}
Chris Masone6dcd2d2008-07-17 12:53:50 -04008524static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04008525{
Chris Masond1310b22008-01-24 16:13:08 -05008526 struct extent_io_tree *tree;
8527 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04008528 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04008529
Chris Masond1310b22008-01-24 16:13:08 -05008530 tree = &BTRFS_I(page->mapping->host)->io_tree;
8531 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05008532 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04008533 if (ret == 1) {
8534 ClearPagePrivate(page);
8535 set_page_private(page, 0);
8536 page_cache_release(page);
8537 }
8538 return ret;
8539}
Chris Mason39279cc2007-06-12 06:35:45 -04008540
Chris Masone6dcd2d2008-07-17 12:53:50 -04008541static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
8542{
Chris Mason98509cf2008-09-11 15:51:43 -04008543 if (PageWriteback(page) || PageDirty(page))
8544 return 0;
Yan Zhengb335b002009-02-12 10:06:04 -05008545 return __btrfs_releasepage(page, gfp_flags & GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008546}
8547
Lukas Czernerd47992f2013-05-21 23:17:23 -04008548static void btrfs_invalidatepage(struct page *page, unsigned int offset,
8549 unsigned int length)
Chris Masona52d9a82007-08-27 16:49:44 -04008550{
Josef Bacik5fd02042012-05-02 14:00:54 -04008551 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05008552 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008553 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00008554 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008555 u64 page_start = page_offset(page);
8556 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008557 int inode_evicting = inode->i_state & I_FREEING;
Chris Masona52d9a82007-08-27 16:49:44 -04008558
Chris Mason8b62b722009-09-02 16:53:46 -04008559 /*
8560 * we have the page locked, so new writeback can't start,
8561 * and the dirty bit won't be cleared while we are here.
8562 *
8563 * Wait for IO on this page so that we can safely clear
8564 * the PagePrivate2 bit and do ordered accounting
8565 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04008566 wait_on_page_writeback(page);
Chris Mason8b62b722009-09-02 16:53:46 -04008567
Josef Bacik5fd02042012-05-02 14:00:54 -04008568 tree = &BTRFS_I(inode)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008569 if (offset) {
8570 btrfs_releasepage(page, GFP_NOFS);
8571 return;
8572 }
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008573
8574 if (!inode_evicting)
8575 lock_extent_bits(tree, page_start, page_end, 0, &cached_state);
8576 ordered = btrfs_lookup_ordered_extent(inode, page_start);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008577 if (ordered) {
Chris Masoneb84ae02008-07-17 13:53:27 -04008578 /*
8579 * IO on this page will never be started, so we need
8580 * to account for any ordered extents now
8581 */
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008582 if (!inode_evicting)
8583 clear_extent_bit(tree, page_start, page_end,
8584 EXTENT_DIRTY | EXTENT_DELALLOC |
8585 EXTENT_LOCKED | EXTENT_DO_ACCOUNTING |
8586 EXTENT_DEFRAG, 1, 0, &cached_state,
8587 GFP_NOFS);
Chris Mason8b62b722009-09-02 16:53:46 -04008588 /*
8589 * whoever cleared the private bit is responsible
8590 * for the finish_ordered_io
8591 */
Josef Bacik77cef2e2013-08-29 13:57:21 -04008592 if (TestClearPagePrivate2(page)) {
8593 struct btrfs_ordered_inode_tree *tree;
8594 u64 new_len;
8595
8596 tree = &BTRFS_I(inode)->ordered_tree;
8597
8598 spin_lock_irq(&tree->lock);
8599 set_bit(BTRFS_ORDERED_TRUNCATED, &ordered->flags);
8600 new_len = page_start - ordered->file_offset;
8601 if (new_len < ordered->truncated_len)
8602 ordered->truncated_len = new_len;
8603 spin_unlock_irq(&tree->lock);
8604
8605 if (btrfs_dec_test_ordered_pending(inode, &ordered,
8606 page_start,
8607 PAGE_CACHE_SIZE, 1))
8608 btrfs_finish_ordered_io(ordered);
Chris Mason8b62b722009-09-02 16:53:46 -04008609 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04008610 btrfs_put_ordered_extent(ordered);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008611 if (!inode_evicting) {
8612 cached_state = NULL;
8613 lock_extent_bits(tree, page_start, page_end, 0,
8614 &cached_state);
8615 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04008616 }
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008617
8618 if (!inode_evicting) {
8619 clear_extent_bit(tree, page_start, page_end,
8620 EXTENT_LOCKED | EXTENT_DIRTY |
8621 EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING |
8622 EXTENT_DEFRAG, 1, 1,
8623 &cached_state, GFP_NOFS);
8624
8625 __btrfs_releasepage(page, GFP_NOFS);
8626 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04008627
Chris Mason4a096752008-07-21 10:29:44 -04008628 ClearPageChecked(page);
Chris Mason9ad6b7bc2008-04-18 16:11:30 -04008629 if (PagePrivate(page)) {
Chris Mason9ad6b7bc2008-04-18 16:11:30 -04008630 ClearPagePrivate(page);
8631 set_page_private(page, 0);
8632 page_cache_release(page);
8633 }
Chris Mason39279cc2007-06-12 06:35:45 -04008634}
8635
Chris Mason9ebefb182007-06-15 13:50:00 -04008636/*
8637 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
8638 * called from a page fault handler when a page is first dirtied. Hence we must
8639 * be careful to check for EOF conditions here. We set the page up correctly
8640 * for a written page which means we get ENOSPC checking when writing into
8641 * holes and correct delalloc and unwritten extent mapping on filesystems that
8642 * support these features.
8643 *
8644 * We are not allowed to take the i_mutex here so we have to play games to
8645 * protect against truncate races as the page could now be beyond EOF. Because
8646 * vmtruncate() writes the inode size before removing pages, once we have the
8647 * page lock we can determine safely if the page is beyond EOF. If it is not
8648 * beyond EOF, then the page is guaranteed safe against truncation until we
8649 * unlock the page.
8650 */
Nick Pigginc2ec1752009-03-31 15:23:21 -07008651int btrfs_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Chris Mason9ebefb182007-06-15 13:50:00 -04008652{
Nick Pigginc2ec1752009-03-31 15:23:21 -07008653 struct page *page = vmf->page;
Al Viro496ad9a2013-01-23 17:07:38 -05008654 struct inode *inode = file_inode(vma->vm_file);
Chris Mason1832a6d2007-12-21 16:27:21 -05008655 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008656 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
8657 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00008658 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008659 char *kaddr;
8660 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04008661 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05008662 int ret;
Chris Mason9998eb72012-01-25 13:47:40 -05008663 int reserved = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04008664 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008665 u64 page_end;
Chris Mason9ebefb182007-06-15 13:50:00 -04008666
Jan Karab2b5ef52012-06-12 16:20:45 +02008667 sb_start_pagefault(inode->i_sb);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04008668 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
Chris Mason9998eb72012-01-25 13:47:40 -05008669 if (!ret) {
Josef Bacike41f9412012-03-26 09:46:47 -04008670 ret = file_update_time(vma->vm_file);
Chris Mason9998eb72012-01-25 13:47:40 -05008671 reserved = 1;
8672 }
Nick Piggin56a76f82009-03-31 15:23:23 -07008673 if (ret) {
8674 if (ret == -ENOMEM)
8675 ret = VM_FAULT_OOM;
8676 else /* -ENOSPC, -EIO, etc */
8677 ret = VM_FAULT_SIGBUS;
Chris Mason9998eb72012-01-25 13:47:40 -05008678 if (reserved)
8679 goto out;
8680 goto out_noreserve;
Nick Piggin56a76f82009-03-31 15:23:23 -07008681 }
Chris Mason1832a6d2007-12-21 16:27:21 -05008682
Nick Piggin56a76f82009-03-31 15:23:23 -07008683 ret = VM_FAULT_NOPAGE; /* make the VM retry the fault */
Chris Masone6dcd2d2008-07-17 12:53:50 -04008684again:
Chris Mason9ebefb182007-06-15 13:50:00 -04008685 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04008686 size = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008687 page_start = page_offset(page);
8688 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04008689
Chris Mason9ebefb182007-06-15 13:50:00 -04008690 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04008691 (page_start >= size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04008692 /* page got truncated out from underneath us */
8693 goto out_unlock;
8694 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04008695 wait_on_page_writeback(page);
8696
Jeff Mahoneyd0082372012-03-01 14:57:19 +01008697 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008698 set_page_extent_mapped(page);
8699
Chris Masoneb84ae02008-07-17 13:53:27 -04008700 /*
8701 * we can't set the delalloc bits if there are pending ordered
8702 * extents. Drop our locks and wait for them to finish
8703 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04008704 ordered = btrfs_lookup_ordered_extent(inode, page_start);
8705 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00008706 unlock_extent_cached(io_tree, page_start, page_end,
8707 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008708 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04008709 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008710 btrfs_put_ordered_extent(ordered);
8711 goto again;
8712 }
8713
Josef Bacikfbf19082009-10-01 17:10:23 -04008714 /*
8715 * XXX - page_mkwrite gets called every time the page is dirtied, even
8716 * if it was already dirty, so for space accounting reasons we need to
8717 * clear any delalloc bits for the range we are fixing to save. There
8718 * is probably a better way to do this, but for now keep consistent with
8719 * prepare_pages in the normal write path.
8720 */
Josef Bacik2ac55d42010-02-03 19:33:23 +00008721 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Liu Bo9e8a4a82012-09-05 19:10:51 -06008722 EXTENT_DIRTY | EXTENT_DELALLOC |
8723 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
Josef Bacik2ac55d42010-02-03 19:33:23 +00008724 0, 0, &cached_state, GFP_NOFS);
Josef Bacikfbf19082009-10-01 17:10:23 -04008725
Josef Bacik2ac55d42010-02-03 19:33:23 +00008726 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
8727 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04008728 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00008729 unlock_extent_cached(io_tree, page_start, page_end,
8730 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04008731 ret = VM_FAULT_SIGBUS;
8732 goto out_unlock;
8733 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04008734 ret = 0;
Chris Mason9ebefb182007-06-15 13:50:00 -04008735
8736 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04008737 if (page_start + PAGE_CACHE_SIZE > size)
Chris Masone6dcd2d2008-07-17 12:53:50 -04008738 zero_start = size & ~PAGE_CACHE_MASK;
Chris Mason9ebefb182007-06-15 13:50:00 -04008739 else
Chris Masone6dcd2d2008-07-17 12:53:50 -04008740 zero_start = PAGE_CACHE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04008741
Chris Masone6dcd2d2008-07-17 12:53:50 -04008742 if (zero_start != PAGE_CACHE_SIZE) {
8743 kaddr = kmap(page);
8744 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
8745 flush_dcache_page(page);
8746 kunmap(page);
8747 }
Chris Mason247e7432008-07-17 12:53:51 -04008748 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008749 set_page_dirty(page);
Chris Mason50a9b212009-09-11 12:33:12 -04008750 SetPageUptodate(page);
Chris Mason5a3f23d2009-03-31 13:27:11 -04008751
Chris Mason257c62e2009-10-13 13:21:08 -04008752 BTRFS_I(inode)->last_trans = root->fs_info->generation;
8753 BTRFS_I(inode)->last_sub_trans = BTRFS_I(inode)->root->log_transid;
Liu Bo46d8bc32012-08-29 01:07:55 -06008754 BTRFS_I(inode)->last_log_commit = BTRFS_I(inode)->root->last_log_commit;
Chris Mason257c62e2009-10-13 13:21:08 -04008755
Josef Bacik2ac55d42010-02-03 19:33:23 +00008756 unlock_extent_cached(io_tree, page_start, page_end, &cached_state, GFP_NOFS);
Chris Mason9ebefb182007-06-15 13:50:00 -04008757
8758out_unlock:
Jan Karab2b5ef52012-06-12 16:20:45 +02008759 if (!ret) {
8760 sb_end_pagefault(inode->i_sb);
Chris Mason50a9b212009-09-11 12:33:12 -04008761 return VM_FAULT_LOCKED;
Jan Karab2b5ef52012-06-12 16:20:45 +02008762 }
Chris Mason9ebefb182007-06-15 13:50:00 -04008763 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05008764out:
Josef Bacikec39e182012-01-12 19:10:12 -05008765 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Mason9998eb72012-01-25 13:47:40 -05008766out_noreserve:
Jan Karab2b5ef52012-06-12 16:20:45 +02008767 sb_end_pagefault(inode->i_sb);
Chris Mason9ebefb182007-06-15 13:50:00 -04008768 return ret;
8769}
8770
Josef Bacika41ad392011-01-31 15:30:16 -05008771static int btrfs_truncate(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04008772{
8773 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacikfcb80c22011-05-03 10:40:22 -04008774 struct btrfs_block_rsv *rsv;
Josef Bacika71754f2013-06-17 17:14:39 -04008775 int ret = 0;
Josef Bacik3893e332011-01-31 16:03:11 -05008776 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04008777 struct btrfs_trans_handle *trans;
Chris Masondbe674a2008-07-17 12:54:05 -04008778 u64 mask = root->sectorsize - 1;
Josef Bacik07127182011-08-19 10:29:59 -04008779 u64 min_size = btrfs_calc_trunc_metadata_size(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04008780
Josef Bacik0ef8b722013-10-25 16:13:35 -04008781 ret = btrfs_wait_ordered_range(inode, inode->i_size & (~mask),
8782 (u64)-1);
8783 if (ret)
8784 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04008785
Josef Bacikfcb80c22011-05-03 10:40:22 -04008786 /*
8787 * Yes ladies and gentelment, this is indeed ugly. The fact is we have
8788 * 3 things going on here
8789 *
8790 * 1) We need to reserve space for our orphan item and the space to
8791 * delete our orphan item. Lord knows we don't want to have a dangling
8792 * orphan item because we didn't reserve space to remove it.
8793 *
8794 * 2) We need to reserve space to update our inode.
8795 *
8796 * 3) We need to have something to cache all the space that is going to
8797 * be free'd up by the truncate operation, but also have some slack
8798 * space reserved in case it uses space during the truncate (thank you
8799 * very much snapshotting).
8800 *
8801 * And we need these to all be seperate. The fact is we can use alot of
8802 * space doing the truncate, and we have no earthly idea how much space
8803 * we will use, so we need the truncate reservation to be seperate so it
8804 * doesn't end up using space reserved for updating the inode or
8805 * removing the orphan item. We also need to be able to stop the
8806 * transaction and start a new one, which means we need to be able to
8807 * update the inode several times, and we have no idea of knowing how
8808 * many times that will be, so we can't just reserve 1 item for the
8809 * entirety of the opration, so that has to be done seperately as well.
8810 * Then there is the orphan item, which does indeed need to be held on
8811 * to for the whole operation, and we need nobody to touch this reserved
8812 * space except the orphan code.
8813 *
8814 * So that leaves us with
8815 *
8816 * 1) root->orphan_block_rsv - for the orphan deletion.
8817 * 2) rsv - for the truncate reservation, which we will steal from the
8818 * transaction reservation.
8819 * 3) fs_info->trans_block_rsv - this will have 1 items worth left for
8820 * updating the inode.
8821 */
Miao Xie66d8f3d2012-09-06 04:02:28 -06008822 rsv = btrfs_alloc_block_rsv(root, BTRFS_BLOCK_RSV_TEMP);
Josef Bacikfcb80c22011-05-03 10:40:22 -04008823 if (!rsv)
8824 return -ENOMEM;
Josef Bacik4a338542011-08-29 11:01:31 -04008825 rsv->size = min_size;
Josef Bacikca7e70f2012-08-27 17:48:15 -04008826 rsv->failfast = 1;
Josef Bacikf0cd8462011-03-04 14:37:08 -05008827
Josef Bacik907cbce2011-08-08 13:46:15 -04008828 /*
Josef Bacik07127182011-08-19 10:29:59 -04008829 * 1 for the truncate slack space
Josef Bacik907cbce2011-08-08 13:46:15 -04008830 * 1 for updating the inode.
8831 */
Josef Bacikf3fe8202013-01-07 17:03:21 -05008832 trans = btrfs_start_transaction(root, 2);
Josef Bacikfcb80c22011-05-03 10:40:22 -04008833 if (IS_ERR(trans)) {
8834 err = PTR_ERR(trans);
8835 goto out;
8836 }
Josef Bacikf0cd8462011-03-04 14:37:08 -05008837
Josef Bacik907cbce2011-08-08 13:46:15 -04008838 /* Migrate the slack space for the truncate to our reserve */
8839 ret = btrfs_block_rsv_migrate(&root->fs_info->trans_block_rsv, rsv,
8840 min_size);
Josef Bacikfcb80c22011-05-03 10:40:22 -04008841 BUG_ON(ret);
Josef Bacikf0cd8462011-03-04 14:37:08 -05008842
Chris Mason5a3f23d2009-03-31 13:27:11 -04008843 /*
Josef Bacik5dc562c2012-08-17 13:14:17 -04008844 * So if we truncate and then write and fsync we normally would just
8845 * write the extents that changed, which is a problem if we need to
8846 * first truncate that entire inode. So set this flag so we write out
8847 * all of the extents in the inode to the sync log so we're completely
8848 * safe.
8849 */
8850 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
Josef Bacikca7e70f2012-08-27 17:48:15 -04008851 trans->block_rsv = rsv;
Josef Bacik5dc562c2012-08-17 13:14:17 -04008852
Yan, Zheng80825102009-11-12 09:35:36 +00008853 while (1) {
8854 ret = btrfs_truncate_inode_items(trans, root, inode,
8855 inode->i_size,
8856 BTRFS_EXTENT_DATA_KEY);
Chris Mason28ed1342014-12-17 09:41:04 -08008857 if (ret != -ENOSPC && ret != -EAGAIN) {
Josef Bacik3893e332011-01-31 16:03:11 -05008858 err = ret;
Yan, Zheng80825102009-11-12 09:35:36 +00008859 break;
Josef Bacik3893e332011-01-31 16:03:11 -05008860 }
Chris Mason39279cc2007-06-12 06:35:45 -04008861
Josef Bacikfcb80c22011-05-03 10:40:22 -04008862 trans->block_rsv = &root->fs_info->trans_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00008863 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05008864 if (ret) {
8865 err = ret;
8866 break;
8867 }
Josef Bacikca7e70f2012-08-27 17:48:15 -04008868
Yan, Zheng80825102009-11-12 09:35:36 +00008869 btrfs_end_transaction(trans, root);
Liu Bob53d3f52012-11-14 14:34:34 +00008870 btrfs_btree_balance_dirty(root);
Josef Bacikca7e70f2012-08-27 17:48:15 -04008871
8872 trans = btrfs_start_transaction(root, 2);
8873 if (IS_ERR(trans)) {
8874 ret = err = PTR_ERR(trans);
8875 trans = NULL;
8876 break;
8877 }
8878
8879 ret = btrfs_block_rsv_migrate(&root->fs_info->trans_block_rsv,
8880 rsv, min_size);
8881 BUG_ON(ret); /* shouldn't happen */
8882 trans->block_rsv = rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00008883 }
8884
8885 if (ret == 0 && inode->i_nlink > 0) {
Josef Bacikfcb80c22011-05-03 10:40:22 -04008886 trans->block_rsv = root->orphan_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00008887 ret = btrfs_orphan_del(trans, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05008888 if (ret)
8889 err = ret;
Yan, Zheng80825102009-11-12 09:35:36 +00008890 }
8891
Chris Mason917c16b2011-11-08 14:49:59 -05008892 if (trans) {
8893 trans->block_rsv = &root->fs_info->trans_block_rsv;
8894 ret = btrfs_update_inode(trans, root, inode);
8895 if (ret && !err)
8896 err = ret;
Josef Bacik7b128762008-07-24 12:17:14 -04008897
Josef Bacik7ad85bb2012-01-12 19:10:12 -05008898 ret = btrfs_end_transaction(trans, root);
Liu Bob53d3f52012-11-14 14:34:34 +00008899 btrfs_btree_balance_dirty(root);
Chris Mason917c16b2011-11-08 14:49:59 -05008900 }
Josef Bacikfcb80c22011-05-03 10:40:22 -04008901
8902out:
8903 btrfs_free_block_rsv(root, rsv);
8904
Josef Bacik3893e332011-01-31 16:03:11 -05008905 if (ret && !err)
8906 err = ret;
Josef Bacika41ad392011-01-31 15:30:16 -05008907
Josef Bacik3893e332011-01-31 16:03:11 -05008908 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04008909}
8910
Sven Wegener3b963622008-06-09 21:57:42 -04008911/*
Chris Masond352ac62008-09-29 15:18:18 -04008912 * create a new subvolume directory/inode (helper for the ioctl).
8913 */
Yan Zhengd2fb3432008-12-11 16:30:39 -05008914int btrfs_create_subvol_root(struct btrfs_trans_handle *trans,
Filipe David Borba Manana63541922014-01-07 11:47:46 +00008915 struct btrfs_root *new_root,
8916 struct btrfs_root *parent_root,
8917 u64 new_dirid)
Chris Mason39279cc2007-06-12 06:35:45 -04008918{
Chris Mason39279cc2007-06-12 06:35:45 -04008919 struct inode *inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04008920 int err;
Chris Mason00e4e6b2008-08-05 11:18:09 -04008921 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04008922
Florian Albrechtskirchinger12fc9d02012-02-10 22:15:54 +01008923 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2,
8924 new_dirid, new_dirid,
8925 S_IFDIR | (~current_umask() & S_IRWXUGO),
8926 &index);
Chris Mason54aa1f42007-06-22 14:16:25 -04008927 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04008928 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04008929 inode->i_op = &btrfs_dir_inode_operations;
8930 inode->i_fop = &btrfs_dir_file_operations;
8931
Miklos Szeredibfe86842011-10-28 14:13:29 +02008932 set_nlink(inode, 1);
Chris Masondbe674a2008-07-17 12:54:05 -04008933 btrfs_i_size_write(inode, 0);
Chris Masonb0d5d102014-09-08 13:08:51 -07008934 unlock_new_inode(inode);
Sven Wegener3b963622008-06-09 21:57:42 -04008935
Filipe David Borba Manana63541922014-01-07 11:47:46 +00008936 err = btrfs_subvol_inherit_props(trans, new_root, parent_root);
8937 if (err)
8938 btrfs_err(new_root->fs_info,
David Sterba351fd352014-05-15 16:48:20 +02008939 "error inheriting subvolume %llu properties: %d",
Filipe David Borba Manana63541922014-01-07 11:47:46 +00008940 new_root->root_key.objectid, err);
8941
Yan, Zheng76dda932009-09-21 16:00:26 -04008942 err = btrfs_update_inode(trans, new_root, inode);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04008943
Yan, Zheng76dda932009-09-21 16:00:26 -04008944 iput(inode);
Mark Fashehce598972011-07-26 11:32:23 -07008945 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04008946}
8947
Chris Mason39279cc2007-06-12 06:35:45 -04008948struct inode *btrfs_alloc_inode(struct super_block *sb)
8949{
8950 struct btrfs_inode *ei;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04008951 struct inode *inode;
Chris Mason39279cc2007-06-12 06:35:45 -04008952
8953 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
8954 if (!ei)
8955 return NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04008956
8957 ei->root = NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04008958 ei->generation = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04008959 ei->last_trans = 0;
Chris Mason257c62e2009-10-13 13:21:08 -04008960 ei->last_sub_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04008961 ei->logged_trans = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04008962 ei->delalloc_bytes = 0;
Wang Shilong47059d92014-07-03 18:22:07 +08008963 ei->defrag_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04008964 ei->disk_i_size = 0;
8965 ei->flags = 0;
Josef Bacik7709cde2011-08-04 10:25:02 -04008966 ei->csum_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04008967 ei->index_cnt = (u64)-1;
Miao Xie67de1172013-12-26 13:07:06 +08008968 ei->dir_index = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04008969 ei->last_unlink_trans = 0;
Liu Bo46d8bc32012-08-29 01:07:55 -06008970 ei->last_log_commit = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04008971
Josef Bacik9e0baf62011-07-15 15:16:44 +00008972 spin_lock_init(&ei->lock);
8973 ei->outstanding_extents = 0;
8974 ei->reserved_extents = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04008975
Josef Bacik72ac3c02012-05-23 14:13:11 -04008976 ei->runtime_flags = 0;
Li Zefan261507a02010-12-17 14:21:50 +08008977 ei->force_compress = BTRFS_COMPRESS_NONE;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04008978
Miao Xie16cdcec2011-04-22 18:12:22 +08008979 ei->delayed_node = NULL;
8980
chandan r9cc97d62012-07-04 12:48:07 +05308981 ei->i_otime.tv_sec = 0;
8982 ei->i_otime.tv_nsec = 0;
8983
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04008984 inode = &ei->vfs_inode;
David Sterbaa8067e02011-04-21 00:34:43 +02008985 extent_map_tree_init(&ei->extent_tree);
David Sterbaf993c882011-04-20 23:35:57 +02008986 extent_io_tree_init(&ei->io_tree, &inode->i_data);
8987 extent_io_tree_init(&ei->io_failure_tree, &inode->i_data);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04008988 ei->io_tree.track_uptodate = 1;
8989 ei->io_failure_tree.track_uptodate = 1;
Josef Bacikb812ce22012-11-16 13:56:32 -05008990 atomic_set(&ei->sync_writers, 0);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04008991 mutex_init(&ei->log_mutex);
Josef Bacikf2486792012-01-13 12:09:22 -05008992 mutex_init(&ei->delalloc_mutex);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008993 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04008994 INIT_LIST_HEAD(&ei->delalloc_inodes);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04008995 RB_CLEAR_NODE(&ei->rb_node);
8996
8997 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04008998}
8999
Josef Bacikaaedb552013-10-11 14:44:09 -04009000#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
9001void btrfs_test_destroy_inode(struct inode *inode)
9002{
9003 btrfs_drop_extent_cache(inode, 0, (u64)-1, 0);
9004 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
9005}
9006#endif
9007
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11009008static void btrfs_i_callback(struct rcu_head *head)
9009{
9010 struct inode *inode = container_of(head, struct inode, i_rcu);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11009011 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
9012}
9013
Chris Mason39279cc2007-06-12 06:35:45 -04009014void btrfs_destroy_inode(struct inode *inode)
9015{
Chris Masone6dcd2d2008-07-17 12:53:50 -04009016 struct btrfs_ordered_extent *ordered;
Chris Mason5a3f23d2009-03-31 13:27:11 -04009017 struct btrfs_root *root = BTRFS_I(inode)->root;
9018
Al Virob3d9b7a2012-06-09 13:51:19 -04009019 WARN_ON(!hlist_empty(&inode->i_dentry));
Chris Mason39279cc2007-06-12 06:35:45 -04009020 WARN_ON(inode->i_data.nrpages);
Josef Bacik9e0baf62011-07-15 15:16:44 +00009021 WARN_ON(BTRFS_I(inode)->outstanding_extents);
9022 WARN_ON(BTRFS_I(inode)->reserved_extents);
Josef Bacik7709cde2011-08-04 10:25:02 -04009023 WARN_ON(BTRFS_I(inode)->delalloc_bytes);
9024 WARN_ON(BTRFS_I(inode)->csum_bytes);
Wang Shilong47059d92014-07-03 18:22:07 +08009025 WARN_ON(BTRFS_I(inode)->defrag_bytes);
Chris Mason39279cc2007-06-12 06:35:45 -04009026
Chris Mason5a3f23d2009-03-31 13:27:11 -04009027 /*
Josef Bacika6dbd422009-11-11 15:53:34 -05009028 * This can happen where we create an inode, but somebody else also
9029 * created the same inode and we need to destroy the one we already
9030 * created.
9031 */
9032 if (!root)
9033 goto free;
9034
Josef Bacik8a35d952012-05-23 14:26:42 -04009035 if (test_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
9036 &BTRFS_I(inode)->runtime_flags)) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00009037 btrfs_info(root->fs_info, "inode %llu still on the orphan list",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02009038 btrfs_ino(inode));
Josef Bacik8a35d952012-05-23 14:26:42 -04009039 atomic_dec(&root->orphan_inodes);
Josef Bacik7b128762008-07-24 12:17:14 -04009040 }
Josef Bacik7b128762008-07-24 12:17:14 -04009041
Chris Masond3977122009-01-05 21:25:51 -05009042 while (1) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04009043 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
9044 if (!ordered)
9045 break;
9046 else {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00009047 btrfs_err(root->fs_info, "found ordered extent %llu %llu on inode cleanup",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02009048 ordered->file_offset, ordered->len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009049 btrfs_remove_ordered_extent(inode, ordered);
9050 btrfs_put_ordered_extent(ordered);
9051 btrfs_put_ordered_extent(ordered);
9052 }
9053 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009054 inode_tree_del(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04009055 btrfs_drop_extent_cache(inode, 0, (u64)-1, 0);
Josef Bacika6dbd422009-11-11 15:53:34 -05009056free:
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11009057 call_rcu(&inode->i_rcu, btrfs_i_callback);
Chris Mason39279cc2007-06-12 06:35:45 -04009058}
9059
Al Viro45321ac2010-06-07 13:43:19 -04009060int btrfs_drop_inode(struct inode *inode)
Yan, Zheng76dda932009-09-21 16:00:26 -04009061{
9062 struct btrfs_root *root = BTRFS_I(inode)->root;
Al Viro45321ac2010-06-07 13:43:19 -04009063
Naohiro Aota6379ef92013-06-06 09:56:34 +00009064 if (root == NULL)
9065 return 1;
9066
Liu Bofa6ac872013-02-20 14:10:23 +00009067 /* the snap/subvol tree is on deleting */
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02009068 if (btrfs_root_refs(&root->root_item) == 0)
Al Viro45321ac2010-06-07 13:43:19 -04009069 return 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04009070 else
Al Viro45321ac2010-06-07 13:43:19 -04009071 return generic_drop_inode(inode);
Yan, Zheng76dda932009-09-21 16:00:26 -04009072}
9073
Sven Wegener0ee0fda2008-07-30 16:54:26 -04009074static void init_once(void *foo)
Chris Mason39279cc2007-06-12 06:35:45 -04009075{
9076 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
9077
9078 inode_init_once(&ei->vfs_inode);
9079}
9080
9081void btrfs_destroy_cachep(void)
9082{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +10009083 /*
9084 * Make sure all delayed rcu free inodes are flushed before we
9085 * destroy cache.
9086 */
9087 rcu_barrier();
Chris Mason39279cc2007-06-12 06:35:45 -04009088 if (btrfs_inode_cachep)
9089 kmem_cache_destroy(btrfs_inode_cachep);
9090 if (btrfs_trans_handle_cachep)
9091 kmem_cache_destroy(btrfs_trans_handle_cachep);
9092 if (btrfs_transaction_cachep)
9093 kmem_cache_destroy(btrfs_transaction_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04009094 if (btrfs_path_cachep)
9095 kmem_cache_destroy(btrfs_path_cachep);
Josef Bacikdc89e982011-01-28 17:05:48 -05009096 if (btrfs_free_space_cachep)
9097 kmem_cache_destroy(btrfs_free_space_cachep);
Miao Xie8ccf6f192012-10-25 09:28:04 +00009098 if (btrfs_delalloc_work_cachep)
9099 kmem_cache_destroy(btrfs_delalloc_work_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04009100}
9101
9102int btrfs_init_cachep(void)
9103{
David Sterba837e1972012-09-07 03:00:48 -06009104 btrfs_inode_cachep = kmem_cache_create("btrfs_inode",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009105 sizeof(struct btrfs_inode), 0,
9106 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04009107 if (!btrfs_inode_cachep)
9108 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009109
David Sterba837e1972012-09-07 03:00:48 -06009110 btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009111 sizeof(struct btrfs_trans_handle), 0,
9112 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04009113 if (!btrfs_trans_handle_cachep)
9114 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009115
David Sterba837e1972012-09-07 03:00:48 -06009116 btrfs_transaction_cachep = kmem_cache_create("btrfs_transaction",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009117 sizeof(struct btrfs_transaction), 0,
9118 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04009119 if (!btrfs_transaction_cachep)
9120 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009121
David Sterba837e1972012-09-07 03:00:48 -06009122 btrfs_path_cachep = kmem_cache_create("btrfs_path",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009123 sizeof(struct btrfs_path), 0,
9124 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04009125 if (!btrfs_path_cachep)
9126 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009127
David Sterba837e1972012-09-07 03:00:48 -06009128 btrfs_free_space_cachep = kmem_cache_create("btrfs_free_space",
Josef Bacikdc89e982011-01-28 17:05:48 -05009129 sizeof(struct btrfs_free_space), 0,
9130 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
9131 if (!btrfs_free_space_cachep)
9132 goto fail;
9133
Miao Xie8ccf6f192012-10-25 09:28:04 +00009134 btrfs_delalloc_work_cachep = kmem_cache_create("btrfs_delalloc_work",
9135 sizeof(struct btrfs_delalloc_work), 0,
9136 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD,
9137 NULL);
9138 if (!btrfs_delalloc_work_cachep)
9139 goto fail;
9140
Chris Mason39279cc2007-06-12 06:35:45 -04009141 return 0;
9142fail:
9143 btrfs_destroy_cachep();
9144 return -ENOMEM;
9145}
9146
9147static int btrfs_getattr(struct vfsmount *mnt,
9148 struct dentry *dentry, struct kstat *stat)
9149{
Miao Xiedf0af1a2013-01-29 10:11:59 +00009150 u64 delalloc_bytes;
David Howells2b0143b2015-03-17 22:25:59 +00009151 struct inode *inode = d_inode(dentry);
David Sterbafadc0d82011-11-20 07:33:38 -05009152 u32 blocksize = inode->i_sb->s_blocksize;
9153
Chris Mason39279cc2007-06-12 06:35:45 -04009154 generic_fillattr(inode, stat);
Al Viro0ee5dc62011-07-07 15:44:25 -04009155 stat->dev = BTRFS_I(inode)->root->anon_dev;
Chris Masond6667462008-01-03 14:51:00 -05009156 stat->blksize = PAGE_CACHE_SIZE;
Miao Xiedf0af1a2013-01-29 10:11:59 +00009157
9158 spin_lock(&BTRFS_I(inode)->lock);
9159 delalloc_bytes = BTRFS_I(inode)->delalloc_bytes;
9160 spin_unlock(&BTRFS_I(inode)->lock);
David Sterbafadc0d82011-11-20 07:33:38 -05009161 stat->blocks = (ALIGN(inode_get_bytes(inode), blocksize) +
Miao Xiedf0af1a2013-01-29 10:11:59 +00009162 ALIGN(delalloc_bytes, blocksize)) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -04009163 return 0;
9164}
9165
Chris Masond3977122009-01-05 21:25:51 -05009166static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry,
9167 struct inode *new_dir, struct dentry *new_dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04009168{
9169 struct btrfs_trans_handle *trans;
9170 struct btrfs_root *root = BTRFS_I(old_dir)->root;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009171 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
David Howells2b0143b2015-03-17 22:25:59 +00009172 struct inode *new_inode = d_inode(new_dentry);
9173 struct inode *old_inode = d_inode(old_dentry);
Chris Mason39279cc2007-06-12 06:35:45 -04009174 struct timespec ctime = CURRENT_TIME;
Chris Mason00e4e6b2008-08-05 11:18:09 -04009175 u64 index = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009176 u64 root_objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04009177 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08009178 u64 old_ino = btrfs_ino(old_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04009179
Li Zefan33345d012011-04-20 10:31:50 +08009180 if (btrfs_ino(new_dir) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Yan, Zhengf679a842009-09-24 09:17:31 -04009181 return -EPERM;
9182
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009183 /* we only allow rename subvolume link between subvolumes */
Li Zefan33345d012011-04-20 10:31:50 +08009184 if (old_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
Chris Mason3394e162008-11-17 20:42:26 -05009185 return -EXDEV;
9186
Li Zefan33345d012011-04-20 10:31:50 +08009187 if (old_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID ||
9188 (new_inode && btrfs_ino(new_inode) == BTRFS_FIRST_FREE_OBJECTID))
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009189 return -ENOTEMPTY;
9190
Chris Mason39279cc2007-06-12 06:35:45 -04009191 if (S_ISDIR(old_inode->i_mode) && new_inode &&
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009192 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Chris Mason39279cc2007-06-12 06:35:45 -04009193 return -ENOTEMPTY;
Chris Mason9c520572012-12-17 14:26:57 -05009194
9195
9196 /* check for collisions, even if the name isn't there */
Josef Bacik4871c152013-10-09 12:24:04 -04009197 ret = btrfs_check_dir_item_collision(dest, new_dir->i_ino,
Chris Mason9c520572012-12-17 14:26:57 -05009198 new_dentry->d_name.name,
9199 new_dentry->d_name.len);
9200
9201 if (ret) {
9202 if (ret == -EEXIST) {
9203 /* we shouldn't get
9204 * eexist without a new_inode */
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05309205 if (WARN_ON(!new_inode)) {
Chris Mason9c520572012-12-17 14:26:57 -05009206 return ret;
9207 }
9208 } else {
9209 /* maybe -EOVERFLOW */
9210 return ret;
9211 }
9212 }
9213 ret = 0;
9214
Chris Mason5a3f23d2009-03-31 13:27:11 -04009215 /*
Chris Mason8d875f92014-08-12 10:47:42 -07009216 * we're using rename to replace one file with another. Start IO on it
9217 * now so we don't add too much work to the end of the transaction
Chris Mason5a3f23d2009-03-31 13:27:11 -04009218 */
Chris Mason8d875f92014-08-12 10:47:42 -07009219 if (new_inode && S_ISREG(old_inode->i_mode) && new_inode->i_size)
Chris Mason5a3f23d2009-03-31 13:27:11 -04009220 filemap_flush(old_inode->i_mapping);
9221
Yan, Zheng76dda932009-09-21 16:00:26 -04009222 /* close the racy window with snapshot create/destroy ioctl */
Li Zefan33345d012011-04-20 10:31:50 +08009223 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Yan, Zheng76dda932009-09-21 16:00:26 -04009224 down_read(&root->fs_info->subvol_sem);
Yan, Zhenga22285a2010-05-16 10:48:46 -04009225 /*
9226 * We want to reserve the absolute worst case amount of items. So if
9227 * both inodes are subvols and we need to unlink them then that would
9228 * require 4 item modifications, but if they are both normal inodes it
9229 * would require 5 item modifications, so we'll assume their normal
9230 * inodes. So 5 * 2 is 10, plus 1 for the new link, so 11 total items
9231 * should cover the worst case number of items we'll modify.
9232 */
Josef Bacik6e137ed2013-03-26 15:26:55 -04009233 trans = btrfs_start_transaction(root, 11);
Johann Lombardib44c59a2011-03-31 13:23:47 +00009234 if (IS_ERR(trans)) {
9235 ret = PTR_ERR(trans);
9236 goto out_notrans;
9237 }
Chris Mason5f39d392007-10-15 16:14:19 -04009238
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009239 if (dest != root)
9240 btrfs_record_root_in_trans(trans, dest);
9241
Yan, Zhenga5719522009-09-24 09:17:31 -04009242 ret = btrfs_set_inode_index(new_dir, &index);
9243 if (ret)
9244 goto out_fail;
Chris Mason5a3f23d2009-03-31 13:27:11 -04009245
Miao Xie67de1172013-12-26 13:07:06 +08009246 BTRFS_I(old_inode)->dir_index = 0ULL;
Li Zefan33345d012011-04-20 10:31:50 +08009247 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009248 /* force full log commit if subvolume involved. */
Miao Xie995946d2014-04-02 19:51:06 +08009249 btrfs_set_log_full_commit(root->fs_info, trans);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009250 } else {
Yan, Zhenga5719522009-09-24 09:17:31 -04009251 ret = btrfs_insert_inode_ref(trans, dest,
9252 new_dentry->d_name.name,
9253 new_dentry->d_name.len,
Li Zefan33345d012011-04-20 10:31:50 +08009254 old_ino,
9255 btrfs_ino(new_dir), index);
Yan, Zhenga5719522009-09-24 09:17:31 -04009256 if (ret)
9257 goto out_fail;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009258 /*
9259 * this is an ugly little race, but the rename is required
9260 * to make sure that if we crash, the inode is either at the
9261 * old name or the new one. pinning the log transaction lets
9262 * us make sure we don't allow a log commit to come in after
9263 * we unlink the name but before we add the new name back in.
9264 */
9265 btrfs_pin_log_trans(root);
9266 }
Chris Mason5a3f23d2009-03-31 13:27:11 -04009267
Josef Bacik0c4d2d92012-04-05 15:03:02 -04009268 inode_inc_iversion(old_dir);
9269 inode_inc_iversion(new_dir);
9270 inode_inc_iversion(old_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04009271 old_dir->i_ctime = old_dir->i_mtime = ctime;
9272 new_dir->i_ctime = new_dir->i_mtime = ctime;
9273 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04009274
Chris Mason12fcfd22009-03-24 10:24:20 -04009275 if (old_dentry->d_parent != new_dentry->d_parent)
9276 btrfs_record_unlink_dir(trans, old_dir, old_inode, 1);
9277
Li Zefan33345d012011-04-20 10:31:50 +08009278 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009279 root_objectid = BTRFS_I(old_inode)->root->root_key.objectid;
9280 ret = btrfs_unlink_subvol(trans, root, old_dir, root_objectid,
9281 old_dentry->d_name.name,
9282 old_dentry->d_name.len);
9283 } else {
Al Viro92986792011-03-04 17:14:37 +00009284 ret = __btrfs_unlink_inode(trans, root, old_dir,
David Howells2b0143b2015-03-17 22:25:59 +00009285 d_inode(old_dentry),
Al Viro92986792011-03-04 17:14:37 +00009286 old_dentry->d_name.name,
9287 old_dentry->d_name.len);
9288 if (!ret)
9289 ret = btrfs_update_inode(trans, root, old_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009290 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009291 if (ret) {
9292 btrfs_abort_transaction(trans, root, ret);
9293 goto out_fail;
9294 }
Chris Mason39279cc2007-06-12 06:35:45 -04009295
9296 if (new_inode) {
Josef Bacik0c4d2d92012-04-05 15:03:02 -04009297 inode_inc_iversion(new_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04009298 new_inode->i_ctime = CURRENT_TIME;
Li Zefan33345d012011-04-20 10:31:50 +08009299 if (unlikely(btrfs_ino(new_inode) ==
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009300 BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
9301 root_objectid = BTRFS_I(new_inode)->location.objectid;
9302 ret = btrfs_unlink_subvol(trans, dest, new_dir,
9303 root_objectid,
9304 new_dentry->d_name.name,
9305 new_dentry->d_name.len);
9306 BUG_ON(new_inode->i_nlink == 0);
9307 } else {
9308 ret = btrfs_unlink_inode(trans, dest, new_dir,
David Howells2b0143b2015-03-17 22:25:59 +00009309 d_inode(new_dentry),
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009310 new_dentry->d_name.name,
9311 new_dentry->d_name.len);
9312 }
Josef Bacik4ef31a42013-08-13 14:10:08 -04009313 if (!ret && new_inode->i_nlink == 0)
David Howells2b0143b2015-03-17 22:25:59 +00009314 ret = btrfs_orphan_add(trans, d_inode(new_dentry));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009315 if (ret) {
9316 btrfs_abort_transaction(trans, root, ret);
9317 goto out_fail;
9318 }
Chris Mason39279cc2007-06-12 06:35:45 -04009319 }
Josef Bacikaec74772008-07-24 12:12:38 -04009320
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009321 ret = btrfs_add_link(trans, new_dir, old_inode,
9322 new_dentry->d_name.name,
Yan, Zhenga5719522009-09-24 09:17:31 -04009323 new_dentry->d_name.len, 0, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009324 if (ret) {
9325 btrfs_abort_transaction(trans, root, ret);
9326 goto out_fail;
9327 }
Chris Mason39279cc2007-06-12 06:35:45 -04009328
Miao Xie67de1172013-12-26 13:07:06 +08009329 if (old_inode->i_nlink == 1)
9330 BTRFS_I(old_inode)->dir_index = index;
9331
Li Zefan33345d012011-04-20 10:31:50 +08009332 if (old_ino != BTRFS_FIRST_FREE_OBJECTID) {
Al Viro10d9f302011-07-16 23:09:10 -04009333 struct dentry *parent = new_dentry->d_parent;
Josef Bacik6a912212010-11-20 09:48:00 +00009334 btrfs_log_new_name(trans, old_inode, old_dir, parent);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009335 btrfs_end_log_trans(root);
9336 }
Chris Mason39279cc2007-06-12 06:35:45 -04009337out_fail:
Josef Bacik7ad85bb2012-01-12 19:10:12 -05009338 btrfs_end_transaction(trans, root);
Johann Lombardib44c59a2011-03-31 13:23:47 +00009339out_notrans:
Li Zefan33345d012011-04-20 10:31:50 +08009340 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Yan, Zheng76dda932009-09-21 16:00:26 -04009341 up_read(&root->fs_info->subvol_sem);
Josef Bacik9ed74f22009-09-11 16:12:44 -04009342
Chris Mason39279cc2007-06-12 06:35:45 -04009343 return ret;
9344}
9345
Miklos Szeredi80ace852014-07-23 15:15:32 +02009346static int btrfs_rename2(struct inode *old_dir, struct dentry *old_dentry,
9347 struct inode *new_dir, struct dentry *new_dentry,
9348 unsigned int flags)
9349{
9350 if (flags & ~RENAME_NOREPLACE)
9351 return -EINVAL;
9352
9353 return btrfs_rename(old_dir, old_dentry, new_dir, new_dentry);
9354}
9355
Miao Xie8ccf6f192012-10-25 09:28:04 +00009356static void btrfs_run_delalloc_work(struct btrfs_work *work)
9357{
9358 struct btrfs_delalloc_work *delalloc_work;
Josef Bacik9f23e282013-10-28 15:03:41 -04009359 struct inode *inode;
Miao Xie8ccf6f192012-10-25 09:28:04 +00009360
9361 delalloc_work = container_of(work, struct btrfs_delalloc_work,
9362 work);
Josef Bacik9f23e282013-10-28 15:03:41 -04009363 inode = delalloc_work->inode;
9364 if (delalloc_work->wait) {
9365 btrfs_wait_ordered_range(inode, 0, (u64)-1);
9366 } else {
9367 filemap_flush(inode->i_mapping);
9368 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
9369 &BTRFS_I(inode)->runtime_flags))
9370 filemap_flush(inode->i_mapping);
9371 }
Miao Xie8ccf6f192012-10-25 09:28:04 +00009372
9373 if (delalloc_work->delay_iput)
Josef Bacik9f23e282013-10-28 15:03:41 -04009374 btrfs_add_delayed_iput(inode);
Miao Xie8ccf6f192012-10-25 09:28:04 +00009375 else
Josef Bacik9f23e282013-10-28 15:03:41 -04009376 iput(inode);
Miao Xie8ccf6f192012-10-25 09:28:04 +00009377 complete(&delalloc_work->completion);
9378}
9379
9380struct btrfs_delalloc_work *btrfs_alloc_delalloc_work(struct inode *inode,
9381 int wait, int delay_iput)
9382{
9383 struct btrfs_delalloc_work *work;
9384
9385 work = kmem_cache_zalloc(btrfs_delalloc_work_cachep, GFP_NOFS);
9386 if (!work)
9387 return NULL;
9388
9389 init_completion(&work->completion);
9390 INIT_LIST_HEAD(&work->list);
9391 work->inode = inode;
9392 work->wait = wait;
9393 work->delay_iput = delay_iput;
Liu Bo9e0af232014-08-15 23:36:53 +08009394 WARN_ON_ONCE(!inode);
9395 btrfs_init_work(&work->work, btrfs_flush_delalloc_helper,
9396 btrfs_run_delalloc_work, NULL, NULL);
Miao Xie8ccf6f192012-10-25 09:28:04 +00009397
9398 return work;
9399}
9400
9401void btrfs_wait_and_free_delalloc_work(struct btrfs_delalloc_work *work)
9402{
9403 wait_for_completion(&work->completion);
9404 kmem_cache_free(btrfs_delalloc_work_cachep, work);
9405}
9406
Chris Masond352ac62008-09-29 15:18:18 -04009407/*
9408 * some fairly slow code that needs optimization. This walks the list
9409 * of all the inodes with pending delalloc and forces them to disk.
9410 */
Miao Xie6c255e62014-03-06 13:55:01 +08009411static int __start_delalloc_inodes(struct btrfs_root *root, int delay_iput,
9412 int nr)
Chris Masonea8c2812008-08-04 23:17:27 -04009413{
Chris Masonea8c2812008-08-04 23:17:27 -04009414 struct btrfs_inode *binode;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04009415 struct inode *inode;
Miao Xie8ccf6f192012-10-25 09:28:04 +00009416 struct btrfs_delalloc_work *work, *next;
9417 struct list_head works;
Miao Xie1eafa6c2013-01-22 10:49:00 +00009418 struct list_head splice;
Miao Xie8ccf6f192012-10-25 09:28:04 +00009419 int ret = 0;
Chris Masonea8c2812008-08-04 23:17:27 -04009420
Miao Xie8ccf6f192012-10-25 09:28:04 +00009421 INIT_LIST_HEAD(&works);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009422 INIT_LIST_HEAD(&splice);
Miao Xie63607cc2013-01-22 10:50:35 +00009423
Miao Xie573bfb72014-03-06 13:55:03 +08009424 mutex_lock(&root->delalloc_mutex);
Miao Xieeb73c1b2013-05-15 07:48:22 +00009425 spin_lock(&root->delalloc_lock);
9426 list_splice_init(&root->delalloc_inodes, &splice);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009427 while (!list_empty(&splice)) {
9428 binode = list_entry(splice.next, struct btrfs_inode,
Chris Masonea8c2812008-08-04 23:17:27 -04009429 delalloc_inodes);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009430
Miao Xieeb73c1b2013-05-15 07:48:22 +00009431 list_move_tail(&binode->delalloc_inodes,
9432 &root->delalloc_inodes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04009433 inode = igrab(&binode->vfs_inode);
Miao Xiedf0af1a2013-01-29 10:11:59 +00009434 if (!inode) {
Miao Xieeb73c1b2013-05-15 07:48:22 +00009435 cond_resched_lock(&root->delalloc_lock);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009436 continue;
Miao Xiedf0af1a2013-01-29 10:11:59 +00009437 }
Miao Xieeb73c1b2013-05-15 07:48:22 +00009438 spin_unlock(&root->delalloc_lock);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009439
9440 work = btrfs_alloc_delalloc_work(inode, 0, delay_iput);
David Sterba5d99a9982014-09-29 19:20:37 +02009441 if (!work) {
Josef Bacikf4ab9ea2013-09-17 11:25:44 -04009442 if (delay_iput)
9443 btrfs_add_delayed_iput(inode);
9444 else
9445 iput(inode);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009446 ret = -ENOMEM;
Wang Shilonga1ecaab2014-04-02 19:53:32 +08009447 goto out;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04009448 }
Miao Xie1eafa6c2013-01-22 10:49:00 +00009449 list_add_tail(&work->list, &works);
Qu Wenruoa44903a2014-02-28 10:46:09 +08009450 btrfs_queue_work(root->fs_info->flush_workers,
9451 &work->work);
Miao Xie6c255e62014-03-06 13:55:01 +08009452 ret++;
9453 if (nr != -1 && ret >= nr)
Wang Shilonga1ecaab2014-04-02 19:53:32 +08009454 goto out;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04009455 cond_resched();
Miao Xieeb73c1b2013-05-15 07:48:22 +00009456 spin_lock(&root->delalloc_lock);
Chris Masonea8c2812008-08-04 23:17:27 -04009457 }
Miao Xieeb73c1b2013-05-15 07:48:22 +00009458 spin_unlock(&root->delalloc_lock);
Chris Mason8c8bee12008-09-29 11:19:10 -04009459
Wang Shilonga1ecaab2014-04-02 19:53:32 +08009460out:
Miao Xie1eafa6c2013-01-22 10:49:00 +00009461 list_for_each_entry_safe(work, next, &works, list) {
9462 list_del_init(&work->list);
9463 btrfs_wait_and_free_delalloc_work(work);
9464 }
9465
Miao Xieeb73c1b2013-05-15 07:48:22 +00009466 if (!list_empty_careful(&splice)) {
9467 spin_lock(&root->delalloc_lock);
9468 list_splice_tail(&splice, &root->delalloc_inodes);
9469 spin_unlock(&root->delalloc_lock);
9470 }
Miao Xie573bfb72014-03-06 13:55:03 +08009471 mutex_unlock(&root->delalloc_mutex);
Miao Xieeb73c1b2013-05-15 07:48:22 +00009472 return ret;
9473}
9474
9475int btrfs_start_delalloc_inodes(struct btrfs_root *root, int delay_iput)
9476{
9477 int ret;
9478
Wang Shilong2c21b4d2014-01-14 19:42:20 +08009479 if (test_bit(BTRFS_FS_STATE_ERROR, &root->fs_info->fs_state))
Miao Xieeb73c1b2013-05-15 07:48:22 +00009480 return -EROFS;
9481
Miao Xie6c255e62014-03-06 13:55:01 +08009482 ret = __start_delalloc_inodes(root, delay_iput, -1);
9483 if (ret > 0)
9484 ret = 0;
Miao Xieeb73c1b2013-05-15 07:48:22 +00009485 /*
9486 * the filemap_flush will queue IO into the worker threads, but
Chris Mason8c8bee12008-09-29 11:19:10 -04009487 * we have to make sure the IO is actually started and that
9488 * ordered extents get created before we return
9489 */
9490 atomic_inc(&root->fs_info->async_submit_draining);
Chris Masond3977122009-01-05 21:25:51 -05009491 while (atomic_read(&root->fs_info->nr_async_submits) ||
Chris Mason771ed682008-11-06 22:02:51 -05009492 atomic_read(&root->fs_info->async_delalloc_pages)) {
Chris Mason8c8bee12008-09-29 11:19:10 -04009493 wait_event(root->fs_info->async_submit_wait,
Chris Mason771ed682008-11-06 22:02:51 -05009494 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
9495 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
Chris Mason8c8bee12008-09-29 11:19:10 -04009496 }
9497 atomic_dec(&root->fs_info->async_submit_draining);
Miao Xieeb73c1b2013-05-15 07:48:22 +00009498 return ret;
9499}
9500
Miao Xie6c255e62014-03-06 13:55:01 +08009501int btrfs_start_delalloc_roots(struct btrfs_fs_info *fs_info, int delay_iput,
9502 int nr)
Miao Xieeb73c1b2013-05-15 07:48:22 +00009503{
9504 struct btrfs_root *root;
9505 struct list_head splice;
9506 int ret;
9507
Wang Shilong2c21b4d2014-01-14 19:42:20 +08009508 if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state))
Miao Xieeb73c1b2013-05-15 07:48:22 +00009509 return -EROFS;
9510
9511 INIT_LIST_HEAD(&splice);
9512
Miao Xie573bfb72014-03-06 13:55:03 +08009513 mutex_lock(&fs_info->delalloc_root_mutex);
Miao Xieeb73c1b2013-05-15 07:48:22 +00009514 spin_lock(&fs_info->delalloc_root_lock);
9515 list_splice_init(&fs_info->delalloc_roots, &splice);
Miao Xie6c255e62014-03-06 13:55:01 +08009516 while (!list_empty(&splice) && nr) {
Miao Xieeb73c1b2013-05-15 07:48:22 +00009517 root = list_first_entry(&splice, struct btrfs_root,
9518 delalloc_root);
9519 root = btrfs_grab_fs_root(root);
9520 BUG_ON(!root);
9521 list_move_tail(&root->delalloc_root,
9522 &fs_info->delalloc_roots);
9523 spin_unlock(&fs_info->delalloc_root_lock);
9524
Miao Xie6c255e62014-03-06 13:55:01 +08009525 ret = __start_delalloc_inodes(root, delay_iput, nr);
Miao Xieeb73c1b2013-05-15 07:48:22 +00009526 btrfs_put_fs_root(root);
Miao Xie6c255e62014-03-06 13:55:01 +08009527 if (ret < 0)
Miao Xieeb73c1b2013-05-15 07:48:22 +00009528 goto out;
9529
Miao Xie6c255e62014-03-06 13:55:01 +08009530 if (nr != -1) {
9531 nr -= ret;
9532 WARN_ON(nr < 0);
9533 }
Miao Xieeb73c1b2013-05-15 07:48:22 +00009534 spin_lock(&fs_info->delalloc_root_lock);
9535 }
9536 spin_unlock(&fs_info->delalloc_root_lock);
9537
Miao Xie6c255e62014-03-06 13:55:01 +08009538 ret = 0;
Miao Xieeb73c1b2013-05-15 07:48:22 +00009539 atomic_inc(&fs_info->async_submit_draining);
9540 while (atomic_read(&fs_info->nr_async_submits) ||
9541 atomic_read(&fs_info->async_delalloc_pages)) {
9542 wait_event(fs_info->async_submit_wait,
9543 (atomic_read(&fs_info->nr_async_submits) == 0 &&
9544 atomic_read(&fs_info->async_delalloc_pages) == 0));
9545 }
9546 atomic_dec(&fs_info->async_submit_draining);
Miao Xie8ccf6f192012-10-25 09:28:04 +00009547out:
Miao Xie1eafa6c2013-01-22 10:49:00 +00009548 if (!list_empty_careful(&splice)) {
Miao Xieeb73c1b2013-05-15 07:48:22 +00009549 spin_lock(&fs_info->delalloc_root_lock);
9550 list_splice_tail(&splice, &fs_info->delalloc_roots);
9551 spin_unlock(&fs_info->delalloc_root_lock);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009552 }
Miao Xie573bfb72014-03-06 13:55:03 +08009553 mutex_unlock(&fs_info->delalloc_root_mutex);
Miao Xie8ccf6f192012-10-25 09:28:04 +00009554 return ret;
Chris Masonea8c2812008-08-04 23:17:27 -04009555}
9556
Chris Mason39279cc2007-06-12 06:35:45 -04009557static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
9558 const char *symname)
9559{
9560 struct btrfs_trans_handle *trans;
9561 struct btrfs_root *root = BTRFS_I(dir)->root;
9562 struct btrfs_path *path;
9563 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05009564 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04009565 int err;
9566 int drop_inode = 0;
9567 u64 objectid;
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05309568 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04009569 int name_len;
9570 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04009571 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04009572 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04009573 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04009574
Filipe David Borba Mananaf06becc2013-09-16 09:53:28 +01009575 name_len = strlen(symname);
Chris Mason39279cc2007-06-12 06:35:45 -04009576 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
9577 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05009578
Josef Bacik9ed74f22009-09-11 16:12:44 -04009579 /*
9580 * 2 items for inode item and ref
9581 * 2 items for dir items
9582 * 1 item for xattr if selinux is on
9583 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04009584 trans = btrfs_start_transaction(root, 5);
9585 if (IS_ERR(trans))
9586 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05009587
Li Zefan581bb052011-04-20 10:06:11 +08009588 err = btrfs_find_free_ino(root, &objectid);
9589 if (err)
9590 goto out_unlock;
9591
Josef Bacikaec74772008-07-24 12:12:38 -04009592 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08009593 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04009594 S_IFLNK|S_IRWXUGO, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04009595 if (IS_ERR(inode)) {
9596 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04009597 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04009598 }
Chris Mason39279cc2007-06-12 06:35:45 -04009599
Casey Schauflerad19db72011-12-15 10:09:07 -05009600 /*
9601 * If the active LSM wants to access the inode during
9602 * d_instantiate it needs these. Smack checks to see
9603 * if the filesystem supports xattrs by looking at the
9604 * ops vector.
9605 */
9606 inode->i_fop = &btrfs_file_operations;
9607 inode->i_op = &btrfs_file_inode_operations;
Chris Masonb0d5d102014-09-08 13:08:51 -07009608 inode->i_mapping->a_ops = &btrfs_aops;
Chris Masonb0d5d102014-09-08 13:08:51 -07009609 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
9610
9611 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
9612 if (err)
9613 goto out_unlock_inode;
Casey Schauflerad19db72011-12-15 10:09:07 -05009614
Josef Bacika1b075d2010-11-19 20:36:11 +00009615 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04009616 if (err)
Chris Masonb0d5d102014-09-08 13:08:51 -07009617 goto out_unlock_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04009618
9619 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07009620 if (!path) {
9621 err = -ENOMEM;
Chris Masonb0d5d102014-09-08 13:08:51 -07009622 goto out_unlock_inode;
Mark Fashehd8926bb2011-07-13 10:38:47 -07009623 }
Li Zefan33345d012011-04-20 10:31:50 +08009624 key.objectid = btrfs_ino(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04009625 key.offset = 0;
David Sterba962a2982014-06-04 18:41:45 +02009626 key.type = BTRFS_EXTENT_DATA_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -04009627 datasize = btrfs_file_extent_calc_inline_size(name_len);
9628 err = btrfs_insert_empty_item(trans, root, path, &key,
9629 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04009630 if (err) {
Julia Lawallb0839162011-05-14 07:10:51 +00009631 btrfs_free_path(path);
Chris Masonb0d5d102014-09-08 13:08:51 -07009632 goto out_unlock_inode;
Chris Mason54aa1f42007-06-22 14:16:25 -04009633 }
Chris Mason5f39d392007-10-15 16:14:19 -04009634 leaf = path->nodes[0];
9635 ei = btrfs_item_ptr(leaf, path->slots[0],
9636 struct btrfs_file_extent_item);
9637 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
9638 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04009639 BTRFS_FILE_EXTENT_INLINE);
Chris Masonc8b97812008-10-29 14:49:59 -04009640 btrfs_set_file_extent_encryption(leaf, ei, 0);
9641 btrfs_set_file_extent_compression(leaf, ei, 0);
9642 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
9643 btrfs_set_file_extent_ram_bytes(leaf, ei, name_len);
9644
Chris Mason39279cc2007-06-12 06:35:45 -04009645 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04009646 write_extent_buffer(leaf, symname, ptr, name_len);
9647 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04009648 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04009649
Chris Mason39279cc2007-06-12 06:35:45 -04009650 inode->i_op = &btrfs_symlink_inode_operations;
9651 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Yan Zhengd899e052008-10-30 14:25:28 -04009652 inode_set_bytes(inode, name_len);
Filipe David Borba Mananaf06becc2013-09-16 09:53:28 +01009653 btrfs_i_size_write(inode, name_len);
Chris Mason54aa1f42007-06-22 14:16:25 -04009654 err = btrfs_update_inode(trans, root, inode);
Chris Masonb0d5d102014-09-08 13:08:51 -07009655 if (err) {
Chris Mason54aa1f42007-06-22 14:16:25 -04009656 drop_inode = 1;
Chris Masonb0d5d102014-09-08 13:08:51 -07009657 goto out_unlock_inode;
9658 }
9659
9660 unlock_new_inode(inode);
9661 d_instantiate(dentry, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04009662
9663out_unlock:
Josef Bacik7ad85bb2012-01-12 19:10:12 -05009664 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04009665 if (drop_inode) {
9666 inode_dec_link_count(inode);
9667 iput(inode);
9668 }
Liu Bob53d3f52012-11-14 14:34:34 +00009669 btrfs_btree_balance_dirty(root);
Chris Mason39279cc2007-06-12 06:35:45 -04009670 return err;
Chris Masonb0d5d102014-09-08 13:08:51 -07009671
9672out_unlock_inode:
9673 drop_inode = 1;
9674 unlock_new_inode(inode);
9675 goto out_unlock;
Chris Mason39279cc2007-06-12 06:35:45 -04009676}
Chris Mason16432982008-04-10 10:23:21 -04009677
Josef Bacik0af3d002010-06-21 14:48:16 -04009678static int __btrfs_prealloc_file_range(struct inode *inode, int mode,
9679 u64 start, u64 num_bytes, u64 min_size,
9680 loff_t actual_len, u64 *alloc_hint,
9681 struct btrfs_trans_handle *trans)
Yan Zhengd899e052008-10-30 14:25:28 -04009682{
Josef Bacik5dc562c2012-08-17 13:14:17 -04009683 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
9684 struct extent_map *em;
Yan Zhengd899e052008-10-30 14:25:28 -04009685 struct btrfs_root *root = BTRFS_I(inode)->root;
9686 struct btrfs_key ins;
Yan Zhengd899e052008-10-30 14:25:28 -04009687 u64 cur_offset = start;
Josef Bacik55a61d12010-11-22 18:50:32 +00009688 u64 i_size;
Chris Mason154ea282013-03-05 11:11:26 -05009689 u64 cur_bytes;
Josef Bacik0b670dc2015-09-23 17:11:16 -04009690 u64 last_alloc = (u64)-1;
Yan Zhengd899e052008-10-30 14:25:28 -04009691 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04009692 bool own_trans = true;
Yan Zhengd899e052008-10-30 14:25:28 -04009693
Josef Bacik0af3d002010-06-21 14:48:16 -04009694 if (trans)
9695 own_trans = false;
Yan Zhengd899e052008-10-30 14:25:28 -04009696 while (num_bytes > 0) {
Josef Bacik0af3d002010-06-21 14:48:16 -04009697 if (own_trans) {
9698 trans = btrfs_start_transaction(root, 3);
9699 if (IS_ERR(trans)) {
9700 ret = PTR_ERR(trans);
9701 break;
9702 }
Yan Zhengd899e052008-10-30 14:25:28 -04009703 }
Yan, Zheng5a303d52009-11-12 09:34:52 +00009704
Chris Mason154ea282013-03-05 11:11:26 -05009705 cur_bytes = min(num_bytes, 256ULL * 1024 * 1024);
9706 cur_bytes = max(cur_bytes, min_size);
Josef Bacik0b670dc2015-09-23 17:11:16 -04009707 /*
9708 * If we are severely fragmented we could end up with really
9709 * small allocations, so if the allocator is returning small
9710 * chunks lets make its job easier by only searching for those
9711 * sized chunks.
9712 */
9713 cur_bytes = min(cur_bytes, last_alloc);
Josef Bacik00361582013-08-14 14:02:47 -04009714 ret = btrfs_reserve_extent(root, cur_bytes, min_size, 0,
Miao Xiee570fd22014-06-19 10:42:50 +08009715 *alloc_hint, &ins, 1, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +00009716 if (ret) {
Josef Bacik0af3d002010-06-21 14:48:16 -04009717 if (own_trans)
9718 btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04009719 break;
Yan, Zheng5a303d52009-11-12 09:34:52 +00009720 }
9721
Josef Bacik0b670dc2015-09-23 17:11:16 -04009722 last_alloc = ins.offset;
Yan Zhengd899e052008-10-30 14:25:28 -04009723 ret = insert_reserved_file_extent(trans, inode,
9724 cur_offset, ins.objectid,
9725 ins.offset, ins.offset,
Yan, Zheng920bbbf2009-11-12 09:34:08 +00009726 ins.offset, 0, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04009727 BTRFS_FILE_EXTENT_PREALLOC);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009728 if (ret) {
Josef Bacik857cc2f2013-10-07 15:21:08 -04009729 btrfs_free_reserved_extent(root, ins.objectid,
Miao Xiee570fd22014-06-19 10:42:50 +08009730 ins.offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009731 btrfs_abort_transaction(trans, root, ret);
9732 if (own_trans)
9733 btrfs_end_transaction(trans, root);
9734 break;
9735 }
Dongsheng Yang31193212014-12-12 16:44:35 +08009736
Chris Masona1ed8352009-09-11 12:27:37 -04009737 btrfs_drop_extent_cache(inode, cur_offset,
9738 cur_offset + ins.offset -1, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +00009739
Josef Bacik5dc562c2012-08-17 13:14:17 -04009740 em = alloc_extent_map();
9741 if (!em) {
9742 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
9743 &BTRFS_I(inode)->runtime_flags);
9744 goto next;
9745 }
9746
9747 em->start = cur_offset;
9748 em->orig_start = cur_offset;
9749 em->len = ins.offset;
9750 em->block_start = ins.objectid;
9751 em->block_len = ins.offset;
Josef Bacikb4939682012-12-03 10:31:19 -05009752 em->orig_block_len = ins.offset;
Josef Bacikcc95bef2013-04-04 14:31:27 -04009753 em->ram_bytes = ins.offset;
Josef Bacik5dc562c2012-08-17 13:14:17 -04009754 em->bdev = root->fs_info->fs_devices->latest_bdev;
9755 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
9756 em->generation = trans->transid;
9757
9758 while (1) {
9759 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04009760 ret = add_extent_mapping(em_tree, em, 1);
Josef Bacik5dc562c2012-08-17 13:14:17 -04009761 write_unlock(&em_tree->lock);
9762 if (ret != -EEXIST)
9763 break;
9764 btrfs_drop_extent_cache(inode, cur_offset,
9765 cur_offset + ins.offset - 1,
9766 0);
9767 }
9768 free_extent_map(em);
9769next:
Yan Zhengd899e052008-10-30 14:25:28 -04009770 num_bytes -= ins.offset;
9771 cur_offset += ins.offset;
Yan, Zhengefa56462010-05-16 10:49:59 -04009772 *alloc_hint = ins.objectid + ins.offset;
Yan, Zheng5a303d52009-11-12 09:34:52 +00009773
Josef Bacik0c4d2d92012-04-05 15:03:02 -04009774 inode_inc_iversion(inode);
Yan Zhengd899e052008-10-30 14:25:28 -04009775 inode->i_ctime = CURRENT_TIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +02009776 BTRFS_I(inode)->flags |= BTRFS_INODE_PREALLOC;
Yan Zhengd899e052008-10-30 14:25:28 -04009777 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
Yan, Zhengefa56462010-05-16 10:49:59 -04009778 (actual_len > inode->i_size) &&
9779 (cur_offset > inode->i_size)) {
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00009780 if (cur_offset > actual_len)
Josef Bacik55a61d12010-11-22 18:50:32 +00009781 i_size = actual_len;
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00009782 else
Josef Bacik55a61d12010-11-22 18:50:32 +00009783 i_size = cur_offset;
9784 i_size_write(inode, i_size);
9785 btrfs_ordered_update_i_size(inode, i_size, NULL);
Yan, Zheng5a303d52009-11-12 09:34:52 +00009786 }
9787
Yan Zhengd899e052008-10-30 14:25:28 -04009788 ret = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009789
9790 if (ret) {
9791 btrfs_abort_transaction(trans, root, ret);
9792 if (own_trans)
9793 btrfs_end_transaction(trans, root);
9794 break;
9795 }
Yan Zhengd899e052008-10-30 14:25:28 -04009796
Josef Bacik0af3d002010-06-21 14:48:16 -04009797 if (own_trans)
9798 btrfs_end_transaction(trans, root);
Yan, Zheng5a303d52009-11-12 09:34:52 +00009799 }
Yan Zhengd899e052008-10-30 14:25:28 -04009800 return ret;
9801}
9802
Josef Bacik0af3d002010-06-21 14:48:16 -04009803int btrfs_prealloc_file_range(struct inode *inode, int mode,
9804 u64 start, u64 num_bytes, u64 min_size,
9805 loff_t actual_len, u64 *alloc_hint)
9806{
9807 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
9808 min_size, actual_len, alloc_hint,
9809 NULL);
9810}
9811
9812int btrfs_prealloc_file_range_trans(struct inode *inode,
9813 struct btrfs_trans_handle *trans, int mode,
9814 u64 start, u64 num_bytes, u64 min_size,
9815 loff_t actual_len, u64 *alloc_hint)
9816{
9817 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
9818 min_size, actual_len, alloc_hint, trans);
9819}
9820
Chris Masone6dcd2d2008-07-17 12:53:50 -04009821static int btrfs_set_page_dirty(struct page *page)
9822{
Chris Masone6dcd2d2008-07-17 12:53:50 -04009823 return __set_page_dirty_nobuffers(page);
9824}
9825
Al Viro10556cb22011-06-20 19:28:19 -04009826static int btrfs_permission(struct inode *inode, int mask)
Yanfdebe2b2008-01-14 13:26:08 -05009827{
Li Zefanb83cc962010-12-20 16:04:08 +08009828 struct btrfs_root *root = BTRFS_I(inode)->root;
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +00009829 umode_t mode = inode->i_mode;
Li Zefanb83cc962010-12-20 16:04:08 +08009830
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +00009831 if (mask & MAY_WRITE &&
9832 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode))) {
9833 if (btrfs_root_readonly(root))
9834 return -EROFS;
9835 if (BTRFS_I(inode)->flags & BTRFS_INODE_READONLY)
9836 return -EACCES;
9837 }
Al Viro2830ba72011-06-20 19:16:29 -04009838 return generic_permission(inode, mask);
Yanfdebe2b2008-01-14 13:26:08 -05009839}
Chris Mason39279cc2007-06-12 06:35:45 -04009840
Filipe Mananaef3b9af2014-04-27 20:40:45 +01009841static int btrfs_tmpfile(struct inode *dir, struct dentry *dentry, umode_t mode)
9842{
9843 struct btrfs_trans_handle *trans;
9844 struct btrfs_root *root = BTRFS_I(dir)->root;
9845 struct inode *inode = NULL;
9846 u64 objectid;
9847 u64 index;
9848 int ret = 0;
9849
9850 /*
9851 * 5 units required for adding orphan entry
9852 */
9853 trans = btrfs_start_transaction(root, 5);
9854 if (IS_ERR(trans))
9855 return PTR_ERR(trans);
9856
9857 ret = btrfs_find_free_ino(root, &objectid);
9858 if (ret)
9859 goto out;
9860
9861 inode = btrfs_new_inode(trans, root, dir, NULL, 0,
9862 btrfs_ino(dir), objectid, mode, &index);
9863 if (IS_ERR(inode)) {
9864 ret = PTR_ERR(inode);
9865 inode = NULL;
9866 goto out;
9867 }
9868
Filipe Mananaef3b9af2014-04-27 20:40:45 +01009869 inode->i_fop = &btrfs_file_operations;
9870 inode->i_op = &btrfs_file_inode_operations;
9871
9872 inode->i_mapping->a_ops = &btrfs_aops;
Filipe Mananaef3b9af2014-04-27 20:40:45 +01009873 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
9874
Chris Masonb0d5d102014-09-08 13:08:51 -07009875 ret = btrfs_init_inode_security(trans, inode, dir, NULL);
9876 if (ret)
9877 goto out_inode;
9878
9879 ret = btrfs_update_inode(trans, root, inode);
9880 if (ret)
9881 goto out_inode;
Filipe Mananaef3b9af2014-04-27 20:40:45 +01009882 ret = btrfs_orphan_add(trans, inode);
9883 if (ret)
Chris Masonb0d5d102014-09-08 13:08:51 -07009884 goto out_inode;
Filipe Mananaef3b9af2014-04-27 20:40:45 +01009885
Filipe Manana5762b5c2014-08-01 00:10:32 +01009886 /*
9887 * We set number of links to 0 in btrfs_new_inode(), and here we set
9888 * it to 1 because d_tmpfile() will issue a warning if the count is 0,
9889 * through:
9890 *
9891 * d_tmpfile() -> inode_dec_link_count() -> drop_nlink()
9892 */
9893 set_nlink(inode, 1);
Chris Masonb0d5d102014-09-08 13:08:51 -07009894 unlock_new_inode(inode);
Filipe Mananaef3b9af2014-04-27 20:40:45 +01009895 d_tmpfile(dentry, inode);
9896 mark_inode_dirty(inode);
9897
9898out:
9899 btrfs_end_transaction(trans, root);
9900 if (ret)
9901 iput(inode);
9902 btrfs_balance_delayed_items(root);
9903 btrfs_btree_balance_dirty(root);
Filipe Mananaef3b9af2014-04-27 20:40:45 +01009904 return ret;
Chris Masonb0d5d102014-09-08 13:08:51 -07009905
9906out_inode:
9907 unlock_new_inode(inode);
9908 goto out;
9909
Filipe Mananaef3b9af2014-04-27 20:40:45 +01009910}
9911
Filipe Mananab38ef712014-11-13 17:01:45 +00009912/* Inspired by filemap_check_errors() */
9913int btrfs_inode_check_errors(struct inode *inode)
9914{
9915 int ret = 0;
9916
9917 if (test_bit(AS_ENOSPC, &inode->i_mapping->flags) &&
9918 test_and_clear_bit(AS_ENOSPC, &inode->i_mapping->flags))
9919 ret = -ENOSPC;
9920 if (test_bit(AS_EIO, &inode->i_mapping->flags) &&
9921 test_and_clear_bit(AS_EIO, &inode->i_mapping->flags))
9922 ret = -EIO;
9923
9924 return ret;
9925}
9926
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07009927static const struct inode_operations btrfs_dir_inode_operations = {
Chris Mason3394e162008-11-17 20:42:26 -05009928 .getattr = btrfs_getattr,
Chris Mason39279cc2007-06-12 06:35:45 -04009929 .lookup = btrfs_lookup,
9930 .create = btrfs_create,
9931 .unlink = btrfs_unlink,
9932 .link = btrfs_link,
9933 .mkdir = btrfs_mkdir,
9934 .rmdir = btrfs_rmdir,
Miklos Szeredi80ace852014-07-23 15:15:32 +02009935 .rename2 = btrfs_rename2,
Chris Mason39279cc2007-06-12 06:35:45 -04009936 .symlink = btrfs_symlink,
9937 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04009938 .mknod = btrfs_mknod,
Christoph Hellwig95819c02008-08-28 06:21:17 -04009939 .setxattr = btrfs_setxattr,
9940 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05009941 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04009942 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05009943 .permission = btrfs_permission,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02009944 .get_acl = btrfs_get_acl,
Christoph Hellwig996a7102013-12-20 05:16:43 -08009945 .set_acl = btrfs_set_acl,
Guangyu Sun93fd63c2013-09-16 10:42:03 -07009946 .update_time = btrfs_update_time,
Filipe Mananaef3b9af2014-04-27 20:40:45 +01009947 .tmpfile = btrfs_tmpfile,
Chris Mason39279cc2007-06-12 06:35:45 -04009948};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07009949static const struct inode_operations btrfs_dir_ro_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04009950 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -05009951 .permission = btrfs_permission,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02009952 .get_acl = btrfs_get_acl,
Christoph Hellwig996a7102013-12-20 05:16:43 -08009953 .set_acl = btrfs_set_acl,
Guangyu Sun93fd63c2013-09-16 10:42:03 -07009954 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -04009955};
Yan, Zheng76dda932009-09-21 16:00:26 -04009956
Alexey Dobriyan828c0952009-10-01 15:43:56 -07009957static const struct file_operations btrfs_dir_file_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04009958 .llseek = generic_file_llseek,
9959 .read = generic_read_dir,
Al Viro9cdda8d2013-05-22 16:48:09 -04009960 .iterate = btrfs_real_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04009961 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04009962#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04009963 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04009964#endif
Sage Weil6bf13c02008-06-10 10:07:39 -04009965 .release = btrfs_release_file,
Chris Masone02119d2008-09-05 16:13:11 -04009966 .fsync = btrfs_sync_file,
Chris Mason39279cc2007-06-12 06:35:45 -04009967};
9968
Chris Masond1310b22008-01-24 16:13:08 -05009969static struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -04009970 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -05009971 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04009972 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04009973 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Masone6dcd2d2008-07-17 12:53:50 -04009974 .writepage_end_io_hook = btrfs_writepage_end_io_hook,
Chris Mason247e7432008-07-17 12:53:51 -04009975 .writepage_start_hook = btrfs_writepage_start_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -05009976 .set_bit_hook = btrfs_set_bit_hook,
9977 .clear_bit_hook = btrfs_clear_bit_hook,
Josef Bacik9ed74f22009-09-11 16:12:44 -04009978 .merge_extent_hook = btrfs_merge_extent_hook,
9979 .split_extent_hook = btrfs_split_extent_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04009980};
9981
Chris Mason35054392009-01-21 13:11:13 -05009982/*
9983 * btrfs doesn't support the bmap operation because swapfiles
9984 * use bmap to make a mapping of extents in the file. They assume
9985 * these extents won't change over the life of the file and they
9986 * use the bmap result to do IO directly to the drive.
9987 *
9988 * the btrfs bmap call would return logical addresses that aren't
9989 * suitable for IO and they also will change frequently as COW
9990 * operations happen. So, swapfile + btrfs == corruption.
9991 *
9992 * For now we're avoiding this by dropping bmap.
9993 */
Alexey Dobriyan7f094102009-09-21 17:01:10 -07009994static const struct address_space_operations btrfs_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04009995 .readpage = btrfs_readpage,
9996 .writepage = btrfs_writepage,
Chris Masonb293f02e2007-11-01 19:45:34 -04009997 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -05009998 .readpages = btrfs_readpages,
Chris Mason16432982008-04-10 10:23:21 -04009999 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -040010000 .invalidatepage = btrfs_invalidatepage,
10001 .releasepage = btrfs_releasepage,
Chris Masone6dcd2d2008-07-17 12:53:50 -040010002 .set_page_dirty = btrfs_set_page_dirty,
Andi Kleen465fdd92009-09-16 11:50:18 +020010003 .error_remove_page = generic_error_remove_page,
Chris Mason39279cc2007-06-12 06:35:45 -040010004};
10005
Alexey Dobriyan7f094102009-09-21 17:01:10 -070010006static const struct address_space_operations btrfs_symlink_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -040010007 .readpage = btrfs_readpage,
10008 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -040010009 .invalidatepage = btrfs_invalidatepage,
10010 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -040010011};
10012
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010013static const struct inode_operations btrfs_file_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -040010014 .getattr = btrfs_getattr,
10015 .setattr = btrfs_setattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -040010016 .setxattr = btrfs_setxattr,
10017 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -050010018 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -040010019 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -050010020 .permission = btrfs_permission,
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -050010021 .fiemap = btrfs_fiemap,
Christoph Hellwig4e34e712011-07-23 17:37:31 +020010022 .get_acl = btrfs_get_acl,
Christoph Hellwig996a7102013-12-20 05:16:43 -080010023 .set_acl = btrfs_set_acl,
Josef Bacike41f9412012-03-26 09:46:47 -040010024 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -040010025};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010026static const struct inode_operations btrfs_special_inode_operations = {
Josef Bacik618e21d2007-07-11 10:18:17 -040010027 .getattr = btrfs_getattr,
10028 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -050010029 .permission = btrfs_permission,
Christoph Hellwig95819c02008-08-28 06:21:17 -040010030 .setxattr = btrfs_setxattr,
10031 .getxattr = btrfs_getxattr,
Josef Bacik33268ea2008-07-24 12:16:36 -040010032 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -040010033 .removexattr = btrfs_removexattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +020010034 .get_acl = btrfs_get_acl,
Christoph Hellwig996a7102013-12-20 05:16:43 -080010035 .set_acl = btrfs_set_acl,
Josef Bacike41f9412012-03-26 09:46:47 -040010036 .update_time = btrfs_update_time,
Josef Bacik618e21d2007-07-11 10:18:17 -040010037};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010038static const struct inode_operations btrfs_symlink_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -040010039 .readlink = generic_readlink,
10040 .follow_link = page_follow_link_light,
10041 .put_link = page_put_link,
Li Zefanf2095612010-11-19 02:05:24 +000010042 .getattr = btrfs_getattr,
Josef Bacik22c44fe2011-11-30 10:45:38 -050010043 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -050010044 .permission = btrfs_permission,
Jim Owens0279b4c2009-02-04 09:29:13 -050010045 .setxattr = btrfs_setxattr,
10046 .getxattr = btrfs_getxattr,
10047 .listxattr = btrfs_listxattr,
10048 .removexattr = btrfs_removexattr,
Josef Bacike41f9412012-03-26 09:46:47 -040010049 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -040010050};
Yan, Zheng76dda932009-09-21 16:00:26 -040010051
Alexey Dobriyan82d339d2009-10-09 09:54:36 -040010052const struct dentry_operations btrfs_dentry_operations = {
Yan, Zheng76dda932009-09-21 16:00:26 -040010053 .d_delete = btrfs_dentry_delete,
Josef Bacikb4aff1f2011-06-28 16:18:59 -040010054 .d_release = btrfs_dentry_release,
Yan, Zheng76dda932009-09-21 16:00:26 -040010055};