blob: e355eb0aea1eccb83fd75d4ba78854caea9d447c [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
Chris Mason8f18cf12008-04-25 16:53:30 -040019#include <linux/kernel.h>
Chris Mason065631f2008-02-20 12:07:25 -050020#include <linux/bio.h>
Chris Mason39279cc2007-06-12 06:35:45 -040021#include <linux/buffer_head.h>
Sage Weilf2eb0a22008-05-02 14:43:14 -040022#include <linux/file.h>
Chris Mason39279cc2007-06-12 06:35:45 -040023#include <linux/fs.h>
24#include <linux/pagemap.h>
25#include <linux/highmem.h>
26#include <linux/time.h>
27#include <linux/init.h>
28#include <linux/string.h>
Chris Mason39279cc2007-06-12 06:35:45 -040029#include <linux/backing-dev.h>
30#include <linux/mpage.h>
31#include <linux/swap.h>
32#include <linux/writeback.h>
33#include <linux/statfs.h>
34#include <linux/compat.h>
Chris Mason9ebefb182007-06-15 13:50:00 -040035#include <linux/bit_spinlock.h>
Josef Bacik5103e942007-11-16 11:45:54 -050036#include <linux/xattr.h>
Josef Bacik33268ea2008-07-24 12:16:36 -040037#include <linux/posix_acl.h>
Yan Zhengd899e052008-10-30 14:25:28 -040038#include <linux/falloc.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090039#include <linux/slab.h>
David Sterba7a36dde2011-05-06 15:33:15 +020040#include <linux/ratelimit.h>
Josef Bacik22c44fe2011-11-30 10:45:38 -050041#include <linux/mount.h>
Chris Mason4b4e25f2008-11-20 10:22:27 -050042#include "compat.h"
Chris Mason39279cc2007-06-12 06:35:45 -040043#include "ctree.h"
44#include "disk-io.h"
45#include "transaction.h"
46#include "btrfs_inode.h"
47#include "ioctl.h"
48#include "print-tree.h"
Chris Masone6dcd2d2008-07-17 12:53:50 -040049#include "ordered-data.h"
Christoph Hellwig95819c02008-08-28 06:21:17 -040050#include "xattr.h"
Chris Masone02119d2008-09-05 16:13:11 -040051#include "tree-log.h"
Jan Schmidt4a54c8c2011-07-22 15:41:52 +020052#include "volumes.h"
Chris Masonc8b97812008-10-29 14:49:59 -040053#include "compression.h"
Chris Masonb4ce94d2009-02-04 09:25:08 -050054#include "locking.h"
Josef Bacikdc89e982011-01-28 17:05:48 -050055#include "free-space-cache.h"
Li Zefan581bb052011-04-20 10:06:11 +080056#include "inode-map.h"
Chris Mason39279cc2007-06-12 06:35:45 -040057
58struct btrfs_iget_args {
59 u64 ino;
60 struct btrfs_root *root;
61};
62
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070063static const struct inode_operations btrfs_dir_inode_operations;
64static const struct inode_operations btrfs_symlink_inode_operations;
65static const struct inode_operations btrfs_dir_ro_inode_operations;
66static const struct inode_operations btrfs_special_inode_operations;
67static const struct inode_operations btrfs_file_inode_operations;
Alexey Dobriyan7f094102009-09-21 17:01:10 -070068static const struct address_space_operations btrfs_aops;
69static const struct address_space_operations btrfs_symlink_aops;
Alexey Dobriyan828c0952009-10-01 15:43:56 -070070static const struct file_operations btrfs_dir_file_operations;
Chris Masond1310b22008-01-24 16:13:08 -050071static struct extent_io_ops btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -040072
73static struct kmem_cache *btrfs_inode_cachep;
74struct kmem_cache *btrfs_trans_handle_cachep;
75struct kmem_cache *btrfs_transaction_cachep;
Chris Mason39279cc2007-06-12 06:35:45 -040076struct kmem_cache *btrfs_path_cachep;
Josef Bacikdc89e982011-01-28 17:05:48 -050077struct kmem_cache *btrfs_free_space_cachep;
Chris Mason39279cc2007-06-12 06:35:45 -040078
79#define S_SHIFT 12
80static unsigned char btrfs_type_by_mode[S_IFMT >> S_SHIFT] = {
81 [S_IFREG >> S_SHIFT] = BTRFS_FT_REG_FILE,
82 [S_IFDIR >> S_SHIFT] = BTRFS_FT_DIR,
83 [S_IFCHR >> S_SHIFT] = BTRFS_FT_CHRDEV,
84 [S_IFBLK >> S_SHIFT] = BTRFS_FT_BLKDEV,
85 [S_IFIFO >> S_SHIFT] = BTRFS_FT_FIFO,
86 [S_IFSOCK >> S_SHIFT] = BTRFS_FT_SOCK,
87 [S_IFLNK >> S_SHIFT] = BTRFS_FT_SYMLINK,
88};
89
Josef Bacika41ad392011-01-31 15:30:16 -050090static int btrfs_setsize(struct inode *inode, loff_t newsize);
91static int btrfs_truncate(struct inode *inode);
Josef Bacik5fd02042012-05-02 14:00:54 -040092static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent);
Chris Mason771ed682008-11-06 22:02:51 -050093static noinline int cow_file_range(struct inode *inode,
94 struct page *locked_page,
95 u64 start, u64 end, int *page_started,
96 unsigned long *nr_written, int unlock);
Chris Mason21151332011-11-10 20:39:08 -050097static noinline int btrfs_update_inode_fallback(struct btrfs_trans_handle *trans,
98 struct btrfs_root *root, struct inode *inode);
Josef Bacik7b128762008-07-24 12:17:14 -040099
Yan, Zhengf34f57a2009-11-12 09:35:27 +0000100static int btrfs_init_inode_security(struct btrfs_trans_handle *trans,
Eric Paris2a7dba32011-02-01 11:05:39 -0500101 struct inode *inode, struct inode *dir,
102 const struct qstr *qstr)
Jim Owens0279b4c2009-02-04 09:29:13 -0500103{
104 int err;
105
Yan, Zhengf34f57a2009-11-12 09:35:27 +0000106 err = btrfs_init_acl(trans, inode, dir);
Jim Owens0279b4c2009-02-04 09:29:13 -0500107 if (!err)
Eric Paris2a7dba32011-02-01 11:05:39 -0500108 err = btrfs_xattr_security_init(trans, inode, dir, qstr);
Jim Owens0279b4c2009-02-04 09:29:13 -0500109 return err;
110}
111
Chris Masond352ac62008-09-29 15:18:18 -0400112/*
Chris Masonc8b97812008-10-29 14:49:59 -0400113 * this does all the hard work for inserting an inline extent into
114 * the btree. The caller should have done a btrfs_drop_extents so that
115 * no overlapping inline items exist in the btree
116 */
Chris Masond3977122009-01-05 21:25:51 -0500117static noinline int insert_inline_extent(struct btrfs_trans_handle *trans,
Chris Masonc8b97812008-10-29 14:49:59 -0400118 struct btrfs_root *root, struct inode *inode,
119 u64 start, size_t size, size_t compressed_size,
Li Zefanfe3f5662011-03-28 08:30:38 +0000120 int compress_type,
Chris Masonc8b97812008-10-29 14:49:59 -0400121 struct page **compressed_pages)
122{
123 struct btrfs_key key;
124 struct btrfs_path *path;
125 struct extent_buffer *leaf;
126 struct page *page = NULL;
127 char *kaddr;
128 unsigned long ptr;
129 struct btrfs_file_extent_item *ei;
130 int err = 0;
131 int ret;
132 size_t cur_size = size;
133 size_t datasize;
134 unsigned long offset;
Chris Masonc8b97812008-10-29 14:49:59 -0400135
Li Zefanfe3f5662011-03-28 08:30:38 +0000136 if (compressed_size && compressed_pages)
Chris Masonc8b97812008-10-29 14:49:59 -0400137 cur_size = compressed_size;
Chris Masonc8b97812008-10-29 14:49:59 -0400138
Chris Masond3977122009-01-05 21:25:51 -0500139 path = btrfs_alloc_path();
140 if (!path)
Chris Masonc8b97812008-10-29 14:49:59 -0400141 return -ENOMEM;
142
Chris Masonb9473432009-03-13 11:00:37 -0400143 path->leave_spinning = 1;
Chris Masonc8b97812008-10-29 14:49:59 -0400144
Li Zefan33345d012011-04-20 10:31:50 +0800145 key.objectid = btrfs_ino(inode);
Chris Masonc8b97812008-10-29 14:49:59 -0400146 key.offset = start;
147 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
Chris Masonc8b97812008-10-29 14:49:59 -0400148 datasize = btrfs_file_extent_calc_inline_size(cur_size);
149
150 inode_add_bytes(inode, size);
151 ret = btrfs_insert_empty_item(trans, root, path, &key,
152 datasize);
Chris Masonc8b97812008-10-29 14:49:59 -0400153 if (ret) {
154 err = ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400155 goto fail;
156 }
157 leaf = path->nodes[0];
158 ei = btrfs_item_ptr(leaf, path->slots[0],
159 struct btrfs_file_extent_item);
160 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
161 btrfs_set_file_extent_type(leaf, ei, BTRFS_FILE_EXTENT_INLINE);
162 btrfs_set_file_extent_encryption(leaf, ei, 0);
163 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
164 btrfs_set_file_extent_ram_bytes(leaf, ei, size);
165 ptr = btrfs_file_extent_inline_start(ei);
166
Li Zefan261507a02010-12-17 14:21:50 +0800167 if (compress_type != BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -0400168 struct page *cpage;
169 int i = 0;
Chris Masond3977122009-01-05 21:25:51 -0500170 while (compressed_size > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -0400171 cpage = compressed_pages[i];
Chris Mason5b050f02008-11-11 09:34:41 -0500172 cur_size = min_t(unsigned long, compressed_size,
Chris Masonc8b97812008-10-29 14:49:59 -0400173 PAGE_CACHE_SIZE);
174
Cong Wang7ac687d2011-11-25 23:14:28 +0800175 kaddr = kmap_atomic(cpage);
Chris Masonc8b97812008-10-29 14:49:59 -0400176 write_extent_buffer(leaf, kaddr, ptr, cur_size);
Cong Wang7ac687d2011-11-25 23:14:28 +0800177 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -0400178
179 i++;
180 ptr += cur_size;
181 compressed_size -= cur_size;
182 }
183 btrfs_set_file_extent_compression(leaf, ei,
Li Zefan261507a02010-12-17 14:21:50 +0800184 compress_type);
Chris Masonc8b97812008-10-29 14:49:59 -0400185 } else {
186 page = find_get_page(inode->i_mapping,
187 start >> PAGE_CACHE_SHIFT);
188 btrfs_set_file_extent_compression(leaf, ei, 0);
Cong Wang7ac687d2011-11-25 23:14:28 +0800189 kaddr = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -0400190 offset = start & (PAGE_CACHE_SIZE - 1);
191 write_extent_buffer(leaf, kaddr + offset, ptr, size);
Cong Wang7ac687d2011-11-25 23:14:28 +0800192 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -0400193 page_cache_release(page);
194 }
195 btrfs_mark_buffer_dirty(leaf);
196 btrfs_free_path(path);
197
Yan, Zhengc2167752009-11-12 09:34:21 +0000198 /*
199 * we're an inline extent, so nobody can
200 * extend the file past i_size without locking
201 * a page we already have locked.
202 *
203 * We must do any isize and inode updates
204 * before we unlock the pages. Otherwise we
205 * could end up racing with unlink.
206 */
Chris Masonc8b97812008-10-29 14:49:59 -0400207 BTRFS_I(inode)->disk_i_size = inode->i_size;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100208 ret = btrfs_update_inode(trans, root, inode);
Yan, Zhengc2167752009-11-12 09:34:21 +0000209
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100210 return ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400211fail:
212 btrfs_free_path(path);
213 return err;
214}
215
216
217/*
218 * conditionally insert an inline extent into the file. This
219 * does the checks required to make sure the data is small enough
220 * to fit as an inline extent.
221 */
Chris Mason7f366cf2009-03-12 20:12:45 -0400222static noinline int cow_file_range_inline(struct btrfs_trans_handle *trans,
Chris Masonc8b97812008-10-29 14:49:59 -0400223 struct btrfs_root *root,
224 struct inode *inode, u64 start, u64 end,
Li Zefanfe3f5662011-03-28 08:30:38 +0000225 size_t compressed_size, int compress_type,
Chris Masonc8b97812008-10-29 14:49:59 -0400226 struct page **compressed_pages)
227{
228 u64 isize = i_size_read(inode);
229 u64 actual_end = min(end + 1, isize);
230 u64 inline_len = actual_end - start;
231 u64 aligned_end = (end + root->sectorsize - 1) &
232 ~((u64)root->sectorsize - 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400233 u64 data_len = inline_len;
234 int ret;
235
236 if (compressed_size)
237 data_len = compressed_size;
238
239 if (start > 0 ||
Chris Mason70b99e62008-10-31 12:46:39 -0400240 actual_end >= PAGE_CACHE_SIZE ||
Chris Masonc8b97812008-10-29 14:49:59 -0400241 data_len >= BTRFS_MAX_INLINE_DATA_SIZE(root) ||
242 (!compressed_size &&
243 (actual_end & (root->sectorsize - 1)) == 0) ||
244 end + 1 < isize ||
245 data_len > root->fs_info->max_inline) {
246 return 1;
247 }
248
Josef Bacik26714852012-08-29 12:24:27 -0400249 ret = btrfs_drop_extents(trans, root, inode, start, aligned_end, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100250 if (ret)
251 return ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400252
253 if (isize > actual_end)
254 inline_len = min_t(u64, isize, actual_end);
255 ret = insert_inline_extent(trans, root, inode, start,
256 inline_len, compressed_size,
Li Zefanfe3f5662011-03-28 08:30:38 +0000257 compress_type, compressed_pages);
Josef Bacik2adcac12012-05-23 16:10:14 -0400258 if (ret && ret != -ENOSPC) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100259 btrfs_abort_transaction(trans, root, ret);
260 return ret;
Josef Bacik2adcac12012-05-23 16:10:14 -0400261 } else if (ret == -ENOSPC) {
262 return 1;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100263 }
Josef Bacik2adcac12012-05-23 16:10:14 -0400264
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400265 btrfs_delalloc_release_metadata(inode, end + 1 - start);
Chris Masona1ed8352009-09-11 12:27:37 -0400266 btrfs_drop_extent_cache(inode, start, aligned_end - 1, 0);
Chris Masonc8b97812008-10-29 14:49:59 -0400267 return 0;
268}
269
Chris Mason771ed682008-11-06 22:02:51 -0500270struct async_extent {
271 u64 start;
272 u64 ram_size;
273 u64 compressed_size;
274 struct page **pages;
275 unsigned long nr_pages;
Li Zefan261507a02010-12-17 14:21:50 +0800276 int compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500277 struct list_head list;
278};
279
280struct async_cow {
281 struct inode *inode;
282 struct btrfs_root *root;
283 struct page *locked_page;
284 u64 start;
285 u64 end;
286 struct list_head extents;
287 struct btrfs_work work;
288};
289
290static noinline int add_async_extent(struct async_cow *cow,
291 u64 start, u64 ram_size,
292 u64 compressed_size,
293 struct page **pages,
Li Zefan261507a02010-12-17 14:21:50 +0800294 unsigned long nr_pages,
295 int compress_type)
Chris Mason771ed682008-11-06 22:02:51 -0500296{
297 struct async_extent *async_extent;
298
299 async_extent = kmalloc(sizeof(*async_extent), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100300 BUG_ON(!async_extent); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -0500301 async_extent->start = start;
302 async_extent->ram_size = ram_size;
303 async_extent->compressed_size = compressed_size;
304 async_extent->pages = pages;
305 async_extent->nr_pages = nr_pages;
Li Zefan261507a02010-12-17 14:21:50 +0800306 async_extent->compress_type = compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500307 list_add_tail(&async_extent->list, &cow->extents);
308 return 0;
309}
310
Chris Masonc8b97812008-10-29 14:49:59 -0400311/*
Chris Mason771ed682008-11-06 22:02:51 -0500312 * we create compressed extents in two phases. The first
313 * phase compresses a range of pages that have already been
314 * locked (both pages and state bits are locked).
Chris Masonc8b97812008-10-29 14:49:59 -0400315 *
Chris Mason771ed682008-11-06 22:02:51 -0500316 * This is done inside an ordered work queue, and the compression
317 * is spread across many cpus. The actual IO submission is step
318 * two, and the ordered work queue takes care of making sure that
319 * happens in the same order things were put onto the queue by
320 * writepages and friends.
Chris Masonc8b97812008-10-29 14:49:59 -0400321 *
Chris Mason771ed682008-11-06 22:02:51 -0500322 * If this code finds it can't get good compression, it puts an
323 * entry onto the work queue to write the uncompressed bytes. This
324 * makes sure that both compressed inodes and uncompressed inodes
Artem Bityutskiyb2570312012-07-25 18:12:06 +0300325 * are written in the same order that the flusher thread sent them
326 * down.
Chris Masond352ac62008-09-29 15:18:18 -0400327 */
Chris Mason771ed682008-11-06 22:02:51 -0500328static noinline int compress_file_range(struct inode *inode,
329 struct page *locked_page,
330 u64 start, u64 end,
331 struct async_cow *async_cow,
332 int *num_added)
Chris Masonb888db2b2007-08-27 16:49:44 -0400333{
334 struct btrfs_root *root = BTRFS_I(inode)->root;
335 struct btrfs_trans_handle *trans;
Chris Masondb945352007-10-15 16:15:53 -0400336 u64 num_bytes;
Chris Masondb945352007-10-15 16:15:53 -0400337 u64 blocksize = root->sectorsize;
Chris Masonc8b97812008-10-29 14:49:59 -0400338 u64 actual_end;
Chris Mason42dc7ba2008-12-15 11:44:56 -0500339 u64 isize = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400340 int ret = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400341 struct page **pages = NULL;
342 unsigned long nr_pages;
343 unsigned long nr_pages_ret = 0;
344 unsigned long total_compressed = 0;
345 unsigned long total_in = 0;
346 unsigned long max_compressed = 128 * 1024;
Chris Mason771ed682008-11-06 22:02:51 -0500347 unsigned long max_uncompressed = 128 * 1024;
Chris Masonc8b97812008-10-29 14:49:59 -0400348 int i;
349 int will_compress;
Li Zefan261507a02010-12-17 14:21:50 +0800350 int compress_type = root->fs_info->compress_type;
Chris Masonb888db2b2007-08-27 16:49:44 -0400351
Liu Bo4cb13e52012-03-29 09:57:45 -0400352 /* if this is a small write inside eof, kick off a defrag */
353 if ((end - start + 1) < 16 * 1024 &&
354 (start > 0 || end + 1 < BTRFS_I(inode)->disk_i_size))
Chris Mason4cb53002011-05-24 15:35:30 -0400355 btrfs_add_inode_defrag(NULL, inode);
356
Chris Mason42dc7ba2008-12-15 11:44:56 -0500357 actual_end = min_t(u64, isize, end + 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400358again:
359 will_compress = 0;
360 nr_pages = (end >> PAGE_CACHE_SHIFT) - (start >> PAGE_CACHE_SHIFT) + 1;
361 nr_pages = min(nr_pages, (128 * 1024UL) / PAGE_CACHE_SIZE);
362
Chris Masonf03d9301f2009-02-04 09:31:06 -0500363 /*
364 * we don't want to send crud past the end of i_size through
365 * compression, that's just a waste of CPU time. So, if the
366 * end of the file is before the start of our current
367 * requested range of bytes, we bail out to the uncompressed
368 * cleanup code that can deal with all of this.
369 *
370 * It isn't really the fastest way to fix things, but this is a
371 * very uncommon corner.
372 */
373 if (actual_end <= start)
374 goto cleanup_and_bail_uncompressed;
375
Chris Masonc8b97812008-10-29 14:49:59 -0400376 total_compressed = actual_end - start;
377
378 /* we want to make sure that amount of ram required to uncompress
379 * an extent is reasonable, so we limit the total size in ram
Chris Mason771ed682008-11-06 22:02:51 -0500380 * of a compressed extent to 128k. This is a crucial number
381 * because it also controls how easily we can spread reads across
382 * cpus for decompression.
383 *
384 * We also want to make sure the amount of IO required to do
385 * a random read is reasonably small, so we limit the size of
386 * a compressed extent to 128k.
Chris Masonc8b97812008-10-29 14:49:59 -0400387 */
388 total_compressed = min(total_compressed, max_uncompressed);
Chris Masondb945352007-10-15 16:15:53 -0400389 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
Chris Masonbe20aa92007-12-17 20:14:01 -0500390 num_bytes = max(blocksize, num_bytes);
Chris Masonc8b97812008-10-29 14:49:59 -0400391 total_in = 0;
392 ret = 0;
Chris Masondb945352007-10-15 16:15:53 -0400393
Chris Mason771ed682008-11-06 22:02:51 -0500394 /*
395 * we do compression for mount -o compress and when the
396 * inode has not been flagged as nocompress. This flag can
397 * change at any time if we discover bad compression ratios.
Chris Masonc8b97812008-10-29 14:49:59 -0400398 */
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200399 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS) &&
Chris Mason1e701a32010-03-11 09:42:04 -0500400 (btrfs_test_opt(root, COMPRESS) ||
Liu Bo75e7cb72011-03-22 10:12:20 +0000401 (BTRFS_I(inode)->force_compress) ||
402 (BTRFS_I(inode)->flags & BTRFS_INODE_COMPRESS))) {
Chris Masonc8b97812008-10-29 14:49:59 -0400403 WARN_ON(pages);
Chris Masoncfbc2462008-10-30 13:22:14 -0400404 pages = kzalloc(sizeof(struct page *) * nr_pages, GFP_NOFS);
Li Zefan560f7d72011-09-08 10:22:01 +0800405 if (!pages) {
406 /* just bail out to the uncompressed code */
407 goto cont;
408 }
Chris Mason179e29e2007-11-01 11:28:41 -0400409
Li Zefan261507a02010-12-17 14:21:50 +0800410 if (BTRFS_I(inode)->force_compress)
411 compress_type = BTRFS_I(inode)->force_compress;
412
413 ret = btrfs_compress_pages(compress_type,
414 inode->i_mapping, start,
415 total_compressed, pages,
416 nr_pages, &nr_pages_ret,
417 &total_in,
418 &total_compressed,
419 max_compressed);
Chris Masonc8b97812008-10-29 14:49:59 -0400420
421 if (!ret) {
422 unsigned long offset = total_compressed &
423 (PAGE_CACHE_SIZE - 1);
424 struct page *page = pages[nr_pages_ret - 1];
425 char *kaddr;
426
427 /* zero the tail end of the last page, we might be
428 * sending it down to disk
429 */
430 if (offset) {
Cong Wang7ac687d2011-11-25 23:14:28 +0800431 kaddr = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -0400432 memset(kaddr + offset, 0,
433 PAGE_CACHE_SIZE - offset);
Cong Wang7ac687d2011-11-25 23:14:28 +0800434 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -0400435 }
436 will_compress = 1;
437 }
438 }
Li Zefan560f7d72011-09-08 10:22:01 +0800439cont:
Chris Masonc8b97812008-10-29 14:49:59 -0400440 if (start == 0) {
Josef Bacik7a7eaa42011-04-13 12:54:33 -0400441 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100442 if (IS_ERR(trans)) {
443 ret = PTR_ERR(trans);
444 trans = NULL;
445 goto cleanup_and_out;
446 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400447 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Mason771ed682008-11-06 22:02:51 -0500448
Chris Masonc8b97812008-10-29 14:49:59 -0400449 /* lets try to make an inline extent */
Chris Mason771ed682008-11-06 22:02:51 -0500450 if (ret || total_in < (actual_end - start)) {
Chris Masonc8b97812008-10-29 14:49:59 -0400451 /* we didn't compress the entire range, try
Chris Mason771ed682008-11-06 22:02:51 -0500452 * to make an uncompressed inline extent.
Chris Masonc8b97812008-10-29 14:49:59 -0400453 */
454 ret = cow_file_range_inline(trans, root, inode,
Li Zefanfe3f5662011-03-28 08:30:38 +0000455 start, end, 0, 0, NULL);
Chris Masonc8b97812008-10-29 14:49:59 -0400456 } else {
Chris Mason771ed682008-11-06 22:02:51 -0500457 /* try making a compressed inline extent */
Chris Masonc8b97812008-10-29 14:49:59 -0400458 ret = cow_file_range_inline(trans, root, inode,
459 start, end,
Li Zefanfe3f5662011-03-28 08:30:38 +0000460 total_compressed,
461 compress_type, pages);
Chris Masonc8b97812008-10-29 14:49:59 -0400462 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100463 if (ret <= 0) {
Chris Mason771ed682008-11-06 22:02:51 -0500464 /*
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100465 * inline extent creation worked or returned error,
466 * we don't need to create any more async work items.
467 * Unlock and free up our temp pages.
Chris Mason771ed682008-11-06 22:02:51 -0500468 */
Chris Masonc8b97812008-10-29 14:49:59 -0400469 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400470 &BTRFS_I(inode)->io_tree,
471 start, end, NULL,
472 EXTENT_CLEAR_UNLOCK_PAGE | EXTENT_CLEAR_DIRTY |
Chris Masona3429ab2009-10-08 12:30:20 -0400473 EXTENT_CLEAR_DELALLOC |
Chris Masona791e352009-10-08 11:27:10 -0400474 EXTENT_SET_WRITEBACK | EXTENT_END_WRITEBACK);
Yan, Zhengc2167752009-11-12 09:34:21 +0000475
476 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400477 goto free_pages_out;
478 }
Yan, Zhengc2167752009-11-12 09:34:21 +0000479 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400480 }
481
482 if (will_compress) {
483 /*
484 * we aren't doing an inline extent round the compressed size
485 * up to a block size boundary so the allocator does sane
486 * things
487 */
488 total_compressed = (total_compressed + blocksize - 1) &
489 ~(blocksize - 1);
490
491 /*
492 * one last check to make sure the compression is really a
493 * win, compare the page count read with the blocks on disk
494 */
495 total_in = (total_in + PAGE_CACHE_SIZE - 1) &
496 ~(PAGE_CACHE_SIZE - 1);
497 if (total_compressed >= total_in) {
498 will_compress = 0;
499 } else {
Chris Masonc8b97812008-10-29 14:49:59 -0400500 num_bytes = total_in;
501 }
502 }
503 if (!will_compress && pages) {
504 /*
505 * the compression code ran but failed to make things smaller,
506 * free any pages it allocated and our page pointer array
507 */
508 for (i = 0; i < nr_pages_ret; i++) {
Chris Mason70b99e62008-10-31 12:46:39 -0400509 WARN_ON(pages[i]->mapping);
Chris Masonc8b97812008-10-29 14:49:59 -0400510 page_cache_release(pages[i]);
511 }
512 kfree(pages);
513 pages = NULL;
514 total_compressed = 0;
515 nr_pages_ret = 0;
516
517 /* flag the file so we don't compress in the future */
Chris Mason1e701a32010-03-11 09:42:04 -0500518 if (!btrfs_test_opt(root, FORCE_COMPRESS) &&
519 !(BTRFS_I(inode)->force_compress)) {
Chris Masona555f812010-01-28 16:18:15 -0500520 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
Chris Mason1e701a32010-03-11 09:42:04 -0500521 }
Chris Masonc8b97812008-10-29 14:49:59 -0400522 }
Chris Mason771ed682008-11-06 22:02:51 -0500523 if (will_compress) {
524 *num_added += 1;
525
526 /* the async work queues will take care of doing actual
527 * allocation on disk for these compressed pages,
528 * and will submit them to the elevator.
529 */
530 add_async_extent(async_cow, start, num_bytes,
Li Zefan261507a02010-12-17 14:21:50 +0800531 total_compressed, pages, nr_pages_ret,
532 compress_type);
Chris Mason771ed682008-11-06 22:02:51 -0500533
Yan, Zheng24ae6362010-12-06 07:02:36 +0000534 if (start + num_bytes < end) {
Chris Mason771ed682008-11-06 22:02:51 -0500535 start += num_bytes;
536 pages = NULL;
537 cond_resched();
538 goto again;
539 }
540 } else {
Chris Masonf03d9301f2009-02-04 09:31:06 -0500541cleanup_and_bail_uncompressed:
Chris Mason771ed682008-11-06 22:02:51 -0500542 /*
543 * No compression, but we still need to write the pages in
544 * the file we've been given so far. redirty the locked
545 * page if it corresponds to our extent and set things up
546 * for the async work queue to run cow_file_range to do
547 * the normal delalloc dance
548 */
549 if (page_offset(locked_page) >= start &&
550 page_offset(locked_page) <= end) {
551 __set_page_dirty_nobuffers(locked_page);
552 /* unlocked later on in the async handlers */
553 }
Li Zefan261507a02010-12-17 14:21:50 +0800554 add_async_extent(async_cow, start, end - start + 1,
555 0, NULL, 0, BTRFS_COMPRESS_NONE);
Chris Mason771ed682008-11-06 22:02:51 -0500556 *num_added += 1;
557 }
558
559out:
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100560 return ret;
Chris Mason771ed682008-11-06 22:02:51 -0500561
562free_pages_out:
563 for (i = 0; i < nr_pages_ret; i++) {
564 WARN_ON(pages[i]->mapping);
565 page_cache_release(pages[i]);
566 }
Chris Masond3977122009-01-05 21:25:51 -0500567 kfree(pages);
Chris Mason771ed682008-11-06 22:02:51 -0500568
569 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100570
571cleanup_and_out:
572 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
573 start, end, NULL,
574 EXTENT_CLEAR_UNLOCK_PAGE |
575 EXTENT_CLEAR_DIRTY |
576 EXTENT_CLEAR_DELALLOC |
577 EXTENT_SET_WRITEBACK |
578 EXTENT_END_WRITEBACK);
579 if (!trans || IS_ERR(trans))
580 btrfs_error(root->fs_info, ret, "Failed to join transaction");
581 else
582 btrfs_abort_transaction(trans, root, ret);
583 goto free_pages_out;
Chris Mason771ed682008-11-06 22:02:51 -0500584}
585
586/*
587 * phase two of compressed writeback. This is the ordered portion
588 * of the code, which only gets called in the order the work was
589 * queued. We walk all the async extents created by compress_file_range
590 * and send them down to the disk.
591 */
592static noinline int submit_compressed_extents(struct inode *inode,
593 struct async_cow *async_cow)
594{
595 struct async_extent *async_extent;
596 u64 alloc_hint = 0;
597 struct btrfs_trans_handle *trans;
598 struct btrfs_key ins;
599 struct extent_map *em;
600 struct btrfs_root *root = BTRFS_I(inode)->root;
601 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
602 struct extent_io_tree *io_tree;
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500603 int ret = 0;
Chris Mason771ed682008-11-06 22:02:51 -0500604
605 if (list_empty(&async_cow->extents))
606 return 0;
607
Chris Mason771ed682008-11-06 22:02:51 -0500608
Chris Masond3977122009-01-05 21:25:51 -0500609 while (!list_empty(&async_cow->extents)) {
Chris Mason771ed682008-11-06 22:02:51 -0500610 async_extent = list_entry(async_cow->extents.next,
611 struct async_extent, list);
612 list_del(&async_extent->list);
613
614 io_tree = &BTRFS_I(inode)->io_tree;
615
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500616retry:
Chris Mason771ed682008-11-06 22:02:51 -0500617 /* did the compression code fall back to uncompressed IO? */
618 if (!async_extent->pages) {
619 int page_started = 0;
620 unsigned long nr_written = 0;
621
622 lock_extent(io_tree, async_extent->start,
Josef Bacik2ac55d42010-02-03 19:33:23 +0000623 async_extent->start +
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100624 async_extent->ram_size - 1);
Chris Mason771ed682008-11-06 22:02:51 -0500625
626 /* allocate blocks */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500627 ret = cow_file_range(inode, async_cow->locked_page,
628 async_extent->start,
629 async_extent->start +
630 async_extent->ram_size - 1,
631 &page_started, &nr_written, 0);
Chris Mason771ed682008-11-06 22:02:51 -0500632
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100633 /* JDM XXX */
634
Chris Mason771ed682008-11-06 22:02:51 -0500635 /*
636 * if page_started, cow_file_range inserted an
637 * inline extent and took care of all the unlocking
638 * and IO for us. Otherwise, we need to submit
639 * all those pages down to the drive.
640 */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500641 if (!page_started && !ret)
Chris Mason771ed682008-11-06 22:02:51 -0500642 extent_write_locked_range(io_tree,
643 inode, async_extent->start,
Chris Masond3977122009-01-05 21:25:51 -0500644 async_extent->start +
Chris Mason771ed682008-11-06 22:02:51 -0500645 async_extent->ram_size - 1,
646 btrfs_get_extent,
647 WB_SYNC_ALL);
648 kfree(async_extent);
649 cond_resched();
650 continue;
651 }
652
653 lock_extent(io_tree, async_extent->start,
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100654 async_extent->start + async_extent->ram_size - 1);
Chris Mason771ed682008-11-06 22:02:51 -0500655
Josef Bacik7a7eaa42011-04-13 12:54:33 -0400656 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100657 if (IS_ERR(trans)) {
658 ret = PTR_ERR(trans);
659 } else {
660 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
661 ret = btrfs_reserve_extent(trans, root,
Chris Mason771ed682008-11-06 22:02:51 -0500662 async_extent->compressed_size,
663 async_extent->compressed_size,
Josef Bacik81c9ad22012-01-18 10:56:06 -0500664 0, alloc_hint, &ins, 1);
Miao Xie962197b2012-09-11 23:27:35 -0600665 if (ret && ret != -ENOSPC)
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100666 btrfs_abort_transaction(trans, root, ret);
667 btrfs_end_transaction(trans, root);
668 }
Yan, Zhengc2167752009-11-12 09:34:21 +0000669
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500670 if (ret) {
671 int i;
672 for (i = 0; i < async_extent->nr_pages; i++) {
673 WARN_ON(async_extent->pages[i]->mapping);
674 page_cache_release(async_extent->pages[i]);
675 }
676 kfree(async_extent->pages);
677 async_extent->nr_pages = 0;
678 async_extent->pages = NULL;
679 unlock_extent(io_tree, async_extent->start,
680 async_extent->start +
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100681 async_extent->ram_size - 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100682 if (ret == -ENOSPC)
683 goto retry;
684 goto out_free; /* JDM: Requeue? */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500685 }
686
Yan, Zhengc2167752009-11-12 09:34:21 +0000687 /*
688 * here we're doing allocation and writeback of the
689 * compressed pages
690 */
691 btrfs_drop_extent_cache(inode, async_extent->start,
692 async_extent->start +
693 async_extent->ram_size - 1, 0);
694
David Sterba172ddd62011-04-21 00:48:27 +0200695 em = alloc_extent_map();
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100696 BUG_ON(!em); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -0500697 em->start = async_extent->start;
698 em->len = async_extent->ram_size;
Chris Mason445a6942008-11-10 11:53:33 -0500699 em->orig_start = em->start;
Chris Mason771ed682008-11-06 22:02:51 -0500700
701 em->block_start = ins.objectid;
702 em->block_len = ins.offset;
703 em->bdev = root->fs_info->fs_devices->latest_bdev;
Li Zefan261507a02010-12-17 14:21:50 +0800704 em->compress_type = async_extent->compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500705 set_bit(EXTENT_FLAG_PINNED, &em->flags);
706 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
707
Chris Masond3977122009-01-05 21:25:51 -0500708 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -0400709 write_lock(&em_tree->lock);
Chris Mason771ed682008-11-06 22:02:51 -0500710 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -0400711 write_unlock(&em_tree->lock);
Chris Mason771ed682008-11-06 22:02:51 -0500712 if (ret != -EEXIST) {
713 free_extent_map(em);
714 break;
715 }
716 btrfs_drop_extent_cache(inode, async_extent->start,
717 async_extent->start +
718 async_extent->ram_size - 1, 0);
719 }
720
Li Zefan261507a02010-12-17 14:21:50 +0800721 ret = btrfs_add_ordered_extent_compress(inode,
722 async_extent->start,
723 ins.objectid,
724 async_extent->ram_size,
725 ins.offset,
726 BTRFS_ORDERED_COMPRESSED,
727 async_extent->compress_type);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100728 BUG_ON(ret); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -0500729
Chris Mason771ed682008-11-06 22:02:51 -0500730 /*
731 * clear dirty, set writeback and unlock the pages.
732 */
733 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400734 &BTRFS_I(inode)->io_tree,
735 async_extent->start,
736 async_extent->start +
737 async_extent->ram_size - 1,
738 NULL, EXTENT_CLEAR_UNLOCK_PAGE |
739 EXTENT_CLEAR_UNLOCK |
Chris Masona3429ab2009-10-08 12:30:20 -0400740 EXTENT_CLEAR_DELALLOC |
Chris Masona791e352009-10-08 11:27:10 -0400741 EXTENT_CLEAR_DIRTY | EXTENT_SET_WRITEBACK);
Chris Mason771ed682008-11-06 22:02:51 -0500742
743 ret = btrfs_submit_compressed_write(inode,
Chris Masond3977122009-01-05 21:25:51 -0500744 async_extent->start,
745 async_extent->ram_size,
746 ins.objectid,
747 ins.offset, async_extent->pages,
748 async_extent->nr_pages);
Chris Mason771ed682008-11-06 22:02:51 -0500749
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100750 BUG_ON(ret); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -0500751 alloc_hint = ins.objectid + ins.offset;
752 kfree(async_extent);
753 cond_resched();
754 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100755 ret = 0;
756out:
757 return ret;
758out_free:
759 kfree(async_extent);
760 goto out;
Chris Mason771ed682008-11-06 22:02:51 -0500761}
762
Josef Bacik4b46fce2010-05-23 11:00:55 -0400763static u64 get_extent_allocation_hint(struct inode *inode, u64 start,
764 u64 num_bytes)
765{
766 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
767 struct extent_map *em;
768 u64 alloc_hint = 0;
769
770 read_lock(&em_tree->lock);
771 em = search_extent_mapping(em_tree, start, num_bytes);
772 if (em) {
773 /*
774 * if block start isn't an actual block number then find the
775 * first block in this inode and use that as a hint. If that
776 * block is also bogus then just don't worry about it.
777 */
778 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
779 free_extent_map(em);
780 em = search_extent_mapping(em_tree, 0, 0);
781 if (em && em->block_start < EXTENT_MAP_LAST_BYTE)
782 alloc_hint = em->block_start;
783 if (em)
784 free_extent_map(em);
785 } else {
786 alloc_hint = em->block_start;
787 free_extent_map(em);
788 }
789 }
790 read_unlock(&em_tree->lock);
791
792 return alloc_hint;
793}
794
Chris Mason771ed682008-11-06 22:02:51 -0500795/*
796 * when extent_io.c finds a delayed allocation range in the file,
797 * the call backs end up in this code. The basic idea is to
798 * allocate extents on disk for the range, and create ordered data structs
799 * in ram to track those extents.
800 *
801 * locked_page is the page that writepage had locked already. We use
802 * it to make sure we don't do extra locks or unlocks.
803 *
804 * *page_started is set to one if we unlock locked_page and do everything
805 * required to start IO on it. It may be clean and already done with
806 * IO when we return.
807 */
808static noinline int cow_file_range(struct inode *inode,
809 struct page *locked_page,
810 u64 start, u64 end, int *page_started,
811 unsigned long *nr_written,
812 int unlock)
813{
814 struct btrfs_root *root = BTRFS_I(inode)->root;
815 struct btrfs_trans_handle *trans;
816 u64 alloc_hint = 0;
817 u64 num_bytes;
818 unsigned long ram_size;
819 u64 disk_num_bytes;
820 u64 cur_alloc_size;
821 u64 blocksize = root->sectorsize;
Chris Mason771ed682008-11-06 22:02:51 -0500822 struct btrfs_key ins;
823 struct extent_map *em;
824 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
825 int ret = 0;
826
Liu Bo83eea1f2012-07-10 05:28:39 -0600827 BUG_ON(btrfs_is_free_space_inode(inode));
Josef Bacik7a7eaa42011-04-13 12:54:33 -0400828 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100829 if (IS_ERR(trans)) {
830 extent_clear_unlock_delalloc(inode,
831 &BTRFS_I(inode)->io_tree,
Josef Bacikbeb42dd2012-05-30 15:35:17 -0400832 start, end, locked_page,
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100833 EXTENT_CLEAR_UNLOCK_PAGE |
834 EXTENT_CLEAR_UNLOCK |
835 EXTENT_CLEAR_DELALLOC |
836 EXTENT_CLEAR_DIRTY |
837 EXTENT_SET_WRITEBACK |
838 EXTENT_END_WRITEBACK);
839 return PTR_ERR(trans);
840 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400841 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Mason771ed682008-11-06 22:02:51 -0500842
Chris Mason771ed682008-11-06 22:02:51 -0500843 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
844 num_bytes = max(blocksize, num_bytes);
845 disk_num_bytes = num_bytes;
846 ret = 0;
847
Chris Mason4cb53002011-05-24 15:35:30 -0400848 /* if this is a small write inside eof, kick off defrag */
Liu Bo4cb13e52012-03-29 09:57:45 -0400849 if (num_bytes < 64 * 1024 &&
850 (start > 0 || end + 1 < BTRFS_I(inode)->disk_i_size))
Chris Mason4cb53002011-05-24 15:35:30 -0400851 btrfs_add_inode_defrag(trans, inode);
852
Chris Mason771ed682008-11-06 22:02:51 -0500853 if (start == 0) {
854 /* lets try to make an inline extent */
855 ret = cow_file_range_inline(trans, root, inode,
Li Zefanfe3f5662011-03-28 08:30:38 +0000856 start, end, 0, 0, NULL);
Chris Mason771ed682008-11-06 22:02:51 -0500857 if (ret == 0) {
858 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400859 &BTRFS_I(inode)->io_tree,
860 start, end, NULL,
861 EXTENT_CLEAR_UNLOCK_PAGE |
862 EXTENT_CLEAR_UNLOCK |
863 EXTENT_CLEAR_DELALLOC |
864 EXTENT_CLEAR_DIRTY |
865 EXTENT_SET_WRITEBACK |
866 EXTENT_END_WRITEBACK);
Yan, Zhengc2167752009-11-12 09:34:21 +0000867
Chris Mason771ed682008-11-06 22:02:51 -0500868 *nr_written = *nr_written +
869 (end - start + PAGE_CACHE_SIZE) / PAGE_CACHE_SIZE;
870 *page_started = 1;
Chris Mason771ed682008-11-06 22:02:51 -0500871 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100872 } else if (ret < 0) {
873 btrfs_abort_transaction(trans, root, ret);
874 goto out_unlock;
Chris Mason771ed682008-11-06 22:02:51 -0500875 }
876 }
Chris Masonc8b97812008-10-29 14:49:59 -0400877
878 BUG_ON(disk_num_bytes >
David Sterba6c417612011-04-13 15:41:04 +0200879 btrfs_super_total_bytes(root->fs_info->super_copy));
Chris Masonc8b97812008-10-29 14:49:59 -0400880
Josef Bacik4b46fce2010-05-23 11:00:55 -0400881 alloc_hint = get_extent_allocation_hint(inode, start, num_bytes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400882 btrfs_drop_extent_cache(inode, start, start + num_bytes - 1, 0);
Chris Mason3b951512008-04-17 11:29:12 -0400883
Chris Masond3977122009-01-05 21:25:51 -0500884 while (disk_num_bytes > 0) {
Chris Masona791e352009-10-08 11:27:10 -0400885 unsigned long op;
886
Josef Bacik287a0ab2010-03-19 18:07:23 +0000887 cur_alloc_size = disk_num_bytes;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400888 ret = btrfs_reserve_extent(trans, root, cur_alloc_size,
Chris Mason771ed682008-11-06 22:02:51 -0500889 root->sectorsize, 0, alloc_hint,
Josef Bacik81c9ad22012-01-18 10:56:06 -0500890 &ins, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100891 if (ret < 0) {
892 btrfs_abort_transaction(trans, root, ret);
893 goto out_unlock;
894 }
Chris Masond3977122009-01-05 21:25:51 -0500895
David Sterba172ddd62011-04-21 00:48:27 +0200896 em = alloc_extent_map();
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100897 BUG_ON(!em); /* -ENOMEM */
Chris Masone6dcd2d2008-07-17 12:53:50 -0400898 em->start = start;
Chris Mason445a6942008-11-10 11:53:33 -0500899 em->orig_start = em->start;
Chris Mason771ed682008-11-06 22:02:51 -0500900 ram_size = ins.offset;
901 em->len = ins.offset;
Chris Masonc8b97812008-10-29 14:49:59 -0400902
Chris Masone6dcd2d2008-07-17 12:53:50 -0400903 em->block_start = ins.objectid;
Chris Masonc8b97812008-10-29 14:49:59 -0400904 em->block_len = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400905 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -0400906 set_bit(EXTENT_FLAG_PINNED, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -0400907
Chris Masond3977122009-01-05 21:25:51 -0500908 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -0400909 write_lock(&em_tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400910 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -0400911 write_unlock(&em_tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400912 if (ret != -EEXIST) {
913 free_extent_map(em);
914 break;
915 }
916 btrfs_drop_extent_cache(inode, start,
Chris Masonc8b97812008-10-29 14:49:59 -0400917 start + ram_size - 1, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400918 }
919
Chris Mason98d20f62008-04-14 09:46:10 -0400920 cur_alloc_size = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400921 ret = btrfs_add_ordered_extent(inode, start, ins.objectid,
Chris Mason771ed682008-11-06 22:02:51 -0500922 ram_size, cur_alloc_size, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100923 BUG_ON(ret); /* -ENOMEM */
Chris Masonc8b97812008-10-29 14:49:59 -0400924
Yan Zheng17d217f2008-12-12 10:03:38 -0500925 if (root->root_key.objectid ==
926 BTRFS_DATA_RELOC_TREE_OBJECTID) {
927 ret = btrfs_reloc_clone_csums(inode, start,
928 cur_alloc_size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100929 if (ret) {
930 btrfs_abort_transaction(trans, root, ret);
931 goto out_unlock;
932 }
Yan Zheng17d217f2008-12-12 10:03:38 -0500933 }
934
Chris Masond3977122009-01-05 21:25:51 -0500935 if (disk_num_bytes < cur_alloc_size)
Chris Mason3b951512008-04-17 11:29:12 -0400936 break;
Chris Masond3977122009-01-05 21:25:51 -0500937
Chris Masonc8b97812008-10-29 14:49:59 -0400938 /* we're not doing compressed IO, don't unlock the first
939 * page (which the caller expects to stay locked), don't
940 * clear any dirty bits and don't set any writeback bits
Chris Mason8b62b722009-09-02 16:53:46 -0400941 *
942 * Do set the Private2 bit so we know this page was properly
943 * setup for writepage
Chris Masonc8b97812008-10-29 14:49:59 -0400944 */
Chris Masona791e352009-10-08 11:27:10 -0400945 op = unlock ? EXTENT_CLEAR_UNLOCK_PAGE : 0;
946 op |= EXTENT_CLEAR_UNLOCK | EXTENT_CLEAR_DELALLOC |
947 EXTENT_SET_PRIVATE2;
948
Chris Masonc8b97812008-10-29 14:49:59 -0400949 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
950 start, start + ram_size - 1,
Chris Masona791e352009-10-08 11:27:10 -0400951 locked_page, op);
Chris Masonc8b97812008-10-29 14:49:59 -0400952 disk_num_bytes -= cur_alloc_size;
Chris Masonc59f8952007-12-17 20:14:04 -0500953 num_bytes -= cur_alloc_size;
954 alloc_hint = ins.objectid + ins.offset;
955 start += cur_alloc_size;
Chris Masonb888db2b2007-08-27 16:49:44 -0400956 }
Chris Mason771ed682008-11-06 22:02:51 -0500957 ret = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100958out:
Chris Masonb888db2b2007-08-27 16:49:44 -0400959 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400960
Chris Masonbe20aa92007-12-17 20:14:01 -0500961 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100962out_unlock:
963 extent_clear_unlock_delalloc(inode,
964 &BTRFS_I(inode)->io_tree,
Josef Bacikbeb42dd2012-05-30 15:35:17 -0400965 start, end, locked_page,
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100966 EXTENT_CLEAR_UNLOCK_PAGE |
967 EXTENT_CLEAR_UNLOCK |
968 EXTENT_CLEAR_DELALLOC |
969 EXTENT_CLEAR_DIRTY |
970 EXTENT_SET_WRITEBACK |
971 EXTENT_END_WRITEBACK);
972
973 goto out;
Chris Mason771ed682008-11-06 22:02:51 -0500974}
Chris Masonc8b97812008-10-29 14:49:59 -0400975
Chris Mason771ed682008-11-06 22:02:51 -0500976/*
977 * work queue call back to started compression on a file and pages
978 */
979static noinline void async_cow_start(struct btrfs_work *work)
980{
981 struct async_cow *async_cow;
982 int num_added = 0;
983 async_cow = container_of(work, struct async_cow, work);
984
985 compress_file_range(async_cow->inode, async_cow->locked_page,
986 async_cow->start, async_cow->end, async_cow,
987 &num_added);
Josef Bacik8180ef82012-06-08 15:16:12 -0400988 if (num_added == 0) {
Josef Bacikcb77fcd2012-06-15 12:19:48 -0600989 btrfs_add_delayed_iput(async_cow->inode);
Chris Mason771ed682008-11-06 22:02:51 -0500990 async_cow->inode = NULL;
Josef Bacik8180ef82012-06-08 15:16:12 -0400991 }
Chris Mason771ed682008-11-06 22:02:51 -0500992}
993
994/*
995 * work queue call back to submit previously compressed pages
996 */
997static noinline void async_cow_submit(struct btrfs_work *work)
998{
999 struct async_cow *async_cow;
1000 struct btrfs_root *root;
1001 unsigned long nr_pages;
1002
1003 async_cow = container_of(work, struct async_cow, work);
1004
1005 root = async_cow->root;
1006 nr_pages = (async_cow->end - async_cow->start + PAGE_CACHE_SIZE) >>
1007 PAGE_CACHE_SHIFT;
1008
Josef Bacik66657b32012-08-01 15:36:24 -04001009 if (atomic_sub_return(nr_pages, &root->fs_info->async_delalloc_pages) <
Liu Bo287082b2012-06-28 04:02:24 -06001010 5 * 1024 * 1024 &&
Chris Mason771ed682008-11-06 22:02:51 -05001011 waitqueue_active(&root->fs_info->async_submit_wait))
1012 wake_up(&root->fs_info->async_submit_wait);
1013
Chris Masond3977122009-01-05 21:25:51 -05001014 if (async_cow->inode)
Chris Mason771ed682008-11-06 22:02:51 -05001015 submit_compressed_extents(async_cow->inode, async_cow);
Chris Mason771ed682008-11-06 22:02:51 -05001016}
Chris Masonc8b97812008-10-29 14:49:59 -04001017
Chris Mason771ed682008-11-06 22:02:51 -05001018static noinline void async_cow_free(struct btrfs_work *work)
1019{
1020 struct async_cow *async_cow;
1021 async_cow = container_of(work, struct async_cow, work);
Josef Bacik8180ef82012-06-08 15:16:12 -04001022 if (async_cow->inode)
Josef Bacikcb77fcd2012-06-15 12:19:48 -06001023 btrfs_add_delayed_iput(async_cow->inode);
Chris Mason771ed682008-11-06 22:02:51 -05001024 kfree(async_cow);
1025}
1026
1027static int cow_file_range_async(struct inode *inode, struct page *locked_page,
1028 u64 start, u64 end, int *page_started,
1029 unsigned long *nr_written)
1030{
1031 struct async_cow *async_cow;
1032 struct btrfs_root *root = BTRFS_I(inode)->root;
1033 unsigned long nr_pages;
1034 u64 cur_end;
Liu Bo287082b2012-06-28 04:02:24 -06001035 int limit = 10 * 1024 * 1024;
Chris Mason771ed682008-11-06 22:02:51 -05001036
Chris Masona3429ab2009-10-08 12:30:20 -04001037 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, EXTENT_LOCKED,
1038 1, 0, NULL, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -05001039 while (start < end) {
Chris Mason771ed682008-11-06 22:02:51 -05001040 async_cow = kmalloc(sizeof(*async_cow), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001041 BUG_ON(!async_cow); /* -ENOMEM */
Josef Bacik8180ef82012-06-08 15:16:12 -04001042 async_cow->inode = igrab(inode);
Chris Mason771ed682008-11-06 22:02:51 -05001043 async_cow->root = root;
1044 async_cow->locked_page = locked_page;
1045 async_cow->start = start;
1046
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001047 if (BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS)
Chris Mason771ed682008-11-06 22:02:51 -05001048 cur_end = end;
1049 else
1050 cur_end = min(end, start + 512 * 1024 - 1);
1051
1052 async_cow->end = cur_end;
1053 INIT_LIST_HEAD(&async_cow->extents);
1054
1055 async_cow->work.func = async_cow_start;
1056 async_cow->work.ordered_func = async_cow_submit;
1057 async_cow->work.ordered_free = async_cow_free;
1058 async_cow->work.flags = 0;
1059
Chris Mason771ed682008-11-06 22:02:51 -05001060 nr_pages = (cur_end - start + PAGE_CACHE_SIZE) >>
1061 PAGE_CACHE_SHIFT;
1062 atomic_add(nr_pages, &root->fs_info->async_delalloc_pages);
1063
1064 btrfs_queue_worker(&root->fs_info->delalloc_workers,
1065 &async_cow->work);
1066
1067 if (atomic_read(&root->fs_info->async_delalloc_pages) > limit) {
1068 wait_event(root->fs_info->async_submit_wait,
1069 (atomic_read(&root->fs_info->async_delalloc_pages) <
1070 limit));
1071 }
1072
Chris Masond3977122009-01-05 21:25:51 -05001073 while (atomic_read(&root->fs_info->async_submit_draining) &&
Chris Mason771ed682008-11-06 22:02:51 -05001074 atomic_read(&root->fs_info->async_delalloc_pages)) {
1075 wait_event(root->fs_info->async_submit_wait,
1076 (atomic_read(&root->fs_info->async_delalloc_pages) ==
1077 0));
1078 }
1079
1080 *nr_written += nr_pages;
1081 start = cur_end + 1;
1082 }
1083 *page_started = 1;
1084 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05001085}
1086
Chris Masond3977122009-01-05 21:25:51 -05001087static noinline int csum_exist_in_range(struct btrfs_root *root,
Yan Zheng17d217f2008-12-12 10:03:38 -05001088 u64 bytenr, u64 num_bytes)
1089{
1090 int ret;
1091 struct btrfs_ordered_sum *sums;
1092 LIST_HEAD(list);
1093
Yan Zheng07d400a2009-01-06 11:42:00 -05001094 ret = btrfs_lookup_csums_range(root->fs_info->csum_root, bytenr,
Arne Jansena2de7332011-03-08 14:14:00 +01001095 bytenr + num_bytes - 1, &list, 0);
Yan Zheng17d217f2008-12-12 10:03:38 -05001096 if (ret == 0 && list_empty(&list))
1097 return 0;
1098
1099 while (!list_empty(&list)) {
1100 sums = list_entry(list.next, struct btrfs_ordered_sum, list);
1101 list_del(&sums->list);
1102 kfree(sums);
1103 }
1104 return 1;
1105}
1106
Chris Masond352ac62008-09-29 15:18:18 -04001107/*
1108 * when nowcow writeback call back. This checks for snapshots or COW copies
1109 * of the extents that exist in the file, and COWs the file as required.
1110 *
1111 * If no cow copies or snapshots exist, we write directly to the existing
1112 * blocks on disk
1113 */
Chris Mason7f366cf2009-03-12 20:12:45 -04001114static noinline int run_delalloc_nocow(struct inode *inode,
1115 struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001116 u64 start, u64 end, int *page_started, int force,
1117 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001118{
Chris Masonbe20aa92007-12-17 20:14:01 -05001119 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001120 struct btrfs_trans_handle *trans;
Chris Masonbe20aa92007-12-17 20:14:01 -05001121 struct extent_buffer *leaf;
Chris Masonbe20aa92007-12-17 20:14:01 -05001122 struct btrfs_path *path;
Yan Zheng80ff3852008-10-30 14:20:02 -04001123 struct btrfs_file_extent_item *fi;
Chris Masonbe20aa92007-12-17 20:14:01 -05001124 struct btrfs_key found_key;
Yan Zheng80ff3852008-10-30 14:20:02 -04001125 u64 cow_start;
1126 u64 cur_offset;
1127 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001128 u64 extent_offset;
Yan Zheng80ff3852008-10-30 14:20:02 -04001129 u64 disk_bytenr;
1130 u64 num_bytes;
1131 int extent_type;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001132 int ret, err;
Yan Zhengd899e052008-10-30 14:25:28 -04001133 int type;
Yan Zheng80ff3852008-10-30 14:20:02 -04001134 int nocow;
1135 int check_prev = 1;
Li Zefan82d59022011-04-20 10:33:24 +08001136 bool nolock;
Li Zefan33345d012011-04-20 10:31:50 +08001137 u64 ino = btrfs_ino(inode);
Chris Masonbe20aa92007-12-17 20:14:01 -05001138
1139 path = btrfs_alloc_path();
Josef Bacik17ca04a2012-05-31 15:58:55 -04001140 if (!path) {
1141 extent_clear_unlock_delalloc(inode,
1142 &BTRFS_I(inode)->io_tree,
1143 start, end, locked_page,
1144 EXTENT_CLEAR_UNLOCK_PAGE |
1145 EXTENT_CLEAR_UNLOCK |
1146 EXTENT_CLEAR_DELALLOC |
1147 EXTENT_CLEAR_DIRTY |
1148 EXTENT_SET_WRITEBACK |
1149 EXTENT_END_WRITEBACK);
Mark Fashehd8926bb2011-07-13 10:38:47 -07001150 return -ENOMEM;
Josef Bacik17ca04a2012-05-31 15:58:55 -04001151 }
Li Zefan82d59022011-04-20 10:33:24 +08001152
Liu Bo83eea1f2012-07-10 05:28:39 -06001153 nolock = btrfs_is_free_space_inode(inode);
Li Zefan82d59022011-04-20 10:33:24 +08001154
1155 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001156 trans = btrfs_join_transaction_nolock(root);
Li Zefan82d59022011-04-20 10:33:24 +08001157 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001158 trans = btrfs_join_transaction(root);
Chris Masonff5714c2011-05-28 07:00:39 -04001159
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001160 if (IS_ERR(trans)) {
Josef Bacik17ca04a2012-05-31 15:58:55 -04001161 extent_clear_unlock_delalloc(inode,
1162 &BTRFS_I(inode)->io_tree,
1163 start, end, locked_page,
1164 EXTENT_CLEAR_UNLOCK_PAGE |
1165 EXTENT_CLEAR_UNLOCK |
1166 EXTENT_CLEAR_DELALLOC |
1167 EXTENT_CLEAR_DIRTY |
1168 EXTENT_SET_WRITEBACK |
1169 EXTENT_END_WRITEBACK);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001170 btrfs_free_path(path);
1171 return PTR_ERR(trans);
1172 }
1173
Josef Bacik74b21072011-04-13 12:02:53 -04001174 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Masonbe20aa92007-12-17 20:14:01 -05001175
Yan Zheng80ff3852008-10-30 14:20:02 -04001176 cow_start = (u64)-1;
1177 cur_offset = start;
1178 while (1) {
Li Zefan33345d012011-04-20 10:31:50 +08001179 ret = btrfs_lookup_file_extent(trans, root, path, ino,
Yan Zheng80ff3852008-10-30 14:20:02 -04001180 cur_offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001181 if (ret < 0) {
1182 btrfs_abort_transaction(trans, root, ret);
1183 goto error;
1184 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001185 if (ret > 0 && path->slots[0] > 0 && check_prev) {
1186 leaf = path->nodes[0];
1187 btrfs_item_key_to_cpu(leaf, &found_key,
1188 path->slots[0] - 1);
Li Zefan33345d012011-04-20 10:31:50 +08001189 if (found_key.objectid == ino &&
Yan Zheng80ff3852008-10-30 14:20:02 -04001190 found_key.type == BTRFS_EXTENT_DATA_KEY)
1191 path->slots[0]--;
1192 }
1193 check_prev = 0;
1194next_slot:
1195 leaf = path->nodes[0];
1196 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1197 ret = btrfs_next_leaf(root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001198 if (ret < 0) {
1199 btrfs_abort_transaction(trans, root, ret);
1200 goto error;
1201 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001202 if (ret > 0)
1203 break;
1204 leaf = path->nodes[0];
1205 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001206
Yan Zheng80ff3852008-10-30 14:20:02 -04001207 nocow = 0;
1208 disk_bytenr = 0;
Yan Zheng17d217f2008-12-12 10:03:38 -05001209 num_bytes = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001210 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05001211
Li Zefan33345d012011-04-20 10:31:50 +08001212 if (found_key.objectid > ino ||
Yan Zheng80ff3852008-10-30 14:20:02 -04001213 found_key.type > BTRFS_EXTENT_DATA_KEY ||
1214 found_key.offset > end)
1215 break;
Chris Masonbe20aa92007-12-17 20:14:01 -05001216
Yan Zheng80ff3852008-10-30 14:20:02 -04001217 if (found_key.offset > cur_offset) {
1218 extent_end = found_key.offset;
Chris Masone9061e22009-10-09 09:57:45 -04001219 extent_type = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001220 goto out_check;
1221 }
Chris Masonc31f8832008-01-08 15:46:31 -05001222
Yan Zheng80ff3852008-10-30 14:20:02 -04001223 fi = btrfs_item_ptr(leaf, path->slots[0],
1224 struct btrfs_file_extent_item);
1225 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Masonbe20aa92007-12-17 20:14:01 -05001226
Yan Zhengd899e052008-10-30 14:25:28 -04001227 if (extent_type == BTRFS_FILE_EXTENT_REG ||
1228 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001229 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001230 extent_offset = btrfs_file_extent_offset(leaf, fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001231 extent_end = found_key.offset +
1232 btrfs_file_extent_num_bytes(leaf, fi);
1233 if (extent_end <= start) {
1234 path->slots[0]++;
1235 goto next_slot;
1236 }
Yan Zheng17d217f2008-12-12 10:03:38 -05001237 if (disk_bytenr == 0)
1238 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001239 if (btrfs_file_extent_compression(leaf, fi) ||
1240 btrfs_file_extent_encryption(leaf, fi) ||
1241 btrfs_file_extent_other_encoding(leaf, fi))
1242 goto out_check;
Yan Zhengd899e052008-10-30 14:25:28 -04001243 if (extent_type == BTRFS_FILE_EXTENT_REG && !force)
1244 goto out_check;
Yan Zhengd2fb3432008-12-11 16:30:39 -05001245 if (btrfs_extent_readonly(root, disk_bytenr))
Yan Zheng80ff3852008-10-30 14:20:02 -04001246 goto out_check;
Li Zefan33345d012011-04-20 10:31:50 +08001247 if (btrfs_cross_ref_exist(trans, root, ino,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001248 found_key.offset -
1249 extent_offset, disk_bytenr))
Yan Zheng17d217f2008-12-12 10:03:38 -05001250 goto out_check;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001251 disk_bytenr += extent_offset;
Yan Zheng17d217f2008-12-12 10:03:38 -05001252 disk_bytenr += cur_offset - found_key.offset;
1253 num_bytes = min(end + 1, extent_end) - cur_offset;
1254 /*
1255 * force cow if csum exists in the range.
1256 * this ensure that csum for a given extent are
1257 * either valid or do not exist.
1258 */
1259 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
1260 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001261 nocow = 1;
1262 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1263 extent_end = found_key.offset +
1264 btrfs_file_extent_inline_len(leaf, fi);
1265 extent_end = ALIGN(extent_end, root->sectorsize);
1266 } else {
1267 BUG_ON(1);
1268 }
1269out_check:
1270 if (extent_end <= start) {
1271 path->slots[0]++;
1272 goto next_slot;
1273 }
1274 if (!nocow) {
1275 if (cow_start == (u64)-1)
1276 cow_start = cur_offset;
1277 cur_offset = extent_end;
1278 if (cur_offset > end)
1279 break;
1280 path->slots[0]++;
1281 goto next_slot;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001282 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001283
David Sterbab3b4aa72011-04-21 01:20:15 +02001284 btrfs_release_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001285 if (cow_start != (u64)-1) {
1286 ret = cow_file_range(inode, locked_page, cow_start,
Chris Mason771ed682008-11-06 22:02:51 -05001287 found_key.offset - 1, page_started,
1288 nr_written, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001289 if (ret) {
1290 btrfs_abort_transaction(trans, root, ret);
1291 goto error;
1292 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001293 cow_start = (u64)-1;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001294 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001295
Yan Zhengd899e052008-10-30 14:25:28 -04001296 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
1297 struct extent_map *em;
1298 struct extent_map_tree *em_tree;
1299 em_tree = &BTRFS_I(inode)->extent_tree;
David Sterba172ddd62011-04-21 00:48:27 +02001300 em = alloc_extent_map();
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001301 BUG_ON(!em); /* -ENOMEM */
Yan Zhengd899e052008-10-30 14:25:28 -04001302 em->start = cur_offset;
Chris Mason445a6942008-11-10 11:53:33 -05001303 em->orig_start = em->start;
Yan Zhengd899e052008-10-30 14:25:28 -04001304 em->len = num_bytes;
1305 em->block_len = num_bytes;
1306 em->block_start = disk_bytenr;
1307 em->bdev = root->fs_info->fs_devices->latest_bdev;
1308 set_bit(EXTENT_FLAG_PINNED, &em->flags);
Liu Bo4e2f84e2012-08-27 10:52:20 -06001309 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Yan Zhengd899e052008-10-30 14:25:28 -04001310 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04001311 write_lock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001312 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04001313 write_unlock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001314 if (ret != -EEXIST) {
1315 free_extent_map(em);
1316 break;
1317 }
1318 btrfs_drop_extent_cache(inode, em->start,
1319 em->start + em->len - 1, 0);
1320 }
1321 type = BTRFS_ORDERED_PREALLOC;
1322 } else {
1323 type = BTRFS_ORDERED_NOCOW;
1324 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001325
1326 ret = btrfs_add_ordered_extent(inode, cur_offset, disk_bytenr,
Yan Zhengd899e052008-10-30 14:25:28 -04001327 num_bytes, num_bytes, type);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001328 BUG_ON(ret); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -05001329
Yan, Zhengefa56462010-05-16 10:49:59 -04001330 if (root->root_key.objectid ==
1331 BTRFS_DATA_RELOC_TREE_OBJECTID) {
1332 ret = btrfs_reloc_clone_csums(inode, cur_offset,
1333 num_bytes);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001334 if (ret) {
1335 btrfs_abort_transaction(trans, root, ret);
1336 goto error;
1337 }
Yan, Zhengefa56462010-05-16 10:49:59 -04001338 }
1339
Yan Zhengd899e052008-10-30 14:25:28 -04001340 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
Chris Masona791e352009-10-08 11:27:10 -04001341 cur_offset, cur_offset + num_bytes - 1,
1342 locked_page, EXTENT_CLEAR_UNLOCK_PAGE |
1343 EXTENT_CLEAR_UNLOCK | EXTENT_CLEAR_DELALLOC |
1344 EXTENT_SET_PRIVATE2);
Yan Zheng80ff3852008-10-30 14:20:02 -04001345 cur_offset = extent_end;
1346 if (cur_offset > end)
1347 break;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001348 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001349 btrfs_release_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001350
Josef Bacik17ca04a2012-05-31 15:58:55 -04001351 if (cur_offset <= end && cow_start == (u64)-1) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001352 cow_start = cur_offset;
Josef Bacik17ca04a2012-05-31 15:58:55 -04001353 cur_offset = end;
1354 }
1355
Yan Zheng80ff3852008-10-30 14:20:02 -04001356 if (cow_start != (u64)-1) {
1357 ret = cow_file_range(inode, locked_page, cow_start, end,
Chris Mason771ed682008-11-06 22:02:51 -05001358 page_started, nr_written, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001359 if (ret) {
1360 btrfs_abort_transaction(trans, root, ret);
1361 goto error;
1362 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001363 }
1364
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001365error:
Miao Xiea698d0752012-09-20 01:51:59 -06001366 err = btrfs_end_transaction(trans, root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001367 if (!ret)
1368 ret = err;
1369
Josef Bacik17ca04a2012-05-31 15:58:55 -04001370 if (ret && cur_offset < end)
1371 extent_clear_unlock_delalloc(inode,
1372 &BTRFS_I(inode)->io_tree,
1373 cur_offset, end, locked_page,
1374 EXTENT_CLEAR_UNLOCK_PAGE |
1375 EXTENT_CLEAR_UNLOCK |
1376 EXTENT_CLEAR_DELALLOC |
1377 EXTENT_CLEAR_DIRTY |
1378 EXTENT_SET_WRITEBACK |
1379 EXTENT_END_WRITEBACK);
1380
Yan Zheng7ea394f2008-08-05 13:05:02 -04001381 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001382 return ret;
Chris Masonbe20aa92007-12-17 20:14:01 -05001383}
1384
Chris Masond352ac62008-09-29 15:18:18 -04001385/*
1386 * extent_io.c call back to do delayed allocation processing
1387 */
Chris Masonc8b97812008-10-29 14:49:59 -04001388static int run_delalloc_range(struct inode *inode, struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001389 u64 start, u64 end, int *page_started,
1390 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001391{
Chris Masonbe20aa92007-12-17 20:14:01 -05001392 int ret;
Chris Mason7f366cf2009-03-12 20:12:45 -04001393 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masona2135012008-06-25 16:01:30 -04001394
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001395 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) {
Chris Masonc8b97812008-10-29 14:49:59 -04001396 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001397 page_started, 1, nr_written);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001398 } else if (BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC) {
Yan Zhengd899e052008-10-30 14:25:28 -04001399 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001400 page_started, 0, nr_written);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001401 } else if (!btrfs_test_opt(root, COMPRESS) &&
1402 !(BTRFS_I(inode)->force_compress) &&
1403 !(BTRFS_I(inode)->flags & BTRFS_INODE_COMPRESS)) {
Chris Mason7f366cf2009-03-12 20:12:45 -04001404 ret = cow_file_range(inode, locked_page, start, end,
1405 page_started, nr_written, 1);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001406 } else {
1407 set_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
1408 &BTRFS_I(inode)->runtime_flags);
Chris Mason771ed682008-11-06 22:02:51 -05001409 ret = cow_file_range_async(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001410 page_started, nr_written);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001411 }
Chris Masonb888db2b2007-08-27 16:49:44 -04001412 return ret;
1413}
1414
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001415static void btrfs_split_extent_hook(struct inode *inode,
1416 struct extent_state *orig, u64 split)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001417{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001418 /* not delalloc, ignore it */
Josef Bacik9ed74f22009-09-11 16:12:44 -04001419 if (!(orig->state & EXTENT_DELALLOC))
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001420 return;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001421
Josef Bacik9e0baf62011-07-15 15:16:44 +00001422 spin_lock(&BTRFS_I(inode)->lock);
1423 BTRFS_I(inode)->outstanding_extents++;
1424 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001425}
1426
1427/*
1428 * extent_io.c merge_extent_hook, used to track merged delayed allocation
1429 * extents so we can keep track of new extents that are just merged onto old
1430 * extents, such as when we are doing sequential writes, so we can properly
1431 * account for the metadata space we'll need.
1432 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001433static void btrfs_merge_extent_hook(struct inode *inode,
1434 struct extent_state *new,
1435 struct extent_state *other)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001436{
Josef Bacik9ed74f22009-09-11 16:12:44 -04001437 /* not delalloc, ignore it */
1438 if (!(other->state & EXTENT_DELALLOC))
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001439 return;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001440
Josef Bacik9e0baf62011-07-15 15:16:44 +00001441 spin_lock(&BTRFS_I(inode)->lock);
1442 BTRFS_I(inode)->outstanding_extents--;
1443 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001444}
1445
Chris Masond352ac62008-09-29 15:18:18 -04001446/*
1447 * extent_io.c set_bit_hook, used to track delayed allocation
1448 * bytes in this file, and to maintain the list of inodes that
1449 * have pending delalloc work to be done.
1450 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001451static void btrfs_set_bit_hook(struct inode *inode,
1452 struct extent_state *state, int *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001453{
Josef Bacik9ed74f22009-09-11 16:12:44 -04001454
Chris Mason75eff682008-12-15 15:54:40 -05001455 /*
1456 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00001457 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05001458 * bit, which is only set or cleared with irqs on
1459 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001460 if (!(state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001461 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001462 u64 len = state->end + 1 - state->start;
Liu Bo83eea1f2012-07-10 05:28:39 -06001463 bool do_list = !btrfs_is_free_space_inode(inode);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001464
Josef Bacik9e0baf62011-07-15 15:16:44 +00001465 if (*bits & EXTENT_FIRST_DELALLOC) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001466 *bits &= ~EXTENT_FIRST_DELALLOC;
Josef Bacik9e0baf62011-07-15 15:16:44 +00001467 } else {
1468 spin_lock(&BTRFS_I(inode)->lock);
1469 BTRFS_I(inode)->outstanding_extents++;
1470 spin_unlock(&BTRFS_I(inode)->lock);
1471 }
Josef Bacik287a0ab2010-03-19 18:07:23 +00001472
Chris Mason75eff682008-12-15 15:54:40 -05001473 spin_lock(&root->fs_info->delalloc_lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001474 BTRFS_I(inode)->delalloc_bytes += len;
1475 root->fs_info->delalloc_bytes += len;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001476 if (do_list && list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
Chris Masonea8c2812008-08-04 23:17:27 -04001477 list_add_tail(&BTRFS_I(inode)->delalloc_inodes,
1478 &root->fs_info->delalloc_inodes);
1479 }
Chris Mason75eff682008-12-15 15:54:40 -05001480 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason291d6732008-01-29 15:55:23 -05001481 }
Chris Mason291d6732008-01-29 15:55:23 -05001482}
1483
Chris Masond352ac62008-09-29 15:18:18 -04001484/*
1485 * extent_io.c clear_bit_hook, see set_bit_hook for why
1486 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001487static void btrfs_clear_bit_hook(struct inode *inode,
1488 struct extent_state *state, int *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001489{
Chris Mason75eff682008-12-15 15:54:40 -05001490 /*
1491 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00001492 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05001493 * bit, which is only set or cleared with irqs on
1494 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001495 if ((state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001496 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001497 u64 len = state->end + 1 - state->start;
Liu Bo83eea1f2012-07-10 05:28:39 -06001498 bool do_list = !btrfs_is_free_space_inode(inode);
Chris Masonbcbfce82008-04-22 13:26:47 -04001499
Josef Bacik9e0baf62011-07-15 15:16:44 +00001500 if (*bits & EXTENT_FIRST_DELALLOC) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001501 *bits &= ~EXTENT_FIRST_DELALLOC;
Josef Bacik9e0baf62011-07-15 15:16:44 +00001502 } else if (!(*bits & EXTENT_DO_ACCOUNTING)) {
1503 spin_lock(&BTRFS_I(inode)->lock);
1504 BTRFS_I(inode)->outstanding_extents--;
1505 spin_unlock(&BTRFS_I(inode)->lock);
1506 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001507
1508 if (*bits & EXTENT_DO_ACCOUNTING)
1509 btrfs_delalloc_release_metadata(inode, len);
1510
Josef Bacik0cb59c92010-07-02 12:14:14 -04001511 if (root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID
1512 && do_list)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001513 btrfs_free_reserved_data_space(inode, len);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001514
Chris Mason75eff682008-12-15 15:54:40 -05001515 spin_lock(&root->fs_info->delalloc_lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001516 root->fs_info->delalloc_bytes -= len;
1517 BTRFS_I(inode)->delalloc_bytes -= len;
1518
Josef Bacik0cb59c92010-07-02 12:14:14 -04001519 if (do_list && BTRFS_I(inode)->delalloc_bytes == 0 &&
Chris Masonea8c2812008-08-04 23:17:27 -04001520 !list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1521 list_del_init(&BTRFS_I(inode)->delalloc_inodes);
1522 }
Chris Mason75eff682008-12-15 15:54:40 -05001523 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason291d6732008-01-29 15:55:23 -05001524 }
Chris Mason291d6732008-01-29 15:55:23 -05001525}
1526
Chris Masond352ac62008-09-29 15:18:18 -04001527/*
1528 * extent_io.c merge_bio_hook, this must check the chunk tree to make sure
1529 * we don't create bios that span stripes or chunks
1530 */
Chris Mason239b14b2008-03-24 15:02:07 -04001531int btrfs_merge_bio_hook(struct page *page, unsigned long offset,
Chris Masonc8b97812008-10-29 14:49:59 -04001532 size_t size, struct bio *bio,
1533 unsigned long bio_flags)
Chris Mason239b14b2008-03-24 15:02:07 -04001534{
1535 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
1536 struct btrfs_mapping_tree *map_tree;
Chris Masona62b9402008-10-03 16:31:08 -04001537 u64 logical = (u64)bio->bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -04001538 u64 length = 0;
1539 u64 map_length;
Chris Mason239b14b2008-03-24 15:02:07 -04001540 int ret;
1541
Chris Mason771ed682008-11-06 22:02:51 -05001542 if (bio_flags & EXTENT_BIO_COMPRESSED)
1543 return 0;
1544
Chris Masonf2d8d742008-04-21 10:03:05 -04001545 length = bio->bi_size;
Chris Mason239b14b2008-03-24 15:02:07 -04001546 map_tree = &root->fs_info->mapping_tree;
1547 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04001548 ret = btrfs_map_block(map_tree, READ, logical,
Chris Masonf1885912008-04-09 16:28:12 -04001549 &map_length, NULL, 0);
Jeff Mahoney3444a972011-10-03 23:23:13 -04001550 /* Will always return 0 or 1 with map_multi == NULL */
1551 BUG_ON(ret < 0);
Chris Masond3977122009-01-05 21:25:51 -05001552 if (map_length < length + size)
Chris Mason239b14b2008-03-24 15:02:07 -04001553 return 1;
Jeff Mahoney3444a972011-10-03 23:23:13 -04001554 return 0;
Chris Mason239b14b2008-03-24 15:02:07 -04001555}
1556
Chris Masond352ac62008-09-29 15:18:18 -04001557/*
1558 * in order to insert checksums into the metadata in large chunks,
1559 * we wait until bio submission time. All the pages in the bio are
1560 * checksummed and sums are attached onto the ordered extent record.
1561 *
1562 * At IO completion time the cums attached on the ordered extent record
1563 * are inserted into the btree
1564 */
Chris Masond3977122009-01-05 21:25:51 -05001565static int __btrfs_submit_bio_start(struct inode *inode, int rw,
1566 struct bio *bio, int mirror_num,
Chris Masoneaf25d92010-05-25 09:48:28 -04001567 unsigned long bio_flags,
1568 u64 bio_offset)
Chris Mason065631f2008-02-20 12:07:25 -05001569{
Chris Mason065631f2008-02-20 12:07:25 -05001570 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason065631f2008-02-20 12:07:25 -05001571 int ret = 0;
Chris Masone0156402008-04-16 11:15:20 -04001572
Chris Masond20f7042008-12-08 16:58:54 -05001573 ret = btrfs_csum_one_bio(root, inode, bio, 0, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001574 BUG_ON(ret); /* -ENOMEM */
Chris Mason4a69a412008-11-06 22:03:00 -05001575 return 0;
1576}
Chris Masone0156402008-04-16 11:15:20 -04001577
Chris Mason4a69a412008-11-06 22:03:00 -05001578/*
1579 * in order to insert checksums into the metadata in large chunks,
1580 * we wait until bio submission time. All the pages in the bio are
1581 * checksummed and sums are attached onto the ordered extent record.
1582 *
1583 * At IO completion time the cums attached on the ordered extent record
1584 * are inserted into the btree
1585 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001586static int __btrfs_submit_bio_done(struct inode *inode, int rw, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001587 int mirror_num, unsigned long bio_flags,
1588 u64 bio_offset)
Chris Mason4a69a412008-11-06 22:03:00 -05001589{
1590 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason8b712842008-06-11 16:50:36 -04001591 return btrfs_map_bio(root, rw, bio, mirror_num, 1);
Chris Mason44b8bd72008-04-16 11:14:51 -04001592}
1593
Chris Masond352ac62008-09-29 15:18:18 -04001594/*
Chris Masoncad321a2008-12-17 14:51:42 -05001595 * extent_io.c submission hook. This does the right thing for csum calculation
1596 * on write, or reading the csums from the tree before a read
Chris Masond352ac62008-09-29 15:18:18 -04001597 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001598static int btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001599 int mirror_num, unsigned long bio_flags,
1600 u64 bio_offset)
Chris Mason44b8bd72008-04-16 11:14:51 -04001601{
1602 struct btrfs_root *root = BTRFS_I(inode)->root;
1603 int ret = 0;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001604 int skip_sum;
Jeff Mahoney04173412011-10-03 23:23:12 -04001605 int metadata = 0;
Chris Mason44b8bd72008-04-16 11:14:51 -04001606
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001607 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
Chris Masoncad321a2008-12-17 14:51:42 -05001608
Liu Bo83eea1f2012-07-10 05:28:39 -06001609 if (btrfs_is_free_space_inode(inode))
Jeff Mahoney04173412011-10-03 23:23:12 -04001610 metadata = 2;
1611
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001612 if (!(rw & REQ_WRITE)) {
Josef Bacik5fd02042012-05-02 14:00:54 -04001613 ret = btrfs_bio_wq_end_io(root->fs_info, bio, metadata);
1614 if (ret)
1615 return ret;
1616
Chris Masond20f7042008-12-08 16:58:54 -05001617 if (bio_flags & EXTENT_BIO_COMPRESSED) {
Chris Masonc8b97812008-10-29 14:49:59 -04001618 return btrfs_submit_compressed_read(inode, bio,
1619 mirror_num, bio_flags);
Tsutomu Itohc2db1072011-03-01 06:48:31 +00001620 } else if (!skip_sum) {
1621 ret = btrfs_lookup_bio_sums(root, inode, bio, NULL);
1622 if (ret)
1623 return ret;
1624 }
Chris Mason4d1b5fb2008-08-20 09:44:52 -04001625 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001626 } else if (!skip_sum) {
Yan Zheng17d217f2008-12-12 10:03:38 -05001627 /* csum items have already been cloned */
1628 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
1629 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001630 /* we're doing a write, do the async checksumming */
1631 return btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
Chris Mason44b8bd72008-04-16 11:14:51 -04001632 inode, rw, bio, mirror_num,
Chris Masoneaf25d92010-05-25 09:48:28 -04001633 bio_flags, bio_offset,
1634 __btrfs_submit_bio_start,
Chris Mason4a69a412008-11-06 22:03:00 -05001635 __btrfs_submit_bio_done);
Chris Mason19b9bdb2008-10-30 14:23:13 -04001636 }
1637
Chris Mason0b86a832008-03-24 15:01:56 -04001638mapit:
Chris Mason8b712842008-06-11 16:50:36 -04001639 return btrfs_map_bio(root, rw, bio, mirror_num, 0);
Chris Mason065631f2008-02-20 12:07:25 -05001640}
Chris Mason6885f302008-02-20 16:11:05 -05001641
Chris Masond352ac62008-09-29 15:18:18 -04001642/*
1643 * given a list of ordered sums record them in the inode. This happens
1644 * at IO completion time based on sums calculated at bio submission time.
1645 */
Chris Masonba1da2f2008-07-17 12:54:15 -04001646static noinline int add_pending_csums(struct btrfs_trans_handle *trans,
Chris Masone6dcd2d2008-07-17 12:53:50 -04001647 struct inode *inode, u64 file_offset,
1648 struct list_head *list)
1649{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001650 struct btrfs_ordered_sum *sum;
1651
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001652 list_for_each_entry(sum, list, list) {
Chris Masond20f7042008-12-08 16:58:54 -05001653 btrfs_csum_file_blocks(trans,
1654 BTRFS_I(inode)->root->fs_info->csum_root, sum);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001655 }
1656 return 0;
1657}
1658
Josef Bacik2ac55d42010-02-03 19:33:23 +00001659int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end,
1660 struct extent_state **cached_state)
Chris Masonea8c2812008-08-04 23:17:27 -04001661{
Chris Masond3977122009-01-05 21:25:51 -05001662 if ((end & (PAGE_CACHE_SIZE - 1)) == 0)
Chris Mason771ed682008-11-06 22:02:51 -05001663 WARN_ON(1);
Chris Masonea8c2812008-08-04 23:17:27 -04001664 return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001665 cached_state, GFP_NOFS);
Chris Masonea8c2812008-08-04 23:17:27 -04001666}
1667
Chris Masond352ac62008-09-29 15:18:18 -04001668/* see btrfs_writepage_start_hook for details on why this is required */
Chris Mason247e7432008-07-17 12:53:51 -04001669struct btrfs_writepage_fixup {
1670 struct page *page;
1671 struct btrfs_work work;
1672};
1673
Christoph Hellwigb2950862008-12-02 09:54:17 -05001674static void btrfs_writepage_fixup_worker(struct btrfs_work *work)
Chris Mason247e7432008-07-17 12:53:51 -04001675{
1676 struct btrfs_writepage_fixup *fixup;
1677 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00001678 struct extent_state *cached_state = NULL;
Chris Mason247e7432008-07-17 12:53:51 -04001679 struct page *page;
1680 struct inode *inode;
1681 u64 page_start;
1682 u64 page_end;
Jeff Mahoney87826df2012-02-15 16:23:57 +01001683 int ret;
Chris Mason247e7432008-07-17 12:53:51 -04001684
1685 fixup = container_of(work, struct btrfs_writepage_fixup, work);
1686 page = fixup->page;
Chris Mason4a096752008-07-21 10:29:44 -04001687again:
Chris Mason247e7432008-07-17 12:53:51 -04001688 lock_page(page);
1689 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
1690 ClearPageChecked(page);
1691 goto out_page;
1692 }
1693
1694 inode = page->mapping->host;
1695 page_start = page_offset(page);
1696 page_end = page_offset(page) + PAGE_CACHE_SIZE - 1;
1697
Josef Bacik2ac55d42010-02-03 19:33:23 +00001698 lock_extent_bits(&BTRFS_I(inode)->io_tree, page_start, page_end, 0,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001699 &cached_state);
Chris Mason4a096752008-07-21 10:29:44 -04001700
1701 /* already ordered? We're done */
Chris Mason8b62b722009-09-02 16:53:46 -04001702 if (PagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001703 goto out;
Chris Mason4a096752008-07-21 10:29:44 -04001704
1705 ordered = btrfs_lookup_ordered_extent(inode, page_start);
1706 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00001707 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start,
1708 page_end, &cached_state, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -04001709 unlock_page(page);
1710 btrfs_start_ordered_extent(inode, ordered, 1);
Jeff Mahoney87826df2012-02-15 16:23:57 +01001711 btrfs_put_ordered_extent(ordered);
Chris Mason4a096752008-07-21 10:29:44 -04001712 goto again;
1713 }
Chris Mason247e7432008-07-17 12:53:51 -04001714
Jeff Mahoney87826df2012-02-15 16:23:57 +01001715 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
1716 if (ret) {
1717 mapping_set_error(page->mapping, ret);
1718 end_extent_writepage(page, ret, page_start, page_end);
1719 ClearPageChecked(page);
1720 goto out;
1721 }
1722
Josef Bacik2ac55d42010-02-03 19:33:23 +00001723 btrfs_set_extent_delalloc(inode, page_start, page_end, &cached_state);
Chris Mason247e7432008-07-17 12:53:51 -04001724 ClearPageChecked(page);
Jeff Mahoney87826df2012-02-15 16:23:57 +01001725 set_page_dirty(page);
Chris Mason247e7432008-07-17 12:53:51 -04001726out:
Josef Bacik2ac55d42010-02-03 19:33:23 +00001727 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start, page_end,
1728 &cached_state, GFP_NOFS);
Chris Mason247e7432008-07-17 12:53:51 -04001729out_page:
1730 unlock_page(page);
1731 page_cache_release(page);
Miao Xieb897abe2011-01-26 16:19:22 +08001732 kfree(fixup);
Chris Mason247e7432008-07-17 12:53:51 -04001733}
1734
1735/*
1736 * There are a few paths in the higher layers of the kernel that directly
1737 * set the page dirty bit without asking the filesystem if it is a
1738 * good idea. This causes problems because we want to make sure COW
1739 * properly happens and the data=ordered rules are followed.
1740 *
Chris Masonc8b97812008-10-29 14:49:59 -04001741 * In our case any range that doesn't have the ORDERED bit set
Chris Mason247e7432008-07-17 12:53:51 -04001742 * hasn't been properly setup for IO. We kick off an async process
1743 * to fix it up. The async helper will wait for ordered extents, set
1744 * the delalloc bit and make it safe to write the page.
1745 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001746static int btrfs_writepage_start_hook(struct page *page, u64 start, u64 end)
Chris Mason247e7432008-07-17 12:53:51 -04001747{
1748 struct inode *inode = page->mapping->host;
1749 struct btrfs_writepage_fixup *fixup;
1750 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason247e7432008-07-17 12:53:51 -04001751
Chris Mason8b62b722009-09-02 16:53:46 -04001752 /* this page is properly in the ordered list */
1753 if (TestClearPagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001754 return 0;
1755
1756 if (PageChecked(page))
1757 return -EAGAIN;
1758
1759 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
1760 if (!fixup)
1761 return -EAGAIN;
Chris Masonf4219502008-07-22 11:18:09 -04001762
Chris Mason247e7432008-07-17 12:53:51 -04001763 SetPageChecked(page);
1764 page_cache_get(page);
1765 fixup->work.func = btrfs_writepage_fixup_worker;
1766 fixup->page = page;
1767 btrfs_queue_worker(&root->fs_info->fixup_workers, &fixup->work);
Jeff Mahoney87826df2012-02-15 16:23:57 +01001768 return -EBUSY;
Chris Mason247e7432008-07-17 12:53:51 -04001769}
1770
Yan Zhengd899e052008-10-30 14:25:28 -04001771static int insert_reserved_file_extent(struct btrfs_trans_handle *trans,
1772 struct inode *inode, u64 file_pos,
1773 u64 disk_bytenr, u64 disk_num_bytes,
1774 u64 num_bytes, u64 ram_bytes,
1775 u8 compression, u8 encryption,
1776 u16 other_encoding, int extent_type)
1777{
1778 struct btrfs_root *root = BTRFS_I(inode)->root;
1779 struct btrfs_file_extent_item *fi;
1780 struct btrfs_path *path;
1781 struct extent_buffer *leaf;
1782 struct btrfs_key ins;
Yan Zhengd899e052008-10-30 14:25:28 -04001783 int ret;
1784
1785 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07001786 if (!path)
1787 return -ENOMEM;
Yan Zhengd899e052008-10-30 14:25:28 -04001788
Chris Masonb9473432009-03-13 11:00:37 -04001789 path->leave_spinning = 1;
Chris Masona1ed8352009-09-11 12:27:37 -04001790
1791 /*
1792 * we may be replacing one extent in the tree with another.
1793 * The new extent is pinned in the extent map, and we don't want
1794 * to drop it from the cache until it is completely in the btree.
1795 *
1796 * So, tell btrfs_drop_extents to leave this extent in the cache.
1797 * the caller is expected to unpin it and allow it to be merged
1798 * with the others.
1799 */
Josef Bacik5dc562c2012-08-17 13:14:17 -04001800 ret = btrfs_drop_extents(trans, root, inode, file_pos,
Josef Bacik26714852012-08-29 12:24:27 -04001801 file_pos + num_bytes, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001802 if (ret)
1803 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -04001804
Li Zefan33345d012011-04-20 10:31:50 +08001805 ins.objectid = btrfs_ino(inode);
Yan Zhengd899e052008-10-30 14:25:28 -04001806 ins.offset = file_pos;
1807 ins.type = BTRFS_EXTENT_DATA_KEY;
1808 ret = btrfs_insert_empty_item(trans, root, path, &ins, sizeof(*fi));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001809 if (ret)
1810 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -04001811 leaf = path->nodes[0];
1812 fi = btrfs_item_ptr(leaf, path->slots[0],
1813 struct btrfs_file_extent_item);
1814 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
1815 btrfs_set_file_extent_type(leaf, fi, extent_type);
1816 btrfs_set_file_extent_disk_bytenr(leaf, fi, disk_bytenr);
1817 btrfs_set_file_extent_disk_num_bytes(leaf, fi, disk_num_bytes);
1818 btrfs_set_file_extent_offset(leaf, fi, 0);
1819 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
1820 btrfs_set_file_extent_ram_bytes(leaf, fi, ram_bytes);
1821 btrfs_set_file_extent_compression(leaf, fi, compression);
1822 btrfs_set_file_extent_encryption(leaf, fi, encryption);
1823 btrfs_set_file_extent_other_encoding(leaf, fi, other_encoding);
Chris Masonb9473432009-03-13 11:00:37 -04001824
1825 btrfs_unlock_up_safe(path, 1);
1826 btrfs_set_lock_blocking(leaf);
1827
Yan Zhengd899e052008-10-30 14:25:28 -04001828 btrfs_mark_buffer_dirty(leaf);
1829
1830 inode_add_bytes(inode, num_bytes);
Yan Zhengd899e052008-10-30 14:25:28 -04001831
1832 ins.objectid = disk_bytenr;
1833 ins.offset = disk_num_bytes;
1834 ins.type = BTRFS_EXTENT_ITEM_KEY;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001835 ret = btrfs_alloc_reserved_file_extent(trans, root,
1836 root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08001837 btrfs_ino(inode), file_pos, &ins);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001838out:
Yan Zhengd899e052008-10-30 14:25:28 -04001839 btrfs_free_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04001840
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001841 return ret;
Yan Zhengd899e052008-10-30 14:25:28 -04001842}
1843
Chris Mason5d13a982009-03-13 11:41:46 -04001844/*
1845 * helper function for btrfs_finish_ordered_io, this
1846 * just reads in some of the csum leaves to prime them into ram
1847 * before we start the transaction. It limits the amount of btree
1848 * reads required while inside the transaction.
1849 */
Chris Masond352ac62008-09-29 15:18:18 -04001850/* as ordered data IO finishes, this gets called so we can finish
1851 * an ordered extent if the range of bytes in the file it covers are
1852 * fully written.
1853 */
Josef Bacik5fd02042012-05-02 14:00:54 -04001854static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001855{
Josef Bacik5fd02042012-05-02 14:00:54 -04001856 struct inode *inode = ordered_extent->inode;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001857 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001858 struct btrfs_trans_handle *trans = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001859 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Josef Bacik2ac55d42010-02-03 19:33:23 +00001860 struct extent_state *cached_state = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08001861 int compress_type = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001862 int ret;
Li Zefan82d59022011-04-20 10:33:24 +08001863 bool nolock;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001864
Liu Bo83eea1f2012-07-10 05:28:39 -06001865 nolock = btrfs_is_free_space_inode(inode);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001866
Josef Bacik5fd02042012-05-02 14:00:54 -04001867 if (test_bit(BTRFS_ORDERED_IOERR, &ordered_extent->flags)) {
1868 ret = -EIO;
1869 goto out;
1870 }
1871
Yan, Zhengc2167752009-11-12 09:34:21 +00001872 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags)) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001873 BUG_ON(!list_empty(&ordered_extent->list)); /* Logic error */
Yan, Zhengc2167752009-11-12 09:34:21 +00001874 ret = btrfs_ordered_update_i_size(inode, 0, ordered_extent);
1875 if (!ret) {
Josef Bacik0cb59c92010-07-02 12:14:14 -04001876 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001877 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001878 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001879 trans = btrfs_join_transaction(root);
Liu Bod280e5b2012-08-21 21:13:25 -06001880 if (IS_ERR(trans)) {
1881 ret = PTR_ERR(trans);
1882 trans = NULL;
1883 goto out;
1884 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001885 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Mason21151332011-11-10 20:39:08 -05001886 ret = btrfs_update_inode_fallback(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001887 if (ret) /* -ENOMEM or corruption */
1888 btrfs_abort_transaction(trans, root, ret);
Yan, Zhengc2167752009-11-12 09:34:21 +00001889 }
1890 goto out;
1891 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04001892
Josef Bacik2ac55d42010-02-03 19:33:23 +00001893 lock_extent_bits(io_tree, ordered_extent->file_offset,
1894 ordered_extent->file_offset + ordered_extent->len - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001895 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001896
Josef Bacik0cb59c92010-07-02 12:14:14 -04001897 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001898 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001899 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001900 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001901 if (IS_ERR(trans)) {
1902 ret = PTR_ERR(trans);
1903 trans = NULL;
1904 goto out_unlock;
1905 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001906 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Yan, Zhengc2167752009-11-12 09:34:21 +00001907
Chris Masonc8b97812008-10-29 14:49:59 -04001908 if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags))
Li Zefan261507a02010-12-17 14:21:50 +08001909 compress_type = ordered_extent->compress_type;
Yan Zhengd899e052008-10-30 14:25:28 -04001910 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
Li Zefan261507a02010-12-17 14:21:50 +08001911 BUG_ON(compress_type);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001912 ret = btrfs_mark_extent_written(trans, inode,
Yan Zhengd899e052008-10-30 14:25:28 -04001913 ordered_extent->file_offset,
1914 ordered_extent->file_offset +
1915 ordered_extent->len);
Yan Zhengd899e052008-10-30 14:25:28 -04001916 } else {
Josef Bacik0af3d002010-06-21 14:48:16 -04001917 BUG_ON(root == root->fs_info->tree_root);
Yan Zhengd899e052008-10-30 14:25:28 -04001918 ret = insert_reserved_file_extent(trans, inode,
1919 ordered_extent->file_offset,
1920 ordered_extent->start,
1921 ordered_extent->disk_len,
1922 ordered_extent->len,
1923 ordered_extent->len,
Li Zefan261507a02010-12-17 14:21:50 +08001924 compress_type, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04001925 BTRFS_FILE_EXTENT_REG);
Yan Zhengd899e052008-10-30 14:25:28 -04001926 }
Josef Bacik5dc562c2012-08-17 13:14:17 -04001927 unpin_extent_cache(&BTRFS_I(inode)->extent_tree,
1928 ordered_extent->file_offset, ordered_extent->len,
1929 trans->transid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001930 if (ret < 0) {
1931 btrfs_abort_transaction(trans, root, ret);
Josef Bacik5fd02042012-05-02 14:00:54 -04001932 goto out_unlock;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001933 }
Josef Bacik2ac55d42010-02-03 19:33:23 +00001934
Chris Masone6dcd2d2008-07-17 12:53:50 -04001935 add_pending_csums(trans, inode, ordered_extent->file_offset,
1936 &ordered_extent->list);
1937
Josef Bacik1ef30be2011-04-05 19:25:36 -04001938 ret = btrfs_ordered_update_i_size(inode, 0, ordered_extent);
Miao Xiea39f7522011-09-11 10:52:25 -04001939 if (!ret || !test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
Chris Mason21151332011-11-10 20:39:08 -05001940 ret = btrfs_update_inode_fallback(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001941 if (ret) { /* -ENOMEM or corruption */
1942 btrfs_abort_transaction(trans, root, ret);
Josef Bacik5fd02042012-05-02 14:00:54 -04001943 goto out_unlock;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001944 }
Josef Bacik7c735312012-08-13 15:43:26 -04001945 } else {
1946 btrfs_set_inode_last_trans(trans, inode);
Josef Bacik1ef30be2011-04-05 19:25:36 -04001947 }
1948 ret = 0;
Josef Bacik5fd02042012-05-02 14:00:54 -04001949out_unlock:
1950 unlock_extent_cached(io_tree, ordered_extent->file_offset,
1951 ordered_extent->file_offset +
1952 ordered_extent->len - 1, &cached_state, GFP_NOFS);
Yan, Zhengc2167752009-11-12 09:34:21 +00001953out:
Josef Bacik5b0e95b2011-10-06 08:58:24 -04001954 if (root != root->fs_info->tree_root)
Josef Bacik0cb59c92010-07-02 12:14:14 -04001955 btrfs_delalloc_release_metadata(inode, ordered_extent->len);
Miao Xiea698d0752012-09-20 01:51:59 -06001956 if (trans)
1957 btrfs_end_transaction(trans, root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001958
Josef Bacik5fd02042012-05-02 14:00:54 -04001959 if (ret)
1960 clear_extent_uptodate(io_tree, ordered_extent->file_offset,
1961 ordered_extent->file_offset +
1962 ordered_extent->len - 1, NULL, GFP_NOFS);
1963
1964 /*
1965 * This needs to be dont to make sure anybody waiting knows we are done
1966 * upating everything for this ordered extent.
1967 */
1968 btrfs_remove_ordered_extent(inode, ordered_extent);
1969
Chris Masone6dcd2d2008-07-17 12:53:50 -04001970 /* once for us */
1971 btrfs_put_ordered_extent(ordered_extent);
1972 /* once for the tree */
1973 btrfs_put_ordered_extent(ordered_extent);
1974
Josef Bacik5fd02042012-05-02 14:00:54 -04001975 return ret;
1976}
1977
1978static void finish_ordered_fn(struct btrfs_work *work)
1979{
1980 struct btrfs_ordered_extent *ordered_extent;
1981 ordered_extent = container_of(work, struct btrfs_ordered_extent, work);
1982 btrfs_finish_ordered_io(ordered_extent);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001983}
1984
Christoph Hellwigb2950862008-12-02 09:54:17 -05001985static int btrfs_writepage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason211f90e2008-07-18 11:56:15 -04001986 struct extent_state *state, int uptodate)
1987{
Josef Bacik5fd02042012-05-02 14:00:54 -04001988 struct inode *inode = page->mapping->host;
1989 struct btrfs_root *root = BTRFS_I(inode)->root;
1990 struct btrfs_ordered_extent *ordered_extent = NULL;
1991 struct btrfs_workers *workers;
1992
liubo1abe9b82011-03-24 11:18:59 +00001993 trace_btrfs_writepage_end_io_hook(page, start, end, uptodate);
1994
Chris Mason8b62b722009-09-02 16:53:46 -04001995 ClearPagePrivate2(page);
Josef Bacik5fd02042012-05-02 14:00:54 -04001996 if (!btrfs_dec_test_ordered_pending(inode, &ordered_extent, start,
1997 end - start + 1, uptodate))
1998 return 0;
1999
2000 ordered_extent->work.func = finish_ordered_fn;
2001 ordered_extent->work.flags = 0;
2002
Liu Bo83eea1f2012-07-10 05:28:39 -06002003 if (btrfs_is_free_space_inode(inode))
Josef Bacik5fd02042012-05-02 14:00:54 -04002004 workers = &root->fs_info->endio_freespace_worker;
2005 else
2006 workers = &root->fs_info->endio_write_workers;
2007 btrfs_queue_worker(workers, &ordered_extent->work);
2008
2009 return 0;
Chris Mason211f90e2008-07-18 11:56:15 -04002010}
2011
Chris Masond352ac62008-09-29 15:18:18 -04002012/*
Chris Masond352ac62008-09-29 15:18:18 -04002013 * when reads are done, we need to check csums to verify the data is correct
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002014 * if there's a match, we allow the bio to finish. If not, the code in
2015 * extent_io.c will try to find good copies for us.
Chris Masond352ac62008-09-29 15:18:18 -04002016 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05002017static int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end,
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002018 struct extent_state *state, int mirror)
Chris Mason07157aa2007-08-30 08:50:51 -04002019{
Chris Mason35ebb932007-10-30 16:56:53 -04002020 size_t offset = start - ((u64)page->index << PAGE_CACHE_SHIFT);
Chris Mason07157aa2007-08-30 08:50:51 -04002021 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05002022 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -04002023 char *kaddr;
Chris Masonaadfeb62008-01-29 09:10:27 -05002024 u64 private = ~(u32)0;
Chris Mason07157aa2007-08-30 08:50:51 -04002025 int ret;
Chris Masonff79f812007-10-15 16:22:25 -04002026 struct btrfs_root *root = BTRFS_I(inode)->root;
2027 u32 csum = ~(u32)0;
Chris Masond1310b22008-01-24 16:13:08 -05002028
Chris Masond20f7042008-12-08 16:58:54 -05002029 if (PageChecked(page)) {
2030 ClearPageChecked(page);
2031 goto good;
2032 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02002033
2034 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)
Jan Schmidt08d2f342011-05-04 16:18:50 +02002035 goto good;
Chris Masond20f7042008-12-08 16:58:54 -05002036
Yan Zheng17d217f2008-12-12 10:03:38 -05002037 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID &&
Chris Mason9655d292009-09-02 15:22:30 -04002038 test_range_bit(io_tree, start, end, EXTENT_NODATASUM, 1, NULL)) {
Yan Zheng17d217f2008-12-12 10:03:38 -05002039 clear_extent_bits(io_tree, start, end, EXTENT_NODATASUM,
2040 GFP_NOFS);
2041 return 0;
2042 }
2043
Yanc2e639f2008-02-04 08:57:25 -05002044 if (state && state->start == start) {
Chris Mason70dec802008-01-29 09:59:12 -05002045 private = state->private;
2046 ret = 0;
2047 } else {
2048 ret = get_state_private(io_tree, start, &private);
2049 }
Cong Wang7ac687d2011-11-25 23:14:28 +08002050 kaddr = kmap_atomic(page);
Chris Masond3977122009-01-05 21:25:51 -05002051 if (ret)
Chris Mason07157aa2007-08-30 08:50:51 -04002052 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05002053
Chris Masonff79f812007-10-15 16:22:25 -04002054 csum = btrfs_csum_data(root, kaddr + offset, csum, end - start + 1);
2055 btrfs_csum_final(csum, (char *)&csum);
Chris Masond3977122009-01-05 21:25:51 -05002056 if (csum != private)
Chris Mason07157aa2007-08-30 08:50:51 -04002057 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05002058
Cong Wang7ac687d2011-11-25 23:14:28 +08002059 kunmap_atomic(kaddr);
Chris Masond20f7042008-12-08 16:58:54 -05002060good:
Chris Mason07157aa2007-08-30 08:50:51 -04002061 return 0;
2062
2063zeroit:
Chris Mason945d8962011-05-22 12:33:42 -04002064 printk_ratelimited(KERN_INFO "btrfs csum failed ino %llu off %llu csum %u "
Li Zefan33345d012011-04-20 10:31:50 +08002065 "private %llu\n",
2066 (unsigned long long)btrfs_ino(page->mapping->host),
Chris Mason193f2842009-04-27 07:29:05 -04002067 (unsigned long long)start, csum,
2068 (unsigned long long)private);
Chris Masondb945352007-10-15 16:15:53 -04002069 memset(kaddr + offset, 1, end - start + 1);
2070 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002071 kunmap_atomic(kaddr);
Chris Mason3b951512008-04-17 11:29:12 -04002072 if (private == 0)
2073 return 0;
Chris Mason7e383262008-04-09 16:28:12 -04002074 return -EIO;
Chris Mason07157aa2007-08-30 08:50:51 -04002075}
Chris Masonb888db2b2007-08-27 16:49:44 -04002076
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002077struct delayed_iput {
2078 struct list_head list;
2079 struct inode *inode;
2080};
2081
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002082/* JDM: If this is fs-wide, why can't we add a pointer to
2083 * btrfs_inode instead and avoid the allocation? */
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002084void btrfs_add_delayed_iput(struct inode *inode)
2085{
2086 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
2087 struct delayed_iput *delayed;
2088
2089 if (atomic_add_unless(&inode->i_count, -1, 1))
2090 return;
2091
2092 delayed = kmalloc(sizeof(*delayed), GFP_NOFS | __GFP_NOFAIL);
2093 delayed->inode = inode;
2094
2095 spin_lock(&fs_info->delayed_iput_lock);
2096 list_add_tail(&delayed->list, &fs_info->delayed_iputs);
2097 spin_unlock(&fs_info->delayed_iput_lock);
2098}
2099
2100void btrfs_run_delayed_iputs(struct btrfs_root *root)
2101{
2102 LIST_HEAD(list);
2103 struct btrfs_fs_info *fs_info = root->fs_info;
2104 struct delayed_iput *delayed;
2105 int empty;
2106
2107 spin_lock(&fs_info->delayed_iput_lock);
2108 empty = list_empty(&fs_info->delayed_iputs);
2109 spin_unlock(&fs_info->delayed_iput_lock);
2110 if (empty)
2111 return;
2112
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002113 spin_lock(&fs_info->delayed_iput_lock);
2114 list_splice_init(&fs_info->delayed_iputs, &list);
2115 spin_unlock(&fs_info->delayed_iput_lock);
2116
2117 while (!list_empty(&list)) {
2118 delayed = list_entry(list.next, struct delayed_iput, list);
2119 list_del(&delayed->list);
2120 iput(delayed->inode);
2121 kfree(delayed);
2122 }
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002123}
2124
Yan, Zhengd68fc572010-05-16 10:49:58 -04002125enum btrfs_orphan_cleanup_state {
2126 ORPHAN_CLEANUP_STARTED = 1,
2127 ORPHAN_CLEANUP_DONE = 2,
2128};
2129
2130/*
Justin P. Mattock42b2aa82011-11-28 20:31:00 -08002131 * This is called in transaction commit time. If there are no orphan
Yan, Zhengd68fc572010-05-16 10:49:58 -04002132 * files in the subvolume, it removes orphan item and frees block_rsv
2133 * structure.
2134 */
2135void btrfs_orphan_commit_root(struct btrfs_trans_handle *trans,
2136 struct btrfs_root *root)
2137{
Josef Bacik90290e12011-12-02 15:44:12 -05002138 struct btrfs_block_rsv *block_rsv;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002139 int ret;
2140
Josef Bacik8a35d952012-05-23 14:26:42 -04002141 if (atomic_read(&root->orphan_inodes) ||
Yan, Zhengd68fc572010-05-16 10:49:58 -04002142 root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE)
2143 return;
2144
Josef Bacik90290e12011-12-02 15:44:12 -05002145 spin_lock(&root->orphan_lock);
Josef Bacik8a35d952012-05-23 14:26:42 -04002146 if (atomic_read(&root->orphan_inodes)) {
Josef Bacik90290e12011-12-02 15:44:12 -05002147 spin_unlock(&root->orphan_lock);
2148 return;
2149 }
2150
2151 if (root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE) {
2152 spin_unlock(&root->orphan_lock);
2153 return;
2154 }
2155
2156 block_rsv = root->orphan_block_rsv;
2157 root->orphan_block_rsv = NULL;
2158 spin_unlock(&root->orphan_lock);
2159
Yan, Zhengd68fc572010-05-16 10:49:58 -04002160 if (root->orphan_item_inserted &&
2161 btrfs_root_refs(&root->root_item) > 0) {
2162 ret = btrfs_del_orphan_item(trans, root->fs_info->tree_root,
2163 root->root_key.objectid);
2164 BUG_ON(ret);
2165 root->orphan_item_inserted = 0;
2166 }
2167
Josef Bacik90290e12011-12-02 15:44:12 -05002168 if (block_rsv) {
2169 WARN_ON(block_rsv->size > 0);
2170 btrfs_free_block_rsv(root, block_rsv);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002171 }
2172}
2173
2174/*
Josef Bacik7b128762008-07-24 12:17:14 -04002175 * This creates an orphan entry for the given inode in case something goes
2176 * wrong in the middle of an unlink/truncate.
Yan, Zhengd68fc572010-05-16 10:49:58 -04002177 *
2178 * NOTE: caller of this function should reserve 5 units of metadata for
2179 * this function.
Josef Bacik7b128762008-07-24 12:17:14 -04002180 */
2181int btrfs_orphan_add(struct btrfs_trans_handle *trans, struct inode *inode)
2182{
2183 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002184 struct btrfs_block_rsv *block_rsv = NULL;
2185 int reserve = 0;
2186 int insert = 0;
2187 int ret;
Josef Bacik7b128762008-07-24 12:17:14 -04002188
Yan, Zhengd68fc572010-05-16 10:49:58 -04002189 if (!root->orphan_block_rsv) {
Miao Xie66d8f3d2012-09-06 04:02:28 -06002190 block_rsv = btrfs_alloc_block_rsv(root, BTRFS_BLOCK_RSV_TEMP);
Tsutomu Itohb5324022011-07-19 07:27:20 +00002191 if (!block_rsv)
2192 return -ENOMEM;
Josef Bacik7b128762008-07-24 12:17:14 -04002193 }
2194
Yan, Zhengd68fc572010-05-16 10:49:58 -04002195 spin_lock(&root->orphan_lock);
2196 if (!root->orphan_block_rsv) {
2197 root->orphan_block_rsv = block_rsv;
2198 } else if (block_rsv) {
2199 btrfs_free_block_rsv(root, block_rsv);
2200 block_rsv = NULL;
2201 }
Josef Bacik7b128762008-07-24 12:17:14 -04002202
Josef Bacik8a35d952012-05-23 14:26:42 -04002203 if (!test_and_set_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
2204 &BTRFS_I(inode)->runtime_flags)) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04002205#if 0
2206 /*
2207 * For proper ENOSPC handling, we should do orphan
2208 * cleanup when mounting. But this introduces backward
2209 * compatibility issue.
2210 */
2211 if (!xchg(&root->orphan_item_inserted, 1))
2212 insert = 2;
2213 else
2214 insert = 1;
2215#endif
2216 insert = 1;
Miao Xie321f0e72012-08-28 22:13:02 -06002217 atomic_inc(&root->orphan_inodes);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002218 }
Josef Bacik7b128762008-07-24 12:17:14 -04002219
Josef Bacik72ac3c02012-05-23 14:13:11 -04002220 if (!test_and_set_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
2221 &BTRFS_I(inode)->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04002222 reserve = 1;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002223 spin_unlock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002224
Yan, Zhengd68fc572010-05-16 10:49:58 -04002225 /* grab metadata reservation from transaction handle */
2226 if (reserve) {
2227 ret = btrfs_orphan_reserve_metadata(trans, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002228 BUG_ON(ret); /* -ENOSPC in reservation; Logic error? JDM */
Yan, Zhengd68fc572010-05-16 10:49:58 -04002229 }
2230
2231 /* insert an orphan item to track this unlinked/truncated file */
2232 if (insert >= 1) {
Li Zefan33345d012011-04-20 10:31:50 +08002233 ret = btrfs_insert_orphan_item(trans, root, btrfs_ino(inode));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002234 if (ret && ret != -EEXIST) {
Josef Bacik8a35d952012-05-23 14:26:42 -04002235 clear_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
2236 &BTRFS_I(inode)->runtime_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002237 btrfs_abort_transaction(trans, root, ret);
2238 return ret;
2239 }
2240 ret = 0;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002241 }
2242
2243 /* insert an orphan item to track subvolume contains orphan files */
2244 if (insert >= 2) {
2245 ret = btrfs_insert_orphan_item(trans, root->fs_info->tree_root,
2246 root->root_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002247 if (ret && ret != -EEXIST) {
2248 btrfs_abort_transaction(trans, root, ret);
2249 return ret;
2250 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04002251 }
2252 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002253}
2254
2255/*
2256 * We have done the truncate/delete so we can go ahead and remove the orphan
2257 * item for this particular inode.
2258 */
2259int btrfs_orphan_del(struct btrfs_trans_handle *trans, struct inode *inode)
2260{
2261 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002262 int delete_item = 0;
2263 int release_rsv = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002264 int ret = 0;
2265
Yan, Zhengd68fc572010-05-16 10:49:58 -04002266 spin_lock(&root->orphan_lock);
Josef Bacik8a35d952012-05-23 14:26:42 -04002267 if (test_and_clear_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
2268 &BTRFS_I(inode)->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04002269 delete_item = 1;
Josef Bacik7b128762008-07-24 12:17:14 -04002270
Josef Bacik72ac3c02012-05-23 14:13:11 -04002271 if (test_and_clear_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
2272 &BTRFS_I(inode)->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04002273 release_rsv = 1;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002274 spin_unlock(&root->orphan_lock);
2275
2276 if (trans && delete_item) {
Li Zefan33345d012011-04-20 10:31:50 +08002277 ret = btrfs_del_orphan_item(trans, root, btrfs_ino(inode));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002278 BUG_ON(ret); /* -ENOMEM or corruption (JDM: Recheck) */
Josef Bacik7b128762008-07-24 12:17:14 -04002279 }
2280
Josef Bacik8a35d952012-05-23 14:26:42 -04002281 if (release_rsv) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04002282 btrfs_orphan_release_metadata(inode);
Josef Bacik8a35d952012-05-23 14:26:42 -04002283 atomic_dec(&root->orphan_inodes);
2284 }
Josef Bacik7b128762008-07-24 12:17:14 -04002285
Yan, Zhengd68fc572010-05-16 10:49:58 -04002286 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002287}
2288
2289/*
2290 * this cleans up any orphans that may be left on the list from the last use
2291 * of this root.
2292 */
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002293int btrfs_orphan_cleanup(struct btrfs_root *root)
Josef Bacik7b128762008-07-24 12:17:14 -04002294{
2295 struct btrfs_path *path;
2296 struct extent_buffer *leaf;
Josef Bacik7b128762008-07-24 12:17:14 -04002297 struct btrfs_key key, found_key;
2298 struct btrfs_trans_handle *trans;
2299 struct inode *inode;
Josef Bacik8f6d7f42011-09-26 15:55:20 -04002300 u64 last_objectid = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002301 int ret = 0, nr_unlink = 0, nr_truncate = 0;
2302
Yan, Zhengd68fc572010-05-16 10:49:58 -04002303 if (cmpxchg(&root->orphan_cleanup_state, 0, ORPHAN_CLEANUP_STARTED))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002304 return 0;
Yan, Zhengc71bf092009-11-12 09:34:40 +00002305
2306 path = btrfs_alloc_path();
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002307 if (!path) {
2308 ret = -ENOMEM;
2309 goto out;
2310 }
Josef Bacik7b128762008-07-24 12:17:14 -04002311 path->reada = -1;
2312
2313 key.objectid = BTRFS_ORPHAN_OBJECTID;
2314 btrfs_set_key_type(&key, BTRFS_ORPHAN_ITEM_KEY);
2315 key.offset = (u64)-1;
2316
Josef Bacik7b128762008-07-24 12:17:14 -04002317 while (1) {
2318 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002319 if (ret < 0)
2320 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04002321
2322 /*
2323 * if ret == 0 means we found what we were searching for, which
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002324 * is weird, but possible, so only screw with path if we didn't
Josef Bacik7b128762008-07-24 12:17:14 -04002325 * find the key and see if we have stuff that matches
2326 */
2327 if (ret > 0) {
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002328 ret = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002329 if (path->slots[0] == 0)
2330 break;
2331 path->slots[0]--;
2332 }
2333
2334 /* pull out the item */
2335 leaf = path->nodes[0];
Josef Bacik7b128762008-07-24 12:17:14 -04002336 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2337
2338 /* make sure the item matches what we want */
2339 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
2340 break;
2341 if (btrfs_key_type(&found_key) != BTRFS_ORPHAN_ITEM_KEY)
2342 break;
2343
2344 /* release the path since we're done with it */
David Sterbab3b4aa72011-04-21 01:20:15 +02002345 btrfs_release_path(path);
Josef Bacik7b128762008-07-24 12:17:14 -04002346
2347 /*
2348 * this is where we are basically btrfs_lookup, without the
2349 * crossing root thing. we store the inode number in the
2350 * offset of the orphan item.
2351 */
Josef Bacik8f6d7f42011-09-26 15:55:20 -04002352
2353 if (found_key.offset == last_objectid) {
2354 printk(KERN_ERR "btrfs: Error removing orphan entry, "
2355 "stopping orphan cleanup\n");
2356 ret = -EINVAL;
2357 goto out;
2358 }
2359
2360 last_objectid = found_key.offset;
2361
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002362 found_key.objectid = found_key.offset;
2363 found_key.type = BTRFS_INODE_ITEM_KEY;
2364 found_key.offset = 0;
Josef Bacik73f73412009-12-04 17:38:27 +00002365 inode = btrfs_iget(root->fs_info->sb, &found_key, root, NULL);
Josef Bacika8c9e572011-09-21 16:55:59 -04002366 ret = PTR_RET(inode);
2367 if (ret && ret != -ESTALE)
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002368 goto out;
Josef Bacika8c9e572011-09-21 16:55:59 -04002369
Arne Jansenf8e9e0b2011-12-14 20:12:02 -05002370 if (ret == -ESTALE && root == root->fs_info->tree_root) {
2371 struct btrfs_root *dead_root;
2372 struct btrfs_fs_info *fs_info = root->fs_info;
2373 int is_dead_root = 0;
2374
2375 /*
2376 * this is an orphan in the tree root. Currently these
2377 * could come from 2 sources:
2378 * a) a snapshot deletion in progress
2379 * b) a free space cache inode
2380 * We need to distinguish those two, as the snapshot
2381 * orphan must not get deleted.
2382 * find_dead_roots already ran before us, so if this
2383 * is a snapshot deletion, we should find the root
2384 * in the dead_roots list
2385 */
2386 spin_lock(&fs_info->trans_lock);
2387 list_for_each_entry(dead_root, &fs_info->dead_roots,
2388 root_list) {
2389 if (dead_root->root_key.objectid ==
2390 found_key.objectid) {
2391 is_dead_root = 1;
2392 break;
2393 }
2394 }
2395 spin_unlock(&fs_info->trans_lock);
2396 if (is_dead_root) {
2397 /* prevent this orphan from being found again */
2398 key.offset = found_key.objectid - 1;
2399 continue;
2400 }
2401 }
Josef Bacika8c9e572011-09-21 16:55:59 -04002402 /*
2403 * Inode is already gone but the orphan item is still there,
2404 * kill the orphan item.
2405 */
2406 if (ret == -ESTALE) {
2407 trans = btrfs_start_transaction(root, 1);
2408 if (IS_ERR(trans)) {
2409 ret = PTR_ERR(trans);
2410 goto out;
2411 }
Josef Bacik8a35d952012-05-23 14:26:42 -04002412 printk(KERN_ERR "auto deleting %Lu\n",
2413 found_key.objectid);
Josef Bacika8c9e572011-09-21 16:55:59 -04002414 ret = btrfs_del_orphan_item(trans, root,
2415 found_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002416 BUG_ON(ret); /* -ENOMEM or corruption (JDM: Recheck) */
Josef Bacika8c9e572011-09-21 16:55:59 -04002417 btrfs_end_transaction(trans, root);
2418 continue;
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002419 }
Josef Bacik7b128762008-07-24 12:17:14 -04002420
Josef Bacik7b128762008-07-24 12:17:14 -04002421 /*
2422 * add this inode to the orphan list so btrfs_orphan_del does
2423 * the proper thing when we hit it
2424 */
Josef Bacik8a35d952012-05-23 14:26:42 -04002425 set_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
2426 &BTRFS_I(inode)->runtime_flags);
Josef Bacik7b128762008-07-24 12:17:14 -04002427
Josef Bacik7b128762008-07-24 12:17:14 -04002428 /* if we have links, this was a truncate, lets do that */
2429 if (inode->i_nlink) {
Josef Bacika41ad392011-01-31 15:30:16 -05002430 if (!S_ISREG(inode->i_mode)) {
2431 WARN_ON(1);
2432 iput(inode);
2433 continue;
2434 }
Josef Bacik7b128762008-07-24 12:17:14 -04002435 nr_truncate++;
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002436 ret = btrfs_truncate(inode);
Josef Bacik7b128762008-07-24 12:17:14 -04002437 } else {
2438 nr_unlink++;
2439 }
2440
2441 /* this will do delete_inode and everything for us */
2442 iput(inode);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002443 if (ret)
2444 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04002445 }
Miao Xie3254c872011-11-10 20:45:05 -05002446 /* release the path since we're done with it */
2447 btrfs_release_path(path);
2448
Yan, Zhengd68fc572010-05-16 10:49:58 -04002449 root->orphan_cleanup_state = ORPHAN_CLEANUP_DONE;
2450
2451 if (root->orphan_block_rsv)
2452 btrfs_block_rsv_release(root, root->orphan_block_rsv,
2453 (u64)-1);
2454
2455 if (root->orphan_block_rsv || root->orphan_item_inserted) {
Josef Bacik7a7eaa42011-04-13 12:54:33 -04002456 trans = btrfs_join_transaction(root);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002457 if (!IS_ERR(trans))
2458 btrfs_end_transaction(trans, root);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002459 }
Josef Bacik7b128762008-07-24 12:17:14 -04002460
2461 if (nr_unlink)
2462 printk(KERN_INFO "btrfs: unlinked %d orphans\n", nr_unlink);
2463 if (nr_truncate)
2464 printk(KERN_INFO "btrfs: truncated %d orphans\n", nr_truncate);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002465
2466out:
2467 if (ret)
2468 printk(KERN_CRIT "btrfs: could not do orphan cleanup %d\n", ret);
2469 btrfs_free_path(path);
2470 return ret;
Josef Bacik7b128762008-07-24 12:17:14 -04002471}
2472
Chris Masond352ac62008-09-29 15:18:18 -04002473/*
Chris Mason46a53cc2009-04-27 11:47:50 -04002474 * very simple check to peek ahead in the leaf looking for xattrs. If we
2475 * don't find any xattrs, we know there can't be any acls.
2476 *
2477 * slot is the slot the inode is in, objectid is the objectid of the inode
2478 */
2479static noinline int acls_after_inode_item(struct extent_buffer *leaf,
2480 int slot, u64 objectid)
2481{
2482 u32 nritems = btrfs_header_nritems(leaf);
2483 struct btrfs_key found_key;
2484 int scanned = 0;
2485
2486 slot++;
2487 while (slot < nritems) {
2488 btrfs_item_key_to_cpu(leaf, &found_key, slot);
2489
2490 /* we found a different objectid, there must not be acls */
2491 if (found_key.objectid != objectid)
2492 return 0;
2493
2494 /* we found an xattr, assume we've got an acl */
2495 if (found_key.type == BTRFS_XATTR_ITEM_KEY)
2496 return 1;
2497
2498 /*
2499 * we found a key greater than an xattr key, there can't
2500 * be any acls later on
2501 */
2502 if (found_key.type > BTRFS_XATTR_ITEM_KEY)
2503 return 0;
2504
2505 slot++;
2506 scanned++;
2507
2508 /*
2509 * it goes inode, inode backrefs, xattrs, extents,
2510 * so if there are a ton of hard links to an inode there can
2511 * be a lot of backrefs. Don't waste time searching too hard,
2512 * this is just an optimization
2513 */
2514 if (scanned >= 8)
2515 break;
2516 }
2517 /* we hit the end of the leaf before we found an xattr or
2518 * something larger than an xattr. We have to assume the inode
2519 * has acls
2520 */
2521 return 1;
2522}
2523
2524/*
Chris Masond352ac62008-09-29 15:18:18 -04002525 * read an inode from the btree into the in-memory inode
2526 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002527static void btrfs_read_locked_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002528{
2529 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002530 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002531 struct btrfs_inode_item *inode_item;
Chris Mason0b86a832008-03-24 15:01:56 -04002532 struct btrfs_timespec *tspec;
Chris Mason39279cc2007-06-12 06:35:45 -04002533 struct btrfs_root *root = BTRFS_I(inode)->root;
2534 struct btrfs_key location;
Chris Mason46a53cc2009-04-27 11:47:50 -04002535 int maybe_acls;
Josef Bacik618e21d2007-07-11 10:18:17 -04002536 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -04002537 int ret;
Miao Xie2f7e33d2011-06-23 07:27:13 +00002538 bool filled = false;
2539
2540 ret = btrfs_fill_inode(inode, &rdev);
2541 if (!ret)
2542 filled = true;
Chris Mason39279cc2007-06-12 06:35:45 -04002543
2544 path = btrfs_alloc_path();
Mark Fasheh1748f842011-07-12 11:25:31 -07002545 if (!path)
2546 goto make_bad;
2547
Josef Bacikd90c7322011-05-17 09:50:54 -04002548 path->leave_spinning = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002549 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -05002550
Chris Mason39279cc2007-06-12 06:35:45 -04002551 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002552 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -04002553 goto make_bad;
Chris Mason39279cc2007-06-12 06:35:45 -04002554
Chris Mason5f39d392007-10-15 16:14:19 -04002555 leaf = path->nodes[0];
Miao Xie2f7e33d2011-06-23 07:27:13 +00002556
2557 if (filled)
2558 goto cache_acl;
2559
Chris Mason5f39d392007-10-15 16:14:19 -04002560 inode_item = btrfs_item_ptr(leaf, path->slots[0],
2561 struct btrfs_inode_item);
Chris Mason5f39d392007-10-15 16:14:19 -04002562 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
Miklos Szeredibfe86842011-10-28 14:13:29 +02002563 set_nlink(inode, btrfs_inode_nlink(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04002564 inode->i_uid = btrfs_inode_uid(leaf, inode_item);
2565 inode->i_gid = btrfs_inode_gid(leaf, inode_item);
Chris Masondbe674a2008-07-17 12:54:05 -04002566 btrfs_i_size_write(inode, btrfs_inode_size(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04002567
2568 tspec = btrfs_inode_atime(inode_item);
2569 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2570 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2571
2572 tspec = btrfs_inode_mtime(inode_item);
2573 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2574 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2575
2576 tspec = btrfs_inode_ctime(inode_item);
2577 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2578 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2579
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002580 inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04002581 BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item);
Josef Bacik5dc562c2012-08-17 13:14:17 -04002582 BTRFS_I(inode)->last_trans = btrfs_inode_transid(leaf, inode_item);
2583
2584 /*
2585 * If we were modified in the current generation and evicted from memory
2586 * and then re-read we need to do a full sync since we don't have any
2587 * idea about which extents were modified before we were evicted from
2588 * cache.
2589 */
2590 if (BTRFS_I(inode)->last_trans == root->fs_info->generation)
2591 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
2592 &BTRFS_I(inode)->runtime_flags);
2593
Josef Bacik0c4d2d92012-04-05 15:03:02 -04002594 inode->i_version = btrfs_inode_sequence(leaf, inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04002595 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik618e21d2007-07-11 10:18:17 -04002596 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002597 rdev = btrfs_inode_rdev(leaf, inode_item);
2598
Josef Bacikaec74772008-07-24 12:12:38 -04002599 BTRFS_I(inode)->index_cnt = (u64)-1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05002600 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Miao Xie2f7e33d2011-06-23 07:27:13 +00002601cache_acl:
Chris Mason46a53cc2009-04-27 11:47:50 -04002602 /*
2603 * try to precache a NULL acl entry for files that don't have
2604 * any xattrs or acls
2605 */
Li Zefan33345d012011-04-20 10:31:50 +08002606 maybe_acls = acls_after_inode_item(leaf, path->slots[0],
2607 btrfs_ino(inode));
Al Viro72c04902009-06-24 16:58:48 -04002608 if (!maybe_acls)
2609 cache_no_acl(inode);
Chris Mason46a53cc2009-04-27 11:47:50 -04002610
Chris Mason39279cc2007-06-12 06:35:45 -04002611 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002612
Chris Mason39279cc2007-06-12 06:35:45 -04002613 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -04002614 case S_IFREG:
2615 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04002616 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05002617 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04002618 inode->i_fop = &btrfs_file_operations;
2619 inode->i_op = &btrfs_file_inode_operations;
2620 break;
2621 case S_IFDIR:
2622 inode->i_fop = &btrfs_dir_file_operations;
2623 if (root == root->fs_info->tree_root)
2624 inode->i_op = &btrfs_dir_ro_inode_operations;
2625 else
2626 inode->i_op = &btrfs_dir_inode_operations;
2627 break;
2628 case S_IFLNK:
2629 inode->i_op = &btrfs_symlink_inode_operations;
2630 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04002631 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04002632 break;
Josef Bacik618e21d2007-07-11 10:18:17 -04002633 default:
Jim Owens0279b4c2009-02-04 09:29:13 -05002634 inode->i_op = &btrfs_special_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -04002635 init_special_inode(inode, inode->i_mode, rdev);
2636 break;
Chris Mason39279cc2007-06-12 06:35:45 -04002637 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02002638
2639 btrfs_update_iflags(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002640 return;
2641
2642make_bad:
Chris Mason39279cc2007-06-12 06:35:45 -04002643 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002644 make_bad_inode(inode);
2645}
2646
Chris Masond352ac62008-09-29 15:18:18 -04002647/*
2648 * given a leaf and an inode, copy the inode fields into the leaf
2649 */
Chris Masone02119d2008-09-05 16:13:11 -04002650static void fill_inode_item(struct btrfs_trans_handle *trans,
2651 struct extent_buffer *leaf,
Chris Mason5f39d392007-10-15 16:14:19 -04002652 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -04002653 struct inode *inode)
2654{
Chris Mason5f39d392007-10-15 16:14:19 -04002655 btrfs_set_inode_uid(leaf, item, inode->i_uid);
2656 btrfs_set_inode_gid(leaf, item, inode->i_gid);
Chris Masondbe674a2008-07-17 12:54:05 -04002657 btrfs_set_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size);
Chris Mason5f39d392007-10-15 16:14:19 -04002658 btrfs_set_inode_mode(leaf, item, inode->i_mode);
2659 btrfs_set_inode_nlink(leaf, item, inode->i_nlink);
2660
2661 btrfs_set_timespec_sec(leaf, btrfs_inode_atime(item),
2662 inode->i_atime.tv_sec);
2663 btrfs_set_timespec_nsec(leaf, btrfs_inode_atime(item),
2664 inode->i_atime.tv_nsec);
2665
2666 btrfs_set_timespec_sec(leaf, btrfs_inode_mtime(item),
2667 inode->i_mtime.tv_sec);
2668 btrfs_set_timespec_nsec(leaf, btrfs_inode_mtime(item),
2669 inode->i_mtime.tv_nsec);
2670
2671 btrfs_set_timespec_sec(leaf, btrfs_inode_ctime(item),
2672 inode->i_ctime.tv_sec);
2673 btrfs_set_timespec_nsec(leaf, btrfs_inode_ctime(item),
2674 inode->i_ctime.tv_nsec);
2675
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002676 btrfs_set_inode_nbytes(leaf, item, inode_get_bytes(inode));
Chris Masone02119d2008-09-05 16:13:11 -04002677 btrfs_set_inode_generation(leaf, item, BTRFS_I(inode)->generation);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04002678 btrfs_set_inode_sequence(leaf, item, inode->i_version);
Chris Masone02119d2008-09-05 16:13:11 -04002679 btrfs_set_inode_transid(leaf, item, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04002680 btrfs_set_inode_rdev(leaf, item, inode->i_rdev);
Yanb98b6762008-01-08 15:54:37 -05002681 btrfs_set_inode_flags(leaf, item, BTRFS_I(inode)->flags);
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04002682 btrfs_set_inode_block_group(leaf, item, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002683}
2684
Chris Masond352ac62008-09-29 15:18:18 -04002685/*
2686 * copy everything in the in-memory inode into the btree.
2687 */
Chris Mason21151332011-11-10 20:39:08 -05002688static noinline int btrfs_update_inode_item(struct btrfs_trans_handle *trans,
Chris Masond3977122009-01-05 21:25:51 -05002689 struct btrfs_root *root, struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002690{
2691 struct btrfs_inode_item *inode_item;
2692 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002693 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002694 int ret;
2695
2696 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08002697 if (!path)
2698 return -ENOMEM;
2699
Chris Masonb9473432009-03-13 11:00:37 -04002700 path->leave_spinning = 1;
Miao Xie16cdcec2011-04-22 18:12:22 +08002701 ret = btrfs_lookup_inode(trans, root, path, &BTRFS_I(inode)->location,
2702 1);
Chris Mason39279cc2007-06-12 06:35:45 -04002703 if (ret) {
2704 if (ret > 0)
2705 ret = -ENOENT;
2706 goto failed;
2707 }
2708
Chris Masonb4ce94d2009-02-04 09:25:08 -05002709 btrfs_unlock_up_safe(path, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002710 leaf = path->nodes[0];
2711 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Miao Xie16cdcec2011-04-22 18:12:22 +08002712 struct btrfs_inode_item);
Chris Mason39279cc2007-06-12 06:35:45 -04002713
Chris Masone02119d2008-09-05 16:13:11 -04002714 fill_inode_item(trans, leaf, inode_item, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04002715 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002716 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002717 ret = 0;
2718failed:
Chris Mason39279cc2007-06-12 06:35:45 -04002719 btrfs_free_path(path);
2720 return ret;
2721}
2722
Chris Masond352ac62008-09-29 15:18:18 -04002723/*
Chris Mason21151332011-11-10 20:39:08 -05002724 * copy everything in the in-memory inode into the btree.
2725 */
2726noinline int btrfs_update_inode(struct btrfs_trans_handle *trans,
2727 struct btrfs_root *root, struct inode *inode)
2728{
2729 int ret;
2730
2731 /*
2732 * If the inode is a free space inode, we can deadlock during commit
2733 * if we put it into the delayed code.
2734 *
2735 * The data relocation inode should also be directly updated
2736 * without delay
2737 */
Liu Bo83eea1f2012-07-10 05:28:39 -06002738 if (!btrfs_is_free_space_inode(inode)
Chris Mason21151332011-11-10 20:39:08 -05002739 && root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID) {
Alexander Block8ea05e32012-07-25 17:35:53 +02002740 btrfs_update_root_times(trans, root);
2741
Chris Mason21151332011-11-10 20:39:08 -05002742 ret = btrfs_delayed_update_inode(trans, root, inode);
2743 if (!ret)
2744 btrfs_set_inode_last_trans(trans, inode);
2745 return ret;
2746 }
2747
2748 return btrfs_update_inode_item(trans, root, inode);
2749}
2750
2751static noinline int btrfs_update_inode_fallback(struct btrfs_trans_handle *trans,
2752 struct btrfs_root *root, struct inode *inode)
2753{
2754 int ret;
2755
2756 ret = btrfs_update_inode(trans, root, inode);
2757 if (ret == -ENOSPC)
2758 return btrfs_update_inode_item(trans, root, inode);
2759 return ret;
2760}
2761
2762/*
Chris Masond352ac62008-09-29 15:18:18 -04002763 * unlink helper that gets used here in inode.c and in the tree logging
2764 * recovery code. It remove a link in a directory with a given name, and
2765 * also drops the back refs in the inode to the directory
2766 */
Al Viro92986792011-03-04 17:14:37 +00002767static int __btrfs_unlink_inode(struct btrfs_trans_handle *trans,
2768 struct btrfs_root *root,
2769 struct inode *dir, struct inode *inode,
2770 const char *name, int name_len)
Chris Mason39279cc2007-06-12 06:35:45 -04002771{
2772 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04002773 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002774 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002775 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -04002776 struct btrfs_key key;
Josef Bacikaec74772008-07-24 12:12:38 -04002777 u64 index;
Li Zefan33345d012011-04-20 10:31:50 +08002778 u64 ino = btrfs_ino(inode);
2779 u64 dir_ino = btrfs_ino(dir);
Chris Mason39279cc2007-06-12 06:35:45 -04002780
2781 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04002782 if (!path) {
2783 ret = -ENOMEM;
Tsutomu Itoh554233a2011-02-03 03:16:25 +00002784 goto out;
Chris Mason54aa1f42007-06-22 14:16:25 -04002785 }
2786
Chris Masonb9473432009-03-13 11:00:37 -04002787 path->leave_spinning = 1;
Li Zefan33345d012011-04-20 10:31:50 +08002788 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Chris Mason39279cc2007-06-12 06:35:45 -04002789 name, name_len, -1);
2790 if (IS_ERR(di)) {
2791 ret = PTR_ERR(di);
2792 goto err;
2793 }
2794 if (!di) {
2795 ret = -ENOENT;
2796 goto err;
2797 }
Chris Mason5f39d392007-10-15 16:14:19 -04002798 leaf = path->nodes[0];
2799 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -04002800 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -04002801 if (ret)
2802 goto err;
David Sterbab3b4aa72011-04-21 01:20:15 +02002803 btrfs_release_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002804
Li Zefan33345d012011-04-20 10:31:50 +08002805 ret = btrfs_del_inode_ref(trans, root, name, name_len, ino,
2806 dir_ino, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04002807 if (ret) {
Chris Masond3977122009-01-05 21:25:51 -05002808 printk(KERN_INFO "btrfs failed to delete reference to %.*s, "
Li Zefan33345d012011-04-20 10:31:50 +08002809 "inode %llu parent %llu\n", name_len, name,
2810 (unsigned long long)ino, (unsigned long long)dir_ino);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002811 btrfs_abort_transaction(trans, root, ret);
Josef Bacikaec74772008-07-24 12:12:38 -04002812 goto err;
2813 }
2814
Miao Xie16cdcec2011-04-22 18:12:22 +08002815 ret = btrfs_delete_delayed_dir_index(trans, root, dir, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002816 if (ret) {
2817 btrfs_abort_transaction(trans, root, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04002818 goto err;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002819 }
Chris Mason39279cc2007-06-12 06:35:45 -04002820
Chris Masone02119d2008-09-05 16:13:11 -04002821 ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len,
Li Zefan33345d012011-04-20 10:31:50 +08002822 inode, dir_ino);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002823 if (ret != 0 && ret != -ENOENT) {
2824 btrfs_abort_transaction(trans, root, ret);
2825 goto err;
2826 }
Chris Masone02119d2008-09-05 16:13:11 -04002827
2828 ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len,
2829 dir, index);
Chris Mason6418c962010-10-30 07:34:24 -04002830 if (ret == -ENOENT)
2831 ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002832err:
2833 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002834 if (ret)
2835 goto out;
2836
2837 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04002838 inode_inc_iversion(inode);
2839 inode_inc_iversion(dir);
Chris Masone02119d2008-09-05 16:13:11 -04002840 inode->i_ctime = dir->i_mtime = dir->i_ctime = CURRENT_TIME;
Tsutomu Itohb9959292012-06-25 21:25:22 -06002841 ret = btrfs_update_inode(trans, root, dir);
Chris Masone02119d2008-09-05 16:13:11 -04002842out:
Chris Mason39279cc2007-06-12 06:35:45 -04002843 return ret;
2844}
2845
Al Viro92986792011-03-04 17:14:37 +00002846int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
2847 struct btrfs_root *root,
2848 struct inode *dir, struct inode *inode,
2849 const char *name, int name_len)
2850{
2851 int ret;
2852 ret = __btrfs_unlink_inode(trans, root, dir, inode, name, name_len);
2853 if (!ret) {
2854 btrfs_drop_nlink(inode);
2855 ret = btrfs_update_inode(trans, root, inode);
2856 }
2857 return ret;
2858}
2859
2860
Yan, Zhenga22285a2010-05-16 10:48:46 -04002861/* helper to check if there is any shared block in the path */
2862static int check_path_shared(struct btrfs_root *root,
2863 struct btrfs_path *path)
2864{
2865 struct extent_buffer *eb;
2866 int level;
Dan Carpenter0e4dcbef2010-06-01 08:23:11 +00002867 u64 refs = 1;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002868
2869 for (level = 0; level < BTRFS_MAX_LEVEL; level++) {
Josef Bacikdedefd72011-01-24 21:43:18 +00002870 int ret;
2871
Yan, Zhenga22285a2010-05-16 10:48:46 -04002872 if (!path->nodes[level])
2873 break;
2874 eb = path->nodes[level];
2875 if (!btrfs_block_can_be_shared(root, eb))
2876 continue;
2877 ret = btrfs_lookup_extent_info(NULL, root, eb->start, eb->len,
2878 &refs, NULL);
2879 if (refs > 1)
2880 return 1;
2881 }
Josef Bacikdedefd72011-01-24 21:43:18 +00002882 return 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002883}
2884
2885/*
2886 * helper to start transaction for unlink and rmdir.
2887 *
2888 * unlink and rmdir are special in btrfs, they do not always free space.
2889 * so in enospc case, we should make sure they will free space before
2890 * allowing them to use the global metadata reservation.
2891 */
2892static struct btrfs_trans_handle *__unlink_start_trans(struct inode *dir,
2893 struct dentry *dentry)
2894{
2895 struct btrfs_trans_handle *trans;
2896 struct btrfs_root *root = BTRFS_I(dir)->root;
2897 struct btrfs_path *path;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002898 struct btrfs_dir_item *di;
2899 struct inode *inode = dentry->d_inode;
2900 u64 index;
2901 int check_link = 1;
2902 int err = -ENOSPC;
2903 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08002904 u64 ino = btrfs_ino(inode);
2905 u64 dir_ino = btrfs_ino(dir);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002906
Josef Bacike70bea52011-10-11 14:18:24 -04002907 /*
2908 * 1 for the possible orphan item
2909 * 1 for the dir item
2910 * 1 for the dir index
2911 * 1 for the inode ref
2912 * 1 for the inode ref in the tree log
2913 * 2 for the dir entries in the log
2914 * 1 for the inode
2915 */
2916 trans = btrfs_start_transaction(root, 8);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002917 if (!IS_ERR(trans) || PTR_ERR(trans) != -ENOSPC)
2918 return trans;
2919
Li Zefan33345d012011-04-20 10:31:50 +08002920 if (ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Yan, Zhenga22285a2010-05-16 10:48:46 -04002921 return ERR_PTR(-ENOSPC);
2922
2923 /* check if there is someone else holds reference */
2924 if (S_ISDIR(inode->i_mode) && atomic_read(&inode->i_count) > 1)
2925 return ERR_PTR(-ENOSPC);
2926
2927 if (atomic_read(&inode->i_count) > 2)
2928 return ERR_PTR(-ENOSPC);
2929
2930 if (xchg(&root->fs_info->enospc_unlink, 1))
2931 return ERR_PTR(-ENOSPC);
2932
2933 path = btrfs_alloc_path();
2934 if (!path) {
2935 root->fs_info->enospc_unlink = 0;
2936 return ERR_PTR(-ENOMEM);
2937 }
2938
Josef Bacik3880a1b2011-10-14 14:46:51 -04002939 /* 1 for the orphan item */
2940 trans = btrfs_start_transaction(root, 1);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002941 if (IS_ERR(trans)) {
2942 btrfs_free_path(path);
2943 root->fs_info->enospc_unlink = 0;
2944 return trans;
2945 }
2946
2947 path->skip_locking = 1;
2948 path->search_commit_root = 1;
2949
2950 ret = btrfs_lookup_inode(trans, root, path,
2951 &BTRFS_I(dir)->location, 0);
2952 if (ret < 0) {
2953 err = ret;
2954 goto out;
2955 }
2956 if (ret == 0) {
2957 if (check_path_shared(root, path))
2958 goto out;
2959 } else {
2960 check_link = 0;
2961 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002962 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002963
2964 ret = btrfs_lookup_inode(trans, root, path,
2965 &BTRFS_I(inode)->location, 0);
2966 if (ret < 0) {
2967 err = ret;
2968 goto out;
2969 }
2970 if (ret == 0) {
2971 if (check_path_shared(root, path))
2972 goto out;
2973 } else {
2974 check_link = 0;
2975 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002976 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002977
2978 if (ret == 0 && S_ISREG(inode->i_mode)) {
2979 ret = btrfs_lookup_file_extent(trans, root, path,
Li Zefan33345d012011-04-20 10:31:50 +08002980 ino, (u64)-1, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002981 if (ret < 0) {
2982 err = ret;
2983 goto out;
2984 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002985 BUG_ON(ret == 0); /* Corruption */
Yan, Zhenga22285a2010-05-16 10:48:46 -04002986 if (check_path_shared(root, path))
2987 goto out;
David Sterbab3b4aa72011-04-21 01:20:15 +02002988 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002989 }
2990
2991 if (!check_link) {
2992 err = 0;
2993 goto out;
2994 }
2995
Li Zefan33345d012011-04-20 10:31:50 +08002996 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Yan, Zhenga22285a2010-05-16 10:48:46 -04002997 dentry->d_name.name, dentry->d_name.len, 0);
2998 if (IS_ERR(di)) {
2999 err = PTR_ERR(di);
3000 goto out;
3001 }
3002 if (di) {
3003 if (check_path_shared(root, path))
3004 goto out;
3005 } else {
3006 err = 0;
3007 goto out;
3008 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003009 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003010
Mark Fashehf1863732012-08-08 11:32:27 -07003011 ret = btrfs_get_inode_ref_index(trans, root, path, dentry->d_name.name,
3012 dentry->d_name.len, ino, dir_ino, 0,
3013 &index);
3014 if (ret) {
3015 err = ret;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003016 goto out;
3017 }
Mark Fashehf1863732012-08-08 11:32:27 -07003018
Yan, Zhenga22285a2010-05-16 10:48:46 -04003019 if (check_path_shared(root, path))
3020 goto out;
Mark Fashehf1863732012-08-08 11:32:27 -07003021
David Sterbab3b4aa72011-04-21 01:20:15 +02003022 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003023
Miao Xie16cdcec2011-04-22 18:12:22 +08003024 /*
3025 * This is a commit root search, if we can lookup inode item and other
3026 * relative items in the commit root, it means the transaction of
3027 * dir/file creation has been committed, and the dir index item that we
3028 * delay to insert has also been inserted into the commit root. So
3029 * we needn't worry about the delayed insertion of the dir index item
3030 * here.
3031 */
Li Zefan33345d012011-04-20 10:31:50 +08003032 di = btrfs_lookup_dir_index_item(trans, root, path, dir_ino, index,
Yan, Zhenga22285a2010-05-16 10:48:46 -04003033 dentry->d_name.name, dentry->d_name.len, 0);
3034 if (IS_ERR(di)) {
3035 err = PTR_ERR(di);
3036 goto out;
3037 }
3038 BUG_ON(ret == -ENOENT);
3039 if (check_path_shared(root, path))
3040 goto out;
3041
3042 err = 0;
3043out:
3044 btrfs_free_path(path);
Josef Bacik3880a1b2011-10-14 14:46:51 -04003045 /* Migrate the orphan reservation over */
3046 if (!err)
3047 err = btrfs_block_rsv_migrate(trans->block_rsv,
3048 &root->fs_info->global_block_rsv,
Josef Bacik5a77d762011-11-01 14:32:23 -04003049 trans->bytes_reserved);
Josef Bacik3880a1b2011-10-14 14:46:51 -04003050
Yan, Zhenga22285a2010-05-16 10:48:46 -04003051 if (err) {
3052 btrfs_end_transaction(trans, root);
3053 root->fs_info->enospc_unlink = 0;
3054 return ERR_PTR(err);
3055 }
3056
3057 trans->block_rsv = &root->fs_info->global_block_rsv;
3058 return trans;
3059}
3060
3061static void __unlink_end_trans(struct btrfs_trans_handle *trans,
3062 struct btrfs_root *root)
3063{
Miao Xie66d8f3d2012-09-06 04:02:28 -06003064 if (trans->block_rsv->type == BTRFS_BLOCK_RSV_GLOBAL) {
Josef Bacik5a77d762011-11-01 14:32:23 -04003065 btrfs_block_rsv_release(root, trans->block_rsv,
3066 trans->bytes_reserved);
3067 trans->block_rsv = &root->fs_info->trans_block_rsv;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003068 BUG_ON(!root->fs_info->enospc_unlink);
3069 root->fs_info->enospc_unlink = 0;
3070 }
Josef Bacik7ad85bb2012-01-12 19:10:12 -05003071 btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003072}
3073
Chris Mason39279cc2007-06-12 06:35:45 -04003074static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
3075{
Yan, Zhenga22285a2010-05-16 10:48:46 -04003076 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003077 struct btrfs_trans_handle *trans;
Josef Bacik7b128762008-07-24 12:17:14 -04003078 struct inode *inode = dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04003079 int ret;
Chris Mason1832a6d2007-12-21 16:27:21 -05003080 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003081
Yan, Zhenga22285a2010-05-16 10:48:46 -04003082 trans = __unlink_start_trans(dir, dentry);
3083 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05003084 return PTR_ERR(trans);
Chris Mason5f39d392007-10-15 16:14:19 -04003085
Chris Mason12fcfd22009-03-24 10:24:20 -04003086 btrfs_record_unlink_dir(trans, dir, dentry->d_inode, 0);
3087
Chris Masone02119d2008-09-05 16:13:11 -04003088 ret = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
3089 dentry->d_name.name, dentry->d_name.len);
Tsutomu Itohb5324022011-07-19 07:27:20 +00003090 if (ret)
3091 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003092
Yan, Zhenga22285a2010-05-16 10:48:46 -04003093 if (inode->i_nlink == 0) {
Josef Bacik7b128762008-07-24 12:17:14 -04003094 ret = btrfs_orphan_add(trans, inode);
Tsutomu Itohb5324022011-07-19 07:27:20 +00003095 if (ret)
3096 goto out;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003097 }
Josef Bacik7b128762008-07-24 12:17:14 -04003098
Tsutomu Itohb5324022011-07-19 07:27:20 +00003099out:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003100 nr = trans->blocks_used;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003101 __unlink_end_trans(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003102 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003103 return ret;
3104}
3105
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003106int btrfs_unlink_subvol(struct btrfs_trans_handle *trans,
3107 struct btrfs_root *root,
3108 struct inode *dir, u64 objectid,
3109 const char *name, int name_len)
3110{
3111 struct btrfs_path *path;
3112 struct extent_buffer *leaf;
3113 struct btrfs_dir_item *di;
3114 struct btrfs_key key;
3115 u64 index;
3116 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08003117 u64 dir_ino = btrfs_ino(dir);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003118
3119 path = btrfs_alloc_path();
3120 if (!path)
3121 return -ENOMEM;
3122
Li Zefan33345d012011-04-20 10:31:50 +08003123 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003124 name, name_len, -1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003125 if (IS_ERR_OR_NULL(di)) {
3126 if (!di)
3127 ret = -ENOENT;
3128 else
3129 ret = PTR_ERR(di);
3130 goto out;
3131 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003132
3133 leaf = path->nodes[0];
3134 btrfs_dir_item_key_to_cpu(leaf, di, &key);
3135 WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
3136 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003137 if (ret) {
3138 btrfs_abort_transaction(trans, root, ret);
3139 goto out;
3140 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003141 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003142
3143 ret = btrfs_del_root_ref(trans, root->fs_info->tree_root,
3144 objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08003145 dir_ino, &index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003146 if (ret < 0) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003147 if (ret != -ENOENT) {
3148 btrfs_abort_transaction(trans, root, ret);
3149 goto out;
3150 }
Li Zefan33345d012011-04-20 10:31:50 +08003151 di = btrfs_search_dir_index_item(root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003152 name, name_len);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003153 if (IS_ERR_OR_NULL(di)) {
3154 if (!di)
3155 ret = -ENOENT;
3156 else
3157 ret = PTR_ERR(di);
3158 btrfs_abort_transaction(trans, root, ret);
3159 goto out;
3160 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003161
3162 leaf = path->nodes[0];
3163 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02003164 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003165 index = key.offset;
3166 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003167 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003168
Miao Xie16cdcec2011-04-22 18:12:22 +08003169 ret = btrfs_delete_delayed_dir_index(trans, root, dir, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003170 if (ret) {
3171 btrfs_abort_transaction(trans, root, ret);
3172 goto out;
3173 }
Miao Xie16cdcec2011-04-22 18:12:22 +08003174
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003175 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04003176 inode_inc_iversion(dir);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003177 dir->i_mtime = dir->i_ctime = CURRENT_TIME;
Josef Bacik5a24e842012-08-08 10:12:59 -06003178 ret = btrfs_update_inode_fallback(trans, root, dir);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003179 if (ret)
3180 btrfs_abort_transaction(trans, root, ret);
3181out:
Josef Bacik71d7aed2011-06-14 14:24:32 -04003182 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003183 return ret;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003184}
3185
Chris Mason39279cc2007-06-12 06:35:45 -04003186static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
3187{
3188 struct inode *inode = dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05003189 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003190 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003191 struct btrfs_trans_handle *trans;
Chris Mason1832a6d2007-12-21 16:27:21 -05003192 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003193
David Sterbab3ae2442012-09-13 16:04:34 -06003194 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Yan134d4512007-10-25 15:49:25 -04003195 return -ENOTEMPTY;
David Sterbab3ae2442012-09-13 16:04:34 -06003196 if (btrfs_ino(inode) == BTRFS_FIRST_FREE_OBJECTID)
3197 return -EPERM;
Yan134d4512007-10-25 15:49:25 -04003198
Yan, Zhenga22285a2010-05-16 10:48:46 -04003199 trans = __unlink_start_trans(dir, dentry);
3200 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05003201 return PTR_ERR(trans);
Josef Bacik5df6a9f2009-11-10 21:23:48 -05003202
Li Zefan33345d012011-04-20 10:31:50 +08003203 if (unlikely(btrfs_ino(inode) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003204 err = btrfs_unlink_subvol(trans, root, dir,
3205 BTRFS_I(inode)->location.objectid,
3206 dentry->d_name.name,
3207 dentry->d_name.len);
3208 goto out;
3209 }
3210
Josef Bacik7b128762008-07-24 12:17:14 -04003211 err = btrfs_orphan_add(trans, inode);
3212 if (err)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003213 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003214
Chris Mason39279cc2007-06-12 06:35:45 -04003215 /* now the directory is empty */
Chris Masone02119d2008-09-05 16:13:11 -04003216 err = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
3217 dentry->d_name.name, dentry->d_name.len);
Chris Masond3977122009-01-05 21:25:51 -05003218 if (!err)
Chris Masondbe674a2008-07-17 12:54:05 -04003219 btrfs_i_size_write(inode, 0);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003220out:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003221 nr = trans->blocks_used;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003222 __unlink_end_trans(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003223 btrfs_btree_balance_dirty(root, nr);
Chris Mason39544012007-12-12 14:38:19 -05003224
Chris Mason39279cc2007-06-12 06:35:45 -04003225 return err;
3226}
3227
Chris Mason323ac952008-10-01 19:05:46 -04003228/*
Chris Mason39279cc2007-06-12 06:35:45 -04003229 * this can truncate away extent items, csum items and directory items.
3230 * It starts at a high offset and removes keys until it can't find
Chris Masond352ac62008-09-29 15:18:18 -04003231 * any higher than new_size
Chris Mason39279cc2007-06-12 06:35:45 -04003232 *
3233 * csum items that cross the new i_size are truncated to the new size
3234 * as well.
Josef Bacik7b128762008-07-24 12:17:14 -04003235 *
3236 * min_type is the minimum key type to truncate down to. If set to 0, this
3237 * will kill all the items on this inode, including the INODE_ITEM_KEY.
Chris Mason39279cc2007-06-12 06:35:45 -04003238 */
Yan, Zheng80825102009-11-12 09:35:36 +00003239int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
3240 struct btrfs_root *root,
3241 struct inode *inode,
3242 u64 new_size, u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04003243{
Chris Mason39279cc2007-06-12 06:35:45 -04003244 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04003245 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003246 struct btrfs_file_extent_item *fi;
Yan, Zheng80825102009-11-12 09:35:36 +00003247 struct btrfs_key key;
3248 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04003249 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04003250 u64 extent_num_bytes = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003251 u64 extent_offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003252 u64 item_end = 0;
Yan, Zheng80825102009-11-12 09:35:36 +00003253 u64 mask = root->sectorsize - 1;
3254 u32 found_type = (u8)-1;
Chris Mason39279cc2007-06-12 06:35:45 -04003255 int found_extent;
3256 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05003257 int pending_del_nr = 0;
3258 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04003259 int extent_type = -1;
Yan, Zheng80825102009-11-12 09:35:36 +00003260 int ret;
3261 int err = 0;
Li Zefan33345d012011-04-20 10:31:50 +08003262 u64 ino = btrfs_ino(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003263
3264 BUG_ON(new_size > 0 && min_type != BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04003265
Mark Fasheh0eb0e192011-07-12 16:44:10 -07003266 path = btrfs_alloc_path();
3267 if (!path)
3268 return -ENOMEM;
3269 path->reada = -1;
3270
Josef Bacik5dc562c2012-08-17 13:14:17 -04003271 /*
3272 * We want to drop from the next block forward in case this new size is
3273 * not block aligned since we will be keeping the last block of the
3274 * extent just the way it is.
3275 */
Josef Bacik0af3d002010-06-21 14:48:16 -04003276 if (root->ref_cows || root == root->fs_info->tree_root)
Josef Bacik5dc562c2012-08-17 13:14:17 -04003277 btrfs_drop_extent_cache(inode, (new_size + mask) & (~mask), (u64)-1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003278
Miao Xie16cdcec2011-04-22 18:12:22 +08003279 /*
3280 * This function is also used to drop the items in the log tree before
3281 * we relog the inode, so if root != BTRFS_I(inode)->root, it means
3282 * it is used to drop the loged items. So we shouldn't kill the delayed
3283 * items.
3284 */
3285 if (min_type == 0 && root == BTRFS_I(inode)->root)
3286 btrfs_kill_delayed_inode_items(inode);
3287
Li Zefan33345d012011-04-20 10:31:50 +08003288 key.objectid = ino;
Chris Mason39279cc2007-06-12 06:35:45 -04003289 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04003290 key.type = (u8)-1;
3291
Chris Mason85e21ba2008-01-29 15:11:36 -05003292search_again:
Chris Masonb9473432009-03-13 11:00:37 -04003293 path->leave_spinning = 1;
Chris Mason85e21ba2008-01-29 15:11:36 -05003294 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Yan, Zheng80825102009-11-12 09:35:36 +00003295 if (ret < 0) {
3296 err = ret;
3297 goto out;
3298 }
Chris Masond3977122009-01-05 21:25:51 -05003299
Chris Mason85e21ba2008-01-29 15:11:36 -05003300 if (ret > 0) {
Chris Masone02119d2008-09-05 16:13:11 -04003301 /* there are no items in the tree for us to truncate, we're
3302 * done
3303 */
Yan, Zheng80825102009-11-12 09:35:36 +00003304 if (path->slots[0] == 0)
3305 goto out;
Chris Mason85e21ba2008-01-29 15:11:36 -05003306 path->slots[0]--;
3307 }
3308
Chris Masond3977122009-01-05 21:25:51 -05003309 while (1) {
Chris Mason39279cc2007-06-12 06:35:45 -04003310 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04003311 leaf = path->nodes[0];
3312 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3313 found_type = btrfs_key_type(&found_key);
Chris Mason39279cc2007-06-12 06:35:45 -04003314
Li Zefan33345d012011-04-20 10:31:50 +08003315 if (found_key.objectid != ino)
Chris Mason39279cc2007-06-12 06:35:45 -04003316 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003317
Chris Mason85e21ba2008-01-29 15:11:36 -05003318 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04003319 break;
3320
Chris Mason5f39d392007-10-15 16:14:19 -04003321 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04003322 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04003323 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04003324 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04003325 extent_type = btrfs_file_extent_type(leaf, fi);
3326 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04003327 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04003328 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -04003329 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason179e29e2007-11-01 11:28:41 -04003330 item_end += btrfs_file_extent_inline_len(leaf,
Chris Masonc8b97812008-10-29 14:49:59 -04003331 fi);
Chris Mason39279cc2007-06-12 06:35:45 -04003332 }
Yan008630c2007-11-07 13:31:09 -05003333 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04003334 }
Yan, Zheng80825102009-11-12 09:35:36 +00003335 if (found_type > min_type) {
Chris Mason39279cc2007-06-12 06:35:45 -04003336 del_item = 1;
Yan, Zheng80825102009-11-12 09:35:36 +00003337 } else {
3338 if (item_end < new_size)
3339 break;
3340 if (found_key.offset >= new_size)
3341 del_item = 1;
3342 else
3343 del_item = 0;
3344 }
Chris Mason39279cc2007-06-12 06:35:45 -04003345 found_extent = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003346 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04003347 if (found_type != BTRFS_EXTENT_DATA_KEY)
3348 goto delete;
3349
3350 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04003351 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04003352 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Miao Xief70a9a6b2012-01-12 19:10:12 -05003353 if (!del_item) {
Chris Masondb945352007-10-15 16:15:53 -04003354 u64 orig_num_bytes =
3355 btrfs_file_extent_num_bytes(leaf, fi);
Chris Masone02119d2008-09-05 16:13:11 -04003356 extent_num_bytes = new_size -
Chris Mason5f39d392007-10-15 16:14:19 -04003357 found_key.offset + root->sectorsize - 1;
Yanb1632b12008-01-30 11:54:04 -05003358 extent_num_bytes = extent_num_bytes &
3359 ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -04003360 btrfs_set_file_extent_num_bytes(leaf, fi,
3361 extent_num_bytes);
3362 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05003363 extent_num_bytes);
Chris Masone02119d2008-09-05 16:13:11 -04003364 if (root->ref_cows && extent_start != 0)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003365 inode_sub_bytes(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04003366 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003367 } else {
Chris Masondb945352007-10-15 16:15:53 -04003368 extent_num_bytes =
3369 btrfs_file_extent_disk_num_bytes(leaf,
3370 fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003371 extent_offset = found_key.offset -
3372 btrfs_file_extent_offset(leaf, fi);
3373
Chris Mason39279cc2007-06-12 06:35:45 -04003374 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05003375 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04003376 if (extent_start != 0) {
3377 found_extent = 1;
Chris Masone02119d2008-09-05 16:13:11 -04003378 if (root->ref_cows)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003379 inode_sub_bytes(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04003380 }
3381 }
Chris Mason90692182008-02-08 13:49:28 -05003382 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003383 /*
3384 * we can't truncate inline items that have had
3385 * special encodings
3386 */
3387 if (!del_item &&
3388 btrfs_file_extent_compression(leaf, fi) == 0 &&
3389 btrfs_file_extent_encryption(leaf, fi) == 0 &&
3390 btrfs_file_extent_other_encoding(leaf, fi) == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04003391 u32 size = new_size - found_key.offset;
3392
3393 if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003394 inode_sub_bytes(inode, item_end + 1 -
3395 new_size);
Chris Masone02119d2008-09-05 16:13:11 -04003396 }
3397 size =
3398 btrfs_file_extent_calc_inline_size(size);
Jeff Mahoney143bede2012-03-01 14:56:26 +01003399 btrfs_truncate_item(trans, root, path,
3400 size, 1);
Chris Masone02119d2008-09-05 16:13:11 -04003401 } else if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003402 inode_sub_bytes(inode, item_end + 1 -
3403 found_key.offset);
Chris Mason90692182008-02-08 13:49:28 -05003404 }
Chris Mason39279cc2007-06-12 06:35:45 -04003405 }
Chris Mason179e29e2007-11-01 11:28:41 -04003406delete:
Chris Mason39279cc2007-06-12 06:35:45 -04003407 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05003408 if (!pending_del_nr) {
3409 /* no pending yet, add ourselves */
3410 pending_del_slot = path->slots[0];
3411 pending_del_nr = 1;
3412 } else if (pending_del_nr &&
3413 path->slots[0] + 1 == pending_del_slot) {
3414 /* hop on the pending chunk */
3415 pending_del_nr++;
3416 pending_del_slot = path->slots[0];
3417 } else {
Chris Masond3977122009-01-05 21:25:51 -05003418 BUG();
Chris Mason85e21ba2008-01-29 15:11:36 -05003419 }
Chris Mason39279cc2007-06-12 06:35:45 -04003420 } else {
3421 break;
3422 }
Josef Bacik0af3d002010-06-21 14:48:16 -04003423 if (found_extent && (root->ref_cows ||
3424 root == root->fs_info->tree_root)) {
Chris Masonb9473432009-03-13 11:00:37 -04003425 btrfs_set_path_blocking(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003426 ret = btrfs_free_extent(trans, root, extent_start,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003427 extent_num_bytes, 0,
3428 btrfs_header_owner(leaf),
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003429 ino, extent_offset, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04003430 BUG_ON(ret);
3431 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003432
Yan, Zheng80825102009-11-12 09:35:36 +00003433 if (found_type == BTRFS_INODE_ITEM_KEY)
3434 break;
3435
3436 if (path->slots[0] == 0 ||
3437 path->slots[0] != pending_del_slot) {
Yan, Zheng80825102009-11-12 09:35:36 +00003438 if (pending_del_nr) {
3439 ret = btrfs_del_items(trans, root, path,
3440 pending_del_slot,
3441 pending_del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003442 if (ret) {
3443 btrfs_abort_transaction(trans,
3444 root, ret);
3445 goto error;
3446 }
Yan, Zheng80825102009-11-12 09:35:36 +00003447 pending_del_nr = 0;
3448 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003449 btrfs_release_path(path);
Chris Mason85e21ba2008-01-29 15:11:36 -05003450 goto search_again;
Yan, Zheng80825102009-11-12 09:35:36 +00003451 } else {
3452 path->slots[0]--;
Chris Mason85e21ba2008-01-29 15:11:36 -05003453 }
Chris Mason39279cc2007-06-12 06:35:45 -04003454 }
Yan, Zheng80825102009-11-12 09:35:36 +00003455out:
Chris Mason85e21ba2008-01-29 15:11:36 -05003456 if (pending_del_nr) {
3457 ret = btrfs_del_items(trans, root, path, pending_del_slot,
3458 pending_del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003459 if (ret)
3460 btrfs_abort_transaction(trans, root, ret);
Chris Mason85e21ba2008-01-29 15:11:36 -05003461 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003462error:
Chris Mason39279cc2007-06-12 06:35:45 -04003463 btrfs_free_path(path);
Yan, Zheng80825102009-11-12 09:35:36 +00003464 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003465}
3466
Chris Masona52d9a82007-08-27 16:49:44 -04003467/*
Josef Bacik2aaa6652012-08-29 14:27:18 -04003468 * btrfs_truncate_page - read, zero a chunk and write a page
3469 * @inode - inode that we're zeroing
3470 * @from - the offset to start zeroing
3471 * @len - the length to zero, 0 to zero the entire range respective to the
3472 * offset
3473 * @front - zero up to the offset instead of from the offset on
3474 *
3475 * This will find the page for the "from" offset and cow the page and zero the
3476 * part we want to zero. This is used with truncate and hole punching.
Chris Masona52d9a82007-08-27 16:49:44 -04003477 */
Josef Bacik2aaa6652012-08-29 14:27:18 -04003478int btrfs_truncate_page(struct inode *inode, loff_t from, loff_t len,
3479 int front)
Chris Masona52d9a82007-08-27 16:49:44 -04003480{
Josef Bacik2aaa6652012-08-29 14:27:18 -04003481 struct address_space *mapping = inode->i_mapping;
Chris Masondb945352007-10-15 16:15:53 -04003482 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003483 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
3484 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003485 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003486 char *kaddr;
Chris Masondb945352007-10-15 16:15:53 -04003487 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -04003488 pgoff_t index = from >> PAGE_CACHE_SHIFT;
3489 unsigned offset = from & (PAGE_CACHE_SIZE-1);
3490 struct page *page;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04003491 gfp_t mask = btrfs_alloc_write_mask(mapping);
Chris Masona52d9a82007-08-27 16:49:44 -04003492 int ret = 0;
3493 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003494 u64 page_end;
Chris Masona52d9a82007-08-27 16:49:44 -04003495
Josef Bacik2aaa6652012-08-29 14:27:18 -04003496 if ((offset & (blocksize - 1)) == 0 &&
3497 (!len || ((len & (blocksize - 1)) == 0)))
Chris Masona52d9a82007-08-27 16:49:44 -04003498 goto out;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003499 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003500 if (ret)
3501 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04003502
3503 ret = -ENOMEM;
Chris Mason211c17f2008-05-15 09:13:45 -04003504again:
Josef Bacik3b16a4e2011-09-21 15:05:58 -04003505 page = find_or_create_page(mapping, index, mask);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003506 if (!page) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003507 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Masona52d9a82007-08-27 16:49:44 -04003508 goto out;
Josef Bacik5d5e1032009-10-13 16:46:49 -04003509 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04003510
3511 page_start = page_offset(page);
3512 page_end = page_start + PAGE_CACHE_SIZE - 1;
3513
Chris Masona52d9a82007-08-27 16:49:44 -04003514 if (!PageUptodate(page)) {
3515 ret = btrfs_readpage(NULL, page);
3516 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04003517 if (page->mapping != mapping) {
3518 unlock_page(page);
3519 page_cache_release(page);
3520 goto again;
3521 }
Chris Masona52d9a82007-08-27 16:49:44 -04003522 if (!PageUptodate(page)) {
3523 ret = -EIO;
Chris Mason89642222008-07-24 09:41:53 -04003524 goto out_unlock;
Chris Masona52d9a82007-08-27 16:49:44 -04003525 }
3526 }
Chris Mason211c17f2008-05-15 09:13:45 -04003527 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003528
Jeff Mahoneyd0082372012-03-01 14:57:19 +01003529 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003530 set_page_extent_mapped(page);
3531
3532 ordered = btrfs_lookup_ordered_extent(inode, page_start);
3533 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00003534 unlock_extent_cached(io_tree, page_start, page_end,
3535 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003536 unlock_page(page);
3537 page_cache_release(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04003538 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003539 btrfs_put_ordered_extent(ordered);
3540 goto again;
3541 }
3542
Josef Bacik2ac55d42010-02-03 19:33:23 +00003543 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Liu Bo9e8a4a82012-09-05 19:10:51 -06003544 EXTENT_DIRTY | EXTENT_DELALLOC |
3545 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
Josef Bacik2ac55d42010-02-03 19:33:23 +00003546 0, 0, &cached_state, GFP_NOFS);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003547
Josef Bacik2ac55d42010-02-03 19:33:23 +00003548 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
3549 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003550 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00003551 unlock_extent_cached(io_tree, page_start, page_end,
3552 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003553 goto out_unlock;
3554 }
3555
Chris Masone6dcd2d2008-07-17 12:53:50 -04003556 ret = 0;
3557 if (offset != PAGE_CACHE_SIZE) {
Josef Bacik2aaa6652012-08-29 14:27:18 -04003558 if (!len)
3559 len = PAGE_CACHE_SIZE - offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003560 kaddr = kmap(page);
Josef Bacik2aaa6652012-08-29 14:27:18 -04003561 if (front)
3562 memset(kaddr, 0, offset);
3563 else
3564 memset(kaddr + offset, 0, len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003565 flush_dcache_page(page);
3566 kunmap(page);
3567 }
Chris Mason247e7432008-07-17 12:53:51 -04003568 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003569 set_page_dirty(page);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003570 unlock_extent_cached(io_tree, page_start, page_end, &cached_state,
3571 GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04003572
Chris Mason89642222008-07-24 09:41:53 -04003573out_unlock:
Josef Bacik5d5e1032009-10-13 16:46:49 -04003574 if (ret)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003575 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Mason39279cc2007-06-12 06:35:45 -04003576 unlock_page(page);
3577 page_cache_release(page);
3578out:
3579 return ret;
3580}
3581
Josef Bacik695a0d02011-03-04 15:46:53 -05003582/*
3583 * This function puts in dummy file extents for the area we're creating a hole
3584 * for. So if we are truncating this file to a larger size we need to insert
3585 * these file extents so that btrfs_get_extent will return a EXTENT_MAP_HOLE for
3586 * the range between oldsize and size
3587 */
Josef Bacika41ad392011-01-31 15:30:16 -05003588int btrfs_cont_expand(struct inode *inode, loff_t oldsize, loff_t size)
Yan Zheng9036c102008-10-30 14:19:41 -04003589{
3590 struct btrfs_trans_handle *trans;
3591 struct btrfs_root *root = BTRFS_I(inode)->root;
3592 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003593 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003594 struct extent_state *cached_state = NULL;
Josef Bacik5dc562c2012-08-17 13:14:17 -04003595 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Yan Zheng9036c102008-10-30 14:19:41 -04003596 u64 mask = root->sectorsize - 1;
Josef Bacika41ad392011-01-31 15:30:16 -05003597 u64 hole_start = (oldsize + mask) & ~mask;
Yan Zheng9036c102008-10-30 14:19:41 -04003598 u64 block_end = (size + mask) & ~mask;
3599 u64 last_byte;
3600 u64 cur_offset;
3601 u64 hole_size;
Josef Bacik9ed74f22009-09-11 16:12:44 -04003602 int err = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04003603
3604 if (size <= hole_start)
3605 return 0;
3606
Yan Zheng9036c102008-10-30 14:19:41 -04003607 while (1) {
3608 struct btrfs_ordered_extent *ordered;
3609 btrfs_wait_ordered_range(inode, hole_start,
3610 block_end - hole_start);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003611 lock_extent_bits(io_tree, hole_start, block_end - 1, 0,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01003612 &cached_state);
Yan Zheng9036c102008-10-30 14:19:41 -04003613 ordered = btrfs_lookup_ordered_extent(inode, hole_start);
3614 if (!ordered)
3615 break;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003616 unlock_extent_cached(io_tree, hole_start, block_end - 1,
3617 &cached_state, GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003618 btrfs_put_ordered_extent(ordered);
3619 }
3620
Yan Zheng9036c102008-10-30 14:19:41 -04003621 cur_offset = hole_start;
3622 while (1) {
3623 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
3624 block_end - cur_offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003625 if (IS_ERR(em)) {
3626 err = PTR_ERR(em);
3627 break;
3628 }
Yan Zheng9036c102008-10-30 14:19:41 -04003629 last_byte = min(extent_map_end(em), block_end);
3630 last_byte = (last_byte + mask) & ~mask;
Yan, Zheng80825102009-11-12 09:35:36 +00003631 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
Josef Bacik5dc562c2012-08-17 13:14:17 -04003632 struct extent_map *hole_em;
Yan Zheng9036c102008-10-30 14:19:41 -04003633 hole_size = last_byte - cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00003634
Miao Xie36423202011-12-14 20:12:02 -05003635 trans = btrfs_start_transaction(root, 3);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003636 if (IS_ERR(trans)) {
3637 err = PTR_ERR(trans);
Chris Mason771ed682008-11-06 22:02:51 -05003638 break;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003639 }
Yan, Zheng80825102009-11-12 09:35:36 +00003640
Josef Bacik5dc562c2012-08-17 13:14:17 -04003641 err = btrfs_drop_extents(trans, root, inode,
3642 cur_offset,
Josef Bacik26714852012-08-29 12:24:27 -04003643 cur_offset + hole_size, 1);
Miao Xie5b397372011-09-11 10:52:24 -04003644 if (err) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003645 btrfs_abort_transaction(trans, root, err);
Miao Xie5b397372011-09-11 10:52:24 -04003646 btrfs_end_transaction(trans, root);
Josef Bacik3893e332011-01-31 16:03:11 -05003647 break;
Miao Xie5b397372011-09-11 10:52:24 -04003648 }
Josef Bacik9ed74f22009-09-11 16:12:44 -04003649
Yan Zheng9036c102008-10-30 14:19:41 -04003650 err = btrfs_insert_file_extent(trans, root,
Li Zefan33345d012011-04-20 10:31:50 +08003651 btrfs_ino(inode), cur_offset, 0,
Yan Zheng9036c102008-10-30 14:19:41 -04003652 0, hole_size, 0, hole_size,
3653 0, 0, 0);
Miao Xie5b397372011-09-11 10:52:24 -04003654 if (err) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003655 btrfs_abort_transaction(trans, root, err);
Miao Xie5b397372011-09-11 10:52:24 -04003656 btrfs_end_transaction(trans, root);
Josef Bacik3893e332011-01-31 16:03:11 -05003657 break;
Miao Xie5b397372011-09-11 10:52:24 -04003658 }
Yan, Zheng80825102009-11-12 09:35:36 +00003659
Josef Bacik5dc562c2012-08-17 13:14:17 -04003660 btrfs_drop_extent_cache(inode, cur_offset,
3661 cur_offset + hole_size - 1, 0);
3662 hole_em = alloc_extent_map();
3663 if (!hole_em) {
3664 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3665 &BTRFS_I(inode)->runtime_flags);
3666 goto next;
3667 }
3668 hole_em->start = cur_offset;
3669 hole_em->len = hole_size;
3670 hole_em->orig_start = cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00003671
Josef Bacik5dc562c2012-08-17 13:14:17 -04003672 hole_em->block_start = EXTENT_MAP_HOLE;
3673 hole_em->block_len = 0;
3674 hole_em->bdev = root->fs_info->fs_devices->latest_bdev;
3675 hole_em->compress_type = BTRFS_COMPRESS_NONE;
3676 hole_em->generation = trans->transid;
3677
3678 while (1) {
3679 write_lock(&em_tree->lock);
3680 err = add_extent_mapping(em_tree, hole_em);
3681 if (!err)
3682 list_move(&hole_em->list,
3683 &em_tree->modified_extents);
3684 write_unlock(&em_tree->lock);
3685 if (err != -EEXIST)
3686 break;
3687 btrfs_drop_extent_cache(inode, cur_offset,
3688 cur_offset +
3689 hole_size - 1, 0);
3690 }
3691 free_extent_map(hole_em);
3692next:
Miao Xie36423202011-12-14 20:12:02 -05003693 btrfs_update_inode(trans, root, inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003694 btrfs_end_transaction(trans, root);
Yan Zheng9036c102008-10-30 14:19:41 -04003695 }
3696 free_extent_map(em);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003697 em = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04003698 cur_offset = last_byte;
Yan, Zheng80825102009-11-12 09:35:36 +00003699 if (cur_offset >= block_end)
Yan Zheng9036c102008-10-30 14:19:41 -04003700 break;
3701 }
3702
Yan, Zhenga22285a2010-05-16 10:48:46 -04003703 free_extent_map(em);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003704 unlock_extent_cached(io_tree, hole_start, block_end - 1, &cached_state,
3705 GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003706 return err;
3707}
3708
Josef Bacika41ad392011-01-31 15:30:16 -05003709static int btrfs_setsize(struct inode *inode, loff_t newsize)
Yan, Zheng80825102009-11-12 09:35:36 +00003710{
Miao Xief4a2f4c2011-12-14 20:12:01 -05003711 struct btrfs_root *root = BTRFS_I(inode)->root;
3712 struct btrfs_trans_handle *trans;
Josef Bacika41ad392011-01-31 15:30:16 -05003713 loff_t oldsize = i_size_read(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003714 int ret;
3715
Josef Bacika41ad392011-01-31 15:30:16 -05003716 if (newsize == oldsize)
Yan, Zheng80825102009-11-12 09:35:36 +00003717 return 0;
3718
Josef Bacika41ad392011-01-31 15:30:16 -05003719 if (newsize > oldsize) {
Josef Bacika41ad392011-01-31 15:30:16 -05003720 truncate_pagecache(inode, oldsize, newsize);
3721 ret = btrfs_cont_expand(inode, oldsize, newsize);
Miao Xief4a2f4c2011-12-14 20:12:01 -05003722 if (ret)
Yan, Zheng80825102009-11-12 09:35:36 +00003723 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00003724
Miao Xief4a2f4c2011-12-14 20:12:01 -05003725 trans = btrfs_start_transaction(root, 1);
3726 if (IS_ERR(trans))
3727 return PTR_ERR(trans);
3728
3729 i_size_write(inode, newsize);
3730 btrfs_ordered_update_i_size(inode, i_size_read(inode), NULL);
3731 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik7ad85bb2012-01-12 19:10:12 -05003732 btrfs_end_transaction(trans, root);
Josef Bacika41ad392011-01-31 15:30:16 -05003733 } else {
Yan, Zheng80825102009-11-12 09:35:36 +00003734
Josef Bacika41ad392011-01-31 15:30:16 -05003735 /*
3736 * We're truncating a file that used to have good data down to
3737 * zero. Make sure it gets into the ordered flush list so that
3738 * any new writes get down to disk quickly.
3739 */
3740 if (newsize == 0)
Josef Bacik72ac3c02012-05-23 14:13:11 -04003741 set_bit(BTRFS_INODE_ORDERED_DATA_CLOSE,
3742 &BTRFS_I(inode)->runtime_flags);
Yan, Zheng80825102009-11-12 09:35:36 +00003743
Josef Bacika41ad392011-01-31 15:30:16 -05003744 /* we don't support swapfiles, so vmtruncate shouldn't fail */
3745 truncate_setsize(inode, newsize);
3746 ret = btrfs_truncate(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003747 }
3748
Josef Bacika41ad392011-01-31 15:30:16 -05003749 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00003750}
3751
Chris Mason39279cc2007-06-12 06:35:45 -04003752static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
3753{
3754 struct inode *inode = dentry->d_inode;
Li Zefanb83cc962010-12-20 16:04:08 +08003755 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003756 int err;
3757
Li Zefanb83cc962010-12-20 16:04:08 +08003758 if (btrfs_root_readonly(root))
3759 return -EROFS;
3760
Chris Mason39279cc2007-06-12 06:35:45 -04003761 err = inode_change_ok(inode, attr);
3762 if (err)
3763 return err;
3764
Chris Mason5a3f23d2009-03-31 13:27:11 -04003765 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
Josef Bacika41ad392011-01-31 15:30:16 -05003766 err = btrfs_setsize(inode, attr->ia_size);
Yan, Zheng80825102009-11-12 09:35:36 +00003767 if (err)
3768 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003769 }
Yan Zheng9036c102008-10-30 14:19:41 -04003770
Christoph Hellwig10257742010-06-04 11:30:02 +02003771 if (attr->ia_valid) {
3772 setattr_copy(inode, attr);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04003773 inode_inc_iversion(inode);
Josef Bacik22c44fe2011-11-30 10:45:38 -05003774 err = btrfs_dirty_inode(inode);
Josef Bacik33268ea2008-07-24 12:16:36 -04003775
Josef Bacik22c44fe2011-11-30 10:45:38 -05003776 if (!err && attr->ia_valid & ATTR_MODE)
Christoph Hellwig10257742010-06-04 11:30:02 +02003777 err = btrfs_acl_chmod(inode);
3778 }
3779
Chris Mason39279cc2007-06-12 06:35:45 -04003780 return err;
3781}
Chris Mason61295eb2008-01-14 16:24:38 -05003782
Al Virobd555972010-06-07 11:35:40 -04003783void btrfs_evict_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04003784{
3785 struct btrfs_trans_handle *trans;
3786 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik726c35f2011-09-26 15:46:06 -04003787 struct btrfs_block_rsv *rsv, *global_rsv;
Josef Bacik07127182011-08-19 10:29:59 -04003788 u64 min_size = btrfs_calc_trunc_metadata_size(root, 1);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003789 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04003790 int ret;
3791
liubo1abe9b82011-03-24 11:18:59 +00003792 trace_btrfs_inode_evict(inode);
3793
Chris Mason39279cc2007-06-12 06:35:45 -04003794 truncate_inode_pages(&inode->i_data, 0);
Josef Bacik0af3d002010-06-21 14:48:16 -04003795 if (inode->i_nlink && (btrfs_root_refs(&root->root_item) != 0 ||
Liu Bo83eea1f2012-07-10 05:28:39 -06003796 btrfs_is_free_space_inode(inode)))
Al Virobd555972010-06-07 11:35:40 -04003797 goto no_delete;
3798
Chris Mason39279cc2007-06-12 06:35:45 -04003799 if (is_bad_inode(inode)) {
Josef Bacik7b128762008-07-24 12:17:14 -04003800 btrfs_orphan_del(NULL, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003801 goto no_delete;
3802 }
Al Virobd555972010-06-07 11:35:40 -04003803 /* do we really want it for ->i_nlink > 0 and zero btrfs_root_refs? */
Chris Mason4a096752008-07-21 10:29:44 -04003804 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Chris Mason5f39d392007-10-15 16:14:19 -04003805
Yan, Zhengc71bf092009-11-12 09:34:40 +00003806 if (root->fs_info->log_root_recovering) {
Liu Bo6bf02312012-06-25 21:59:09 -06003807 BUG_ON(test_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
Josef Bacik8a35d952012-05-23 14:26:42 -04003808 &BTRFS_I(inode)->runtime_flags));
Yan, Zhengc71bf092009-11-12 09:34:40 +00003809 goto no_delete;
3810 }
3811
Yan, Zheng76dda932009-09-21 16:00:26 -04003812 if (inode->i_nlink > 0) {
3813 BUG_ON(btrfs_root_refs(&root->root_item) != 0);
3814 goto no_delete;
3815 }
3816
Miao Xie66d8f3d2012-09-06 04:02:28 -06003817 rsv = btrfs_alloc_block_rsv(root, BTRFS_BLOCK_RSV_TEMP);
Josef Bacik4289a662011-08-05 13:22:24 -04003818 if (!rsv) {
3819 btrfs_orphan_del(NULL, inode);
3820 goto no_delete;
3821 }
Josef Bacik4a338542011-08-29 11:01:31 -04003822 rsv->size = min_size;
Josef Bacikca7e70f2012-08-27 17:48:15 -04003823 rsv->failfast = 1;
Josef Bacik726c35f2011-09-26 15:46:06 -04003824 global_rsv = &root->fs_info->global_block_rsv;
Josef Bacik4289a662011-08-05 13:22:24 -04003825
Chris Masondbe674a2008-07-17 12:54:05 -04003826 btrfs_i_size_write(inode, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003827
Josef Bacik4289a662011-08-05 13:22:24 -04003828 /*
Miao Xie8407aa42012-09-07 01:43:32 -06003829 * This is a bit simpler than btrfs_truncate since we've already
3830 * reserved our space for our orphan item in the unlink, so we just
3831 * need to reserve some slack space in case we add bytes and update
3832 * inode item when doing the truncate.
Josef Bacik4289a662011-08-05 13:22:24 -04003833 */
Yan, Zheng80825102009-11-12 09:35:36 +00003834 while (1) {
Miao Xieaa38a712011-11-18 17:43:00 +08003835 ret = btrfs_block_rsv_refill_noflush(root, rsv, min_size);
Yan, Zheng80825102009-11-12 09:35:36 +00003836
Josef Bacik726c35f2011-09-26 15:46:06 -04003837 /*
3838 * Try and steal from the global reserve since we will
3839 * likely not use this space anyway, we want to try as
3840 * hard as possible to get this to work.
3841 */
3842 if (ret)
3843 ret = btrfs_block_rsv_migrate(global_rsv, rsv, min_size);
3844
Yan, Zhengd68fc572010-05-16 10:49:58 -04003845 if (ret) {
Josef Bacik4289a662011-08-05 13:22:24 -04003846 printk(KERN_WARNING "Could not get space for a "
Josef Bacik482e6dc2011-08-19 10:31:56 -04003847 "delete, will truncate on mount %d\n", ret);
Josef Bacik4289a662011-08-05 13:22:24 -04003848 btrfs_orphan_del(NULL, inode);
3849 btrfs_free_block_rsv(root, rsv);
3850 goto no_delete;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003851 }
3852
Miao Xie8407aa42012-09-07 01:43:32 -06003853 trans = btrfs_start_transaction_noflush(root, 1);
Josef Bacik4289a662011-08-05 13:22:24 -04003854 if (IS_ERR(trans)) {
3855 btrfs_orphan_del(NULL, inode);
3856 btrfs_free_block_rsv(root, rsv);
3857 goto no_delete;
3858 }
3859
3860 trans->block_rsv = rsv;
3861
Yan, Zhengd68fc572010-05-16 10:49:58 -04003862 ret = btrfs_truncate_inode_items(trans, root, inode, 0, 0);
Josef Bacikca7e70f2012-08-27 17:48:15 -04003863 if (ret != -ENOSPC)
Yan, Zheng80825102009-11-12 09:35:36 +00003864 break;
3865
Miao Xie8407aa42012-09-07 01:43:32 -06003866 trans->block_rsv = &root->fs_info->trans_block_rsv;
3867 ret = btrfs_update_inode(trans, root, inode);
3868 BUG_ON(ret);
3869
Yan, Zheng80825102009-11-12 09:35:36 +00003870 nr = trans->blocks_used;
3871 btrfs_end_transaction(trans, root);
3872 trans = NULL;
3873 btrfs_btree_balance_dirty(root, nr);
Josef Bacik7b128762008-07-24 12:17:14 -04003874 }
3875
Josef Bacik4289a662011-08-05 13:22:24 -04003876 btrfs_free_block_rsv(root, rsv);
3877
Yan, Zheng80825102009-11-12 09:35:36 +00003878 if (ret == 0) {
Josef Bacik4289a662011-08-05 13:22:24 -04003879 trans->block_rsv = root->orphan_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00003880 ret = btrfs_orphan_del(trans, inode);
3881 BUG_ON(ret);
3882 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003883
Josef Bacik4289a662011-08-05 13:22:24 -04003884 trans->block_rsv = &root->fs_info->trans_block_rsv;
Li Zefan581bb052011-04-20 10:06:11 +08003885 if (!(root == root->fs_info->tree_root ||
3886 root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID))
Li Zefan33345d012011-04-20 10:31:50 +08003887 btrfs_return_ino(root, btrfs_ino(inode));
Li Zefan581bb052011-04-20 10:06:11 +08003888
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003889 nr = trans->blocks_used;
Chris Mason54aa1f42007-06-22 14:16:25 -04003890 btrfs_end_transaction(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003891 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003892no_delete:
Jan Karadbd57682012-05-03 14:48:02 +02003893 clear_inode(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003894 return;
Chris Mason39279cc2007-06-12 06:35:45 -04003895}
3896
3897/*
3898 * this returns the key found in the dir entry in the location pointer.
3899 * If no dir entries were found, location->objectid is 0.
3900 */
3901static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
3902 struct btrfs_key *location)
3903{
3904 const char *name = dentry->d_name.name;
3905 int namelen = dentry->d_name.len;
3906 struct btrfs_dir_item *di;
3907 struct btrfs_path *path;
3908 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04003909 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003910
3911 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07003912 if (!path)
3913 return -ENOMEM;
Chris Mason39544012007-12-12 14:38:19 -05003914
Li Zefan33345d012011-04-20 10:31:50 +08003915 di = btrfs_lookup_dir_item(NULL, root, path, btrfs_ino(dir), name,
Chris Mason39279cc2007-06-12 06:35:45 -04003916 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04003917 if (IS_ERR(di))
3918 ret = PTR_ERR(di);
Chris Masond3977122009-01-05 21:25:51 -05003919
David Sterbac7040052011-04-19 18:00:01 +02003920 if (IS_ERR_OR_NULL(di))
Chris Mason39544012007-12-12 14:38:19 -05003921 goto out_err;
Chris Masond3977122009-01-05 21:25:51 -05003922
Chris Mason5f39d392007-10-15 16:14:19 -04003923 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04003924out:
Chris Mason39279cc2007-06-12 06:35:45 -04003925 btrfs_free_path(path);
3926 return ret;
Chris Mason39544012007-12-12 14:38:19 -05003927out_err:
3928 location->objectid = 0;
3929 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04003930}
3931
3932/*
3933 * when we hit a tree root in a directory, the btrfs part of the inode
3934 * needs to be changed to reflect the root directory of the tree root. This
3935 * is kind of like crossing a mount point.
3936 */
3937static int fixup_tree_root_location(struct btrfs_root *root,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003938 struct inode *dir,
3939 struct dentry *dentry,
3940 struct btrfs_key *location,
3941 struct btrfs_root **sub_root)
Chris Mason39279cc2007-06-12 06:35:45 -04003942{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003943 struct btrfs_path *path;
3944 struct btrfs_root *new_root;
3945 struct btrfs_root_ref *ref;
3946 struct extent_buffer *leaf;
3947 int ret;
3948 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003949
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003950 path = btrfs_alloc_path();
3951 if (!path) {
3952 err = -ENOMEM;
3953 goto out;
3954 }
Chris Mason39279cc2007-06-12 06:35:45 -04003955
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003956 err = -ENOENT;
3957 ret = btrfs_find_root_ref(root->fs_info->tree_root, path,
3958 BTRFS_I(dir)->root->root_key.objectid,
3959 location->objectid);
3960 if (ret) {
3961 if (ret < 0)
3962 err = ret;
3963 goto out;
3964 }
Chris Mason39279cc2007-06-12 06:35:45 -04003965
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003966 leaf = path->nodes[0];
3967 ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref);
Li Zefan33345d012011-04-20 10:31:50 +08003968 if (btrfs_root_ref_dirid(leaf, ref) != btrfs_ino(dir) ||
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003969 btrfs_root_ref_name_len(leaf, ref) != dentry->d_name.len)
3970 goto out;
3971
3972 ret = memcmp_extent_buffer(leaf, dentry->d_name.name,
3973 (unsigned long)(ref + 1),
3974 dentry->d_name.len);
3975 if (ret)
3976 goto out;
3977
David Sterbab3b4aa72011-04-21 01:20:15 +02003978 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003979
3980 new_root = btrfs_read_fs_root_no_name(root->fs_info, location);
3981 if (IS_ERR(new_root)) {
3982 err = PTR_ERR(new_root);
3983 goto out;
3984 }
3985
3986 if (btrfs_root_refs(&new_root->root_item) == 0) {
3987 err = -ENOENT;
3988 goto out;
3989 }
3990
3991 *sub_root = new_root;
3992 location->objectid = btrfs_root_dirid(&new_root->root_item);
3993 location->type = BTRFS_INODE_ITEM_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -04003994 location->offset = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003995 err = 0;
3996out:
3997 btrfs_free_path(path);
3998 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003999}
4000
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004001static void inode_tree_add(struct inode *inode)
4002{
4003 struct btrfs_root *root = BTRFS_I(inode)->root;
4004 struct btrfs_inode *entry;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004005 struct rb_node **p;
4006 struct rb_node *parent;
Li Zefan33345d012011-04-20 10:31:50 +08004007 u64 ino = btrfs_ino(inode);
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004008again:
4009 p = &root->inode_tree.rb_node;
4010 parent = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004011
Al Viro1d3382cb2010-10-23 15:19:20 -04004012 if (inode_unhashed(inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04004013 return;
4014
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004015 spin_lock(&root->inode_lock);
4016 while (*p) {
4017 parent = *p;
4018 entry = rb_entry(parent, struct btrfs_inode, rb_node);
4019
Li Zefan33345d012011-04-20 10:31:50 +08004020 if (ino < btrfs_ino(&entry->vfs_inode))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004021 p = &parent->rb_left;
Li Zefan33345d012011-04-20 10:31:50 +08004022 else if (ino > btrfs_ino(&entry->vfs_inode))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004023 p = &parent->rb_right;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004024 else {
4025 WARN_ON(!(entry->vfs_inode.i_state &
Al Viroa4ffdde2010-06-02 17:38:30 -04004026 (I_WILL_FREE | I_FREEING)));
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004027 rb_erase(parent, &root->inode_tree);
4028 RB_CLEAR_NODE(parent);
4029 spin_unlock(&root->inode_lock);
4030 goto again;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004031 }
4032 }
4033 rb_link_node(&BTRFS_I(inode)->rb_node, parent, p);
4034 rb_insert_color(&BTRFS_I(inode)->rb_node, &root->inode_tree);
4035 spin_unlock(&root->inode_lock);
4036}
4037
4038static void inode_tree_del(struct inode *inode)
4039{
4040 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -04004041 int empty = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004042
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004043 spin_lock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004044 if (!RB_EMPTY_NODE(&BTRFS_I(inode)->rb_node)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004045 rb_erase(&BTRFS_I(inode)->rb_node, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004046 RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node);
Yan, Zheng76dda932009-09-21 16:00:26 -04004047 empty = RB_EMPTY_ROOT(&root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004048 }
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004049 spin_unlock(&root->inode_lock);
Yan, Zheng76dda932009-09-21 16:00:26 -04004050
Josef Bacik0af3d002010-06-21 14:48:16 -04004051 /*
4052 * Free space cache has inodes in the tree root, but the tree root has a
4053 * root_refs of 0, so this could end up dropping the tree root as a
4054 * snapshot, so we need the extra !root->fs_info->tree_root check to
4055 * make sure we don't drop it.
4056 */
4057 if (empty && btrfs_root_refs(&root->root_item) == 0 &&
4058 root != root->fs_info->tree_root) {
Yan, Zheng76dda932009-09-21 16:00:26 -04004059 synchronize_srcu(&root->fs_info->subvol_srcu);
4060 spin_lock(&root->inode_lock);
4061 empty = RB_EMPTY_ROOT(&root->inode_tree);
4062 spin_unlock(&root->inode_lock);
4063 if (empty)
4064 btrfs_add_dead_root(root);
4065 }
4066}
4067
Jeff Mahoney143bede2012-03-01 14:56:26 +01004068void btrfs_invalidate_inodes(struct btrfs_root *root)
Yan, Zheng76dda932009-09-21 16:00:26 -04004069{
4070 struct rb_node *node;
4071 struct rb_node *prev;
4072 struct btrfs_inode *entry;
4073 struct inode *inode;
4074 u64 objectid = 0;
4075
4076 WARN_ON(btrfs_root_refs(&root->root_item) != 0);
4077
4078 spin_lock(&root->inode_lock);
4079again:
4080 node = root->inode_tree.rb_node;
4081 prev = NULL;
4082 while (node) {
4083 prev = node;
4084 entry = rb_entry(node, struct btrfs_inode, rb_node);
4085
Li Zefan33345d012011-04-20 10:31:50 +08004086 if (objectid < btrfs_ino(&entry->vfs_inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04004087 node = node->rb_left;
Li Zefan33345d012011-04-20 10:31:50 +08004088 else if (objectid > btrfs_ino(&entry->vfs_inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04004089 node = node->rb_right;
4090 else
4091 break;
4092 }
4093 if (!node) {
4094 while (prev) {
4095 entry = rb_entry(prev, struct btrfs_inode, rb_node);
Li Zefan33345d012011-04-20 10:31:50 +08004096 if (objectid <= btrfs_ino(&entry->vfs_inode)) {
Yan, Zheng76dda932009-09-21 16:00:26 -04004097 node = prev;
4098 break;
4099 }
4100 prev = rb_next(prev);
4101 }
4102 }
4103 while (node) {
4104 entry = rb_entry(node, struct btrfs_inode, rb_node);
Li Zefan33345d012011-04-20 10:31:50 +08004105 objectid = btrfs_ino(&entry->vfs_inode) + 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04004106 inode = igrab(&entry->vfs_inode);
4107 if (inode) {
4108 spin_unlock(&root->inode_lock);
4109 if (atomic_read(&inode->i_count) > 1)
4110 d_prune_aliases(inode);
4111 /*
Al Viro45321ac2010-06-07 13:43:19 -04004112 * btrfs_drop_inode will have it removed from
Yan, Zheng76dda932009-09-21 16:00:26 -04004113 * the inode cache when its usage count
4114 * hits zero.
4115 */
4116 iput(inode);
4117 cond_resched();
4118 spin_lock(&root->inode_lock);
4119 goto again;
4120 }
4121
4122 if (cond_resched_lock(&root->inode_lock))
4123 goto again;
4124
4125 node = rb_next(node);
4126 }
4127 spin_unlock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004128}
4129
Chris Masone02119d2008-09-05 16:13:11 -04004130static int btrfs_init_locked_inode(struct inode *inode, void *p)
4131{
4132 struct btrfs_iget_args *args = p;
4133 inode->i_ino = args->ino;
Chris Masone02119d2008-09-05 16:13:11 -04004134 BTRFS_I(inode)->root = args->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004135 return 0;
4136}
4137
4138static int btrfs_find_actor(struct inode *inode, void *opaque)
4139{
4140 struct btrfs_iget_args *args = opaque;
Li Zefan33345d012011-04-20 10:31:50 +08004141 return args->ino == btrfs_ino(inode) &&
Chris Masond3977122009-01-05 21:25:51 -05004142 args->root == BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004143}
4144
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004145static struct inode *btrfs_iget_locked(struct super_block *s,
4146 u64 objectid,
4147 struct btrfs_root *root)
Chris Mason39279cc2007-06-12 06:35:45 -04004148{
4149 struct inode *inode;
4150 struct btrfs_iget_args args;
4151 args.ino = objectid;
4152 args.root = root;
4153
4154 inode = iget5_locked(s, objectid, btrfs_find_actor,
4155 btrfs_init_locked_inode,
4156 (void *)&args);
4157 return inode;
4158}
4159
Balaji Rao1a54ef82008-07-21 02:01:04 +05304160/* Get an inode object given its location and corresponding root.
4161 * Returns in *is_new if the inode was read from disk
4162 */
4163struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
Josef Bacik73f73412009-12-04 17:38:27 +00004164 struct btrfs_root *root, int *new)
Balaji Rao1a54ef82008-07-21 02:01:04 +05304165{
4166 struct inode *inode;
4167
4168 inode = btrfs_iget_locked(s, location->objectid, root);
4169 if (!inode)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004170 return ERR_PTR(-ENOMEM);
Balaji Rao1a54ef82008-07-21 02:01:04 +05304171
4172 if (inode->i_state & I_NEW) {
4173 BTRFS_I(inode)->root = root;
4174 memcpy(&BTRFS_I(inode)->location, location, sizeof(*location));
4175 btrfs_read_locked_inode(inode);
Mark Fasheh1748f842011-07-12 11:25:31 -07004176 if (!is_bad_inode(inode)) {
4177 inode_tree_add(inode);
4178 unlock_new_inode(inode);
4179 if (new)
4180 *new = 1;
4181 } else {
Sergei Trofimoviche0b6d652011-09-11 10:52:24 -04004182 unlock_new_inode(inode);
4183 iput(inode);
4184 inode = ERR_PTR(-ESTALE);
Mark Fasheh1748f842011-07-12 11:25:31 -07004185 }
4186 }
4187
Balaji Rao1a54ef82008-07-21 02:01:04 +05304188 return inode;
4189}
4190
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004191static struct inode *new_simple_dir(struct super_block *s,
4192 struct btrfs_key *key,
4193 struct btrfs_root *root)
4194{
4195 struct inode *inode = new_inode(s);
4196
4197 if (!inode)
4198 return ERR_PTR(-ENOMEM);
4199
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004200 BTRFS_I(inode)->root = root;
4201 memcpy(&BTRFS_I(inode)->location, key, sizeof(*key));
Josef Bacik72ac3c02012-05-23 14:13:11 -04004202 set_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004203
4204 inode->i_ino = BTRFS_EMPTY_SUBVOL_DIR_OBJECTID;
Li Zefan848cce02012-02-21 17:04:28 +08004205 inode->i_op = &btrfs_dir_ro_inode_operations;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004206 inode->i_fop = &simple_dir_operations;
4207 inode->i_mode = S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO;
4208 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
4209
4210 return inode;
4211}
4212
Chris Mason3de45862008-11-17 21:02:50 -05004213struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04004214{
Chris Masond3977122009-01-05 21:25:51 -05004215 struct inode *inode;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004216 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004217 struct btrfs_root *sub_root = root;
4218 struct btrfs_key location;
Yan, Zheng76dda932009-09-21 16:00:26 -04004219 int index;
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004220 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004221
4222 if (dentry->d_name.len > BTRFS_NAME_LEN)
4223 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04004224
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004225 if (unlikely(d_need_lookup(dentry))) {
4226 memcpy(&location, dentry->d_fsdata, sizeof(struct btrfs_key));
4227 kfree(dentry->d_fsdata);
4228 dentry->d_fsdata = NULL;
Josef Bacika66e7cc2011-09-18 10:34:03 -04004229 /* This thing is hashed, drop it for now */
4230 d_drop(dentry);
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004231 } else {
4232 ret = btrfs_inode_by_name(dir, dentry, &location);
4233 }
Chris Mason5f39d392007-10-15 16:14:19 -04004234
Chris Mason39279cc2007-06-12 06:35:45 -04004235 if (ret < 0)
4236 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04004237
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004238 if (location.objectid == 0)
4239 return NULL;
4240
4241 if (location.type == BTRFS_INODE_ITEM_KEY) {
Josef Bacik73f73412009-12-04 17:38:27 +00004242 inode = btrfs_iget(dir->i_sb, &location, root, NULL);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004243 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04004244 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004245
4246 BUG_ON(location.type != BTRFS_ROOT_ITEM_KEY);
4247
Yan, Zheng76dda932009-09-21 16:00:26 -04004248 index = srcu_read_lock(&root->fs_info->subvol_srcu);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004249 ret = fixup_tree_root_location(root, dir, dentry,
4250 &location, &sub_root);
4251 if (ret < 0) {
4252 if (ret != -ENOENT)
4253 inode = ERR_PTR(ret);
4254 else
4255 inode = new_simple_dir(dir->i_sb, &location, sub_root);
4256 } else {
Josef Bacik73f73412009-12-04 17:38:27 +00004257 inode = btrfs_iget(dir->i_sb, &location, sub_root, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04004258 }
Yan, Zheng76dda932009-09-21 16:00:26 -04004259 srcu_read_unlock(&root->fs_info->subvol_srcu, index);
4260
Julia Lawall34d19ba2011-01-24 19:55:19 +00004261 if (!IS_ERR(inode) && root != sub_root) {
Yan, Zhengc71bf092009-11-12 09:34:40 +00004262 down_read(&root->fs_info->cleanup_work_sem);
4263 if (!(inode->i_sb->s_flags & MS_RDONLY))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05004264 ret = btrfs_orphan_cleanup(sub_root);
Yan, Zhengc71bf092009-11-12 09:34:40 +00004265 up_read(&root->fs_info->cleanup_work_sem);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05004266 if (ret)
4267 inode = ERR_PTR(ret);
Yan, Zhengc71bf092009-11-12 09:34:40 +00004268 }
4269
Chris Mason3de45862008-11-17 21:02:50 -05004270 return inode;
4271}
4272
Nick Pigginfe15ce42011-01-07 17:49:23 +11004273static int btrfs_dentry_delete(const struct dentry *dentry)
Yan, Zheng76dda932009-09-21 16:00:26 -04004274{
4275 struct btrfs_root *root;
Li Zefan848cce02012-02-21 17:04:28 +08004276 struct inode *inode = dentry->d_inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04004277
Li Zefan848cce02012-02-21 17:04:28 +08004278 if (!inode && !IS_ROOT(dentry))
4279 inode = dentry->d_parent->d_inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04004280
Li Zefan848cce02012-02-21 17:04:28 +08004281 if (inode) {
4282 root = BTRFS_I(inode)->root;
Yan, Zhengefefb142009-10-09 09:25:16 -04004283 if (btrfs_root_refs(&root->root_item) == 0)
4284 return 1;
Li Zefan848cce02012-02-21 17:04:28 +08004285
4286 if (btrfs_ino(inode) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
4287 return 1;
Yan, Zhengefefb142009-10-09 09:25:16 -04004288 }
Yan, Zheng76dda932009-09-21 16:00:26 -04004289 return 0;
4290}
4291
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004292static void btrfs_dentry_release(struct dentry *dentry)
4293{
4294 if (dentry->d_fsdata)
4295 kfree(dentry->d_fsdata);
4296}
4297
Chris Mason3de45862008-11-17 21:02:50 -05004298static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -04004299 unsigned int flags)
Chris Mason3de45862008-11-17 21:02:50 -05004300{
Josef Bacika66e7cc2011-09-18 10:34:03 -04004301 struct dentry *ret;
4302
4303 ret = d_splice_alias(btrfs_lookup_dentry(dir, dentry), dentry);
4304 if (unlikely(d_need_lookup(dentry))) {
4305 spin_lock(&dentry->d_lock);
4306 dentry->d_flags &= ~DCACHE_NEED_LOOKUP;
4307 spin_unlock(&dentry->d_lock);
4308 }
4309 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004310}
4311
Miao Xie16cdcec2011-04-22 18:12:22 +08004312unsigned char btrfs_filetype_table[] = {
Chris Mason39279cc2007-06-12 06:35:45 -04004313 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
4314};
4315
David Woodhousecbdf5a22008-08-06 19:42:33 +01004316static int btrfs_real_readdir(struct file *filp, void *dirent,
4317 filldir_t filldir)
Chris Mason39279cc2007-06-12 06:35:45 -04004318{
Chris Mason6da6aba2007-12-18 16:15:09 -05004319 struct inode *inode = filp->f_dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04004320 struct btrfs_root *root = BTRFS_I(inode)->root;
4321 struct btrfs_item *item;
4322 struct btrfs_dir_item *di;
4323 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04004324 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04004325 struct btrfs_path *path;
Miao Xie16cdcec2011-04-22 18:12:22 +08004326 struct list_head ins_list;
4327 struct list_head del_list;
Chris Mason39279cc2007-06-12 06:35:45 -04004328 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -04004329 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04004330 int slot;
Chris Mason39279cc2007-06-12 06:35:45 -04004331 unsigned char d_type;
4332 int over = 0;
4333 u32 di_cur;
4334 u32 di_total;
4335 u32 di_len;
4336 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04004337 char tmp_name[32];
4338 char *name_ptr;
4339 int name_len;
Miao Xie16cdcec2011-04-22 18:12:22 +08004340 int is_curr = 0; /* filp->f_pos points to the current index? */
Chris Mason39279cc2007-06-12 06:35:45 -04004341
4342 /* FIXME, use a real flag for deciding about the key type */
4343 if (root->fs_info->tree_root == root)
4344 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04004345
Chris Mason39544012007-12-12 14:38:19 -05004346 /* special case for "." */
4347 if (filp->f_pos == 0) {
Hidetoshi Seto3765fef2011-09-18 10:20:46 -04004348 over = filldir(dirent, ".", 1,
4349 filp->f_pos, btrfs_ino(inode), DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05004350 if (over)
4351 return 0;
4352 filp->f_pos = 1;
4353 }
Chris Mason39544012007-12-12 14:38:19 -05004354 /* special case for .., just use the back ref */
4355 if (filp->f_pos == 1) {
David Woodhouse5ecc7e52008-08-17 15:14:48 +01004356 u64 pino = parent_ino(filp->f_path.dentry);
Chris Mason39544012007-12-12 14:38:19 -05004357 over = filldir(dirent, "..", 2,
Hidetoshi Seto3765fef2011-09-18 10:20:46 -04004358 filp->f_pos, pino, DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05004359 if (over)
David Woodhouse49593bf2008-08-17 17:08:36 +01004360 return 0;
Chris Mason39544012007-12-12 14:38:19 -05004361 filp->f_pos = 2;
4362 }
David Woodhouse49593bf2008-08-17 17:08:36 +01004363 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08004364 if (!path)
4365 return -ENOMEM;
Chris Masonff5714c2011-05-28 07:00:39 -04004366
Josef Bacik026fd312011-05-13 10:32:11 -04004367 path->reada = 1;
David Woodhouse49593bf2008-08-17 17:08:36 +01004368
Miao Xie16cdcec2011-04-22 18:12:22 +08004369 if (key_type == BTRFS_DIR_INDEX_KEY) {
4370 INIT_LIST_HEAD(&ins_list);
4371 INIT_LIST_HEAD(&del_list);
4372 btrfs_get_delayed_items(inode, &ins_list, &del_list);
4373 }
4374
Chris Mason39279cc2007-06-12 06:35:45 -04004375 btrfs_set_key_type(&key, key_type);
4376 key.offset = filp->f_pos;
Li Zefan33345d012011-04-20 10:31:50 +08004377 key.objectid = btrfs_ino(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004378
Chris Mason39279cc2007-06-12 06:35:45 -04004379 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4380 if (ret < 0)
4381 goto err;
David Woodhouse49593bf2008-08-17 17:08:36 +01004382
4383 while (1) {
Chris Mason5f39d392007-10-15 16:14:19 -04004384 leaf = path->nodes[0];
Chris Mason39279cc2007-06-12 06:35:45 -04004385 slot = path->slots[0];
Li Zefanb9e03af2011-03-23 10:43:58 +08004386 if (slot >= btrfs_header_nritems(leaf)) {
4387 ret = btrfs_next_leaf(root, path);
4388 if (ret < 0)
4389 goto err;
4390 else if (ret > 0)
4391 break;
4392 continue;
Chris Mason39279cc2007-06-12 06:35:45 -04004393 }
Chris Mason3de45862008-11-17 21:02:50 -05004394
Chris Mason5f39d392007-10-15 16:14:19 -04004395 item = btrfs_item_nr(leaf, slot);
4396 btrfs_item_key_to_cpu(leaf, &found_key, slot);
4397
4398 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04004399 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004400 if (btrfs_key_type(&found_key) != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04004401 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004402 if (found_key.offset < filp->f_pos)
Li Zefanb9e03af2011-03-23 10:43:58 +08004403 goto next;
Miao Xie16cdcec2011-04-22 18:12:22 +08004404 if (key_type == BTRFS_DIR_INDEX_KEY &&
4405 btrfs_should_delete_dir_index(&del_list,
4406 found_key.offset))
4407 goto next;
Chris Mason5f39d392007-10-15 16:14:19 -04004408
4409 filp->f_pos = found_key.offset;
Miao Xie16cdcec2011-04-22 18:12:22 +08004410 is_curr = 1;
David Woodhouse49593bf2008-08-17 17:08:36 +01004411
Chris Mason39279cc2007-06-12 06:35:45 -04004412 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
4413 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04004414 di_total = btrfs_item_size(leaf, item);
David Woodhouse49593bf2008-08-17 17:08:36 +01004415
4416 while (di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04004417 struct btrfs_key location;
4418
Josef Bacik22a94d42011-03-16 16:47:17 -04004419 if (verify_dir_item(root, leaf, di))
4420 break;
4421
Chris Mason5f39d392007-10-15 16:14:19 -04004422 name_len = btrfs_dir_name_len(leaf, di);
David Woodhouse49593bf2008-08-17 17:08:36 +01004423 if (name_len <= sizeof(tmp_name)) {
Chris Mason5f39d392007-10-15 16:14:19 -04004424 name_ptr = tmp_name;
4425 } else {
4426 name_ptr = kmalloc(name_len, GFP_NOFS);
David Woodhouse49593bf2008-08-17 17:08:36 +01004427 if (!name_ptr) {
4428 ret = -ENOMEM;
4429 goto err;
4430 }
Chris Mason5f39d392007-10-15 16:14:19 -04004431 }
4432 read_extent_buffer(leaf, name_ptr,
4433 (unsigned long)(di + 1), name_len);
4434
4435 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
4436 btrfs_dir_item_key_to_cpu(leaf, di, &location);
Chris Mason3de45862008-11-17 21:02:50 -05004437
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004438
Chris Mason3de45862008-11-17 21:02:50 -05004439 /* is this a reference to our own snapshot? If so
Arne Jansen8c9c2bf2012-02-25 09:09:30 +01004440 * skip it.
4441 *
4442 * In contrast to old kernels, we insert the snapshot's
4443 * dir item and dir index after it has been created, so
4444 * we won't find a reference to our own snapshot. We
4445 * still keep the following code for backward
4446 * compatibility.
Chris Mason3de45862008-11-17 21:02:50 -05004447 */
4448 if (location.type == BTRFS_ROOT_ITEM_KEY &&
4449 location.objectid == root->root_key.objectid) {
4450 over = 0;
4451 goto skip;
4452 }
Chris Mason5f39d392007-10-15 16:14:19 -04004453 over = filldir(dirent, name_ptr, name_len,
David Woodhouse49593bf2008-08-17 17:08:36 +01004454 found_key.offset, location.objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04004455 d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04004456
Chris Mason3de45862008-11-17 21:02:50 -05004457skip:
Chris Mason5f39d392007-10-15 16:14:19 -04004458 if (name_ptr != tmp_name)
4459 kfree(name_ptr);
4460
Chris Mason39279cc2007-06-12 06:35:45 -04004461 if (over)
4462 goto nopos;
Josef Bacik5103e942007-11-16 11:45:54 -05004463 di_len = btrfs_dir_name_len(leaf, di) +
David Woodhouse49593bf2008-08-17 17:08:36 +01004464 btrfs_dir_data_len(leaf, di) + sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04004465 di_cur += di_len;
4466 di = (struct btrfs_dir_item *)((char *)di + di_len);
4467 }
Li Zefanb9e03af2011-03-23 10:43:58 +08004468next:
4469 path->slots[0]++;
Chris Mason39279cc2007-06-12 06:35:45 -04004470 }
David Woodhouse49593bf2008-08-17 17:08:36 +01004471
Miao Xie16cdcec2011-04-22 18:12:22 +08004472 if (key_type == BTRFS_DIR_INDEX_KEY) {
4473 if (is_curr)
4474 filp->f_pos++;
4475 ret = btrfs_readdir_delayed_dir_index(filp, dirent, filldir,
4476 &ins_list);
4477 if (ret)
4478 goto nopos;
4479 }
4480
David Woodhouse49593bf2008-08-17 17:08:36 +01004481 /* Reached end of directory/root. Bump pos past the last item. */
Yan Zheng5e591a02008-02-19 11:41:02 -05004482 if (key_type == BTRFS_DIR_INDEX_KEY)
Jan Engelhardt406266a2009-12-09 22:00:38 +00004483 /*
4484 * 32-bit glibc will use getdents64, but then strtol -
4485 * so the last number we can serve is this.
4486 */
4487 filp->f_pos = 0x7fffffff;
Yan Zheng5e591a02008-02-19 11:41:02 -05004488 else
4489 filp->f_pos++;
Chris Mason39279cc2007-06-12 06:35:45 -04004490nopos:
4491 ret = 0;
4492err:
Miao Xie16cdcec2011-04-22 18:12:22 +08004493 if (key_type == BTRFS_DIR_INDEX_KEY)
4494 btrfs_put_delayed_items(&ins_list, &del_list);
Chris Mason39279cc2007-06-12 06:35:45 -04004495 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04004496 return ret;
4497}
4498
Christoph Hellwiga9185b42010-03-05 09:21:37 +01004499int btrfs_write_inode(struct inode *inode, struct writeback_control *wbc)
Chris Mason39279cc2007-06-12 06:35:45 -04004500{
4501 struct btrfs_root *root = BTRFS_I(inode)->root;
4502 struct btrfs_trans_handle *trans;
4503 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04004504 bool nolock = false;
Chris Mason39279cc2007-06-12 06:35:45 -04004505
Josef Bacik72ac3c02012-05-23 14:13:11 -04004506 if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags))
Chris Mason4ca8b412008-08-05 13:30:48 -04004507 return 0;
4508
Liu Bo83eea1f2012-07-10 05:28:39 -06004509 if (btrfs_fs_closing(root->fs_info) && btrfs_is_free_space_inode(inode))
Li Zefan82d59022011-04-20 10:33:24 +08004510 nolock = true;
Josef Bacik0af3d002010-06-21 14:48:16 -04004511
Christoph Hellwiga9185b42010-03-05 09:21:37 +01004512 if (wbc->sync_mode == WB_SYNC_ALL) {
Josef Bacik0af3d002010-06-21 14:48:16 -04004513 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004514 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0af3d002010-06-21 14:48:16 -04004515 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004516 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00004517 if (IS_ERR(trans))
4518 return PTR_ERR(trans);
Miao Xiea698d0752012-09-20 01:51:59 -06004519 ret = btrfs_commit_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004520 }
4521 return ret;
4522}
4523
4524/*
Chris Mason54aa1f42007-06-22 14:16:25 -04004525 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04004526 * inode changes. But, it is most likely to find the inode in cache.
4527 * FIXME, needs more benchmarking...there are no reasons other than performance
4528 * to keep or drop this code.
4529 */
Josef Bacik22c44fe2011-11-30 10:45:38 -05004530int btrfs_dirty_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04004531{
4532 struct btrfs_root *root = BTRFS_I(inode)->root;
4533 struct btrfs_trans_handle *trans;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004534 int ret;
4535
Josef Bacik72ac3c02012-05-23 14:13:11 -04004536 if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags))
Josef Bacik22c44fe2011-11-30 10:45:38 -05004537 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004538
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004539 trans = btrfs_join_transaction(root);
Josef Bacik22c44fe2011-11-30 10:45:38 -05004540 if (IS_ERR(trans))
4541 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004542
4543 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04004544 if (ret && ret == -ENOSPC) {
4545 /* whoops, lets try again with the full transaction */
4546 btrfs_end_transaction(trans, root);
4547 trans = btrfs_start_transaction(root, 1);
Josef Bacik22c44fe2011-11-30 10:45:38 -05004548 if (IS_ERR(trans))
4549 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004550
Chris Mason94b60442010-05-26 11:02:00 -04004551 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04004552 }
Chris Mason39279cc2007-06-12 06:35:45 -04004553 btrfs_end_transaction(trans, root);
Miao Xie16cdcec2011-04-22 18:12:22 +08004554 if (BTRFS_I(inode)->delayed_node)
4555 btrfs_balance_delayed_items(root);
Josef Bacik22c44fe2011-11-30 10:45:38 -05004556
4557 return ret;
4558}
4559
4560/*
4561 * This is a copy of file_update_time. We need this so we can return error on
4562 * ENOSPC for updating the inode in the case of file write and mmap writes.
4563 */
Josef Bacike41f9412012-03-26 09:46:47 -04004564static int btrfs_update_time(struct inode *inode, struct timespec *now,
4565 int flags)
Josef Bacik22c44fe2011-11-30 10:45:38 -05004566{
Alexander Block2bc5565282012-06-15 09:49:33 +02004567 struct btrfs_root *root = BTRFS_I(inode)->root;
4568
4569 if (btrfs_root_readonly(root))
4570 return -EROFS;
4571
Josef Bacike41f9412012-03-26 09:46:47 -04004572 if (flags & S_VERSION)
Josef Bacik22c44fe2011-11-30 10:45:38 -05004573 inode_inc_iversion(inode);
Josef Bacike41f9412012-03-26 09:46:47 -04004574 if (flags & S_CTIME)
4575 inode->i_ctime = *now;
4576 if (flags & S_MTIME)
4577 inode->i_mtime = *now;
4578 if (flags & S_ATIME)
4579 inode->i_atime = *now;
4580 return btrfs_dirty_inode(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004581}
4582
Chris Masond352ac62008-09-29 15:18:18 -04004583/*
4584 * find the highest existing sequence number in a directory
4585 * and then set the in-memory index_cnt variable to reflect
4586 * free sequence numbers
4587 */
Josef Bacikaec74772008-07-24 12:12:38 -04004588static int btrfs_set_inode_index_count(struct inode *inode)
4589{
4590 struct btrfs_root *root = BTRFS_I(inode)->root;
4591 struct btrfs_key key, found_key;
4592 struct btrfs_path *path;
4593 struct extent_buffer *leaf;
4594 int ret;
4595
Li Zefan33345d012011-04-20 10:31:50 +08004596 key.objectid = btrfs_ino(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004597 btrfs_set_key_type(&key, BTRFS_DIR_INDEX_KEY);
4598 key.offset = (u64)-1;
4599
4600 path = btrfs_alloc_path();
4601 if (!path)
4602 return -ENOMEM;
4603
4604 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4605 if (ret < 0)
4606 goto out;
4607 /* FIXME: we should be able to handle this */
4608 if (ret == 0)
4609 goto out;
4610 ret = 0;
4611
4612 /*
4613 * MAGIC NUMBER EXPLANATION:
4614 * since we search a directory based on f_pos we have to start at 2
4615 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
4616 * else has to start at 2
4617 */
4618 if (path->slots[0] == 0) {
4619 BTRFS_I(inode)->index_cnt = 2;
4620 goto out;
4621 }
4622
4623 path->slots[0]--;
4624
4625 leaf = path->nodes[0];
4626 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
4627
Li Zefan33345d012011-04-20 10:31:50 +08004628 if (found_key.objectid != btrfs_ino(inode) ||
Josef Bacikaec74772008-07-24 12:12:38 -04004629 btrfs_key_type(&found_key) != BTRFS_DIR_INDEX_KEY) {
4630 BTRFS_I(inode)->index_cnt = 2;
4631 goto out;
4632 }
4633
4634 BTRFS_I(inode)->index_cnt = found_key.offset + 1;
4635out:
4636 btrfs_free_path(path);
4637 return ret;
4638}
4639
Chris Masond352ac62008-09-29 15:18:18 -04004640/*
4641 * helper to find a free sequence number in a given directory. This current
4642 * code is very simple, later versions will do smarter things in the btree
4643 */
Chris Mason3de45862008-11-17 21:02:50 -05004644int btrfs_set_inode_index(struct inode *dir, u64 *index)
Josef Bacikaec74772008-07-24 12:12:38 -04004645{
4646 int ret = 0;
4647
4648 if (BTRFS_I(dir)->index_cnt == (u64)-1) {
Miao Xie16cdcec2011-04-22 18:12:22 +08004649 ret = btrfs_inode_delayed_dir_index_count(dir);
4650 if (ret) {
4651 ret = btrfs_set_inode_index_count(dir);
4652 if (ret)
4653 return ret;
4654 }
Josef Bacikaec74772008-07-24 12:12:38 -04004655 }
4656
Chris Mason00e4e6b2008-08-05 11:18:09 -04004657 *index = BTRFS_I(dir)->index_cnt;
Josef Bacikaec74772008-07-24 12:12:38 -04004658 BTRFS_I(dir)->index_cnt++;
4659
4660 return ret;
4661}
4662
Chris Mason39279cc2007-06-12 06:35:45 -04004663static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
4664 struct btrfs_root *root,
Josef Bacikaec74772008-07-24 12:12:38 -04004665 struct inode *dir,
Chris Mason9c583092008-01-29 15:15:18 -05004666 const char *name, int name_len,
Al Viro175a4eb2011-07-26 03:30:54 -04004667 u64 ref_objectid, u64 objectid,
4668 umode_t mode, u64 *index)
Chris Mason39279cc2007-06-12 06:35:45 -04004669{
4670 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04004671 struct btrfs_inode_item *inode_item;
Chris Mason39279cc2007-06-12 06:35:45 -04004672 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04004673 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05004674 struct btrfs_inode_ref *ref;
4675 struct btrfs_key key[2];
4676 u32 sizes[2];
4677 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04004678 int ret;
4679 int owner;
4680
Chris Mason5f39d392007-10-15 16:14:19 -04004681 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07004682 if (!path)
4683 return ERR_PTR(-ENOMEM);
Chris Mason5f39d392007-10-15 16:14:19 -04004684
Chris Mason39279cc2007-06-12 06:35:45 -04004685 inode = new_inode(root->fs_info->sb);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00004686 if (!inode) {
4687 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04004688 return ERR_PTR(-ENOMEM);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00004689 }
Chris Mason39279cc2007-06-12 06:35:45 -04004690
Li Zefan581bb052011-04-20 10:06:11 +08004691 /*
4692 * we have to initialize this early, so we can reclaim the inode
4693 * number if we fail afterwards in this function.
4694 */
4695 inode->i_ino = objectid;
4696
Josef Bacikaec74772008-07-24 12:12:38 -04004697 if (dir) {
liubo1abe9b82011-03-24 11:18:59 +00004698 trace_btrfs_inode_request(dir);
4699
Chris Mason3de45862008-11-17 21:02:50 -05004700 ret = btrfs_set_inode_index(dir, index);
Shen Feng09771432009-04-02 16:46:06 -04004701 if (ret) {
Yoshinori Sano8fb27642011-04-09 02:30:07 +00004702 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04004703 iput(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004704 return ERR_PTR(ret);
Shen Feng09771432009-04-02 16:46:06 -04004705 }
Josef Bacikaec74772008-07-24 12:12:38 -04004706 }
4707 /*
4708 * index_cnt is ignored for everything but a dir,
4709 * btrfs_get_inode_index_count has an explanation for the magic
4710 * number
4711 */
4712 BTRFS_I(inode)->index_cnt = 2;
Chris Mason39279cc2007-06-12 06:35:45 -04004713 BTRFS_I(inode)->root = root;
Chris Masone02119d2008-09-05 16:13:11 -04004714 BTRFS_I(inode)->generation = trans->transid;
Josef Bacik76195852010-11-19 02:18:02 +00004715 inode->i_generation = BTRFS_I(inode)->generation;
Chris Masonb888db2b2007-08-27 16:49:44 -04004716
Josef Bacik5dc562c2012-08-17 13:14:17 -04004717 /*
4718 * We could have gotten an inode number from somebody who was fsynced
4719 * and then removed in this same transaction, so let's just set full
4720 * sync since it will be a full sync anyway and this will blow away the
4721 * old info in the log.
4722 */
4723 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
4724
Al Viro569254b2011-07-24 17:08:40 -04004725 if (S_ISDIR(mode))
Chris Mason39279cc2007-06-12 06:35:45 -04004726 owner = 0;
4727 else
4728 owner = 1;
Chris Mason9c583092008-01-29 15:15:18 -05004729
4730 key[0].objectid = objectid;
4731 btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
4732 key[0].offset = 0;
4733
Mark Fashehf1863732012-08-08 11:32:27 -07004734 /*
4735 * Start new inodes with an inode_ref. This is slightly more
4736 * efficient for small numbers of hard links since they will
4737 * be packed into one item. Extended refs will kick in if we
4738 * add more hard links than can fit in the ref item.
4739 */
Chris Mason9c583092008-01-29 15:15:18 -05004740 key[1].objectid = objectid;
4741 btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY);
4742 key[1].offset = ref_objectid;
4743
4744 sizes[0] = sizeof(struct btrfs_inode_item);
4745 sizes[1] = name_len + sizeof(*ref);
4746
Chris Masonb9473432009-03-13 11:00:37 -04004747 path->leave_spinning = 1;
Chris Mason9c583092008-01-29 15:15:18 -05004748 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, 2);
4749 if (ret != 0)
Chris Mason5f39d392007-10-15 16:14:19 -04004750 goto fail;
4751
Dmitry Monakhovecc11fab2010-03-04 17:31:47 +03004752 inode_init_owner(inode, dir, mode);
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004753 inode_set_bytes(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04004754 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Chris Mason5f39d392007-10-15 16:14:19 -04004755 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
4756 struct btrfs_inode_item);
Li Zefan293f7e02012-07-10 00:58:58 -06004757 memset_extent_buffer(path->nodes[0], 0, (unsigned long)inode_item,
4758 sizeof(*inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04004759 fill_inode_item(trans, path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05004760
4761 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
4762 struct btrfs_inode_ref);
4763 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
Chris Mason00e4e6b2008-08-05 11:18:09 -04004764 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
Chris Mason9c583092008-01-29 15:15:18 -05004765 ptr = (unsigned long)(ref + 1);
4766 write_extent_buffer(path->nodes[0], name, ptr, name_len);
4767
Chris Mason5f39d392007-10-15 16:14:19 -04004768 btrfs_mark_buffer_dirty(path->nodes[0]);
4769 btrfs_free_path(path);
4770
Chris Mason39279cc2007-06-12 06:35:45 -04004771 location = &BTRFS_I(inode)->location;
4772 location->objectid = objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04004773 location->offset = 0;
4774 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
4775
Christoph Hellwig6cbff002009-04-17 10:37:41 +02004776 btrfs_inherit_iflags(inode, dir);
4777
Al Viro569254b2011-07-24 17:08:40 -04004778 if (S_ISREG(mode)) {
Chris Mason94272162009-07-02 12:26:06 -04004779 if (btrfs_test_opt(root, NODATASUM))
4780 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
Liu Bo75e7cb72011-03-22 10:12:20 +00004781 if (btrfs_test_opt(root, NODATACOW) ||
4782 (BTRFS_I(dir)->flags & BTRFS_INODE_NODATACOW))
Chris Mason94272162009-07-02 12:26:06 -04004783 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW;
4784 }
4785
Chris Mason39279cc2007-06-12 06:35:45 -04004786 insert_inode_hash(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004787 inode_tree_add(inode);
liubo1abe9b82011-03-24 11:18:59 +00004788
4789 trace_btrfs_inode_new(inode);
Chris Mason1973f0f2011-06-24 13:13:29 -04004790 btrfs_set_inode_last_trans(trans, inode);
liubo1abe9b82011-03-24 11:18:59 +00004791
Alexander Block8ea05e32012-07-25 17:35:53 +02004792 btrfs_update_root_times(trans, root);
4793
Chris Mason39279cc2007-06-12 06:35:45 -04004794 return inode;
Chris Mason5f39d392007-10-15 16:14:19 -04004795fail:
Josef Bacikaec74772008-07-24 12:12:38 -04004796 if (dir)
4797 BTRFS_I(dir)->index_cnt--;
Chris Mason5f39d392007-10-15 16:14:19 -04004798 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04004799 iput(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004800 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04004801}
4802
4803static inline u8 btrfs_inode_type(struct inode *inode)
4804{
4805 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
4806}
4807
Chris Masond352ac62008-09-29 15:18:18 -04004808/*
4809 * utility function to add 'inode' into 'parent_inode' with
4810 * a give name and a given sequence number.
4811 * if 'add_backref' is true, also insert a backref from the
4812 * inode to the parent directory.
4813 */
Chris Masone02119d2008-09-05 16:13:11 -04004814int btrfs_add_link(struct btrfs_trans_handle *trans,
4815 struct inode *parent_inode, struct inode *inode,
4816 const char *name, int name_len, int add_backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04004817{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004818 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004819 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -04004820 struct btrfs_root *root = BTRFS_I(parent_inode)->root;
Li Zefan33345d012011-04-20 10:31:50 +08004821 u64 ino = btrfs_ino(inode);
4822 u64 parent_ino = btrfs_ino(parent_inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004823
Li Zefan33345d012011-04-20 10:31:50 +08004824 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004825 memcpy(&key, &BTRFS_I(inode)->root->root_key, sizeof(key));
4826 } else {
Li Zefan33345d012011-04-20 10:31:50 +08004827 key.objectid = ino;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004828 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
4829 key.offset = 0;
4830 }
Chris Mason39279cc2007-06-12 06:35:45 -04004831
Li Zefan33345d012011-04-20 10:31:50 +08004832 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004833 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
4834 key.objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08004835 parent_ino, index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004836 } else if (add_backref) {
Li Zefan33345d012011-04-20 10:31:50 +08004837 ret = btrfs_insert_inode_ref(trans, root, name, name_len, ino,
4838 parent_ino, index);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004839 }
4840
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004841 /* Nothing to clean up yet */
4842 if (ret)
4843 return ret;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004844
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004845 ret = btrfs_insert_dir_item(trans, root, name, name_len,
4846 parent_inode, &key,
4847 btrfs_inode_type(inode), index);
4848 if (ret == -EEXIST)
4849 goto fail_dir_item;
4850 else if (ret) {
4851 btrfs_abort_transaction(trans, root, ret);
4852 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004853 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004854
4855 btrfs_i_size_write(parent_inode, parent_inode->i_size +
4856 name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04004857 inode_inc_iversion(parent_inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004858 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
4859 ret = btrfs_update_inode(trans, root, parent_inode);
4860 if (ret)
4861 btrfs_abort_transaction(trans, root, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04004862 return ret;
Chris Masonfe66a052012-02-20 08:40:56 -05004863
4864fail_dir_item:
4865 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
4866 u64 local_index;
4867 int err;
4868 err = btrfs_del_root_ref(trans, root->fs_info->tree_root,
4869 key.objectid, root->root_key.objectid,
4870 parent_ino, &local_index, name, name_len);
4871
4872 } else if (add_backref) {
4873 u64 local_index;
4874 int err;
4875
4876 err = btrfs_del_inode_ref(trans, root, name, name_len,
4877 ino, parent_ino, &local_index);
4878 }
4879 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004880}
4881
4882static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Josef Bacika1b075d2010-11-19 20:36:11 +00004883 struct inode *dir, struct dentry *dentry,
4884 struct inode *inode, int backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04004885{
Josef Bacika1b075d2010-11-19 20:36:11 +00004886 int err = btrfs_add_link(trans, dir, inode,
4887 dentry->d_name.name, dentry->d_name.len,
4888 backref, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004889 if (err > 0)
4890 err = -EEXIST;
4891 return err;
4892}
4893
Josef Bacik618e21d2007-07-11 10:18:17 -04004894static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
Al Viro1a67aaf2011-07-26 01:52:52 -04004895 umode_t mode, dev_t rdev)
Josef Bacik618e21d2007-07-11 10:18:17 -04004896{
4897 struct btrfs_trans_handle *trans;
4898 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05004899 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04004900 int err;
4901 int drop_inode = 0;
4902 u64 objectid;
Chris Mason1832a6d2007-12-21 16:27:21 -05004903 unsigned long nr = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004904 u64 index = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04004905
4906 if (!new_valid_dev(rdev))
4907 return -EINVAL;
4908
Josef Bacik9ed74f22009-09-11 16:12:44 -04004909 /*
4910 * 2 for inode item and ref
4911 * 2 for dir items
4912 * 1 for xattr if selinux is on
4913 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004914 trans = btrfs_start_transaction(root, 5);
4915 if (IS_ERR(trans))
4916 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05004917
Li Zefan581bb052011-04-20 10:06:11 +08004918 err = btrfs_find_free_ino(root, &objectid);
4919 if (err)
4920 goto out_unlock;
4921
Josef Bacikaec74772008-07-24 12:12:38 -04004922 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08004923 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04004924 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04004925 if (IS_ERR(inode)) {
4926 err = PTR_ERR(inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04004927 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04004928 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004929
Eric Paris2a7dba32011-02-01 11:05:39 -05004930 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04004931 if (err) {
4932 drop_inode = 1;
4933 goto out_unlock;
4934 }
4935
Casey Schauflerad19db72011-12-15 10:09:07 -05004936 /*
4937 * If the active LSM wants to access the inode during
4938 * d_instantiate it needs these. Smack checks to see
4939 * if the filesystem supports xattrs by looking at the
4940 * ops vector.
4941 */
4942
4943 inode->i_op = &btrfs_special_inode_operations;
Josef Bacika1b075d2010-11-19 20:36:11 +00004944 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Josef Bacik618e21d2007-07-11 10:18:17 -04004945 if (err)
4946 drop_inode = 1;
4947 else {
Josef Bacik618e21d2007-07-11 10:18:17 -04004948 init_special_inode(inode, inode->i_mode, rdev);
Yan1b4ab1b2007-08-29 09:11:44 -04004949 btrfs_update_inode(trans, root, inode);
Al Viro08c422c2011-12-23 07:58:13 -05004950 d_instantiate(dentry, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04004951 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004952out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004953 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05004954 btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004955 btrfs_btree_balance_dirty(root, nr);
Josef Bacik618e21d2007-07-11 10:18:17 -04004956 if (drop_inode) {
4957 inode_dec_link_count(inode);
4958 iput(inode);
4959 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004960 return err;
4961}
4962
Chris Mason39279cc2007-06-12 06:35:45 -04004963static int btrfs_create(struct inode *dir, struct dentry *dentry,
Al Viroebfc3b42012-06-10 18:05:36 -04004964 umode_t mode, bool excl)
Chris Mason39279cc2007-06-12 06:35:45 -04004965{
4966 struct btrfs_trans_handle *trans;
4967 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05004968 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04004969 int drop_inode = 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004970 int err;
Chris Mason1832a6d2007-12-21 16:27:21 -05004971 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004972 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004973 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004974
Josef Bacik9ed74f22009-09-11 16:12:44 -04004975 /*
4976 * 2 for inode item and ref
4977 * 2 for dir items
4978 * 1 for xattr if selinux is on
4979 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004980 trans = btrfs_start_transaction(root, 5);
4981 if (IS_ERR(trans))
4982 return PTR_ERR(trans);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004983
Li Zefan581bb052011-04-20 10:06:11 +08004984 err = btrfs_find_free_ino(root, &objectid);
4985 if (err)
4986 goto out_unlock;
4987
Josef Bacikaec74772008-07-24 12:12:38 -04004988 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08004989 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04004990 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04004991 if (IS_ERR(inode)) {
4992 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004993 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04004994 }
Chris Mason39279cc2007-06-12 06:35:45 -04004995
Eric Paris2a7dba32011-02-01 11:05:39 -05004996 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04004997 if (err) {
4998 drop_inode = 1;
4999 goto out_unlock;
5000 }
5001
Casey Schauflerad19db72011-12-15 10:09:07 -05005002 /*
5003 * If the active LSM wants to access the inode during
5004 * d_instantiate it needs these. Smack checks to see
5005 * if the filesystem supports xattrs by looking at the
5006 * ops vector.
5007 */
5008 inode->i_fop = &btrfs_file_operations;
5009 inode->i_op = &btrfs_file_inode_operations;
5010
Josef Bacika1b075d2010-11-19 20:36:11 +00005011 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04005012 if (err)
5013 drop_inode = 1;
5014 else {
5015 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04005016 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05005017 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Al Viro08c422c2011-12-23 07:58:13 -05005018 d_instantiate(dentry, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04005019 }
Chris Mason39279cc2007-06-12 06:35:45 -04005020out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005021 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05005022 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04005023 if (drop_inode) {
5024 inode_dec_link_count(inode);
5025 iput(inode);
5026 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005027 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04005028 return err;
5029}
5030
5031static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
5032 struct dentry *dentry)
5033{
5034 struct btrfs_trans_handle *trans;
5035 struct btrfs_root *root = BTRFS_I(dir)->root;
5036 struct inode *inode = old_dentry->d_inode;
Chris Mason00e4e6b2008-08-05 11:18:09 -04005037 u64 index;
Chris Mason1832a6d2007-12-21 16:27:21 -05005038 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005039 int err;
5040 int drop_inode = 0;
5041
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00005042 /* do not allow sys_link's with other subvols of the same device */
5043 if (root->objectid != BTRFS_I(inode)->root->objectid)
Mark Fasheh3ab35642011-03-22 17:20:26 +00005044 return -EXDEV;
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00005045
Mark Fashehf1863732012-08-08 11:32:27 -07005046 if (inode->i_nlink >= BTRFS_LINK_MAX)
Al Viroc055e992011-03-04 17:15:18 +00005047 return -EMLINK;
Josef Bacik9ed74f22009-09-11 16:12:44 -04005048
Chris Mason3de45862008-11-17 21:02:50 -05005049 err = btrfs_set_inode_index(dir, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04005050 if (err)
5051 goto fail;
5052
Yan, Zhenga22285a2010-05-16 10:48:46 -04005053 /*
Miao Xie7e6b6462011-02-18 09:21:17 +00005054 * 2 items for inode and inode ref
Yan, Zhenga22285a2010-05-16 10:48:46 -04005055 * 2 items for dir items
Miao Xie7e6b6462011-02-18 09:21:17 +00005056 * 1 item for parent inode
Yan, Zhenga22285a2010-05-16 10:48:46 -04005057 */
Miao Xie7e6b6462011-02-18 09:21:17 +00005058 trans = btrfs_start_transaction(root, 5);
Yan, Zhenga22285a2010-05-16 10:48:46 -04005059 if (IS_ERR(trans)) {
5060 err = PTR_ERR(trans);
5061 goto fail;
5062 }
Chris Mason5f39d392007-10-15 16:14:19 -04005063
Miao Xie31534952011-04-13 13:19:21 +08005064 btrfs_inc_nlink(inode);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04005065 inode_inc_iversion(inode);
Miao Xie31534952011-04-13 13:19:21 +08005066 inode->i_ctime = CURRENT_TIME;
Al Viro7de9c6ee2010-10-23 11:11:40 -04005067 ihold(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04005068
Josef Bacika1b075d2010-11-19 20:36:11 +00005069 err = btrfs_add_nondir(trans, dir, dentry, inode, 1, index);
Chris Mason5f39d392007-10-15 16:14:19 -04005070
Yan, Zhenga5719522009-09-24 09:17:31 -04005071 if (err) {
Chris Mason39279cc2007-06-12 06:35:45 -04005072 drop_inode = 1;
Yan, Zhenga5719522009-09-24 09:17:31 -04005073 } else {
Al Viro10d9f302011-07-16 23:09:10 -04005074 struct dentry *parent = dentry->d_parent;
Yan, Zhenga5719522009-09-24 09:17:31 -04005075 err = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005076 if (err)
5077 goto fail;
Al Viro08c422c2011-12-23 07:58:13 -05005078 d_instantiate(dentry, inode);
Josef Bacik6a912212010-11-20 09:48:00 +00005079 btrfs_log_new_name(trans, inode, NULL, parent);
Yan, Zhenga5719522009-09-24 09:17:31 -04005080 }
Chris Mason39279cc2007-06-12 06:35:45 -04005081
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005082 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05005083 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05005084fail:
Chris Mason39279cc2007-06-12 06:35:45 -04005085 if (drop_inode) {
5086 inode_dec_link_count(inode);
5087 iput(inode);
5088 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005089 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04005090 return err;
5091}
5092
Al Viro18bb1db2011-07-26 01:41:39 -04005093static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Chris Mason39279cc2007-06-12 06:35:45 -04005094{
Chris Masonb9d86662008-05-02 16:13:49 -04005095 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04005096 struct btrfs_trans_handle *trans;
5097 struct btrfs_root *root = BTRFS_I(dir)->root;
5098 int err = 0;
5099 int drop_on_err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04005100 u64 objectid = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04005101 u64 index = 0;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005102 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04005103
Josef Bacik9ed74f22009-09-11 16:12:44 -04005104 /*
5105 * 2 items for inode and ref
5106 * 2 items for dir items
5107 * 1 for xattr if selinux is on
5108 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04005109 trans = btrfs_start_transaction(root, 5);
5110 if (IS_ERR(trans))
5111 return PTR_ERR(trans);
Chris Mason39279cc2007-06-12 06:35:45 -04005112
Li Zefan581bb052011-04-20 10:06:11 +08005113 err = btrfs_find_free_ino(root, &objectid);
5114 if (err)
5115 goto out_fail;
5116
Josef Bacikaec74772008-07-24 12:12:38 -04005117 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08005118 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04005119 S_IFDIR | mode, &index);
Chris Mason39279cc2007-06-12 06:35:45 -04005120 if (IS_ERR(inode)) {
5121 err = PTR_ERR(inode);
5122 goto out_fail;
5123 }
Chris Mason5f39d392007-10-15 16:14:19 -04005124
Chris Mason39279cc2007-06-12 06:35:45 -04005125 drop_on_err = 1;
Josef Bacik33268ea2008-07-24 12:16:36 -04005126
Eric Paris2a7dba32011-02-01 11:05:39 -05005127 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04005128 if (err)
5129 goto out_fail;
5130
Chris Mason39279cc2007-06-12 06:35:45 -04005131 inode->i_op = &btrfs_dir_inode_operations;
5132 inode->i_fop = &btrfs_dir_file_operations;
Chris Mason39279cc2007-06-12 06:35:45 -04005133
Chris Masondbe674a2008-07-17 12:54:05 -04005134 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04005135 err = btrfs_update_inode(trans, root, inode);
5136 if (err)
5137 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04005138
Josef Bacika1b075d2010-11-19 20:36:11 +00005139 err = btrfs_add_link(trans, dir, inode, dentry->d_name.name,
5140 dentry->d_name.len, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04005141 if (err)
5142 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04005143
Chris Mason39279cc2007-06-12 06:35:45 -04005144 d_instantiate(dentry, inode);
5145 drop_on_err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005146
5147out_fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005148 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05005149 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04005150 if (drop_on_err)
5151 iput(inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005152 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04005153 return err;
5154}
5155
Chris Masond352ac62008-09-29 15:18:18 -04005156/* helper for btfs_get_extent. Given an existing extent in the tree,
5157 * and an extent that you want to insert, deal with overlap and insert
5158 * the new extent into the tree.
5159 */
Chris Mason3b951512008-04-17 11:29:12 -04005160static int merge_extent_mapping(struct extent_map_tree *em_tree,
5161 struct extent_map *existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04005162 struct extent_map *em,
5163 u64 map_start, u64 map_len)
Chris Mason3b951512008-04-17 11:29:12 -04005164{
5165 u64 start_diff;
Chris Mason3b951512008-04-17 11:29:12 -04005166
Chris Masone6dcd2d2008-07-17 12:53:50 -04005167 BUG_ON(map_start < em->start || map_start >= extent_map_end(em));
5168 start_diff = map_start - em->start;
5169 em->start = map_start;
5170 em->len = map_len;
Chris Masonc8b97812008-10-29 14:49:59 -04005171 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
5172 !test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04005173 em->block_start += start_diff;
Chris Masonc8b97812008-10-29 14:49:59 -04005174 em->block_len -= start_diff;
5175 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04005176 return add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04005177}
5178
Chris Masonc8b97812008-10-29 14:49:59 -04005179static noinline int uncompress_inline(struct btrfs_path *path,
5180 struct inode *inode, struct page *page,
5181 size_t pg_offset, u64 extent_offset,
5182 struct btrfs_file_extent_item *item)
5183{
5184 int ret;
5185 struct extent_buffer *leaf = path->nodes[0];
5186 char *tmp;
5187 size_t max_size;
5188 unsigned long inline_size;
5189 unsigned long ptr;
Li Zefan261507a02010-12-17 14:21:50 +08005190 int compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04005191
5192 WARN_ON(pg_offset != 0);
Li Zefan261507a02010-12-17 14:21:50 +08005193 compress_type = btrfs_file_extent_compression(leaf, item);
Chris Masonc8b97812008-10-29 14:49:59 -04005194 max_size = btrfs_file_extent_ram_bytes(leaf, item);
5195 inline_size = btrfs_file_extent_inline_item_len(leaf,
5196 btrfs_item_nr(leaf, path->slots[0]));
5197 tmp = kmalloc(inline_size, GFP_NOFS);
Tsutomu Itoh8d413712011-04-25 19:43:52 -04005198 if (!tmp)
5199 return -ENOMEM;
Chris Masonc8b97812008-10-29 14:49:59 -04005200 ptr = btrfs_file_extent_inline_start(item);
5201
5202 read_extent_buffer(leaf, tmp, ptr, inline_size);
5203
Chris Mason5b050f02008-11-11 09:34:41 -05005204 max_size = min_t(unsigned long, PAGE_CACHE_SIZE, max_size);
Li Zefan261507a02010-12-17 14:21:50 +08005205 ret = btrfs_decompress(compress_type, tmp, page,
5206 extent_offset, inline_size, max_size);
Chris Masonc8b97812008-10-29 14:49:59 -04005207 if (ret) {
Cong Wang7ac687d2011-11-25 23:14:28 +08005208 char *kaddr = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -04005209 unsigned long copy_size = min_t(u64,
5210 PAGE_CACHE_SIZE - pg_offset,
5211 max_size - extent_offset);
5212 memset(kaddr + pg_offset, 0, copy_size);
Cong Wang7ac687d2011-11-25 23:14:28 +08005213 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -04005214 }
5215 kfree(tmp);
5216 return 0;
5217}
5218
Chris Masond352ac62008-09-29 15:18:18 -04005219/*
5220 * a bit scary, this does extent mapping from logical file offset to the disk.
Chris Masond3977122009-01-05 21:25:51 -05005221 * the ugly parts come from merging extents from the disk with the in-ram
5222 * representation. This gets more complex because of the data=ordered code,
Chris Masond352ac62008-09-29 15:18:18 -04005223 * where the in-ram extents might be locked pending data=ordered completion.
5224 *
5225 * This also copies inline extents directly into the page.
5226 */
Chris Masond3977122009-01-05 21:25:51 -05005227
Chris Masona52d9a82007-08-27 16:49:44 -04005228struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05005229 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04005230 int create)
5231{
5232 int ret;
5233 int err = 0;
Chris Masondb945352007-10-15 16:15:53 -04005234 u64 bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04005235 u64 extent_start = 0;
5236 u64 extent_end = 0;
Li Zefan33345d012011-04-20 10:31:50 +08005237 u64 objectid = btrfs_ino(inode);
Chris Masona52d9a82007-08-27 16:49:44 -04005238 u32 found_type;
Chris Masonf4219502008-07-22 11:18:09 -04005239 struct btrfs_path *path = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -04005240 struct btrfs_root *root = BTRFS_I(inode)->root;
5241 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04005242 struct extent_buffer *leaf;
5243 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04005244 struct extent_map *em = NULL;
5245 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05005246 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04005247 struct btrfs_trans_handle *trans = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08005248 int compress_type;
Chris Masona52d9a82007-08-27 16:49:44 -04005249
Chris Masona52d9a82007-08-27 16:49:44 -04005250again:
Chris Mason890871b2009-09-02 16:24:52 -04005251 read_lock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05005252 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04005253 if (em)
5254 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason890871b2009-09-02 16:24:52 -04005255 read_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05005256
Chris Masona52d9a82007-08-27 16:49:44 -04005257 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04005258 if (em->start > start || em->start + em->len <= start)
5259 free_extent_map(em);
5260 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05005261 free_extent_map(em);
5262 else
5263 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04005264 }
David Sterba172ddd62011-04-21 00:48:27 +02005265 em = alloc_extent_map();
Chris Masona52d9a82007-08-27 16:49:44 -04005266 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05005267 err = -ENOMEM;
5268 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04005269 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04005270 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05005271 em->start = EXTENT_MAP_HOLE;
Chris Mason445a6942008-11-10 11:53:33 -05005272 em->orig_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05005273 em->len = (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -04005274 em->block_len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04005275
5276 if (!path) {
5277 path = btrfs_alloc_path();
Josef Bacik026fd312011-05-13 10:32:11 -04005278 if (!path) {
5279 err = -ENOMEM;
5280 goto out;
5281 }
5282 /*
5283 * Chances are we'll be called again, so go ahead and do
5284 * readahead
5285 */
5286 path->reada = 1;
Chris Masonf4219502008-07-22 11:18:09 -04005287 }
5288
Chris Mason179e29e2007-11-01 11:28:41 -04005289 ret = btrfs_lookup_file_extent(trans, root, path,
5290 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04005291 if (ret < 0) {
5292 err = ret;
5293 goto out;
5294 }
5295
5296 if (ret != 0) {
5297 if (path->slots[0] == 0)
5298 goto not_found;
5299 path->slots[0]--;
5300 }
5301
Chris Mason5f39d392007-10-15 16:14:19 -04005302 leaf = path->nodes[0];
5303 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04005304 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04005305 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04005306 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5307 found_type = btrfs_key_type(&found_key);
5308 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04005309 found_type != BTRFS_EXTENT_DATA_KEY) {
5310 goto not_found;
5311 }
5312
Chris Mason5f39d392007-10-15 16:14:19 -04005313 found_type = btrfs_file_extent_type(leaf, item);
5314 extent_start = found_key.offset;
Li Zefan261507a02010-12-17 14:21:50 +08005315 compress_type = btrfs_file_extent_compression(leaf, item);
Yan Zhengd899e052008-10-30 14:25:28 -04005316 if (found_type == BTRFS_FILE_EXTENT_REG ||
5317 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04005318 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04005319 btrfs_file_extent_num_bytes(leaf, item);
Yan Zheng9036c102008-10-30 14:19:41 -04005320 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
5321 size_t size;
5322 size = btrfs_file_extent_inline_len(leaf, item);
5323 extent_end = (extent_start + size + root->sectorsize - 1) &
5324 ~((u64)root->sectorsize - 1);
5325 }
5326
5327 if (start >= extent_end) {
5328 path->slots[0]++;
5329 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
5330 ret = btrfs_next_leaf(root, path);
5331 if (ret < 0) {
5332 err = ret;
5333 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04005334 }
Yan Zheng9036c102008-10-30 14:19:41 -04005335 if (ret > 0)
5336 goto not_found;
5337 leaf = path->nodes[0];
Chris Masona52d9a82007-08-27 16:49:44 -04005338 }
Yan Zheng9036c102008-10-30 14:19:41 -04005339 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5340 if (found_key.objectid != objectid ||
5341 found_key.type != BTRFS_EXTENT_DATA_KEY)
5342 goto not_found;
5343 if (start + len <= found_key.offset)
5344 goto not_found;
5345 em->start = start;
5346 em->len = found_key.offset - start;
5347 goto not_found_em;
5348 }
5349
Yan Zhengd899e052008-10-30 14:25:28 -04005350 if (found_type == BTRFS_FILE_EXTENT_REG ||
5351 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng9036c102008-10-30 14:19:41 -04005352 em->start = extent_start;
5353 em->len = extent_end - extent_start;
Yan Zhengff5b7ee2008-11-10 07:34:43 -05005354 em->orig_start = extent_start -
5355 btrfs_file_extent_offset(leaf, item);
Chris Masondb945352007-10-15 16:15:53 -04005356 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
5357 if (bytenr == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04005358 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04005359 goto insert;
5360 }
Li Zefan261507a02010-12-17 14:21:50 +08005361 if (compress_type != BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -04005362 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Li Zefan261507a02010-12-17 14:21:50 +08005363 em->compress_type = compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04005364 em->block_start = bytenr;
5365 em->block_len = btrfs_file_extent_disk_num_bytes(leaf,
5366 item);
5367 } else {
5368 bytenr += btrfs_file_extent_offset(leaf, item);
5369 em->block_start = bytenr;
5370 em->block_len = em->len;
Yan Zhengd899e052008-10-30 14:25:28 -04005371 if (found_type == BTRFS_FILE_EXTENT_PREALLOC)
5372 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -04005373 }
Chris Masona52d9a82007-08-27 16:49:44 -04005374 goto insert;
5375 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04005376 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04005377 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04005378 size_t size;
5379 size_t extent_offset;
5380 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04005381
Chris Masona52d9a82007-08-27 16:49:44 -04005382 em->block_start = EXTENT_MAP_INLINE;
Chris Masonc8b97812008-10-29 14:49:59 -04005383 if (!page || create) {
Yan689f9342007-10-29 11:41:07 -04005384 em->start = extent_start;
Yan Zheng9036c102008-10-30 14:19:41 -04005385 em->len = extent_end - extent_start;
Yan689f9342007-10-29 11:41:07 -04005386 goto out;
5387 }
5388
Yan Zheng9036c102008-10-30 14:19:41 -04005389 size = btrfs_file_extent_inline_len(leaf, item);
5390 extent_offset = page_offset(page) + pg_offset - extent_start;
Chris Mason70dec802008-01-29 09:59:12 -05005391 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
Yan689f9342007-10-29 11:41:07 -04005392 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04005393 em->start = extent_start + extent_offset;
Chris Mason70dec802008-01-29 09:59:12 -05005394 em->len = (copy_size + root->sectorsize - 1) &
5395 ~((u64)root->sectorsize - 1);
Yan Zhengff5b7ee2008-11-10 07:34:43 -05005396 em->orig_start = EXTENT_MAP_INLINE;
Li Zefan261507a02010-12-17 14:21:50 +08005397 if (compress_type) {
Chris Masonc8b97812008-10-29 14:49:59 -04005398 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Li Zefan261507a02010-12-17 14:21:50 +08005399 em->compress_type = compress_type;
5400 }
Yan689f9342007-10-29 11:41:07 -04005401 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04005402 if (create == 0 && !PageUptodate(page)) {
Li Zefan261507a02010-12-17 14:21:50 +08005403 if (btrfs_file_extent_compression(leaf, item) !=
5404 BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -04005405 ret = uncompress_inline(path, inode, page,
5406 pg_offset,
5407 extent_offset, item);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005408 BUG_ON(ret); /* -ENOMEM */
Chris Masonc8b97812008-10-29 14:49:59 -04005409 } else {
5410 map = kmap(page);
5411 read_extent_buffer(leaf, map + pg_offset, ptr,
5412 copy_size);
Chris Mason93c82d52009-09-11 12:36:29 -04005413 if (pg_offset + copy_size < PAGE_CACHE_SIZE) {
5414 memset(map + pg_offset + copy_size, 0,
5415 PAGE_CACHE_SIZE - pg_offset -
5416 copy_size);
5417 }
Chris Masonc8b97812008-10-29 14:49:59 -04005418 kunmap(page);
5419 }
Chris Mason179e29e2007-11-01 11:28:41 -04005420 flush_dcache_page(page);
5421 } else if (create && PageUptodate(page)) {
Jan Schmidt6bf7e082011-12-01 14:35:19 +01005422 BUG();
Chris Mason179e29e2007-11-01 11:28:41 -04005423 if (!trans) {
5424 kunmap(page);
5425 free_extent_map(em);
5426 em = NULL;
Chris Masonff5714c2011-05-28 07:00:39 -04005427
David Sterbab3b4aa72011-04-21 01:20:15 +02005428 btrfs_release_path(path);
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005429 trans = btrfs_join_transaction(root);
Chris Masonff5714c2011-05-28 07:00:39 -04005430
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005431 if (IS_ERR(trans))
5432 return ERR_CAST(trans);
Chris Mason179e29e2007-11-01 11:28:41 -04005433 goto again;
5434 }
Chris Masonc8b97812008-10-29 14:49:59 -04005435 map = kmap(page);
Chris Mason70dec802008-01-29 09:59:12 -05005436 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04005437 copy_size);
Chris Masonc8b97812008-10-29 14:49:59 -04005438 kunmap(page);
Chris Mason179e29e2007-11-01 11:28:41 -04005439 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04005440 }
Chris Masond1310b22008-01-24 16:13:08 -05005441 set_extent_uptodate(io_tree, em->start,
Arne Jansen507903b2011-04-06 10:02:20 +00005442 extent_map_end(em) - 1, NULL, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04005443 goto insert;
5444 } else {
Chris Masond3977122009-01-05 21:25:51 -05005445 printk(KERN_ERR "btrfs unknown found_type %d\n", found_type);
Chris Masona52d9a82007-08-27 16:49:44 -04005446 WARN_ON(1);
5447 }
5448not_found:
5449 em->start = start;
Chris Masond1310b22008-01-24 16:13:08 -05005450 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04005451not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04005452 em->block_start = EXTENT_MAP_HOLE;
Yan Zheng9036c102008-10-30 14:19:41 -04005453 set_bit(EXTENT_FLAG_VACANCY, &em->flags);
Chris Masona52d9a82007-08-27 16:49:44 -04005454insert:
David Sterbab3b4aa72011-04-21 01:20:15 +02005455 btrfs_release_path(path);
Chris Masond1310b22008-01-24 16:13:08 -05005456 if (em->start > start || extent_map_end(em) <= start) {
Chris Masond3977122009-01-05 21:25:51 -05005457 printk(KERN_ERR "Btrfs: bad extent! em: [%llu %llu] passed "
5458 "[%llu %llu]\n", (unsigned long long)em->start,
5459 (unsigned long long)em->len,
5460 (unsigned long long)start,
5461 (unsigned long long)len);
Chris Masona52d9a82007-08-27 16:49:44 -04005462 err = -EIO;
5463 goto out;
5464 }
Chris Masond1310b22008-01-24 16:13:08 -05005465
5466 err = 0;
Chris Mason890871b2009-09-02 16:24:52 -04005467 write_lock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04005468 ret = add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04005469 /* it is possible that someone inserted the extent into the tree
5470 * while we had the lock dropped. It is also possible that
5471 * an overlapping map exists in the tree
5472 */
Chris Masona52d9a82007-08-27 16:49:44 -04005473 if (ret == -EEXIST) {
Chris Mason3b951512008-04-17 11:29:12 -04005474 struct extent_map *existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005475
5476 ret = 0;
5477
Chris Mason3b951512008-04-17 11:29:12 -04005478 existing = lookup_extent_mapping(em_tree, start, len);
Chris Masone1c4b742008-04-22 13:26:46 -04005479 if (existing && (existing->start > start ||
5480 existing->start + existing->len <= start)) {
5481 free_extent_map(existing);
5482 existing = NULL;
5483 }
Chris Mason3b951512008-04-17 11:29:12 -04005484 if (!existing) {
5485 existing = lookup_extent_mapping(em_tree, em->start,
5486 em->len);
5487 if (existing) {
5488 err = merge_extent_mapping(em_tree, existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04005489 em, start,
5490 root->sectorsize);
Chris Mason3b951512008-04-17 11:29:12 -04005491 free_extent_map(existing);
5492 if (err) {
5493 free_extent_map(em);
5494 em = NULL;
5495 }
5496 } else {
5497 err = -EIO;
Chris Mason3b951512008-04-17 11:29:12 -04005498 free_extent_map(em);
5499 em = NULL;
5500 }
5501 } else {
5502 free_extent_map(em);
5503 em = existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005504 err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04005505 }
Chris Masona52d9a82007-08-27 16:49:44 -04005506 }
Chris Mason890871b2009-09-02 16:24:52 -04005507 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04005508out:
liubo1abe9b82011-03-24 11:18:59 +00005509
5510 trace_btrfs_get_extent(root, em);
5511
Chris Masonf4219502008-07-22 11:18:09 -04005512 if (path)
5513 btrfs_free_path(path);
Chris Masona52d9a82007-08-27 16:49:44 -04005514 if (trans) {
5515 ret = btrfs_end_transaction(trans, root);
Chris Masond3977122009-01-05 21:25:51 -05005516 if (!err)
Chris Masona52d9a82007-08-27 16:49:44 -04005517 err = ret;
5518 }
Chris Masona52d9a82007-08-27 16:49:44 -04005519 if (err) {
5520 free_extent_map(em);
Chris Masona52d9a82007-08-27 16:49:44 -04005521 return ERR_PTR(err);
5522 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005523 BUG_ON(!em); /* Error is always set */
Chris Masona52d9a82007-08-27 16:49:44 -04005524 return em;
5525}
5526
Chris Masonec29ed52011-02-23 16:23:20 -05005527struct extent_map *btrfs_get_extent_fiemap(struct inode *inode, struct page *page,
5528 size_t pg_offset, u64 start, u64 len,
5529 int create)
5530{
5531 struct extent_map *em;
5532 struct extent_map *hole_em = NULL;
5533 u64 range_start = start;
5534 u64 end;
5535 u64 found;
5536 u64 found_end;
5537 int err = 0;
5538
5539 em = btrfs_get_extent(inode, page, pg_offset, start, len, create);
5540 if (IS_ERR(em))
5541 return em;
5542 if (em) {
5543 /*
5544 * if our em maps to a hole, there might
5545 * actually be delalloc bytes behind it
5546 */
5547 if (em->block_start != EXTENT_MAP_HOLE)
5548 return em;
5549 else
5550 hole_em = em;
5551 }
5552
5553 /* check to see if we've wrapped (len == -1 or similar) */
5554 end = start + len;
5555 if (end < start)
5556 end = (u64)-1;
5557 else
5558 end -= 1;
5559
5560 em = NULL;
5561
5562 /* ok, we didn't find anything, lets look for delalloc */
5563 found = count_range_bits(&BTRFS_I(inode)->io_tree, &range_start,
5564 end, len, EXTENT_DELALLOC, 1);
5565 found_end = range_start + found;
5566 if (found_end < range_start)
5567 found_end = (u64)-1;
5568
5569 /*
5570 * we didn't find anything useful, return
5571 * the original results from get_extent()
5572 */
5573 if (range_start > end || found_end <= start) {
5574 em = hole_em;
5575 hole_em = NULL;
5576 goto out;
5577 }
5578
5579 /* adjust the range_start to make sure it doesn't
5580 * go backwards from the start they passed in
5581 */
5582 range_start = max(start,range_start);
5583 found = found_end - range_start;
5584
5585 if (found > 0) {
5586 u64 hole_start = start;
5587 u64 hole_len = len;
5588
David Sterba172ddd62011-04-21 00:48:27 +02005589 em = alloc_extent_map();
Chris Masonec29ed52011-02-23 16:23:20 -05005590 if (!em) {
5591 err = -ENOMEM;
5592 goto out;
5593 }
5594 /*
5595 * when btrfs_get_extent can't find anything it
5596 * returns one huge hole
5597 *
5598 * make sure what it found really fits our range, and
5599 * adjust to make sure it is based on the start from
5600 * the caller
5601 */
5602 if (hole_em) {
5603 u64 calc_end = extent_map_end(hole_em);
5604
5605 if (calc_end <= start || (hole_em->start > end)) {
5606 free_extent_map(hole_em);
5607 hole_em = NULL;
5608 } else {
5609 hole_start = max(hole_em->start, start);
5610 hole_len = calc_end - hole_start;
5611 }
5612 }
5613 em->bdev = NULL;
5614 if (hole_em && range_start > hole_start) {
5615 /* our hole starts before our delalloc, so we
5616 * have to return just the parts of the hole
5617 * that go until the delalloc starts
5618 */
5619 em->len = min(hole_len,
5620 range_start - hole_start);
5621 em->start = hole_start;
5622 em->orig_start = hole_start;
5623 /*
5624 * don't adjust block start at all,
5625 * it is fixed at EXTENT_MAP_HOLE
5626 */
5627 em->block_start = hole_em->block_start;
5628 em->block_len = hole_len;
5629 } else {
5630 em->start = range_start;
5631 em->len = found;
5632 em->orig_start = range_start;
5633 em->block_start = EXTENT_MAP_DELALLOC;
5634 em->block_len = found;
5635 }
5636 } else if (hole_em) {
5637 return hole_em;
5638 }
5639out:
5640
5641 free_extent_map(hole_em);
5642 if (err) {
5643 free_extent_map(em);
5644 return ERR_PTR(err);
5645 }
5646 return em;
5647}
5648
Josef Bacik4b46fce2010-05-23 11:00:55 -04005649static struct extent_map *btrfs_new_extent_direct(struct inode *inode,
Josef Bacik16d299a2011-04-06 14:53:07 -04005650 struct extent_map *em,
Josef Bacik4b46fce2010-05-23 11:00:55 -04005651 u64 start, u64 len)
5652{
5653 struct btrfs_root *root = BTRFS_I(inode)->root;
5654 struct btrfs_trans_handle *trans;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005655 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
5656 struct btrfs_key ins;
5657 u64 alloc_hint;
5658 int ret;
Josef Bacik16d299a2011-04-06 14:53:07 -04005659 bool insert = false;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005660
Josef Bacik16d299a2011-04-06 14:53:07 -04005661 /*
5662 * Ok if the extent map we looked up is a hole and is for the exact
5663 * range we want, there is no reason to allocate a new one, however if
5664 * it is not right then we need to free this one and drop the cache for
5665 * our range.
5666 */
5667 if (em->block_start != EXTENT_MAP_HOLE || em->start != start ||
5668 em->len != len) {
5669 free_extent_map(em);
5670 em = NULL;
5671 insert = true;
5672 btrfs_drop_extent_cache(inode, start, start + len - 1, 0);
5673 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005674
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005675 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005676 if (IS_ERR(trans))
5677 return ERR_CAST(trans);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005678
Chris Mason4cb53002011-05-24 15:35:30 -04005679 if (start <= BTRFS_I(inode)->disk_i_size && len < 64 * 1024)
5680 btrfs_add_inode_defrag(trans, inode);
5681
Josef Bacik4b46fce2010-05-23 11:00:55 -04005682 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
5683
5684 alloc_hint = get_extent_allocation_hint(inode, start, len);
5685 ret = btrfs_reserve_extent(trans, root, len, root->sectorsize, 0,
Josef Bacik81c9ad22012-01-18 10:56:06 -05005686 alloc_hint, &ins, 1);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005687 if (ret) {
5688 em = ERR_PTR(ret);
5689 goto out;
5690 }
5691
Josef Bacik4b46fce2010-05-23 11:00:55 -04005692 if (!em) {
David Sterba172ddd62011-04-21 00:48:27 +02005693 em = alloc_extent_map();
Josef Bacik16d299a2011-04-06 14:53:07 -04005694 if (!em) {
5695 em = ERR_PTR(-ENOMEM);
5696 goto out;
5697 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005698 }
5699
5700 em->start = start;
5701 em->orig_start = em->start;
5702 em->len = ins.offset;
5703
5704 em->block_start = ins.objectid;
5705 em->block_len = ins.offset;
5706 em->bdev = root->fs_info->fs_devices->latest_bdev;
Josef Bacik16d299a2011-04-06 14:53:07 -04005707
5708 /*
5709 * We need to do this because if we're using the original em we searched
5710 * for, we could have EXTENT_FLAG_VACANCY set, and we don't want that.
5711 */
5712 em->flags = 0;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005713 set_bit(EXTENT_FLAG_PINNED, &em->flags);
5714
Josef Bacik16d299a2011-04-06 14:53:07 -04005715 while (insert) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04005716 write_lock(&em_tree->lock);
5717 ret = add_extent_mapping(em_tree, em);
5718 write_unlock(&em_tree->lock);
5719 if (ret != -EEXIST)
5720 break;
5721 btrfs_drop_extent_cache(inode, start, start + em->len - 1, 0);
5722 }
5723
5724 ret = btrfs_add_ordered_extent_dio(inode, start, ins.objectid,
5725 ins.offset, ins.offset, 0);
5726 if (ret) {
5727 btrfs_free_reserved_extent(root, ins.objectid, ins.offset);
5728 em = ERR_PTR(ret);
5729 }
5730out:
5731 btrfs_end_transaction(trans, root);
5732 return em;
5733}
5734
Chris Mason46bfbb52010-05-26 11:04:10 -04005735/*
5736 * returns 1 when the nocow is safe, < 1 on error, 0 if the
5737 * block must be cow'd
5738 */
5739static noinline int can_nocow_odirect(struct btrfs_trans_handle *trans,
5740 struct inode *inode, u64 offset, u64 len)
5741{
5742 struct btrfs_path *path;
5743 int ret;
5744 struct extent_buffer *leaf;
5745 struct btrfs_root *root = BTRFS_I(inode)->root;
5746 struct btrfs_file_extent_item *fi;
5747 struct btrfs_key key;
5748 u64 disk_bytenr;
5749 u64 backref_offset;
5750 u64 extent_end;
5751 u64 num_bytes;
5752 int slot;
5753 int found_type;
5754
5755 path = btrfs_alloc_path();
5756 if (!path)
5757 return -ENOMEM;
5758
Li Zefan33345d012011-04-20 10:31:50 +08005759 ret = btrfs_lookup_file_extent(trans, root, path, btrfs_ino(inode),
Chris Mason46bfbb52010-05-26 11:04:10 -04005760 offset, 0);
5761 if (ret < 0)
5762 goto out;
5763
5764 slot = path->slots[0];
5765 if (ret == 1) {
5766 if (slot == 0) {
5767 /* can't find the item, must cow */
5768 ret = 0;
5769 goto out;
5770 }
5771 slot--;
5772 }
5773 ret = 0;
5774 leaf = path->nodes[0];
5775 btrfs_item_key_to_cpu(leaf, &key, slot);
Li Zefan33345d012011-04-20 10:31:50 +08005776 if (key.objectid != btrfs_ino(inode) ||
Chris Mason46bfbb52010-05-26 11:04:10 -04005777 key.type != BTRFS_EXTENT_DATA_KEY) {
5778 /* not our file or wrong item type, must cow */
5779 goto out;
5780 }
5781
5782 if (key.offset > offset) {
5783 /* Wrong offset, must cow */
5784 goto out;
5785 }
5786
5787 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
5788 found_type = btrfs_file_extent_type(leaf, fi);
5789 if (found_type != BTRFS_FILE_EXTENT_REG &&
5790 found_type != BTRFS_FILE_EXTENT_PREALLOC) {
5791 /* not a regular extent, must cow */
5792 goto out;
5793 }
5794 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
5795 backref_offset = btrfs_file_extent_offset(leaf, fi);
5796
5797 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
5798 if (extent_end < offset + len) {
5799 /* extent doesn't include our full range, must cow */
5800 goto out;
5801 }
5802
5803 if (btrfs_extent_readonly(root, disk_bytenr))
5804 goto out;
5805
5806 /*
5807 * look for other files referencing this extent, if we
5808 * find any we must cow
5809 */
Li Zefan33345d012011-04-20 10:31:50 +08005810 if (btrfs_cross_ref_exist(trans, root, btrfs_ino(inode),
Chris Mason46bfbb52010-05-26 11:04:10 -04005811 key.offset - backref_offset, disk_bytenr))
5812 goto out;
5813
5814 /*
5815 * adjust disk_bytenr and num_bytes to cover just the bytes
5816 * in this extent we are about to write. If there
5817 * are any csums in that range we have to cow in order
5818 * to keep the csums correct
5819 */
5820 disk_bytenr += backref_offset;
5821 disk_bytenr += offset - key.offset;
5822 num_bytes = min(offset + len, extent_end) - offset;
5823 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
5824 goto out;
5825 /*
5826 * all of the above have passed, it is safe to overwrite this extent
5827 * without cow
5828 */
5829 ret = 1;
5830out:
5831 btrfs_free_path(path);
5832 return ret;
5833}
5834
Josef Bacikeb838e72012-07-31 16:28:48 -04005835static int lock_extent_direct(struct inode *inode, u64 lockstart, u64 lockend,
5836 struct extent_state **cached_state, int writing)
5837{
5838 struct btrfs_ordered_extent *ordered;
5839 int ret = 0;
5840
5841 while (1) {
5842 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
5843 0, cached_state);
5844 /*
5845 * We're concerned with the entire range that we're going to be
5846 * doing DIO to, so we need to make sure theres no ordered
5847 * extents in this range.
5848 */
5849 ordered = btrfs_lookup_ordered_range(inode, lockstart,
5850 lockend - lockstart + 1);
5851
5852 /*
5853 * We need to make sure there are no buffered pages in this
5854 * range either, we could have raced between the invalidate in
5855 * generic_file_direct_write and locking the extent. The
5856 * invalidate needs to happen so that reads after a write do not
5857 * get stale data.
5858 */
5859 if (!ordered && (!writing ||
5860 !test_range_bit(&BTRFS_I(inode)->io_tree,
5861 lockstart, lockend, EXTENT_UPTODATE, 0,
5862 *cached_state)))
5863 break;
5864
5865 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
5866 cached_state, GFP_NOFS);
5867
5868 if (ordered) {
5869 btrfs_start_ordered_extent(inode, ordered, 1);
5870 btrfs_put_ordered_extent(ordered);
5871 } else {
5872 /* Screw you mmap */
5873 ret = filemap_write_and_wait_range(inode->i_mapping,
5874 lockstart,
5875 lockend);
5876 if (ret)
5877 break;
5878
5879 /*
5880 * If we found a page that couldn't be invalidated just
5881 * fall back to buffered.
5882 */
5883 ret = invalidate_inode_pages2_range(inode->i_mapping,
5884 lockstart >> PAGE_CACHE_SHIFT,
5885 lockend >> PAGE_CACHE_SHIFT);
5886 if (ret)
5887 break;
5888 }
5889
5890 cond_resched();
5891 }
5892
5893 return ret;
5894}
5895
Josef Bacik69ffb542012-09-11 15:40:07 -04005896static struct extent_map *create_pinned_em(struct inode *inode, u64 start,
5897 u64 len, u64 orig_start,
5898 u64 block_start, u64 block_len,
5899 int type)
5900{
5901 struct extent_map_tree *em_tree;
5902 struct extent_map *em;
5903 struct btrfs_root *root = BTRFS_I(inode)->root;
5904 int ret;
5905
5906 em_tree = &BTRFS_I(inode)->extent_tree;
5907 em = alloc_extent_map();
5908 if (!em)
5909 return ERR_PTR(-ENOMEM);
5910
5911 em->start = start;
5912 em->orig_start = orig_start;
5913 em->len = len;
5914 em->block_len = block_len;
5915 em->block_start = block_start;
5916 em->bdev = root->fs_info->fs_devices->latest_bdev;
5917 set_bit(EXTENT_FLAG_PINNED, &em->flags);
5918 if (type == BTRFS_ORDERED_PREALLOC)
5919 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
5920
5921 do {
5922 btrfs_drop_extent_cache(inode, em->start,
5923 em->start + em->len - 1, 0);
5924 write_lock(&em_tree->lock);
5925 ret = add_extent_mapping(em_tree, em);
5926 write_unlock(&em_tree->lock);
5927 } while (ret == -EEXIST);
5928
5929 if (ret) {
5930 free_extent_map(em);
5931 return ERR_PTR(ret);
5932 }
5933
5934 return em;
5935}
5936
5937
Josef Bacik4b46fce2010-05-23 11:00:55 -04005938static int btrfs_get_blocks_direct(struct inode *inode, sector_t iblock,
5939 struct buffer_head *bh_result, int create)
5940{
5941 struct extent_map *em;
5942 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacikeb838e72012-07-31 16:28:48 -04005943 struct extent_state *cached_state = NULL;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005944 u64 start = iblock << inode->i_blkbits;
Josef Bacikeb838e72012-07-31 16:28:48 -04005945 u64 lockstart, lockend;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005946 u64 len = bh_result->b_size;
Chris Mason46bfbb52010-05-26 11:04:10 -04005947 struct btrfs_trans_handle *trans;
Josef Bacikeb838e72012-07-31 16:28:48 -04005948 int unlock_bits = EXTENT_LOCKED;
5949 int ret;
5950
Josef Bacikeb838e72012-07-31 16:28:48 -04005951 if (create) {
5952 ret = btrfs_delalloc_reserve_space(inode, len);
5953 if (ret)
5954 return ret;
5955 unlock_bits |= EXTENT_DELALLOC | EXTENT_DIRTY;
Josef Bacikc3298612012-08-03 16:49:19 -04005956 } else {
5957 len = min_t(u64, len, root->sectorsize);
Josef Bacikeb838e72012-07-31 16:28:48 -04005958 }
5959
Josef Bacikc3298612012-08-03 16:49:19 -04005960 lockstart = start;
5961 lockend = start + len - 1;
5962
Josef Bacikeb838e72012-07-31 16:28:48 -04005963 /*
5964 * If this errors out it's because we couldn't invalidate pagecache for
5965 * this range and we need to fallback to buffered.
5966 */
5967 if (lock_extent_direct(inode, lockstart, lockend, &cached_state, create))
5968 return -ENOTBLK;
5969
5970 if (create) {
5971 ret = set_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
5972 lockend, EXTENT_DELALLOC, NULL,
5973 &cached_state, GFP_NOFS);
5974 if (ret)
5975 goto unlock_err;
5976 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005977
5978 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
Josef Bacikeb838e72012-07-31 16:28:48 -04005979 if (IS_ERR(em)) {
5980 ret = PTR_ERR(em);
5981 goto unlock_err;
5982 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005983
5984 /*
5985 * Ok for INLINE and COMPRESSED extents we need to fallback on buffered
5986 * io. INLINE is special, and we could probably kludge it in here, but
5987 * it's still buffered so for safety lets just fall back to the generic
5988 * buffered path.
5989 *
5990 * For COMPRESSED we _have_ to read the entire extent in so we can
5991 * decompress it, so there will be buffering required no matter what we
5992 * do, so go ahead and fallback to buffered.
5993 *
5994 * We return -ENOTBLK because thats what makes DIO go ahead and go back
5995 * to buffered IO. Don't blame me, this is the price we pay for using
5996 * the generic code.
5997 */
5998 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) ||
5999 em->block_start == EXTENT_MAP_INLINE) {
6000 free_extent_map(em);
Josef Bacikeb838e72012-07-31 16:28:48 -04006001 ret = -ENOTBLK;
6002 goto unlock_err;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006003 }
6004
6005 /* Just a good old fashioned hole, return */
6006 if (!create && (em->block_start == EXTENT_MAP_HOLE ||
6007 test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
6008 free_extent_map(em);
Josef Bacikeb838e72012-07-31 16:28:48 -04006009 ret = 0;
6010 goto unlock_err;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006011 }
6012
6013 /*
6014 * We don't allocate a new extent in the following cases
6015 *
6016 * 1) The inode is marked as NODATACOW. In this case we'll just use the
6017 * existing extent.
6018 * 2) The extent is marked as PREALLOC. We're good to go here and can
6019 * just use the extent.
6020 *
6021 */
Chris Mason46bfbb52010-05-26 11:04:10 -04006022 if (!create) {
Josef Bacikeb838e72012-07-31 16:28:48 -04006023 len = min(len, em->len - (start - em->start));
6024 lockstart = start + len;
6025 goto unlock;
Chris Mason46bfbb52010-05-26 11:04:10 -04006026 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04006027
6028 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) ||
6029 ((BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) &&
6030 em->block_start != EXTENT_MAP_HOLE)) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04006031 int type;
6032 int ret;
Chris Mason46bfbb52010-05-26 11:04:10 -04006033 u64 block_start;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006034
6035 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
6036 type = BTRFS_ORDERED_PREALLOC;
6037 else
6038 type = BTRFS_ORDERED_NOCOW;
Chris Mason46bfbb52010-05-26 11:04:10 -04006039 len = min(len, em->len - (start - em->start));
Josef Bacik4b46fce2010-05-23 11:00:55 -04006040 block_start = em->block_start + (start - em->start);
Chris Mason46bfbb52010-05-26 11:04:10 -04006041
6042 /*
6043 * we're not going to log anything, but we do need
6044 * to make sure the current transaction stays open
6045 * while we look for nocow cross refs
6046 */
Josef Bacik7a7eaa42011-04-13 12:54:33 -04006047 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00006048 if (IS_ERR(trans))
Chris Mason46bfbb52010-05-26 11:04:10 -04006049 goto must_cow;
6050
6051 if (can_nocow_odirect(trans, inode, start, len) == 1) {
Josef Bacik69ffb542012-09-11 15:40:07 -04006052 u64 orig_start = em->start;
6053
6054 if (type == BTRFS_ORDERED_PREALLOC) {
6055 free_extent_map(em);
6056 em = create_pinned_em(inode, start, len,
6057 orig_start,
6058 block_start, len, type);
6059 if (IS_ERR(em)) {
6060 btrfs_end_transaction(trans, root);
6061 goto unlock_err;
6062 }
6063 }
6064
Chris Mason46bfbb52010-05-26 11:04:10 -04006065 ret = btrfs_add_ordered_extent_dio(inode, start,
6066 block_start, len, len, type);
6067 btrfs_end_transaction(trans, root);
6068 if (ret) {
6069 free_extent_map(em);
Josef Bacikeb838e72012-07-31 16:28:48 -04006070 goto unlock_err;
Chris Mason46bfbb52010-05-26 11:04:10 -04006071 }
6072 goto unlock;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006073 }
Chris Mason46bfbb52010-05-26 11:04:10 -04006074 btrfs_end_transaction(trans, root);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006075 }
Chris Mason46bfbb52010-05-26 11:04:10 -04006076must_cow:
6077 /*
6078 * this will cow the extent, reset the len in case we changed
6079 * it above
6080 */
6081 len = bh_result->b_size;
Josef Bacik16d299a2011-04-06 14:53:07 -04006082 em = btrfs_new_extent_direct(inode, em, start, len);
Josef Bacikeb838e72012-07-31 16:28:48 -04006083 if (IS_ERR(em)) {
6084 ret = PTR_ERR(em);
6085 goto unlock_err;
6086 }
Chris Mason46bfbb52010-05-26 11:04:10 -04006087 len = min(len, em->len - (start - em->start));
6088unlock:
Josef Bacik4b46fce2010-05-23 11:00:55 -04006089 bh_result->b_blocknr = (em->block_start + (start - em->start)) >>
6090 inode->i_blkbits;
Chris Mason46bfbb52010-05-26 11:04:10 -04006091 bh_result->b_size = len;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006092 bh_result->b_bdev = em->bdev;
6093 set_buffer_mapped(bh_result);
Josef Bacikc3473e82012-06-19 10:59:00 -04006094 if (create) {
6095 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
6096 set_buffer_new(bh_result);
6097
6098 /*
6099 * Need to update the i_size under the extent lock so buffered
6100 * readers will get the updated i_size when we unlock.
6101 */
6102 if (start + len > i_size_read(inode))
6103 i_size_write(inode, start + len);
6104 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04006105
Josef Bacikeb838e72012-07-31 16:28:48 -04006106 /*
6107 * In the case of write we need to clear and unlock the entire range,
6108 * in the case of read we need to unlock only the end area that we
6109 * aren't using if there is any left over space.
6110 */
Liu Bo24c03fa2012-08-22 20:10:38 -06006111 if (lockstart < lockend) {
6112 if (create && len < lockend - lockstart) {
6113 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
Liu Bo9e8a4a82012-09-05 19:10:51 -06006114 lockstart + len - 1,
6115 unlock_bits | EXTENT_DEFRAG, 1, 0,
Liu Bo24c03fa2012-08-22 20:10:38 -06006116 &cached_state, GFP_NOFS);
6117 /*
6118 * Beside unlock, we also need to cleanup reserved space
6119 * for the left range by attaching EXTENT_DO_ACCOUNTING.
6120 */
6121 clear_extent_bit(&BTRFS_I(inode)->io_tree,
6122 lockstart + len, lockend,
Liu Bo9e8a4a82012-09-05 19:10:51 -06006123 unlock_bits | EXTENT_DO_ACCOUNTING |
6124 EXTENT_DEFRAG, 1, 0, NULL, GFP_NOFS);
Liu Bo24c03fa2012-08-22 20:10:38 -06006125 } else {
6126 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
6127 lockend, unlock_bits, 1, 0,
6128 &cached_state, GFP_NOFS);
6129 }
6130 } else {
Josef Bacikeb838e72012-07-31 16:28:48 -04006131 free_extent_state(cached_state);
Liu Bo24c03fa2012-08-22 20:10:38 -06006132 }
Josef Bacikeb838e72012-07-31 16:28:48 -04006133
Josef Bacik4b46fce2010-05-23 11:00:55 -04006134 free_extent_map(em);
6135
6136 return 0;
Josef Bacikeb838e72012-07-31 16:28:48 -04006137
6138unlock_err:
6139 if (create)
6140 unlock_bits |= EXTENT_DO_ACCOUNTING;
6141
6142 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart, lockend,
6143 unlock_bits, 1, 0, &cached_state, GFP_NOFS);
6144 return ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006145}
6146
6147struct btrfs_dio_private {
6148 struct inode *inode;
6149 u64 logical_offset;
6150 u64 disk_bytenr;
6151 u64 bytes;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006152 void *private;
Miao Xiee65e1532010-11-22 03:04:43 +00006153
6154 /* number of bios pending for this dio */
6155 atomic_t pending_bios;
6156
6157 /* IO errors */
6158 int errors;
6159
6160 struct bio *orig_bio;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006161};
6162
6163static void btrfs_endio_direct_read(struct bio *bio, int err)
6164{
Miao Xiee65e1532010-11-22 03:04:43 +00006165 struct btrfs_dio_private *dip = bio->bi_private;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006166 struct bio_vec *bvec_end = bio->bi_io_vec + bio->bi_vcnt - 1;
6167 struct bio_vec *bvec = bio->bi_io_vec;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006168 struct inode *inode = dip->inode;
6169 struct btrfs_root *root = BTRFS_I(inode)->root;
6170 u64 start;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006171
6172 start = dip->logical_offset;
6173 do {
6174 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)) {
6175 struct page *page = bvec->bv_page;
6176 char *kaddr;
6177 u32 csum = ~(u32)0;
Josef Bacikc3298612012-08-03 16:49:19 -04006178 u64 private = ~(u32)0;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006179 unsigned long flags;
6180
Josef Bacikc3298612012-08-03 16:49:19 -04006181 if (get_state_private(&BTRFS_I(inode)->io_tree,
6182 start, &private))
6183 goto failed;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006184 local_irq_save(flags);
Cong Wang7ac687d2011-11-25 23:14:28 +08006185 kaddr = kmap_atomic(page);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006186 csum = btrfs_csum_data(root, kaddr + bvec->bv_offset,
6187 csum, bvec->bv_len);
6188 btrfs_csum_final(csum, (char *)&csum);
Cong Wang7ac687d2011-11-25 23:14:28 +08006189 kunmap_atomic(kaddr);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006190 local_irq_restore(flags);
6191
6192 flush_dcache_page(bvec->bv_page);
Josef Bacikc3298612012-08-03 16:49:19 -04006193 if (csum != private) {
6194failed:
Li Zefan33345d012011-04-20 10:31:50 +08006195 printk(KERN_ERR "btrfs csum failed ino %llu off"
Josef Bacik4b46fce2010-05-23 11:00:55 -04006196 " %llu csum %u private %u\n",
Li Zefan33345d012011-04-20 10:31:50 +08006197 (unsigned long long)btrfs_ino(inode),
6198 (unsigned long long)start,
Josef Bacikc3298612012-08-03 16:49:19 -04006199 csum, (unsigned)private);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006200 err = -EIO;
6201 }
6202 }
6203
6204 start += bvec->bv_len;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006205 bvec++;
6206 } while (bvec <= bvec_end);
6207
6208 unlock_extent(&BTRFS_I(inode)->io_tree, dip->logical_offset,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01006209 dip->logical_offset + dip->bytes - 1);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006210 bio->bi_private = dip->private;
6211
Josef Bacik4b46fce2010-05-23 11:00:55 -04006212 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04006213
6214 /* If we had a csum failure make sure to clear the uptodate flag */
6215 if (err)
6216 clear_bit(BIO_UPTODATE, &bio->bi_flags);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006217 dio_end_io(bio, err);
6218}
6219
6220static void btrfs_endio_direct_write(struct bio *bio, int err)
6221{
6222 struct btrfs_dio_private *dip = bio->bi_private;
6223 struct inode *inode = dip->inode;
6224 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006225 struct btrfs_ordered_extent *ordered = NULL;
Chris Mason163cf092010-11-28 19:56:33 -05006226 u64 ordered_offset = dip->logical_offset;
6227 u64 ordered_bytes = dip->bytes;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006228 int ret;
6229
6230 if (err)
6231 goto out_done;
Chris Mason163cf092010-11-28 19:56:33 -05006232again:
6233 ret = btrfs_dec_test_first_ordered_pending(inode, &ordered,
6234 &ordered_offset,
Josef Bacik5fd02042012-05-02 14:00:54 -04006235 ordered_bytes, !err);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006236 if (!ret)
Chris Mason163cf092010-11-28 19:56:33 -05006237 goto out_test;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006238
Josef Bacik5fd02042012-05-02 14:00:54 -04006239 ordered->work.func = finish_ordered_fn;
6240 ordered->work.flags = 0;
6241 btrfs_queue_worker(&root->fs_info->endio_write_workers,
6242 &ordered->work);
Chris Mason163cf092010-11-28 19:56:33 -05006243out_test:
6244 /*
6245 * our bio might span multiple ordered extents. If we haven't
6246 * completed the accounting for the whole dio, go back and try again
6247 */
6248 if (ordered_offset < dip->logical_offset + dip->bytes) {
6249 ordered_bytes = dip->logical_offset + dip->bytes -
6250 ordered_offset;
Josef Bacik5fd02042012-05-02 14:00:54 -04006251 ordered = NULL;
Chris Mason163cf092010-11-28 19:56:33 -05006252 goto again;
6253 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04006254out_done:
6255 bio->bi_private = dip->private;
6256
Josef Bacik4b46fce2010-05-23 11:00:55 -04006257 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04006258
6259 /* If we had an error make sure to clear the uptodate flag */
6260 if (err)
6261 clear_bit(BIO_UPTODATE, &bio->bi_flags);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006262 dio_end_io(bio, err);
6263}
6264
Chris Masoneaf25d92010-05-25 09:48:28 -04006265static int __btrfs_submit_bio_start_direct_io(struct inode *inode, int rw,
6266 struct bio *bio, int mirror_num,
6267 unsigned long bio_flags, u64 offset)
6268{
6269 int ret;
6270 struct btrfs_root *root = BTRFS_I(inode)->root;
6271 ret = btrfs_csum_one_bio(root, inode, bio, offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006272 BUG_ON(ret); /* -ENOMEM */
Chris Masoneaf25d92010-05-25 09:48:28 -04006273 return 0;
6274}
6275
Miao Xiee65e1532010-11-22 03:04:43 +00006276static void btrfs_end_dio_bio(struct bio *bio, int err)
6277{
6278 struct btrfs_dio_private *dip = bio->bi_private;
6279
6280 if (err) {
Li Zefan33345d012011-04-20 10:31:50 +08006281 printk(KERN_ERR "btrfs direct IO failed ino %llu rw %lu "
Jan Beulich3dd14622010-12-07 14:54:09 +00006282 "sector %#Lx len %u err no %d\n",
Li Zefan33345d012011-04-20 10:31:50 +08006283 (unsigned long long)btrfs_ino(dip->inode), bio->bi_rw,
Jan Beulich3dd14622010-12-07 14:54:09 +00006284 (unsigned long long)bio->bi_sector, bio->bi_size, err);
Miao Xiee65e1532010-11-22 03:04:43 +00006285 dip->errors = 1;
6286
6287 /*
6288 * before atomic variable goto zero, we must make sure
6289 * dip->errors is perceived to be set.
6290 */
6291 smp_mb__before_atomic_dec();
6292 }
6293
6294 /* if there are more bios still pending for this dio, just exit */
6295 if (!atomic_dec_and_test(&dip->pending_bios))
6296 goto out;
6297
6298 if (dip->errors)
6299 bio_io_error(dip->orig_bio);
6300 else {
6301 set_bit(BIO_UPTODATE, &dip->orig_bio->bi_flags);
6302 bio_endio(dip->orig_bio, 0);
6303 }
6304out:
6305 bio_put(bio);
6306}
6307
6308static struct bio *btrfs_dio_bio_alloc(struct block_device *bdev,
6309 u64 first_sector, gfp_t gfp_flags)
6310{
6311 int nr_vecs = bio_get_nr_vecs(bdev);
6312 return btrfs_bio_alloc(bdev, first_sector, nr_vecs, gfp_flags);
6313}
6314
6315static inline int __btrfs_submit_dio_bio(struct bio *bio, struct inode *inode,
6316 int rw, u64 file_offset, int skip_sum,
Josef Bacikc3298612012-08-03 16:49:19 -04006317 int async_submit)
Miao Xiee65e1532010-11-22 03:04:43 +00006318{
6319 int write = rw & REQ_WRITE;
6320 struct btrfs_root *root = BTRFS_I(inode)->root;
6321 int ret;
6322
6323 bio_get(bio);
Josef Bacik5fd02042012-05-02 14:00:54 -04006324
6325 if (!write) {
6326 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
6327 if (ret)
6328 goto err;
6329 }
Miao Xiee65e1532010-11-22 03:04:43 +00006330
Josef Bacik1ae39932011-04-06 14:41:34 -04006331 if (skip_sum)
6332 goto map;
6333
6334 if (write && async_submit) {
Miao Xiee65e1532010-11-22 03:04:43 +00006335 ret = btrfs_wq_submit_bio(root->fs_info,
6336 inode, rw, bio, 0, 0,
6337 file_offset,
6338 __btrfs_submit_bio_start_direct_io,
6339 __btrfs_submit_bio_done);
6340 goto err;
Josef Bacik1ae39932011-04-06 14:41:34 -04006341 } else if (write) {
6342 /*
6343 * If we aren't doing async submit, calculate the csum of the
6344 * bio now.
6345 */
6346 ret = btrfs_csum_one_bio(root, inode, bio, file_offset, 1);
6347 if (ret)
6348 goto err;
Tsutomu Itohc2db1072011-03-01 06:48:31 +00006349 } else if (!skip_sum) {
Josef Bacikc3298612012-08-03 16:49:19 -04006350 ret = btrfs_lookup_bio_sums_dio(root, inode, bio, file_offset);
Tsutomu Itohc2db1072011-03-01 06:48:31 +00006351 if (ret)
6352 goto err;
6353 }
Miao Xiee65e1532010-11-22 03:04:43 +00006354
Josef Bacik1ae39932011-04-06 14:41:34 -04006355map:
6356 ret = btrfs_map_bio(root, rw, bio, 0, async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00006357err:
6358 bio_put(bio);
6359 return ret;
6360}
6361
6362static int btrfs_submit_direct_hook(int rw, struct btrfs_dio_private *dip,
6363 int skip_sum)
6364{
6365 struct inode *inode = dip->inode;
6366 struct btrfs_root *root = BTRFS_I(inode)->root;
6367 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
6368 struct bio *bio;
6369 struct bio *orig_bio = dip->orig_bio;
6370 struct bio_vec *bvec = orig_bio->bi_io_vec;
6371 u64 start_sector = orig_bio->bi_sector;
6372 u64 file_offset = dip->logical_offset;
6373 u64 submit_len = 0;
6374 u64 map_length;
6375 int nr_pages = 0;
Miao Xiee65e1532010-11-22 03:04:43 +00006376 int ret = 0;
Josef Bacik1ae39932011-04-06 14:41:34 -04006377 int async_submit = 0;
Miao Xiee65e1532010-11-22 03:04:43 +00006378
Miao Xiee65e1532010-11-22 03:04:43 +00006379 map_length = orig_bio->bi_size;
6380 ret = btrfs_map_block(map_tree, READ, start_sector << 9,
6381 &map_length, NULL, 0);
6382 if (ret) {
Josef Bacik64728bb2011-04-25 19:43:52 -04006383 bio_put(orig_bio);
Miao Xiee65e1532010-11-22 03:04:43 +00006384 return -EIO;
6385 }
6386
Josef Bacik02f57c72011-04-06 14:25:44 -04006387 if (map_length >= orig_bio->bi_size) {
6388 bio = orig_bio;
6389 goto submit;
6390 }
6391
Josef Bacik1ae39932011-04-06 14:41:34 -04006392 async_submit = 1;
Josef Bacik02f57c72011-04-06 14:25:44 -04006393 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev, start_sector, GFP_NOFS);
6394 if (!bio)
6395 return -ENOMEM;
6396 bio->bi_private = dip;
6397 bio->bi_end_io = btrfs_end_dio_bio;
6398 atomic_inc(&dip->pending_bios);
6399
Miao Xiee65e1532010-11-22 03:04:43 +00006400 while (bvec <= (orig_bio->bi_io_vec + orig_bio->bi_vcnt - 1)) {
6401 if (unlikely(map_length < submit_len + bvec->bv_len ||
6402 bio_add_page(bio, bvec->bv_page, bvec->bv_len,
6403 bvec->bv_offset) < bvec->bv_len)) {
6404 /*
6405 * inc the count before we submit the bio so
6406 * we know the end IO handler won't happen before
6407 * we inc the count. Otherwise, the dip might get freed
6408 * before we're done setting it up
6409 */
6410 atomic_inc(&dip->pending_bios);
6411 ret = __btrfs_submit_dio_bio(bio, inode, rw,
6412 file_offset, skip_sum,
Josef Bacikc3298612012-08-03 16:49:19 -04006413 async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00006414 if (ret) {
6415 bio_put(bio);
6416 atomic_dec(&dip->pending_bios);
6417 goto out_err;
6418 }
6419
Miao Xiee65e1532010-11-22 03:04:43 +00006420 start_sector += submit_len >> 9;
6421 file_offset += submit_len;
6422
6423 submit_len = 0;
6424 nr_pages = 0;
6425
6426 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev,
6427 start_sector, GFP_NOFS);
6428 if (!bio)
6429 goto out_err;
6430 bio->bi_private = dip;
6431 bio->bi_end_io = btrfs_end_dio_bio;
6432
6433 map_length = orig_bio->bi_size;
6434 ret = btrfs_map_block(map_tree, READ, start_sector << 9,
6435 &map_length, NULL, 0);
6436 if (ret) {
6437 bio_put(bio);
6438 goto out_err;
6439 }
6440 } else {
6441 submit_len += bvec->bv_len;
6442 nr_pages ++;
6443 bvec++;
6444 }
6445 }
6446
Josef Bacik02f57c72011-04-06 14:25:44 -04006447submit:
Miao Xiee65e1532010-11-22 03:04:43 +00006448 ret = __btrfs_submit_dio_bio(bio, inode, rw, file_offset, skip_sum,
Josef Bacikc3298612012-08-03 16:49:19 -04006449 async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00006450 if (!ret)
6451 return 0;
6452
6453 bio_put(bio);
6454out_err:
6455 dip->errors = 1;
6456 /*
6457 * before atomic variable goto zero, we must
6458 * make sure dip->errors is perceived to be set.
6459 */
6460 smp_mb__before_atomic_dec();
6461 if (atomic_dec_and_test(&dip->pending_bios))
6462 bio_io_error(dip->orig_bio);
6463
6464 /* bio_end_io() will handle error, so we needn't return it */
6465 return 0;
6466}
6467
Josef Bacik4b46fce2010-05-23 11:00:55 -04006468static void btrfs_submit_direct(int rw, struct bio *bio, struct inode *inode,
6469 loff_t file_offset)
6470{
6471 struct btrfs_root *root = BTRFS_I(inode)->root;
6472 struct btrfs_dio_private *dip;
6473 struct bio_vec *bvec = bio->bi_io_vec;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006474 int skip_sum;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02006475 int write = rw & REQ_WRITE;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006476 int ret = 0;
6477
6478 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
6479
6480 dip = kmalloc(sizeof(*dip), GFP_NOFS);
6481 if (!dip) {
6482 ret = -ENOMEM;
6483 goto free_ordered;
6484 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04006485
6486 dip->private = bio->bi_private;
6487 dip->inode = inode;
6488 dip->logical_offset = file_offset;
6489
Josef Bacik4b46fce2010-05-23 11:00:55 -04006490 dip->bytes = 0;
6491 do {
6492 dip->bytes += bvec->bv_len;
6493 bvec++;
6494 } while (bvec <= (bio->bi_io_vec + bio->bi_vcnt - 1));
6495
Chris Mason46bfbb52010-05-26 11:04:10 -04006496 dip->disk_bytenr = (u64)bio->bi_sector << 9;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006497 bio->bi_private = dip;
Miao Xiee65e1532010-11-22 03:04:43 +00006498 dip->errors = 0;
6499 dip->orig_bio = bio;
6500 atomic_set(&dip->pending_bios, 0);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006501
6502 if (write)
6503 bio->bi_end_io = btrfs_endio_direct_write;
6504 else
6505 bio->bi_end_io = btrfs_endio_direct_read;
6506
Miao Xiee65e1532010-11-22 03:04:43 +00006507 ret = btrfs_submit_direct_hook(rw, dip, skip_sum);
6508 if (!ret)
Chris Masoneaf25d92010-05-25 09:48:28 -04006509 return;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006510free_ordered:
6511 /*
6512 * If this is a write, we need to clean up the reserved space and kill
6513 * the ordered extent.
6514 */
6515 if (write) {
6516 struct btrfs_ordered_extent *ordered;
Josef Bacik955256f2010-11-19 09:41:10 -05006517 ordered = btrfs_lookup_ordered_extent(inode, file_offset);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006518 if (!test_bit(BTRFS_ORDERED_PREALLOC, &ordered->flags) &&
6519 !test_bit(BTRFS_ORDERED_NOCOW, &ordered->flags))
6520 btrfs_free_reserved_extent(root, ordered->start,
6521 ordered->disk_len);
6522 btrfs_put_ordered_extent(ordered);
6523 btrfs_put_ordered_extent(ordered);
6524 }
6525 bio_endio(bio, ret);
6526}
6527
Chris Mason5a5f79b2010-05-26 21:33:37 -04006528static ssize_t check_direct_IO(struct btrfs_root *root, int rw, struct kiocb *iocb,
6529 const struct iovec *iov, loff_t offset,
6530 unsigned long nr_segs)
6531{
6532 int seg;
Josef Bacika1b75f72011-04-08 15:51:18 +00006533 int i;
Chris Mason5a5f79b2010-05-26 21:33:37 -04006534 size_t size;
6535 unsigned long addr;
6536 unsigned blocksize_mask = root->sectorsize - 1;
6537 ssize_t retval = -EINVAL;
6538 loff_t end = offset;
6539
6540 if (offset & blocksize_mask)
6541 goto out;
6542
6543 /* Check the memory alignment. Blocks cannot straddle pages */
6544 for (seg = 0; seg < nr_segs; seg++) {
6545 addr = (unsigned long)iov[seg].iov_base;
6546 size = iov[seg].iov_len;
6547 end += size;
Josef Bacika1b75f72011-04-08 15:51:18 +00006548 if ((addr & blocksize_mask) || (size & blocksize_mask))
Chris Mason5a5f79b2010-05-26 21:33:37 -04006549 goto out;
Josef Bacika1b75f72011-04-08 15:51:18 +00006550
6551 /* If this is a write we don't need to check anymore */
6552 if (rw & WRITE)
6553 continue;
6554
6555 /*
6556 * Check to make sure we don't have duplicate iov_base's in this
6557 * iovec, if so return EINVAL, otherwise we'll get csum errors
6558 * when reading back.
6559 */
6560 for (i = seg + 1; i < nr_segs; i++) {
6561 if (iov[seg].iov_base == iov[i].iov_base)
6562 goto out;
6563 }
Chris Mason5a5f79b2010-05-26 21:33:37 -04006564 }
6565 retval = 0;
6566out:
6567 return retval;
6568}
Josef Bacikeb838e72012-07-31 16:28:48 -04006569
Chris Mason16432982008-04-10 10:23:21 -04006570static ssize_t btrfs_direct_IO(int rw, struct kiocb *iocb,
6571 const struct iovec *iov, loff_t offset,
6572 unsigned long nr_segs)
6573{
Josef Bacik4b46fce2010-05-23 11:00:55 -04006574 struct file *file = iocb->ki_filp;
6575 struct inode *inode = file->f_mapping->host;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006576
Chris Mason5a5f79b2010-05-26 21:33:37 -04006577 if (check_direct_IO(BTRFS_I(inode)->root, rw, iocb, iov,
Josef Bacikeb838e72012-07-31 16:28:48 -04006578 offset, nr_segs))
Chris Mason5a5f79b2010-05-26 21:33:37 -04006579 return 0;
Chris Mason5a5f79b2010-05-26 21:33:37 -04006580
Josef Bacikeb838e72012-07-31 16:28:48 -04006581 return __blockdev_direct_IO(rw, iocb, inode,
Chris Mason5a5f79b2010-05-26 21:33:37 -04006582 BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev,
6583 iov, offset, nr_segs, btrfs_get_blocks_direct, NULL,
6584 btrfs_submit_direct, 0);
Chris Mason16432982008-04-10 10:23:21 -04006585}
6586
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05006587static int btrfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
6588 __u64 start, __u64 len)
6589{
Chris Masonec29ed52011-02-23 16:23:20 -05006590 return extent_fiemap(inode, fieinfo, start, len, btrfs_get_extent_fiemap);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05006591}
6592
Chris Mason9ebefb182007-06-15 13:50:00 -04006593int btrfs_readpage(struct file *file, struct page *page)
6594{
Chris Masond1310b22008-01-24 16:13:08 -05006595 struct extent_io_tree *tree;
6596 tree = &BTRFS_I(page->mapping->host)->io_tree;
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02006597 return extent_read_full_page(tree, page, btrfs_get_extent, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04006598}
Chris Mason1832a6d2007-12-21 16:27:21 -05006599
Chris Mason39279cc2007-06-12 06:35:45 -04006600static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
6601{
Chris Masond1310b22008-01-24 16:13:08 -05006602 struct extent_io_tree *tree;
Chris Masonb888db2b2007-08-27 16:49:44 -04006603
6604
6605 if (current->flags & PF_MEMALLOC) {
6606 redirty_page_for_writepage(wbc, page);
6607 unlock_page(page);
6608 return 0;
6609 }
Chris Masond1310b22008-01-24 16:13:08 -05006610 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04006611 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
6612}
Chris Mason39279cc2007-06-12 06:35:45 -04006613
Chris Masonf4219502008-07-22 11:18:09 -04006614int btrfs_writepages(struct address_space *mapping,
6615 struct writeback_control *wbc)
Chris Masonb293f02e2007-11-01 19:45:34 -04006616{
Chris Masond1310b22008-01-24 16:13:08 -05006617 struct extent_io_tree *tree;
Chris Mason771ed682008-11-06 22:02:51 -05006618
Chris Masond1310b22008-01-24 16:13:08 -05006619 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f02e2007-11-01 19:45:34 -04006620 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
6621}
6622
Chris Mason3ab2fb52007-11-08 10:59:22 -05006623static int
6624btrfs_readpages(struct file *file, struct address_space *mapping,
6625 struct list_head *pages, unsigned nr_pages)
6626{
Chris Masond1310b22008-01-24 16:13:08 -05006627 struct extent_io_tree *tree;
6628 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05006629 return extent_readpages(tree, mapping, pages, nr_pages,
6630 btrfs_get_extent);
6631}
Chris Masone6dcd2d2008-07-17 12:53:50 -04006632static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04006633{
Chris Masond1310b22008-01-24 16:13:08 -05006634 struct extent_io_tree *tree;
6635 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04006636 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006637
Chris Masond1310b22008-01-24 16:13:08 -05006638 tree = &BTRFS_I(page->mapping->host)->io_tree;
6639 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05006640 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04006641 if (ret == 1) {
6642 ClearPagePrivate(page);
6643 set_page_private(page, 0);
6644 page_cache_release(page);
6645 }
6646 return ret;
6647}
Chris Mason39279cc2007-06-12 06:35:45 -04006648
Chris Masone6dcd2d2008-07-17 12:53:50 -04006649static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
6650{
Chris Mason98509cf2008-09-11 15:51:43 -04006651 if (PageWriteback(page) || PageDirty(page))
6652 return 0;
Yan Zhengb335b002009-02-12 10:06:04 -05006653 return __btrfs_releasepage(page, gfp_flags & GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006654}
6655
Chris Masona52d9a82007-08-27 16:49:44 -04006656static void btrfs_invalidatepage(struct page *page, unsigned long offset)
6657{
Josef Bacik5fd02042012-05-02 14:00:54 -04006658 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05006659 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006660 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00006661 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006662 u64 page_start = page_offset(page);
6663 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04006664
Chris Mason8b62b722009-09-02 16:53:46 -04006665 /*
6666 * we have the page locked, so new writeback can't start,
6667 * and the dirty bit won't be cleared while we are here.
6668 *
6669 * Wait for IO on this page so that we can safely clear
6670 * the PagePrivate2 bit and do ordered accounting
6671 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006672 wait_on_page_writeback(page);
Chris Mason8b62b722009-09-02 16:53:46 -04006673
Josef Bacik5fd02042012-05-02 14:00:54 -04006674 tree = &BTRFS_I(inode)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006675 if (offset) {
6676 btrfs_releasepage(page, GFP_NOFS);
6677 return;
6678 }
Jeff Mahoneyd0082372012-03-01 14:57:19 +01006679 lock_extent_bits(tree, page_start, page_end, 0, &cached_state);
Josef Bacik5fd02042012-05-02 14:00:54 -04006680 ordered = btrfs_lookup_ordered_extent(inode,
Chris Masone6dcd2d2008-07-17 12:53:50 -04006681 page_offset(page));
6682 if (ordered) {
Chris Masoneb84ae02008-07-17 13:53:27 -04006683 /*
6684 * IO on this page will never be started, so we need
6685 * to account for any ordered extents now
6686 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006687 clear_extent_bit(tree, page_start, page_end,
6688 EXTENT_DIRTY | EXTENT_DELALLOC |
Liu Bo9e8a4a82012-09-05 19:10:51 -06006689 EXTENT_LOCKED | EXTENT_DO_ACCOUNTING |
6690 EXTENT_DEFRAG, 1, 0, &cached_state, GFP_NOFS);
Chris Mason8b62b722009-09-02 16:53:46 -04006691 /*
6692 * whoever cleared the private bit is responsible
6693 * for the finish_ordered_io
6694 */
Josef Bacik5fd02042012-05-02 14:00:54 -04006695 if (TestClearPagePrivate2(page) &&
6696 btrfs_dec_test_ordered_pending(inode, &ordered, page_start,
6697 PAGE_CACHE_SIZE, 1)) {
6698 btrfs_finish_ordered_io(ordered);
Chris Mason8b62b722009-09-02 16:53:46 -04006699 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006700 btrfs_put_ordered_extent(ordered);
Josef Bacik2ac55d42010-02-03 19:33:23 +00006701 cached_state = NULL;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01006702 lock_extent_bits(tree, page_start, page_end, 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006703 }
6704 clear_extent_bit(tree, page_start, page_end,
Josef Bacik32c00af2009-10-08 13:34:05 -04006705 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
Liu Bo9e8a4a82012-09-05 19:10:51 -06006706 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, 1, 1,
6707 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006708 __btrfs_releasepage(page, GFP_NOFS);
6709
Chris Mason4a096752008-07-21 10:29:44 -04006710 ClearPageChecked(page);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04006711 if (PagePrivate(page)) {
Chris Mason9ad6b7b2008-04-18 16:11:30 -04006712 ClearPagePrivate(page);
6713 set_page_private(page, 0);
6714 page_cache_release(page);
6715 }
Chris Mason39279cc2007-06-12 06:35:45 -04006716}
6717
Chris Mason9ebefb182007-06-15 13:50:00 -04006718/*
6719 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
6720 * called from a page fault handler when a page is first dirtied. Hence we must
6721 * be careful to check for EOF conditions here. We set the page up correctly
6722 * for a written page which means we get ENOSPC checking when writing into
6723 * holes and correct delalloc and unwritten extent mapping on filesystems that
6724 * support these features.
6725 *
6726 * We are not allowed to take the i_mutex here so we have to play games to
6727 * protect against truncate races as the page could now be beyond EOF. Because
6728 * vmtruncate() writes the inode size before removing pages, once we have the
6729 * page lock we can determine safely if the page is beyond EOF. If it is not
6730 * beyond EOF, then the page is guaranteed safe against truncation until we
6731 * unlock the page.
6732 */
Nick Pigginc2ec1752009-03-31 15:23:21 -07006733int btrfs_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Chris Mason9ebefb182007-06-15 13:50:00 -04006734{
Nick Pigginc2ec1752009-03-31 15:23:21 -07006735 struct page *page = vmf->page;
Chris Mason6da6aba2007-12-18 16:15:09 -05006736 struct inode *inode = fdentry(vma->vm_file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05006737 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006738 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
6739 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00006740 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006741 char *kaddr;
6742 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04006743 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05006744 int ret;
Chris Mason9998eb72012-01-25 13:47:40 -05006745 int reserved = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04006746 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006747 u64 page_end;
Chris Mason9ebefb182007-06-15 13:50:00 -04006748
Jan Karab2b5ef52012-06-12 16:20:45 +02006749 sb_start_pagefault(inode->i_sb);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006750 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
Chris Mason9998eb72012-01-25 13:47:40 -05006751 if (!ret) {
Josef Bacike41f9412012-03-26 09:46:47 -04006752 ret = file_update_time(vma->vm_file);
Chris Mason9998eb72012-01-25 13:47:40 -05006753 reserved = 1;
6754 }
Nick Piggin56a76f82009-03-31 15:23:23 -07006755 if (ret) {
6756 if (ret == -ENOMEM)
6757 ret = VM_FAULT_OOM;
6758 else /* -ENOSPC, -EIO, etc */
6759 ret = VM_FAULT_SIGBUS;
Chris Mason9998eb72012-01-25 13:47:40 -05006760 if (reserved)
6761 goto out;
6762 goto out_noreserve;
Nick Piggin56a76f82009-03-31 15:23:23 -07006763 }
Chris Mason1832a6d2007-12-21 16:27:21 -05006764
Nick Piggin56a76f82009-03-31 15:23:23 -07006765 ret = VM_FAULT_NOPAGE; /* make the VM retry the fault */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006766again:
Chris Mason9ebefb182007-06-15 13:50:00 -04006767 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04006768 size = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006769 page_start = page_offset(page);
6770 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04006771
Chris Mason9ebefb182007-06-15 13:50:00 -04006772 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04006773 (page_start >= size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04006774 /* page got truncated out from underneath us */
6775 goto out_unlock;
6776 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006777 wait_on_page_writeback(page);
6778
Jeff Mahoneyd0082372012-03-01 14:57:19 +01006779 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006780 set_page_extent_mapped(page);
6781
Chris Masoneb84ae02008-07-17 13:53:27 -04006782 /*
6783 * we can't set the delalloc bits if there are pending ordered
6784 * extents. Drop our locks and wait for them to finish
6785 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006786 ordered = btrfs_lookup_ordered_extent(inode, page_start);
6787 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00006788 unlock_extent_cached(io_tree, page_start, page_end,
6789 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006790 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04006791 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006792 btrfs_put_ordered_extent(ordered);
6793 goto again;
6794 }
6795
Josef Bacikfbf19082009-10-01 17:10:23 -04006796 /*
6797 * XXX - page_mkwrite gets called every time the page is dirtied, even
6798 * if it was already dirty, so for space accounting reasons we need to
6799 * clear any delalloc bits for the range we are fixing to save. There
6800 * is probably a better way to do this, but for now keep consistent with
6801 * prepare_pages in the normal write path.
6802 */
Josef Bacik2ac55d42010-02-03 19:33:23 +00006803 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Liu Bo9e8a4a82012-09-05 19:10:51 -06006804 EXTENT_DIRTY | EXTENT_DELALLOC |
6805 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
Josef Bacik2ac55d42010-02-03 19:33:23 +00006806 0, 0, &cached_state, GFP_NOFS);
Josef Bacikfbf19082009-10-01 17:10:23 -04006807
Josef Bacik2ac55d42010-02-03 19:33:23 +00006808 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
6809 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006810 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00006811 unlock_extent_cached(io_tree, page_start, page_end,
6812 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006813 ret = VM_FAULT_SIGBUS;
6814 goto out_unlock;
6815 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006816 ret = 0;
Chris Mason9ebefb182007-06-15 13:50:00 -04006817
6818 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04006819 if (page_start + PAGE_CACHE_SIZE > size)
Chris Masone6dcd2d2008-07-17 12:53:50 -04006820 zero_start = size & ~PAGE_CACHE_MASK;
Chris Mason9ebefb182007-06-15 13:50:00 -04006821 else
Chris Masone6dcd2d2008-07-17 12:53:50 -04006822 zero_start = PAGE_CACHE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04006823
Chris Masone6dcd2d2008-07-17 12:53:50 -04006824 if (zero_start != PAGE_CACHE_SIZE) {
6825 kaddr = kmap(page);
6826 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
6827 flush_dcache_page(page);
6828 kunmap(page);
6829 }
Chris Mason247e7432008-07-17 12:53:51 -04006830 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006831 set_page_dirty(page);
Chris Mason50a9b212009-09-11 12:33:12 -04006832 SetPageUptodate(page);
Chris Mason5a3f23d2009-03-31 13:27:11 -04006833
Chris Mason257c62e2009-10-13 13:21:08 -04006834 BTRFS_I(inode)->last_trans = root->fs_info->generation;
6835 BTRFS_I(inode)->last_sub_trans = BTRFS_I(inode)->root->log_transid;
Liu Bo46d8bc32012-08-29 01:07:55 -06006836 BTRFS_I(inode)->last_log_commit = BTRFS_I(inode)->root->last_log_commit;
Chris Mason257c62e2009-10-13 13:21:08 -04006837
Josef Bacik2ac55d42010-02-03 19:33:23 +00006838 unlock_extent_cached(io_tree, page_start, page_end, &cached_state, GFP_NOFS);
Chris Mason9ebefb182007-06-15 13:50:00 -04006839
6840out_unlock:
Jan Karab2b5ef52012-06-12 16:20:45 +02006841 if (!ret) {
6842 sb_end_pagefault(inode->i_sb);
Chris Mason50a9b212009-09-11 12:33:12 -04006843 return VM_FAULT_LOCKED;
Jan Karab2b5ef52012-06-12 16:20:45 +02006844 }
Chris Mason9ebefb182007-06-15 13:50:00 -04006845 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05006846out:
Josef Bacikec39e182012-01-12 19:10:12 -05006847 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Mason9998eb72012-01-25 13:47:40 -05006848out_noreserve:
Jan Karab2b5ef52012-06-12 16:20:45 +02006849 sb_end_pagefault(inode->i_sb);
Chris Mason9ebefb182007-06-15 13:50:00 -04006850 return ret;
6851}
6852
Josef Bacika41ad392011-01-31 15:30:16 -05006853static int btrfs_truncate(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04006854{
6855 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacikfcb80c22011-05-03 10:40:22 -04006856 struct btrfs_block_rsv *rsv;
Chris Mason39279cc2007-06-12 06:35:45 -04006857 int ret;
Josef Bacik3893e332011-01-31 16:03:11 -05006858 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006859 struct btrfs_trans_handle *trans;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04006860 unsigned long nr;
Chris Masondbe674a2008-07-17 12:54:05 -04006861 u64 mask = root->sectorsize - 1;
Josef Bacik07127182011-08-19 10:29:59 -04006862 u64 min_size = btrfs_calc_trunc_metadata_size(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04006863
Josef Bacik2aaa6652012-08-29 14:27:18 -04006864 ret = btrfs_truncate_page(inode, inode->i_size, 0, 0);
Josef Bacik5d5e1032009-10-13 16:46:49 -04006865 if (ret)
Josef Bacika41ad392011-01-31 15:30:16 -05006866 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00006867
Chris Mason4a096752008-07-21 10:29:44 -04006868 btrfs_wait_ordered_range(inode, inode->i_size & (~mask), (u64)-1);
Yan, Zheng80825102009-11-12 09:35:36 +00006869 btrfs_ordered_update_i_size(inode, inode->i_size, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006870
Josef Bacikfcb80c22011-05-03 10:40:22 -04006871 /*
6872 * Yes ladies and gentelment, this is indeed ugly. The fact is we have
6873 * 3 things going on here
6874 *
6875 * 1) We need to reserve space for our orphan item and the space to
6876 * delete our orphan item. Lord knows we don't want to have a dangling
6877 * orphan item because we didn't reserve space to remove it.
6878 *
6879 * 2) We need to reserve space to update our inode.
6880 *
6881 * 3) We need to have something to cache all the space that is going to
6882 * be free'd up by the truncate operation, but also have some slack
6883 * space reserved in case it uses space during the truncate (thank you
6884 * very much snapshotting).
6885 *
6886 * And we need these to all be seperate. The fact is we can use alot of
6887 * space doing the truncate, and we have no earthly idea how much space
6888 * we will use, so we need the truncate reservation to be seperate so it
6889 * doesn't end up using space reserved for updating the inode or
6890 * removing the orphan item. We also need to be able to stop the
6891 * transaction and start a new one, which means we need to be able to
6892 * update the inode several times, and we have no idea of knowing how
6893 * many times that will be, so we can't just reserve 1 item for the
6894 * entirety of the opration, so that has to be done seperately as well.
6895 * Then there is the orphan item, which does indeed need to be held on
6896 * to for the whole operation, and we need nobody to touch this reserved
6897 * space except the orphan code.
6898 *
6899 * So that leaves us with
6900 *
6901 * 1) root->orphan_block_rsv - for the orphan deletion.
6902 * 2) rsv - for the truncate reservation, which we will steal from the
6903 * transaction reservation.
6904 * 3) fs_info->trans_block_rsv - this will have 1 items worth left for
6905 * updating the inode.
6906 */
Miao Xie66d8f3d2012-09-06 04:02:28 -06006907 rsv = btrfs_alloc_block_rsv(root, BTRFS_BLOCK_RSV_TEMP);
Josef Bacikfcb80c22011-05-03 10:40:22 -04006908 if (!rsv)
6909 return -ENOMEM;
Josef Bacik4a338542011-08-29 11:01:31 -04006910 rsv->size = min_size;
Josef Bacikca7e70f2012-08-27 17:48:15 -04006911 rsv->failfast = 1;
Josef Bacikf0cd8462011-03-04 14:37:08 -05006912
Josef Bacik907cbce2011-08-08 13:46:15 -04006913 /*
Josef Bacik07127182011-08-19 10:29:59 -04006914 * 1 for the truncate slack space
Josef Bacik907cbce2011-08-08 13:46:15 -04006915 * 1 for the orphan item we're going to add
6916 * 1 for the orphan item deletion
6917 * 1 for updating the inode.
6918 */
Josef Bacikfcb80c22011-05-03 10:40:22 -04006919 trans = btrfs_start_transaction(root, 4);
6920 if (IS_ERR(trans)) {
6921 err = PTR_ERR(trans);
6922 goto out;
6923 }
Josef Bacikf0cd8462011-03-04 14:37:08 -05006924
Josef Bacik907cbce2011-08-08 13:46:15 -04006925 /* Migrate the slack space for the truncate to our reserve */
6926 ret = btrfs_block_rsv_migrate(&root->fs_info->trans_block_rsv, rsv,
6927 min_size);
Josef Bacikfcb80c22011-05-03 10:40:22 -04006928 BUG_ON(ret);
Josef Bacikf0cd8462011-03-04 14:37:08 -05006929
6930 ret = btrfs_orphan_add(trans, inode);
6931 if (ret) {
6932 btrfs_end_transaction(trans, root);
Josef Bacikfcb80c22011-05-03 10:40:22 -04006933 goto out;
Josef Bacikf0cd8462011-03-04 14:37:08 -05006934 }
6935
Chris Mason5a3f23d2009-03-31 13:27:11 -04006936 /*
6937 * setattr is responsible for setting the ordered_data_close flag,
6938 * but that is only tested during the last file release. That
6939 * could happen well after the next commit, leaving a great big
6940 * window where new writes may get lost if someone chooses to write
6941 * to this file after truncating to zero
6942 *
6943 * The inode doesn't have any dirty data here, and so if we commit
6944 * this is a noop. If someone immediately starts writing to the inode
6945 * it is very likely we'll catch some of their writes in this
6946 * transaction, and the commit will find this file on the ordered
6947 * data list with good things to send down.
6948 *
6949 * This is a best effort solution, there is still a window where
6950 * using truncate to replace the contents of the file will
6951 * end up with a zero length file after a crash.
6952 */
Josef Bacik72ac3c02012-05-23 14:13:11 -04006953 if (inode->i_size == 0 && test_bit(BTRFS_INODE_ORDERED_DATA_CLOSE,
6954 &BTRFS_I(inode)->runtime_flags))
Chris Mason5a3f23d2009-03-31 13:27:11 -04006955 btrfs_add_ordered_operation(trans, root, inode);
6956
Josef Bacik5dc562c2012-08-17 13:14:17 -04006957 /*
6958 * So if we truncate and then write and fsync we normally would just
6959 * write the extents that changed, which is a problem if we need to
6960 * first truncate that entire inode. So set this flag so we write out
6961 * all of the extents in the inode to the sync log so we're completely
6962 * safe.
6963 */
6964 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
Josef Bacikca7e70f2012-08-27 17:48:15 -04006965 trans->block_rsv = rsv;
Josef Bacik5dc562c2012-08-17 13:14:17 -04006966
Yan, Zheng80825102009-11-12 09:35:36 +00006967 while (1) {
6968 ret = btrfs_truncate_inode_items(trans, root, inode,
6969 inode->i_size,
6970 BTRFS_EXTENT_DATA_KEY);
Josef Bacikca7e70f2012-08-27 17:48:15 -04006971 if (ret != -ENOSPC) {
Josef Bacik3893e332011-01-31 16:03:11 -05006972 err = ret;
Yan, Zheng80825102009-11-12 09:35:36 +00006973 break;
Josef Bacik3893e332011-01-31 16:03:11 -05006974 }
Chris Mason39279cc2007-06-12 06:35:45 -04006975
Josef Bacikfcb80c22011-05-03 10:40:22 -04006976 trans->block_rsv = &root->fs_info->trans_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00006977 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05006978 if (ret) {
6979 err = ret;
6980 break;
6981 }
Josef Bacikca7e70f2012-08-27 17:48:15 -04006982
Yan, Zheng80825102009-11-12 09:35:36 +00006983 nr = trans->blocks_used;
6984 btrfs_end_transaction(trans, root);
6985 btrfs_btree_balance_dirty(root, nr);
Josef Bacikca7e70f2012-08-27 17:48:15 -04006986
6987 trans = btrfs_start_transaction(root, 2);
6988 if (IS_ERR(trans)) {
6989 ret = err = PTR_ERR(trans);
6990 trans = NULL;
6991 break;
6992 }
6993
6994 ret = btrfs_block_rsv_migrate(&root->fs_info->trans_block_rsv,
6995 rsv, min_size);
6996 BUG_ON(ret); /* shouldn't happen */
6997 trans->block_rsv = rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00006998 }
6999
7000 if (ret == 0 && inode->i_nlink > 0) {
Josef Bacikfcb80c22011-05-03 10:40:22 -04007001 trans->block_rsv = root->orphan_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00007002 ret = btrfs_orphan_del(trans, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05007003 if (ret)
7004 err = ret;
Josef Bacikded5db92011-03-04 14:09:46 -05007005 } else if (ret && inode->i_nlink > 0) {
7006 /*
7007 * Failed to do the truncate, remove us from the in memory
7008 * orphan list.
7009 */
7010 ret = btrfs_orphan_del(NULL, inode);
Yan, Zheng80825102009-11-12 09:35:36 +00007011 }
7012
Chris Mason917c16b2011-11-08 14:49:59 -05007013 if (trans) {
7014 trans->block_rsv = &root->fs_info->trans_block_rsv;
7015 ret = btrfs_update_inode(trans, root, inode);
7016 if (ret && !err)
7017 err = ret;
Josef Bacik7b128762008-07-24 12:17:14 -04007018
Chris Mason917c16b2011-11-08 14:49:59 -05007019 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05007020 ret = btrfs_end_transaction(trans, root);
Chris Mason917c16b2011-11-08 14:49:59 -05007021 btrfs_btree_balance_dirty(root, nr);
7022 }
Josef Bacikfcb80c22011-05-03 10:40:22 -04007023
7024out:
7025 btrfs_free_block_rsv(root, rsv);
7026
Josef Bacik3893e332011-01-31 16:03:11 -05007027 if (ret && !err)
7028 err = ret;
Josef Bacika41ad392011-01-31 15:30:16 -05007029
Josef Bacik3893e332011-01-31 16:03:11 -05007030 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04007031}
7032
Sven Wegener3b963622008-06-09 21:57:42 -04007033/*
Chris Masond352ac62008-09-29 15:18:18 -04007034 * create a new subvolume directory/inode (helper for the ioctl).
7035 */
Yan Zhengd2fb3432008-12-11 16:30:39 -05007036int btrfs_create_subvol_root(struct btrfs_trans_handle *trans,
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04007037 struct btrfs_root *new_root, u64 new_dirid)
Chris Mason39279cc2007-06-12 06:35:45 -04007038{
Chris Mason39279cc2007-06-12 06:35:45 -04007039 struct inode *inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04007040 int err;
Chris Mason00e4e6b2008-08-05 11:18:09 -04007041 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04007042
Florian Albrechtskirchinger12fc9d02012-02-10 22:15:54 +01007043 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2,
7044 new_dirid, new_dirid,
7045 S_IFDIR | (~current_umask() & S_IRWXUGO),
7046 &index);
Chris Mason54aa1f42007-06-22 14:16:25 -04007047 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04007048 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007049 inode->i_op = &btrfs_dir_inode_operations;
7050 inode->i_fop = &btrfs_dir_file_operations;
7051
Miklos Szeredibfe86842011-10-28 14:13:29 +02007052 set_nlink(inode, 1);
Chris Masondbe674a2008-07-17 12:54:05 -04007053 btrfs_i_size_write(inode, 0);
Sven Wegener3b963622008-06-09 21:57:42 -04007054
Yan, Zheng76dda932009-09-21 16:00:26 -04007055 err = btrfs_update_inode(trans, new_root, inode);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04007056
Yan, Zheng76dda932009-09-21 16:00:26 -04007057 iput(inode);
Mark Fashehce598972011-07-26 11:32:23 -07007058 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04007059}
7060
Chris Mason39279cc2007-06-12 06:35:45 -04007061struct inode *btrfs_alloc_inode(struct super_block *sb)
7062{
7063 struct btrfs_inode *ei;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007064 struct inode *inode;
Chris Mason39279cc2007-06-12 06:35:45 -04007065
7066 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
7067 if (!ei)
7068 return NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007069
7070 ei->root = NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007071 ei->generation = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04007072 ei->last_trans = 0;
Chris Mason257c62e2009-10-13 13:21:08 -04007073 ei->last_sub_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04007074 ei->logged_trans = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007075 ei->delalloc_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007076 ei->disk_i_size = 0;
7077 ei->flags = 0;
Josef Bacik7709cde2011-08-04 10:25:02 -04007078 ei->csum_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007079 ei->index_cnt = (u64)-1;
7080 ei->last_unlink_trans = 0;
Liu Bo46d8bc32012-08-29 01:07:55 -06007081 ei->last_log_commit = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007082
Josef Bacik9e0baf62011-07-15 15:16:44 +00007083 spin_lock_init(&ei->lock);
7084 ei->outstanding_extents = 0;
7085 ei->reserved_extents = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007086
Josef Bacik72ac3c02012-05-23 14:13:11 -04007087 ei->runtime_flags = 0;
Li Zefan261507a02010-12-17 14:21:50 +08007088 ei->force_compress = BTRFS_COMPRESS_NONE;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007089
Miao Xie16cdcec2011-04-22 18:12:22 +08007090 ei->delayed_node = NULL;
7091
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007092 inode = &ei->vfs_inode;
David Sterbaa8067e02011-04-21 00:34:43 +02007093 extent_map_tree_init(&ei->extent_tree);
David Sterbaf993c882011-04-20 23:35:57 +02007094 extent_io_tree_init(&ei->io_tree, &inode->i_data);
7095 extent_io_tree_init(&ei->io_failure_tree, &inode->i_data);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04007096 ei->io_tree.track_uptodate = 1;
7097 ei->io_failure_tree.track_uptodate = 1;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007098 mutex_init(&ei->log_mutex);
Josef Bacikf2486792012-01-13 12:09:22 -05007099 mutex_init(&ei->delalloc_mutex);
Chris Masone6dcd2d2008-07-17 12:53:50 -04007100 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007101 INIT_LIST_HEAD(&ei->delalloc_inodes);
Chris Mason5a3f23d2009-03-31 13:27:11 -04007102 INIT_LIST_HEAD(&ei->ordered_operations);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007103 RB_CLEAR_NODE(&ei->rb_node);
7104
7105 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04007106}
7107
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11007108static void btrfs_i_callback(struct rcu_head *head)
7109{
7110 struct inode *inode = container_of(head, struct inode, i_rcu);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11007111 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
7112}
7113
Chris Mason39279cc2007-06-12 06:35:45 -04007114void btrfs_destroy_inode(struct inode *inode)
7115{
Chris Masone6dcd2d2008-07-17 12:53:50 -04007116 struct btrfs_ordered_extent *ordered;
Chris Mason5a3f23d2009-03-31 13:27:11 -04007117 struct btrfs_root *root = BTRFS_I(inode)->root;
7118
Al Virob3d9b7a2012-06-09 13:51:19 -04007119 WARN_ON(!hlist_empty(&inode->i_dentry));
Chris Mason39279cc2007-06-12 06:35:45 -04007120 WARN_ON(inode->i_data.nrpages);
Josef Bacik9e0baf62011-07-15 15:16:44 +00007121 WARN_ON(BTRFS_I(inode)->outstanding_extents);
7122 WARN_ON(BTRFS_I(inode)->reserved_extents);
Josef Bacik7709cde2011-08-04 10:25:02 -04007123 WARN_ON(BTRFS_I(inode)->delalloc_bytes);
7124 WARN_ON(BTRFS_I(inode)->csum_bytes);
Chris Mason39279cc2007-06-12 06:35:45 -04007125
Chris Mason5a3f23d2009-03-31 13:27:11 -04007126 /*
Josef Bacika6dbd422009-11-11 15:53:34 -05007127 * This can happen where we create an inode, but somebody else also
7128 * created the same inode and we need to destroy the one we already
7129 * created.
7130 */
7131 if (!root)
7132 goto free;
7133
7134 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04007135 * Make sure we're properly removed from the ordered operation
7136 * lists.
7137 */
7138 smp_mb();
7139 if (!list_empty(&BTRFS_I(inode)->ordered_operations)) {
7140 spin_lock(&root->fs_info->ordered_extent_lock);
7141 list_del_init(&BTRFS_I(inode)->ordered_operations);
7142 spin_unlock(&root->fs_info->ordered_extent_lock);
7143 }
7144
Josef Bacik8a35d952012-05-23 14:26:42 -04007145 if (test_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
7146 &BTRFS_I(inode)->runtime_flags)) {
Li Zefan33345d012011-04-20 10:31:50 +08007147 printk(KERN_INFO "BTRFS: inode %llu still on the orphan list\n",
7148 (unsigned long long)btrfs_ino(inode));
Josef Bacik8a35d952012-05-23 14:26:42 -04007149 atomic_dec(&root->orphan_inodes);
Josef Bacik7b128762008-07-24 12:17:14 -04007150 }
Josef Bacik7b128762008-07-24 12:17:14 -04007151
Chris Masond3977122009-01-05 21:25:51 -05007152 while (1) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04007153 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
7154 if (!ordered)
7155 break;
7156 else {
Chris Masond3977122009-01-05 21:25:51 -05007157 printk(KERN_ERR "btrfs found ordered "
7158 "extent %llu %llu on inode cleanup\n",
7159 (unsigned long long)ordered->file_offset,
7160 (unsigned long long)ordered->len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04007161 btrfs_remove_ordered_extent(inode, ordered);
7162 btrfs_put_ordered_extent(ordered);
7163 btrfs_put_ordered_extent(ordered);
7164 }
7165 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007166 inode_tree_del(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007167 btrfs_drop_extent_cache(inode, 0, (u64)-1, 0);
Josef Bacika6dbd422009-11-11 15:53:34 -05007168free:
Miao Xie16cdcec2011-04-22 18:12:22 +08007169 btrfs_remove_delayed_node(inode);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11007170 call_rcu(&inode->i_rcu, btrfs_i_callback);
Chris Mason39279cc2007-06-12 06:35:45 -04007171}
7172
Al Viro45321ac2010-06-07 13:43:19 -04007173int btrfs_drop_inode(struct inode *inode)
Yan, Zheng76dda932009-09-21 16:00:26 -04007174{
7175 struct btrfs_root *root = BTRFS_I(inode)->root;
Al Viro45321ac2010-06-07 13:43:19 -04007176
Josef Bacik0af3d002010-06-21 14:48:16 -04007177 if (btrfs_root_refs(&root->root_item) == 0 &&
Liu Bo83eea1f2012-07-10 05:28:39 -06007178 !btrfs_is_free_space_inode(inode))
Al Viro45321ac2010-06-07 13:43:19 -04007179 return 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04007180 else
Al Viro45321ac2010-06-07 13:43:19 -04007181 return generic_drop_inode(inode);
Yan, Zheng76dda932009-09-21 16:00:26 -04007182}
7183
Sven Wegener0ee0fda2008-07-30 16:54:26 -04007184static void init_once(void *foo)
Chris Mason39279cc2007-06-12 06:35:45 -04007185{
7186 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
7187
7188 inode_init_once(&ei->vfs_inode);
7189}
7190
7191void btrfs_destroy_cachep(void)
7192{
7193 if (btrfs_inode_cachep)
7194 kmem_cache_destroy(btrfs_inode_cachep);
7195 if (btrfs_trans_handle_cachep)
7196 kmem_cache_destroy(btrfs_trans_handle_cachep);
7197 if (btrfs_transaction_cachep)
7198 kmem_cache_destroy(btrfs_transaction_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04007199 if (btrfs_path_cachep)
7200 kmem_cache_destroy(btrfs_path_cachep);
Josef Bacikdc89e982011-01-28 17:05:48 -05007201 if (btrfs_free_space_cachep)
7202 kmem_cache_destroy(btrfs_free_space_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04007203}
7204
7205int btrfs_init_cachep(void)
7206{
David Sterba837e1972012-09-07 03:00:48 -06007207 btrfs_inode_cachep = kmem_cache_create("btrfs_inode",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007208 sizeof(struct btrfs_inode), 0,
7209 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04007210 if (!btrfs_inode_cachep)
7211 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007212
David Sterba837e1972012-09-07 03:00:48 -06007213 btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007214 sizeof(struct btrfs_trans_handle), 0,
7215 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04007216 if (!btrfs_trans_handle_cachep)
7217 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007218
David Sterba837e1972012-09-07 03:00:48 -06007219 btrfs_transaction_cachep = kmem_cache_create("btrfs_transaction",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007220 sizeof(struct btrfs_transaction), 0,
7221 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04007222 if (!btrfs_transaction_cachep)
7223 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007224
David Sterba837e1972012-09-07 03:00:48 -06007225 btrfs_path_cachep = kmem_cache_create("btrfs_path",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007226 sizeof(struct btrfs_path), 0,
7227 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04007228 if (!btrfs_path_cachep)
7229 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007230
David Sterba837e1972012-09-07 03:00:48 -06007231 btrfs_free_space_cachep = kmem_cache_create("btrfs_free_space",
Josef Bacikdc89e982011-01-28 17:05:48 -05007232 sizeof(struct btrfs_free_space), 0,
7233 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
7234 if (!btrfs_free_space_cachep)
7235 goto fail;
7236
Chris Mason39279cc2007-06-12 06:35:45 -04007237 return 0;
7238fail:
7239 btrfs_destroy_cachep();
7240 return -ENOMEM;
7241}
7242
7243static int btrfs_getattr(struct vfsmount *mnt,
7244 struct dentry *dentry, struct kstat *stat)
7245{
7246 struct inode *inode = dentry->d_inode;
David Sterbafadc0d82011-11-20 07:33:38 -05007247 u32 blocksize = inode->i_sb->s_blocksize;
7248
Chris Mason39279cc2007-06-12 06:35:45 -04007249 generic_fillattr(inode, stat);
Al Viro0ee5dc62011-07-07 15:44:25 -04007250 stat->dev = BTRFS_I(inode)->root->anon_dev;
Chris Masond6667462008-01-03 14:51:00 -05007251 stat->blksize = PAGE_CACHE_SIZE;
David Sterbafadc0d82011-11-20 07:33:38 -05007252 stat->blocks = (ALIGN(inode_get_bytes(inode), blocksize) +
7253 ALIGN(BTRFS_I(inode)->delalloc_bytes, blocksize)) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -04007254 return 0;
7255}
7256
Liu Bo75e7cb72011-03-22 10:12:20 +00007257/*
7258 * If a file is moved, it will inherit the cow and compression flags of the new
7259 * directory.
7260 */
7261static void fixup_inode_flags(struct inode *dir, struct inode *inode)
7262{
7263 struct btrfs_inode *b_dir = BTRFS_I(dir);
7264 struct btrfs_inode *b_inode = BTRFS_I(inode);
7265
7266 if (b_dir->flags & BTRFS_INODE_NODATACOW)
7267 b_inode->flags |= BTRFS_INODE_NODATACOW;
7268 else
7269 b_inode->flags &= ~BTRFS_INODE_NODATACOW;
7270
Liu Bobc178232012-06-14 02:23:18 -06007271 if (b_dir->flags & BTRFS_INODE_COMPRESS) {
Liu Bo75e7cb72011-03-22 10:12:20 +00007272 b_inode->flags |= BTRFS_INODE_COMPRESS;
Liu Bobc178232012-06-14 02:23:18 -06007273 b_inode->flags &= ~BTRFS_INODE_NOCOMPRESS;
7274 } else {
7275 b_inode->flags &= ~(BTRFS_INODE_COMPRESS |
7276 BTRFS_INODE_NOCOMPRESS);
7277 }
Liu Bo75e7cb72011-03-22 10:12:20 +00007278}
7279
Chris Masond3977122009-01-05 21:25:51 -05007280static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry,
7281 struct inode *new_dir, struct dentry *new_dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04007282{
7283 struct btrfs_trans_handle *trans;
7284 struct btrfs_root *root = BTRFS_I(old_dir)->root;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007285 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04007286 struct inode *new_inode = new_dentry->d_inode;
7287 struct inode *old_inode = old_dentry->d_inode;
7288 struct timespec ctime = CURRENT_TIME;
Chris Mason00e4e6b2008-08-05 11:18:09 -04007289 u64 index = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007290 u64 root_objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04007291 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08007292 u64 old_ino = btrfs_ino(old_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007293
Li Zefan33345d012011-04-20 10:31:50 +08007294 if (btrfs_ino(new_dir) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Yan, Zhengf679a842009-09-24 09:17:31 -04007295 return -EPERM;
7296
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007297 /* we only allow rename subvolume link between subvolumes */
Li Zefan33345d012011-04-20 10:31:50 +08007298 if (old_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
Chris Mason3394e162008-11-17 20:42:26 -05007299 return -EXDEV;
7300
Li Zefan33345d012011-04-20 10:31:50 +08007301 if (old_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID ||
7302 (new_inode && btrfs_ino(new_inode) == BTRFS_FIRST_FREE_OBJECTID))
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007303 return -ENOTEMPTY;
7304
Chris Mason39279cc2007-06-12 06:35:45 -04007305 if (S_ISDIR(old_inode->i_mode) && new_inode &&
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007306 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Chris Mason39279cc2007-06-12 06:35:45 -04007307 return -ENOTEMPTY;
Chris Mason5a3f23d2009-03-31 13:27:11 -04007308 /*
7309 * we're using rename to replace one file with another.
7310 * and the replacement file is large. Start IO on it now so
7311 * we don't add too much work to the end of the transaction
7312 */
Bartlomiej Zolnierkiewicz4baf8c92009-08-07 13:47:08 -04007313 if (new_inode && S_ISREG(old_inode->i_mode) && new_inode->i_size &&
Chris Mason5a3f23d2009-03-31 13:27:11 -04007314 old_inode->i_size > BTRFS_ORDERED_OPERATIONS_FLUSH_LIMIT)
7315 filemap_flush(old_inode->i_mapping);
7316
Yan, Zheng76dda932009-09-21 16:00:26 -04007317 /* close the racy window with snapshot create/destroy ioctl */
Li Zefan33345d012011-04-20 10:31:50 +08007318 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Yan, Zheng76dda932009-09-21 16:00:26 -04007319 down_read(&root->fs_info->subvol_sem);
Yan, Zhenga22285a2010-05-16 10:48:46 -04007320 /*
7321 * We want to reserve the absolute worst case amount of items. So if
7322 * both inodes are subvols and we need to unlink them then that would
7323 * require 4 item modifications, but if they are both normal inodes it
7324 * would require 5 item modifications, so we'll assume their normal
7325 * inodes. So 5 * 2 is 10, plus 1 for the new link, so 11 total items
7326 * should cover the worst case number of items we'll modify.
7327 */
7328 trans = btrfs_start_transaction(root, 20);
Johann Lombardib44c59a2011-03-31 13:23:47 +00007329 if (IS_ERR(trans)) {
7330 ret = PTR_ERR(trans);
7331 goto out_notrans;
7332 }
Chris Mason5f39d392007-10-15 16:14:19 -04007333
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007334 if (dest != root)
7335 btrfs_record_root_in_trans(trans, dest);
7336
Yan, Zhenga5719522009-09-24 09:17:31 -04007337 ret = btrfs_set_inode_index(new_dir, &index);
7338 if (ret)
7339 goto out_fail;
Chris Mason5a3f23d2009-03-31 13:27:11 -04007340
Li Zefan33345d012011-04-20 10:31:50 +08007341 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007342 /* force full log commit if subvolume involved. */
7343 root->fs_info->last_trans_log_full_commit = trans->transid;
7344 } else {
Yan, Zhenga5719522009-09-24 09:17:31 -04007345 ret = btrfs_insert_inode_ref(trans, dest,
7346 new_dentry->d_name.name,
7347 new_dentry->d_name.len,
Li Zefan33345d012011-04-20 10:31:50 +08007348 old_ino,
7349 btrfs_ino(new_dir), index);
Yan, Zhenga5719522009-09-24 09:17:31 -04007350 if (ret)
7351 goto out_fail;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007352 /*
7353 * this is an ugly little race, but the rename is required
7354 * to make sure that if we crash, the inode is either at the
7355 * old name or the new one. pinning the log transaction lets
7356 * us make sure we don't allow a log commit to come in after
7357 * we unlink the name but before we add the new name back in.
7358 */
7359 btrfs_pin_log_trans(root);
7360 }
Chris Mason12fcfd22009-03-24 10:24:20 -04007361 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04007362 * make sure the inode gets flushed if it is replacing
7363 * something.
7364 */
Li Zefan33345d012011-04-20 10:31:50 +08007365 if (new_inode && new_inode->i_size && S_ISREG(old_inode->i_mode))
Chris Mason5a3f23d2009-03-31 13:27:11 -04007366 btrfs_add_ordered_operation(trans, root, old_inode);
Chris Mason5a3f23d2009-03-31 13:27:11 -04007367
Josef Bacik0c4d2d92012-04-05 15:03:02 -04007368 inode_inc_iversion(old_dir);
7369 inode_inc_iversion(new_dir);
7370 inode_inc_iversion(old_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007371 old_dir->i_ctime = old_dir->i_mtime = ctime;
7372 new_dir->i_ctime = new_dir->i_mtime = ctime;
7373 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04007374
Chris Mason12fcfd22009-03-24 10:24:20 -04007375 if (old_dentry->d_parent != new_dentry->d_parent)
7376 btrfs_record_unlink_dir(trans, old_dir, old_inode, 1);
7377
Li Zefan33345d012011-04-20 10:31:50 +08007378 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007379 root_objectid = BTRFS_I(old_inode)->root->root_key.objectid;
7380 ret = btrfs_unlink_subvol(trans, root, old_dir, root_objectid,
7381 old_dentry->d_name.name,
7382 old_dentry->d_name.len);
7383 } else {
Al Viro92986792011-03-04 17:14:37 +00007384 ret = __btrfs_unlink_inode(trans, root, old_dir,
7385 old_dentry->d_inode,
7386 old_dentry->d_name.name,
7387 old_dentry->d_name.len);
7388 if (!ret)
7389 ret = btrfs_update_inode(trans, root, old_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007390 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007391 if (ret) {
7392 btrfs_abort_transaction(trans, root, ret);
7393 goto out_fail;
7394 }
Chris Mason39279cc2007-06-12 06:35:45 -04007395
7396 if (new_inode) {
Josef Bacik0c4d2d92012-04-05 15:03:02 -04007397 inode_inc_iversion(new_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007398 new_inode->i_ctime = CURRENT_TIME;
Li Zefan33345d012011-04-20 10:31:50 +08007399 if (unlikely(btrfs_ino(new_inode) ==
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007400 BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
7401 root_objectid = BTRFS_I(new_inode)->location.objectid;
7402 ret = btrfs_unlink_subvol(trans, dest, new_dir,
7403 root_objectid,
7404 new_dentry->d_name.name,
7405 new_dentry->d_name.len);
7406 BUG_ON(new_inode->i_nlink == 0);
7407 } else {
7408 ret = btrfs_unlink_inode(trans, dest, new_dir,
7409 new_dentry->d_inode,
7410 new_dentry->d_name.name,
7411 new_dentry->d_name.len);
7412 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007413 if (!ret && new_inode->i_nlink == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04007414 ret = btrfs_orphan_add(trans, new_dentry->d_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007415 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04007416 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007417 if (ret) {
7418 btrfs_abort_transaction(trans, root, ret);
7419 goto out_fail;
7420 }
Chris Mason39279cc2007-06-12 06:35:45 -04007421 }
Josef Bacikaec74772008-07-24 12:12:38 -04007422
Liu Bo75e7cb72011-03-22 10:12:20 +00007423 fixup_inode_flags(new_dir, old_inode);
7424
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007425 ret = btrfs_add_link(trans, new_dir, old_inode,
7426 new_dentry->d_name.name,
Yan, Zhenga5719522009-09-24 09:17:31 -04007427 new_dentry->d_name.len, 0, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007428 if (ret) {
7429 btrfs_abort_transaction(trans, root, ret);
7430 goto out_fail;
7431 }
Chris Mason39279cc2007-06-12 06:35:45 -04007432
Li Zefan33345d012011-04-20 10:31:50 +08007433 if (old_ino != BTRFS_FIRST_FREE_OBJECTID) {
Al Viro10d9f302011-07-16 23:09:10 -04007434 struct dentry *parent = new_dentry->d_parent;
Josef Bacik6a912212010-11-20 09:48:00 +00007435 btrfs_log_new_name(trans, old_inode, old_dir, parent);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007436 btrfs_end_log_trans(root);
7437 }
Chris Mason39279cc2007-06-12 06:35:45 -04007438out_fail:
Josef Bacik7ad85bb2012-01-12 19:10:12 -05007439 btrfs_end_transaction(trans, root);
Johann Lombardib44c59a2011-03-31 13:23:47 +00007440out_notrans:
Li Zefan33345d012011-04-20 10:31:50 +08007441 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Yan, Zheng76dda932009-09-21 16:00:26 -04007442 up_read(&root->fs_info->subvol_sem);
Josef Bacik9ed74f22009-09-11 16:12:44 -04007443
Chris Mason39279cc2007-06-12 06:35:45 -04007444 return ret;
7445}
7446
Chris Masond352ac62008-09-29 15:18:18 -04007447/*
7448 * some fairly slow code that needs optimization. This walks the list
7449 * of all the inodes with pending delalloc and forces them to disk.
7450 */
Yan, Zheng24bbcf02009-11-12 09:36:34 +00007451int btrfs_start_delalloc_inodes(struct btrfs_root *root, int delay_iput)
Chris Masonea8c2812008-08-04 23:17:27 -04007452{
7453 struct list_head *head = &root->fs_info->delalloc_inodes;
7454 struct btrfs_inode *binode;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007455 struct inode *inode;
Chris Masonea8c2812008-08-04 23:17:27 -04007456
Yan Zhengc146afa2008-11-12 14:34:12 -05007457 if (root->fs_info->sb->s_flags & MS_RDONLY)
7458 return -EROFS;
7459
Chris Mason75eff682008-12-15 15:54:40 -05007460 spin_lock(&root->fs_info->delalloc_lock);
Chris Masond3977122009-01-05 21:25:51 -05007461 while (!list_empty(head)) {
Chris Masonea8c2812008-08-04 23:17:27 -04007462 binode = list_entry(head->next, struct btrfs_inode,
7463 delalloc_inodes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007464 inode = igrab(&binode->vfs_inode);
7465 if (!inode)
7466 list_del_init(&binode->delalloc_inodes);
Chris Mason75eff682008-12-15 15:54:40 -05007467 spin_unlock(&root->fs_info->delalloc_lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007468 if (inode) {
Chris Mason8c8bee12008-09-29 11:19:10 -04007469 filemap_flush(inode->i_mapping);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00007470 if (delay_iput)
7471 btrfs_add_delayed_iput(inode);
7472 else
7473 iput(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007474 }
7475 cond_resched();
Chris Mason75eff682008-12-15 15:54:40 -05007476 spin_lock(&root->fs_info->delalloc_lock);
Chris Masonea8c2812008-08-04 23:17:27 -04007477 }
Chris Mason75eff682008-12-15 15:54:40 -05007478 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason8c8bee12008-09-29 11:19:10 -04007479
7480 /* the filemap_flush will queue IO into the worker threads, but
7481 * we have to make sure the IO is actually started and that
7482 * ordered extents get created before we return
7483 */
7484 atomic_inc(&root->fs_info->async_submit_draining);
Chris Masond3977122009-01-05 21:25:51 -05007485 while (atomic_read(&root->fs_info->nr_async_submits) ||
Chris Mason771ed682008-11-06 22:02:51 -05007486 atomic_read(&root->fs_info->async_delalloc_pages)) {
Chris Mason8c8bee12008-09-29 11:19:10 -04007487 wait_event(root->fs_info->async_submit_wait,
Chris Mason771ed682008-11-06 22:02:51 -05007488 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
7489 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
Chris Mason8c8bee12008-09-29 11:19:10 -04007490 }
7491 atomic_dec(&root->fs_info->async_submit_draining);
Chris Masonea8c2812008-08-04 23:17:27 -04007492 return 0;
7493}
7494
Chris Mason39279cc2007-06-12 06:35:45 -04007495static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
7496 const char *symname)
7497{
7498 struct btrfs_trans_handle *trans;
7499 struct btrfs_root *root = BTRFS_I(dir)->root;
7500 struct btrfs_path *path;
7501 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05007502 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04007503 int err;
7504 int drop_inode = 0;
7505 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04007506 u64 index = 0 ;
Chris Mason39279cc2007-06-12 06:35:45 -04007507 int name_len;
7508 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04007509 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04007510 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04007511 struct extent_buffer *leaf;
Chris Mason1832a6d2007-12-21 16:27:21 -05007512 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04007513
7514 name_len = strlen(symname) + 1;
7515 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
7516 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05007517
Josef Bacik9ed74f22009-09-11 16:12:44 -04007518 /*
7519 * 2 items for inode item and ref
7520 * 2 items for dir items
7521 * 1 item for xattr if selinux is on
7522 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04007523 trans = btrfs_start_transaction(root, 5);
7524 if (IS_ERR(trans))
7525 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05007526
Li Zefan581bb052011-04-20 10:06:11 +08007527 err = btrfs_find_free_ino(root, &objectid);
7528 if (err)
7529 goto out_unlock;
7530
Josef Bacikaec74772008-07-24 12:12:38 -04007531 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08007532 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04007533 S_IFLNK|S_IRWXUGO, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04007534 if (IS_ERR(inode)) {
7535 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007536 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04007537 }
Chris Mason39279cc2007-06-12 06:35:45 -04007538
Eric Paris2a7dba32011-02-01 11:05:39 -05007539 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04007540 if (err) {
7541 drop_inode = 1;
7542 goto out_unlock;
7543 }
7544
Casey Schauflerad19db72011-12-15 10:09:07 -05007545 /*
7546 * If the active LSM wants to access the inode during
7547 * d_instantiate it needs these. Smack checks to see
7548 * if the filesystem supports xattrs by looking at the
7549 * ops vector.
7550 */
7551 inode->i_fop = &btrfs_file_operations;
7552 inode->i_op = &btrfs_file_inode_operations;
7553
Josef Bacika1b075d2010-11-19 20:36:11 +00007554 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04007555 if (err)
7556 drop_inode = 1;
7557 else {
7558 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04007559 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05007560 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04007561 }
Chris Mason39279cc2007-06-12 06:35:45 -04007562 if (drop_inode)
7563 goto out_unlock;
7564
7565 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07007566 if (!path) {
7567 err = -ENOMEM;
7568 drop_inode = 1;
7569 goto out_unlock;
7570 }
Li Zefan33345d012011-04-20 10:31:50 +08007571 key.objectid = btrfs_ino(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007572 key.offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04007573 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
7574 datasize = btrfs_file_extent_calc_inline_size(name_len);
7575 err = btrfs_insert_empty_item(trans, root, path, &key,
7576 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04007577 if (err) {
7578 drop_inode = 1;
Julia Lawallb0839162011-05-14 07:10:51 +00007579 btrfs_free_path(path);
Chris Mason54aa1f42007-06-22 14:16:25 -04007580 goto out_unlock;
7581 }
Chris Mason5f39d392007-10-15 16:14:19 -04007582 leaf = path->nodes[0];
7583 ei = btrfs_item_ptr(leaf, path->slots[0],
7584 struct btrfs_file_extent_item);
7585 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
7586 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04007587 BTRFS_FILE_EXTENT_INLINE);
Chris Masonc8b97812008-10-29 14:49:59 -04007588 btrfs_set_file_extent_encryption(leaf, ei, 0);
7589 btrfs_set_file_extent_compression(leaf, ei, 0);
7590 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
7591 btrfs_set_file_extent_ram_bytes(leaf, ei, name_len);
7592
Chris Mason39279cc2007-06-12 06:35:45 -04007593 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04007594 write_extent_buffer(leaf, symname, ptr, name_len);
7595 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04007596 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04007597
Chris Mason39279cc2007-06-12 06:35:45 -04007598 inode->i_op = &btrfs_symlink_inode_operations;
7599 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04007600 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Yan Zhengd899e052008-10-30 14:25:28 -04007601 inode_set_bytes(inode, name_len);
Chris Masondbe674a2008-07-17 12:54:05 -04007602 btrfs_i_size_write(inode, name_len - 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04007603 err = btrfs_update_inode(trans, root, inode);
7604 if (err)
7605 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04007606
7607out_unlock:
Al Viro08c422c2011-12-23 07:58:13 -05007608 if (!err)
7609 d_instantiate(dentry, inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04007610 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05007611 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04007612 if (drop_inode) {
7613 inode_dec_link_count(inode);
7614 iput(inode);
7615 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04007616 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04007617 return err;
7618}
Chris Mason16432982008-04-10 10:23:21 -04007619
Josef Bacik0af3d002010-06-21 14:48:16 -04007620static int __btrfs_prealloc_file_range(struct inode *inode, int mode,
7621 u64 start, u64 num_bytes, u64 min_size,
7622 loff_t actual_len, u64 *alloc_hint,
7623 struct btrfs_trans_handle *trans)
Yan Zhengd899e052008-10-30 14:25:28 -04007624{
Josef Bacik5dc562c2012-08-17 13:14:17 -04007625 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
7626 struct extent_map *em;
Yan Zhengd899e052008-10-30 14:25:28 -04007627 struct btrfs_root *root = BTRFS_I(inode)->root;
7628 struct btrfs_key ins;
Yan Zhengd899e052008-10-30 14:25:28 -04007629 u64 cur_offset = start;
Josef Bacik55a61d12010-11-22 18:50:32 +00007630 u64 i_size;
Yan Zhengd899e052008-10-30 14:25:28 -04007631 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04007632 bool own_trans = true;
Yan Zhengd899e052008-10-30 14:25:28 -04007633
Josef Bacik0af3d002010-06-21 14:48:16 -04007634 if (trans)
7635 own_trans = false;
Yan Zhengd899e052008-10-30 14:25:28 -04007636 while (num_bytes > 0) {
Josef Bacik0af3d002010-06-21 14:48:16 -04007637 if (own_trans) {
7638 trans = btrfs_start_transaction(root, 3);
7639 if (IS_ERR(trans)) {
7640 ret = PTR_ERR(trans);
7641 break;
7642 }
Yan Zhengd899e052008-10-30 14:25:28 -04007643 }
Yan, Zheng5a303d52009-11-12 09:34:52 +00007644
Yan, Zhengefa56462010-05-16 10:49:59 -04007645 ret = btrfs_reserve_extent(trans, root, num_bytes, min_size,
Josef Bacik81c9ad22012-01-18 10:56:06 -05007646 0, *alloc_hint, &ins, 1);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007647 if (ret) {
Josef Bacik0af3d002010-06-21 14:48:16 -04007648 if (own_trans)
7649 btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04007650 break;
Yan, Zheng5a303d52009-11-12 09:34:52 +00007651 }
7652
Yan Zhengd899e052008-10-30 14:25:28 -04007653 ret = insert_reserved_file_extent(trans, inode,
7654 cur_offset, ins.objectid,
7655 ins.offset, ins.offset,
Yan, Zheng920bbbf2009-11-12 09:34:08 +00007656 ins.offset, 0, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04007657 BTRFS_FILE_EXTENT_PREALLOC);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007658 if (ret) {
7659 btrfs_abort_transaction(trans, root, ret);
7660 if (own_trans)
7661 btrfs_end_transaction(trans, root);
7662 break;
7663 }
Chris Masona1ed8352009-09-11 12:27:37 -04007664 btrfs_drop_extent_cache(inode, cur_offset,
7665 cur_offset + ins.offset -1, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007666
Josef Bacik5dc562c2012-08-17 13:14:17 -04007667 em = alloc_extent_map();
7668 if (!em) {
7669 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
7670 &BTRFS_I(inode)->runtime_flags);
7671 goto next;
7672 }
7673
7674 em->start = cur_offset;
7675 em->orig_start = cur_offset;
7676 em->len = ins.offset;
7677 em->block_start = ins.objectid;
7678 em->block_len = ins.offset;
7679 em->bdev = root->fs_info->fs_devices->latest_bdev;
7680 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
7681 em->generation = trans->transid;
7682
7683 while (1) {
7684 write_lock(&em_tree->lock);
7685 ret = add_extent_mapping(em_tree, em);
7686 if (!ret)
7687 list_move(&em->list,
7688 &em_tree->modified_extents);
7689 write_unlock(&em_tree->lock);
7690 if (ret != -EEXIST)
7691 break;
7692 btrfs_drop_extent_cache(inode, cur_offset,
7693 cur_offset + ins.offset - 1,
7694 0);
7695 }
7696 free_extent_map(em);
7697next:
Yan Zhengd899e052008-10-30 14:25:28 -04007698 num_bytes -= ins.offset;
7699 cur_offset += ins.offset;
Yan, Zhengefa56462010-05-16 10:49:59 -04007700 *alloc_hint = ins.objectid + ins.offset;
Yan, Zheng5a303d52009-11-12 09:34:52 +00007701
Josef Bacik0c4d2d92012-04-05 15:03:02 -04007702 inode_inc_iversion(inode);
Yan Zhengd899e052008-10-30 14:25:28 -04007703 inode->i_ctime = CURRENT_TIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +02007704 BTRFS_I(inode)->flags |= BTRFS_INODE_PREALLOC;
Yan Zhengd899e052008-10-30 14:25:28 -04007705 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
Yan, Zhengefa56462010-05-16 10:49:59 -04007706 (actual_len > inode->i_size) &&
7707 (cur_offset > inode->i_size)) {
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00007708 if (cur_offset > actual_len)
Josef Bacik55a61d12010-11-22 18:50:32 +00007709 i_size = actual_len;
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00007710 else
Josef Bacik55a61d12010-11-22 18:50:32 +00007711 i_size = cur_offset;
7712 i_size_write(inode, i_size);
7713 btrfs_ordered_update_i_size(inode, i_size, NULL);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007714 }
7715
Yan Zhengd899e052008-10-30 14:25:28 -04007716 ret = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007717
7718 if (ret) {
7719 btrfs_abort_transaction(trans, root, ret);
7720 if (own_trans)
7721 btrfs_end_transaction(trans, root);
7722 break;
7723 }
Yan Zhengd899e052008-10-30 14:25:28 -04007724
Josef Bacik0af3d002010-06-21 14:48:16 -04007725 if (own_trans)
7726 btrfs_end_transaction(trans, root);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007727 }
Yan Zhengd899e052008-10-30 14:25:28 -04007728 return ret;
7729}
7730
Josef Bacik0af3d002010-06-21 14:48:16 -04007731int btrfs_prealloc_file_range(struct inode *inode, int mode,
7732 u64 start, u64 num_bytes, u64 min_size,
7733 loff_t actual_len, u64 *alloc_hint)
7734{
7735 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
7736 min_size, actual_len, alloc_hint,
7737 NULL);
7738}
7739
7740int btrfs_prealloc_file_range_trans(struct inode *inode,
7741 struct btrfs_trans_handle *trans, int mode,
7742 u64 start, u64 num_bytes, u64 min_size,
7743 loff_t actual_len, u64 *alloc_hint)
7744{
7745 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
7746 min_size, actual_len, alloc_hint, trans);
7747}
7748
Chris Masone6dcd2d2008-07-17 12:53:50 -04007749static int btrfs_set_page_dirty(struct page *page)
7750{
Chris Masone6dcd2d2008-07-17 12:53:50 -04007751 return __set_page_dirty_nobuffers(page);
7752}
7753
Al Viro10556cb2011-06-20 19:28:19 -04007754static int btrfs_permission(struct inode *inode, int mask)
Yanfdebe2b2008-01-14 13:26:08 -05007755{
Li Zefanb83cc962010-12-20 16:04:08 +08007756 struct btrfs_root *root = BTRFS_I(inode)->root;
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +00007757 umode_t mode = inode->i_mode;
Li Zefanb83cc962010-12-20 16:04:08 +08007758
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +00007759 if (mask & MAY_WRITE &&
7760 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode))) {
7761 if (btrfs_root_readonly(root))
7762 return -EROFS;
7763 if (BTRFS_I(inode)->flags & BTRFS_INODE_READONLY)
7764 return -EACCES;
7765 }
Al Viro2830ba72011-06-20 19:16:29 -04007766 return generic_permission(inode, mask);
Yanfdebe2b2008-01-14 13:26:08 -05007767}
Chris Mason39279cc2007-06-12 06:35:45 -04007768
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007769static const struct inode_operations btrfs_dir_inode_operations = {
Chris Mason3394e162008-11-17 20:42:26 -05007770 .getattr = btrfs_getattr,
Chris Mason39279cc2007-06-12 06:35:45 -04007771 .lookup = btrfs_lookup,
7772 .create = btrfs_create,
7773 .unlink = btrfs_unlink,
7774 .link = btrfs_link,
7775 .mkdir = btrfs_mkdir,
7776 .rmdir = btrfs_rmdir,
7777 .rename = btrfs_rename,
7778 .symlink = btrfs_symlink,
7779 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04007780 .mknod = btrfs_mknod,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007781 .setxattr = btrfs_setxattr,
7782 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05007783 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007784 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05007785 .permission = btrfs_permission,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007786 .get_acl = btrfs_get_acl,
Chris Mason39279cc2007-06-12 06:35:45 -04007787};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007788static const struct inode_operations btrfs_dir_ro_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007789 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -05007790 .permission = btrfs_permission,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007791 .get_acl = btrfs_get_acl,
Chris Mason39279cc2007-06-12 06:35:45 -04007792};
Yan, Zheng76dda932009-09-21 16:00:26 -04007793
Alexey Dobriyan828c0952009-10-01 15:43:56 -07007794static const struct file_operations btrfs_dir_file_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007795 .llseek = generic_file_llseek,
7796 .read = generic_read_dir,
David Woodhousecbdf5a22008-08-06 19:42:33 +01007797 .readdir = btrfs_real_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04007798 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04007799#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04007800 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04007801#endif
Sage Weil6bf13c02008-06-10 10:07:39 -04007802 .release = btrfs_release_file,
Chris Masone02119d2008-09-05 16:13:11 -04007803 .fsync = btrfs_sync_file,
Chris Mason39279cc2007-06-12 06:35:45 -04007804};
7805
Chris Masond1310b22008-01-24 16:13:08 -05007806static struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -04007807 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -05007808 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04007809 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04007810 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Masone6dcd2d2008-07-17 12:53:50 -04007811 .writepage_end_io_hook = btrfs_writepage_end_io_hook,
Chris Mason247e7432008-07-17 12:53:51 -04007812 .writepage_start_hook = btrfs_writepage_start_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -05007813 .set_bit_hook = btrfs_set_bit_hook,
7814 .clear_bit_hook = btrfs_clear_bit_hook,
Josef Bacik9ed74f22009-09-11 16:12:44 -04007815 .merge_extent_hook = btrfs_merge_extent_hook,
7816 .split_extent_hook = btrfs_split_extent_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04007817};
7818
Chris Mason35054392009-01-21 13:11:13 -05007819/*
7820 * btrfs doesn't support the bmap operation because swapfiles
7821 * use bmap to make a mapping of extents in the file. They assume
7822 * these extents won't change over the life of the file and they
7823 * use the bmap result to do IO directly to the drive.
7824 *
7825 * the btrfs bmap call would return logical addresses that aren't
7826 * suitable for IO and they also will change frequently as COW
7827 * operations happen. So, swapfile + btrfs == corruption.
7828 *
7829 * For now we're avoiding this by dropping bmap.
7830 */
Alexey Dobriyan7f094102009-09-21 17:01:10 -07007831static const struct address_space_operations btrfs_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04007832 .readpage = btrfs_readpage,
7833 .writepage = btrfs_writepage,
Chris Masonb293f02e2007-11-01 19:45:34 -04007834 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -05007835 .readpages = btrfs_readpages,
Chris Mason16432982008-04-10 10:23:21 -04007836 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -04007837 .invalidatepage = btrfs_invalidatepage,
7838 .releasepage = btrfs_releasepage,
Chris Masone6dcd2d2008-07-17 12:53:50 -04007839 .set_page_dirty = btrfs_set_page_dirty,
Andi Kleen465fdd92009-09-16 11:50:18 +02007840 .error_remove_page = generic_error_remove_page,
Chris Mason39279cc2007-06-12 06:35:45 -04007841};
7842
Alexey Dobriyan7f094102009-09-21 17:01:10 -07007843static const struct address_space_operations btrfs_symlink_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04007844 .readpage = btrfs_readpage,
7845 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -04007846 .invalidatepage = btrfs_invalidatepage,
7847 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -04007848};
7849
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007850static const struct inode_operations btrfs_file_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007851 .getattr = btrfs_getattr,
7852 .setattr = btrfs_setattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007853 .setxattr = btrfs_setxattr,
7854 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05007855 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007856 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05007857 .permission = btrfs_permission,
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05007858 .fiemap = btrfs_fiemap,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007859 .get_acl = btrfs_get_acl,
Josef Bacike41f9412012-03-26 09:46:47 -04007860 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -04007861};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007862static const struct inode_operations btrfs_special_inode_operations = {
Josef Bacik618e21d2007-07-11 10:18:17 -04007863 .getattr = btrfs_getattr,
7864 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05007865 .permission = btrfs_permission,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007866 .setxattr = btrfs_setxattr,
7867 .getxattr = btrfs_getxattr,
Josef Bacik33268ea2008-07-24 12:16:36 -04007868 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007869 .removexattr = btrfs_removexattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007870 .get_acl = btrfs_get_acl,
Josef Bacike41f9412012-03-26 09:46:47 -04007871 .update_time = btrfs_update_time,
Josef Bacik618e21d2007-07-11 10:18:17 -04007872};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007873static const struct inode_operations btrfs_symlink_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007874 .readlink = generic_readlink,
7875 .follow_link = page_follow_link_light,
7876 .put_link = page_put_link,
Li Zefanf2095612010-11-19 02:05:24 +00007877 .getattr = btrfs_getattr,
Josef Bacik22c44fe2011-11-30 10:45:38 -05007878 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05007879 .permission = btrfs_permission,
Jim Owens0279b4c2009-02-04 09:29:13 -05007880 .setxattr = btrfs_setxattr,
7881 .getxattr = btrfs_getxattr,
7882 .listxattr = btrfs_listxattr,
7883 .removexattr = btrfs_removexattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007884 .get_acl = btrfs_get_acl,
Josef Bacike41f9412012-03-26 09:46:47 -04007885 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -04007886};
Yan, Zheng76dda932009-09-21 16:00:26 -04007887
Alexey Dobriyan82d339d2009-10-09 09:54:36 -04007888const struct dentry_operations btrfs_dentry_operations = {
Yan, Zheng76dda932009-09-21 16:00:26 -04007889 .d_delete = btrfs_dentry_delete,
Josef Bacikb4aff1f2011-06-28 16:18:59 -04007890 .d_release = btrfs_dentry_release,
Yan, Zheng76dda932009-09-21 16:00:26 -04007891};