blob: 2d14acbdae47da46ffa006e4c97369e922e0130b [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>
Kent Overstreeta27bb332013-05-07 16:19:08 -070035#include <linux/aio.h>
Chris Mason9ebefb182007-06-15 13:50:00 -040036#include <linux/bit_spinlock.h>
Josef Bacik5103e942007-11-16 11:45:54 -050037#include <linux/xattr.h>
Josef Bacik33268ea2008-07-24 12:16:36 -040038#include <linux/posix_acl.h>
Yan Zhengd899e052008-10-30 14:25:28 -040039#include <linux/falloc.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090040#include <linux/slab.h>
David Sterba7a36dde2011-05-06 15:33:15 +020041#include <linux/ratelimit.h>
Josef Bacik22c44fe2011-11-30 10:45:38 -050042#include <linux/mount.h>
Filipe Brandenburger55e301f2013-01-29 06:04:50 +000043#include <linux/btrfs.h>
David Woodhouse53b381b2013-01-29 18:40:14 -050044#include <linux/blkdev.h>
Josef Bacikf23b5a52013-06-19 10:16:26 -040045#include <linux/posix_acl_xattr.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"
Chris Mason39279cc2007-06-12 06:35:45 -040062
63struct btrfs_iget_args {
Chris Mason90d3e592014-01-09 17:28:00 -080064 struct btrfs_key *location;
Chris Mason39279cc2007-06-12 06:35:45 -040065 struct btrfs_root *root;
66};
67
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070068static const struct inode_operations btrfs_dir_inode_operations;
69static const struct inode_operations btrfs_symlink_inode_operations;
70static const struct inode_operations btrfs_dir_ro_inode_operations;
71static const struct inode_operations btrfs_special_inode_operations;
72static const struct inode_operations btrfs_file_inode_operations;
Alexey Dobriyan7f094102009-09-21 17:01:10 -070073static const struct address_space_operations btrfs_aops;
74static const struct address_space_operations btrfs_symlink_aops;
Alexey Dobriyan828c0952009-10-01 15:43:56 -070075static const struct file_operations btrfs_dir_file_operations;
Chris Masond1310b22008-01-24 16:13:08 -050076static struct extent_io_ops btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -040077
78static struct kmem_cache *btrfs_inode_cachep;
Miao Xie8ccf6f192012-10-25 09:28:04 +000079static struct kmem_cache *btrfs_delalloc_work_cachep;
Chris Mason39279cc2007-06-12 06:35:45 -040080struct kmem_cache *btrfs_trans_handle_cachep;
81struct kmem_cache *btrfs_transaction_cachep;
Chris Mason39279cc2007-06-12 06:35:45 -040082struct kmem_cache *btrfs_path_cachep;
Josef Bacikdc89e982011-01-28 17:05:48 -050083struct kmem_cache *btrfs_free_space_cachep;
Chris Mason39279cc2007-06-12 06:35:45 -040084
85#define S_SHIFT 12
86static unsigned char btrfs_type_by_mode[S_IFMT >> S_SHIFT] = {
87 [S_IFREG >> S_SHIFT] = BTRFS_FT_REG_FILE,
88 [S_IFDIR >> S_SHIFT] = BTRFS_FT_DIR,
89 [S_IFCHR >> S_SHIFT] = BTRFS_FT_CHRDEV,
90 [S_IFBLK >> S_SHIFT] = BTRFS_FT_BLKDEV,
91 [S_IFIFO >> S_SHIFT] = BTRFS_FT_FIFO,
92 [S_IFSOCK >> S_SHIFT] = BTRFS_FT_SOCK,
93 [S_IFLNK >> S_SHIFT] = BTRFS_FT_SYMLINK,
94};
95
Eric Sandeen3972f262013-01-12 02:57:22 +000096static int btrfs_setsize(struct inode *inode, struct iattr *attr);
Josef Bacika41ad392011-01-31 15:30:16 -050097static int btrfs_truncate(struct inode *inode);
Josef Bacik5fd02042012-05-02 14:00:54 -040098static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent);
Chris Mason771ed682008-11-06 22:02:51 -050099static noinline int cow_file_range(struct inode *inode,
100 struct page *locked_page,
101 u64 start, u64 end, int *page_started,
102 unsigned long *nr_written, int unlock);
Josef Bacik70c8a912012-10-11 16:54:30 -0400103static struct extent_map *create_pinned_em(struct inode *inode, u64 start,
104 u64 len, u64 orig_start,
105 u64 block_start, u64 block_len,
Josef Bacikcc95bef2013-04-04 14:31:27 -0400106 u64 orig_block_len, u64 ram_bytes,
107 int type);
Josef Bacik7b128762008-07-24 12:17:14 -0400108
Eric Sandeen48a3b632013-04-25 20:41:01 +0000109static int btrfs_dirty_inode(struct inode *inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400110
Yan, Zhengf34f57a2009-11-12 09:35:27 +0000111static int btrfs_init_inode_security(struct btrfs_trans_handle *trans,
Eric Paris2a7dba32011-02-01 11:05:39 -0500112 struct inode *inode, struct inode *dir,
113 const struct qstr *qstr)
Jim Owens0279b4c2009-02-04 09:29:13 -0500114{
115 int err;
116
Yan, Zhengf34f57a2009-11-12 09:35:27 +0000117 err = btrfs_init_acl(trans, inode, dir);
Jim Owens0279b4c2009-02-04 09:29:13 -0500118 if (!err)
Eric Paris2a7dba32011-02-01 11:05:39 -0500119 err = btrfs_xattr_security_init(trans, inode, dir, qstr);
Jim Owens0279b4c2009-02-04 09:29:13 -0500120 return err;
121}
122
Chris Masond352ac62008-09-29 15:18:18 -0400123/*
Chris Masonc8b97812008-10-29 14:49:59 -0400124 * this does all the hard work for inserting an inline extent into
125 * the btree. The caller should have done a btrfs_drop_extents so that
126 * no overlapping inline items exist in the btree
127 */
Chris Mason40f76582014-05-21 13:35:51 -0700128static int insert_inline_extent(struct btrfs_trans_handle *trans,
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000129 struct btrfs_path *path, int extent_inserted,
Chris Masonc8b97812008-10-29 14:49:59 -0400130 struct btrfs_root *root, struct inode *inode,
131 u64 start, size_t size, size_t compressed_size,
Li Zefanfe3f5662011-03-28 08:30:38 +0000132 int compress_type,
Chris Masonc8b97812008-10-29 14:49:59 -0400133 struct page **compressed_pages)
134{
Chris Masonc8b97812008-10-29 14:49:59 -0400135 struct extent_buffer *leaf;
136 struct page *page = NULL;
137 char *kaddr;
138 unsigned long ptr;
139 struct btrfs_file_extent_item *ei;
140 int err = 0;
141 int ret;
142 size_t cur_size = size;
Chris Masonc8b97812008-10-29 14:49:59 -0400143 unsigned long offset;
Chris Masonc8b97812008-10-29 14:49:59 -0400144
Li Zefanfe3f5662011-03-28 08:30:38 +0000145 if (compressed_size && compressed_pages)
Chris Masonc8b97812008-10-29 14:49:59 -0400146 cur_size = compressed_size;
Chris Masonc8b97812008-10-29 14:49:59 -0400147
Chris Masonc8b97812008-10-29 14:49:59 -0400148 inode_add_bytes(inode, size);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000149
150 if (!extent_inserted) {
151 struct btrfs_key key;
152 size_t datasize;
153
154 key.objectid = btrfs_ino(inode);
155 key.offset = start;
David Sterba962a2982014-06-04 18:41:45 +0200156 key.type = BTRFS_EXTENT_DATA_KEY;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000157
158 datasize = btrfs_file_extent_calc_inline_size(cur_size);
159 path->leave_spinning = 1;
160 ret = btrfs_insert_empty_item(trans, root, path, &key,
161 datasize);
162 if (ret) {
163 err = ret;
164 goto fail;
165 }
Chris Masonc8b97812008-10-29 14:49:59 -0400166 }
167 leaf = path->nodes[0];
168 ei = btrfs_item_ptr(leaf, path->slots[0],
169 struct btrfs_file_extent_item);
170 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
171 btrfs_set_file_extent_type(leaf, ei, BTRFS_FILE_EXTENT_INLINE);
172 btrfs_set_file_extent_encryption(leaf, ei, 0);
173 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
174 btrfs_set_file_extent_ram_bytes(leaf, ei, size);
175 ptr = btrfs_file_extent_inline_start(ei);
176
Li Zefan261507a02010-12-17 14:21:50 +0800177 if (compress_type != BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -0400178 struct page *cpage;
179 int i = 0;
Chris Masond3977122009-01-05 21:25:51 -0500180 while (compressed_size > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -0400181 cpage = compressed_pages[i];
Chris Mason5b050f02008-11-11 09:34:41 -0500182 cur_size = min_t(unsigned long, compressed_size,
Chris Masonc8b97812008-10-29 14:49:59 -0400183 PAGE_CACHE_SIZE);
184
Cong Wang7ac687d2011-11-25 23:14:28 +0800185 kaddr = kmap_atomic(cpage);
Chris Masonc8b97812008-10-29 14:49:59 -0400186 write_extent_buffer(leaf, kaddr, ptr, cur_size);
Cong Wang7ac687d2011-11-25 23:14:28 +0800187 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -0400188
189 i++;
190 ptr += cur_size;
191 compressed_size -= cur_size;
192 }
193 btrfs_set_file_extent_compression(leaf, ei,
Li Zefan261507a02010-12-17 14:21:50 +0800194 compress_type);
Chris Masonc8b97812008-10-29 14:49:59 -0400195 } else {
196 page = find_get_page(inode->i_mapping,
197 start >> PAGE_CACHE_SHIFT);
198 btrfs_set_file_extent_compression(leaf, ei, 0);
Cong Wang7ac687d2011-11-25 23:14:28 +0800199 kaddr = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -0400200 offset = start & (PAGE_CACHE_SIZE - 1);
201 write_extent_buffer(leaf, kaddr + offset, ptr, size);
Cong Wang7ac687d2011-11-25 23:14:28 +0800202 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -0400203 page_cache_release(page);
204 }
205 btrfs_mark_buffer_dirty(leaf);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000206 btrfs_release_path(path);
Chris Masonc8b97812008-10-29 14:49:59 -0400207
Yan, Zhengc2167752009-11-12 09:34:21 +0000208 /*
209 * we're an inline extent, so nobody can
210 * extend the file past i_size without locking
211 * a page we already have locked.
212 *
213 * We must do any isize and inode updates
214 * before we unlock the pages. Otherwise we
215 * could end up racing with unlink.
216 */
Chris Masonc8b97812008-10-29 14:49:59 -0400217 BTRFS_I(inode)->disk_i_size = inode->i_size;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100218 ret = btrfs_update_inode(trans, root, inode);
Yan, Zhengc2167752009-11-12 09:34:21 +0000219
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100220 return ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400221fail:
Chris Masonc8b97812008-10-29 14:49:59 -0400222 return err;
223}
224
225
226/*
227 * conditionally insert an inline extent into the file. This
228 * does the checks required to make sure the data is small enough
229 * to fit as an inline extent.
230 */
Josef Bacik00361582013-08-14 14:02:47 -0400231static noinline int cow_file_range_inline(struct btrfs_root *root,
232 struct inode *inode, u64 start,
233 u64 end, size_t compressed_size,
234 int compress_type,
235 struct page **compressed_pages)
Chris Masonc8b97812008-10-29 14:49:59 -0400236{
Josef Bacik00361582013-08-14 14:02:47 -0400237 struct btrfs_trans_handle *trans;
Chris Masonc8b97812008-10-29 14:49:59 -0400238 u64 isize = i_size_read(inode);
239 u64 actual_end = min(end + 1, isize);
240 u64 inline_len = actual_end - start;
Qu Wenruofda28322013-02-26 08:10:22 +0000241 u64 aligned_end = ALIGN(end, root->sectorsize);
Chris Masonc8b97812008-10-29 14:49:59 -0400242 u64 data_len = inline_len;
243 int ret;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000244 struct btrfs_path *path;
245 int extent_inserted = 0;
246 u32 extent_item_size;
Chris Masonc8b97812008-10-29 14:49:59 -0400247
248 if (compressed_size)
249 data_len = compressed_size;
250
251 if (start > 0 ||
Wang Shilong354877b2014-07-17 11:44:11 +0800252 actual_end > PAGE_CACHE_SIZE ||
253 data_len > BTRFS_MAX_INLINE_DATA_SIZE(root) ||
Chris Masonc8b97812008-10-29 14:49:59 -0400254 (!compressed_size &&
255 (actual_end & (root->sectorsize - 1)) == 0) ||
256 end + 1 < isize ||
257 data_len > root->fs_info->max_inline) {
258 return 1;
259 }
260
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000261 path = btrfs_alloc_path();
262 if (!path)
263 return -ENOMEM;
264
Josef Bacik00361582013-08-14 14:02:47 -0400265 trans = btrfs_join_transaction(root);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000266 if (IS_ERR(trans)) {
267 btrfs_free_path(path);
Josef Bacik00361582013-08-14 14:02:47 -0400268 return PTR_ERR(trans);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000269 }
Josef Bacik00361582013-08-14 14:02:47 -0400270 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
271
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000272 if (compressed_size && compressed_pages)
273 extent_item_size = btrfs_file_extent_calc_inline_size(
274 compressed_size);
275 else
276 extent_item_size = btrfs_file_extent_calc_inline_size(
277 inline_len);
278
279 ret = __btrfs_drop_extents(trans, root, inode, path,
280 start, aligned_end, NULL,
281 1, 1, extent_item_size, &extent_inserted);
Josef Bacik00361582013-08-14 14:02:47 -0400282 if (ret) {
283 btrfs_abort_transaction(trans, root, ret);
284 goto out;
285 }
Chris Masonc8b97812008-10-29 14:49:59 -0400286
287 if (isize > actual_end)
288 inline_len = min_t(u64, isize, actual_end);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000289 ret = insert_inline_extent(trans, path, extent_inserted,
290 root, inode, start,
Chris Masonc8b97812008-10-29 14:49:59 -0400291 inline_len, compressed_size,
Li Zefanfe3f5662011-03-28 08:30:38 +0000292 compress_type, compressed_pages);
Josef Bacik2adcac12012-05-23 16:10:14 -0400293 if (ret && ret != -ENOSPC) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100294 btrfs_abort_transaction(trans, root, ret);
Josef Bacik00361582013-08-14 14:02:47 -0400295 goto out;
Josef Bacik2adcac12012-05-23 16:10:14 -0400296 } else if (ret == -ENOSPC) {
Josef Bacik00361582013-08-14 14:02:47 -0400297 ret = 1;
298 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100299 }
Josef Bacik2adcac12012-05-23 16:10:14 -0400300
Josef Bacikbdc20e62013-02-28 13:23:38 -0500301 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400302 btrfs_delalloc_release_metadata(inode, end + 1 - start);
Chris Masona1ed8352009-09-11 12:27:37 -0400303 btrfs_drop_extent_cache(inode, start, aligned_end - 1, 0);
Josef Bacik00361582013-08-14 14:02:47 -0400304out:
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000305 btrfs_free_path(path);
Josef Bacik00361582013-08-14 14:02:47 -0400306 btrfs_end_transaction(trans, root);
307 return ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400308}
309
Chris Mason771ed682008-11-06 22:02:51 -0500310struct async_extent {
311 u64 start;
312 u64 ram_size;
313 u64 compressed_size;
314 struct page **pages;
315 unsigned long nr_pages;
Li Zefan261507a02010-12-17 14:21:50 +0800316 int compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500317 struct list_head list;
318};
319
320struct async_cow {
321 struct inode *inode;
322 struct btrfs_root *root;
323 struct page *locked_page;
324 u64 start;
325 u64 end;
326 struct list_head extents;
327 struct btrfs_work work;
328};
329
330static noinline int add_async_extent(struct async_cow *cow,
331 u64 start, u64 ram_size,
332 u64 compressed_size,
333 struct page **pages,
Li Zefan261507a02010-12-17 14:21:50 +0800334 unsigned long nr_pages,
335 int compress_type)
Chris Mason771ed682008-11-06 22:02:51 -0500336{
337 struct async_extent *async_extent;
338
339 async_extent = kmalloc(sizeof(*async_extent), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100340 BUG_ON(!async_extent); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -0500341 async_extent->start = start;
342 async_extent->ram_size = ram_size;
343 async_extent->compressed_size = compressed_size;
344 async_extent->pages = pages;
345 async_extent->nr_pages = nr_pages;
Li Zefan261507a02010-12-17 14:21:50 +0800346 async_extent->compress_type = compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500347 list_add_tail(&async_extent->list, &cow->extents);
348 return 0;
349}
350
Wang Shilongf79707b2014-07-17 11:44:09 +0800351static inline int inode_need_compress(struct inode *inode)
352{
353 struct btrfs_root *root = BTRFS_I(inode)->root;
354
355 /* force compress */
356 if (btrfs_test_opt(root, FORCE_COMPRESS))
357 return 1;
358 /* bad compression ratios */
359 if (BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS)
360 return 0;
361 if (btrfs_test_opt(root, COMPRESS) ||
362 BTRFS_I(inode)->flags & BTRFS_INODE_COMPRESS ||
363 BTRFS_I(inode)->force_compress)
364 return 1;
365 return 0;
366}
367
Chris Masonc8b97812008-10-29 14:49:59 -0400368/*
Chris Mason771ed682008-11-06 22:02:51 -0500369 * we create compressed extents in two phases. The first
370 * phase compresses a range of pages that have already been
371 * locked (both pages and state bits are locked).
Chris Masonc8b97812008-10-29 14:49:59 -0400372 *
Chris Mason771ed682008-11-06 22:02:51 -0500373 * This is done inside an ordered work queue, and the compression
374 * is spread across many cpus. The actual IO submission is step
375 * two, and the ordered work queue takes care of making sure that
376 * happens in the same order things were put onto the queue by
377 * writepages and friends.
Chris Masonc8b97812008-10-29 14:49:59 -0400378 *
Chris Mason771ed682008-11-06 22:02:51 -0500379 * If this code finds it can't get good compression, it puts an
380 * entry onto the work queue to write the uncompressed bytes. This
381 * makes sure that both compressed inodes and uncompressed inodes
Artem Bityutskiyb2570312012-07-25 18:12:06 +0300382 * are written in the same order that the flusher thread sent them
383 * down.
Chris Masond352ac62008-09-29 15:18:18 -0400384 */
Filipe Mananac44f6492014-10-09 21:15:44 +0100385static noinline void compress_file_range(struct inode *inode,
Chris Mason771ed682008-11-06 22:02:51 -0500386 struct page *locked_page,
387 u64 start, u64 end,
388 struct async_cow *async_cow,
389 int *num_added)
Chris Masonb888db22007-08-27 16:49:44 -0400390{
391 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masondb945352007-10-15 16:15:53 -0400392 u64 num_bytes;
Chris Masondb945352007-10-15 16:15:53 -0400393 u64 blocksize = root->sectorsize;
Chris Masonc8b97812008-10-29 14:49:59 -0400394 u64 actual_end;
Chris Mason42dc7ba2008-12-15 11:44:56 -0500395 u64 isize = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400396 int ret = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400397 struct page **pages = NULL;
398 unsigned long nr_pages;
399 unsigned long nr_pages_ret = 0;
400 unsigned long total_compressed = 0;
401 unsigned long total_in = 0;
402 unsigned long max_compressed = 128 * 1024;
Chris Mason771ed682008-11-06 22:02:51 -0500403 unsigned long max_uncompressed = 128 * 1024;
Chris Masonc8b97812008-10-29 14:49:59 -0400404 int i;
405 int will_compress;
Li Zefan261507a02010-12-17 14:21:50 +0800406 int compress_type = root->fs_info->compress_type;
Chris Mason4adaa612013-03-26 13:07:00 -0400407 int redirty = 0;
Chris Masonb888db22007-08-27 16:49:44 -0400408
Liu Bo4cb13e52012-03-29 09:57:45 -0400409 /* if this is a small write inside eof, kick off a defrag */
410 if ((end - start + 1) < 16 * 1024 &&
411 (start > 0 || end + 1 < BTRFS_I(inode)->disk_i_size))
Chris Mason4cb53002011-05-24 15:35:30 -0400412 btrfs_add_inode_defrag(NULL, inode);
413
Chris Mason42dc7ba2008-12-15 11:44:56 -0500414 actual_end = min_t(u64, isize, end + 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400415again:
416 will_compress = 0;
417 nr_pages = (end >> PAGE_CACHE_SHIFT) - (start >> PAGE_CACHE_SHIFT) + 1;
418 nr_pages = min(nr_pages, (128 * 1024UL) / PAGE_CACHE_SIZE);
419
Chris Masonf03d9301f2009-02-04 09:31:06 -0500420 /*
421 * we don't want to send crud past the end of i_size through
422 * compression, that's just a waste of CPU time. So, if the
423 * end of the file is before the start of our current
424 * requested range of bytes, we bail out to the uncompressed
425 * cleanup code that can deal with all of this.
426 *
427 * It isn't really the fastest way to fix things, but this is a
428 * very uncommon corner.
429 */
430 if (actual_end <= start)
431 goto cleanup_and_bail_uncompressed;
432
Chris Masonc8b97812008-10-29 14:49:59 -0400433 total_compressed = actual_end - start;
434
Shilong Wang4bcbb332014-10-07 18:44:35 -0400435 /*
436 * skip compression for a small file range(<=blocksize) that
437 * isn't an inline extent, since it dosen't save disk space at all.
438 */
439 if (total_compressed <= blocksize &&
440 (start > 0 || end + 1 < BTRFS_I(inode)->disk_i_size))
441 goto cleanup_and_bail_uncompressed;
442
Chris Masonc8b97812008-10-29 14:49:59 -0400443 /* we want to make sure that amount of ram required to uncompress
444 * an extent is reasonable, so we limit the total size in ram
Chris Mason771ed682008-11-06 22:02:51 -0500445 * of a compressed extent to 128k. This is a crucial number
446 * because it also controls how easily we can spread reads across
447 * cpus for decompression.
448 *
449 * We also want to make sure the amount of IO required to do
450 * a random read is reasonably small, so we limit the size of
451 * a compressed extent to 128k.
Chris Masonc8b97812008-10-29 14:49:59 -0400452 */
453 total_compressed = min(total_compressed, max_uncompressed);
Qu Wenruofda28322013-02-26 08:10:22 +0000454 num_bytes = ALIGN(end - start + 1, blocksize);
Chris Masonbe20aa92007-12-17 20:14:01 -0500455 num_bytes = max(blocksize, num_bytes);
Chris Masonc8b97812008-10-29 14:49:59 -0400456 total_in = 0;
457 ret = 0;
Chris Masondb945352007-10-15 16:15:53 -0400458
Chris Mason771ed682008-11-06 22:02:51 -0500459 /*
460 * we do compression for mount -o compress and when the
461 * inode has not been flagged as nocompress. This flag can
462 * change at any time if we discover bad compression ratios.
Chris Masonc8b97812008-10-29 14:49:59 -0400463 */
Wang Shilongf79707b2014-07-17 11:44:09 +0800464 if (inode_need_compress(inode)) {
Chris Masonc8b97812008-10-29 14:49:59 -0400465 WARN_ON(pages);
Chris Masoncfbc2462008-10-30 13:22:14 -0400466 pages = kzalloc(sizeof(struct page *) * nr_pages, GFP_NOFS);
Li Zefan560f7d72011-09-08 10:22:01 +0800467 if (!pages) {
468 /* just bail out to the uncompressed code */
469 goto cont;
470 }
Chris Mason179e29e2007-11-01 11:28:41 -0400471
Li Zefan261507a02010-12-17 14:21:50 +0800472 if (BTRFS_I(inode)->force_compress)
473 compress_type = BTRFS_I(inode)->force_compress;
474
Chris Mason4adaa612013-03-26 13:07:00 -0400475 /*
476 * we need to call clear_page_dirty_for_io on each
477 * page in the range. Otherwise applications with the file
478 * mmap'd can wander in and change the page contents while
479 * we are compressing them.
480 *
481 * If the compression fails for any reason, we set the pages
482 * dirty again later on.
483 */
484 extent_range_clear_dirty_for_io(inode, start, end);
485 redirty = 1;
Li Zefan261507a02010-12-17 14:21:50 +0800486 ret = btrfs_compress_pages(compress_type,
487 inode->i_mapping, start,
488 total_compressed, pages,
489 nr_pages, &nr_pages_ret,
490 &total_in,
491 &total_compressed,
492 max_compressed);
Chris Masonc8b97812008-10-29 14:49:59 -0400493
494 if (!ret) {
495 unsigned long offset = total_compressed &
496 (PAGE_CACHE_SIZE - 1);
497 struct page *page = pages[nr_pages_ret - 1];
498 char *kaddr;
499
500 /* zero the tail end of the last page, we might be
501 * sending it down to disk
502 */
503 if (offset) {
Cong Wang7ac687d2011-11-25 23:14:28 +0800504 kaddr = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -0400505 memset(kaddr + offset, 0,
506 PAGE_CACHE_SIZE - offset);
Cong Wang7ac687d2011-11-25 23:14:28 +0800507 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -0400508 }
509 will_compress = 1;
510 }
511 }
Li Zefan560f7d72011-09-08 10:22:01 +0800512cont:
Chris Masonc8b97812008-10-29 14:49:59 -0400513 if (start == 0) {
514 /* lets try to make an inline extent */
Chris Mason771ed682008-11-06 22:02:51 -0500515 if (ret || total_in < (actual_end - start)) {
Chris Masonc8b97812008-10-29 14:49:59 -0400516 /* we didn't compress the entire range, try
Chris Mason771ed682008-11-06 22:02:51 -0500517 * to make an uncompressed inline extent.
Chris Masonc8b97812008-10-29 14:49:59 -0400518 */
Josef Bacik00361582013-08-14 14:02:47 -0400519 ret = cow_file_range_inline(root, inode, start, end,
520 0, 0, NULL);
Chris Masonc8b97812008-10-29 14:49:59 -0400521 } else {
Chris Mason771ed682008-11-06 22:02:51 -0500522 /* try making a compressed inline extent */
Josef Bacik00361582013-08-14 14:02:47 -0400523 ret = cow_file_range_inline(root, inode, start, end,
Li Zefanfe3f5662011-03-28 08:30:38 +0000524 total_compressed,
525 compress_type, pages);
Chris Masonc8b97812008-10-29 14:49:59 -0400526 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100527 if (ret <= 0) {
Josef Bacik151a41b2013-07-29 13:22:24 -0400528 unsigned long clear_flags = EXTENT_DELALLOC |
529 EXTENT_DEFRAG;
Filipe Mananae6eb4312014-10-10 10:45:12 +0100530 unsigned long page_error_op;
531
Josef Bacik151a41b2013-07-29 13:22:24 -0400532 clear_flags |= (ret < 0) ? EXTENT_DO_ACCOUNTING : 0;
Filipe Mananae6eb4312014-10-10 10:45:12 +0100533 page_error_op = ret < 0 ? PAGE_SET_ERROR : 0;
Josef Bacik151a41b2013-07-29 13:22:24 -0400534
Chris Mason771ed682008-11-06 22:02:51 -0500535 /*
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100536 * inline extent creation worked or returned error,
537 * we don't need to create any more async work items.
538 * Unlock and free up our temp pages.
Chris Mason771ed682008-11-06 22:02:51 -0500539 */
Josef Bacikc2790a22013-07-29 11:20:47 -0400540 extent_clear_unlock_delalloc(inode, start, end, NULL,
Josef Bacik151a41b2013-07-29 13:22:24 -0400541 clear_flags, PAGE_UNLOCK |
Josef Bacikc2790a22013-07-29 11:20:47 -0400542 PAGE_CLEAR_DIRTY |
543 PAGE_SET_WRITEBACK |
Filipe Mananae6eb4312014-10-10 10:45:12 +0100544 page_error_op |
Josef Bacikc2790a22013-07-29 11:20:47 -0400545 PAGE_END_WRITEBACK);
Chris Masonc8b97812008-10-29 14:49:59 -0400546 goto free_pages_out;
547 }
548 }
549
550 if (will_compress) {
551 /*
552 * we aren't doing an inline extent round the compressed size
553 * up to a block size boundary so the allocator does sane
554 * things
555 */
Qu Wenruofda28322013-02-26 08:10:22 +0000556 total_compressed = ALIGN(total_compressed, blocksize);
Chris Masonc8b97812008-10-29 14:49:59 -0400557
558 /*
559 * one last check to make sure the compression is really a
560 * win, compare the page count read with the blocks on disk
561 */
Qu Wenruofda28322013-02-26 08:10:22 +0000562 total_in = ALIGN(total_in, PAGE_CACHE_SIZE);
Chris Masonc8b97812008-10-29 14:49:59 -0400563 if (total_compressed >= total_in) {
564 will_compress = 0;
565 } else {
Chris Masonc8b97812008-10-29 14:49:59 -0400566 num_bytes = total_in;
567 }
568 }
569 if (!will_compress && pages) {
570 /*
571 * the compression code ran but failed to make things smaller,
572 * free any pages it allocated and our page pointer array
573 */
574 for (i = 0; i < nr_pages_ret; i++) {
Chris Mason70b99e62008-10-31 12:46:39 -0400575 WARN_ON(pages[i]->mapping);
Chris Masonc8b97812008-10-29 14:49:59 -0400576 page_cache_release(pages[i]);
577 }
578 kfree(pages);
579 pages = NULL;
580 total_compressed = 0;
581 nr_pages_ret = 0;
582
583 /* flag the file so we don't compress in the future */
Chris Mason1e701a32010-03-11 09:42:04 -0500584 if (!btrfs_test_opt(root, FORCE_COMPRESS) &&
585 !(BTRFS_I(inode)->force_compress)) {
Chris Masona555f812010-01-28 16:18:15 -0500586 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
Chris Mason1e701a32010-03-11 09:42:04 -0500587 }
Chris Masonc8b97812008-10-29 14:49:59 -0400588 }
Chris Mason771ed682008-11-06 22:02:51 -0500589 if (will_compress) {
590 *num_added += 1;
591
592 /* the async work queues will take care of doing actual
593 * allocation on disk for these compressed pages,
594 * and will submit them to the elevator.
595 */
596 add_async_extent(async_cow, start, num_bytes,
Li Zefan261507a02010-12-17 14:21:50 +0800597 total_compressed, pages, nr_pages_ret,
598 compress_type);
Chris Mason771ed682008-11-06 22:02:51 -0500599
Yan, Zheng24ae6362010-12-06 07:02:36 +0000600 if (start + num_bytes < end) {
Chris Mason771ed682008-11-06 22:02:51 -0500601 start += num_bytes;
602 pages = NULL;
603 cond_resched();
604 goto again;
605 }
606 } else {
Chris Masonf03d9301f2009-02-04 09:31:06 -0500607cleanup_and_bail_uncompressed:
Chris Mason771ed682008-11-06 22:02:51 -0500608 /*
609 * No compression, but we still need to write the pages in
610 * the file we've been given so far. redirty the locked
611 * page if it corresponds to our extent and set things up
612 * for the async work queue to run cow_file_range to do
613 * the normal delalloc dance
614 */
615 if (page_offset(locked_page) >= start &&
616 page_offset(locked_page) <= end) {
617 __set_page_dirty_nobuffers(locked_page);
618 /* unlocked later on in the async handlers */
619 }
Chris Mason4adaa612013-03-26 13:07:00 -0400620 if (redirty)
621 extent_range_redirty_for_io(inode, start, end);
Li Zefan261507a02010-12-17 14:21:50 +0800622 add_async_extent(async_cow, start, end - start + 1,
623 0, NULL, 0, BTRFS_COMPRESS_NONE);
Chris Mason771ed682008-11-06 22:02:51 -0500624 *num_added += 1;
625 }
626
Filipe Mananac44f6492014-10-09 21:15:44 +0100627 return;
Chris Mason771ed682008-11-06 22:02:51 -0500628
629free_pages_out:
630 for (i = 0; i < nr_pages_ret; i++) {
631 WARN_ON(pages[i]->mapping);
632 page_cache_release(pages[i]);
633 }
Chris Masond3977122009-01-05 21:25:51 -0500634 kfree(pages);
Chris Mason771ed682008-11-06 22:02:51 -0500635}
Chris Mason771ed682008-11-06 22:02:51 -0500636
Filipe Manana40ae8372014-10-06 22:14:24 +0100637static void free_async_extent_pages(struct async_extent *async_extent)
638{
639 int i;
640
641 if (!async_extent->pages)
642 return;
643
644 for (i = 0; i < async_extent->nr_pages; i++) {
645 WARN_ON(async_extent->pages[i]->mapping);
646 page_cache_release(async_extent->pages[i]);
647 }
648 kfree(async_extent->pages);
649 async_extent->nr_pages = 0;
650 async_extent->pages = NULL;
Chris Mason771ed682008-11-06 22:02:51 -0500651}
652
653/*
654 * phase two of compressed writeback. This is the ordered portion
655 * of the code, which only gets called in the order the work was
656 * queued. We walk all the async extents created by compress_file_range
657 * and send them down to the disk.
658 */
Filipe Mananadec8f172014-10-06 22:14:26 +0100659static noinline void submit_compressed_extents(struct inode *inode,
Chris Mason771ed682008-11-06 22:02:51 -0500660 struct async_cow *async_cow)
661{
662 struct async_extent *async_extent;
663 u64 alloc_hint = 0;
Chris Mason771ed682008-11-06 22:02:51 -0500664 struct btrfs_key ins;
665 struct extent_map *em;
666 struct btrfs_root *root = BTRFS_I(inode)->root;
667 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
668 struct extent_io_tree *io_tree;
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500669 int ret = 0;
Chris Mason771ed682008-11-06 22:02:51 -0500670
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500671again:
Chris Masond3977122009-01-05 21:25:51 -0500672 while (!list_empty(&async_cow->extents)) {
Chris Mason771ed682008-11-06 22:02:51 -0500673 async_extent = list_entry(async_cow->extents.next,
674 struct async_extent, list);
675 list_del(&async_extent->list);
676
677 io_tree = &BTRFS_I(inode)->io_tree;
678
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500679retry:
Chris Mason771ed682008-11-06 22:02:51 -0500680 /* did the compression code fall back to uncompressed IO? */
681 if (!async_extent->pages) {
682 int page_started = 0;
683 unsigned long nr_written = 0;
684
685 lock_extent(io_tree, async_extent->start,
Josef Bacik2ac55d42010-02-03 19:33:23 +0000686 async_extent->start +
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100687 async_extent->ram_size - 1);
Chris Mason771ed682008-11-06 22:02:51 -0500688
689 /* allocate blocks */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500690 ret = cow_file_range(inode, async_cow->locked_page,
691 async_extent->start,
692 async_extent->start +
693 async_extent->ram_size - 1,
694 &page_started, &nr_written, 0);
Chris Mason771ed682008-11-06 22:02:51 -0500695
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100696 /* JDM XXX */
697
Chris Mason771ed682008-11-06 22:02:51 -0500698 /*
699 * if page_started, cow_file_range inserted an
700 * inline extent and took care of all the unlocking
701 * and IO for us. Otherwise, we need to submit
702 * all those pages down to the drive.
703 */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500704 if (!page_started && !ret)
Chris Mason771ed682008-11-06 22:02:51 -0500705 extent_write_locked_range(io_tree,
706 inode, async_extent->start,
Chris Masond3977122009-01-05 21:25:51 -0500707 async_extent->start +
Chris Mason771ed682008-11-06 22:02:51 -0500708 async_extent->ram_size - 1,
709 btrfs_get_extent,
710 WB_SYNC_ALL);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500711 else if (ret)
712 unlock_page(async_cow->locked_page);
Chris Mason771ed682008-11-06 22:02:51 -0500713 kfree(async_extent);
714 cond_resched();
715 continue;
716 }
717
718 lock_extent(io_tree, async_extent->start,
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100719 async_extent->start + async_extent->ram_size - 1);
Chris Mason771ed682008-11-06 22:02:51 -0500720
Josef Bacik00361582013-08-14 14:02:47 -0400721 ret = btrfs_reserve_extent(root,
Chris Mason771ed682008-11-06 22:02:51 -0500722 async_extent->compressed_size,
723 async_extent->compressed_size,
Miao Xiee570fd22014-06-19 10:42:50 +0800724 0, alloc_hint, &ins, 1, 1);
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500725 if (ret) {
Filipe Manana40ae8372014-10-06 22:14:24 +0100726 free_async_extent_pages(async_extent);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500727
Josef Bacikfdf8e2e2013-06-14 16:58:23 -0400728 if (ret == -ENOSPC) {
729 unlock_extent(io_tree, async_extent->start,
730 async_extent->start +
731 async_extent->ram_size - 1);
Liu Boce620032014-07-24 22:48:05 +0800732
733 /*
734 * we need to redirty the pages if we decide to
735 * fallback to uncompressed IO, otherwise we
736 * will not submit these pages down to lower
737 * layers.
738 */
739 extent_range_redirty_for_io(inode,
740 async_extent->start,
741 async_extent->start +
742 async_extent->ram_size - 1);
743
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100744 goto retry;
Josef Bacikfdf8e2e2013-06-14 16:58:23 -0400745 }
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500746 goto out_free;
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500747 }
748
Yan, Zhengc2167752009-11-12 09:34:21 +0000749 /*
750 * here we're doing allocation and writeback of the
751 * compressed pages
752 */
753 btrfs_drop_extent_cache(inode, async_extent->start,
754 async_extent->start +
755 async_extent->ram_size - 1, 0);
756
David Sterba172ddd62011-04-21 00:48:27 +0200757 em = alloc_extent_map();
Liu Bob9aa55b2013-05-14 02:12:15 +0000758 if (!em) {
759 ret = -ENOMEM;
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500760 goto out_free_reserve;
Liu Bob9aa55b2013-05-14 02:12:15 +0000761 }
Chris Mason771ed682008-11-06 22:02:51 -0500762 em->start = async_extent->start;
763 em->len = async_extent->ram_size;
Chris Mason445a6942008-11-10 11:53:33 -0500764 em->orig_start = em->start;
Josef Bacik2ab28f32012-10-12 15:27:49 -0400765 em->mod_start = em->start;
766 em->mod_len = em->len;
Chris Mason771ed682008-11-06 22:02:51 -0500767
768 em->block_start = ins.objectid;
769 em->block_len = ins.offset;
Josef Bacikb4939682012-12-03 10:31:19 -0500770 em->orig_block_len = ins.offset;
Josef Bacikcc95bef2013-04-04 14:31:27 -0400771 em->ram_bytes = async_extent->ram_size;
Chris Mason771ed682008-11-06 22:02:51 -0500772 em->bdev = root->fs_info->fs_devices->latest_bdev;
Li Zefan261507a02010-12-17 14:21:50 +0800773 em->compress_type = async_extent->compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500774 set_bit(EXTENT_FLAG_PINNED, &em->flags);
775 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Josef Bacik70c8a912012-10-11 16:54:30 -0400776 em->generation = -1;
Chris Mason771ed682008-11-06 22:02:51 -0500777
Chris Masond3977122009-01-05 21:25:51 -0500778 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -0400779 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -0400780 ret = add_extent_mapping(em_tree, em, 1);
Chris Mason890871b2009-09-02 16:24:52 -0400781 write_unlock(&em_tree->lock);
Chris Mason771ed682008-11-06 22:02:51 -0500782 if (ret != -EEXIST) {
783 free_extent_map(em);
784 break;
785 }
786 btrfs_drop_extent_cache(inode, async_extent->start,
787 async_extent->start +
788 async_extent->ram_size - 1, 0);
789 }
790
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500791 if (ret)
792 goto out_free_reserve;
793
Li Zefan261507a02010-12-17 14:21:50 +0800794 ret = btrfs_add_ordered_extent_compress(inode,
795 async_extent->start,
796 ins.objectid,
797 async_extent->ram_size,
798 ins.offset,
799 BTRFS_ORDERED_COMPRESSED,
800 async_extent->compress_type);
Filipe Mananad9f85962014-08-25 10:43:00 +0100801 if (ret) {
802 btrfs_drop_extent_cache(inode, async_extent->start,
803 async_extent->start +
804 async_extent->ram_size - 1, 0);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500805 goto out_free_reserve;
Filipe Mananad9f85962014-08-25 10:43:00 +0100806 }
Chris Mason771ed682008-11-06 22:02:51 -0500807
Chris Mason771ed682008-11-06 22:02:51 -0500808 /*
809 * clear dirty, set writeback and unlock the pages.
810 */
Josef Bacikc2790a22013-07-29 11:20:47 -0400811 extent_clear_unlock_delalloc(inode, async_extent->start,
Chris Masona791e352009-10-08 11:27:10 -0400812 async_extent->start +
813 async_extent->ram_size - 1,
Josef Bacik151a41b2013-07-29 13:22:24 -0400814 NULL, EXTENT_LOCKED | EXTENT_DELALLOC,
815 PAGE_UNLOCK | PAGE_CLEAR_DIRTY |
Josef Bacikc2790a22013-07-29 11:20:47 -0400816 PAGE_SET_WRITEBACK);
Chris Mason771ed682008-11-06 22:02:51 -0500817 ret = btrfs_submit_compressed_write(inode,
Chris Masond3977122009-01-05 21:25:51 -0500818 async_extent->start,
819 async_extent->ram_size,
820 ins.objectid,
821 ins.offset, async_extent->pages,
822 async_extent->nr_pages);
Filipe Mananafce2a4e2014-10-06 22:14:23 +0100823 if (ret) {
824 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
825 struct page *p = async_extent->pages[0];
826 const u64 start = async_extent->start;
827 const u64 end = start + async_extent->ram_size - 1;
828
829 p->mapping = inode->i_mapping;
830 tree->ops->writepage_end_io_hook(p, start, end,
831 NULL, 0);
832 p->mapping = NULL;
833 extent_clear_unlock_delalloc(inode, start, end, NULL, 0,
834 PAGE_END_WRITEBACK |
835 PAGE_SET_ERROR);
Filipe Manana40ae8372014-10-06 22:14:24 +0100836 free_async_extent_pages(async_extent);
Filipe Mananafce2a4e2014-10-06 22:14:23 +0100837 }
Chris Mason771ed682008-11-06 22:02:51 -0500838 alloc_hint = ins.objectid + ins.offset;
839 kfree(async_extent);
840 cond_resched();
841 }
Filipe Mananadec8f172014-10-06 22:14:26 +0100842 return;
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500843out_free_reserve:
Miao Xiee570fd22014-06-19 10:42:50 +0800844 btrfs_free_reserved_extent(root, ins.objectid, ins.offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100845out_free:
Josef Bacikc2790a22013-07-29 11:20:47 -0400846 extent_clear_unlock_delalloc(inode, async_extent->start,
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500847 async_extent->start +
848 async_extent->ram_size - 1,
Josef Bacikc2790a22013-07-29 11:20:47 -0400849 NULL, EXTENT_LOCKED | EXTENT_DELALLOC |
Josef Bacik151a41b2013-07-29 13:22:24 -0400850 EXTENT_DEFRAG | EXTENT_DO_ACCOUNTING,
851 PAGE_UNLOCK | PAGE_CLEAR_DIRTY |
Filipe Manana704de492014-10-06 22:14:22 +0100852 PAGE_SET_WRITEBACK | PAGE_END_WRITEBACK |
853 PAGE_SET_ERROR);
Filipe Manana40ae8372014-10-06 22:14:24 +0100854 free_async_extent_pages(async_extent);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100855 kfree(async_extent);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500856 goto again;
Chris Mason771ed682008-11-06 22:02:51 -0500857}
858
Josef Bacik4b46fce2010-05-23 11:00:55 -0400859static u64 get_extent_allocation_hint(struct inode *inode, u64 start,
860 u64 num_bytes)
861{
862 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
863 struct extent_map *em;
864 u64 alloc_hint = 0;
865
866 read_lock(&em_tree->lock);
867 em = search_extent_mapping(em_tree, start, num_bytes);
868 if (em) {
869 /*
870 * if block start isn't an actual block number then find the
871 * first block in this inode and use that as a hint. If that
872 * block is also bogus then just don't worry about it.
873 */
874 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
875 free_extent_map(em);
876 em = search_extent_mapping(em_tree, 0, 0);
877 if (em && em->block_start < EXTENT_MAP_LAST_BYTE)
878 alloc_hint = em->block_start;
879 if (em)
880 free_extent_map(em);
881 } else {
882 alloc_hint = em->block_start;
883 free_extent_map(em);
884 }
885 }
886 read_unlock(&em_tree->lock);
887
888 return alloc_hint;
889}
890
Chris Mason771ed682008-11-06 22:02:51 -0500891/*
892 * when extent_io.c finds a delayed allocation range in the file,
893 * the call backs end up in this code. The basic idea is to
894 * allocate extents on disk for the range, and create ordered data structs
895 * in ram to track those extents.
896 *
897 * locked_page is the page that writepage had locked already. We use
898 * it to make sure we don't do extra locks or unlocks.
899 *
900 * *page_started is set to one if we unlock locked_page and do everything
901 * required to start IO on it. It may be clean and already done with
902 * IO when we return.
903 */
Josef Bacik00361582013-08-14 14:02:47 -0400904static noinline int cow_file_range(struct inode *inode,
905 struct page *locked_page,
906 u64 start, u64 end, int *page_started,
907 unsigned long *nr_written,
908 int unlock)
Chris Mason771ed682008-11-06 22:02:51 -0500909{
Josef Bacik00361582013-08-14 14:02:47 -0400910 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason771ed682008-11-06 22:02:51 -0500911 u64 alloc_hint = 0;
912 u64 num_bytes;
913 unsigned long ram_size;
914 u64 disk_num_bytes;
915 u64 cur_alloc_size;
916 u64 blocksize = root->sectorsize;
Chris Mason771ed682008-11-06 22:02:51 -0500917 struct btrfs_key ins;
918 struct extent_map *em;
919 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
920 int ret = 0;
921
Josef Bacik02ecd2c2013-10-25 16:19:08 -0400922 if (btrfs_is_free_space_inode(inode)) {
923 WARN_ON_ONCE(1);
Josef Bacik29bce2f2014-02-07 12:21:23 -0500924 ret = -EINVAL;
925 goto out_unlock;
Josef Bacik02ecd2c2013-10-25 16:19:08 -0400926 }
Chris Mason771ed682008-11-06 22:02:51 -0500927
Qu Wenruofda28322013-02-26 08:10:22 +0000928 num_bytes = ALIGN(end - start + 1, blocksize);
Chris Mason771ed682008-11-06 22:02:51 -0500929 num_bytes = max(blocksize, num_bytes);
930 disk_num_bytes = num_bytes;
Chris Mason771ed682008-11-06 22:02:51 -0500931
Chris Mason4cb53002011-05-24 15:35:30 -0400932 /* if this is a small write inside eof, kick off defrag */
Liu Bo4cb13e52012-03-29 09:57:45 -0400933 if (num_bytes < 64 * 1024 &&
934 (start > 0 || end + 1 < BTRFS_I(inode)->disk_i_size))
Josef Bacik00361582013-08-14 14:02:47 -0400935 btrfs_add_inode_defrag(NULL, inode);
Chris Mason4cb53002011-05-24 15:35:30 -0400936
Chris Mason771ed682008-11-06 22:02:51 -0500937 if (start == 0) {
938 /* lets try to make an inline extent */
Josef Bacik00361582013-08-14 14:02:47 -0400939 ret = cow_file_range_inline(root, inode, start, end, 0, 0,
940 NULL);
Chris Mason771ed682008-11-06 22:02:51 -0500941 if (ret == 0) {
Josef Bacikc2790a22013-07-29 11:20:47 -0400942 extent_clear_unlock_delalloc(inode, start, end, NULL,
943 EXTENT_LOCKED | EXTENT_DELALLOC |
Josef Bacik151a41b2013-07-29 13:22:24 -0400944 EXTENT_DEFRAG, PAGE_UNLOCK |
Josef Bacikc2790a22013-07-29 11:20:47 -0400945 PAGE_CLEAR_DIRTY | PAGE_SET_WRITEBACK |
946 PAGE_END_WRITEBACK);
Yan, Zhengc2167752009-11-12 09:34:21 +0000947
Chris Mason771ed682008-11-06 22:02:51 -0500948 *nr_written = *nr_written +
949 (end - start + PAGE_CACHE_SIZE) / PAGE_CACHE_SIZE;
950 *page_started = 1;
Chris Mason771ed682008-11-06 22:02:51 -0500951 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100952 } else if (ret < 0) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100953 goto out_unlock;
Chris Mason771ed682008-11-06 22:02:51 -0500954 }
955 }
Chris Masonc8b97812008-10-29 14:49:59 -0400956
957 BUG_ON(disk_num_bytes >
David Sterba6c417612011-04-13 15:41:04 +0200958 btrfs_super_total_bytes(root->fs_info->super_copy));
Chris Masonc8b97812008-10-29 14:49:59 -0400959
Josef Bacik4b46fce2010-05-23 11:00:55 -0400960 alloc_hint = get_extent_allocation_hint(inode, start, num_bytes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400961 btrfs_drop_extent_cache(inode, start, start + num_bytes - 1, 0);
Chris Mason3b951512008-04-17 11:29:12 -0400962
Chris Masond3977122009-01-05 21:25:51 -0500963 while (disk_num_bytes > 0) {
Chris Masona791e352009-10-08 11:27:10 -0400964 unsigned long op;
965
Josef Bacik287a0ab2010-03-19 18:07:23 +0000966 cur_alloc_size = disk_num_bytes;
Josef Bacik00361582013-08-14 14:02:47 -0400967 ret = btrfs_reserve_extent(root, cur_alloc_size,
Chris Mason771ed682008-11-06 22:02:51 -0500968 root->sectorsize, 0, alloc_hint,
Miao Xiee570fd22014-06-19 10:42:50 +0800969 &ins, 1, 1);
Josef Bacik00361582013-08-14 14:02:47 -0400970 if (ret < 0)
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100971 goto out_unlock;
Chris Masond3977122009-01-05 21:25:51 -0500972
David Sterba172ddd62011-04-21 00:48:27 +0200973 em = alloc_extent_map();
Liu Bob9aa55b2013-05-14 02:12:15 +0000974 if (!em) {
975 ret = -ENOMEM;
Liu Boace68ba2013-04-22 10:53:47 +0000976 goto out_reserve;
Liu Bob9aa55b2013-05-14 02:12:15 +0000977 }
Chris Masone6dcd2d2008-07-17 12:53:50 -0400978 em->start = start;
Chris Mason445a6942008-11-10 11:53:33 -0500979 em->orig_start = em->start;
Chris Mason771ed682008-11-06 22:02:51 -0500980 ram_size = ins.offset;
981 em->len = ins.offset;
Josef Bacik2ab28f32012-10-12 15:27:49 -0400982 em->mod_start = em->start;
983 em->mod_len = em->len;
Chris Masonc8b97812008-10-29 14:49:59 -0400984
Chris Masone6dcd2d2008-07-17 12:53:50 -0400985 em->block_start = ins.objectid;
Chris Masonc8b97812008-10-29 14:49:59 -0400986 em->block_len = ins.offset;
Josef Bacikb4939682012-12-03 10:31:19 -0500987 em->orig_block_len = ins.offset;
Josef Bacikcc95bef2013-04-04 14:31:27 -0400988 em->ram_bytes = ram_size;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400989 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -0400990 set_bit(EXTENT_FLAG_PINNED, &em->flags);
Josef Bacik70c8a912012-10-11 16:54:30 -0400991 em->generation = -1;
Chris Masonc8b97812008-10-29 14:49:59 -0400992
Chris Masond3977122009-01-05 21:25:51 -0500993 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -0400994 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -0400995 ret = add_extent_mapping(em_tree, em, 1);
Chris Mason890871b2009-09-02 16:24:52 -0400996 write_unlock(&em_tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400997 if (ret != -EEXIST) {
998 free_extent_map(em);
999 break;
1000 }
1001 btrfs_drop_extent_cache(inode, start,
Chris Masonc8b97812008-10-29 14:49:59 -04001002 start + ram_size - 1, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001003 }
Liu Boace68ba2013-04-22 10:53:47 +00001004 if (ret)
1005 goto out_reserve;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001006
Chris Mason98d20f62008-04-14 09:46:10 -04001007 cur_alloc_size = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001008 ret = btrfs_add_ordered_extent(inode, start, ins.objectid,
Chris Mason771ed682008-11-06 22:02:51 -05001009 ram_size, cur_alloc_size, 0);
Liu Boace68ba2013-04-22 10:53:47 +00001010 if (ret)
Filipe Mananad9f85962014-08-25 10:43:00 +01001011 goto out_drop_extent_cache;
Chris Masonc8b97812008-10-29 14:49:59 -04001012
Yan Zheng17d217f2008-12-12 10:03:38 -05001013 if (root->root_key.objectid ==
1014 BTRFS_DATA_RELOC_TREE_OBJECTID) {
1015 ret = btrfs_reloc_clone_csums(inode, start,
1016 cur_alloc_size);
Josef Bacik00361582013-08-14 14:02:47 -04001017 if (ret)
Filipe Mananad9f85962014-08-25 10:43:00 +01001018 goto out_drop_extent_cache;
Yan Zheng17d217f2008-12-12 10:03:38 -05001019 }
1020
Chris Masond3977122009-01-05 21:25:51 -05001021 if (disk_num_bytes < cur_alloc_size)
Chris Mason3b951512008-04-17 11:29:12 -04001022 break;
Chris Masond3977122009-01-05 21:25:51 -05001023
Chris Masonc8b97812008-10-29 14:49:59 -04001024 /* we're not doing compressed IO, don't unlock the first
1025 * page (which the caller expects to stay locked), don't
1026 * clear any dirty bits and don't set any writeback bits
Chris Mason8b62b722009-09-02 16:53:46 -04001027 *
1028 * Do set the Private2 bit so we know this page was properly
1029 * setup for writepage
Chris Masonc8b97812008-10-29 14:49:59 -04001030 */
Josef Bacikc2790a22013-07-29 11:20:47 -04001031 op = unlock ? PAGE_UNLOCK : 0;
1032 op |= PAGE_SET_PRIVATE2;
Chris Masona791e352009-10-08 11:27:10 -04001033
Josef Bacikc2790a22013-07-29 11:20:47 -04001034 extent_clear_unlock_delalloc(inode, start,
1035 start + ram_size - 1, locked_page,
1036 EXTENT_LOCKED | EXTENT_DELALLOC,
1037 op);
Chris Masonc8b97812008-10-29 14:49:59 -04001038 disk_num_bytes -= cur_alloc_size;
Chris Masonc59f8952007-12-17 20:14:04 -05001039 num_bytes -= cur_alloc_size;
1040 alloc_hint = ins.objectid + ins.offset;
1041 start += cur_alloc_size;
Chris Masonb888db22007-08-27 16:49:44 -04001042 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001043out:
Chris Masonbe20aa92007-12-17 20:14:01 -05001044 return ret;
Miao Xieb7d5b0a2012-11-01 07:32:18 +00001045
Filipe Mananad9f85962014-08-25 10:43:00 +01001046out_drop_extent_cache:
1047 btrfs_drop_extent_cache(inode, start, start + ram_size - 1, 0);
Liu Boace68ba2013-04-22 10:53:47 +00001048out_reserve:
Miao Xiee570fd22014-06-19 10:42:50 +08001049 btrfs_free_reserved_extent(root, ins.objectid, ins.offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001050out_unlock:
Josef Bacikc2790a22013-07-29 11:20:47 -04001051 extent_clear_unlock_delalloc(inode, start, end, locked_page,
Josef Bacik151a41b2013-07-29 13:22:24 -04001052 EXTENT_LOCKED | EXTENT_DO_ACCOUNTING |
1053 EXTENT_DELALLOC | EXTENT_DEFRAG,
1054 PAGE_UNLOCK | PAGE_CLEAR_DIRTY |
1055 PAGE_SET_WRITEBACK | PAGE_END_WRITEBACK);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001056 goto out;
Chris Mason771ed682008-11-06 22:02:51 -05001057}
Chris Masonc8b97812008-10-29 14:49:59 -04001058
Chris Mason771ed682008-11-06 22:02:51 -05001059/*
1060 * work queue call back to started compression on a file and pages
1061 */
1062static noinline void async_cow_start(struct btrfs_work *work)
1063{
1064 struct async_cow *async_cow;
1065 int num_added = 0;
1066 async_cow = container_of(work, struct async_cow, work);
1067
1068 compress_file_range(async_cow->inode, async_cow->locked_page,
1069 async_cow->start, async_cow->end, async_cow,
1070 &num_added);
Josef Bacik8180ef82012-06-08 15:16:12 -04001071 if (num_added == 0) {
Josef Bacikcb77fcd2012-06-15 12:19:48 -06001072 btrfs_add_delayed_iput(async_cow->inode);
Chris Mason771ed682008-11-06 22:02:51 -05001073 async_cow->inode = NULL;
Josef Bacik8180ef82012-06-08 15:16:12 -04001074 }
Chris Mason771ed682008-11-06 22:02:51 -05001075}
1076
1077/*
1078 * work queue call back to submit previously compressed pages
1079 */
1080static noinline void async_cow_submit(struct btrfs_work *work)
1081{
1082 struct async_cow *async_cow;
1083 struct btrfs_root *root;
1084 unsigned long nr_pages;
1085
1086 async_cow = container_of(work, struct async_cow, work);
1087
1088 root = async_cow->root;
1089 nr_pages = (async_cow->end - async_cow->start + PAGE_CACHE_SIZE) >>
1090 PAGE_CACHE_SHIFT;
1091
Josef Bacik66657b32012-08-01 15:36:24 -04001092 if (atomic_sub_return(nr_pages, &root->fs_info->async_delalloc_pages) <
Liu Bo287082b2012-06-28 04:02:24 -06001093 5 * 1024 * 1024 &&
Chris Mason771ed682008-11-06 22:02:51 -05001094 waitqueue_active(&root->fs_info->async_submit_wait))
1095 wake_up(&root->fs_info->async_submit_wait);
1096
Chris Masond3977122009-01-05 21:25:51 -05001097 if (async_cow->inode)
Chris Mason771ed682008-11-06 22:02:51 -05001098 submit_compressed_extents(async_cow->inode, async_cow);
Chris Mason771ed682008-11-06 22:02:51 -05001099}
Chris Masonc8b97812008-10-29 14:49:59 -04001100
Chris Mason771ed682008-11-06 22:02:51 -05001101static noinline void async_cow_free(struct btrfs_work *work)
1102{
1103 struct async_cow *async_cow;
1104 async_cow = container_of(work, struct async_cow, work);
Josef Bacik8180ef82012-06-08 15:16:12 -04001105 if (async_cow->inode)
Josef Bacikcb77fcd2012-06-15 12:19:48 -06001106 btrfs_add_delayed_iput(async_cow->inode);
Chris Mason771ed682008-11-06 22:02:51 -05001107 kfree(async_cow);
1108}
1109
1110static int cow_file_range_async(struct inode *inode, struct page *locked_page,
1111 u64 start, u64 end, int *page_started,
1112 unsigned long *nr_written)
1113{
1114 struct async_cow *async_cow;
1115 struct btrfs_root *root = BTRFS_I(inode)->root;
1116 unsigned long nr_pages;
1117 u64 cur_end;
Liu Bo287082b2012-06-28 04:02:24 -06001118 int limit = 10 * 1024 * 1024;
Chris Mason771ed682008-11-06 22:02:51 -05001119
Chris Masona3429ab2009-10-08 12:30:20 -04001120 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, EXTENT_LOCKED,
1121 1, 0, NULL, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -05001122 while (start < end) {
Chris Mason771ed682008-11-06 22:02:51 -05001123 async_cow = kmalloc(sizeof(*async_cow), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001124 BUG_ON(!async_cow); /* -ENOMEM */
Josef Bacik8180ef82012-06-08 15:16:12 -04001125 async_cow->inode = igrab(inode);
Chris Mason771ed682008-11-06 22:02:51 -05001126 async_cow->root = root;
1127 async_cow->locked_page = locked_page;
1128 async_cow->start = start;
1129
Wang Shilongf79707b2014-07-17 11:44:09 +08001130 if (BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS &&
1131 !btrfs_test_opt(root, FORCE_COMPRESS))
Chris Mason771ed682008-11-06 22:02:51 -05001132 cur_end = end;
1133 else
1134 cur_end = min(end, start + 512 * 1024 - 1);
1135
1136 async_cow->end = cur_end;
1137 INIT_LIST_HEAD(&async_cow->extents);
1138
Liu Bo9e0af232014-08-15 23:36:53 +08001139 btrfs_init_work(&async_cow->work,
1140 btrfs_delalloc_helper,
1141 async_cow_start, async_cow_submit,
1142 async_cow_free);
Chris Mason771ed682008-11-06 22:02:51 -05001143
Chris Mason771ed682008-11-06 22:02:51 -05001144 nr_pages = (cur_end - start + PAGE_CACHE_SIZE) >>
1145 PAGE_CACHE_SHIFT;
1146 atomic_add(nr_pages, &root->fs_info->async_delalloc_pages);
1147
Qu Wenruoafe3d242014-02-28 10:46:07 +08001148 btrfs_queue_work(root->fs_info->delalloc_workers,
1149 &async_cow->work);
Chris Mason771ed682008-11-06 22:02:51 -05001150
1151 if (atomic_read(&root->fs_info->async_delalloc_pages) > limit) {
1152 wait_event(root->fs_info->async_submit_wait,
1153 (atomic_read(&root->fs_info->async_delalloc_pages) <
1154 limit));
1155 }
1156
Chris Masond3977122009-01-05 21:25:51 -05001157 while (atomic_read(&root->fs_info->async_submit_draining) &&
Chris Mason771ed682008-11-06 22:02:51 -05001158 atomic_read(&root->fs_info->async_delalloc_pages)) {
1159 wait_event(root->fs_info->async_submit_wait,
1160 (atomic_read(&root->fs_info->async_delalloc_pages) ==
1161 0));
1162 }
1163
1164 *nr_written += nr_pages;
1165 start = cur_end + 1;
1166 }
1167 *page_started = 1;
1168 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05001169}
1170
Chris Masond3977122009-01-05 21:25:51 -05001171static noinline int csum_exist_in_range(struct btrfs_root *root,
Yan Zheng17d217f2008-12-12 10:03:38 -05001172 u64 bytenr, u64 num_bytes)
1173{
1174 int ret;
1175 struct btrfs_ordered_sum *sums;
1176 LIST_HEAD(list);
1177
Yan Zheng07d400a2009-01-06 11:42:00 -05001178 ret = btrfs_lookup_csums_range(root->fs_info->csum_root, bytenr,
Arne Jansena2de7332011-03-08 14:14:00 +01001179 bytenr + num_bytes - 1, &list, 0);
Yan Zheng17d217f2008-12-12 10:03:38 -05001180 if (ret == 0 && list_empty(&list))
1181 return 0;
1182
1183 while (!list_empty(&list)) {
1184 sums = list_entry(list.next, struct btrfs_ordered_sum, list);
1185 list_del(&sums->list);
1186 kfree(sums);
1187 }
1188 return 1;
1189}
1190
Chris Masond352ac62008-09-29 15:18:18 -04001191/*
1192 * when nowcow writeback call back. This checks for snapshots or COW copies
1193 * of the extents that exist in the file, and COWs the file as required.
1194 *
1195 * If no cow copies or snapshots exist, we write directly to the existing
1196 * blocks on disk
1197 */
Chris Mason7f366cf2009-03-12 20:12:45 -04001198static noinline int run_delalloc_nocow(struct inode *inode,
1199 struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001200 u64 start, u64 end, int *page_started, int force,
1201 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001202{
Chris Masonbe20aa92007-12-17 20:14:01 -05001203 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001204 struct btrfs_trans_handle *trans;
Chris Masonbe20aa92007-12-17 20:14:01 -05001205 struct extent_buffer *leaf;
Chris Masonbe20aa92007-12-17 20:14:01 -05001206 struct btrfs_path *path;
Yan Zheng80ff3852008-10-30 14:20:02 -04001207 struct btrfs_file_extent_item *fi;
Chris Masonbe20aa92007-12-17 20:14:01 -05001208 struct btrfs_key found_key;
Yan Zheng80ff3852008-10-30 14:20:02 -04001209 u64 cow_start;
1210 u64 cur_offset;
1211 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001212 u64 extent_offset;
Yan Zheng80ff3852008-10-30 14:20:02 -04001213 u64 disk_bytenr;
1214 u64 num_bytes;
Josef Bacikb4939682012-12-03 10:31:19 -05001215 u64 disk_num_bytes;
Josef Bacikcc95bef2013-04-04 14:31:27 -04001216 u64 ram_bytes;
Yan Zheng80ff3852008-10-30 14:20:02 -04001217 int extent_type;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001218 int ret, err;
Yan Zhengd899e052008-10-30 14:25:28 -04001219 int type;
Yan Zheng80ff3852008-10-30 14:20:02 -04001220 int nocow;
1221 int check_prev = 1;
Li Zefan82d59022011-04-20 10:33:24 +08001222 bool nolock;
Li Zefan33345d012011-04-20 10:31:50 +08001223 u64 ino = btrfs_ino(inode);
Chris Masonbe20aa92007-12-17 20:14:01 -05001224
1225 path = btrfs_alloc_path();
Josef Bacik17ca04a2012-05-31 15:58:55 -04001226 if (!path) {
Josef Bacikc2790a22013-07-29 11:20:47 -04001227 extent_clear_unlock_delalloc(inode, start, end, locked_page,
1228 EXTENT_LOCKED | EXTENT_DELALLOC |
Josef Bacik151a41b2013-07-29 13:22:24 -04001229 EXTENT_DO_ACCOUNTING |
1230 EXTENT_DEFRAG, PAGE_UNLOCK |
Josef Bacikc2790a22013-07-29 11:20:47 -04001231 PAGE_CLEAR_DIRTY |
1232 PAGE_SET_WRITEBACK |
1233 PAGE_END_WRITEBACK);
Mark Fashehd8926bb2011-07-13 10:38:47 -07001234 return -ENOMEM;
Josef Bacik17ca04a2012-05-31 15:58:55 -04001235 }
Li Zefan82d59022011-04-20 10:33:24 +08001236
Liu Bo83eea1f2012-07-10 05:28:39 -06001237 nolock = btrfs_is_free_space_inode(inode);
Li Zefan82d59022011-04-20 10:33:24 +08001238
1239 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001240 trans = btrfs_join_transaction_nolock(root);
Li Zefan82d59022011-04-20 10:33:24 +08001241 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001242 trans = btrfs_join_transaction(root);
Chris Masonff5714c2011-05-28 07:00:39 -04001243
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001244 if (IS_ERR(trans)) {
Josef Bacikc2790a22013-07-29 11:20:47 -04001245 extent_clear_unlock_delalloc(inode, start, end, locked_page,
1246 EXTENT_LOCKED | EXTENT_DELALLOC |
Josef Bacik151a41b2013-07-29 13:22:24 -04001247 EXTENT_DO_ACCOUNTING |
1248 EXTENT_DEFRAG, PAGE_UNLOCK |
Josef Bacikc2790a22013-07-29 11:20:47 -04001249 PAGE_CLEAR_DIRTY |
1250 PAGE_SET_WRITEBACK |
1251 PAGE_END_WRITEBACK);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001252 btrfs_free_path(path);
1253 return PTR_ERR(trans);
1254 }
1255
Josef Bacik74b21072011-04-13 12:02:53 -04001256 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Masonbe20aa92007-12-17 20:14:01 -05001257
Yan Zheng80ff3852008-10-30 14:20:02 -04001258 cow_start = (u64)-1;
1259 cur_offset = start;
1260 while (1) {
Li Zefan33345d012011-04-20 10:31:50 +08001261 ret = btrfs_lookup_file_extent(trans, root, path, ino,
Yan Zheng80ff3852008-10-30 14:20:02 -04001262 cur_offset, 0);
Josef Bacikd788a342013-10-25 16:55:08 -04001263 if (ret < 0)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001264 goto error;
Yan Zheng80ff3852008-10-30 14:20:02 -04001265 if (ret > 0 && path->slots[0] > 0 && check_prev) {
1266 leaf = path->nodes[0];
1267 btrfs_item_key_to_cpu(leaf, &found_key,
1268 path->slots[0] - 1);
Li Zefan33345d012011-04-20 10:31:50 +08001269 if (found_key.objectid == ino &&
Yan Zheng80ff3852008-10-30 14:20:02 -04001270 found_key.type == BTRFS_EXTENT_DATA_KEY)
1271 path->slots[0]--;
1272 }
1273 check_prev = 0;
1274next_slot:
1275 leaf = path->nodes[0];
1276 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1277 ret = btrfs_next_leaf(root, path);
Josef Bacikd788a342013-10-25 16:55:08 -04001278 if (ret < 0)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001279 goto error;
Yan Zheng80ff3852008-10-30 14:20:02 -04001280 if (ret > 0)
1281 break;
1282 leaf = path->nodes[0];
1283 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001284
Yan Zheng80ff3852008-10-30 14:20:02 -04001285 nocow = 0;
1286 disk_bytenr = 0;
Yan Zheng17d217f2008-12-12 10:03:38 -05001287 num_bytes = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001288 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05001289
Li Zefan33345d012011-04-20 10:31:50 +08001290 if (found_key.objectid > ino ||
Yan Zheng80ff3852008-10-30 14:20:02 -04001291 found_key.type > BTRFS_EXTENT_DATA_KEY ||
1292 found_key.offset > end)
1293 break;
Chris Masonbe20aa92007-12-17 20:14:01 -05001294
Yan Zheng80ff3852008-10-30 14:20:02 -04001295 if (found_key.offset > cur_offset) {
1296 extent_end = found_key.offset;
Chris Masone9061e22009-10-09 09:57:45 -04001297 extent_type = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001298 goto out_check;
1299 }
Chris Masonc31f8832008-01-08 15:46:31 -05001300
Yan Zheng80ff3852008-10-30 14:20:02 -04001301 fi = btrfs_item_ptr(leaf, path->slots[0],
1302 struct btrfs_file_extent_item);
1303 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Masonbe20aa92007-12-17 20:14:01 -05001304
Josef Bacikcc95bef2013-04-04 14:31:27 -04001305 ram_bytes = btrfs_file_extent_ram_bytes(leaf, fi);
Yan Zhengd899e052008-10-30 14:25:28 -04001306 if (extent_type == BTRFS_FILE_EXTENT_REG ||
1307 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001308 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001309 extent_offset = btrfs_file_extent_offset(leaf, fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001310 extent_end = found_key.offset +
1311 btrfs_file_extent_num_bytes(leaf, fi);
Josef Bacikb4939682012-12-03 10:31:19 -05001312 disk_num_bytes =
1313 btrfs_file_extent_disk_num_bytes(leaf, fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001314 if (extent_end <= start) {
1315 path->slots[0]++;
1316 goto next_slot;
1317 }
Yan Zheng17d217f2008-12-12 10:03:38 -05001318 if (disk_bytenr == 0)
1319 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001320 if (btrfs_file_extent_compression(leaf, fi) ||
1321 btrfs_file_extent_encryption(leaf, fi) ||
1322 btrfs_file_extent_other_encoding(leaf, fi))
1323 goto out_check;
Yan Zhengd899e052008-10-30 14:25:28 -04001324 if (extent_type == BTRFS_FILE_EXTENT_REG && !force)
1325 goto out_check;
Yan Zhengd2fb3432008-12-11 16:30:39 -05001326 if (btrfs_extent_readonly(root, disk_bytenr))
Yan Zheng80ff3852008-10-30 14:20:02 -04001327 goto out_check;
Li Zefan33345d012011-04-20 10:31:50 +08001328 if (btrfs_cross_ref_exist(trans, root, ino,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001329 found_key.offset -
1330 extent_offset, disk_bytenr))
Yan Zheng17d217f2008-12-12 10:03:38 -05001331 goto out_check;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001332 disk_bytenr += extent_offset;
Yan Zheng17d217f2008-12-12 10:03:38 -05001333 disk_bytenr += cur_offset - found_key.offset;
1334 num_bytes = min(end + 1, extent_end) - cur_offset;
1335 /*
Wang Shilonge9894fd2014-03-27 11:12:25 +08001336 * if there are pending snapshots for this root,
1337 * we fall into common COW way.
1338 */
1339 if (!nolock) {
Filipe Manana9ea24bb2014-10-29 11:57:59 +00001340 err = btrfs_start_write_no_snapshoting(root);
Wang Shilonge9894fd2014-03-27 11:12:25 +08001341 if (!err)
1342 goto out_check;
1343 }
1344 /*
Yan Zheng17d217f2008-12-12 10:03:38 -05001345 * force cow if csum exists in the range.
1346 * this ensure that csum for a given extent are
1347 * either valid or do not exist.
1348 */
1349 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
1350 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001351 nocow = 1;
1352 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1353 extent_end = found_key.offset +
Chris Mason514ac8a2014-01-03 21:07:00 -08001354 btrfs_file_extent_inline_len(leaf,
1355 path->slots[0], fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001356 extent_end = ALIGN(extent_end, root->sectorsize);
1357 } else {
1358 BUG_ON(1);
1359 }
1360out_check:
1361 if (extent_end <= start) {
1362 path->slots[0]++;
Wang Shilonge9894fd2014-03-27 11:12:25 +08001363 if (!nolock && nocow)
Filipe Manana9ea24bb2014-10-29 11:57:59 +00001364 btrfs_end_write_no_snapshoting(root);
Yan Zheng80ff3852008-10-30 14:20:02 -04001365 goto next_slot;
1366 }
1367 if (!nocow) {
1368 if (cow_start == (u64)-1)
1369 cow_start = cur_offset;
1370 cur_offset = extent_end;
1371 if (cur_offset > end)
1372 break;
1373 path->slots[0]++;
1374 goto next_slot;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001375 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001376
David Sterbab3b4aa72011-04-21 01:20:15 +02001377 btrfs_release_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001378 if (cow_start != (u64)-1) {
Josef Bacik00361582013-08-14 14:02:47 -04001379 ret = cow_file_range(inode, locked_page,
1380 cow_start, found_key.offset - 1,
1381 page_started, nr_written, 1);
Wang Shilonge9894fd2014-03-27 11:12:25 +08001382 if (ret) {
1383 if (!nolock && nocow)
Filipe Manana9ea24bb2014-10-29 11:57:59 +00001384 btrfs_end_write_no_snapshoting(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001385 goto error;
Wang Shilonge9894fd2014-03-27 11:12:25 +08001386 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001387 cow_start = (u64)-1;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001388 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001389
Yan Zhengd899e052008-10-30 14:25:28 -04001390 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
1391 struct extent_map *em;
1392 struct extent_map_tree *em_tree;
1393 em_tree = &BTRFS_I(inode)->extent_tree;
David Sterba172ddd62011-04-21 00:48:27 +02001394 em = alloc_extent_map();
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001395 BUG_ON(!em); /* -ENOMEM */
Yan Zhengd899e052008-10-30 14:25:28 -04001396 em->start = cur_offset;
Josef Bacik70c8a912012-10-11 16:54:30 -04001397 em->orig_start = found_key.offset - extent_offset;
Yan Zhengd899e052008-10-30 14:25:28 -04001398 em->len = num_bytes;
1399 em->block_len = num_bytes;
1400 em->block_start = disk_bytenr;
Josef Bacikb4939682012-12-03 10:31:19 -05001401 em->orig_block_len = disk_num_bytes;
Josef Bacikcc95bef2013-04-04 14:31:27 -04001402 em->ram_bytes = ram_bytes;
Yan Zhengd899e052008-10-30 14:25:28 -04001403 em->bdev = root->fs_info->fs_devices->latest_bdev;
Josef Bacik2ab28f32012-10-12 15:27:49 -04001404 em->mod_start = em->start;
1405 em->mod_len = em->len;
Yan Zhengd899e052008-10-30 14:25:28 -04001406 set_bit(EXTENT_FLAG_PINNED, &em->flags);
Josef Bacikb11e2342012-12-03 10:58:15 -05001407 set_bit(EXTENT_FLAG_FILLING, &em->flags);
Josef Bacik70c8a912012-10-11 16:54:30 -04001408 em->generation = -1;
Yan Zhengd899e052008-10-30 14:25:28 -04001409 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04001410 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04001411 ret = add_extent_mapping(em_tree, em, 1);
Chris Mason890871b2009-09-02 16:24:52 -04001412 write_unlock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001413 if (ret != -EEXIST) {
1414 free_extent_map(em);
1415 break;
1416 }
1417 btrfs_drop_extent_cache(inode, em->start,
1418 em->start + em->len - 1, 0);
1419 }
1420 type = BTRFS_ORDERED_PREALLOC;
1421 } else {
1422 type = BTRFS_ORDERED_NOCOW;
1423 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001424
1425 ret = btrfs_add_ordered_extent(inode, cur_offset, disk_bytenr,
Yan Zhengd899e052008-10-30 14:25:28 -04001426 num_bytes, num_bytes, type);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001427 BUG_ON(ret); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -05001428
Yan, Zhengefa56462010-05-16 10:49:59 -04001429 if (root->root_key.objectid ==
1430 BTRFS_DATA_RELOC_TREE_OBJECTID) {
1431 ret = btrfs_reloc_clone_csums(inode, cur_offset,
1432 num_bytes);
Wang Shilonge9894fd2014-03-27 11:12:25 +08001433 if (ret) {
1434 if (!nolock && nocow)
Filipe Manana9ea24bb2014-10-29 11:57:59 +00001435 btrfs_end_write_no_snapshoting(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001436 goto error;
Wang Shilonge9894fd2014-03-27 11:12:25 +08001437 }
Yan, Zhengefa56462010-05-16 10:49:59 -04001438 }
1439
Josef Bacikc2790a22013-07-29 11:20:47 -04001440 extent_clear_unlock_delalloc(inode, cur_offset,
1441 cur_offset + num_bytes - 1,
1442 locked_page, EXTENT_LOCKED |
1443 EXTENT_DELALLOC, PAGE_UNLOCK |
1444 PAGE_SET_PRIVATE2);
Wang Shilonge9894fd2014-03-27 11:12:25 +08001445 if (!nolock && nocow)
Filipe Manana9ea24bb2014-10-29 11:57:59 +00001446 btrfs_end_write_no_snapshoting(root);
Yan Zheng80ff3852008-10-30 14:20:02 -04001447 cur_offset = extent_end;
1448 if (cur_offset > end)
1449 break;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001450 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001451 btrfs_release_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001452
Josef Bacik17ca04a2012-05-31 15:58:55 -04001453 if (cur_offset <= end && cow_start == (u64)-1) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001454 cow_start = cur_offset;
Josef Bacik17ca04a2012-05-31 15:58:55 -04001455 cur_offset = end;
1456 }
1457
Yan Zheng80ff3852008-10-30 14:20:02 -04001458 if (cow_start != (u64)-1) {
Josef Bacik00361582013-08-14 14:02:47 -04001459 ret = cow_file_range(inode, locked_page, cow_start, end,
1460 page_started, nr_written, 1);
Josef Bacikd788a342013-10-25 16:55:08 -04001461 if (ret)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001462 goto error;
Yan Zheng80ff3852008-10-30 14:20:02 -04001463 }
1464
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001465error:
Miao Xiea698d0752012-09-20 01:51:59 -06001466 err = btrfs_end_transaction(trans, root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001467 if (!ret)
1468 ret = err;
1469
Josef Bacik17ca04a2012-05-31 15:58:55 -04001470 if (ret && cur_offset < end)
Josef Bacikc2790a22013-07-29 11:20:47 -04001471 extent_clear_unlock_delalloc(inode, cur_offset, end,
1472 locked_page, EXTENT_LOCKED |
Josef Bacik151a41b2013-07-29 13:22:24 -04001473 EXTENT_DELALLOC | EXTENT_DEFRAG |
1474 EXTENT_DO_ACCOUNTING, PAGE_UNLOCK |
1475 PAGE_CLEAR_DIRTY |
Josef Bacikc2790a22013-07-29 11:20:47 -04001476 PAGE_SET_WRITEBACK |
1477 PAGE_END_WRITEBACK);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001478 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001479 return ret;
Chris Masonbe20aa92007-12-17 20:14:01 -05001480}
1481
Wang Shilong47059d92014-07-03 18:22:07 +08001482static inline int need_force_cow(struct inode *inode, u64 start, u64 end)
1483{
1484
1485 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) &&
1486 !(BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC))
1487 return 0;
1488
1489 /*
1490 * @defrag_bytes is a hint value, no spinlock held here,
1491 * if is not zero, it means the file is defragging.
1492 * Force cow if given extent needs to be defragged.
1493 */
1494 if (BTRFS_I(inode)->defrag_bytes &&
1495 test_range_bit(&BTRFS_I(inode)->io_tree, start, end,
1496 EXTENT_DEFRAG, 0, NULL))
1497 return 1;
1498
1499 return 0;
1500}
1501
Chris Masond352ac62008-09-29 15:18:18 -04001502/*
1503 * extent_io.c call back to do delayed allocation processing
1504 */
Chris Masonc8b97812008-10-29 14:49:59 -04001505static int run_delalloc_range(struct inode *inode, struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001506 u64 start, u64 end, int *page_started,
1507 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001508{
Chris Masonbe20aa92007-12-17 20:14:01 -05001509 int ret;
Wang Shilong47059d92014-07-03 18:22:07 +08001510 int force_cow = need_force_cow(inode, start, end);
Chris Masona2135012008-06-25 16:01:30 -04001511
Wang Shilong47059d92014-07-03 18:22:07 +08001512 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW && !force_cow) {
Chris Masonc8b97812008-10-29 14:49:59 -04001513 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001514 page_started, 1, nr_written);
Wang Shilong47059d92014-07-03 18:22:07 +08001515 } else if (BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC && !force_cow) {
Yan Zhengd899e052008-10-30 14:25:28 -04001516 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001517 page_started, 0, nr_written);
Wang Shilong78160302014-07-17 11:44:10 +08001518 } else if (!inode_need_compress(inode)) {
Chris Mason7f366cf2009-03-12 20:12:45 -04001519 ret = cow_file_range(inode, locked_page, start, end,
1520 page_started, nr_written, 1);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001521 } else {
1522 set_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
1523 &BTRFS_I(inode)->runtime_flags);
Chris Mason771ed682008-11-06 22:02:51 -05001524 ret = cow_file_range_async(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001525 page_started, nr_written);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001526 }
Chris Masonb888db22007-08-27 16:49:44 -04001527 return ret;
1528}
1529
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001530static void btrfs_split_extent_hook(struct inode *inode,
1531 struct extent_state *orig, u64 split)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001532{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001533 /* not delalloc, ignore it */
Josef Bacik9ed74f22009-09-11 16:12:44 -04001534 if (!(orig->state & EXTENT_DELALLOC))
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001535 return;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001536
Josef Bacik9e0baf62011-07-15 15:16:44 +00001537 spin_lock(&BTRFS_I(inode)->lock);
1538 BTRFS_I(inode)->outstanding_extents++;
1539 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001540}
1541
1542/*
1543 * extent_io.c merge_extent_hook, used to track merged delayed allocation
1544 * extents so we can keep track of new extents that are just merged onto old
1545 * extents, such as when we are doing sequential writes, so we can properly
1546 * account for the metadata space we'll need.
1547 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001548static void btrfs_merge_extent_hook(struct inode *inode,
1549 struct extent_state *new,
1550 struct extent_state *other)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001551{
Josef Bacik9ed74f22009-09-11 16:12:44 -04001552 /* not delalloc, ignore it */
1553 if (!(other->state & EXTENT_DELALLOC))
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001554 return;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001555
Josef Bacik9e0baf62011-07-15 15:16:44 +00001556 spin_lock(&BTRFS_I(inode)->lock);
1557 BTRFS_I(inode)->outstanding_extents--;
1558 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001559}
1560
Miao Xieeb73c1b2013-05-15 07:48:22 +00001561static void btrfs_add_delalloc_inodes(struct btrfs_root *root,
1562 struct inode *inode)
1563{
1564 spin_lock(&root->delalloc_lock);
1565 if (list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1566 list_add_tail(&BTRFS_I(inode)->delalloc_inodes,
1567 &root->delalloc_inodes);
1568 set_bit(BTRFS_INODE_IN_DELALLOC_LIST,
1569 &BTRFS_I(inode)->runtime_flags);
1570 root->nr_delalloc_inodes++;
1571 if (root->nr_delalloc_inodes == 1) {
1572 spin_lock(&root->fs_info->delalloc_root_lock);
1573 BUG_ON(!list_empty(&root->delalloc_root));
1574 list_add_tail(&root->delalloc_root,
1575 &root->fs_info->delalloc_roots);
1576 spin_unlock(&root->fs_info->delalloc_root_lock);
1577 }
1578 }
1579 spin_unlock(&root->delalloc_lock);
1580}
1581
1582static void btrfs_del_delalloc_inode(struct btrfs_root *root,
1583 struct inode *inode)
1584{
1585 spin_lock(&root->delalloc_lock);
1586 if (!list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1587 list_del_init(&BTRFS_I(inode)->delalloc_inodes);
1588 clear_bit(BTRFS_INODE_IN_DELALLOC_LIST,
1589 &BTRFS_I(inode)->runtime_flags);
1590 root->nr_delalloc_inodes--;
1591 if (!root->nr_delalloc_inodes) {
1592 spin_lock(&root->fs_info->delalloc_root_lock);
1593 BUG_ON(list_empty(&root->delalloc_root));
1594 list_del_init(&root->delalloc_root);
1595 spin_unlock(&root->fs_info->delalloc_root_lock);
1596 }
1597 }
1598 spin_unlock(&root->delalloc_lock);
1599}
1600
Chris Masond352ac62008-09-29 15:18:18 -04001601/*
1602 * extent_io.c set_bit_hook, used to track delayed allocation
1603 * bytes in this file, and to maintain the list of inodes that
1604 * have pending delalloc work to be done.
1605 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001606static void btrfs_set_bit_hook(struct inode *inode,
David Sterba9ee49a042015-01-14 19:52:13 +01001607 struct extent_state *state, unsigned *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001608{
Josef Bacik9ed74f22009-09-11 16:12:44 -04001609
Wang Shilong47059d92014-07-03 18:22:07 +08001610 if ((*bits & EXTENT_DEFRAG) && !(*bits & EXTENT_DELALLOC))
1611 WARN_ON(1);
Chris Mason75eff682008-12-15 15:54:40 -05001612 /*
1613 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00001614 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05001615 * bit, which is only set or cleared with irqs on
1616 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001617 if (!(state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001618 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001619 u64 len = state->end + 1 - state->start;
Liu Bo83eea1f2012-07-10 05:28:39 -06001620 bool do_list = !btrfs_is_free_space_inode(inode);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001621
Josef Bacik9e0baf62011-07-15 15:16:44 +00001622 if (*bits & EXTENT_FIRST_DELALLOC) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001623 *bits &= ~EXTENT_FIRST_DELALLOC;
Josef Bacik9e0baf62011-07-15 15:16:44 +00001624 } else {
1625 spin_lock(&BTRFS_I(inode)->lock);
1626 BTRFS_I(inode)->outstanding_extents++;
1627 spin_unlock(&BTRFS_I(inode)->lock);
1628 }
Josef Bacik287a0ab2010-03-19 18:07:23 +00001629
Miao Xie963d6782013-01-29 10:10:51 +00001630 __percpu_counter_add(&root->fs_info->delalloc_bytes, len,
1631 root->fs_info->delalloc_batch);
Miao Xiedf0af1a2013-01-29 10:11:59 +00001632 spin_lock(&BTRFS_I(inode)->lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001633 BTRFS_I(inode)->delalloc_bytes += len;
Wang Shilong47059d92014-07-03 18:22:07 +08001634 if (*bits & EXTENT_DEFRAG)
1635 BTRFS_I(inode)->defrag_bytes += len;
Miao Xiedf0af1a2013-01-29 10:11:59 +00001636 if (do_list && !test_bit(BTRFS_INODE_IN_DELALLOC_LIST,
Miao Xieeb73c1b2013-05-15 07:48:22 +00001637 &BTRFS_I(inode)->runtime_flags))
1638 btrfs_add_delalloc_inodes(root, inode);
Miao Xiedf0af1a2013-01-29 10:11:59 +00001639 spin_unlock(&BTRFS_I(inode)->lock);
Chris Mason291d6732008-01-29 15:55:23 -05001640 }
Chris Mason291d6732008-01-29 15:55:23 -05001641}
1642
Chris Masond352ac62008-09-29 15:18:18 -04001643/*
1644 * extent_io.c clear_bit_hook, see set_bit_hook for why
1645 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001646static void btrfs_clear_bit_hook(struct inode *inode,
David Sterba41074882013-04-29 13:38:46 +00001647 struct extent_state *state,
David Sterba9ee49a042015-01-14 19:52:13 +01001648 unsigned *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001649{
Wang Shilong47059d92014-07-03 18:22:07 +08001650 u64 len = state->end + 1 - state->start;
1651
1652 spin_lock(&BTRFS_I(inode)->lock);
1653 if ((state->state & EXTENT_DEFRAG) && (*bits & EXTENT_DEFRAG))
1654 BTRFS_I(inode)->defrag_bytes -= len;
1655 spin_unlock(&BTRFS_I(inode)->lock);
1656
Chris Mason75eff682008-12-15 15:54:40 -05001657 /*
1658 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00001659 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05001660 * bit, which is only set or cleared with irqs on
1661 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001662 if ((state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001663 struct btrfs_root *root = BTRFS_I(inode)->root;
Liu Bo83eea1f2012-07-10 05:28:39 -06001664 bool do_list = !btrfs_is_free_space_inode(inode);
Chris Masonbcbfce82008-04-22 13:26:47 -04001665
Josef Bacik9e0baf62011-07-15 15:16:44 +00001666 if (*bits & EXTENT_FIRST_DELALLOC) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001667 *bits &= ~EXTENT_FIRST_DELALLOC;
Josef Bacik9e0baf62011-07-15 15:16:44 +00001668 } else if (!(*bits & EXTENT_DO_ACCOUNTING)) {
1669 spin_lock(&BTRFS_I(inode)->lock);
1670 BTRFS_I(inode)->outstanding_extents--;
1671 spin_unlock(&BTRFS_I(inode)->lock);
1672 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001673
Josef Bacikb6d08f02013-09-27 14:57:43 -04001674 /*
1675 * We don't reserve metadata space for space cache inodes so we
1676 * don't need to call dellalloc_release_metadata if there is an
1677 * error.
1678 */
1679 if (*bits & EXTENT_DO_ACCOUNTING &&
1680 root != root->fs_info->tree_root)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001681 btrfs_delalloc_release_metadata(inode, len);
1682
Josef Bacik0cb59c92010-07-02 12:14:14 -04001683 if (root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID
Josef Bacik7ee9e442013-06-21 16:37:03 -04001684 && do_list && !(state->state & EXTENT_NORESERVE))
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001685 btrfs_free_reserved_data_space(inode, len);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001686
Miao Xie963d6782013-01-29 10:10:51 +00001687 __percpu_counter_add(&root->fs_info->delalloc_bytes, -len,
1688 root->fs_info->delalloc_batch);
Miao Xiedf0af1a2013-01-29 10:11:59 +00001689 spin_lock(&BTRFS_I(inode)->lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001690 BTRFS_I(inode)->delalloc_bytes -= len;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001691 if (do_list && BTRFS_I(inode)->delalloc_bytes == 0 &&
Miao Xiedf0af1a2013-01-29 10:11:59 +00001692 test_bit(BTRFS_INODE_IN_DELALLOC_LIST,
Miao Xieeb73c1b2013-05-15 07:48:22 +00001693 &BTRFS_I(inode)->runtime_flags))
1694 btrfs_del_delalloc_inode(root, inode);
Miao Xiedf0af1a2013-01-29 10:11:59 +00001695 spin_unlock(&BTRFS_I(inode)->lock);
Chris Mason291d6732008-01-29 15:55:23 -05001696 }
Chris Mason291d6732008-01-29 15:55:23 -05001697}
1698
Chris Masond352ac62008-09-29 15:18:18 -04001699/*
1700 * extent_io.c merge_bio_hook, this must check the chunk tree to make sure
1701 * we don't create bios that span stripes or chunks
1702 */
David Woodhouse64a16702009-07-15 23:29:37 +01001703int btrfs_merge_bio_hook(int rw, struct page *page, unsigned long offset,
Chris Masonc8b97812008-10-29 14:49:59 -04001704 size_t size, struct bio *bio,
1705 unsigned long bio_flags)
Chris Mason239b14b2008-03-24 15:02:07 -04001706{
1707 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
Kent Overstreet4f024f32013-10-11 15:44:27 -07001708 u64 logical = (u64)bio->bi_iter.bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -04001709 u64 length = 0;
1710 u64 map_length;
Chris Mason239b14b2008-03-24 15:02:07 -04001711 int ret;
1712
Chris Mason771ed682008-11-06 22:02:51 -05001713 if (bio_flags & EXTENT_BIO_COMPRESSED)
1714 return 0;
1715
Kent Overstreet4f024f32013-10-11 15:44:27 -07001716 length = bio->bi_iter.bi_size;
Chris Mason239b14b2008-03-24 15:02:07 -04001717 map_length = length;
David Woodhouse64a16702009-07-15 23:29:37 +01001718 ret = btrfs_map_block(root->fs_info, rw, logical,
Chris Masonf1885912008-04-09 16:28:12 -04001719 &map_length, NULL, 0);
Stefan Behrens3ec706c2012-11-05 15:46:42 +01001720 /* Will always return 0 with map_multi == NULL */
Jeff Mahoney3444a972011-10-03 23:23:13 -04001721 BUG_ON(ret < 0);
Chris Masond3977122009-01-05 21:25:51 -05001722 if (map_length < length + size)
Chris Mason239b14b2008-03-24 15:02:07 -04001723 return 1;
Jeff Mahoney3444a972011-10-03 23:23:13 -04001724 return 0;
Chris Mason239b14b2008-03-24 15:02:07 -04001725}
1726
Chris Masond352ac62008-09-29 15:18:18 -04001727/*
1728 * in order to insert checksums into the metadata in large chunks,
1729 * we wait until bio submission time. All the pages in the bio are
1730 * checksummed and sums are attached onto the ordered extent record.
1731 *
1732 * At IO completion time the cums attached on the ordered extent record
1733 * are inserted into the btree
1734 */
Chris Masond3977122009-01-05 21:25:51 -05001735static int __btrfs_submit_bio_start(struct inode *inode, int rw,
1736 struct bio *bio, int mirror_num,
Chris Masoneaf25d92010-05-25 09:48:28 -04001737 unsigned long bio_flags,
1738 u64 bio_offset)
Chris Mason065631f2008-02-20 12:07:25 -05001739{
Chris Mason065631f2008-02-20 12:07:25 -05001740 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason065631f2008-02-20 12:07:25 -05001741 int ret = 0;
Chris Masone0156402008-04-16 11:15:20 -04001742
Chris Masond20f7042008-12-08 16:58:54 -05001743 ret = btrfs_csum_one_bio(root, inode, bio, 0, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001744 BUG_ON(ret); /* -ENOMEM */
Chris Mason4a69a412008-11-06 22:03:00 -05001745 return 0;
1746}
Chris Masone0156402008-04-16 11:15:20 -04001747
Chris Mason4a69a412008-11-06 22:03:00 -05001748/*
1749 * in order to insert checksums into the metadata in large chunks,
1750 * we wait until bio submission time. All the pages in the bio are
1751 * checksummed and sums are attached onto the ordered extent record.
1752 *
1753 * At IO completion time the cums attached on the ordered extent record
1754 * are inserted into the btree
1755 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001756static int __btrfs_submit_bio_done(struct inode *inode, int rw, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001757 int mirror_num, unsigned long bio_flags,
1758 u64 bio_offset)
Chris Mason4a69a412008-11-06 22:03:00 -05001759{
1760 struct btrfs_root *root = BTRFS_I(inode)->root;
Stefan Behrens61891922012-11-05 18:51:52 +01001761 int ret;
1762
1763 ret = btrfs_map_bio(root, rw, bio, mirror_num, 1);
1764 if (ret)
1765 bio_endio(bio, ret);
1766 return ret;
Chris Mason44b8bd72008-04-16 11:14:51 -04001767}
1768
Chris Masond352ac62008-09-29 15:18:18 -04001769/*
Chris Masoncad321a2008-12-17 14:51:42 -05001770 * extent_io.c submission hook. This does the right thing for csum calculation
1771 * on write, or reading the csums from the tree before a read
Chris Masond352ac62008-09-29 15:18:18 -04001772 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001773static int btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001774 int mirror_num, unsigned long bio_flags,
1775 u64 bio_offset)
Chris Mason44b8bd72008-04-16 11:14:51 -04001776{
1777 struct btrfs_root *root = BTRFS_I(inode)->root;
1778 int ret = 0;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001779 int skip_sum;
Jeff Mahoney04173412011-10-03 23:23:12 -04001780 int metadata = 0;
Josef Bacikb812ce22012-11-16 13:56:32 -05001781 int async = !atomic_read(&BTRFS_I(inode)->sync_writers);
Chris Mason44b8bd72008-04-16 11:14:51 -04001782
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001783 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
Chris Masoncad321a2008-12-17 14:51:42 -05001784
Liu Bo83eea1f2012-07-10 05:28:39 -06001785 if (btrfs_is_free_space_inode(inode))
Jeff Mahoney04173412011-10-03 23:23:12 -04001786 metadata = 2;
1787
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001788 if (!(rw & REQ_WRITE)) {
Josef Bacik5fd02042012-05-02 14:00:54 -04001789 ret = btrfs_bio_wq_end_io(root->fs_info, bio, metadata);
1790 if (ret)
Stefan Behrens61891922012-11-05 18:51:52 +01001791 goto out;
Josef Bacik5fd02042012-05-02 14:00:54 -04001792
Chris Masond20f7042008-12-08 16:58:54 -05001793 if (bio_flags & EXTENT_BIO_COMPRESSED) {
Stefan Behrens61891922012-11-05 18:51:52 +01001794 ret = btrfs_submit_compressed_read(inode, bio,
1795 mirror_num,
1796 bio_flags);
1797 goto out;
Tsutomu Itohc2db1072011-03-01 06:48:31 +00001798 } else if (!skip_sum) {
1799 ret = btrfs_lookup_bio_sums(root, inode, bio, NULL);
1800 if (ret)
Stefan Behrens61891922012-11-05 18:51:52 +01001801 goto out;
Tsutomu Itohc2db1072011-03-01 06:48:31 +00001802 }
Chris Mason4d1b5fb2008-08-20 09:44:52 -04001803 goto mapit;
Josef Bacikb812ce22012-11-16 13:56:32 -05001804 } else if (async && !skip_sum) {
Yan Zheng17d217f2008-12-12 10:03:38 -05001805 /* csum items have already been cloned */
1806 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
1807 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001808 /* we're doing a write, do the async checksumming */
Stefan Behrens61891922012-11-05 18:51:52 +01001809 ret = btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
Chris Mason44b8bd72008-04-16 11:14:51 -04001810 inode, rw, bio, mirror_num,
Chris Masoneaf25d92010-05-25 09:48:28 -04001811 bio_flags, bio_offset,
1812 __btrfs_submit_bio_start,
Chris Mason4a69a412008-11-06 22:03:00 -05001813 __btrfs_submit_bio_done);
Stefan Behrens61891922012-11-05 18:51:52 +01001814 goto out;
Josef Bacikb812ce22012-11-16 13:56:32 -05001815 } else if (!skip_sum) {
1816 ret = btrfs_csum_one_bio(root, inode, bio, 0, 0);
1817 if (ret)
1818 goto out;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001819 }
1820
Chris Mason0b86a832008-03-24 15:01:56 -04001821mapit:
Stefan Behrens61891922012-11-05 18:51:52 +01001822 ret = btrfs_map_bio(root, rw, bio, mirror_num, 0);
1823
1824out:
1825 if (ret < 0)
1826 bio_endio(bio, ret);
1827 return ret;
Chris Mason065631f2008-02-20 12:07:25 -05001828}
Chris Mason6885f302008-02-20 16:11:05 -05001829
Chris Masond352ac62008-09-29 15:18:18 -04001830/*
1831 * given a list of ordered sums record them in the inode. This happens
1832 * at IO completion time based on sums calculated at bio submission time.
1833 */
Chris Masonba1da2f2008-07-17 12:54:15 -04001834static noinline int add_pending_csums(struct btrfs_trans_handle *trans,
Chris Masone6dcd2d2008-07-17 12:53:50 -04001835 struct inode *inode, u64 file_offset,
1836 struct list_head *list)
1837{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001838 struct btrfs_ordered_sum *sum;
1839
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001840 list_for_each_entry(sum, list, list) {
Miao Xie39847c42013-03-28 08:08:20 +00001841 trans->adding_csums = 1;
Chris Masond20f7042008-12-08 16:58:54 -05001842 btrfs_csum_file_blocks(trans,
1843 BTRFS_I(inode)->root->fs_info->csum_root, sum);
Miao Xie39847c42013-03-28 08:08:20 +00001844 trans->adding_csums = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001845 }
1846 return 0;
1847}
1848
Josef Bacik2ac55d42010-02-03 19:33:23 +00001849int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end,
1850 struct extent_state **cached_state)
Chris Masonea8c2812008-08-04 23:17:27 -04001851{
Julia Lawall6c1500f2012-11-03 20:30:18 +00001852 WARN_ON((end & (PAGE_CACHE_SIZE - 1)) == 0);
Chris Masonea8c2812008-08-04 23:17:27 -04001853 return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001854 cached_state, GFP_NOFS);
Chris Masonea8c2812008-08-04 23:17:27 -04001855}
1856
Chris Masond352ac62008-09-29 15:18:18 -04001857/* see btrfs_writepage_start_hook for details on why this is required */
Chris Mason247e7432008-07-17 12:53:51 -04001858struct btrfs_writepage_fixup {
1859 struct page *page;
1860 struct btrfs_work work;
1861};
1862
Christoph Hellwigb2950862008-12-02 09:54:17 -05001863static void btrfs_writepage_fixup_worker(struct btrfs_work *work)
Chris Mason247e7432008-07-17 12:53:51 -04001864{
1865 struct btrfs_writepage_fixup *fixup;
1866 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00001867 struct extent_state *cached_state = NULL;
Chris Mason247e7432008-07-17 12:53:51 -04001868 struct page *page;
1869 struct inode *inode;
1870 u64 page_start;
1871 u64 page_end;
Jeff Mahoney87826df2012-02-15 16:23:57 +01001872 int ret;
Chris Mason247e7432008-07-17 12:53:51 -04001873
1874 fixup = container_of(work, struct btrfs_writepage_fixup, work);
1875 page = fixup->page;
Chris Mason4a096752008-07-21 10:29:44 -04001876again:
Chris Mason247e7432008-07-17 12:53:51 -04001877 lock_page(page);
1878 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
1879 ClearPageChecked(page);
1880 goto out_page;
1881 }
1882
1883 inode = page->mapping->host;
1884 page_start = page_offset(page);
1885 page_end = page_offset(page) + PAGE_CACHE_SIZE - 1;
1886
Josef Bacik2ac55d42010-02-03 19:33:23 +00001887 lock_extent_bits(&BTRFS_I(inode)->io_tree, page_start, page_end, 0,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001888 &cached_state);
Chris Mason4a096752008-07-21 10:29:44 -04001889
1890 /* already ordered? We're done */
Chris Mason8b62b722009-09-02 16:53:46 -04001891 if (PagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001892 goto out;
Chris Mason4a096752008-07-21 10:29:44 -04001893
1894 ordered = btrfs_lookup_ordered_extent(inode, page_start);
1895 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00001896 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start,
1897 page_end, &cached_state, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -04001898 unlock_page(page);
1899 btrfs_start_ordered_extent(inode, ordered, 1);
Jeff Mahoney87826df2012-02-15 16:23:57 +01001900 btrfs_put_ordered_extent(ordered);
Chris Mason4a096752008-07-21 10:29:44 -04001901 goto again;
1902 }
Chris Mason247e7432008-07-17 12:53:51 -04001903
Jeff Mahoney87826df2012-02-15 16:23:57 +01001904 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
1905 if (ret) {
1906 mapping_set_error(page->mapping, ret);
1907 end_extent_writepage(page, ret, page_start, page_end);
1908 ClearPageChecked(page);
1909 goto out;
1910 }
1911
Josef Bacik2ac55d42010-02-03 19:33:23 +00001912 btrfs_set_extent_delalloc(inode, page_start, page_end, &cached_state);
Chris Mason247e7432008-07-17 12:53:51 -04001913 ClearPageChecked(page);
Jeff Mahoney87826df2012-02-15 16:23:57 +01001914 set_page_dirty(page);
Chris Mason247e7432008-07-17 12:53:51 -04001915out:
Josef Bacik2ac55d42010-02-03 19:33:23 +00001916 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start, page_end,
1917 &cached_state, GFP_NOFS);
Chris Mason247e7432008-07-17 12:53:51 -04001918out_page:
1919 unlock_page(page);
1920 page_cache_release(page);
Miao Xieb897abe2011-01-26 16:19:22 +08001921 kfree(fixup);
Chris Mason247e7432008-07-17 12:53:51 -04001922}
1923
1924/*
1925 * There are a few paths in the higher layers of the kernel that directly
1926 * set the page dirty bit without asking the filesystem if it is a
1927 * good idea. This causes problems because we want to make sure COW
1928 * properly happens and the data=ordered rules are followed.
1929 *
Chris Masonc8b97812008-10-29 14:49:59 -04001930 * In our case any range that doesn't have the ORDERED bit set
Chris Mason247e7432008-07-17 12:53:51 -04001931 * hasn't been properly setup for IO. We kick off an async process
1932 * to fix it up. The async helper will wait for ordered extents, set
1933 * the delalloc bit and make it safe to write the page.
1934 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001935static int btrfs_writepage_start_hook(struct page *page, u64 start, u64 end)
Chris Mason247e7432008-07-17 12:53:51 -04001936{
1937 struct inode *inode = page->mapping->host;
1938 struct btrfs_writepage_fixup *fixup;
1939 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason247e7432008-07-17 12:53:51 -04001940
Chris Mason8b62b722009-09-02 16:53:46 -04001941 /* this page is properly in the ordered list */
1942 if (TestClearPagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001943 return 0;
1944
1945 if (PageChecked(page))
1946 return -EAGAIN;
1947
1948 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
1949 if (!fixup)
1950 return -EAGAIN;
Chris Masonf4219502008-07-22 11:18:09 -04001951
Chris Mason247e7432008-07-17 12:53:51 -04001952 SetPageChecked(page);
1953 page_cache_get(page);
Liu Bo9e0af232014-08-15 23:36:53 +08001954 btrfs_init_work(&fixup->work, btrfs_fixup_helper,
1955 btrfs_writepage_fixup_worker, NULL, NULL);
Chris Mason247e7432008-07-17 12:53:51 -04001956 fixup->page = page;
Qu Wenruodc6e3202014-02-28 10:46:14 +08001957 btrfs_queue_work(root->fs_info->fixup_workers, &fixup->work);
Jeff Mahoney87826df2012-02-15 16:23:57 +01001958 return -EBUSY;
Chris Mason247e7432008-07-17 12:53:51 -04001959}
1960
Yan Zhengd899e052008-10-30 14:25:28 -04001961static int insert_reserved_file_extent(struct btrfs_trans_handle *trans,
1962 struct inode *inode, u64 file_pos,
1963 u64 disk_bytenr, u64 disk_num_bytes,
1964 u64 num_bytes, u64 ram_bytes,
1965 u8 compression, u8 encryption,
1966 u16 other_encoding, int extent_type)
1967{
1968 struct btrfs_root *root = BTRFS_I(inode)->root;
1969 struct btrfs_file_extent_item *fi;
1970 struct btrfs_path *path;
1971 struct extent_buffer *leaf;
1972 struct btrfs_key ins;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001973 int extent_inserted = 0;
Yan Zhengd899e052008-10-30 14:25:28 -04001974 int ret;
1975
1976 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07001977 if (!path)
1978 return -ENOMEM;
Yan Zhengd899e052008-10-30 14:25:28 -04001979
Chris Masona1ed8352009-09-11 12:27:37 -04001980 /*
1981 * we may be replacing one extent in the tree with another.
1982 * The new extent is pinned in the extent map, and we don't want
1983 * to drop it from the cache until it is completely in the btree.
1984 *
1985 * So, tell btrfs_drop_extents to leave this extent in the cache.
1986 * the caller is expected to unpin it and allow it to be merged
1987 * with the others.
1988 */
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001989 ret = __btrfs_drop_extents(trans, root, inode, path, file_pos,
1990 file_pos + num_bytes, NULL, 0,
1991 1, sizeof(*fi), &extent_inserted);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001992 if (ret)
1993 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -04001994
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001995 if (!extent_inserted) {
1996 ins.objectid = btrfs_ino(inode);
1997 ins.offset = file_pos;
1998 ins.type = BTRFS_EXTENT_DATA_KEY;
1999
2000 path->leave_spinning = 1;
2001 ret = btrfs_insert_empty_item(trans, root, path, &ins,
2002 sizeof(*fi));
2003 if (ret)
2004 goto out;
2005 }
Yan Zhengd899e052008-10-30 14:25:28 -04002006 leaf = path->nodes[0];
2007 fi = btrfs_item_ptr(leaf, path->slots[0],
2008 struct btrfs_file_extent_item);
2009 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
2010 btrfs_set_file_extent_type(leaf, fi, extent_type);
2011 btrfs_set_file_extent_disk_bytenr(leaf, fi, disk_bytenr);
2012 btrfs_set_file_extent_disk_num_bytes(leaf, fi, disk_num_bytes);
2013 btrfs_set_file_extent_offset(leaf, fi, 0);
2014 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
2015 btrfs_set_file_extent_ram_bytes(leaf, fi, ram_bytes);
2016 btrfs_set_file_extent_compression(leaf, fi, compression);
2017 btrfs_set_file_extent_encryption(leaf, fi, encryption);
2018 btrfs_set_file_extent_other_encoding(leaf, fi, other_encoding);
Chris Masonb9473432009-03-13 11:00:37 -04002019
Yan Zhengd899e052008-10-30 14:25:28 -04002020 btrfs_mark_buffer_dirty(leaf);
Josef Bacikce195332012-09-25 15:26:16 -04002021 btrfs_release_path(path);
Yan Zhengd899e052008-10-30 14:25:28 -04002022
2023 inode_add_bytes(inode, num_bytes);
Yan Zhengd899e052008-10-30 14:25:28 -04002024
2025 ins.objectid = disk_bytenr;
2026 ins.offset = disk_num_bytes;
2027 ins.type = BTRFS_EXTENT_ITEM_KEY;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002028 ret = btrfs_alloc_reserved_file_extent(trans, root,
2029 root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08002030 btrfs_ino(inode), file_pos, &ins);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002031out:
Yan Zhengd899e052008-10-30 14:25:28 -04002032 btrfs_free_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04002033
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002034 return ret;
Yan Zhengd899e052008-10-30 14:25:28 -04002035}
2036
Liu Bo38c227d2013-01-29 03:18:40 +00002037/* snapshot-aware defrag */
2038struct sa_defrag_extent_backref {
2039 struct rb_node node;
2040 struct old_sa_defrag_extent *old;
2041 u64 root_id;
2042 u64 inum;
2043 u64 file_pos;
2044 u64 extent_offset;
2045 u64 num_bytes;
2046 u64 generation;
2047};
2048
2049struct old_sa_defrag_extent {
2050 struct list_head list;
2051 struct new_sa_defrag_extent *new;
2052
2053 u64 extent_offset;
2054 u64 bytenr;
2055 u64 offset;
2056 u64 len;
2057 int count;
2058};
2059
2060struct new_sa_defrag_extent {
2061 struct rb_root root;
2062 struct list_head head;
2063 struct btrfs_path *path;
2064 struct inode *inode;
2065 u64 file_pos;
2066 u64 len;
2067 u64 bytenr;
2068 u64 disk_len;
2069 u8 compress_type;
2070};
2071
2072static int backref_comp(struct sa_defrag_extent_backref *b1,
2073 struct sa_defrag_extent_backref *b2)
2074{
2075 if (b1->root_id < b2->root_id)
2076 return -1;
2077 else if (b1->root_id > b2->root_id)
2078 return 1;
2079
2080 if (b1->inum < b2->inum)
2081 return -1;
2082 else if (b1->inum > b2->inum)
2083 return 1;
2084
2085 if (b1->file_pos < b2->file_pos)
2086 return -1;
2087 else if (b1->file_pos > b2->file_pos)
2088 return 1;
2089
2090 /*
2091 * [------------------------------] ===> (a range of space)
2092 * |<--->| |<---->| =============> (fs/file tree A)
2093 * |<---------------------------->| ===> (fs/file tree B)
2094 *
2095 * A range of space can refer to two file extents in one tree while
2096 * refer to only one file extent in another tree.
2097 *
2098 * So we may process a disk offset more than one time(two extents in A)
2099 * and locate at the same extent(one extent in B), then insert two same
2100 * backrefs(both refer to the extent in B).
2101 */
2102 return 0;
2103}
2104
2105static void backref_insert(struct rb_root *root,
2106 struct sa_defrag_extent_backref *backref)
2107{
2108 struct rb_node **p = &root->rb_node;
2109 struct rb_node *parent = NULL;
2110 struct sa_defrag_extent_backref *entry;
2111 int ret;
2112
2113 while (*p) {
2114 parent = *p;
2115 entry = rb_entry(parent, struct sa_defrag_extent_backref, node);
2116
2117 ret = backref_comp(backref, entry);
2118 if (ret < 0)
2119 p = &(*p)->rb_left;
2120 else
2121 p = &(*p)->rb_right;
2122 }
2123
2124 rb_link_node(&backref->node, parent, p);
2125 rb_insert_color(&backref->node, root);
2126}
2127
2128/*
2129 * Note the backref might has changed, and in this case we just return 0.
2130 */
2131static noinline int record_one_backref(u64 inum, u64 offset, u64 root_id,
2132 void *ctx)
2133{
2134 struct btrfs_file_extent_item *extent;
2135 struct btrfs_fs_info *fs_info;
2136 struct old_sa_defrag_extent *old = ctx;
2137 struct new_sa_defrag_extent *new = old->new;
2138 struct btrfs_path *path = new->path;
2139 struct btrfs_key key;
2140 struct btrfs_root *root;
2141 struct sa_defrag_extent_backref *backref;
2142 struct extent_buffer *leaf;
2143 struct inode *inode = new->inode;
2144 int slot;
2145 int ret;
2146 u64 extent_offset;
2147 u64 num_bytes;
2148
2149 if (BTRFS_I(inode)->root->root_key.objectid == root_id &&
2150 inum == btrfs_ino(inode))
2151 return 0;
2152
2153 key.objectid = root_id;
2154 key.type = BTRFS_ROOT_ITEM_KEY;
2155 key.offset = (u64)-1;
2156
2157 fs_info = BTRFS_I(inode)->root->fs_info;
2158 root = btrfs_read_fs_root_no_name(fs_info, &key);
2159 if (IS_ERR(root)) {
2160 if (PTR_ERR(root) == -ENOENT)
2161 return 0;
2162 WARN_ON(1);
2163 pr_debug("inum=%llu, offset=%llu, root_id=%llu\n",
2164 inum, offset, root_id);
2165 return PTR_ERR(root);
2166 }
2167
2168 key.objectid = inum;
2169 key.type = BTRFS_EXTENT_DATA_KEY;
2170 if (offset > (u64)-1 << 32)
2171 key.offset = 0;
2172 else
2173 key.offset = offset;
2174
2175 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05302176 if (WARN_ON(ret < 0))
Liu Bo38c227d2013-01-29 03:18:40 +00002177 return ret;
Josef Bacik50f13192013-07-22 12:50:37 -04002178 ret = 0;
Liu Bo38c227d2013-01-29 03:18:40 +00002179
2180 while (1) {
2181 cond_resched();
2182
2183 leaf = path->nodes[0];
2184 slot = path->slots[0];
2185
2186 if (slot >= btrfs_header_nritems(leaf)) {
2187 ret = btrfs_next_leaf(root, path);
2188 if (ret < 0) {
2189 goto out;
2190 } else if (ret > 0) {
2191 ret = 0;
2192 goto out;
2193 }
2194 continue;
2195 }
2196
2197 path->slots[0]++;
2198
2199 btrfs_item_key_to_cpu(leaf, &key, slot);
2200
2201 if (key.objectid > inum)
2202 goto out;
2203
2204 if (key.objectid < inum || key.type != BTRFS_EXTENT_DATA_KEY)
2205 continue;
2206
2207 extent = btrfs_item_ptr(leaf, slot,
2208 struct btrfs_file_extent_item);
2209
2210 if (btrfs_file_extent_disk_bytenr(leaf, extent) != old->bytenr)
2211 continue;
2212
Liu Boe68afa42013-07-01 22:13:26 +08002213 /*
2214 * 'offset' refers to the exact key.offset,
2215 * NOT the 'offset' field in btrfs_extent_data_ref, ie.
2216 * (key.offset - extent_offset).
2217 */
2218 if (key.offset != offset)
Liu Bo38c227d2013-01-29 03:18:40 +00002219 continue;
2220
Liu Boe68afa42013-07-01 22:13:26 +08002221 extent_offset = btrfs_file_extent_offset(leaf, extent);
Liu Bo38c227d2013-01-29 03:18:40 +00002222 num_bytes = btrfs_file_extent_num_bytes(leaf, extent);
Liu Boe68afa42013-07-01 22:13:26 +08002223
Liu Bo38c227d2013-01-29 03:18:40 +00002224 if (extent_offset >= old->extent_offset + old->offset +
2225 old->len || extent_offset + num_bytes <=
2226 old->extent_offset + old->offset)
2227 continue;
Liu Bo38c227d2013-01-29 03:18:40 +00002228 break;
2229 }
2230
2231 backref = kmalloc(sizeof(*backref), GFP_NOFS);
2232 if (!backref) {
2233 ret = -ENOENT;
2234 goto out;
2235 }
2236
2237 backref->root_id = root_id;
2238 backref->inum = inum;
Liu Boe68afa42013-07-01 22:13:26 +08002239 backref->file_pos = offset;
Liu Bo38c227d2013-01-29 03:18:40 +00002240 backref->num_bytes = num_bytes;
2241 backref->extent_offset = extent_offset;
2242 backref->generation = btrfs_file_extent_generation(leaf, extent);
2243 backref->old = old;
2244 backref_insert(&new->root, backref);
2245 old->count++;
2246out:
2247 btrfs_release_path(path);
2248 WARN_ON(ret);
2249 return ret;
2250}
2251
2252static noinline bool record_extent_backrefs(struct btrfs_path *path,
2253 struct new_sa_defrag_extent *new)
2254{
2255 struct btrfs_fs_info *fs_info = BTRFS_I(new->inode)->root->fs_info;
2256 struct old_sa_defrag_extent *old, *tmp;
2257 int ret;
2258
2259 new->path = path;
2260
2261 list_for_each_entry_safe(old, tmp, &new->head, list) {
Liu Boe68afa42013-07-01 22:13:26 +08002262 ret = iterate_inodes_from_logical(old->bytenr +
2263 old->extent_offset, fs_info,
Liu Bo38c227d2013-01-29 03:18:40 +00002264 path, record_one_backref,
2265 old);
Josef Bacik4724b102013-11-05 11:11:40 -05002266 if (ret < 0 && ret != -ENOENT)
2267 return false;
Liu Bo38c227d2013-01-29 03:18:40 +00002268
2269 /* no backref to be processed for this extent */
2270 if (!old->count) {
2271 list_del(&old->list);
2272 kfree(old);
2273 }
2274 }
2275
2276 if (list_empty(&new->head))
2277 return false;
2278
2279 return true;
2280}
2281
2282static int relink_is_mergable(struct extent_buffer *leaf,
2283 struct btrfs_file_extent_item *fi,
Liu Bo116e0022013-08-02 16:30:40 +08002284 struct new_sa_defrag_extent *new)
Liu Bo38c227d2013-01-29 03:18:40 +00002285{
Liu Bo116e0022013-08-02 16:30:40 +08002286 if (btrfs_file_extent_disk_bytenr(leaf, fi) != new->bytenr)
Liu Bo38c227d2013-01-29 03:18:40 +00002287 return 0;
2288
2289 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG)
2290 return 0;
2291
Liu Bo116e0022013-08-02 16:30:40 +08002292 if (btrfs_file_extent_compression(leaf, fi) != new->compress_type)
2293 return 0;
2294
2295 if (btrfs_file_extent_encryption(leaf, fi) ||
Liu Bo38c227d2013-01-29 03:18:40 +00002296 btrfs_file_extent_other_encoding(leaf, fi))
2297 return 0;
2298
2299 return 1;
2300}
2301
2302/*
2303 * Note the backref might has changed, and in this case we just return 0.
2304 */
2305static noinline int relink_extent_backref(struct btrfs_path *path,
2306 struct sa_defrag_extent_backref *prev,
2307 struct sa_defrag_extent_backref *backref)
2308{
2309 struct btrfs_file_extent_item *extent;
2310 struct btrfs_file_extent_item *item;
2311 struct btrfs_ordered_extent *ordered;
2312 struct btrfs_trans_handle *trans;
2313 struct btrfs_fs_info *fs_info;
2314 struct btrfs_root *root;
2315 struct btrfs_key key;
2316 struct extent_buffer *leaf;
2317 struct old_sa_defrag_extent *old = backref->old;
2318 struct new_sa_defrag_extent *new = old->new;
2319 struct inode *src_inode = new->inode;
2320 struct inode *inode;
2321 struct extent_state *cached = NULL;
2322 int ret = 0;
2323 u64 start;
2324 u64 len;
2325 u64 lock_start;
2326 u64 lock_end;
2327 bool merge = false;
2328 int index;
2329
2330 if (prev && prev->root_id == backref->root_id &&
2331 prev->inum == backref->inum &&
2332 prev->file_pos + prev->num_bytes == backref->file_pos)
2333 merge = true;
2334
2335 /* step 1: get root */
2336 key.objectid = backref->root_id;
2337 key.type = BTRFS_ROOT_ITEM_KEY;
2338 key.offset = (u64)-1;
2339
2340 fs_info = BTRFS_I(src_inode)->root->fs_info;
2341 index = srcu_read_lock(&fs_info->subvol_srcu);
2342
2343 root = btrfs_read_fs_root_no_name(fs_info, &key);
2344 if (IS_ERR(root)) {
2345 srcu_read_unlock(&fs_info->subvol_srcu, index);
2346 if (PTR_ERR(root) == -ENOENT)
2347 return 0;
2348 return PTR_ERR(root);
2349 }
Liu Bo38c227d2013-01-29 03:18:40 +00002350
Wang Shilongbcbba5e2014-02-08 23:46:35 +08002351 if (btrfs_root_readonly(root)) {
2352 srcu_read_unlock(&fs_info->subvol_srcu, index);
2353 return 0;
2354 }
2355
Liu Bo38c227d2013-01-29 03:18:40 +00002356 /* step 2: get inode */
2357 key.objectid = backref->inum;
2358 key.type = BTRFS_INODE_ITEM_KEY;
2359 key.offset = 0;
2360
2361 inode = btrfs_iget(fs_info->sb, &key, root, NULL);
2362 if (IS_ERR(inode)) {
2363 srcu_read_unlock(&fs_info->subvol_srcu, index);
2364 return 0;
2365 }
2366
2367 srcu_read_unlock(&fs_info->subvol_srcu, index);
2368
2369 /* step 3: relink backref */
2370 lock_start = backref->file_pos;
2371 lock_end = backref->file_pos + backref->num_bytes - 1;
2372 lock_extent_bits(&BTRFS_I(inode)->io_tree, lock_start, lock_end,
2373 0, &cached);
2374
2375 ordered = btrfs_lookup_first_ordered_extent(inode, lock_end);
2376 if (ordered) {
2377 btrfs_put_ordered_extent(ordered);
2378 goto out_unlock;
2379 }
2380
2381 trans = btrfs_join_transaction(root);
2382 if (IS_ERR(trans)) {
2383 ret = PTR_ERR(trans);
2384 goto out_unlock;
2385 }
2386
2387 key.objectid = backref->inum;
2388 key.type = BTRFS_EXTENT_DATA_KEY;
2389 key.offset = backref->file_pos;
2390
2391 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2392 if (ret < 0) {
2393 goto out_free_path;
2394 } else if (ret > 0) {
2395 ret = 0;
2396 goto out_free_path;
2397 }
2398
2399 extent = btrfs_item_ptr(path->nodes[0], path->slots[0],
2400 struct btrfs_file_extent_item);
2401
2402 if (btrfs_file_extent_generation(path->nodes[0], extent) !=
2403 backref->generation)
2404 goto out_free_path;
2405
2406 btrfs_release_path(path);
2407
2408 start = backref->file_pos;
2409 if (backref->extent_offset < old->extent_offset + old->offset)
2410 start += old->extent_offset + old->offset -
2411 backref->extent_offset;
2412
2413 len = min(backref->extent_offset + backref->num_bytes,
2414 old->extent_offset + old->offset + old->len);
2415 len -= max(backref->extent_offset, old->extent_offset + old->offset);
2416
2417 ret = btrfs_drop_extents(trans, root, inode, start,
2418 start + len, 1);
2419 if (ret)
2420 goto out_free_path;
2421again:
2422 key.objectid = btrfs_ino(inode);
2423 key.type = BTRFS_EXTENT_DATA_KEY;
2424 key.offset = start;
2425
Liu Boa09a0a72013-03-11 09:20:58 +00002426 path->leave_spinning = 1;
Liu Bo38c227d2013-01-29 03:18:40 +00002427 if (merge) {
2428 struct btrfs_file_extent_item *fi;
2429 u64 extent_len;
2430 struct btrfs_key found_key;
2431
Gui Hecheng3c9665d2014-01-23 13:41:09 +08002432 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
Liu Bo38c227d2013-01-29 03:18:40 +00002433 if (ret < 0)
2434 goto out_free_path;
2435
2436 path->slots[0]--;
2437 leaf = path->nodes[0];
2438 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2439
2440 fi = btrfs_item_ptr(leaf, path->slots[0],
2441 struct btrfs_file_extent_item);
2442 extent_len = btrfs_file_extent_num_bytes(leaf, fi);
2443
Liu Bo116e0022013-08-02 16:30:40 +08002444 if (extent_len + found_key.offset == start &&
2445 relink_is_mergable(leaf, fi, new)) {
Liu Bo38c227d2013-01-29 03:18:40 +00002446 btrfs_set_file_extent_num_bytes(leaf, fi,
2447 extent_len + len);
2448 btrfs_mark_buffer_dirty(leaf);
2449 inode_add_bytes(inode, len);
2450
2451 ret = 1;
2452 goto out_free_path;
2453 } else {
2454 merge = false;
2455 btrfs_release_path(path);
2456 goto again;
2457 }
2458 }
2459
2460 ret = btrfs_insert_empty_item(trans, root, path, &key,
2461 sizeof(*extent));
2462 if (ret) {
2463 btrfs_abort_transaction(trans, root, ret);
2464 goto out_free_path;
2465 }
2466
2467 leaf = path->nodes[0];
2468 item = btrfs_item_ptr(leaf, path->slots[0],
2469 struct btrfs_file_extent_item);
2470 btrfs_set_file_extent_disk_bytenr(leaf, item, new->bytenr);
2471 btrfs_set_file_extent_disk_num_bytes(leaf, item, new->disk_len);
2472 btrfs_set_file_extent_offset(leaf, item, start - new->file_pos);
2473 btrfs_set_file_extent_num_bytes(leaf, item, len);
2474 btrfs_set_file_extent_ram_bytes(leaf, item, new->len);
2475 btrfs_set_file_extent_generation(leaf, item, trans->transid);
2476 btrfs_set_file_extent_type(leaf, item, BTRFS_FILE_EXTENT_REG);
2477 btrfs_set_file_extent_compression(leaf, item, new->compress_type);
2478 btrfs_set_file_extent_encryption(leaf, item, 0);
2479 btrfs_set_file_extent_other_encoding(leaf, item, 0);
2480
2481 btrfs_mark_buffer_dirty(leaf);
2482 inode_add_bytes(inode, len);
Liu Boa09a0a72013-03-11 09:20:58 +00002483 btrfs_release_path(path);
Liu Bo38c227d2013-01-29 03:18:40 +00002484
2485 ret = btrfs_inc_extent_ref(trans, root, new->bytenr,
2486 new->disk_len, 0,
2487 backref->root_id, backref->inum,
2488 new->file_pos, 0); /* start - extent_offset */
2489 if (ret) {
2490 btrfs_abort_transaction(trans, root, ret);
2491 goto out_free_path;
2492 }
2493
2494 ret = 1;
2495out_free_path:
2496 btrfs_release_path(path);
Liu Boa09a0a72013-03-11 09:20:58 +00002497 path->leave_spinning = 0;
Liu Bo38c227d2013-01-29 03:18:40 +00002498 btrfs_end_transaction(trans, root);
2499out_unlock:
2500 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lock_start, lock_end,
2501 &cached, GFP_NOFS);
2502 iput(inode);
2503 return ret;
2504}
2505
Liu Bo6f519562013-10-29 10:45:05 +08002506static void free_sa_defrag_extent(struct new_sa_defrag_extent *new)
2507{
2508 struct old_sa_defrag_extent *old, *tmp;
2509
2510 if (!new)
2511 return;
2512
2513 list_for_each_entry_safe(old, tmp, &new->head, list) {
2514 list_del(&old->list);
2515 kfree(old);
2516 }
2517 kfree(new);
2518}
2519
Liu Bo38c227d2013-01-29 03:18:40 +00002520static void relink_file_extents(struct new_sa_defrag_extent *new)
2521{
2522 struct btrfs_path *path;
Liu Bo38c227d2013-01-29 03:18:40 +00002523 struct sa_defrag_extent_backref *backref;
2524 struct sa_defrag_extent_backref *prev = NULL;
2525 struct inode *inode;
2526 struct btrfs_root *root;
2527 struct rb_node *node;
2528 int ret;
2529
2530 inode = new->inode;
2531 root = BTRFS_I(inode)->root;
2532
2533 path = btrfs_alloc_path();
2534 if (!path)
2535 return;
2536
2537 if (!record_extent_backrefs(path, new)) {
2538 btrfs_free_path(path);
2539 goto out;
2540 }
2541 btrfs_release_path(path);
2542
2543 while (1) {
2544 node = rb_first(&new->root);
2545 if (!node)
2546 break;
2547 rb_erase(node, &new->root);
2548
2549 backref = rb_entry(node, struct sa_defrag_extent_backref, node);
2550
2551 ret = relink_extent_backref(path, prev, backref);
2552 WARN_ON(ret < 0);
2553
2554 kfree(prev);
2555
2556 if (ret == 1)
2557 prev = backref;
2558 else
2559 prev = NULL;
2560 cond_resched();
2561 }
2562 kfree(prev);
2563
2564 btrfs_free_path(path);
Liu Bo38c227d2013-01-29 03:18:40 +00002565out:
Liu Bo6f519562013-10-29 10:45:05 +08002566 free_sa_defrag_extent(new);
2567
Liu Bo38c227d2013-01-29 03:18:40 +00002568 atomic_dec(&root->fs_info->defrag_running);
2569 wake_up(&root->fs_info->transaction_wait);
Liu Bo38c227d2013-01-29 03:18:40 +00002570}
2571
2572static struct new_sa_defrag_extent *
2573record_old_file_extents(struct inode *inode,
2574 struct btrfs_ordered_extent *ordered)
2575{
2576 struct btrfs_root *root = BTRFS_I(inode)->root;
2577 struct btrfs_path *path;
2578 struct btrfs_key key;
Liu Bo6f519562013-10-29 10:45:05 +08002579 struct old_sa_defrag_extent *old;
Liu Bo38c227d2013-01-29 03:18:40 +00002580 struct new_sa_defrag_extent *new;
2581 int ret;
2582
2583 new = kmalloc(sizeof(*new), GFP_NOFS);
2584 if (!new)
2585 return NULL;
2586
2587 new->inode = inode;
2588 new->file_pos = ordered->file_offset;
2589 new->len = ordered->len;
2590 new->bytenr = ordered->start;
2591 new->disk_len = ordered->disk_len;
2592 new->compress_type = ordered->compress_type;
2593 new->root = RB_ROOT;
2594 INIT_LIST_HEAD(&new->head);
2595
2596 path = btrfs_alloc_path();
2597 if (!path)
2598 goto out_kfree;
2599
2600 key.objectid = btrfs_ino(inode);
2601 key.type = BTRFS_EXTENT_DATA_KEY;
2602 key.offset = new->file_pos;
2603
2604 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2605 if (ret < 0)
2606 goto out_free_path;
2607 if (ret > 0 && path->slots[0] > 0)
2608 path->slots[0]--;
2609
2610 /* find out all the old extents for the file range */
2611 while (1) {
2612 struct btrfs_file_extent_item *extent;
2613 struct extent_buffer *l;
2614 int slot;
2615 u64 num_bytes;
2616 u64 offset;
2617 u64 end;
2618 u64 disk_bytenr;
2619 u64 extent_offset;
2620
2621 l = path->nodes[0];
2622 slot = path->slots[0];
2623
2624 if (slot >= btrfs_header_nritems(l)) {
2625 ret = btrfs_next_leaf(root, path);
2626 if (ret < 0)
Liu Bo6f519562013-10-29 10:45:05 +08002627 goto out_free_path;
Liu Bo38c227d2013-01-29 03:18:40 +00002628 else if (ret > 0)
2629 break;
2630 continue;
2631 }
2632
2633 btrfs_item_key_to_cpu(l, &key, slot);
2634
2635 if (key.objectid != btrfs_ino(inode))
2636 break;
2637 if (key.type != BTRFS_EXTENT_DATA_KEY)
2638 break;
2639 if (key.offset >= new->file_pos + new->len)
2640 break;
2641
2642 extent = btrfs_item_ptr(l, slot, struct btrfs_file_extent_item);
2643
2644 num_bytes = btrfs_file_extent_num_bytes(l, extent);
2645 if (key.offset + num_bytes < new->file_pos)
2646 goto next;
2647
2648 disk_bytenr = btrfs_file_extent_disk_bytenr(l, extent);
2649 if (!disk_bytenr)
2650 goto next;
2651
2652 extent_offset = btrfs_file_extent_offset(l, extent);
2653
2654 old = kmalloc(sizeof(*old), GFP_NOFS);
2655 if (!old)
Liu Bo6f519562013-10-29 10:45:05 +08002656 goto out_free_path;
Liu Bo38c227d2013-01-29 03:18:40 +00002657
2658 offset = max(new->file_pos, key.offset);
2659 end = min(new->file_pos + new->len, key.offset + num_bytes);
2660
2661 old->bytenr = disk_bytenr;
2662 old->extent_offset = extent_offset;
2663 old->offset = offset - key.offset;
2664 old->len = end - offset;
2665 old->new = new;
2666 old->count = 0;
2667 list_add_tail(&old->list, &new->head);
2668next:
2669 path->slots[0]++;
2670 cond_resched();
2671 }
2672
2673 btrfs_free_path(path);
2674 atomic_inc(&root->fs_info->defrag_running);
2675
2676 return new;
2677
Liu Bo38c227d2013-01-29 03:18:40 +00002678out_free_path:
2679 btrfs_free_path(path);
2680out_kfree:
Liu Bo6f519562013-10-29 10:45:05 +08002681 free_sa_defrag_extent(new);
Liu Bo38c227d2013-01-29 03:18:40 +00002682 return NULL;
2683}
2684
Miao Xiee570fd22014-06-19 10:42:50 +08002685static void btrfs_release_delalloc_bytes(struct btrfs_root *root,
2686 u64 start, u64 len)
2687{
2688 struct btrfs_block_group_cache *cache;
2689
2690 cache = btrfs_lookup_block_group(root->fs_info, start);
2691 ASSERT(cache);
2692
2693 spin_lock(&cache->lock);
2694 cache->delalloc_bytes -= len;
2695 spin_unlock(&cache->lock);
2696
2697 btrfs_put_block_group(cache);
2698}
2699
Chris Masond352ac62008-09-29 15:18:18 -04002700/* as ordered data IO finishes, this gets called so we can finish
2701 * an ordered extent if the range of bytes in the file it covers are
2702 * fully written.
2703 */
Josef Bacik5fd02042012-05-02 14:00:54 -04002704static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent)
Chris Masone6dcd2d2008-07-17 12:53:50 -04002705{
Josef Bacik5fd02042012-05-02 14:00:54 -04002706 struct inode *inode = ordered_extent->inode;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002707 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04002708 struct btrfs_trans_handle *trans = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002709 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Josef Bacik2ac55d42010-02-03 19:33:23 +00002710 struct extent_state *cached_state = NULL;
Liu Bo38c227d2013-01-29 03:18:40 +00002711 struct new_sa_defrag_extent *new = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08002712 int compress_type = 0;
Josef Bacik77cef2e2013-08-29 13:57:21 -04002713 int ret = 0;
2714 u64 logical_len = ordered_extent->len;
Li Zefan82d59022011-04-20 10:33:24 +08002715 bool nolock;
Josef Bacik77cef2e2013-08-29 13:57:21 -04002716 bool truncated = false;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002717
Liu Bo83eea1f2012-07-10 05:28:39 -06002718 nolock = btrfs_is_free_space_inode(inode);
Josef Bacik0cb59c92010-07-02 12:14:14 -04002719
Josef Bacik5fd02042012-05-02 14:00:54 -04002720 if (test_bit(BTRFS_ORDERED_IOERR, &ordered_extent->flags)) {
2721 ret = -EIO;
2722 goto out;
2723 }
2724
Miao Xief6124962014-09-12 18:44:04 +08002725 btrfs_free_io_failure_record(inode, ordered_extent->file_offset,
2726 ordered_extent->file_offset +
2727 ordered_extent->len - 1);
2728
Josef Bacik77cef2e2013-08-29 13:57:21 -04002729 if (test_bit(BTRFS_ORDERED_TRUNCATED, &ordered_extent->flags)) {
2730 truncated = true;
2731 logical_len = ordered_extent->truncated_len;
2732 /* Truncated the entire extent, don't bother adding */
2733 if (!logical_len)
2734 goto out;
2735 }
2736
Yan, Zhengc2167752009-11-12 09:34:21 +00002737 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags)) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002738 BUG_ON(!list_empty(&ordered_extent->list)); /* Logic error */
Josef Bacik6c760c02012-11-09 10:53:21 -05002739 btrfs_ordered_update_i_size(inode, 0, ordered_extent);
2740 if (nolock)
2741 trans = btrfs_join_transaction_nolock(root);
2742 else
2743 trans = btrfs_join_transaction(root);
2744 if (IS_ERR(trans)) {
2745 ret = PTR_ERR(trans);
2746 trans = NULL;
2747 goto out;
Yan, Zhengc2167752009-11-12 09:34:21 +00002748 }
Josef Bacik6c760c02012-11-09 10:53:21 -05002749 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
2750 ret = btrfs_update_inode_fallback(trans, root, inode);
2751 if (ret) /* -ENOMEM or corruption */
2752 btrfs_abort_transaction(trans, root, ret);
Yan, Zhengc2167752009-11-12 09:34:21 +00002753 goto out;
2754 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04002755
Josef Bacik2ac55d42010-02-03 19:33:23 +00002756 lock_extent_bits(io_tree, ordered_extent->file_offset,
2757 ordered_extent->file_offset + ordered_extent->len - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01002758 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002759
Liu Bo38c227d2013-01-29 03:18:40 +00002760 ret = test_range_bit(io_tree, ordered_extent->file_offset,
2761 ordered_extent->file_offset + ordered_extent->len - 1,
2762 EXTENT_DEFRAG, 1, cached_state);
2763 if (ret) {
2764 u64 last_snapshot = btrfs_root_last_snapshot(&root->root_item);
Josef Bacik8101c8d2014-01-29 16:05:30 -05002765 if (0 && last_snapshot >= BTRFS_I(inode)->generation)
Liu Bo38c227d2013-01-29 03:18:40 +00002766 /* the inode is shared */
2767 new = record_old_file_extents(inode, ordered_extent);
2768
2769 clear_extent_bit(io_tree, ordered_extent->file_offset,
2770 ordered_extent->file_offset + ordered_extent->len - 1,
2771 EXTENT_DEFRAG, 0, 0, &cached_state, GFP_NOFS);
2772 }
2773
Josef Bacik0cb59c92010-07-02 12:14:14 -04002774 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04002775 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04002776 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04002777 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002778 if (IS_ERR(trans)) {
2779 ret = PTR_ERR(trans);
2780 trans = NULL;
2781 goto out_unlock;
2782 }
Chris Masona79b7d42014-05-22 16:18:52 -07002783
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04002784 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Yan, Zhengc2167752009-11-12 09:34:21 +00002785
Chris Masonc8b97812008-10-29 14:49:59 -04002786 if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags))
Li Zefan261507a02010-12-17 14:21:50 +08002787 compress_type = ordered_extent->compress_type;
Yan Zhengd899e052008-10-30 14:25:28 -04002788 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
Li Zefan261507a02010-12-17 14:21:50 +08002789 BUG_ON(compress_type);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00002790 ret = btrfs_mark_extent_written(trans, inode,
Yan Zhengd899e052008-10-30 14:25:28 -04002791 ordered_extent->file_offset,
2792 ordered_extent->file_offset +
Josef Bacik77cef2e2013-08-29 13:57:21 -04002793 logical_len);
Yan Zhengd899e052008-10-30 14:25:28 -04002794 } else {
Josef Bacik0af3d002010-06-21 14:48:16 -04002795 BUG_ON(root == root->fs_info->tree_root);
Yan Zhengd899e052008-10-30 14:25:28 -04002796 ret = insert_reserved_file_extent(trans, inode,
2797 ordered_extent->file_offset,
2798 ordered_extent->start,
2799 ordered_extent->disk_len,
Josef Bacik77cef2e2013-08-29 13:57:21 -04002800 logical_len, logical_len,
Li Zefan261507a02010-12-17 14:21:50 +08002801 compress_type, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04002802 BTRFS_FILE_EXTENT_REG);
Miao Xiee570fd22014-06-19 10:42:50 +08002803 if (!ret)
2804 btrfs_release_delalloc_bytes(root,
2805 ordered_extent->start,
2806 ordered_extent->disk_len);
Yan Zhengd899e052008-10-30 14:25:28 -04002807 }
Josef Bacik5dc562c2012-08-17 13:14:17 -04002808 unpin_extent_cache(&BTRFS_I(inode)->extent_tree,
2809 ordered_extent->file_offset, ordered_extent->len,
2810 trans->transid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002811 if (ret < 0) {
2812 btrfs_abort_transaction(trans, root, ret);
Josef Bacik5fd02042012-05-02 14:00:54 -04002813 goto out_unlock;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002814 }
Josef Bacik2ac55d42010-02-03 19:33:23 +00002815
Chris Masone6dcd2d2008-07-17 12:53:50 -04002816 add_pending_csums(trans, inode, ordered_extent->file_offset,
2817 &ordered_extent->list);
2818
Josef Bacik6c760c02012-11-09 10:53:21 -05002819 btrfs_ordered_update_i_size(inode, 0, ordered_extent);
2820 ret = btrfs_update_inode_fallback(trans, root, inode);
2821 if (ret) { /* -ENOMEM or corruption */
2822 btrfs_abort_transaction(trans, root, ret);
2823 goto out_unlock;
Josef Bacik1ef30be2011-04-05 19:25:36 -04002824 }
2825 ret = 0;
Josef Bacik5fd02042012-05-02 14:00:54 -04002826out_unlock:
2827 unlock_extent_cached(io_tree, ordered_extent->file_offset,
2828 ordered_extent->file_offset +
2829 ordered_extent->len - 1, &cached_state, GFP_NOFS);
Yan, Zhengc2167752009-11-12 09:34:21 +00002830out:
Josef Bacik5b0e95b2011-10-06 08:58:24 -04002831 if (root != root->fs_info->tree_root)
Josef Bacik0cb59c92010-07-02 12:14:14 -04002832 btrfs_delalloc_release_metadata(inode, ordered_extent->len);
Miao Xiea698d0752012-09-20 01:51:59 -06002833 if (trans)
2834 btrfs_end_transaction(trans, root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04002835
Josef Bacik77cef2e2013-08-29 13:57:21 -04002836 if (ret || truncated) {
2837 u64 start, end;
2838
2839 if (truncated)
2840 start = ordered_extent->file_offset + logical_len;
2841 else
2842 start = ordered_extent->file_offset;
2843 end = ordered_extent->file_offset + ordered_extent->len - 1;
2844 clear_extent_uptodate(io_tree, start, end, NULL, GFP_NOFS);
2845
2846 /* Drop the cache for the part of the extent we didn't write. */
2847 btrfs_drop_extent_cache(inode, start, end, 0);
Josef Bacik5fd02042012-05-02 14:00:54 -04002848
Josef Bacik0bec9ef2013-01-31 14:58:00 -05002849 /*
2850 * If the ordered extent had an IOERR or something else went
2851 * wrong we need to return the space for this ordered extent
Josef Bacik77cef2e2013-08-29 13:57:21 -04002852 * back to the allocator. We only free the extent in the
2853 * truncated case if we didn't write out the extent at all.
Josef Bacik0bec9ef2013-01-31 14:58:00 -05002854 */
Josef Bacik77cef2e2013-08-29 13:57:21 -04002855 if ((ret || !logical_len) &&
2856 !test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags) &&
Josef Bacik0bec9ef2013-01-31 14:58:00 -05002857 !test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags))
2858 btrfs_free_reserved_extent(root, ordered_extent->start,
Miao Xiee570fd22014-06-19 10:42:50 +08002859 ordered_extent->disk_len, 1);
Josef Bacik0bec9ef2013-01-31 14:58:00 -05002860 }
2861
2862
Josef Bacik5fd02042012-05-02 14:00:54 -04002863 /*
Liu Bo8bad3c02012-06-18 12:14:23 +08002864 * This needs to be done to make sure anybody waiting knows we are done
2865 * updating everything for this ordered extent.
Josef Bacik5fd02042012-05-02 14:00:54 -04002866 */
2867 btrfs_remove_ordered_extent(inode, ordered_extent);
2868
Liu Bo38c227d2013-01-29 03:18:40 +00002869 /* for snapshot-aware defrag */
Liu Bo6f519562013-10-29 10:45:05 +08002870 if (new) {
2871 if (ret) {
2872 free_sa_defrag_extent(new);
2873 atomic_dec(&root->fs_info->defrag_running);
2874 } else {
2875 relink_file_extents(new);
2876 }
2877 }
Liu Bo38c227d2013-01-29 03:18:40 +00002878
Chris Masone6dcd2d2008-07-17 12:53:50 -04002879 /* once for us */
2880 btrfs_put_ordered_extent(ordered_extent);
2881 /* once for the tree */
2882 btrfs_put_ordered_extent(ordered_extent);
2883
Josef Bacik5fd02042012-05-02 14:00:54 -04002884 return ret;
2885}
2886
2887static void finish_ordered_fn(struct btrfs_work *work)
2888{
2889 struct btrfs_ordered_extent *ordered_extent;
2890 ordered_extent = container_of(work, struct btrfs_ordered_extent, work);
2891 btrfs_finish_ordered_io(ordered_extent);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002892}
2893
Christoph Hellwigb2950862008-12-02 09:54:17 -05002894static int btrfs_writepage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason211f90e2008-07-18 11:56:15 -04002895 struct extent_state *state, int uptodate)
2896{
Josef Bacik5fd02042012-05-02 14:00:54 -04002897 struct inode *inode = page->mapping->host;
2898 struct btrfs_root *root = BTRFS_I(inode)->root;
2899 struct btrfs_ordered_extent *ordered_extent = NULL;
Liu Bo9e0af232014-08-15 23:36:53 +08002900 struct btrfs_workqueue *wq;
2901 btrfs_work_func_t func;
Josef Bacik5fd02042012-05-02 14:00:54 -04002902
liubo1abe9b82011-03-24 11:18:59 +00002903 trace_btrfs_writepage_end_io_hook(page, start, end, uptodate);
2904
Chris Mason8b62b722009-09-02 16:53:46 -04002905 ClearPagePrivate2(page);
Josef Bacik5fd02042012-05-02 14:00:54 -04002906 if (!btrfs_dec_test_ordered_pending(inode, &ordered_extent, start,
2907 end - start + 1, uptodate))
2908 return 0;
2909
Liu Bo9e0af232014-08-15 23:36:53 +08002910 if (btrfs_is_free_space_inode(inode)) {
2911 wq = root->fs_info->endio_freespace_worker;
2912 func = btrfs_freespace_write_helper;
2913 } else {
2914 wq = root->fs_info->endio_write_workers;
2915 func = btrfs_endio_write_helper;
2916 }
Josef Bacik5fd02042012-05-02 14:00:54 -04002917
Liu Bo9e0af232014-08-15 23:36:53 +08002918 btrfs_init_work(&ordered_extent->work, func, finish_ordered_fn, NULL,
2919 NULL);
2920 btrfs_queue_work(wq, &ordered_extent->work);
Josef Bacik5fd02042012-05-02 14:00:54 -04002921
2922 return 0;
Chris Mason211f90e2008-07-18 11:56:15 -04002923}
2924
Miao Xiedc380ae2014-09-12 18:43:55 +08002925static int __readpage_endio_check(struct inode *inode,
2926 struct btrfs_io_bio *io_bio,
2927 int icsum, struct page *page,
2928 int pgoff, u64 start, size_t len)
2929{
2930 char *kaddr;
2931 u32 csum_expected;
2932 u32 csum = ~(u32)0;
2933 static DEFINE_RATELIMIT_STATE(_rs, DEFAULT_RATELIMIT_INTERVAL,
2934 DEFAULT_RATELIMIT_BURST);
2935
2936 csum_expected = *(((u32 *)io_bio->csum) + icsum);
2937
2938 kaddr = kmap_atomic(page);
2939 csum = btrfs_csum_data(kaddr + pgoff, csum, len);
2940 btrfs_csum_final(csum, (char *)&csum);
2941 if (csum != csum_expected)
2942 goto zeroit;
2943
2944 kunmap_atomic(kaddr);
2945 return 0;
2946zeroit:
2947 if (__ratelimit(&_rs))
David Sterbaf0954c62014-12-19 18:38:44 +01002948 btrfs_warn(BTRFS_I(inode)->root->fs_info,
Miao Xiedc380ae2014-09-12 18:43:55 +08002949 "csum failed ino %llu off %llu csum %u expected csum %u",
2950 btrfs_ino(inode), start, csum, csum_expected);
2951 memset(kaddr + pgoff, 1, len);
2952 flush_dcache_page(page);
2953 kunmap_atomic(kaddr);
2954 if (csum_expected == 0)
2955 return 0;
2956 return -EIO;
2957}
2958
Chris Masond352ac62008-09-29 15:18:18 -04002959/*
Chris Masond352ac62008-09-29 15:18:18 -04002960 * when reads are done, we need to check csums to verify the data is correct
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002961 * if there's a match, we allow the bio to finish. If not, the code in
2962 * extent_io.c will try to find good copies for us.
Chris Masond352ac62008-09-29 15:18:18 -04002963 */
Miao Xiefacc8a222013-07-25 19:22:34 +08002964static int btrfs_readpage_end_io_hook(struct btrfs_io_bio *io_bio,
2965 u64 phy_offset, struct page *page,
2966 u64 start, u64 end, int mirror)
Chris Mason07157aa2007-08-30 08:50:51 -04002967{
Miao Xie4eee4fa2012-12-21 09:17:45 +00002968 size_t offset = start - page_offset(page);
Chris Mason07157aa2007-08-30 08:50:51 -04002969 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05002970 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masonff79f812007-10-15 16:22:25 -04002971 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond1310b22008-01-24 16:13:08 -05002972
Chris Masond20f7042008-12-08 16:58:54 -05002973 if (PageChecked(page)) {
2974 ClearPageChecked(page);
Miao Xiedc380ae2014-09-12 18:43:55 +08002975 return 0;
Chris Masond20f7042008-12-08 16:58:54 -05002976 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02002977
2978 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)
Miao Xiedc380ae2014-09-12 18:43:55 +08002979 return 0;
Chris Masond20f7042008-12-08 16:58:54 -05002980
Yan Zheng17d217f2008-12-12 10:03:38 -05002981 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID &&
Chris Mason9655d292009-09-02 15:22:30 -04002982 test_range_bit(io_tree, start, end, EXTENT_NODATASUM, 1, NULL)) {
Yan Zheng17d217f2008-12-12 10:03:38 -05002983 clear_extent_bits(io_tree, start, end, EXTENT_NODATASUM,
2984 GFP_NOFS);
2985 return 0;
2986 }
2987
Miao Xiefacc8a222013-07-25 19:22:34 +08002988 phy_offset >>= inode->i_sb->s_blocksize_bits;
Miao Xiedc380ae2014-09-12 18:43:55 +08002989 return __readpage_endio_check(inode, io_bio, phy_offset, page, offset,
2990 start, (size_t)(end - start + 1));
Chris Mason07157aa2007-08-30 08:50:51 -04002991}
Chris Masonb888db22007-08-27 16:49:44 -04002992
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002993struct delayed_iput {
2994 struct list_head list;
2995 struct inode *inode;
2996};
2997
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002998/* JDM: If this is fs-wide, why can't we add a pointer to
2999 * btrfs_inode instead and avoid the allocation? */
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003000void btrfs_add_delayed_iput(struct inode *inode)
3001{
3002 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
3003 struct delayed_iput *delayed;
3004
3005 if (atomic_add_unless(&inode->i_count, -1, 1))
3006 return;
3007
3008 delayed = kmalloc(sizeof(*delayed), GFP_NOFS | __GFP_NOFAIL);
3009 delayed->inode = inode;
3010
3011 spin_lock(&fs_info->delayed_iput_lock);
3012 list_add_tail(&delayed->list, &fs_info->delayed_iputs);
3013 spin_unlock(&fs_info->delayed_iput_lock);
3014}
3015
3016void btrfs_run_delayed_iputs(struct btrfs_root *root)
3017{
3018 LIST_HEAD(list);
3019 struct btrfs_fs_info *fs_info = root->fs_info;
3020 struct delayed_iput *delayed;
3021 int empty;
3022
3023 spin_lock(&fs_info->delayed_iput_lock);
3024 empty = list_empty(&fs_info->delayed_iputs);
3025 spin_unlock(&fs_info->delayed_iput_lock);
3026 if (empty)
3027 return;
3028
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003029 spin_lock(&fs_info->delayed_iput_lock);
3030 list_splice_init(&fs_info->delayed_iputs, &list);
3031 spin_unlock(&fs_info->delayed_iput_lock);
3032
3033 while (!list_empty(&list)) {
3034 delayed = list_entry(list.next, struct delayed_iput, list);
3035 list_del(&delayed->list);
3036 iput(delayed->inode);
3037 kfree(delayed);
3038 }
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003039}
3040
Yan, Zhengd68fc572010-05-16 10:49:58 -04003041/*
Justin P. Mattock42b2aa82011-11-28 20:31:00 -08003042 * This is called in transaction commit time. If there are no orphan
Yan, Zhengd68fc572010-05-16 10:49:58 -04003043 * files in the subvolume, it removes orphan item and frees block_rsv
3044 * structure.
3045 */
3046void btrfs_orphan_commit_root(struct btrfs_trans_handle *trans,
3047 struct btrfs_root *root)
3048{
Josef Bacik90290e12011-12-02 15:44:12 -05003049 struct btrfs_block_rsv *block_rsv;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003050 int ret;
3051
Josef Bacik8a35d952012-05-23 14:26:42 -04003052 if (atomic_read(&root->orphan_inodes) ||
Yan, Zhengd68fc572010-05-16 10:49:58 -04003053 root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE)
3054 return;
3055
Josef Bacik90290e12011-12-02 15:44:12 -05003056 spin_lock(&root->orphan_lock);
Josef Bacik8a35d952012-05-23 14:26:42 -04003057 if (atomic_read(&root->orphan_inodes)) {
Josef Bacik90290e12011-12-02 15:44:12 -05003058 spin_unlock(&root->orphan_lock);
3059 return;
3060 }
3061
3062 if (root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE) {
3063 spin_unlock(&root->orphan_lock);
3064 return;
3065 }
3066
3067 block_rsv = root->orphan_block_rsv;
3068 root->orphan_block_rsv = NULL;
3069 spin_unlock(&root->orphan_lock);
3070
Miao Xie27cdeb72014-04-02 19:51:05 +08003071 if (test_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &root->state) &&
Yan, Zhengd68fc572010-05-16 10:49:58 -04003072 btrfs_root_refs(&root->root_item) > 0) {
3073 ret = btrfs_del_orphan_item(trans, root->fs_info->tree_root,
3074 root->root_key.objectid);
Josef Bacik4ef31a42013-08-13 14:10:08 -04003075 if (ret)
3076 btrfs_abort_transaction(trans, root, ret);
3077 else
Miao Xie27cdeb72014-04-02 19:51:05 +08003078 clear_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED,
3079 &root->state);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003080 }
3081
Josef Bacik90290e12011-12-02 15:44:12 -05003082 if (block_rsv) {
3083 WARN_ON(block_rsv->size > 0);
3084 btrfs_free_block_rsv(root, block_rsv);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003085 }
3086}
3087
3088/*
Josef Bacik7b128762008-07-24 12:17:14 -04003089 * This creates an orphan entry for the given inode in case something goes
3090 * wrong in the middle of an unlink/truncate.
Yan, Zhengd68fc572010-05-16 10:49:58 -04003091 *
3092 * NOTE: caller of this function should reserve 5 units of metadata for
3093 * this function.
Josef Bacik7b128762008-07-24 12:17:14 -04003094 */
3095int btrfs_orphan_add(struct btrfs_trans_handle *trans, struct inode *inode)
3096{
3097 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003098 struct btrfs_block_rsv *block_rsv = NULL;
3099 int reserve = 0;
3100 int insert = 0;
3101 int ret;
Josef Bacik7b128762008-07-24 12:17:14 -04003102
Yan, Zhengd68fc572010-05-16 10:49:58 -04003103 if (!root->orphan_block_rsv) {
Miao Xie66d8f3d2012-09-06 04:02:28 -06003104 block_rsv = btrfs_alloc_block_rsv(root, BTRFS_BLOCK_RSV_TEMP);
Tsutomu Itohb5324022011-07-19 07:27:20 +00003105 if (!block_rsv)
3106 return -ENOMEM;
Josef Bacik7b128762008-07-24 12:17:14 -04003107 }
3108
Yan, Zhengd68fc572010-05-16 10:49:58 -04003109 spin_lock(&root->orphan_lock);
3110 if (!root->orphan_block_rsv) {
3111 root->orphan_block_rsv = block_rsv;
3112 } else if (block_rsv) {
3113 btrfs_free_block_rsv(root, block_rsv);
3114 block_rsv = NULL;
3115 }
Josef Bacik7b128762008-07-24 12:17:14 -04003116
Josef Bacik8a35d952012-05-23 14:26:42 -04003117 if (!test_and_set_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
3118 &BTRFS_I(inode)->runtime_flags)) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04003119#if 0
3120 /*
3121 * For proper ENOSPC handling, we should do orphan
3122 * cleanup when mounting. But this introduces backward
3123 * compatibility issue.
3124 */
3125 if (!xchg(&root->orphan_item_inserted, 1))
3126 insert = 2;
3127 else
3128 insert = 1;
3129#endif
3130 insert = 1;
Miao Xie321f0e72012-08-28 22:13:02 -06003131 atomic_inc(&root->orphan_inodes);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003132 }
Josef Bacik7b128762008-07-24 12:17:14 -04003133
Josef Bacik72ac3c02012-05-23 14:13:11 -04003134 if (!test_and_set_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
3135 &BTRFS_I(inode)->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04003136 reserve = 1;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003137 spin_unlock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04003138
Yan, Zhengd68fc572010-05-16 10:49:58 -04003139 /* grab metadata reservation from transaction handle */
3140 if (reserve) {
3141 ret = btrfs_orphan_reserve_metadata(trans, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003142 BUG_ON(ret); /* -ENOSPC in reservation; Logic error? JDM */
Yan, Zhengd68fc572010-05-16 10:49:58 -04003143 }
3144
3145 /* insert an orphan item to track this unlinked/truncated file */
3146 if (insert >= 1) {
Li Zefan33345d012011-04-20 10:31:50 +08003147 ret = btrfs_insert_orphan_item(trans, root, btrfs_ino(inode));
Josef Bacik4ef31a42013-08-13 14:10:08 -04003148 if (ret) {
Filipe David Borba Manana703c88e2013-09-22 21:54:55 +01003149 atomic_dec(&root->orphan_inodes);
Josef Bacik4ef31a42013-08-13 14:10:08 -04003150 if (reserve) {
3151 clear_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
3152 &BTRFS_I(inode)->runtime_flags);
3153 btrfs_orphan_release_metadata(inode);
3154 }
3155 if (ret != -EEXIST) {
Josef Bacike8e7cff2013-08-21 15:54:00 -04003156 clear_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
3157 &BTRFS_I(inode)->runtime_flags);
Josef Bacik4ef31a42013-08-13 14:10:08 -04003158 btrfs_abort_transaction(trans, root, ret);
3159 return ret;
3160 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003161 }
3162 ret = 0;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003163 }
3164
3165 /* insert an orphan item to track subvolume contains orphan files */
3166 if (insert >= 2) {
3167 ret = btrfs_insert_orphan_item(trans, root->fs_info->tree_root,
3168 root->root_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003169 if (ret && ret != -EEXIST) {
3170 btrfs_abort_transaction(trans, root, ret);
3171 return ret;
3172 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04003173 }
3174 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04003175}
3176
3177/*
3178 * We have done the truncate/delete so we can go ahead and remove the orphan
3179 * item for this particular inode.
3180 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00003181static int btrfs_orphan_del(struct btrfs_trans_handle *trans,
3182 struct inode *inode)
Josef Bacik7b128762008-07-24 12:17:14 -04003183{
3184 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003185 int delete_item = 0;
3186 int release_rsv = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04003187 int ret = 0;
3188
Yan, Zhengd68fc572010-05-16 10:49:58 -04003189 spin_lock(&root->orphan_lock);
Josef Bacik8a35d952012-05-23 14:26:42 -04003190 if (test_and_clear_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
3191 &BTRFS_I(inode)->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04003192 delete_item = 1;
Josef Bacik7b128762008-07-24 12:17:14 -04003193
Josef Bacik72ac3c02012-05-23 14:13:11 -04003194 if (test_and_clear_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
3195 &BTRFS_I(inode)->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04003196 release_rsv = 1;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003197 spin_unlock(&root->orphan_lock);
3198
Filipe David Borba Manana703c88e2013-09-22 21:54:55 +01003199 if (delete_item) {
Josef Bacik8a35d952012-05-23 14:26:42 -04003200 atomic_dec(&root->orphan_inodes);
Filipe David Borba Manana703c88e2013-09-22 21:54:55 +01003201 if (trans)
3202 ret = btrfs_del_orphan_item(trans, root,
3203 btrfs_ino(inode));
Josef Bacik8a35d952012-05-23 14:26:42 -04003204 }
Josef Bacik7b128762008-07-24 12:17:14 -04003205
Filipe David Borba Manana703c88e2013-09-22 21:54:55 +01003206 if (release_rsv)
3207 btrfs_orphan_release_metadata(inode);
3208
Josef Bacik4ef31a42013-08-13 14:10:08 -04003209 return ret;
Josef Bacik7b128762008-07-24 12:17:14 -04003210}
3211
3212/*
3213 * this cleans up any orphans that may be left on the list from the last use
3214 * of this root.
3215 */
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003216int btrfs_orphan_cleanup(struct btrfs_root *root)
Josef Bacik7b128762008-07-24 12:17:14 -04003217{
3218 struct btrfs_path *path;
3219 struct extent_buffer *leaf;
Josef Bacik7b128762008-07-24 12:17:14 -04003220 struct btrfs_key key, found_key;
3221 struct btrfs_trans_handle *trans;
3222 struct inode *inode;
Josef Bacik8f6d7f42011-09-26 15:55:20 -04003223 u64 last_objectid = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04003224 int ret = 0, nr_unlink = 0, nr_truncate = 0;
3225
Yan, Zhengd68fc572010-05-16 10:49:58 -04003226 if (cmpxchg(&root->orphan_cleanup_state, 0, ORPHAN_CLEANUP_STARTED))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003227 return 0;
Yan, Zhengc71bf092009-11-12 09:34:40 +00003228
3229 path = btrfs_alloc_path();
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003230 if (!path) {
3231 ret = -ENOMEM;
3232 goto out;
3233 }
Josef Bacik7b128762008-07-24 12:17:14 -04003234 path->reada = -1;
3235
3236 key.objectid = BTRFS_ORPHAN_OBJECTID;
David Sterba962a2982014-06-04 18:41:45 +02003237 key.type = BTRFS_ORPHAN_ITEM_KEY;
Josef Bacik7b128762008-07-24 12:17:14 -04003238 key.offset = (u64)-1;
3239
Josef Bacik7b128762008-07-24 12:17:14 -04003240 while (1) {
3241 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003242 if (ret < 0)
3243 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003244
3245 /*
3246 * if ret == 0 means we found what we were searching for, which
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003247 * is weird, but possible, so only screw with path if we didn't
Josef Bacik7b128762008-07-24 12:17:14 -04003248 * find the key and see if we have stuff that matches
3249 */
3250 if (ret > 0) {
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003251 ret = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04003252 if (path->slots[0] == 0)
3253 break;
3254 path->slots[0]--;
3255 }
3256
3257 /* pull out the item */
3258 leaf = path->nodes[0];
Josef Bacik7b128762008-07-24 12:17:14 -04003259 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3260
3261 /* make sure the item matches what we want */
3262 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
3263 break;
David Sterba962a2982014-06-04 18:41:45 +02003264 if (found_key.type != BTRFS_ORPHAN_ITEM_KEY)
Josef Bacik7b128762008-07-24 12:17:14 -04003265 break;
3266
3267 /* release the path since we're done with it */
David Sterbab3b4aa72011-04-21 01:20:15 +02003268 btrfs_release_path(path);
Josef Bacik7b128762008-07-24 12:17:14 -04003269
3270 /*
3271 * this is where we are basically btrfs_lookup, without the
3272 * crossing root thing. we store the inode number in the
3273 * offset of the orphan item.
3274 */
Josef Bacik8f6d7f42011-09-26 15:55:20 -04003275
3276 if (found_key.offset == last_objectid) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00003277 btrfs_err(root->fs_info,
3278 "Error removing orphan entry, stopping orphan cleanup");
Josef Bacik8f6d7f42011-09-26 15:55:20 -04003279 ret = -EINVAL;
3280 goto out;
3281 }
3282
3283 last_objectid = found_key.offset;
3284
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003285 found_key.objectid = found_key.offset;
3286 found_key.type = BTRFS_INODE_ITEM_KEY;
3287 found_key.offset = 0;
Josef Bacik73f73412009-12-04 17:38:27 +00003288 inode = btrfs_iget(root->fs_info->sb, &found_key, root, NULL);
Rusty Russell8c6ffba2013-07-15 11:20:32 +09303289 ret = PTR_ERR_OR_ZERO(inode);
Josef Bacika8c9e572011-09-21 16:55:59 -04003290 if (ret && ret != -ESTALE)
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003291 goto out;
Josef Bacika8c9e572011-09-21 16:55:59 -04003292
Arne Jansenf8e9e0b2011-12-14 20:12:02 -05003293 if (ret == -ESTALE && root == root->fs_info->tree_root) {
3294 struct btrfs_root *dead_root;
3295 struct btrfs_fs_info *fs_info = root->fs_info;
3296 int is_dead_root = 0;
3297
3298 /*
3299 * this is an orphan in the tree root. Currently these
3300 * could come from 2 sources:
3301 * a) a snapshot deletion in progress
3302 * b) a free space cache inode
3303 * We need to distinguish those two, as the snapshot
3304 * orphan must not get deleted.
3305 * find_dead_roots already ran before us, so if this
3306 * is a snapshot deletion, we should find the root
3307 * in the dead_roots list
3308 */
3309 spin_lock(&fs_info->trans_lock);
3310 list_for_each_entry(dead_root, &fs_info->dead_roots,
3311 root_list) {
3312 if (dead_root->root_key.objectid ==
3313 found_key.objectid) {
3314 is_dead_root = 1;
3315 break;
3316 }
3317 }
3318 spin_unlock(&fs_info->trans_lock);
3319 if (is_dead_root) {
3320 /* prevent this orphan from being found again */
3321 key.offset = found_key.objectid - 1;
3322 continue;
3323 }
3324 }
Josef Bacika8c9e572011-09-21 16:55:59 -04003325 /*
3326 * Inode is already gone but the orphan item is still there,
3327 * kill the orphan item.
3328 */
3329 if (ret == -ESTALE) {
3330 trans = btrfs_start_transaction(root, 1);
3331 if (IS_ERR(trans)) {
3332 ret = PTR_ERR(trans);
3333 goto out;
3334 }
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00003335 btrfs_debug(root->fs_info, "auto deleting %Lu",
3336 found_key.objectid);
Josef Bacika8c9e572011-09-21 16:55:59 -04003337 ret = btrfs_del_orphan_item(trans, root,
3338 found_key.objectid);
Josef Bacika8c9e572011-09-21 16:55:59 -04003339 btrfs_end_transaction(trans, root);
Josef Bacik4ef31a42013-08-13 14:10:08 -04003340 if (ret)
3341 goto out;
Josef Bacika8c9e572011-09-21 16:55:59 -04003342 continue;
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003343 }
Josef Bacik7b128762008-07-24 12:17:14 -04003344
Josef Bacik7b128762008-07-24 12:17:14 -04003345 /*
3346 * add this inode to the orphan list so btrfs_orphan_del does
3347 * the proper thing when we hit it
3348 */
Josef Bacik8a35d952012-05-23 14:26:42 -04003349 set_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
3350 &BTRFS_I(inode)->runtime_flags);
Josef Bacik925396e2013-02-01 15:57:47 -05003351 atomic_inc(&root->orphan_inodes);
Josef Bacik7b128762008-07-24 12:17:14 -04003352
Josef Bacik7b128762008-07-24 12:17:14 -04003353 /* if we have links, this was a truncate, lets do that */
3354 if (inode->i_nlink) {
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303355 if (WARN_ON(!S_ISREG(inode->i_mode))) {
Josef Bacika41ad392011-01-31 15:30:16 -05003356 iput(inode);
3357 continue;
3358 }
Josef Bacik7b128762008-07-24 12:17:14 -04003359 nr_truncate++;
Josef Bacikf3fe8202013-01-07 17:03:21 -05003360
3361 /* 1 for the orphan item deletion. */
3362 trans = btrfs_start_transaction(root, 1);
3363 if (IS_ERR(trans)) {
Josef Bacikc69b26b2013-06-03 16:51:23 -04003364 iput(inode);
Josef Bacikf3fe8202013-01-07 17:03:21 -05003365 ret = PTR_ERR(trans);
3366 goto out;
3367 }
3368 ret = btrfs_orphan_add(trans, inode);
3369 btrfs_end_transaction(trans, root);
Josef Bacikc69b26b2013-06-03 16:51:23 -04003370 if (ret) {
3371 iput(inode);
Josef Bacikf3fe8202013-01-07 17:03:21 -05003372 goto out;
Josef Bacikc69b26b2013-06-03 16:51:23 -04003373 }
Josef Bacikf3fe8202013-01-07 17:03:21 -05003374
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003375 ret = btrfs_truncate(inode);
Josef Bacik4a7d0f62013-02-07 16:27:28 -05003376 if (ret)
3377 btrfs_orphan_del(NULL, inode);
Josef Bacik7b128762008-07-24 12:17:14 -04003378 } else {
3379 nr_unlink++;
3380 }
3381
3382 /* this will do delete_inode and everything for us */
3383 iput(inode);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003384 if (ret)
3385 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003386 }
Miao Xie3254c872011-11-10 20:45:05 -05003387 /* release the path since we're done with it */
3388 btrfs_release_path(path);
3389
Yan, Zhengd68fc572010-05-16 10:49:58 -04003390 root->orphan_cleanup_state = ORPHAN_CLEANUP_DONE;
3391
3392 if (root->orphan_block_rsv)
3393 btrfs_block_rsv_release(root, root->orphan_block_rsv,
3394 (u64)-1);
3395
Miao Xie27cdeb72014-04-02 19:51:05 +08003396 if (root->orphan_block_rsv ||
3397 test_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &root->state)) {
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003398 trans = btrfs_join_transaction(root);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003399 if (!IS_ERR(trans))
3400 btrfs_end_transaction(trans, root);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003401 }
Josef Bacik7b128762008-07-24 12:17:14 -04003402
3403 if (nr_unlink)
David Sterba4884b472013-03-20 13:31:27 +00003404 btrfs_debug(root->fs_info, "unlinked %d orphans", nr_unlink);
Josef Bacik7b128762008-07-24 12:17:14 -04003405 if (nr_truncate)
David Sterba4884b472013-03-20 13:31:27 +00003406 btrfs_debug(root->fs_info, "truncated %d orphans", nr_truncate);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003407
3408out:
3409 if (ret)
David Sterba68b663d2014-12-19 18:38:37 +01003410 btrfs_err(root->fs_info,
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00003411 "could not do orphan cleanup %d", ret);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003412 btrfs_free_path(path);
3413 return ret;
Josef Bacik7b128762008-07-24 12:17:14 -04003414}
3415
Chris Masond352ac62008-09-29 15:18:18 -04003416/*
Chris Mason46a53cc2009-04-27 11:47:50 -04003417 * very simple check to peek ahead in the leaf looking for xattrs. If we
3418 * don't find any xattrs, we know there can't be any acls.
3419 *
3420 * slot is the slot the inode is in, objectid is the objectid of the inode
3421 */
3422static noinline int acls_after_inode_item(struct extent_buffer *leaf,
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003423 int slot, u64 objectid,
3424 int *first_xattr_slot)
Chris Mason46a53cc2009-04-27 11:47:50 -04003425{
3426 u32 nritems = btrfs_header_nritems(leaf);
3427 struct btrfs_key found_key;
Josef Bacikf23b5a52013-06-19 10:16:26 -04003428 static u64 xattr_access = 0;
3429 static u64 xattr_default = 0;
Chris Mason46a53cc2009-04-27 11:47:50 -04003430 int scanned = 0;
3431
Josef Bacikf23b5a52013-06-19 10:16:26 -04003432 if (!xattr_access) {
3433 xattr_access = btrfs_name_hash(POSIX_ACL_XATTR_ACCESS,
3434 strlen(POSIX_ACL_XATTR_ACCESS));
3435 xattr_default = btrfs_name_hash(POSIX_ACL_XATTR_DEFAULT,
3436 strlen(POSIX_ACL_XATTR_DEFAULT));
3437 }
3438
Chris Mason46a53cc2009-04-27 11:47:50 -04003439 slot++;
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003440 *first_xattr_slot = -1;
Chris Mason46a53cc2009-04-27 11:47:50 -04003441 while (slot < nritems) {
3442 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3443
3444 /* we found a different objectid, there must not be acls */
3445 if (found_key.objectid != objectid)
3446 return 0;
3447
3448 /* we found an xattr, assume we've got an acl */
Josef Bacikf23b5a52013-06-19 10:16:26 -04003449 if (found_key.type == BTRFS_XATTR_ITEM_KEY) {
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003450 if (*first_xattr_slot == -1)
3451 *first_xattr_slot = slot;
Josef Bacikf23b5a52013-06-19 10:16:26 -04003452 if (found_key.offset == xattr_access ||
3453 found_key.offset == xattr_default)
3454 return 1;
3455 }
Chris Mason46a53cc2009-04-27 11:47:50 -04003456
3457 /*
3458 * we found a key greater than an xattr key, there can't
3459 * be any acls later on
3460 */
3461 if (found_key.type > BTRFS_XATTR_ITEM_KEY)
3462 return 0;
3463
3464 slot++;
3465 scanned++;
3466
3467 /*
3468 * it goes inode, inode backrefs, xattrs, extents,
3469 * so if there are a ton of hard links to an inode there can
3470 * be a lot of backrefs. Don't waste time searching too hard,
3471 * this is just an optimization
3472 */
3473 if (scanned >= 8)
3474 break;
3475 }
3476 /* we hit the end of the leaf before we found an xattr or
3477 * something larger than an xattr. We have to assume the inode
3478 * has acls
3479 */
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003480 if (*first_xattr_slot == -1)
3481 *first_xattr_slot = slot;
Chris Mason46a53cc2009-04-27 11:47:50 -04003482 return 1;
3483}
3484
3485/*
Chris Masond352ac62008-09-29 15:18:18 -04003486 * read an inode from the btree into the in-memory inode
3487 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003488static void btrfs_read_locked_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04003489{
3490 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04003491 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003492 struct btrfs_inode_item *inode_item;
Chris Mason0b86a832008-03-24 15:01:56 -04003493 struct btrfs_timespec *tspec;
Chris Mason39279cc2007-06-12 06:35:45 -04003494 struct btrfs_root *root = BTRFS_I(inode)->root;
3495 struct btrfs_key location;
Miao Xie67de1172013-12-26 13:07:06 +08003496 unsigned long ptr;
Chris Mason46a53cc2009-04-27 11:47:50 -04003497 int maybe_acls;
Josef Bacik618e21d2007-07-11 10:18:17 -04003498 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -04003499 int ret;
Miao Xie2f7e33d2011-06-23 07:27:13 +00003500 bool filled = false;
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003501 int first_xattr_slot;
Miao Xie2f7e33d2011-06-23 07:27:13 +00003502
3503 ret = btrfs_fill_inode(inode, &rdev);
3504 if (!ret)
3505 filled = true;
Chris Mason39279cc2007-06-12 06:35:45 -04003506
3507 path = btrfs_alloc_path();
Mark Fasheh1748f842011-07-12 11:25:31 -07003508 if (!path)
3509 goto make_bad;
3510
Chris Mason39279cc2007-06-12 06:35:45 -04003511 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -05003512
Chris Mason39279cc2007-06-12 06:35:45 -04003513 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003514 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -04003515 goto make_bad;
Chris Mason39279cc2007-06-12 06:35:45 -04003516
Chris Mason5f39d392007-10-15 16:14:19 -04003517 leaf = path->nodes[0];
Miao Xie2f7e33d2011-06-23 07:27:13 +00003518
3519 if (filled)
Miao Xie67de1172013-12-26 13:07:06 +08003520 goto cache_index;
Miao Xie2f7e33d2011-06-23 07:27:13 +00003521
Chris Mason5f39d392007-10-15 16:14:19 -04003522 inode_item = btrfs_item_ptr(leaf, path->slots[0],
3523 struct btrfs_inode_item);
Chris Mason5f39d392007-10-15 16:14:19 -04003524 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
Miklos Szeredibfe86842011-10-28 14:13:29 +02003525 set_nlink(inode, btrfs_inode_nlink(leaf, inode_item));
Eric W. Biederman2f2f43d2012-02-10 11:05:07 -08003526 i_uid_write(inode, btrfs_inode_uid(leaf, inode_item));
3527 i_gid_write(inode, btrfs_inode_gid(leaf, inode_item));
Chris Masondbe674a2008-07-17 12:54:05 -04003528 btrfs_i_size_write(inode, btrfs_inode_size(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04003529
3530 tspec = btrfs_inode_atime(inode_item);
3531 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
3532 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
3533
3534 tspec = btrfs_inode_mtime(inode_item);
3535 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
3536 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
3537
3538 tspec = btrfs_inode_ctime(inode_item);
3539 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
3540 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
3541
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003542 inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04003543 BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item);
Josef Bacik5dc562c2012-08-17 13:14:17 -04003544 BTRFS_I(inode)->last_trans = btrfs_inode_transid(leaf, inode_item);
3545
3546 /*
3547 * If we were modified in the current generation and evicted from memory
3548 * and then re-read we need to do a full sync since we don't have any
3549 * idea about which extents were modified before we were evicted from
3550 * cache.
3551 */
3552 if (BTRFS_I(inode)->last_trans == root->fs_info->generation)
3553 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3554 &BTRFS_I(inode)->runtime_flags);
3555
Josef Bacik0c4d2d92012-04-05 15:03:02 -04003556 inode->i_version = btrfs_inode_sequence(leaf, inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04003557 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik618e21d2007-07-11 10:18:17 -04003558 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04003559 rdev = btrfs_inode_rdev(leaf, inode_item);
3560
Josef Bacikaec74772008-07-24 12:12:38 -04003561 BTRFS_I(inode)->index_cnt = (u64)-1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05003562 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Miao Xie67de1172013-12-26 13:07:06 +08003563
3564cache_index:
3565 path->slots[0]++;
3566 if (inode->i_nlink != 1 ||
3567 path->slots[0] >= btrfs_header_nritems(leaf))
3568 goto cache_acl;
3569
3570 btrfs_item_key_to_cpu(leaf, &location, path->slots[0]);
3571 if (location.objectid != btrfs_ino(inode))
3572 goto cache_acl;
3573
3574 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
3575 if (location.type == BTRFS_INODE_REF_KEY) {
3576 struct btrfs_inode_ref *ref;
3577
3578 ref = (struct btrfs_inode_ref *)ptr;
3579 BTRFS_I(inode)->dir_index = btrfs_inode_ref_index(leaf, ref);
3580 } else if (location.type == BTRFS_INODE_EXTREF_KEY) {
3581 struct btrfs_inode_extref *extref;
3582
3583 extref = (struct btrfs_inode_extref *)ptr;
3584 BTRFS_I(inode)->dir_index = btrfs_inode_extref_index(leaf,
3585 extref);
3586 }
Miao Xie2f7e33d2011-06-23 07:27:13 +00003587cache_acl:
Chris Mason46a53cc2009-04-27 11:47:50 -04003588 /*
3589 * try to precache a NULL acl entry for files that don't have
3590 * any xattrs or acls
3591 */
Li Zefan33345d012011-04-20 10:31:50 +08003592 maybe_acls = acls_after_inode_item(leaf, path->slots[0],
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003593 btrfs_ino(inode), &first_xattr_slot);
3594 if (first_xattr_slot != -1) {
3595 path->slots[0] = first_xattr_slot;
3596 ret = btrfs_load_inode_props(inode, path);
3597 if (ret)
3598 btrfs_err(root->fs_info,
David Sterba351fd352014-05-15 16:48:20 +02003599 "error loading props for ino %llu (root %llu): %d",
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003600 btrfs_ino(inode),
3601 root->root_key.objectid, ret);
3602 }
3603 btrfs_free_path(path);
3604
Al Viro72c04902009-06-24 16:58:48 -04003605 if (!maybe_acls)
3606 cache_no_acl(inode);
Chris Mason46a53cc2009-04-27 11:47:50 -04003607
Chris Mason39279cc2007-06-12 06:35:45 -04003608 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -04003609 case S_IFREG:
3610 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04003611 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05003612 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04003613 inode->i_fop = &btrfs_file_operations;
3614 inode->i_op = &btrfs_file_inode_operations;
3615 break;
3616 case S_IFDIR:
3617 inode->i_fop = &btrfs_dir_file_operations;
3618 if (root == root->fs_info->tree_root)
3619 inode->i_op = &btrfs_dir_ro_inode_operations;
3620 else
3621 inode->i_op = &btrfs_dir_inode_operations;
3622 break;
3623 case S_IFLNK:
3624 inode->i_op = &btrfs_symlink_inode_operations;
3625 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04003626 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04003627 break;
Josef Bacik618e21d2007-07-11 10:18:17 -04003628 default:
Jim Owens0279b4c2009-02-04 09:29:13 -05003629 inode->i_op = &btrfs_special_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -04003630 init_special_inode(inode, inode->i_mode, rdev);
3631 break;
Chris Mason39279cc2007-06-12 06:35:45 -04003632 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02003633
3634 btrfs_update_iflags(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003635 return;
3636
3637make_bad:
Chris Mason39279cc2007-06-12 06:35:45 -04003638 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003639 make_bad_inode(inode);
3640}
3641
Chris Masond352ac62008-09-29 15:18:18 -04003642/*
3643 * given a leaf and an inode, copy the inode fields into the leaf
3644 */
Chris Masone02119d2008-09-05 16:13:11 -04003645static void fill_inode_item(struct btrfs_trans_handle *trans,
3646 struct extent_buffer *leaf,
Chris Mason5f39d392007-10-15 16:14:19 -04003647 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -04003648 struct inode *inode)
3649{
Liu Bo51fab692012-12-27 09:01:21 +00003650 struct btrfs_map_token token;
Chris Mason5f39d392007-10-15 16:14:19 -04003651
Liu Bo51fab692012-12-27 09:01:21 +00003652 btrfs_init_map_token(&token);
Chris Mason5f39d392007-10-15 16:14:19 -04003653
Liu Bo51fab692012-12-27 09:01:21 +00003654 btrfs_set_token_inode_uid(leaf, item, i_uid_read(inode), &token);
3655 btrfs_set_token_inode_gid(leaf, item, i_gid_read(inode), &token);
3656 btrfs_set_token_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size,
3657 &token);
3658 btrfs_set_token_inode_mode(leaf, item, inode->i_mode, &token);
3659 btrfs_set_token_inode_nlink(leaf, item, inode->i_nlink, &token);
Chris Mason5f39d392007-10-15 16:14:19 -04003660
Liu Bo51fab692012-12-27 09:01:21 +00003661 btrfs_set_token_timespec_sec(leaf, btrfs_inode_atime(item),
3662 inode->i_atime.tv_sec, &token);
3663 btrfs_set_token_timespec_nsec(leaf, btrfs_inode_atime(item),
3664 inode->i_atime.tv_nsec, &token);
Chris Mason5f39d392007-10-15 16:14:19 -04003665
Liu Bo51fab692012-12-27 09:01:21 +00003666 btrfs_set_token_timespec_sec(leaf, btrfs_inode_mtime(item),
3667 inode->i_mtime.tv_sec, &token);
3668 btrfs_set_token_timespec_nsec(leaf, btrfs_inode_mtime(item),
3669 inode->i_mtime.tv_nsec, &token);
3670
3671 btrfs_set_token_timespec_sec(leaf, btrfs_inode_ctime(item),
3672 inode->i_ctime.tv_sec, &token);
3673 btrfs_set_token_timespec_nsec(leaf, btrfs_inode_ctime(item),
3674 inode->i_ctime.tv_nsec, &token);
3675
3676 btrfs_set_token_inode_nbytes(leaf, item, inode_get_bytes(inode),
3677 &token);
3678 btrfs_set_token_inode_generation(leaf, item, BTRFS_I(inode)->generation,
3679 &token);
3680 btrfs_set_token_inode_sequence(leaf, item, inode->i_version, &token);
3681 btrfs_set_token_inode_transid(leaf, item, trans->transid, &token);
3682 btrfs_set_token_inode_rdev(leaf, item, inode->i_rdev, &token);
3683 btrfs_set_token_inode_flags(leaf, item, BTRFS_I(inode)->flags, &token);
3684 btrfs_set_token_inode_block_group(leaf, item, 0, &token);
Chris Mason39279cc2007-06-12 06:35:45 -04003685}
3686
Chris Masond352ac62008-09-29 15:18:18 -04003687/*
3688 * copy everything in the in-memory inode into the btree.
3689 */
Chris Mason21151332011-11-10 20:39:08 -05003690static noinline int btrfs_update_inode_item(struct btrfs_trans_handle *trans,
Chris Masond3977122009-01-05 21:25:51 -05003691 struct btrfs_root *root, struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04003692{
3693 struct btrfs_inode_item *inode_item;
3694 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04003695 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003696 int ret;
3697
3698 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08003699 if (!path)
3700 return -ENOMEM;
3701
Chris Masonb9473432009-03-13 11:00:37 -04003702 path->leave_spinning = 1;
Miao Xie16cdcec2011-04-22 18:12:22 +08003703 ret = btrfs_lookup_inode(trans, root, path, &BTRFS_I(inode)->location,
3704 1);
Chris Mason39279cc2007-06-12 06:35:45 -04003705 if (ret) {
3706 if (ret > 0)
3707 ret = -ENOENT;
3708 goto failed;
3709 }
3710
Chris Mason5f39d392007-10-15 16:14:19 -04003711 leaf = path->nodes[0];
3712 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Miao Xie16cdcec2011-04-22 18:12:22 +08003713 struct btrfs_inode_item);
Chris Mason39279cc2007-06-12 06:35:45 -04003714
Chris Masone02119d2008-09-05 16:13:11 -04003715 fill_inode_item(trans, leaf, inode_item, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04003716 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04003717 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003718 ret = 0;
3719failed:
Chris Mason39279cc2007-06-12 06:35:45 -04003720 btrfs_free_path(path);
3721 return ret;
3722}
3723
Chris Masond352ac62008-09-29 15:18:18 -04003724/*
Chris Mason21151332011-11-10 20:39:08 -05003725 * copy everything in the in-memory inode into the btree.
3726 */
3727noinline int btrfs_update_inode(struct btrfs_trans_handle *trans,
3728 struct btrfs_root *root, struct inode *inode)
3729{
3730 int ret;
3731
3732 /*
3733 * If the inode is a free space inode, we can deadlock during commit
3734 * if we put it into the delayed code.
3735 *
3736 * The data relocation inode should also be directly updated
3737 * without delay
3738 */
Liu Bo83eea1f2012-07-10 05:28:39 -06003739 if (!btrfs_is_free_space_inode(inode)
Josef Bacik1d52c782014-09-18 11:30:44 -04003740 && root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID
3741 && !root->fs_info->log_root_recovering) {
Alexander Block8ea05e32012-07-25 17:35:53 +02003742 btrfs_update_root_times(trans, root);
3743
Chris Mason21151332011-11-10 20:39:08 -05003744 ret = btrfs_delayed_update_inode(trans, root, inode);
3745 if (!ret)
3746 btrfs_set_inode_last_trans(trans, inode);
3747 return ret;
3748 }
3749
3750 return btrfs_update_inode_item(trans, root, inode);
3751}
3752
Josef Bacikbe6aef62012-10-22 15:43:12 -04003753noinline int btrfs_update_inode_fallback(struct btrfs_trans_handle *trans,
3754 struct btrfs_root *root,
3755 struct inode *inode)
Chris Mason21151332011-11-10 20:39:08 -05003756{
3757 int ret;
3758
3759 ret = btrfs_update_inode(trans, root, inode);
3760 if (ret == -ENOSPC)
3761 return btrfs_update_inode_item(trans, root, inode);
3762 return ret;
3763}
3764
3765/*
Chris Masond352ac62008-09-29 15:18:18 -04003766 * unlink helper that gets used here in inode.c and in the tree logging
3767 * recovery code. It remove a link in a directory with a given name, and
3768 * also drops the back refs in the inode to the directory
3769 */
Al Viro92986792011-03-04 17:14:37 +00003770static int __btrfs_unlink_inode(struct btrfs_trans_handle *trans,
3771 struct btrfs_root *root,
3772 struct inode *dir, struct inode *inode,
3773 const char *name, int name_len)
Chris Mason39279cc2007-06-12 06:35:45 -04003774{
3775 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04003776 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04003777 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003778 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -04003779 struct btrfs_key key;
Josef Bacikaec74772008-07-24 12:12:38 -04003780 u64 index;
Li Zefan33345d012011-04-20 10:31:50 +08003781 u64 ino = btrfs_ino(inode);
3782 u64 dir_ino = btrfs_ino(dir);
Chris Mason39279cc2007-06-12 06:35:45 -04003783
3784 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04003785 if (!path) {
3786 ret = -ENOMEM;
Tsutomu Itoh554233a2011-02-03 03:16:25 +00003787 goto out;
Chris Mason54aa1f42007-06-22 14:16:25 -04003788 }
3789
Chris Masonb9473432009-03-13 11:00:37 -04003790 path->leave_spinning = 1;
Li Zefan33345d012011-04-20 10:31:50 +08003791 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Chris Mason39279cc2007-06-12 06:35:45 -04003792 name, name_len, -1);
3793 if (IS_ERR(di)) {
3794 ret = PTR_ERR(di);
3795 goto err;
3796 }
3797 if (!di) {
3798 ret = -ENOENT;
3799 goto err;
3800 }
Chris Mason5f39d392007-10-15 16:14:19 -04003801 leaf = path->nodes[0];
3802 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -04003803 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -04003804 if (ret)
3805 goto err;
David Sterbab3b4aa72011-04-21 01:20:15 +02003806 btrfs_release_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003807
Miao Xie67de1172013-12-26 13:07:06 +08003808 /*
3809 * If we don't have dir index, we have to get it by looking up
3810 * the inode ref, since we get the inode ref, remove it directly,
3811 * it is unnecessary to do delayed deletion.
3812 *
3813 * But if we have dir index, needn't search inode ref to get it.
3814 * Since the inode ref is close to the inode item, it is better
3815 * that we delay to delete it, and just do this deletion when
3816 * we update the inode item.
3817 */
3818 if (BTRFS_I(inode)->dir_index) {
3819 ret = btrfs_delayed_delete_inode_ref(inode);
3820 if (!ret) {
3821 index = BTRFS_I(inode)->dir_index;
3822 goto skip_backref;
3823 }
3824 }
3825
Li Zefan33345d012011-04-20 10:31:50 +08003826 ret = btrfs_del_inode_ref(trans, root, name, name_len, ino,
3827 dir_ino, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04003828 if (ret) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00003829 btrfs_info(root->fs_info,
3830 "failed to delete reference to %.*s, inode %llu parent %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003831 name_len, name, ino, dir_ino);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003832 btrfs_abort_transaction(trans, root, ret);
Josef Bacikaec74772008-07-24 12:12:38 -04003833 goto err;
3834 }
Miao Xie67de1172013-12-26 13:07:06 +08003835skip_backref:
Miao Xie16cdcec2011-04-22 18:12:22 +08003836 ret = btrfs_delete_delayed_dir_index(trans, root, dir, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003837 if (ret) {
3838 btrfs_abort_transaction(trans, root, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04003839 goto err;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003840 }
Chris Mason39279cc2007-06-12 06:35:45 -04003841
Chris Masone02119d2008-09-05 16:13:11 -04003842 ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len,
Li Zefan33345d012011-04-20 10:31:50 +08003843 inode, dir_ino);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003844 if (ret != 0 && ret != -ENOENT) {
3845 btrfs_abort_transaction(trans, root, ret);
3846 goto err;
3847 }
Chris Masone02119d2008-09-05 16:13:11 -04003848
3849 ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len,
3850 dir, index);
Chris Mason6418c962010-10-30 07:34:24 -04003851 if (ret == -ENOENT)
3852 ret = 0;
Zach Brownd4e39912013-04-02 21:02:16 +00003853 else if (ret)
3854 btrfs_abort_transaction(trans, root, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04003855err:
3856 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04003857 if (ret)
3858 goto out;
3859
3860 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04003861 inode_inc_iversion(inode);
3862 inode_inc_iversion(dir);
Chris Masone02119d2008-09-05 16:13:11 -04003863 inode->i_ctime = dir->i_mtime = dir->i_ctime = CURRENT_TIME;
Tsutomu Itohb9959292012-06-25 21:25:22 -06003864 ret = btrfs_update_inode(trans, root, dir);
Chris Masone02119d2008-09-05 16:13:11 -04003865out:
Chris Mason39279cc2007-06-12 06:35:45 -04003866 return ret;
3867}
3868
Al Viro92986792011-03-04 17:14:37 +00003869int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
3870 struct btrfs_root *root,
3871 struct inode *dir, struct inode *inode,
3872 const char *name, int name_len)
3873{
3874 int ret;
3875 ret = __btrfs_unlink_inode(trans, root, dir, inode, name, name_len);
3876 if (!ret) {
Zach Brown8b558c52013-10-16 12:10:34 -07003877 drop_nlink(inode);
Al Viro92986792011-03-04 17:14:37 +00003878 ret = btrfs_update_inode(trans, root, inode);
3879 }
3880 return ret;
3881}
Yan, Zhenga22285a2010-05-16 10:48:46 -04003882
3883/*
3884 * helper to start transaction for unlink and rmdir.
3885 *
Josef Bacikd52be812013-05-29 14:54:47 -04003886 * unlink and rmdir are special in btrfs, they do not always free space, so
3887 * if we cannot make our reservations the normal way try and see if there is
3888 * plenty of slack room in the global reserve to migrate, otherwise we cannot
3889 * allow the unlink to occur.
Yan, Zhenga22285a2010-05-16 10:48:46 -04003890 */
Josef Bacikd52be812013-05-29 14:54:47 -04003891static struct btrfs_trans_handle *__unlink_start_trans(struct inode *dir)
Yan, Zhenga22285a2010-05-16 10:48:46 -04003892{
3893 struct btrfs_trans_handle *trans;
3894 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003895 int ret;
3896
Josef Bacike70bea52011-10-11 14:18:24 -04003897 /*
3898 * 1 for the possible orphan item
3899 * 1 for the dir item
3900 * 1 for the dir index
3901 * 1 for the inode ref
Josef Bacike70bea52011-10-11 14:18:24 -04003902 * 1 for the inode
3903 */
Josef Bacik6e137ed2013-03-26 15:26:55 -04003904 trans = btrfs_start_transaction(root, 5);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003905 if (!IS_ERR(trans) || PTR_ERR(trans) != -ENOSPC)
3906 return trans;
3907
Josef Bacikd52be812013-05-29 14:54:47 -04003908 if (PTR_ERR(trans) == -ENOSPC) {
3909 u64 num_bytes = btrfs_calc_trans_metadata_size(root, 5);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003910
Josef Bacikd52be812013-05-29 14:54:47 -04003911 trans = btrfs_start_transaction(root, 0);
3912 if (IS_ERR(trans))
3913 return trans;
3914 ret = btrfs_cond_migrate_bytes(root->fs_info,
3915 &root->fs_info->trans_block_rsv,
3916 num_bytes, 5);
3917 if (ret) {
3918 btrfs_end_transaction(trans, root);
3919 return ERR_PTR(ret);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003920 }
Josef Bacik5a77d762011-11-01 14:32:23 -04003921 trans->block_rsv = &root->fs_info->trans_block_rsv;
Josef Bacikd52be812013-05-29 14:54:47 -04003922 trans->bytes_reserved = num_bytes;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003923 }
Josef Bacikd52be812013-05-29 14:54:47 -04003924 return trans;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003925}
3926
Chris Mason39279cc2007-06-12 06:35:45 -04003927static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
3928{
Yan, Zhenga22285a2010-05-16 10:48:46 -04003929 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003930 struct btrfs_trans_handle *trans;
Josef Bacik7b128762008-07-24 12:17:14 -04003931 struct inode *inode = dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04003932 int ret;
3933
Josef Bacikd52be812013-05-29 14:54:47 -04003934 trans = __unlink_start_trans(dir);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003935 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05003936 return PTR_ERR(trans);
Chris Mason5f39d392007-10-15 16:14:19 -04003937
Chris Mason12fcfd22009-03-24 10:24:20 -04003938 btrfs_record_unlink_dir(trans, dir, dentry->d_inode, 0);
3939
Chris Masone02119d2008-09-05 16:13:11 -04003940 ret = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
3941 dentry->d_name.name, dentry->d_name.len);
Tsutomu Itohb5324022011-07-19 07:27:20 +00003942 if (ret)
3943 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003944
Yan, Zhenga22285a2010-05-16 10:48:46 -04003945 if (inode->i_nlink == 0) {
Josef Bacik7b128762008-07-24 12:17:14 -04003946 ret = btrfs_orphan_add(trans, inode);
Tsutomu Itohb5324022011-07-19 07:27:20 +00003947 if (ret)
3948 goto out;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003949 }
Josef Bacik7b128762008-07-24 12:17:14 -04003950
Tsutomu Itohb5324022011-07-19 07:27:20 +00003951out:
Josef Bacikd52be812013-05-29 14:54:47 -04003952 btrfs_end_transaction(trans, root);
Liu Bob53d3f52012-11-14 14:34:34 +00003953 btrfs_btree_balance_dirty(root);
Chris Mason39279cc2007-06-12 06:35:45 -04003954 return ret;
3955}
3956
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003957int btrfs_unlink_subvol(struct btrfs_trans_handle *trans,
3958 struct btrfs_root *root,
3959 struct inode *dir, u64 objectid,
3960 const char *name, int name_len)
3961{
3962 struct btrfs_path *path;
3963 struct extent_buffer *leaf;
3964 struct btrfs_dir_item *di;
3965 struct btrfs_key key;
3966 u64 index;
3967 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08003968 u64 dir_ino = btrfs_ino(dir);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003969
3970 path = btrfs_alloc_path();
3971 if (!path)
3972 return -ENOMEM;
3973
Li Zefan33345d012011-04-20 10:31:50 +08003974 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003975 name, name_len, -1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003976 if (IS_ERR_OR_NULL(di)) {
3977 if (!di)
3978 ret = -ENOENT;
3979 else
3980 ret = PTR_ERR(di);
3981 goto out;
3982 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003983
3984 leaf = path->nodes[0];
3985 btrfs_dir_item_key_to_cpu(leaf, di, &key);
3986 WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
3987 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003988 if (ret) {
3989 btrfs_abort_transaction(trans, root, ret);
3990 goto out;
3991 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003992 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003993
3994 ret = btrfs_del_root_ref(trans, root->fs_info->tree_root,
3995 objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08003996 dir_ino, &index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003997 if (ret < 0) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003998 if (ret != -ENOENT) {
3999 btrfs_abort_transaction(trans, root, ret);
4000 goto out;
4001 }
Li Zefan33345d012011-04-20 10:31:50 +08004002 di = btrfs_search_dir_index_item(root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004003 name, name_len);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004004 if (IS_ERR_OR_NULL(di)) {
4005 if (!di)
4006 ret = -ENOENT;
4007 else
4008 ret = PTR_ERR(di);
4009 btrfs_abort_transaction(trans, root, ret);
4010 goto out;
4011 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004012
4013 leaf = path->nodes[0];
4014 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02004015 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004016 index = key.offset;
4017 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004018 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004019
Miao Xie16cdcec2011-04-22 18:12:22 +08004020 ret = btrfs_delete_delayed_dir_index(trans, root, dir, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004021 if (ret) {
4022 btrfs_abort_transaction(trans, root, ret);
4023 goto out;
4024 }
Miao Xie16cdcec2011-04-22 18:12:22 +08004025
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004026 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04004027 inode_inc_iversion(dir);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004028 dir->i_mtime = dir->i_ctime = CURRENT_TIME;
Josef Bacik5a24e842012-08-08 10:12:59 -06004029 ret = btrfs_update_inode_fallback(trans, root, dir);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004030 if (ret)
4031 btrfs_abort_transaction(trans, root, ret);
4032out:
Josef Bacik71d7aed2011-06-14 14:24:32 -04004033 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004034 return ret;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004035}
4036
Chris Mason39279cc2007-06-12 06:35:45 -04004037static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
4038{
4039 struct inode *inode = dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05004040 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004041 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004042 struct btrfs_trans_handle *trans;
Chris Mason39279cc2007-06-12 06:35:45 -04004043
David Sterbab3ae2442012-09-13 16:04:34 -06004044 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Yan134d4512007-10-25 15:49:25 -04004045 return -ENOTEMPTY;
David Sterbab3ae2442012-09-13 16:04:34 -06004046 if (btrfs_ino(inode) == BTRFS_FIRST_FREE_OBJECTID)
4047 return -EPERM;
Yan134d4512007-10-25 15:49:25 -04004048
Josef Bacikd52be812013-05-29 14:54:47 -04004049 trans = __unlink_start_trans(dir);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004050 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05004051 return PTR_ERR(trans);
Josef Bacik5df6a9f2009-11-10 21:23:48 -05004052
Li Zefan33345d012011-04-20 10:31:50 +08004053 if (unlikely(btrfs_ino(inode) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004054 err = btrfs_unlink_subvol(trans, root, dir,
4055 BTRFS_I(inode)->location.objectid,
4056 dentry->d_name.name,
4057 dentry->d_name.len);
4058 goto out;
4059 }
4060
Josef Bacik7b128762008-07-24 12:17:14 -04004061 err = btrfs_orphan_add(trans, inode);
4062 if (err)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004063 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04004064
Chris Mason39279cc2007-06-12 06:35:45 -04004065 /* now the directory is empty */
Chris Masone02119d2008-09-05 16:13:11 -04004066 err = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
4067 dentry->d_name.name, dentry->d_name.len);
Chris Masond3977122009-01-05 21:25:51 -05004068 if (!err)
Chris Masondbe674a2008-07-17 12:54:05 -04004069 btrfs_i_size_write(inode, 0);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004070out:
Josef Bacikd52be812013-05-29 14:54:47 -04004071 btrfs_end_transaction(trans, root);
Liu Bob53d3f52012-11-14 14:34:34 +00004072 btrfs_btree_balance_dirty(root);
Chris Mason39544012007-12-12 14:38:19 -05004073
Chris Mason39279cc2007-06-12 06:35:45 -04004074 return err;
4075}
4076
Chris Mason323ac952008-10-01 19:05:46 -04004077/*
Chris Mason39279cc2007-06-12 06:35:45 -04004078 * this can truncate away extent items, csum items and directory items.
4079 * It starts at a high offset and removes keys until it can't find
Chris Masond352ac62008-09-29 15:18:18 -04004080 * any higher than new_size
Chris Mason39279cc2007-06-12 06:35:45 -04004081 *
4082 * csum items that cross the new i_size are truncated to the new size
4083 * as well.
Josef Bacik7b128762008-07-24 12:17:14 -04004084 *
4085 * min_type is the minimum key type to truncate down to. If set to 0, this
4086 * will kill all the items on this inode, including the INODE_ITEM_KEY.
Chris Mason39279cc2007-06-12 06:35:45 -04004087 */
Yan, Zheng80825102009-11-12 09:35:36 +00004088int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
4089 struct btrfs_root *root,
4090 struct inode *inode,
4091 u64 new_size, u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04004092{
Chris Mason39279cc2007-06-12 06:35:45 -04004093 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04004094 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04004095 struct btrfs_file_extent_item *fi;
Yan, Zheng80825102009-11-12 09:35:36 +00004096 struct btrfs_key key;
4097 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04004098 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04004099 u64 extent_num_bytes = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004100 u64 extent_offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004101 u64 item_end = 0;
Josef Bacik7f4f6e02013-08-29 16:43:28 -04004102 u64 last_size = (u64)-1;
Yan, Zheng80825102009-11-12 09:35:36 +00004103 u32 found_type = (u8)-1;
Chris Mason39279cc2007-06-12 06:35:45 -04004104 int found_extent;
4105 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05004106 int pending_del_nr = 0;
4107 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04004108 int extent_type = -1;
Yan, Zheng80825102009-11-12 09:35:36 +00004109 int ret;
4110 int err = 0;
Li Zefan33345d012011-04-20 10:31:50 +08004111 u64 ino = btrfs_ino(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00004112
4113 BUG_ON(new_size > 0 && min_type != BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04004114
Mark Fasheh0eb0e192011-07-12 16:44:10 -07004115 path = btrfs_alloc_path();
4116 if (!path)
4117 return -ENOMEM;
4118 path->reada = -1;
4119
Josef Bacik5dc562c2012-08-17 13:14:17 -04004120 /*
4121 * We want to drop from the next block forward in case this new size is
4122 * not block aligned since we will be keeping the last block of the
4123 * extent just the way it is.
4124 */
Miao Xie27cdeb72014-04-02 19:51:05 +08004125 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) ||
4126 root == root->fs_info->tree_root)
Qu Wenruofda28322013-02-26 08:10:22 +00004127 btrfs_drop_extent_cache(inode, ALIGN(new_size,
4128 root->sectorsize), (u64)-1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00004129
Miao Xie16cdcec2011-04-22 18:12:22 +08004130 /*
4131 * This function is also used to drop the items in the log tree before
4132 * we relog the inode, so if root != BTRFS_I(inode)->root, it means
4133 * it is used to drop the loged items. So we shouldn't kill the delayed
4134 * items.
4135 */
4136 if (min_type == 0 && root == BTRFS_I(inode)->root)
4137 btrfs_kill_delayed_inode_items(inode);
4138
Li Zefan33345d012011-04-20 10:31:50 +08004139 key.objectid = ino;
Chris Mason39279cc2007-06-12 06:35:45 -04004140 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04004141 key.type = (u8)-1;
4142
Chris Mason85e21ba2008-01-29 15:11:36 -05004143search_again:
Chris Masonb9473432009-03-13 11:00:37 -04004144 path->leave_spinning = 1;
Chris Mason85e21ba2008-01-29 15:11:36 -05004145 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Yan, Zheng80825102009-11-12 09:35:36 +00004146 if (ret < 0) {
4147 err = ret;
4148 goto out;
4149 }
Chris Masond3977122009-01-05 21:25:51 -05004150
Chris Mason85e21ba2008-01-29 15:11:36 -05004151 if (ret > 0) {
Chris Masone02119d2008-09-05 16:13:11 -04004152 /* there are no items in the tree for us to truncate, we're
4153 * done
4154 */
Yan, Zheng80825102009-11-12 09:35:36 +00004155 if (path->slots[0] == 0)
4156 goto out;
Chris Mason85e21ba2008-01-29 15:11:36 -05004157 path->slots[0]--;
4158 }
4159
Chris Masond3977122009-01-05 21:25:51 -05004160 while (1) {
Chris Mason39279cc2007-06-12 06:35:45 -04004161 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04004162 leaf = path->nodes[0];
4163 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
David Sterba962a2982014-06-04 18:41:45 +02004164 found_type = found_key.type;
Chris Mason39279cc2007-06-12 06:35:45 -04004165
Li Zefan33345d012011-04-20 10:31:50 +08004166 if (found_key.objectid != ino)
Chris Mason39279cc2007-06-12 06:35:45 -04004167 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004168
Chris Mason85e21ba2008-01-29 15:11:36 -05004169 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04004170 break;
4171
Chris Mason5f39d392007-10-15 16:14:19 -04004172 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04004173 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04004174 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04004175 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04004176 extent_type = btrfs_file_extent_type(leaf, fi);
4177 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04004178 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04004179 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -04004180 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason179e29e2007-11-01 11:28:41 -04004181 item_end += btrfs_file_extent_inline_len(leaf,
Chris Mason514ac8a2014-01-03 21:07:00 -08004182 path->slots[0], fi);
Chris Mason39279cc2007-06-12 06:35:45 -04004183 }
Yan008630c2007-11-07 13:31:09 -05004184 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04004185 }
Yan, Zheng80825102009-11-12 09:35:36 +00004186 if (found_type > min_type) {
Chris Mason39279cc2007-06-12 06:35:45 -04004187 del_item = 1;
Yan, Zheng80825102009-11-12 09:35:36 +00004188 } else {
4189 if (item_end < new_size)
4190 break;
4191 if (found_key.offset >= new_size)
4192 del_item = 1;
4193 else
4194 del_item = 0;
4195 }
Chris Mason39279cc2007-06-12 06:35:45 -04004196 found_extent = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004197 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04004198 if (found_type != BTRFS_EXTENT_DATA_KEY)
4199 goto delete;
4200
Josef Bacik7f4f6e02013-08-29 16:43:28 -04004201 if (del_item)
4202 last_size = found_key.offset;
4203 else
4204 last_size = new_size;
4205
Chris Mason179e29e2007-11-01 11:28:41 -04004206 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04004207 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04004208 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Miao Xief70a9a6b2012-01-12 19:10:12 -05004209 if (!del_item) {
Chris Masondb945352007-10-15 16:15:53 -04004210 u64 orig_num_bytes =
4211 btrfs_file_extent_num_bytes(leaf, fi);
Qu Wenruofda28322013-02-26 08:10:22 +00004212 extent_num_bytes = ALIGN(new_size -
4213 found_key.offset,
4214 root->sectorsize);
Chris Masondb945352007-10-15 16:15:53 -04004215 btrfs_set_file_extent_num_bytes(leaf, fi,
4216 extent_num_bytes);
4217 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05004218 extent_num_bytes);
Miao Xie27cdeb72014-04-02 19:51:05 +08004219 if (test_bit(BTRFS_ROOT_REF_COWS,
4220 &root->state) &&
4221 extent_start != 0)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004222 inode_sub_bytes(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04004223 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04004224 } else {
Chris Masondb945352007-10-15 16:15:53 -04004225 extent_num_bytes =
4226 btrfs_file_extent_disk_num_bytes(leaf,
4227 fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004228 extent_offset = found_key.offset -
4229 btrfs_file_extent_offset(leaf, fi);
4230
Chris Mason39279cc2007-06-12 06:35:45 -04004231 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05004232 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04004233 if (extent_start != 0) {
4234 found_extent = 1;
Miao Xie27cdeb72014-04-02 19:51:05 +08004235 if (test_bit(BTRFS_ROOT_REF_COWS,
4236 &root->state))
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004237 inode_sub_bytes(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04004238 }
4239 }
Chris Mason90692182008-02-08 13:49:28 -05004240 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04004241 /*
4242 * we can't truncate inline items that have had
4243 * special encodings
4244 */
4245 if (!del_item &&
4246 btrfs_file_extent_compression(leaf, fi) == 0 &&
4247 btrfs_file_extent_encryption(leaf, fi) == 0 &&
4248 btrfs_file_extent_other_encoding(leaf, fi) == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04004249 u32 size = new_size - found_key.offset;
4250
Miao Xie27cdeb72014-04-02 19:51:05 +08004251 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state))
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004252 inode_sub_bytes(inode, item_end + 1 -
4253 new_size);
Chris Mason514ac8a2014-01-03 21:07:00 -08004254
4255 /*
4256 * update the ram bytes to properly reflect
4257 * the new size of our item
4258 */
4259 btrfs_set_file_extent_ram_bytes(leaf, fi, size);
Chris Masone02119d2008-09-05 16:13:11 -04004260 size =
4261 btrfs_file_extent_calc_inline_size(size);
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00004262 btrfs_truncate_item(root, path, size, 1);
Miao Xie27cdeb72014-04-02 19:51:05 +08004263 } else if (test_bit(BTRFS_ROOT_REF_COWS,
4264 &root->state)) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004265 inode_sub_bytes(inode, item_end + 1 -
4266 found_key.offset);
Chris Mason90692182008-02-08 13:49:28 -05004267 }
Chris Mason39279cc2007-06-12 06:35:45 -04004268 }
Chris Mason179e29e2007-11-01 11:28:41 -04004269delete:
Chris Mason39279cc2007-06-12 06:35:45 -04004270 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05004271 if (!pending_del_nr) {
4272 /* no pending yet, add ourselves */
4273 pending_del_slot = path->slots[0];
4274 pending_del_nr = 1;
4275 } else if (pending_del_nr &&
4276 path->slots[0] + 1 == pending_del_slot) {
4277 /* hop on the pending chunk */
4278 pending_del_nr++;
4279 pending_del_slot = path->slots[0];
4280 } else {
Chris Masond3977122009-01-05 21:25:51 -05004281 BUG();
Chris Mason85e21ba2008-01-29 15:11:36 -05004282 }
Chris Mason39279cc2007-06-12 06:35:45 -04004283 } else {
4284 break;
4285 }
Miao Xie27cdeb72014-04-02 19:51:05 +08004286 if (found_extent &&
4287 (test_bit(BTRFS_ROOT_REF_COWS, &root->state) ||
4288 root == root->fs_info->tree_root)) {
Chris Masonb9473432009-03-13 11:00:37 -04004289 btrfs_set_path_blocking(path);
Chris Mason39279cc2007-06-12 06:35:45 -04004290 ret = btrfs_free_extent(trans, root, extent_start,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004291 extent_num_bytes, 0,
4292 btrfs_header_owner(leaf),
Arne Jansen66d7e7f2011-09-12 15:26:38 +02004293 ino, extent_offset, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04004294 BUG_ON(ret);
4295 }
Chris Mason85e21ba2008-01-29 15:11:36 -05004296
Yan, Zheng80825102009-11-12 09:35:36 +00004297 if (found_type == BTRFS_INODE_ITEM_KEY)
4298 break;
4299
4300 if (path->slots[0] == 0 ||
4301 path->slots[0] != pending_del_slot) {
Yan, Zheng80825102009-11-12 09:35:36 +00004302 if (pending_del_nr) {
4303 ret = btrfs_del_items(trans, root, path,
4304 pending_del_slot,
4305 pending_del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004306 if (ret) {
4307 btrfs_abort_transaction(trans,
4308 root, ret);
4309 goto error;
4310 }
Yan, Zheng80825102009-11-12 09:35:36 +00004311 pending_del_nr = 0;
4312 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004313 btrfs_release_path(path);
Chris Mason85e21ba2008-01-29 15:11:36 -05004314 goto search_again;
Yan, Zheng80825102009-11-12 09:35:36 +00004315 } else {
4316 path->slots[0]--;
Chris Mason85e21ba2008-01-29 15:11:36 -05004317 }
Chris Mason39279cc2007-06-12 06:35:45 -04004318 }
Yan, Zheng80825102009-11-12 09:35:36 +00004319out:
Chris Mason85e21ba2008-01-29 15:11:36 -05004320 if (pending_del_nr) {
4321 ret = btrfs_del_items(trans, root, path, pending_del_slot,
4322 pending_del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004323 if (ret)
4324 btrfs_abort_transaction(trans, root, ret);
Chris Mason85e21ba2008-01-29 15:11:36 -05004325 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004326error:
Filipe Mananadac57052014-08-29 20:54:26 +01004327 if (last_size != (u64)-1 &&
4328 root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID)
Josef Bacik7f4f6e02013-08-29 16:43:28 -04004329 btrfs_ordered_update_i_size(inode, last_size, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04004330 btrfs_free_path(path);
Yan, Zheng80825102009-11-12 09:35:36 +00004331 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04004332}
4333
Chris Masona52d9a82007-08-27 16:49:44 -04004334/*
Josef Bacik2aaa6652012-08-29 14:27:18 -04004335 * btrfs_truncate_page - read, zero a chunk and write a page
4336 * @inode - inode that we're zeroing
4337 * @from - the offset to start zeroing
4338 * @len - the length to zero, 0 to zero the entire range respective to the
4339 * offset
4340 * @front - zero up to the offset instead of from the offset on
4341 *
4342 * This will find the page for the "from" offset and cow the page and zero the
4343 * part we want to zero. This is used with truncate and hole punching.
Chris Masona52d9a82007-08-27 16:49:44 -04004344 */
Josef Bacik2aaa6652012-08-29 14:27:18 -04004345int btrfs_truncate_page(struct inode *inode, loff_t from, loff_t len,
4346 int front)
Chris Masona52d9a82007-08-27 16:49:44 -04004347{
Josef Bacik2aaa6652012-08-29 14:27:18 -04004348 struct address_space *mapping = inode->i_mapping;
Chris Masondb945352007-10-15 16:15:53 -04004349 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004350 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
4351 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004352 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004353 char *kaddr;
Chris Masondb945352007-10-15 16:15:53 -04004354 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -04004355 pgoff_t index = from >> PAGE_CACHE_SHIFT;
4356 unsigned offset = from & (PAGE_CACHE_SIZE-1);
4357 struct page *page;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04004358 gfp_t mask = btrfs_alloc_write_mask(mapping);
Chris Masona52d9a82007-08-27 16:49:44 -04004359 int ret = 0;
4360 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004361 u64 page_end;
Chris Masona52d9a82007-08-27 16:49:44 -04004362
Josef Bacik2aaa6652012-08-29 14:27:18 -04004363 if ((offset & (blocksize - 1)) == 0 &&
4364 (!len || ((len & (blocksize - 1)) == 0)))
Chris Masona52d9a82007-08-27 16:49:44 -04004365 goto out;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004366 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
Josef Bacik5d5e1032009-10-13 16:46:49 -04004367 if (ret)
4368 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04004369
Chris Mason211c17f2008-05-15 09:13:45 -04004370again:
Josef Bacik3b16a4e2011-09-21 15:05:58 -04004371 page = find_or_create_page(mapping, index, mask);
Josef Bacik5d5e1032009-10-13 16:46:49 -04004372 if (!page) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004373 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Miao Xieac6a2b32012-12-05 10:56:13 +00004374 ret = -ENOMEM;
Chris Masona52d9a82007-08-27 16:49:44 -04004375 goto out;
Josef Bacik5d5e1032009-10-13 16:46:49 -04004376 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004377
4378 page_start = page_offset(page);
4379 page_end = page_start + PAGE_CACHE_SIZE - 1;
4380
Chris Masona52d9a82007-08-27 16:49:44 -04004381 if (!PageUptodate(page)) {
4382 ret = btrfs_readpage(NULL, page);
4383 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04004384 if (page->mapping != mapping) {
4385 unlock_page(page);
4386 page_cache_release(page);
4387 goto again;
4388 }
Chris Masona52d9a82007-08-27 16:49:44 -04004389 if (!PageUptodate(page)) {
4390 ret = -EIO;
Chris Mason89642222008-07-24 09:41:53 -04004391 goto out_unlock;
Chris Masona52d9a82007-08-27 16:49:44 -04004392 }
4393 }
Chris Mason211c17f2008-05-15 09:13:45 -04004394 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004395
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004396 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004397 set_page_extent_mapped(page);
4398
4399 ordered = btrfs_lookup_ordered_extent(inode, page_start);
4400 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00004401 unlock_extent_cached(io_tree, page_start, page_end,
4402 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004403 unlock_page(page);
4404 page_cache_release(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04004405 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004406 btrfs_put_ordered_extent(ordered);
4407 goto again;
4408 }
4409
Josef Bacik2ac55d42010-02-03 19:33:23 +00004410 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Liu Bo9e8a4a82012-09-05 19:10:51 -06004411 EXTENT_DIRTY | EXTENT_DELALLOC |
4412 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
Josef Bacik2ac55d42010-02-03 19:33:23 +00004413 0, 0, &cached_state, GFP_NOFS);
Josef Bacik5d5e1032009-10-13 16:46:49 -04004414
Josef Bacik2ac55d42010-02-03 19:33:23 +00004415 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
4416 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004417 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00004418 unlock_extent_cached(io_tree, page_start, page_end,
4419 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004420 goto out_unlock;
4421 }
4422
Chris Masone6dcd2d2008-07-17 12:53:50 -04004423 if (offset != PAGE_CACHE_SIZE) {
Josef Bacik2aaa6652012-08-29 14:27:18 -04004424 if (!len)
4425 len = PAGE_CACHE_SIZE - offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004426 kaddr = kmap(page);
Josef Bacik2aaa6652012-08-29 14:27:18 -04004427 if (front)
4428 memset(kaddr, 0, offset);
4429 else
4430 memset(kaddr + offset, 0, len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004431 flush_dcache_page(page);
4432 kunmap(page);
4433 }
Chris Mason247e7432008-07-17 12:53:51 -04004434 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004435 set_page_dirty(page);
Josef Bacik2ac55d42010-02-03 19:33:23 +00004436 unlock_extent_cached(io_tree, page_start, page_end, &cached_state,
4437 GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04004438
Chris Mason89642222008-07-24 09:41:53 -04004439out_unlock:
Josef Bacik5d5e1032009-10-13 16:46:49 -04004440 if (ret)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004441 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Mason39279cc2007-06-12 06:35:45 -04004442 unlock_page(page);
4443 page_cache_release(page);
4444out:
4445 return ret;
4446}
4447
Josef Bacik16e75492013-10-22 12:18:51 -04004448static int maybe_insert_hole(struct btrfs_root *root, struct inode *inode,
4449 u64 offset, u64 len)
4450{
4451 struct btrfs_trans_handle *trans;
4452 int ret;
4453
4454 /*
4455 * Still need to make sure the inode looks like it's been updated so
4456 * that any holes get logged if we fsync.
4457 */
4458 if (btrfs_fs_incompat(root->fs_info, NO_HOLES)) {
4459 BTRFS_I(inode)->last_trans = root->fs_info->generation;
4460 BTRFS_I(inode)->last_sub_trans = root->log_transid;
4461 BTRFS_I(inode)->last_log_commit = root->last_log_commit;
4462 return 0;
4463 }
4464
4465 /*
4466 * 1 - for the one we're dropping
4467 * 1 - for the one we're adding
4468 * 1 - for updating the inode.
4469 */
4470 trans = btrfs_start_transaction(root, 3);
4471 if (IS_ERR(trans))
4472 return PTR_ERR(trans);
4473
4474 ret = btrfs_drop_extents(trans, root, inode, offset, offset + len, 1);
4475 if (ret) {
4476 btrfs_abort_transaction(trans, root, ret);
4477 btrfs_end_transaction(trans, root);
4478 return ret;
4479 }
4480
4481 ret = btrfs_insert_file_extent(trans, root, btrfs_ino(inode), offset,
4482 0, 0, len, 0, len, 0, 0, 0);
4483 if (ret)
4484 btrfs_abort_transaction(trans, root, ret);
4485 else
4486 btrfs_update_inode(trans, root, inode);
4487 btrfs_end_transaction(trans, root);
4488 return ret;
4489}
4490
Josef Bacik695a0d02011-03-04 15:46:53 -05004491/*
4492 * This function puts in dummy file extents for the area we're creating a hole
4493 * for. So if we are truncating this file to a larger size we need to insert
4494 * these file extents so that btrfs_get_extent will return a EXTENT_MAP_HOLE for
4495 * the range between oldsize and size
4496 */
Josef Bacika41ad392011-01-31 15:30:16 -05004497int btrfs_cont_expand(struct inode *inode, loff_t oldsize, loff_t size)
Yan Zheng9036c102008-10-30 14:19:41 -04004498{
Yan Zheng9036c102008-10-30 14:19:41 -04004499 struct btrfs_root *root = BTRFS_I(inode)->root;
4500 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004501 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004502 struct extent_state *cached_state = NULL;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004503 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Qu Wenruofda28322013-02-26 08:10:22 +00004504 u64 hole_start = ALIGN(oldsize, root->sectorsize);
4505 u64 block_end = ALIGN(size, root->sectorsize);
Yan Zheng9036c102008-10-30 14:19:41 -04004506 u64 last_byte;
4507 u64 cur_offset;
4508 u64 hole_size;
Josef Bacik9ed74f22009-09-11 16:12:44 -04004509 int err = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04004510
Josef Bacika71754f2013-06-17 17:14:39 -04004511 /*
4512 * If our size started in the middle of a page we need to zero out the
4513 * rest of the page before we expand the i_size, otherwise we could
4514 * expose stale data.
4515 */
4516 err = btrfs_truncate_page(inode, oldsize, 0, 0);
4517 if (err)
4518 return err;
4519
Yan Zheng9036c102008-10-30 14:19:41 -04004520 if (size <= hole_start)
4521 return 0;
4522
Yan Zheng9036c102008-10-30 14:19:41 -04004523 while (1) {
4524 struct btrfs_ordered_extent *ordered;
Miao Xiefa7c1492013-09-26 13:15:27 +08004525
Josef Bacik2ac55d42010-02-03 19:33:23 +00004526 lock_extent_bits(io_tree, hole_start, block_end - 1, 0,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004527 &cached_state);
Miao Xiefa7c1492013-09-26 13:15:27 +08004528 ordered = btrfs_lookup_ordered_range(inode, hole_start,
4529 block_end - hole_start);
Yan Zheng9036c102008-10-30 14:19:41 -04004530 if (!ordered)
4531 break;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004532 unlock_extent_cached(io_tree, hole_start, block_end - 1,
4533 &cached_state, GFP_NOFS);
Miao Xiefa7c1492013-09-26 13:15:27 +08004534 btrfs_start_ordered_extent(inode, ordered, 1);
Yan Zheng9036c102008-10-30 14:19:41 -04004535 btrfs_put_ordered_extent(ordered);
4536 }
4537
Yan Zheng9036c102008-10-30 14:19:41 -04004538 cur_offset = hole_start;
4539 while (1) {
4540 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
4541 block_end - cur_offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004542 if (IS_ERR(em)) {
4543 err = PTR_ERR(em);
Zach Brownf2767952013-01-08 19:37:58 +00004544 em = NULL;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004545 break;
4546 }
Yan Zheng9036c102008-10-30 14:19:41 -04004547 last_byte = min(extent_map_end(em), block_end);
Qu Wenruofda28322013-02-26 08:10:22 +00004548 last_byte = ALIGN(last_byte , root->sectorsize);
Yan, Zheng80825102009-11-12 09:35:36 +00004549 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
Josef Bacik5dc562c2012-08-17 13:14:17 -04004550 struct extent_map *hole_em;
Yan Zheng9036c102008-10-30 14:19:41 -04004551 hole_size = last_byte - cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00004552
Josef Bacik16e75492013-10-22 12:18:51 -04004553 err = maybe_insert_hole(root, inode, cur_offset,
4554 hole_size);
4555 if (err)
Chris Mason771ed682008-11-06 22:02:51 -05004556 break;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004557 btrfs_drop_extent_cache(inode, cur_offset,
4558 cur_offset + hole_size - 1, 0);
4559 hole_em = alloc_extent_map();
4560 if (!hole_em) {
4561 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
4562 &BTRFS_I(inode)->runtime_flags);
4563 goto next;
4564 }
4565 hole_em->start = cur_offset;
4566 hole_em->len = hole_size;
4567 hole_em->orig_start = cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00004568
Josef Bacik5dc562c2012-08-17 13:14:17 -04004569 hole_em->block_start = EXTENT_MAP_HOLE;
4570 hole_em->block_len = 0;
Josef Bacikb4939682012-12-03 10:31:19 -05004571 hole_em->orig_block_len = 0;
Josef Bacikcc95bef2013-04-04 14:31:27 -04004572 hole_em->ram_bytes = hole_size;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004573 hole_em->bdev = root->fs_info->fs_devices->latest_bdev;
4574 hole_em->compress_type = BTRFS_COMPRESS_NONE;
Josef Bacik16e75492013-10-22 12:18:51 -04004575 hole_em->generation = root->fs_info->generation;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004576
4577 while (1) {
4578 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04004579 err = add_extent_mapping(em_tree, hole_em, 1);
Josef Bacik5dc562c2012-08-17 13:14:17 -04004580 write_unlock(&em_tree->lock);
4581 if (err != -EEXIST)
4582 break;
4583 btrfs_drop_extent_cache(inode, cur_offset,
4584 cur_offset +
4585 hole_size - 1, 0);
4586 }
4587 free_extent_map(hole_em);
Yan Zheng9036c102008-10-30 14:19:41 -04004588 }
Josef Bacik16e75492013-10-22 12:18:51 -04004589next:
Yan Zheng9036c102008-10-30 14:19:41 -04004590 free_extent_map(em);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004591 em = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04004592 cur_offset = last_byte;
Yan, Zheng80825102009-11-12 09:35:36 +00004593 if (cur_offset >= block_end)
Yan Zheng9036c102008-10-30 14:19:41 -04004594 break;
4595 }
Yan, Zhenga22285a2010-05-16 10:48:46 -04004596 free_extent_map(em);
Josef Bacik2ac55d42010-02-03 19:33:23 +00004597 unlock_extent_cached(io_tree, hole_start, block_end - 1, &cached_state,
4598 GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04004599 return err;
4600}
4601
Filipe Manana9ea24bb2014-10-29 11:57:59 +00004602static int wait_snapshoting_atomic_t(atomic_t *a)
4603{
4604 schedule();
4605 return 0;
4606}
4607
4608static void wait_for_snapshot_creation(struct btrfs_root *root)
4609{
4610 while (true) {
4611 int ret;
4612
4613 ret = btrfs_start_write_no_snapshoting(root);
4614 if (ret)
4615 break;
4616 wait_on_atomic_t(&root->will_be_snapshoted,
4617 wait_snapshoting_atomic_t,
4618 TASK_UNINTERRUPTIBLE);
4619 }
4620}
4621
Eric Sandeen3972f262013-01-12 02:57:22 +00004622static int btrfs_setsize(struct inode *inode, struct iattr *attr)
Yan, Zheng80825102009-11-12 09:35:36 +00004623{
Miao Xief4a2f4c2011-12-14 20:12:01 -05004624 struct btrfs_root *root = BTRFS_I(inode)->root;
4625 struct btrfs_trans_handle *trans;
Josef Bacika41ad392011-01-31 15:30:16 -05004626 loff_t oldsize = i_size_read(inode);
Eric Sandeen3972f262013-01-12 02:57:22 +00004627 loff_t newsize = attr->ia_size;
4628 int mask = attr->ia_valid;
Yan, Zheng80825102009-11-12 09:35:36 +00004629 int ret;
4630
Eric Sandeen3972f262013-01-12 02:57:22 +00004631 /*
4632 * The regular truncate() case without ATTR_CTIME and ATTR_MTIME is a
4633 * special case where we need to update the times despite not having
4634 * these flags set. For all other operations the VFS set these flags
4635 * explicitly if it wants a timestamp update.
4636 */
Christoph Hellwigdff6efc2013-11-19 07:17:07 -08004637 if (newsize != oldsize) {
4638 inode_inc_iversion(inode);
4639 if (!(mask & (ATTR_CTIME | ATTR_MTIME)))
4640 inode->i_ctime = inode->i_mtime =
4641 current_fs_time(inode->i_sb);
4642 }
Eric Sandeen3972f262013-01-12 02:57:22 +00004643
Josef Bacika41ad392011-01-31 15:30:16 -05004644 if (newsize > oldsize) {
Kirill A. Shutemov7caef262013-09-12 15:13:56 -07004645 truncate_pagecache(inode, newsize);
Filipe Manana9ea24bb2014-10-29 11:57:59 +00004646 /*
4647 * Don't do an expanding truncate while snapshoting is ongoing.
4648 * This is to ensure the snapshot captures a fully consistent
4649 * state of this file - if the snapshot captures this expanding
4650 * truncation, it must capture all writes that happened before
4651 * this truncation.
4652 */
4653 wait_for_snapshot_creation(root);
Josef Bacika41ad392011-01-31 15:30:16 -05004654 ret = btrfs_cont_expand(inode, oldsize, newsize);
Filipe Manana9ea24bb2014-10-29 11:57:59 +00004655 if (ret) {
4656 btrfs_end_write_no_snapshoting(root);
Yan, Zheng80825102009-11-12 09:35:36 +00004657 return ret;
Filipe Manana9ea24bb2014-10-29 11:57:59 +00004658 }
Yan, Zheng80825102009-11-12 09:35:36 +00004659
Miao Xief4a2f4c2011-12-14 20:12:01 -05004660 trans = btrfs_start_transaction(root, 1);
Filipe Manana9ea24bb2014-10-29 11:57:59 +00004661 if (IS_ERR(trans)) {
4662 btrfs_end_write_no_snapshoting(root);
Miao Xief4a2f4c2011-12-14 20:12:01 -05004663 return PTR_ERR(trans);
Filipe Manana9ea24bb2014-10-29 11:57:59 +00004664 }
Miao Xief4a2f4c2011-12-14 20:12:01 -05004665
4666 i_size_write(inode, newsize);
4667 btrfs_ordered_update_i_size(inode, i_size_read(inode), NULL);
4668 ret = btrfs_update_inode(trans, root, inode);
Filipe Manana9ea24bb2014-10-29 11:57:59 +00004669 btrfs_end_write_no_snapshoting(root);
Josef Bacik7ad85bb2012-01-12 19:10:12 -05004670 btrfs_end_transaction(trans, root);
Josef Bacika41ad392011-01-31 15:30:16 -05004671 } else {
Yan, Zheng80825102009-11-12 09:35:36 +00004672
Josef Bacika41ad392011-01-31 15:30:16 -05004673 /*
4674 * We're truncating a file that used to have good data down to
4675 * zero. Make sure it gets into the ordered flush list so that
4676 * any new writes get down to disk quickly.
4677 */
4678 if (newsize == 0)
Josef Bacik72ac3c02012-05-23 14:13:11 -04004679 set_bit(BTRFS_INODE_ORDERED_DATA_CLOSE,
4680 &BTRFS_I(inode)->runtime_flags);
Yan, Zheng80825102009-11-12 09:35:36 +00004681
Josef Bacikf3fe8202013-01-07 17:03:21 -05004682 /*
4683 * 1 for the orphan item we're going to add
4684 * 1 for the orphan item deletion.
4685 */
4686 trans = btrfs_start_transaction(root, 2);
4687 if (IS_ERR(trans))
4688 return PTR_ERR(trans);
4689
4690 /*
4691 * We need to do this in case we fail at _any_ point during the
4692 * actual truncate. Once we do the truncate_setsize we could
4693 * invalidate pages which forces any outstanding ordered io to
4694 * be instantly completed which will give us extents that need
4695 * to be truncated. If we fail to get an orphan inode down we
4696 * could have left over extents that were never meant to live,
4697 * so we need to garuntee from this point on that everything
4698 * will be consistent.
4699 */
4700 ret = btrfs_orphan_add(trans, inode);
4701 btrfs_end_transaction(trans, root);
4702 if (ret)
4703 return ret;
4704
Josef Bacika41ad392011-01-31 15:30:16 -05004705 /* we don't support swapfiles, so vmtruncate shouldn't fail */
4706 truncate_setsize(inode, newsize);
Miao Xie2e60a512013-02-08 07:01:08 +00004707
4708 /* Disable nonlocked read DIO to avoid the end less truncate */
4709 btrfs_inode_block_unlocked_dio(inode);
4710 inode_dio_wait(inode);
4711 btrfs_inode_resume_unlocked_dio(inode);
4712
Josef Bacika41ad392011-01-31 15:30:16 -05004713 ret = btrfs_truncate(inode);
Josef Bacik7f4f6e02013-08-29 16:43:28 -04004714 if (ret && inode->i_nlink) {
4715 int err;
4716
4717 /*
4718 * failed to truncate, disk_i_size is only adjusted down
4719 * as we remove extents, so it should represent the true
4720 * size of the inode, so reset the in memory size and
4721 * delete our orphan entry.
4722 */
4723 trans = btrfs_join_transaction(root);
4724 if (IS_ERR(trans)) {
4725 btrfs_orphan_del(NULL, inode);
4726 return ret;
4727 }
4728 i_size_write(inode, BTRFS_I(inode)->disk_i_size);
4729 err = btrfs_orphan_del(trans, inode);
4730 if (err)
4731 btrfs_abort_transaction(trans, root, err);
4732 btrfs_end_transaction(trans, root);
4733 }
Yan, Zheng80825102009-11-12 09:35:36 +00004734 }
4735
Josef Bacika41ad392011-01-31 15:30:16 -05004736 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00004737}
4738
Chris Mason39279cc2007-06-12 06:35:45 -04004739static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
4740{
4741 struct inode *inode = dentry->d_inode;
Li Zefanb83cc962010-12-20 16:04:08 +08004742 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004743 int err;
4744
Li Zefanb83cc962010-12-20 16:04:08 +08004745 if (btrfs_root_readonly(root))
4746 return -EROFS;
4747
Chris Mason39279cc2007-06-12 06:35:45 -04004748 err = inode_change_ok(inode, attr);
4749 if (err)
4750 return err;
4751
Chris Mason5a3f23d2009-03-31 13:27:11 -04004752 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
Eric Sandeen3972f262013-01-12 02:57:22 +00004753 err = btrfs_setsize(inode, attr);
Yan, Zheng80825102009-11-12 09:35:36 +00004754 if (err)
4755 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04004756 }
Yan Zheng9036c102008-10-30 14:19:41 -04004757
Christoph Hellwig10257742010-06-04 11:30:02 +02004758 if (attr->ia_valid) {
4759 setattr_copy(inode, attr);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04004760 inode_inc_iversion(inode);
Josef Bacik22c44fe2011-11-30 10:45:38 -05004761 err = btrfs_dirty_inode(inode);
Josef Bacik33268ea2008-07-24 12:16:36 -04004762
Josef Bacik22c44fe2011-11-30 10:45:38 -05004763 if (!err && attr->ia_valid & ATTR_MODE)
Christoph Hellwig996a7102013-12-20 05:16:43 -08004764 err = posix_acl_chmod(inode, inode->i_mode);
Christoph Hellwig10257742010-06-04 11:30:02 +02004765 }
4766
Chris Mason39279cc2007-06-12 06:35:45 -04004767 return err;
4768}
Chris Mason61295eb2008-01-14 16:24:38 -05004769
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00004770/*
4771 * While truncating the inode pages during eviction, we get the VFS calling
4772 * btrfs_invalidatepage() against each page of the inode. This is slow because
4773 * the calls to btrfs_invalidatepage() result in a huge amount of calls to
4774 * lock_extent_bits() and clear_extent_bit(), which keep merging and splitting
4775 * extent_state structures over and over, wasting lots of time.
4776 *
4777 * Therefore if the inode is being evicted, let btrfs_invalidatepage() skip all
4778 * those expensive operations on a per page basis and do only the ordered io
4779 * finishing, while we release here the extent_map and extent_state structures,
4780 * without the excessive merging and splitting.
4781 */
4782static void evict_inode_truncate_pages(struct inode *inode)
4783{
4784 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
4785 struct extent_map_tree *map_tree = &BTRFS_I(inode)->extent_tree;
4786 struct rb_node *node;
4787
4788 ASSERT(inode->i_state & I_FREEING);
Johannes Weiner91b0abe2014-04-03 14:47:49 -07004789 truncate_inode_pages_final(&inode->i_data);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00004790
4791 write_lock(&map_tree->lock);
4792 while (!RB_EMPTY_ROOT(&map_tree->map)) {
4793 struct extent_map *em;
4794
4795 node = rb_first(&map_tree->map);
4796 em = rb_entry(node, struct extent_map, rb_node);
Wang Shilong180589e2013-12-14 15:27:31 +08004797 clear_bit(EXTENT_FLAG_PINNED, &em->flags);
4798 clear_bit(EXTENT_FLAG_LOGGING, &em->flags);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00004799 remove_extent_mapping(map_tree, em);
4800 free_extent_map(em);
Filipe Manana7064dd52014-08-08 02:47:05 +01004801 if (need_resched()) {
4802 write_unlock(&map_tree->lock);
4803 cond_resched();
4804 write_lock(&map_tree->lock);
4805 }
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00004806 }
4807 write_unlock(&map_tree->lock);
4808
4809 spin_lock(&io_tree->lock);
4810 while (!RB_EMPTY_ROOT(&io_tree->state)) {
4811 struct extent_state *state;
4812 struct extent_state *cached_state = NULL;
4813
4814 node = rb_first(&io_tree->state);
4815 state = rb_entry(node, struct extent_state, rb_node);
4816 atomic_inc(&state->refs);
4817 spin_unlock(&io_tree->lock);
4818
4819 lock_extent_bits(io_tree, state->start, state->end,
4820 0, &cached_state);
4821 clear_extent_bit(io_tree, state->start, state->end,
4822 EXTENT_LOCKED | EXTENT_DIRTY |
4823 EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING |
4824 EXTENT_DEFRAG, 1, 1,
4825 &cached_state, GFP_NOFS);
4826 free_extent_state(state);
4827
Filipe Manana7064dd52014-08-08 02:47:05 +01004828 cond_resched();
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00004829 spin_lock(&io_tree->lock);
4830 }
4831 spin_unlock(&io_tree->lock);
4832}
4833
Al Virobd555972010-06-07 11:35:40 -04004834void btrfs_evict_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04004835{
4836 struct btrfs_trans_handle *trans;
4837 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik726c35f2011-09-26 15:46:06 -04004838 struct btrfs_block_rsv *rsv, *global_rsv;
Josef Bacik07127182011-08-19 10:29:59 -04004839 u64 min_size = btrfs_calc_trunc_metadata_size(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04004840 int ret;
4841
liubo1abe9b82011-03-24 11:18:59 +00004842 trace_btrfs_inode_evict(inode);
4843
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00004844 evict_inode_truncate_pages(inode);
4845
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02004846 if (inode->i_nlink &&
4847 ((btrfs_root_refs(&root->root_item) != 0 &&
4848 root->root_key.objectid != BTRFS_ROOT_TREE_OBJECTID) ||
4849 btrfs_is_free_space_inode(inode)))
Al Virobd555972010-06-07 11:35:40 -04004850 goto no_delete;
4851
Chris Mason39279cc2007-06-12 06:35:45 -04004852 if (is_bad_inode(inode)) {
Josef Bacik7b128762008-07-24 12:17:14 -04004853 btrfs_orphan_del(NULL, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004854 goto no_delete;
4855 }
Al Virobd555972010-06-07 11:35:40 -04004856 /* do we really want it for ->i_nlink > 0 and zero btrfs_root_refs? */
Chris Mason4a096752008-07-21 10:29:44 -04004857 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Chris Mason5f39d392007-10-15 16:14:19 -04004858
Miao Xief6124962014-09-12 18:44:04 +08004859 btrfs_free_io_failure_record(inode, 0, (u64)-1);
4860
Yan, Zhengc71bf092009-11-12 09:34:40 +00004861 if (root->fs_info->log_root_recovering) {
Liu Bo6bf02312012-06-25 21:59:09 -06004862 BUG_ON(test_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
Josef Bacik8a35d952012-05-23 14:26:42 -04004863 &BTRFS_I(inode)->runtime_flags));
Yan, Zhengc71bf092009-11-12 09:34:40 +00004864 goto no_delete;
4865 }
4866
Yan, Zheng76dda932009-09-21 16:00:26 -04004867 if (inode->i_nlink > 0) {
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02004868 BUG_ON(btrfs_root_refs(&root->root_item) != 0 &&
4869 root->root_key.objectid != BTRFS_ROOT_TREE_OBJECTID);
Yan, Zheng76dda932009-09-21 16:00:26 -04004870 goto no_delete;
4871 }
4872
Miao Xie0e8c36a2012-12-19 06:59:51 +00004873 ret = btrfs_commit_inode_delayed_inode(inode);
4874 if (ret) {
4875 btrfs_orphan_del(NULL, inode);
4876 goto no_delete;
4877 }
4878
Miao Xie66d8f3d2012-09-06 04:02:28 -06004879 rsv = btrfs_alloc_block_rsv(root, BTRFS_BLOCK_RSV_TEMP);
Josef Bacik4289a662011-08-05 13:22:24 -04004880 if (!rsv) {
4881 btrfs_orphan_del(NULL, inode);
4882 goto no_delete;
4883 }
Josef Bacik4a338542011-08-29 11:01:31 -04004884 rsv->size = min_size;
Josef Bacikca7e70f2012-08-27 17:48:15 -04004885 rsv->failfast = 1;
Josef Bacik726c35f2011-09-26 15:46:06 -04004886 global_rsv = &root->fs_info->global_block_rsv;
Josef Bacik4289a662011-08-05 13:22:24 -04004887
Chris Masondbe674a2008-07-17 12:54:05 -04004888 btrfs_i_size_write(inode, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04004889
Josef Bacik4289a662011-08-05 13:22:24 -04004890 /*
Miao Xie8407aa42012-09-07 01:43:32 -06004891 * This is a bit simpler than btrfs_truncate since we've already
4892 * reserved our space for our orphan item in the unlink, so we just
4893 * need to reserve some slack space in case we add bytes and update
4894 * inode item when doing the truncate.
Josef Bacik4289a662011-08-05 13:22:24 -04004895 */
Yan, Zheng80825102009-11-12 09:35:36 +00004896 while (1) {
Miao Xie08e007d2012-10-16 11:33:38 +00004897 ret = btrfs_block_rsv_refill(root, rsv, min_size,
4898 BTRFS_RESERVE_FLUSH_LIMIT);
Yan, Zheng80825102009-11-12 09:35:36 +00004899
Josef Bacik726c35f2011-09-26 15:46:06 -04004900 /*
4901 * Try and steal from the global reserve since we will
4902 * likely not use this space anyway, we want to try as
4903 * hard as possible to get this to work.
4904 */
4905 if (ret)
4906 ret = btrfs_block_rsv_migrate(global_rsv, rsv, min_size);
4907
Yan, Zhengd68fc572010-05-16 10:49:58 -04004908 if (ret) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00004909 btrfs_warn(root->fs_info,
4910 "Could not get space for a delete, will truncate on mount %d",
4911 ret);
Josef Bacik4289a662011-08-05 13:22:24 -04004912 btrfs_orphan_del(NULL, inode);
4913 btrfs_free_block_rsv(root, rsv);
4914 goto no_delete;
Yan, Zhengd68fc572010-05-16 10:49:58 -04004915 }
4916
Miao Xie0e8c36a2012-12-19 06:59:51 +00004917 trans = btrfs_join_transaction(root);
Josef Bacik4289a662011-08-05 13:22:24 -04004918 if (IS_ERR(trans)) {
4919 btrfs_orphan_del(NULL, inode);
4920 btrfs_free_block_rsv(root, rsv);
4921 goto no_delete;
4922 }
4923
4924 trans->block_rsv = rsv;
4925
Yan, Zhengd68fc572010-05-16 10:49:58 -04004926 ret = btrfs_truncate_inode_items(trans, root, inode, 0, 0);
Josef Bacikca7e70f2012-08-27 17:48:15 -04004927 if (ret != -ENOSPC)
Yan, Zheng80825102009-11-12 09:35:36 +00004928 break;
4929
Miao Xie8407aa42012-09-07 01:43:32 -06004930 trans->block_rsv = &root->fs_info->trans_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00004931 btrfs_end_transaction(trans, root);
4932 trans = NULL;
Liu Bob53d3f52012-11-14 14:34:34 +00004933 btrfs_btree_balance_dirty(root);
Josef Bacik7b128762008-07-24 12:17:14 -04004934 }
4935
Josef Bacik4289a662011-08-05 13:22:24 -04004936 btrfs_free_block_rsv(root, rsv);
4937
Josef Bacik4ef31a42013-08-13 14:10:08 -04004938 /*
4939 * Errors here aren't a big deal, it just means we leave orphan items
4940 * in the tree. They will be cleaned up on the next mount.
4941 */
Yan, Zheng80825102009-11-12 09:35:36 +00004942 if (ret == 0) {
Josef Bacik4289a662011-08-05 13:22:24 -04004943 trans->block_rsv = root->orphan_block_rsv;
Josef Bacik4ef31a42013-08-13 14:10:08 -04004944 btrfs_orphan_del(trans, inode);
4945 } else {
4946 btrfs_orphan_del(NULL, inode);
Yan, Zheng80825102009-11-12 09:35:36 +00004947 }
Chris Mason85e21ba2008-01-29 15:11:36 -05004948
Josef Bacik4289a662011-08-05 13:22:24 -04004949 trans->block_rsv = &root->fs_info->trans_block_rsv;
Li Zefan581bb052011-04-20 10:06:11 +08004950 if (!(root == root->fs_info->tree_root ||
4951 root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID))
Li Zefan33345d012011-04-20 10:31:50 +08004952 btrfs_return_ino(root, btrfs_ino(inode));
Li Zefan581bb052011-04-20 10:06:11 +08004953
Chris Mason54aa1f42007-06-22 14:16:25 -04004954 btrfs_end_transaction(trans, root);
Liu Bob53d3f52012-11-14 14:34:34 +00004955 btrfs_btree_balance_dirty(root);
Chris Mason39279cc2007-06-12 06:35:45 -04004956no_delete:
Miao Xie89042e52013-05-15 07:48:15 +00004957 btrfs_remove_delayed_node(inode);
Jan Karadbd57682012-05-03 14:48:02 +02004958 clear_inode(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00004959 return;
Chris Mason39279cc2007-06-12 06:35:45 -04004960}
4961
4962/*
4963 * this returns the key found in the dir entry in the location pointer.
4964 * If no dir entries were found, location->objectid is 0.
4965 */
4966static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
4967 struct btrfs_key *location)
4968{
4969 const char *name = dentry->d_name.name;
4970 int namelen = dentry->d_name.len;
4971 struct btrfs_dir_item *di;
4972 struct btrfs_path *path;
4973 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04004974 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004975
4976 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07004977 if (!path)
4978 return -ENOMEM;
Chris Mason39544012007-12-12 14:38:19 -05004979
Li Zefan33345d012011-04-20 10:31:50 +08004980 di = btrfs_lookup_dir_item(NULL, root, path, btrfs_ino(dir), name,
Chris Mason39279cc2007-06-12 06:35:45 -04004981 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04004982 if (IS_ERR(di))
4983 ret = PTR_ERR(di);
Chris Masond3977122009-01-05 21:25:51 -05004984
David Sterbac7040052011-04-19 18:00:01 +02004985 if (IS_ERR_OR_NULL(di))
Chris Mason39544012007-12-12 14:38:19 -05004986 goto out_err;
Chris Masond3977122009-01-05 21:25:51 -05004987
Chris Mason5f39d392007-10-15 16:14:19 -04004988 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04004989out:
Chris Mason39279cc2007-06-12 06:35:45 -04004990 btrfs_free_path(path);
4991 return ret;
Chris Mason39544012007-12-12 14:38:19 -05004992out_err:
4993 location->objectid = 0;
4994 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04004995}
4996
4997/*
4998 * when we hit a tree root in a directory, the btrfs part of the inode
4999 * needs to be changed to reflect the root directory of the tree root. This
5000 * is kind of like crossing a mount point.
5001 */
5002static int fixup_tree_root_location(struct btrfs_root *root,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005003 struct inode *dir,
5004 struct dentry *dentry,
5005 struct btrfs_key *location,
5006 struct btrfs_root **sub_root)
Chris Mason39279cc2007-06-12 06:35:45 -04005007{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005008 struct btrfs_path *path;
5009 struct btrfs_root *new_root;
5010 struct btrfs_root_ref *ref;
5011 struct extent_buffer *leaf;
David Sterba1d4c08e2015-01-02 19:36:14 +01005012 struct btrfs_key key;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005013 int ret;
5014 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005015
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005016 path = btrfs_alloc_path();
5017 if (!path) {
5018 err = -ENOMEM;
5019 goto out;
5020 }
Chris Mason39279cc2007-06-12 06:35:45 -04005021
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005022 err = -ENOENT;
David Sterba1d4c08e2015-01-02 19:36:14 +01005023 key.objectid = BTRFS_I(dir)->root->root_key.objectid;
5024 key.type = BTRFS_ROOT_REF_KEY;
5025 key.offset = location->objectid;
5026
5027 ret = btrfs_search_slot(NULL, root->fs_info->tree_root, &key, path,
5028 0, 0);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005029 if (ret) {
5030 if (ret < 0)
5031 err = ret;
5032 goto out;
5033 }
Chris Mason39279cc2007-06-12 06:35:45 -04005034
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005035 leaf = path->nodes[0];
5036 ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref);
Li Zefan33345d012011-04-20 10:31:50 +08005037 if (btrfs_root_ref_dirid(leaf, ref) != btrfs_ino(dir) ||
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005038 btrfs_root_ref_name_len(leaf, ref) != dentry->d_name.len)
5039 goto out;
5040
5041 ret = memcmp_extent_buffer(leaf, dentry->d_name.name,
5042 (unsigned long)(ref + 1),
5043 dentry->d_name.len);
5044 if (ret)
5045 goto out;
5046
David Sterbab3b4aa72011-04-21 01:20:15 +02005047 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005048
5049 new_root = btrfs_read_fs_root_no_name(root->fs_info, location);
5050 if (IS_ERR(new_root)) {
5051 err = PTR_ERR(new_root);
5052 goto out;
5053 }
5054
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005055 *sub_root = new_root;
5056 location->objectid = btrfs_root_dirid(&new_root->root_item);
5057 location->type = BTRFS_INODE_ITEM_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -04005058 location->offset = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005059 err = 0;
5060out:
5061 btrfs_free_path(path);
5062 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04005063}
5064
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005065static void inode_tree_add(struct inode *inode)
5066{
5067 struct btrfs_root *root = BTRFS_I(inode)->root;
5068 struct btrfs_inode *entry;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005069 struct rb_node **p;
5070 struct rb_node *parent;
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005071 struct rb_node *new = &BTRFS_I(inode)->rb_node;
Li Zefan33345d012011-04-20 10:31:50 +08005072 u64 ino = btrfs_ino(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005073
Al Viro1d3382cb2010-10-23 15:19:20 -04005074 if (inode_unhashed(inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04005075 return;
Miao Xiee1409ce2013-05-15 07:48:16 +00005076 parent = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005077 spin_lock(&root->inode_lock);
Miao Xiee1409ce2013-05-15 07:48:16 +00005078 p = &root->inode_tree.rb_node;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005079 while (*p) {
5080 parent = *p;
5081 entry = rb_entry(parent, struct btrfs_inode, rb_node);
5082
Li Zefan33345d012011-04-20 10:31:50 +08005083 if (ino < btrfs_ino(&entry->vfs_inode))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005084 p = &parent->rb_left;
Li Zefan33345d012011-04-20 10:31:50 +08005085 else if (ino > btrfs_ino(&entry->vfs_inode))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005086 p = &parent->rb_right;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005087 else {
5088 WARN_ON(!(entry->vfs_inode.i_state &
Al Viroa4ffdde2010-06-02 17:38:30 -04005089 (I_WILL_FREE | I_FREEING)));
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005090 rb_replace_node(parent, new, &root->inode_tree);
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005091 RB_CLEAR_NODE(parent);
5092 spin_unlock(&root->inode_lock);
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005093 return;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005094 }
5095 }
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005096 rb_link_node(new, parent, p);
5097 rb_insert_color(new, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005098 spin_unlock(&root->inode_lock);
5099}
5100
5101static void inode_tree_del(struct inode *inode)
5102{
5103 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -04005104 int empty = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005105
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005106 spin_lock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005107 if (!RB_EMPTY_NODE(&BTRFS_I(inode)->rb_node)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005108 rb_erase(&BTRFS_I(inode)->rb_node, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005109 RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node);
Yan, Zheng76dda932009-09-21 16:00:26 -04005110 empty = RB_EMPTY_ROOT(&root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005111 }
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005112 spin_unlock(&root->inode_lock);
Yan, Zheng76dda932009-09-21 16:00:26 -04005113
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02005114 if (empty && btrfs_root_refs(&root->root_item) == 0) {
Yan, Zheng76dda932009-09-21 16:00:26 -04005115 synchronize_srcu(&root->fs_info->subvol_srcu);
5116 spin_lock(&root->inode_lock);
5117 empty = RB_EMPTY_ROOT(&root->inode_tree);
5118 spin_unlock(&root->inode_lock);
5119 if (empty)
5120 btrfs_add_dead_root(root);
5121 }
5122}
5123
Jeff Mahoney143bede2012-03-01 14:56:26 +01005124void btrfs_invalidate_inodes(struct btrfs_root *root)
Yan, Zheng76dda932009-09-21 16:00:26 -04005125{
5126 struct rb_node *node;
5127 struct rb_node *prev;
5128 struct btrfs_inode *entry;
5129 struct inode *inode;
5130 u64 objectid = 0;
5131
Liu Bo7813b3d2014-02-10 17:37:25 +08005132 if (!test_bit(BTRFS_FS_STATE_ERROR, &root->fs_info->fs_state))
5133 WARN_ON(btrfs_root_refs(&root->root_item) != 0);
Yan, Zheng76dda932009-09-21 16:00:26 -04005134
5135 spin_lock(&root->inode_lock);
5136again:
5137 node = root->inode_tree.rb_node;
5138 prev = NULL;
5139 while (node) {
5140 prev = node;
5141 entry = rb_entry(node, struct btrfs_inode, rb_node);
5142
Li Zefan33345d012011-04-20 10:31:50 +08005143 if (objectid < btrfs_ino(&entry->vfs_inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04005144 node = node->rb_left;
Li Zefan33345d012011-04-20 10:31:50 +08005145 else if (objectid > btrfs_ino(&entry->vfs_inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04005146 node = node->rb_right;
5147 else
5148 break;
5149 }
5150 if (!node) {
5151 while (prev) {
5152 entry = rb_entry(prev, struct btrfs_inode, rb_node);
Li Zefan33345d012011-04-20 10:31:50 +08005153 if (objectid <= btrfs_ino(&entry->vfs_inode)) {
Yan, Zheng76dda932009-09-21 16:00:26 -04005154 node = prev;
5155 break;
5156 }
5157 prev = rb_next(prev);
5158 }
5159 }
5160 while (node) {
5161 entry = rb_entry(node, struct btrfs_inode, rb_node);
Li Zefan33345d012011-04-20 10:31:50 +08005162 objectid = btrfs_ino(&entry->vfs_inode) + 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04005163 inode = igrab(&entry->vfs_inode);
5164 if (inode) {
5165 spin_unlock(&root->inode_lock);
5166 if (atomic_read(&inode->i_count) > 1)
5167 d_prune_aliases(inode);
5168 /*
Al Viro45321ac2010-06-07 13:43:19 -04005169 * btrfs_drop_inode will have it removed from
Yan, Zheng76dda932009-09-21 16:00:26 -04005170 * the inode cache when its usage count
5171 * hits zero.
5172 */
5173 iput(inode);
5174 cond_resched();
5175 spin_lock(&root->inode_lock);
5176 goto again;
5177 }
5178
5179 if (cond_resched_lock(&root->inode_lock))
5180 goto again;
5181
5182 node = rb_next(node);
5183 }
5184 spin_unlock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005185}
5186
Chris Masone02119d2008-09-05 16:13:11 -04005187static int btrfs_init_locked_inode(struct inode *inode, void *p)
5188{
5189 struct btrfs_iget_args *args = p;
Chris Mason90d3e592014-01-09 17:28:00 -08005190 inode->i_ino = args->location->objectid;
5191 memcpy(&BTRFS_I(inode)->location, args->location,
5192 sizeof(*args->location));
Chris Masone02119d2008-09-05 16:13:11 -04005193 BTRFS_I(inode)->root = args->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005194 return 0;
5195}
5196
5197static int btrfs_find_actor(struct inode *inode, void *opaque)
5198{
5199 struct btrfs_iget_args *args = opaque;
Chris Mason90d3e592014-01-09 17:28:00 -08005200 return args->location->objectid == BTRFS_I(inode)->location.objectid &&
Chris Masond3977122009-01-05 21:25:51 -05005201 args->root == BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005202}
5203
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005204static struct inode *btrfs_iget_locked(struct super_block *s,
Chris Mason90d3e592014-01-09 17:28:00 -08005205 struct btrfs_key *location,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005206 struct btrfs_root *root)
Chris Mason39279cc2007-06-12 06:35:45 -04005207{
5208 struct inode *inode;
5209 struct btrfs_iget_args args;
Chris Mason90d3e592014-01-09 17:28:00 -08005210 unsigned long hashval = btrfs_inode_hash(location->objectid, root);
Filipe David Borba Manana778ba822013-10-06 22:22:33 +01005211
Chris Mason90d3e592014-01-09 17:28:00 -08005212 args.location = location;
Chris Mason39279cc2007-06-12 06:35:45 -04005213 args.root = root;
5214
Filipe David Borba Manana778ba822013-10-06 22:22:33 +01005215 inode = iget5_locked(s, hashval, btrfs_find_actor,
Chris Mason39279cc2007-06-12 06:35:45 -04005216 btrfs_init_locked_inode,
5217 (void *)&args);
5218 return inode;
5219}
5220
Balaji Rao1a54ef82008-07-21 02:01:04 +05305221/* Get an inode object given its location and corresponding root.
5222 * Returns in *is_new if the inode was read from disk
5223 */
5224struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
Josef Bacik73f73412009-12-04 17:38:27 +00005225 struct btrfs_root *root, int *new)
Balaji Rao1a54ef82008-07-21 02:01:04 +05305226{
5227 struct inode *inode;
5228
Chris Mason90d3e592014-01-09 17:28:00 -08005229 inode = btrfs_iget_locked(s, location, root);
Balaji Rao1a54ef82008-07-21 02:01:04 +05305230 if (!inode)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005231 return ERR_PTR(-ENOMEM);
Balaji Rao1a54ef82008-07-21 02:01:04 +05305232
5233 if (inode->i_state & I_NEW) {
Balaji Rao1a54ef82008-07-21 02:01:04 +05305234 btrfs_read_locked_inode(inode);
Mark Fasheh1748f842011-07-12 11:25:31 -07005235 if (!is_bad_inode(inode)) {
5236 inode_tree_add(inode);
5237 unlock_new_inode(inode);
5238 if (new)
5239 *new = 1;
5240 } else {
Sergei Trofimoviche0b6d652011-09-11 10:52:24 -04005241 unlock_new_inode(inode);
5242 iput(inode);
5243 inode = ERR_PTR(-ESTALE);
Mark Fasheh1748f842011-07-12 11:25:31 -07005244 }
5245 }
5246
Balaji Rao1a54ef82008-07-21 02:01:04 +05305247 return inode;
5248}
5249
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005250static struct inode *new_simple_dir(struct super_block *s,
5251 struct btrfs_key *key,
5252 struct btrfs_root *root)
5253{
5254 struct inode *inode = new_inode(s);
5255
5256 if (!inode)
5257 return ERR_PTR(-ENOMEM);
5258
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005259 BTRFS_I(inode)->root = root;
5260 memcpy(&BTRFS_I(inode)->location, key, sizeof(*key));
Josef Bacik72ac3c02012-05-23 14:13:11 -04005261 set_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005262
5263 inode->i_ino = BTRFS_EMPTY_SUBVOL_DIR_OBJECTID;
Li Zefan848cce02012-02-21 17:04:28 +08005264 inode->i_op = &btrfs_dir_ro_inode_operations;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005265 inode->i_fop = &simple_dir_operations;
5266 inode->i_mode = S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO;
5267 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
5268
5269 return inode;
5270}
5271
Chris Mason3de45862008-11-17 21:02:50 -05005272struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04005273{
Chris Masond3977122009-01-05 21:25:51 -05005274 struct inode *inode;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005275 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005276 struct btrfs_root *sub_root = root;
5277 struct btrfs_key location;
Yan, Zheng76dda932009-09-21 16:00:26 -04005278 int index;
Josef Bacikb4aff1f2011-06-28 16:18:59 -04005279 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005280
5281 if (dentry->d_name.len > BTRFS_NAME_LEN)
5282 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04005283
Jeff Layton39e3c952012-11-28 11:30:53 -05005284 ret = btrfs_inode_by_name(dir, dentry, &location);
Chris Mason39279cc2007-06-12 06:35:45 -04005285 if (ret < 0)
5286 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04005287
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005288 if (location.objectid == 0)
Tsutomu Itoh5662344b32013-12-13 09:51:42 +09005289 return ERR_PTR(-ENOENT);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005290
5291 if (location.type == BTRFS_INODE_ITEM_KEY) {
Josef Bacik73f73412009-12-04 17:38:27 +00005292 inode = btrfs_iget(dir->i_sb, &location, root, NULL);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005293 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04005294 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005295
5296 BUG_ON(location.type != BTRFS_ROOT_ITEM_KEY);
5297
Yan, Zheng76dda932009-09-21 16:00:26 -04005298 index = srcu_read_lock(&root->fs_info->subvol_srcu);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005299 ret = fixup_tree_root_location(root, dir, dentry,
5300 &location, &sub_root);
5301 if (ret < 0) {
5302 if (ret != -ENOENT)
5303 inode = ERR_PTR(ret);
5304 else
5305 inode = new_simple_dir(dir->i_sb, &location, sub_root);
5306 } else {
Josef Bacik73f73412009-12-04 17:38:27 +00005307 inode = btrfs_iget(dir->i_sb, &location, sub_root, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04005308 }
Yan, Zheng76dda932009-09-21 16:00:26 -04005309 srcu_read_unlock(&root->fs_info->subvol_srcu, index);
5310
Julia Lawall34d19ba2011-01-24 19:55:19 +00005311 if (!IS_ERR(inode) && root != sub_root) {
Yan, Zhengc71bf092009-11-12 09:34:40 +00005312 down_read(&root->fs_info->cleanup_work_sem);
5313 if (!(inode->i_sb->s_flags & MS_RDONLY))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05005314 ret = btrfs_orphan_cleanup(sub_root);
Yan, Zhengc71bf092009-11-12 09:34:40 +00005315 up_read(&root->fs_info->cleanup_work_sem);
Josef Bacik01cd3362013-06-03 21:39:49 -04005316 if (ret) {
5317 iput(inode);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05005318 inode = ERR_PTR(ret);
Josef Bacik01cd3362013-06-03 21:39:49 -04005319 }
Yan, Zhengc71bf092009-11-12 09:34:40 +00005320 }
5321
Chris Mason3de45862008-11-17 21:02:50 -05005322 return inode;
5323}
5324
Nick Pigginfe15ce42011-01-07 17:49:23 +11005325static int btrfs_dentry_delete(const struct dentry *dentry)
Yan, Zheng76dda932009-09-21 16:00:26 -04005326{
5327 struct btrfs_root *root;
Li Zefan848cce02012-02-21 17:04:28 +08005328 struct inode *inode = dentry->d_inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04005329
Li Zefan848cce02012-02-21 17:04:28 +08005330 if (!inode && !IS_ROOT(dentry))
5331 inode = dentry->d_parent->d_inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04005332
Li Zefan848cce02012-02-21 17:04:28 +08005333 if (inode) {
5334 root = BTRFS_I(inode)->root;
Yan, Zhengefefb142009-10-09 09:25:16 -04005335 if (btrfs_root_refs(&root->root_item) == 0)
5336 return 1;
Li Zefan848cce02012-02-21 17:04:28 +08005337
5338 if (btrfs_ino(inode) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
5339 return 1;
Yan, Zhengefefb142009-10-09 09:25:16 -04005340 }
Yan, Zheng76dda932009-09-21 16:00:26 -04005341 return 0;
5342}
5343
Josef Bacikb4aff1f2011-06-28 16:18:59 -04005344static void btrfs_dentry_release(struct dentry *dentry)
5345{
Daeseok Youn944a4512014-04-14 15:37:02 +09005346 kfree(dentry->d_fsdata);
Josef Bacikb4aff1f2011-06-28 16:18:59 -04005347}
5348
Chris Mason3de45862008-11-17 21:02:50 -05005349static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -04005350 unsigned int flags)
Chris Mason3de45862008-11-17 21:02:50 -05005351{
Tsutomu Itoh5662344b32013-12-13 09:51:42 +09005352 struct inode *inode;
Josef Bacika66e7cc2011-09-18 10:34:03 -04005353
Tsutomu Itoh5662344b32013-12-13 09:51:42 +09005354 inode = btrfs_lookup_dentry(dir, dentry);
5355 if (IS_ERR(inode)) {
5356 if (PTR_ERR(inode) == -ENOENT)
5357 inode = NULL;
5358 else
5359 return ERR_CAST(inode);
5360 }
5361
Al Viro41d28bc2014-10-12 22:24:21 -04005362 return d_splice_alias(inode, dentry);
Chris Mason39279cc2007-06-12 06:35:45 -04005363}
5364
Miao Xie16cdcec2011-04-22 18:12:22 +08005365unsigned char btrfs_filetype_table[] = {
Chris Mason39279cc2007-06-12 06:35:45 -04005366 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
5367};
5368
Al Viro9cdda8d2013-05-22 16:48:09 -04005369static int btrfs_real_readdir(struct file *file, struct dir_context *ctx)
Chris Mason39279cc2007-06-12 06:35:45 -04005370{
Al Viro9cdda8d2013-05-22 16:48:09 -04005371 struct inode *inode = file_inode(file);
Chris Mason39279cc2007-06-12 06:35:45 -04005372 struct btrfs_root *root = BTRFS_I(inode)->root;
5373 struct btrfs_item *item;
5374 struct btrfs_dir_item *di;
5375 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04005376 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04005377 struct btrfs_path *path;
Miao Xie16cdcec2011-04-22 18:12:22 +08005378 struct list_head ins_list;
5379 struct list_head del_list;
Chris Mason39279cc2007-06-12 06:35:45 -04005380 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -04005381 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04005382 int slot;
Chris Mason39279cc2007-06-12 06:35:45 -04005383 unsigned char d_type;
5384 int over = 0;
5385 u32 di_cur;
5386 u32 di_total;
5387 u32 di_len;
5388 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04005389 char tmp_name[32];
5390 char *name_ptr;
5391 int name_len;
Al Viro9cdda8d2013-05-22 16:48:09 -04005392 int is_curr = 0; /* ctx->pos points to the current index? */
Chris Mason39279cc2007-06-12 06:35:45 -04005393
5394 /* FIXME, use a real flag for deciding about the key type */
5395 if (root->fs_info->tree_root == root)
5396 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04005397
Al Viro9cdda8d2013-05-22 16:48:09 -04005398 if (!dir_emit_dots(file, ctx))
5399 return 0;
5400
David Woodhouse49593bf2008-08-17 17:08:36 +01005401 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08005402 if (!path)
5403 return -ENOMEM;
Chris Masonff5714c2011-05-28 07:00:39 -04005404
Josef Bacik026fd312011-05-13 10:32:11 -04005405 path->reada = 1;
David Woodhouse49593bf2008-08-17 17:08:36 +01005406
Miao Xie16cdcec2011-04-22 18:12:22 +08005407 if (key_type == BTRFS_DIR_INDEX_KEY) {
5408 INIT_LIST_HEAD(&ins_list);
5409 INIT_LIST_HEAD(&del_list);
5410 btrfs_get_delayed_items(inode, &ins_list, &del_list);
5411 }
5412
David Sterba962a2982014-06-04 18:41:45 +02005413 key.type = key_type;
Al Viro9cdda8d2013-05-22 16:48:09 -04005414 key.offset = ctx->pos;
Li Zefan33345d012011-04-20 10:31:50 +08005415 key.objectid = btrfs_ino(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04005416
Chris Mason39279cc2007-06-12 06:35:45 -04005417 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
5418 if (ret < 0)
5419 goto err;
David Woodhouse49593bf2008-08-17 17:08:36 +01005420
5421 while (1) {
Chris Mason5f39d392007-10-15 16:14:19 -04005422 leaf = path->nodes[0];
Chris Mason39279cc2007-06-12 06:35:45 -04005423 slot = path->slots[0];
Li Zefanb9e03af2011-03-23 10:43:58 +08005424 if (slot >= btrfs_header_nritems(leaf)) {
5425 ret = btrfs_next_leaf(root, path);
5426 if (ret < 0)
5427 goto err;
5428 else if (ret > 0)
5429 break;
5430 continue;
Chris Mason39279cc2007-06-12 06:35:45 -04005431 }
Chris Mason3de45862008-11-17 21:02:50 -05005432
Ross Kirkdd3cc162013-09-16 15:58:09 +01005433 item = btrfs_item_nr(slot);
Chris Mason5f39d392007-10-15 16:14:19 -04005434 btrfs_item_key_to_cpu(leaf, &found_key, slot);
5435
5436 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04005437 break;
David Sterba962a2982014-06-04 18:41:45 +02005438 if (found_key.type != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04005439 break;
Al Viro9cdda8d2013-05-22 16:48:09 -04005440 if (found_key.offset < ctx->pos)
Li Zefanb9e03af2011-03-23 10:43:58 +08005441 goto next;
Miao Xie16cdcec2011-04-22 18:12:22 +08005442 if (key_type == BTRFS_DIR_INDEX_KEY &&
5443 btrfs_should_delete_dir_index(&del_list,
5444 found_key.offset))
5445 goto next;
Chris Mason5f39d392007-10-15 16:14:19 -04005446
Al Viro9cdda8d2013-05-22 16:48:09 -04005447 ctx->pos = found_key.offset;
Miao Xie16cdcec2011-04-22 18:12:22 +08005448 is_curr = 1;
David Woodhouse49593bf2008-08-17 17:08:36 +01005449
Chris Mason39279cc2007-06-12 06:35:45 -04005450 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
5451 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04005452 di_total = btrfs_item_size(leaf, item);
David Woodhouse49593bf2008-08-17 17:08:36 +01005453
5454 while (di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04005455 struct btrfs_key location;
5456
Josef Bacik22a94d42011-03-16 16:47:17 -04005457 if (verify_dir_item(root, leaf, di))
5458 break;
5459
Chris Mason5f39d392007-10-15 16:14:19 -04005460 name_len = btrfs_dir_name_len(leaf, di);
David Woodhouse49593bf2008-08-17 17:08:36 +01005461 if (name_len <= sizeof(tmp_name)) {
Chris Mason5f39d392007-10-15 16:14:19 -04005462 name_ptr = tmp_name;
5463 } else {
5464 name_ptr = kmalloc(name_len, GFP_NOFS);
David Woodhouse49593bf2008-08-17 17:08:36 +01005465 if (!name_ptr) {
5466 ret = -ENOMEM;
5467 goto err;
5468 }
Chris Mason5f39d392007-10-15 16:14:19 -04005469 }
5470 read_extent_buffer(leaf, name_ptr,
5471 (unsigned long)(di + 1), name_len);
5472
5473 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
5474 btrfs_dir_item_key_to_cpu(leaf, di, &location);
Chris Mason3de45862008-11-17 21:02:50 -05005475
Josef Bacikb4aff1f2011-06-28 16:18:59 -04005476
Chris Mason3de45862008-11-17 21:02:50 -05005477 /* is this a reference to our own snapshot? If so
Arne Jansen8c9c2bf2012-02-25 09:09:30 +01005478 * skip it.
5479 *
5480 * In contrast to old kernels, we insert the snapshot's
5481 * dir item and dir index after it has been created, so
5482 * we won't find a reference to our own snapshot. We
5483 * still keep the following code for backward
5484 * compatibility.
Chris Mason3de45862008-11-17 21:02:50 -05005485 */
5486 if (location.type == BTRFS_ROOT_ITEM_KEY &&
5487 location.objectid == root->root_key.objectid) {
5488 over = 0;
5489 goto skip;
5490 }
Al Viro9cdda8d2013-05-22 16:48:09 -04005491 over = !dir_emit(ctx, name_ptr, name_len,
5492 location.objectid, d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04005493
Chris Mason3de45862008-11-17 21:02:50 -05005494skip:
Chris Mason5f39d392007-10-15 16:14:19 -04005495 if (name_ptr != tmp_name)
5496 kfree(name_ptr);
5497
Chris Mason39279cc2007-06-12 06:35:45 -04005498 if (over)
5499 goto nopos;
Josef Bacik5103e942007-11-16 11:45:54 -05005500 di_len = btrfs_dir_name_len(leaf, di) +
David Woodhouse49593bf2008-08-17 17:08:36 +01005501 btrfs_dir_data_len(leaf, di) + sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04005502 di_cur += di_len;
5503 di = (struct btrfs_dir_item *)((char *)di + di_len);
5504 }
Li Zefanb9e03af2011-03-23 10:43:58 +08005505next:
5506 path->slots[0]++;
Chris Mason39279cc2007-06-12 06:35:45 -04005507 }
David Woodhouse49593bf2008-08-17 17:08:36 +01005508
Miao Xie16cdcec2011-04-22 18:12:22 +08005509 if (key_type == BTRFS_DIR_INDEX_KEY) {
5510 if (is_curr)
Al Viro9cdda8d2013-05-22 16:48:09 -04005511 ctx->pos++;
5512 ret = btrfs_readdir_delayed_dir_index(ctx, &ins_list);
Miao Xie16cdcec2011-04-22 18:12:22 +08005513 if (ret)
5514 goto nopos;
5515 }
5516
David Woodhouse49593bf2008-08-17 17:08:36 +01005517 /* Reached end of directory/root. Bump pos past the last item. */
Zach Browndb62efb2013-07-11 16:19:42 -07005518 ctx->pos++;
5519
5520 /*
5521 * Stop new entries from being returned after we return the last
5522 * entry.
5523 *
5524 * New directory entries are assigned a strictly increasing
5525 * offset. This means that new entries created during readdir
5526 * are *guaranteed* to be seen in the future by that readdir.
5527 * This has broken buggy programs which operate on names as
5528 * they're returned by readdir. Until we re-use freed offsets
5529 * we have this hack to stop new entries from being returned
5530 * under the assumption that they'll never reach this huge
5531 * offset.
5532 *
5533 * This is being careful not to overflow 32bit loff_t unless the
5534 * last entry requires it because doing so has broken 32bit apps
5535 * in the past.
5536 */
5537 if (key_type == BTRFS_DIR_INDEX_KEY) {
5538 if (ctx->pos >= INT_MAX)
5539 ctx->pos = LLONG_MAX;
5540 else
5541 ctx->pos = INT_MAX;
5542 }
Chris Mason39279cc2007-06-12 06:35:45 -04005543nopos:
5544 ret = 0;
5545err:
Miao Xie16cdcec2011-04-22 18:12:22 +08005546 if (key_type == BTRFS_DIR_INDEX_KEY)
5547 btrfs_put_delayed_items(&ins_list, &del_list);
Chris Mason39279cc2007-06-12 06:35:45 -04005548 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04005549 return ret;
5550}
5551
Christoph Hellwiga9185b42010-03-05 09:21:37 +01005552int btrfs_write_inode(struct inode *inode, struct writeback_control *wbc)
Chris Mason39279cc2007-06-12 06:35:45 -04005553{
5554 struct btrfs_root *root = BTRFS_I(inode)->root;
5555 struct btrfs_trans_handle *trans;
5556 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04005557 bool nolock = false;
Chris Mason39279cc2007-06-12 06:35:45 -04005558
Josef Bacik72ac3c02012-05-23 14:13:11 -04005559 if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags))
Chris Mason4ca8b412008-08-05 13:30:48 -04005560 return 0;
5561
Liu Bo83eea1f2012-07-10 05:28:39 -06005562 if (btrfs_fs_closing(root->fs_info) && btrfs_is_free_space_inode(inode))
Li Zefan82d59022011-04-20 10:33:24 +08005563 nolock = true;
Josef Bacik0af3d002010-06-21 14:48:16 -04005564
Christoph Hellwiga9185b42010-03-05 09:21:37 +01005565 if (wbc->sync_mode == WB_SYNC_ALL) {
Josef Bacik0af3d002010-06-21 14:48:16 -04005566 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005567 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0af3d002010-06-21 14:48:16 -04005568 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005569 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005570 if (IS_ERR(trans))
5571 return PTR_ERR(trans);
Miao Xiea698d0752012-09-20 01:51:59 -06005572 ret = btrfs_commit_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04005573 }
5574 return ret;
5575}
5576
5577/*
Chris Mason54aa1f42007-06-22 14:16:25 -04005578 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04005579 * inode changes. But, it is most likely to find the inode in cache.
5580 * FIXME, needs more benchmarking...there are no reasons other than performance
5581 * to keep or drop this code.
5582 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00005583static int btrfs_dirty_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04005584{
5585 struct btrfs_root *root = BTRFS_I(inode)->root;
5586 struct btrfs_trans_handle *trans;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005587 int ret;
5588
Josef Bacik72ac3c02012-05-23 14:13:11 -04005589 if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags))
Josef Bacik22c44fe2011-11-30 10:45:38 -05005590 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005591
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005592 trans = btrfs_join_transaction(root);
Josef Bacik22c44fe2011-11-30 10:45:38 -05005593 if (IS_ERR(trans))
5594 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005595
5596 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04005597 if (ret && ret == -ENOSPC) {
5598 /* whoops, lets try again with the full transaction */
5599 btrfs_end_transaction(trans, root);
5600 trans = btrfs_start_transaction(root, 1);
Josef Bacik22c44fe2011-11-30 10:45:38 -05005601 if (IS_ERR(trans))
5602 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005603
Chris Mason94b60442010-05-26 11:02:00 -04005604 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04005605 }
Chris Mason39279cc2007-06-12 06:35:45 -04005606 btrfs_end_transaction(trans, root);
Miao Xie16cdcec2011-04-22 18:12:22 +08005607 if (BTRFS_I(inode)->delayed_node)
5608 btrfs_balance_delayed_items(root);
Josef Bacik22c44fe2011-11-30 10:45:38 -05005609
5610 return ret;
5611}
5612
5613/*
5614 * This is a copy of file_update_time. We need this so we can return error on
5615 * ENOSPC for updating the inode in the case of file write and mmap writes.
5616 */
Josef Bacike41f9412012-03-26 09:46:47 -04005617static int btrfs_update_time(struct inode *inode, struct timespec *now,
5618 int flags)
Josef Bacik22c44fe2011-11-30 10:45:38 -05005619{
Alexander Block2bc5565282012-06-15 09:49:33 +02005620 struct btrfs_root *root = BTRFS_I(inode)->root;
5621
5622 if (btrfs_root_readonly(root))
5623 return -EROFS;
5624
Josef Bacike41f9412012-03-26 09:46:47 -04005625 if (flags & S_VERSION)
Josef Bacik22c44fe2011-11-30 10:45:38 -05005626 inode_inc_iversion(inode);
Josef Bacike41f9412012-03-26 09:46:47 -04005627 if (flags & S_CTIME)
5628 inode->i_ctime = *now;
5629 if (flags & S_MTIME)
5630 inode->i_mtime = *now;
5631 if (flags & S_ATIME)
5632 inode->i_atime = *now;
5633 return btrfs_dirty_inode(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04005634}
5635
Chris Masond352ac62008-09-29 15:18:18 -04005636/*
5637 * find the highest existing sequence number in a directory
5638 * and then set the in-memory index_cnt variable to reflect
5639 * free sequence numbers
5640 */
Josef Bacikaec74772008-07-24 12:12:38 -04005641static int btrfs_set_inode_index_count(struct inode *inode)
5642{
5643 struct btrfs_root *root = BTRFS_I(inode)->root;
5644 struct btrfs_key key, found_key;
5645 struct btrfs_path *path;
5646 struct extent_buffer *leaf;
5647 int ret;
5648
Li Zefan33345d012011-04-20 10:31:50 +08005649 key.objectid = btrfs_ino(inode);
David Sterba962a2982014-06-04 18:41:45 +02005650 key.type = BTRFS_DIR_INDEX_KEY;
Josef Bacikaec74772008-07-24 12:12:38 -04005651 key.offset = (u64)-1;
5652
5653 path = btrfs_alloc_path();
5654 if (!path)
5655 return -ENOMEM;
5656
5657 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
5658 if (ret < 0)
5659 goto out;
5660 /* FIXME: we should be able to handle this */
5661 if (ret == 0)
5662 goto out;
5663 ret = 0;
5664
5665 /*
5666 * MAGIC NUMBER EXPLANATION:
5667 * since we search a directory based on f_pos we have to start at 2
5668 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
5669 * else has to start at 2
5670 */
5671 if (path->slots[0] == 0) {
5672 BTRFS_I(inode)->index_cnt = 2;
5673 goto out;
5674 }
5675
5676 path->slots[0]--;
5677
5678 leaf = path->nodes[0];
5679 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5680
Li Zefan33345d012011-04-20 10:31:50 +08005681 if (found_key.objectid != btrfs_ino(inode) ||
David Sterba962a2982014-06-04 18:41:45 +02005682 found_key.type != BTRFS_DIR_INDEX_KEY) {
Josef Bacikaec74772008-07-24 12:12:38 -04005683 BTRFS_I(inode)->index_cnt = 2;
5684 goto out;
5685 }
5686
5687 BTRFS_I(inode)->index_cnt = found_key.offset + 1;
5688out:
5689 btrfs_free_path(path);
5690 return ret;
5691}
5692
Chris Masond352ac62008-09-29 15:18:18 -04005693/*
5694 * helper to find a free sequence number in a given directory. This current
5695 * code is very simple, later versions will do smarter things in the btree
5696 */
Chris Mason3de45862008-11-17 21:02:50 -05005697int btrfs_set_inode_index(struct inode *dir, u64 *index)
Josef Bacikaec74772008-07-24 12:12:38 -04005698{
5699 int ret = 0;
5700
5701 if (BTRFS_I(dir)->index_cnt == (u64)-1) {
Miao Xie16cdcec2011-04-22 18:12:22 +08005702 ret = btrfs_inode_delayed_dir_index_count(dir);
5703 if (ret) {
5704 ret = btrfs_set_inode_index_count(dir);
5705 if (ret)
5706 return ret;
5707 }
Josef Bacikaec74772008-07-24 12:12:38 -04005708 }
5709
Chris Mason00e4e6b2008-08-05 11:18:09 -04005710 *index = BTRFS_I(dir)->index_cnt;
Josef Bacikaec74772008-07-24 12:12:38 -04005711 BTRFS_I(dir)->index_cnt++;
5712
5713 return ret;
5714}
5715
Chris Masonb0d5d102014-09-08 13:08:51 -07005716static int btrfs_insert_inode_locked(struct inode *inode)
5717{
5718 struct btrfs_iget_args args;
5719 args.location = &BTRFS_I(inode)->location;
5720 args.root = BTRFS_I(inode)->root;
5721
5722 return insert_inode_locked4(inode,
5723 btrfs_inode_hash(inode->i_ino, BTRFS_I(inode)->root),
5724 btrfs_find_actor, &args);
5725}
5726
Chris Mason39279cc2007-06-12 06:35:45 -04005727static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
5728 struct btrfs_root *root,
Josef Bacikaec74772008-07-24 12:12:38 -04005729 struct inode *dir,
Chris Mason9c583092008-01-29 15:15:18 -05005730 const char *name, int name_len,
Al Viro175a4eb2011-07-26 03:30:54 -04005731 u64 ref_objectid, u64 objectid,
5732 umode_t mode, u64 *index)
Chris Mason39279cc2007-06-12 06:35:45 -04005733{
5734 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04005735 struct btrfs_inode_item *inode_item;
Chris Mason39279cc2007-06-12 06:35:45 -04005736 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04005737 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05005738 struct btrfs_inode_ref *ref;
5739 struct btrfs_key key[2];
5740 u32 sizes[2];
Filipe Mananaef3b9af2014-04-27 20:40:45 +01005741 int nitems = name ? 2 : 1;
Chris Mason9c583092008-01-29 15:15:18 -05005742 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04005743 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04005744
Chris Mason5f39d392007-10-15 16:14:19 -04005745 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07005746 if (!path)
5747 return ERR_PTR(-ENOMEM);
Chris Mason5f39d392007-10-15 16:14:19 -04005748
Chris Mason39279cc2007-06-12 06:35:45 -04005749 inode = new_inode(root->fs_info->sb);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00005750 if (!inode) {
5751 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04005752 return ERR_PTR(-ENOMEM);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00005753 }
Chris Mason39279cc2007-06-12 06:35:45 -04005754
Li Zefan581bb052011-04-20 10:06:11 +08005755 /*
Filipe Manana5762b5c2014-08-01 00:10:32 +01005756 * O_TMPFILE, set link count to 0, so that after this point,
5757 * we fill in an inode item with the correct link count.
5758 */
5759 if (!name)
5760 set_nlink(inode, 0);
5761
5762 /*
Li Zefan581bb052011-04-20 10:06:11 +08005763 * we have to initialize this early, so we can reclaim the inode
5764 * number if we fail afterwards in this function.
5765 */
5766 inode->i_ino = objectid;
5767
Filipe Mananaef3b9af2014-04-27 20:40:45 +01005768 if (dir && name) {
liubo1abe9b82011-03-24 11:18:59 +00005769 trace_btrfs_inode_request(dir);
5770
Chris Mason3de45862008-11-17 21:02:50 -05005771 ret = btrfs_set_inode_index(dir, index);
Shen Feng09771432009-04-02 16:46:06 -04005772 if (ret) {
Yoshinori Sano8fb27642011-04-09 02:30:07 +00005773 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04005774 iput(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04005775 return ERR_PTR(ret);
Shen Feng09771432009-04-02 16:46:06 -04005776 }
Filipe Mananaef3b9af2014-04-27 20:40:45 +01005777 } else if (dir) {
5778 *index = 0;
Josef Bacikaec74772008-07-24 12:12:38 -04005779 }
5780 /*
5781 * index_cnt is ignored for everything but a dir,
5782 * btrfs_get_inode_index_count has an explanation for the magic
5783 * number
5784 */
5785 BTRFS_I(inode)->index_cnt = 2;
Miao Xie67de1172013-12-26 13:07:06 +08005786 BTRFS_I(inode)->dir_index = *index;
Chris Mason39279cc2007-06-12 06:35:45 -04005787 BTRFS_I(inode)->root = root;
Chris Masone02119d2008-09-05 16:13:11 -04005788 BTRFS_I(inode)->generation = trans->transid;
Josef Bacik76195852010-11-19 02:18:02 +00005789 inode->i_generation = BTRFS_I(inode)->generation;
Chris Masonb888db22007-08-27 16:49:44 -04005790
Josef Bacik5dc562c2012-08-17 13:14:17 -04005791 /*
5792 * We could have gotten an inode number from somebody who was fsynced
5793 * and then removed in this same transaction, so let's just set full
5794 * sync since it will be a full sync anyway and this will blow away the
5795 * old info in the log.
5796 */
5797 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
5798
Chris Mason9c583092008-01-29 15:15:18 -05005799 key[0].objectid = objectid;
David Sterba962a2982014-06-04 18:41:45 +02005800 key[0].type = BTRFS_INODE_ITEM_KEY;
Chris Mason9c583092008-01-29 15:15:18 -05005801 key[0].offset = 0;
5802
Chris Mason9c583092008-01-29 15:15:18 -05005803 sizes[0] = sizeof(struct btrfs_inode_item);
Filipe Mananaef3b9af2014-04-27 20:40:45 +01005804
5805 if (name) {
5806 /*
5807 * Start new inodes with an inode_ref. This is slightly more
5808 * efficient for small numbers of hard links since they will
5809 * be packed into one item. Extended refs will kick in if we
5810 * add more hard links than can fit in the ref item.
5811 */
5812 key[1].objectid = objectid;
David Sterba962a2982014-06-04 18:41:45 +02005813 key[1].type = BTRFS_INODE_REF_KEY;
Filipe Mananaef3b9af2014-04-27 20:40:45 +01005814 key[1].offset = ref_objectid;
5815
5816 sizes[1] = name_len + sizeof(*ref);
5817 }
Chris Mason9c583092008-01-29 15:15:18 -05005818
Chris Masonb0d5d102014-09-08 13:08:51 -07005819 location = &BTRFS_I(inode)->location;
5820 location->objectid = objectid;
5821 location->offset = 0;
David Sterba962a2982014-06-04 18:41:45 +02005822 location->type = BTRFS_INODE_ITEM_KEY;
Chris Masonb0d5d102014-09-08 13:08:51 -07005823
5824 ret = btrfs_insert_inode_locked(inode);
5825 if (ret < 0)
5826 goto fail;
5827
Chris Masonb9473432009-03-13 11:00:37 -04005828 path->leave_spinning = 1;
Filipe Mananaef3b9af2014-04-27 20:40:45 +01005829 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, nitems);
Chris Mason9c583092008-01-29 15:15:18 -05005830 if (ret != 0)
Chris Masonb0d5d102014-09-08 13:08:51 -07005831 goto fail_unlock;
Chris Mason5f39d392007-10-15 16:14:19 -04005832
Dmitry Monakhovecc11fab2010-03-04 17:31:47 +03005833 inode_init_owner(inode, dir, mode);
Yan Zhenga76a3cd2008-10-09 11:46:29 -04005834 inode_set_bytes(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04005835 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Chris Mason5f39d392007-10-15 16:14:19 -04005836 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
5837 struct btrfs_inode_item);
Li Zefan293f7e02012-07-10 00:58:58 -06005838 memset_extent_buffer(path->nodes[0], 0, (unsigned long)inode_item,
5839 sizeof(*inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04005840 fill_inode_item(trans, path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05005841
Filipe Mananaef3b9af2014-04-27 20:40:45 +01005842 if (name) {
5843 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
5844 struct btrfs_inode_ref);
5845 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
5846 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
5847 ptr = (unsigned long)(ref + 1);
5848 write_extent_buffer(path->nodes[0], name, ptr, name_len);
5849 }
Chris Mason9c583092008-01-29 15:15:18 -05005850
Chris Mason5f39d392007-10-15 16:14:19 -04005851 btrfs_mark_buffer_dirty(path->nodes[0]);
5852 btrfs_free_path(path);
5853
Christoph Hellwig6cbff002009-04-17 10:37:41 +02005854 btrfs_inherit_iflags(inode, dir);
5855
Al Viro569254b2011-07-24 17:08:40 -04005856 if (S_ISREG(mode)) {
Chris Mason94272162009-07-02 12:26:06 -04005857 if (btrfs_test_opt(root, NODATASUM))
5858 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
Liu Bo213490b2012-09-11 08:33:50 -06005859 if (btrfs_test_opt(root, NODATACOW))
Josef Bacikf2bdf9a2013-02-21 15:28:28 -05005860 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW |
5861 BTRFS_INODE_NODATASUM;
Chris Mason94272162009-07-02 12:26:06 -04005862 }
5863
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005864 inode_tree_add(inode);
liubo1abe9b82011-03-24 11:18:59 +00005865
5866 trace_btrfs_inode_new(inode);
Chris Mason1973f0f2011-06-24 13:13:29 -04005867 btrfs_set_inode_last_trans(trans, inode);
liubo1abe9b82011-03-24 11:18:59 +00005868
Alexander Block8ea05e32012-07-25 17:35:53 +02005869 btrfs_update_root_times(trans, root);
5870
Filipe David Borba Manana63541922014-01-07 11:47:46 +00005871 ret = btrfs_inode_inherit_props(trans, inode, dir);
5872 if (ret)
5873 btrfs_err(root->fs_info,
5874 "error inheriting props for ino %llu (root %llu): %d",
5875 btrfs_ino(inode), root->root_key.objectid, ret);
5876
Chris Mason39279cc2007-06-12 06:35:45 -04005877 return inode;
Chris Masonb0d5d102014-09-08 13:08:51 -07005878
5879fail_unlock:
5880 unlock_new_inode(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04005881fail:
Filipe Mananaef3b9af2014-04-27 20:40:45 +01005882 if (dir && name)
Josef Bacikaec74772008-07-24 12:12:38 -04005883 BTRFS_I(dir)->index_cnt--;
Chris Mason5f39d392007-10-15 16:14:19 -04005884 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04005885 iput(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04005886 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04005887}
5888
5889static inline u8 btrfs_inode_type(struct inode *inode)
5890{
5891 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
5892}
5893
Chris Masond352ac62008-09-29 15:18:18 -04005894/*
5895 * utility function to add 'inode' into 'parent_inode' with
5896 * a give name and a given sequence number.
5897 * if 'add_backref' is true, also insert a backref from the
5898 * inode to the parent directory.
5899 */
Chris Masone02119d2008-09-05 16:13:11 -04005900int btrfs_add_link(struct btrfs_trans_handle *trans,
5901 struct inode *parent_inode, struct inode *inode,
5902 const char *name, int name_len, int add_backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04005903{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005904 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005905 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -04005906 struct btrfs_root *root = BTRFS_I(parent_inode)->root;
Li Zefan33345d012011-04-20 10:31:50 +08005907 u64 ino = btrfs_ino(inode);
5908 u64 parent_ino = btrfs_ino(parent_inode);
Chris Mason5f39d392007-10-15 16:14:19 -04005909
Li Zefan33345d012011-04-20 10:31:50 +08005910 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005911 memcpy(&key, &BTRFS_I(inode)->root->root_key, sizeof(key));
5912 } else {
Li Zefan33345d012011-04-20 10:31:50 +08005913 key.objectid = ino;
David Sterba962a2982014-06-04 18:41:45 +02005914 key.type = BTRFS_INODE_ITEM_KEY;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005915 key.offset = 0;
5916 }
Chris Mason39279cc2007-06-12 06:35:45 -04005917
Li Zefan33345d012011-04-20 10:31:50 +08005918 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005919 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
5920 key.objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08005921 parent_ino, index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005922 } else if (add_backref) {
Li Zefan33345d012011-04-20 10:31:50 +08005923 ret = btrfs_insert_inode_ref(trans, root, name, name_len, ino,
5924 parent_ino, index);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005925 }
5926
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005927 /* Nothing to clean up yet */
5928 if (ret)
5929 return ret;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005930
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005931 ret = btrfs_insert_dir_item(trans, root, name, name_len,
5932 parent_inode, &key,
5933 btrfs_inode_type(inode), index);
Chris Mason9c520572012-12-17 14:26:57 -05005934 if (ret == -EEXIST || ret == -EOVERFLOW)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005935 goto fail_dir_item;
5936 else if (ret) {
5937 btrfs_abort_transaction(trans, root, ret);
5938 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04005939 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005940
5941 btrfs_i_size_write(parent_inode, parent_inode->i_size +
5942 name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04005943 inode_inc_iversion(parent_inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005944 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
5945 ret = btrfs_update_inode(trans, root, parent_inode);
5946 if (ret)
5947 btrfs_abort_transaction(trans, root, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04005948 return ret;
Chris Masonfe66a052012-02-20 08:40:56 -05005949
5950fail_dir_item:
5951 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
5952 u64 local_index;
5953 int err;
5954 err = btrfs_del_root_ref(trans, root->fs_info->tree_root,
5955 key.objectid, root->root_key.objectid,
5956 parent_ino, &local_index, name, name_len);
5957
5958 } else if (add_backref) {
5959 u64 local_index;
5960 int err;
5961
5962 err = btrfs_del_inode_ref(trans, root, name, name_len,
5963 ino, parent_ino, &local_index);
5964 }
5965 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04005966}
5967
5968static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Josef Bacika1b075d2010-11-19 20:36:11 +00005969 struct inode *dir, struct dentry *dentry,
5970 struct inode *inode, int backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04005971{
Josef Bacika1b075d2010-11-19 20:36:11 +00005972 int err = btrfs_add_link(trans, dir, inode,
5973 dentry->d_name.name, dentry->d_name.len,
5974 backref, index);
Chris Mason39279cc2007-06-12 06:35:45 -04005975 if (err > 0)
5976 err = -EEXIST;
5977 return err;
5978}
5979
Josef Bacik618e21d2007-07-11 10:18:17 -04005980static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
Al Viro1a67aaf2011-07-26 01:52:52 -04005981 umode_t mode, dev_t rdev)
Josef Bacik618e21d2007-07-11 10:18:17 -04005982{
5983 struct btrfs_trans_handle *trans;
5984 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05005985 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04005986 int err;
5987 int drop_inode = 0;
5988 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04005989 u64 index = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04005990
5991 if (!new_valid_dev(rdev))
5992 return -EINVAL;
5993
Josef Bacik9ed74f22009-09-11 16:12:44 -04005994 /*
5995 * 2 for inode item and ref
5996 * 2 for dir items
5997 * 1 for xattr if selinux is on
5998 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04005999 trans = btrfs_start_transaction(root, 5);
6000 if (IS_ERR(trans))
6001 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05006002
Li Zefan581bb052011-04-20 10:06:11 +08006003 err = btrfs_find_free_ino(root, &objectid);
6004 if (err)
6005 goto out_unlock;
6006
Josef Bacikaec74772008-07-24 12:12:38 -04006007 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08006008 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04006009 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006010 if (IS_ERR(inode)) {
6011 err = PTR_ERR(inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04006012 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006013 }
Josef Bacik618e21d2007-07-11 10:18:17 -04006014
Casey Schauflerad19db72011-12-15 10:09:07 -05006015 /*
6016 * If the active LSM wants to access the inode during
6017 * d_instantiate it needs these. Smack checks to see
6018 * if the filesystem supports xattrs by looking at the
6019 * ops vector.
6020 */
Casey Schauflerad19db72011-12-15 10:09:07 -05006021 inode->i_op = &btrfs_special_inode_operations;
Chris Masonb0d5d102014-09-08 13:08:51 -07006022 init_special_inode(inode, inode->i_mode, rdev);
6023
6024 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik618e21d2007-07-11 10:18:17 -04006025 if (err)
Chris Masonb0d5d102014-09-08 13:08:51 -07006026 goto out_unlock_inode;
6027
6028 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
6029 if (err) {
6030 goto out_unlock_inode;
6031 } else {
Yan1b4ab1b2007-08-29 09:11:44 -04006032 btrfs_update_inode(trans, root, inode);
Chris Masonb0d5d102014-09-08 13:08:51 -07006033 unlock_new_inode(inode);
Al Viro08c422c2011-12-23 07:58:13 -05006034 d_instantiate(dentry, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04006035 }
Chris Masonb0d5d102014-09-08 13:08:51 -07006036
Josef Bacik618e21d2007-07-11 10:18:17 -04006037out_unlock:
Josef Bacik7ad85bb2012-01-12 19:10:12 -05006038 btrfs_end_transaction(trans, root);
Josef Bacikc581afc2014-02-06 16:06:06 -05006039 btrfs_balance_delayed_items(root);
Liu Bob53d3f52012-11-14 14:34:34 +00006040 btrfs_btree_balance_dirty(root);
Josef Bacik618e21d2007-07-11 10:18:17 -04006041 if (drop_inode) {
6042 inode_dec_link_count(inode);
6043 iput(inode);
6044 }
Josef Bacik618e21d2007-07-11 10:18:17 -04006045 return err;
Chris Masonb0d5d102014-09-08 13:08:51 -07006046
6047out_unlock_inode:
6048 drop_inode = 1;
6049 unlock_new_inode(inode);
6050 goto out_unlock;
6051
Josef Bacik618e21d2007-07-11 10:18:17 -04006052}
6053
Chris Mason39279cc2007-06-12 06:35:45 -04006054static int btrfs_create(struct inode *dir, struct dentry *dentry,
Al Viroebfc3b42012-06-10 18:05:36 -04006055 umode_t mode, bool excl)
Chris Mason39279cc2007-06-12 06:35:45 -04006056{
6057 struct btrfs_trans_handle *trans;
6058 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05006059 struct inode *inode = NULL;
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006060 int drop_inode_on_err = 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -04006061 int err;
Chris Mason39279cc2007-06-12 06:35:45 -04006062 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006063 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006064
Josef Bacik9ed74f22009-09-11 16:12:44 -04006065 /*
6066 * 2 for inode item and ref
6067 * 2 for dir items
6068 * 1 for xattr if selinux is on
6069 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04006070 trans = btrfs_start_transaction(root, 5);
6071 if (IS_ERR(trans))
6072 return PTR_ERR(trans);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006073
Li Zefan581bb052011-04-20 10:06:11 +08006074 err = btrfs_find_free_ino(root, &objectid);
6075 if (err)
6076 goto out_unlock;
6077
Josef Bacikaec74772008-07-24 12:12:38 -04006078 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08006079 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04006080 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006081 if (IS_ERR(inode)) {
6082 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006083 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006084 }
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006085 drop_inode_on_err = 1;
Casey Schauflerad19db72011-12-15 10:09:07 -05006086 /*
6087 * If the active LSM wants to access the inode during
6088 * d_instantiate it needs these. Smack checks to see
6089 * if the filesystem supports xattrs by looking at the
6090 * ops vector.
6091 */
6092 inode->i_fop = &btrfs_file_operations;
6093 inode->i_op = &btrfs_file_inode_operations;
Chris Masonb0d5d102014-09-08 13:08:51 -07006094 inode->i_mapping->a_ops = &btrfs_aops;
6095 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
6096
6097 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
6098 if (err)
6099 goto out_unlock_inode;
6100
6101 err = btrfs_update_inode(trans, root, inode);
6102 if (err)
6103 goto out_unlock_inode;
Casey Schauflerad19db72011-12-15 10:09:07 -05006104
Josef Bacika1b075d2010-11-19 20:36:11 +00006105 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04006106 if (err)
Chris Masonb0d5d102014-09-08 13:08:51 -07006107 goto out_unlock_inode;
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006108
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006109 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Masonb0d5d102014-09-08 13:08:51 -07006110 unlock_new_inode(inode);
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006111 d_instantiate(dentry, inode);
6112
Chris Mason39279cc2007-06-12 06:35:45 -04006113out_unlock:
Josef Bacik7ad85bb2012-01-12 19:10:12 -05006114 btrfs_end_transaction(trans, root);
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006115 if (err && drop_inode_on_err) {
Chris Mason39279cc2007-06-12 06:35:45 -04006116 inode_dec_link_count(inode);
6117 iput(inode);
6118 }
Josef Bacikc581afc2014-02-06 16:06:06 -05006119 btrfs_balance_delayed_items(root);
Liu Bob53d3f52012-11-14 14:34:34 +00006120 btrfs_btree_balance_dirty(root);
Chris Mason39279cc2007-06-12 06:35:45 -04006121 return err;
Chris Masonb0d5d102014-09-08 13:08:51 -07006122
6123out_unlock_inode:
6124 unlock_new_inode(inode);
6125 goto out_unlock;
6126
Chris Mason39279cc2007-06-12 06:35:45 -04006127}
6128
6129static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
6130 struct dentry *dentry)
6131{
6132 struct btrfs_trans_handle *trans;
6133 struct btrfs_root *root = BTRFS_I(dir)->root;
6134 struct inode *inode = old_dentry->d_inode;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006135 u64 index;
Chris Mason39279cc2007-06-12 06:35:45 -04006136 int err;
6137 int drop_inode = 0;
6138
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00006139 /* do not allow sys_link's with other subvols of the same device */
6140 if (root->objectid != BTRFS_I(inode)->root->objectid)
Mark Fasheh3ab35642011-03-22 17:20:26 +00006141 return -EXDEV;
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00006142
Mark Fashehf1863732012-08-08 11:32:27 -07006143 if (inode->i_nlink >= BTRFS_LINK_MAX)
Al Viroc055e992011-03-04 17:15:18 +00006144 return -EMLINK;
Josef Bacik9ed74f22009-09-11 16:12:44 -04006145
Chris Mason3de45862008-11-17 21:02:50 -05006146 err = btrfs_set_inode_index(dir, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04006147 if (err)
6148 goto fail;
6149
Yan, Zhenga22285a2010-05-16 10:48:46 -04006150 /*
Miao Xie7e6b6462011-02-18 09:21:17 +00006151 * 2 items for inode and inode ref
Yan, Zhenga22285a2010-05-16 10:48:46 -04006152 * 2 items for dir items
Miao Xie7e6b6462011-02-18 09:21:17 +00006153 * 1 item for parent inode
Yan, Zhenga22285a2010-05-16 10:48:46 -04006154 */
Miao Xie7e6b6462011-02-18 09:21:17 +00006155 trans = btrfs_start_transaction(root, 5);
Yan, Zhenga22285a2010-05-16 10:48:46 -04006156 if (IS_ERR(trans)) {
6157 err = PTR_ERR(trans);
6158 goto fail;
6159 }
Chris Mason5f39d392007-10-15 16:14:19 -04006160
Miao Xie67de1172013-12-26 13:07:06 +08006161 /* There are several dir indexes for this inode, clear the cache. */
6162 BTRFS_I(inode)->dir_index = 0ULL;
Zach Brown8b558c52013-10-16 12:10:34 -07006163 inc_nlink(inode);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04006164 inode_inc_iversion(inode);
Miao Xie31534952011-04-13 13:19:21 +08006165 inode->i_ctime = CURRENT_TIME;
Al Viro7de9c6ee2010-10-23 11:11:40 -04006166 ihold(inode);
Josef Bacike9976152012-10-11 15:53:56 -04006167 set_bit(BTRFS_INODE_COPY_EVERYTHING, &BTRFS_I(inode)->runtime_flags);
Josef Bacikaec74772008-07-24 12:12:38 -04006168
Josef Bacika1b075d2010-11-19 20:36:11 +00006169 err = btrfs_add_nondir(trans, dir, dentry, inode, 1, index);
Chris Mason5f39d392007-10-15 16:14:19 -04006170
Yan, Zhenga5719522009-09-24 09:17:31 -04006171 if (err) {
Chris Mason39279cc2007-06-12 06:35:45 -04006172 drop_inode = 1;
Yan, Zhenga5719522009-09-24 09:17:31 -04006173 } else {
Al Viro10d9f302011-07-16 23:09:10 -04006174 struct dentry *parent = dentry->d_parent;
Yan, Zhenga5719522009-09-24 09:17:31 -04006175 err = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006176 if (err)
6177 goto fail;
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006178 if (inode->i_nlink == 1) {
6179 /*
6180 * If new hard link count is 1, it's a file created
6181 * with open(2) O_TMPFILE flag.
6182 */
6183 err = btrfs_orphan_del(trans, inode);
6184 if (err)
6185 goto fail;
6186 }
Al Viro08c422c2011-12-23 07:58:13 -05006187 d_instantiate(dentry, inode);
Josef Bacik6a912212010-11-20 09:48:00 +00006188 btrfs_log_new_name(trans, inode, NULL, parent);
Yan, Zhenga5719522009-09-24 09:17:31 -04006189 }
Chris Mason39279cc2007-06-12 06:35:45 -04006190
Josef Bacik7ad85bb2012-01-12 19:10:12 -05006191 btrfs_end_transaction(trans, root);
Josef Bacikc581afc2014-02-06 16:06:06 -05006192 btrfs_balance_delayed_items(root);
Chris Mason1832a6d2007-12-21 16:27:21 -05006193fail:
Chris Mason39279cc2007-06-12 06:35:45 -04006194 if (drop_inode) {
6195 inode_dec_link_count(inode);
6196 iput(inode);
6197 }
Liu Bob53d3f52012-11-14 14:34:34 +00006198 btrfs_btree_balance_dirty(root);
Chris Mason39279cc2007-06-12 06:35:45 -04006199 return err;
6200}
6201
Al Viro18bb1db2011-07-26 01:41:39 -04006202static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Chris Mason39279cc2007-06-12 06:35:45 -04006203{
Chris Masonb9d86662008-05-02 16:13:49 -04006204 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04006205 struct btrfs_trans_handle *trans;
6206 struct btrfs_root *root = BTRFS_I(dir)->root;
6207 int err = 0;
6208 int drop_on_err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04006209 u64 objectid = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006210 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006211
Josef Bacik9ed74f22009-09-11 16:12:44 -04006212 /*
6213 * 2 items for inode and ref
6214 * 2 items for dir items
6215 * 1 for xattr if selinux is on
6216 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04006217 trans = btrfs_start_transaction(root, 5);
6218 if (IS_ERR(trans))
6219 return PTR_ERR(trans);
Chris Mason39279cc2007-06-12 06:35:45 -04006220
Li Zefan581bb052011-04-20 10:06:11 +08006221 err = btrfs_find_free_ino(root, &objectid);
6222 if (err)
6223 goto out_fail;
6224
Josef Bacikaec74772008-07-24 12:12:38 -04006225 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08006226 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04006227 S_IFDIR | mode, &index);
Chris Mason39279cc2007-06-12 06:35:45 -04006228 if (IS_ERR(inode)) {
6229 err = PTR_ERR(inode);
6230 goto out_fail;
6231 }
Chris Mason5f39d392007-10-15 16:14:19 -04006232
Chris Mason39279cc2007-06-12 06:35:45 -04006233 drop_on_err = 1;
Chris Masonb0d5d102014-09-08 13:08:51 -07006234 /* these must be set before we unlock the inode */
6235 inode->i_op = &btrfs_dir_inode_operations;
6236 inode->i_fop = &btrfs_dir_file_operations;
Josef Bacik33268ea2008-07-24 12:16:36 -04006237
Eric Paris2a7dba32011-02-01 11:05:39 -05006238 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04006239 if (err)
Chris Masonb0d5d102014-09-08 13:08:51 -07006240 goto out_fail_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04006241
Chris Masondbe674a2008-07-17 12:54:05 -04006242 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04006243 err = btrfs_update_inode(trans, root, inode);
6244 if (err)
Chris Masonb0d5d102014-09-08 13:08:51 -07006245 goto out_fail_inode;
Chris Mason5f39d392007-10-15 16:14:19 -04006246
Josef Bacika1b075d2010-11-19 20:36:11 +00006247 err = btrfs_add_link(trans, dir, inode, dentry->d_name.name,
6248 dentry->d_name.len, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04006249 if (err)
Chris Masonb0d5d102014-09-08 13:08:51 -07006250 goto out_fail_inode;
Chris Mason5f39d392007-10-15 16:14:19 -04006251
Chris Mason39279cc2007-06-12 06:35:45 -04006252 d_instantiate(dentry, inode);
Chris Masonb0d5d102014-09-08 13:08:51 -07006253 /*
6254 * mkdir is special. We're unlocking after we call d_instantiate
6255 * to avoid a race with nfsd calling d_instantiate.
6256 */
6257 unlock_new_inode(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006258 drop_on_err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006259
6260out_fail:
Josef Bacik7ad85bb2012-01-12 19:10:12 -05006261 btrfs_end_transaction(trans, root);
Wang Shilongc7cfb8a2014-12-24 14:45:30 +08006262 if (drop_on_err) {
6263 inode_dec_link_count(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006264 iput(inode);
Wang Shilongc7cfb8a2014-12-24 14:45:30 +08006265 }
Josef Bacikc581afc2014-02-06 16:06:06 -05006266 btrfs_balance_delayed_items(root);
Liu Bob53d3f52012-11-14 14:34:34 +00006267 btrfs_btree_balance_dirty(root);
Chris Mason39279cc2007-06-12 06:35:45 -04006268 return err;
Chris Masonb0d5d102014-09-08 13:08:51 -07006269
6270out_fail_inode:
6271 unlock_new_inode(inode);
6272 goto out_fail;
Chris Mason39279cc2007-06-12 06:35:45 -04006273}
6274
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08006275/* Find next extent map of a given extent map, caller needs to ensure locks */
6276static struct extent_map *next_extent_map(struct extent_map *em)
6277{
6278 struct rb_node *next;
6279
6280 next = rb_next(&em->rb_node);
6281 if (!next)
6282 return NULL;
6283 return container_of(next, struct extent_map, rb_node);
6284}
6285
6286static struct extent_map *prev_extent_map(struct extent_map *em)
6287{
6288 struct rb_node *prev;
6289
6290 prev = rb_prev(&em->rb_node);
6291 if (!prev)
6292 return NULL;
6293 return container_of(prev, struct extent_map, rb_node);
6294}
6295
Chris Masond352ac62008-09-29 15:18:18 -04006296/* helper for btfs_get_extent. Given an existing extent in the tree,
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08006297 * the existing extent is the nearest extent to map_start,
Chris Masond352ac62008-09-29 15:18:18 -04006298 * and an extent that you want to insert, deal with overlap and insert
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08006299 * the best fitted new extent into the tree.
Chris Masond352ac62008-09-29 15:18:18 -04006300 */
Chris Mason3b951512008-04-17 11:29:12 -04006301static int merge_extent_mapping(struct extent_map_tree *em_tree,
6302 struct extent_map *existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04006303 struct extent_map *em,
Qu Wenruo51f395a2014-08-08 13:06:20 +08006304 u64 map_start)
Chris Mason3b951512008-04-17 11:29:12 -04006305{
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08006306 struct extent_map *prev;
6307 struct extent_map *next;
6308 u64 start;
6309 u64 end;
Chris Mason3b951512008-04-17 11:29:12 -04006310 u64 start_diff;
Chris Mason3b951512008-04-17 11:29:12 -04006311
Chris Masone6dcd2d2008-07-17 12:53:50 -04006312 BUG_ON(map_start < em->start || map_start >= extent_map_end(em));
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08006313
6314 if (existing->start > map_start) {
6315 next = existing;
6316 prev = prev_extent_map(next);
6317 } else {
6318 prev = existing;
6319 next = next_extent_map(prev);
6320 }
6321
6322 start = prev ? extent_map_end(prev) : em->start;
6323 start = max_t(u64, start, em->start);
6324 end = next ? next->start : extent_map_end(em);
6325 end = min_t(u64, end, extent_map_end(em));
6326 start_diff = start - em->start;
6327 em->start = start;
6328 em->len = end - start;
Chris Masonc8b97812008-10-29 14:49:59 -04006329 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
6330 !test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04006331 em->block_start += start_diff;
Chris Masonc8b97812008-10-29 14:49:59 -04006332 em->block_len -= start_diff;
6333 }
Josef Bacik09a2a8f92013-04-05 16:51:15 -04006334 return add_extent_mapping(em_tree, em, 0);
Chris Mason3b951512008-04-17 11:29:12 -04006335}
6336
Chris Masonc8b97812008-10-29 14:49:59 -04006337static noinline int uncompress_inline(struct btrfs_path *path,
6338 struct inode *inode, struct page *page,
6339 size_t pg_offset, u64 extent_offset,
6340 struct btrfs_file_extent_item *item)
6341{
6342 int ret;
6343 struct extent_buffer *leaf = path->nodes[0];
6344 char *tmp;
6345 size_t max_size;
6346 unsigned long inline_size;
6347 unsigned long ptr;
Li Zefan261507a02010-12-17 14:21:50 +08006348 int compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04006349
6350 WARN_ON(pg_offset != 0);
Li Zefan261507a02010-12-17 14:21:50 +08006351 compress_type = btrfs_file_extent_compression(leaf, item);
Chris Masonc8b97812008-10-29 14:49:59 -04006352 max_size = btrfs_file_extent_ram_bytes(leaf, item);
6353 inline_size = btrfs_file_extent_inline_item_len(leaf,
Ross Kirkdd3cc162013-09-16 15:58:09 +01006354 btrfs_item_nr(path->slots[0]));
Chris Masonc8b97812008-10-29 14:49:59 -04006355 tmp = kmalloc(inline_size, GFP_NOFS);
Tsutomu Itoh8d413712011-04-25 19:43:52 -04006356 if (!tmp)
6357 return -ENOMEM;
Chris Masonc8b97812008-10-29 14:49:59 -04006358 ptr = btrfs_file_extent_inline_start(item);
6359
6360 read_extent_buffer(leaf, tmp, ptr, inline_size);
6361
Chris Mason5b050f02008-11-11 09:34:41 -05006362 max_size = min_t(unsigned long, PAGE_CACHE_SIZE, max_size);
Li Zefan261507a02010-12-17 14:21:50 +08006363 ret = btrfs_decompress(compress_type, tmp, page,
6364 extent_offset, inline_size, max_size);
Chris Masonc8b97812008-10-29 14:49:59 -04006365 kfree(tmp);
Zach Brown166ae5a2014-05-09 17:15:10 -04006366 return ret;
Chris Masonc8b97812008-10-29 14:49:59 -04006367}
6368
Chris Masond352ac62008-09-29 15:18:18 -04006369/*
6370 * a bit scary, this does extent mapping from logical file offset to the disk.
Chris Masond3977122009-01-05 21:25:51 -05006371 * the ugly parts come from merging extents from the disk with the in-ram
6372 * representation. This gets more complex because of the data=ordered code,
Chris Masond352ac62008-09-29 15:18:18 -04006373 * where the in-ram extents might be locked pending data=ordered completion.
6374 *
6375 * This also copies inline extents directly into the page.
6376 */
Chris Masond3977122009-01-05 21:25:51 -05006377
Chris Masona52d9a82007-08-27 16:49:44 -04006378struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05006379 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04006380 int create)
6381{
6382 int ret;
6383 int err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04006384 u64 extent_start = 0;
6385 u64 extent_end = 0;
Li Zefan33345d012011-04-20 10:31:50 +08006386 u64 objectid = btrfs_ino(inode);
Chris Masona52d9a82007-08-27 16:49:44 -04006387 u32 found_type;
Chris Masonf4219502008-07-22 11:18:09 -04006388 struct btrfs_path *path = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -04006389 struct btrfs_root *root = BTRFS_I(inode)->root;
6390 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04006391 struct extent_buffer *leaf;
6392 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04006393 struct extent_map *em = NULL;
6394 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05006395 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04006396 struct btrfs_trans_handle *trans = NULL;
Filipe Manana7ffbb592014-06-09 03:48:05 +01006397 const bool new_inline = !page || create;
Chris Masona52d9a82007-08-27 16:49:44 -04006398
Chris Masona52d9a82007-08-27 16:49:44 -04006399again:
Chris Mason890871b2009-09-02 16:24:52 -04006400 read_lock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05006401 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04006402 if (em)
6403 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason890871b2009-09-02 16:24:52 -04006404 read_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05006405
Chris Masona52d9a82007-08-27 16:49:44 -04006406 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04006407 if (em->start > start || em->start + em->len <= start)
6408 free_extent_map(em);
6409 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05006410 free_extent_map(em);
6411 else
6412 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04006413 }
David Sterba172ddd62011-04-21 00:48:27 +02006414 em = alloc_extent_map();
Chris Masona52d9a82007-08-27 16:49:44 -04006415 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05006416 err = -ENOMEM;
6417 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04006418 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006419 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05006420 em->start = EXTENT_MAP_HOLE;
Chris Mason445a6942008-11-10 11:53:33 -05006421 em->orig_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05006422 em->len = (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -04006423 em->block_len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04006424
6425 if (!path) {
6426 path = btrfs_alloc_path();
Josef Bacik026fd312011-05-13 10:32:11 -04006427 if (!path) {
6428 err = -ENOMEM;
6429 goto out;
6430 }
6431 /*
6432 * Chances are we'll be called again, so go ahead and do
6433 * readahead
6434 */
6435 path->reada = 1;
Chris Masonf4219502008-07-22 11:18:09 -04006436 }
6437
Chris Mason179e29e2007-11-01 11:28:41 -04006438 ret = btrfs_lookup_file_extent(trans, root, path,
6439 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04006440 if (ret < 0) {
6441 err = ret;
6442 goto out;
6443 }
6444
6445 if (ret != 0) {
6446 if (path->slots[0] == 0)
6447 goto not_found;
6448 path->slots[0]--;
6449 }
6450
Chris Mason5f39d392007-10-15 16:14:19 -04006451 leaf = path->nodes[0];
6452 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04006453 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04006454 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04006455 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
David Sterba962a2982014-06-04 18:41:45 +02006456 found_type = found_key.type;
Chris Mason5f39d392007-10-15 16:14:19 -04006457 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04006458 found_type != BTRFS_EXTENT_DATA_KEY) {
Josef Bacik25a50342013-10-14 12:08:38 -04006459 /*
6460 * If we backup past the first extent we want to move forward
6461 * and see if there is an extent in front of us, otherwise we'll
6462 * say there is a hole for our whole search range which can
6463 * cause problems.
6464 */
6465 extent_end = start;
6466 goto next;
Chris Masona52d9a82007-08-27 16:49:44 -04006467 }
6468
Chris Mason5f39d392007-10-15 16:14:19 -04006469 found_type = btrfs_file_extent_type(leaf, item);
6470 extent_start = found_key.offset;
Yan Zhengd899e052008-10-30 14:25:28 -04006471 if (found_type == BTRFS_FILE_EXTENT_REG ||
6472 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04006473 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04006474 btrfs_file_extent_num_bytes(leaf, item);
Yan Zheng9036c102008-10-30 14:19:41 -04006475 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
6476 size_t size;
Chris Mason514ac8a2014-01-03 21:07:00 -08006477 size = btrfs_file_extent_inline_len(leaf, path->slots[0], item);
Qu Wenruofda28322013-02-26 08:10:22 +00006478 extent_end = ALIGN(extent_start + size, root->sectorsize);
Yan Zheng9036c102008-10-30 14:19:41 -04006479 }
Josef Bacik25a50342013-10-14 12:08:38 -04006480next:
Yan Zheng9036c102008-10-30 14:19:41 -04006481 if (start >= extent_end) {
6482 path->slots[0]++;
6483 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
6484 ret = btrfs_next_leaf(root, path);
6485 if (ret < 0) {
6486 err = ret;
6487 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04006488 }
Yan Zheng9036c102008-10-30 14:19:41 -04006489 if (ret > 0)
6490 goto not_found;
6491 leaf = path->nodes[0];
Chris Masona52d9a82007-08-27 16:49:44 -04006492 }
Yan Zheng9036c102008-10-30 14:19:41 -04006493 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
6494 if (found_key.objectid != objectid ||
6495 found_key.type != BTRFS_EXTENT_DATA_KEY)
6496 goto not_found;
6497 if (start + len <= found_key.offset)
6498 goto not_found;
Wang Shilonge2eca692014-07-17 11:44:14 +08006499 if (start > found_key.offset)
6500 goto next;
Yan Zheng9036c102008-10-30 14:19:41 -04006501 em->start = start;
Josef Bacik70c8a912012-10-11 16:54:30 -04006502 em->orig_start = start;
Yan Zheng9036c102008-10-30 14:19:41 -04006503 em->len = found_key.offset - start;
6504 goto not_found_em;
6505 }
6506
Filipe Manana7ffbb592014-06-09 03:48:05 +01006507 btrfs_extent_item_to_extent_map(inode, path, item, new_inline, em);
6508
Yan Zhengd899e052008-10-30 14:25:28 -04006509 if (found_type == BTRFS_FILE_EXTENT_REG ||
6510 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04006511 goto insert;
6512 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04006513 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04006514 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04006515 size_t size;
6516 size_t extent_offset;
6517 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04006518
Filipe Manana7ffbb592014-06-09 03:48:05 +01006519 if (new_inline)
Yan689f9342007-10-29 11:41:07 -04006520 goto out;
Yan689f9342007-10-29 11:41:07 -04006521
Chris Mason514ac8a2014-01-03 21:07:00 -08006522 size = btrfs_file_extent_inline_len(leaf, path->slots[0], item);
Yan Zheng9036c102008-10-30 14:19:41 -04006523 extent_offset = page_offset(page) + pg_offset - extent_start;
Chris Mason70dec802008-01-29 09:59:12 -05006524 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
Yan689f9342007-10-29 11:41:07 -04006525 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04006526 em->start = extent_start + extent_offset;
Qu Wenruofda28322013-02-26 08:10:22 +00006527 em->len = ALIGN(copy_size, root->sectorsize);
Josef Bacikb4939682012-12-03 10:31:19 -05006528 em->orig_block_len = em->len;
Josef Bacik70c8a912012-10-11 16:54:30 -04006529 em->orig_start = em->start;
Yan689f9342007-10-29 11:41:07 -04006530 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04006531 if (create == 0 && !PageUptodate(page)) {
Li Zefan261507a02010-12-17 14:21:50 +08006532 if (btrfs_file_extent_compression(leaf, item) !=
6533 BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -04006534 ret = uncompress_inline(path, inode, page,
6535 pg_offset,
6536 extent_offset, item);
Zach Brown166ae5a2014-05-09 17:15:10 -04006537 if (ret) {
6538 err = ret;
6539 goto out;
6540 }
Chris Masonc8b97812008-10-29 14:49:59 -04006541 } else {
6542 map = kmap(page);
6543 read_extent_buffer(leaf, map + pg_offset, ptr,
6544 copy_size);
Chris Mason93c82d52009-09-11 12:36:29 -04006545 if (pg_offset + copy_size < PAGE_CACHE_SIZE) {
6546 memset(map + pg_offset + copy_size, 0,
6547 PAGE_CACHE_SIZE - pg_offset -
6548 copy_size);
6549 }
Chris Masonc8b97812008-10-29 14:49:59 -04006550 kunmap(page);
6551 }
Chris Mason179e29e2007-11-01 11:28:41 -04006552 flush_dcache_page(page);
6553 } else if (create && PageUptodate(page)) {
Jan Schmidt6bf7e082011-12-01 14:35:19 +01006554 BUG();
Chris Mason179e29e2007-11-01 11:28:41 -04006555 if (!trans) {
6556 kunmap(page);
6557 free_extent_map(em);
6558 em = NULL;
Chris Masonff5714c2011-05-28 07:00:39 -04006559
David Sterbab3b4aa72011-04-21 01:20:15 +02006560 btrfs_release_path(path);
Josef Bacik7a7eaa42011-04-13 12:54:33 -04006561 trans = btrfs_join_transaction(root);
Chris Masonff5714c2011-05-28 07:00:39 -04006562
Tsutomu Itoh3612b492011-01-25 02:51:38 +00006563 if (IS_ERR(trans))
6564 return ERR_CAST(trans);
Chris Mason179e29e2007-11-01 11:28:41 -04006565 goto again;
6566 }
Chris Masonc8b97812008-10-29 14:49:59 -04006567 map = kmap(page);
Chris Mason70dec802008-01-29 09:59:12 -05006568 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04006569 copy_size);
Chris Masonc8b97812008-10-29 14:49:59 -04006570 kunmap(page);
Chris Mason179e29e2007-11-01 11:28:41 -04006571 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04006572 }
Chris Masond1310b22008-01-24 16:13:08 -05006573 set_extent_uptodate(io_tree, em->start,
Arne Jansen507903b2011-04-06 10:02:20 +00006574 extent_map_end(em) - 1, NULL, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04006575 goto insert;
Chris Masona52d9a82007-08-27 16:49:44 -04006576 }
6577not_found:
6578 em->start = start;
Josef Bacik70c8a912012-10-11 16:54:30 -04006579 em->orig_start = start;
Chris Masond1310b22008-01-24 16:13:08 -05006580 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04006581not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04006582 em->block_start = EXTENT_MAP_HOLE;
Yan Zheng9036c102008-10-30 14:19:41 -04006583 set_bit(EXTENT_FLAG_VACANCY, &em->flags);
Chris Masona52d9a82007-08-27 16:49:44 -04006584insert:
David Sterbab3b4aa72011-04-21 01:20:15 +02006585 btrfs_release_path(path);
Chris Masond1310b22008-01-24 16:13:08 -05006586 if (em->start > start || extent_map_end(em) <= start) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006587 btrfs_err(root->fs_info, "bad extent! em: [%llu %llu] passed [%llu %llu]",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006588 em->start, em->len, start, len);
Chris Masona52d9a82007-08-27 16:49:44 -04006589 err = -EIO;
6590 goto out;
6591 }
Chris Masond1310b22008-01-24 16:13:08 -05006592
6593 err = 0;
Chris Mason890871b2009-09-02 16:24:52 -04006594 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04006595 ret = add_extent_mapping(em_tree, em, 0);
Chris Mason3b951512008-04-17 11:29:12 -04006596 /* it is possible that someone inserted the extent into the tree
6597 * while we had the lock dropped. It is also possible that
6598 * an overlapping map exists in the tree
6599 */
Chris Masona52d9a82007-08-27 16:49:44 -04006600 if (ret == -EEXIST) {
Chris Mason3b951512008-04-17 11:29:12 -04006601 struct extent_map *existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006602
6603 ret = 0;
6604
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08006605 existing = search_extent_mapping(em_tree, start, len);
6606 /*
6607 * existing will always be non-NULL, since there must be
6608 * extent causing the -EEXIST.
6609 */
6610 if (start >= extent_map_end(existing) ||
Qu Wenruo32be3a12014-09-22 09:13:03 +08006611 start <= existing->start) {
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08006612 /*
6613 * The existing extent map is the one nearest to
6614 * the [start, start + len) range which overlaps
6615 */
6616 err = merge_extent_mapping(em_tree, existing,
6617 em, start);
Chris Masone1c4b742008-04-22 13:26:46 -04006618 free_extent_map(existing);
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08006619 if (err) {
Chris Mason3b951512008-04-17 11:29:12 -04006620 free_extent_map(em);
6621 em = NULL;
6622 }
6623 } else {
6624 free_extent_map(em);
6625 em = existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006626 err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04006627 }
Chris Masona52d9a82007-08-27 16:49:44 -04006628 }
Chris Mason890871b2009-09-02 16:24:52 -04006629 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04006630out:
liubo1abe9b82011-03-24 11:18:59 +00006631
Steven Rostedt4cd85872013-11-14 22:57:29 -05006632 trace_btrfs_get_extent(root, em);
liubo1abe9b82011-03-24 11:18:59 +00006633
Chris Masonf4219502008-07-22 11:18:09 -04006634 if (path)
6635 btrfs_free_path(path);
Chris Masona52d9a82007-08-27 16:49:44 -04006636 if (trans) {
6637 ret = btrfs_end_transaction(trans, root);
Chris Masond3977122009-01-05 21:25:51 -05006638 if (!err)
Chris Masona52d9a82007-08-27 16:49:44 -04006639 err = ret;
6640 }
Chris Masona52d9a82007-08-27 16:49:44 -04006641 if (err) {
6642 free_extent_map(em);
Chris Masona52d9a82007-08-27 16:49:44 -04006643 return ERR_PTR(err);
6644 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006645 BUG_ON(!em); /* Error is always set */
Chris Masona52d9a82007-08-27 16:49:44 -04006646 return em;
6647}
6648
Chris Masonec29ed52011-02-23 16:23:20 -05006649struct extent_map *btrfs_get_extent_fiemap(struct inode *inode, struct page *page,
6650 size_t pg_offset, u64 start, u64 len,
6651 int create)
6652{
6653 struct extent_map *em;
6654 struct extent_map *hole_em = NULL;
6655 u64 range_start = start;
6656 u64 end;
6657 u64 found;
6658 u64 found_end;
6659 int err = 0;
6660
6661 em = btrfs_get_extent(inode, page, pg_offset, start, len, create);
6662 if (IS_ERR(em))
6663 return em;
6664 if (em) {
6665 /*
Liu Bof9e4fb52013-01-07 10:10:12 +00006666 * if our em maps to
6667 * - a hole or
6668 * - a pre-alloc extent,
6669 * there might actually be delalloc bytes behind it.
Chris Masonec29ed52011-02-23 16:23:20 -05006670 */
Liu Bof9e4fb52013-01-07 10:10:12 +00006671 if (em->block_start != EXTENT_MAP_HOLE &&
6672 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
Chris Masonec29ed52011-02-23 16:23:20 -05006673 return em;
6674 else
6675 hole_em = em;
6676 }
6677
6678 /* check to see if we've wrapped (len == -1 or similar) */
6679 end = start + len;
6680 if (end < start)
6681 end = (u64)-1;
6682 else
6683 end -= 1;
6684
6685 em = NULL;
6686
6687 /* ok, we didn't find anything, lets look for delalloc */
6688 found = count_range_bits(&BTRFS_I(inode)->io_tree, &range_start,
6689 end, len, EXTENT_DELALLOC, 1);
6690 found_end = range_start + found;
6691 if (found_end < range_start)
6692 found_end = (u64)-1;
6693
6694 /*
6695 * we didn't find anything useful, return
6696 * the original results from get_extent()
6697 */
6698 if (range_start > end || found_end <= start) {
6699 em = hole_em;
6700 hole_em = NULL;
6701 goto out;
6702 }
6703
6704 /* adjust the range_start to make sure it doesn't
6705 * go backwards from the start they passed in
6706 */
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05306707 range_start = max(start, range_start);
Chris Masonec29ed52011-02-23 16:23:20 -05006708 found = found_end - range_start;
6709
6710 if (found > 0) {
6711 u64 hole_start = start;
6712 u64 hole_len = len;
6713
David Sterba172ddd62011-04-21 00:48:27 +02006714 em = alloc_extent_map();
Chris Masonec29ed52011-02-23 16:23:20 -05006715 if (!em) {
6716 err = -ENOMEM;
6717 goto out;
6718 }
6719 /*
6720 * when btrfs_get_extent can't find anything it
6721 * returns one huge hole
6722 *
6723 * make sure what it found really fits our range, and
6724 * adjust to make sure it is based on the start from
6725 * the caller
6726 */
6727 if (hole_em) {
6728 u64 calc_end = extent_map_end(hole_em);
6729
6730 if (calc_end <= start || (hole_em->start > end)) {
6731 free_extent_map(hole_em);
6732 hole_em = NULL;
6733 } else {
6734 hole_start = max(hole_em->start, start);
6735 hole_len = calc_end - hole_start;
6736 }
6737 }
6738 em->bdev = NULL;
6739 if (hole_em && range_start > hole_start) {
6740 /* our hole starts before our delalloc, so we
6741 * have to return just the parts of the hole
6742 * that go until the delalloc starts
6743 */
6744 em->len = min(hole_len,
6745 range_start - hole_start);
6746 em->start = hole_start;
6747 em->orig_start = hole_start;
6748 /*
6749 * don't adjust block start at all,
6750 * it is fixed at EXTENT_MAP_HOLE
6751 */
6752 em->block_start = hole_em->block_start;
6753 em->block_len = hole_len;
Liu Bof9e4fb52013-01-07 10:10:12 +00006754 if (test_bit(EXTENT_FLAG_PREALLOC, &hole_em->flags))
6755 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Chris Masonec29ed52011-02-23 16:23:20 -05006756 } else {
6757 em->start = range_start;
6758 em->len = found;
6759 em->orig_start = range_start;
6760 em->block_start = EXTENT_MAP_DELALLOC;
6761 em->block_len = found;
6762 }
6763 } else if (hole_em) {
6764 return hole_em;
6765 }
6766out:
6767
6768 free_extent_map(hole_em);
6769 if (err) {
6770 free_extent_map(em);
6771 return ERR_PTR(err);
6772 }
6773 return em;
6774}
6775
Josef Bacik4b46fce2010-05-23 11:00:55 -04006776static struct extent_map *btrfs_new_extent_direct(struct inode *inode,
6777 u64 start, u64 len)
6778{
6779 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik70c8a912012-10-11 16:54:30 -04006780 struct extent_map *em;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006781 struct btrfs_key ins;
6782 u64 alloc_hint;
6783 int ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006784
Josef Bacik4b46fce2010-05-23 11:00:55 -04006785 alloc_hint = get_extent_allocation_hint(inode, start, len);
Josef Bacik00361582013-08-14 14:02:47 -04006786 ret = btrfs_reserve_extent(root, len, root->sectorsize, 0,
Miao Xiee570fd22014-06-19 10:42:50 +08006787 alloc_hint, &ins, 1, 1);
Josef Bacik00361582013-08-14 14:02:47 -04006788 if (ret)
6789 return ERR_PTR(ret);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006790
Josef Bacik70c8a912012-10-11 16:54:30 -04006791 em = create_pinned_em(inode, start, ins.offset, start, ins.objectid,
Josef Bacikcc95bef2013-04-04 14:31:27 -04006792 ins.offset, ins.offset, ins.offset, 0);
Josef Bacik00361582013-08-14 14:02:47 -04006793 if (IS_ERR(em)) {
Miao Xiee570fd22014-06-19 10:42:50 +08006794 btrfs_free_reserved_extent(root, ins.objectid, ins.offset, 1);
Josef Bacik00361582013-08-14 14:02:47 -04006795 return em;
6796 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04006797
6798 ret = btrfs_add_ordered_extent_dio(inode, start, ins.objectid,
6799 ins.offset, ins.offset, 0);
6800 if (ret) {
Miao Xiee570fd22014-06-19 10:42:50 +08006801 btrfs_free_reserved_extent(root, ins.objectid, ins.offset, 1);
Josef Bacik00361582013-08-14 14:02:47 -04006802 free_extent_map(em);
6803 return ERR_PTR(ret);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006804 }
Josef Bacik00361582013-08-14 14:02:47 -04006805
Josef Bacik4b46fce2010-05-23 11:00:55 -04006806 return em;
6807}
6808
Chris Mason46bfbb52010-05-26 11:04:10 -04006809/*
6810 * returns 1 when the nocow is safe, < 1 on error, 0 if the
6811 * block must be cow'd
6812 */
Josef Bacik00361582013-08-14 14:02:47 -04006813noinline int can_nocow_extent(struct inode *inode, u64 offset, u64 *len,
Josef Bacik7ee9e442013-06-21 16:37:03 -04006814 u64 *orig_start, u64 *orig_block_len,
6815 u64 *ram_bytes)
Chris Mason46bfbb52010-05-26 11:04:10 -04006816{
Josef Bacik00361582013-08-14 14:02:47 -04006817 struct btrfs_trans_handle *trans;
Chris Mason46bfbb52010-05-26 11:04:10 -04006818 struct btrfs_path *path;
6819 int ret;
6820 struct extent_buffer *leaf;
6821 struct btrfs_root *root = BTRFS_I(inode)->root;
Miao Xie7b2b7082014-02-27 13:58:05 +08006822 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason46bfbb52010-05-26 11:04:10 -04006823 struct btrfs_file_extent_item *fi;
6824 struct btrfs_key key;
6825 u64 disk_bytenr;
6826 u64 backref_offset;
6827 u64 extent_end;
6828 u64 num_bytes;
6829 int slot;
6830 int found_type;
Josef Bacik7ee9e442013-06-21 16:37:03 -04006831 bool nocow = (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW);
Miao Xiee77751a2013-12-27 21:11:50 +08006832
Chris Mason46bfbb52010-05-26 11:04:10 -04006833 path = btrfs_alloc_path();
6834 if (!path)
6835 return -ENOMEM;
6836
Josef Bacik00361582013-08-14 14:02:47 -04006837 ret = btrfs_lookup_file_extent(NULL, root, path, btrfs_ino(inode),
Chris Mason46bfbb52010-05-26 11:04:10 -04006838 offset, 0);
6839 if (ret < 0)
6840 goto out;
6841
6842 slot = path->slots[0];
6843 if (ret == 1) {
6844 if (slot == 0) {
6845 /* can't find the item, must cow */
6846 ret = 0;
6847 goto out;
6848 }
6849 slot--;
6850 }
6851 ret = 0;
6852 leaf = path->nodes[0];
6853 btrfs_item_key_to_cpu(leaf, &key, slot);
Li Zefan33345d012011-04-20 10:31:50 +08006854 if (key.objectid != btrfs_ino(inode) ||
Chris Mason46bfbb52010-05-26 11:04:10 -04006855 key.type != BTRFS_EXTENT_DATA_KEY) {
6856 /* not our file or wrong item type, must cow */
6857 goto out;
6858 }
6859
6860 if (key.offset > offset) {
6861 /* Wrong offset, must cow */
6862 goto out;
6863 }
6864
6865 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
6866 found_type = btrfs_file_extent_type(leaf, fi);
6867 if (found_type != BTRFS_FILE_EXTENT_REG &&
6868 found_type != BTRFS_FILE_EXTENT_PREALLOC) {
6869 /* not a regular extent, must cow */
6870 goto out;
6871 }
Josef Bacik7ee9e442013-06-21 16:37:03 -04006872
6873 if (!nocow && found_type == BTRFS_FILE_EXTENT_REG)
6874 goto out;
6875
Miao Xiee77751a2013-12-27 21:11:50 +08006876 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
6877 if (extent_end <= offset)
6878 goto out;
6879
Chris Mason46bfbb52010-05-26 11:04:10 -04006880 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Josef Bacik7ee9e442013-06-21 16:37:03 -04006881 if (disk_bytenr == 0)
6882 goto out;
6883
6884 if (btrfs_file_extent_compression(leaf, fi) ||
6885 btrfs_file_extent_encryption(leaf, fi) ||
6886 btrfs_file_extent_other_encoding(leaf, fi))
6887 goto out;
6888
Chris Mason46bfbb52010-05-26 11:04:10 -04006889 backref_offset = btrfs_file_extent_offset(leaf, fi);
6890
Josef Bacik7ee9e442013-06-21 16:37:03 -04006891 if (orig_start) {
6892 *orig_start = key.offset - backref_offset;
6893 *orig_block_len = btrfs_file_extent_disk_num_bytes(leaf, fi);
6894 *ram_bytes = btrfs_file_extent_ram_bytes(leaf, fi);
6895 }
Josef Bacikeb384b52013-04-24 16:32:55 -04006896
Chris Mason46bfbb52010-05-26 11:04:10 -04006897 if (btrfs_extent_readonly(root, disk_bytenr))
6898 goto out;
Miao Xie7b2b7082014-02-27 13:58:05 +08006899
6900 num_bytes = min(offset + *len, extent_end) - offset;
6901 if (!nocow && found_type == BTRFS_FILE_EXTENT_PREALLOC) {
6902 u64 range_end;
6903
6904 range_end = round_up(offset + num_bytes, root->sectorsize) - 1;
6905 ret = test_range_bit(io_tree, offset, range_end,
6906 EXTENT_DELALLOC, 0, NULL);
6907 if (ret) {
6908 ret = -EAGAIN;
6909 goto out;
6910 }
6911 }
6912
Josef Bacik1bda19e2013-10-18 12:10:36 -04006913 btrfs_release_path(path);
Chris Mason46bfbb52010-05-26 11:04:10 -04006914
6915 /*
6916 * look for other files referencing this extent, if we
6917 * find any we must cow
6918 */
Josef Bacik00361582013-08-14 14:02:47 -04006919 trans = btrfs_join_transaction(root);
6920 if (IS_ERR(trans)) {
6921 ret = 0;
Chris Mason46bfbb52010-05-26 11:04:10 -04006922 goto out;
Josef Bacik00361582013-08-14 14:02:47 -04006923 }
6924
6925 ret = btrfs_cross_ref_exist(trans, root, btrfs_ino(inode),
6926 key.offset - backref_offset, disk_bytenr);
6927 btrfs_end_transaction(trans, root);
6928 if (ret) {
6929 ret = 0;
6930 goto out;
6931 }
Chris Mason46bfbb52010-05-26 11:04:10 -04006932
6933 /*
6934 * adjust disk_bytenr and num_bytes to cover just the bytes
6935 * in this extent we are about to write. If there
6936 * are any csums in that range we have to cow in order
6937 * to keep the csums correct
6938 */
6939 disk_bytenr += backref_offset;
6940 disk_bytenr += offset - key.offset;
Chris Mason46bfbb52010-05-26 11:04:10 -04006941 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
6942 goto out;
6943 /*
6944 * all of the above have passed, it is safe to overwrite this extent
6945 * without cow
6946 */
Josef Bacikeb384b52013-04-24 16:32:55 -04006947 *len = num_bytes;
Chris Mason46bfbb52010-05-26 11:04:10 -04006948 ret = 1;
6949out:
6950 btrfs_free_path(path);
6951 return ret;
6952}
6953
Alex Gartrellfc4adbff2014-05-20 13:07:56 -07006954bool btrfs_page_exists_in_range(struct inode *inode, loff_t start, loff_t end)
6955{
6956 struct radix_tree_root *root = &inode->i_mapping->page_tree;
6957 int found = false;
6958 void **pagep = NULL;
6959 struct page *page = NULL;
6960 int start_idx;
6961 int end_idx;
6962
6963 start_idx = start >> PAGE_CACHE_SHIFT;
6964
6965 /*
6966 * end is the last byte in the last page. end == start is legal
6967 */
6968 end_idx = end >> PAGE_CACHE_SHIFT;
6969
6970 rcu_read_lock();
6971
6972 /* Most of the code in this while loop is lifted from
6973 * find_get_page. It's been modified to begin searching from a
6974 * page and return just the first page found in that range. If the
6975 * found idx is less than or equal to the end idx then we know that
6976 * a page exists. If no pages are found or if those pages are
6977 * outside of the range then we're fine (yay!) */
6978 while (page == NULL &&
6979 radix_tree_gang_lookup_slot(root, &pagep, NULL, start_idx, 1)) {
6980 page = radix_tree_deref_slot(pagep);
6981 if (unlikely(!page))
6982 break;
6983
6984 if (radix_tree_exception(page)) {
Filipe Manana809f9012014-06-05 13:22:25 +01006985 if (radix_tree_deref_retry(page)) {
6986 page = NULL;
Alex Gartrellfc4adbff2014-05-20 13:07:56 -07006987 continue;
Filipe Manana809f9012014-06-05 13:22:25 +01006988 }
Alex Gartrellfc4adbff2014-05-20 13:07:56 -07006989 /*
6990 * Otherwise, shmem/tmpfs must be storing a swap entry
6991 * here as an exceptional entry: so return it without
6992 * attempting to raise page count.
6993 */
Filipe Manana6fdef6d2014-06-05 13:22:26 +01006994 page = NULL;
Alex Gartrellfc4adbff2014-05-20 13:07:56 -07006995 break; /* TODO: Is this relevant for this use case? */
6996 }
6997
Filipe Manana91405152014-06-05 13:22:24 +01006998 if (!page_cache_get_speculative(page)) {
6999 page = NULL;
Alex Gartrellfc4adbff2014-05-20 13:07:56 -07007000 continue;
Filipe Manana91405152014-06-05 13:22:24 +01007001 }
Alex Gartrellfc4adbff2014-05-20 13:07:56 -07007002
7003 /*
7004 * Has the page moved?
7005 * This is part of the lockless pagecache protocol. See
7006 * include/linux/pagemap.h for details.
7007 */
7008 if (unlikely(page != *pagep)) {
7009 page_cache_release(page);
7010 page = NULL;
7011 }
7012 }
7013
7014 if (page) {
7015 if (page->index <= end_idx)
7016 found = true;
7017 page_cache_release(page);
7018 }
7019
7020 rcu_read_unlock();
7021 return found;
7022}
7023
Josef Bacikeb838e72012-07-31 16:28:48 -04007024static int lock_extent_direct(struct inode *inode, u64 lockstart, u64 lockend,
7025 struct extent_state **cached_state, int writing)
7026{
7027 struct btrfs_ordered_extent *ordered;
7028 int ret = 0;
7029
7030 while (1) {
7031 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
7032 0, cached_state);
7033 /*
7034 * We're concerned with the entire range that we're going to be
7035 * doing DIO to, so we need to make sure theres no ordered
7036 * extents in this range.
7037 */
7038 ordered = btrfs_lookup_ordered_range(inode, lockstart,
7039 lockend - lockstart + 1);
7040
7041 /*
7042 * We need to make sure there are no buffered pages in this
7043 * range either, we could have raced between the invalidate in
7044 * generic_file_direct_write and locking the extent. The
7045 * invalidate needs to happen so that reads after a write do not
7046 * get stale data.
7047 */
Alex Gartrellfc4adbff2014-05-20 13:07:56 -07007048 if (!ordered &&
7049 (!writing ||
7050 !btrfs_page_exists_in_range(inode, lockstart, lockend)))
Josef Bacikeb838e72012-07-31 16:28:48 -04007051 break;
7052
7053 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
7054 cached_state, GFP_NOFS);
7055
7056 if (ordered) {
7057 btrfs_start_ordered_extent(inode, ordered, 1);
7058 btrfs_put_ordered_extent(ordered);
7059 } else {
7060 /* Screw you mmap */
Filipe Manana728404d2014-10-10 09:43:11 +01007061 ret = btrfs_fdatawrite_range(inode, lockstart, lockend);
Filipe Manana075bdbd2014-10-09 21:18:55 +01007062 if (ret)
7063 break;
7064 ret = filemap_fdatawait_range(inode->i_mapping,
7065 lockstart,
7066 lockend);
Josef Bacikeb838e72012-07-31 16:28:48 -04007067 if (ret)
7068 break;
7069
7070 /*
7071 * If we found a page that couldn't be invalidated just
7072 * fall back to buffered.
7073 */
7074 ret = invalidate_inode_pages2_range(inode->i_mapping,
7075 lockstart >> PAGE_CACHE_SHIFT,
7076 lockend >> PAGE_CACHE_SHIFT);
7077 if (ret)
7078 break;
7079 }
7080
7081 cond_resched();
7082 }
7083
7084 return ret;
7085}
7086
Josef Bacik69ffb542012-09-11 15:40:07 -04007087static struct extent_map *create_pinned_em(struct inode *inode, u64 start,
7088 u64 len, u64 orig_start,
7089 u64 block_start, u64 block_len,
Josef Bacikcc95bef2013-04-04 14:31:27 -04007090 u64 orig_block_len, u64 ram_bytes,
7091 int type)
Josef Bacik69ffb542012-09-11 15:40:07 -04007092{
7093 struct extent_map_tree *em_tree;
7094 struct extent_map *em;
7095 struct btrfs_root *root = BTRFS_I(inode)->root;
7096 int ret;
7097
7098 em_tree = &BTRFS_I(inode)->extent_tree;
7099 em = alloc_extent_map();
7100 if (!em)
7101 return ERR_PTR(-ENOMEM);
7102
7103 em->start = start;
7104 em->orig_start = orig_start;
Josef Bacik2ab28f32012-10-12 15:27:49 -04007105 em->mod_start = start;
7106 em->mod_len = len;
Josef Bacik69ffb542012-09-11 15:40:07 -04007107 em->len = len;
7108 em->block_len = block_len;
7109 em->block_start = block_start;
7110 em->bdev = root->fs_info->fs_devices->latest_bdev;
Josef Bacikb4939682012-12-03 10:31:19 -05007111 em->orig_block_len = orig_block_len;
Josef Bacikcc95bef2013-04-04 14:31:27 -04007112 em->ram_bytes = ram_bytes;
Josef Bacik70c8a912012-10-11 16:54:30 -04007113 em->generation = -1;
Josef Bacik69ffb542012-09-11 15:40:07 -04007114 set_bit(EXTENT_FLAG_PINNED, &em->flags);
7115 if (type == BTRFS_ORDERED_PREALLOC)
Josef Bacikb11e2342012-12-03 10:58:15 -05007116 set_bit(EXTENT_FLAG_FILLING, &em->flags);
Josef Bacik69ffb542012-09-11 15:40:07 -04007117
7118 do {
7119 btrfs_drop_extent_cache(inode, em->start,
7120 em->start + em->len - 1, 0);
7121 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04007122 ret = add_extent_mapping(em_tree, em, 1);
Josef Bacik69ffb542012-09-11 15:40:07 -04007123 write_unlock(&em_tree->lock);
7124 } while (ret == -EEXIST);
7125
7126 if (ret) {
7127 free_extent_map(em);
7128 return ERR_PTR(ret);
7129 }
7130
7131 return em;
7132}
7133
7134
Josef Bacik4b46fce2010-05-23 11:00:55 -04007135static int btrfs_get_blocks_direct(struct inode *inode, sector_t iblock,
7136 struct buffer_head *bh_result, int create)
7137{
7138 struct extent_map *em;
7139 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacikeb838e72012-07-31 16:28:48 -04007140 struct extent_state *cached_state = NULL;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007141 u64 start = iblock << inode->i_blkbits;
Josef Bacikeb838e72012-07-31 16:28:48 -04007142 u64 lockstart, lockend;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007143 u64 len = bh_result->b_size;
Josef Bacikeb838e72012-07-31 16:28:48 -04007144 int unlock_bits = EXTENT_LOCKED;
Miao Xie09348562013-02-07 10:12:07 +00007145 int ret = 0;
Josef Bacikeb838e72012-07-31 16:28:48 -04007146
Miao Xie172a5042013-02-21 02:48:22 -07007147 if (create)
Josef Bacikeb838e72012-07-31 16:28:48 -04007148 unlock_bits |= EXTENT_DELALLOC | EXTENT_DIRTY;
Miao Xie172a5042013-02-21 02:48:22 -07007149 else
Josef Bacikc3298612012-08-03 16:49:19 -04007150 len = min_t(u64, len, root->sectorsize);
Josef Bacikeb838e72012-07-31 16:28:48 -04007151
Josef Bacikc3298612012-08-03 16:49:19 -04007152 lockstart = start;
7153 lockend = start + len - 1;
7154
Josef Bacikeb838e72012-07-31 16:28:48 -04007155 /*
7156 * If this errors out it's because we couldn't invalidate pagecache for
7157 * this range and we need to fallback to buffered.
7158 */
7159 if (lock_extent_direct(inode, lockstart, lockend, &cached_state, create))
7160 return -ENOTBLK;
7161
Josef Bacik4b46fce2010-05-23 11:00:55 -04007162 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
Josef Bacikeb838e72012-07-31 16:28:48 -04007163 if (IS_ERR(em)) {
7164 ret = PTR_ERR(em);
7165 goto unlock_err;
7166 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04007167
7168 /*
7169 * Ok for INLINE and COMPRESSED extents we need to fallback on buffered
7170 * io. INLINE is special, and we could probably kludge it in here, but
7171 * it's still buffered so for safety lets just fall back to the generic
7172 * buffered path.
7173 *
7174 * For COMPRESSED we _have_ to read the entire extent in so we can
7175 * decompress it, so there will be buffering required no matter what we
7176 * do, so go ahead and fallback to buffered.
7177 *
7178 * We return -ENOTBLK because thats what makes DIO go ahead and go back
7179 * to buffered IO. Don't blame me, this is the price we pay for using
7180 * the generic code.
7181 */
7182 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) ||
7183 em->block_start == EXTENT_MAP_INLINE) {
7184 free_extent_map(em);
Josef Bacikeb838e72012-07-31 16:28:48 -04007185 ret = -ENOTBLK;
7186 goto unlock_err;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007187 }
7188
7189 /* Just a good old fashioned hole, return */
7190 if (!create && (em->block_start == EXTENT_MAP_HOLE ||
7191 test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
7192 free_extent_map(em);
Josef Bacikeb838e72012-07-31 16:28:48 -04007193 goto unlock_err;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007194 }
7195
7196 /*
7197 * We don't allocate a new extent in the following cases
7198 *
7199 * 1) The inode is marked as NODATACOW. In this case we'll just use the
7200 * existing extent.
7201 * 2) The extent is marked as PREALLOC. We're good to go here and can
7202 * just use the extent.
7203 *
7204 */
Chris Mason46bfbb52010-05-26 11:04:10 -04007205 if (!create) {
Josef Bacikeb838e72012-07-31 16:28:48 -04007206 len = min(len, em->len - (start - em->start));
7207 lockstart = start + len;
7208 goto unlock;
Chris Mason46bfbb52010-05-26 11:04:10 -04007209 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04007210
7211 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) ||
7212 ((BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) &&
7213 em->block_start != EXTENT_MAP_HOLE)) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04007214 int type;
7215 int ret;
Josef Bacikeb384b52013-04-24 16:32:55 -04007216 u64 block_start, orig_start, orig_block_len, ram_bytes;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007217
7218 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
7219 type = BTRFS_ORDERED_PREALLOC;
7220 else
7221 type = BTRFS_ORDERED_NOCOW;
Chris Mason46bfbb52010-05-26 11:04:10 -04007222 len = min(len, em->len - (start - em->start));
Josef Bacik4b46fce2010-05-23 11:00:55 -04007223 block_start = em->block_start + (start - em->start);
Chris Mason46bfbb52010-05-26 11:04:10 -04007224
Josef Bacik00361582013-08-14 14:02:47 -04007225 if (can_nocow_extent(inode, start, &len, &orig_start,
Josef Bacik7ee9e442013-06-21 16:37:03 -04007226 &orig_block_len, &ram_bytes) == 1) {
Josef Bacik69ffb542012-09-11 15:40:07 -04007227 if (type == BTRFS_ORDERED_PREALLOC) {
7228 free_extent_map(em);
7229 em = create_pinned_em(inode, start, len,
7230 orig_start,
Josef Bacikb4939682012-12-03 10:31:19 -05007231 block_start, len,
Josef Bacikcc95bef2013-04-04 14:31:27 -04007232 orig_block_len,
7233 ram_bytes, type);
Filipe Manana555e1282014-07-07 12:35:21 +01007234 if (IS_ERR(em)) {
7235 ret = PTR_ERR(em);
Josef Bacik69ffb542012-09-11 15:40:07 -04007236 goto unlock_err;
Filipe Manana555e1282014-07-07 12:35:21 +01007237 }
Josef Bacik69ffb542012-09-11 15:40:07 -04007238 }
7239
Chris Mason46bfbb52010-05-26 11:04:10 -04007240 ret = btrfs_add_ordered_extent_dio(inode, start,
7241 block_start, len, len, type);
Chris Mason46bfbb52010-05-26 11:04:10 -04007242 if (ret) {
7243 free_extent_map(em);
Josef Bacikeb838e72012-07-31 16:28:48 -04007244 goto unlock_err;
Chris Mason46bfbb52010-05-26 11:04:10 -04007245 }
7246 goto unlock;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007247 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04007248 }
Josef Bacik00361582013-08-14 14:02:47 -04007249
Chris Mason46bfbb52010-05-26 11:04:10 -04007250 /*
7251 * this will cow the extent, reset the len in case we changed
7252 * it above
7253 */
7254 len = bh_result->b_size;
Josef Bacik70c8a912012-10-11 16:54:30 -04007255 free_extent_map(em);
7256 em = btrfs_new_extent_direct(inode, start, len);
Josef Bacikeb838e72012-07-31 16:28:48 -04007257 if (IS_ERR(em)) {
7258 ret = PTR_ERR(em);
7259 goto unlock_err;
7260 }
Chris Mason46bfbb52010-05-26 11:04:10 -04007261 len = min(len, em->len - (start - em->start));
7262unlock:
Josef Bacik4b46fce2010-05-23 11:00:55 -04007263 bh_result->b_blocknr = (em->block_start + (start - em->start)) >>
7264 inode->i_blkbits;
Chris Mason46bfbb52010-05-26 11:04:10 -04007265 bh_result->b_size = len;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007266 bh_result->b_bdev = em->bdev;
7267 set_buffer_mapped(bh_result);
Josef Bacikc3473e82012-06-19 10:59:00 -04007268 if (create) {
7269 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
7270 set_buffer_new(bh_result);
7271
7272 /*
7273 * Need to update the i_size under the extent lock so buffered
7274 * readers will get the updated i_size when we unlock.
7275 */
7276 if (start + len > i_size_read(inode))
7277 i_size_write(inode, start + len);
Miao Xie09348562013-02-07 10:12:07 +00007278
Miao Xie172a5042013-02-21 02:48:22 -07007279 spin_lock(&BTRFS_I(inode)->lock);
7280 BTRFS_I(inode)->outstanding_extents++;
7281 spin_unlock(&BTRFS_I(inode)->lock);
7282
Miao Xie09348562013-02-07 10:12:07 +00007283 ret = set_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
7284 lockstart + len - 1, EXTENT_DELALLOC, NULL,
7285 &cached_state, GFP_NOFS);
7286 BUG_ON(ret);
Josef Bacikc3473e82012-06-19 10:59:00 -04007287 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04007288
Josef Bacikeb838e72012-07-31 16:28:48 -04007289 /*
7290 * In the case of write we need to clear and unlock the entire range,
7291 * in the case of read we need to unlock only the end area that we
7292 * aren't using if there is any left over space.
7293 */
Liu Bo24c03fa2012-08-22 20:10:38 -06007294 if (lockstart < lockend) {
Miao Xie09348562013-02-07 10:12:07 +00007295 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
7296 lockend, unlock_bits, 1, 0,
7297 &cached_state, GFP_NOFS);
Liu Bo24c03fa2012-08-22 20:10:38 -06007298 } else {
Josef Bacikeb838e72012-07-31 16:28:48 -04007299 free_extent_state(cached_state);
Liu Bo24c03fa2012-08-22 20:10:38 -06007300 }
Josef Bacikeb838e72012-07-31 16:28:48 -04007301
Josef Bacik4b46fce2010-05-23 11:00:55 -04007302 free_extent_map(em);
7303
7304 return 0;
Josef Bacikeb838e72012-07-31 16:28:48 -04007305
7306unlock_err:
Josef Bacikeb838e72012-07-31 16:28:48 -04007307 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart, lockend,
7308 unlock_bits, 1, 0, &cached_state, GFP_NOFS);
7309 return ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007310}
7311
Miao Xie8b110e32014-09-12 18:44:03 +08007312static inline int submit_dio_repair_bio(struct inode *inode, struct bio *bio,
7313 int rw, int mirror_num)
7314{
7315 struct btrfs_root *root = BTRFS_I(inode)->root;
7316 int ret;
7317
7318 BUG_ON(rw & REQ_WRITE);
7319
7320 bio_get(bio);
7321
7322 ret = btrfs_bio_wq_end_io(root->fs_info, bio,
7323 BTRFS_WQ_ENDIO_DIO_REPAIR);
7324 if (ret)
7325 goto err;
7326
7327 ret = btrfs_map_bio(root, rw, bio, mirror_num, 0);
7328err:
7329 bio_put(bio);
7330 return ret;
7331}
7332
7333static int btrfs_check_dio_repairable(struct inode *inode,
7334 struct bio *failed_bio,
7335 struct io_failure_record *failrec,
7336 int failed_mirror)
7337{
7338 int num_copies;
7339
7340 num_copies = btrfs_num_copies(BTRFS_I(inode)->root->fs_info,
7341 failrec->logical, failrec->len);
7342 if (num_copies == 1) {
7343 /*
7344 * we only have a single copy of the data, so don't bother with
7345 * all the retry and error correction code that follows. no
7346 * matter what the error is, it is very likely to persist.
7347 */
7348 pr_debug("Check DIO Repairable: cannot repair, num_copies=%d, next_mirror %d, failed_mirror %d\n",
7349 num_copies, failrec->this_mirror, failed_mirror);
7350 return 0;
7351 }
7352
7353 failrec->failed_mirror = failed_mirror;
7354 failrec->this_mirror++;
7355 if (failrec->this_mirror == failed_mirror)
7356 failrec->this_mirror++;
7357
7358 if (failrec->this_mirror > num_copies) {
7359 pr_debug("Check DIO Repairable: (fail) num_copies=%d, next_mirror %d, failed_mirror %d\n",
7360 num_copies, failrec->this_mirror, failed_mirror);
7361 return 0;
7362 }
7363
7364 return 1;
7365}
7366
7367static int dio_read_error(struct inode *inode, struct bio *failed_bio,
7368 struct page *page, u64 start, u64 end,
7369 int failed_mirror, bio_end_io_t *repair_endio,
7370 void *repair_arg)
7371{
7372 struct io_failure_record *failrec;
7373 struct bio *bio;
7374 int isector;
7375 int read_mode;
7376 int ret;
7377
7378 BUG_ON(failed_bio->bi_rw & REQ_WRITE);
7379
7380 ret = btrfs_get_io_failure_record(inode, start, end, &failrec);
7381 if (ret)
7382 return ret;
7383
7384 ret = btrfs_check_dio_repairable(inode, failed_bio, failrec,
7385 failed_mirror);
7386 if (!ret) {
7387 free_io_failure(inode, failrec);
7388 return -EIO;
7389 }
7390
7391 if (failed_bio->bi_vcnt > 1)
7392 read_mode = READ_SYNC | REQ_FAILFAST_DEV;
7393 else
7394 read_mode = READ_SYNC;
7395
7396 isector = start - btrfs_io_bio(failed_bio)->logical;
7397 isector >>= inode->i_sb->s_blocksize_bits;
7398 bio = btrfs_create_repair_bio(inode, failed_bio, failrec, page,
7399 0, isector, repair_endio, repair_arg);
7400 if (!bio) {
7401 free_io_failure(inode, failrec);
7402 return -EIO;
7403 }
7404
7405 btrfs_debug(BTRFS_I(inode)->root->fs_info,
7406 "Repair DIO Read Error: submitting new dio read[%#x] to this_mirror=%d, in_validation=%d\n",
7407 read_mode, failrec->this_mirror, failrec->in_validation);
7408
7409 ret = submit_dio_repair_bio(inode, bio, read_mode,
7410 failrec->this_mirror);
7411 if (ret) {
7412 free_io_failure(inode, failrec);
7413 bio_put(bio);
7414 }
7415
7416 return ret;
7417}
7418
7419struct btrfs_retry_complete {
7420 struct completion done;
7421 struct inode *inode;
7422 u64 start;
7423 int uptodate;
7424};
7425
7426static void btrfs_retry_endio_nocsum(struct bio *bio, int err)
7427{
7428 struct btrfs_retry_complete *done = bio->bi_private;
7429 struct bio_vec *bvec;
7430 int i;
7431
7432 if (err)
7433 goto end;
7434
7435 done->uptodate = 1;
7436 bio_for_each_segment_all(bvec, bio, i)
7437 clean_io_failure(done->inode, done->start, bvec->bv_page, 0);
7438end:
7439 complete(&done->done);
7440 bio_put(bio);
7441}
7442
7443static int __btrfs_correct_data_nocsum(struct inode *inode,
7444 struct btrfs_io_bio *io_bio)
Josef Bacik4b46fce2010-05-23 11:00:55 -04007445{
Kent Overstreet2c30c712013-11-07 12:20:26 -08007446 struct bio_vec *bvec;
Miao Xie8b110e32014-09-12 18:44:03 +08007447 struct btrfs_retry_complete done;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007448 u64 start;
Kent Overstreet2c30c712013-11-07 12:20:26 -08007449 int i;
Miao Xiec1dc0892014-09-12 18:43:56 +08007450 int ret;
Miao Xiedc380ae2014-09-12 18:43:55 +08007451
Miao Xiec1dc0892014-09-12 18:43:56 +08007452 start = io_bio->logical;
Miao Xie8b110e32014-09-12 18:44:03 +08007453 done.inode = inode;
7454
7455 bio_for_each_segment_all(bvec, &io_bio->bio, i) {
7456try_again:
7457 done.uptodate = 0;
7458 done.start = start;
7459 init_completion(&done.done);
7460
7461 ret = dio_read_error(inode, &io_bio->bio, bvec->bv_page, start,
7462 start + bvec->bv_len - 1,
7463 io_bio->mirror_num,
7464 btrfs_retry_endio_nocsum, &done);
7465 if (ret)
7466 return ret;
7467
7468 wait_for_completion(&done.done);
7469
7470 if (!done.uptodate) {
7471 /* We might have another mirror, so try again */
7472 goto try_again;
7473 }
7474
7475 start += bvec->bv_len;
7476 }
7477
7478 return 0;
7479}
7480
7481static void btrfs_retry_endio(struct bio *bio, int err)
7482{
7483 struct btrfs_retry_complete *done = bio->bi_private;
7484 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
7485 struct bio_vec *bvec;
7486 int uptodate;
7487 int ret;
7488 int i;
7489
7490 if (err)
7491 goto end;
7492
7493 uptodate = 1;
7494 bio_for_each_segment_all(bvec, bio, i) {
7495 ret = __readpage_endio_check(done->inode, io_bio, i,
7496 bvec->bv_page, 0,
7497 done->start, bvec->bv_len);
7498 if (!ret)
7499 clean_io_failure(done->inode, done->start,
7500 bvec->bv_page, 0);
7501 else
7502 uptodate = 0;
7503 }
7504
7505 done->uptodate = uptodate;
7506end:
7507 complete(&done->done);
7508 bio_put(bio);
7509}
7510
7511static int __btrfs_subio_endio_read(struct inode *inode,
7512 struct btrfs_io_bio *io_bio, int err)
7513{
7514 struct bio_vec *bvec;
7515 struct btrfs_retry_complete done;
7516 u64 start;
7517 u64 offset = 0;
7518 int i;
7519 int ret;
7520
7521 err = 0;
7522 start = io_bio->logical;
7523 done.inode = inode;
7524
Miao Xiec1dc0892014-09-12 18:43:56 +08007525 bio_for_each_segment_all(bvec, &io_bio->bio, i) {
Miao Xiedc380ae2014-09-12 18:43:55 +08007526 ret = __readpage_endio_check(inode, io_bio, i, bvec->bv_page,
7527 0, start, bvec->bv_len);
Miao Xie8b110e32014-09-12 18:44:03 +08007528 if (likely(!ret))
7529 goto next;
7530try_again:
7531 done.uptodate = 0;
7532 done.start = start;
7533 init_completion(&done.done);
7534
7535 ret = dio_read_error(inode, &io_bio->bio, bvec->bv_page, start,
7536 start + bvec->bv_len - 1,
7537 io_bio->mirror_num,
7538 btrfs_retry_endio, &done);
7539 if (ret) {
7540 err = ret;
7541 goto next;
7542 }
7543
7544 wait_for_completion(&done.done);
7545
7546 if (!done.uptodate) {
7547 /* We might have another mirror, so try again */
7548 goto try_again;
7549 }
7550next:
7551 offset += bvec->bv_len;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007552 start += bvec->bv_len;
Kent Overstreet2c30c712013-11-07 12:20:26 -08007553 }
Miao Xiec1dc0892014-09-12 18:43:56 +08007554
7555 return err;
7556}
7557
Miao Xie8b110e32014-09-12 18:44:03 +08007558static int btrfs_subio_endio_read(struct inode *inode,
7559 struct btrfs_io_bio *io_bio, int err)
7560{
7561 bool skip_csum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
7562
7563 if (skip_csum) {
7564 if (unlikely(err))
7565 return __btrfs_correct_data_nocsum(inode, io_bio);
7566 else
7567 return 0;
7568 } else {
7569 return __btrfs_subio_endio_read(inode, io_bio, err);
7570 }
7571}
7572
Miao Xiec1dc0892014-09-12 18:43:56 +08007573static void btrfs_endio_direct_read(struct bio *bio, int err)
7574{
7575 struct btrfs_dio_private *dip = bio->bi_private;
7576 struct inode *inode = dip->inode;
7577 struct bio *dio_bio;
7578 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
7579
Miao Xie8b110e32014-09-12 18:44:03 +08007580 if (dip->flags & BTRFS_DIO_ORIG_BIO_SUBMITTED)
7581 err = btrfs_subio_endio_read(inode, io_bio, err);
Miao Xiec1dc0892014-09-12 18:43:56 +08007582
Josef Bacik4b46fce2010-05-23 11:00:55 -04007583 unlock_extent(&BTRFS_I(inode)->io_tree, dip->logical_offset,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01007584 dip->logical_offset + dip->bytes - 1);
Chris Mason9be33952013-05-17 18:30:14 -04007585 dio_bio = dip->dio_bio;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007586
Josef Bacik4b46fce2010-05-23 11:00:55 -04007587 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04007588
7589 /* If we had a csum failure make sure to clear the uptodate flag */
7590 if (err)
Chris Mason9be33952013-05-17 18:30:14 -04007591 clear_bit(BIO_UPTODATE, &dio_bio->bi_flags);
7592 dio_end_io(dio_bio, err);
Miao Xie23ea8e52014-09-12 18:43:54 +08007593
7594 if (io_bio->end_io)
7595 io_bio->end_io(io_bio, err);
Chris Mason9be33952013-05-17 18:30:14 -04007596 bio_put(bio);
Josef Bacik4b46fce2010-05-23 11:00:55 -04007597}
7598
7599static void btrfs_endio_direct_write(struct bio *bio, int err)
7600{
7601 struct btrfs_dio_private *dip = bio->bi_private;
7602 struct inode *inode = dip->inode;
7603 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007604 struct btrfs_ordered_extent *ordered = NULL;
Chris Mason163cf092010-11-28 19:56:33 -05007605 u64 ordered_offset = dip->logical_offset;
7606 u64 ordered_bytes = dip->bytes;
Chris Mason9be33952013-05-17 18:30:14 -04007607 struct bio *dio_bio;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007608 int ret;
7609
7610 if (err)
7611 goto out_done;
Chris Mason163cf092010-11-28 19:56:33 -05007612again:
7613 ret = btrfs_dec_test_first_ordered_pending(inode, &ordered,
7614 &ordered_offset,
Josef Bacik5fd02042012-05-02 14:00:54 -04007615 ordered_bytes, !err);
Josef Bacik4b46fce2010-05-23 11:00:55 -04007616 if (!ret)
Chris Mason163cf092010-11-28 19:56:33 -05007617 goto out_test;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007618
Liu Bo9e0af232014-08-15 23:36:53 +08007619 btrfs_init_work(&ordered->work, btrfs_endio_write_helper,
7620 finish_ordered_fn, NULL, NULL);
Qu Wenruofccb5d82014-02-28 10:46:10 +08007621 btrfs_queue_work(root->fs_info->endio_write_workers,
7622 &ordered->work);
Chris Mason163cf092010-11-28 19:56:33 -05007623out_test:
7624 /*
7625 * our bio might span multiple ordered extents. If we haven't
7626 * completed the accounting for the whole dio, go back and try again
7627 */
7628 if (ordered_offset < dip->logical_offset + dip->bytes) {
7629 ordered_bytes = dip->logical_offset + dip->bytes -
7630 ordered_offset;
Josef Bacik5fd02042012-05-02 14:00:54 -04007631 ordered = NULL;
Chris Mason163cf092010-11-28 19:56:33 -05007632 goto again;
7633 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04007634out_done:
Chris Mason9be33952013-05-17 18:30:14 -04007635 dio_bio = dip->dio_bio;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007636
Josef Bacik4b46fce2010-05-23 11:00:55 -04007637 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04007638
7639 /* If we had an error make sure to clear the uptodate flag */
7640 if (err)
Chris Mason9be33952013-05-17 18:30:14 -04007641 clear_bit(BIO_UPTODATE, &dio_bio->bi_flags);
7642 dio_end_io(dio_bio, err);
7643 bio_put(bio);
Josef Bacik4b46fce2010-05-23 11:00:55 -04007644}
7645
Chris Masoneaf25d92010-05-25 09:48:28 -04007646static int __btrfs_submit_bio_start_direct_io(struct inode *inode, int rw,
7647 struct bio *bio, int mirror_num,
7648 unsigned long bio_flags, u64 offset)
7649{
7650 int ret;
7651 struct btrfs_root *root = BTRFS_I(inode)->root;
7652 ret = btrfs_csum_one_bio(root, inode, bio, offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007653 BUG_ON(ret); /* -ENOMEM */
Chris Masoneaf25d92010-05-25 09:48:28 -04007654 return 0;
7655}
7656
Miao Xiee65e1532010-11-22 03:04:43 +00007657static void btrfs_end_dio_bio(struct bio *bio, int err)
7658{
7659 struct btrfs_dio_private *dip = bio->bi_private;
7660
Miao Xie8b110e32014-09-12 18:44:03 +08007661 if (err)
7662 btrfs_warn(BTRFS_I(dip->inode)->root->fs_info,
7663 "direct IO failed ino %llu rw %lu sector %#Lx len %u err no %d",
7664 btrfs_ino(dip->inode), bio->bi_rw,
7665 (unsigned long long)bio->bi_iter.bi_sector,
7666 bio->bi_iter.bi_size, err);
7667
7668 if (dip->subio_endio)
7669 err = dip->subio_endio(dip->inode, btrfs_io_bio(bio), err);
Miao Xiec1dc0892014-09-12 18:43:56 +08007670
7671 if (err) {
Miao Xiee65e1532010-11-22 03:04:43 +00007672 dip->errors = 1;
7673
7674 /*
7675 * before atomic variable goto zero, we must make sure
7676 * dip->errors is perceived to be set.
7677 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01007678 smp_mb__before_atomic();
Miao Xiee65e1532010-11-22 03:04:43 +00007679 }
7680
7681 /* if there are more bios still pending for this dio, just exit */
7682 if (!atomic_dec_and_test(&dip->pending_bios))
7683 goto out;
7684
Chris Mason9be33952013-05-17 18:30:14 -04007685 if (dip->errors) {
Miao Xiee65e1532010-11-22 03:04:43 +00007686 bio_io_error(dip->orig_bio);
Chris Mason9be33952013-05-17 18:30:14 -04007687 } else {
7688 set_bit(BIO_UPTODATE, &dip->dio_bio->bi_flags);
Miao Xiee65e1532010-11-22 03:04:43 +00007689 bio_endio(dip->orig_bio, 0);
7690 }
7691out:
7692 bio_put(bio);
7693}
7694
7695static struct bio *btrfs_dio_bio_alloc(struct block_device *bdev,
7696 u64 first_sector, gfp_t gfp_flags)
7697{
7698 int nr_vecs = bio_get_nr_vecs(bdev);
7699 return btrfs_bio_alloc(bdev, first_sector, nr_vecs, gfp_flags);
7700}
7701
Miao Xiec1dc0892014-09-12 18:43:56 +08007702static inline int btrfs_lookup_and_bind_dio_csum(struct btrfs_root *root,
7703 struct inode *inode,
7704 struct btrfs_dio_private *dip,
7705 struct bio *bio,
7706 u64 file_offset)
7707{
7708 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
7709 struct btrfs_io_bio *orig_io_bio = btrfs_io_bio(dip->orig_bio);
7710 int ret;
7711
7712 /*
7713 * We load all the csum data we need when we submit
7714 * the first bio to reduce the csum tree search and
7715 * contention.
7716 */
7717 if (dip->logical_offset == file_offset) {
7718 ret = btrfs_lookup_bio_sums_dio(root, inode, dip->orig_bio,
7719 file_offset);
7720 if (ret)
7721 return ret;
7722 }
7723
7724 if (bio == dip->orig_bio)
7725 return 0;
7726
7727 file_offset -= dip->logical_offset;
7728 file_offset >>= inode->i_sb->s_blocksize_bits;
7729 io_bio->csum = (u8 *)(((u32 *)orig_io_bio->csum) + file_offset);
7730
7731 return 0;
7732}
7733
Miao Xiee65e1532010-11-22 03:04:43 +00007734static inline int __btrfs_submit_dio_bio(struct bio *bio, struct inode *inode,
7735 int rw, u64 file_offset, int skip_sum,
Josef Bacikc3298612012-08-03 16:49:19 -04007736 int async_submit)
Miao Xiee65e1532010-11-22 03:04:43 +00007737{
Miao Xiefacc8a222013-07-25 19:22:34 +08007738 struct btrfs_dio_private *dip = bio->bi_private;
Miao Xiee65e1532010-11-22 03:04:43 +00007739 int write = rw & REQ_WRITE;
7740 struct btrfs_root *root = BTRFS_I(inode)->root;
7741 int ret;
7742
Josef Bacikb812ce22012-11-16 13:56:32 -05007743 if (async_submit)
7744 async_submit = !atomic_read(&BTRFS_I(inode)->sync_writers);
7745
Miao Xiee65e1532010-11-22 03:04:43 +00007746 bio_get(bio);
Josef Bacik5fd02042012-05-02 14:00:54 -04007747
7748 if (!write) {
David Sterbabfebd8b2014-07-30 00:25:45 +02007749 ret = btrfs_bio_wq_end_io(root->fs_info, bio,
7750 BTRFS_WQ_ENDIO_DATA);
Josef Bacik5fd02042012-05-02 14:00:54 -04007751 if (ret)
7752 goto err;
7753 }
Miao Xiee65e1532010-11-22 03:04:43 +00007754
Josef Bacik1ae39932011-04-06 14:41:34 -04007755 if (skip_sum)
7756 goto map;
7757
7758 if (write && async_submit) {
Miao Xiee65e1532010-11-22 03:04:43 +00007759 ret = btrfs_wq_submit_bio(root->fs_info,
7760 inode, rw, bio, 0, 0,
7761 file_offset,
7762 __btrfs_submit_bio_start_direct_io,
7763 __btrfs_submit_bio_done);
7764 goto err;
Josef Bacik1ae39932011-04-06 14:41:34 -04007765 } else if (write) {
7766 /*
7767 * If we aren't doing async submit, calculate the csum of the
7768 * bio now.
7769 */
7770 ret = btrfs_csum_one_bio(root, inode, bio, file_offset, 1);
7771 if (ret)
7772 goto err;
Miao Xie23ea8e52014-09-12 18:43:54 +08007773 } else {
Miao Xiec1dc0892014-09-12 18:43:56 +08007774 ret = btrfs_lookup_and_bind_dio_csum(root, inode, dip, bio,
7775 file_offset);
Tsutomu Itohc2db1072011-03-01 06:48:31 +00007776 if (ret)
7777 goto err;
7778 }
Josef Bacik1ae39932011-04-06 14:41:34 -04007779map:
7780 ret = btrfs_map_bio(root, rw, bio, 0, async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00007781err:
7782 bio_put(bio);
7783 return ret;
7784}
7785
7786static int btrfs_submit_direct_hook(int rw, struct btrfs_dio_private *dip,
7787 int skip_sum)
7788{
7789 struct inode *inode = dip->inode;
7790 struct btrfs_root *root = BTRFS_I(inode)->root;
Miao Xiee65e1532010-11-22 03:04:43 +00007791 struct bio *bio;
7792 struct bio *orig_bio = dip->orig_bio;
7793 struct bio_vec *bvec = orig_bio->bi_io_vec;
Kent Overstreet4f024f32013-10-11 15:44:27 -07007794 u64 start_sector = orig_bio->bi_iter.bi_sector;
Miao Xiee65e1532010-11-22 03:04:43 +00007795 u64 file_offset = dip->logical_offset;
7796 u64 submit_len = 0;
7797 u64 map_length;
7798 int nr_pages = 0;
Miao Xie23ea8e52014-09-12 18:43:54 +08007799 int ret;
Josef Bacik1ae39932011-04-06 14:41:34 -04007800 int async_submit = 0;
Miao Xiee65e1532010-11-22 03:04:43 +00007801
Kent Overstreet4f024f32013-10-11 15:44:27 -07007802 map_length = orig_bio->bi_iter.bi_size;
David Woodhouse53b381b2013-01-29 18:40:14 -05007803 ret = btrfs_map_block(root->fs_info, rw, start_sector << 9,
Miao Xiee65e1532010-11-22 03:04:43 +00007804 &map_length, NULL, 0);
Miao Xie7a5c3c92014-06-17 18:58:59 +08007805 if (ret)
Miao Xiee65e1532010-11-22 03:04:43 +00007806 return -EIO;
Miao Xiefacc8a222013-07-25 19:22:34 +08007807
Kent Overstreet4f024f32013-10-11 15:44:27 -07007808 if (map_length >= orig_bio->bi_iter.bi_size) {
Josef Bacik02f57c72011-04-06 14:25:44 -04007809 bio = orig_bio;
Miao Xiec1dc0892014-09-12 18:43:56 +08007810 dip->flags |= BTRFS_DIO_ORIG_BIO_SUBMITTED;
Josef Bacik02f57c72011-04-06 14:25:44 -04007811 goto submit;
7812 }
7813
David Woodhouse53b381b2013-01-29 18:40:14 -05007814 /* async crcs make it difficult to collect full stripe writes. */
Zhao Leiffe2d202015-01-20 15:11:44 +08007815 if (btrfs_get_alloc_profile(root, 1) & BTRFS_BLOCK_GROUP_RAID56_MASK)
David Woodhouse53b381b2013-01-29 18:40:14 -05007816 async_submit = 0;
7817 else
7818 async_submit = 1;
7819
Josef Bacik02f57c72011-04-06 14:25:44 -04007820 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev, start_sector, GFP_NOFS);
7821 if (!bio)
7822 return -ENOMEM;
Miao Xie7a5c3c92014-06-17 18:58:59 +08007823
Josef Bacik02f57c72011-04-06 14:25:44 -04007824 bio->bi_private = dip;
7825 bio->bi_end_io = btrfs_end_dio_bio;
Miao Xiec1dc0892014-09-12 18:43:56 +08007826 btrfs_io_bio(bio)->logical = file_offset;
Josef Bacik02f57c72011-04-06 14:25:44 -04007827 atomic_inc(&dip->pending_bios);
7828
Miao Xiee65e1532010-11-22 03:04:43 +00007829 while (bvec <= (orig_bio->bi_io_vec + orig_bio->bi_vcnt - 1)) {
David Sterbaee39b432014-09-30 01:33:33 +02007830 if (map_length < submit_len + bvec->bv_len ||
Miao Xiee65e1532010-11-22 03:04:43 +00007831 bio_add_page(bio, bvec->bv_page, bvec->bv_len,
David Sterbaee39b432014-09-30 01:33:33 +02007832 bvec->bv_offset) < bvec->bv_len) {
Miao Xiee65e1532010-11-22 03:04:43 +00007833 /*
7834 * inc the count before we submit the bio so
7835 * we know the end IO handler won't happen before
7836 * we inc the count. Otherwise, the dip might get freed
7837 * before we're done setting it up
7838 */
7839 atomic_inc(&dip->pending_bios);
7840 ret = __btrfs_submit_dio_bio(bio, inode, rw,
7841 file_offset, skip_sum,
Josef Bacikc3298612012-08-03 16:49:19 -04007842 async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00007843 if (ret) {
7844 bio_put(bio);
7845 atomic_dec(&dip->pending_bios);
7846 goto out_err;
7847 }
7848
Miao Xiee65e1532010-11-22 03:04:43 +00007849 start_sector += submit_len >> 9;
7850 file_offset += submit_len;
7851
7852 submit_len = 0;
7853 nr_pages = 0;
7854
7855 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev,
7856 start_sector, GFP_NOFS);
7857 if (!bio)
7858 goto out_err;
7859 bio->bi_private = dip;
7860 bio->bi_end_io = btrfs_end_dio_bio;
Miao Xiec1dc0892014-09-12 18:43:56 +08007861 btrfs_io_bio(bio)->logical = file_offset;
Miao Xiee65e1532010-11-22 03:04:43 +00007862
Kent Overstreet4f024f32013-10-11 15:44:27 -07007863 map_length = orig_bio->bi_iter.bi_size;
David Woodhouse53b381b2013-01-29 18:40:14 -05007864 ret = btrfs_map_block(root->fs_info, rw,
Stefan Behrens3ec706c2012-11-05 15:46:42 +01007865 start_sector << 9,
Miao Xiee65e1532010-11-22 03:04:43 +00007866 &map_length, NULL, 0);
7867 if (ret) {
7868 bio_put(bio);
7869 goto out_err;
7870 }
7871 } else {
7872 submit_len += bvec->bv_len;
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05307873 nr_pages++;
Miao Xiee65e1532010-11-22 03:04:43 +00007874 bvec++;
7875 }
7876 }
7877
Josef Bacik02f57c72011-04-06 14:25:44 -04007878submit:
Miao Xiee65e1532010-11-22 03:04:43 +00007879 ret = __btrfs_submit_dio_bio(bio, inode, rw, file_offset, skip_sum,
Josef Bacikc3298612012-08-03 16:49:19 -04007880 async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00007881 if (!ret)
7882 return 0;
7883
7884 bio_put(bio);
7885out_err:
7886 dip->errors = 1;
7887 /*
7888 * before atomic variable goto zero, we must
7889 * make sure dip->errors is perceived to be set.
7890 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01007891 smp_mb__before_atomic();
Miao Xiee65e1532010-11-22 03:04:43 +00007892 if (atomic_dec_and_test(&dip->pending_bios))
7893 bio_io_error(dip->orig_bio);
7894
7895 /* bio_end_io() will handle error, so we needn't return it */
7896 return 0;
7897}
7898
Chris Mason9be33952013-05-17 18:30:14 -04007899static void btrfs_submit_direct(int rw, struct bio *dio_bio,
7900 struct inode *inode, loff_t file_offset)
Josef Bacik4b46fce2010-05-23 11:00:55 -04007901{
7902 struct btrfs_root *root = BTRFS_I(inode)->root;
7903 struct btrfs_dio_private *dip;
Chris Mason9be33952013-05-17 18:30:14 -04007904 struct bio *io_bio;
Miao Xie23ea8e52014-09-12 18:43:54 +08007905 struct btrfs_io_bio *btrfs_bio;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007906 int skip_sum;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02007907 int write = rw & REQ_WRITE;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007908 int ret = 0;
7909
7910 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
7911
Chris Mason9be33952013-05-17 18:30:14 -04007912 io_bio = btrfs_bio_clone(dio_bio, GFP_NOFS);
Chris Mason9be33952013-05-17 18:30:14 -04007913 if (!io_bio) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04007914 ret = -ENOMEM;
7915 goto free_ordered;
7916 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04007917
Miao Xiec1dc0892014-09-12 18:43:56 +08007918 dip = kzalloc(sizeof(*dip), GFP_NOFS);
Chris Mason9be33952013-05-17 18:30:14 -04007919 if (!dip) {
7920 ret = -ENOMEM;
7921 goto free_io_bio;
7922 }
7923
7924 dip->private = dio_bio->bi_private;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007925 dip->inode = inode;
7926 dip->logical_offset = file_offset;
Kent Overstreet4f024f32013-10-11 15:44:27 -07007927 dip->bytes = dio_bio->bi_iter.bi_size;
7928 dip->disk_bytenr = (u64)dio_bio->bi_iter.bi_sector << 9;
Chris Mason9be33952013-05-17 18:30:14 -04007929 io_bio->bi_private = dip;
Chris Mason9be33952013-05-17 18:30:14 -04007930 dip->orig_bio = io_bio;
7931 dip->dio_bio = dio_bio;
Miao Xiee65e1532010-11-22 03:04:43 +00007932 atomic_set(&dip->pending_bios, 0);
Miao Xiec1dc0892014-09-12 18:43:56 +08007933 btrfs_bio = btrfs_io_bio(io_bio);
7934 btrfs_bio->logical = file_offset;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007935
Miao Xiec1dc0892014-09-12 18:43:56 +08007936 if (write) {
Chris Mason9be33952013-05-17 18:30:14 -04007937 io_bio->bi_end_io = btrfs_endio_direct_write;
Miao Xiec1dc0892014-09-12 18:43:56 +08007938 } else {
Chris Mason9be33952013-05-17 18:30:14 -04007939 io_bio->bi_end_io = btrfs_endio_direct_read;
Miao Xiec1dc0892014-09-12 18:43:56 +08007940 dip->subio_endio = btrfs_subio_endio_read;
7941 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04007942
Miao Xiee65e1532010-11-22 03:04:43 +00007943 ret = btrfs_submit_direct_hook(rw, dip, skip_sum);
7944 if (!ret)
Chris Masoneaf25d92010-05-25 09:48:28 -04007945 return;
Chris Mason9be33952013-05-17 18:30:14 -04007946
Miao Xie23ea8e52014-09-12 18:43:54 +08007947 if (btrfs_bio->end_io)
7948 btrfs_bio->end_io(btrfs_bio, ret);
Chris Mason9be33952013-05-17 18:30:14 -04007949free_io_bio:
7950 bio_put(io_bio);
7951
Josef Bacik4b46fce2010-05-23 11:00:55 -04007952free_ordered:
7953 /*
7954 * If this is a write, we need to clean up the reserved space and kill
7955 * the ordered extent.
7956 */
7957 if (write) {
7958 struct btrfs_ordered_extent *ordered;
Josef Bacik955256f2010-11-19 09:41:10 -05007959 ordered = btrfs_lookup_ordered_extent(inode, file_offset);
Josef Bacik4b46fce2010-05-23 11:00:55 -04007960 if (!test_bit(BTRFS_ORDERED_PREALLOC, &ordered->flags) &&
7961 !test_bit(BTRFS_ORDERED_NOCOW, &ordered->flags))
7962 btrfs_free_reserved_extent(root, ordered->start,
Miao Xiee570fd22014-06-19 10:42:50 +08007963 ordered->disk_len, 1);
Josef Bacik4b46fce2010-05-23 11:00:55 -04007964 btrfs_put_ordered_extent(ordered);
7965 btrfs_put_ordered_extent(ordered);
7966 }
Chris Mason9be33952013-05-17 18:30:14 -04007967 bio_endio(dio_bio, ret);
Josef Bacik4b46fce2010-05-23 11:00:55 -04007968}
7969
Chris Mason5a5f79b2010-05-26 21:33:37 -04007970static ssize_t check_direct_IO(struct btrfs_root *root, int rw, struct kiocb *iocb,
Al Viro28060d52014-03-22 05:15:17 -04007971 const struct iov_iter *iter, loff_t offset)
Chris Mason5a5f79b2010-05-26 21:33:37 -04007972{
7973 int seg;
Josef Bacika1b75f72011-04-08 15:51:18 +00007974 int i;
Chris Mason5a5f79b2010-05-26 21:33:37 -04007975 unsigned blocksize_mask = root->sectorsize - 1;
7976 ssize_t retval = -EINVAL;
Chris Mason5a5f79b2010-05-26 21:33:37 -04007977
7978 if (offset & blocksize_mask)
7979 goto out;
7980
Al Viro28060d52014-03-22 05:15:17 -04007981 if (iov_iter_alignment(iter) & blocksize_mask)
7982 goto out;
Josef Bacika1b75f72011-04-08 15:51:18 +00007983
Al Viro28060d52014-03-22 05:15:17 -04007984 /* If this is a write we don't need to check anymore */
7985 if (rw & WRITE)
7986 return 0;
7987 /*
7988 * Check to make sure we don't have duplicate iov_base's in this
7989 * iovec, if so return EINVAL, otherwise we'll get csum errors
7990 * when reading back.
7991 */
7992 for (seg = 0; seg < iter->nr_segs; seg++) {
7993 for (i = seg + 1; i < iter->nr_segs; i++) {
7994 if (iter->iov[seg].iov_base == iter->iov[i].iov_base)
Josef Bacika1b75f72011-04-08 15:51:18 +00007995 goto out;
7996 }
Chris Mason5a5f79b2010-05-26 21:33:37 -04007997 }
7998 retval = 0;
7999out:
8000 return retval;
8001}
Josef Bacikeb838e72012-07-31 16:28:48 -04008002
Chris Mason16432982008-04-10 10:23:21 -04008003static ssize_t btrfs_direct_IO(int rw, struct kiocb *iocb,
Al Virod8d3d942014-03-04 21:27:34 -05008004 struct iov_iter *iter, loff_t offset)
Chris Mason16432982008-04-10 10:23:21 -04008005{
Josef Bacik4b46fce2010-05-23 11:00:55 -04008006 struct file *file = iocb->ki_filp;
8007 struct inode *inode = file->f_mapping->host;
Miao Xie09348562013-02-07 10:12:07 +00008008 size_t count = 0;
Miao Xie2e60a512013-02-08 07:01:08 +00008009 int flags = 0;
Miao Xie38851cc2013-02-08 07:04:11 +00008010 bool wakeup = true;
8011 bool relock = false;
Miao Xie09348562013-02-07 10:12:07 +00008012 ssize_t ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008013
Al Viro28060d52014-03-22 05:15:17 -04008014 if (check_direct_IO(BTRFS_I(inode)->root, rw, iocb, iter, offset))
Chris Mason5a5f79b2010-05-26 21:33:37 -04008015 return 0;
Chris Mason5a5f79b2010-05-26 21:33:37 -04008016
Miao Xie38851cc2013-02-08 07:04:11 +00008017 atomic_inc(&inode->i_dio_count);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01008018 smp_mb__after_atomic();
Miao Xie38851cc2013-02-08 07:04:11 +00008019
Josef Bacik0e267c42013-07-02 10:38:02 -04008020 /*
Miao Xie41bd9ca2014-03-06 13:54:57 +08008021 * The generic stuff only does filemap_write_and_wait_range, which
8022 * isn't enough if we've written compressed pages to this area, so
8023 * we need to flush the dirty pages again to make absolutely sure
8024 * that any outstanding dirty pages are on disk.
Josef Bacik0e267c42013-07-02 10:38:02 -04008025 */
Al Viroa6cbcd42014-03-04 22:38:00 -05008026 count = iov_iter_count(iter);
Miao Xie41bd9ca2014-03-06 13:54:57 +08008027 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
8028 &BTRFS_I(inode)->runtime_flags))
Wang Shilong9a025a02014-07-17 11:44:13 +08008029 filemap_fdatawrite_range(inode->i_mapping, offset,
8030 offset + count - 1);
Josef Bacik0e267c42013-07-02 10:38:02 -04008031
Miao Xie09348562013-02-07 10:12:07 +00008032 if (rw & WRITE) {
Miao Xie38851cc2013-02-08 07:04:11 +00008033 /*
8034 * If the write DIO is beyond the EOF, we need update
8035 * the isize, but it is protected by i_mutex. So we can
8036 * not unlock the i_mutex at this case.
8037 */
8038 if (offset + count <= inode->i_size) {
8039 mutex_unlock(&inode->i_mutex);
8040 relock = true;
8041 }
Miao Xie09348562013-02-07 10:12:07 +00008042 ret = btrfs_delalloc_reserve_space(inode, count);
8043 if (ret)
Miao Xie38851cc2013-02-08 07:04:11 +00008044 goto out;
David Sterbaee39b432014-09-30 01:33:33 +02008045 } else if (test_bit(BTRFS_INODE_READDIO_NEED_LOCK,
8046 &BTRFS_I(inode)->runtime_flags)) {
Miao Xie38851cc2013-02-08 07:04:11 +00008047 inode_dio_done(inode);
8048 flags = DIO_LOCKING | DIO_SKIP_HOLES;
8049 wakeup = false;
Miao Xie09348562013-02-07 10:12:07 +00008050 }
8051
8052 ret = __blockdev_direct_IO(rw, iocb, inode,
8053 BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev,
Al Viro31b14032014-03-05 01:33:16 -05008054 iter, offset, btrfs_get_blocks_direct, NULL,
Miao Xie2e60a512013-02-08 07:01:08 +00008055 btrfs_submit_direct, flags);
Miao Xie09348562013-02-07 10:12:07 +00008056 if (rw & WRITE) {
8057 if (ret < 0 && ret != -EIOCBQUEUED)
8058 btrfs_delalloc_release_space(inode, count);
Miao Xie172a5042013-02-21 02:48:22 -07008059 else if (ret >= 0 && (size_t)ret < count)
Miao Xie09348562013-02-07 10:12:07 +00008060 btrfs_delalloc_release_space(inode,
8061 count - (size_t)ret);
Miao Xie172a5042013-02-21 02:48:22 -07008062 else
8063 btrfs_delalloc_release_metadata(inode, 0);
Miao Xie09348562013-02-07 10:12:07 +00008064 }
Miao Xie38851cc2013-02-08 07:04:11 +00008065out:
Miao Xie2e60a512013-02-08 07:01:08 +00008066 if (wakeup)
8067 inode_dio_done(inode);
Miao Xie38851cc2013-02-08 07:04:11 +00008068 if (relock)
8069 mutex_lock(&inode->i_mutex);
Miao Xie09348562013-02-07 10:12:07 +00008070
8071 return ret;
Chris Mason16432982008-04-10 10:23:21 -04008072}
8073
Tsutomu Itoh05dadc02012-11-29 05:08:26 +00008074#define BTRFS_FIEMAP_FLAGS (FIEMAP_FLAG_SYNC)
8075
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05008076static int btrfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
8077 __u64 start, __u64 len)
8078{
Tsutomu Itoh05dadc02012-11-29 05:08:26 +00008079 int ret;
8080
8081 ret = fiemap_check_flags(fieinfo, BTRFS_FIEMAP_FLAGS);
8082 if (ret)
8083 return ret;
8084
Chris Masonec29ed52011-02-23 16:23:20 -05008085 return extent_fiemap(inode, fieinfo, start, len, btrfs_get_extent_fiemap);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05008086}
8087
Chris Mason9ebefb182007-06-15 13:50:00 -04008088int btrfs_readpage(struct file *file, struct page *page)
8089{
Chris Masond1310b22008-01-24 16:13:08 -05008090 struct extent_io_tree *tree;
8091 tree = &BTRFS_I(page->mapping->host)->io_tree;
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02008092 return extent_read_full_page(tree, page, btrfs_get_extent, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04008093}
Chris Mason1832a6d2007-12-21 16:27:21 -05008094
Chris Mason39279cc2007-06-12 06:35:45 -04008095static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
8096{
Chris Masond1310b22008-01-24 16:13:08 -05008097 struct extent_io_tree *tree;
Chris Masonb888db22007-08-27 16:49:44 -04008098
8099
8100 if (current->flags & PF_MEMALLOC) {
8101 redirty_page_for_writepage(wbc, page);
8102 unlock_page(page);
8103 return 0;
8104 }
Chris Masond1310b22008-01-24 16:13:08 -05008105 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04008106 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
8107}
Chris Mason39279cc2007-06-12 06:35:45 -04008108
Eric Sandeen48a3b632013-04-25 20:41:01 +00008109static int btrfs_writepages(struct address_space *mapping,
8110 struct writeback_control *wbc)
Chris Masonb293f02e2007-11-01 19:45:34 -04008111{
Chris Masond1310b22008-01-24 16:13:08 -05008112 struct extent_io_tree *tree;
Chris Mason771ed682008-11-06 22:02:51 -05008113
Chris Masond1310b22008-01-24 16:13:08 -05008114 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f02e2007-11-01 19:45:34 -04008115 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
8116}
8117
Chris Mason3ab2fb52007-11-08 10:59:22 -05008118static int
8119btrfs_readpages(struct file *file, struct address_space *mapping,
8120 struct list_head *pages, unsigned nr_pages)
8121{
Chris Masond1310b22008-01-24 16:13:08 -05008122 struct extent_io_tree *tree;
8123 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05008124 return extent_readpages(tree, mapping, pages, nr_pages,
8125 btrfs_get_extent);
8126}
Chris Masone6dcd2d2008-07-17 12:53:50 -04008127static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04008128{
Chris Masond1310b22008-01-24 16:13:08 -05008129 struct extent_io_tree *tree;
8130 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04008131 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04008132
Chris Masond1310b22008-01-24 16:13:08 -05008133 tree = &BTRFS_I(page->mapping->host)->io_tree;
8134 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05008135 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04008136 if (ret == 1) {
8137 ClearPagePrivate(page);
8138 set_page_private(page, 0);
8139 page_cache_release(page);
8140 }
8141 return ret;
8142}
Chris Mason39279cc2007-06-12 06:35:45 -04008143
Chris Masone6dcd2d2008-07-17 12:53:50 -04008144static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
8145{
Chris Mason98509cf2008-09-11 15:51:43 -04008146 if (PageWriteback(page) || PageDirty(page))
8147 return 0;
Yan Zhengb335b002009-02-12 10:06:04 -05008148 return __btrfs_releasepage(page, gfp_flags & GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008149}
8150
Lukas Czernerd47992f2013-05-21 23:17:23 -04008151static void btrfs_invalidatepage(struct page *page, unsigned int offset,
8152 unsigned int length)
Chris Masona52d9a82007-08-27 16:49:44 -04008153{
Josef Bacik5fd02042012-05-02 14:00:54 -04008154 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05008155 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008156 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00008157 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008158 u64 page_start = page_offset(page);
8159 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008160 int inode_evicting = inode->i_state & I_FREEING;
Chris Masona52d9a82007-08-27 16:49:44 -04008161
Chris Mason8b62b722009-09-02 16:53:46 -04008162 /*
8163 * we have the page locked, so new writeback can't start,
8164 * and the dirty bit won't be cleared while we are here.
8165 *
8166 * Wait for IO on this page so that we can safely clear
8167 * the PagePrivate2 bit and do ordered accounting
8168 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04008169 wait_on_page_writeback(page);
Chris Mason8b62b722009-09-02 16:53:46 -04008170
Josef Bacik5fd02042012-05-02 14:00:54 -04008171 tree = &BTRFS_I(inode)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008172 if (offset) {
8173 btrfs_releasepage(page, GFP_NOFS);
8174 return;
8175 }
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008176
8177 if (!inode_evicting)
8178 lock_extent_bits(tree, page_start, page_end, 0, &cached_state);
8179 ordered = btrfs_lookup_ordered_extent(inode, page_start);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008180 if (ordered) {
Chris Masoneb84ae02008-07-17 13:53:27 -04008181 /*
8182 * IO on this page will never be started, so we need
8183 * to account for any ordered extents now
8184 */
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008185 if (!inode_evicting)
8186 clear_extent_bit(tree, page_start, page_end,
8187 EXTENT_DIRTY | EXTENT_DELALLOC |
8188 EXTENT_LOCKED | EXTENT_DO_ACCOUNTING |
8189 EXTENT_DEFRAG, 1, 0, &cached_state,
8190 GFP_NOFS);
Chris Mason8b62b722009-09-02 16:53:46 -04008191 /*
8192 * whoever cleared the private bit is responsible
8193 * for the finish_ordered_io
8194 */
Josef Bacik77cef2e2013-08-29 13:57:21 -04008195 if (TestClearPagePrivate2(page)) {
8196 struct btrfs_ordered_inode_tree *tree;
8197 u64 new_len;
8198
8199 tree = &BTRFS_I(inode)->ordered_tree;
8200
8201 spin_lock_irq(&tree->lock);
8202 set_bit(BTRFS_ORDERED_TRUNCATED, &ordered->flags);
8203 new_len = page_start - ordered->file_offset;
8204 if (new_len < ordered->truncated_len)
8205 ordered->truncated_len = new_len;
8206 spin_unlock_irq(&tree->lock);
8207
8208 if (btrfs_dec_test_ordered_pending(inode, &ordered,
8209 page_start,
8210 PAGE_CACHE_SIZE, 1))
8211 btrfs_finish_ordered_io(ordered);
Chris Mason8b62b722009-09-02 16:53:46 -04008212 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04008213 btrfs_put_ordered_extent(ordered);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008214 if (!inode_evicting) {
8215 cached_state = NULL;
8216 lock_extent_bits(tree, page_start, page_end, 0,
8217 &cached_state);
8218 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04008219 }
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008220
8221 if (!inode_evicting) {
8222 clear_extent_bit(tree, page_start, page_end,
8223 EXTENT_LOCKED | EXTENT_DIRTY |
8224 EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING |
8225 EXTENT_DEFRAG, 1, 1,
8226 &cached_state, GFP_NOFS);
8227
8228 __btrfs_releasepage(page, GFP_NOFS);
8229 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04008230
Chris Mason4a096752008-07-21 10:29:44 -04008231 ClearPageChecked(page);
Chris Mason9ad6b7bc2008-04-18 16:11:30 -04008232 if (PagePrivate(page)) {
Chris Mason9ad6b7bc2008-04-18 16:11:30 -04008233 ClearPagePrivate(page);
8234 set_page_private(page, 0);
8235 page_cache_release(page);
8236 }
Chris Mason39279cc2007-06-12 06:35:45 -04008237}
8238
Chris Mason9ebefb182007-06-15 13:50:00 -04008239/*
8240 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
8241 * called from a page fault handler when a page is first dirtied. Hence we must
8242 * be careful to check for EOF conditions here. We set the page up correctly
8243 * for a written page which means we get ENOSPC checking when writing into
8244 * holes and correct delalloc and unwritten extent mapping on filesystems that
8245 * support these features.
8246 *
8247 * We are not allowed to take the i_mutex here so we have to play games to
8248 * protect against truncate races as the page could now be beyond EOF. Because
8249 * vmtruncate() writes the inode size before removing pages, once we have the
8250 * page lock we can determine safely if the page is beyond EOF. If it is not
8251 * beyond EOF, then the page is guaranteed safe against truncation until we
8252 * unlock the page.
8253 */
Nick Pigginc2ec1752009-03-31 15:23:21 -07008254int btrfs_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Chris Mason9ebefb182007-06-15 13:50:00 -04008255{
Nick Pigginc2ec1752009-03-31 15:23:21 -07008256 struct page *page = vmf->page;
Al Viro496ad9a2013-01-23 17:07:38 -05008257 struct inode *inode = file_inode(vma->vm_file);
Chris Mason1832a6d2007-12-21 16:27:21 -05008258 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008259 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
8260 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00008261 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008262 char *kaddr;
8263 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04008264 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05008265 int ret;
Chris Mason9998eb72012-01-25 13:47:40 -05008266 int reserved = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04008267 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008268 u64 page_end;
Chris Mason9ebefb182007-06-15 13:50:00 -04008269
Jan Karab2b5ef52012-06-12 16:20:45 +02008270 sb_start_pagefault(inode->i_sb);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04008271 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
Chris Mason9998eb72012-01-25 13:47:40 -05008272 if (!ret) {
Josef Bacike41f9412012-03-26 09:46:47 -04008273 ret = file_update_time(vma->vm_file);
Chris Mason9998eb72012-01-25 13:47:40 -05008274 reserved = 1;
8275 }
Nick Piggin56a76f82009-03-31 15:23:23 -07008276 if (ret) {
8277 if (ret == -ENOMEM)
8278 ret = VM_FAULT_OOM;
8279 else /* -ENOSPC, -EIO, etc */
8280 ret = VM_FAULT_SIGBUS;
Chris Mason9998eb72012-01-25 13:47:40 -05008281 if (reserved)
8282 goto out;
8283 goto out_noreserve;
Nick Piggin56a76f82009-03-31 15:23:23 -07008284 }
Chris Mason1832a6d2007-12-21 16:27:21 -05008285
Nick Piggin56a76f82009-03-31 15:23:23 -07008286 ret = VM_FAULT_NOPAGE; /* make the VM retry the fault */
Chris Masone6dcd2d2008-07-17 12:53:50 -04008287again:
Chris Mason9ebefb182007-06-15 13:50:00 -04008288 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04008289 size = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008290 page_start = page_offset(page);
8291 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04008292
Chris Mason9ebefb182007-06-15 13:50:00 -04008293 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04008294 (page_start >= size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04008295 /* page got truncated out from underneath us */
8296 goto out_unlock;
8297 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04008298 wait_on_page_writeback(page);
8299
Jeff Mahoneyd0082372012-03-01 14:57:19 +01008300 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008301 set_page_extent_mapped(page);
8302
Chris Masoneb84ae02008-07-17 13:53:27 -04008303 /*
8304 * we can't set the delalloc bits if there are pending ordered
8305 * extents. Drop our locks and wait for them to finish
8306 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04008307 ordered = btrfs_lookup_ordered_extent(inode, page_start);
8308 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00008309 unlock_extent_cached(io_tree, page_start, page_end,
8310 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008311 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04008312 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008313 btrfs_put_ordered_extent(ordered);
8314 goto again;
8315 }
8316
Josef Bacikfbf19082009-10-01 17:10:23 -04008317 /*
8318 * XXX - page_mkwrite gets called every time the page is dirtied, even
8319 * if it was already dirty, so for space accounting reasons we need to
8320 * clear any delalloc bits for the range we are fixing to save. There
8321 * is probably a better way to do this, but for now keep consistent with
8322 * prepare_pages in the normal write path.
8323 */
Josef Bacik2ac55d42010-02-03 19:33:23 +00008324 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Liu Bo9e8a4a82012-09-05 19:10:51 -06008325 EXTENT_DIRTY | EXTENT_DELALLOC |
8326 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
Josef Bacik2ac55d42010-02-03 19:33:23 +00008327 0, 0, &cached_state, GFP_NOFS);
Josef Bacikfbf19082009-10-01 17:10:23 -04008328
Josef Bacik2ac55d42010-02-03 19:33:23 +00008329 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
8330 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04008331 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00008332 unlock_extent_cached(io_tree, page_start, page_end,
8333 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04008334 ret = VM_FAULT_SIGBUS;
8335 goto out_unlock;
8336 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04008337 ret = 0;
Chris Mason9ebefb182007-06-15 13:50:00 -04008338
8339 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04008340 if (page_start + PAGE_CACHE_SIZE > size)
Chris Masone6dcd2d2008-07-17 12:53:50 -04008341 zero_start = size & ~PAGE_CACHE_MASK;
Chris Mason9ebefb182007-06-15 13:50:00 -04008342 else
Chris Masone6dcd2d2008-07-17 12:53:50 -04008343 zero_start = PAGE_CACHE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04008344
Chris Masone6dcd2d2008-07-17 12:53:50 -04008345 if (zero_start != PAGE_CACHE_SIZE) {
8346 kaddr = kmap(page);
8347 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
8348 flush_dcache_page(page);
8349 kunmap(page);
8350 }
Chris Mason247e7432008-07-17 12:53:51 -04008351 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008352 set_page_dirty(page);
Chris Mason50a9b212009-09-11 12:33:12 -04008353 SetPageUptodate(page);
Chris Mason5a3f23d2009-03-31 13:27:11 -04008354
Chris Mason257c62e2009-10-13 13:21:08 -04008355 BTRFS_I(inode)->last_trans = root->fs_info->generation;
8356 BTRFS_I(inode)->last_sub_trans = BTRFS_I(inode)->root->log_transid;
Liu Bo46d8bc32012-08-29 01:07:55 -06008357 BTRFS_I(inode)->last_log_commit = BTRFS_I(inode)->root->last_log_commit;
Chris Mason257c62e2009-10-13 13:21:08 -04008358
Josef Bacik2ac55d42010-02-03 19:33:23 +00008359 unlock_extent_cached(io_tree, page_start, page_end, &cached_state, GFP_NOFS);
Chris Mason9ebefb182007-06-15 13:50:00 -04008360
8361out_unlock:
Jan Karab2b5ef52012-06-12 16:20:45 +02008362 if (!ret) {
8363 sb_end_pagefault(inode->i_sb);
Chris Mason50a9b212009-09-11 12:33:12 -04008364 return VM_FAULT_LOCKED;
Jan Karab2b5ef52012-06-12 16:20:45 +02008365 }
Chris Mason9ebefb182007-06-15 13:50:00 -04008366 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05008367out:
Josef Bacikec39e182012-01-12 19:10:12 -05008368 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Mason9998eb72012-01-25 13:47:40 -05008369out_noreserve:
Jan Karab2b5ef52012-06-12 16:20:45 +02008370 sb_end_pagefault(inode->i_sb);
Chris Mason9ebefb182007-06-15 13:50:00 -04008371 return ret;
8372}
8373
Josef Bacika41ad392011-01-31 15:30:16 -05008374static int btrfs_truncate(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04008375{
8376 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacikfcb80c22011-05-03 10:40:22 -04008377 struct btrfs_block_rsv *rsv;
Josef Bacika71754f2013-06-17 17:14:39 -04008378 int ret = 0;
Josef Bacik3893e332011-01-31 16:03:11 -05008379 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04008380 struct btrfs_trans_handle *trans;
Chris Masondbe674a2008-07-17 12:54:05 -04008381 u64 mask = root->sectorsize - 1;
Josef Bacik07127182011-08-19 10:29:59 -04008382 u64 min_size = btrfs_calc_trunc_metadata_size(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04008383
Josef Bacik0ef8b722013-10-25 16:13:35 -04008384 ret = btrfs_wait_ordered_range(inode, inode->i_size & (~mask),
8385 (u64)-1);
8386 if (ret)
8387 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04008388
Josef Bacikfcb80c22011-05-03 10:40:22 -04008389 /*
8390 * Yes ladies and gentelment, this is indeed ugly. The fact is we have
8391 * 3 things going on here
8392 *
8393 * 1) We need to reserve space for our orphan item and the space to
8394 * delete our orphan item. Lord knows we don't want to have a dangling
8395 * orphan item because we didn't reserve space to remove it.
8396 *
8397 * 2) We need to reserve space to update our inode.
8398 *
8399 * 3) We need to have something to cache all the space that is going to
8400 * be free'd up by the truncate operation, but also have some slack
8401 * space reserved in case it uses space during the truncate (thank you
8402 * very much snapshotting).
8403 *
8404 * And we need these to all be seperate. The fact is we can use alot of
8405 * space doing the truncate, and we have no earthly idea how much space
8406 * we will use, so we need the truncate reservation to be seperate so it
8407 * doesn't end up using space reserved for updating the inode or
8408 * removing the orphan item. We also need to be able to stop the
8409 * transaction and start a new one, which means we need to be able to
8410 * update the inode several times, and we have no idea of knowing how
8411 * many times that will be, so we can't just reserve 1 item for the
8412 * entirety of the opration, so that has to be done seperately as well.
8413 * Then there is the orphan item, which does indeed need to be held on
8414 * to for the whole operation, and we need nobody to touch this reserved
8415 * space except the orphan code.
8416 *
8417 * So that leaves us with
8418 *
8419 * 1) root->orphan_block_rsv - for the orphan deletion.
8420 * 2) rsv - for the truncate reservation, which we will steal from the
8421 * transaction reservation.
8422 * 3) fs_info->trans_block_rsv - this will have 1 items worth left for
8423 * updating the inode.
8424 */
Miao Xie66d8f3d2012-09-06 04:02:28 -06008425 rsv = btrfs_alloc_block_rsv(root, BTRFS_BLOCK_RSV_TEMP);
Josef Bacikfcb80c22011-05-03 10:40:22 -04008426 if (!rsv)
8427 return -ENOMEM;
Josef Bacik4a338542011-08-29 11:01:31 -04008428 rsv->size = min_size;
Josef Bacikca7e70f2012-08-27 17:48:15 -04008429 rsv->failfast = 1;
Josef Bacikf0cd8462011-03-04 14:37:08 -05008430
Josef Bacik907cbce2011-08-08 13:46:15 -04008431 /*
Josef Bacik07127182011-08-19 10:29:59 -04008432 * 1 for the truncate slack space
Josef Bacik907cbce2011-08-08 13:46:15 -04008433 * 1 for updating the inode.
8434 */
Josef Bacikf3fe8202013-01-07 17:03:21 -05008435 trans = btrfs_start_transaction(root, 2);
Josef Bacikfcb80c22011-05-03 10:40:22 -04008436 if (IS_ERR(trans)) {
8437 err = PTR_ERR(trans);
8438 goto out;
8439 }
Josef Bacikf0cd8462011-03-04 14:37:08 -05008440
Josef Bacik907cbce2011-08-08 13:46:15 -04008441 /* Migrate the slack space for the truncate to our reserve */
8442 ret = btrfs_block_rsv_migrate(&root->fs_info->trans_block_rsv, rsv,
8443 min_size);
Josef Bacikfcb80c22011-05-03 10:40:22 -04008444 BUG_ON(ret);
Josef Bacikf0cd8462011-03-04 14:37:08 -05008445
Chris Mason5a3f23d2009-03-31 13:27:11 -04008446 /*
Josef Bacik5dc562c2012-08-17 13:14:17 -04008447 * So if we truncate and then write and fsync we normally would just
8448 * write the extents that changed, which is a problem if we need to
8449 * first truncate that entire inode. So set this flag so we write out
8450 * all of the extents in the inode to the sync log so we're completely
8451 * safe.
8452 */
8453 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
Josef Bacikca7e70f2012-08-27 17:48:15 -04008454 trans->block_rsv = rsv;
Josef Bacik5dc562c2012-08-17 13:14:17 -04008455
Yan, Zheng80825102009-11-12 09:35:36 +00008456 while (1) {
8457 ret = btrfs_truncate_inode_items(trans, root, inode,
8458 inode->i_size,
8459 BTRFS_EXTENT_DATA_KEY);
Josef Bacikca7e70f2012-08-27 17:48:15 -04008460 if (ret != -ENOSPC) {
Josef Bacik3893e332011-01-31 16:03:11 -05008461 err = ret;
Yan, Zheng80825102009-11-12 09:35:36 +00008462 break;
Josef Bacik3893e332011-01-31 16:03:11 -05008463 }
Chris Mason39279cc2007-06-12 06:35:45 -04008464
Josef Bacikfcb80c22011-05-03 10:40:22 -04008465 trans->block_rsv = &root->fs_info->trans_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00008466 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05008467 if (ret) {
8468 err = ret;
8469 break;
8470 }
Josef Bacikca7e70f2012-08-27 17:48:15 -04008471
Yan, Zheng80825102009-11-12 09:35:36 +00008472 btrfs_end_transaction(trans, root);
Liu Bob53d3f52012-11-14 14:34:34 +00008473 btrfs_btree_balance_dirty(root);
Josef Bacikca7e70f2012-08-27 17:48:15 -04008474
8475 trans = btrfs_start_transaction(root, 2);
8476 if (IS_ERR(trans)) {
8477 ret = err = PTR_ERR(trans);
8478 trans = NULL;
8479 break;
8480 }
8481
8482 ret = btrfs_block_rsv_migrate(&root->fs_info->trans_block_rsv,
8483 rsv, min_size);
8484 BUG_ON(ret); /* shouldn't happen */
8485 trans->block_rsv = rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00008486 }
8487
8488 if (ret == 0 && inode->i_nlink > 0) {
Josef Bacikfcb80c22011-05-03 10:40:22 -04008489 trans->block_rsv = root->orphan_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00008490 ret = btrfs_orphan_del(trans, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05008491 if (ret)
8492 err = ret;
Yan, Zheng80825102009-11-12 09:35:36 +00008493 }
8494
Chris Mason917c16b2011-11-08 14:49:59 -05008495 if (trans) {
8496 trans->block_rsv = &root->fs_info->trans_block_rsv;
8497 ret = btrfs_update_inode(trans, root, inode);
8498 if (ret && !err)
8499 err = ret;
Josef Bacik7b128762008-07-24 12:17:14 -04008500
Josef Bacik7ad85bb2012-01-12 19:10:12 -05008501 ret = btrfs_end_transaction(trans, root);
Liu Bob53d3f52012-11-14 14:34:34 +00008502 btrfs_btree_balance_dirty(root);
Chris Mason917c16b2011-11-08 14:49:59 -05008503 }
Josef Bacikfcb80c22011-05-03 10:40:22 -04008504
8505out:
8506 btrfs_free_block_rsv(root, rsv);
8507
Josef Bacik3893e332011-01-31 16:03:11 -05008508 if (ret && !err)
8509 err = ret;
Josef Bacika41ad392011-01-31 15:30:16 -05008510
Josef Bacik3893e332011-01-31 16:03:11 -05008511 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04008512}
8513
Sven Wegener3b963622008-06-09 21:57:42 -04008514/*
Chris Masond352ac62008-09-29 15:18:18 -04008515 * create a new subvolume directory/inode (helper for the ioctl).
8516 */
Yan Zhengd2fb3432008-12-11 16:30:39 -05008517int btrfs_create_subvol_root(struct btrfs_trans_handle *trans,
Filipe David Borba Manana63541922014-01-07 11:47:46 +00008518 struct btrfs_root *new_root,
8519 struct btrfs_root *parent_root,
8520 u64 new_dirid)
Chris Mason39279cc2007-06-12 06:35:45 -04008521{
Chris Mason39279cc2007-06-12 06:35:45 -04008522 struct inode *inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04008523 int err;
Chris Mason00e4e6b2008-08-05 11:18:09 -04008524 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04008525
Florian Albrechtskirchinger12fc9d02012-02-10 22:15:54 +01008526 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2,
8527 new_dirid, new_dirid,
8528 S_IFDIR | (~current_umask() & S_IRWXUGO),
8529 &index);
Chris Mason54aa1f42007-06-22 14:16:25 -04008530 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04008531 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04008532 inode->i_op = &btrfs_dir_inode_operations;
8533 inode->i_fop = &btrfs_dir_file_operations;
8534
Miklos Szeredibfe86842011-10-28 14:13:29 +02008535 set_nlink(inode, 1);
Chris Masondbe674a2008-07-17 12:54:05 -04008536 btrfs_i_size_write(inode, 0);
Chris Masonb0d5d102014-09-08 13:08:51 -07008537 unlock_new_inode(inode);
Sven Wegener3b963622008-06-09 21:57:42 -04008538
Filipe David Borba Manana63541922014-01-07 11:47:46 +00008539 err = btrfs_subvol_inherit_props(trans, new_root, parent_root);
8540 if (err)
8541 btrfs_err(new_root->fs_info,
David Sterba351fd352014-05-15 16:48:20 +02008542 "error inheriting subvolume %llu properties: %d",
Filipe David Borba Manana63541922014-01-07 11:47:46 +00008543 new_root->root_key.objectid, err);
8544
Yan, Zheng76dda932009-09-21 16:00:26 -04008545 err = btrfs_update_inode(trans, new_root, inode);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04008546
Yan, Zheng76dda932009-09-21 16:00:26 -04008547 iput(inode);
Mark Fashehce598972011-07-26 11:32:23 -07008548 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04008549}
8550
Chris Mason39279cc2007-06-12 06:35:45 -04008551struct inode *btrfs_alloc_inode(struct super_block *sb)
8552{
8553 struct btrfs_inode *ei;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04008554 struct inode *inode;
Chris Mason39279cc2007-06-12 06:35:45 -04008555
8556 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
8557 if (!ei)
8558 return NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04008559
8560 ei->root = NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04008561 ei->generation = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04008562 ei->last_trans = 0;
Chris Mason257c62e2009-10-13 13:21:08 -04008563 ei->last_sub_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04008564 ei->logged_trans = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04008565 ei->delalloc_bytes = 0;
Wang Shilong47059d92014-07-03 18:22:07 +08008566 ei->defrag_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04008567 ei->disk_i_size = 0;
8568 ei->flags = 0;
Josef Bacik7709cde2011-08-04 10:25:02 -04008569 ei->csum_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04008570 ei->index_cnt = (u64)-1;
Miao Xie67de1172013-12-26 13:07:06 +08008571 ei->dir_index = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04008572 ei->last_unlink_trans = 0;
Liu Bo46d8bc32012-08-29 01:07:55 -06008573 ei->last_log_commit = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04008574
Josef Bacik9e0baf62011-07-15 15:16:44 +00008575 spin_lock_init(&ei->lock);
8576 ei->outstanding_extents = 0;
8577 ei->reserved_extents = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04008578
Josef Bacik72ac3c02012-05-23 14:13:11 -04008579 ei->runtime_flags = 0;
Li Zefan261507a02010-12-17 14:21:50 +08008580 ei->force_compress = BTRFS_COMPRESS_NONE;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04008581
Miao Xie16cdcec2011-04-22 18:12:22 +08008582 ei->delayed_node = NULL;
8583
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04008584 inode = &ei->vfs_inode;
David Sterbaa8067e02011-04-21 00:34:43 +02008585 extent_map_tree_init(&ei->extent_tree);
David Sterbaf993c882011-04-20 23:35:57 +02008586 extent_io_tree_init(&ei->io_tree, &inode->i_data);
8587 extent_io_tree_init(&ei->io_failure_tree, &inode->i_data);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04008588 ei->io_tree.track_uptodate = 1;
8589 ei->io_failure_tree.track_uptodate = 1;
Josef Bacikb812ce22012-11-16 13:56:32 -05008590 atomic_set(&ei->sync_writers, 0);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04008591 mutex_init(&ei->log_mutex);
Josef Bacikf2486792012-01-13 12:09:22 -05008592 mutex_init(&ei->delalloc_mutex);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008593 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04008594 INIT_LIST_HEAD(&ei->delalloc_inodes);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04008595 RB_CLEAR_NODE(&ei->rb_node);
8596
8597 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04008598}
8599
Josef Bacikaaedb552013-10-11 14:44:09 -04008600#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
8601void btrfs_test_destroy_inode(struct inode *inode)
8602{
8603 btrfs_drop_extent_cache(inode, 0, (u64)-1, 0);
8604 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
8605}
8606#endif
8607
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11008608static void btrfs_i_callback(struct rcu_head *head)
8609{
8610 struct inode *inode = container_of(head, struct inode, i_rcu);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11008611 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
8612}
8613
Chris Mason39279cc2007-06-12 06:35:45 -04008614void btrfs_destroy_inode(struct inode *inode)
8615{
Chris Masone6dcd2d2008-07-17 12:53:50 -04008616 struct btrfs_ordered_extent *ordered;
Chris Mason5a3f23d2009-03-31 13:27:11 -04008617 struct btrfs_root *root = BTRFS_I(inode)->root;
8618
Al Virob3d9b7a2012-06-09 13:51:19 -04008619 WARN_ON(!hlist_empty(&inode->i_dentry));
Chris Mason39279cc2007-06-12 06:35:45 -04008620 WARN_ON(inode->i_data.nrpages);
Josef Bacik9e0baf62011-07-15 15:16:44 +00008621 WARN_ON(BTRFS_I(inode)->outstanding_extents);
8622 WARN_ON(BTRFS_I(inode)->reserved_extents);
Josef Bacik7709cde2011-08-04 10:25:02 -04008623 WARN_ON(BTRFS_I(inode)->delalloc_bytes);
8624 WARN_ON(BTRFS_I(inode)->csum_bytes);
Wang Shilong47059d92014-07-03 18:22:07 +08008625 WARN_ON(BTRFS_I(inode)->defrag_bytes);
Chris Mason39279cc2007-06-12 06:35:45 -04008626
Chris Mason5a3f23d2009-03-31 13:27:11 -04008627 /*
Josef Bacika6dbd422009-11-11 15:53:34 -05008628 * This can happen where we create an inode, but somebody else also
8629 * created the same inode and we need to destroy the one we already
8630 * created.
8631 */
8632 if (!root)
8633 goto free;
8634
Josef Bacik8a35d952012-05-23 14:26:42 -04008635 if (test_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
8636 &BTRFS_I(inode)->runtime_flags)) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008637 btrfs_info(root->fs_info, "inode %llu still on the orphan list",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02008638 btrfs_ino(inode));
Josef Bacik8a35d952012-05-23 14:26:42 -04008639 atomic_dec(&root->orphan_inodes);
Josef Bacik7b128762008-07-24 12:17:14 -04008640 }
Josef Bacik7b128762008-07-24 12:17:14 -04008641
Chris Masond3977122009-01-05 21:25:51 -05008642 while (1) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04008643 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
8644 if (!ordered)
8645 break;
8646 else {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008647 btrfs_err(root->fs_info, "found ordered extent %llu %llu on inode cleanup",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02008648 ordered->file_offset, ordered->len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008649 btrfs_remove_ordered_extent(inode, ordered);
8650 btrfs_put_ordered_extent(ordered);
8651 btrfs_put_ordered_extent(ordered);
8652 }
8653 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008654 inode_tree_del(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04008655 btrfs_drop_extent_cache(inode, 0, (u64)-1, 0);
Josef Bacika6dbd422009-11-11 15:53:34 -05008656free:
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11008657 call_rcu(&inode->i_rcu, btrfs_i_callback);
Chris Mason39279cc2007-06-12 06:35:45 -04008658}
8659
Al Viro45321ac2010-06-07 13:43:19 -04008660int btrfs_drop_inode(struct inode *inode)
Yan, Zheng76dda932009-09-21 16:00:26 -04008661{
8662 struct btrfs_root *root = BTRFS_I(inode)->root;
Al Viro45321ac2010-06-07 13:43:19 -04008663
Naohiro Aota6379ef92013-06-06 09:56:34 +00008664 if (root == NULL)
8665 return 1;
8666
Liu Bofa6ac872013-02-20 14:10:23 +00008667 /* the snap/subvol tree is on deleting */
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02008668 if (btrfs_root_refs(&root->root_item) == 0)
Al Viro45321ac2010-06-07 13:43:19 -04008669 return 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04008670 else
Al Viro45321ac2010-06-07 13:43:19 -04008671 return generic_drop_inode(inode);
Yan, Zheng76dda932009-09-21 16:00:26 -04008672}
8673
Sven Wegener0ee0fda2008-07-30 16:54:26 -04008674static void init_once(void *foo)
Chris Mason39279cc2007-06-12 06:35:45 -04008675{
8676 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
8677
8678 inode_init_once(&ei->vfs_inode);
8679}
8680
8681void btrfs_destroy_cachep(void)
8682{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +10008683 /*
8684 * Make sure all delayed rcu free inodes are flushed before we
8685 * destroy cache.
8686 */
8687 rcu_barrier();
Chris Mason39279cc2007-06-12 06:35:45 -04008688 if (btrfs_inode_cachep)
8689 kmem_cache_destroy(btrfs_inode_cachep);
8690 if (btrfs_trans_handle_cachep)
8691 kmem_cache_destroy(btrfs_trans_handle_cachep);
8692 if (btrfs_transaction_cachep)
8693 kmem_cache_destroy(btrfs_transaction_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04008694 if (btrfs_path_cachep)
8695 kmem_cache_destroy(btrfs_path_cachep);
Josef Bacikdc89e982011-01-28 17:05:48 -05008696 if (btrfs_free_space_cachep)
8697 kmem_cache_destroy(btrfs_free_space_cachep);
Miao Xie8ccf6f192012-10-25 09:28:04 +00008698 if (btrfs_delalloc_work_cachep)
8699 kmem_cache_destroy(btrfs_delalloc_work_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04008700}
8701
8702int btrfs_init_cachep(void)
8703{
David Sterba837e1972012-09-07 03:00:48 -06008704 btrfs_inode_cachep = kmem_cache_create("btrfs_inode",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02008705 sizeof(struct btrfs_inode), 0,
8706 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04008707 if (!btrfs_inode_cachep)
8708 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02008709
David Sterba837e1972012-09-07 03:00:48 -06008710 btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02008711 sizeof(struct btrfs_trans_handle), 0,
8712 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04008713 if (!btrfs_trans_handle_cachep)
8714 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02008715
David Sterba837e1972012-09-07 03:00:48 -06008716 btrfs_transaction_cachep = kmem_cache_create("btrfs_transaction",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02008717 sizeof(struct btrfs_transaction), 0,
8718 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04008719 if (!btrfs_transaction_cachep)
8720 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02008721
David Sterba837e1972012-09-07 03:00:48 -06008722 btrfs_path_cachep = kmem_cache_create("btrfs_path",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02008723 sizeof(struct btrfs_path), 0,
8724 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04008725 if (!btrfs_path_cachep)
8726 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02008727
David Sterba837e1972012-09-07 03:00:48 -06008728 btrfs_free_space_cachep = kmem_cache_create("btrfs_free_space",
Josef Bacikdc89e982011-01-28 17:05:48 -05008729 sizeof(struct btrfs_free_space), 0,
8730 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
8731 if (!btrfs_free_space_cachep)
8732 goto fail;
8733
Miao Xie8ccf6f192012-10-25 09:28:04 +00008734 btrfs_delalloc_work_cachep = kmem_cache_create("btrfs_delalloc_work",
8735 sizeof(struct btrfs_delalloc_work), 0,
8736 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD,
8737 NULL);
8738 if (!btrfs_delalloc_work_cachep)
8739 goto fail;
8740
Chris Mason39279cc2007-06-12 06:35:45 -04008741 return 0;
8742fail:
8743 btrfs_destroy_cachep();
8744 return -ENOMEM;
8745}
8746
8747static int btrfs_getattr(struct vfsmount *mnt,
8748 struct dentry *dentry, struct kstat *stat)
8749{
Miao Xiedf0af1a2013-01-29 10:11:59 +00008750 u64 delalloc_bytes;
Chris Mason39279cc2007-06-12 06:35:45 -04008751 struct inode *inode = dentry->d_inode;
David Sterbafadc0d82011-11-20 07:33:38 -05008752 u32 blocksize = inode->i_sb->s_blocksize;
8753
Chris Mason39279cc2007-06-12 06:35:45 -04008754 generic_fillattr(inode, stat);
Al Viro0ee5dc62011-07-07 15:44:25 -04008755 stat->dev = BTRFS_I(inode)->root->anon_dev;
Chris Masond6667462008-01-03 14:51:00 -05008756 stat->blksize = PAGE_CACHE_SIZE;
Miao Xiedf0af1a2013-01-29 10:11:59 +00008757
8758 spin_lock(&BTRFS_I(inode)->lock);
8759 delalloc_bytes = BTRFS_I(inode)->delalloc_bytes;
8760 spin_unlock(&BTRFS_I(inode)->lock);
David Sterbafadc0d82011-11-20 07:33:38 -05008761 stat->blocks = (ALIGN(inode_get_bytes(inode), blocksize) +
Miao Xiedf0af1a2013-01-29 10:11:59 +00008762 ALIGN(delalloc_bytes, blocksize)) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -04008763 return 0;
8764}
8765
Chris Masond3977122009-01-05 21:25:51 -05008766static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry,
8767 struct inode *new_dir, struct dentry *new_dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04008768{
8769 struct btrfs_trans_handle *trans;
8770 struct btrfs_root *root = BTRFS_I(old_dir)->root;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04008771 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04008772 struct inode *new_inode = new_dentry->d_inode;
8773 struct inode *old_inode = old_dentry->d_inode;
8774 struct timespec ctime = CURRENT_TIME;
Chris Mason00e4e6b2008-08-05 11:18:09 -04008775 u64 index = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04008776 u64 root_objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04008777 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08008778 u64 old_ino = btrfs_ino(old_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04008779
Li Zefan33345d012011-04-20 10:31:50 +08008780 if (btrfs_ino(new_dir) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Yan, Zhengf679a842009-09-24 09:17:31 -04008781 return -EPERM;
8782
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04008783 /* we only allow rename subvolume link between subvolumes */
Li Zefan33345d012011-04-20 10:31:50 +08008784 if (old_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
Chris Mason3394e162008-11-17 20:42:26 -05008785 return -EXDEV;
8786
Li Zefan33345d012011-04-20 10:31:50 +08008787 if (old_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID ||
8788 (new_inode && btrfs_ino(new_inode) == BTRFS_FIRST_FREE_OBJECTID))
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04008789 return -ENOTEMPTY;
8790
Chris Mason39279cc2007-06-12 06:35:45 -04008791 if (S_ISDIR(old_inode->i_mode) && new_inode &&
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04008792 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Chris Mason39279cc2007-06-12 06:35:45 -04008793 return -ENOTEMPTY;
Chris Mason9c520572012-12-17 14:26:57 -05008794
8795
8796 /* check for collisions, even if the name isn't there */
Josef Bacik4871c152013-10-09 12:24:04 -04008797 ret = btrfs_check_dir_item_collision(dest, new_dir->i_ino,
Chris Mason9c520572012-12-17 14:26:57 -05008798 new_dentry->d_name.name,
8799 new_dentry->d_name.len);
8800
8801 if (ret) {
8802 if (ret == -EEXIST) {
8803 /* we shouldn't get
8804 * eexist without a new_inode */
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05308805 if (WARN_ON(!new_inode)) {
Chris Mason9c520572012-12-17 14:26:57 -05008806 return ret;
8807 }
8808 } else {
8809 /* maybe -EOVERFLOW */
8810 return ret;
8811 }
8812 }
8813 ret = 0;
8814
Chris Mason5a3f23d2009-03-31 13:27:11 -04008815 /*
Chris Mason8d875f92014-08-12 10:47:42 -07008816 * we're using rename to replace one file with another. Start IO on it
8817 * now so we don't add too much work to the end of the transaction
Chris Mason5a3f23d2009-03-31 13:27:11 -04008818 */
Chris Mason8d875f92014-08-12 10:47:42 -07008819 if (new_inode && S_ISREG(old_inode->i_mode) && new_inode->i_size)
Chris Mason5a3f23d2009-03-31 13:27:11 -04008820 filemap_flush(old_inode->i_mapping);
8821
Yan, Zheng76dda932009-09-21 16:00:26 -04008822 /* close the racy window with snapshot create/destroy ioctl */
Li Zefan33345d012011-04-20 10:31:50 +08008823 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Yan, Zheng76dda932009-09-21 16:00:26 -04008824 down_read(&root->fs_info->subvol_sem);
Yan, Zhenga22285a2010-05-16 10:48:46 -04008825 /*
8826 * We want to reserve the absolute worst case amount of items. So if
8827 * both inodes are subvols and we need to unlink them then that would
8828 * require 4 item modifications, but if they are both normal inodes it
8829 * would require 5 item modifications, so we'll assume their normal
8830 * inodes. So 5 * 2 is 10, plus 1 for the new link, so 11 total items
8831 * should cover the worst case number of items we'll modify.
8832 */
Josef Bacik6e137ed2013-03-26 15:26:55 -04008833 trans = btrfs_start_transaction(root, 11);
Johann Lombardib44c59a2011-03-31 13:23:47 +00008834 if (IS_ERR(trans)) {
8835 ret = PTR_ERR(trans);
8836 goto out_notrans;
8837 }
Chris Mason5f39d392007-10-15 16:14:19 -04008838
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04008839 if (dest != root)
8840 btrfs_record_root_in_trans(trans, dest);
8841
Yan, Zhenga5719522009-09-24 09:17:31 -04008842 ret = btrfs_set_inode_index(new_dir, &index);
8843 if (ret)
8844 goto out_fail;
Chris Mason5a3f23d2009-03-31 13:27:11 -04008845
Miao Xie67de1172013-12-26 13:07:06 +08008846 BTRFS_I(old_inode)->dir_index = 0ULL;
Li Zefan33345d012011-04-20 10:31:50 +08008847 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04008848 /* force full log commit if subvolume involved. */
Miao Xie995946d2014-04-02 19:51:06 +08008849 btrfs_set_log_full_commit(root->fs_info, trans);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04008850 } else {
Yan, Zhenga5719522009-09-24 09:17:31 -04008851 ret = btrfs_insert_inode_ref(trans, dest,
8852 new_dentry->d_name.name,
8853 new_dentry->d_name.len,
Li Zefan33345d012011-04-20 10:31:50 +08008854 old_ino,
8855 btrfs_ino(new_dir), index);
Yan, Zhenga5719522009-09-24 09:17:31 -04008856 if (ret)
8857 goto out_fail;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04008858 /*
8859 * this is an ugly little race, but the rename is required
8860 * to make sure that if we crash, the inode is either at the
8861 * old name or the new one. pinning the log transaction lets
8862 * us make sure we don't allow a log commit to come in after
8863 * we unlink the name but before we add the new name back in.
8864 */
8865 btrfs_pin_log_trans(root);
8866 }
Chris Mason5a3f23d2009-03-31 13:27:11 -04008867
Josef Bacik0c4d2d92012-04-05 15:03:02 -04008868 inode_inc_iversion(old_dir);
8869 inode_inc_iversion(new_dir);
8870 inode_inc_iversion(old_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04008871 old_dir->i_ctime = old_dir->i_mtime = ctime;
8872 new_dir->i_ctime = new_dir->i_mtime = ctime;
8873 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04008874
Chris Mason12fcfd22009-03-24 10:24:20 -04008875 if (old_dentry->d_parent != new_dentry->d_parent)
8876 btrfs_record_unlink_dir(trans, old_dir, old_inode, 1);
8877
Li Zefan33345d012011-04-20 10:31:50 +08008878 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04008879 root_objectid = BTRFS_I(old_inode)->root->root_key.objectid;
8880 ret = btrfs_unlink_subvol(trans, root, old_dir, root_objectid,
8881 old_dentry->d_name.name,
8882 old_dentry->d_name.len);
8883 } else {
Al Viro92986792011-03-04 17:14:37 +00008884 ret = __btrfs_unlink_inode(trans, root, old_dir,
8885 old_dentry->d_inode,
8886 old_dentry->d_name.name,
8887 old_dentry->d_name.len);
8888 if (!ret)
8889 ret = btrfs_update_inode(trans, root, old_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04008890 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008891 if (ret) {
8892 btrfs_abort_transaction(trans, root, ret);
8893 goto out_fail;
8894 }
Chris Mason39279cc2007-06-12 06:35:45 -04008895
8896 if (new_inode) {
Josef Bacik0c4d2d92012-04-05 15:03:02 -04008897 inode_inc_iversion(new_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04008898 new_inode->i_ctime = CURRENT_TIME;
Li Zefan33345d012011-04-20 10:31:50 +08008899 if (unlikely(btrfs_ino(new_inode) ==
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04008900 BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
8901 root_objectid = BTRFS_I(new_inode)->location.objectid;
8902 ret = btrfs_unlink_subvol(trans, dest, new_dir,
8903 root_objectid,
8904 new_dentry->d_name.name,
8905 new_dentry->d_name.len);
8906 BUG_ON(new_inode->i_nlink == 0);
8907 } else {
8908 ret = btrfs_unlink_inode(trans, dest, new_dir,
8909 new_dentry->d_inode,
8910 new_dentry->d_name.name,
8911 new_dentry->d_name.len);
8912 }
Josef Bacik4ef31a42013-08-13 14:10:08 -04008913 if (!ret && new_inode->i_nlink == 0)
Chris Masone02119d2008-09-05 16:13:11 -04008914 ret = btrfs_orphan_add(trans, new_dentry->d_inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008915 if (ret) {
8916 btrfs_abort_transaction(trans, root, ret);
8917 goto out_fail;
8918 }
Chris Mason39279cc2007-06-12 06:35:45 -04008919 }
Josef Bacikaec74772008-07-24 12:12:38 -04008920
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04008921 ret = btrfs_add_link(trans, new_dir, old_inode,
8922 new_dentry->d_name.name,
Yan, Zhenga5719522009-09-24 09:17:31 -04008923 new_dentry->d_name.len, 0, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008924 if (ret) {
8925 btrfs_abort_transaction(trans, root, ret);
8926 goto out_fail;
8927 }
Chris Mason39279cc2007-06-12 06:35:45 -04008928
Miao Xie67de1172013-12-26 13:07:06 +08008929 if (old_inode->i_nlink == 1)
8930 BTRFS_I(old_inode)->dir_index = index;
8931
Li Zefan33345d012011-04-20 10:31:50 +08008932 if (old_ino != BTRFS_FIRST_FREE_OBJECTID) {
Al Viro10d9f302011-07-16 23:09:10 -04008933 struct dentry *parent = new_dentry->d_parent;
Josef Bacik6a912212010-11-20 09:48:00 +00008934 btrfs_log_new_name(trans, old_inode, old_dir, parent);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04008935 btrfs_end_log_trans(root);
8936 }
Chris Mason39279cc2007-06-12 06:35:45 -04008937out_fail:
Josef Bacik7ad85bb2012-01-12 19:10:12 -05008938 btrfs_end_transaction(trans, root);
Johann Lombardib44c59a2011-03-31 13:23:47 +00008939out_notrans:
Li Zefan33345d012011-04-20 10:31:50 +08008940 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Yan, Zheng76dda932009-09-21 16:00:26 -04008941 up_read(&root->fs_info->subvol_sem);
Josef Bacik9ed74f22009-09-11 16:12:44 -04008942
Chris Mason39279cc2007-06-12 06:35:45 -04008943 return ret;
8944}
8945
Miklos Szeredi80ace852014-07-23 15:15:32 +02008946static int btrfs_rename2(struct inode *old_dir, struct dentry *old_dentry,
8947 struct inode *new_dir, struct dentry *new_dentry,
8948 unsigned int flags)
8949{
8950 if (flags & ~RENAME_NOREPLACE)
8951 return -EINVAL;
8952
8953 return btrfs_rename(old_dir, old_dentry, new_dir, new_dentry);
8954}
8955
Miao Xie8ccf6f192012-10-25 09:28:04 +00008956static void btrfs_run_delalloc_work(struct btrfs_work *work)
8957{
8958 struct btrfs_delalloc_work *delalloc_work;
Josef Bacik9f23e282013-10-28 15:03:41 -04008959 struct inode *inode;
Miao Xie8ccf6f192012-10-25 09:28:04 +00008960
8961 delalloc_work = container_of(work, struct btrfs_delalloc_work,
8962 work);
Josef Bacik9f23e282013-10-28 15:03:41 -04008963 inode = delalloc_work->inode;
8964 if (delalloc_work->wait) {
8965 btrfs_wait_ordered_range(inode, 0, (u64)-1);
8966 } else {
8967 filemap_flush(inode->i_mapping);
8968 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
8969 &BTRFS_I(inode)->runtime_flags))
8970 filemap_flush(inode->i_mapping);
8971 }
Miao Xie8ccf6f192012-10-25 09:28:04 +00008972
8973 if (delalloc_work->delay_iput)
Josef Bacik9f23e282013-10-28 15:03:41 -04008974 btrfs_add_delayed_iput(inode);
Miao Xie8ccf6f192012-10-25 09:28:04 +00008975 else
Josef Bacik9f23e282013-10-28 15:03:41 -04008976 iput(inode);
Miao Xie8ccf6f192012-10-25 09:28:04 +00008977 complete(&delalloc_work->completion);
8978}
8979
8980struct btrfs_delalloc_work *btrfs_alloc_delalloc_work(struct inode *inode,
8981 int wait, int delay_iput)
8982{
8983 struct btrfs_delalloc_work *work;
8984
8985 work = kmem_cache_zalloc(btrfs_delalloc_work_cachep, GFP_NOFS);
8986 if (!work)
8987 return NULL;
8988
8989 init_completion(&work->completion);
8990 INIT_LIST_HEAD(&work->list);
8991 work->inode = inode;
8992 work->wait = wait;
8993 work->delay_iput = delay_iput;
Liu Bo9e0af232014-08-15 23:36:53 +08008994 WARN_ON_ONCE(!inode);
8995 btrfs_init_work(&work->work, btrfs_flush_delalloc_helper,
8996 btrfs_run_delalloc_work, NULL, NULL);
Miao Xie8ccf6f192012-10-25 09:28:04 +00008997
8998 return work;
8999}
9000
9001void btrfs_wait_and_free_delalloc_work(struct btrfs_delalloc_work *work)
9002{
9003 wait_for_completion(&work->completion);
9004 kmem_cache_free(btrfs_delalloc_work_cachep, work);
9005}
9006
Chris Masond352ac62008-09-29 15:18:18 -04009007/*
9008 * some fairly slow code that needs optimization. This walks the list
9009 * of all the inodes with pending delalloc and forces them to disk.
9010 */
Miao Xie6c255e62014-03-06 13:55:01 +08009011static int __start_delalloc_inodes(struct btrfs_root *root, int delay_iput,
9012 int nr)
Chris Masonea8c2812008-08-04 23:17:27 -04009013{
Chris Masonea8c2812008-08-04 23:17:27 -04009014 struct btrfs_inode *binode;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04009015 struct inode *inode;
Miao Xie8ccf6f192012-10-25 09:28:04 +00009016 struct btrfs_delalloc_work *work, *next;
9017 struct list_head works;
Miao Xie1eafa6c2013-01-22 10:49:00 +00009018 struct list_head splice;
Miao Xie8ccf6f192012-10-25 09:28:04 +00009019 int ret = 0;
Chris Masonea8c2812008-08-04 23:17:27 -04009020
Miao Xie8ccf6f192012-10-25 09:28:04 +00009021 INIT_LIST_HEAD(&works);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009022 INIT_LIST_HEAD(&splice);
Miao Xie63607cc2013-01-22 10:50:35 +00009023
Miao Xie573bfb72014-03-06 13:55:03 +08009024 mutex_lock(&root->delalloc_mutex);
Miao Xieeb73c1b2013-05-15 07:48:22 +00009025 spin_lock(&root->delalloc_lock);
9026 list_splice_init(&root->delalloc_inodes, &splice);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009027 while (!list_empty(&splice)) {
9028 binode = list_entry(splice.next, struct btrfs_inode,
Chris Masonea8c2812008-08-04 23:17:27 -04009029 delalloc_inodes);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009030
Miao Xieeb73c1b2013-05-15 07:48:22 +00009031 list_move_tail(&binode->delalloc_inodes,
9032 &root->delalloc_inodes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04009033 inode = igrab(&binode->vfs_inode);
Miao Xiedf0af1a2013-01-29 10:11:59 +00009034 if (!inode) {
Miao Xieeb73c1b2013-05-15 07:48:22 +00009035 cond_resched_lock(&root->delalloc_lock);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009036 continue;
Miao Xiedf0af1a2013-01-29 10:11:59 +00009037 }
Miao Xieeb73c1b2013-05-15 07:48:22 +00009038 spin_unlock(&root->delalloc_lock);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009039
9040 work = btrfs_alloc_delalloc_work(inode, 0, delay_iput);
David Sterba5d99a9982014-09-29 19:20:37 +02009041 if (!work) {
Josef Bacikf4ab9ea2013-09-17 11:25:44 -04009042 if (delay_iput)
9043 btrfs_add_delayed_iput(inode);
9044 else
9045 iput(inode);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009046 ret = -ENOMEM;
Wang Shilonga1ecaab2014-04-02 19:53:32 +08009047 goto out;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04009048 }
Miao Xie1eafa6c2013-01-22 10:49:00 +00009049 list_add_tail(&work->list, &works);
Qu Wenruoa44903a2014-02-28 10:46:09 +08009050 btrfs_queue_work(root->fs_info->flush_workers,
9051 &work->work);
Miao Xie6c255e62014-03-06 13:55:01 +08009052 ret++;
9053 if (nr != -1 && ret >= nr)
Wang Shilonga1ecaab2014-04-02 19:53:32 +08009054 goto out;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04009055 cond_resched();
Miao Xieeb73c1b2013-05-15 07:48:22 +00009056 spin_lock(&root->delalloc_lock);
Chris Masonea8c2812008-08-04 23:17:27 -04009057 }
Miao Xieeb73c1b2013-05-15 07:48:22 +00009058 spin_unlock(&root->delalloc_lock);
Chris Mason8c8bee12008-09-29 11:19:10 -04009059
Wang Shilonga1ecaab2014-04-02 19:53:32 +08009060out:
Miao Xie1eafa6c2013-01-22 10:49:00 +00009061 list_for_each_entry_safe(work, next, &works, list) {
9062 list_del_init(&work->list);
9063 btrfs_wait_and_free_delalloc_work(work);
9064 }
9065
Miao Xieeb73c1b2013-05-15 07:48:22 +00009066 if (!list_empty_careful(&splice)) {
9067 spin_lock(&root->delalloc_lock);
9068 list_splice_tail(&splice, &root->delalloc_inodes);
9069 spin_unlock(&root->delalloc_lock);
9070 }
Miao Xie573bfb72014-03-06 13:55:03 +08009071 mutex_unlock(&root->delalloc_mutex);
Miao Xieeb73c1b2013-05-15 07:48:22 +00009072 return ret;
9073}
9074
9075int btrfs_start_delalloc_inodes(struct btrfs_root *root, int delay_iput)
9076{
9077 int ret;
9078
Wang Shilong2c21b4d2014-01-14 19:42:20 +08009079 if (test_bit(BTRFS_FS_STATE_ERROR, &root->fs_info->fs_state))
Miao Xieeb73c1b2013-05-15 07:48:22 +00009080 return -EROFS;
9081
Miao Xie6c255e62014-03-06 13:55:01 +08009082 ret = __start_delalloc_inodes(root, delay_iput, -1);
9083 if (ret > 0)
9084 ret = 0;
Miao Xieeb73c1b2013-05-15 07:48:22 +00009085 /*
9086 * the filemap_flush will queue IO into the worker threads, but
Chris Mason8c8bee12008-09-29 11:19:10 -04009087 * we have to make sure the IO is actually started and that
9088 * ordered extents get created before we return
9089 */
9090 atomic_inc(&root->fs_info->async_submit_draining);
Chris Masond3977122009-01-05 21:25:51 -05009091 while (atomic_read(&root->fs_info->nr_async_submits) ||
Chris Mason771ed682008-11-06 22:02:51 -05009092 atomic_read(&root->fs_info->async_delalloc_pages)) {
Chris Mason8c8bee12008-09-29 11:19:10 -04009093 wait_event(root->fs_info->async_submit_wait,
Chris Mason771ed682008-11-06 22:02:51 -05009094 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
9095 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
Chris Mason8c8bee12008-09-29 11:19:10 -04009096 }
9097 atomic_dec(&root->fs_info->async_submit_draining);
Miao Xieeb73c1b2013-05-15 07:48:22 +00009098 return ret;
9099}
9100
Miao Xie6c255e62014-03-06 13:55:01 +08009101int btrfs_start_delalloc_roots(struct btrfs_fs_info *fs_info, int delay_iput,
9102 int nr)
Miao Xieeb73c1b2013-05-15 07:48:22 +00009103{
9104 struct btrfs_root *root;
9105 struct list_head splice;
9106 int ret;
9107
Wang Shilong2c21b4d2014-01-14 19:42:20 +08009108 if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state))
Miao Xieeb73c1b2013-05-15 07:48:22 +00009109 return -EROFS;
9110
9111 INIT_LIST_HEAD(&splice);
9112
Miao Xie573bfb72014-03-06 13:55:03 +08009113 mutex_lock(&fs_info->delalloc_root_mutex);
Miao Xieeb73c1b2013-05-15 07:48:22 +00009114 spin_lock(&fs_info->delalloc_root_lock);
9115 list_splice_init(&fs_info->delalloc_roots, &splice);
Miao Xie6c255e62014-03-06 13:55:01 +08009116 while (!list_empty(&splice) && nr) {
Miao Xieeb73c1b2013-05-15 07:48:22 +00009117 root = list_first_entry(&splice, struct btrfs_root,
9118 delalloc_root);
9119 root = btrfs_grab_fs_root(root);
9120 BUG_ON(!root);
9121 list_move_tail(&root->delalloc_root,
9122 &fs_info->delalloc_roots);
9123 spin_unlock(&fs_info->delalloc_root_lock);
9124
Miao Xie6c255e62014-03-06 13:55:01 +08009125 ret = __start_delalloc_inodes(root, delay_iput, nr);
Miao Xieeb73c1b2013-05-15 07:48:22 +00009126 btrfs_put_fs_root(root);
Miao Xie6c255e62014-03-06 13:55:01 +08009127 if (ret < 0)
Miao Xieeb73c1b2013-05-15 07:48:22 +00009128 goto out;
9129
Miao Xie6c255e62014-03-06 13:55:01 +08009130 if (nr != -1) {
9131 nr -= ret;
9132 WARN_ON(nr < 0);
9133 }
Miao Xieeb73c1b2013-05-15 07:48:22 +00009134 spin_lock(&fs_info->delalloc_root_lock);
9135 }
9136 spin_unlock(&fs_info->delalloc_root_lock);
9137
Miao Xie6c255e62014-03-06 13:55:01 +08009138 ret = 0;
Miao Xieeb73c1b2013-05-15 07:48:22 +00009139 atomic_inc(&fs_info->async_submit_draining);
9140 while (atomic_read(&fs_info->nr_async_submits) ||
9141 atomic_read(&fs_info->async_delalloc_pages)) {
9142 wait_event(fs_info->async_submit_wait,
9143 (atomic_read(&fs_info->nr_async_submits) == 0 &&
9144 atomic_read(&fs_info->async_delalloc_pages) == 0));
9145 }
9146 atomic_dec(&fs_info->async_submit_draining);
Miao Xie8ccf6f192012-10-25 09:28:04 +00009147out:
Miao Xie1eafa6c2013-01-22 10:49:00 +00009148 if (!list_empty_careful(&splice)) {
Miao Xieeb73c1b2013-05-15 07:48:22 +00009149 spin_lock(&fs_info->delalloc_root_lock);
9150 list_splice_tail(&splice, &fs_info->delalloc_roots);
9151 spin_unlock(&fs_info->delalloc_root_lock);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009152 }
Miao Xie573bfb72014-03-06 13:55:03 +08009153 mutex_unlock(&fs_info->delalloc_root_mutex);
Miao Xie8ccf6f192012-10-25 09:28:04 +00009154 return ret;
Chris Masonea8c2812008-08-04 23:17:27 -04009155}
9156
Chris Mason39279cc2007-06-12 06:35:45 -04009157static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
9158 const char *symname)
9159{
9160 struct btrfs_trans_handle *trans;
9161 struct btrfs_root *root = BTRFS_I(dir)->root;
9162 struct btrfs_path *path;
9163 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05009164 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04009165 int err;
9166 int drop_inode = 0;
9167 u64 objectid;
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05309168 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04009169 int name_len;
9170 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04009171 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04009172 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04009173 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04009174
Filipe David Borba Mananaf06becc2013-09-16 09:53:28 +01009175 name_len = strlen(symname);
Chris Mason39279cc2007-06-12 06:35:45 -04009176 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
9177 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05009178
Josef Bacik9ed74f22009-09-11 16:12:44 -04009179 /*
9180 * 2 items for inode item and ref
9181 * 2 items for dir items
9182 * 1 item for xattr if selinux is on
9183 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04009184 trans = btrfs_start_transaction(root, 5);
9185 if (IS_ERR(trans))
9186 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05009187
Li Zefan581bb052011-04-20 10:06:11 +08009188 err = btrfs_find_free_ino(root, &objectid);
9189 if (err)
9190 goto out_unlock;
9191
Josef Bacikaec74772008-07-24 12:12:38 -04009192 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08009193 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04009194 S_IFLNK|S_IRWXUGO, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04009195 if (IS_ERR(inode)) {
9196 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04009197 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04009198 }
Chris Mason39279cc2007-06-12 06:35:45 -04009199
Casey Schauflerad19db72011-12-15 10:09:07 -05009200 /*
9201 * If the active LSM wants to access the inode during
9202 * d_instantiate it needs these. Smack checks to see
9203 * if the filesystem supports xattrs by looking at the
9204 * ops vector.
9205 */
9206 inode->i_fop = &btrfs_file_operations;
9207 inode->i_op = &btrfs_file_inode_operations;
Chris Masonb0d5d102014-09-08 13:08:51 -07009208 inode->i_mapping->a_ops = &btrfs_aops;
9209 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
9210 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
9211
9212 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
9213 if (err)
9214 goto out_unlock_inode;
Casey Schauflerad19db72011-12-15 10:09:07 -05009215
Josef Bacika1b075d2010-11-19 20:36:11 +00009216 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04009217 if (err)
Chris Masonb0d5d102014-09-08 13:08:51 -07009218 goto out_unlock_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04009219
9220 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07009221 if (!path) {
9222 err = -ENOMEM;
Chris Masonb0d5d102014-09-08 13:08:51 -07009223 goto out_unlock_inode;
Mark Fashehd8926bb2011-07-13 10:38:47 -07009224 }
Li Zefan33345d012011-04-20 10:31:50 +08009225 key.objectid = btrfs_ino(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04009226 key.offset = 0;
David Sterba962a2982014-06-04 18:41:45 +02009227 key.type = BTRFS_EXTENT_DATA_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -04009228 datasize = btrfs_file_extent_calc_inline_size(name_len);
9229 err = btrfs_insert_empty_item(trans, root, path, &key,
9230 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04009231 if (err) {
Julia Lawallb0839162011-05-14 07:10:51 +00009232 btrfs_free_path(path);
Chris Masonb0d5d102014-09-08 13:08:51 -07009233 goto out_unlock_inode;
Chris Mason54aa1f42007-06-22 14:16:25 -04009234 }
Chris Mason5f39d392007-10-15 16:14:19 -04009235 leaf = path->nodes[0];
9236 ei = btrfs_item_ptr(leaf, path->slots[0],
9237 struct btrfs_file_extent_item);
9238 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
9239 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04009240 BTRFS_FILE_EXTENT_INLINE);
Chris Masonc8b97812008-10-29 14:49:59 -04009241 btrfs_set_file_extent_encryption(leaf, ei, 0);
9242 btrfs_set_file_extent_compression(leaf, ei, 0);
9243 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
9244 btrfs_set_file_extent_ram_bytes(leaf, ei, name_len);
9245
Chris Mason39279cc2007-06-12 06:35:45 -04009246 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04009247 write_extent_buffer(leaf, symname, ptr, name_len);
9248 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04009249 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04009250
Chris Mason39279cc2007-06-12 06:35:45 -04009251 inode->i_op = &btrfs_symlink_inode_operations;
9252 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04009253 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Yan Zhengd899e052008-10-30 14:25:28 -04009254 inode_set_bytes(inode, name_len);
Filipe David Borba Mananaf06becc2013-09-16 09:53:28 +01009255 btrfs_i_size_write(inode, name_len);
Chris Mason54aa1f42007-06-22 14:16:25 -04009256 err = btrfs_update_inode(trans, root, inode);
Chris Masonb0d5d102014-09-08 13:08:51 -07009257 if (err) {
Chris Mason54aa1f42007-06-22 14:16:25 -04009258 drop_inode = 1;
Chris Masonb0d5d102014-09-08 13:08:51 -07009259 goto out_unlock_inode;
9260 }
9261
9262 unlock_new_inode(inode);
9263 d_instantiate(dentry, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04009264
9265out_unlock:
Josef Bacik7ad85bb2012-01-12 19:10:12 -05009266 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04009267 if (drop_inode) {
9268 inode_dec_link_count(inode);
9269 iput(inode);
9270 }
Liu Bob53d3f52012-11-14 14:34:34 +00009271 btrfs_btree_balance_dirty(root);
Chris Mason39279cc2007-06-12 06:35:45 -04009272 return err;
Chris Masonb0d5d102014-09-08 13:08:51 -07009273
9274out_unlock_inode:
9275 drop_inode = 1;
9276 unlock_new_inode(inode);
9277 goto out_unlock;
Chris Mason39279cc2007-06-12 06:35:45 -04009278}
Chris Mason16432982008-04-10 10:23:21 -04009279
Josef Bacik0af3d002010-06-21 14:48:16 -04009280static int __btrfs_prealloc_file_range(struct inode *inode, int mode,
9281 u64 start, u64 num_bytes, u64 min_size,
9282 loff_t actual_len, u64 *alloc_hint,
9283 struct btrfs_trans_handle *trans)
Yan Zhengd899e052008-10-30 14:25:28 -04009284{
Josef Bacik5dc562c2012-08-17 13:14:17 -04009285 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
9286 struct extent_map *em;
Yan Zhengd899e052008-10-30 14:25:28 -04009287 struct btrfs_root *root = BTRFS_I(inode)->root;
9288 struct btrfs_key ins;
Yan Zhengd899e052008-10-30 14:25:28 -04009289 u64 cur_offset = start;
Josef Bacik55a61d12010-11-22 18:50:32 +00009290 u64 i_size;
Chris Mason154ea282013-03-05 11:11:26 -05009291 u64 cur_bytes;
Yan Zhengd899e052008-10-30 14:25:28 -04009292 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04009293 bool own_trans = true;
Yan Zhengd899e052008-10-30 14:25:28 -04009294
Josef Bacik0af3d002010-06-21 14:48:16 -04009295 if (trans)
9296 own_trans = false;
Yan Zhengd899e052008-10-30 14:25:28 -04009297 while (num_bytes > 0) {
Josef Bacik0af3d002010-06-21 14:48:16 -04009298 if (own_trans) {
9299 trans = btrfs_start_transaction(root, 3);
9300 if (IS_ERR(trans)) {
9301 ret = PTR_ERR(trans);
9302 break;
9303 }
Yan Zhengd899e052008-10-30 14:25:28 -04009304 }
Yan, Zheng5a303d52009-11-12 09:34:52 +00009305
Chris Mason154ea282013-03-05 11:11:26 -05009306 cur_bytes = min(num_bytes, 256ULL * 1024 * 1024);
9307 cur_bytes = max(cur_bytes, min_size);
Josef Bacik00361582013-08-14 14:02:47 -04009308 ret = btrfs_reserve_extent(root, cur_bytes, min_size, 0,
Miao Xiee570fd22014-06-19 10:42:50 +08009309 *alloc_hint, &ins, 1, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +00009310 if (ret) {
Josef Bacik0af3d002010-06-21 14:48:16 -04009311 if (own_trans)
9312 btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04009313 break;
Yan, Zheng5a303d52009-11-12 09:34:52 +00009314 }
9315
Yan Zhengd899e052008-10-30 14:25:28 -04009316 ret = insert_reserved_file_extent(trans, inode,
9317 cur_offset, ins.objectid,
9318 ins.offset, ins.offset,
Yan, Zheng920bbbf2009-11-12 09:34:08 +00009319 ins.offset, 0, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04009320 BTRFS_FILE_EXTENT_PREALLOC);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009321 if (ret) {
Josef Bacik857cc2f2013-10-07 15:21:08 -04009322 btrfs_free_reserved_extent(root, ins.objectid,
Miao Xiee570fd22014-06-19 10:42:50 +08009323 ins.offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009324 btrfs_abort_transaction(trans, root, ret);
9325 if (own_trans)
9326 btrfs_end_transaction(trans, root);
9327 break;
9328 }
Chris Masona1ed8352009-09-11 12:27:37 -04009329 btrfs_drop_extent_cache(inode, cur_offset,
9330 cur_offset + ins.offset -1, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +00009331
Josef Bacik5dc562c2012-08-17 13:14:17 -04009332 em = alloc_extent_map();
9333 if (!em) {
9334 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
9335 &BTRFS_I(inode)->runtime_flags);
9336 goto next;
9337 }
9338
9339 em->start = cur_offset;
9340 em->orig_start = cur_offset;
9341 em->len = ins.offset;
9342 em->block_start = ins.objectid;
9343 em->block_len = ins.offset;
Josef Bacikb4939682012-12-03 10:31:19 -05009344 em->orig_block_len = ins.offset;
Josef Bacikcc95bef2013-04-04 14:31:27 -04009345 em->ram_bytes = ins.offset;
Josef Bacik5dc562c2012-08-17 13:14:17 -04009346 em->bdev = root->fs_info->fs_devices->latest_bdev;
9347 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
9348 em->generation = trans->transid;
9349
9350 while (1) {
9351 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04009352 ret = add_extent_mapping(em_tree, em, 1);
Josef Bacik5dc562c2012-08-17 13:14:17 -04009353 write_unlock(&em_tree->lock);
9354 if (ret != -EEXIST)
9355 break;
9356 btrfs_drop_extent_cache(inode, cur_offset,
9357 cur_offset + ins.offset - 1,
9358 0);
9359 }
9360 free_extent_map(em);
9361next:
Yan Zhengd899e052008-10-30 14:25:28 -04009362 num_bytes -= ins.offset;
9363 cur_offset += ins.offset;
Yan, Zhengefa56462010-05-16 10:49:59 -04009364 *alloc_hint = ins.objectid + ins.offset;
Yan, Zheng5a303d52009-11-12 09:34:52 +00009365
Josef Bacik0c4d2d92012-04-05 15:03:02 -04009366 inode_inc_iversion(inode);
Yan Zhengd899e052008-10-30 14:25:28 -04009367 inode->i_ctime = CURRENT_TIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +02009368 BTRFS_I(inode)->flags |= BTRFS_INODE_PREALLOC;
Yan Zhengd899e052008-10-30 14:25:28 -04009369 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
Yan, Zhengefa56462010-05-16 10:49:59 -04009370 (actual_len > inode->i_size) &&
9371 (cur_offset > inode->i_size)) {
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00009372 if (cur_offset > actual_len)
Josef Bacik55a61d12010-11-22 18:50:32 +00009373 i_size = actual_len;
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00009374 else
Josef Bacik55a61d12010-11-22 18:50:32 +00009375 i_size = cur_offset;
9376 i_size_write(inode, i_size);
9377 btrfs_ordered_update_i_size(inode, i_size, NULL);
Yan, Zheng5a303d52009-11-12 09:34:52 +00009378 }
9379
Yan Zhengd899e052008-10-30 14:25:28 -04009380 ret = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009381
9382 if (ret) {
9383 btrfs_abort_transaction(trans, root, ret);
9384 if (own_trans)
9385 btrfs_end_transaction(trans, root);
9386 break;
9387 }
Yan Zhengd899e052008-10-30 14:25:28 -04009388
Josef Bacik0af3d002010-06-21 14:48:16 -04009389 if (own_trans)
9390 btrfs_end_transaction(trans, root);
Yan, Zheng5a303d52009-11-12 09:34:52 +00009391 }
Yan Zhengd899e052008-10-30 14:25:28 -04009392 return ret;
9393}
9394
Josef Bacik0af3d002010-06-21 14:48:16 -04009395int btrfs_prealloc_file_range(struct inode *inode, int mode,
9396 u64 start, u64 num_bytes, u64 min_size,
9397 loff_t actual_len, u64 *alloc_hint)
9398{
9399 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
9400 min_size, actual_len, alloc_hint,
9401 NULL);
9402}
9403
9404int btrfs_prealloc_file_range_trans(struct inode *inode,
9405 struct btrfs_trans_handle *trans, int mode,
9406 u64 start, u64 num_bytes, u64 min_size,
9407 loff_t actual_len, u64 *alloc_hint)
9408{
9409 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
9410 min_size, actual_len, alloc_hint, trans);
9411}
9412
Chris Masone6dcd2d2008-07-17 12:53:50 -04009413static int btrfs_set_page_dirty(struct page *page)
9414{
Chris Masone6dcd2d2008-07-17 12:53:50 -04009415 return __set_page_dirty_nobuffers(page);
9416}
9417
Al Viro10556cb22011-06-20 19:28:19 -04009418static int btrfs_permission(struct inode *inode, int mask)
Yanfdebe2b2008-01-14 13:26:08 -05009419{
Li Zefanb83cc962010-12-20 16:04:08 +08009420 struct btrfs_root *root = BTRFS_I(inode)->root;
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +00009421 umode_t mode = inode->i_mode;
Li Zefanb83cc962010-12-20 16:04:08 +08009422
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +00009423 if (mask & MAY_WRITE &&
9424 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode))) {
9425 if (btrfs_root_readonly(root))
9426 return -EROFS;
9427 if (BTRFS_I(inode)->flags & BTRFS_INODE_READONLY)
9428 return -EACCES;
9429 }
Al Viro2830ba72011-06-20 19:16:29 -04009430 return generic_permission(inode, mask);
Yanfdebe2b2008-01-14 13:26:08 -05009431}
Chris Mason39279cc2007-06-12 06:35:45 -04009432
Filipe Mananaef3b9af2014-04-27 20:40:45 +01009433static int btrfs_tmpfile(struct inode *dir, struct dentry *dentry, umode_t mode)
9434{
9435 struct btrfs_trans_handle *trans;
9436 struct btrfs_root *root = BTRFS_I(dir)->root;
9437 struct inode *inode = NULL;
9438 u64 objectid;
9439 u64 index;
9440 int ret = 0;
9441
9442 /*
9443 * 5 units required for adding orphan entry
9444 */
9445 trans = btrfs_start_transaction(root, 5);
9446 if (IS_ERR(trans))
9447 return PTR_ERR(trans);
9448
9449 ret = btrfs_find_free_ino(root, &objectid);
9450 if (ret)
9451 goto out;
9452
9453 inode = btrfs_new_inode(trans, root, dir, NULL, 0,
9454 btrfs_ino(dir), objectid, mode, &index);
9455 if (IS_ERR(inode)) {
9456 ret = PTR_ERR(inode);
9457 inode = NULL;
9458 goto out;
9459 }
9460
Filipe Mananaef3b9af2014-04-27 20:40:45 +01009461 inode->i_fop = &btrfs_file_operations;
9462 inode->i_op = &btrfs_file_inode_operations;
9463
9464 inode->i_mapping->a_ops = &btrfs_aops;
9465 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
9466 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
9467
Chris Masonb0d5d102014-09-08 13:08:51 -07009468 ret = btrfs_init_inode_security(trans, inode, dir, NULL);
9469 if (ret)
9470 goto out_inode;
9471
9472 ret = btrfs_update_inode(trans, root, inode);
9473 if (ret)
9474 goto out_inode;
Filipe Mananaef3b9af2014-04-27 20:40:45 +01009475 ret = btrfs_orphan_add(trans, inode);
9476 if (ret)
Chris Masonb0d5d102014-09-08 13:08:51 -07009477 goto out_inode;
Filipe Mananaef3b9af2014-04-27 20:40:45 +01009478
Filipe Manana5762b5c2014-08-01 00:10:32 +01009479 /*
9480 * We set number of links to 0 in btrfs_new_inode(), and here we set
9481 * it to 1 because d_tmpfile() will issue a warning if the count is 0,
9482 * through:
9483 *
9484 * d_tmpfile() -> inode_dec_link_count() -> drop_nlink()
9485 */
9486 set_nlink(inode, 1);
Chris Masonb0d5d102014-09-08 13:08:51 -07009487 unlock_new_inode(inode);
Filipe Mananaef3b9af2014-04-27 20:40:45 +01009488 d_tmpfile(dentry, inode);
9489 mark_inode_dirty(inode);
9490
9491out:
9492 btrfs_end_transaction(trans, root);
9493 if (ret)
9494 iput(inode);
9495 btrfs_balance_delayed_items(root);
9496 btrfs_btree_balance_dirty(root);
Filipe Mananaef3b9af2014-04-27 20:40:45 +01009497 return ret;
Chris Masonb0d5d102014-09-08 13:08:51 -07009498
9499out_inode:
9500 unlock_new_inode(inode);
9501 goto out;
9502
Filipe Mananaef3b9af2014-04-27 20:40:45 +01009503}
9504
Filipe Mananab38ef712014-11-13 17:01:45 +00009505/* Inspired by filemap_check_errors() */
9506int btrfs_inode_check_errors(struct inode *inode)
9507{
9508 int ret = 0;
9509
9510 if (test_bit(AS_ENOSPC, &inode->i_mapping->flags) &&
9511 test_and_clear_bit(AS_ENOSPC, &inode->i_mapping->flags))
9512 ret = -ENOSPC;
9513 if (test_bit(AS_EIO, &inode->i_mapping->flags) &&
9514 test_and_clear_bit(AS_EIO, &inode->i_mapping->flags))
9515 ret = -EIO;
9516
9517 return ret;
9518}
9519
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07009520static const struct inode_operations btrfs_dir_inode_operations = {
Chris Mason3394e162008-11-17 20:42:26 -05009521 .getattr = btrfs_getattr,
Chris Mason39279cc2007-06-12 06:35:45 -04009522 .lookup = btrfs_lookup,
9523 .create = btrfs_create,
9524 .unlink = btrfs_unlink,
9525 .link = btrfs_link,
9526 .mkdir = btrfs_mkdir,
9527 .rmdir = btrfs_rmdir,
Miklos Szeredi80ace852014-07-23 15:15:32 +02009528 .rename2 = btrfs_rename2,
Chris Mason39279cc2007-06-12 06:35:45 -04009529 .symlink = btrfs_symlink,
9530 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04009531 .mknod = btrfs_mknod,
Christoph Hellwig95819c02008-08-28 06:21:17 -04009532 .setxattr = btrfs_setxattr,
9533 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05009534 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04009535 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05009536 .permission = btrfs_permission,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02009537 .get_acl = btrfs_get_acl,
Christoph Hellwig996a7102013-12-20 05:16:43 -08009538 .set_acl = btrfs_set_acl,
Guangyu Sun93fd63c2013-09-16 10:42:03 -07009539 .update_time = btrfs_update_time,
Filipe Mananaef3b9af2014-04-27 20:40:45 +01009540 .tmpfile = btrfs_tmpfile,
Chris Mason39279cc2007-06-12 06:35:45 -04009541};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07009542static const struct inode_operations btrfs_dir_ro_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04009543 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -05009544 .permission = btrfs_permission,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02009545 .get_acl = btrfs_get_acl,
Christoph Hellwig996a7102013-12-20 05:16:43 -08009546 .set_acl = btrfs_set_acl,
Guangyu Sun93fd63c2013-09-16 10:42:03 -07009547 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -04009548};
Yan, Zheng76dda932009-09-21 16:00:26 -04009549
Alexey Dobriyan828c0952009-10-01 15:43:56 -07009550static const struct file_operations btrfs_dir_file_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04009551 .llseek = generic_file_llseek,
9552 .read = generic_read_dir,
Al Viro9cdda8d2013-05-22 16:48:09 -04009553 .iterate = btrfs_real_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04009554 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04009555#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04009556 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04009557#endif
Sage Weil6bf13c02008-06-10 10:07:39 -04009558 .release = btrfs_release_file,
Chris Masone02119d2008-09-05 16:13:11 -04009559 .fsync = btrfs_sync_file,
Chris Mason39279cc2007-06-12 06:35:45 -04009560};
9561
Chris Masond1310b22008-01-24 16:13:08 -05009562static struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -04009563 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -05009564 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04009565 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04009566 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Masone6dcd2d2008-07-17 12:53:50 -04009567 .writepage_end_io_hook = btrfs_writepage_end_io_hook,
Chris Mason247e7432008-07-17 12:53:51 -04009568 .writepage_start_hook = btrfs_writepage_start_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -05009569 .set_bit_hook = btrfs_set_bit_hook,
9570 .clear_bit_hook = btrfs_clear_bit_hook,
Josef Bacik9ed74f22009-09-11 16:12:44 -04009571 .merge_extent_hook = btrfs_merge_extent_hook,
9572 .split_extent_hook = btrfs_split_extent_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04009573};
9574
Chris Mason35054392009-01-21 13:11:13 -05009575/*
9576 * btrfs doesn't support the bmap operation because swapfiles
9577 * use bmap to make a mapping of extents in the file. They assume
9578 * these extents won't change over the life of the file and they
9579 * use the bmap result to do IO directly to the drive.
9580 *
9581 * the btrfs bmap call would return logical addresses that aren't
9582 * suitable for IO and they also will change frequently as COW
9583 * operations happen. So, swapfile + btrfs == corruption.
9584 *
9585 * For now we're avoiding this by dropping bmap.
9586 */
Alexey Dobriyan7f094102009-09-21 17:01:10 -07009587static const struct address_space_operations btrfs_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04009588 .readpage = btrfs_readpage,
9589 .writepage = btrfs_writepage,
Chris Masonb293f02e2007-11-01 19:45:34 -04009590 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -05009591 .readpages = btrfs_readpages,
Chris Mason16432982008-04-10 10:23:21 -04009592 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -04009593 .invalidatepage = btrfs_invalidatepage,
9594 .releasepage = btrfs_releasepage,
Chris Masone6dcd2d2008-07-17 12:53:50 -04009595 .set_page_dirty = btrfs_set_page_dirty,
Andi Kleen465fdd92009-09-16 11:50:18 +02009596 .error_remove_page = generic_error_remove_page,
Chris Mason39279cc2007-06-12 06:35:45 -04009597};
9598
Alexey Dobriyan7f094102009-09-21 17:01:10 -07009599static const struct address_space_operations btrfs_symlink_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04009600 .readpage = btrfs_readpage,
9601 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -04009602 .invalidatepage = btrfs_invalidatepage,
9603 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -04009604};
9605
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07009606static const struct inode_operations btrfs_file_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04009607 .getattr = btrfs_getattr,
9608 .setattr = btrfs_setattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04009609 .setxattr = btrfs_setxattr,
9610 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05009611 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04009612 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05009613 .permission = btrfs_permission,
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05009614 .fiemap = btrfs_fiemap,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02009615 .get_acl = btrfs_get_acl,
Christoph Hellwig996a7102013-12-20 05:16:43 -08009616 .set_acl = btrfs_set_acl,
Josef Bacike41f9412012-03-26 09:46:47 -04009617 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -04009618};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07009619static const struct inode_operations btrfs_special_inode_operations = {
Josef Bacik618e21d2007-07-11 10:18:17 -04009620 .getattr = btrfs_getattr,
9621 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05009622 .permission = btrfs_permission,
Christoph Hellwig95819c02008-08-28 06:21:17 -04009623 .setxattr = btrfs_setxattr,
9624 .getxattr = btrfs_getxattr,
Josef Bacik33268ea2008-07-24 12:16:36 -04009625 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04009626 .removexattr = btrfs_removexattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02009627 .get_acl = btrfs_get_acl,
Christoph Hellwig996a7102013-12-20 05:16:43 -08009628 .set_acl = btrfs_set_acl,
Josef Bacike41f9412012-03-26 09:46:47 -04009629 .update_time = btrfs_update_time,
Josef Bacik618e21d2007-07-11 10:18:17 -04009630};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07009631static const struct inode_operations btrfs_symlink_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04009632 .readlink = generic_readlink,
9633 .follow_link = page_follow_link_light,
9634 .put_link = page_put_link,
Li Zefanf2095612010-11-19 02:05:24 +00009635 .getattr = btrfs_getattr,
Josef Bacik22c44fe2011-11-30 10:45:38 -05009636 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05009637 .permission = btrfs_permission,
Jim Owens0279b4c2009-02-04 09:29:13 -05009638 .setxattr = btrfs_setxattr,
9639 .getxattr = btrfs_getxattr,
9640 .listxattr = btrfs_listxattr,
9641 .removexattr = btrfs_removexattr,
Josef Bacike41f9412012-03-26 09:46:47 -04009642 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -04009643};
Yan, Zheng76dda932009-09-21 16:00:26 -04009644
Alexey Dobriyan82d339d2009-10-09 09:54:36 -04009645const struct dentry_operations btrfs_dentry_operations = {
Yan, Zheng76dda932009-09-21 16:00:26 -04009646 .d_delete = btrfs_dentry_delete,
Josef Bacikb4aff1f2011-06-28 16:18:59 -04009647 .d_release = btrfs_dentry_release,
Yan, Zheng76dda932009-09-21 16:00:26 -04009648};