blob: d378f8b70ef79a4c83886a29d86781d43c2339f1 [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>
Chris Mason4b4e25f2008-11-20 10:22:27 -050041#include "compat.h"
Chris Mason39279cc2007-06-12 06:35:45 -040042#include "ctree.h"
43#include "disk-io.h"
44#include "transaction.h"
45#include "btrfs_inode.h"
46#include "ioctl.h"
47#include "print-tree.h"
Chris Mason0b86a832008-03-24 15:01:56 -040048#include "volumes.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"
Chris Masonc8b97812008-10-29 14:49:59 -040052#include "compression.h"
Chris Masonb4ce94d2009-02-04 09:25:08 -050053#include "locking.h"
Josef Bacikdc89e982011-01-28 17:05:48 -050054#include "free-space-cache.h"
Li Zefan581bb052011-04-20 10:06:11 +080055#include "inode-map.h"
Chris Mason39279cc2007-06-12 06:35:45 -040056
57struct btrfs_iget_args {
58 u64 ino;
59 struct btrfs_root *root;
60};
61
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070062static const struct inode_operations btrfs_dir_inode_operations;
63static const struct inode_operations btrfs_symlink_inode_operations;
64static const struct inode_operations btrfs_dir_ro_inode_operations;
65static const struct inode_operations btrfs_special_inode_operations;
66static const struct inode_operations btrfs_file_inode_operations;
Alexey Dobriyan7f094102009-09-21 17:01:10 -070067static const struct address_space_operations btrfs_aops;
68static const struct address_space_operations btrfs_symlink_aops;
Alexey Dobriyan828c0952009-10-01 15:43:56 -070069static const struct file_operations btrfs_dir_file_operations;
Chris Masond1310b22008-01-24 16:13:08 -050070static struct extent_io_ops btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -040071
72static struct kmem_cache *btrfs_inode_cachep;
73struct kmem_cache *btrfs_trans_handle_cachep;
74struct kmem_cache *btrfs_transaction_cachep;
Chris Mason39279cc2007-06-12 06:35:45 -040075struct kmem_cache *btrfs_path_cachep;
Josef Bacikdc89e982011-01-28 17:05:48 -050076struct kmem_cache *btrfs_free_space_cachep;
Chris Mason39279cc2007-06-12 06:35:45 -040077
78#define S_SHIFT 12
79static unsigned char btrfs_type_by_mode[S_IFMT >> S_SHIFT] = {
80 [S_IFREG >> S_SHIFT] = BTRFS_FT_REG_FILE,
81 [S_IFDIR >> S_SHIFT] = BTRFS_FT_DIR,
82 [S_IFCHR >> S_SHIFT] = BTRFS_FT_CHRDEV,
83 [S_IFBLK >> S_SHIFT] = BTRFS_FT_BLKDEV,
84 [S_IFIFO >> S_SHIFT] = BTRFS_FT_FIFO,
85 [S_IFSOCK >> S_SHIFT] = BTRFS_FT_SOCK,
86 [S_IFLNK >> S_SHIFT] = BTRFS_FT_SYMLINK,
87};
88
Josef Bacika41ad392011-01-31 15:30:16 -050089static int btrfs_setsize(struct inode *inode, loff_t newsize);
90static int btrfs_truncate(struct inode *inode);
Chris Masonc8b97812008-10-29 14:49:59 -040091static int btrfs_finish_ordered_io(struct inode *inode, u64 start, u64 end);
Chris Mason771ed682008-11-06 22:02:51 -050092static noinline int cow_file_range(struct inode *inode,
93 struct page *locked_page,
94 u64 start, u64 end, int *page_started,
95 unsigned long *nr_written, int unlock);
Josef Bacik7b128762008-07-24 12:17:14 -040096
Yan, Zhengf34f57a2009-11-12 09:35:27 +000097static int btrfs_init_inode_security(struct btrfs_trans_handle *trans,
Eric Paris2a7dba32011-02-01 11:05:39 -050098 struct inode *inode, struct inode *dir,
99 const struct qstr *qstr)
Jim Owens0279b4c2009-02-04 09:29:13 -0500100{
101 int err;
102
Yan, Zhengf34f57a2009-11-12 09:35:27 +0000103 err = btrfs_init_acl(trans, inode, dir);
Jim Owens0279b4c2009-02-04 09:29:13 -0500104 if (!err)
Eric Paris2a7dba32011-02-01 11:05:39 -0500105 err = btrfs_xattr_security_init(trans, inode, dir, qstr);
Jim Owens0279b4c2009-02-04 09:29:13 -0500106 return err;
107}
108
Chris Masond352ac62008-09-29 15:18:18 -0400109/*
Chris Masonc8b97812008-10-29 14:49:59 -0400110 * this does all the hard work for inserting an inline extent into
111 * the btree. The caller should have done a btrfs_drop_extents so that
112 * no overlapping inline items exist in the btree
113 */
Chris Masond3977122009-01-05 21:25:51 -0500114static noinline int insert_inline_extent(struct btrfs_trans_handle *trans,
Chris Masonc8b97812008-10-29 14:49:59 -0400115 struct btrfs_root *root, struct inode *inode,
116 u64 start, size_t size, size_t compressed_size,
Li Zefanfe3f5662011-03-28 08:30:38 +0000117 int compress_type,
Chris Masonc8b97812008-10-29 14:49:59 -0400118 struct page **compressed_pages)
119{
120 struct btrfs_key key;
121 struct btrfs_path *path;
122 struct extent_buffer *leaf;
123 struct page *page = NULL;
124 char *kaddr;
125 unsigned long ptr;
126 struct btrfs_file_extent_item *ei;
127 int err = 0;
128 int ret;
129 size_t cur_size = size;
130 size_t datasize;
131 unsigned long offset;
Chris Masonc8b97812008-10-29 14:49:59 -0400132
Li Zefanfe3f5662011-03-28 08:30:38 +0000133 if (compressed_size && compressed_pages)
Chris Masonc8b97812008-10-29 14:49:59 -0400134 cur_size = compressed_size;
Chris Masonc8b97812008-10-29 14:49:59 -0400135
Chris Masond3977122009-01-05 21:25:51 -0500136 path = btrfs_alloc_path();
137 if (!path)
Chris Masonc8b97812008-10-29 14:49:59 -0400138 return -ENOMEM;
139
Chris Masonb9473432009-03-13 11:00:37 -0400140 path->leave_spinning = 1;
Chris Masonc8b97812008-10-29 14:49:59 -0400141 btrfs_set_trans_block_group(trans, inode);
142
Li Zefan33345d012011-04-20 10:31:50 +0800143 key.objectid = btrfs_ino(inode);
Chris Masonc8b97812008-10-29 14:49:59 -0400144 key.offset = start;
145 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
Chris Masonc8b97812008-10-29 14:49:59 -0400146 datasize = btrfs_file_extent_calc_inline_size(cur_size);
147
148 inode_add_bytes(inode, size);
149 ret = btrfs_insert_empty_item(trans, root, path, &key,
150 datasize);
151 BUG_ON(ret);
152 if (ret) {
153 err = ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400154 goto fail;
155 }
156 leaf = path->nodes[0];
157 ei = btrfs_item_ptr(leaf, path->slots[0],
158 struct btrfs_file_extent_item);
159 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
160 btrfs_set_file_extent_type(leaf, ei, BTRFS_FILE_EXTENT_INLINE);
161 btrfs_set_file_extent_encryption(leaf, ei, 0);
162 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
163 btrfs_set_file_extent_ram_bytes(leaf, ei, size);
164 ptr = btrfs_file_extent_inline_start(ei);
165
Li Zefan261507a02010-12-17 14:21:50 +0800166 if (compress_type != BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -0400167 struct page *cpage;
168 int i = 0;
Chris Masond3977122009-01-05 21:25:51 -0500169 while (compressed_size > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -0400170 cpage = compressed_pages[i];
Chris Mason5b050f02008-11-11 09:34:41 -0500171 cur_size = min_t(unsigned long, compressed_size,
Chris Masonc8b97812008-10-29 14:49:59 -0400172 PAGE_CACHE_SIZE);
173
Chris Masonb9473432009-03-13 11:00:37 -0400174 kaddr = kmap_atomic(cpage, KM_USER0);
Chris Masonc8b97812008-10-29 14:49:59 -0400175 write_extent_buffer(leaf, kaddr, ptr, cur_size);
Chris Masonb9473432009-03-13 11:00:37 -0400176 kunmap_atomic(kaddr, KM_USER0);
Chris Masonc8b97812008-10-29 14:49:59 -0400177
178 i++;
179 ptr += cur_size;
180 compressed_size -= cur_size;
181 }
182 btrfs_set_file_extent_compression(leaf, ei,
Li Zefan261507a02010-12-17 14:21:50 +0800183 compress_type);
Chris Masonc8b97812008-10-29 14:49:59 -0400184 } else {
185 page = find_get_page(inode->i_mapping,
186 start >> PAGE_CACHE_SHIFT);
187 btrfs_set_file_extent_compression(leaf, ei, 0);
188 kaddr = kmap_atomic(page, KM_USER0);
189 offset = start & (PAGE_CACHE_SIZE - 1);
190 write_extent_buffer(leaf, kaddr + offset, ptr, size);
191 kunmap_atomic(kaddr, KM_USER0);
192 page_cache_release(page);
193 }
194 btrfs_mark_buffer_dirty(leaf);
195 btrfs_free_path(path);
196
Yan, Zhengc2167752009-11-12 09:34:21 +0000197 /*
198 * we're an inline extent, so nobody can
199 * extend the file past i_size without locking
200 * a page we already have locked.
201 *
202 * We must do any isize and inode updates
203 * before we unlock the pages. Otherwise we
204 * could end up racing with unlink.
205 */
Chris Masonc8b97812008-10-29 14:49:59 -0400206 BTRFS_I(inode)->disk_i_size = inode->i_size;
207 btrfs_update_inode(trans, root, inode);
Yan, Zhengc2167752009-11-12 09:34:21 +0000208
Chris Masonc8b97812008-10-29 14:49:59 -0400209 return 0;
210fail:
211 btrfs_free_path(path);
212 return err;
213}
214
215
216/*
217 * conditionally insert an inline extent into the file. This
218 * does the checks required to make sure the data is small enough
219 * to fit as an inline extent.
220 */
Chris Mason7f366cf2009-03-12 20:12:45 -0400221static noinline int cow_file_range_inline(struct btrfs_trans_handle *trans,
Chris Masonc8b97812008-10-29 14:49:59 -0400222 struct btrfs_root *root,
223 struct inode *inode, u64 start, u64 end,
Li Zefanfe3f5662011-03-28 08:30:38 +0000224 size_t compressed_size, int compress_type,
Chris Masonc8b97812008-10-29 14:49:59 -0400225 struct page **compressed_pages)
226{
227 u64 isize = i_size_read(inode);
228 u64 actual_end = min(end + 1, isize);
229 u64 inline_len = actual_end - start;
230 u64 aligned_end = (end + root->sectorsize - 1) &
231 ~((u64)root->sectorsize - 1);
232 u64 hint_byte;
233 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
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000249 ret = btrfs_drop_extents(trans, inode, start, aligned_end,
Chris Masona1ed8352009-09-11 12:27:37 -0400250 &hint_byte, 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400251 BUG_ON(ret);
252
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);
Chris Masonc8b97812008-10-29 14:49:59 -0400258 BUG_ON(ret);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400259 btrfs_delalloc_release_metadata(inode, end + 1 - start);
Chris Masona1ed8352009-09-11 12:27:37 -0400260 btrfs_drop_extent_cache(inode, start, aligned_end - 1, 0);
Chris Masonc8b97812008-10-29 14:49:59 -0400261 return 0;
262}
263
Chris Mason771ed682008-11-06 22:02:51 -0500264struct async_extent {
265 u64 start;
266 u64 ram_size;
267 u64 compressed_size;
268 struct page **pages;
269 unsigned long nr_pages;
Li Zefan261507a02010-12-17 14:21:50 +0800270 int compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500271 struct list_head list;
272};
273
274struct async_cow {
275 struct inode *inode;
276 struct btrfs_root *root;
277 struct page *locked_page;
278 u64 start;
279 u64 end;
280 struct list_head extents;
281 struct btrfs_work work;
282};
283
284static noinline int add_async_extent(struct async_cow *cow,
285 u64 start, u64 ram_size,
286 u64 compressed_size,
287 struct page **pages,
Li Zefan261507a02010-12-17 14:21:50 +0800288 unsigned long nr_pages,
289 int compress_type)
Chris Mason771ed682008-11-06 22:02:51 -0500290{
291 struct async_extent *async_extent;
292
293 async_extent = kmalloc(sizeof(*async_extent), GFP_NOFS);
Yoshinori Sanodac97e52011-02-15 12:01:42 +0000294 BUG_ON(!async_extent);
Chris Mason771ed682008-11-06 22:02:51 -0500295 async_extent->start = start;
296 async_extent->ram_size = ram_size;
297 async_extent->compressed_size = compressed_size;
298 async_extent->pages = pages;
299 async_extent->nr_pages = nr_pages;
Li Zefan261507a02010-12-17 14:21:50 +0800300 async_extent->compress_type = compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500301 list_add_tail(&async_extent->list, &cow->extents);
302 return 0;
303}
304
Chris Masonc8b97812008-10-29 14:49:59 -0400305/*
Chris Mason771ed682008-11-06 22:02:51 -0500306 * we create compressed extents in two phases. The first
307 * phase compresses a range of pages that have already been
308 * locked (both pages and state bits are locked).
Chris Masonc8b97812008-10-29 14:49:59 -0400309 *
Chris Mason771ed682008-11-06 22:02:51 -0500310 * This is done inside an ordered work queue, and the compression
311 * is spread across many cpus. The actual IO submission is step
312 * two, and the ordered work queue takes care of making sure that
313 * happens in the same order things were put onto the queue by
314 * writepages and friends.
Chris Masonc8b97812008-10-29 14:49:59 -0400315 *
Chris Mason771ed682008-11-06 22:02:51 -0500316 * If this code finds it can't get good compression, it puts an
317 * entry onto the work queue to write the uncompressed bytes. This
318 * makes sure that both compressed inodes and uncompressed inodes
319 * are written in the same order that pdflush sent them down.
Chris Masond352ac62008-09-29 15:18:18 -0400320 */
Chris Mason771ed682008-11-06 22:02:51 -0500321static noinline int compress_file_range(struct inode *inode,
322 struct page *locked_page,
323 u64 start, u64 end,
324 struct async_cow *async_cow,
325 int *num_added)
Chris Masonb888db22007-08-27 16:49:44 -0400326{
327 struct btrfs_root *root = BTRFS_I(inode)->root;
328 struct btrfs_trans_handle *trans;
Chris Masondb945352007-10-15 16:15:53 -0400329 u64 num_bytes;
Chris Masondb945352007-10-15 16:15:53 -0400330 u64 blocksize = root->sectorsize;
Chris Masonc8b97812008-10-29 14:49:59 -0400331 u64 actual_end;
Chris Mason42dc7ba2008-12-15 11:44:56 -0500332 u64 isize = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400333 int ret = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400334 struct page **pages = NULL;
335 unsigned long nr_pages;
336 unsigned long nr_pages_ret = 0;
337 unsigned long total_compressed = 0;
338 unsigned long total_in = 0;
339 unsigned long max_compressed = 128 * 1024;
Chris Mason771ed682008-11-06 22:02:51 -0500340 unsigned long max_uncompressed = 128 * 1024;
Chris Masonc8b97812008-10-29 14:49:59 -0400341 int i;
342 int will_compress;
Li Zefan261507a02010-12-17 14:21:50 +0800343 int compress_type = root->fs_info->compress_type;
Chris Masonb888db22007-08-27 16:49:44 -0400344
Chris Mason42dc7ba2008-12-15 11:44:56 -0500345 actual_end = min_t(u64, isize, end + 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400346again:
347 will_compress = 0;
348 nr_pages = (end >> PAGE_CACHE_SHIFT) - (start >> PAGE_CACHE_SHIFT) + 1;
349 nr_pages = min(nr_pages, (128 * 1024UL) / PAGE_CACHE_SIZE);
350
Chris Masonf03d9302009-02-04 09:31:06 -0500351 /*
352 * we don't want to send crud past the end of i_size through
353 * compression, that's just a waste of CPU time. So, if the
354 * end of the file is before the start of our current
355 * requested range of bytes, we bail out to the uncompressed
356 * cleanup code that can deal with all of this.
357 *
358 * It isn't really the fastest way to fix things, but this is a
359 * very uncommon corner.
360 */
361 if (actual_end <= start)
362 goto cleanup_and_bail_uncompressed;
363
Chris Masonc8b97812008-10-29 14:49:59 -0400364 total_compressed = actual_end - start;
365
366 /* we want to make sure that amount of ram required to uncompress
367 * an extent is reasonable, so we limit the total size in ram
Chris Mason771ed682008-11-06 22:02:51 -0500368 * of a compressed extent to 128k. This is a crucial number
369 * because it also controls how easily we can spread reads across
370 * cpus for decompression.
371 *
372 * We also want to make sure the amount of IO required to do
373 * a random read is reasonably small, so we limit the size of
374 * a compressed extent to 128k.
Chris Masonc8b97812008-10-29 14:49:59 -0400375 */
376 total_compressed = min(total_compressed, max_uncompressed);
Chris Masondb945352007-10-15 16:15:53 -0400377 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
Chris Masonbe20aa92007-12-17 20:14:01 -0500378 num_bytes = max(blocksize, num_bytes);
Chris Masonc8b97812008-10-29 14:49:59 -0400379 total_in = 0;
380 ret = 0;
Chris Masondb945352007-10-15 16:15:53 -0400381
Chris Mason771ed682008-11-06 22:02:51 -0500382 /*
383 * we do compression for mount -o compress and when the
384 * inode has not been flagged as nocompress. This flag can
385 * change at any time if we discover bad compression ratios.
Chris Masonc8b97812008-10-29 14:49:59 -0400386 */
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200387 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS) &&
Chris Mason1e701a32010-03-11 09:42:04 -0500388 (btrfs_test_opt(root, COMPRESS) ||
Liu Bo75e7cb72011-03-22 10:12:20 +0000389 (BTRFS_I(inode)->force_compress) ||
390 (BTRFS_I(inode)->flags & BTRFS_INODE_COMPRESS))) {
Chris Masonc8b97812008-10-29 14:49:59 -0400391 WARN_ON(pages);
Chris Masoncfbc2462008-10-30 13:22:14 -0400392 pages = kzalloc(sizeof(struct page *) * nr_pages, GFP_NOFS);
Yoshinori Sanodac97e52011-02-15 12:01:42 +0000393 BUG_ON(!pages);
Chris Mason179e29e2007-11-01 11:28:41 -0400394
Li Zefan261507a02010-12-17 14:21:50 +0800395 if (BTRFS_I(inode)->force_compress)
396 compress_type = BTRFS_I(inode)->force_compress;
397
398 ret = btrfs_compress_pages(compress_type,
399 inode->i_mapping, start,
400 total_compressed, pages,
401 nr_pages, &nr_pages_ret,
402 &total_in,
403 &total_compressed,
404 max_compressed);
Chris Masonc8b97812008-10-29 14:49:59 -0400405
406 if (!ret) {
407 unsigned long offset = total_compressed &
408 (PAGE_CACHE_SIZE - 1);
409 struct page *page = pages[nr_pages_ret - 1];
410 char *kaddr;
411
412 /* zero the tail end of the last page, we might be
413 * sending it down to disk
414 */
415 if (offset) {
416 kaddr = kmap_atomic(page, KM_USER0);
417 memset(kaddr + offset, 0,
418 PAGE_CACHE_SIZE - offset);
419 kunmap_atomic(kaddr, KM_USER0);
420 }
421 will_compress = 1;
422 }
423 }
424 if (start == 0) {
Chris Mason771ed682008-11-06 22:02:51 -0500425 trans = btrfs_join_transaction(root, 1);
Tsutomu Itoh3612b492011-01-25 02:51:38 +0000426 BUG_ON(IS_ERR(trans));
Chris Mason771ed682008-11-06 22:02:51 -0500427 btrfs_set_trans_block_group(trans, inode);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400428 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Mason771ed682008-11-06 22:02:51 -0500429
Chris Masonc8b97812008-10-29 14:49:59 -0400430 /* lets try to make an inline extent */
Chris Mason771ed682008-11-06 22:02:51 -0500431 if (ret || total_in < (actual_end - start)) {
Chris Masonc8b97812008-10-29 14:49:59 -0400432 /* we didn't compress the entire range, try
Chris Mason771ed682008-11-06 22:02:51 -0500433 * to make an uncompressed inline extent.
Chris Masonc8b97812008-10-29 14:49:59 -0400434 */
435 ret = cow_file_range_inline(trans, root, inode,
Li Zefanfe3f5662011-03-28 08:30:38 +0000436 start, end, 0, 0, NULL);
Chris Masonc8b97812008-10-29 14:49:59 -0400437 } else {
Chris Mason771ed682008-11-06 22:02:51 -0500438 /* try making a compressed inline extent */
Chris Masonc8b97812008-10-29 14:49:59 -0400439 ret = cow_file_range_inline(trans, root, inode,
440 start, end,
Li Zefanfe3f5662011-03-28 08:30:38 +0000441 total_compressed,
442 compress_type, pages);
Chris Masonc8b97812008-10-29 14:49:59 -0400443 }
444 if (ret == 0) {
Chris Mason771ed682008-11-06 22:02:51 -0500445 /*
446 * inline extent creation worked, we don't need
447 * to create any more async work items. Unlock
448 * and free up our temp pages.
449 */
Chris Masonc8b97812008-10-29 14:49:59 -0400450 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400451 &BTRFS_I(inode)->io_tree,
452 start, end, NULL,
453 EXTENT_CLEAR_UNLOCK_PAGE | EXTENT_CLEAR_DIRTY |
Chris Masona3429ab2009-10-08 12:30:20 -0400454 EXTENT_CLEAR_DELALLOC |
Chris Masona791e352009-10-08 11:27:10 -0400455 EXTENT_SET_WRITEBACK | EXTENT_END_WRITEBACK);
Yan, Zhengc2167752009-11-12 09:34:21 +0000456
457 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400458 goto free_pages_out;
459 }
Yan, Zhengc2167752009-11-12 09:34:21 +0000460 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400461 }
462
463 if (will_compress) {
464 /*
465 * we aren't doing an inline extent round the compressed size
466 * up to a block size boundary so the allocator does sane
467 * things
468 */
469 total_compressed = (total_compressed + blocksize - 1) &
470 ~(blocksize - 1);
471
472 /*
473 * one last check to make sure the compression is really a
474 * win, compare the page count read with the blocks on disk
475 */
476 total_in = (total_in + PAGE_CACHE_SIZE - 1) &
477 ~(PAGE_CACHE_SIZE - 1);
478 if (total_compressed >= total_in) {
479 will_compress = 0;
480 } else {
Chris Masonc8b97812008-10-29 14:49:59 -0400481 num_bytes = total_in;
482 }
483 }
484 if (!will_compress && pages) {
485 /*
486 * the compression code ran but failed to make things smaller,
487 * free any pages it allocated and our page pointer array
488 */
489 for (i = 0; i < nr_pages_ret; i++) {
Chris Mason70b99e62008-10-31 12:46:39 -0400490 WARN_ON(pages[i]->mapping);
Chris Masonc8b97812008-10-29 14:49:59 -0400491 page_cache_release(pages[i]);
492 }
493 kfree(pages);
494 pages = NULL;
495 total_compressed = 0;
496 nr_pages_ret = 0;
497
498 /* flag the file so we don't compress in the future */
Chris Mason1e701a32010-03-11 09:42:04 -0500499 if (!btrfs_test_opt(root, FORCE_COMPRESS) &&
500 !(BTRFS_I(inode)->force_compress)) {
Chris Masona555f812010-01-28 16:18:15 -0500501 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
Chris Mason1e701a32010-03-11 09:42:04 -0500502 }
Chris Masonc8b97812008-10-29 14:49:59 -0400503 }
Chris Mason771ed682008-11-06 22:02:51 -0500504 if (will_compress) {
505 *num_added += 1;
506
507 /* the async work queues will take care of doing actual
508 * allocation on disk for these compressed pages,
509 * and will submit them to the elevator.
510 */
511 add_async_extent(async_cow, start, num_bytes,
Li Zefan261507a02010-12-17 14:21:50 +0800512 total_compressed, pages, nr_pages_ret,
513 compress_type);
Chris Mason771ed682008-11-06 22:02:51 -0500514
Yan, Zheng24ae6362010-12-06 07:02:36 +0000515 if (start + num_bytes < end) {
Chris Mason771ed682008-11-06 22:02:51 -0500516 start += num_bytes;
517 pages = NULL;
518 cond_resched();
519 goto again;
520 }
521 } else {
Chris Masonf03d9302009-02-04 09:31:06 -0500522cleanup_and_bail_uncompressed:
Chris Mason771ed682008-11-06 22:02:51 -0500523 /*
524 * No compression, but we still need to write the pages in
525 * the file we've been given so far. redirty the locked
526 * page if it corresponds to our extent and set things up
527 * for the async work queue to run cow_file_range to do
528 * the normal delalloc dance
529 */
530 if (page_offset(locked_page) >= start &&
531 page_offset(locked_page) <= end) {
532 __set_page_dirty_nobuffers(locked_page);
533 /* unlocked later on in the async handlers */
534 }
Li Zefan261507a02010-12-17 14:21:50 +0800535 add_async_extent(async_cow, start, end - start + 1,
536 0, NULL, 0, BTRFS_COMPRESS_NONE);
Chris Mason771ed682008-11-06 22:02:51 -0500537 *num_added += 1;
538 }
539
540out:
541 return 0;
542
543free_pages_out:
544 for (i = 0; i < nr_pages_ret; i++) {
545 WARN_ON(pages[i]->mapping);
546 page_cache_release(pages[i]);
547 }
Chris Masond3977122009-01-05 21:25:51 -0500548 kfree(pages);
Chris Mason771ed682008-11-06 22:02:51 -0500549
550 goto out;
551}
552
553/*
554 * phase two of compressed writeback. This is the ordered portion
555 * of the code, which only gets called in the order the work was
556 * queued. We walk all the async extents created by compress_file_range
557 * and send them down to the disk.
558 */
559static noinline int submit_compressed_extents(struct inode *inode,
560 struct async_cow *async_cow)
561{
562 struct async_extent *async_extent;
563 u64 alloc_hint = 0;
564 struct btrfs_trans_handle *trans;
565 struct btrfs_key ins;
566 struct extent_map *em;
567 struct btrfs_root *root = BTRFS_I(inode)->root;
568 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
569 struct extent_io_tree *io_tree;
Josef Bacikf5a84ee2009-11-10 21:23:48 -0500570 int ret = 0;
Chris Mason771ed682008-11-06 22:02:51 -0500571
572 if (list_empty(&async_cow->extents))
573 return 0;
574
Chris Mason771ed682008-11-06 22:02:51 -0500575
Chris Masond3977122009-01-05 21:25:51 -0500576 while (!list_empty(&async_cow->extents)) {
Chris Mason771ed682008-11-06 22:02:51 -0500577 async_extent = list_entry(async_cow->extents.next,
578 struct async_extent, list);
579 list_del(&async_extent->list);
580
581 io_tree = &BTRFS_I(inode)->io_tree;
582
Josef Bacikf5a84ee2009-11-10 21:23:48 -0500583retry:
Chris Mason771ed682008-11-06 22:02:51 -0500584 /* did the compression code fall back to uncompressed IO? */
585 if (!async_extent->pages) {
586 int page_started = 0;
587 unsigned long nr_written = 0;
588
589 lock_extent(io_tree, async_extent->start,
Josef Bacik2ac55d42010-02-03 19:33:23 +0000590 async_extent->start +
591 async_extent->ram_size - 1, GFP_NOFS);
Chris Mason771ed682008-11-06 22:02:51 -0500592
593 /* allocate blocks */
Josef Bacikf5a84ee2009-11-10 21:23:48 -0500594 ret = cow_file_range(inode, async_cow->locked_page,
595 async_extent->start,
596 async_extent->start +
597 async_extent->ram_size - 1,
598 &page_started, &nr_written, 0);
Chris Mason771ed682008-11-06 22:02:51 -0500599
600 /*
601 * if page_started, cow_file_range inserted an
602 * inline extent and took care of all the unlocking
603 * and IO for us. Otherwise, we need to submit
604 * all those pages down to the drive.
605 */
Josef Bacikf5a84ee2009-11-10 21:23:48 -0500606 if (!page_started && !ret)
Chris Mason771ed682008-11-06 22:02:51 -0500607 extent_write_locked_range(io_tree,
608 inode, async_extent->start,
Chris Masond3977122009-01-05 21:25:51 -0500609 async_extent->start +
Chris Mason771ed682008-11-06 22:02:51 -0500610 async_extent->ram_size - 1,
611 btrfs_get_extent,
612 WB_SYNC_ALL);
613 kfree(async_extent);
614 cond_resched();
615 continue;
616 }
617
618 lock_extent(io_tree, async_extent->start,
619 async_extent->start + async_extent->ram_size - 1,
620 GFP_NOFS);
Chris Mason771ed682008-11-06 22:02:51 -0500621
Yan, Zhengc2167752009-11-12 09:34:21 +0000622 trans = btrfs_join_transaction(root, 1);
Tsutomu Itoh3612b492011-01-25 02:51:38 +0000623 BUG_ON(IS_ERR(trans));
Chris Mason771ed682008-11-06 22:02:51 -0500624 ret = btrfs_reserve_extent(trans, root,
625 async_extent->compressed_size,
626 async_extent->compressed_size,
627 0, alloc_hint,
628 (u64)-1, &ins, 1);
Yan, Zhengc2167752009-11-12 09:34:21 +0000629 btrfs_end_transaction(trans, root);
630
Josef Bacikf5a84ee2009-11-10 21:23:48 -0500631 if (ret) {
632 int i;
633 for (i = 0; i < async_extent->nr_pages; i++) {
634 WARN_ON(async_extent->pages[i]->mapping);
635 page_cache_release(async_extent->pages[i]);
636 }
637 kfree(async_extent->pages);
638 async_extent->nr_pages = 0;
639 async_extent->pages = NULL;
640 unlock_extent(io_tree, async_extent->start,
641 async_extent->start +
642 async_extent->ram_size - 1, GFP_NOFS);
643 goto retry;
644 }
645
Yan, Zhengc2167752009-11-12 09:34:21 +0000646 /*
647 * here we're doing allocation and writeback of the
648 * compressed pages
649 */
650 btrfs_drop_extent_cache(inode, async_extent->start,
651 async_extent->start +
652 async_extent->ram_size - 1, 0);
653
David Sterba172ddd62011-04-21 00:48:27 +0200654 em = alloc_extent_map();
Tsutomu Itohc26a9202011-02-14 00:45:29 +0000655 BUG_ON(!em);
Chris Mason771ed682008-11-06 22:02:51 -0500656 em->start = async_extent->start;
657 em->len = async_extent->ram_size;
Chris Mason445a6942008-11-10 11:53:33 -0500658 em->orig_start = em->start;
Chris Mason771ed682008-11-06 22:02:51 -0500659
660 em->block_start = ins.objectid;
661 em->block_len = ins.offset;
662 em->bdev = root->fs_info->fs_devices->latest_bdev;
Li Zefan261507a02010-12-17 14:21:50 +0800663 em->compress_type = async_extent->compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500664 set_bit(EXTENT_FLAG_PINNED, &em->flags);
665 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
666
Chris Masond3977122009-01-05 21:25:51 -0500667 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -0400668 write_lock(&em_tree->lock);
Chris Mason771ed682008-11-06 22:02:51 -0500669 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -0400670 write_unlock(&em_tree->lock);
Chris Mason771ed682008-11-06 22:02:51 -0500671 if (ret != -EEXIST) {
672 free_extent_map(em);
673 break;
674 }
675 btrfs_drop_extent_cache(inode, async_extent->start,
676 async_extent->start +
677 async_extent->ram_size - 1, 0);
678 }
679
Li Zefan261507a02010-12-17 14:21:50 +0800680 ret = btrfs_add_ordered_extent_compress(inode,
681 async_extent->start,
682 ins.objectid,
683 async_extent->ram_size,
684 ins.offset,
685 BTRFS_ORDERED_COMPRESSED,
686 async_extent->compress_type);
Chris Mason771ed682008-11-06 22:02:51 -0500687 BUG_ON(ret);
688
Chris Mason771ed682008-11-06 22:02:51 -0500689 /*
690 * clear dirty, set writeback and unlock the pages.
691 */
692 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400693 &BTRFS_I(inode)->io_tree,
694 async_extent->start,
695 async_extent->start +
696 async_extent->ram_size - 1,
697 NULL, EXTENT_CLEAR_UNLOCK_PAGE |
698 EXTENT_CLEAR_UNLOCK |
Chris Masona3429ab2009-10-08 12:30:20 -0400699 EXTENT_CLEAR_DELALLOC |
Chris Masona791e352009-10-08 11:27:10 -0400700 EXTENT_CLEAR_DIRTY | EXTENT_SET_WRITEBACK);
Chris Mason771ed682008-11-06 22:02:51 -0500701
702 ret = btrfs_submit_compressed_write(inode,
Chris Masond3977122009-01-05 21:25:51 -0500703 async_extent->start,
704 async_extent->ram_size,
705 ins.objectid,
706 ins.offset, async_extent->pages,
707 async_extent->nr_pages);
Chris Mason771ed682008-11-06 22:02:51 -0500708
709 BUG_ON(ret);
Chris Mason771ed682008-11-06 22:02:51 -0500710 alloc_hint = ins.objectid + ins.offset;
711 kfree(async_extent);
712 cond_resched();
713 }
714
Chris Mason771ed682008-11-06 22:02:51 -0500715 return 0;
716}
717
Josef Bacik4b46fce2010-05-23 11:00:55 -0400718static u64 get_extent_allocation_hint(struct inode *inode, u64 start,
719 u64 num_bytes)
720{
721 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
722 struct extent_map *em;
723 u64 alloc_hint = 0;
724
725 read_lock(&em_tree->lock);
726 em = search_extent_mapping(em_tree, start, num_bytes);
727 if (em) {
728 /*
729 * if block start isn't an actual block number then find the
730 * first block in this inode and use that as a hint. If that
731 * block is also bogus then just don't worry about it.
732 */
733 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
734 free_extent_map(em);
735 em = search_extent_mapping(em_tree, 0, 0);
736 if (em && em->block_start < EXTENT_MAP_LAST_BYTE)
737 alloc_hint = em->block_start;
738 if (em)
739 free_extent_map(em);
740 } else {
741 alloc_hint = em->block_start;
742 free_extent_map(em);
743 }
744 }
745 read_unlock(&em_tree->lock);
746
747 return alloc_hint;
748}
749
Li Zefan82d59022011-04-20 10:33:24 +0800750static inline bool is_free_space_inode(struct btrfs_root *root,
751 struct inode *inode)
752{
753 if (root == root->fs_info->tree_root ||
754 BTRFS_I(inode)->location.objectid == BTRFS_FREE_INO_OBJECTID)
755 return true;
756 return false;
757}
758
Chris Mason771ed682008-11-06 22:02:51 -0500759/*
760 * when extent_io.c finds a delayed allocation range in the file,
761 * the call backs end up in this code. The basic idea is to
762 * allocate extents on disk for the range, and create ordered data structs
763 * in ram to track those extents.
764 *
765 * locked_page is the page that writepage had locked already. We use
766 * it to make sure we don't do extra locks or unlocks.
767 *
768 * *page_started is set to one if we unlock locked_page and do everything
769 * required to start IO on it. It may be clean and already done with
770 * IO when we return.
771 */
772static noinline int cow_file_range(struct inode *inode,
773 struct page *locked_page,
774 u64 start, u64 end, int *page_started,
775 unsigned long *nr_written,
776 int unlock)
777{
778 struct btrfs_root *root = BTRFS_I(inode)->root;
779 struct btrfs_trans_handle *trans;
780 u64 alloc_hint = 0;
781 u64 num_bytes;
782 unsigned long ram_size;
783 u64 disk_num_bytes;
784 u64 cur_alloc_size;
785 u64 blocksize = root->sectorsize;
Chris Mason771ed682008-11-06 22:02:51 -0500786 struct btrfs_key ins;
787 struct extent_map *em;
788 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
789 int ret = 0;
790
Li Zefan82d59022011-04-20 10:33:24 +0800791 BUG_ON(is_free_space_inode(root, inode));
Chris Mason771ed682008-11-06 22:02:51 -0500792 trans = btrfs_join_transaction(root, 1);
Tsutomu Itoh3612b492011-01-25 02:51:38 +0000793 BUG_ON(IS_ERR(trans));
Chris Mason771ed682008-11-06 22:02:51 -0500794 btrfs_set_trans_block_group(trans, inode);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400795 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Mason771ed682008-11-06 22:02:51 -0500796
Chris Mason771ed682008-11-06 22:02:51 -0500797 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
798 num_bytes = max(blocksize, num_bytes);
799 disk_num_bytes = num_bytes;
800 ret = 0;
801
802 if (start == 0) {
803 /* lets try to make an inline extent */
804 ret = cow_file_range_inline(trans, root, inode,
Li Zefanfe3f5662011-03-28 08:30:38 +0000805 start, end, 0, 0, NULL);
Chris Mason771ed682008-11-06 22:02:51 -0500806 if (ret == 0) {
807 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400808 &BTRFS_I(inode)->io_tree,
809 start, end, NULL,
810 EXTENT_CLEAR_UNLOCK_PAGE |
811 EXTENT_CLEAR_UNLOCK |
812 EXTENT_CLEAR_DELALLOC |
813 EXTENT_CLEAR_DIRTY |
814 EXTENT_SET_WRITEBACK |
815 EXTENT_END_WRITEBACK);
Yan, Zhengc2167752009-11-12 09:34:21 +0000816
Chris Mason771ed682008-11-06 22:02:51 -0500817 *nr_written = *nr_written +
818 (end - start + PAGE_CACHE_SIZE) / PAGE_CACHE_SIZE;
819 *page_started = 1;
820 ret = 0;
821 goto out;
822 }
823 }
Chris Masonc8b97812008-10-29 14:49:59 -0400824
825 BUG_ON(disk_num_bytes >
826 btrfs_super_total_bytes(&root->fs_info->super_copy));
827
Josef Bacik4b46fce2010-05-23 11:00:55 -0400828 alloc_hint = get_extent_allocation_hint(inode, start, num_bytes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400829 btrfs_drop_extent_cache(inode, start, start + num_bytes - 1, 0);
Chris Mason3b951512008-04-17 11:29:12 -0400830
Chris Masond3977122009-01-05 21:25:51 -0500831 while (disk_num_bytes > 0) {
Chris Masona791e352009-10-08 11:27:10 -0400832 unsigned long op;
833
Josef Bacik287a0ab2010-03-19 18:07:23 +0000834 cur_alloc_size = disk_num_bytes;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400835 ret = btrfs_reserve_extent(trans, root, cur_alloc_size,
Chris Mason771ed682008-11-06 22:02:51 -0500836 root->sectorsize, 0, alloc_hint,
Chris Masone6dcd2d2008-07-17 12:53:50 -0400837 (u64)-1, &ins, 1);
Chris Masond3977122009-01-05 21:25:51 -0500838 BUG_ON(ret);
839
David Sterba172ddd62011-04-21 00:48:27 +0200840 em = alloc_extent_map();
Tsutomu Itohc26a9202011-02-14 00:45:29 +0000841 BUG_ON(!em);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400842 em->start = start;
Chris Mason445a6942008-11-10 11:53:33 -0500843 em->orig_start = em->start;
Chris Mason771ed682008-11-06 22:02:51 -0500844 ram_size = ins.offset;
845 em->len = ins.offset;
Chris Masonc8b97812008-10-29 14:49:59 -0400846
Chris Masone6dcd2d2008-07-17 12:53:50 -0400847 em->block_start = ins.objectid;
Chris Masonc8b97812008-10-29 14:49:59 -0400848 em->block_len = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400849 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -0400850 set_bit(EXTENT_FLAG_PINNED, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -0400851
Chris Masond3977122009-01-05 21:25:51 -0500852 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -0400853 write_lock(&em_tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400854 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -0400855 write_unlock(&em_tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400856 if (ret != -EEXIST) {
857 free_extent_map(em);
858 break;
859 }
860 btrfs_drop_extent_cache(inode, start,
Chris Masonc8b97812008-10-29 14:49:59 -0400861 start + ram_size - 1, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400862 }
863
Chris Mason98d20f62008-04-14 09:46:10 -0400864 cur_alloc_size = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400865 ret = btrfs_add_ordered_extent(inode, start, ins.objectid,
Chris Mason771ed682008-11-06 22:02:51 -0500866 ram_size, cur_alloc_size, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400867 BUG_ON(ret);
Chris Masonc8b97812008-10-29 14:49:59 -0400868
Yan Zheng17d217f2008-12-12 10:03:38 -0500869 if (root->root_key.objectid ==
870 BTRFS_DATA_RELOC_TREE_OBJECTID) {
871 ret = btrfs_reloc_clone_csums(inode, start,
872 cur_alloc_size);
873 BUG_ON(ret);
874 }
875
Chris Masond3977122009-01-05 21:25:51 -0500876 if (disk_num_bytes < cur_alloc_size)
Chris Mason3b951512008-04-17 11:29:12 -0400877 break;
Chris Masond3977122009-01-05 21:25:51 -0500878
Chris Masonc8b97812008-10-29 14:49:59 -0400879 /* we're not doing compressed IO, don't unlock the first
880 * page (which the caller expects to stay locked), don't
881 * clear any dirty bits and don't set any writeback bits
Chris Mason8b62b722009-09-02 16:53:46 -0400882 *
883 * Do set the Private2 bit so we know this page was properly
884 * setup for writepage
Chris Masonc8b97812008-10-29 14:49:59 -0400885 */
Chris Masona791e352009-10-08 11:27:10 -0400886 op = unlock ? EXTENT_CLEAR_UNLOCK_PAGE : 0;
887 op |= EXTENT_CLEAR_UNLOCK | EXTENT_CLEAR_DELALLOC |
888 EXTENT_SET_PRIVATE2;
889
Chris Masonc8b97812008-10-29 14:49:59 -0400890 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
891 start, start + ram_size - 1,
Chris Masona791e352009-10-08 11:27:10 -0400892 locked_page, op);
Chris Masonc8b97812008-10-29 14:49:59 -0400893 disk_num_bytes -= cur_alloc_size;
Chris Masonc59f8952007-12-17 20:14:04 -0500894 num_bytes -= cur_alloc_size;
895 alloc_hint = ins.objectid + ins.offset;
896 start += cur_alloc_size;
Chris Masonb888db22007-08-27 16:49:44 -0400897 }
Chris Masonb888db22007-08-27 16:49:44 -0400898out:
Chris Mason771ed682008-11-06 22:02:51 -0500899 ret = 0;
Chris Masonb888db22007-08-27 16:49:44 -0400900 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400901
Chris Masonbe20aa92007-12-17 20:14:01 -0500902 return ret;
Chris Mason771ed682008-11-06 22:02:51 -0500903}
Chris Masonc8b97812008-10-29 14:49:59 -0400904
Chris Mason771ed682008-11-06 22:02:51 -0500905/*
906 * work queue call back to started compression on a file and pages
907 */
908static noinline void async_cow_start(struct btrfs_work *work)
909{
910 struct async_cow *async_cow;
911 int num_added = 0;
912 async_cow = container_of(work, struct async_cow, work);
913
914 compress_file_range(async_cow->inode, async_cow->locked_page,
915 async_cow->start, async_cow->end, async_cow,
916 &num_added);
917 if (num_added == 0)
918 async_cow->inode = NULL;
919}
920
921/*
922 * work queue call back to submit previously compressed pages
923 */
924static noinline void async_cow_submit(struct btrfs_work *work)
925{
926 struct async_cow *async_cow;
927 struct btrfs_root *root;
928 unsigned long nr_pages;
929
930 async_cow = container_of(work, struct async_cow, work);
931
932 root = async_cow->root;
933 nr_pages = (async_cow->end - async_cow->start + PAGE_CACHE_SIZE) >>
934 PAGE_CACHE_SHIFT;
935
936 atomic_sub(nr_pages, &root->fs_info->async_delalloc_pages);
937
938 if (atomic_read(&root->fs_info->async_delalloc_pages) <
939 5 * 1042 * 1024 &&
940 waitqueue_active(&root->fs_info->async_submit_wait))
941 wake_up(&root->fs_info->async_submit_wait);
942
Chris Masond3977122009-01-05 21:25:51 -0500943 if (async_cow->inode)
Chris Mason771ed682008-11-06 22:02:51 -0500944 submit_compressed_extents(async_cow->inode, async_cow);
Chris Mason771ed682008-11-06 22:02:51 -0500945}
Chris Masonc8b97812008-10-29 14:49:59 -0400946
Chris Mason771ed682008-11-06 22:02:51 -0500947static noinline void async_cow_free(struct btrfs_work *work)
948{
949 struct async_cow *async_cow;
950 async_cow = container_of(work, struct async_cow, work);
951 kfree(async_cow);
952}
953
954static int cow_file_range_async(struct inode *inode, struct page *locked_page,
955 u64 start, u64 end, int *page_started,
956 unsigned long *nr_written)
957{
958 struct async_cow *async_cow;
959 struct btrfs_root *root = BTRFS_I(inode)->root;
960 unsigned long nr_pages;
961 u64 cur_end;
962 int limit = 10 * 1024 * 1042;
963
Chris Masona3429ab2009-10-08 12:30:20 -0400964 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, EXTENT_LOCKED,
965 1, 0, NULL, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -0500966 while (start < end) {
Chris Mason771ed682008-11-06 22:02:51 -0500967 async_cow = kmalloc(sizeof(*async_cow), GFP_NOFS);
Tsutomu Itoh8d413712011-04-25 19:43:52 -0400968 BUG_ON(!async_cow);
Chris Mason771ed682008-11-06 22:02:51 -0500969 async_cow->inode = inode;
970 async_cow->root = root;
971 async_cow->locked_page = locked_page;
972 async_cow->start = start;
973
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200974 if (BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS)
Chris Mason771ed682008-11-06 22:02:51 -0500975 cur_end = end;
976 else
977 cur_end = min(end, start + 512 * 1024 - 1);
978
979 async_cow->end = cur_end;
980 INIT_LIST_HEAD(&async_cow->extents);
981
982 async_cow->work.func = async_cow_start;
983 async_cow->work.ordered_func = async_cow_submit;
984 async_cow->work.ordered_free = async_cow_free;
985 async_cow->work.flags = 0;
986
Chris Mason771ed682008-11-06 22:02:51 -0500987 nr_pages = (cur_end - start + PAGE_CACHE_SIZE) >>
988 PAGE_CACHE_SHIFT;
989 atomic_add(nr_pages, &root->fs_info->async_delalloc_pages);
990
991 btrfs_queue_worker(&root->fs_info->delalloc_workers,
992 &async_cow->work);
993
994 if (atomic_read(&root->fs_info->async_delalloc_pages) > limit) {
995 wait_event(root->fs_info->async_submit_wait,
996 (atomic_read(&root->fs_info->async_delalloc_pages) <
997 limit));
998 }
999
Chris Masond3977122009-01-05 21:25:51 -05001000 while (atomic_read(&root->fs_info->async_submit_draining) &&
Chris Mason771ed682008-11-06 22:02:51 -05001001 atomic_read(&root->fs_info->async_delalloc_pages)) {
1002 wait_event(root->fs_info->async_submit_wait,
1003 (atomic_read(&root->fs_info->async_delalloc_pages) ==
1004 0));
1005 }
1006
1007 *nr_written += nr_pages;
1008 start = cur_end + 1;
1009 }
1010 *page_started = 1;
1011 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05001012}
1013
Chris Masond3977122009-01-05 21:25:51 -05001014static noinline int csum_exist_in_range(struct btrfs_root *root,
Yan Zheng17d217f2008-12-12 10:03:38 -05001015 u64 bytenr, u64 num_bytes)
1016{
1017 int ret;
1018 struct btrfs_ordered_sum *sums;
1019 LIST_HEAD(list);
1020
Yan Zheng07d400a2009-01-06 11:42:00 -05001021 ret = btrfs_lookup_csums_range(root->fs_info->csum_root, bytenr,
Arne Jansena2de7332011-03-08 14:14:00 +01001022 bytenr + num_bytes - 1, &list, 0);
Yan Zheng17d217f2008-12-12 10:03:38 -05001023 if (ret == 0 && list_empty(&list))
1024 return 0;
1025
1026 while (!list_empty(&list)) {
1027 sums = list_entry(list.next, struct btrfs_ordered_sum, list);
1028 list_del(&sums->list);
1029 kfree(sums);
1030 }
1031 return 1;
1032}
1033
Chris Masond352ac62008-09-29 15:18:18 -04001034/*
1035 * when nowcow writeback call back. This checks for snapshots or COW copies
1036 * of the extents that exist in the file, and COWs the file as required.
1037 *
1038 * If no cow copies or snapshots exist, we write directly to the existing
1039 * blocks on disk
1040 */
Chris Mason7f366cf2009-03-12 20:12:45 -04001041static noinline int run_delalloc_nocow(struct inode *inode,
1042 struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001043 u64 start, u64 end, int *page_started, int force,
1044 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001045{
Chris Masonbe20aa92007-12-17 20:14:01 -05001046 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001047 struct btrfs_trans_handle *trans;
Chris Masonbe20aa92007-12-17 20:14:01 -05001048 struct extent_buffer *leaf;
Chris Masonbe20aa92007-12-17 20:14:01 -05001049 struct btrfs_path *path;
Yan Zheng80ff3852008-10-30 14:20:02 -04001050 struct btrfs_file_extent_item *fi;
Chris Masonbe20aa92007-12-17 20:14:01 -05001051 struct btrfs_key found_key;
Yan Zheng80ff3852008-10-30 14:20:02 -04001052 u64 cow_start;
1053 u64 cur_offset;
1054 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001055 u64 extent_offset;
Yan Zheng80ff3852008-10-30 14:20:02 -04001056 u64 disk_bytenr;
1057 u64 num_bytes;
1058 int extent_type;
1059 int ret;
Yan Zhengd899e052008-10-30 14:25:28 -04001060 int type;
Yan Zheng80ff3852008-10-30 14:20:02 -04001061 int nocow;
1062 int check_prev = 1;
Li Zefan82d59022011-04-20 10:33:24 +08001063 bool nolock;
Li Zefan33345d012011-04-20 10:31:50 +08001064 u64 ino = btrfs_ino(inode);
Chris Masonbe20aa92007-12-17 20:14:01 -05001065
1066 path = btrfs_alloc_path();
1067 BUG_ON(!path);
Li Zefan82d59022011-04-20 10:33:24 +08001068
1069 nolock = is_free_space_inode(root, inode);
1070
1071 if (nolock)
Josef Bacik0cb59c92010-07-02 12:14:14 -04001072 trans = btrfs_join_transaction_nolock(root, 1);
Li Zefan82d59022011-04-20 10:33:24 +08001073 else
Josef Bacik0cb59c92010-07-02 12:14:14 -04001074 trans = btrfs_join_transaction(root, 1);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00001075 BUG_ON(IS_ERR(trans));
Chris Masonbe20aa92007-12-17 20:14:01 -05001076
Yan Zheng80ff3852008-10-30 14:20:02 -04001077 cow_start = (u64)-1;
1078 cur_offset = start;
1079 while (1) {
Li Zefan33345d012011-04-20 10:31:50 +08001080 ret = btrfs_lookup_file_extent(trans, root, path, ino,
Yan Zheng80ff3852008-10-30 14:20:02 -04001081 cur_offset, 0);
1082 BUG_ON(ret < 0);
1083 if (ret > 0 && path->slots[0] > 0 && check_prev) {
1084 leaf = path->nodes[0];
1085 btrfs_item_key_to_cpu(leaf, &found_key,
1086 path->slots[0] - 1);
Li Zefan33345d012011-04-20 10:31:50 +08001087 if (found_key.objectid == ino &&
Yan Zheng80ff3852008-10-30 14:20:02 -04001088 found_key.type == BTRFS_EXTENT_DATA_KEY)
1089 path->slots[0]--;
1090 }
1091 check_prev = 0;
1092next_slot:
1093 leaf = path->nodes[0];
1094 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1095 ret = btrfs_next_leaf(root, path);
1096 if (ret < 0)
1097 BUG_ON(1);
1098 if (ret > 0)
1099 break;
1100 leaf = path->nodes[0];
1101 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001102
Yan Zheng80ff3852008-10-30 14:20:02 -04001103 nocow = 0;
1104 disk_bytenr = 0;
Yan Zheng17d217f2008-12-12 10:03:38 -05001105 num_bytes = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001106 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05001107
Li Zefan33345d012011-04-20 10:31:50 +08001108 if (found_key.objectid > ino ||
Yan Zheng80ff3852008-10-30 14:20:02 -04001109 found_key.type > BTRFS_EXTENT_DATA_KEY ||
1110 found_key.offset > end)
1111 break;
Chris Masonbe20aa92007-12-17 20:14:01 -05001112
Yan Zheng80ff3852008-10-30 14:20:02 -04001113 if (found_key.offset > cur_offset) {
1114 extent_end = found_key.offset;
Chris Masone9061e22009-10-09 09:57:45 -04001115 extent_type = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001116 goto out_check;
1117 }
Chris Masonc31f8832008-01-08 15:46:31 -05001118
Yan Zheng80ff3852008-10-30 14:20:02 -04001119 fi = btrfs_item_ptr(leaf, path->slots[0],
1120 struct btrfs_file_extent_item);
1121 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Masonbe20aa92007-12-17 20:14:01 -05001122
Yan Zhengd899e052008-10-30 14:25:28 -04001123 if (extent_type == BTRFS_FILE_EXTENT_REG ||
1124 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001125 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001126 extent_offset = btrfs_file_extent_offset(leaf, fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001127 extent_end = found_key.offset +
1128 btrfs_file_extent_num_bytes(leaf, fi);
1129 if (extent_end <= start) {
1130 path->slots[0]++;
1131 goto next_slot;
1132 }
Yan Zheng17d217f2008-12-12 10:03:38 -05001133 if (disk_bytenr == 0)
1134 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001135 if (btrfs_file_extent_compression(leaf, fi) ||
1136 btrfs_file_extent_encryption(leaf, fi) ||
1137 btrfs_file_extent_other_encoding(leaf, fi))
1138 goto out_check;
Yan Zhengd899e052008-10-30 14:25:28 -04001139 if (extent_type == BTRFS_FILE_EXTENT_REG && !force)
1140 goto out_check;
Yan Zhengd2fb3432008-12-11 16:30:39 -05001141 if (btrfs_extent_readonly(root, disk_bytenr))
Yan Zheng80ff3852008-10-30 14:20:02 -04001142 goto out_check;
Li Zefan33345d012011-04-20 10:31:50 +08001143 if (btrfs_cross_ref_exist(trans, root, ino,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001144 found_key.offset -
1145 extent_offset, disk_bytenr))
Yan Zheng17d217f2008-12-12 10:03:38 -05001146 goto out_check;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001147 disk_bytenr += extent_offset;
Yan Zheng17d217f2008-12-12 10:03:38 -05001148 disk_bytenr += cur_offset - found_key.offset;
1149 num_bytes = min(end + 1, extent_end) - cur_offset;
1150 /*
1151 * force cow if csum exists in the range.
1152 * this ensure that csum for a given extent are
1153 * either valid or do not exist.
1154 */
1155 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
1156 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001157 nocow = 1;
1158 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1159 extent_end = found_key.offset +
1160 btrfs_file_extent_inline_len(leaf, fi);
1161 extent_end = ALIGN(extent_end, root->sectorsize);
1162 } else {
1163 BUG_ON(1);
1164 }
1165out_check:
1166 if (extent_end <= start) {
1167 path->slots[0]++;
1168 goto next_slot;
1169 }
1170 if (!nocow) {
1171 if (cow_start == (u64)-1)
1172 cow_start = cur_offset;
1173 cur_offset = extent_end;
1174 if (cur_offset > end)
1175 break;
1176 path->slots[0]++;
1177 goto next_slot;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001178 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001179
David Sterbab3b4aa72011-04-21 01:20:15 +02001180 btrfs_release_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001181 if (cow_start != (u64)-1) {
1182 ret = cow_file_range(inode, locked_page, cow_start,
Chris Mason771ed682008-11-06 22:02:51 -05001183 found_key.offset - 1, page_started,
1184 nr_written, 1);
Yan Zheng80ff3852008-10-30 14:20:02 -04001185 BUG_ON(ret);
1186 cow_start = (u64)-1;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001187 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001188
Yan Zhengd899e052008-10-30 14:25:28 -04001189 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
1190 struct extent_map *em;
1191 struct extent_map_tree *em_tree;
1192 em_tree = &BTRFS_I(inode)->extent_tree;
David Sterba172ddd62011-04-21 00:48:27 +02001193 em = alloc_extent_map();
Tsutomu Itohc26a9202011-02-14 00:45:29 +00001194 BUG_ON(!em);
Yan Zhengd899e052008-10-30 14:25:28 -04001195 em->start = cur_offset;
Chris Mason445a6942008-11-10 11:53:33 -05001196 em->orig_start = em->start;
Yan Zhengd899e052008-10-30 14:25:28 -04001197 em->len = num_bytes;
1198 em->block_len = num_bytes;
1199 em->block_start = disk_bytenr;
1200 em->bdev = root->fs_info->fs_devices->latest_bdev;
1201 set_bit(EXTENT_FLAG_PINNED, &em->flags);
1202 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04001203 write_lock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001204 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04001205 write_unlock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001206 if (ret != -EEXIST) {
1207 free_extent_map(em);
1208 break;
1209 }
1210 btrfs_drop_extent_cache(inode, em->start,
1211 em->start + em->len - 1, 0);
1212 }
1213 type = BTRFS_ORDERED_PREALLOC;
1214 } else {
1215 type = BTRFS_ORDERED_NOCOW;
1216 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001217
1218 ret = btrfs_add_ordered_extent(inode, cur_offset, disk_bytenr,
Yan Zhengd899e052008-10-30 14:25:28 -04001219 num_bytes, num_bytes, type);
1220 BUG_ON(ret);
Chris Mason771ed682008-11-06 22:02:51 -05001221
Yan, Zhengefa56462010-05-16 10:49:59 -04001222 if (root->root_key.objectid ==
1223 BTRFS_DATA_RELOC_TREE_OBJECTID) {
1224 ret = btrfs_reloc_clone_csums(inode, cur_offset,
1225 num_bytes);
1226 BUG_ON(ret);
1227 }
1228
Yan Zhengd899e052008-10-30 14:25:28 -04001229 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
Chris Masona791e352009-10-08 11:27:10 -04001230 cur_offset, cur_offset + num_bytes - 1,
1231 locked_page, EXTENT_CLEAR_UNLOCK_PAGE |
1232 EXTENT_CLEAR_UNLOCK | EXTENT_CLEAR_DELALLOC |
1233 EXTENT_SET_PRIVATE2);
Yan Zheng80ff3852008-10-30 14:20:02 -04001234 cur_offset = extent_end;
1235 if (cur_offset > end)
1236 break;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001237 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001238 btrfs_release_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001239
1240 if (cur_offset <= end && cow_start == (u64)-1)
1241 cow_start = cur_offset;
1242 if (cow_start != (u64)-1) {
1243 ret = cow_file_range(inode, locked_page, cow_start, end,
Chris Mason771ed682008-11-06 22:02:51 -05001244 page_started, nr_written, 1);
Yan Zheng80ff3852008-10-30 14:20:02 -04001245 BUG_ON(ret);
1246 }
1247
Josef Bacik0cb59c92010-07-02 12:14:14 -04001248 if (nolock) {
1249 ret = btrfs_end_transaction_nolock(trans, root);
1250 BUG_ON(ret);
1251 } else {
1252 ret = btrfs_end_transaction(trans, root);
1253 BUG_ON(ret);
1254 }
Yan Zheng7ea394f2008-08-05 13:05:02 -04001255 btrfs_free_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001256 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05001257}
1258
Chris Masond352ac62008-09-29 15:18:18 -04001259/*
1260 * extent_io.c call back to do delayed allocation processing
1261 */
Chris Masonc8b97812008-10-29 14:49:59 -04001262static int run_delalloc_range(struct inode *inode, struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001263 u64 start, u64 end, int *page_started,
1264 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001265{
Chris Masonbe20aa92007-12-17 20:14:01 -05001266 int ret;
Chris Mason7f366cf2009-03-12 20:12:45 -04001267 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masona2135012008-06-25 16:01:30 -04001268
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001269 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW)
Chris Masonc8b97812008-10-29 14:49:59 -04001270 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001271 page_started, 1, nr_written);
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001272 else if (BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC)
Yan Zhengd899e052008-10-30 14:25:28 -04001273 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001274 page_started, 0, nr_written);
Chris Mason1e701a32010-03-11 09:42:04 -05001275 else if (!btrfs_test_opt(root, COMPRESS) &&
Liu Bo75e7cb72011-03-22 10:12:20 +00001276 !(BTRFS_I(inode)->force_compress) &&
1277 !(BTRFS_I(inode)->flags & BTRFS_INODE_COMPRESS))
Chris Mason7f366cf2009-03-12 20:12:45 -04001278 ret = cow_file_range(inode, locked_page, start, end,
1279 page_started, nr_written, 1);
Chris Masonbe20aa92007-12-17 20:14:01 -05001280 else
Chris Mason771ed682008-11-06 22:02:51 -05001281 ret = cow_file_range_async(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001282 page_started, nr_written);
Chris Masonb888db22007-08-27 16:49:44 -04001283 return ret;
1284}
1285
Josef Bacik9ed74f22009-09-11 16:12:44 -04001286static int btrfs_split_extent_hook(struct inode *inode,
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001287 struct extent_state *orig, u64 split)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001288{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001289 /* not delalloc, ignore it */
Josef Bacik9ed74f22009-09-11 16:12:44 -04001290 if (!(orig->state & EXTENT_DELALLOC))
1291 return 0;
1292
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001293 atomic_inc(&BTRFS_I(inode)->outstanding_extents);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001294 return 0;
1295}
1296
1297/*
1298 * extent_io.c merge_extent_hook, used to track merged delayed allocation
1299 * extents so we can keep track of new extents that are just merged onto old
1300 * extents, such as when we are doing sequential writes, so we can properly
1301 * account for the metadata space we'll need.
1302 */
1303static int btrfs_merge_extent_hook(struct inode *inode,
1304 struct extent_state *new,
1305 struct extent_state *other)
1306{
Josef Bacik9ed74f22009-09-11 16:12:44 -04001307 /* not delalloc, ignore it */
1308 if (!(other->state & EXTENT_DELALLOC))
1309 return 0;
1310
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001311 atomic_dec(&BTRFS_I(inode)->outstanding_extents);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001312 return 0;
1313}
1314
Chris Masond352ac62008-09-29 15:18:18 -04001315/*
1316 * extent_io.c set_bit_hook, used to track delayed allocation
1317 * bytes in this file, and to maintain the list of inodes that
1318 * have pending delalloc work to be done.
1319 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001320static int btrfs_set_bit_hook(struct inode *inode,
1321 struct extent_state *state, int *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001322{
Josef Bacik9ed74f22009-09-11 16:12:44 -04001323
Chris Mason75eff682008-12-15 15:54:40 -05001324 /*
1325 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00001326 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05001327 * bit, which is only set or cleared with irqs on
1328 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001329 if (!(state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001330 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001331 u64 len = state->end + 1 - state->start;
Li Zefan82d59022011-04-20 10:33:24 +08001332 bool do_list = !is_free_space_inode(root, inode);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001333
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001334 if (*bits & EXTENT_FIRST_DELALLOC)
1335 *bits &= ~EXTENT_FIRST_DELALLOC;
1336 else
1337 atomic_inc(&BTRFS_I(inode)->outstanding_extents);
Josef Bacik287a0ab2010-03-19 18:07:23 +00001338
Chris Mason75eff682008-12-15 15:54:40 -05001339 spin_lock(&root->fs_info->delalloc_lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001340 BTRFS_I(inode)->delalloc_bytes += len;
1341 root->fs_info->delalloc_bytes += len;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001342 if (do_list && list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
Chris Masonea8c2812008-08-04 23:17:27 -04001343 list_add_tail(&BTRFS_I(inode)->delalloc_inodes,
1344 &root->fs_info->delalloc_inodes);
1345 }
Chris Mason75eff682008-12-15 15:54:40 -05001346 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason291d6732008-01-29 15:55:23 -05001347 }
1348 return 0;
1349}
1350
Chris Masond352ac62008-09-29 15:18:18 -04001351/*
1352 * extent_io.c clear_bit_hook, see set_bit_hook for why
1353 */
Josef Bacik9ed74f22009-09-11 16:12:44 -04001354static int btrfs_clear_bit_hook(struct inode *inode,
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001355 struct extent_state *state, int *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001356{
Chris Mason75eff682008-12-15 15:54:40 -05001357 /*
1358 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00001359 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05001360 * bit, which is only set or cleared with irqs on
1361 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001362 if ((state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001363 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001364 u64 len = state->end + 1 - state->start;
Li Zefan82d59022011-04-20 10:33:24 +08001365 bool do_list = !is_free_space_inode(root, inode);
Chris Masonbcbfce82008-04-22 13:26:47 -04001366
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001367 if (*bits & EXTENT_FIRST_DELALLOC)
1368 *bits &= ~EXTENT_FIRST_DELALLOC;
1369 else if (!(*bits & EXTENT_DO_ACCOUNTING))
1370 atomic_dec(&BTRFS_I(inode)->outstanding_extents);
1371
1372 if (*bits & EXTENT_DO_ACCOUNTING)
1373 btrfs_delalloc_release_metadata(inode, len);
1374
Josef Bacik0cb59c92010-07-02 12:14:14 -04001375 if (root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID
1376 && do_list)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001377 btrfs_free_reserved_data_space(inode, len);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001378
Chris Mason75eff682008-12-15 15:54:40 -05001379 spin_lock(&root->fs_info->delalloc_lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001380 root->fs_info->delalloc_bytes -= len;
1381 BTRFS_I(inode)->delalloc_bytes -= len;
1382
Josef Bacik0cb59c92010-07-02 12:14:14 -04001383 if (do_list && BTRFS_I(inode)->delalloc_bytes == 0 &&
Chris Masonea8c2812008-08-04 23:17:27 -04001384 !list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1385 list_del_init(&BTRFS_I(inode)->delalloc_inodes);
1386 }
Chris Mason75eff682008-12-15 15:54:40 -05001387 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason291d6732008-01-29 15:55:23 -05001388 }
1389 return 0;
1390}
1391
Chris Masond352ac62008-09-29 15:18:18 -04001392/*
1393 * extent_io.c merge_bio_hook, this must check the chunk tree to make sure
1394 * we don't create bios that span stripes or chunks
1395 */
Chris Mason239b14b2008-03-24 15:02:07 -04001396int btrfs_merge_bio_hook(struct page *page, unsigned long offset,
Chris Masonc8b97812008-10-29 14:49:59 -04001397 size_t size, struct bio *bio,
1398 unsigned long bio_flags)
Chris Mason239b14b2008-03-24 15:02:07 -04001399{
1400 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
1401 struct btrfs_mapping_tree *map_tree;
Chris Masona62b9402008-10-03 16:31:08 -04001402 u64 logical = (u64)bio->bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -04001403 u64 length = 0;
1404 u64 map_length;
Chris Mason239b14b2008-03-24 15:02:07 -04001405 int ret;
1406
Chris Mason771ed682008-11-06 22:02:51 -05001407 if (bio_flags & EXTENT_BIO_COMPRESSED)
1408 return 0;
1409
Chris Masonf2d8d742008-04-21 10:03:05 -04001410 length = bio->bi_size;
Chris Mason239b14b2008-03-24 15:02:07 -04001411 map_tree = &root->fs_info->mapping_tree;
1412 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04001413 ret = btrfs_map_block(map_tree, READ, logical,
Chris Masonf1885912008-04-09 16:28:12 -04001414 &map_length, NULL, 0);
Chris Masoncea9e442008-04-09 16:28:12 -04001415
Chris Masond3977122009-01-05 21:25:51 -05001416 if (map_length < length + size)
Chris Mason239b14b2008-03-24 15:02:07 -04001417 return 1;
Andi Kleen411fc6b2010-10-29 15:14:31 -04001418 return ret;
Chris Mason239b14b2008-03-24 15:02:07 -04001419}
1420
Chris Masond352ac62008-09-29 15:18:18 -04001421/*
1422 * in order to insert checksums into the metadata in large chunks,
1423 * we wait until bio submission time. All the pages in the bio are
1424 * checksummed and sums are attached onto the ordered extent record.
1425 *
1426 * At IO completion time the cums attached on the ordered extent record
1427 * are inserted into the btree
1428 */
Chris Masond3977122009-01-05 21:25:51 -05001429static int __btrfs_submit_bio_start(struct inode *inode, int rw,
1430 struct bio *bio, int mirror_num,
Chris Masoneaf25d92010-05-25 09:48:28 -04001431 unsigned long bio_flags,
1432 u64 bio_offset)
Chris Mason065631f2008-02-20 12:07:25 -05001433{
Chris Mason065631f2008-02-20 12:07:25 -05001434 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason065631f2008-02-20 12:07:25 -05001435 int ret = 0;
Chris Masone0156402008-04-16 11:15:20 -04001436
Chris Masond20f7042008-12-08 16:58:54 -05001437 ret = btrfs_csum_one_bio(root, inode, bio, 0, 0);
Chris Mason44b8bd72008-04-16 11:14:51 -04001438 BUG_ON(ret);
Chris Mason4a69a412008-11-06 22:03:00 -05001439 return 0;
1440}
Chris Masone0156402008-04-16 11:15:20 -04001441
Chris Mason4a69a412008-11-06 22:03:00 -05001442/*
1443 * in order to insert checksums into the metadata in large chunks,
1444 * we wait until bio submission time. All the pages in the bio are
1445 * checksummed and sums are attached onto the ordered extent record.
1446 *
1447 * At IO completion time the cums attached on the ordered extent record
1448 * are inserted into the btree
1449 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001450static int __btrfs_submit_bio_done(struct inode *inode, int rw, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001451 int mirror_num, unsigned long bio_flags,
1452 u64 bio_offset)
Chris Mason4a69a412008-11-06 22:03:00 -05001453{
1454 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason8b712842008-06-11 16:50:36 -04001455 return btrfs_map_bio(root, rw, bio, mirror_num, 1);
Chris Mason44b8bd72008-04-16 11:14:51 -04001456}
1457
Chris Masond352ac62008-09-29 15:18:18 -04001458/*
Chris Masoncad321a2008-12-17 14:51:42 -05001459 * extent_io.c submission hook. This does the right thing for csum calculation
1460 * on write, or reading the csums from the tree before a read
Chris Masond352ac62008-09-29 15:18:18 -04001461 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001462static int btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001463 int mirror_num, unsigned long bio_flags,
1464 u64 bio_offset)
Chris Mason44b8bd72008-04-16 11:14:51 -04001465{
1466 struct btrfs_root *root = BTRFS_I(inode)->root;
1467 int ret = 0;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001468 int skip_sum;
Chris Mason44b8bd72008-04-16 11:14:51 -04001469
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001470 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
Chris Masoncad321a2008-12-17 14:51:42 -05001471
Li Zefan82d59022011-04-20 10:33:24 +08001472 if (is_free_space_inode(root, inode))
Josef Bacik0cb59c92010-07-02 12:14:14 -04001473 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 2);
1474 else
1475 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001476 BUG_ON(ret);
Chris Mason065631f2008-02-20 12:07:25 -05001477
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001478 if (!(rw & REQ_WRITE)) {
Chris Masond20f7042008-12-08 16:58:54 -05001479 if (bio_flags & EXTENT_BIO_COMPRESSED) {
Chris Masonc8b97812008-10-29 14:49:59 -04001480 return btrfs_submit_compressed_read(inode, bio,
1481 mirror_num, bio_flags);
Tsutomu Itohc2db1072011-03-01 06:48:31 +00001482 } else if (!skip_sum) {
1483 ret = btrfs_lookup_bio_sums(root, inode, bio, NULL);
1484 if (ret)
1485 return ret;
1486 }
Chris Mason4d1b5fb2008-08-20 09:44:52 -04001487 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001488 } else if (!skip_sum) {
Yan Zheng17d217f2008-12-12 10:03:38 -05001489 /* csum items have already been cloned */
1490 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
1491 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001492 /* we're doing a write, do the async checksumming */
1493 return btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
Chris Mason44b8bd72008-04-16 11:14:51 -04001494 inode, rw, bio, mirror_num,
Chris Masoneaf25d92010-05-25 09:48:28 -04001495 bio_flags, bio_offset,
1496 __btrfs_submit_bio_start,
Chris Mason4a69a412008-11-06 22:03:00 -05001497 __btrfs_submit_bio_done);
Chris Mason19b9bdb2008-10-30 14:23:13 -04001498 }
1499
Chris Mason0b86a832008-03-24 15:01:56 -04001500mapit:
Chris Mason8b712842008-06-11 16:50:36 -04001501 return btrfs_map_bio(root, rw, bio, mirror_num, 0);
Chris Mason065631f2008-02-20 12:07:25 -05001502}
Chris Mason6885f302008-02-20 16:11:05 -05001503
Chris Masond352ac62008-09-29 15:18:18 -04001504/*
1505 * given a list of ordered sums record them in the inode. This happens
1506 * at IO completion time based on sums calculated at bio submission time.
1507 */
Chris Masonba1da2f2008-07-17 12:54:15 -04001508static noinline int add_pending_csums(struct btrfs_trans_handle *trans,
Chris Masone6dcd2d2008-07-17 12:53:50 -04001509 struct inode *inode, u64 file_offset,
1510 struct list_head *list)
1511{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001512 struct btrfs_ordered_sum *sum;
1513
1514 btrfs_set_trans_block_group(trans, inode);
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001515
1516 list_for_each_entry(sum, list, list) {
Chris Masond20f7042008-12-08 16:58:54 -05001517 btrfs_csum_file_blocks(trans,
1518 BTRFS_I(inode)->root->fs_info->csum_root, sum);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001519 }
1520 return 0;
1521}
1522
Josef Bacik2ac55d42010-02-03 19:33:23 +00001523int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end,
1524 struct extent_state **cached_state)
Chris Masonea8c2812008-08-04 23:17:27 -04001525{
Chris Masond3977122009-01-05 21:25:51 -05001526 if ((end & (PAGE_CACHE_SIZE - 1)) == 0)
Chris Mason771ed682008-11-06 22:02:51 -05001527 WARN_ON(1);
Chris Masonea8c2812008-08-04 23:17:27 -04001528 return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001529 cached_state, GFP_NOFS);
Chris Masonea8c2812008-08-04 23:17:27 -04001530}
1531
Chris Masond352ac62008-09-29 15:18:18 -04001532/* see btrfs_writepage_start_hook for details on why this is required */
Chris Mason247e7432008-07-17 12:53:51 -04001533struct btrfs_writepage_fixup {
1534 struct page *page;
1535 struct btrfs_work work;
1536};
1537
Christoph Hellwigb2950862008-12-02 09:54:17 -05001538static void btrfs_writepage_fixup_worker(struct btrfs_work *work)
Chris Mason247e7432008-07-17 12:53:51 -04001539{
1540 struct btrfs_writepage_fixup *fixup;
1541 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00001542 struct extent_state *cached_state = NULL;
Chris Mason247e7432008-07-17 12:53:51 -04001543 struct page *page;
1544 struct inode *inode;
1545 u64 page_start;
1546 u64 page_end;
1547
1548 fixup = container_of(work, struct btrfs_writepage_fixup, work);
1549 page = fixup->page;
Chris Mason4a096752008-07-21 10:29:44 -04001550again:
Chris Mason247e7432008-07-17 12:53:51 -04001551 lock_page(page);
1552 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
1553 ClearPageChecked(page);
1554 goto out_page;
1555 }
1556
1557 inode = page->mapping->host;
1558 page_start = page_offset(page);
1559 page_end = page_offset(page) + PAGE_CACHE_SIZE - 1;
1560
Josef Bacik2ac55d42010-02-03 19:33:23 +00001561 lock_extent_bits(&BTRFS_I(inode)->io_tree, page_start, page_end, 0,
1562 &cached_state, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -04001563
1564 /* already ordered? We're done */
Chris Mason8b62b722009-09-02 16:53:46 -04001565 if (PagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001566 goto out;
Chris Mason4a096752008-07-21 10:29:44 -04001567
1568 ordered = btrfs_lookup_ordered_extent(inode, page_start);
1569 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00001570 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start,
1571 page_end, &cached_state, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -04001572 unlock_page(page);
1573 btrfs_start_ordered_extent(inode, ordered, 1);
1574 goto again;
1575 }
Chris Mason247e7432008-07-17 12:53:51 -04001576
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001577 BUG();
Josef Bacik2ac55d42010-02-03 19:33:23 +00001578 btrfs_set_extent_delalloc(inode, page_start, page_end, &cached_state);
Chris Mason247e7432008-07-17 12:53:51 -04001579 ClearPageChecked(page);
1580out:
Josef Bacik2ac55d42010-02-03 19:33:23 +00001581 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start, page_end,
1582 &cached_state, GFP_NOFS);
Chris Mason247e7432008-07-17 12:53:51 -04001583out_page:
1584 unlock_page(page);
1585 page_cache_release(page);
Miao Xieb897abe2011-01-26 16:19:22 +08001586 kfree(fixup);
Chris Mason247e7432008-07-17 12:53:51 -04001587}
1588
1589/*
1590 * There are a few paths in the higher layers of the kernel that directly
1591 * set the page dirty bit without asking the filesystem if it is a
1592 * good idea. This causes problems because we want to make sure COW
1593 * properly happens and the data=ordered rules are followed.
1594 *
Chris Masonc8b97812008-10-29 14:49:59 -04001595 * In our case any range that doesn't have the ORDERED bit set
Chris Mason247e7432008-07-17 12:53:51 -04001596 * hasn't been properly setup for IO. We kick off an async process
1597 * to fix it up. The async helper will wait for ordered extents, set
1598 * the delalloc bit and make it safe to write the page.
1599 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001600static int btrfs_writepage_start_hook(struct page *page, u64 start, u64 end)
Chris Mason247e7432008-07-17 12:53:51 -04001601{
1602 struct inode *inode = page->mapping->host;
1603 struct btrfs_writepage_fixup *fixup;
1604 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason247e7432008-07-17 12:53:51 -04001605
Chris Mason8b62b722009-09-02 16:53:46 -04001606 /* this page is properly in the ordered list */
1607 if (TestClearPagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001608 return 0;
1609
1610 if (PageChecked(page))
1611 return -EAGAIN;
1612
1613 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
1614 if (!fixup)
1615 return -EAGAIN;
Chris Masonf4219502008-07-22 11:18:09 -04001616
Chris Mason247e7432008-07-17 12:53:51 -04001617 SetPageChecked(page);
1618 page_cache_get(page);
1619 fixup->work.func = btrfs_writepage_fixup_worker;
1620 fixup->page = page;
1621 btrfs_queue_worker(&root->fs_info->fixup_workers, &fixup->work);
1622 return -EAGAIN;
1623}
1624
Yan Zhengd899e052008-10-30 14:25:28 -04001625static int insert_reserved_file_extent(struct btrfs_trans_handle *trans,
1626 struct inode *inode, u64 file_pos,
1627 u64 disk_bytenr, u64 disk_num_bytes,
1628 u64 num_bytes, u64 ram_bytes,
1629 u8 compression, u8 encryption,
1630 u16 other_encoding, int extent_type)
1631{
1632 struct btrfs_root *root = BTRFS_I(inode)->root;
1633 struct btrfs_file_extent_item *fi;
1634 struct btrfs_path *path;
1635 struct extent_buffer *leaf;
1636 struct btrfs_key ins;
1637 u64 hint;
1638 int ret;
1639
1640 path = btrfs_alloc_path();
1641 BUG_ON(!path);
1642
Chris Masonb9473432009-03-13 11:00:37 -04001643 path->leave_spinning = 1;
Chris Masona1ed8352009-09-11 12:27:37 -04001644
1645 /*
1646 * we may be replacing one extent in the tree with another.
1647 * The new extent is pinned in the extent map, and we don't want
1648 * to drop it from the cache until it is completely in the btree.
1649 *
1650 * So, tell btrfs_drop_extents to leave this extent in the cache.
1651 * the caller is expected to unpin it and allow it to be merged
1652 * with the others.
1653 */
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001654 ret = btrfs_drop_extents(trans, inode, file_pos, file_pos + num_bytes,
1655 &hint, 0);
Yan Zhengd899e052008-10-30 14:25:28 -04001656 BUG_ON(ret);
1657
Li Zefan33345d012011-04-20 10:31:50 +08001658 ins.objectid = btrfs_ino(inode);
Yan Zhengd899e052008-10-30 14:25:28 -04001659 ins.offset = file_pos;
1660 ins.type = BTRFS_EXTENT_DATA_KEY;
1661 ret = btrfs_insert_empty_item(trans, root, path, &ins, sizeof(*fi));
1662 BUG_ON(ret);
1663 leaf = path->nodes[0];
1664 fi = btrfs_item_ptr(leaf, path->slots[0],
1665 struct btrfs_file_extent_item);
1666 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
1667 btrfs_set_file_extent_type(leaf, fi, extent_type);
1668 btrfs_set_file_extent_disk_bytenr(leaf, fi, disk_bytenr);
1669 btrfs_set_file_extent_disk_num_bytes(leaf, fi, disk_num_bytes);
1670 btrfs_set_file_extent_offset(leaf, fi, 0);
1671 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
1672 btrfs_set_file_extent_ram_bytes(leaf, fi, ram_bytes);
1673 btrfs_set_file_extent_compression(leaf, fi, compression);
1674 btrfs_set_file_extent_encryption(leaf, fi, encryption);
1675 btrfs_set_file_extent_other_encoding(leaf, fi, other_encoding);
Chris Masonb9473432009-03-13 11:00:37 -04001676
1677 btrfs_unlock_up_safe(path, 1);
1678 btrfs_set_lock_blocking(leaf);
1679
Yan Zhengd899e052008-10-30 14:25:28 -04001680 btrfs_mark_buffer_dirty(leaf);
1681
1682 inode_add_bytes(inode, num_bytes);
Yan Zhengd899e052008-10-30 14:25:28 -04001683
1684 ins.objectid = disk_bytenr;
1685 ins.offset = disk_num_bytes;
1686 ins.type = BTRFS_EXTENT_ITEM_KEY;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001687 ret = btrfs_alloc_reserved_file_extent(trans, root,
1688 root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08001689 btrfs_ino(inode), file_pos, &ins);
Yan Zhengd899e052008-10-30 14:25:28 -04001690 BUG_ON(ret);
Yan Zhengd899e052008-10-30 14:25:28 -04001691 btrfs_free_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04001692
Yan Zhengd899e052008-10-30 14:25:28 -04001693 return 0;
1694}
1695
Chris Mason5d13a982009-03-13 11:41:46 -04001696/*
1697 * helper function for btrfs_finish_ordered_io, this
1698 * just reads in some of the csum leaves to prime them into ram
1699 * before we start the transaction. It limits the amount of btree
1700 * reads required while inside the transaction.
1701 */
Chris Masond352ac62008-09-29 15:18:18 -04001702/* as ordered data IO finishes, this gets called so we can finish
1703 * an ordered extent if the range of bytes in the file it covers are
1704 * fully written.
1705 */
Chris Mason211f90e2008-07-18 11:56:15 -04001706static int btrfs_finish_ordered_io(struct inode *inode, u64 start, u64 end)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001707{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001708 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001709 struct btrfs_trans_handle *trans = NULL;
Chris Mason5d13a982009-03-13 11:41:46 -04001710 struct btrfs_ordered_extent *ordered_extent = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001711 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Josef Bacik2ac55d42010-02-03 19:33:23 +00001712 struct extent_state *cached_state = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08001713 int compress_type = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001714 int ret;
Li Zefan82d59022011-04-20 10:33:24 +08001715 bool nolock;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001716
Josef Bacik5a1a3df2010-02-02 20:51:14 +00001717 ret = btrfs_dec_test_ordered_pending(inode, &ordered_extent, start,
1718 end - start + 1);
Chris Masonba1da2f2008-07-17 12:54:15 -04001719 if (!ret)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001720 return 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001721 BUG_ON(!ordered_extent);
Josef Bacikefd049f2010-02-02 20:50:10 +00001722
Li Zefan82d59022011-04-20 10:33:24 +08001723 nolock = is_free_space_inode(root, inode);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001724
Yan, Zhengc2167752009-11-12 09:34:21 +00001725 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags)) {
1726 BUG_ON(!list_empty(&ordered_extent->list));
1727 ret = btrfs_ordered_update_i_size(inode, 0, ordered_extent);
1728 if (!ret) {
Josef Bacik0cb59c92010-07-02 12:14:14 -04001729 if (nolock)
1730 trans = btrfs_join_transaction_nolock(root, 1);
1731 else
1732 trans = btrfs_join_transaction(root, 1);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00001733 BUG_ON(IS_ERR(trans));
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001734 btrfs_set_trans_block_group(trans, inode);
1735 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Yan, Zhengc2167752009-11-12 09:34:21 +00001736 ret = btrfs_update_inode(trans, root, inode);
1737 BUG_ON(ret);
Yan, Zhengc2167752009-11-12 09:34:21 +00001738 }
1739 goto out;
1740 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04001741
Josef Bacik2ac55d42010-02-03 19:33:23 +00001742 lock_extent_bits(io_tree, ordered_extent->file_offset,
1743 ordered_extent->file_offset + ordered_extent->len - 1,
1744 0, &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001745
Josef Bacik0cb59c92010-07-02 12:14:14 -04001746 if (nolock)
1747 trans = btrfs_join_transaction_nolock(root, 1);
1748 else
1749 trans = btrfs_join_transaction(root, 1);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00001750 BUG_ON(IS_ERR(trans));
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001751 btrfs_set_trans_block_group(trans, inode);
1752 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Yan, Zhengc2167752009-11-12 09:34:21 +00001753
Chris Masonc8b97812008-10-29 14:49:59 -04001754 if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags))
Li Zefan261507a02010-12-17 14:21:50 +08001755 compress_type = ordered_extent->compress_type;
Yan Zhengd899e052008-10-30 14:25:28 -04001756 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
Li Zefan261507a02010-12-17 14:21:50 +08001757 BUG_ON(compress_type);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001758 ret = btrfs_mark_extent_written(trans, inode,
Yan Zhengd899e052008-10-30 14:25:28 -04001759 ordered_extent->file_offset,
1760 ordered_extent->file_offset +
1761 ordered_extent->len);
1762 BUG_ON(ret);
1763 } else {
Josef Bacik0af3d002010-06-21 14:48:16 -04001764 BUG_ON(root == root->fs_info->tree_root);
Yan Zhengd899e052008-10-30 14:25:28 -04001765 ret = insert_reserved_file_extent(trans, inode,
1766 ordered_extent->file_offset,
1767 ordered_extent->start,
1768 ordered_extent->disk_len,
1769 ordered_extent->len,
1770 ordered_extent->len,
Li Zefan261507a02010-12-17 14:21:50 +08001771 compress_type, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04001772 BTRFS_FILE_EXTENT_REG);
Chris Masona1ed8352009-09-11 12:27:37 -04001773 unpin_extent_cache(&BTRFS_I(inode)->extent_tree,
1774 ordered_extent->file_offset,
1775 ordered_extent->len);
Yan Zhengd899e052008-10-30 14:25:28 -04001776 BUG_ON(ret);
1777 }
Josef Bacik2ac55d42010-02-03 19:33:23 +00001778 unlock_extent_cached(io_tree, ordered_extent->file_offset,
1779 ordered_extent->file_offset +
1780 ordered_extent->len - 1, &cached_state, GFP_NOFS);
1781
Chris Masone6dcd2d2008-07-17 12:53:50 -04001782 add_pending_csums(trans, inode, ordered_extent->file_offset,
1783 &ordered_extent->list);
1784
Josef Bacik1ef30be2011-04-05 19:25:36 -04001785 ret = btrfs_ordered_update_i_size(inode, 0, ordered_extent);
1786 if (!ret) {
1787 ret = btrfs_update_inode(trans, root, inode);
1788 BUG_ON(ret);
1789 }
1790 ret = 0;
Yan, Zhengc2167752009-11-12 09:34:21 +00001791out:
Josef Bacik0cb59c92010-07-02 12:14:14 -04001792 if (nolock) {
1793 if (trans)
1794 btrfs_end_transaction_nolock(trans, root);
1795 } else {
1796 btrfs_delalloc_release_metadata(inode, ordered_extent->len);
1797 if (trans)
1798 btrfs_end_transaction(trans, root);
1799 }
1800
Chris Masone6dcd2d2008-07-17 12:53:50 -04001801 /* once for us */
1802 btrfs_put_ordered_extent(ordered_extent);
1803 /* once for the tree */
1804 btrfs_put_ordered_extent(ordered_extent);
1805
Chris Masone6dcd2d2008-07-17 12:53:50 -04001806 return 0;
1807}
1808
Christoph Hellwigb2950862008-12-02 09:54:17 -05001809static int btrfs_writepage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason211f90e2008-07-18 11:56:15 -04001810 struct extent_state *state, int uptodate)
1811{
liubo1abe9b82011-03-24 11:18:59 +00001812 trace_btrfs_writepage_end_io_hook(page, start, end, uptodate);
1813
Chris Mason8b62b722009-09-02 16:53:46 -04001814 ClearPagePrivate2(page);
Chris Mason211f90e2008-07-18 11:56:15 -04001815 return btrfs_finish_ordered_io(page->mapping->host, start, end);
1816}
1817
Chris Masond352ac62008-09-29 15:18:18 -04001818/*
1819 * When IO fails, either with EIO or csum verification fails, we
1820 * try other mirrors that might have a good copy of the data. This
1821 * io_failure_record is used to record state as we go through all the
1822 * mirrors. If another mirror has good data, the page is set up to date
1823 * and things continue. If a good mirror can't be found, the original
1824 * bio end_io callback is called to indicate things have failed.
1825 */
Chris Mason7e383262008-04-09 16:28:12 -04001826struct io_failure_record {
1827 struct page *page;
1828 u64 start;
1829 u64 len;
1830 u64 logical;
Chris Masond20f7042008-12-08 16:58:54 -05001831 unsigned long bio_flags;
Chris Mason7e383262008-04-09 16:28:12 -04001832 int last_mirror;
1833};
1834
Christoph Hellwigb2950862008-12-02 09:54:17 -05001835static int btrfs_io_failed_hook(struct bio *failed_bio,
Chris Mason1259ab72008-05-12 13:39:03 -04001836 struct page *page, u64 start, u64 end,
1837 struct extent_state *state)
Chris Mason7e383262008-04-09 16:28:12 -04001838{
1839 struct io_failure_record *failrec = NULL;
1840 u64 private;
1841 struct extent_map *em;
1842 struct inode *inode = page->mapping->host;
1843 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
Chris Mason3b951512008-04-17 11:29:12 -04001844 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason7e383262008-04-09 16:28:12 -04001845 struct bio *bio;
1846 int num_copies;
1847 int ret;
Chris Mason1259ab72008-05-12 13:39:03 -04001848 int rw;
Chris Mason7e383262008-04-09 16:28:12 -04001849 u64 logical;
1850
1851 ret = get_state_private(failure_tree, start, &private);
1852 if (ret) {
Chris Mason7e383262008-04-09 16:28:12 -04001853 failrec = kmalloc(sizeof(*failrec), GFP_NOFS);
1854 if (!failrec)
1855 return -ENOMEM;
1856 failrec->start = start;
1857 failrec->len = end - start + 1;
1858 failrec->last_mirror = 0;
Chris Masond20f7042008-12-08 16:58:54 -05001859 failrec->bio_flags = 0;
Chris Mason7e383262008-04-09 16:28:12 -04001860
Chris Mason890871b2009-09-02 16:24:52 -04001861 read_lock(&em_tree->lock);
Chris Mason3b951512008-04-17 11:29:12 -04001862 em = lookup_extent_mapping(em_tree, start, failrec->len);
1863 if (em->start > start || em->start + em->len < start) {
1864 free_extent_map(em);
1865 em = NULL;
1866 }
Chris Mason890871b2009-09-02 16:24:52 -04001867 read_unlock(&em_tree->lock);
Chris Mason7e383262008-04-09 16:28:12 -04001868
David Sterbac7040052011-04-19 18:00:01 +02001869 if (IS_ERR_OR_NULL(em)) {
Chris Mason7e383262008-04-09 16:28:12 -04001870 kfree(failrec);
1871 return -EIO;
1872 }
1873 logical = start - em->start;
1874 logical = em->block_start + logical;
Chris Masond20f7042008-12-08 16:58:54 -05001875 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
1876 logical = em->block_start;
1877 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
Li Zefan261507a02010-12-17 14:21:50 +08001878 extent_set_compress_type(&failrec->bio_flags,
1879 em->compress_type);
Chris Masond20f7042008-12-08 16:58:54 -05001880 }
Chris Mason7e383262008-04-09 16:28:12 -04001881 failrec->logical = logical;
1882 free_extent_map(em);
1883 set_extent_bits(failure_tree, start, end, EXTENT_LOCKED |
1884 EXTENT_DIRTY, GFP_NOFS);
Chris Mason587f7702008-04-11 12:16:46 -04001885 set_state_private(failure_tree, start,
1886 (u64)(unsigned long)failrec);
Chris Mason7e383262008-04-09 16:28:12 -04001887 } else {
Chris Mason587f7702008-04-11 12:16:46 -04001888 failrec = (struct io_failure_record *)(unsigned long)private;
Chris Mason7e383262008-04-09 16:28:12 -04001889 }
1890 num_copies = btrfs_num_copies(
1891 &BTRFS_I(inode)->root->fs_info->mapping_tree,
1892 failrec->logical, failrec->len);
1893 failrec->last_mirror++;
1894 if (!state) {
Chris Masoncad321a2008-12-17 14:51:42 -05001895 spin_lock(&BTRFS_I(inode)->io_tree.lock);
Chris Mason7e383262008-04-09 16:28:12 -04001896 state = find_first_extent_bit_state(&BTRFS_I(inode)->io_tree,
1897 failrec->start,
1898 EXTENT_LOCKED);
1899 if (state && state->start != failrec->start)
1900 state = NULL;
Chris Masoncad321a2008-12-17 14:51:42 -05001901 spin_unlock(&BTRFS_I(inode)->io_tree.lock);
Chris Mason7e383262008-04-09 16:28:12 -04001902 }
1903 if (!state || failrec->last_mirror > num_copies) {
1904 set_state_private(failure_tree, failrec->start, 0);
1905 clear_extent_bits(failure_tree, failrec->start,
1906 failrec->start + failrec->len - 1,
1907 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
1908 kfree(failrec);
1909 return -EIO;
1910 }
1911 bio = bio_alloc(GFP_NOFS, 1);
1912 bio->bi_private = state;
1913 bio->bi_end_io = failed_bio->bi_end_io;
1914 bio->bi_sector = failrec->logical >> 9;
1915 bio->bi_bdev = failed_bio->bi_bdev;
Chris Masone1c4b742008-04-22 13:26:46 -04001916 bio->bi_size = 0;
Chris Masond20f7042008-12-08 16:58:54 -05001917
Chris Mason7e383262008-04-09 16:28:12 -04001918 bio_add_page(bio, page, failrec->len, start - page_offset(page));
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001919 if (failed_bio->bi_rw & REQ_WRITE)
Chris Mason1259ab72008-05-12 13:39:03 -04001920 rw = WRITE;
1921 else
1922 rw = READ;
1923
Tsutomu Itohc2db1072011-03-01 06:48:31 +00001924 ret = BTRFS_I(inode)->io_tree.ops->submit_bio_hook(inode, rw, bio,
Chris Masonc8b97812008-10-29 14:49:59 -04001925 failrec->last_mirror,
Chris Masoneaf25d92010-05-25 09:48:28 -04001926 failrec->bio_flags, 0);
Tsutomu Itohc2db1072011-03-01 06:48:31 +00001927 return ret;
Chris Mason1259ab72008-05-12 13:39:03 -04001928}
1929
Chris Masond352ac62008-09-29 15:18:18 -04001930/*
1931 * each time an IO finishes, we do a fast check in the IO failure tree
1932 * to see if we need to process or clean up an io_failure_record
1933 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001934static int btrfs_clean_io_failures(struct inode *inode, u64 start)
Chris Mason1259ab72008-05-12 13:39:03 -04001935{
1936 u64 private;
1937 u64 private_failure;
1938 struct io_failure_record *failure;
1939 int ret;
1940
1941 private = 0;
1942 if (count_range_bits(&BTRFS_I(inode)->io_failure_tree, &private,
Chris Masonec29ed52011-02-23 16:23:20 -05001943 (u64)-1, 1, EXTENT_DIRTY, 0)) {
Chris Mason1259ab72008-05-12 13:39:03 -04001944 ret = get_state_private(&BTRFS_I(inode)->io_failure_tree,
1945 start, &private_failure);
1946 if (ret == 0) {
1947 failure = (struct io_failure_record *)(unsigned long)
1948 private_failure;
1949 set_state_private(&BTRFS_I(inode)->io_failure_tree,
1950 failure->start, 0);
1951 clear_extent_bits(&BTRFS_I(inode)->io_failure_tree,
1952 failure->start,
1953 failure->start + failure->len - 1,
1954 EXTENT_DIRTY | EXTENT_LOCKED,
1955 GFP_NOFS);
1956 kfree(failure);
1957 }
1958 }
Chris Mason7e383262008-04-09 16:28:12 -04001959 return 0;
1960}
1961
Chris Masond352ac62008-09-29 15:18:18 -04001962/*
1963 * when reads are done, we need to check csums to verify the data is correct
1964 * if there's a match, we allow the bio to finish. If not, we go through
1965 * the io_failure_record routines to find good copies
1966 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001967static int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason70dec802008-01-29 09:59:12 -05001968 struct extent_state *state)
Chris Mason07157aa2007-08-30 08:50:51 -04001969{
Chris Mason35ebb932007-10-30 16:56:53 -04001970 size_t offset = start - ((u64)page->index << PAGE_CACHE_SHIFT);
Chris Mason07157aa2007-08-30 08:50:51 -04001971 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05001972 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -04001973 char *kaddr;
Chris Masonaadfeb62008-01-29 09:10:27 -05001974 u64 private = ~(u32)0;
Chris Mason07157aa2007-08-30 08:50:51 -04001975 int ret;
Chris Masonff79f812007-10-15 16:22:25 -04001976 struct btrfs_root *root = BTRFS_I(inode)->root;
1977 u32 csum = ~(u32)0;
Chris Masond1310b22008-01-24 16:13:08 -05001978
Chris Masond20f7042008-12-08 16:58:54 -05001979 if (PageChecked(page)) {
1980 ClearPageChecked(page);
1981 goto good;
1982 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001983
1984 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)
Chris Masonb6cda9b2007-12-14 15:30:32 -05001985 return 0;
Chris Masond20f7042008-12-08 16:58:54 -05001986
Yan Zheng17d217f2008-12-12 10:03:38 -05001987 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID &&
Chris Mason9655d292009-09-02 15:22:30 -04001988 test_range_bit(io_tree, start, end, EXTENT_NODATASUM, 1, NULL)) {
Yan Zheng17d217f2008-12-12 10:03:38 -05001989 clear_extent_bits(io_tree, start, end, EXTENT_NODATASUM,
1990 GFP_NOFS);
1991 return 0;
1992 }
1993
Yanc2e639f2008-02-04 08:57:25 -05001994 if (state && state->start == start) {
Chris Mason70dec802008-01-29 09:59:12 -05001995 private = state->private;
1996 ret = 0;
1997 } else {
1998 ret = get_state_private(io_tree, start, &private);
1999 }
Chris Mason9ab86c82009-01-07 09:48:51 -05002000 kaddr = kmap_atomic(page, KM_USER0);
Chris Masond3977122009-01-05 21:25:51 -05002001 if (ret)
Chris Mason07157aa2007-08-30 08:50:51 -04002002 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05002003
Chris Masonff79f812007-10-15 16:22:25 -04002004 csum = btrfs_csum_data(root, kaddr + offset, csum, end - start + 1);
2005 btrfs_csum_final(csum, (char *)&csum);
Chris Masond3977122009-01-05 21:25:51 -05002006 if (csum != private)
Chris Mason07157aa2007-08-30 08:50:51 -04002007 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05002008
Chris Mason9ab86c82009-01-07 09:48:51 -05002009 kunmap_atomic(kaddr, KM_USER0);
Chris Masond20f7042008-12-08 16:58:54 -05002010good:
Chris Mason7e383262008-04-09 16:28:12 -04002011 /* if the io failure tree for this inode is non-empty,
2012 * check to see if we've recovered from a failed IO
2013 */
Chris Mason1259ab72008-05-12 13:39:03 -04002014 btrfs_clean_io_failures(inode, start);
Chris Mason07157aa2007-08-30 08:50:51 -04002015 return 0;
2016
2017zeroit:
Chris Mason945d8962011-05-22 12:33:42 -04002018 printk_ratelimited(KERN_INFO "btrfs csum failed ino %llu off %llu csum %u "
Li Zefan33345d012011-04-20 10:31:50 +08002019 "private %llu\n",
2020 (unsigned long long)btrfs_ino(page->mapping->host),
Chris Mason193f2842009-04-27 07:29:05 -04002021 (unsigned long long)start, csum,
2022 (unsigned long long)private);
Chris Masondb945352007-10-15 16:15:53 -04002023 memset(kaddr + offset, 1, end - start + 1);
2024 flush_dcache_page(page);
Chris Mason9ab86c82009-01-07 09:48:51 -05002025 kunmap_atomic(kaddr, KM_USER0);
Chris Mason3b951512008-04-17 11:29:12 -04002026 if (private == 0)
2027 return 0;
Chris Mason7e383262008-04-09 16:28:12 -04002028 return -EIO;
Chris Mason07157aa2007-08-30 08:50:51 -04002029}
Chris Masonb888db22007-08-27 16:49:44 -04002030
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002031struct delayed_iput {
2032 struct list_head list;
2033 struct inode *inode;
2034};
2035
2036void btrfs_add_delayed_iput(struct inode *inode)
2037{
2038 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
2039 struct delayed_iput *delayed;
2040
2041 if (atomic_add_unless(&inode->i_count, -1, 1))
2042 return;
2043
2044 delayed = kmalloc(sizeof(*delayed), GFP_NOFS | __GFP_NOFAIL);
2045 delayed->inode = inode;
2046
2047 spin_lock(&fs_info->delayed_iput_lock);
2048 list_add_tail(&delayed->list, &fs_info->delayed_iputs);
2049 spin_unlock(&fs_info->delayed_iput_lock);
2050}
2051
2052void btrfs_run_delayed_iputs(struct btrfs_root *root)
2053{
2054 LIST_HEAD(list);
2055 struct btrfs_fs_info *fs_info = root->fs_info;
2056 struct delayed_iput *delayed;
2057 int empty;
2058
2059 spin_lock(&fs_info->delayed_iput_lock);
2060 empty = list_empty(&fs_info->delayed_iputs);
2061 spin_unlock(&fs_info->delayed_iput_lock);
2062 if (empty)
2063 return;
2064
2065 down_read(&root->fs_info->cleanup_work_sem);
2066 spin_lock(&fs_info->delayed_iput_lock);
2067 list_splice_init(&fs_info->delayed_iputs, &list);
2068 spin_unlock(&fs_info->delayed_iput_lock);
2069
2070 while (!list_empty(&list)) {
2071 delayed = list_entry(list.next, struct delayed_iput, list);
2072 list_del(&delayed->list);
2073 iput(delayed->inode);
2074 kfree(delayed);
2075 }
2076 up_read(&root->fs_info->cleanup_work_sem);
2077}
2078
Josef Bacik7b128762008-07-24 12:17:14 -04002079/*
Yan, Zhengd68fc572010-05-16 10:49:58 -04002080 * calculate extra metadata reservation when snapshotting a subvolume
2081 * contains orphan files.
2082 */
2083void btrfs_orphan_pre_snapshot(struct btrfs_trans_handle *trans,
2084 struct btrfs_pending_snapshot *pending,
2085 u64 *bytes_to_reserve)
2086{
2087 struct btrfs_root *root;
2088 struct btrfs_block_rsv *block_rsv;
2089 u64 num_bytes;
2090 int index;
2091
2092 root = pending->root;
2093 if (!root->orphan_block_rsv || list_empty(&root->orphan_list))
2094 return;
2095
2096 block_rsv = root->orphan_block_rsv;
2097
2098 /* orphan block reservation for the snapshot */
2099 num_bytes = block_rsv->size;
2100
2101 /*
2102 * after the snapshot is created, COWing tree blocks may use more
2103 * space than it frees. So we should make sure there is enough
2104 * reserved space.
2105 */
2106 index = trans->transid & 0x1;
2107 if (block_rsv->reserved + block_rsv->freed[index] < block_rsv->size) {
2108 num_bytes += block_rsv->size -
2109 (block_rsv->reserved + block_rsv->freed[index]);
2110 }
2111
2112 *bytes_to_reserve += num_bytes;
2113}
2114
2115void btrfs_orphan_post_snapshot(struct btrfs_trans_handle *trans,
2116 struct btrfs_pending_snapshot *pending)
2117{
2118 struct btrfs_root *root = pending->root;
2119 struct btrfs_root *snap = pending->snap;
2120 struct btrfs_block_rsv *block_rsv;
2121 u64 num_bytes;
2122 int index;
2123 int ret;
2124
2125 if (!root->orphan_block_rsv || list_empty(&root->orphan_list))
2126 return;
2127
2128 /* refill source subvolume's orphan block reservation */
2129 block_rsv = root->orphan_block_rsv;
2130 index = trans->transid & 0x1;
2131 if (block_rsv->reserved + block_rsv->freed[index] < block_rsv->size) {
2132 num_bytes = block_rsv->size -
2133 (block_rsv->reserved + block_rsv->freed[index]);
2134 ret = btrfs_block_rsv_migrate(&pending->block_rsv,
2135 root->orphan_block_rsv,
2136 num_bytes);
2137 BUG_ON(ret);
2138 }
2139
2140 /* setup orphan block reservation for the snapshot */
2141 block_rsv = btrfs_alloc_block_rsv(snap);
2142 BUG_ON(!block_rsv);
2143
2144 btrfs_add_durable_block_rsv(root->fs_info, block_rsv);
2145 snap->orphan_block_rsv = block_rsv;
2146
2147 num_bytes = root->orphan_block_rsv->size;
2148 ret = btrfs_block_rsv_migrate(&pending->block_rsv,
2149 block_rsv, num_bytes);
2150 BUG_ON(ret);
2151
2152#if 0
2153 /* insert orphan item for the snapshot */
2154 WARN_ON(!root->orphan_item_inserted);
2155 ret = btrfs_insert_orphan_item(trans, root->fs_info->tree_root,
2156 snap->root_key.objectid);
2157 BUG_ON(ret);
2158 snap->orphan_item_inserted = 1;
2159#endif
2160}
2161
2162enum btrfs_orphan_cleanup_state {
2163 ORPHAN_CLEANUP_STARTED = 1,
2164 ORPHAN_CLEANUP_DONE = 2,
2165};
2166
2167/*
2168 * This is called in transaction commmit time. If there are no orphan
2169 * files in the subvolume, it removes orphan item and frees block_rsv
2170 * structure.
2171 */
2172void btrfs_orphan_commit_root(struct btrfs_trans_handle *trans,
2173 struct btrfs_root *root)
2174{
2175 int ret;
2176
2177 if (!list_empty(&root->orphan_list) ||
2178 root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE)
2179 return;
2180
2181 if (root->orphan_item_inserted &&
2182 btrfs_root_refs(&root->root_item) > 0) {
2183 ret = btrfs_del_orphan_item(trans, root->fs_info->tree_root,
2184 root->root_key.objectid);
2185 BUG_ON(ret);
2186 root->orphan_item_inserted = 0;
2187 }
2188
2189 if (root->orphan_block_rsv) {
2190 WARN_ON(root->orphan_block_rsv->size > 0);
2191 btrfs_free_block_rsv(root, root->orphan_block_rsv);
2192 root->orphan_block_rsv = NULL;
2193 }
2194}
2195
2196/*
Josef Bacik7b128762008-07-24 12:17:14 -04002197 * This creates an orphan entry for the given inode in case something goes
2198 * wrong in the middle of an unlink/truncate.
Yan, Zhengd68fc572010-05-16 10:49:58 -04002199 *
2200 * NOTE: caller of this function should reserve 5 units of metadata for
2201 * this function.
Josef Bacik7b128762008-07-24 12:17:14 -04002202 */
2203int btrfs_orphan_add(struct btrfs_trans_handle *trans, struct inode *inode)
2204{
2205 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002206 struct btrfs_block_rsv *block_rsv = NULL;
2207 int reserve = 0;
2208 int insert = 0;
2209 int ret;
Josef Bacik7b128762008-07-24 12:17:14 -04002210
Yan, Zhengd68fc572010-05-16 10:49:58 -04002211 if (!root->orphan_block_rsv) {
2212 block_rsv = btrfs_alloc_block_rsv(root);
2213 BUG_ON(!block_rsv);
Josef Bacik7b128762008-07-24 12:17:14 -04002214 }
2215
Yan, Zhengd68fc572010-05-16 10:49:58 -04002216 spin_lock(&root->orphan_lock);
2217 if (!root->orphan_block_rsv) {
2218 root->orphan_block_rsv = block_rsv;
2219 } else if (block_rsv) {
2220 btrfs_free_block_rsv(root, block_rsv);
2221 block_rsv = NULL;
2222 }
Josef Bacik7b128762008-07-24 12:17:14 -04002223
Yan, Zhengd68fc572010-05-16 10:49:58 -04002224 if (list_empty(&BTRFS_I(inode)->i_orphan)) {
2225 list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
2226#if 0
2227 /*
2228 * For proper ENOSPC handling, we should do orphan
2229 * cleanup when mounting. But this introduces backward
2230 * compatibility issue.
2231 */
2232 if (!xchg(&root->orphan_item_inserted, 1))
2233 insert = 2;
2234 else
2235 insert = 1;
2236#endif
2237 insert = 1;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002238 }
Josef Bacik7b128762008-07-24 12:17:14 -04002239
Yan, Zhengd68fc572010-05-16 10:49:58 -04002240 if (!BTRFS_I(inode)->orphan_meta_reserved) {
2241 BTRFS_I(inode)->orphan_meta_reserved = 1;
2242 reserve = 1;
2243 }
2244 spin_unlock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002245
Yan, Zhengd68fc572010-05-16 10:49:58 -04002246 if (block_rsv)
2247 btrfs_add_durable_block_rsv(root->fs_info, block_rsv);
2248
2249 /* grab metadata reservation from transaction handle */
2250 if (reserve) {
2251 ret = btrfs_orphan_reserve_metadata(trans, inode);
2252 BUG_ON(ret);
2253 }
2254
2255 /* insert an orphan item to track this unlinked/truncated file */
2256 if (insert >= 1) {
Li Zefan33345d012011-04-20 10:31:50 +08002257 ret = btrfs_insert_orphan_item(trans, root, btrfs_ino(inode));
Yan, Zhengd68fc572010-05-16 10:49:58 -04002258 BUG_ON(ret);
2259 }
2260
2261 /* insert an orphan item to track subvolume contains orphan files */
2262 if (insert >= 2) {
2263 ret = btrfs_insert_orphan_item(trans, root->fs_info->tree_root,
2264 root->root_key.objectid);
2265 BUG_ON(ret);
2266 }
2267 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002268}
2269
2270/*
2271 * We have done the truncate/delete so we can go ahead and remove the orphan
2272 * item for this particular inode.
2273 */
2274int btrfs_orphan_del(struct btrfs_trans_handle *trans, struct inode *inode)
2275{
2276 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002277 int delete_item = 0;
2278 int release_rsv = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002279 int ret = 0;
2280
Yan, Zhengd68fc572010-05-16 10:49:58 -04002281 spin_lock(&root->orphan_lock);
2282 if (!list_empty(&BTRFS_I(inode)->i_orphan)) {
2283 list_del_init(&BTRFS_I(inode)->i_orphan);
2284 delete_item = 1;
Josef Bacik7b128762008-07-24 12:17:14 -04002285 }
2286
Yan, Zhengd68fc572010-05-16 10:49:58 -04002287 if (BTRFS_I(inode)->orphan_meta_reserved) {
2288 BTRFS_I(inode)->orphan_meta_reserved = 0;
2289 release_rsv = 1;
2290 }
2291 spin_unlock(&root->orphan_lock);
2292
2293 if (trans && delete_item) {
Li Zefan33345d012011-04-20 10:31:50 +08002294 ret = btrfs_del_orphan_item(trans, root, btrfs_ino(inode));
Yan, Zhengd68fc572010-05-16 10:49:58 -04002295 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04002296 }
2297
Yan, Zhengd68fc572010-05-16 10:49:58 -04002298 if (release_rsv)
2299 btrfs_orphan_release_metadata(inode);
Josef Bacik7b128762008-07-24 12:17:14 -04002300
Yan, Zhengd68fc572010-05-16 10:49:58 -04002301 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002302}
2303
2304/*
2305 * this cleans up any orphans that may be left on the list from the last use
2306 * of this root.
2307 */
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002308int btrfs_orphan_cleanup(struct btrfs_root *root)
Josef Bacik7b128762008-07-24 12:17:14 -04002309{
2310 struct btrfs_path *path;
2311 struct extent_buffer *leaf;
Josef Bacik7b128762008-07-24 12:17:14 -04002312 struct btrfs_key key, found_key;
2313 struct btrfs_trans_handle *trans;
2314 struct inode *inode;
2315 int ret = 0, nr_unlink = 0, nr_truncate = 0;
2316
Yan, Zhengd68fc572010-05-16 10:49:58 -04002317 if (cmpxchg(&root->orphan_cleanup_state, 0, ORPHAN_CLEANUP_STARTED))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002318 return 0;
Yan, Zhengc71bf092009-11-12 09:34:40 +00002319
2320 path = btrfs_alloc_path();
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002321 if (!path) {
2322 ret = -ENOMEM;
2323 goto out;
2324 }
Josef Bacik7b128762008-07-24 12:17:14 -04002325 path->reada = -1;
2326
2327 key.objectid = BTRFS_ORPHAN_OBJECTID;
2328 btrfs_set_key_type(&key, BTRFS_ORPHAN_ITEM_KEY);
2329 key.offset = (u64)-1;
2330
Josef Bacik7b128762008-07-24 12:17:14 -04002331 while (1) {
2332 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002333 if (ret < 0)
2334 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04002335
2336 /*
2337 * if ret == 0 means we found what we were searching for, which
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002338 * is weird, but possible, so only screw with path if we didn't
Josef Bacik7b128762008-07-24 12:17:14 -04002339 * find the key and see if we have stuff that matches
2340 */
2341 if (ret > 0) {
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002342 ret = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002343 if (path->slots[0] == 0)
2344 break;
2345 path->slots[0]--;
2346 }
2347
2348 /* pull out the item */
2349 leaf = path->nodes[0];
Josef Bacik7b128762008-07-24 12:17:14 -04002350 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2351
2352 /* make sure the item matches what we want */
2353 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
2354 break;
2355 if (btrfs_key_type(&found_key) != BTRFS_ORPHAN_ITEM_KEY)
2356 break;
2357
2358 /* release the path since we're done with it */
David Sterbab3b4aa72011-04-21 01:20:15 +02002359 btrfs_release_path(path);
Josef Bacik7b128762008-07-24 12:17:14 -04002360
2361 /*
2362 * this is where we are basically btrfs_lookup, without the
2363 * crossing root thing. we store the inode number in the
2364 * offset of the orphan item.
2365 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002366 found_key.objectid = found_key.offset;
2367 found_key.type = BTRFS_INODE_ITEM_KEY;
2368 found_key.offset = 0;
Josef Bacik73f73412009-12-04 17:38:27 +00002369 inode = btrfs_iget(root->fs_info->sb, &found_key, root, NULL);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002370 if (IS_ERR(inode)) {
2371 ret = PTR_ERR(inode);
2372 goto out;
2373 }
Josef Bacik7b128762008-07-24 12:17:14 -04002374
Josef Bacik7b128762008-07-24 12:17:14 -04002375 /*
2376 * add this inode to the orphan list so btrfs_orphan_del does
2377 * the proper thing when we hit it
2378 */
Yan, Zhengd68fc572010-05-16 10:49:58 -04002379 spin_lock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002380 list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002381 spin_unlock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002382
2383 /*
2384 * if this is a bad inode, means we actually succeeded in
2385 * removing the inode, but not the orphan record, which means
2386 * we need to manually delete the orphan since iput will just
2387 * do a destroy_inode
2388 */
2389 if (is_bad_inode(inode)) {
Yan, Zhenga22285a2010-05-16 10:48:46 -04002390 trans = btrfs_start_transaction(root, 0);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002391 if (IS_ERR(trans)) {
2392 ret = PTR_ERR(trans);
2393 goto out;
2394 }
Josef Bacik7b128762008-07-24 12:17:14 -04002395 btrfs_orphan_del(trans, inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04002396 btrfs_end_transaction(trans, root);
Josef Bacik7b128762008-07-24 12:17:14 -04002397 iput(inode);
2398 continue;
2399 }
2400
2401 /* if we have links, this was a truncate, lets do that */
2402 if (inode->i_nlink) {
Josef Bacika41ad392011-01-31 15:30:16 -05002403 if (!S_ISREG(inode->i_mode)) {
2404 WARN_ON(1);
2405 iput(inode);
2406 continue;
2407 }
Josef Bacik7b128762008-07-24 12:17:14 -04002408 nr_truncate++;
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002409 ret = btrfs_truncate(inode);
Josef Bacik7b128762008-07-24 12:17:14 -04002410 } else {
2411 nr_unlink++;
2412 }
2413
2414 /* this will do delete_inode and everything for us */
2415 iput(inode);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002416 if (ret)
2417 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04002418 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04002419 root->orphan_cleanup_state = ORPHAN_CLEANUP_DONE;
2420
2421 if (root->orphan_block_rsv)
2422 btrfs_block_rsv_release(root, root->orphan_block_rsv,
2423 (u64)-1);
2424
2425 if (root->orphan_block_rsv || root->orphan_item_inserted) {
2426 trans = btrfs_join_transaction(root, 1);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002427 if (!IS_ERR(trans))
2428 btrfs_end_transaction(trans, root);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002429 }
Josef Bacik7b128762008-07-24 12:17:14 -04002430
2431 if (nr_unlink)
2432 printk(KERN_INFO "btrfs: unlinked %d orphans\n", nr_unlink);
2433 if (nr_truncate)
2434 printk(KERN_INFO "btrfs: truncated %d orphans\n", nr_truncate);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002435
2436out:
2437 if (ret)
2438 printk(KERN_CRIT "btrfs: could not do orphan cleanup %d\n", ret);
2439 btrfs_free_path(path);
2440 return ret;
Josef Bacik7b128762008-07-24 12:17:14 -04002441}
2442
Chris Masond352ac62008-09-29 15:18:18 -04002443/*
Chris Mason46a53cc2009-04-27 11:47:50 -04002444 * very simple check to peek ahead in the leaf looking for xattrs. If we
2445 * don't find any xattrs, we know there can't be any acls.
2446 *
2447 * slot is the slot the inode is in, objectid is the objectid of the inode
2448 */
2449static noinline int acls_after_inode_item(struct extent_buffer *leaf,
2450 int slot, u64 objectid)
2451{
2452 u32 nritems = btrfs_header_nritems(leaf);
2453 struct btrfs_key found_key;
2454 int scanned = 0;
2455
2456 slot++;
2457 while (slot < nritems) {
2458 btrfs_item_key_to_cpu(leaf, &found_key, slot);
2459
2460 /* we found a different objectid, there must not be acls */
2461 if (found_key.objectid != objectid)
2462 return 0;
2463
2464 /* we found an xattr, assume we've got an acl */
2465 if (found_key.type == BTRFS_XATTR_ITEM_KEY)
2466 return 1;
2467
2468 /*
2469 * we found a key greater than an xattr key, there can't
2470 * be any acls later on
2471 */
2472 if (found_key.type > BTRFS_XATTR_ITEM_KEY)
2473 return 0;
2474
2475 slot++;
2476 scanned++;
2477
2478 /*
2479 * it goes inode, inode backrefs, xattrs, extents,
2480 * so if there are a ton of hard links to an inode there can
2481 * be a lot of backrefs. Don't waste time searching too hard,
2482 * this is just an optimization
2483 */
2484 if (scanned >= 8)
2485 break;
2486 }
2487 /* we hit the end of the leaf before we found an xattr or
2488 * something larger than an xattr. We have to assume the inode
2489 * has acls
2490 */
2491 return 1;
2492}
2493
2494/*
Chris Masond352ac62008-09-29 15:18:18 -04002495 * read an inode from the btree into the in-memory inode
2496 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002497static void btrfs_read_locked_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002498{
2499 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002500 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002501 struct btrfs_inode_item *inode_item;
Chris Mason0b86a832008-03-24 15:01:56 -04002502 struct btrfs_timespec *tspec;
Chris Mason39279cc2007-06-12 06:35:45 -04002503 struct btrfs_root *root = BTRFS_I(inode)->root;
2504 struct btrfs_key location;
Chris Mason46a53cc2009-04-27 11:47:50 -04002505 int maybe_acls;
Chris Mason39279cc2007-06-12 06:35:45 -04002506 u64 alloc_group_block;
Josef Bacik618e21d2007-07-11 10:18:17 -04002507 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -04002508 int ret;
2509
2510 path = btrfs_alloc_path();
2511 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -04002512 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -05002513
Chris Mason39279cc2007-06-12 06:35:45 -04002514 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002515 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -04002516 goto make_bad;
Chris Mason39279cc2007-06-12 06:35:45 -04002517
Chris Mason5f39d392007-10-15 16:14:19 -04002518 leaf = path->nodes[0];
2519 inode_item = btrfs_item_ptr(leaf, path->slots[0],
2520 struct btrfs_inode_item);
2521
2522 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
2523 inode->i_nlink = btrfs_inode_nlink(leaf, inode_item);
2524 inode->i_uid = btrfs_inode_uid(leaf, inode_item);
2525 inode->i_gid = btrfs_inode_gid(leaf, inode_item);
Chris Masondbe674a2008-07-17 12:54:05 -04002526 btrfs_i_size_write(inode, btrfs_inode_size(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04002527
2528 tspec = btrfs_inode_atime(inode_item);
2529 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2530 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2531
2532 tspec = btrfs_inode_mtime(inode_item);
2533 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2534 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2535
2536 tspec = btrfs_inode_ctime(inode_item);
2537 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2538 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2539
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002540 inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04002541 BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item);
Chris Masonc3027eb2008-12-08 16:40:21 -05002542 BTRFS_I(inode)->sequence = btrfs_inode_sequence(leaf, inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04002543 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik618e21d2007-07-11 10:18:17 -04002544 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002545 rdev = btrfs_inode_rdev(leaf, inode_item);
2546
Josef Bacikaec74772008-07-24 12:12:38 -04002547 BTRFS_I(inode)->index_cnt = (u64)-1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05002548 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Josef Bacikaec74772008-07-24 12:12:38 -04002549
Chris Mason5f39d392007-10-15 16:14:19 -04002550 alloc_group_block = btrfs_inode_block_group(leaf, inode_item);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002551
Chris Mason46a53cc2009-04-27 11:47:50 -04002552 /*
2553 * try to precache a NULL acl entry for files that don't have
2554 * any xattrs or acls
2555 */
Li Zefan33345d012011-04-20 10:31:50 +08002556 maybe_acls = acls_after_inode_item(leaf, path->slots[0],
2557 btrfs_ino(inode));
Al Viro72c04902009-06-24 16:58:48 -04002558 if (!maybe_acls)
2559 cache_no_acl(inode);
Chris Mason46a53cc2009-04-27 11:47:50 -04002560
Yan Zhengd2fb3432008-12-11 16:30:39 -05002561 BTRFS_I(inode)->block_group = btrfs_find_block_group(root, 0,
2562 alloc_group_block, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002563 btrfs_free_path(path);
2564 inode_item = NULL;
2565
Chris Mason39279cc2007-06-12 06:35:45 -04002566 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -04002567 case S_IFREG:
2568 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04002569 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05002570 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04002571 inode->i_fop = &btrfs_file_operations;
2572 inode->i_op = &btrfs_file_inode_operations;
2573 break;
2574 case S_IFDIR:
2575 inode->i_fop = &btrfs_dir_file_operations;
2576 if (root == root->fs_info->tree_root)
2577 inode->i_op = &btrfs_dir_ro_inode_operations;
2578 else
2579 inode->i_op = &btrfs_dir_inode_operations;
2580 break;
2581 case S_IFLNK:
2582 inode->i_op = &btrfs_symlink_inode_operations;
2583 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04002584 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04002585 break;
Josef Bacik618e21d2007-07-11 10:18:17 -04002586 default:
Jim Owens0279b4c2009-02-04 09:29:13 -05002587 inode->i_op = &btrfs_special_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -04002588 init_special_inode(inode, inode->i_mode, rdev);
2589 break;
Chris Mason39279cc2007-06-12 06:35:45 -04002590 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02002591
2592 btrfs_update_iflags(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002593 return;
2594
2595make_bad:
Chris Mason39279cc2007-06-12 06:35:45 -04002596 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002597 make_bad_inode(inode);
2598}
2599
Chris Masond352ac62008-09-29 15:18:18 -04002600/*
2601 * given a leaf and an inode, copy the inode fields into the leaf
2602 */
Chris Masone02119d2008-09-05 16:13:11 -04002603static void fill_inode_item(struct btrfs_trans_handle *trans,
2604 struct extent_buffer *leaf,
Chris Mason5f39d392007-10-15 16:14:19 -04002605 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -04002606 struct inode *inode)
2607{
Josef Bacik12ddb962011-04-05 13:02:27 -04002608 if (!leaf->map_token)
2609 map_private_extent_buffer(leaf, (unsigned long)item,
2610 sizeof(struct btrfs_inode_item),
2611 &leaf->map_token, &leaf->kaddr,
2612 &leaf->map_start, &leaf->map_len,
2613 KM_USER1);
2614
Chris Mason5f39d392007-10-15 16:14:19 -04002615 btrfs_set_inode_uid(leaf, item, inode->i_uid);
2616 btrfs_set_inode_gid(leaf, item, inode->i_gid);
Chris Masondbe674a2008-07-17 12:54:05 -04002617 btrfs_set_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size);
Chris Mason5f39d392007-10-15 16:14:19 -04002618 btrfs_set_inode_mode(leaf, item, inode->i_mode);
2619 btrfs_set_inode_nlink(leaf, item, inode->i_nlink);
2620
2621 btrfs_set_timespec_sec(leaf, btrfs_inode_atime(item),
2622 inode->i_atime.tv_sec);
2623 btrfs_set_timespec_nsec(leaf, btrfs_inode_atime(item),
2624 inode->i_atime.tv_nsec);
2625
2626 btrfs_set_timespec_sec(leaf, btrfs_inode_mtime(item),
2627 inode->i_mtime.tv_sec);
2628 btrfs_set_timespec_nsec(leaf, btrfs_inode_mtime(item),
2629 inode->i_mtime.tv_nsec);
2630
2631 btrfs_set_timespec_sec(leaf, btrfs_inode_ctime(item),
2632 inode->i_ctime.tv_sec);
2633 btrfs_set_timespec_nsec(leaf, btrfs_inode_ctime(item),
2634 inode->i_ctime.tv_nsec);
2635
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002636 btrfs_set_inode_nbytes(leaf, item, inode_get_bytes(inode));
Chris Masone02119d2008-09-05 16:13:11 -04002637 btrfs_set_inode_generation(leaf, item, BTRFS_I(inode)->generation);
Chris Masonc3027eb2008-12-08 16:40:21 -05002638 btrfs_set_inode_sequence(leaf, item, BTRFS_I(inode)->sequence);
Chris Masone02119d2008-09-05 16:13:11 -04002639 btrfs_set_inode_transid(leaf, item, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04002640 btrfs_set_inode_rdev(leaf, item, inode->i_rdev);
Yanb98b6762008-01-08 15:54:37 -05002641 btrfs_set_inode_flags(leaf, item, BTRFS_I(inode)->flags);
Yan Zhengd2fb3432008-12-11 16:30:39 -05002642 btrfs_set_inode_block_group(leaf, item, BTRFS_I(inode)->block_group);
Josef Bacik12ddb962011-04-05 13:02:27 -04002643
2644 if (leaf->map_token) {
2645 unmap_extent_buffer(leaf, leaf->map_token, KM_USER1);
2646 leaf->map_token = NULL;
2647 }
Chris Mason39279cc2007-06-12 06:35:45 -04002648}
2649
Chris Masond352ac62008-09-29 15:18:18 -04002650/*
2651 * copy everything in the in-memory inode into the btree.
2652 */
Chris Masond3977122009-01-05 21:25:51 -05002653noinline int btrfs_update_inode(struct btrfs_trans_handle *trans,
2654 struct btrfs_root *root, struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002655{
2656 struct btrfs_inode_item *inode_item;
2657 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002658 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002659 int ret;
2660
Miao Xie16cdcec2011-04-22 18:12:22 +08002661 /*
2662 * If root is tree root, it means this inode is used to
2663 * store free space information. And these inodes are updated
2664 * when committing the transaction, so they needn't delaye to
2665 * be updated, or deadlock will occured.
2666 */
Chris Masondcc6d072011-05-22 07:07:01 -04002667 if (!is_free_space_inode(root, inode)) {
Miao Xie16cdcec2011-04-22 18:12:22 +08002668 ret = btrfs_delayed_update_inode(trans, root, inode);
2669 if (!ret)
2670 btrfs_set_inode_last_trans(trans, inode);
2671 return ret;
2672 }
2673
Chris Mason39279cc2007-06-12 06:35:45 -04002674 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08002675 if (!path)
2676 return -ENOMEM;
2677
Chris Masonb9473432009-03-13 11:00:37 -04002678 path->leave_spinning = 1;
Miao Xie16cdcec2011-04-22 18:12:22 +08002679 ret = btrfs_lookup_inode(trans, root, path, &BTRFS_I(inode)->location,
2680 1);
Chris Mason39279cc2007-06-12 06:35:45 -04002681 if (ret) {
2682 if (ret > 0)
2683 ret = -ENOENT;
2684 goto failed;
2685 }
2686
Chris Masonb4ce94d2009-02-04 09:25:08 -05002687 btrfs_unlock_up_safe(path, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002688 leaf = path->nodes[0];
2689 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Miao Xie16cdcec2011-04-22 18:12:22 +08002690 struct btrfs_inode_item);
Chris Mason39279cc2007-06-12 06:35:45 -04002691
Chris Masone02119d2008-09-05 16:13:11 -04002692 fill_inode_item(trans, leaf, inode_item, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04002693 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002694 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002695 ret = 0;
2696failed:
Chris Mason39279cc2007-06-12 06:35:45 -04002697 btrfs_free_path(path);
2698 return ret;
2699}
2700
Chris Masond352ac62008-09-29 15:18:18 -04002701/*
2702 * unlink helper that gets used here in inode.c and in the tree logging
2703 * recovery code. It remove a link in a directory with a given name, and
2704 * also drops the back refs in the inode to the directory
2705 */
Al Viro92986792011-03-04 17:14:37 +00002706static int __btrfs_unlink_inode(struct btrfs_trans_handle *trans,
2707 struct btrfs_root *root,
2708 struct inode *dir, struct inode *inode,
2709 const char *name, int name_len)
Chris Mason39279cc2007-06-12 06:35:45 -04002710{
2711 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04002712 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002713 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002714 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -04002715 struct btrfs_key key;
Josef Bacikaec74772008-07-24 12:12:38 -04002716 u64 index;
Li Zefan33345d012011-04-20 10:31:50 +08002717 u64 ino = btrfs_ino(inode);
2718 u64 dir_ino = btrfs_ino(dir);
Chris Mason39279cc2007-06-12 06:35:45 -04002719
2720 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04002721 if (!path) {
2722 ret = -ENOMEM;
Tsutomu Itoh554233a2011-02-03 03:16:25 +00002723 goto out;
Chris Mason54aa1f42007-06-22 14:16:25 -04002724 }
2725
Chris Masonb9473432009-03-13 11:00:37 -04002726 path->leave_spinning = 1;
Li Zefan33345d012011-04-20 10:31:50 +08002727 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Chris Mason39279cc2007-06-12 06:35:45 -04002728 name, name_len, -1);
2729 if (IS_ERR(di)) {
2730 ret = PTR_ERR(di);
2731 goto err;
2732 }
2733 if (!di) {
2734 ret = -ENOENT;
2735 goto err;
2736 }
Chris Mason5f39d392007-10-15 16:14:19 -04002737 leaf = path->nodes[0];
2738 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -04002739 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -04002740 if (ret)
2741 goto err;
David Sterbab3b4aa72011-04-21 01:20:15 +02002742 btrfs_release_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002743
Li Zefan33345d012011-04-20 10:31:50 +08002744 ret = btrfs_del_inode_ref(trans, root, name, name_len, ino,
2745 dir_ino, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04002746 if (ret) {
Chris Masond3977122009-01-05 21:25:51 -05002747 printk(KERN_INFO "btrfs failed to delete reference to %.*s, "
Li Zefan33345d012011-04-20 10:31:50 +08002748 "inode %llu parent %llu\n", name_len, name,
2749 (unsigned long long)ino, (unsigned long long)dir_ino);
Josef Bacikaec74772008-07-24 12:12:38 -04002750 goto err;
2751 }
2752
Miao Xie16cdcec2011-04-22 18:12:22 +08002753 ret = btrfs_delete_delayed_dir_index(trans, root, dir, index);
2754 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -04002755 goto err;
Chris Mason39279cc2007-06-12 06:35:45 -04002756
Chris Masone02119d2008-09-05 16:13:11 -04002757 ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len,
Li Zefan33345d012011-04-20 10:31:50 +08002758 inode, dir_ino);
Chris Mason49eb7e42008-09-11 15:53:12 -04002759 BUG_ON(ret != 0 && ret != -ENOENT);
Chris Masone02119d2008-09-05 16:13:11 -04002760
2761 ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len,
2762 dir, index);
Chris Mason6418c962010-10-30 07:34:24 -04002763 if (ret == -ENOENT)
2764 ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002765err:
2766 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002767 if (ret)
2768 goto out;
2769
2770 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
2771 inode->i_ctime = dir->i_mtime = dir->i_ctime = CURRENT_TIME;
2772 btrfs_update_inode(trans, root, dir);
Chris Masone02119d2008-09-05 16:13:11 -04002773out:
Chris Mason39279cc2007-06-12 06:35:45 -04002774 return ret;
2775}
2776
Al Viro92986792011-03-04 17:14:37 +00002777int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
2778 struct btrfs_root *root,
2779 struct inode *dir, struct inode *inode,
2780 const char *name, int name_len)
2781{
2782 int ret;
2783 ret = __btrfs_unlink_inode(trans, root, dir, inode, name, name_len);
2784 if (!ret) {
2785 btrfs_drop_nlink(inode);
2786 ret = btrfs_update_inode(trans, root, inode);
2787 }
2788 return ret;
2789}
2790
2791
Yan, Zhenga22285a2010-05-16 10:48:46 -04002792/* helper to check if there is any shared block in the path */
2793static int check_path_shared(struct btrfs_root *root,
2794 struct btrfs_path *path)
2795{
2796 struct extent_buffer *eb;
2797 int level;
Dan Carpenter0e4dcbe2010-06-01 08:23:11 +00002798 u64 refs = 1;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002799
2800 for (level = 0; level < BTRFS_MAX_LEVEL; level++) {
Josef Bacikdedefd72011-01-24 21:43:18 +00002801 int ret;
2802
Yan, Zhenga22285a2010-05-16 10:48:46 -04002803 if (!path->nodes[level])
2804 break;
2805 eb = path->nodes[level];
2806 if (!btrfs_block_can_be_shared(root, eb))
2807 continue;
2808 ret = btrfs_lookup_extent_info(NULL, root, eb->start, eb->len,
2809 &refs, NULL);
2810 if (refs > 1)
2811 return 1;
2812 }
Josef Bacikdedefd72011-01-24 21:43:18 +00002813 return 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002814}
2815
2816/*
2817 * helper to start transaction for unlink and rmdir.
2818 *
2819 * unlink and rmdir are special in btrfs, they do not always free space.
2820 * so in enospc case, we should make sure they will free space before
2821 * allowing them to use the global metadata reservation.
2822 */
2823static struct btrfs_trans_handle *__unlink_start_trans(struct inode *dir,
2824 struct dentry *dentry)
2825{
2826 struct btrfs_trans_handle *trans;
2827 struct btrfs_root *root = BTRFS_I(dir)->root;
2828 struct btrfs_path *path;
2829 struct btrfs_inode_ref *ref;
2830 struct btrfs_dir_item *di;
2831 struct inode *inode = dentry->d_inode;
2832 u64 index;
2833 int check_link = 1;
2834 int err = -ENOSPC;
2835 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08002836 u64 ino = btrfs_ino(inode);
2837 u64 dir_ino = btrfs_ino(dir);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002838
2839 trans = btrfs_start_transaction(root, 10);
2840 if (!IS_ERR(trans) || PTR_ERR(trans) != -ENOSPC)
2841 return trans;
2842
Li Zefan33345d012011-04-20 10:31:50 +08002843 if (ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Yan, Zhenga22285a2010-05-16 10:48:46 -04002844 return ERR_PTR(-ENOSPC);
2845
2846 /* check if there is someone else holds reference */
2847 if (S_ISDIR(inode->i_mode) && atomic_read(&inode->i_count) > 1)
2848 return ERR_PTR(-ENOSPC);
2849
2850 if (atomic_read(&inode->i_count) > 2)
2851 return ERR_PTR(-ENOSPC);
2852
2853 if (xchg(&root->fs_info->enospc_unlink, 1))
2854 return ERR_PTR(-ENOSPC);
2855
2856 path = btrfs_alloc_path();
2857 if (!path) {
2858 root->fs_info->enospc_unlink = 0;
2859 return ERR_PTR(-ENOMEM);
2860 }
2861
2862 trans = btrfs_start_transaction(root, 0);
2863 if (IS_ERR(trans)) {
2864 btrfs_free_path(path);
2865 root->fs_info->enospc_unlink = 0;
2866 return trans;
2867 }
2868
2869 path->skip_locking = 1;
2870 path->search_commit_root = 1;
2871
2872 ret = btrfs_lookup_inode(trans, root, path,
2873 &BTRFS_I(dir)->location, 0);
2874 if (ret < 0) {
2875 err = ret;
2876 goto out;
2877 }
2878 if (ret == 0) {
2879 if (check_path_shared(root, path))
2880 goto out;
2881 } else {
2882 check_link = 0;
2883 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002884 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002885
2886 ret = btrfs_lookup_inode(trans, root, path,
2887 &BTRFS_I(inode)->location, 0);
2888 if (ret < 0) {
2889 err = ret;
2890 goto out;
2891 }
2892 if (ret == 0) {
2893 if (check_path_shared(root, path))
2894 goto out;
2895 } else {
2896 check_link = 0;
2897 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002898 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002899
2900 if (ret == 0 && S_ISREG(inode->i_mode)) {
2901 ret = btrfs_lookup_file_extent(trans, root, path,
Li Zefan33345d012011-04-20 10:31:50 +08002902 ino, (u64)-1, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002903 if (ret < 0) {
2904 err = ret;
2905 goto out;
2906 }
2907 BUG_ON(ret == 0);
2908 if (check_path_shared(root, path))
2909 goto out;
David Sterbab3b4aa72011-04-21 01:20:15 +02002910 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002911 }
2912
2913 if (!check_link) {
2914 err = 0;
2915 goto out;
2916 }
2917
Li Zefan33345d012011-04-20 10:31:50 +08002918 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Yan, Zhenga22285a2010-05-16 10:48:46 -04002919 dentry->d_name.name, dentry->d_name.len, 0);
2920 if (IS_ERR(di)) {
2921 err = PTR_ERR(di);
2922 goto out;
2923 }
2924 if (di) {
2925 if (check_path_shared(root, path))
2926 goto out;
2927 } else {
2928 err = 0;
2929 goto out;
2930 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002931 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002932
2933 ref = btrfs_lookup_inode_ref(trans, root, path,
2934 dentry->d_name.name, dentry->d_name.len,
Li Zefan33345d012011-04-20 10:31:50 +08002935 ino, dir_ino, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002936 if (IS_ERR(ref)) {
2937 err = PTR_ERR(ref);
2938 goto out;
2939 }
2940 BUG_ON(!ref);
2941 if (check_path_shared(root, path))
2942 goto out;
2943 index = btrfs_inode_ref_index(path->nodes[0], ref);
David Sterbab3b4aa72011-04-21 01:20:15 +02002944 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002945
Miao Xie16cdcec2011-04-22 18:12:22 +08002946 /*
2947 * This is a commit root search, if we can lookup inode item and other
2948 * relative items in the commit root, it means the transaction of
2949 * dir/file creation has been committed, and the dir index item that we
2950 * delay to insert has also been inserted into the commit root. So
2951 * we needn't worry about the delayed insertion of the dir index item
2952 * here.
2953 */
Li Zefan33345d012011-04-20 10:31:50 +08002954 di = btrfs_lookup_dir_index_item(trans, root, path, dir_ino, index,
Yan, Zhenga22285a2010-05-16 10:48:46 -04002955 dentry->d_name.name, dentry->d_name.len, 0);
2956 if (IS_ERR(di)) {
2957 err = PTR_ERR(di);
2958 goto out;
2959 }
2960 BUG_ON(ret == -ENOENT);
2961 if (check_path_shared(root, path))
2962 goto out;
2963
2964 err = 0;
2965out:
2966 btrfs_free_path(path);
2967 if (err) {
2968 btrfs_end_transaction(trans, root);
2969 root->fs_info->enospc_unlink = 0;
2970 return ERR_PTR(err);
2971 }
2972
2973 trans->block_rsv = &root->fs_info->global_block_rsv;
2974 return trans;
2975}
2976
2977static void __unlink_end_trans(struct btrfs_trans_handle *trans,
2978 struct btrfs_root *root)
2979{
2980 if (trans->block_rsv == &root->fs_info->global_block_rsv) {
2981 BUG_ON(!root->fs_info->enospc_unlink);
2982 root->fs_info->enospc_unlink = 0;
2983 }
2984 btrfs_end_transaction_throttle(trans, root);
2985}
2986
Chris Mason39279cc2007-06-12 06:35:45 -04002987static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
2988{
Yan, Zhenga22285a2010-05-16 10:48:46 -04002989 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04002990 struct btrfs_trans_handle *trans;
Josef Bacik7b128762008-07-24 12:17:14 -04002991 struct inode *inode = dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04002992 int ret;
Chris Mason1832a6d2007-12-21 16:27:21 -05002993 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002994
Yan, Zhenga22285a2010-05-16 10:48:46 -04002995 trans = __unlink_start_trans(dir, dentry);
2996 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05002997 return PTR_ERR(trans);
Chris Mason5f39d392007-10-15 16:14:19 -04002998
Chris Mason39279cc2007-06-12 06:35:45 -04002999 btrfs_set_trans_block_group(trans, dir);
Chris Mason12fcfd22009-03-24 10:24:20 -04003000
3001 btrfs_record_unlink_dir(trans, dir, dentry->d_inode, 0);
3002
Chris Masone02119d2008-09-05 16:13:11 -04003003 ret = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
3004 dentry->d_name.name, dentry->d_name.len);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003005 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04003006
Yan, Zhenga22285a2010-05-16 10:48:46 -04003007 if (inode->i_nlink == 0) {
Josef Bacik7b128762008-07-24 12:17:14 -04003008 ret = btrfs_orphan_add(trans, inode);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003009 BUG_ON(ret);
3010 }
Josef Bacik7b128762008-07-24 12:17:14 -04003011
Chris Masond3c2fdc2007-09-17 10:58:06 -04003012 nr = trans->blocks_used;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003013 __unlink_end_trans(trans, root);
Chris Masond3c2fdc2007-09-17 10:58:06 -04003014 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003015 return ret;
3016}
3017
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003018int btrfs_unlink_subvol(struct btrfs_trans_handle *trans,
3019 struct btrfs_root *root,
3020 struct inode *dir, u64 objectid,
3021 const char *name, int name_len)
3022{
3023 struct btrfs_path *path;
3024 struct extent_buffer *leaf;
3025 struct btrfs_dir_item *di;
3026 struct btrfs_key key;
3027 u64 index;
3028 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08003029 u64 dir_ino = btrfs_ino(dir);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003030
3031 path = btrfs_alloc_path();
3032 if (!path)
3033 return -ENOMEM;
3034
Li Zefan33345d012011-04-20 10:31:50 +08003035 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003036 name, name_len, -1);
David Sterbac7040052011-04-19 18:00:01 +02003037 BUG_ON(IS_ERR_OR_NULL(di));
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003038
3039 leaf = path->nodes[0];
3040 btrfs_dir_item_key_to_cpu(leaf, di, &key);
3041 WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
3042 ret = btrfs_delete_one_dir_name(trans, root, path, di);
3043 BUG_ON(ret);
David Sterbab3b4aa72011-04-21 01:20:15 +02003044 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003045
3046 ret = btrfs_del_root_ref(trans, root->fs_info->tree_root,
3047 objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08003048 dir_ino, &index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003049 if (ret < 0) {
3050 BUG_ON(ret != -ENOENT);
Li Zefan33345d012011-04-20 10:31:50 +08003051 di = btrfs_search_dir_index_item(root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003052 name, name_len);
David Sterbac7040052011-04-19 18:00:01 +02003053 BUG_ON(IS_ERR_OR_NULL(di));
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003054
3055 leaf = path->nodes[0];
3056 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02003057 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003058 index = key.offset;
3059 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003060 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003061
Miao Xie16cdcec2011-04-22 18:12:22 +08003062 ret = btrfs_delete_delayed_dir_index(trans, root, dir, index);
3063 BUG_ON(ret);
3064
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003065 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
3066 dir->i_mtime = dir->i_ctime = CURRENT_TIME;
3067 ret = btrfs_update_inode(trans, root, dir);
3068 BUG_ON(ret);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003069
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003070 return 0;
3071}
3072
Chris Mason39279cc2007-06-12 06:35:45 -04003073static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
3074{
3075 struct inode *inode = dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05003076 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003077 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003078 struct btrfs_trans_handle *trans;
Chris Mason1832a6d2007-12-21 16:27:21 -05003079 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003080
Chris Mason3394e162008-11-17 20:42:26 -05003081 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE ||
Li Zefan33345d012011-04-20 10:31:50 +08003082 btrfs_ino(inode) == BTRFS_FIRST_FREE_OBJECTID)
Yan134d4512007-10-25 15:49:25 -04003083 return -ENOTEMPTY;
3084
Yan, Zhenga22285a2010-05-16 10:48:46 -04003085 trans = __unlink_start_trans(dir, dentry);
3086 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05003087 return PTR_ERR(trans);
Josef Bacik5df6a9f2009-11-10 21:23:48 -05003088
Chris Mason39279cc2007-06-12 06:35:45 -04003089 btrfs_set_trans_block_group(trans, dir);
Chris Mason39279cc2007-06-12 06:35:45 -04003090
Li Zefan33345d012011-04-20 10:31:50 +08003091 if (unlikely(btrfs_ino(inode) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003092 err = btrfs_unlink_subvol(trans, root, dir,
3093 BTRFS_I(inode)->location.objectid,
3094 dentry->d_name.name,
3095 dentry->d_name.len);
3096 goto out;
3097 }
3098
Josef Bacik7b128762008-07-24 12:17:14 -04003099 err = btrfs_orphan_add(trans, inode);
3100 if (err)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003101 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003102
Chris Mason39279cc2007-06-12 06:35:45 -04003103 /* now the directory is empty */
Chris Masone02119d2008-09-05 16:13:11 -04003104 err = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
3105 dentry->d_name.name, dentry->d_name.len);
Chris Masond3977122009-01-05 21:25:51 -05003106 if (!err)
Chris Masondbe674a2008-07-17 12:54:05 -04003107 btrfs_i_size_write(inode, 0);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003108out:
Chris Masond3c2fdc2007-09-17 10:58:06 -04003109 nr = trans->blocks_used;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003110 __unlink_end_trans(trans, root);
Chris Masond3c2fdc2007-09-17 10:58:06 -04003111 btrfs_btree_balance_dirty(root, nr);
Chris Mason39544012007-12-12 14:38:19 -05003112
Chris Mason39279cc2007-06-12 06:35:45 -04003113 return err;
3114}
3115
Chris Mason323ac952008-10-01 19:05:46 -04003116/*
Chris Mason39279cc2007-06-12 06:35:45 -04003117 * this can truncate away extent items, csum items and directory items.
3118 * It starts at a high offset and removes keys until it can't find
Chris Masond352ac62008-09-29 15:18:18 -04003119 * any higher than new_size
Chris Mason39279cc2007-06-12 06:35:45 -04003120 *
3121 * csum items that cross the new i_size are truncated to the new size
3122 * as well.
Josef Bacik7b128762008-07-24 12:17:14 -04003123 *
3124 * min_type is the minimum key type to truncate down to. If set to 0, this
3125 * will kill all the items on this inode, including the INODE_ITEM_KEY.
Chris Mason39279cc2007-06-12 06:35:45 -04003126 */
Yan, Zheng80825102009-11-12 09:35:36 +00003127int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
3128 struct btrfs_root *root,
3129 struct inode *inode,
3130 u64 new_size, u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04003131{
Chris Mason39279cc2007-06-12 06:35:45 -04003132 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04003133 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003134 struct btrfs_file_extent_item *fi;
Yan, Zheng80825102009-11-12 09:35:36 +00003135 struct btrfs_key key;
3136 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04003137 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04003138 u64 extent_num_bytes = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003139 u64 extent_offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003140 u64 item_end = 0;
Yan, Zheng80825102009-11-12 09:35:36 +00003141 u64 mask = root->sectorsize - 1;
3142 u32 found_type = (u8)-1;
Chris Mason39279cc2007-06-12 06:35:45 -04003143 int found_extent;
3144 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05003145 int pending_del_nr = 0;
3146 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04003147 int extent_type = -1;
Chris Mason771ed682008-11-06 22:02:51 -05003148 int encoding;
Yan, Zheng80825102009-11-12 09:35:36 +00003149 int ret;
3150 int err = 0;
Li Zefan33345d012011-04-20 10:31:50 +08003151 u64 ino = btrfs_ino(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003152
3153 BUG_ON(new_size > 0 && min_type != BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04003154
Josef Bacik0af3d002010-06-21 14:48:16 -04003155 if (root->ref_cows || root == root->fs_info->tree_root)
Zheng Yan5b21f2e2008-09-26 10:05:38 -04003156 btrfs_drop_extent_cache(inode, new_size & (~mask), (u64)-1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003157
Miao Xie16cdcec2011-04-22 18:12:22 +08003158 /*
3159 * This function is also used to drop the items in the log tree before
3160 * we relog the inode, so if root != BTRFS_I(inode)->root, it means
3161 * it is used to drop the loged items. So we shouldn't kill the delayed
3162 * items.
3163 */
3164 if (min_type == 0 && root == BTRFS_I(inode)->root)
3165 btrfs_kill_delayed_inode_items(inode);
3166
Chris Mason39279cc2007-06-12 06:35:45 -04003167 path = btrfs_alloc_path();
3168 BUG_ON(!path);
Julia Lawall33c17ad2009-07-22 16:49:01 -04003169 path->reada = -1;
Chris Mason5f39d392007-10-15 16:14:19 -04003170
Li Zefan33345d012011-04-20 10:31:50 +08003171 key.objectid = ino;
Chris Mason39279cc2007-06-12 06:35:45 -04003172 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04003173 key.type = (u8)-1;
3174
Chris Mason85e21ba2008-01-29 15:11:36 -05003175search_again:
Chris Masonb9473432009-03-13 11:00:37 -04003176 path->leave_spinning = 1;
Chris Mason85e21ba2008-01-29 15:11:36 -05003177 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Yan, Zheng80825102009-11-12 09:35:36 +00003178 if (ret < 0) {
3179 err = ret;
3180 goto out;
3181 }
Chris Masond3977122009-01-05 21:25:51 -05003182
Chris Mason85e21ba2008-01-29 15:11:36 -05003183 if (ret > 0) {
Chris Masone02119d2008-09-05 16:13:11 -04003184 /* there are no items in the tree for us to truncate, we're
3185 * done
3186 */
Yan, Zheng80825102009-11-12 09:35:36 +00003187 if (path->slots[0] == 0)
3188 goto out;
Chris Mason85e21ba2008-01-29 15:11:36 -05003189 path->slots[0]--;
3190 }
3191
Chris Masond3977122009-01-05 21:25:51 -05003192 while (1) {
Chris Mason39279cc2007-06-12 06:35:45 -04003193 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04003194 leaf = path->nodes[0];
3195 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3196 found_type = btrfs_key_type(&found_key);
Chris Mason771ed682008-11-06 22:02:51 -05003197 encoding = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003198
Li Zefan33345d012011-04-20 10:31:50 +08003199 if (found_key.objectid != ino)
Chris Mason39279cc2007-06-12 06:35:45 -04003200 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003201
Chris Mason85e21ba2008-01-29 15:11:36 -05003202 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04003203 break;
3204
Chris Mason5f39d392007-10-15 16:14:19 -04003205 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04003206 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04003207 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04003208 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04003209 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Mason771ed682008-11-06 22:02:51 -05003210 encoding = btrfs_file_extent_compression(leaf, fi);
3211 encoding |= btrfs_file_extent_encryption(leaf, fi);
3212 encoding |= btrfs_file_extent_other_encoding(leaf, fi);
3213
Chris Mason179e29e2007-11-01 11:28:41 -04003214 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04003215 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04003216 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -04003217 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason179e29e2007-11-01 11:28:41 -04003218 item_end += btrfs_file_extent_inline_len(leaf,
Chris Masonc8b97812008-10-29 14:49:59 -04003219 fi);
Chris Mason39279cc2007-06-12 06:35:45 -04003220 }
Yan008630c2007-11-07 13:31:09 -05003221 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04003222 }
Yan, Zheng80825102009-11-12 09:35:36 +00003223 if (found_type > min_type) {
Chris Mason39279cc2007-06-12 06:35:45 -04003224 del_item = 1;
Yan, Zheng80825102009-11-12 09:35:36 +00003225 } else {
3226 if (item_end < new_size)
3227 break;
3228 if (found_key.offset >= new_size)
3229 del_item = 1;
3230 else
3231 del_item = 0;
3232 }
Chris Mason39279cc2007-06-12 06:35:45 -04003233 found_extent = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003234 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04003235 if (found_type != BTRFS_EXTENT_DATA_KEY)
3236 goto delete;
3237
3238 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04003239 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04003240 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Chris Mason771ed682008-11-06 22:02:51 -05003241 if (!del_item && !encoding) {
Chris Masondb945352007-10-15 16:15:53 -04003242 u64 orig_num_bytes =
3243 btrfs_file_extent_num_bytes(leaf, fi);
Chris Masone02119d2008-09-05 16:13:11 -04003244 extent_num_bytes = new_size -
Chris Mason5f39d392007-10-15 16:14:19 -04003245 found_key.offset + root->sectorsize - 1;
Yanb1632b12008-01-30 11:54:04 -05003246 extent_num_bytes = extent_num_bytes &
3247 ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -04003248 btrfs_set_file_extent_num_bytes(leaf, fi,
3249 extent_num_bytes);
3250 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05003251 extent_num_bytes);
Chris Masone02119d2008-09-05 16:13:11 -04003252 if (root->ref_cows && extent_start != 0)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003253 inode_sub_bytes(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04003254 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003255 } else {
Chris Masondb945352007-10-15 16:15:53 -04003256 extent_num_bytes =
3257 btrfs_file_extent_disk_num_bytes(leaf,
3258 fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003259 extent_offset = found_key.offset -
3260 btrfs_file_extent_offset(leaf, fi);
3261
Chris Mason39279cc2007-06-12 06:35:45 -04003262 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05003263 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04003264 if (extent_start != 0) {
3265 found_extent = 1;
Chris Masone02119d2008-09-05 16:13:11 -04003266 if (root->ref_cows)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003267 inode_sub_bytes(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04003268 }
3269 }
Chris Mason90692182008-02-08 13:49:28 -05003270 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003271 /*
3272 * we can't truncate inline items that have had
3273 * special encodings
3274 */
3275 if (!del_item &&
3276 btrfs_file_extent_compression(leaf, fi) == 0 &&
3277 btrfs_file_extent_encryption(leaf, fi) == 0 &&
3278 btrfs_file_extent_other_encoding(leaf, fi) == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04003279 u32 size = new_size - found_key.offset;
3280
3281 if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003282 inode_sub_bytes(inode, item_end + 1 -
3283 new_size);
Chris Masone02119d2008-09-05 16:13:11 -04003284 }
3285 size =
3286 btrfs_file_extent_calc_inline_size(size);
Chris Mason90692182008-02-08 13:49:28 -05003287 ret = btrfs_truncate_item(trans, root, path,
Chris Masone02119d2008-09-05 16:13:11 -04003288 size, 1);
Chris Masone02119d2008-09-05 16:13:11 -04003289 } else if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003290 inode_sub_bytes(inode, item_end + 1 -
3291 found_key.offset);
Chris Mason90692182008-02-08 13:49:28 -05003292 }
Chris Mason39279cc2007-06-12 06:35:45 -04003293 }
Chris Mason179e29e2007-11-01 11:28:41 -04003294delete:
Chris Mason39279cc2007-06-12 06:35:45 -04003295 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05003296 if (!pending_del_nr) {
3297 /* no pending yet, add ourselves */
3298 pending_del_slot = path->slots[0];
3299 pending_del_nr = 1;
3300 } else if (pending_del_nr &&
3301 path->slots[0] + 1 == pending_del_slot) {
3302 /* hop on the pending chunk */
3303 pending_del_nr++;
3304 pending_del_slot = path->slots[0];
3305 } else {
Chris Masond3977122009-01-05 21:25:51 -05003306 BUG();
Chris Mason85e21ba2008-01-29 15:11:36 -05003307 }
Chris Mason39279cc2007-06-12 06:35:45 -04003308 } else {
3309 break;
3310 }
Josef Bacik0af3d002010-06-21 14:48:16 -04003311 if (found_extent && (root->ref_cows ||
3312 root == root->fs_info->tree_root)) {
Chris Masonb9473432009-03-13 11:00:37 -04003313 btrfs_set_path_blocking(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003314 ret = btrfs_free_extent(trans, root, extent_start,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003315 extent_num_bytes, 0,
3316 btrfs_header_owner(leaf),
Li Zefan33345d012011-04-20 10:31:50 +08003317 ino, extent_offset);
Chris Mason39279cc2007-06-12 06:35:45 -04003318 BUG_ON(ret);
3319 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003320
Yan, Zheng80825102009-11-12 09:35:36 +00003321 if (found_type == BTRFS_INODE_ITEM_KEY)
3322 break;
3323
3324 if (path->slots[0] == 0 ||
3325 path->slots[0] != pending_del_slot) {
Li Zefan82d59022011-04-20 10:33:24 +08003326 if (root->ref_cows &&
3327 BTRFS_I(inode)->location.objectid !=
3328 BTRFS_FREE_INO_OBJECTID) {
Yan, Zheng80825102009-11-12 09:35:36 +00003329 err = -EAGAIN;
3330 goto out;
3331 }
3332 if (pending_del_nr) {
3333 ret = btrfs_del_items(trans, root, path,
3334 pending_del_slot,
3335 pending_del_nr);
3336 BUG_ON(ret);
3337 pending_del_nr = 0;
3338 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003339 btrfs_release_path(path);
Chris Mason85e21ba2008-01-29 15:11:36 -05003340 goto search_again;
Yan, Zheng80825102009-11-12 09:35:36 +00003341 } else {
3342 path->slots[0]--;
Chris Mason85e21ba2008-01-29 15:11:36 -05003343 }
Chris Mason39279cc2007-06-12 06:35:45 -04003344 }
Yan, Zheng80825102009-11-12 09:35:36 +00003345out:
Chris Mason85e21ba2008-01-29 15:11:36 -05003346 if (pending_del_nr) {
3347 ret = btrfs_del_items(trans, root, path, pending_del_slot,
3348 pending_del_nr);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003349 BUG_ON(ret);
Chris Mason85e21ba2008-01-29 15:11:36 -05003350 }
Chris Mason39279cc2007-06-12 06:35:45 -04003351 btrfs_free_path(path);
Yan, Zheng80825102009-11-12 09:35:36 +00003352 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003353}
3354
Chris Masona52d9a82007-08-27 16:49:44 -04003355/*
3356 * taken from block_truncate_page, but does cow as it zeros out
3357 * any bytes left in the last page in the file.
3358 */
3359static int btrfs_truncate_page(struct address_space *mapping, loff_t from)
3360{
3361 struct inode *inode = mapping->host;
Chris Masondb945352007-10-15 16:15:53 -04003362 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003363 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
3364 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003365 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003366 char *kaddr;
Chris Masondb945352007-10-15 16:15:53 -04003367 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -04003368 pgoff_t index = from >> PAGE_CACHE_SHIFT;
3369 unsigned offset = from & (PAGE_CACHE_SIZE-1);
3370 struct page *page;
3371 int ret = 0;
3372 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003373 u64 page_end;
Chris Masona52d9a82007-08-27 16:49:44 -04003374
3375 if ((offset & (blocksize - 1)) == 0)
3376 goto out;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003377 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003378 if (ret)
3379 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04003380
3381 ret = -ENOMEM;
Chris Mason211c17f2008-05-15 09:13:45 -04003382again:
Chris Masona52d9a82007-08-27 16:49:44 -04003383 page = grab_cache_page(mapping, index);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003384 if (!page) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003385 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Masona52d9a82007-08-27 16:49:44 -04003386 goto out;
Josef Bacik5d5e1032009-10-13 16:46:49 -04003387 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04003388
3389 page_start = page_offset(page);
3390 page_end = page_start + PAGE_CACHE_SIZE - 1;
3391
Chris Masona52d9a82007-08-27 16:49:44 -04003392 if (!PageUptodate(page)) {
3393 ret = btrfs_readpage(NULL, page);
3394 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04003395 if (page->mapping != mapping) {
3396 unlock_page(page);
3397 page_cache_release(page);
3398 goto again;
3399 }
Chris Masona52d9a82007-08-27 16:49:44 -04003400 if (!PageUptodate(page)) {
3401 ret = -EIO;
Chris Mason89642222008-07-24 09:41:53 -04003402 goto out_unlock;
Chris Masona52d9a82007-08-27 16:49:44 -04003403 }
3404 }
Chris Mason211c17f2008-05-15 09:13:45 -04003405 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003406
Josef Bacik2ac55d42010-02-03 19:33:23 +00003407 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state,
3408 GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003409 set_page_extent_mapped(page);
3410
3411 ordered = btrfs_lookup_ordered_extent(inode, page_start);
3412 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00003413 unlock_extent_cached(io_tree, page_start, page_end,
3414 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003415 unlock_page(page);
3416 page_cache_release(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04003417 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003418 btrfs_put_ordered_extent(ordered);
3419 goto again;
3420 }
3421
Josef Bacik2ac55d42010-02-03 19:33:23 +00003422 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Josef Bacik5d5e1032009-10-13 16:46:49 -04003423 EXTENT_DIRTY | EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00003424 0, 0, &cached_state, GFP_NOFS);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003425
Josef Bacik2ac55d42010-02-03 19:33:23 +00003426 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
3427 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003428 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00003429 unlock_extent_cached(io_tree, page_start, page_end,
3430 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003431 goto out_unlock;
3432 }
3433
Chris Masone6dcd2d2008-07-17 12:53:50 -04003434 ret = 0;
3435 if (offset != PAGE_CACHE_SIZE) {
3436 kaddr = kmap(page);
3437 memset(kaddr + offset, 0, PAGE_CACHE_SIZE - offset);
3438 flush_dcache_page(page);
3439 kunmap(page);
3440 }
Chris Mason247e7432008-07-17 12:53:51 -04003441 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003442 set_page_dirty(page);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003443 unlock_extent_cached(io_tree, page_start, page_end, &cached_state,
3444 GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04003445
Chris Mason89642222008-07-24 09:41:53 -04003446out_unlock:
Josef Bacik5d5e1032009-10-13 16:46:49 -04003447 if (ret)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003448 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Mason39279cc2007-06-12 06:35:45 -04003449 unlock_page(page);
3450 page_cache_release(page);
3451out:
3452 return ret;
3453}
3454
Josef Bacik695a0d02011-03-04 15:46:53 -05003455/*
3456 * This function puts in dummy file extents for the area we're creating a hole
3457 * for. So if we are truncating this file to a larger size we need to insert
3458 * these file extents so that btrfs_get_extent will return a EXTENT_MAP_HOLE for
3459 * the range between oldsize and size
3460 */
Josef Bacika41ad392011-01-31 15:30:16 -05003461int btrfs_cont_expand(struct inode *inode, loff_t oldsize, loff_t size)
Yan Zheng9036c102008-10-30 14:19:41 -04003462{
3463 struct btrfs_trans_handle *trans;
3464 struct btrfs_root *root = BTRFS_I(inode)->root;
3465 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003466 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003467 struct extent_state *cached_state = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04003468 u64 mask = root->sectorsize - 1;
Josef Bacika41ad392011-01-31 15:30:16 -05003469 u64 hole_start = (oldsize + mask) & ~mask;
Yan Zheng9036c102008-10-30 14:19:41 -04003470 u64 block_end = (size + mask) & ~mask;
3471 u64 last_byte;
3472 u64 cur_offset;
3473 u64 hole_size;
Josef Bacik9ed74f22009-09-11 16:12:44 -04003474 int err = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04003475
3476 if (size <= hole_start)
3477 return 0;
3478
Yan Zheng9036c102008-10-30 14:19:41 -04003479 while (1) {
3480 struct btrfs_ordered_extent *ordered;
3481 btrfs_wait_ordered_range(inode, hole_start,
3482 block_end - hole_start);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003483 lock_extent_bits(io_tree, hole_start, block_end - 1, 0,
3484 &cached_state, GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003485 ordered = btrfs_lookup_ordered_extent(inode, hole_start);
3486 if (!ordered)
3487 break;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003488 unlock_extent_cached(io_tree, hole_start, block_end - 1,
3489 &cached_state, GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003490 btrfs_put_ordered_extent(ordered);
3491 }
3492
Yan Zheng9036c102008-10-30 14:19:41 -04003493 cur_offset = hole_start;
3494 while (1) {
3495 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
3496 block_end - cur_offset, 0);
David Sterbac7040052011-04-19 18:00:01 +02003497 BUG_ON(IS_ERR_OR_NULL(em));
Yan Zheng9036c102008-10-30 14:19:41 -04003498 last_byte = min(extent_map_end(em), block_end);
3499 last_byte = (last_byte + mask) & ~mask;
Yan, Zheng80825102009-11-12 09:35:36 +00003500 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
Chris Mason771ed682008-11-06 22:02:51 -05003501 u64 hint_byte = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04003502 hole_size = last_byte - cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00003503
Yan, Zhenga22285a2010-05-16 10:48:46 -04003504 trans = btrfs_start_transaction(root, 2);
3505 if (IS_ERR(trans)) {
3506 err = PTR_ERR(trans);
Chris Mason771ed682008-11-06 22:02:51 -05003507 break;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003508 }
Yan, Zheng80825102009-11-12 09:35:36 +00003509 btrfs_set_trans_block_group(trans, inode);
3510
3511 err = btrfs_drop_extents(trans, inode, cur_offset,
3512 cur_offset + hole_size,
3513 &hint_byte, 1);
Josef Bacik3893e332011-01-31 16:03:11 -05003514 if (err)
3515 break;
Josef Bacik9ed74f22009-09-11 16:12:44 -04003516
Yan Zheng9036c102008-10-30 14:19:41 -04003517 err = btrfs_insert_file_extent(trans, root,
Li Zefan33345d012011-04-20 10:31:50 +08003518 btrfs_ino(inode), cur_offset, 0,
Yan Zheng9036c102008-10-30 14:19:41 -04003519 0, hole_size, 0, hole_size,
3520 0, 0, 0);
Josef Bacik3893e332011-01-31 16:03:11 -05003521 if (err)
3522 break;
Yan, Zheng80825102009-11-12 09:35:36 +00003523
Yan Zheng9036c102008-10-30 14:19:41 -04003524 btrfs_drop_extent_cache(inode, hole_start,
3525 last_byte - 1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003526
3527 btrfs_end_transaction(trans, root);
Yan Zheng9036c102008-10-30 14:19:41 -04003528 }
3529 free_extent_map(em);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003530 em = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04003531 cur_offset = last_byte;
Yan, Zheng80825102009-11-12 09:35:36 +00003532 if (cur_offset >= block_end)
Yan Zheng9036c102008-10-30 14:19:41 -04003533 break;
3534 }
3535
Yan, Zhenga22285a2010-05-16 10:48:46 -04003536 free_extent_map(em);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003537 unlock_extent_cached(io_tree, hole_start, block_end - 1, &cached_state,
3538 GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003539 return err;
3540}
3541
Josef Bacika41ad392011-01-31 15:30:16 -05003542static int btrfs_setsize(struct inode *inode, loff_t newsize)
Yan, Zheng80825102009-11-12 09:35:36 +00003543{
Josef Bacika41ad392011-01-31 15:30:16 -05003544 loff_t oldsize = i_size_read(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003545 int ret;
3546
Josef Bacika41ad392011-01-31 15:30:16 -05003547 if (newsize == oldsize)
Yan, Zheng80825102009-11-12 09:35:36 +00003548 return 0;
3549
Josef Bacika41ad392011-01-31 15:30:16 -05003550 if (newsize > oldsize) {
3551 i_size_write(inode, newsize);
3552 btrfs_ordered_update_i_size(inode, i_size_read(inode), NULL);
3553 truncate_pagecache(inode, oldsize, newsize);
3554 ret = btrfs_cont_expand(inode, oldsize, newsize);
Yan, Zheng80825102009-11-12 09:35:36 +00003555 if (ret) {
Josef Bacika41ad392011-01-31 15:30:16 -05003556 btrfs_setsize(inode, oldsize);
Yan, Zheng80825102009-11-12 09:35:36 +00003557 return ret;
3558 }
3559
Josef Bacik930f0282011-03-04 14:41:41 -05003560 mark_inode_dirty(inode);
Josef Bacika41ad392011-01-31 15:30:16 -05003561 } else {
Yan, Zheng80825102009-11-12 09:35:36 +00003562
Josef Bacika41ad392011-01-31 15:30:16 -05003563 /*
3564 * We're truncating a file that used to have good data down to
3565 * zero. Make sure it gets into the ordered flush list so that
3566 * any new writes get down to disk quickly.
3567 */
3568 if (newsize == 0)
3569 BTRFS_I(inode)->ordered_data_close = 1;
Yan, Zheng80825102009-11-12 09:35:36 +00003570
Josef Bacika41ad392011-01-31 15:30:16 -05003571 /* we don't support swapfiles, so vmtruncate shouldn't fail */
3572 truncate_setsize(inode, newsize);
3573 ret = btrfs_truncate(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003574 }
3575
Josef Bacika41ad392011-01-31 15:30:16 -05003576 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00003577}
3578
Chris Mason39279cc2007-06-12 06:35:45 -04003579static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
3580{
3581 struct inode *inode = dentry->d_inode;
Li Zefanb83cc962010-12-20 16:04:08 +08003582 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003583 int err;
3584
Li Zefanb83cc962010-12-20 16:04:08 +08003585 if (btrfs_root_readonly(root))
3586 return -EROFS;
3587
Chris Mason39279cc2007-06-12 06:35:45 -04003588 err = inode_change_ok(inode, attr);
3589 if (err)
3590 return err;
3591
Chris Mason5a3f23d2009-03-31 13:27:11 -04003592 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
Josef Bacika41ad392011-01-31 15:30:16 -05003593 err = btrfs_setsize(inode, attr->ia_size);
Yan, Zheng80825102009-11-12 09:35:36 +00003594 if (err)
3595 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003596 }
Yan Zheng9036c102008-10-30 14:19:41 -04003597
Christoph Hellwig10257742010-06-04 11:30:02 +02003598 if (attr->ia_valid) {
3599 setattr_copy(inode, attr);
3600 mark_inode_dirty(inode);
Josef Bacik33268ea2008-07-24 12:16:36 -04003601
Christoph Hellwig10257742010-06-04 11:30:02 +02003602 if (attr->ia_valid & ATTR_MODE)
3603 err = btrfs_acl_chmod(inode);
3604 }
3605
Chris Mason39279cc2007-06-12 06:35:45 -04003606 return err;
3607}
Chris Mason61295eb2008-01-14 16:24:38 -05003608
Al Virobd555972010-06-07 11:35:40 -04003609void btrfs_evict_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04003610{
3611 struct btrfs_trans_handle *trans;
3612 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond3c2fdc2007-09-17 10:58:06 -04003613 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04003614 int ret;
3615
liubo1abe9b82011-03-24 11:18:59 +00003616 trace_btrfs_inode_evict(inode);
3617
Chris Mason39279cc2007-06-12 06:35:45 -04003618 truncate_inode_pages(&inode->i_data, 0);
Josef Bacik0af3d002010-06-21 14:48:16 -04003619 if (inode->i_nlink && (btrfs_root_refs(&root->root_item) != 0 ||
Li Zefan82d59022011-04-20 10:33:24 +08003620 is_free_space_inode(root, inode)))
Al Virobd555972010-06-07 11:35:40 -04003621 goto no_delete;
3622
Chris Mason39279cc2007-06-12 06:35:45 -04003623 if (is_bad_inode(inode)) {
Josef Bacik7b128762008-07-24 12:17:14 -04003624 btrfs_orphan_del(NULL, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003625 goto no_delete;
3626 }
Al Virobd555972010-06-07 11:35:40 -04003627 /* do we really want it for ->i_nlink > 0 and zero btrfs_root_refs? */
Chris Mason4a096752008-07-21 10:29:44 -04003628 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Chris Mason5f39d392007-10-15 16:14:19 -04003629
Yan, Zhengc71bf092009-11-12 09:34:40 +00003630 if (root->fs_info->log_root_recovering) {
3631 BUG_ON(!list_empty(&BTRFS_I(inode)->i_orphan));
3632 goto no_delete;
3633 }
3634
Yan, Zheng76dda932009-09-21 16:00:26 -04003635 if (inode->i_nlink > 0) {
3636 BUG_ON(btrfs_root_refs(&root->root_item) != 0);
3637 goto no_delete;
3638 }
3639
Chris Masondbe674a2008-07-17 12:54:05 -04003640 btrfs_i_size_write(inode, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003641
Yan, Zheng80825102009-11-12 09:35:36 +00003642 while (1) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04003643 trans = btrfs_start_transaction(root, 0);
3644 BUG_ON(IS_ERR(trans));
Yan, Zheng80825102009-11-12 09:35:36 +00003645 btrfs_set_trans_block_group(trans, inode);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003646 trans->block_rsv = root->orphan_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00003647
Yan, Zhengd68fc572010-05-16 10:49:58 -04003648 ret = btrfs_block_rsv_check(trans, root,
3649 root->orphan_block_rsv, 0, 5);
3650 if (ret) {
3651 BUG_ON(ret != -EAGAIN);
3652 ret = btrfs_commit_transaction(trans, root);
3653 BUG_ON(ret);
3654 continue;
3655 }
3656
3657 ret = btrfs_truncate_inode_items(trans, root, inode, 0, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003658 if (ret != -EAGAIN)
3659 break;
3660
3661 nr = trans->blocks_used;
3662 btrfs_end_transaction(trans, root);
3663 trans = NULL;
3664 btrfs_btree_balance_dirty(root, nr);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003665
Josef Bacik7b128762008-07-24 12:17:14 -04003666 }
3667
Yan, Zheng80825102009-11-12 09:35:36 +00003668 if (ret == 0) {
3669 ret = btrfs_orphan_del(trans, inode);
3670 BUG_ON(ret);
3671 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003672
Li Zefan581bb052011-04-20 10:06:11 +08003673 if (!(root == root->fs_info->tree_root ||
3674 root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID))
Li Zefan33345d012011-04-20 10:31:50 +08003675 btrfs_return_ino(root, btrfs_ino(inode));
Li Zefan581bb052011-04-20 10:06:11 +08003676
Chris Masond3c2fdc2007-09-17 10:58:06 -04003677 nr = trans->blocks_used;
Chris Mason54aa1f42007-06-22 14:16:25 -04003678 btrfs_end_transaction(trans, root);
Chris Masond3c2fdc2007-09-17 10:58:06 -04003679 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003680no_delete:
Al Virobd555972010-06-07 11:35:40 -04003681 end_writeback(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003682 return;
Chris Mason39279cc2007-06-12 06:35:45 -04003683}
3684
3685/*
3686 * this returns the key found in the dir entry in the location pointer.
3687 * If no dir entries were found, location->objectid is 0.
3688 */
3689static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
3690 struct btrfs_key *location)
3691{
3692 const char *name = dentry->d_name.name;
3693 int namelen = dentry->d_name.len;
3694 struct btrfs_dir_item *di;
3695 struct btrfs_path *path;
3696 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04003697 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003698
3699 path = btrfs_alloc_path();
3700 BUG_ON(!path);
Chris Mason39544012007-12-12 14:38:19 -05003701
Li Zefan33345d012011-04-20 10:31:50 +08003702 di = btrfs_lookup_dir_item(NULL, root, path, btrfs_ino(dir), name,
Chris Mason39279cc2007-06-12 06:35:45 -04003703 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04003704 if (IS_ERR(di))
3705 ret = PTR_ERR(di);
Chris Masond3977122009-01-05 21:25:51 -05003706
David Sterbac7040052011-04-19 18:00:01 +02003707 if (IS_ERR_OR_NULL(di))
Chris Mason39544012007-12-12 14:38:19 -05003708 goto out_err;
Chris Masond3977122009-01-05 21:25:51 -05003709
Chris Mason5f39d392007-10-15 16:14:19 -04003710 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04003711out:
Chris Mason39279cc2007-06-12 06:35:45 -04003712 btrfs_free_path(path);
3713 return ret;
Chris Mason39544012007-12-12 14:38:19 -05003714out_err:
3715 location->objectid = 0;
3716 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04003717}
3718
3719/*
3720 * when we hit a tree root in a directory, the btrfs part of the inode
3721 * needs to be changed to reflect the root directory of the tree root. This
3722 * is kind of like crossing a mount point.
3723 */
3724static int fixup_tree_root_location(struct btrfs_root *root,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003725 struct inode *dir,
3726 struct dentry *dentry,
3727 struct btrfs_key *location,
3728 struct btrfs_root **sub_root)
Chris Mason39279cc2007-06-12 06:35:45 -04003729{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003730 struct btrfs_path *path;
3731 struct btrfs_root *new_root;
3732 struct btrfs_root_ref *ref;
3733 struct extent_buffer *leaf;
3734 int ret;
3735 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003736
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003737 path = btrfs_alloc_path();
3738 if (!path) {
3739 err = -ENOMEM;
3740 goto out;
3741 }
Chris Mason39279cc2007-06-12 06:35:45 -04003742
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003743 err = -ENOENT;
3744 ret = btrfs_find_root_ref(root->fs_info->tree_root, path,
3745 BTRFS_I(dir)->root->root_key.objectid,
3746 location->objectid);
3747 if (ret) {
3748 if (ret < 0)
3749 err = ret;
3750 goto out;
3751 }
Chris Mason39279cc2007-06-12 06:35:45 -04003752
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003753 leaf = path->nodes[0];
3754 ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref);
Li Zefan33345d012011-04-20 10:31:50 +08003755 if (btrfs_root_ref_dirid(leaf, ref) != btrfs_ino(dir) ||
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003756 btrfs_root_ref_name_len(leaf, ref) != dentry->d_name.len)
3757 goto out;
3758
3759 ret = memcmp_extent_buffer(leaf, dentry->d_name.name,
3760 (unsigned long)(ref + 1),
3761 dentry->d_name.len);
3762 if (ret)
3763 goto out;
3764
David Sterbab3b4aa72011-04-21 01:20:15 +02003765 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003766
3767 new_root = btrfs_read_fs_root_no_name(root->fs_info, location);
3768 if (IS_ERR(new_root)) {
3769 err = PTR_ERR(new_root);
3770 goto out;
3771 }
3772
3773 if (btrfs_root_refs(&new_root->root_item) == 0) {
3774 err = -ENOENT;
3775 goto out;
3776 }
3777
3778 *sub_root = new_root;
3779 location->objectid = btrfs_root_dirid(&new_root->root_item);
3780 location->type = BTRFS_INODE_ITEM_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -04003781 location->offset = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003782 err = 0;
3783out:
3784 btrfs_free_path(path);
3785 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003786}
3787
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003788static void inode_tree_add(struct inode *inode)
3789{
3790 struct btrfs_root *root = BTRFS_I(inode)->root;
3791 struct btrfs_inode *entry;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003792 struct rb_node **p;
3793 struct rb_node *parent;
Li Zefan33345d012011-04-20 10:31:50 +08003794 u64 ino = btrfs_ino(inode);
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003795again:
3796 p = &root->inode_tree.rb_node;
3797 parent = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003798
Al Viro1d3382c2010-10-23 15:19:20 -04003799 if (inode_unhashed(inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04003800 return;
3801
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003802 spin_lock(&root->inode_lock);
3803 while (*p) {
3804 parent = *p;
3805 entry = rb_entry(parent, struct btrfs_inode, rb_node);
3806
Li Zefan33345d012011-04-20 10:31:50 +08003807 if (ino < btrfs_ino(&entry->vfs_inode))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003808 p = &parent->rb_left;
Li Zefan33345d012011-04-20 10:31:50 +08003809 else if (ino > btrfs_ino(&entry->vfs_inode))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003810 p = &parent->rb_right;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003811 else {
3812 WARN_ON(!(entry->vfs_inode.i_state &
Al Viroa4ffdde2010-06-02 17:38:30 -04003813 (I_WILL_FREE | I_FREEING)));
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003814 rb_erase(parent, &root->inode_tree);
3815 RB_CLEAR_NODE(parent);
3816 spin_unlock(&root->inode_lock);
3817 goto again;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003818 }
3819 }
3820 rb_link_node(&BTRFS_I(inode)->rb_node, parent, p);
3821 rb_insert_color(&BTRFS_I(inode)->rb_node, &root->inode_tree);
3822 spin_unlock(&root->inode_lock);
3823}
3824
3825static void inode_tree_del(struct inode *inode)
3826{
3827 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -04003828 int empty = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003829
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003830 spin_lock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003831 if (!RB_EMPTY_NODE(&BTRFS_I(inode)->rb_node)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003832 rb_erase(&BTRFS_I(inode)->rb_node, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003833 RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node);
Yan, Zheng76dda932009-09-21 16:00:26 -04003834 empty = RB_EMPTY_ROOT(&root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003835 }
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003836 spin_unlock(&root->inode_lock);
Yan, Zheng76dda932009-09-21 16:00:26 -04003837
Josef Bacik0af3d002010-06-21 14:48:16 -04003838 /*
3839 * Free space cache has inodes in the tree root, but the tree root has a
3840 * root_refs of 0, so this could end up dropping the tree root as a
3841 * snapshot, so we need the extra !root->fs_info->tree_root check to
3842 * make sure we don't drop it.
3843 */
3844 if (empty && btrfs_root_refs(&root->root_item) == 0 &&
3845 root != root->fs_info->tree_root) {
Yan, Zheng76dda932009-09-21 16:00:26 -04003846 synchronize_srcu(&root->fs_info->subvol_srcu);
3847 spin_lock(&root->inode_lock);
3848 empty = RB_EMPTY_ROOT(&root->inode_tree);
3849 spin_unlock(&root->inode_lock);
3850 if (empty)
3851 btrfs_add_dead_root(root);
3852 }
3853}
3854
3855int btrfs_invalidate_inodes(struct btrfs_root *root)
3856{
3857 struct rb_node *node;
3858 struct rb_node *prev;
3859 struct btrfs_inode *entry;
3860 struct inode *inode;
3861 u64 objectid = 0;
3862
3863 WARN_ON(btrfs_root_refs(&root->root_item) != 0);
3864
3865 spin_lock(&root->inode_lock);
3866again:
3867 node = root->inode_tree.rb_node;
3868 prev = NULL;
3869 while (node) {
3870 prev = node;
3871 entry = rb_entry(node, struct btrfs_inode, rb_node);
3872
Li Zefan33345d012011-04-20 10:31:50 +08003873 if (objectid < btrfs_ino(&entry->vfs_inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04003874 node = node->rb_left;
Li Zefan33345d012011-04-20 10:31:50 +08003875 else if (objectid > btrfs_ino(&entry->vfs_inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04003876 node = node->rb_right;
3877 else
3878 break;
3879 }
3880 if (!node) {
3881 while (prev) {
3882 entry = rb_entry(prev, struct btrfs_inode, rb_node);
Li Zefan33345d012011-04-20 10:31:50 +08003883 if (objectid <= btrfs_ino(&entry->vfs_inode)) {
Yan, Zheng76dda932009-09-21 16:00:26 -04003884 node = prev;
3885 break;
3886 }
3887 prev = rb_next(prev);
3888 }
3889 }
3890 while (node) {
3891 entry = rb_entry(node, struct btrfs_inode, rb_node);
Li Zefan33345d012011-04-20 10:31:50 +08003892 objectid = btrfs_ino(&entry->vfs_inode) + 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04003893 inode = igrab(&entry->vfs_inode);
3894 if (inode) {
3895 spin_unlock(&root->inode_lock);
3896 if (atomic_read(&inode->i_count) > 1)
3897 d_prune_aliases(inode);
3898 /*
Al Viro45321ac2010-06-07 13:43:19 -04003899 * btrfs_drop_inode will have it removed from
Yan, Zheng76dda932009-09-21 16:00:26 -04003900 * the inode cache when its usage count
3901 * hits zero.
3902 */
3903 iput(inode);
3904 cond_resched();
3905 spin_lock(&root->inode_lock);
3906 goto again;
3907 }
3908
3909 if (cond_resched_lock(&root->inode_lock))
3910 goto again;
3911
3912 node = rb_next(node);
3913 }
3914 spin_unlock(&root->inode_lock);
3915 return 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003916}
3917
Chris Masone02119d2008-09-05 16:13:11 -04003918static int btrfs_init_locked_inode(struct inode *inode, void *p)
3919{
3920 struct btrfs_iget_args *args = p;
3921 inode->i_ino = args->ino;
Chris Masone02119d2008-09-05 16:13:11 -04003922 BTRFS_I(inode)->root = args->root;
Josef Bacik6a632092009-02-20 11:00:09 -05003923 btrfs_set_inode_space_info(args->root, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003924 return 0;
3925}
3926
3927static int btrfs_find_actor(struct inode *inode, void *opaque)
3928{
3929 struct btrfs_iget_args *args = opaque;
Li Zefan33345d012011-04-20 10:31:50 +08003930 return args->ino == btrfs_ino(inode) &&
Chris Masond3977122009-01-05 21:25:51 -05003931 args->root == BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003932}
3933
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003934static struct inode *btrfs_iget_locked(struct super_block *s,
3935 u64 objectid,
3936 struct btrfs_root *root)
Chris Mason39279cc2007-06-12 06:35:45 -04003937{
3938 struct inode *inode;
3939 struct btrfs_iget_args args;
3940 args.ino = objectid;
3941 args.root = root;
3942
3943 inode = iget5_locked(s, objectid, btrfs_find_actor,
3944 btrfs_init_locked_inode,
3945 (void *)&args);
3946 return inode;
3947}
3948
Balaji Rao1a54ef82008-07-21 02:01:04 +05303949/* Get an inode object given its location and corresponding root.
3950 * Returns in *is_new if the inode was read from disk
3951 */
3952struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
Josef Bacik73f73412009-12-04 17:38:27 +00003953 struct btrfs_root *root, int *new)
Balaji Rao1a54ef82008-07-21 02:01:04 +05303954{
3955 struct inode *inode;
3956
3957 inode = btrfs_iget_locked(s, location->objectid, root);
3958 if (!inode)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003959 return ERR_PTR(-ENOMEM);
Balaji Rao1a54ef82008-07-21 02:01:04 +05303960
3961 if (inode->i_state & I_NEW) {
3962 BTRFS_I(inode)->root = root;
3963 memcpy(&BTRFS_I(inode)->location, location, sizeof(*location));
3964 btrfs_read_locked_inode(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003965 inode_tree_add(inode);
Balaji Rao1a54ef82008-07-21 02:01:04 +05303966 unlock_new_inode(inode);
Josef Bacik73f73412009-12-04 17:38:27 +00003967 if (new)
3968 *new = 1;
Balaji Rao1a54ef82008-07-21 02:01:04 +05303969 }
3970
3971 return inode;
3972}
3973
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003974static struct inode *new_simple_dir(struct super_block *s,
3975 struct btrfs_key *key,
3976 struct btrfs_root *root)
3977{
3978 struct inode *inode = new_inode(s);
3979
3980 if (!inode)
3981 return ERR_PTR(-ENOMEM);
3982
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003983 BTRFS_I(inode)->root = root;
3984 memcpy(&BTRFS_I(inode)->location, key, sizeof(*key));
3985 BTRFS_I(inode)->dummy_inode = 1;
3986
3987 inode->i_ino = BTRFS_EMPTY_SUBVOL_DIR_OBJECTID;
3988 inode->i_op = &simple_dir_inode_operations;
3989 inode->i_fop = &simple_dir_operations;
3990 inode->i_mode = S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO;
3991 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
3992
3993 return inode;
3994}
3995
Chris Mason3de45862008-11-17 21:02:50 -05003996struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04003997{
Chris Masond3977122009-01-05 21:25:51 -05003998 struct inode *inode;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003999 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004000 struct btrfs_root *sub_root = root;
4001 struct btrfs_key location;
Yan, Zheng76dda932009-09-21 16:00:26 -04004002 int index;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004003 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004004
4005 if (dentry->d_name.len > BTRFS_NAME_LEN)
4006 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04004007
Chris Mason39279cc2007-06-12 06:35:45 -04004008 ret = btrfs_inode_by_name(dir, dentry, &location);
Chris Mason5f39d392007-10-15 16:14:19 -04004009
Chris Mason39279cc2007-06-12 06:35:45 -04004010 if (ret < 0)
4011 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04004012
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004013 if (location.objectid == 0)
4014 return NULL;
4015
4016 if (location.type == BTRFS_INODE_ITEM_KEY) {
Josef Bacik73f73412009-12-04 17:38:27 +00004017 inode = btrfs_iget(dir->i_sb, &location, root, NULL);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004018 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04004019 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004020
4021 BUG_ON(location.type != BTRFS_ROOT_ITEM_KEY);
4022
Yan, Zheng76dda932009-09-21 16:00:26 -04004023 index = srcu_read_lock(&root->fs_info->subvol_srcu);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004024 ret = fixup_tree_root_location(root, dir, dentry,
4025 &location, &sub_root);
4026 if (ret < 0) {
4027 if (ret != -ENOENT)
4028 inode = ERR_PTR(ret);
4029 else
4030 inode = new_simple_dir(dir->i_sb, &location, sub_root);
4031 } else {
Josef Bacik73f73412009-12-04 17:38:27 +00004032 inode = btrfs_iget(dir->i_sb, &location, sub_root, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04004033 }
Yan, Zheng76dda932009-09-21 16:00:26 -04004034 srcu_read_unlock(&root->fs_info->subvol_srcu, index);
4035
Julia Lawall34d19ba2011-01-24 19:55:19 +00004036 if (!IS_ERR(inode) && root != sub_root) {
Yan, Zhengc71bf092009-11-12 09:34:40 +00004037 down_read(&root->fs_info->cleanup_work_sem);
4038 if (!(inode->i_sb->s_flags & MS_RDONLY))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05004039 ret = btrfs_orphan_cleanup(sub_root);
Yan, Zhengc71bf092009-11-12 09:34:40 +00004040 up_read(&root->fs_info->cleanup_work_sem);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05004041 if (ret)
4042 inode = ERR_PTR(ret);
Yan, Zhengc71bf092009-11-12 09:34:40 +00004043 }
4044
Chris Mason3de45862008-11-17 21:02:50 -05004045 return inode;
4046}
4047
Nick Pigginfe15ce42011-01-07 17:49:23 +11004048static int btrfs_dentry_delete(const struct dentry *dentry)
Yan, Zheng76dda932009-09-21 16:00:26 -04004049{
4050 struct btrfs_root *root;
4051
Yan, Zhengefefb142009-10-09 09:25:16 -04004052 if (!dentry->d_inode && !IS_ROOT(dentry))
4053 dentry = dentry->d_parent;
Yan, Zheng76dda932009-09-21 16:00:26 -04004054
Yan, Zhengefefb142009-10-09 09:25:16 -04004055 if (dentry->d_inode) {
4056 root = BTRFS_I(dentry->d_inode)->root;
4057 if (btrfs_root_refs(&root->root_item) == 0)
4058 return 1;
4059 }
Yan, Zheng76dda932009-09-21 16:00:26 -04004060 return 0;
4061}
4062
Chris Mason3de45862008-11-17 21:02:50 -05004063static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
4064 struct nameidata *nd)
4065{
4066 struct inode *inode;
4067
Chris Mason3de45862008-11-17 21:02:50 -05004068 inode = btrfs_lookup_dentry(dir, dentry);
4069 if (IS_ERR(inode))
4070 return ERR_CAST(inode);
Josef Bacik7b128762008-07-24 12:17:14 -04004071
Chris Mason39279cc2007-06-12 06:35:45 -04004072 return d_splice_alias(inode, dentry);
4073}
4074
Miao Xie16cdcec2011-04-22 18:12:22 +08004075unsigned char btrfs_filetype_table[] = {
Chris Mason39279cc2007-06-12 06:35:45 -04004076 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
4077};
4078
David Woodhousecbdf5a22008-08-06 19:42:33 +01004079static int btrfs_real_readdir(struct file *filp, void *dirent,
4080 filldir_t filldir)
Chris Mason39279cc2007-06-12 06:35:45 -04004081{
Chris Mason6da6aba2007-12-18 16:15:09 -05004082 struct inode *inode = filp->f_dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04004083 struct btrfs_root *root = BTRFS_I(inode)->root;
4084 struct btrfs_item *item;
4085 struct btrfs_dir_item *di;
4086 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04004087 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04004088 struct btrfs_path *path;
Miao Xie16cdcec2011-04-22 18:12:22 +08004089 struct list_head ins_list;
4090 struct list_head del_list;
Chris Mason39279cc2007-06-12 06:35:45 -04004091 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -04004092 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04004093 int slot;
Chris Mason39279cc2007-06-12 06:35:45 -04004094 unsigned char d_type;
4095 int over = 0;
4096 u32 di_cur;
4097 u32 di_total;
4098 u32 di_len;
4099 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04004100 char tmp_name[32];
4101 char *name_ptr;
4102 int name_len;
Miao Xie16cdcec2011-04-22 18:12:22 +08004103 int is_curr = 0; /* filp->f_pos points to the current index? */
Chris Mason39279cc2007-06-12 06:35:45 -04004104
4105 /* FIXME, use a real flag for deciding about the key type */
4106 if (root->fs_info->tree_root == root)
4107 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04004108
Chris Mason39544012007-12-12 14:38:19 -05004109 /* special case for "." */
4110 if (filp->f_pos == 0) {
Li Zefan33345d012011-04-20 10:31:50 +08004111 over = filldir(dirent, ".", 1, 1, btrfs_ino(inode), DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05004112 if (over)
4113 return 0;
4114 filp->f_pos = 1;
4115 }
Chris Mason39544012007-12-12 14:38:19 -05004116 /* special case for .., just use the back ref */
4117 if (filp->f_pos == 1) {
David Woodhouse5ecc7e52008-08-17 15:14:48 +01004118 u64 pino = parent_ino(filp->f_path.dentry);
Chris Mason39544012007-12-12 14:38:19 -05004119 over = filldir(dirent, "..", 2,
David Woodhouse5ecc7e52008-08-17 15:14:48 +01004120 2, pino, DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05004121 if (over)
David Woodhouse49593bf2008-08-17 17:08:36 +01004122 return 0;
Chris Mason39544012007-12-12 14:38:19 -05004123 filp->f_pos = 2;
4124 }
David Woodhouse49593bf2008-08-17 17:08:36 +01004125 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08004126 if (!path)
4127 return -ENOMEM;
David Woodhouse49593bf2008-08-17 17:08:36 +01004128 path->reada = 2;
4129
Miao Xie16cdcec2011-04-22 18:12:22 +08004130 if (key_type == BTRFS_DIR_INDEX_KEY) {
4131 INIT_LIST_HEAD(&ins_list);
4132 INIT_LIST_HEAD(&del_list);
4133 btrfs_get_delayed_items(inode, &ins_list, &del_list);
4134 }
4135
Chris Mason39279cc2007-06-12 06:35:45 -04004136 btrfs_set_key_type(&key, key_type);
4137 key.offset = filp->f_pos;
Li Zefan33345d012011-04-20 10:31:50 +08004138 key.objectid = btrfs_ino(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004139
Chris Mason39279cc2007-06-12 06:35:45 -04004140 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4141 if (ret < 0)
4142 goto err;
David Woodhouse49593bf2008-08-17 17:08:36 +01004143
4144 while (1) {
Chris Mason5f39d392007-10-15 16:14:19 -04004145 leaf = path->nodes[0];
Chris Mason39279cc2007-06-12 06:35:45 -04004146 slot = path->slots[0];
Li Zefanb9e03af2011-03-23 10:43:58 +08004147 if (slot >= btrfs_header_nritems(leaf)) {
4148 ret = btrfs_next_leaf(root, path);
4149 if (ret < 0)
4150 goto err;
4151 else if (ret > 0)
4152 break;
4153 continue;
Chris Mason39279cc2007-06-12 06:35:45 -04004154 }
Chris Mason3de45862008-11-17 21:02:50 -05004155
Chris Mason5f39d392007-10-15 16:14:19 -04004156 item = btrfs_item_nr(leaf, slot);
4157 btrfs_item_key_to_cpu(leaf, &found_key, slot);
4158
4159 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04004160 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004161 if (btrfs_key_type(&found_key) != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04004162 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004163 if (found_key.offset < filp->f_pos)
Li Zefanb9e03af2011-03-23 10:43:58 +08004164 goto next;
Miao Xie16cdcec2011-04-22 18:12:22 +08004165 if (key_type == BTRFS_DIR_INDEX_KEY &&
4166 btrfs_should_delete_dir_index(&del_list,
4167 found_key.offset))
4168 goto next;
Chris Mason5f39d392007-10-15 16:14:19 -04004169
4170 filp->f_pos = found_key.offset;
Miao Xie16cdcec2011-04-22 18:12:22 +08004171 is_curr = 1;
David Woodhouse49593bf2008-08-17 17:08:36 +01004172
Chris Mason39279cc2007-06-12 06:35:45 -04004173 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
4174 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04004175 di_total = btrfs_item_size(leaf, item);
David Woodhouse49593bf2008-08-17 17:08:36 +01004176
4177 while (di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04004178 struct btrfs_key location;
4179
Josef Bacik22a94d42011-03-16 16:47:17 -04004180 if (verify_dir_item(root, leaf, di))
4181 break;
4182
Chris Mason5f39d392007-10-15 16:14:19 -04004183 name_len = btrfs_dir_name_len(leaf, di);
David Woodhouse49593bf2008-08-17 17:08:36 +01004184 if (name_len <= sizeof(tmp_name)) {
Chris Mason5f39d392007-10-15 16:14:19 -04004185 name_ptr = tmp_name;
4186 } else {
4187 name_ptr = kmalloc(name_len, GFP_NOFS);
David Woodhouse49593bf2008-08-17 17:08:36 +01004188 if (!name_ptr) {
4189 ret = -ENOMEM;
4190 goto err;
4191 }
Chris Mason5f39d392007-10-15 16:14:19 -04004192 }
4193 read_extent_buffer(leaf, name_ptr,
4194 (unsigned long)(di + 1), name_len);
4195
4196 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
4197 btrfs_dir_item_key_to_cpu(leaf, di, &location);
Chris Mason3de45862008-11-17 21:02:50 -05004198
4199 /* is this a reference to our own snapshot? If so
4200 * skip it
4201 */
4202 if (location.type == BTRFS_ROOT_ITEM_KEY &&
4203 location.objectid == root->root_key.objectid) {
4204 over = 0;
4205 goto skip;
4206 }
Chris Mason5f39d392007-10-15 16:14:19 -04004207 over = filldir(dirent, name_ptr, name_len,
David Woodhouse49593bf2008-08-17 17:08:36 +01004208 found_key.offset, location.objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04004209 d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04004210
Chris Mason3de45862008-11-17 21:02:50 -05004211skip:
Chris Mason5f39d392007-10-15 16:14:19 -04004212 if (name_ptr != tmp_name)
4213 kfree(name_ptr);
4214
Chris Mason39279cc2007-06-12 06:35:45 -04004215 if (over)
4216 goto nopos;
Josef Bacik5103e942007-11-16 11:45:54 -05004217 di_len = btrfs_dir_name_len(leaf, di) +
David Woodhouse49593bf2008-08-17 17:08:36 +01004218 btrfs_dir_data_len(leaf, di) + sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04004219 di_cur += di_len;
4220 di = (struct btrfs_dir_item *)((char *)di + di_len);
4221 }
Li Zefanb9e03af2011-03-23 10:43:58 +08004222next:
4223 path->slots[0]++;
Chris Mason39279cc2007-06-12 06:35:45 -04004224 }
David Woodhouse49593bf2008-08-17 17:08:36 +01004225
Miao Xie16cdcec2011-04-22 18:12:22 +08004226 if (key_type == BTRFS_DIR_INDEX_KEY) {
4227 if (is_curr)
4228 filp->f_pos++;
4229 ret = btrfs_readdir_delayed_dir_index(filp, dirent, filldir,
4230 &ins_list);
4231 if (ret)
4232 goto nopos;
4233 }
4234
David Woodhouse49593bf2008-08-17 17:08:36 +01004235 /* Reached end of directory/root. Bump pos past the last item. */
Yan Zheng5e591a02008-02-19 11:41:02 -05004236 if (key_type == BTRFS_DIR_INDEX_KEY)
Jan Engelhardt406266a2009-12-09 22:00:38 +00004237 /*
4238 * 32-bit glibc will use getdents64, but then strtol -
4239 * so the last number we can serve is this.
4240 */
4241 filp->f_pos = 0x7fffffff;
Yan Zheng5e591a02008-02-19 11:41:02 -05004242 else
4243 filp->f_pos++;
Chris Mason39279cc2007-06-12 06:35:45 -04004244nopos:
4245 ret = 0;
4246err:
Miao Xie16cdcec2011-04-22 18:12:22 +08004247 if (key_type == BTRFS_DIR_INDEX_KEY)
4248 btrfs_put_delayed_items(&ins_list, &del_list);
Chris Mason39279cc2007-06-12 06:35:45 -04004249 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04004250 return ret;
4251}
4252
Christoph Hellwiga9185b42010-03-05 09:21:37 +01004253int btrfs_write_inode(struct inode *inode, struct writeback_control *wbc)
Chris Mason39279cc2007-06-12 06:35:45 -04004254{
4255 struct btrfs_root *root = BTRFS_I(inode)->root;
4256 struct btrfs_trans_handle *trans;
4257 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04004258 bool nolock = false;
Chris Mason39279cc2007-06-12 06:35:45 -04004259
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004260 if (BTRFS_I(inode)->dummy_inode)
Chris Mason4ca8b412008-08-05 13:30:48 -04004261 return 0;
4262
Josef Bacik0af3d002010-06-21 14:48:16 -04004263 smp_mb();
Li Zefan82d59022011-04-20 10:33:24 +08004264 if (root->fs_info->closing && is_free_space_inode(root, inode))
4265 nolock = true;
Josef Bacik0af3d002010-06-21 14:48:16 -04004266
Christoph Hellwiga9185b42010-03-05 09:21:37 +01004267 if (wbc->sync_mode == WB_SYNC_ALL) {
Josef Bacik0af3d002010-06-21 14:48:16 -04004268 if (nolock)
4269 trans = btrfs_join_transaction_nolock(root, 1);
4270 else
4271 trans = btrfs_join_transaction(root, 1);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00004272 if (IS_ERR(trans))
4273 return PTR_ERR(trans);
Chris Mason39279cc2007-06-12 06:35:45 -04004274 btrfs_set_trans_block_group(trans, inode);
Josef Bacik0af3d002010-06-21 14:48:16 -04004275 if (nolock)
4276 ret = btrfs_end_transaction_nolock(trans, root);
4277 else
4278 ret = btrfs_commit_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004279 }
4280 return ret;
4281}
4282
4283/*
Chris Mason54aa1f42007-06-22 14:16:25 -04004284 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04004285 * inode changes. But, it is most likely to find the inode in cache.
4286 * FIXME, needs more benchmarking...there are no reasons other than performance
4287 * to keep or drop this code.
4288 */
4289void btrfs_dirty_inode(struct inode *inode)
4290{
4291 struct btrfs_root *root = BTRFS_I(inode)->root;
4292 struct btrfs_trans_handle *trans;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004293 int ret;
4294
4295 if (BTRFS_I(inode)->dummy_inode)
4296 return;
Chris Mason39279cc2007-06-12 06:35:45 -04004297
Chris Masonf9295742008-07-17 12:54:14 -04004298 trans = btrfs_join_transaction(root, 1);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00004299 BUG_ON(IS_ERR(trans));
Chris Mason39279cc2007-06-12 06:35:45 -04004300 btrfs_set_trans_block_group(trans, inode);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004301
4302 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04004303 if (ret && ret == -ENOSPC) {
4304 /* whoops, lets try again with the full transaction */
4305 btrfs_end_transaction(trans, root);
4306 trans = btrfs_start_transaction(root, 1);
Chris Mason9aeead72010-05-27 10:23:00 -04004307 if (IS_ERR(trans)) {
David Sterba7a36dde2011-05-06 15:33:15 +02004308 printk_ratelimited(KERN_ERR "btrfs: fail to "
Li Zefan33345d012011-04-20 10:31:50 +08004309 "dirty inode %llu error %ld\n",
4310 (unsigned long long)btrfs_ino(inode),
4311 PTR_ERR(trans));
Chris Mason9aeead72010-05-27 10:23:00 -04004312 return;
4313 }
Chris Mason94b60442010-05-26 11:02:00 -04004314 btrfs_set_trans_block_group(trans, inode);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004315
Chris Mason94b60442010-05-26 11:02:00 -04004316 ret = btrfs_update_inode(trans, root, inode);
4317 if (ret) {
David Sterba7a36dde2011-05-06 15:33:15 +02004318 printk_ratelimited(KERN_ERR "btrfs: fail to "
Li Zefan33345d012011-04-20 10:31:50 +08004319 "dirty inode %llu error %d\n",
4320 (unsigned long long)btrfs_ino(inode),
4321 ret);
Chris Mason94b60442010-05-26 11:02:00 -04004322 }
4323 }
Chris Mason39279cc2007-06-12 06:35:45 -04004324 btrfs_end_transaction(trans, root);
Miao Xie16cdcec2011-04-22 18:12:22 +08004325 if (BTRFS_I(inode)->delayed_node)
4326 btrfs_balance_delayed_items(root);
Chris Mason39279cc2007-06-12 06:35:45 -04004327}
4328
Chris Masond352ac62008-09-29 15:18:18 -04004329/*
4330 * find the highest existing sequence number in a directory
4331 * and then set the in-memory index_cnt variable to reflect
4332 * free sequence numbers
4333 */
Josef Bacikaec74772008-07-24 12:12:38 -04004334static int btrfs_set_inode_index_count(struct inode *inode)
4335{
4336 struct btrfs_root *root = BTRFS_I(inode)->root;
4337 struct btrfs_key key, found_key;
4338 struct btrfs_path *path;
4339 struct extent_buffer *leaf;
4340 int ret;
4341
Li Zefan33345d012011-04-20 10:31:50 +08004342 key.objectid = btrfs_ino(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004343 btrfs_set_key_type(&key, BTRFS_DIR_INDEX_KEY);
4344 key.offset = (u64)-1;
4345
4346 path = btrfs_alloc_path();
4347 if (!path)
4348 return -ENOMEM;
4349
4350 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4351 if (ret < 0)
4352 goto out;
4353 /* FIXME: we should be able to handle this */
4354 if (ret == 0)
4355 goto out;
4356 ret = 0;
4357
4358 /*
4359 * MAGIC NUMBER EXPLANATION:
4360 * since we search a directory based on f_pos we have to start at 2
4361 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
4362 * else has to start at 2
4363 */
4364 if (path->slots[0] == 0) {
4365 BTRFS_I(inode)->index_cnt = 2;
4366 goto out;
4367 }
4368
4369 path->slots[0]--;
4370
4371 leaf = path->nodes[0];
4372 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
4373
Li Zefan33345d012011-04-20 10:31:50 +08004374 if (found_key.objectid != btrfs_ino(inode) ||
Josef Bacikaec74772008-07-24 12:12:38 -04004375 btrfs_key_type(&found_key) != BTRFS_DIR_INDEX_KEY) {
4376 BTRFS_I(inode)->index_cnt = 2;
4377 goto out;
4378 }
4379
4380 BTRFS_I(inode)->index_cnt = found_key.offset + 1;
4381out:
4382 btrfs_free_path(path);
4383 return ret;
4384}
4385
Chris Masond352ac62008-09-29 15:18:18 -04004386/*
4387 * helper to find a free sequence number in a given directory. This current
4388 * code is very simple, later versions will do smarter things in the btree
4389 */
Chris Mason3de45862008-11-17 21:02:50 -05004390int btrfs_set_inode_index(struct inode *dir, u64 *index)
Josef Bacikaec74772008-07-24 12:12:38 -04004391{
4392 int ret = 0;
4393
4394 if (BTRFS_I(dir)->index_cnt == (u64)-1) {
Miao Xie16cdcec2011-04-22 18:12:22 +08004395 ret = btrfs_inode_delayed_dir_index_count(dir);
4396 if (ret) {
4397 ret = btrfs_set_inode_index_count(dir);
4398 if (ret)
4399 return ret;
4400 }
Josef Bacikaec74772008-07-24 12:12:38 -04004401 }
4402
Chris Mason00e4e6b2008-08-05 11:18:09 -04004403 *index = BTRFS_I(dir)->index_cnt;
Josef Bacikaec74772008-07-24 12:12:38 -04004404 BTRFS_I(dir)->index_cnt++;
4405
4406 return ret;
4407}
4408
Chris Mason39279cc2007-06-12 06:35:45 -04004409static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
4410 struct btrfs_root *root,
Josef Bacikaec74772008-07-24 12:12:38 -04004411 struct inode *dir,
Chris Mason9c583092008-01-29 15:15:18 -05004412 const char *name, int name_len,
Yan Zhengd2fb3432008-12-11 16:30:39 -05004413 u64 ref_objectid, u64 objectid,
4414 u64 alloc_hint, int mode, u64 *index)
Chris Mason39279cc2007-06-12 06:35:45 -04004415{
4416 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04004417 struct btrfs_inode_item *inode_item;
Chris Mason39279cc2007-06-12 06:35:45 -04004418 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04004419 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05004420 struct btrfs_inode_ref *ref;
4421 struct btrfs_key key[2];
4422 u32 sizes[2];
4423 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04004424 int ret;
4425 int owner;
4426
Chris Mason5f39d392007-10-15 16:14:19 -04004427 path = btrfs_alloc_path();
4428 BUG_ON(!path);
4429
Chris Mason39279cc2007-06-12 06:35:45 -04004430 inode = new_inode(root->fs_info->sb);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00004431 if (!inode) {
4432 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04004433 return ERR_PTR(-ENOMEM);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00004434 }
Chris Mason39279cc2007-06-12 06:35:45 -04004435
Li Zefan581bb052011-04-20 10:06:11 +08004436 /*
4437 * we have to initialize this early, so we can reclaim the inode
4438 * number if we fail afterwards in this function.
4439 */
4440 inode->i_ino = objectid;
4441
Josef Bacikaec74772008-07-24 12:12:38 -04004442 if (dir) {
liubo1abe9b82011-03-24 11:18:59 +00004443 trace_btrfs_inode_request(dir);
4444
Chris Mason3de45862008-11-17 21:02:50 -05004445 ret = btrfs_set_inode_index(dir, index);
Shen Feng09771432009-04-02 16:46:06 -04004446 if (ret) {
Yoshinori Sano8fb27642011-04-09 02:30:07 +00004447 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04004448 iput(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004449 return ERR_PTR(ret);
Shen Feng09771432009-04-02 16:46:06 -04004450 }
Josef Bacikaec74772008-07-24 12:12:38 -04004451 }
4452 /*
4453 * index_cnt is ignored for everything but a dir,
4454 * btrfs_get_inode_index_count has an explanation for the magic
4455 * number
4456 */
4457 BTRFS_I(inode)->index_cnt = 2;
Chris Mason39279cc2007-06-12 06:35:45 -04004458 BTRFS_I(inode)->root = root;
Chris Masone02119d2008-09-05 16:13:11 -04004459 BTRFS_I(inode)->generation = trans->transid;
Josef Bacik76195852010-11-19 02:18:02 +00004460 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik6a632092009-02-20 11:00:09 -05004461 btrfs_set_inode_space_info(root, inode);
Chris Masonb888db22007-08-27 16:49:44 -04004462
Chris Mason39279cc2007-06-12 06:35:45 -04004463 if (mode & S_IFDIR)
4464 owner = 0;
4465 else
4466 owner = 1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05004467 BTRFS_I(inode)->block_group =
4468 btrfs_find_block_group(root, 0, alloc_hint, owner);
Chris Mason9c583092008-01-29 15:15:18 -05004469
4470 key[0].objectid = objectid;
4471 btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
4472 key[0].offset = 0;
4473
4474 key[1].objectid = objectid;
4475 btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY);
4476 key[1].offset = ref_objectid;
4477
4478 sizes[0] = sizeof(struct btrfs_inode_item);
4479 sizes[1] = name_len + sizeof(*ref);
4480
Chris Masonb9473432009-03-13 11:00:37 -04004481 path->leave_spinning = 1;
Chris Mason9c583092008-01-29 15:15:18 -05004482 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, 2);
4483 if (ret != 0)
Chris Mason5f39d392007-10-15 16:14:19 -04004484 goto fail;
4485
Dmitry Monakhovecc11fab2010-03-04 17:31:47 +03004486 inode_init_owner(inode, dir, mode);
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004487 inode_set_bytes(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04004488 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Chris Mason5f39d392007-10-15 16:14:19 -04004489 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
4490 struct btrfs_inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04004491 fill_inode_item(trans, path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05004492
4493 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
4494 struct btrfs_inode_ref);
4495 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
Chris Mason00e4e6b2008-08-05 11:18:09 -04004496 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
Chris Mason9c583092008-01-29 15:15:18 -05004497 ptr = (unsigned long)(ref + 1);
4498 write_extent_buffer(path->nodes[0], name, ptr, name_len);
4499
Chris Mason5f39d392007-10-15 16:14:19 -04004500 btrfs_mark_buffer_dirty(path->nodes[0]);
4501 btrfs_free_path(path);
4502
Chris Mason39279cc2007-06-12 06:35:45 -04004503 location = &BTRFS_I(inode)->location;
4504 location->objectid = objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04004505 location->offset = 0;
4506 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
4507
Christoph Hellwig6cbff002009-04-17 10:37:41 +02004508 btrfs_inherit_iflags(inode, dir);
4509
Chris Mason94272162009-07-02 12:26:06 -04004510 if ((mode & S_IFREG)) {
4511 if (btrfs_test_opt(root, NODATASUM))
4512 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
Liu Bo75e7cb72011-03-22 10:12:20 +00004513 if (btrfs_test_opt(root, NODATACOW) ||
4514 (BTRFS_I(dir)->flags & BTRFS_INODE_NODATACOW))
Chris Mason94272162009-07-02 12:26:06 -04004515 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW;
4516 }
4517
Chris Mason39279cc2007-06-12 06:35:45 -04004518 insert_inode_hash(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004519 inode_tree_add(inode);
liubo1abe9b82011-03-24 11:18:59 +00004520
4521 trace_btrfs_inode_new(inode);
4522
Chris Mason39279cc2007-06-12 06:35:45 -04004523 return inode;
Chris Mason5f39d392007-10-15 16:14:19 -04004524fail:
Josef Bacikaec74772008-07-24 12:12:38 -04004525 if (dir)
4526 BTRFS_I(dir)->index_cnt--;
Chris Mason5f39d392007-10-15 16:14:19 -04004527 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04004528 iput(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004529 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04004530}
4531
4532static inline u8 btrfs_inode_type(struct inode *inode)
4533{
4534 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
4535}
4536
Chris Masond352ac62008-09-29 15:18:18 -04004537/*
4538 * utility function to add 'inode' into 'parent_inode' with
4539 * a give name and a given sequence number.
4540 * if 'add_backref' is true, also insert a backref from the
4541 * inode to the parent directory.
4542 */
Chris Masone02119d2008-09-05 16:13:11 -04004543int btrfs_add_link(struct btrfs_trans_handle *trans,
4544 struct inode *parent_inode, struct inode *inode,
4545 const char *name, int name_len, int add_backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04004546{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004547 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004548 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -04004549 struct btrfs_root *root = BTRFS_I(parent_inode)->root;
Li Zefan33345d012011-04-20 10:31:50 +08004550 u64 ino = btrfs_ino(inode);
4551 u64 parent_ino = btrfs_ino(parent_inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004552
Li Zefan33345d012011-04-20 10:31:50 +08004553 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004554 memcpy(&key, &BTRFS_I(inode)->root->root_key, sizeof(key));
4555 } else {
Li Zefan33345d012011-04-20 10:31:50 +08004556 key.objectid = ino;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004557 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
4558 key.offset = 0;
4559 }
Chris Mason39279cc2007-06-12 06:35:45 -04004560
Li Zefan33345d012011-04-20 10:31:50 +08004561 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004562 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
4563 key.objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08004564 parent_ino, index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004565 } else if (add_backref) {
Li Zefan33345d012011-04-20 10:31:50 +08004566 ret = btrfs_insert_inode_ref(trans, root, name, name_len, ino,
4567 parent_ino, index);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004568 }
4569
Chris Mason39279cc2007-06-12 06:35:45 -04004570 if (ret == 0) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004571 ret = btrfs_insert_dir_item(trans, root, name, name_len,
Miao Xie16cdcec2011-04-22 18:12:22 +08004572 parent_inode, &key,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004573 btrfs_inode_type(inode), index);
4574 BUG_ON(ret);
4575
Chris Masondbe674a2008-07-17 12:54:05 -04004576 btrfs_i_size_write(parent_inode, parent_inode->i_size +
Chris Masone02119d2008-09-05 16:13:11 -04004577 name_len * 2);
Chris Mason79c44582007-06-25 10:09:33 -04004578 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
Chris Masone02119d2008-09-05 16:13:11 -04004579 ret = btrfs_update_inode(trans, root, parent_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004580 }
4581 return ret;
4582}
4583
4584static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Josef Bacika1b075d2010-11-19 20:36:11 +00004585 struct inode *dir, struct dentry *dentry,
4586 struct inode *inode, int backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04004587{
Josef Bacika1b075d2010-11-19 20:36:11 +00004588 int err = btrfs_add_link(trans, dir, inode,
4589 dentry->d_name.name, dentry->d_name.len,
4590 backref, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004591 if (!err) {
4592 d_instantiate(dentry, inode);
4593 return 0;
4594 }
4595 if (err > 0)
4596 err = -EEXIST;
4597 return err;
4598}
4599
Josef Bacik618e21d2007-07-11 10:18:17 -04004600static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
4601 int mode, dev_t rdev)
4602{
4603 struct btrfs_trans_handle *trans;
4604 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05004605 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04004606 int err;
4607 int drop_inode = 0;
4608 u64 objectid;
Chris Mason1832a6d2007-12-21 16:27:21 -05004609 unsigned long nr = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004610 u64 index = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04004611
4612 if (!new_valid_dev(rdev))
4613 return -EINVAL;
4614
Josef Bacik9ed74f22009-09-11 16:12:44 -04004615 /*
4616 * 2 for inode item and ref
4617 * 2 for dir items
4618 * 1 for xattr if selinux is on
4619 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004620 trans = btrfs_start_transaction(root, 5);
4621 if (IS_ERR(trans))
4622 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05004623
Josef Bacik618e21d2007-07-11 10:18:17 -04004624 btrfs_set_trans_block_group(trans, dir);
4625
Li Zefan581bb052011-04-20 10:06:11 +08004626 err = btrfs_find_free_ino(root, &objectid);
4627 if (err)
4628 goto out_unlock;
4629
Josef Bacikaec74772008-07-24 12:12:38 -04004630 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08004631 dentry->d_name.len, btrfs_ino(dir), objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04004632 BTRFS_I(dir)->block_group, mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04004633 if (IS_ERR(inode)) {
4634 err = PTR_ERR(inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04004635 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04004636 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004637
Eric Paris2a7dba32011-02-01 11:05:39 -05004638 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04004639 if (err) {
4640 drop_inode = 1;
4641 goto out_unlock;
4642 }
4643
Josef Bacik618e21d2007-07-11 10:18:17 -04004644 btrfs_set_trans_block_group(trans, inode);
Josef Bacika1b075d2010-11-19 20:36:11 +00004645 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Josef Bacik618e21d2007-07-11 10:18:17 -04004646 if (err)
4647 drop_inode = 1;
4648 else {
4649 inode->i_op = &btrfs_special_inode_operations;
4650 init_special_inode(inode, inode->i_mode, rdev);
Yan1b4ab1b2007-08-29 09:11:44 -04004651 btrfs_update_inode(trans, root, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04004652 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004653 btrfs_update_inode_block_group(trans, inode);
4654 btrfs_update_inode_block_group(trans, dir);
4655out_unlock:
Chris Masond3c2fdc2007-09-17 10:58:06 -04004656 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04004657 btrfs_end_transaction_throttle(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004658 btrfs_btree_balance_dirty(root, nr);
Josef Bacik618e21d2007-07-11 10:18:17 -04004659 if (drop_inode) {
4660 inode_dec_link_count(inode);
4661 iput(inode);
4662 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004663 return err;
4664}
4665
Chris Mason39279cc2007-06-12 06:35:45 -04004666static int btrfs_create(struct inode *dir, struct dentry *dentry,
4667 int mode, struct nameidata *nd)
4668{
4669 struct btrfs_trans_handle *trans;
4670 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05004671 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04004672 int drop_inode = 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004673 int err;
Chris Mason1832a6d2007-12-21 16:27:21 -05004674 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004675 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004676 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004677
Josef Bacik9ed74f22009-09-11 16:12:44 -04004678 /*
4679 * 2 for inode item and ref
4680 * 2 for dir items
4681 * 1 for xattr if selinux is on
4682 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004683 trans = btrfs_start_transaction(root, 5);
4684 if (IS_ERR(trans))
4685 return PTR_ERR(trans);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004686
Chris Mason39279cc2007-06-12 06:35:45 -04004687 btrfs_set_trans_block_group(trans, dir);
4688
Li Zefan581bb052011-04-20 10:06:11 +08004689 err = btrfs_find_free_ino(root, &objectid);
4690 if (err)
4691 goto out_unlock;
4692
Josef Bacikaec74772008-07-24 12:12:38 -04004693 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08004694 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacika1b075d2010-11-19 20:36:11 +00004695 BTRFS_I(dir)->block_group, mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04004696 if (IS_ERR(inode)) {
4697 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004698 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04004699 }
Chris Mason39279cc2007-06-12 06:35:45 -04004700
Eric Paris2a7dba32011-02-01 11:05:39 -05004701 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04004702 if (err) {
4703 drop_inode = 1;
4704 goto out_unlock;
4705 }
4706
Chris Mason39279cc2007-06-12 06:35:45 -04004707 btrfs_set_trans_block_group(trans, inode);
Josef Bacika1b075d2010-11-19 20:36:11 +00004708 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004709 if (err)
4710 drop_inode = 1;
4711 else {
4712 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04004713 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04004714 inode->i_fop = &btrfs_file_operations;
4715 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05004716 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04004717 }
Chris Mason39279cc2007-06-12 06:35:45 -04004718 btrfs_update_inode_block_group(trans, inode);
4719 btrfs_update_inode_block_group(trans, dir);
4720out_unlock:
Chris Masond3c2fdc2007-09-17 10:58:06 -04004721 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04004722 btrfs_end_transaction_throttle(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004723 if (drop_inode) {
4724 inode_dec_link_count(inode);
4725 iput(inode);
4726 }
Chris Masond3c2fdc2007-09-17 10:58:06 -04004727 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004728 return err;
4729}
4730
4731static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
4732 struct dentry *dentry)
4733{
4734 struct btrfs_trans_handle *trans;
4735 struct btrfs_root *root = BTRFS_I(dir)->root;
4736 struct inode *inode = old_dentry->d_inode;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004737 u64 index;
Chris Mason1832a6d2007-12-21 16:27:21 -05004738 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004739 int err;
4740 int drop_inode = 0;
4741
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00004742 /* do not allow sys_link's with other subvols of the same device */
4743 if (root->objectid != BTRFS_I(inode)->root->objectid)
Mark Fasheh3ab35642011-03-22 17:20:26 +00004744 return -EXDEV;
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00004745
Al Viroc055e992011-03-04 17:15:18 +00004746 if (inode->i_nlink == ~0U)
4747 return -EMLINK;
Josef Bacik9ed74f22009-09-11 16:12:44 -04004748
Chris Mason3de45862008-11-17 21:02:50 -05004749 err = btrfs_set_inode_index(dir, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04004750 if (err)
4751 goto fail;
4752
Yan, Zhenga22285a2010-05-16 10:48:46 -04004753 /*
Miao Xie7e6b6462011-02-18 09:21:17 +00004754 * 2 items for inode and inode ref
Yan, Zhenga22285a2010-05-16 10:48:46 -04004755 * 2 items for dir items
Miao Xie7e6b6462011-02-18 09:21:17 +00004756 * 1 item for parent inode
Yan, Zhenga22285a2010-05-16 10:48:46 -04004757 */
Miao Xie7e6b6462011-02-18 09:21:17 +00004758 trans = btrfs_start_transaction(root, 5);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004759 if (IS_ERR(trans)) {
4760 err = PTR_ERR(trans);
4761 goto fail;
4762 }
Chris Mason5f39d392007-10-15 16:14:19 -04004763
Miao Xie31534952011-04-13 13:19:21 +08004764 btrfs_inc_nlink(inode);
4765 inode->i_ctime = CURRENT_TIME;
4766
Chris Mason39279cc2007-06-12 06:35:45 -04004767 btrfs_set_trans_block_group(trans, dir);
Al Viro7de9c6e2010-10-23 11:11:40 -04004768 ihold(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004769
Josef Bacika1b075d2010-11-19 20:36:11 +00004770 err = btrfs_add_nondir(trans, dir, dentry, inode, 1, index);
Chris Mason5f39d392007-10-15 16:14:19 -04004771
Yan, Zhenga5719522009-09-24 09:17:31 -04004772 if (err) {
Chris Mason39279cc2007-06-12 06:35:45 -04004773 drop_inode = 1;
Yan, Zhenga5719522009-09-24 09:17:31 -04004774 } else {
Josef Bacik6a912212010-11-20 09:48:00 +00004775 struct dentry *parent = dget_parent(dentry);
Yan, Zhenga5719522009-09-24 09:17:31 -04004776 btrfs_update_inode_block_group(trans, dir);
4777 err = btrfs_update_inode(trans, root, inode);
4778 BUG_ON(err);
Josef Bacik6a912212010-11-20 09:48:00 +00004779 btrfs_log_new_name(trans, inode, NULL, parent);
4780 dput(parent);
Yan, Zhenga5719522009-09-24 09:17:31 -04004781 }
Chris Mason39279cc2007-06-12 06:35:45 -04004782
Chris Masond3c2fdc2007-09-17 10:58:06 -04004783 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04004784 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05004785fail:
Chris Mason39279cc2007-06-12 06:35:45 -04004786 if (drop_inode) {
4787 inode_dec_link_count(inode);
4788 iput(inode);
4789 }
Chris Masond3c2fdc2007-09-17 10:58:06 -04004790 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004791 return err;
4792}
4793
Chris Mason39279cc2007-06-12 06:35:45 -04004794static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
4795{
Chris Masonb9d86662008-05-02 16:13:49 -04004796 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04004797 struct btrfs_trans_handle *trans;
4798 struct btrfs_root *root = BTRFS_I(dir)->root;
4799 int err = 0;
4800 int drop_on_err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04004801 u64 objectid = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004802 u64 index = 0;
Chris Masond3c2fdc2007-09-17 10:58:06 -04004803 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04004804
Josef Bacik9ed74f22009-09-11 16:12:44 -04004805 /*
4806 * 2 items for inode and ref
4807 * 2 items for dir items
4808 * 1 for xattr if selinux is on
4809 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004810 trans = btrfs_start_transaction(root, 5);
4811 if (IS_ERR(trans))
4812 return PTR_ERR(trans);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004813 btrfs_set_trans_block_group(trans, dir);
Chris Mason39279cc2007-06-12 06:35:45 -04004814
Li Zefan581bb052011-04-20 10:06:11 +08004815 err = btrfs_find_free_ino(root, &objectid);
4816 if (err)
4817 goto out_fail;
4818
Josef Bacikaec74772008-07-24 12:12:38 -04004819 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08004820 dentry->d_name.len, btrfs_ino(dir), objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04004821 BTRFS_I(dir)->block_group, S_IFDIR | mode,
4822 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04004823 if (IS_ERR(inode)) {
4824 err = PTR_ERR(inode);
4825 goto out_fail;
4826 }
Chris Mason5f39d392007-10-15 16:14:19 -04004827
Chris Mason39279cc2007-06-12 06:35:45 -04004828 drop_on_err = 1;
Josef Bacik33268ea2008-07-24 12:16:36 -04004829
Eric Paris2a7dba32011-02-01 11:05:39 -05004830 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04004831 if (err)
4832 goto out_fail;
4833
Chris Mason39279cc2007-06-12 06:35:45 -04004834 inode->i_op = &btrfs_dir_inode_operations;
4835 inode->i_fop = &btrfs_dir_file_operations;
4836 btrfs_set_trans_block_group(trans, inode);
4837
Chris Masondbe674a2008-07-17 12:54:05 -04004838 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04004839 err = btrfs_update_inode(trans, root, inode);
4840 if (err)
4841 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04004842
Josef Bacika1b075d2010-11-19 20:36:11 +00004843 err = btrfs_add_link(trans, dir, inode, dentry->d_name.name,
4844 dentry->d_name.len, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004845 if (err)
4846 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04004847
Chris Mason39279cc2007-06-12 06:35:45 -04004848 d_instantiate(dentry, inode);
4849 drop_on_err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004850 btrfs_update_inode_block_group(trans, inode);
4851 btrfs_update_inode_block_group(trans, dir);
4852
4853out_fail:
Chris Masond3c2fdc2007-09-17 10:58:06 -04004854 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04004855 btrfs_end_transaction_throttle(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004856 if (drop_on_err)
4857 iput(inode);
Chris Masond3c2fdc2007-09-17 10:58:06 -04004858 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004859 return err;
4860}
4861
Chris Masond352ac62008-09-29 15:18:18 -04004862/* helper for btfs_get_extent. Given an existing extent in the tree,
4863 * and an extent that you want to insert, deal with overlap and insert
4864 * the new extent into the tree.
4865 */
Chris Mason3b951512008-04-17 11:29:12 -04004866static int merge_extent_mapping(struct extent_map_tree *em_tree,
4867 struct extent_map *existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04004868 struct extent_map *em,
4869 u64 map_start, u64 map_len)
Chris Mason3b951512008-04-17 11:29:12 -04004870{
4871 u64 start_diff;
Chris Mason3b951512008-04-17 11:29:12 -04004872
Chris Masone6dcd2d2008-07-17 12:53:50 -04004873 BUG_ON(map_start < em->start || map_start >= extent_map_end(em));
4874 start_diff = map_start - em->start;
4875 em->start = map_start;
4876 em->len = map_len;
Chris Masonc8b97812008-10-29 14:49:59 -04004877 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
4878 !test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04004879 em->block_start += start_diff;
Chris Masonc8b97812008-10-29 14:49:59 -04004880 em->block_len -= start_diff;
4881 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004882 return add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04004883}
4884
Chris Masonc8b97812008-10-29 14:49:59 -04004885static noinline int uncompress_inline(struct btrfs_path *path,
4886 struct inode *inode, struct page *page,
4887 size_t pg_offset, u64 extent_offset,
4888 struct btrfs_file_extent_item *item)
4889{
4890 int ret;
4891 struct extent_buffer *leaf = path->nodes[0];
4892 char *tmp;
4893 size_t max_size;
4894 unsigned long inline_size;
4895 unsigned long ptr;
Li Zefan261507a02010-12-17 14:21:50 +08004896 int compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04004897
4898 WARN_ON(pg_offset != 0);
Li Zefan261507a02010-12-17 14:21:50 +08004899 compress_type = btrfs_file_extent_compression(leaf, item);
Chris Masonc8b97812008-10-29 14:49:59 -04004900 max_size = btrfs_file_extent_ram_bytes(leaf, item);
4901 inline_size = btrfs_file_extent_inline_item_len(leaf,
4902 btrfs_item_nr(leaf, path->slots[0]));
4903 tmp = kmalloc(inline_size, GFP_NOFS);
Tsutomu Itoh8d413712011-04-25 19:43:52 -04004904 if (!tmp)
4905 return -ENOMEM;
Chris Masonc8b97812008-10-29 14:49:59 -04004906 ptr = btrfs_file_extent_inline_start(item);
4907
4908 read_extent_buffer(leaf, tmp, ptr, inline_size);
4909
Chris Mason5b050f02008-11-11 09:34:41 -05004910 max_size = min_t(unsigned long, PAGE_CACHE_SIZE, max_size);
Li Zefan261507a02010-12-17 14:21:50 +08004911 ret = btrfs_decompress(compress_type, tmp, page,
4912 extent_offset, inline_size, max_size);
Chris Masonc8b97812008-10-29 14:49:59 -04004913 if (ret) {
4914 char *kaddr = kmap_atomic(page, KM_USER0);
4915 unsigned long copy_size = min_t(u64,
4916 PAGE_CACHE_SIZE - pg_offset,
4917 max_size - extent_offset);
4918 memset(kaddr + pg_offset, 0, copy_size);
4919 kunmap_atomic(kaddr, KM_USER0);
4920 }
4921 kfree(tmp);
4922 return 0;
4923}
4924
Chris Masond352ac62008-09-29 15:18:18 -04004925/*
4926 * a bit scary, this does extent mapping from logical file offset to the disk.
Chris Masond3977122009-01-05 21:25:51 -05004927 * the ugly parts come from merging extents from the disk with the in-ram
4928 * representation. This gets more complex because of the data=ordered code,
Chris Masond352ac62008-09-29 15:18:18 -04004929 * where the in-ram extents might be locked pending data=ordered completion.
4930 *
4931 * This also copies inline extents directly into the page.
4932 */
Chris Masond3977122009-01-05 21:25:51 -05004933
Chris Masona52d9a82007-08-27 16:49:44 -04004934struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05004935 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04004936 int create)
4937{
4938 int ret;
4939 int err = 0;
Chris Masondb945352007-10-15 16:15:53 -04004940 u64 bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04004941 u64 extent_start = 0;
4942 u64 extent_end = 0;
Li Zefan33345d012011-04-20 10:31:50 +08004943 u64 objectid = btrfs_ino(inode);
Chris Masona52d9a82007-08-27 16:49:44 -04004944 u32 found_type;
Chris Masonf4219502008-07-22 11:18:09 -04004945 struct btrfs_path *path = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -04004946 struct btrfs_root *root = BTRFS_I(inode)->root;
4947 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04004948 struct extent_buffer *leaf;
4949 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04004950 struct extent_map *em = NULL;
4951 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05004952 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04004953 struct btrfs_trans_handle *trans = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08004954 int compress_type;
Chris Masona52d9a82007-08-27 16:49:44 -04004955
Chris Masona52d9a82007-08-27 16:49:44 -04004956again:
Chris Mason890871b2009-09-02 16:24:52 -04004957 read_lock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05004958 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04004959 if (em)
4960 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason890871b2009-09-02 16:24:52 -04004961 read_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05004962
Chris Masona52d9a82007-08-27 16:49:44 -04004963 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04004964 if (em->start > start || em->start + em->len <= start)
4965 free_extent_map(em);
4966 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05004967 free_extent_map(em);
4968 else
4969 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04004970 }
David Sterba172ddd62011-04-21 00:48:27 +02004971 em = alloc_extent_map();
Chris Masona52d9a82007-08-27 16:49:44 -04004972 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05004973 err = -ENOMEM;
4974 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04004975 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004976 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05004977 em->start = EXTENT_MAP_HOLE;
Chris Mason445a6942008-11-10 11:53:33 -05004978 em->orig_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05004979 em->len = (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -04004980 em->block_len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04004981
4982 if (!path) {
4983 path = btrfs_alloc_path();
4984 BUG_ON(!path);
4985 }
4986
Chris Mason179e29e2007-11-01 11:28:41 -04004987 ret = btrfs_lookup_file_extent(trans, root, path,
4988 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04004989 if (ret < 0) {
4990 err = ret;
4991 goto out;
4992 }
4993
4994 if (ret != 0) {
4995 if (path->slots[0] == 0)
4996 goto not_found;
4997 path->slots[0]--;
4998 }
4999
Chris Mason5f39d392007-10-15 16:14:19 -04005000 leaf = path->nodes[0];
5001 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04005002 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04005003 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04005004 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5005 found_type = btrfs_key_type(&found_key);
5006 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04005007 found_type != BTRFS_EXTENT_DATA_KEY) {
5008 goto not_found;
5009 }
5010
Chris Mason5f39d392007-10-15 16:14:19 -04005011 found_type = btrfs_file_extent_type(leaf, item);
5012 extent_start = found_key.offset;
Li Zefan261507a02010-12-17 14:21:50 +08005013 compress_type = btrfs_file_extent_compression(leaf, item);
Yan Zhengd899e052008-10-30 14:25:28 -04005014 if (found_type == BTRFS_FILE_EXTENT_REG ||
5015 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04005016 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04005017 btrfs_file_extent_num_bytes(leaf, item);
Yan Zheng9036c102008-10-30 14:19:41 -04005018 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
5019 size_t size;
5020 size = btrfs_file_extent_inline_len(leaf, item);
5021 extent_end = (extent_start + size + root->sectorsize - 1) &
5022 ~((u64)root->sectorsize - 1);
5023 }
5024
5025 if (start >= extent_end) {
5026 path->slots[0]++;
5027 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
5028 ret = btrfs_next_leaf(root, path);
5029 if (ret < 0) {
5030 err = ret;
5031 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04005032 }
Yan Zheng9036c102008-10-30 14:19:41 -04005033 if (ret > 0)
5034 goto not_found;
5035 leaf = path->nodes[0];
Chris Masona52d9a82007-08-27 16:49:44 -04005036 }
Yan Zheng9036c102008-10-30 14:19:41 -04005037 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5038 if (found_key.objectid != objectid ||
5039 found_key.type != BTRFS_EXTENT_DATA_KEY)
5040 goto not_found;
5041 if (start + len <= found_key.offset)
5042 goto not_found;
5043 em->start = start;
5044 em->len = found_key.offset - start;
5045 goto not_found_em;
5046 }
5047
Yan Zhengd899e052008-10-30 14:25:28 -04005048 if (found_type == BTRFS_FILE_EXTENT_REG ||
5049 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng9036c102008-10-30 14:19:41 -04005050 em->start = extent_start;
5051 em->len = extent_end - extent_start;
Yan Zhengff5b7ee2008-11-10 07:34:43 -05005052 em->orig_start = extent_start -
5053 btrfs_file_extent_offset(leaf, item);
Chris Masondb945352007-10-15 16:15:53 -04005054 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
5055 if (bytenr == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04005056 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04005057 goto insert;
5058 }
Li Zefan261507a02010-12-17 14:21:50 +08005059 if (compress_type != BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -04005060 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Li Zefan261507a02010-12-17 14:21:50 +08005061 em->compress_type = compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04005062 em->block_start = bytenr;
5063 em->block_len = btrfs_file_extent_disk_num_bytes(leaf,
5064 item);
5065 } else {
5066 bytenr += btrfs_file_extent_offset(leaf, item);
5067 em->block_start = bytenr;
5068 em->block_len = em->len;
Yan Zhengd899e052008-10-30 14:25:28 -04005069 if (found_type == BTRFS_FILE_EXTENT_PREALLOC)
5070 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -04005071 }
Chris Masona52d9a82007-08-27 16:49:44 -04005072 goto insert;
5073 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04005074 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04005075 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04005076 size_t size;
5077 size_t extent_offset;
5078 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04005079
Chris Masona52d9a82007-08-27 16:49:44 -04005080 em->block_start = EXTENT_MAP_INLINE;
Chris Masonc8b97812008-10-29 14:49:59 -04005081 if (!page || create) {
Yan689f9342007-10-29 11:41:07 -04005082 em->start = extent_start;
Yan Zheng9036c102008-10-30 14:19:41 -04005083 em->len = extent_end - extent_start;
Yan689f9342007-10-29 11:41:07 -04005084 goto out;
5085 }
5086
Yan Zheng9036c102008-10-30 14:19:41 -04005087 size = btrfs_file_extent_inline_len(leaf, item);
5088 extent_offset = page_offset(page) + pg_offset - extent_start;
Chris Mason70dec802008-01-29 09:59:12 -05005089 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
Yan689f9342007-10-29 11:41:07 -04005090 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04005091 em->start = extent_start + extent_offset;
Chris Mason70dec802008-01-29 09:59:12 -05005092 em->len = (copy_size + root->sectorsize - 1) &
5093 ~((u64)root->sectorsize - 1);
Yan Zhengff5b7ee2008-11-10 07:34:43 -05005094 em->orig_start = EXTENT_MAP_INLINE;
Li Zefan261507a02010-12-17 14:21:50 +08005095 if (compress_type) {
Chris Masonc8b97812008-10-29 14:49:59 -04005096 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Li Zefan261507a02010-12-17 14:21:50 +08005097 em->compress_type = compress_type;
5098 }
Yan689f9342007-10-29 11:41:07 -04005099 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04005100 if (create == 0 && !PageUptodate(page)) {
Li Zefan261507a02010-12-17 14:21:50 +08005101 if (btrfs_file_extent_compression(leaf, item) !=
5102 BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -04005103 ret = uncompress_inline(path, inode, page,
5104 pg_offset,
5105 extent_offset, item);
5106 BUG_ON(ret);
5107 } else {
5108 map = kmap(page);
5109 read_extent_buffer(leaf, map + pg_offset, ptr,
5110 copy_size);
Chris Mason93c82d52009-09-11 12:36:29 -04005111 if (pg_offset + copy_size < PAGE_CACHE_SIZE) {
5112 memset(map + pg_offset + copy_size, 0,
5113 PAGE_CACHE_SIZE - pg_offset -
5114 copy_size);
5115 }
Chris Masonc8b97812008-10-29 14:49:59 -04005116 kunmap(page);
5117 }
Chris Mason179e29e2007-11-01 11:28:41 -04005118 flush_dcache_page(page);
5119 } else if (create && PageUptodate(page)) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005120 WARN_ON(1);
Chris Mason179e29e2007-11-01 11:28:41 -04005121 if (!trans) {
5122 kunmap(page);
5123 free_extent_map(em);
5124 em = NULL;
David Sterbab3b4aa72011-04-21 01:20:15 +02005125 btrfs_release_path(path);
Chris Masonf9295742008-07-17 12:54:14 -04005126 trans = btrfs_join_transaction(root, 1);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005127 if (IS_ERR(trans))
5128 return ERR_CAST(trans);
Chris Mason179e29e2007-11-01 11:28:41 -04005129 goto again;
5130 }
Chris Masonc8b97812008-10-29 14:49:59 -04005131 map = kmap(page);
Chris Mason70dec802008-01-29 09:59:12 -05005132 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04005133 copy_size);
Chris Masonc8b97812008-10-29 14:49:59 -04005134 kunmap(page);
Chris Mason179e29e2007-11-01 11:28:41 -04005135 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04005136 }
Chris Masond1310b22008-01-24 16:13:08 -05005137 set_extent_uptodate(io_tree, em->start,
Arne Jansen507903b2011-04-06 10:02:20 +00005138 extent_map_end(em) - 1, NULL, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04005139 goto insert;
5140 } else {
Chris Masond3977122009-01-05 21:25:51 -05005141 printk(KERN_ERR "btrfs unknown found_type %d\n", found_type);
Chris Masona52d9a82007-08-27 16:49:44 -04005142 WARN_ON(1);
5143 }
5144not_found:
5145 em->start = start;
Chris Masond1310b22008-01-24 16:13:08 -05005146 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04005147not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04005148 em->block_start = EXTENT_MAP_HOLE;
Yan Zheng9036c102008-10-30 14:19:41 -04005149 set_bit(EXTENT_FLAG_VACANCY, &em->flags);
Chris Masona52d9a82007-08-27 16:49:44 -04005150insert:
David Sterbab3b4aa72011-04-21 01:20:15 +02005151 btrfs_release_path(path);
Chris Masond1310b22008-01-24 16:13:08 -05005152 if (em->start > start || extent_map_end(em) <= start) {
Chris Masond3977122009-01-05 21:25:51 -05005153 printk(KERN_ERR "Btrfs: bad extent! em: [%llu %llu] passed "
5154 "[%llu %llu]\n", (unsigned long long)em->start,
5155 (unsigned long long)em->len,
5156 (unsigned long long)start,
5157 (unsigned long long)len);
Chris Masona52d9a82007-08-27 16:49:44 -04005158 err = -EIO;
5159 goto out;
5160 }
Chris Masond1310b22008-01-24 16:13:08 -05005161
5162 err = 0;
Chris Mason890871b2009-09-02 16:24:52 -04005163 write_lock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04005164 ret = add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04005165 /* it is possible that someone inserted the extent into the tree
5166 * while we had the lock dropped. It is also possible that
5167 * an overlapping map exists in the tree
5168 */
Chris Masona52d9a82007-08-27 16:49:44 -04005169 if (ret == -EEXIST) {
Chris Mason3b951512008-04-17 11:29:12 -04005170 struct extent_map *existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005171
5172 ret = 0;
5173
Chris Mason3b951512008-04-17 11:29:12 -04005174 existing = lookup_extent_mapping(em_tree, start, len);
Chris Masone1c4b742008-04-22 13:26:46 -04005175 if (existing && (existing->start > start ||
5176 existing->start + existing->len <= start)) {
5177 free_extent_map(existing);
5178 existing = NULL;
5179 }
Chris Mason3b951512008-04-17 11:29:12 -04005180 if (!existing) {
5181 existing = lookup_extent_mapping(em_tree, em->start,
5182 em->len);
5183 if (existing) {
5184 err = merge_extent_mapping(em_tree, existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04005185 em, start,
5186 root->sectorsize);
Chris Mason3b951512008-04-17 11:29:12 -04005187 free_extent_map(existing);
5188 if (err) {
5189 free_extent_map(em);
5190 em = NULL;
5191 }
5192 } else {
5193 err = -EIO;
Chris Mason3b951512008-04-17 11:29:12 -04005194 free_extent_map(em);
5195 em = NULL;
5196 }
5197 } else {
5198 free_extent_map(em);
5199 em = existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005200 err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04005201 }
Chris Masona52d9a82007-08-27 16:49:44 -04005202 }
Chris Mason890871b2009-09-02 16:24:52 -04005203 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04005204out:
liubo1abe9b82011-03-24 11:18:59 +00005205
5206 trace_btrfs_get_extent(root, em);
5207
Chris Masonf4219502008-07-22 11:18:09 -04005208 if (path)
5209 btrfs_free_path(path);
Chris Masona52d9a82007-08-27 16:49:44 -04005210 if (trans) {
5211 ret = btrfs_end_transaction(trans, root);
Chris Masond3977122009-01-05 21:25:51 -05005212 if (!err)
Chris Masona52d9a82007-08-27 16:49:44 -04005213 err = ret;
5214 }
Chris Masona52d9a82007-08-27 16:49:44 -04005215 if (err) {
5216 free_extent_map(em);
Chris Masona52d9a82007-08-27 16:49:44 -04005217 return ERR_PTR(err);
5218 }
5219 return em;
5220}
5221
Chris Masonec29ed52011-02-23 16:23:20 -05005222struct extent_map *btrfs_get_extent_fiemap(struct inode *inode, struct page *page,
5223 size_t pg_offset, u64 start, u64 len,
5224 int create)
5225{
5226 struct extent_map *em;
5227 struct extent_map *hole_em = NULL;
5228 u64 range_start = start;
5229 u64 end;
5230 u64 found;
5231 u64 found_end;
5232 int err = 0;
5233
5234 em = btrfs_get_extent(inode, page, pg_offset, start, len, create);
5235 if (IS_ERR(em))
5236 return em;
5237 if (em) {
5238 /*
5239 * if our em maps to a hole, there might
5240 * actually be delalloc bytes behind it
5241 */
5242 if (em->block_start != EXTENT_MAP_HOLE)
5243 return em;
5244 else
5245 hole_em = em;
5246 }
5247
5248 /* check to see if we've wrapped (len == -1 or similar) */
5249 end = start + len;
5250 if (end < start)
5251 end = (u64)-1;
5252 else
5253 end -= 1;
5254
5255 em = NULL;
5256
5257 /* ok, we didn't find anything, lets look for delalloc */
5258 found = count_range_bits(&BTRFS_I(inode)->io_tree, &range_start,
5259 end, len, EXTENT_DELALLOC, 1);
5260 found_end = range_start + found;
5261 if (found_end < range_start)
5262 found_end = (u64)-1;
5263
5264 /*
5265 * we didn't find anything useful, return
5266 * the original results from get_extent()
5267 */
5268 if (range_start > end || found_end <= start) {
5269 em = hole_em;
5270 hole_em = NULL;
5271 goto out;
5272 }
5273
5274 /* adjust the range_start to make sure it doesn't
5275 * go backwards from the start they passed in
5276 */
5277 range_start = max(start,range_start);
5278 found = found_end - range_start;
5279
5280 if (found > 0) {
5281 u64 hole_start = start;
5282 u64 hole_len = len;
5283
David Sterba172ddd62011-04-21 00:48:27 +02005284 em = alloc_extent_map();
Chris Masonec29ed52011-02-23 16:23:20 -05005285 if (!em) {
5286 err = -ENOMEM;
5287 goto out;
5288 }
5289 /*
5290 * when btrfs_get_extent can't find anything it
5291 * returns one huge hole
5292 *
5293 * make sure what it found really fits our range, and
5294 * adjust to make sure it is based on the start from
5295 * the caller
5296 */
5297 if (hole_em) {
5298 u64 calc_end = extent_map_end(hole_em);
5299
5300 if (calc_end <= start || (hole_em->start > end)) {
5301 free_extent_map(hole_em);
5302 hole_em = NULL;
5303 } else {
5304 hole_start = max(hole_em->start, start);
5305 hole_len = calc_end - hole_start;
5306 }
5307 }
5308 em->bdev = NULL;
5309 if (hole_em && range_start > hole_start) {
5310 /* our hole starts before our delalloc, so we
5311 * have to return just the parts of the hole
5312 * that go until the delalloc starts
5313 */
5314 em->len = min(hole_len,
5315 range_start - hole_start);
5316 em->start = hole_start;
5317 em->orig_start = hole_start;
5318 /*
5319 * don't adjust block start at all,
5320 * it is fixed at EXTENT_MAP_HOLE
5321 */
5322 em->block_start = hole_em->block_start;
5323 em->block_len = hole_len;
5324 } else {
5325 em->start = range_start;
5326 em->len = found;
5327 em->orig_start = range_start;
5328 em->block_start = EXTENT_MAP_DELALLOC;
5329 em->block_len = found;
5330 }
5331 } else if (hole_em) {
5332 return hole_em;
5333 }
5334out:
5335
5336 free_extent_map(hole_em);
5337 if (err) {
5338 free_extent_map(em);
5339 return ERR_PTR(err);
5340 }
5341 return em;
5342}
5343
Josef Bacik4b46fce2010-05-23 11:00:55 -04005344static struct extent_map *btrfs_new_extent_direct(struct inode *inode,
Josef Bacik16d299a2011-04-06 14:53:07 -04005345 struct extent_map *em,
Josef Bacik4b46fce2010-05-23 11:00:55 -04005346 u64 start, u64 len)
5347{
5348 struct btrfs_root *root = BTRFS_I(inode)->root;
5349 struct btrfs_trans_handle *trans;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005350 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
5351 struct btrfs_key ins;
5352 u64 alloc_hint;
5353 int ret;
Josef Bacik16d299a2011-04-06 14:53:07 -04005354 bool insert = false;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005355
Josef Bacik16d299a2011-04-06 14:53:07 -04005356 /*
5357 * Ok if the extent map we looked up is a hole and is for the exact
5358 * range we want, there is no reason to allocate a new one, however if
5359 * it is not right then we need to free this one and drop the cache for
5360 * our range.
5361 */
5362 if (em->block_start != EXTENT_MAP_HOLE || em->start != start ||
5363 em->len != len) {
5364 free_extent_map(em);
5365 em = NULL;
5366 insert = true;
5367 btrfs_drop_extent_cache(inode, start, start + len - 1, 0);
5368 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005369
5370 trans = btrfs_join_transaction(root, 0);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005371 if (IS_ERR(trans))
5372 return ERR_CAST(trans);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005373
5374 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
5375
5376 alloc_hint = get_extent_allocation_hint(inode, start, len);
5377 ret = btrfs_reserve_extent(trans, root, len, root->sectorsize, 0,
5378 alloc_hint, (u64)-1, &ins, 1);
5379 if (ret) {
5380 em = ERR_PTR(ret);
5381 goto out;
5382 }
5383
Josef Bacik4b46fce2010-05-23 11:00:55 -04005384 if (!em) {
David Sterba172ddd62011-04-21 00:48:27 +02005385 em = alloc_extent_map();
Josef Bacik16d299a2011-04-06 14:53:07 -04005386 if (!em) {
5387 em = ERR_PTR(-ENOMEM);
5388 goto out;
5389 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005390 }
5391
5392 em->start = start;
5393 em->orig_start = em->start;
5394 em->len = ins.offset;
5395
5396 em->block_start = ins.objectid;
5397 em->block_len = ins.offset;
5398 em->bdev = root->fs_info->fs_devices->latest_bdev;
Josef Bacik16d299a2011-04-06 14:53:07 -04005399
5400 /*
5401 * We need to do this because if we're using the original em we searched
5402 * for, we could have EXTENT_FLAG_VACANCY set, and we don't want that.
5403 */
5404 em->flags = 0;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005405 set_bit(EXTENT_FLAG_PINNED, &em->flags);
5406
Josef Bacik16d299a2011-04-06 14:53:07 -04005407 while (insert) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04005408 write_lock(&em_tree->lock);
5409 ret = add_extent_mapping(em_tree, em);
5410 write_unlock(&em_tree->lock);
5411 if (ret != -EEXIST)
5412 break;
5413 btrfs_drop_extent_cache(inode, start, start + em->len - 1, 0);
5414 }
5415
5416 ret = btrfs_add_ordered_extent_dio(inode, start, ins.objectid,
5417 ins.offset, ins.offset, 0);
5418 if (ret) {
5419 btrfs_free_reserved_extent(root, ins.objectid, ins.offset);
5420 em = ERR_PTR(ret);
5421 }
5422out:
5423 btrfs_end_transaction(trans, root);
5424 return em;
5425}
5426
Chris Mason46bfbb52010-05-26 11:04:10 -04005427/*
5428 * returns 1 when the nocow is safe, < 1 on error, 0 if the
5429 * block must be cow'd
5430 */
5431static noinline int can_nocow_odirect(struct btrfs_trans_handle *trans,
5432 struct inode *inode, u64 offset, u64 len)
5433{
5434 struct btrfs_path *path;
5435 int ret;
5436 struct extent_buffer *leaf;
5437 struct btrfs_root *root = BTRFS_I(inode)->root;
5438 struct btrfs_file_extent_item *fi;
5439 struct btrfs_key key;
5440 u64 disk_bytenr;
5441 u64 backref_offset;
5442 u64 extent_end;
5443 u64 num_bytes;
5444 int slot;
5445 int found_type;
5446
5447 path = btrfs_alloc_path();
5448 if (!path)
5449 return -ENOMEM;
5450
Li Zefan33345d012011-04-20 10:31:50 +08005451 ret = btrfs_lookup_file_extent(trans, root, path, btrfs_ino(inode),
Chris Mason46bfbb52010-05-26 11:04:10 -04005452 offset, 0);
5453 if (ret < 0)
5454 goto out;
5455
5456 slot = path->slots[0];
5457 if (ret == 1) {
5458 if (slot == 0) {
5459 /* can't find the item, must cow */
5460 ret = 0;
5461 goto out;
5462 }
5463 slot--;
5464 }
5465 ret = 0;
5466 leaf = path->nodes[0];
5467 btrfs_item_key_to_cpu(leaf, &key, slot);
Li Zefan33345d012011-04-20 10:31:50 +08005468 if (key.objectid != btrfs_ino(inode) ||
Chris Mason46bfbb52010-05-26 11:04:10 -04005469 key.type != BTRFS_EXTENT_DATA_KEY) {
5470 /* not our file or wrong item type, must cow */
5471 goto out;
5472 }
5473
5474 if (key.offset > offset) {
5475 /* Wrong offset, must cow */
5476 goto out;
5477 }
5478
5479 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
5480 found_type = btrfs_file_extent_type(leaf, fi);
5481 if (found_type != BTRFS_FILE_EXTENT_REG &&
5482 found_type != BTRFS_FILE_EXTENT_PREALLOC) {
5483 /* not a regular extent, must cow */
5484 goto out;
5485 }
5486 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
5487 backref_offset = btrfs_file_extent_offset(leaf, fi);
5488
5489 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
5490 if (extent_end < offset + len) {
5491 /* extent doesn't include our full range, must cow */
5492 goto out;
5493 }
5494
5495 if (btrfs_extent_readonly(root, disk_bytenr))
5496 goto out;
5497
5498 /*
5499 * look for other files referencing this extent, if we
5500 * find any we must cow
5501 */
Li Zefan33345d012011-04-20 10:31:50 +08005502 if (btrfs_cross_ref_exist(trans, root, btrfs_ino(inode),
Chris Mason46bfbb52010-05-26 11:04:10 -04005503 key.offset - backref_offset, disk_bytenr))
5504 goto out;
5505
5506 /*
5507 * adjust disk_bytenr and num_bytes to cover just the bytes
5508 * in this extent we are about to write. If there
5509 * are any csums in that range we have to cow in order
5510 * to keep the csums correct
5511 */
5512 disk_bytenr += backref_offset;
5513 disk_bytenr += offset - key.offset;
5514 num_bytes = min(offset + len, extent_end) - offset;
5515 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
5516 goto out;
5517 /*
5518 * all of the above have passed, it is safe to overwrite this extent
5519 * without cow
5520 */
5521 ret = 1;
5522out:
5523 btrfs_free_path(path);
5524 return ret;
5525}
5526
Josef Bacik4b46fce2010-05-23 11:00:55 -04005527static int btrfs_get_blocks_direct(struct inode *inode, sector_t iblock,
5528 struct buffer_head *bh_result, int create)
5529{
5530 struct extent_map *em;
5531 struct btrfs_root *root = BTRFS_I(inode)->root;
5532 u64 start = iblock << inode->i_blkbits;
5533 u64 len = bh_result->b_size;
Chris Mason46bfbb52010-05-26 11:04:10 -04005534 struct btrfs_trans_handle *trans;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005535
5536 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
5537 if (IS_ERR(em))
5538 return PTR_ERR(em);
5539
5540 /*
5541 * Ok for INLINE and COMPRESSED extents we need to fallback on buffered
5542 * io. INLINE is special, and we could probably kludge it in here, but
5543 * it's still buffered so for safety lets just fall back to the generic
5544 * buffered path.
5545 *
5546 * For COMPRESSED we _have_ to read the entire extent in so we can
5547 * decompress it, so there will be buffering required no matter what we
5548 * do, so go ahead and fallback to buffered.
5549 *
5550 * We return -ENOTBLK because thats what makes DIO go ahead and go back
5551 * to buffered IO. Don't blame me, this is the price we pay for using
5552 * the generic code.
5553 */
5554 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) ||
5555 em->block_start == EXTENT_MAP_INLINE) {
5556 free_extent_map(em);
5557 return -ENOTBLK;
5558 }
5559
5560 /* Just a good old fashioned hole, return */
5561 if (!create && (em->block_start == EXTENT_MAP_HOLE ||
5562 test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
5563 free_extent_map(em);
5564 /* DIO will do one hole at a time, so just unlock a sector */
5565 unlock_extent(&BTRFS_I(inode)->io_tree, start,
5566 start + root->sectorsize - 1, GFP_NOFS);
5567 return 0;
5568 }
5569
5570 /*
5571 * We don't allocate a new extent in the following cases
5572 *
5573 * 1) The inode is marked as NODATACOW. In this case we'll just use the
5574 * existing extent.
5575 * 2) The extent is marked as PREALLOC. We're good to go here and can
5576 * just use the extent.
5577 *
5578 */
Chris Mason46bfbb52010-05-26 11:04:10 -04005579 if (!create) {
5580 len = em->len - (start - em->start);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005581 goto map;
Chris Mason46bfbb52010-05-26 11:04:10 -04005582 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005583
5584 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) ||
5585 ((BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) &&
5586 em->block_start != EXTENT_MAP_HOLE)) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04005587 int type;
5588 int ret;
Chris Mason46bfbb52010-05-26 11:04:10 -04005589 u64 block_start;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005590
5591 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
5592 type = BTRFS_ORDERED_PREALLOC;
5593 else
5594 type = BTRFS_ORDERED_NOCOW;
Chris Mason46bfbb52010-05-26 11:04:10 -04005595 len = min(len, em->len - (start - em->start));
Josef Bacik4b46fce2010-05-23 11:00:55 -04005596 block_start = em->block_start + (start - em->start);
Chris Mason46bfbb52010-05-26 11:04:10 -04005597
5598 /*
5599 * we're not going to log anything, but we do need
5600 * to make sure the current transaction stays open
5601 * while we look for nocow cross refs
5602 */
5603 trans = btrfs_join_transaction(root, 0);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005604 if (IS_ERR(trans))
Chris Mason46bfbb52010-05-26 11:04:10 -04005605 goto must_cow;
5606
5607 if (can_nocow_odirect(trans, inode, start, len) == 1) {
5608 ret = btrfs_add_ordered_extent_dio(inode, start,
5609 block_start, len, len, type);
5610 btrfs_end_transaction(trans, root);
5611 if (ret) {
5612 free_extent_map(em);
5613 return ret;
5614 }
5615 goto unlock;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005616 }
Chris Mason46bfbb52010-05-26 11:04:10 -04005617 btrfs_end_transaction(trans, root);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005618 }
Chris Mason46bfbb52010-05-26 11:04:10 -04005619must_cow:
5620 /*
5621 * this will cow the extent, reset the len in case we changed
5622 * it above
5623 */
5624 len = bh_result->b_size;
Josef Bacik16d299a2011-04-06 14:53:07 -04005625 em = btrfs_new_extent_direct(inode, em, start, len);
Chris Mason46bfbb52010-05-26 11:04:10 -04005626 if (IS_ERR(em))
5627 return PTR_ERR(em);
5628 len = min(len, em->len - (start - em->start));
5629unlock:
Chris Mason4845e442010-05-25 20:56:50 -04005630 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, start + len - 1,
5631 EXTENT_LOCKED | EXTENT_DELALLOC | EXTENT_DIRTY, 1,
5632 0, NULL, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005633map:
5634 bh_result->b_blocknr = (em->block_start + (start - em->start)) >>
5635 inode->i_blkbits;
Chris Mason46bfbb52010-05-26 11:04:10 -04005636 bh_result->b_size = len;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005637 bh_result->b_bdev = em->bdev;
5638 set_buffer_mapped(bh_result);
5639 if (create && !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
5640 set_buffer_new(bh_result);
5641
5642 free_extent_map(em);
5643
5644 return 0;
5645}
5646
5647struct btrfs_dio_private {
5648 struct inode *inode;
5649 u64 logical_offset;
5650 u64 disk_bytenr;
5651 u64 bytes;
5652 u32 *csums;
5653 void *private;
Miao Xiee65e1532010-11-22 03:04:43 +00005654
5655 /* number of bios pending for this dio */
5656 atomic_t pending_bios;
5657
5658 /* IO errors */
5659 int errors;
5660
5661 struct bio *orig_bio;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005662};
5663
5664static void btrfs_endio_direct_read(struct bio *bio, int err)
5665{
Miao Xiee65e1532010-11-22 03:04:43 +00005666 struct btrfs_dio_private *dip = bio->bi_private;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005667 struct bio_vec *bvec_end = bio->bi_io_vec + bio->bi_vcnt - 1;
5668 struct bio_vec *bvec = bio->bi_io_vec;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005669 struct inode *inode = dip->inode;
5670 struct btrfs_root *root = BTRFS_I(inode)->root;
5671 u64 start;
5672 u32 *private = dip->csums;
5673
5674 start = dip->logical_offset;
5675 do {
5676 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)) {
5677 struct page *page = bvec->bv_page;
5678 char *kaddr;
5679 u32 csum = ~(u32)0;
5680 unsigned long flags;
5681
5682 local_irq_save(flags);
5683 kaddr = kmap_atomic(page, KM_IRQ0);
5684 csum = btrfs_csum_data(root, kaddr + bvec->bv_offset,
5685 csum, bvec->bv_len);
5686 btrfs_csum_final(csum, (char *)&csum);
5687 kunmap_atomic(kaddr, KM_IRQ0);
5688 local_irq_restore(flags);
5689
5690 flush_dcache_page(bvec->bv_page);
5691 if (csum != *private) {
Li Zefan33345d012011-04-20 10:31:50 +08005692 printk(KERN_ERR "btrfs csum failed ino %llu off"
Josef Bacik4b46fce2010-05-23 11:00:55 -04005693 " %llu csum %u private %u\n",
Li Zefan33345d012011-04-20 10:31:50 +08005694 (unsigned long long)btrfs_ino(inode),
5695 (unsigned long long)start,
Josef Bacik4b46fce2010-05-23 11:00:55 -04005696 csum, *private);
5697 err = -EIO;
5698 }
5699 }
5700
5701 start += bvec->bv_len;
5702 private++;
5703 bvec++;
5704 } while (bvec <= bvec_end);
5705
5706 unlock_extent(&BTRFS_I(inode)->io_tree, dip->logical_offset,
5707 dip->logical_offset + dip->bytes - 1, GFP_NOFS);
5708 bio->bi_private = dip->private;
5709
5710 kfree(dip->csums);
5711 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04005712
5713 /* If we had a csum failure make sure to clear the uptodate flag */
5714 if (err)
5715 clear_bit(BIO_UPTODATE, &bio->bi_flags);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005716 dio_end_io(bio, err);
5717}
5718
5719static void btrfs_endio_direct_write(struct bio *bio, int err)
5720{
5721 struct btrfs_dio_private *dip = bio->bi_private;
5722 struct inode *inode = dip->inode;
5723 struct btrfs_root *root = BTRFS_I(inode)->root;
5724 struct btrfs_trans_handle *trans;
5725 struct btrfs_ordered_extent *ordered = NULL;
5726 struct extent_state *cached_state = NULL;
Chris Mason163cf092010-11-28 19:56:33 -05005727 u64 ordered_offset = dip->logical_offset;
5728 u64 ordered_bytes = dip->bytes;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005729 int ret;
5730
5731 if (err)
5732 goto out_done;
Chris Mason163cf092010-11-28 19:56:33 -05005733again:
5734 ret = btrfs_dec_test_first_ordered_pending(inode, &ordered,
5735 &ordered_offset,
5736 ordered_bytes);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005737 if (!ret)
Chris Mason163cf092010-11-28 19:56:33 -05005738 goto out_test;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005739
5740 BUG_ON(!ordered);
5741
5742 trans = btrfs_join_transaction(root, 1);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005743 if (IS_ERR(trans)) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04005744 err = -ENOMEM;
5745 goto out;
5746 }
5747 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
5748
5749 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered->flags)) {
5750 ret = btrfs_ordered_update_i_size(inode, 0, ordered);
5751 if (!ret)
5752 ret = btrfs_update_inode(trans, root, inode);
5753 err = ret;
5754 goto out;
5755 }
5756
5757 lock_extent_bits(&BTRFS_I(inode)->io_tree, ordered->file_offset,
5758 ordered->file_offset + ordered->len - 1, 0,
5759 &cached_state, GFP_NOFS);
5760
5761 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered->flags)) {
5762 ret = btrfs_mark_extent_written(trans, inode,
5763 ordered->file_offset,
5764 ordered->file_offset +
5765 ordered->len);
5766 if (ret) {
5767 err = ret;
5768 goto out_unlock;
5769 }
5770 } else {
5771 ret = insert_reserved_file_extent(trans, inode,
5772 ordered->file_offset,
5773 ordered->start,
5774 ordered->disk_len,
5775 ordered->len,
5776 ordered->len,
5777 0, 0, 0,
5778 BTRFS_FILE_EXTENT_REG);
5779 unpin_extent_cache(&BTRFS_I(inode)->extent_tree,
5780 ordered->file_offset, ordered->len);
5781 if (ret) {
5782 err = ret;
5783 WARN_ON(1);
5784 goto out_unlock;
5785 }
5786 }
5787
5788 add_pending_csums(trans, inode, ordered->file_offset, &ordered->list);
Josef Bacik1ef30be2011-04-05 19:25:36 -04005789 ret = btrfs_ordered_update_i_size(inode, 0, ordered);
5790 if (!ret)
5791 btrfs_update_inode(trans, root, inode);
5792 ret = 0;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005793out_unlock:
5794 unlock_extent_cached(&BTRFS_I(inode)->io_tree, ordered->file_offset,
5795 ordered->file_offset + ordered->len - 1,
5796 &cached_state, GFP_NOFS);
5797out:
5798 btrfs_delalloc_release_metadata(inode, ordered->len);
5799 btrfs_end_transaction(trans, root);
Chris Mason163cf092010-11-28 19:56:33 -05005800 ordered_offset = ordered->file_offset + ordered->len;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005801 btrfs_put_ordered_extent(ordered);
5802 btrfs_put_ordered_extent(ordered);
Chris Mason163cf092010-11-28 19:56:33 -05005803
5804out_test:
5805 /*
5806 * our bio might span multiple ordered extents. If we haven't
5807 * completed the accounting for the whole dio, go back and try again
5808 */
5809 if (ordered_offset < dip->logical_offset + dip->bytes) {
5810 ordered_bytes = dip->logical_offset + dip->bytes -
5811 ordered_offset;
5812 goto again;
5813 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005814out_done:
5815 bio->bi_private = dip->private;
5816
5817 kfree(dip->csums);
5818 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04005819
5820 /* If we had an error make sure to clear the uptodate flag */
5821 if (err)
5822 clear_bit(BIO_UPTODATE, &bio->bi_flags);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005823 dio_end_io(bio, err);
5824}
5825
Chris Masoneaf25d92010-05-25 09:48:28 -04005826static int __btrfs_submit_bio_start_direct_io(struct inode *inode, int rw,
5827 struct bio *bio, int mirror_num,
5828 unsigned long bio_flags, u64 offset)
5829{
5830 int ret;
5831 struct btrfs_root *root = BTRFS_I(inode)->root;
5832 ret = btrfs_csum_one_bio(root, inode, bio, offset, 1);
5833 BUG_ON(ret);
5834 return 0;
5835}
5836
Miao Xiee65e1532010-11-22 03:04:43 +00005837static void btrfs_end_dio_bio(struct bio *bio, int err)
5838{
5839 struct btrfs_dio_private *dip = bio->bi_private;
5840
5841 if (err) {
Li Zefan33345d012011-04-20 10:31:50 +08005842 printk(KERN_ERR "btrfs direct IO failed ino %llu rw %lu "
Jan Beulich3dd14622010-12-07 14:54:09 +00005843 "sector %#Lx len %u err no %d\n",
Li Zefan33345d012011-04-20 10:31:50 +08005844 (unsigned long long)btrfs_ino(dip->inode), bio->bi_rw,
Jan Beulich3dd14622010-12-07 14:54:09 +00005845 (unsigned long long)bio->bi_sector, bio->bi_size, err);
Miao Xiee65e1532010-11-22 03:04:43 +00005846 dip->errors = 1;
5847
5848 /*
5849 * before atomic variable goto zero, we must make sure
5850 * dip->errors is perceived to be set.
5851 */
5852 smp_mb__before_atomic_dec();
5853 }
5854
5855 /* if there are more bios still pending for this dio, just exit */
5856 if (!atomic_dec_and_test(&dip->pending_bios))
5857 goto out;
5858
5859 if (dip->errors)
5860 bio_io_error(dip->orig_bio);
5861 else {
5862 set_bit(BIO_UPTODATE, &dip->orig_bio->bi_flags);
5863 bio_endio(dip->orig_bio, 0);
5864 }
5865out:
5866 bio_put(bio);
5867}
5868
5869static struct bio *btrfs_dio_bio_alloc(struct block_device *bdev,
5870 u64 first_sector, gfp_t gfp_flags)
5871{
5872 int nr_vecs = bio_get_nr_vecs(bdev);
5873 return btrfs_bio_alloc(bdev, first_sector, nr_vecs, gfp_flags);
5874}
5875
5876static inline int __btrfs_submit_dio_bio(struct bio *bio, struct inode *inode,
5877 int rw, u64 file_offset, int skip_sum,
Josef Bacik1ae39932011-04-06 14:41:34 -04005878 u32 *csums, int async_submit)
Miao Xiee65e1532010-11-22 03:04:43 +00005879{
5880 int write = rw & REQ_WRITE;
5881 struct btrfs_root *root = BTRFS_I(inode)->root;
5882 int ret;
5883
5884 bio_get(bio);
5885 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
5886 if (ret)
5887 goto err;
5888
Josef Bacik1ae39932011-04-06 14:41:34 -04005889 if (skip_sum)
5890 goto map;
5891
5892 if (write && async_submit) {
Miao Xiee65e1532010-11-22 03:04:43 +00005893 ret = btrfs_wq_submit_bio(root->fs_info,
5894 inode, rw, bio, 0, 0,
5895 file_offset,
5896 __btrfs_submit_bio_start_direct_io,
5897 __btrfs_submit_bio_done);
5898 goto err;
Josef Bacik1ae39932011-04-06 14:41:34 -04005899 } else if (write) {
5900 /*
5901 * If we aren't doing async submit, calculate the csum of the
5902 * bio now.
5903 */
5904 ret = btrfs_csum_one_bio(root, inode, bio, file_offset, 1);
5905 if (ret)
5906 goto err;
Tsutomu Itohc2db1072011-03-01 06:48:31 +00005907 } else if (!skip_sum) {
5908 ret = btrfs_lookup_bio_sums_dio(root, inode, bio,
Miao Xiee65e1532010-11-22 03:04:43 +00005909 file_offset, csums);
Tsutomu Itohc2db1072011-03-01 06:48:31 +00005910 if (ret)
5911 goto err;
5912 }
Miao Xiee65e1532010-11-22 03:04:43 +00005913
Josef Bacik1ae39932011-04-06 14:41:34 -04005914map:
5915 ret = btrfs_map_bio(root, rw, bio, 0, async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00005916err:
5917 bio_put(bio);
5918 return ret;
5919}
5920
5921static int btrfs_submit_direct_hook(int rw, struct btrfs_dio_private *dip,
5922 int skip_sum)
5923{
5924 struct inode *inode = dip->inode;
5925 struct btrfs_root *root = BTRFS_I(inode)->root;
5926 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
5927 struct bio *bio;
5928 struct bio *orig_bio = dip->orig_bio;
5929 struct bio_vec *bvec = orig_bio->bi_io_vec;
5930 u64 start_sector = orig_bio->bi_sector;
5931 u64 file_offset = dip->logical_offset;
5932 u64 submit_len = 0;
5933 u64 map_length;
5934 int nr_pages = 0;
5935 u32 *csums = dip->csums;
5936 int ret = 0;
Josef Bacik1ae39932011-04-06 14:41:34 -04005937 int async_submit = 0;
Josef Bacik98bc3142011-03-22 11:00:46 -04005938 int write = rw & REQ_WRITE;
Miao Xiee65e1532010-11-22 03:04:43 +00005939
Miao Xiee65e1532010-11-22 03:04:43 +00005940 map_length = orig_bio->bi_size;
5941 ret = btrfs_map_block(map_tree, READ, start_sector << 9,
5942 &map_length, NULL, 0);
5943 if (ret) {
Josef Bacik64728bb2011-04-25 19:43:52 -04005944 bio_put(orig_bio);
Miao Xiee65e1532010-11-22 03:04:43 +00005945 return -EIO;
5946 }
5947
Josef Bacik02f57c72011-04-06 14:25:44 -04005948 if (map_length >= orig_bio->bi_size) {
5949 bio = orig_bio;
5950 goto submit;
5951 }
5952
Josef Bacik1ae39932011-04-06 14:41:34 -04005953 async_submit = 1;
Josef Bacik02f57c72011-04-06 14:25:44 -04005954 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev, start_sector, GFP_NOFS);
5955 if (!bio)
5956 return -ENOMEM;
5957 bio->bi_private = dip;
5958 bio->bi_end_io = btrfs_end_dio_bio;
5959 atomic_inc(&dip->pending_bios);
5960
Miao Xiee65e1532010-11-22 03:04:43 +00005961 while (bvec <= (orig_bio->bi_io_vec + orig_bio->bi_vcnt - 1)) {
5962 if (unlikely(map_length < submit_len + bvec->bv_len ||
5963 bio_add_page(bio, bvec->bv_page, bvec->bv_len,
5964 bvec->bv_offset) < bvec->bv_len)) {
5965 /*
5966 * inc the count before we submit the bio so
5967 * we know the end IO handler won't happen before
5968 * we inc the count. Otherwise, the dip might get freed
5969 * before we're done setting it up
5970 */
5971 atomic_inc(&dip->pending_bios);
5972 ret = __btrfs_submit_dio_bio(bio, inode, rw,
5973 file_offset, skip_sum,
Josef Bacik1ae39932011-04-06 14:41:34 -04005974 csums, async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00005975 if (ret) {
5976 bio_put(bio);
5977 atomic_dec(&dip->pending_bios);
5978 goto out_err;
5979 }
5980
Josef Bacik98bc3142011-03-22 11:00:46 -04005981 /* Write's use the ordered csums */
5982 if (!write && !skip_sum)
Miao Xiee65e1532010-11-22 03:04:43 +00005983 csums = csums + nr_pages;
5984 start_sector += submit_len >> 9;
5985 file_offset += submit_len;
5986
5987 submit_len = 0;
5988 nr_pages = 0;
5989
5990 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev,
5991 start_sector, GFP_NOFS);
5992 if (!bio)
5993 goto out_err;
5994 bio->bi_private = dip;
5995 bio->bi_end_io = btrfs_end_dio_bio;
5996
5997 map_length = orig_bio->bi_size;
5998 ret = btrfs_map_block(map_tree, READ, start_sector << 9,
5999 &map_length, NULL, 0);
6000 if (ret) {
6001 bio_put(bio);
6002 goto out_err;
6003 }
6004 } else {
6005 submit_len += bvec->bv_len;
6006 nr_pages ++;
6007 bvec++;
6008 }
6009 }
6010
Josef Bacik02f57c72011-04-06 14:25:44 -04006011submit:
Miao Xiee65e1532010-11-22 03:04:43 +00006012 ret = __btrfs_submit_dio_bio(bio, inode, rw, file_offset, skip_sum,
Josef Bacik1ae39932011-04-06 14:41:34 -04006013 csums, async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00006014 if (!ret)
6015 return 0;
6016
6017 bio_put(bio);
6018out_err:
6019 dip->errors = 1;
6020 /*
6021 * before atomic variable goto zero, we must
6022 * make sure dip->errors is perceived to be set.
6023 */
6024 smp_mb__before_atomic_dec();
6025 if (atomic_dec_and_test(&dip->pending_bios))
6026 bio_io_error(dip->orig_bio);
6027
6028 /* bio_end_io() will handle error, so we needn't return it */
6029 return 0;
6030}
6031
Josef Bacik4b46fce2010-05-23 11:00:55 -04006032static void btrfs_submit_direct(int rw, struct bio *bio, struct inode *inode,
6033 loff_t file_offset)
6034{
6035 struct btrfs_root *root = BTRFS_I(inode)->root;
6036 struct btrfs_dio_private *dip;
6037 struct bio_vec *bvec = bio->bi_io_vec;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006038 int skip_sum;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02006039 int write = rw & REQ_WRITE;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006040 int ret = 0;
6041
6042 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
6043
6044 dip = kmalloc(sizeof(*dip), GFP_NOFS);
6045 if (!dip) {
6046 ret = -ENOMEM;
6047 goto free_ordered;
6048 }
6049 dip->csums = NULL;
6050
Josef Bacik98bc3142011-03-22 11:00:46 -04006051 /* Write's use the ordered csum stuff, so we don't need dip->csums */
6052 if (!write && !skip_sum) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04006053 dip->csums = kmalloc(sizeof(u32) * bio->bi_vcnt, GFP_NOFS);
6054 if (!dip->csums) {
Daniel J Bluemanb4966b72011-03-09 16:46:42 +00006055 kfree(dip);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006056 ret = -ENOMEM;
6057 goto free_ordered;
6058 }
6059 }
6060
6061 dip->private = bio->bi_private;
6062 dip->inode = inode;
6063 dip->logical_offset = file_offset;
6064
Josef Bacik4b46fce2010-05-23 11:00:55 -04006065 dip->bytes = 0;
6066 do {
6067 dip->bytes += bvec->bv_len;
6068 bvec++;
6069 } while (bvec <= (bio->bi_io_vec + bio->bi_vcnt - 1));
6070
Chris Mason46bfbb52010-05-26 11:04:10 -04006071 dip->disk_bytenr = (u64)bio->bi_sector << 9;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006072 bio->bi_private = dip;
Miao Xiee65e1532010-11-22 03:04:43 +00006073 dip->errors = 0;
6074 dip->orig_bio = bio;
6075 atomic_set(&dip->pending_bios, 0);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006076
6077 if (write)
6078 bio->bi_end_io = btrfs_endio_direct_write;
6079 else
6080 bio->bi_end_io = btrfs_endio_direct_read;
6081
Miao Xiee65e1532010-11-22 03:04:43 +00006082 ret = btrfs_submit_direct_hook(rw, dip, skip_sum);
6083 if (!ret)
Chris Masoneaf25d92010-05-25 09:48:28 -04006084 return;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006085free_ordered:
6086 /*
6087 * If this is a write, we need to clean up the reserved space and kill
6088 * the ordered extent.
6089 */
6090 if (write) {
6091 struct btrfs_ordered_extent *ordered;
Josef Bacik955256f2010-11-19 09:41:10 -05006092 ordered = btrfs_lookup_ordered_extent(inode, file_offset);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006093 if (!test_bit(BTRFS_ORDERED_PREALLOC, &ordered->flags) &&
6094 !test_bit(BTRFS_ORDERED_NOCOW, &ordered->flags))
6095 btrfs_free_reserved_extent(root, ordered->start,
6096 ordered->disk_len);
6097 btrfs_put_ordered_extent(ordered);
6098 btrfs_put_ordered_extent(ordered);
6099 }
6100 bio_endio(bio, ret);
6101}
6102
Chris Mason5a5f79b2010-05-26 21:33:37 -04006103static ssize_t check_direct_IO(struct btrfs_root *root, int rw, struct kiocb *iocb,
6104 const struct iovec *iov, loff_t offset,
6105 unsigned long nr_segs)
6106{
6107 int seg;
Josef Bacika1b75f72011-04-08 15:51:18 +00006108 int i;
Chris Mason5a5f79b2010-05-26 21:33:37 -04006109 size_t size;
6110 unsigned long addr;
6111 unsigned blocksize_mask = root->sectorsize - 1;
6112 ssize_t retval = -EINVAL;
6113 loff_t end = offset;
6114
6115 if (offset & blocksize_mask)
6116 goto out;
6117
6118 /* Check the memory alignment. Blocks cannot straddle pages */
6119 for (seg = 0; seg < nr_segs; seg++) {
6120 addr = (unsigned long)iov[seg].iov_base;
6121 size = iov[seg].iov_len;
6122 end += size;
Josef Bacika1b75f72011-04-08 15:51:18 +00006123 if ((addr & blocksize_mask) || (size & blocksize_mask))
Chris Mason5a5f79b2010-05-26 21:33:37 -04006124 goto out;
Josef Bacika1b75f72011-04-08 15:51:18 +00006125
6126 /* If this is a write we don't need to check anymore */
6127 if (rw & WRITE)
6128 continue;
6129
6130 /*
6131 * Check to make sure we don't have duplicate iov_base's in this
6132 * iovec, if so return EINVAL, otherwise we'll get csum errors
6133 * when reading back.
6134 */
6135 for (i = seg + 1; i < nr_segs; i++) {
6136 if (iov[seg].iov_base == iov[i].iov_base)
6137 goto out;
6138 }
Chris Mason5a5f79b2010-05-26 21:33:37 -04006139 }
6140 retval = 0;
6141out:
6142 return retval;
6143}
Chris Mason16432982008-04-10 10:23:21 -04006144static ssize_t btrfs_direct_IO(int rw, struct kiocb *iocb,
6145 const struct iovec *iov, loff_t offset,
6146 unsigned long nr_segs)
6147{
Josef Bacik4b46fce2010-05-23 11:00:55 -04006148 struct file *file = iocb->ki_filp;
6149 struct inode *inode = file->f_mapping->host;
6150 struct btrfs_ordered_extent *ordered;
Chris Mason4845e442010-05-25 20:56:50 -04006151 struct extent_state *cached_state = NULL;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006152 u64 lockstart, lockend;
6153 ssize_t ret;
Chris Mason4845e442010-05-25 20:56:50 -04006154 int writing = rw & WRITE;
6155 int write_bits = 0;
Chris Mason3f7c5792010-05-26 10:59:53 -04006156 size_t count = iov_length(iov, nr_segs);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006157
Chris Mason5a5f79b2010-05-26 21:33:37 -04006158 if (check_direct_IO(BTRFS_I(inode)->root, rw, iocb, iov,
6159 offset, nr_segs)) {
6160 return 0;
6161 }
6162
Josef Bacik4b46fce2010-05-23 11:00:55 -04006163 lockstart = offset;
Chris Mason3f7c5792010-05-26 10:59:53 -04006164 lockend = offset + count - 1;
6165
6166 if (writing) {
6167 ret = btrfs_delalloc_reserve_space(inode, count);
6168 if (ret)
6169 goto out;
6170 }
Chris Mason4845e442010-05-25 20:56:50 -04006171
Josef Bacik4b46fce2010-05-23 11:00:55 -04006172 while (1) {
Chris Mason4845e442010-05-25 20:56:50 -04006173 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
6174 0, &cached_state, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006175 /*
6176 * We're concerned with the entire range that we're going to be
6177 * doing DIO to, so we need to make sure theres no ordered
6178 * extents in this range.
6179 */
6180 ordered = btrfs_lookup_ordered_range(inode, lockstart,
6181 lockend - lockstart + 1);
6182 if (!ordered)
6183 break;
Chris Mason4845e442010-05-25 20:56:50 -04006184 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
6185 &cached_state, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006186 btrfs_start_ordered_extent(inode, ordered, 1);
6187 btrfs_put_ordered_extent(ordered);
6188 cond_resched();
6189 }
6190
Chris Mason4845e442010-05-25 20:56:50 -04006191 /*
6192 * we don't use btrfs_set_extent_delalloc because we don't want
6193 * the dirty or uptodate bits
6194 */
6195 if (writing) {
6196 write_bits = EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING;
6197 ret = set_extent_bit(&BTRFS_I(inode)->io_tree, lockstart, lockend,
6198 EXTENT_DELALLOC, 0, NULL, &cached_state,
6199 GFP_NOFS);
6200 if (ret) {
6201 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
6202 lockend, EXTENT_LOCKED | write_bits,
6203 1, 0, &cached_state, GFP_NOFS);
6204 goto out;
6205 }
6206 }
6207
6208 free_extent_state(cached_state);
6209 cached_state = NULL;
6210
Chris Mason5a5f79b2010-05-26 21:33:37 -04006211 ret = __blockdev_direct_IO(rw, iocb, inode,
6212 BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev,
6213 iov, offset, nr_segs, btrfs_get_blocks_direct, NULL,
6214 btrfs_submit_direct, 0);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006215
6216 if (ret < 0 && ret != -EIOCBQUEUED) {
Chris Mason4845e442010-05-25 20:56:50 -04006217 clear_extent_bit(&BTRFS_I(inode)->io_tree, offset,
6218 offset + iov_length(iov, nr_segs) - 1,
6219 EXTENT_LOCKED | write_bits, 1, 0,
6220 &cached_state, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006221 } else if (ret >= 0 && ret < iov_length(iov, nr_segs)) {
6222 /*
6223 * We're falling back to buffered, unlock the section we didn't
6224 * do IO on.
6225 */
Chris Mason4845e442010-05-25 20:56:50 -04006226 clear_extent_bit(&BTRFS_I(inode)->io_tree, offset + ret,
6227 offset + iov_length(iov, nr_segs) - 1,
6228 EXTENT_LOCKED | write_bits, 1, 0,
6229 &cached_state, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006230 }
Chris Mason4845e442010-05-25 20:56:50 -04006231out:
6232 free_extent_state(cached_state);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006233 return ret;
Chris Mason16432982008-04-10 10:23:21 -04006234}
6235
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05006236static int btrfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
6237 __u64 start, __u64 len)
6238{
Chris Masonec29ed52011-02-23 16:23:20 -05006239 return extent_fiemap(inode, fieinfo, start, len, btrfs_get_extent_fiemap);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05006240}
6241
Chris Mason9ebefb182007-06-15 13:50:00 -04006242int btrfs_readpage(struct file *file, struct page *page)
6243{
Chris Masond1310b22008-01-24 16:13:08 -05006244 struct extent_io_tree *tree;
6245 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04006246 return extent_read_full_page(tree, page, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04006247}
Chris Mason1832a6d2007-12-21 16:27:21 -05006248
Chris Mason39279cc2007-06-12 06:35:45 -04006249static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
6250{
Chris Masond1310b22008-01-24 16:13:08 -05006251 struct extent_io_tree *tree;
Chris Masonb888db22007-08-27 16:49:44 -04006252
6253
6254 if (current->flags & PF_MEMALLOC) {
6255 redirty_page_for_writepage(wbc, page);
6256 unlock_page(page);
6257 return 0;
6258 }
Chris Masond1310b22008-01-24 16:13:08 -05006259 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04006260 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
6261}
Chris Mason39279cc2007-06-12 06:35:45 -04006262
Chris Masonf4219502008-07-22 11:18:09 -04006263int btrfs_writepages(struct address_space *mapping,
6264 struct writeback_control *wbc)
Chris Masonb293f022007-11-01 19:45:34 -04006265{
Chris Masond1310b22008-01-24 16:13:08 -05006266 struct extent_io_tree *tree;
Chris Mason771ed682008-11-06 22:02:51 -05006267
Chris Masond1310b22008-01-24 16:13:08 -05006268 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f022007-11-01 19:45:34 -04006269 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
6270}
6271
Chris Mason3ab2fb52007-11-08 10:59:22 -05006272static int
6273btrfs_readpages(struct file *file, struct address_space *mapping,
6274 struct list_head *pages, unsigned nr_pages)
6275{
Chris Masond1310b22008-01-24 16:13:08 -05006276 struct extent_io_tree *tree;
6277 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05006278 return extent_readpages(tree, mapping, pages, nr_pages,
6279 btrfs_get_extent);
6280}
Chris Masone6dcd2d2008-07-17 12:53:50 -04006281static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04006282{
Chris Masond1310b22008-01-24 16:13:08 -05006283 struct extent_io_tree *tree;
6284 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04006285 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006286
Chris Masond1310b22008-01-24 16:13:08 -05006287 tree = &BTRFS_I(page->mapping->host)->io_tree;
6288 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05006289 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04006290 if (ret == 1) {
6291 ClearPagePrivate(page);
6292 set_page_private(page, 0);
6293 page_cache_release(page);
6294 }
6295 return ret;
6296}
Chris Mason39279cc2007-06-12 06:35:45 -04006297
Chris Masone6dcd2d2008-07-17 12:53:50 -04006298static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
6299{
Chris Mason98509cf2008-09-11 15:51:43 -04006300 if (PageWriteback(page) || PageDirty(page))
6301 return 0;
Yan Zhengb335b002009-02-12 10:06:04 -05006302 return __btrfs_releasepage(page, gfp_flags & GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006303}
6304
Chris Masona52d9a82007-08-27 16:49:44 -04006305static void btrfs_invalidatepage(struct page *page, unsigned long offset)
6306{
Chris Masond1310b22008-01-24 16:13:08 -05006307 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006308 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00006309 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006310 u64 page_start = page_offset(page);
6311 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04006312
Chris Mason8b62b722009-09-02 16:53:46 -04006313
6314 /*
6315 * we have the page locked, so new writeback can't start,
6316 * and the dirty bit won't be cleared while we are here.
6317 *
6318 * Wait for IO on this page so that we can safely clear
6319 * the PagePrivate2 bit and do ordered accounting
6320 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006321 wait_on_page_writeback(page);
Chris Mason8b62b722009-09-02 16:53:46 -04006322
Chris Masond1310b22008-01-24 16:13:08 -05006323 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006324 if (offset) {
6325 btrfs_releasepage(page, GFP_NOFS);
6326 return;
6327 }
Josef Bacik2ac55d42010-02-03 19:33:23 +00006328 lock_extent_bits(tree, page_start, page_end, 0, &cached_state,
6329 GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006330 ordered = btrfs_lookup_ordered_extent(page->mapping->host,
6331 page_offset(page));
6332 if (ordered) {
Chris Masoneb84ae02008-07-17 13:53:27 -04006333 /*
6334 * IO on this page will never be started, so we need
6335 * to account for any ordered extents now
6336 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006337 clear_extent_bit(tree, page_start, page_end,
6338 EXTENT_DIRTY | EXTENT_DELALLOC |
Josef Bacik32c00af2009-10-08 13:34:05 -04006339 EXTENT_LOCKED | EXTENT_DO_ACCOUNTING, 1, 0,
Josef Bacik2ac55d42010-02-03 19:33:23 +00006340 &cached_state, GFP_NOFS);
Chris Mason8b62b722009-09-02 16:53:46 -04006341 /*
6342 * whoever cleared the private bit is responsible
6343 * for the finish_ordered_io
6344 */
6345 if (TestClearPagePrivate2(page)) {
6346 btrfs_finish_ordered_io(page->mapping->host,
6347 page_start, page_end);
6348 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006349 btrfs_put_ordered_extent(ordered);
Josef Bacik2ac55d42010-02-03 19:33:23 +00006350 cached_state = NULL;
6351 lock_extent_bits(tree, page_start, page_end, 0, &cached_state,
6352 GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006353 }
6354 clear_extent_bit(tree, page_start, page_end,
Josef Bacik32c00af2009-10-08 13:34:05 -04006355 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
Josef Bacik2ac55d42010-02-03 19:33:23 +00006356 EXTENT_DO_ACCOUNTING, 1, 1, &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006357 __btrfs_releasepage(page, GFP_NOFS);
6358
Chris Mason4a096752008-07-21 10:29:44 -04006359 ClearPageChecked(page);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04006360 if (PagePrivate(page)) {
Chris Mason9ad6b7b2008-04-18 16:11:30 -04006361 ClearPagePrivate(page);
6362 set_page_private(page, 0);
6363 page_cache_release(page);
6364 }
Chris Mason39279cc2007-06-12 06:35:45 -04006365}
6366
Chris Mason9ebefb182007-06-15 13:50:00 -04006367/*
6368 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
6369 * called from a page fault handler when a page is first dirtied. Hence we must
6370 * be careful to check for EOF conditions here. We set the page up correctly
6371 * for a written page which means we get ENOSPC checking when writing into
6372 * holes and correct delalloc and unwritten extent mapping on filesystems that
6373 * support these features.
6374 *
6375 * We are not allowed to take the i_mutex here so we have to play games to
6376 * protect against truncate races as the page could now be beyond EOF. Because
6377 * vmtruncate() writes the inode size before removing pages, once we have the
6378 * page lock we can determine safely if the page is beyond EOF. If it is not
6379 * beyond EOF, then the page is guaranteed safe against truncation until we
6380 * unlock the page.
6381 */
Nick Pigginc2ec1752009-03-31 15:23:21 -07006382int btrfs_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Chris Mason9ebefb182007-06-15 13:50:00 -04006383{
Nick Pigginc2ec1752009-03-31 15:23:21 -07006384 struct page *page = vmf->page;
Chris Mason6da6aba2007-12-18 16:15:09 -05006385 struct inode *inode = fdentry(vma->vm_file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05006386 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006387 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
6388 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00006389 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006390 char *kaddr;
6391 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04006392 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05006393 int ret;
Chris Masona52d9a82007-08-27 16:49:44 -04006394 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006395 u64 page_end;
Chris Mason9ebefb182007-06-15 13:50:00 -04006396
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006397 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
Nick Piggin56a76f82009-03-31 15:23:23 -07006398 if (ret) {
6399 if (ret == -ENOMEM)
6400 ret = VM_FAULT_OOM;
6401 else /* -ENOSPC, -EIO, etc */
6402 ret = VM_FAULT_SIGBUS;
Chris Mason1832a6d2007-12-21 16:27:21 -05006403 goto out;
Nick Piggin56a76f82009-03-31 15:23:23 -07006404 }
Chris Mason1832a6d2007-12-21 16:27:21 -05006405
Nick Piggin56a76f82009-03-31 15:23:23 -07006406 ret = VM_FAULT_NOPAGE; /* make the VM retry the fault */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006407again:
Chris Mason9ebefb182007-06-15 13:50:00 -04006408 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04006409 size = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006410 page_start = page_offset(page);
6411 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04006412
Chris Mason9ebefb182007-06-15 13:50:00 -04006413 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04006414 (page_start >= size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04006415 /* page got truncated out from underneath us */
6416 goto out_unlock;
6417 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006418 wait_on_page_writeback(page);
6419
Josef Bacik2ac55d42010-02-03 19:33:23 +00006420 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state,
6421 GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006422 set_page_extent_mapped(page);
6423
Chris Masoneb84ae02008-07-17 13:53:27 -04006424 /*
6425 * we can't set the delalloc bits if there are pending ordered
6426 * extents. Drop our locks and wait for them to finish
6427 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006428 ordered = btrfs_lookup_ordered_extent(inode, page_start);
6429 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00006430 unlock_extent_cached(io_tree, page_start, page_end,
6431 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006432 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04006433 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006434 btrfs_put_ordered_extent(ordered);
6435 goto again;
6436 }
6437
Josef Bacikfbf19082009-10-01 17:10:23 -04006438 /*
6439 * XXX - page_mkwrite gets called every time the page is dirtied, even
6440 * if it was already dirty, so for space accounting reasons we need to
6441 * clear any delalloc bits for the range we are fixing to save. There
6442 * is probably a better way to do this, but for now keep consistent with
6443 * prepare_pages in the normal write path.
6444 */
Josef Bacik2ac55d42010-02-03 19:33:23 +00006445 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Josef Bacik32c00af2009-10-08 13:34:05 -04006446 EXTENT_DIRTY | EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00006447 0, 0, &cached_state, GFP_NOFS);
Josef Bacikfbf19082009-10-01 17:10:23 -04006448
Josef Bacik2ac55d42010-02-03 19:33:23 +00006449 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
6450 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006451 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00006452 unlock_extent_cached(io_tree, page_start, page_end,
6453 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006454 ret = VM_FAULT_SIGBUS;
6455 goto out_unlock;
6456 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006457 ret = 0;
Chris Mason9ebefb182007-06-15 13:50:00 -04006458
6459 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04006460 if (page_start + PAGE_CACHE_SIZE > size)
Chris Masone6dcd2d2008-07-17 12:53:50 -04006461 zero_start = size & ~PAGE_CACHE_MASK;
Chris Mason9ebefb182007-06-15 13:50:00 -04006462 else
Chris Masone6dcd2d2008-07-17 12:53:50 -04006463 zero_start = PAGE_CACHE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04006464
Chris Masone6dcd2d2008-07-17 12:53:50 -04006465 if (zero_start != PAGE_CACHE_SIZE) {
6466 kaddr = kmap(page);
6467 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
6468 flush_dcache_page(page);
6469 kunmap(page);
6470 }
Chris Mason247e7432008-07-17 12:53:51 -04006471 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006472 set_page_dirty(page);
Chris Mason50a9b212009-09-11 12:33:12 -04006473 SetPageUptodate(page);
Chris Mason5a3f23d2009-03-31 13:27:11 -04006474
Chris Mason257c62e2009-10-13 13:21:08 -04006475 BTRFS_I(inode)->last_trans = root->fs_info->generation;
6476 BTRFS_I(inode)->last_sub_trans = BTRFS_I(inode)->root->log_transid;
6477
Josef Bacik2ac55d42010-02-03 19:33:23 +00006478 unlock_extent_cached(io_tree, page_start, page_end, &cached_state, GFP_NOFS);
Chris Mason9ebefb182007-06-15 13:50:00 -04006479
6480out_unlock:
Chris Mason50a9b212009-09-11 12:33:12 -04006481 if (!ret)
6482 return VM_FAULT_LOCKED;
Chris Mason9ebefb182007-06-15 13:50:00 -04006483 unlock_page(page);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006484 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Mason1832a6d2007-12-21 16:27:21 -05006485out:
Chris Mason9ebefb182007-06-15 13:50:00 -04006486 return ret;
6487}
6488
Josef Bacika41ad392011-01-31 15:30:16 -05006489static int btrfs_truncate(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04006490{
6491 struct btrfs_root *root = BTRFS_I(inode)->root;
6492 int ret;
Josef Bacik3893e332011-01-31 16:03:11 -05006493 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006494 struct btrfs_trans_handle *trans;
Chris Masond3c2fdc2007-09-17 10:58:06 -04006495 unsigned long nr;
Chris Masondbe674a2008-07-17 12:54:05 -04006496 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -04006497
Josef Bacik5d5e1032009-10-13 16:46:49 -04006498 ret = btrfs_truncate_page(inode->i_mapping, inode->i_size);
6499 if (ret)
Josef Bacika41ad392011-01-31 15:30:16 -05006500 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00006501
Chris Mason4a096752008-07-21 10:29:44 -04006502 btrfs_wait_ordered_range(inode, inode->i_size & (~mask), (u64)-1);
Yan, Zheng80825102009-11-12 09:35:36 +00006503 btrfs_ordered_update_i_size(inode, inode->i_size, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006504
Josef Bacikf0cd8462011-03-04 14:37:08 -05006505 trans = btrfs_start_transaction(root, 5);
6506 if (IS_ERR(trans))
6507 return PTR_ERR(trans);
6508
6509 btrfs_set_trans_block_group(trans, inode);
6510
6511 ret = btrfs_orphan_add(trans, inode);
6512 if (ret) {
6513 btrfs_end_transaction(trans, root);
6514 return ret;
6515 }
6516
6517 nr = trans->blocks_used;
6518 btrfs_end_transaction(trans, root);
6519 btrfs_btree_balance_dirty(root, nr);
6520
6521 /* Now start a transaction for the truncate */
Yan, Zhengd68fc572010-05-16 10:49:58 -04006522 trans = btrfs_start_transaction(root, 0);
Josef Bacik3893e332011-01-31 16:03:11 -05006523 if (IS_ERR(trans))
6524 return PTR_ERR(trans);
Yan, Zheng80825102009-11-12 09:35:36 +00006525 btrfs_set_trans_block_group(trans, inode);
Yan, Zhengd68fc572010-05-16 10:49:58 -04006526 trans->block_rsv = root->orphan_block_rsv;
Chris Mason5a3f23d2009-03-31 13:27:11 -04006527
6528 /*
6529 * setattr is responsible for setting the ordered_data_close flag,
6530 * but that is only tested during the last file release. That
6531 * could happen well after the next commit, leaving a great big
6532 * window where new writes may get lost if someone chooses to write
6533 * to this file after truncating to zero
6534 *
6535 * The inode doesn't have any dirty data here, and so if we commit
6536 * this is a noop. If someone immediately starts writing to the inode
6537 * it is very likely we'll catch some of their writes in this
6538 * transaction, and the commit will find this file on the ordered
6539 * data list with good things to send down.
6540 *
6541 * This is a best effort solution, there is still a window where
6542 * using truncate to replace the contents of the file will
6543 * end up with a zero length file after a crash.
6544 */
6545 if (inode->i_size == 0 && BTRFS_I(inode)->ordered_data_close)
6546 btrfs_add_ordered_operation(trans, root, inode);
6547
Yan, Zheng80825102009-11-12 09:35:36 +00006548 while (1) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04006549 if (!trans) {
6550 trans = btrfs_start_transaction(root, 0);
Josef Bacik3893e332011-01-31 16:03:11 -05006551 if (IS_ERR(trans))
6552 return PTR_ERR(trans);
Yan, Zhengd68fc572010-05-16 10:49:58 -04006553 btrfs_set_trans_block_group(trans, inode);
6554 trans->block_rsv = root->orphan_block_rsv;
6555 }
6556
6557 ret = btrfs_block_rsv_check(trans, root,
6558 root->orphan_block_rsv, 0, 5);
Josef Bacik3893e332011-01-31 16:03:11 -05006559 if (ret == -EAGAIN) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04006560 ret = btrfs_commit_transaction(trans, root);
Josef Bacik3893e332011-01-31 16:03:11 -05006561 if (ret)
6562 return ret;
Yan, Zhengd68fc572010-05-16 10:49:58 -04006563 trans = NULL;
6564 continue;
Josef Bacik3893e332011-01-31 16:03:11 -05006565 } else if (ret) {
6566 err = ret;
6567 break;
Yan, Zhengd68fc572010-05-16 10:49:58 -04006568 }
6569
Yan, Zheng80825102009-11-12 09:35:36 +00006570 ret = btrfs_truncate_inode_items(trans, root, inode,
6571 inode->i_size,
6572 BTRFS_EXTENT_DATA_KEY);
Josef Bacik3893e332011-01-31 16:03:11 -05006573 if (ret != -EAGAIN) {
6574 err = ret;
Yan, Zheng80825102009-11-12 09:35:36 +00006575 break;
Josef Bacik3893e332011-01-31 16:03:11 -05006576 }
Chris Mason39279cc2007-06-12 06:35:45 -04006577
Yan, Zheng80825102009-11-12 09:35:36 +00006578 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05006579 if (ret) {
6580 err = ret;
6581 break;
6582 }
Chris Mason5f39d392007-10-15 16:14:19 -04006583
Yan, Zheng80825102009-11-12 09:35:36 +00006584 nr = trans->blocks_used;
6585 btrfs_end_transaction(trans, root);
Yan, Zhengd68fc572010-05-16 10:49:58 -04006586 trans = NULL;
Yan, Zheng80825102009-11-12 09:35:36 +00006587 btrfs_btree_balance_dirty(root, nr);
Yan, Zheng80825102009-11-12 09:35:36 +00006588 }
6589
6590 if (ret == 0 && inode->i_nlink > 0) {
6591 ret = btrfs_orphan_del(trans, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05006592 if (ret)
6593 err = ret;
Josef Bacikded5db92011-03-04 14:09:46 -05006594 } else if (ret && inode->i_nlink > 0) {
6595 /*
6596 * Failed to do the truncate, remove us from the in memory
6597 * orphan list.
6598 */
6599 ret = btrfs_orphan_del(NULL, inode);
Yan, Zheng80825102009-11-12 09:35:36 +00006600 }
6601
6602 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05006603 if (ret && !err)
6604 err = ret;
Josef Bacik7b128762008-07-24 12:17:14 -04006605
Josef Bacik7b128762008-07-24 12:17:14 -04006606 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04006607 ret = btrfs_end_transaction_throttle(trans, root);
Josef Bacik3893e332011-01-31 16:03:11 -05006608 if (ret && !err)
6609 err = ret;
Chris Masond3c2fdc2007-09-17 10:58:06 -04006610 btrfs_btree_balance_dirty(root, nr);
Josef Bacika41ad392011-01-31 15:30:16 -05006611
Josef Bacik3893e332011-01-31 16:03:11 -05006612 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04006613}
6614
Sven Wegener3b963622008-06-09 21:57:42 -04006615/*
Chris Masond352ac62008-09-29 15:18:18 -04006616 * create a new subvolume directory/inode (helper for the ioctl).
6617 */
Yan Zhengd2fb3432008-12-11 16:30:39 -05006618int btrfs_create_subvol_root(struct btrfs_trans_handle *trans,
Yan, Zheng76dda932009-09-21 16:00:26 -04006619 struct btrfs_root *new_root,
Yan Zhengd2fb3432008-12-11 16:30:39 -05006620 u64 new_dirid, u64 alloc_hint)
Chris Mason39279cc2007-06-12 06:35:45 -04006621{
Chris Mason39279cc2007-06-12 06:35:45 -04006622 struct inode *inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04006623 int err;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006624 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006625
Josef Bacikaec74772008-07-24 12:12:38 -04006626 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2, new_dirid,
Yan Zhengd2fb3432008-12-11 16:30:39 -05006627 new_dirid, alloc_hint, S_IFDIR | 0700, &index);
Chris Mason54aa1f42007-06-22 14:16:25 -04006628 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04006629 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006630 inode->i_op = &btrfs_dir_inode_operations;
6631 inode->i_fop = &btrfs_dir_file_operations;
6632
Chris Mason39279cc2007-06-12 06:35:45 -04006633 inode->i_nlink = 1;
Chris Masondbe674a2008-07-17 12:54:05 -04006634 btrfs_i_size_write(inode, 0);
Sven Wegener3b963622008-06-09 21:57:42 -04006635
Yan, Zheng76dda932009-09-21 16:00:26 -04006636 err = btrfs_update_inode(trans, new_root, inode);
6637 BUG_ON(err);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04006638
Yan, Zheng76dda932009-09-21 16:00:26 -04006639 iput(inode);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04006640 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006641}
6642
Chris Masond352ac62008-09-29 15:18:18 -04006643/* helper function for file defrag and space balancing. This
6644 * forces readahead on a given range of bytes in an inode
6645 */
Chris Masonedbd8d42007-12-21 16:27:24 -05006646unsigned long btrfs_force_ra(struct address_space *mapping,
Chris Mason86479a02007-09-10 19:58:16 -04006647 struct file_ra_state *ra, struct file *file,
6648 pgoff_t offset, pgoff_t last_index)
6649{
Chris Mason8e7bf942008-04-28 09:02:36 -04006650 pgoff_t req_size = last_index - offset + 1;
Chris Mason86479a02007-09-10 19:58:16 -04006651
Chris Mason86479a02007-09-10 19:58:16 -04006652 page_cache_sync_readahead(mapping, ra, file, offset, req_size);
6653 return offset + req_size;
Chris Mason86479a02007-09-10 19:58:16 -04006654}
6655
Chris Mason39279cc2007-06-12 06:35:45 -04006656struct inode *btrfs_alloc_inode(struct super_block *sb)
6657{
6658 struct btrfs_inode *ei;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006659 struct inode *inode;
Chris Mason39279cc2007-06-12 06:35:45 -04006660
6661 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
6662 if (!ei)
6663 return NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006664
6665 ei->root = NULL;
6666 ei->space_info = NULL;
6667 ei->generation = 0;
6668 ei->sequence = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04006669 ei->last_trans = 0;
Chris Mason257c62e2009-10-13 13:21:08 -04006670 ei->last_sub_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04006671 ei->logged_trans = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006672 ei->delalloc_bytes = 0;
6673 ei->reserved_bytes = 0;
6674 ei->disk_i_size = 0;
6675 ei->flags = 0;
6676 ei->index_cnt = (u64)-1;
6677 ei->last_unlink_trans = 0;
6678
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006679 atomic_set(&ei->outstanding_extents, 0);
Josef Bacik57a45ced2011-01-25 16:30:38 -05006680 atomic_set(&ei->reserved_extents, 0);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006681
6682 ei->ordered_data_close = 0;
Yan, Zhengd68fc572010-05-16 10:49:58 -04006683 ei->orphan_meta_reserved = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006684 ei->dummy_inode = 0;
Li Zefan261507a02010-12-17 14:21:50 +08006685 ei->force_compress = BTRFS_COMPRESS_NONE;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006686
Miao Xie16cdcec2011-04-22 18:12:22 +08006687 ei->delayed_node = NULL;
6688
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006689 inode = &ei->vfs_inode;
David Sterbaa8067e02011-04-21 00:34:43 +02006690 extent_map_tree_init(&ei->extent_tree);
David Sterbaf993c882011-04-20 23:35:57 +02006691 extent_io_tree_init(&ei->io_tree, &inode->i_data);
6692 extent_io_tree_init(&ei->io_failure_tree, &inode->i_data);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006693 mutex_init(&ei->log_mutex);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006694 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Josef Bacik7b128762008-07-24 12:17:14 -04006695 INIT_LIST_HEAD(&ei->i_orphan);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006696 INIT_LIST_HEAD(&ei->delalloc_inodes);
Chris Mason5a3f23d2009-03-31 13:27:11 -04006697 INIT_LIST_HEAD(&ei->ordered_operations);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006698 RB_CLEAR_NODE(&ei->rb_node);
6699
6700 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04006701}
6702
Nick Pigginfa0d7e32011-01-07 17:49:49 +11006703static void btrfs_i_callback(struct rcu_head *head)
6704{
6705 struct inode *inode = container_of(head, struct inode, i_rcu);
6706 INIT_LIST_HEAD(&inode->i_dentry);
6707 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
6708}
6709
Chris Mason39279cc2007-06-12 06:35:45 -04006710void btrfs_destroy_inode(struct inode *inode)
6711{
Chris Masone6dcd2d2008-07-17 12:53:50 -04006712 struct btrfs_ordered_extent *ordered;
Chris Mason5a3f23d2009-03-31 13:27:11 -04006713 struct btrfs_root *root = BTRFS_I(inode)->root;
6714
Chris Mason39279cc2007-06-12 06:35:45 -04006715 WARN_ON(!list_empty(&inode->i_dentry));
6716 WARN_ON(inode->i_data.nrpages);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006717 WARN_ON(atomic_read(&BTRFS_I(inode)->outstanding_extents));
Josef Bacik57a45ced2011-01-25 16:30:38 -05006718 WARN_ON(atomic_read(&BTRFS_I(inode)->reserved_extents));
Chris Mason39279cc2007-06-12 06:35:45 -04006719
Chris Mason5a3f23d2009-03-31 13:27:11 -04006720 /*
Josef Bacika6dbd422009-11-11 15:53:34 -05006721 * This can happen where we create an inode, but somebody else also
6722 * created the same inode and we need to destroy the one we already
6723 * created.
6724 */
6725 if (!root)
6726 goto free;
6727
6728 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04006729 * Make sure we're properly removed from the ordered operation
6730 * lists.
6731 */
6732 smp_mb();
6733 if (!list_empty(&BTRFS_I(inode)->ordered_operations)) {
6734 spin_lock(&root->fs_info->ordered_extent_lock);
6735 list_del_init(&BTRFS_I(inode)->ordered_operations);
6736 spin_unlock(&root->fs_info->ordered_extent_lock);
6737 }
6738
Josef Bacik0af3d002010-06-21 14:48:16 -04006739 if (root == root->fs_info->tree_root) {
6740 struct btrfs_block_group_cache *block_group;
6741
6742 block_group = btrfs_lookup_block_group(root->fs_info,
6743 BTRFS_I(inode)->block_group);
6744 if (block_group && block_group->inode == inode) {
6745 spin_lock(&block_group->lock);
6746 block_group->inode = NULL;
6747 spin_unlock(&block_group->lock);
6748 btrfs_put_block_group(block_group);
6749 } else if (block_group) {
6750 btrfs_put_block_group(block_group);
6751 }
6752 }
6753
Yan, Zhengd68fc572010-05-16 10:49:58 -04006754 spin_lock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04006755 if (!list_empty(&BTRFS_I(inode)->i_orphan)) {
Li Zefan33345d012011-04-20 10:31:50 +08006756 printk(KERN_INFO "BTRFS: inode %llu still on the orphan list\n",
6757 (unsigned long long)btrfs_ino(inode));
Yan, Zheng80825102009-11-12 09:35:36 +00006758 list_del_init(&BTRFS_I(inode)->i_orphan);
Josef Bacik7b128762008-07-24 12:17:14 -04006759 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04006760 spin_unlock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04006761
Chris Masond3977122009-01-05 21:25:51 -05006762 while (1) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04006763 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
6764 if (!ordered)
6765 break;
6766 else {
Chris Masond3977122009-01-05 21:25:51 -05006767 printk(KERN_ERR "btrfs found ordered "
6768 "extent %llu %llu on inode cleanup\n",
6769 (unsigned long long)ordered->file_offset,
6770 (unsigned long long)ordered->len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006771 btrfs_remove_ordered_extent(inode, ordered);
6772 btrfs_put_ordered_extent(ordered);
6773 btrfs_put_ordered_extent(ordered);
6774 }
6775 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006776 inode_tree_del(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04006777 btrfs_drop_extent_cache(inode, 0, (u64)-1, 0);
Josef Bacika6dbd422009-11-11 15:53:34 -05006778free:
Miao Xie16cdcec2011-04-22 18:12:22 +08006779 btrfs_remove_delayed_node(inode);
Nick Pigginfa0d7e32011-01-07 17:49:49 +11006780 call_rcu(&inode->i_rcu, btrfs_i_callback);
Chris Mason39279cc2007-06-12 06:35:45 -04006781}
6782
Al Viro45321ac2010-06-07 13:43:19 -04006783int btrfs_drop_inode(struct inode *inode)
Yan, Zheng76dda932009-09-21 16:00:26 -04006784{
6785 struct btrfs_root *root = BTRFS_I(inode)->root;
Al Viro45321ac2010-06-07 13:43:19 -04006786
Josef Bacik0af3d002010-06-21 14:48:16 -04006787 if (btrfs_root_refs(&root->root_item) == 0 &&
Li Zefan82d59022011-04-20 10:33:24 +08006788 !is_free_space_inode(root, inode))
Al Viro45321ac2010-06-07 13:43:19 -04006789 return 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04006790 else
Al Viro45321ac2010-06-07 13:43:19 -04006791 return generic_drop_inode(inode);
Yan, Zheng76dda932009-09-21 16:00:26 -04006792}
6793
Sven Wegener0ee0fda2008-07-30 16:54:26 -04006794static void init_once(void *foo)
Chris Mason39279cc2007-06-12 06:35:45 -04006795{
6796 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
6797
6798 inode_init_once(&ei->vfs_inode);
6799}
6800
6801void btrfs_destroy_cachep(void)
6802{
6803 if (btrfs_inode_cachep)
6804 kmem_cache_destroy(btrfs_inode_cachep);
6805 if (btrfs_trans_handle_cachep)
6806 kmem_cache_destroy(btrfs_trans_handle_cachep);
6807 if (btrfs_transaction_cachep)
6808 kmem_cache_destroy(btrfs_transaction_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04006809 if (btrfs_path_cachep)
6810 kmem_cache_destroy(btrfs_path_cachep);
Josef Bacikdc89e982011-01-28 17:05:48 -05006811 if (btrfs_free_space_cachep)
6812 kmem_cache_destroy(btrfs_free_space_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04006813}
6814
6815int btrfs_init_cachep(void)
6816{
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006817 btrfs_inode_cachep = kmem_cache_create("btrfs_inode_cache",
6818 sizeof(struct btrfs_inode), 0,
6819 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04006820 if (!btrfs_inode_cachep)
6821 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006822
6823 btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle_cache",
6824 sizeof(struct btrfs_trans_handle), 0,
6825 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006826 if (!btrfs_trans_handle_cachep)
6827 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006828
6829 btrfs_transaction_cachep = kmem_cache_create("btrfs_transaction_cache",
6830 sizeof(struct btrfs_transaction), 0,
6831 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006832 if (!btrfs_transaction_cachep)
6833 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006834
6835 btrfs_path_cachep = kmem_cache_create("btrfs_path_cache",
6836 sizeof(struct btrfs_path), 0,
6837 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006838 if (!btrfs_path_cachep)
6839 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006840
Josef Bacikdc89e982011-01-28 17:05:48 -05006841 btrfs_free_space_cachep = kmem_cache_create("btrfs_free_space_cache",
6842 sizeof(struct btrfs_free_space), 0,
6843 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
6844 if (!btrfs_free_space_cachep)
6845 goto fail;
6846
Chris Mason39279cc2007-06-12 06:35:45 -04006847 return 0;
6848fail:
6849 btrfs_destroy_cachep();
6850 return -ENOMEM;
6851}
6852
6853static int btrfs_getattr(struct vfsmount *mnt,
6854 struct dentry *dentry, struct kstat *stat)
6855{
6856 struct inode *inode = dentry->d_inode;
6857 generic_fillattr(inode, stat);
Chris Mason3394e162008-11-17 20:42:26 -05006858 stat->dev = BTRFS_I(inode)->root->anon_super.s_dev;
Chris Masond6667462008-01-03 14:51:00 -05006859 stat->blksize = PAGE_CACHE_SIZE;
Yan Zhenga76a3cd2008-10-09 11:46:29 -04006860 stat->blocks = (inode_get_bytes(inode) +
6861 BTRFS_I(inode)->delalloc_bytes) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -04006862 return 0;
6863}
6864
Liu Bo75e7cb72011-03-22 10:12:20 +00006865/*
6866 * If a file is moved, it will inherit the cow and compression flags of the new
6867 * directory.
6868 */
6869static void fixup_inode_flags(struct inode *dir, struct inode *inode)
6870{
6871 struct btrfs_inode *b_dir = BTRFS_I(dir);
6872 struct btrfs_inode *b_inode = BTRFS_I(inode);
6873
6874 if (b_dir->flags & BTRFS_INODE_NODATACOW)
6875 b_inode->flags |= BTRFS_INODE_NODATACOW;
6876 else
6877 b_inode->flags &= ~BTRFS_INODE_NODATACOW;
6878
6879 if (b_dir->flags & BTRFS_INODE_COMPRESS)
6880 b_inode->flags |= BTRFS_INODE_COMPRESS;
6881 else
6882 b_inode->flags &= ~BTRFS_INODE_COMPRESS;
6883}
6884
Chris Masond3977122009-01-05 21:25:51 -05006885static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry,
6886 struct inode *new_dir, struct dentry *new_dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04006887{
6888 struct btrfs_trans_handle *trans;
6889 struct btrfs_root *root = BTRFS_I(old_dir)->root;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006890 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04006891 struct inode *new_inode = new_dentry->d_inode;
6892 struct inode *old_inode = old_dentry->d_inode;
6893 struct timespec ctime = CURRENT_TIME;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006894 u64 index = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006895 u64 root_objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04006896 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08006897 u64 old_ino = btrfs_ino(old_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006898
Li Zefan33345d012011-04-20 10:31:50 +08006899 if (btrfs_ino(new_dir) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Yan, Zhengf679a842009-09-24 09:17:31 -04006900 return -EPERM;
6901
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006902 /* we only allow rename subvolume link between subvolumes */
Li Zefan33345d012011-04-20 10:31:50 +08006903 if (old_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
Chris Mason3394e162008-11-17 20:42:26 -05006904 return -EXDEV;
6905
Li Zefan33345d012011-04-20 10:31:50 +08006906 if (old_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID ||
6907 (new_inode && btrfs_ino(new_inode) == BTRFS_FIRST_FREE_OBJECTID))
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006908 return -ENOTEMPTY;
6909
Chris Mason39279cc2007-06-12 06:35:45 -04006910 if (S_ISDIR(old_inode->i_mode) && new_inode &&
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006911 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Chris Mason39279cc2007-06-12 06:35:45 -04006912 return -ENOTEMPTY;
Chris Mason5a3f23d2009-03-31 13:27:11 -04006913 /*
6914 * we're using rename to replace one file with another.
6915 * and the replacement file is large. Start IO on it now so
6916 * we don't add too much work to the end of the transaction
6917 */
Bartlomiej Zolnierkiewicz4baf8c92009-08-07 13:47:08 -04006918 if (new_inode && S_ISREG(old_inode->i_mode) && new_inode->i_size &&
Chris Mason5a3f23d2009-03-31 13:27:11 -04006919 old_inode->i_size > BTRFS_ORDERED_OPERATIONS_FLUSH_LIMIT)
6920 filemap_flush(old_inode->i_mapping);
6921
Yan, Zheng76dda932009-09-21 16:00:26 -04006922 /* close the racy window with snapshot create/destroy ioctl */
Li Zefan33345d012011-04-20 10:31:50 +08006923 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Yan, Zheng76dda932009-09-21 16:00:26 -04006924 down_read(&root->fs_info->subvol_sem);
Yan, Zhenga22285a2010-05-16 10:48:46 -04006925 /*
6926 * We want to reserve the absolute worst case amount of items. So if
6927 * both inodes are subvols and we need to unlink them then that would
6928 * require 4 item modifications, but if they are both normal inodes it
6929 * would require 5 item modifications, so we'll assume their normal
6930 * inodes. So 5 * 2 is 10, plus 1 for the new link, so 11 total items
6931 * should cover the worst case number of items we'll modify.
6932 */
6933 trans = btrfs_start_transaction(root, 20);
Johann Lombardib44c59a2011-03-31 13:23:47 +00006934 if (IS_ERR(trans)) {
6935 ret = PTR_ERR(trans);
6936 goto out_notrans;
6937 }
Chris Mason5f39d392007-10-15 16:14:19 -04006938
Yan, Zhenga5719522009-09-24 09:17:31 -04006939 btrfs_set_trans_block_group(trans, new_dir);
Chris Mason39279cc2007-06-12 06:35:45 -04006940
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006941 if (dest != root)
6942 btrfs_record_root_in_trans(trans, dest);
6943
Yan, Zhenga5719522009-09-24 09:17:31 -04006944 ret = btrfs_set_inode_index(new_dir, &index);
6945 if (ret)
6946 goto out_fail;
Chris Mason5a3f23d2009-03-31 13:27:11 -04006947
Li Zefan33345d012011-04-20 10:31:50 +08006948 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006949 /* force full log commit if subvolume involved. */
6950 root->fs_info->last_trans_log_full_commit = trans->transid;
6951 } else {
Yan, Zhenga5719522009-09-24 09:17:31 -04006952 ret = btrfs_insert_inode_ref(trans, dest,
6953 new_dentry->d_name.name,
6954 new_dentry->d_name.len,
Li Zefan33345d012011-04-20 10:31:50 +08006955 old_ino,
6956 btrfs_ino(new_dir), index);
Yan, Zhenga5719522009-09-24 09:17:31 -04006957 if (ret)
6958 goto out_fail;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006959 /*
6960 * this is an ugly little race, but the rename is required
6961 * to make sure that if we crash, the inode is either at the
6962 * old name or the new one. pinning the log transaction lets
6963 * us make sure we don't allow a log commit to come in after
6964 * we unlink the name but before we add the new name back in.
6965 */
6966 btrfs_pin_log_trans(root);
6967 }
Chris Mason12fcfd22009-03-24 10:24:20 -04006968 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04006969 * make sure the inode gets flushed if it is replacing
6970 * something.
6971 */
Li Zefan33345d012011-04-20 10:31:50 +08006972 if (new_inode && new_inode->i_size && S_ISREG(old_inode->i_mode))
Chris Mason5a3f23d2009-03-31 13:27:11 -04006973 btrfs_add_ordered_operation(trans, root, old_inode);
Chris Mason5a3f23d2009-03-31 13:27:11 -04006974
Chris Mason39279cc2007-06-12 06:35:45 -04006975 old_dir->i_ctime = old_dir->i_mtime = ctime;
6976 new_dir->i_ctime = new_dir->i_mtime = ctime;
6977 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04006978
Chris Mason12fcfd22009-03-24 10:24:20 -04006979 if (old_dentry->d_parent != new_dentry->d_parent)
6980 btrfs_record_unlink_dir(trans, old_dir, old_inode, 1);
6981
Li Zefan33345d012011-04-20 10:31:50 +08006982 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006983 root_objectid = BTRFS_I(old_inode)->root->root_key.objectid;
6984 ret = btrfs_unlink_subvol(trans, root, old_dir, root_objectid,
6985 old_dentry->d_name.name,
6986 old_dentry->d_name.len);
6987 } else {
Al Viro92986792011-03-04 17:14:37 +00006988 ret = __btrfs_unlink_inode(trans, root, old_dir,
6989 old_dentry->d_inode,
6990 old_dentry->d_name.name,
6991 old_dentry->d_name.len);
6992 if (!ret)
6993 ret = btrfs_update_inode(trans, root, old_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006994 }
6995 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04006996
6997 if (new_inode) {
6998 new_inode->i_ctime = CURRENT_TIME;
Li Zefan33345d012011-04-20 10:31:50 +08006999 if (unlikely(btrfs_ino(new_inode) ==
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007000 BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
7001 root_objectid = BTRFS_I(new_inode)->location.objectid;
7002 ret = btrfs_unlink_subvol(trans, dest, new_dir,
7003 root_objectid,
7004 new_dentry->d_name.name,
7005 new_dentry->d_name.len);
7006 BUG_ON(new_inode->i_nlink == 0);
7007 } else {
7008 ret = btrfs_unlink_inode(trans, dest, new_dir,
7009 new_dentry->d_inode,
7010 new_dentry->d_name.name,
7011 new_dentry->d_name.len);
7012 }
7013 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04007014 if (new_inode->i_nlink == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04007015 ret = btrfs_orphan_add(trans, new_dentry->d_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007016 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04007017 }
Chris Mason39279cc2007-06-12 06:35:45 -04007018 }
Josef Bacikaec74772008-07-24 12:12:38 -04007019
Liu Bo75e7cb72011-03-22 10:12:20 +00007020 fixup_inode_flags(new_dir, old_inode);
7021
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007022 ret = btrfs_add_link(trans, new_dir, old_inode,
7023 new_dentry->d_name.name,
Yan, Zhenga5719522009-09-24 09:17:31 -04007024 new_dentry->d_name.len, 0, index);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007025 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04007026
Li Zefan33345d012011-04-20 10:31:50 +08007027 if (old_ino != BTRFS_FIRST_FREE_OBJECTID) {
Josef Bacik6a912212010-11-20 09:48:00 +00007028 struct dentry *parent = dget_parent(new_dentry);
7029 btrfs_log_new_name(trans, old_inode, old_dir, parent);
7030 dput(parent);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007031 btrfs_end_log_trans(root);
7032 }
Chris Mason39279cc2007-06-12 06:35:45 -04007033out_fail:
Chris Masonab78c842008-07-29 16:15:18 -04007034 btrfs_end_transaction_throttle(trans, root);
Johann Lombardib44c59a2011-03-31 13:23:47 +00007035out_notrans:
Li Zefan33345d012011-04-20 10:31:50 +08007036 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Yan, Zheng76dda932009-09-21 16:00:26 -04007037 up_read(&root->fs_info->subvol_sem);
Josef Bacik9ed74f22009-09-11 16:12:44 -04007038
Chris Mason39279cc2007-06-12 06:35:45 -04007039 return ret;
7040}
7041
Chris Masond352ac62008-09-29 15:18:18 -04007042/*
7043 * some fairly slow code that needs optimization. This walks the list
7044 * of all the inodes with pending delalloc and forces them to disk.
7045 */
Yan, Zheng24bbcf02009-11-12 09:36:34 +00007046int btrfs_start_delalloc_inodes(struct btrfs_root *root, int delay_iput)
Chris Masonea8c2812008-08-04 23:17:27 -04007047{
7048 struct list_head *head = &root->fs_info->delalloc_inodes;
7049 struct btrfs_inode *binode;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007050 struct inode *inode;
Chris Masonea8c2812008-08-04 23:17:27 -04007051
Yan Zhengc146afa2008-11-12 14:34:12 -05007052 if (root->fs_info->sb->s_flags & MS_RDONLY)
7053 return -EROFS;
7054
Chris Mason75eff682008-12-15 15:54:40 -05007055 spin_lock(&root->fs_info->delalloc_lock);
Chris Masond3977122009-01-05 21:25:51 -05007056 while (!list_empty(head)) {
Chris Masonea8c2812008-08-04 23:17:27 -04007057 binode = list_entry(head->next, struct btrfs_inode,
7058 delalloc_inodes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007059 inode = igrab(&binode->vfs_inode);
7060 if (!inode)
7061 list_del_init(&binode->delalloc_inodes);
Chris Mason75eff682008-12-15 15:54:40 -05007062 spin_unlock(&root->fs_info->delalloc_lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007063 if (inode) {
Chris Mason8c8bee12008-09-29 11:19:10 -04007064 filemap_flush(inode->i_mapping);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00007065 if (delay_iput)
7066 btrfs_add_delayed_iput(inode);
7067 else
7068 iput(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007069 }
7070 cond_resched();
Chris Mason75eff682008-12-15 15:54:40 -05007071 spin_lock(&root->fs_info->delalloc_lock);
Chris Masonea8c2812008-08-04 23:17:27 -04007072 }
Chris Mason75eff682008-12-15 15:54:40 -05007073 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason8c8bee12008-09-29 11:19:10 -04007074
7075 /* the filemap_flush will queue IO into the worker threads, but
7076 * we have to make sure the IO is actually started and that
7077 * ordered extents get created before we return
7078 */
7079 atomic_inc(&root->fs_info->async_submit_draining);
Chris Masond3977122009-01-05 21:25:51 -05007080 while (atomic_read(&root->fs_info->nr_async_submits) ||
Chris Mason771ed682008-11-06 22:02:51 -05007081 atomic_read(&root->fs_info->async_delalloc_pages)) {
Chris Mason8c8bee12008-09-29 11:19:10 -04007082 wait_event(root->fs_info->async_submit_wait,
Chris Mason771ed682008-11-06 22:02:51 -05007083 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
7084 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
Chris Mason8c8bee12008-09-29 11:19:10 -04007085 }
7086 atomic_dec(&root->fs_info->async_submit_draining);
Chris Masonea8c2812008-08-04 23:17:27 -04007087 return 0;
7088}
7089
Chris Mason39279cc2007-06-12 06:35:45 -04007090static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
7091 const char *symname)
7092{
7093 struct btrfs_trans_handle *trans;
7094 struct btrfs_root *root = BTRFS_I(dir)->root;
7095 struct btrfs_path *path;
7096 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05007097 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04007098 int err;
7099 int drop_inode = 0;
7100 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04007101 u64 index = 0 ;
Chris Mason39279cc2007-06-12 06:35:45 -04007102 int name_len;
7103 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04007104 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04007105 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04007106 struct extent_buffer *leaf;
Chris Mason1832a6d2007-12-21 16:27:21 -05007107 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04007108
7109 name_len = strlen(symname) + 1;
7110 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
7111 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05007112
Josef Bacik9ed74f22009-09-11 16:12:44 -04007113 /*
7114 * 2 items for inode item and ref
7115 * 2 items for dir items
7116 * 1 item for xattr if selinux is on
7117 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04007118 trans = btrfs_start_transaction(root, 5);
7119 if (IS_ERR(trans))
7120 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05007121
Chris Mason39279cc2007-06-12 06:35:45 -04007122 btrfs_set_trans_block_group(trans, dir);
7123
Li Zefan581bb052011-04-20 10:06:11 +08007124 err = btrfs_find_free_ino(root, &objectid);
7125 if (err)
7126 goto out_unlock;
7127
Josef Bacikaec74772008-07-24 12:12:38 -04007128 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08007129 dentry->d_name.len, btrfs_ino(dir), objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04007130 BTRFS_I(dir)->block_group, S_IFLNK|S_IRWXUGO,
7131 &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04007132 if (IS_ERR(inode)) {
7133 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007134 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04007135 }
Chris Mason39279cc2007-06-12 06:35:45 -04007136
Eric Paris2a7dba32011-02-01 11:05:39 -05007137 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04007138 if (err) {
7139 drop_inode = 1;
7140 goto out_unlock;
7141 }
7142
Chris Mason39279cc2007-06-12 06:35:45 -04007143 btrfs_set_trans_block_group(trans, inode);
Josef Bacika1b075d2010-11-19 20:36:11 +00007144 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04007145 if (err)
7146 drop_inode = 1;
7147 else {
7148 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04007149 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04007150 inode->i_fop = &btrfs_file_operations;
7151 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05007152 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04007153 }
Chris Mason39279cc2007-06-12 06:35:45 -04007154 btrfs_update_inode_block_group(trans, inode);
7155 btrfs_update_inode_block_group(trans, dir);
7156 if (drop_inode)
7157 goto out_unlock;
7158
7159 path = btrfs_alloc_path();
7160 BUG_ON(!path);
Li Zefan33345d012011-04-20 10:31:50 +08007161 key.objectid = btrfs_ino(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007162 key.offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04007163 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
7164 datasize = btrfs_file_extent_calc_inline_size(name_len);
7165 err = btrfs_insert_empty_item(trans, root, path, &key,
7166 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04007167 if (err) {
7168 drop_inode = 1;
Julia Lawallb0839162011-05-14 07:10:51 +00007169 btrfs_free_path(path);
Chris Mason54aa1f42007-06-22 14:16:25 -04007170 goto out_unlock;
7171 }
Chris Mason5f39d392007-10-15 16:14:19 -04007172 leaf = path->nodes[0];
7173 ei = btrfs_item_ptr(leaf, path->slots[0],
7174 struct btrfs_file_extent_item);
7175 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
7176 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04007177 BTRFS_FILE_EXTENT_INLINE);
Chris Masonc8b97812008-10-29 14:49:59 -04007178 btrfs_set_file_extent_encryption(leaf, ei, 0);
7179 btrfs_set_file_extent_compression(leaf, ei, 0);
7180 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
7181 btrfs_set_file_extent_ram_bytes(leaf, ei, name_len);
7182
Chris Mason39279cc2007-06-12 06:35:45 -04007183 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04007184 write_extent_buffer(leaf, symname, ptr, name_len);
7185 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04007186 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04007187
Chris Mason39279cc2007-06-12 06:35:45 -04007188 inode->i_op = &btrfs_symlink_inode_operations;
7189 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04007190 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Yan Zhengd899e052008-10-30 14:25:28 -04007191 inode_set_bytes(inode, name_len);
Chris Masondbe674a2008-07-17 12:54:05 -04007192 btrfs_i_size_write(inode, name_len - 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04007193 err = btrfs_update_inode(trans, root, inode);
7194 if (err)
7195 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04007196
7197out_unlock:
Chris Masond3c2fdc2007-09-17 10:58:06 -04007198 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04007199 btrfs_end_transaction_throttle(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04007200 if (drop_inode) {
7201 inode_dec_link_count(inode);
7202 iput(inode);
7203 }
Chris Masond3c2fdc2007-09-17 10:58:06 -04007204 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04007205 return err;
7206}
Chris Mason16432982008-04-10 10:23:21 -04007207
Josef Bacik0af3d002010-06-21 14:48:16 -04007208static int __btrfs_prealloc_file_range(struct inode *inode, int mode,
7209 u64 start, u64 num_bytes, u64 min_size,
7210 loff_t actual_len, u64 *alloc_hint,
7211 struct btrfs_trans_handle *trans)
Yan Zhengd899e052008-10-30 14:25:28 -04007212{
Yan Zhengd899e052008-10-30 14:25:28 -04007213 struct btrfs_root *root = BTRFS_I(inode)->root;
7214 struct btrfs_key ins;
Yan Zhengd899e052008-10-30 14:25:28 -04007215 u64 cur_offset = start;
Josef Bacik55a61d12010-11-22 18:50:32 +00007216 u64 i_size;
Yan Zhengd899e052008-10-30 14:25:28 -04007217 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04007218 bool own_trans = true;
Yan Zhengd899e052008-10-30 14:25:28 -04007219
Josef Bacik0af3d002010-06-21 14:48:16 -04007220 if (trans)
7221 own_trans = false;
Yan Zhengd899e052008-10-30 14:25:28 -04007222 while (num_bytes > 0) {
Josef Bacik0af3d002010-06-21 14:48:16 -04007223 if (own_trans) {
7224 trans = btrfs_start_transaction(root, 3);
7225 if (IS_ERR(trans)) {
7226 ret = PTR_ERR(trans);
7227 break;
7228 }
Yan Zhengd899e052008-10-30 14:25:28 -04007229 }
Yan, Zheng5a303d52009-11-12 09:34:52 +00007230
Yan, Zhengefa56462010-05-16 10:49:59 -04007231 ret = btrfs_reserve_extent(trans, root, num_bytes, min_size,
7232 0, *alloc_hint, (u64)-1, &ins, 1);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007233 if (ret) {
Josef Bacik0af3d002010-06-21 14:48:16 -04007234 if (own_trans)
7235 btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04007236 break;
Yan, Zheng5a303d52009-11-12 09:34:52 +00007237 }
7238
Yan Zhengd899e052008-10-30 14:25:28 -04007239 ret = insert_reserved_file_extent(trans, inode,
7240 cur_offset, ins.objectid,
7241 ins.offset, ins.offset,
Yan, Zheng920bbbf2009-11-12 09:34:08 +00007242 ins.offset, 0, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04007243 BTRFS_FILE_EXTENT_PREALLOC);
7244 BUG_ON(ret);
Chris Masona1ed8352009-09-11 12:27:37 -04007245 btrfs_drop_extent_cache(inode, cur_offset,
7246 cur_offset + ins.offset -1, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007247
Yan Zhengd899e052008-10-30 14:25:28 -04007248 num_bytes -= ins.offset;
7249 cur_offset += ins.offset;
Yan, Zhengefa56462010-05-16 10:49:59 -04007250 *alloc_hint = ins.objectid + ins.offset;
Yan, Zheng5a303d52009-11-12 09:34:52 +00007251
Yan Zhengd899e052008-10-30 14:25:28 -04007252 inode->i_ctime = CURRENT_TIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +02007253 BTRFS_I(inode)->flags |= BTRFS_INODE_PREALLOC;
Yan Zhengd899e052008-10-30 14:25:28 -04007254 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
Yan, Zhengefa56462010-05-16 10:49:59 -04007255 (actual_len > inode->i_size) &&
7256 (cur_offset > inode->i_size)) {
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00007257 if (cur_offset > actual_len)
Josef Bacik55a61d12010-11-22 18:50:32 +00007258 i_size = actual_len;
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00007259 else
Josef Bacik55a61d12010-11-22 18:50:32 +00007260 i_size = cur_offset;
7261 i_size_write(inode, i_size);
7262 btrfs_ordered_update_i_size(inode, i_size, NULL);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007263 }
7264
Yan Zhengd899e052008-10-30 14:25:28 -04007265 ret = btrfs_update_inode(trans, root, inode);
7266 BUG_ON(ret);
Yan Zhengd899e052008-10-30 14:25:28 -04007267
Josef Bacik0af3d002010-06-21 14:48:16 -04007268 if (own_trans)
7269 btrfs_end_transaction(trans, root);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007270 }
Yan Zhengd899e052008-10-30 14:25:28 -04007271 return ret;
7272}
7273
Josef Bacik0af3d002010-06-21 14:48:16 -04007274int btrfs_prealloc_file_range(struct inode *inode, int mode,
7275 u64 start, u64 num_bytes, u64 min_size,
7276 loff_t actual_len, u64 *alloc_hint)
7277{
7278 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
7279 min_size, actual_len, alloc_hint,
7280 NULL);
7281}
7282
7283int btrfs_prealloc_file_range_trans(struct inode *inode,
7284 struct btrfs_trans_handle *trans, int mode,
7285 u64 start, u64 num_bytes, u64 min_size,
7286 loff_t actual_len, u64 *alloc_hint)
7287{
7288 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
7289 min_size, actual_len, alloc_hint, trans);
7290}
7291
Chris Masone6dcd2d2008-07-17 12:53:50 -04007292static int btrfs_set_page_dirty(struct page *page)
7293{
Chris Masone6dcd2d2008-07-17 12:53:50 -04007294 return __set_page_dirty_nobuffers(page);
7295}
7296
Nick Pigginb74c79e2011-01-07 17:49:58 +11007297static int btrfs_permission(struct inode *inode, int mask, unsigned int flags)
Yanfdebe2b2008-01-14 13:26:08 -05007298{
Li Zefanb83cc962010-12-20 16:04:08 +08007299 struct btrfs_root *root = BTRFS_I(inode)->root;
7300
7301 if (btrfs_root_readonly(root) && (mask & MAY_WRITE))
7302 return -EROFS;
Christoph Hellwig6cbff002009-04-17 10:37:41 +02007303 if ((BTRFS_I(inode)->flags & BTRFS_INODE_READONLY) && (mask & MAY_WRITE))
Yanfdebe2b2008-01-14 13:26:08 -05007304 return -EACCES;
Nick Pigginb74c79e2011-01-07 17:49:58 +11007305 return generic_permission(inode, mask, flags, btrfs_check_acl);
Yanfdebe2b2008-01-14 13:26:08 -05007306}
Chris Mason39279cc2007-06-12 06:35:45 -04007307
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007308static const struct inode_operations btrfs_dir_inode_operations = {
Chris Mason3394e162008-11-17 20:42:26 -05007309 .getattr = btrfs_getattr,
Chris Mason39279cc2007-06-12 06:35:45 -04007310 .lookup = btrfs_lookup,
7311 .create = btrfs_create,
7312 .unlink = btrfs_unlink,
7313 .link = btrfs_link,
7314 .mkdir = btrfs_mkdir,
7315 .rmdir = btrfs_rmdir,
7316 .rename = btrfs_rename,
7317 .symlink = btrfs_symlink,
7318 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04007319 .mknod = btrfs_mknod,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007320 .setxattr = btrfs_setxattr,
7321 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05007322 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007323 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05007324 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04007325};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007326static const struct inode_operations btrfs_dir_ro_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007327 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -05007328 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04007329};
Yan, Zheng76dda932009-09-21 16:00:26 -04007330
Alexey Dobriyan828c0952009-10-01 15:43:56 -07007331static const struct file_operations btrfs_dir_file_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007332 .llseek = generic_file_llseek,
7333 .read = generic_read_dir,
David Woodhousecbdf5a22008-08-06 19:42:33 +01007334 .readdir = btrfs_real_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04007335 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04007336#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04007337 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04007338#endif
Sage Weil6bf13c02008-06-10 10:07:39 -04007339 .release = btrfs_release_file,
Chris Masone02119d2008-09-05 16:13:11 -04007340 .fsync = btrfs_sync_file,
Chris Mason39279cc2007-06-12 06:35:45 -04007341};
7342
Chris Masond1310b22008-01-24 16:13:08 -05007343static struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -04007344 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -05007345 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04007346 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04007347 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Masone6dcd2d2008-07-17 12:53:50 -04007348 .writepage_end_io_hook = btrfs_writepage_end_io_hook,
Chris Mason247e7432008-07-17 12:53:51 -04007349 .writepage_start_hook = btrfs_writepage_start_hook,
Chris Mason1259ab72008-05-12 13:39:03 -04007350 .readpage_io_failed_hook = btrfs_io_failed_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -05007351 .set_bit_hook = btrfs_set_bit_hook,
7352 .clear_bit_hook = btrfs_clear_bit_hook,
Josef Bacik9ed74f22009-09-11 16:12:44 -04007353 .merge_extent_hook = btrfs_merge_extent_hook,
7354 .split_extent_hook = btrfs_split_extent_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04007355};
7356
Chris Mason35054392009-01-21 13:11:13 -05007357/*
7358 * btrfs doesn't support the bmap operation because swapfiles
7359 * use bmap to make a mapping of extents in the file. They assume
7360 * these extents won't change over the life of the file and they
7361 * use the bmap result to do IO directly to the drive.
7362 *
7363 * the btrfs bmap call would return logical addresses that aren't
7364 * suitable for IO and they also will change frequently as COW
7365 * operations happen. So, swapfile + btrfs == corruption.
7366 *
7367 * For now we're avoiding this by dropping bmap.
7368 */
Alexey Dobriyan7f094102009-09-21 17:01:10 -07007369static const struct address_space_operations btrfs_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04007370 .readpage = btrfs_readpage,
7371 .writepage = btrfs_writepage,
Chris Masonb293f022007-11-01 19:45:34 -04007372 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -05007373 .readpages = btrfs_readpages,
Chris Mason16432982008-04-10 10:23:21 -04007374 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -04007375 .invalidatepage = btrfs_invalidatepage,
7376 .releasepage = btrfs_releasepage,
Chris Masone6dcd2d2008-07-17 12:53:50 -04007377 .set_page_dirty = btrfs_set_page_dirty,
Andi Kleen465fdd92009-09-16 11:50:18 +02007378 .error_remove_page = generic_error_remove_page,
Chris Mason39279cc2007-06-12 06:35:45 -04007379};
7380
Alexey Dobriyan7f094102009-09-21 17:01:10 -07007381static const struct address_space_operations btrfs_symlink_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04007382 .readpage = btrfs_readpage,
7383 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -04007384 .invalidatepage = btrfs_invalidatepage,
7385 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -04007386};
7387
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007388static const struct inode_operations btrfs_file_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007389 .getattr = btrfs_getattr,
7390 .setattr = btrfs_setattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007391 .setxattr = btrfs_setxattr,
7392 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05007393 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007394 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05007395 .permission = btrfs_permission,
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05007396 .fiemap = btrfs_fiemap,
Chris Mason39279cc2007-06-12 06:35:45 -04007397};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007398static const struct inode_operations btrfs_special_inode_operations = {
Josef Bacik618e21d2007-07-11 10:18:17 -04007399 .getattr = btrfs_getattr,
7400 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05007401 .permission = btrfs_permission,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007402 .setxattr = btrfs_setxattr,
7403 .getxattr = btrfs_getxattr,
Josef Bacik33268ea2008-07-24 12:16:36 -04007404 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007405 .removexattr = btrfs_removexattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04007406};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007407static const struct inode_operations btrfs_symlink_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007408 .readlink = generic_readlink,
7409 .follow_link = page_follow_link_light,
7410 .put_link = page_put_link,
Li Zefanf2095612010-11-19 02:05:24 +00007411 .getattr = btrfs_getattr,
Yanfdebe2b2008-01-14 13:26:08 -05007412 .permission = btrfs_permission,
Jim Owens0279b4c2009-02-04 09:29:13 -05007413 .setxattr = btrfs_setxattr,
7414 .getxattr = btrfs_getxattr,
7415 .listxattr = btrfs_listxattr,
7416 .removexattr = btrfs_removexattr,
Chris Mason39279cc2007-06-12 06:35:45 -04007417};
Yan, Zheng76dda932009-09-21 16:00:26 -04007418
Alexey Dobriyan82d339d2009-10-09 09:54:36 -04007419const struct dentry_operations btrfs_dentry_operations = {
Yan, Zheng76dda932009-09-21 16:00:26 -04007420 .d_delete = btrfs_dentry_delete,
7421};