blob: 8ae72c3eedb16d1bf26bd008151eb57a567eb723 [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 Bacikf5a84ee32009-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 Bacikf5a84ee32009-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 Bacikf5a84ee32009-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 Bacikf5a84ee32009-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 Bacikf5a84ee32009-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,
1022 bytenr + num_bytes - 1, &list);
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
1326 * but in this case, we are only testeing for the DELALLOC
1327 * 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
1359 * but in this case, we are only testeing for the DELALLOC
1360 * 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 Masond3c2fdcf2007-09-17 10:58:06 -04003012 nr = trans->blocks_used;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003013 __unlink_end_trans(trans, root);
Chris Masond3c2fdcf2007-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 Masond3c2fdcf2007-09-17 10:58:06 -04003109 nr = trans->blocks_used;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003110 __unlink_end_trans(trans, root);
Chris Masond3c2fdcf2007-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 Mason90692182008-02-08 13:49:28 -05003289 BUG_ON(ret);
Chris Masone02119d2008-09-05 16:13:11 -04003290 } else if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003291 inode_sub_bytes(inode, item_end + 1 -
3292 found_key.offset);
Chris Mason90692182008-02-08 13:49:28 -05003293 }
Chris Mason39279cc2007-06-12 06:35:45 -04003294 }
Chris Mason179e29e2007-11-01 11:28:41 -04003295delete:
Chris Mason39279cc2007-06-12 06:35:45 -04003296 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05003297 if (!pending_del_nr) {
3298 /* no pending yet, add ourselves */
3299 pending_del_slot = path->slots[0];
3300 pending_del_nr = 1;
3301 } else if (pending_del_nr &&
3302 path->slots[0] + 1 == pending_del_slot) {
3303 /* hop on the pending chunk */
3304 pending_del_nr++;
3305 pending_del_slot = path->slots[0];
3306 } else {
Chris Masond3977122009-01-05 21:25:51 -05003307 BUG();
Chris Mason85e21ba2008-01-29 15:11:36 -05003308 }
Chris Mason39279cc2007-06-12 06:35:45 -04003309 } else {
3310 break;
3311 }
Josef Bacik0af3d002010-06-21 14:48:16 -04003312 if (found_extent && (root->ref_cows ||
3313 root == root->fs_info->tree_root)) {
Chris Masonb9473432009-03-13 11:00:37 -04003314 btrfs_set_path_blocking(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003315 ret = btrfs_free_extent(trans, root, extent_start,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003316 extent_num_bytes, 0,
3317 btrfs_header_owner(leaf),
Li Zefan33345d012011-04-20 10:31:50 +08003318 ino, extent_offset);
Chris Mason39279cc2007-06-12 06:35:45 -04003319 BUG_ON(ret);
3320 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003321
Yan, Zheng80825102009-11-12 09:35:36 +00003322 if (found_type == BTRFS_INODE_ITEM_KEY)
3323 break;
3324
3325 if (path->slots[0] == 0 ||
3326 path->slots[0] != pending_del_slot) {
Li Zefan82d59022011-04-20 10:33:24 +08003327 if (root->ref_cows &&
3328 BTRFS_I(inode)->location.objectid !=
3329 BTRFS_FREE_INO_OBJECTID) {
Yan, Zheng80825102009-11-12 09:35:36 +00003330 err = -EAGAIN;
3331 goto out;
3332 }
3333 if (pending_del_nr) {
3334 ret = btrfs_del_items(trans, root, path,
3335 pending_del_slot,
3336 pending_del_nr);
3337 BUG_ON(ret);
3338 pending_del_nr = 0;
3339 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003340 btrfs_release_path(path);
Chris Mason85e21ba2008-01-29 15:11:36 -05003341 goto search_again;
Yan, Zheng80825102009-11-12 09:35:36 +00003342 } else {
3343 path->slots[0]--;
Chris Mason85e21ba2008-01-29 15:11:36 -05003344 }
Chris Mason39279cc2007-06-12 06:35:45 -04003345 }
Yan, Zheng80825102009-11-12 09:35:36 +00003346out:
Chris Mason85e21ba2008-01-29 15:11:36 -05003347 if (pending_del_nr) {
3348 ret = btrfs_del_items(trans, root, path, pending_del_slot,
3349 pending_del_nr);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003350 BUG_ON(ret);
Chris Mason85e21ba2008-01-29 15:11:36 -05003351 }
Chris Mason39279cc2007-06-12 06:35:45 -04003352 btrfs_free_path(path);
Yan, Zheng80825102009-11-12 09:35:36 +00003353 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003354}
3355
Chris Masona52d9a82007-08-27 16:49:44 -04003356/*
3357 * taken from block_truncate_page, but does cow as it zeros out
3358 * any bytes left in the last page in the file.
3359 */
3360static int btrfs_truncate_page(struct address_space *mapping, loff_t from)
3361{
3362 struct inode *inode = mapping->host;
Chris Masondb945352007-10-15 16:15:53 -04003363 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003364 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
3365 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003366 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003367 char *kaddr;
Chris Masondb945352007-10-15 16:15:53 -04003368 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -04003369 pgoff_t index = from >> PAGE_CACHE_SHIFT;
3370 unsigned offset = from & (PAGE_CACHE_SIZE-1);
3371 struct page *page;
3372 int ret = 0;
3373 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003374 u64 page_end;
Chris Masona52d9a82007-08-27 16:49:44 -04003375
3376 if ((offset & (blocksize - 1)) == 0)
3377 goto out;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003378 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003379 if (ret)
3380 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04003381
3382 ret = -ENOMEM;
Chris Mason211c17f2008-05-15 09:13:45 -04003383again:
Chris Masona52d9a82007-08-27 16:49:44 -04003384 page = grab_cache_page(mapping, index);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003385 if (!page) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003386 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Masona52d9a82007-08-27 16:49:44 -04003387 goto out;
Josef Bacik5d5e1032009-10-13 16:46:49 -04003388 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04003389
3390 page_start = page_offset(page);
3391 page_end = page_start + PAGE_CACHE_SIZE - 1;
3392
Chris Masona52d9a82007-08-27 16:49:44 -04003393 if (!PageUptodate(page)) {
3394 ret = btrfs_readpage(NULL, page);
3395 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04003396 if (page->mapping != mapping) {
3397 unlock_page(page);
3398 page_cache_release(page);
3399 goto again;
3400 }
Chris Masona52d9a82007-08-27 16:49:44 -04003401 if (!PageUptodate(page)) {
3402 ret = -EIO;
Chris Mason89642222008-07-24 09:41:53 -04003403 goto out_unlock;
Chris Masona52d9a82007-08-27 16:49:44 -04003404 }
3405 }
Chris Mason211c17f2008-05-15 09:13:45 -04003406 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003407
Josef Bacik2ac55d42010-02-03 19:33:23 +00003408 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state,
3409 GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003410 set_page_extent_mapped(page);
3411
3412 ordered = btrfs_lookup_ordered_extent(inode, page_start);
3413 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00003414 unlock_extent_cached(io_tree, page_start, page_end,
3415 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003416 unlock_page(page);
3417 page_cache_release(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04003418 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003419 btrfs_put_ordered_extent(ordered);
3420 goto again;
3421 }
3422
Josef Bacik2ac55d42010-02-03 19:33:23 +00003423 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Josef Bacik5d5e1032009-10-13 16:46:49 -04003424 EXTENT_DIRTY | EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00003425 0, 0, &cached_state, GFP_NOFS);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003426
Josef Bacik2ac55d42010-02-03 19:33:23 +00003427 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
3428 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003429 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00003430 unlock_extent_cached(io_tree, page_start, page_end,
3431 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003432 goto out_unlock;
3433 }
3434
Chris Masone6dcd2d2008-07-17 12:53:50 -04003435 ret = 0;
3436 if (offset != PAGE_CACHE_SIZE) {
3437 kaddr = kmap(page);
3438 memset(kaddr + offset, 0, PAGE_CACHE_SIZE - offset);
3439 flush_dcache_page(page);
3440 kunmap(page);
3441 }
Chris Mason247e7432008-07-17 12:53:51 -04003442 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003443 set_page_dirty(page);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003444 unlock_extent_cached(io_tree, page_start, page_end, &cached_state,
3445 GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04003446
Chris Mason89642222008-07-24 09:41:53 -04003447out_unlock:
Josef Bacik5d5e1032009-10-13 16:46:49 -04003448 if (ret)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003449 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Mason39279cc2007-06-12 06:35:45 -04003450 unlock_page(page);
3451 page_cache_release(page);
3452out:
3453 return ret;
3454}
3455
Josef Bacik695a0d02011-03-04 15:46:53 -05003456/*
3457 * This function puts in dummy file extents for the area we're creating a hole
3458 * for. So if we are truncating this file to a larger size we need to insert
3459 * these file extents so that btrfs_get_extent will return a EXTENT_MAP_HOLE for
3460 * the range between oldsize and size
3461 */
Josef Bacika41ad392011-01-31 15:30:16 -05003462int btrfs_cont_expand(struct inode *inode, loff_t oldsize, loff_t size)
Yan Zheng9036c102008-10-30 14:19:41 -04003463{
3464 struct btrfs_trans_handle *trans;
3465 struct btrfs_root *root = BTRFS_I(inode)->root;
3466 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003467 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003468 struct extent_state *cached_state = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04003469 u64 mask = root->sectorsize - 1;
Josef Bacika41ad392011-01-31 15:30:16 -05003470 u64 hole_start = (oldsize + mask) & ~mask;
Yan Zheng9036c102008-10-30 14:19:41 -04003471 u64 block_end = (size + mask) & ~mask;
3472 u64 last_byte;
3473 u64 cur_offset;
3474 u64 hole_size;
Josef Bacik9ed74f22009-09-11 16:12:44 -04003475 int err = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04003476
3477 if (size <= hole_start)
3478 return 0;
3479
Yan Zheng9036c102008-10-30 14:19:41 -04003480 while (1) {
3481 struct btrfs_ordered_extent *ordered;
3482 btrfs_wait_ordered_range(inode, hole_start,
3483 block_end - hole_start);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003484 lock_extent_bits(io_tree, hole_start, block_end - 1, 0,
3485 &cached_state, GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003486 ordered = btrfs_lookup_ordered_extent(inode, hole_start);
3487 if (!ordered)
3488 break;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003489 unlock_extent_cached(io_tree, hole_start, block_end - 1,
3490 &cached_state, GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003491 btrfs_put_ordered_extent(ordered);
3492 }
3493
Yan Zheng9036c102008-10-30 14:19:41 -04003494 cur_offset = hole_start;
3495 while (1) {
3496 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
3497 block_end - cur_offset, 0);
David Sterbac7040052011-04-19 18:00:01 +02003498 BUG_ON(IS_ERR_OR_NULL(em));
Yan Zheng9036c102008-10-30 14:19:41 -04003499 last_byte = min(extent_map_end(em), block_end);
3500 last_byte = (last_byte + mask) & ~mask;
Yan, Zheng80825102009-11-12 09:35:36 +00003501 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
Chris Mason771ed682008-11-06 22:02:51 -05003502 u64 hint_byte = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04003503 hole_size = last_byte - cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00003504
Yan, Zhenga22285a2010-05-16 10:48:46 -04003505 trans = btrfs_start_transaction(root, 2);
3506 if (IS_ERR(trans)) {
3507 err = PTR_ERR(trans);
Chris Mason771ed682008-11-06 22:02:51 -05003508 break;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003509 }
Yan, Zheng80825102009-11-12 09:35:36 +00003510 btrfs_set_trans_block_group(trans, inode);
3511
3512 err = btrfs_drop_extents(trans, inode, cur_offset,
3513 cur_offset + hole_size,
3514 &hint_byte, 1);
Josef Bacik3893e332011-01-31 16:03:11 -05003515 if (err)
3516 break;
Josef Bacik9ed74f22009-09-11 16:12:44 -04003517
Yan Zheng9036c102008-10-30 14:19:41 -04003518 err = btrfs_insert_file_extent(trans, root,
Li Zefan33345d012011-04-20 10:31:50 +08003519 btrfs_ino(inode), cur_offset, 0,
Yan Zheng9036c102008-10-30 14:19:41 -04003520 0, hole_size, 0, hole_size,
3521 0, 0, 0);
Josef Bacik3893e332011-01-31 16:03:11 -05003522 if (err)
3523 break;
Yan, Zheng80825102009-11-12 09:35:36 +00003524
Yan Zheng9036c102008-10-30 14:19:41 -04003525 btrfs_drop_extent_cache(inode, hole_start,
3526 last_byte - 1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003527
3528 btrfs_end_transaction(trans, root);
Yan Zheng9036c102008-10-30 14:19:41 -04003529 }
3530 free_extent_map(em);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003531 em = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04003532 cur_offset = last_byte;
Yan, Zheng80825102009-11-12 09:35:36 +00003533 if (cur_offset >= block_end)
Yan Zheng9036c102008-10-30 14:19:41 -04003534 break;
3535 }
3536
Yan, Zhenga22285a2010-05-16 10:48:46 -04003537 free_extent_map(em);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003538 unlock_extent_cached(io_tree, hole_start, block_end - 1, &cached_state,
3539 GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003540 return err;
3541}
3542
Josef Bacika41ad392011-01-31 15:30:16 -05003543static int btrfs_setsize(struct inode *inode, loff_t newsize)
Yan, Zheng80825102009-11-12 09:35:36 +00003544{
Josef Bacika41ad392011-01-31 15:30:16 -05003545 loff_t oldsize = i_size_read(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003546 int ret;
3547
Josef Bacika41ad392011-01-31 15:30:16 -05003548 if (newsize == oldsize)
Yan, Zheng80825102009-11-12 09:35:36 +00003549 return 0;
3550
Josef Bacika41ad392011-01-31 15:30:16 -05003551 if (newsize > oldsize) {
3552 i_size_write(inode, newsize);
3553 btrfs_ordered_update_i_size(inode, i_size_read(inode), NULL);
3554 truncate_pagecache(inode, oldsize, newsize);
3555 ret = btrfs_cont_expand(inode, oldsize, newsize);
Yan, Zheng80825102009-11-12 09:35:36 +00003556 if (ret) {
Josef Bacika41ad392011-01-31 15:30:16 -05003557 btrfs_setsize(inode, oldsize);
Yan, Zheng80825102009-11-12 09:35:36 +00003558 return ret;
3559 }
3560
Josef Bacik930f0282011-03-04 14:41:41 -05003561 mark_inode_dirty(inode);
Josef Bacika41ad392011-01-31 15:30:16 -05003562 } else {
Yan, Zheng80825102009-11-12 09:35:36 +00003563
Josef Bacika41ad392011-01-31 15:30:16 -05003564 /*
3565 * We're truncating a file that used to have good data down to
3566 * zero. Make sure it gets into the ordered flush list so that
3567 * any new writes get down to disk quickly.
3568 */
3569 if (newsize == 0)
3570 BTRFS_I(inode)->ordered_data_close = 1;
Yan, Zheng80825102009-11-12 09:35:36 +00003571
Josef Bacika41ad392011-01-31 15:30:16 -05003572 /* we don't support swapfiles, so vmtruncate shouldn't fail */
3573 truncate_setsize(inode, newsize);
3574 ret = btrfs_truncate(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003575 }
3576
Josef Bacika41ad392011-01-31 15:30:16 -05003577 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00003578}
3579
Chris Mason39279cc2007-06-12 06:35:45 -04003580static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
3581{
3582 struct inode *inode = dentry->d_inode;
Li Zefanb83cc962010-12-20 16:04:08 +08003583 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003584 int err;
3585
Li Zefanb83cc962010-12-20 16:04:08 +08003586 if (btrfs_root_readonly(root))
3587 return -EROFS;
3588
Chris Mason39279cc2007-06-12 06:35:45 -04003589 err = inode_change_ok(inode, attr);
3590 if (err)
3591 return err;
3592
Chris Mason5a3f23d2009-03-31 13:27:11 -04003593 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
Josef Bacika41ad392011-01-31 15:30:16 -05003594 err = btrfs_setsize(inode, attr->ia_size);
Yan, Zheng80825102009-11-12 09:35:36 +00003595 if (err)
3596 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003597 }
Yan Zheng9036c102008-10-30 14:19:41 -04003598
Christoph Hellwig10257742010-06-04 11:30:02 +02003599 if (attr->ia_valid) {
3600 setattr_copy(inode, attr);
3601 mark_inode_dirty(inode);
Josef Bacik33268ea2008-07-24 12:16:36 -04003602
Christoph Hellwig10257742010-06-04 11:30:02 +02003603 if (attr->ia_valid & ATTR_MODE)
3604 err = btrfs_acl_chmod(inode);
3605 }
3606
Chris Mason39279cc2007-06-12 06:35:45 -04003607 return err;
3608}
Chris Mason61295eb2008-01-14 16:24:38 -05003609
Al Virobd555972010-06-07 11:35:40 -04003610void btrfs_evict_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04003611{
3612 struct btrfs_trans_handle *trans;
3613 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003614 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04003615 int ret;
3616
liubo1abe9b82011-03-24 11:18:59 +00003617 trace_btrfs_inode_evict(inode);
3618
Chris Mason39279cc2007-06-12 06:35:45 -04003619 truncate_inode_pages(&inode->i_data, 0);
Josef Bacik0af3d002010-06-21 14:48:16 -04003620 if (inode->i_nlink && (btrfs_root_refs(&root->root_item) != 0 ||
Li Zefan82d59022011-04-20 10:33:24 +08003621 is_free_space_inode(root, inode)))
Al Virobd555972010-06-07 11:35:40 -04003622 goto no_delete;
3623
Chris Mason39279cc2007-06-12 06:35:45 -04003624 if (is_bad_inode(inode)) {
Josef Bacik7b128762008-07-24 12:17:14 -04003625 btrfs_orphan_del(NULL, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003626 goto no_delete;
3627 }
Al Virobd555972010-06-07 11:35:40 -04003628 /* do we really want it for ->i_nlink > 0 and zero btrfs_root_refs? */
Chris Mason4a096752008-07-21 10:29:44 -04003629 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Chris Mason5f39d392007-10-15 16:14:19 -04003630
Yan, Zhengc71bf092009-11-12 09:34:40 +00003631 if (root->fs_info->log_root_recovering) {
3632 BUG_ON(!list_empty(&BTRFS_I(inode)->i_orphan));
3633 goto no_delete;
3634 }
3635
Yan, Zheng76dda932009-09-21 16:00:26 -04003636 if (inode->i_nlink > 0) {
3637 BUG_ON(btrfs_root_refs(&root->root_item) != 0);
3638 goto no_delete;
3639 }
3640
Chris Masondbe674a2008-07-17 12:54:05 -04003641 btrfs_i_size_write(inode, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003642
Yan, Zheng80825102009-11-12 09:35:36 +00003643 while (1) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04003644 trans = btrfs_start_transaction(root, 0);
3645 BUG_ON(IS_ERR(trans));
Yan, Zheng80825102009-11-12 09:35:36 +00003646 btrfs_set_trans_block_group(trans, inode);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003647 trans->block_rsv = root->orphan_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00003648
Yan, Zhengd68fc572010-05-16 10:49:58 -04003649 ret = btrfs_block_rsv_check(trans, root,
3650 root->orphan_block_rsv, 0, 5);
3651 if (ret) {
3652 BUG_ON(ret != -EAGAIN);
3653 ret = btrfs_commit_transaction(trans, root);
3654 BUG_ON(ret);
3655 continue;
3656 }
3657
3658 ret = btrfs_truncate_inode_items(trans, root, inode, 0, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003659 if (ret != -EAGAIN)
3660 break;
3661
3662 nr = trans->blocks_used;
3663 btrfs_end_transaction(trans, root);
3664 trans = NULL;
3665 btrfs_btree_balance_dirty(root, nr);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003666
Josef Bacik7b128762008-07-24 12:17:14 -04003667 }
3668
Yan, Zheng80825102009-11-12 09:35:36 +00003669 if (ret == 0) {
3670 ret = btrfs_orphan_del(trans, inode);
3671 BUG_ON(ret);
3672 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003673
Li Zefan581bb052011-04-20 10:06:11 +08003674 if (!(root == root->fs_info->tree_root ||
3675 root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID))
Li Zefan33345d012011-04-20 10:31:50 +08003676 btrfs_return_ino(root, btrfs_ino(inode));
Li Zefan581bb052011-04-20 10:06:11 +08003677
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003678 nr = trans->blocks_used;
Chris Mason54aa1f42007-06-22 14:16:25 -04003679 btrfs_end_transaction(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003680 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003681no_delete:
Al Virobd555972010-06-07 11:35:40 -04003682 end_writeback(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003683 return;
Chris Mason39279cc2007-06-12 06:35:45 -04003684}
3685
3686/*
3687 * this returns the key found in the dir entry in the location pointer.
3688 * If no dir entries were found, location->objectid is 0.
3689 */
3690static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
3691 struct btrfs_key *location)
3692{
3693 const char *name = dentry->d_name.name;
3694 int namelen = dentry->d_name.len;
3695 struct btrfs_dir_item *di;
3696 struct btrfs_path *path;
3697 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04003698 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003699
3700 path = btrfs_alloc_path();
3701 BUG_ON(!path);
Chris Mason39544012007-12-12 14:38:19 -05003702
Li Zefan33345d012011-04-20 10:31:50 +08003703 di = btrfs_lookup_dir_item(NULL, root, path, btrfs_ino(dir), name,
Chris Mason39279cc2007-06-12 06:35:45 -04003704 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04003705 if (IS_ERR(di))
3706 ret = PTR_ERR(di);
Chris Masond3977122009-01-05 21:25:51 -05003707
David Sterbac7040052011-04-19 18:00:01 +02003708 if (IS_ERR_OR_NULL(di))
Chris Mason39544012007-12-12 14:38:19 -05003709 goto out_err;
Chris Masond3977122009-01-05 21:25:51 -05003710
Chris Mason5f39d392007-10-15 16:14:19 -04003711 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04003712out:
Chris Mason39279cc2007-06-12 06:35:45 -04003713 btrfs_free_path(path);
3714 return ret;
Chris Mason39544012007-12-12 14:38:19 -05003715out_err:
3716 location->objectid = 0;
3717 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04003718}
3719
3720/*
3721 * when we hit a tree root in a directory, the btrfs part of the inode
3722 * needs to be changed to reflect the root directory of the tree root. This
3723 * is kind of like crossing a mount point.
3724 */
3725static int fixup_tree_root_location(struct btrfs_root *root,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003726 struct inode *dir,
3727 struct dentry *dentry,
3728 struct btrfs_key *location,
3729 struct btrfs_root **sub_root)
Chris Mason39279cc2007-06-12 06:35:45 -04003730{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003731 struct btrfs_path *path;
3732 struct btrfs_root *new_root;
3733 struct btrfs_root_ref *ref;
3734 struct extent_buffer *leaf;
3735 int ret;
3736 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003737
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003738 path = btrfs_alloc_path();
3739 if (!path) {
3740 err = -ENOMEM;
3741 goto out;
3742 }
Chris Mason39279cc2007-06-12 06:35:45 -04003743
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003744 err = -ENOENT;
3745 ret = btrfs_find_root_ref(root->fs_info->tree_root, path,
3746 BTRFS_I(dir)->root->root_key.objectid,
3747 location->objectid);
3748 if (ret) {
3749 if (ret < 0)
3750 err = ret;
3751 goto out;
3752 }
Chris Mason39279cc2007-06-12 06:35:45 -04003753
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003754 leaf = path->nodes[0];
3755 ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref);
Li Zefan33345d012011-04-20 10:31:50 +08003756 if (btrfs_root_ref_dirid(leaf, ref) != btrfs_ino(dir) ||
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003757 btrfs_root_ref_name_len(leaf, ref) != dentry->d_name.len)
3758 goto out;
3759
3760 ret = memcmp_extent_buffer(leaf, dentry->d_name.name,
3761 (unsigned long)(ref + 1),
3762 dentry->d_name.len);
3763 if (ret)
3764 goto out;
3765
David Sterbab3b4aa72011-04-21 01:20:15 +02003766 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003767
3768 new_root = btrfs_read_fs_root_no_name(root->fs_info, location);
3769 if (IS_ERR(new_root)) {
3770 err = PTR_ERR(new_root);
3771 goto out;
3772 }
3773
3774 if (btrfs_root_refs(&new_root->root_item) == 0) {
3775 err = -ENOENT;
3776 goto out;
3777 }
3778
3779 *sub_root = new_root;
3780 location->objectid = btrfs_root_dirid(&new_root->root_item);
3781 location->type = BTRFS_INODE_ITEM_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -04003782 location->offset = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003783 err = 0;
3784out:
3785 btrfs_free_path(path);
3786 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003787}
3788
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003789static void inode_tree_add(struct inode *inode)
3790{
3791 struct btrfs_root *root = BTRFS_I(inode)->root;
3792 struct btrfs_inode *entry;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003793 struct rb_node **p;
3794 struct rb_node *parent;
Li Zefan33345d012011-04-20 10:31:50 +08003795 u64 ino = btrfs_ino(inode);
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003796again:
3797 p = &root->inode_tree.rb_node;
3798 parent = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003799
Al Viro1d3382cb2010-10-23 15:19:20 -04003800 if (inode_unhashed(inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04003801 return;
3802
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003803 spin_lock(&root->inode_lock);
3804 while (*p) {
3805 parent = *p;
3806 entry = rb_entry(parent, struct btrfs_inode, rb_node);
3807
Li Zefan33345d012011-04-20 10:31:50 +08003808 if (ino < btrfs_ino(&entry->vfs_inode))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003809 p = &parent->rb_left;
Li Zefan33345d012011-04-20 10:31:50 +08003810 else if (ino > btrfs_ino(&entry->vfs_inode))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003811 p = &parent->rb_right;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003812 else {
3813 WARN_ON(!(entry->vfs_inode.i_state &
Al Viroa4ffdde2010-06-02 17:38:30 -04003814 (I_WILL_FREE | I_FREEING)));
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003815 rb_erase(parent, &root->inode_tree);
3816 RB_CLEAR_NODE(parent);
3817 spin_unlock(&root->inode_lock);
3818 goto again;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003819 }
3820 }
3821 rb_link_node(&BTRFS_I(inode)->rb_node, parent, p);
3822 rb_insert_color(&BTRFS_I(inode)->rb_node, &root->inode_tree);
3823 spin_unlock(&root->inode_lock);
3824}
3825
3826static void inode_tree_del(struct inode *inode)
3827{
3828 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -04003829 int empty = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003830
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003831 spin_lock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003832 if (!RB_EMPTY_NODE(&BTRFS_I(inode)->rb_node)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003833 rb_erase(&BTRFS_I(inode)->rb_node, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003834 RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node);
Yan, Zheng76dda932009-09-21 16:00:26 -04003835 empty = RB_EMPTY_ROOT(&root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003836 }
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003837 spin_unlock(&root->inode_lock);
Yan, Zheng76dda932009-09-21 16:00:26 -04003838
Josef Bacik0af3d002010-06-21 14:48:16 -04003839 /*
3840 * Free space cache has inodes in the tree root, but the tree root has a
3841 * root_refs of 0, so this could end up dropping the tree root as a
3842 * snapshot, so we need the extra !root->fs_info->tree_root check to
3843 * make sure we don't drop it.
3844 */
3845 if (empty && btrfs_root_refs(&root->root_item) == 0 &&
3846 root != root->fs_info->tree_root) {
Yan, Zheng76dda932009-09-21 16:00:26 -04003847 synchronize_srcu(&root->fs_info->subvol_srcu);
3848 spin_lock(&root->inode_lock);
3849 empty = RB_EMPTY_ROOT(&root->inode_tree);
3850 spin_unlock(&root->inode_lock);
3851 if (empty)
3852 btrfs_add_dead_root(root);
3853 }
3854}
3855
3856int btrfs_invalidate_inodes(struct btrfs_root *root)
3857{
3858 struct rb_node *node;
3859 struct rb_node *prev;
3860 struct btrfs_inode *entry;
3861 struct inode *inode;
3862 u64 objectid = 0;
3863
3864 WARN_ON(btrfs_root_refs(&root->root_item) != 0);
3865
3866 spin_lock(&root->inode_lock);
3867again:
3868 node = root->inode_tree.rb_node;
3869 prev = NULL;
3870 while (node) {
3871 prev = node;
3872 entry = rb_entry(node, struct btrfs_inode, rb_node);
3873
Li Zefan33345d012011-04-20 10:31:50 +08003874 if (objectid < btrfs_ino(&entry->vfs_inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04003875 node = node->rb_left;
Li Zefan33345d012011-04-20 10:31:50 +08003876 else if (objectid > btrfs_ino(&entry->vfs_inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04003877 node = node->rb_right;
3878 else
3879 break;
3880 }
3881 if (!node) {
3882 while (prev) {
3883 entry = rb_entry(prev, struct btrfs_inode, rb_node);
Li Zefan33345d012011-04-20 10:31:50 +08003884 if (objectid <= btrfs_ino(&entry->vfs_inode)) {
Yan, Zheng76dda932009-09-21 16:00:26 -04003885 node = prev;
3886 break;
3887 }
3888 prev = rb_next(prev);
3889 }
3890 }
3891 while (node) {
3892 entry = rb_entry(node, struct btrfs_inode, rb_node);
Li Zefan33345d012011-04-20 10:31:50 +08003893 objectid = btrfs_ino(&entry->vfs_inode) + 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04003894 inode = igrab(&entry->vfs_inode);
3895 if (inode) {
3896 spin_unlock(&root->inode_lock);
3897 if (atomic_read(&inode->i_count) > 1)
3898 d_prune_aliases(inode);
3899 /*
Al Viro45321ac2010-06-07 13:43:19 -04003900 * btrfs_drop_inode will have it removed from
Yan, Zheng76dda932009-09-21 16:00:26 -04003901 * the inode cache when its usage count
3902 * hits zero.
3903 */
3904 iput(inode);
3905 cond_resched();
3906 spin_lock(&root->inode_lock);
3907 goto again;
3908 }
3909
3910 if (cond_resched_lock(&root->inode_lock))
3911 goto again;
3912
3913 node = rb_next(node);
3914 }
3915 spin_unlock(&root->inode_lock);
3916 return 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003917}
3918
Chris Masone02119d2008-09-05 16:13:11 -04003919static int btrfs_init_locked_inode(struct inode *inode, void *p)
3920{
3921 struct btrfs_iget_args *args = p;
3922 inode->i_ino = args->ino;
Chris Masone02119d2008-09-05 16:13:11 -04003923 BTRFS_I(inode)->root = args->root;
Josef Bacik6a632092009-02-20 11:00:09 -05003924 btrfs_set_inode_space_info(args->root, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003925 return 0;
3926}
3927
3928static int btrfs_find_actor(struct inode *inode, void *opaque)
3929{
3930 struct btrfs_iget_args *args = opaque;
Li Zefan33345d012011-04-20 10:31:50 +08003931 return args->ino == btrfs_ino(inode) &&
Chris Masond3977122009-01-05 21:25:51 -05003932 args->root == BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003933}
3934
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003935static struct inode *btrfs_iget_locked(struct super_block *s,
3936 u64 objectid,
3937 struct btrfs_root *root)
Chris Mason39279cc2007-06-12 06:35:45 -04003938{
3939 struct inode *inode;
3940 struct btrfs_iget_args args;
3941 args.ino = objectid;
3942 args.root = root;
3943
3944 inode = iget5_locked(s, objectid, btrfs_find_actor,
3945 btrfs_init_locked_inode,
3946 (void *)&args);
3947 return inode;
3948}
3949
Balaji Rao1a54ef82008-07-21 02:01:04 +05303950/* Get an inode object given its location and corresponding root.
3951 * Returns in *is_new if the inode was read from disk
3952 */
3953struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
Josef Bacik73f73412009-12-04 17:38:27 +00003954 struct btrfs_root *root, int *new)
Balaji Rao1a54ef82008-07-21 02:01:04 +05303955{
3956 struct inode *inode;
3957
3958 inode = btrfs_iget_locked(s, location->objectid, root);
3959 if (!inode)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003960 return ERR_PTR(-ENOMEM);
Balaji Rao1a54ef82008-07-21 02:01:04 +05303961
3962 if (inode->i_state & I_NEW) {
3963 BTRFS_I(inode)->root = root;
3964 memcpy(&BTRFS_I(inode)->location, location, sizeof(*location));
3965 btrfs_read_locked_inode(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003966 inode_tree_add(inode);
Balaji Rao1a54ef82008-07-21 02:01:04 +05303967 unlock_new_inode(inode);
Josef Bacik73f73412009-12-04 17:38:27 +00003968 if (new)
3969 *new = 1;
Balaji Rao1a54ef82008-07-21 02:01:04 +05303970 }
3971
3972 return inode;
3973}
3974
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003975static struct inode *new_simple_dir(struct super_block *s,
3976 struct btrfs_key *key,
3977 struct btrfs_root *root)
3978{
3979 struct inode *inode = new_inode(s);
3980
3981 if (!inode)
3982 return ERR_PTR(-ENOMEM);
3983
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003984 BTRFS_I(inode)->root = root;
3985 memcpy(&BTRFS_I(inode)->location, key, sizeof(*key));
3986 BTRFS_I(inode)->dummy_inode = 1;
3987
3988 inode->i_ino = BTRFS_EMPTY_SUBVOL_DIR_OBJECTID;
3989 inode->i_op = &simple_dir_inode_operations;
3990 inode->i_fop = &simple_dir_operations;
3991 inode->i_mode = S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO;
3992 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
3993
3994 return inode;
3995}
3996
Chris Mason3de45862008-11-17 21:02:50 -05003997struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04003998{
Chris Masond3977122009-01-05 21:25:51 -05003999 struct inode *inode;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004000 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004001 struct btrfs_root *sub_root = root;
4002 struct btrfs_key location;
Yan, Zheng76dda932009-09-21 16:00:26 -04004003 int index;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004004 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004005
4006 if (dentry->d_name.len > BTRFS_NAME_LEN)
4007 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04004008
Chris Mason39279cc2007-06-12 06:35:45 -04004009 ret = btrfs_inode_by_name(dir, dentry, &location);
Chris Mason5f39d392007-10-15 16:14:19 -04004010
Chris Mason39279cc2007-06-12 06:35:45 -04004011 if (ret < 0)
4012 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04004013
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004014 if (location.objectid == 0)
4015 return NULL;
4016
4017 if (location.type == BTRFS_INODE_ITEM_KEY) {
Josef Bacik73f73412009-12-04 17:38:27 +00004018 inode = btrfs_iget(dir->i_sb, &location, root, NULL);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004019 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04004020 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004021
4022 BUG_ON(location.type != BTRFS_ROOT_ITEM_KEY);
4023
Yan, Zheng76dda932009-09-21 16:00:26 -04004024 index = srcu_read_lock(&root->fs_info->subvol_srcu);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004025 ret = fixup_tree_root_location(root, dir, dentry,
4026 &location, &sub_root);
4027 if (ret < 0) {
4028 if (ret != -ENOENT)
4029 inode = ERR_PTR(ret);
4030 else
4031 inode = new_simple_dir(dir->i_sb, &location, sub_root);
4032 } else {
Josef Bacik73f73412009-12-04 17:38:27 +00004033 inode = btrfs_iget(dir->i_sb, &location, sub_root, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04004034 }
Yan, Zheng76dda932009-09-21 16:00:26 -04004035 srcu_read_unlock(&root->fs_info->subvol_srcu, index);
4036
Julia Lawall34d19ba2011-01-24 19:55:19 +00004037 if (!IS_ERR(inode) && root != sub_root) {
Yan, Zhengc71bf092009-11-12 09:34:40 +00004038 down_read(&root->fs_info->cleanup_work_sem);
4039 if (!(inode->i_sb->s_flags & MS_RDONLY))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05004040 ret = btrfs_orphan_cleanup(sub_root);
Yan, Zhengc71bf092009-11-12 09:34:40 +00004041 up_read(&root->fs_info->cleanup_work_sem);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05004042 if (ret)
4043 inode = ERR_PTR(ret);
Yan, Zhengc71bf092009-11-12 09:34:40 +00004044 }
4045
Chris Mason3de45862008-11-17 21:02:50 -05004046 return inode;
4047}
4048
Nick Pigginfe15ce42011-01-07 17:49:23 +11004049static int btrfs_dentry_delete(const struct dentry *dentry)
Yan, Zheng76dda932009-09-21 16:00:26 -04004050{
4051 struct btrfs_root *root;
4052
Yan, Zhengefefb142009-10-09 09:25:16 -04004053 if (!dentry->d_inode && !IS_ROOT(dentry))
4054 dentry = dentry->d_parent;
Yan, Zheng76dda932009-09-21 16:00:26 -04004055
Yan, Zhengefefb142009-10-09 09:25:16 -04004056 if (dentry->d_inode) {
4057 root = BTRFS_I(dentry->d_inode)->root;
4058 if (btrfs_root_refs(&root->root_item) == 0)
4059 return 1;
4060 }
Yan, Zheng76dda932009-09-21 16:00:26 -04004061 return 0;
4062}
4063
Chris Mason3de45862008-11-17 21:02:50 -05004064static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
4065 struct nameidata *nd)
4066{
4067 struct inode *inode;
4068
Chris Mason3de45862008-11-17 21:02:50 -05004069 inode = btrfs_lookup_dentry(dir, dentry);
4070 if (IS_ERR(inode))
4071 return ERR_CAST(inode);
Josef Bacik7b128762008-07-24 12:17:14 -04004072
Chris Mason39279cc2007-06-12 06:35:45 -04004073 return d_splice_alias(inode, dentry);
4074}
4075
Miao Xie16cdcec2011-04-22 18:12:22 +08004076unsigned char btrfs_filetype_table[] = {
Chris Mason39279cc2007-06-12 06:35:45 -04004077 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
4078};
4079
David Woodhousecbdf5a22008-08-06 19:42:33 +01004080static int btrfs_real_readdir(struct file *filp, void *dirent,
4081 filldir_t filldir)
Chris Mason39279cc2007-06-12 06:35:45 -04004082{
Chris Mason6da6aba2007-12-18 16:15:09 -05004083 struct inode *inode = filp->f_dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04004084 struct btrfs_root *root = BTRFS_I(inode)->root;
4085 struct btrfs_item *item;
4086 struct btrfs_dir_item *di;
4087 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04004088 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04004089 struct btrfs_path *path;
Miao Xie16cdcec2011-04-22 18:12:22 +08004090 struct list_head ins_list;
4091 struct list_head del_list;
Chris Mason39279cc2007-06-12 06:35:45 -04004092 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -04004093 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04004094 int slot;
Chris Mason39279cc2007-06-12 06:35:45 -04004095 unsigned char d_type;
4096 int over = 0;
4097 u32 di_cur;
4098 u32 di_total;
4099 u32 di_len;
4100 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04004101 char tmp_name[32];
4102 char *name_ptr;
4103 int name_len;
Miao Xie16cdcec2011-04-22 18:12:22 +08004104 int is_curr = 0; /* filp->f_pos points to the current index? */
Chris Mason39279cc2007-06-12 06:35:45 -04004105
4106 /* FIXME, use a real flag for deciding about the key type */
4107 if (root->fs_info->tree_root == root)
4108 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04004109
Chris Mason39544012007-12-12 14:38:19 -05004110 /* special case for "." */
4111 if (filp->f_pos == 0) {
Li Zefan33345d012011-04-20 10:31:50 +08004112 over = filldir(dirent, ".", 1, 1, btrfs_ino(inode), DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05004113 if (over)
4114 return 0;
4115 filp->f_pos = 1;
4116 }
Chris Mason39544012007-12-12 14:38:19 -05004117 /* special case for .., just use the back ref */
4118 if (filp->f_pos == 1) {
David Woodhouse5ecc7e52008-08-17 15:14:48 +01004119 u64 pino = parent_ino(filp->f_path.dentry);
Chris Mason39544012007-12-12 14:38:19 -05004120 over = filldir(dirent, "..", 2,
David Woodhouse5ecc7e52008-08-17 15:14:48 +01004121 2, pino, DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05004122 if (over)
David Woodhouse49593bf2008-08-17 17:08:36 +01004123 return 0;
Chris Mason39544012007-12-12 14:38:19 -05004124 filp->f_pos = 2;
4125 }
David Woodhouse49593bf2008-08-17 17:08:36 +01004126 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08004127 if (!path)
4128 return -ENOMEM;
David Woodhouse49593bf2008-08-17 17:08:36 +01004129 path->reada = 2;
4130
Miao Xie16cdcec2011-04-22 18:12:22 +08004131 if (key_type == BTRFS_DIR_INDEX_KEY) {
4132 INIT_LIST_HEAD(&ins_list);
4133 INIT_LIST_HEAD(&del_list);
4134 btrfs_get_delayed_items(inode, &ins_list, &del_list);
4135 }
4136
Chris Mason39279cc2007-06-12 06:35:45 -04004137 btrfs_set_key_type(&key, key_type);
4138 key.offset = filp->f_pos;
Li Zefan33345d012011-04-20 10:31:50 +08004139 key.objectid = btrfs_ino(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004140
Chris Mason39279cc2007-06-12 06:35:45 -04004141 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4142 if (ret < 0)
4143 goto err;
David Woodhouse49593bf2008-08-17 17:08:36 +01004144
4145 while (1) {
Chris Mason5f39d392007-10-15 16:14:19 -04004146 leaf = path->nodes[0];
Chris Mason39279cc2007-06-12 06:35:45 -04004147 slot = path->slots[0];
Li Zefanb9e03af2011-03-23 10:43:58 +08004148 if (slot >= btrfs_header_nritems(leaf)) {
4149 ret = btrfs_next_leaf(root, path);
4150 if (ret < 0)
4151 goto err;
4152 else if (ret > 0)
4153 break;
4154 continue;
Chris Mason39279cc2007-06-12 06:35:45 -04004155 }
Chris Mason3de45862008-11-17 21:02:50 -05004156
Chris Mason5f39d392007-10-15 16:14:19 -04004157 item = btrfs_item_nr(leaf, slot);
4158 btrfs_item_key_to_cpu(leaf, &found_key, slot);
4159
4160 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04004161 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004162 if (btrfs_key_type(&found_key) != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04004163 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004164 if (found_key.offset < filp->f_pos)
Li Zefanb9e03af2011-03-23 10:43:58 +08004165 goto next;
Miao Xie16cdcec2011-04-22 18:12:22 +08004166 if (key_type == BTRFS_DIR_INDEX_KEY &&
4167 btrfs_should_delete_dir_index(&del_list,
4168 found_key.offset))
4169 goto next;
Chris Mason5f39d392007-10-15 16:14:19 -04004170
4171 filp->f_pos = found_key.offset;
Miao Xie16cdcec2011-04-22 18:12:22 +08004172 is_curr = 1;
David Woodhouse49593bf2008-08-17 17:08:36 +01004173
Chris Mason39279cc2007-06-12 06:35:45 -04004174 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
4175 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04004176 di_total = btrfs_item_size(leaf, item);
David Woodhouse49593bf2008-08-17 17:08:36 +01004177
4178 while (di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04004179 struct btrfs_key location;
4180
Josef Bacik22a94d42011-03-16 16:47:17 -04004181 if (verify_dir_item(root, leaf, di))
4182 break;
4183
Chris Mason5f39d392007-10-15 16:14:19 -04004184 name_len = btrfs_dir_name_len(leaf, di);
David Woodhouse49593bf2008-08-17 17:08:36 +01004185 if (name_len <= sizeof(tmp_name)) {
Chris Mason5f39d392007-10-15 16:14:19 -04004186 name_ptr = tmp_name;
4187 } else {
4188 name_ptr = kmalloc(name_len, GFP_NOFS);
David Woodhouse49593bf2008-08-17 17:08:36 +01004189 if (!name_ptr) {
4190 ret = -ENOMEM;
4191 goto err;
4192 }
Chris Mason5f39d392007-10-15 16:14:19 -04004193 }
4194 read_extent_buffer(leaf, name_ptr,
4195 (unsigned long)(di + 1), name_len);
4196
4197 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
4198 btrfs_dir_item_key_to_cpu(leaf, di, &location);
Chris Mason3de45862008-11-17 21:02:50 -05004199
4200 /* is this a reference to our own snapshot? If so
4201 * skip it
4202 */
4203 if (location.type == BTRFS_ROOT_ITEM_KEY &&
4204 location.objectid == root->root_key.objectid) {
4205 over = 0;
4206 goto skip;
4207 }
Chris Mason5f39d392007-10-15 16:14:19 -04004208 over = filldir(dirent, name_ptr, name_len,
David Woodhouse49593bf2008-08-17 17:08:36 +01004209 found_key.offset, location.objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04004210 d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04004211
Chris Mason3de45862008-11-17 21:02:50 -05004212skip:
Chris Mason5f39d392007-10-15 16:14:19 -04004213 if (name_ptr != tmp_name)
4214 kfree(name_ptr);
4215
Chris Mason39279cc2007-06-12 06:35:45 -04004216 if (over)
4217 goto nopos;
Josef Bacik5103e942007-11-16 11:45:54 -05004218 di_len = btrfs_dir_name_len(leaf, di) +
David Woodhouse49593bf2008-08-17 17:08:36 +01004219 btrfs_dir_data_len(leaf, di) + sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04004220 di_cur += di_len;
4221 di = (struct btrfs_dir_item *)((char *)di + di_len);
4222 }
Li Zefanb9e03af2011-03-23 10:43:58 +08004223next:
4224 path->slots[0]++;
Chris Mason39279cc2007-06-12 06:35:45 -04004225 }
David Woodhouse49593bf2008-08-17 17:08:36 +01004226
Miao Xie16cdcec2011-04-22 18:12:22 +08004227 if (key_type == BTRFS_DIR_INDEX_KEY) {
4228 if (is_curr)
4229 filp->f_pos++;
4230 ret = btrfs_readdir_delayed_dir_index(filp, dirent, filldir,
4231 &ins_list);
4232 if (ret)
4233 goto nopos;
4234 }
4235
David Woodhouse49593bf2008-08-17 17:08:36 +01004236 /* Reached end of directory/root. Bump pos past the last item. */
Yan Zheng5e591a02008-02-19 11:41:02 -05004237 if (key_type == BTRFS_DIR_INDEX_KEY)
Jan Engelhardt406266a2009-12-09 22:00:38 +00004238 /*
4239 * 32-bit glibc will use getdents64, but then strtol -
4240 * so the last number we can serve is this.
4241 */
4242 filp->f_pos = 0x7fffffff;
Yan Zheng5e591a02008-02-19 11:41:02 -05004243 else
4244 filp->f_pos++;
Chris Mason39279cc2007-06-12 06:35:45 -04004245nopos:
4246 ret = 0;
4247err:
Miao Xie16cdcec2011-04-22 18:12:22 +08004248 if (key_type == BTRFS_DIR_INDEX_KEY)
4249 btrfs_put_delayed_items(&ins_list, &del_list);
Chris Mason39279cc2007-06-12 06:35:45 -04004250 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04004251 return ret;
4252}
4253
Christoph Hellwiga9185b42010-03-05 09:21:37 +01004254int btrfs_write_inode(struct inode *inode, struct writeback_control *wbc)
Chris Mason39279cc2007-06-12 06:35:45 -04004255{
4256 struct btrfs_root *root = BTRFS_I(inode)->root;
4257 struct btrfs_trans_handle *trans;
4258 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04004259 bool nolock = false;
Chris Mason39279cc2007-06-12 06:35:45 -04004260
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004261 if (BTRFS_I(inode)->dummy_inode)
Chris Mason4ca8b412008-08-05 13:30:48 -04004262 return 0;
4263
Josef Bacik0af3d002010-06-21 14:48:16 -04004264 smp_mb();
Li Zefan82d59022011-04-20 10:33:24 +08004265 if (root->fs_info->closing && is_free_space_inode(root, inode))
4266 nolock = true;
Josef Bacik0af3d002010-06-21 14:48:16 -04004267
Christoph Hellwiga9185b42010-03-05 09:21:37 +01004268 if (wbc->sync_mode == WB_SYNC_ALL) {
Josef Bacik0af3d002010-06-21 14:48:16 -04004269 if (nolock)
4270 trans = btrfs_join_transaction_nolock(root, 1);
4271 else
4272 trans = btrfs_join_transaction(root, 1);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00004273 if (IS_ERR(trans))
4274 return PTR_ERR(trans);
Chris Mason39279cc2007-06-12 06:35:45 -04004275 btrfs_set_trans_block_group(trans, inode);
Josef Bacik0af3d002010-06-21 14:48:16 -04004276 if (nolock)
4277 ret = btrfs_end_transaction_nolock(trans, root);
4278 else
4279 ret = btrfs_commit_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004280 }
4281 return ret;
4282}
4283
4284/*
Chris Mason54aa1f42007-06-22 14:16:25 -04004285 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04004286 * inode changes. But, it is most likely to find the inode in cache.
4287 * FIXME, needs more benchmarking...there are no reasons other than performance
4288 * to keep or drop this code.
4289 */
4290void btrfs_dirty_inode(struct inode *inode)
4291{
4292 struct btrfs_root *root = BTRFS_I(inode)->root;
4293 struct btrfs_trans_handle *trans;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004294 int ret;
4295
4296 if (BTRFS_I(inode)->dummy_inode)
4297 return;
Chris Mason39279cc2007-06-12 06:35:45 -04004298
Chris Masonf9295742008-07-17 12:54:14 -04004299 trans = btrfs_join_transaction(root, 1);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00004300 BUG_ON(IS_ERR(trans));
Chris Mason39279cc2007-06-12 06:35:45 -04004301 btrfs_set_trans_block_group(trans, inode);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004302
4303 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04004304 if (ret && ret == -ENOSPC) {
4305 /* whoops, lets try again with the full transaction */
4306 btrfs_end_transaction(trans, root);
4307 trans = btrfs_start_transaction(root, 1);
Chris Mason9aeead72010-05-27 10:23:00 -04004308 if (IS_ERR(trans)) {
David Sterba7a36dde2011-05-06 15:33:15 +02004309 printk_ratelimited(KERN_ERR "btrfs: fail to "
Li Zefan33345d012011-04-20 10:31:50 +08004310 "dirty inode %llu error %ld\n",
4311 (unsigned long long)btrfs_ino(inode),
4312 PTR_ERR(trans));
Chris Mason9aeead72010-05-27 10:23:00 -04004313 return;
4314 }
Chris Mason94b60442010-05-26 11:02:00 -04004315 btrfs_set_trans_block_group(trans, inode);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004316
Chris Mason94b60442010-05-26 11:02:00 -04004317 ret = btrfs_update_inode(trans, root, inode);
4318 if (ret) {
David Sterba7a36dde2011-05-06 15:33:15 +02004319 printk_ratelimited(KERN_ERR "btrfs: fail to "
Li Zefan33345d012011-04-20 10:31:50 +08004320 "dirty inode %llu error %d\n",
4321 (unsigned long long)btrfs_ino(inode),
4322 ret);
Chris Mason94b60442010-05-26 11:02:00 -04004323 }
4324 }
Chris Mason39279cc2007-06-12 06:35:45 -04004325 btrfs_end_transaction(trans, root);
Miao Xie16cdcec2011-04-22 18:12:22 +08004326 if (BTRFS_I(inode)->delayed_node)
4327 btrfs_balance_delayed_items(root);
Chris Mason39279cc2007-06-12 06:35:45 -04004328}
4329
Chris Masond352ac62008-09-29 15:18:18 -04004330/*
4331 * find the highest existing sequence number in a directory
4332 * and then set the in-memory index_cnt variable to reflect
4333 * free sequence numbers
4334 */
Josef Bacikaec74772008-07-24 12:12:38 -04004335static int btrfs_set_inode_index_count(struct inode *inode)
4336{
4337 struct btrfs_root *root = BTRFS_I(inode)->root;
4338 struct btrfs_key key, found_key;
4339 struct btrfs_path *path;
4340 struct extent_buffer *leaf;
4341 int ret;
4342
Li Zefan33345d012011-04-20 10:31:50 +08004343 key.objectid = btrfs_ino(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004344 btrfs_set_key_type(&key, BTRFS_DIR_INDEX_KEY);
4345 key.offset = (u64)-1;
4346
4347 path = btrfs_alloc_path();
4348 if (!path)
4349 return -ENOMEM;
4350
4351 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4352 if (ret < 0)
4353 goto out;
4354 /* FIXME: we should be able to handle this */
4355 if (ret == 0)
4356 goto out;
4357 ret = 0;
4358
4359 /*
4360 * MAGIC NUMBER EXPLANATION:
4361 * since we search a directory based on f_pos we have to start at 2
4362 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
4363 * else has to start at 2
4364 */
4365 if (path->slots[0] == 0) {
4366 BTRFS_I(inode)->index_cnt = 2;
4367 goto out;
4368 }
4369
4370 path->slots[0]--;
4371
4372 leaf = path->nodes[0];
4373 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
4374
Li Zefan33345d012011-04-20 10:31:50 +08004375 if (found_key.objectid != btrfs_ino(inode) ||
Josef Bacikaec74772008-07-24 12:12:38 -04004376 btrfs_key_type(&found_key) != BTRFS_DIR_INDEX_KEY) {
4377 BTRFS_I(inode)->index_cnt = 2;
4378 goto out;
4379 }
4380
4381 BTRFS_I(inode)->index_cnt = found_key.offset + 1;
4382out:
4383 btrfs_free_path(path);
4384 return ret;
4385}
4386
Chris Masond352ac62008-09-29 15:18:18 -04004387/*
4388 * helper to find a free sequence number in a given directory. This current
4389 * code is very simple, later versions will do smarter things in the btree
4390 */
Chris Mason3de45862008-11-17 21:02:50 -05004391int btrfs_set_inode_index(struct inode *dir, u64 *index)
Josef Bacikaec74772008-07-24 12:12:38 -04004392{
4393 int ret = 0;
4394
4395 if (BTRFS_I(dir)->index_cnt == (u64)-1) {
Miao Xie16cdcec2011-04-22 18:12:22 +08004396 ret = btrfs_inode_delayed_dir_index_count(dir);
4397 if (ret) {
4398 ret = btrfs_set_inode_index_count(dir);
4399 if (ret)
4400 return ret;
4401 }
Josef Bacikaec74772008-07-24 12:12:38 -04004402 }
4403
Chris Mason00e4e6b2008-08-05 11:18:09 -04004404 *index = BTRFS_I(dir)->index_cnt;
Josef Bacikaec74772008-07-24 12:12:38 -04004405 BTRFS_I(dir)->index_cnt++;
4406
4407 return ret;
4408}
4409
Chris Mason39279cc2007-06-12 06:35:45 -04004410static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
4411 struct btrfs_root *root,
Josef Bacikaec74772008-07-24 12:12:38 -04004412 struct inode *dir,
Chris Mason9c583092008-01-29 15:15:18 -05004413 const char *name, int name_len,
Yan Zhengd2fb3432008-12-11 16:30:39 -05004414 u64 ref_objectid, u64 objectid,
4415 u64 alloc_hint, int mode, u64 *index)
Chris Mason39279cc2007-06-12 06:35:45 -04004416{
4417 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04004418 struct btrfs_inode_item *inode_item;
Chris Mason39279cc2007-06-12 06:35:45 -04004419 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04004420 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05004421 struct btrfs_inode_ref *ref;
4422 struct btrfs_key key[2];
4423 u32 sizes[2];
4424 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04004425 int ret;
4426 int owner;
4427
Chris Mason5f39d392007-10-15 16:14:19 -04004428 path = btrfs_alloc_path();
4429 BUG_ON(!path);
4430
Chris Mason39279cc2007-06-12 06:35:45 -04004431 inode = new_inode(root->fs_info->sb);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00004432 if (!inode) {
4433 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04004434 return ERR_PTR(-ENOMEM);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00004435 }
Chris Mason39279cc2007-06-12 06:35:45 -04004436
Li Zefan581bb052011-04-20 10:06:11 +08004437 /*
4438 * we have to initialize this early, so we can reclaim the inode
4439 * number if we fail afterwards in this function.
4440 */
4441 inode->i_ino = objectid;
4442
Josef Bacikaec74772008-07-24 12:12:38 -04004443 if (dir) {
liubo1abe9b82011-03-24 11:18:59 +00004444 trace_btrfs_inode_request(dir);
4445
Chris Mason3de45862008-11-17 21:02:50 -05004446 ret = btrfs_set_inode_index(dir, index);
Shen Feng09771432009-04-02 16:46:06 -04004447 if (ret) {
Yoshinori Sano8fb27642011-04-09 02:30:07 +00004448 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04004449 iput(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004450 return ERR_PTR(ret);
Shen Feng09771432009-04-02 16:46:06 -04004451 }
Josef Bacikaec74772008-07-24 12:12:38 -04004452 }
4453 /*
4454 * index_cnt is ignored for everything but a dir,
4455 * btrfs_get_inode_index_count has an explanation for the magic
4456 * number
4457 */
4458 BTRFS_I(inode)->index_cnt = 2;
Chris Mason39279cc2007-06-12 06:35:45 -04004459 BTRFS_I(inode)->root = root;
Chris Masone02119d2008-09-05 16:13:11 -04004460 BTRFS_I(inode)->generation = trans->transid;
Josef Bacik76195852010-11-19 02:18:02 +00004461 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik6a632092009-02-20 11:00:09 -05004462 btrfs_set_inode_space_info(root, inode);
Chris Masonb888db22007-08-27 16:49:44 -04004463
Chris Mason39279cc2007-06-12 06:35:45 -04004464 if (mode & S_IFDIR)
4465 owner = 0;
4466 else
4467 owner = 1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05004468 BTRFS_I(inode)->block_group =
4469 btrfs_find_block_group(root, 0, alloc_hint, owner);
Chris Mason9c583092008-01-29 15:15:18 -05004470
4471 key[0].objectid = objectid;
4472 btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
4473 key[0].offset = 0;
4474
4475 key[1].objectid = objectid;
4476 btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY);
4477 key[1].offset = ref_objectid;
4478
4479 sizes[0] = sizeof(struct btrfs_inode_item);
4480 sizes[1] = name_len + sizeof(*ref);
4481
Chris Masonb9473432009-03-13 11:00:37 -04004482 path->leave_spinning = 1;
Chris Mason9c583092008-01-29 15:15:18 -05004483 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, 2);
4484 if (ret != 0)
Chris Mason5f39d392007-10-15 16:14:19 -04004485 goto fail;
4486
Dmitry Monakhovecc11fab2010-03-04 17:31:47 +03004487 inode_init_owner(inode, dir, mode);
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004488 inode_set_bytes(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04004489 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Chris Mason5f39d392007-10-15 16:14:19 -04004490 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
4491 struct btrfs_inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04004492 fill_inode_item(trans, path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05004493
4494 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
4495 struct btrfs_inode_ref);
4496 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
Chris Mason00e4e6b2008-08-05 11:18:09 -04004497 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
Chris Mason9c583092008-01-29 15:15:18 -05004498 ptr = (unsigned long)(ref + 1);
4499 write_extent_buffer(path->nodes[0], name, ptr, name_len);
4500
Chris Mason5f39d392007-10-15 16:14:19 -04004501 btrfs_mark_buffer_dirty(path->nodes[0]);
4502 btrfs_free_path(path);
4503
Chris Mason39279cc2007-06-12 06:35:45 -04004504 location = &BTRFS_I(inode)->location;
4505 location->objectid = objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04004506 location->offset = 0;
4507 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
4508
Christoph Hellwig6cbff002009-04-17 10:37:41 +02004509 btrfs_inherit_iflags(inode, dir);
4510
Chris Mason94272162009-07-02 12:26:06 -04004511 if ((mode & S_IFREG)) {
4512 if (btrfs_test_opt(root, NODATASUM))
4513 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
Liu Bo75e7cb72011-03-22 10:12:20 +00004514 if (btrfs_test_opt(root, NODATACOW) ||
4515 (BTRFS_I(dir)->flags & BTRFS_INODE_NODATACOW))
Chris Mason94272162009-07-02 12:26:06 -04004516 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW;
4517 }
4518
Chris Mason39279cc2007-06-12 06:35:45 -04004519 insert_inode_hash(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004520 inode_tree_add(inode);
liubo1abe9b82011-03-24 11:18:59 +00004521
4522 trace_btrfs_inode_new(inode);
4523
Chris Mason39279cc2007-06-12 06:35:45 -04004524 return inode;
Chris Mason5f39d392007-10-15 16:14:19 -04004525fail:
Josef Bacikaec74772008-07-24 12:12:38 -04004526 if (dir)
4527 BTRFS_I(dir)->index_cnt--;
Chris Mason5f39d392007-10-15 16:14:19 -04004528 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04004529 iput(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004530 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04004531}
4532
4533static inline u8 btrfs_inode_type(struct inode *inode)
4534{
4535 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
4536}
4537
Chris Masond352ac62008-09-29 15:18:18 -04004538/*
4539 * utility function to add 'inode' into 'parent_inode' with
4540 * a give name and a given sequence number.
4541 * if 'add_backref' is true, also insert a backref from the
4542 * inode to the parent directory.
4543 */
Chris Masone02119d2008-09-05 16:13:11 -04004544int btrfs_add_link(struct btrfs_trans_handle *trans,
4545 struct inode *parent_inode, struct inode *inode,
4546 const char *name, int name_len, int add_backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04004547{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004548 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004549 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -04004550 struct btrfs_root *root = BTRFS_I(parent_inode)->root;
Li Zefan33345d012011-04-20 10:31:50 +08004551 u64 ino = btrfs_ino(inode);
4552 u64 parent_ino = btrfs_ino(parent_inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004553
Li Zefan33345d012011-04-20 10:31:50 +08004554 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004555 memcpy(&key, &BTRFS_I(inode)->root->root_key, sizeof(key));
4556 } else {
Li Zefan33345d012011-04-20 10:31:50 +08004557 key.objectid = ino;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004558 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
4559 key.offset = 0;
4560 }
Chris Mason39279cc2007-06-12 06:35:45 -04004561
Li Zefan33345d012011-04-20 10:31:50 +08004562 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004563 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
4564 key.objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08004565 parent_ino, index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004566 } else if (add_backref) {
Li Zefan33345d012011-04-20 10:31:50 +08004567 ret = btrfs_insert_inode_ref(trans, root, name, name_len, ino,
4568 parent_ino, index);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004569 }
4570
Chris Mason39279cc2007-06-12 06:35:45 -04004571 if (ret == 0) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004572 ret = btrfs_insert_dir_item(trans, root, name, name_len,
Miao Xie16cdcec2011-04-22 18:12:22 +08004573 parent_inode, &key,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004574 btrfs_inode_type(inode), index);
4575 BUG_ON(ret);
4576
Chris Masondbe674a2008-07-17 12:54:05 -04004577 btrfs_i_size_write(parent_inode, parent_inode->i_size +
Chris Masone02119d2008-09-05 16:13:11 -04004578 name_len * 2);
Chris Mason79c44582007-06-25 10:09:33 -04004579 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
Chris Masone02119d2008-09-05 16:13:11 -04004580 ret = btrfs_update_inode(trans, root, parent_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004581 }
4582 return ret;
4583}
4584
4585static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Josef Bacika1b075d2010-11-19 20:36:11 +00004586 struct inode *dir, struct dentry *dentry,
4587 struct inode *inode, int backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04004588{
Josef Bacika1b075d2010-11-19 20:36:11 +00004589 int err = btrfs_add_link(trans, dir, inode,
4590 dentry->d_name.name, dentry->d_name.len,
4591 backref, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004592 if (!err) {
4593 d_instantiate(dentry, inode);
4594 return 0;
4595 }
4596 if (err > 0)
4597 err = -EEXIST;
4598 return err;
4599}
4600
Josef Bacik618e21d2007-07-11 10:18:17 -04004601static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
4602 int mode, dev_t rdev)
4603{
4604 struct btrfs_trans_handle *trans;
4605 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05004606 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04004607 int err;
4608 int drop_inode = 0;
4609 u64 objectid;
Chris Mason1832a6d2007-12-21 16:27:21 -05004610 unsigned long nr = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004611 u64 index = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04004612
4613 if (!new_valid_dev(rdev))
4614 return -EINVAL;
4615
Josef Bacik9ed74f22009-09-11 16:12:44 -04004616 /*
4617 * 2 for inode item and ref
4618 * 2 for dir items
4619 * 1 for xattr if selinux is on
4620 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004621 trans = btrfs_start_transaction(root, 5);
4622 if (IS_ERR(trans))
4623 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05004624
Josef Bacik618e21d2007-07-11 10:18:17 -04004625 btrfs_set_trans_block_group(trans, dir);
4626
Li Zefan581bb052011-04-20 10:06:11 +08004627 err = btrfs_find_free_ino(root, &objectid);
4628 if (err)
4629 goto out_unlock;
4630
Josef Bacikaec74772008-07-24 12:12:38 -04004631 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08004632 dentry->d_name.len, btrfs_ino(dir), objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04004633 BTRFS_I(dir)->block_group, mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04004634 if (IS_ERR(inode)) {
4635 err = PTR_ERR(inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04004636 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04004637 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004638
Eric Paris2a7dba32011-02-01 11:05:39 -05004639 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04004640 if (err) {
4641 drop_inode = 1;
4642 goto out_unlock;
4643 }
4644
Josef Bacik618e21d2007-07-11 10:18:17 -04004645 btrfs_set_trans_block_group(trans, inode);
Josef Bacika1b075d2010-11-19 20:36:11 +00004646 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Josef Bacik618e21d2007-07-11 10:18:17 -04004647 if (err)
4648 drop_inode = 1;
4649 else {
4650 inode->i_op = &btrfs_special_inode_operations;
4651 init_special_inode(inode, inode->i_mode, rdev);
Yan1b4ab1b2007-08-29 09:11:44 -04004652 btrfs_update_inode(trans, root, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04004653 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004654 btrfs_update_inode_block_group(trans, inode);
4655 btrfs_update_inode_block_group(trans, dir);
4656out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004657 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04004658 btrfs_end_transaction_throttle(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004659 btrfs_btree_balance_dirty(root, nr);
Josef Bacik618e21d2007-07-11 10:18:17 -04004660 if (drop_inode) {
4661 inode_dec_link_count(inode);
4662 iput(inode);
4663 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004664 return err;
4665}
4666
Chris Mason39279cc2007-06-12 06:35:45 -04004667static int btrfs_create(struct inode *dir, struct dentry *dentry,
4668 int mode, struct nameidata *nd)
4669{
4670 struct btrfs_trans_handle *trans;
4671 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05004672 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04004673 int drop_inode = 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004674 int err;
Chris Mason1832a6d2007-12-21 16:27:21 -05004675 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004676 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004677 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004678
Josef Bacik9ed74f22009-09-11 16:12:44 -04004679 /*
4680 * 2 for inode item and ref
4681 * 2 for dir items
4682 * 1 for xattr if selinux is on
4683 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004684 trans = btrfs_start_transaction(root, 5);
4685 if (IS_ERR(trans))
4686 return PTR_ERR(trans);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004687
Chris Mason39279cc2007-06-12 06:35:45 -04004688 btrfs_set_trans_block_group(trans, dir);
4689
Li Zefan581bb052011-04-20 10:06:11 +08004690 err = btrfs_find_free_ino(root, &objectid);
4691 if (err)
4692 goto out_unlock;
4693
Josef Bacikaec74772008-07-24 12:12:38 -04004694 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08004695 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacika1b075d2010-11-19 20:36:11 +00004696 BTRFS_I(dir)->block_group, mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04004697 if (IS_ERR(inode)) {
4698 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004699 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04004700 }
Chris Mason39279cc2007-06-12 06:35:45 -04004701
Eric Paris2a7dba32011-02-01 11:05:39 -05004702 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04004703 if (err) {
4704 drop_inode = 1;
4705 goto out_unlock;
4706 }
4707
Chris Mason39279cc2007-06-12 06:35:45 -04004708 btrfs_set_trans_block_group(trans, inode);
Josef Bacika1b075d2010-11-19 20:36:11 +00004709 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004710 if (err)
4711 drop_inode = 1;
4712 else {
4713 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04004714 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04004715 inode->i_fop = &btrfs_file_operations;
4716 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05004717 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04004718 }
Chris Mason39279cc2007-06-12 06:35:45 -04004719 btrfs_update_inode_block_group(trans, inode);
4720 btrfs_update_inode_block_group(trans, dir);
4721out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004722 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04004723 btrfs_end_transaction_throttle(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004724 if (drop_inode) {
4725 inode_dec_link_count(inode);
4726 iput(inode);
4727 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004728 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004729 return err;
4730}
4731
4732static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
4733 struct dentry *dentry)
4734{
4735 struct btrfs_trans_handle *trans;
4736 struct btrfs_root *root = BTRFS_I(dir)->root;
4737 struct inode *inode = old_dentry->d_inode;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004738 u64 index;
Chris Mason1832a6d2007-12-21 16:27:21 -05004739 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004740 int err;
4741 int drop_inode = 0;
4742
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00004743 /* do not allow sys_link's with other subvols of the same device */
4744 if (root->objectid != BTRFS_I(inode)->root->objectid)
Mark Fasheh3ab35642011-03-22 17:20:26 +00004745 return -EXDEV;
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00004746
Al Viroc055e992011-03-04 17:15:18 +00004747 if (inode->i_nlink == ~0U)
4748 return -EMLINK;
Josef Bacik9ed74f22009-09-11 16:12:44 -04004749
Chris Mason3de45862008-11-17 21:02:50 -05004750 err = btrfs_set_inode_index(dir, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04004751 if (err)
4752 goto fail;
4753
Yan, Zhenga22285a2010-05-16 10:48:46 -04004754 /*
Miao Xie7e6b6462011-02-18 09:21:17 +00004755 * 2 items for inode and inode ref
Yan, Zhenga22285a2010-05-16 10:48:46 -04004756 * 2 items for dir items
Miao Xie7e6b6462011-02-18 09:21:17 +00004757 * 1 item for parent inode
Yan, Zhenga22285a2010-05-16 10:48:46 -04004758 */
Miao Xie7e6b6462011-02-18 09:21:17 +00004759 trans = btrfs_start_transaction(root, 5);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004760 if (IS_ERR(trans)) {
4761 err = PTR_ERR(trans);
4762 goto fail;
4763 }
Chris Mason5f39d392007-10-15 16:14:19 -04004764
Miao Xie31534952011-04-13 13:19:21 +08004765 btrfs_inc_nlink(inode);
4766 inode->i_ctime = CURRENT_TIME;
4767
Chris Mason39279cc2007-06-12 06:35:45 -04004768 btrfs_set_trans_block_group(trans, dir);
Al Viro7de9c6ee2010-10-23 11:11:40 -04004769 ihold(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004770
Josef Bacika1b075d2010-11-19 20:36:11 +00004771 err = btrfs_add_nondir(trans, dir, dentry, inode, 1, index);
Chris Mason5f39d392007-10-15 16:14:19 -04004772
Yan, Zhenga5719522009-09-24 09:17:31 -04004773 if (err) {
Chris Mason39279cc2007-06-12 06:35:45 -04004774 drop_inode = 1;
Yan, Zhenga5719522009-09-24 09:17:31 -04004775 } else {
Josef Bacik6a912212010-11-20 09:48:00 +00004776 struct dentry *parent = dget_parent(dentry);
Yan, Zhenga5719522009-09-24 09:17:31 -04004777 btrfs_update_inode_block_group(trans, dir);
4778 err = btrfs_update_inode(trans, root, inode);
4779 BUG_ON(err);
Josef Bacik6a912212010-11-20 09:48:00 +00004780 btrfs_log_new_name(trans, inode, NULL, parent);
4781 dput(parent);
Yan, Zhenga5719522009-09-24 09:17:31 -04004782 }
Chris Mason39279cc2007-06-12 06:35:45 -04004783
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004784 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04004785 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05004786fail:
Chris Mason39279cc2007-06-12 06:35:45 -04004787 if (drop_inode) {
4788 inode_dec_link_count(inode);
4789 iput(inode);
4790 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004791 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004792 return err;
4793}
4794
Chris Mason39279cc2007-06-12 06:35:45 -04004795static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
4796{
Chris Masonb9d86662008-05-02 16:13:49 -04004797 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04004798 struct btrfs_trans_handle *trans;
4799 struct btrfs_root *root = BTRFS_I(dir)->root;
4800 int err = 0;
4801 int drop_on_err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04004802 u64 objectid = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004803 u64 index = 0;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004804 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04004805
Josef Bacik9ed74f22009-09-11 16:12:44 -04004806 /*
4807 * 2 items for inode and ref
4808 * 2 items for dir items
4809 * 1 for xattr if selinux is on
4810 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004811 trans = btrfs_start_transaction(root, 5);
4812 if (IS_ERR(trans))
4813 return PTR_ERR(trans);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004814 btrfs_set_trans_block_group(trans, dir);
Chris Mason39279cc2007-06-12 06:35:45 -04004815
Li Zefan581bb052011-04-20 10:06:11 +08004816 err = btrfs_find_free_ino(root, &objectid);
4817 if (err)
4818 goto out_fail;
4819
Josef Bacikaec74772008-07-24 12:12:38 -04004820 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08004821 dentry->d_name.len, btrfs_ino(dir), objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04004822 BTRFS_I(dir)->block_group, S_IFDIR | mode,
4823 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04004824 if (IS_ERR(inode)) {
4825 err = PTR_ERR(inode);
4826 goto out_fail;
4827 }
Chris Mason5f39d392007-10-15 16:14:19 -04004828
Chris Mason39279cc2007-06-12 06:35:45 -04004829 drop_on_err = 1;
Josef Bacik33268ea2008-07-24 12:16:36 -04004830
Eric Paris2a7dba32011-02-01 11:05:39 -05004831 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04004832 if (err)
4833 goto out_fail;
4834
Chris Mason39279cc2007-06-12 06:35:45 -04004835 inode->i_op = &btrfs_dir_inode_operations;
4836 inode->i_fop = &btrfs_dir_file_operations;
4837 btrfs_set_trans_block_group(trans, inode);
4838
Chris Masondbe674a2008-07-17 12:54:05 -04004839 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04004840 err = btrfs_update_inode(trans, root, inode);
4841 if (err)
4842 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04004843
Josef Bacika1b075d2010-11-19 20:36:11 +00004844 err = btrfs_add_link(trans, dir, inode, dentry->d_name.name,
4845 dentry->d_name.len, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004846 if (err)
4847 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04004848
Chris Mason39279cc2007-06-12 06:35:45 -04004849 d_instantiate(dentry, inode);
4850 drop_on_err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004851 btrfs_update_inode_block_group(trans, inode);
4852 btrfs_update_inode_block_group(trans, dir);
4853
4854out_fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004855 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04004856 btrfs_end_transaction_throttle(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004857 if (drop_on_err)
4858 iput(inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004859 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004860 return err;
4861}
4862
Chris Masond352ac62008-09-29 15:18:18 -04004863/* helper for btfs_get_extent. Given an existing extent in the tree,
4864 * and an extent that you want to insert, deal with overlap and insert
4865 * the new extent into the tree.
4866 */
Chris Mason3b951512008-04-17 11:29:12 -04004867static int merge_extent_mapping(struct extent_map_tree *em_tree,
4868 struct extent_map *existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04004869 struct extent_map *em,
4870 u64 map_start, u64 map_len)
Chris Mason3b951512008-04-17 11:29:12 -04004871{
4872 u64 start_diff;
Chris Mason3b951512008-04-17 11:29:12 -04004873
Chris Masone6dcd2d2008-07-17 12:53:50 -04004874 BUG_ON(map_start < em->start || map_start >= extent_map_end(em));
4875 start_diff = map_start - em->start;
4876 em->start = map_start;
4877 em->len = map_len;
Chris Masonc8b97812008-10-29 14:49:59 -04004878 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
4879 !test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04004880 em->block_start += start_diff;
Chris Masonc8b97812008-10-29 14:49:59 -04004881 em->block_len -= start_diff;
4882 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004883 return add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04004884}
4885
Chris Masonc8b97812008-10-29 14:49:59 -04004886static noinline int uncompress_inline(struct btrfs_path *path,
4887 struct inode *inode, struct page *page,
4888 size_t pg_offset, u64 extent_offset,
4889 struct btrfs_file_extent_item *item)
4890{
4891 int ret;
4892 struct extent_buffer *leaf = path->nodes[0];
4893 char *tmp;
4894 size_t max_size;
4895 unsigned long inline_size;
4896 unsigned long ptr;
Li Zefan261507a02010-12-17 14:21:50 +08004897 int compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04004898
4899 WARN_ON(pg_offset != 0);
Li Zefan261507a02010-12-17 14:21:50 +08004900 compress_type = btrfs_file_extent_compression(leaf, item);
Chris Masonc8b97812008-10-29 14:49:59 -04004901 max_size = btrfs_file_extent_ram_bytes(leaf, item);
4902 inline_size = btrfs_file_extent_inline_item_len(leaf,
4903 btrfs_item_nr(leaf, path->slots[0]));
4904 tmp = kmalloc(inline_size, GFP_NOFS);
Tsutomu Itoh8d413712011-04-25 19:43:52 -04004905 if (!tmp)
4906 return -ENOMEM;
Chris Masonc8b97812008-10-29 14:49:59 -04004907 ptr = btrfs_file_extent_inline_start(item);
4908
4909 read_extent_buffer(leaf, tmp, ptr, inline_size);
4910
Chris Mason5b050f02008-11-11 09:34:41 -05004911 max_size = min_t(unsigned long, PAGE_CACHE_SIZE, max_size);
Li Zefan261507a02010-12-17 14:21:50 +08004912 ret = btrfs_decompress(compress_type, tmp, page,
4913 extent_offset, inline_size, max_size);
Chris Masonc8b97812008-10-29 14:49:59 -04004914 if (ret) {
4915 char *kaddr = kmap_atomic(page, KM_USER0);
4916 unsigned long copy_size = min_t(u64,
4917 PAGE_CACHE_SIZE - pg_offset,
4918 max_size - extent_offset);
4919 memset(kaddr + pg_offset, 0, copy_size);
4920 kunmap_atomic(kaddr, KM_USER0);
4921 }
4922 kfree(tmp);
4923 return 0;
4924}
4925
Chris Masond352ac62008-09-29 15:18:18 -04004926/*
4927 * a bit scary, this does extent mapping from logical file offset to the disk.
Chris Masond3977122009-01-05 21:25:51 -05004928 * the ugly parts come from merging extents from the disk with the in-ram
4929 * representation. This gets more complex because of the data=ordered code,
Chris Masond352ac62008-09-29 15:18:18 -04004930 * where the in-ram extents might be locked pending data=ordered completion.
4931 *
4932 * This also copies inline extents directly into the page.
4933 */
Chris Masond3977122009-01-05 21:25:51 -05004934
Chris Masona52d9a82007-08-27 16:49:44 -04004935struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05004936 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04004937 int create)
4938{
4939 int ret;
4940 int err = 0;
Chris Masondb945352007-10-15 16:15:53 -04004941 u64 bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04004942 u64 extent_start = 0;
4943 u64 extent_end = 0;
Li Zefan33345d012011-04-20 10:31:50 +08004944 u64 objectid = btrfs_ino(inode);
Chris Masona52d9a82007-08-27 16:49:44 -04004945 u32 found_type;
Chris Masonf4219502008-07-22 11:18:09 -04004946 struct btrfs_path *path = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -04004947 struct btrfs_root *root = BTRFS_I(inode)->root;
4948 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04004949 struct extent_buffer *leaf;
4950 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04004951 struct extent_map *em = NULL;
4952 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05004953 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04004954 struct btrfs_trans_handle *trans = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08004955 int compress_type;
Chris Masona52d9a82007-08-27 16:49:44 -04004956
Chris Masona52d9a82007-08-27 16:49:44 -04004957again:
Chris Mason890871b2009-09-02 16:24:52 -04004958 read_lock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05004959 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04004960 if (em)
4961 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason890871b2009-09-02 16:24:52 -04004962 read_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05004963
Chris Masona52d9a82007-08-27 16:49:44 -04004964 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04004965 if (em->start > start || em->start + em->len <= start)
4966 free_extent_map(em);
4967 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05004968 free_extent_map(em);
4969 else
4970 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04004971 }
David Sterba172ddd62011-04-21 00:48:27 +02004972 em = alloc_extent_map();
Chris Masona52d9a82007-08-27 16:49:44 -04004973 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05004974 err = -ENOMEM;
4975 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04004976 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004977 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05004978 em->start = EXTENT_MAP_HOLE;
Chris Mason445a6942008-11-10 11:53:33 -05004979 em->orig_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05004980 em->len = (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -04004981 em->block_len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04004982
4983 if (!path) {
4984 path = btrfs_alloc_path();
4985 BUG_ON(!path);
4986 }
4987
Chris Mason179e29e2007-11-01 11:28:41 -04004988 ret = btrfs_lookup_file_extent(trans, root, path,
4989 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04004990 if (ret < 0) {
4991 err = ret;
4992 goto out;
4993 }
4994
4995 if (ret != 0) {
4996 if (path->slots[0] == 0)
4997 goto not_found;
4998 path->slots[0]--;
4999 }
5000
Chris Mason5f39d392007-10-15 16:14:19 -04005001 leaf = path->nodes[0];
5002 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04005003 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04005004 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04005005 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5006 found_type = btrfs_key_type(&found_key);
5007 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04005008 found_type != BTRFS_EXTENT_DATA_KEY) {
5009 goto not_found;
5010 }
5011
Chris Mason5f39d392007-10-15 16:14:19 -04005012 found_type = btrfs_file_extent_type(leaf, item);
5013 extent_start = found_key.offset;
Li Zefan261507a02010-12-17 14:21:50 +08005014 compress_type = btrfs_file_extent_compression(leaf, item);
Yan Zhengd899e052008-10-30 14:25:28 -04005015 if (found_type == BTRFS_FILE_EXTENT_REG ||
5016 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04005017 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04005018 btrfs_file_extent_num_bytes(leaf, item);
Yan Zheng9036c102008-10-30 14:19:41 -04005019 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
5020 size_t size;
5021 size = btrfs_file_extent_inline_len(leaf, item);
5022 extent_end = (extent_start + size + root->sectorsize - 1) &
5023 ~((u64)root->sectorsize - 1);
5024 }
5025
5026 if (start >= extent_end) {
5027 path->slots[0]++;
5028 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
5029 ret = btrfs_next_leaf(root, path);
5030 if (ret < 0) {
5031 err = ret;
5032 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04005033 }
Yan Zheng9036c102008-10-30 14:19:41 -04005034 if (ret > 0)
5035 goto not_found;
5036 leaf = path->nodes[0];
Chris Masona52d9a82007-08-27 16:49:44 -04005037 }
Yan Zheng9036c102008-10-30 14:19:41 -04005038 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5039 if (found_key.objectid != objectid ||
5040 found_key.type != BTRFS_EXTENT_DATA_KEY)
5041 goto not_found;
5042 if (start + len <= found_key.offset)
5043 goto not_found;
5044 em->start = start;
5045 em->len = found_key.offset - start;
5046 goto not_found_em;
5047 }
5048
Yan Zhengd899e052008-10-30 14:25:28 -04005049 if (found_type == BTRFS_FILE_EXTENT_REG ||
5050 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng9036c102008-10-30 14:19:41 -04005051 em->start = extent_start;
5052 em->len = extent_end - extent_start;
Yan Zhengff5b7ee2008-11-10 07:34:43 -05005053 em->orig_start = extent_start -
5054 btrfs_file_extent_offset(leaf, item);
Chris Masondb945352007-10-15 16:15:53 -04005055 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
5056 if (bytenr == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04005057 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04005058 goto insert;
5059 }
Li Zefan261507a02010-12-17 14:21:50 +08005060 if (compress_type != BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -04005061 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Li Zefan261507a02010-12-17 14:21:50 +08005062 em->compress_type = compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04005063 em->block_start = bytenr;
5064 em->block_len = btrfs_file_extent_disk_num_bytes(leaf,
5065 item);
5066 } else {
5067 bytenr += btrfs_file_extent_offset(leaf, item);
5068 em->block_start = bytenr;
5069 em->block_len = em->len;
Yan Zhengd899e052008-10-30 14:25:28 -04005070 if (found_type == BTRFS_FILE_EXTENT_PREALLOC)
5071 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -04005072 }
Chris Masona52d9a82007-08-27 16:49:44 -04005073 goto insert;
5074 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04005075 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04005076 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04005077 size_t size;
5078 size_t extent_offset;
5079 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04005080
Chris Masona52d9a82007-08-27 16:49:44 -04005081 em->block_start = EXTENT_MAP_INLINE;
Chris Masonc8b97812008-10-29 14:49:59 -04005082 if (!page || create) {
Yan689f9342007-10-29 11:41:07 -04005083 em->start = extent_start;
Yan Zheng9036c102008-10-30 14:19:41 -04005084 em->len = extent_end - extent_start;
Yan689f9342007-10-29 11:41:07 -04005085 goto out;
5086 }
5087
Yan Zheng9036c102008-10-30 14:19:41 -04005088 size = btrfs_file_extent_inline_len(leaf, item);
5089 extent_offset = page_offset(page) + pg_offset - extent_start;
Chris Mason70dec802008-01-29 09:59:12 -05005090 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
Yan689f9342007-10-29 11:41:07 -04005091 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04005092 em->start = extent_start + extent_offset;
Chris Mason70dec802008-01-29 09:59:12 -05005093 em->len = (copy_size + root->sectorsize - 1) &
5094 ~((u64)root->sectorsize - 1);
Yan Zhengff5b7ee2008-11-10 07:34:43 -05005095 em->orig_start = EXTENT_MAP_INLINE;
Li Zefan261507a02010-12-17 14:21:50 +08005096 if (compress_type) {
Chris Masonc8b97812008-10-29 14:49:59 -04005097 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Li Zefan261507a02010-12-17 14:21:50 +08005098 em->compress_type = compress_type;
5099 }
Yan689f9342007-10-29 11:41:07 -04005100 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04005101 if (create == 0 && !PageUptodate(page)) {
Li Zefan261507a02010-12-17 14:21:50 +08005102 if (btrfs_file_extent_compression(leaf, item) !=
5103 BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -04005104 ret = uncompress_inline(path, inode, page,
5105 pg_offset,
5106 extent_offset, item);
5107 BUG_ON(ret);
5108 } else {
5109 map = kmap(page);
5110 read_extent_buffer(leaf, map + pg_offset, ptr,
5111 copy_size);
Chris Mason93c82d52009-09-11 12:36:29 -04005112 if (pg_offset + copy_size < PAGE_CACHE_SIZE) {
5113 memset(map + pg_offset + copy_size, 0,
5114 PAGE_CACHE_SIZE - pg_offset -
5115 copy_size);
5116 }
Chris Masonc8b97812008-10-29 14:49:59 -04005117 kunmap(page);
5118 }
Chris Mason179e29e2007-11-01 11:28:41 -04005119 flush_dcache_page(page);
5120 } else if (create && PageUptodate(page)) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005121 WARN_ON(1);
Chris Mason179e29e2007-11-01 11:28:41 -04005122 if (!trans) {
5123 kunmap(page);
5124 free_extent_map(em);
5125 em = NULL;
David Sterbab3b4aa72011-04-21 01:20:15 +02005126 btrfs_release_path(path);
Chris Masonf9295742008-07-17 12:54:14 -04005127 trans = btrfs_join_transaction(root, 1);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005128 if (IS_ERR(trans))
5129 return ERR_CAST(trans);
Chris Mason179e29e2007-11-01 11:28:41 -04005130 goto again;
5131 }
Chris Masonc8b97812008-10-29 14:49:59 -04005132 map = kmap(page);
Chris Mason70dec802008-01-29 09:59:12 -05005133 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04005134 copy_size);
Chris Masonc8b97812008-10-29 14:49:59 -04005135 kunmap(page);
Chris Mason179e29e2007-11-01 11:28:41 -04005136 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04005137 }
Chris Masond1310b22008-01-24 16:13:08 -05005138 set_extent_uptodate(io_tree, em->start,
Arne Jansen507903b2011-04-06 10:02:20 +00005139 extent_map_end(em) - 1, NULL, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04005140 goto insert;
5141 } else {
Chris Masond3977122009-01-05 21:25:51 -05005142 printk(KERN_ERR "btrfs unknown found_type %d\n", found_type);
Chris Masona52d9a82007-08-27 16:49:44 -04005143 WARN_ON(1);
5144 }
5145not_found:
5146 em->start = start;
Chris Masond1310b22008-01-24 16:13:08 -05005147 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04005148not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04005149 em->block_start = EXTENT_MAP_HOLE;
Yan Zheng9036c102008-10-30 14:19:41 -04005150 set_bit(EXTENT_FLAG_VACANCY, &em->flags);
Chris Masona52d9a82007-08-27 16:49:44 -04005151insert:
David Sterbab3b4aa72011-04-21 01:20:15 +02005152 btrfs_release_path(path);
Chris Masond1310b22008-01-24 16:13:08 -05005153 if (em->start > start || extent_map_end(em) <= start) {
Chris Masond3977122009-01-05 21:25:51 -05005154 printk(KERN_ERR "Btrfs: bad extent! em: [%llu %llu] passed "
5155 "[%llu %llu]\n", (unsigned long long)em->start,
5156 (unsigned long long)em->len,
5157 (unsigned long long)start,
5158 (unsigned long long)len);
Chris Masona52d9a82007-08-27 16:49:44 -04005159 err = -EIO;
5160 goto out;
5161 }
Chris Masond1310b22008-01-24 16:13:08 -05005162
5163 err = 0;
Chris Mason890871b2009-09-02 16:24:52 -04005164 write_lock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04005165 ret = add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04005166 /* it is possible that someone inserted the extent into the tree
5167 * while we had the lock dropped. It is also possible that
5168 * an overlapping map exists in the tree
5169 */
Chris Masona52d9a82007-08-27 16:49:44 -04005170 if (ret == -EEXIST) {
Chris Mason3b951512008-04-17 11:29:12 -04005171 struct extent_map *existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005172
5173 ret = 0;
5174
Chris Mason3b951512008-04-17 11:29:12 -04005175 existing = lookup_extent_mapping(em_tree, start, len);
Chris Masone1c4b742008-04-22 13:26:46 -04005176 if (existing && (existing->start > start ||
5177 existing->start + existing->len <= start)) {
5178 free_extent_map(existing);
5179 existing = NULL;
5180 }
Chris Mason3b951512008-04-17 11:29:12 -04005181 if (!existing) {
5182 existing = lookup_extent_mapping(em_tree, em->start,
5183 em->len);
5184 if (existing) {
5185 err = merge_extent_mapping(em_tree, existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04005186 em, start,
5187 root->sectorsize);
Chris Mason3b951512008-04-17 11:29:12 -04005188 free_extent_map(existing);
5189 if (err) {
5190 free_extent_map(em);
5191 em = NULL;
5192 }
5193 } else {
5194 err = -EIO;
Chris Mason3b951512008-04-17 11:29:12 -04005195 free_extent_map(em);
5196 em = NULL;
5197 }
5198 } else {
5199 free_extent_map(em);
5200 em = existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005201 err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04005202 }
Chris Masona52d9a82007-08-27 16:49:44 -04005203 }
Chris Mason890871b2009-09-02 16:24:52 -04005204 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04005205out:
liubo1abe9b82011-03-24 11:18:59 +00005206
5207 trace_btrfs_get_extent(root, em);
5208
Chris Masonf4219502008-07-22 11:18:09 -04005209 if (path)
5210 btrfs_free_path(path);
Chris Masona52d9a82007-08-27 16:49:44 -04005211 if (trans) {
5212 ret = btrfs_end_transaction(trans, root);
Chris Masond3977122009-01-05 21:25:51 -05005213 if (!err)
Chris Masona52d9a82007-08-27 16:49:44 -04005214 err = ret;
5215 }
Chris Masona52d9a82007-08-27 16:49:44 -04005216 if (err) {
5217 free_extent_map(em);
Chris Masona52d9a82007-08-27 16:49:44 -04005218 return ERR_PTR(err);
5219 }
5220 return em;
5221}
5222
Chris Masonec29ed52011-02-23 16:23:20 -05005223struct extent_map *btrfs_get_extent_fiemap(struct inode *inode, struct page *page,
5224 size_t pg_offset, u64 start, u64 len,
5225 int create)
5226{
5227 struct extent_map *em;
5228 struct extent_map *hole_em = NULL;
5229 u64 range_start = start;
5230 u64 end;
5231 u64 found;
5232 u64 found_end;
5233 int err = 0;
5234
5235 em = btrfs_get_extent(inode, page, pg_offset, start, len, create);
5236 if (IS_ERR(em))
5237 return em;
5238 if (em) {
5239 /*
5240 * if our em maps to a hole, there might
5241 * actually be delalloc bytes behind it
5242 */
5243 if (em->block_start != EXTENT_MAP_HOLE)
5244 return em;
5245 else
5246 hole_em = em;
5247 }
5248
5249 /* check to see if we've wrapped (len == -1 or similar) */
5250 end = start + len;
5251 if (end < start)
5252 end = (u64)-1;
5253 else
5254 end -= 1;
5255
5256 em = NULL;
5257
5258 /* ok, we didn't find anything, lets look for delalloc */
5259 found = count_range_bits(&BTRFS_I(inode)->io_tree, &range_start,
5260 end, len, EXTENT_DELALLOC, 1);
5261 found_end = range_start + found;
5262 if (found_end < range_start)
5263 found_end = (u64)-1;
5264
5265 /*
5266 * we didn't find anything useful, return
5267 * the original results from get_extent()
5268 */
5269 if (range_start > end || found_end <= start) {
5270 em = hole_em;
5271 hole_em = NULL;
5272 goto out;
5273 }
5274
5275 /* adjust the range_start to make sure it doesn't
5276 * go backwards from the start they passed in
5277 */
5278 range_start = max(start,range_start);
5279 found = found_end - range_start;
5280
5281 if (found > 0) {
5282 u64 hole_start = start;
5283 u64 hole_len = len;
5284
David Sterba172ddd62011-04-21 00:48:27 +02005285 em = alloc_extent_map();
Chris Masonec29ed52011-02-23 16:23:20 -05005286 if (!em) {
5287 err = -ENOMEM;
5288 goto out;
5289 }
5290 /*
5291 * when btrfs_get_extent can't find anything it
5292 * returns one huge hole
5293 *
5294 * make sure what it found really fits our range, and
5295 * adjust to make sure it is based on the start from
5296 * the caller
5297 */
5298 if (hole_em) {
5299 u64 calc_end = extent_map_end(hole_em);
5300
5301 if (calc_end <= start || (hole_em->start > end)) {
5302 free_extent_map(hole_em);
5303 hole_em = NULL;
5304 } else {
5305 hole_start = max(hole_em->start, start);
5306 hole_len = calc_end - hole_start;
5307 }
5308 }
5309 em->bdev = NULL;
5310 if (hole_em && range_start > hole_start) {
5311 /* our hole starts before our delalloc, so we
5312 * have to return just the parts of the hole
5313 * that go until the delalloc starts
5314 */
5315 em->len = min(hole_len,
5316 range_start - hole_start);
5317 em->start = hole_start;
5318 em->orig_start = hole_start;
5319 /*
5320 * don't adjust block start at all,
5321 * it is fixed at EXTENT_MAP_HOLE
5322 */
5323 em->block_start = hole_em->block_start;
5324 em->block_len = hole_len;
5325 } else {
5326 em->start = range_start;
5327 em->len = found;
5328 em->orig_start = range_start;
5329 em->block_start = EXTENT_MAP_DELALLOC;
5330 em->block_len = found;
5331 }
5332 } else if (hole_em) {
5333 return hole_em;
5334 }
5335out:
5336
5337 free_extent_map(hole_em);
5338 if (err) {
5339 free_extent_map(em);
5340 return ERR_PTR(err);
5341 }
5342 return em;
5343}
5344
Josef Bacik4b46fce2010-05-23 11:00:55 -04005345static struct extent_map *btrfs_new_extent_direct(struct inode *inode,
Josef Bacik16d299a2011-04-06 14:53:07 -04005346 struct extent_map *em,
Josef Bacik4b46fce2010-05-23 11:00:55 -04005347 u64 start, u64 len)
5348{
5349 struct btrfs_root *root = BTRFS_I(inode)->root;
5350 struct btrfs_trans_handle *trans;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005351 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
5352 struct btrfs_key ins;
5353 u64 alloc_hint;
5354 int ret;
Josef Bacik16d299a2011-04-06 14:53:07 -04005355 bool insert = false;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005356
Josef Bacik16d299a2011-04-06 14:53:07 -04005357 /*
5358 * Ok if the extent map we looked up is a hole and is for the exact
5359 * range we want, there is no reason to allocate a new one, however if
5360 * it is not right then we need to free this one and drop the cache for
5361 * our range.
5362 */
5363 if (em->block_start != EXTENT_MAP_HOLE || em->start != start ||
5364 em->len != len) {
5365 free_extent_map(em);
5366 em = NULL;
5367 insert = true;
5368 btrfs_drop_extent_cache(inode, start, start + len - 1, 0);
5369 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005370
5371 trans = btrfs_join_transaction(root, 0);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005372 if (IS_ERR(trans))
5373 return ERR_CAST(trans);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005374
5375 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
5376
5377 alloc_hint = get_extent_allocation_hint(inode, start, len);
5378 ret = btrfs_reserve_extent(trans, root, len, root->sectorsize, 0,
5379 alloc_hint, (u64)-1, &ins, 1);
5380 if (ret) {
5381 em = ERR_PTR(ret);
5382 goto out;
5383 }
5384
Josef Bacik4b46fce2010-05-23 11:00:55 -04005385 if (!em) {
David Sterba172ddd62011-04-21 00:48:27 +02005386 em = alloc_extent_map();
Josef Bacik16d299a2011-04-06 14:53:07 -04005387 if (!em) {
5388 em = ERR_PTR(-ENOMEM);
5389 goto out;
5390 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005391 }
5392
5393 em->start = start;
5394 em->orig_start = em->start;
5395 em->len = ins.offset;
5396
5397 em->block_start = ins.objectid;
5398 em->block_len = ins.offset;
5399 em->bdev = root->fs_info->fs_devices->latest_bdev;
Josef Bacik16d299a2011-04-06 14:53:07 -04005400
5401 /*
5402 * We need to do this because if we're using the original em we searched
5403 * for, we could have EXTENT_FLAG_VACANCY set, and we don't want that.
5404 */
5405 em->flags = 0;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005406 set_bit(EXTENT_FLAG_PINNED, &em->flags);
5407
Josef Bacik16d299a2011-04-06 14:53:07 -04005408 while (insert) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04005409 write_lock(&em_tree->lock);
5410 ret = add_extent_mapping(em_tree, em);
5411 write_unlock(&em_tree->lock);
5412 if (ret != -EEXIST)
5413 break;
5414 btrfs_drop_extent_cache(inode, start, start + em->len - 1, 0);
5415 }
5416
5417 ret = btrfs_add_ordered_extent_dio(inode, start, ins.objectid,
5418 ins.offset, ins.offset, 0);
5419 if (ret) {
5420 btrfs_free_reserved_extent(root, ins.objectid, ins.offset);
5421 em = ERR_PTR(ret);
5422 }
5423out:
5424 btrfs_end_transaction(trans, root);
5425 return em;
5426}
5427
Chris Mason46bfbb52010-05-26 11:04:10 -04005428/*
5429 * returns 1 when the nocow is safe, < 1 on error, 0 if the
5430 * block must be cow'd
5431 */
5432static noinline int can_nocow_odirect(struct btrfs_trans_handle *trans,
5433 struct inode *inode, u64 offset, u64 len)
5434{
5435 struct btrfs_path *path;
5436 int ret;
5437 struct extent_buffer *leaf;
5438 struct btrfs_root *root = BTRFS_I(inode)->root;
5439 struct btrfs_file_extent_item *fi;
5440 struct btrfs_key key;
5441 u64 disk_bytenr;
5442 u64 backref_offset;
5443 u64 extent_end;
5444 u64 num_bytes;
5445 int slot;
5446 int found_type;
5447
5448 path = btrfs_alloc_path();
5449 if (!path)
5450 return -ENOMEM;
5451
Li Zefan33345d012011-04-20 10:31:50 +08005452 ret = btrfs_lookup_file_extent(trans, root, path, btrfs_ino(inode),
Chris Mason46bfbb52010-05-26 11:04:10 -04005453 offset, 0);
5454 if (ret < 0)
5455 goto out;
5456
5457 slot = path->slots[0];
5458 if (ret == 1) {
5459 if (slot == 0) {
5460 /* can't find the item, must cow */
5461 ret = 0;
5462 goto out;
5463 }
5464 slot--;
5465 }
5466 ret = 0;
5467 leaf = path->nodes[0];
5468 btrfs_item_key_to_cpu(leaf, &key, slot);
Li Zefan33345d012011-04-20 10:31:50 +08005469 if (key.objectid != btrfs_ino(inode) ||
Chris Mason46bfbb52010-05-26 11:04:10 -04005470 key.type != BTRFS_EXTENT_DATA_KEY) {
5471 /* not our file or wrong item type, must cow */
5472 goto out;
5473 }
5474
5475 if (key.offset > offset) {
5476 /* Wrong offset, must cow */
5477 goto out;
5478 }
5479
5480 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
5481 found_type = btrfs_file_extent_type(leaf, fi);
5482 if (found_type != BTRFS_FILE_EXTENT_REG &&
5483 found_type != BTRFS_FILE_EXTENT_PREALLOC) {
5484 /* not a regular extent, must cow */
5485 goto out;
5486 }
5487 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
5488 backref_offset = btrfs_file_extent_offset(leaf, fi);
5489
5490 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
5491 if (extent_end < offset + len) {
5492 /* extent doesn't include our full range, must cow */
5493 goto out;
5494 }
5495
5496 if (btrfs_extent_readonly(root, disk_bytenr))
5497 goto out;
5498
5499 /*
5500 * look for other files referencing this extent, if we
5501 * find any we must cow
5502 */
Li Zefan33345d012011-04-20 10:31:50 +08005503 if (btrfs_cross_ref_exist(trans, root, btrfs_ino(inode),
Chris Mason46bfbb52010-05-26 11:04:10 -04005504 key.offset - backref_offset, disk_bytenr))
5505 goto out;
5506
5507 /*
5508 * adjust disk_bytenr and num_bytes to cover just the bytes
5509 * in this extent we are about to write. If there
5510 * are any csums in that range we have to cow in order
5511 * to keep the csums correct
5512 */
5513 disk_bytenr += backref_offset;
5514 disk_bytenr += offset - key.offset;
5515 num_bytes = min(offset + len, extent_end) - offset;
5516 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
5517 goto out;
5518 /*
5519 * all of the above have passed, it is safe to overwrite this extent
5520 * without cow
5521 */
5522 ret = 1;
5523out:
5524 btrfs_free_path(path);
5525 return ret;
5526}
5527
Josef Bacik4b46fce2010-05-23 11:00:55 -04005528static int btrfs_get_blocks_direct(struct inode *inode, sector_t iblock,
5529 struct buffer_head *bh_result, int create)
5530{
5531 struct extent_map *em;
5532 struct btrfs_root *root = BTRFS_I(inode)->root;
5533 u64 start = iblock << inode->i_blkbits;
5534 u64 len = bh_result->b_size;
Chris Mason46bfbb52010-05-26 11:04:10 -04005535 struct btrfs_trans_handle *trans;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005536
5537 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
5538 if (IS_ERR(em))
5539 return PTR_ERR(em);
5540
5541 /*
5542 * Ok for INLINE and COMPRESSED extents we need to fallback on buffered
5543 * io. INLINE is special, and we could probably kludge it in here, but
5544 * it's still buffered so for safety lets just fall back to the generic
5545 * buffered path.
5546 *
5547 * For COMPRESSED we _have_ to read the entire extent in so we can
5548 * decompress it, so there will be buffering required no matter what we
5549 * do, so go ahead and fallback to buffered.
5550 *
5551 * We return -ENOTBLK because thats what makes DIO go ahead and go back
5552 * to buffered IO. Don't blame me, this is the price we pay for using
5553 * the generic code.
5554 */
5555 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) ||
5556 em->block_start == EXTENT_MAP_INLINE) {
5557 free_extent_map(em);
5558 return -ENOTBLK;
5559 }
5560
5561 /* Just a good old fashioned hole, return */
5562 if (!create && (em->block_start == EXTENT_MAP_HOLE ||
5563 test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
5564 free_extent_map(em);
5565 /* DIO will do one hole at a time, so just unlock a sector */
5566 unlock_extent(&BTRFS_I(inode)->io_tree, start,
5567 start + root->sectorsize - 1, GFP_NOFS);
5568 return 0;
5569 }
5570
5571 /*
5572 * We don't allocate a new extent in the following cases
5573 *
5574 * 1) The inode is marked as NODATACOW. In this case we'll just use the
5575 * existing extent.
5576 * 2) The extent is marked as PREALLOC. We're good to go here and can
5577 * just use the extent.
5578 *
5579 */
Chris Mason46bfbb52010-05-26 11:04:10 -04005580 if (!create) {
5581 len = em->len - (start - em->start);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005582 goto map;
Chris Mason46bfbb52010-05-26 11:04:10 -04005583 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005584
5585 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) ||
5586 ((BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) &&
5587 em->block_start != EXTENT_MAP_HOLE)) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04005588 int type;
5589 int ret;
Chris Mason46bfbb52010-05-26 11:04:10 -04005590 u64 block_start;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005591
5592 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
5593 type = BTRFS_ORDERED_PREALLOC;
5594 else
5595 type = BTRFS_ORDERED_NOCOW;
Chris Mason46bfbb52010-05-26 11:04:10 -04005596 len = min(len, em->len - (start - em->start));
Josef Bacik4b46fce2010-05-23 11:00:55 -04005597 block_start = em->block_start + (start - em->start);
Chris Mason46bfbb52010-05-26 11:04:10 -04005598
5599 /*
5600 * we're not going to log anything, but we do need
5601 * to make sure the current transaction stays open
5602 * while we look for nocow cross refs
5603 */
5604 trans = btrfs_join_transaction(root, 0);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005605 if (IS_ERR(trans))
Chris Mason46bfbb52010-05-26 11:04:10 -04005606 goto must_cow;
5607
5608 if (can_nocow_odirect(trans, inode, start, len) == 1) {
5609 ret = btrfs_add_ordered_extent_dio(inode, start,
5610 block_start, len, len, type);
5611 btrfs_end_transaction(trans, root);
5612 if (ret) {
5613 free_extent_map(em);
5614 return ret;
5615 }
5616 goto unlock;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005617 }
Chris Mason46bfbb52010-05-26 11:04:10 -04005618 btrfs_end_transaction(trans, root);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005619 }
Chris Mason46bfbb52010-05-26 11:04:10 -04005620must_cow:
5621 /*
5622 * this will cow the extent, reset the len in case we changed
5623 * it above
5624 */
5625 len = bh_result->b_size;
Josef Bacik16d299a2011-04-06 14:53:07 -04005626 em = btrfs_new_extent_direct(inode, em, start, len);
Chris Mason46bfbb52010-05-26 11:04:10 -04005627 if (IS_ERR(em))
5628 return PTR_ERR(em);
5629 len = min(len, em->len - (start - em->start));
5630unlock:
Chris Mason4845e442010-05-25 20:56:50 -04005631 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, start + len - 1,
5632 EXTENT_LOCKED | EXTENT_DELALLOC | EXTENT_DIRTY, 1,
5633 0, NULL, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005634map:
5635 bh_result->b_blocknr = (em->block_start + (start - em->start)) >>
5636 inode->i_blkbits;
Chris Mason46bfbb52010-05-26 11:04:10 -04005637 bh_result->b_size = len;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005638 bh_result->b_bdev = em->bdev;
5639 set_buffer_mapped(bh_result);
5640 if (create && !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
5641 set_buffer_new(bh_result);
5642
5643 free_extent_map(em);
5644
5645 return 0;
5646}
5647
5648struct btrfs_dio_private {
5649 struct inode *inode;
5650 u64 logical_offset;
5651 u64 disk_bytenr;
5652 u64 bytes;
5653 u32 *csums;
5654 void *private;
Miao Xiee65e1532010-11-22 03:04:43 +00005655
5656 /* number of bios pending for this dio */
5657 atomic_t pending_bios;
5658
5659 /* IO errors */
5660 int errors;
5661
5662 struct bio *orig_bio;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005663};
5664
5665static void btrfs_endio_direct_read(struct bio *bio, int err)
5666{
Miao Xiee65e1532010-11-22 03:04:43 +00005667 struct btrfs_dio_private *dip = bio->bi_private;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005668 struct bio_vec *bvec_end = bio->bi_io_vec + bio->bi_vcnt - 1;
5669 struct bio_vec *bvec = bio->bi_io_vec;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005670 struct inode *inode = dip->inode;
5671 struct btrfs_root *root = BTRFS_I(inode)->root;
5672 u64 start;
5673 u32 *private = dip->csums;
5674
5675 start = dip->logical_offset;
5676 do {
5677 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)) {
5678 struct page *page = bvec->bv_page;
5679 char *kaddr;
5680 u32 csum = ~(u32)0;
5681 unsigned long flags;
5682
5683 local_irq_save(flags);
5684 kaddr = kmap_atomic(page, KM_IRQ0);
5685 csum = btrfs_csum_data(root, kaddr + bvec->bv_offset,
5686 csum, bvec->bv_len);
5687 btrfs_csum_final(csum, (char *)&csum);
5688 kunmap_atomic(kaddr, KM_IRQ0);
5689 local_irq_restore(flags);
5690
5691 flush_dcache_page(bvec->bv_page);
5692 if (csum != *private) {
Li Zefan33345d012011-04-20 10:31:50 +08005693 printk(KERN_ERR "btrfs csum failed ino %llu off"
Josef Bacik4b46fce2010-05-23 11:00:55 -04005694 " %llu csum %u private %u\n",
Li Zefan33345d012011-04-20 10:31:50 +08005695 (unsigned long long)btrfs_ino(inode),
5696 (unsigned long long)start,
Josef Bacik4b46fce2010-05-23 11:00:55 -04005697 csum, *private);
5698 err = -EIO;
5699 }
5700 }
5701
5702 start += bvec->bv_len;
5703 private++;
5704 bvec++;
5705 } while (bvec <= bvec_end);
5706
5707 unlock_extent(&BTRFS_I(inode)->io_tree, dip->logical_offset,
5708 dip->logical_offset + dip->bytes - 1, GFP_NOFS);
5709 bio->bi_private = dip->private;
5710
5711 kfree(dip->csums);
5712 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04005713
5714 /* If we had a csum failure make sure to clear the uptodate flag */
5715 if (err)
5716 clear_bit(BIO_UPTODATE, &bio->bi_flags);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005717 dio_end_io(bio, err);
5718}
5719
5720static void btrfs_endio_direct_write(struct bio *bio, int err)
5721{
5722 struct btrfs_dio_private *dip = bio->bi_private;
5723 struct inode *inode = dip->inode;
5724 struct btrfs_root *root = BTRFS_I(inode)->root;
5725 struct btrfs_trans_handle *trans;
5726 struct btrfs_ordered_extent *ordered = NULL;
5727 struct extent_state *cached_state = NULL;
Chris Mason163cf092010-11-28 19:56:33 -05005728 u64 ordered_offset = dip->logical_offset;
5729 u64 ordered_bytes = dip->bytes;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005730 int ret;
5731
5732 if (err)
5733 goto out_done;
Chris Mason163cf092010-11-28 19:56:33 -05005734again:
5735 ret = btrfs_dec_test_first_ordered_pending(inode, &ordered,
5736 &ordered_offset,
5737 ordered_bytes);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005738 if (!ret)
Chris Mason163cf092010-11-28 19:56:33 -05005739 goto out_test;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005740
5741 BUG_ON(!ordered);
5742
5743 trans = btrfs_join_transaction(root, 1);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005744 if (IS_ERR(trans)) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04005745 err = -ENOMEM;
5746 goto out;
5747 }
5748 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
5749
5750 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered->flags)) {
5751 ret = btrfs_ordered_update_i_size(inode, 0, ordered);
5752 if (!ret)
5753 ret = btrfs_update_inode(trans, root, inode);
5754 err = ret;
5755 goto out;
5756 }
5757
5758 lock_extent_bits(&BTRFS_I(inode)->io_tree, ordered->file_offset,
5759 ordered->file_offset + ordered->len - 1, 0,
5760 &cached_state, GFP_NOFS);
5761
5762 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered->flags)) {
5763 ret = btrfs_mark_extent_written(trans, inode,
5764 ordered->file_offset,
5765 ordered->file_offset +
5766 ordered->len);
5767 if (ret) {
5768 err = ret;
5769 goto out_unlock;
5770 }
5771 } else {
5772 ret = insert_reserved_file_extent(trans, inode,
5773 ordered->file_offset,
5774 ordered->start,
5775 ordered->disk_len,
5776 ordered->len,
5777 ordered->len,
5778 0, 0, 0,
5779 BTRFS_FILE_EXTENT_REG);
5780 unpin_extent_cache(&BTRFS_I(inode)->extent_tree,
5781 ordered->file_offset, ordered->len);
5782 if (ret) {
5783 err = ret;
5784 WARN_ON(1);
5785 goto out_unlock;
5786 }
5787 }
5788
5789 add_pending_csums(trans, inode, ordered->file_offset, &ordered->list);
Josef Bacik1ef30be2011-04-05 19:25:36 -04005790 ret = btrfs_ordered_update_i_size(inode, 0, ordered);
5791 if (!ret)
5792 btrfs_update_inode(trans, root, inode);
5793 ret = 0;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005794out_unlock:
5795 unlock_extent_cached(&BTRFS_I(inode)->io_tree, ordered->file_offset,
5796 ordered->file_offset + ordered->len - 1,
5797 &cached_state, GFP_NOFS);
5798out:
5799 btrfs_delalloc_release_metadata(inode, ordered->len);
5800 btrfs_end_transaction(trans, root);
Chris Mason163cf092010-11-28 19:56:33 -05005801 ordered_offset = ordered->file_offset + ordered->len;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005802 btrfs_put_ordered_extent(ordered);
5803 btrfs_put_ordered_extent(ordered);
Chris Mason163cf092010-11-28 19:56:33 -05005804
5805out_test:
5806 /*
5807 * our bio might span multiple ordered extents. If we haven't
5808 * completed the accounting for the whole dio, go back and try again
5809 */
5810 if (ordered_offset < dip->logical_offset + dip->bytes) {
5811 ordered_bytes = dip->logical_offset + dip->bytes -
5812 ordered_offset;
5813 goto again;
5814 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005815out_done:
5816 bio->bi_private = dip->private;
5817
5818 kfree(dip->csums);
5819 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04005820
5821 /* If we had an error make sure to clear the uptodate flag */
5822 if (err)
5823 clear_bit(BIO_UPTODATE, &bio->bi_flags);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005824 dio_end_io(bio, err);
5825}
5826
Chris Masoneaf25d92010-05-25 09:48:28 -04005827static int __btrfs_submit_bio_start_direct_io(struct inode *inode, int rw,
5828 struct bio *bio, int mirror_num,
5829 unsigned long bio_flags, u64 offset)
5830{
5831 int ret;
5832 struct btrfs_root *root = BTRFS_I(inode)->root;
5833 ret = btrfs_csum_one_bio(root, inode, bio, offset, 1);
5834 BUG_ON(ret);
5835 return 0;
5836}
5837
Miao Xiee65e1532010-11-22 03:04:43 +00005838static void btrfs_end_dio_bio(struct bio *bio, int err)
5839{
5840 struct btrfs_dio_private *dip = bio->bi_private;
5841
5842 if (err) {
Li Zefan33345d012011-04-20 10:31:50 +08005843 printk(KERN_ERR "btrfs direct IO failed ino %llu rw %lu "
Jan Beulich3dd14622010-12-07 14:54:09 +00005844 "sector %#Lx len %u err no %d\n",
Li Zefan33345d012011-04-20 10:31:50 +08005845 (unsigned long long)btrfs_ino(dip->inode), bio->bi_rw,
Jan Beulich3dd14622010-12-07 14:54:09 +00005846 (unsigned long long)bio->bi_sector, bio->bi_size, err);
Miao Xiee65e1532010-11-22 03:04:43 +00005847 dip->errors = 1;
5848
5849 /*
5850 * before atomic variable goto zero, we must make sure
5851 * dip->errors is perceived to be set.
5852 */
5853 smp_mb__before_atomic_dec();
5854 }
5855
5856 /* if there are more bios still pending for this dio, just exit */
5857 if (!atomic_dec_and_test(&dip->pending_bios))
5858 goto out;
5859
5860 if (dip->errors)
5861 bio_io_error(dip->orig_bio);
5862 else {
5863 set_bit(BIO_UPTODATE, &dip->orig_bio->bi_flags);
5864 bio_endio(dip->orig_bio, 0);
5865 }
5866out:
5867 bio_put(bio);
5868}
5869
5870static struct bio *btrfs_dio_bio_alloc(struct block_device *bdev,
5871 u64 first_sector, gfp_t gfp_flags)
5872{
5873 int nr_vecs = bio_get_nr_vecs(bdev);
5874 return btrfs_bio_alloc(bdev, first_sector, nr_vecs, gfp_flags);
5875}
5876
5877static inline int __btrfs_submit_dio_bio(struct bio *bio, struct inode *inode,
5878 int rw, u64 file_offset, int skip_sum,
Josef Bacik1ae39932011-04-06 14:41:34 -04005879 u32 *csums, int async_submit)
Miao Xiee65e1532010-11-22 03:04:43 +00005880{
5881 int write = rw & REQ_WRITE;
5882 struct btrfs_root *root = BTRFS_I(inode)->root;
5883 int ret;
5884
5885 bio_get(bio);
5886 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
5887 if (ret)
5888 goto err;
5889
Josef Bacik1ae39932011-04-06 14:41:34 -04005890 if (skip_sum)
5891 goto map;
5892
5893 if (write && async_submit) {
Miao Xiee65e1532010-11-22 03:04:43 +00005894 ret = btrfs_wq_submit_bio(root->fs_info,
5895 inode, rw, bio, 0, 0,
5896 file_offset,
5897 __btrfs_submit_bio_start_direct_io,
5898 __btrfs_submit_bio_done);
5899 goto err;
Josef Bacik1ae39932011-04-06 14:41:34 -04005900 } else if (write) {
5901 /*
5902 * If we aren't doing async submit, calculate the csum of the
5903 * bio now.
5904 */
5905 ret = btrfs_csum_one_bio(root, inode, bio, file_offset, 1);
5906 if (ret)
5907 goto err;
Tsutomu Itohc2db1072011-03-01 06:48:31 +00005908 } else if (!skip_sum) {
5909 ret = btrfs_lookup_bio_sums_dio(root, inode, bio,
Miao Xiee65e1532010-11-22 03:04:43 +00005910 file_offset, csums);
Tsutomu Itohc2db1072011-03-01 06:48:31 +00005911 if (ret)
5912 goto err;
5913 }
Miao Xiee65e1532010-11-22 03:04:43 +00005914
Josef Bacik1ae39932011-04-06 14:41:34 -04005915map:
5916 ret = btrfs_map_bio(root, rw, bio, 0, async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00005917err:
5918 bio_put(bio);
5919 return ret;
5920}
5921
5922static int btrfs_submit_direct_hook(int rw, struct btrfs_dio_private *dip,
5923 int skip_sum)
5924{
5925 struct inode *inode = dip->inode;
5926 struct btrfs_root *root = BTRFS_I(inode)->root;
5927 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
5928 struct bio *bio;
5929 struct bio *orig_bio = dip->orig_bio;
5930 struct bio_vec *bvec = orig_bio->bi_io_vec;
5931 u64 start_sector = orig_bio->bi_sector;
5932 u64 file_offset = dip->logical_offset;
5933 u64 submit_len = 0;
5934 u64 map_length;
5935 int nr_pages = 0;
5936 u32 *csums = dip->csums;
5937 int ret = 0;
Josef Bacik1ae39932011-04-06 14:41:34 -04005938 int async_submit = 0;
Josef Bacik98bc3142011-03-22 11:00:46 -04005939 int write = rw & REQ_WRITE;
Miao Xiee65e1532010-11-22 03:04:43 +00005940
Miao Xiee65e1532010-11-22 03:04:43 +00005941 map_length = orig_bio->bi_size;
5942 ret = btrfs_map_block(map_tree, READ, start_sector << 9,
5943 &map_length, NULL, 0);
5944 if (ret) {
Josef Bacik64728bb2011-04-25 19:43:52 -04005945 bio_put(orig_bio);
Miao Xiee65e1532010-11-22 03:04:43 +00005946 return -EIO;
5947 }
5948
Josef Bacik02f57c72011-04-06 14:25:44 -04005949 if (map_length >= orig_bio->bi_size) {
5950 bio = orig_bio;
5951 goto submit;
5952 }
5953
Josef Bacik1ae39932011-04-06 14:41:34 -04005954 async_submit = 1;
Josef Bacik02f57c72011-04-06 14:25:44 -04005955 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev, start_sector, GFP_NOFS);
5956 if (!bio)
5957 return -ENOMEM;
5958 bio->bi_private = dip;
5959 bio->bi_end_io = btrfs_end_dio_bio;
5960 atomic_inc(&dip->pending_bios);
5961
Miao Xiee65e1532010-11-22 03:04:43 +00005962 while (bvec <= (orig_bio->bi_io_vec + orig_bio->bi_vcnt - 1)) {
5963 if (unlikely(map_length < submit_len + bvec->bv_len ||
5964 bio_add_page(bio, bvec->bv_page, bvec->bv_len,
5965 bvec->bv_offset) < bvec->bv_len)) {
5966 /*
5967 * inc the count before we submit the bio so
5968 * we know the end IO handler won't happen before
5969 * we inc the count. Otherwise, the dip might get freed
5970 * before we're done setting it up
5971 */
5972 atomic_inc(&dip->pending_bios);
5973 ret = __btrfs_submit_dio_bio(bio, inode, rw,
5974 file_offset, skip_sum,
Josef Bacik1ae39932011-04-06 14:41:34 -04005975 csums, async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00005976 if (ret) {
5977 bio_put(bio);
5978 atomic_dec(&dip->pending_bios);
5979 goto out_err;
5980 }
5981
Josef Bacik98bc3142011-03-22 11:00:46 -04005982 /* Write's use the ordered csums */
5983 if (!write && !skip_sum)
Miao Xiee65e1532010-11-22 03:04:43 +00005984 csums = csums + nr_pages;
5985 start_sector += submit_len >> 9;
5986 file_offset += submit_len;
5987
5988 submit_len = 0;
5989 nr_pages = 0;
5990
5991 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev,
5992 start_sector, GFP_NOFS);
5993 if (!bio)
5994 goto out_err;
5995 bio->bi_private = dip;
5996 bio->bi_end_io = btrfs_end_dio_bio;
5997
5998 map_length = orig_bio->bi_size;
5999 ret = btrfs_map_block(map_tree, READ, start_sector << 9,
6000 &map_length, NULL, 0);
6001 if (ret) {
6002 bio_put(bio);
6003 goto out_err;
6004 }
6005 } else {
6006 submit_len += bvec->bv_len;
6007 nr_pages ++;
6008 bvec++;
6009 }
6010 }
6011
Josef Bacik02f57c72011-04-06 14:25:44 -04006012submit:
Miao Xiee65e1532010-11-22 03:04:43 +00006013 ret = __btrfs_submit_dio_bio(bio, inode, rw, file_offset, skip_sum,
Josef Bacik1ae39932011-04-06 14:41:34 -04006014 csums, async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00006015 if (!ret)
6016 return 0;
6017
6018 bio_put(bio);
6019out_err:
6020 dip->errors = 1;
6021 /*
6022 * before atomic variable goto zero, we must
6023 * make sure dip->errors is perceived to be set.
6024 */
6025 smp_mb__before_atomic_dec();
6026 if (atomic_dec_and_test(&dip->pending_bios))
6027 bio_io_error(dip->orig_bio);
6028
6029 /* bio_end_io() will handle error, so we needn't return it */
6030 return 0;
6031}
6032
Josef Bacik4b46fce2010-05-23 11:00:55 -04006033static void btrfs_submit_direct(int rw, struct bio *bio, struct inode *inode,
6034 loff_t file_offset)
6035{
6036 struct btrfs_root *root = BTRFS_I(inode)->root;
6037 struct btrfs_dio_private *dip;
6038 struct bio_vec *bvec = bio->bi_io_vec;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006039 int skip_sum;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02006040 int write = rw & REQ_WRITE;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006041 int ret = 0;
6042
6043 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
6044
6045 dip = kmalloc(sizeof(*dip), GFP_NOFS);
6046 if (!dip) {
6047 ret = -ENOMEM;
6048 goto free_ordered;
6049 }
6050 dip->csums = NULL;
6051
Josef Bacik98bc3142011-03-22 11:00:46 -04006052 /* Write's use the ordered csum stuff, so we don't need dip->csums */
6053 if (!write && !skip_sum) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04006054 dip->csums = kmalloc(sizeof(u32) * bio->bi_vcnt, GFP_NOFS);
6055 if (!dip->csums) {
Daniel J Bluemanb4966b72011-03-09 16:46:42 +00006056 kfree(dip);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006057 ret = -ENOMEM;
6058 goto free_ordered;
6059 }
6060 }
6061
6062 dip->private = bio->bi_private;
6063 dip->inode = inode;
6064 dip->logical_offset = file_offset;
6065
Josef Bacik4b46fce2010-05-23 11:00:55 -04006066 dip->bytes = 0;
6067 do {
6068 dip->bytes += bvec->bv_len;
6069 bvec++;
6070 } while (bvec <= (bio->bi_io_vec + bio->bi_vcnt - 1));
6071
Chris Mason46bfbb52010-05-26 11:04:10 -04006072 dip->disk_bytenr = (u64)bio->bi_sector << 9;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006073 bio->bi_private = dip;
Miao Xiee65e1532010-11-22 03:04:43 +00006074 dip->errors = 0;
6075 dip->orig_bio = bio;
6076 atomic_set(&dip->pending_bios, 0);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006077
6078 if (write)
6079 bio->bi_end_io = btrfs_endio_direct_write;
6080 else
6081 bio->bi_end_io = btrfs_endio_direct_read;
6082
Miao Xiee65e1532010-11-22 03:04:43 +00006083 ret = btrfs_submit_direct_hook(rw, dip, skip_sum);
6084 if (!ret)
Chris Masoneaf25d92010-05-25 09:48:28 -04006085 return;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006086free_ordered:
6087 /*
6088 * If this is a write, we need to clean up the reserved space and kill
6089 * the ordered extent.
6090 */
6091 if (write) {
6092 struct btrfs_ordered_extent *ordered;
Josef Bacik955256f2010-11-19 09:41:10 -05006093 ordered = btrfs_lookup_ordered_extent(inode, file_offset);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006094 if (!test_bit(BTRFS_ORDERED_PREALLOC, &ordered->flags) &&
6095 !test_bit(BTRFS_ORDERED_NOCOW, &ordered->flags))
6096 btrfs_free_reserved_extent(root, ordered->start,
6097 ordered->disk_len);
6098 btrfs_put_ordered_extent(ordered);
6099 btrfs_put_ordered_extent(ordered);
6100 }
6101 bio_endio(bio, ret);
6102}
6103
Chris Mason5a5f79b2010-05-26 21:33:37 -04006104static ssize_t check_direct_IO(struct btrfs_root *root, int rw, struct kiocb *iocb,
6105 const struct iovec *iov, loff_t offset,
6106 unsigned long nr_segs)
6107{
6108 int seg;
Josef Bacika1b75f72011-04-08 15:51:18 +00006109 int i;
Chris Mason5a5f79b2010-05-26 21:33:37 -04006110 size_t size;
6111 unsigned long addr;
6112 unsigned blocksize_mask = root->sectorsize - 1;
6113 ssize_t retval = -EINVAL;
6114 loff_t end = offset;
6115
6116 if (offset & blocksize_mask)
6117 goto out;
6118
6119 /* Check the memory alignment. Blocks cannot straddle pages */
6120 for (seg = 0; seg < nr_segs; seg++) {
6121 addr = (unsigned long)iov[seg].iov_base;
6122 size = iov[seg].iov_len;
6123 end += size;
Josef Bacika1b75f72011-04-08 15:51:18 +00006124 if ((addr & blocksize_mask) || (size & blocksize_mask))
Chris Mason5a5f79b2010-05-26 21:33:37 -04006125 goto out;
Josef Bacika1b75f72011-04-08 15:51:18 +00006126
6127 /* If this is a write we don't need to check anymore */
6128 if (rw & WRITE)
6129 continue;
6130
6131 /*
6132 * Check to make sure we don't have duplicate iov_base's in this
6133 * iovec, if so return EINVAL, otherwise we'll get csum errors
6134 * when reading back.
6135 */
6136 for (i = seg + 1; i < nr_segs; i++) {
6137 if (iov[seg].iov_base == iov[i].iov_base)
6138 goto out;
6139 }
Chris Mason5a5f79b2010-05-26 21:33:37 -04006140 }
6141 retval = 0;
6142out:
6143 return retval;
6144}
Chris Mason16432982008-04-10 10:23:21 -04006145static ssize_t btrfs_direct_IO(int rw, struct kiocb *iocb,
6146 const struct iovec *iov, loff_t offset,
6147 unsigned long nr_segs)
6148{
Josef Bacik4b46fce2010-05-23 11:00:55 -04006149 struct file *file = iocb->ki_filp;
6150 struct inode *inode = file->f_mapping->host;
6151 struct btrfs_ordered_extent *ordered;
Chris Mason4845e442010-05-25 20:56:50 -04006152 struct extent_state *cached_state = NULL;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006153 u64 lockstart, lockend;
6154 ssize_t ret;
Chris Mason4845e442010-05-25 20:56:50 -04006155 int writing = rw & WRITE;
6156 int write_bits = 0;
Chris Mason3f7c5792010-05-26 10:59:53 -04006157 size_t count = iov_length(iov, nr_segs);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006158
Chris Mason5a5f79b2010-05-26 21:33:37 -04006159 if (check_direct_IO(BTRFS_I(inode)->root, rw, iocb, iov,
6160 offset, nr_segs)) {
6161 return 0;
6162 }
6163
Josef Bacik4b46fce2010-05-23 11:00:55 -04006164 lockstart = offset;
Chris Mason3f7c5792010-05-26 10:59:53 -04006165 lockend = offset + count - 1;
6166
6167 if (writing) {
6168 ret = btrfs_delalloc_reserve_space(inode, count);
6169 if (ret)
6170 goto out;
6171 }
Chris Mason4845e442010-05-25 20:56:50 -04006172
Josef Bacik4b46fce2010-05-23 11:00:55 -04006173 while (1) {
Chris Mason4845e442010-05-25 20:56:50 -04006174 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
6175 0, &cached_state, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006176 /*
6177 * We're concerned with the entire range that we're going to be
6178 * doing DIO to, so we need to make sure theres no ordered
6179 * extents in this range.
6180 */
6181 ordered = btrfs_lookup_ordered_range(inode, lockstart,
6182 lockend - lockstart + 1);
6183 if (!ordered)
6184 break;
Chris Mason4845e442010-05-25 20:56:50 -04006185 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
6186 &cached_state, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006187 btrfs_start_ordered_extent(inode, ordered, 1);
6188 btrfs_put_ordered_extent(ordered);
6189 cond_resched();
6190 }
6191
Chris Mason4845e442010-05-25 20:56:50 -04006192 /*
6193 * we don't use btrfs_set_extent_delalloc because we don't want
6194 * the dirty or uptodate bits
6195 */
6196 if (writing) {
6197 write_bits = EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING;
6198 ret = set_extent_bit(&BTRFS_I(inode)->io_tree, lockstart, lockend,
6199 EXTENT_DELALLOC, 0, NULL, &cached_state,
6200 GFP_NOFS);
6201 if (ret) {
6202 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
6203 lockend, EXTENT_LOCKED | write_bits,
6204 1, 0, &cached_state, GFP_NOFS);
6205 goto out;
6206 }
6207 }
6208
6209 free_extent_state(cached_state);
6210 cached_state = NULL;
6211
Chris Mason5a5f79b2010-05-26 21:33:37 -04006212 ret = __blockdev_direct_IO(rw, iocb, inode,
6213 BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev,
6214 iov, offset, nr_segs, btrfs_get_blocks_direct, NULL,
6215 btrfs_submit_direct, 0);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006216
6217 if (ret < 0 && ret != -EIOCBQUEUED) {
Chris Mason4845e442010-05-25 20:56:50 -04006218 clear_extent_bit(&BTRFS_I(inode)->io_tree, offset,
6219 offset + iov_length(iov, nr_segs) - 1,
6220 EXTENT_LOCKED | write_bits, 1, 0,
6221 &cached_state, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006222 } else if (ret >= 0 && ret < iov_length(iov, nr_segs)) {
6223 /*
6224 * We're falling back to buffered, unlock the section we didn't
6225 * do IO on.
6226 */
Chris Mason4845e442010-05-25 20:56:50 -04006227 clear_extent_bit(&BTRFS_I(inode)->io_tree, offset + ret,
6228 offset + iov_length(iov, nr_segs) - 1,
6229 EXTENT_LOCKED | write_bits, 1, 0,
6230 &cached_state, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006231 }
Chris Mason4845e442010-05-25 20:56:50 -04006232out:
6233 free_extent_state(cached_state);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006234 return ret;
Chris Mason16432982008-04-10 10:23:21 -04006235}
6236
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05006237static int btrfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
6238 __u64 start, __u64 len)
6239{
Chris Masonec29ed52011-02-23 16:23:20 -05006240 return extent_fiemap(inode, fieinfo, start, len, btrfs_get_extent_fiemap);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05006241}
6242
Chris Mason9ebefb182007-06-15 13:50:00 -04006243int btrfs_readpage(struct file *file, struct page *page)
6244{
Chris Masond1310b22008-01-24 16:13:08 -05006245 struct extent_io_tree *tree;
6246 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04006247 return extent_read_full_page(tree, page, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04006248}
Chris Mason1832a6d2007-12-21 16:27:21 -05006249
Chris Mason39279cc2007-06-12 06:35:45 -04006250static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
6251{
Chris Masond1310b22008-01-24 16:13:08 -05006252 struct extent_io_tree *tree;
Chris Masonb888db22007-08-27 16:49:44 -04006253
6254
6255 if (current->flags & PF_MEMALLOC) {
6256 redirty_page_for_writepage(wbc, page);
6257 unlock_page(page);
6258 return 0;
6259 }
Chris Masond1310b22008-01-24 16:13:08 -05006260 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04006261 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
6262}
Chris Mason39279cc2007-06-12 06:35:45 -04006263
Chris Masonf4219502008-07-22 11:18:09 -04006264int btrfs_writepages(struct address_space *mapping,
6265 struct writeback_control *wbc)
Chris Masonb293f022007-11-01 19:45:34 -04006266{
Chris Masond1310b22008-01-24 16:13:08 -05006267 struct extent_io_tree *tree;
Chris Mason771ed682008-11-06 22:02:51 -05006268
Chris Masond1310b22008-01-24 16:13:08 -05006269 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f022007-11-01 19:45:34 -04006270 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
6271}
6272
Chris Mason3ab2fb52007-11-08 10:59:22 -05006273static int
6274btrfs_readpages(struct file *file, struct address_space *mapping,
6275 struct list_head *pages, unsigned nr_pages)
6276{
Chris Masond1310b22008-01-24 16:13:08 -05006277 struct extent_io_tree *tree;
6278 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05006279 return extent_readpages(tree, mapping, pages, nr_pages,
6280 btrfs_get_extent);
6281}
Chris Masone6dcd2d2008-07-17 12:53:50 -04006282static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04006283{
Chris Masond1310b22008-01-24 16:13:08 -05006284 struct extent_io_tree *tree;
6285 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04006286 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006287
Chris Masond1310b22008-01-24 16:13:08 -05006288 tree = &BTRFS_I(page->mapping->host)->io_tree;
6289 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05006290 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04006291 if (ret == 1) {
6292 ClearPagePrivate(page);
6293 set_page_private(page, 0);
6294 page_cache_release(page);
6295 }
6296 return ret;
6297}
Chris Mason39279cc2007-06-12 06:35:45 -04006298
Chris Masone6dcd2d2008-07-17 12:53:50 -04006299static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
6300{
Chris Mason98509cf2008-09-11 15:51:43 -04006301 if (PageWriteback(page) || PageDirty(page))
6302 return 0;
Yan Zhengb335b002009-02-12 10:06:04 -05006303 return __btrfs_releasepage(page, gfp_flags & GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006304}
6305
Chris Masona52d9a82007-08-27 16:49:44 -04006306static void btrfs_invalidatepage(struct page *page, unsigned long offset)
6307{
Chris Masond1310b22008-01-24 16:13:08 -05006308 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006309 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00006310 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006311 u64 page_start = page_offset(page);
6312 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04006313
Chris Mason8b62b722009-09-02 16:53:46 -04006314
6315 /*
6316 * we have the page locked, so new writeback can't start,
6317 * and the dirty bit won't be cleared while we are here.
6318 *
6319 * Wait for IO on this page so that we can safely clear
6320 * the PagePrivate2 bit and do ordered accounting
6321 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006322 wait_on_page_writeback(page);
Chris Mason8b62b722009-09-02 16:53:46 -04006323
Chris Masond1310b22008-01-24 16:13:08 -05006324 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006325 if (offset) {
6326 btrfs_releasepage(page, GFP_NOFS);
6327 return;
6328 }
Josef Bacik2ac55d42010-02-03 19:33:23 +00006329 lock_extent_bits(tree, page_start, page_end, 0, &cached_state,
6330 GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006331 ordered = btrfs_lookup_ordered_extent(page->mapping->host,
6332 page_offset(page));
6333 if (ordered) {
Chris Masoneb84ae02008-07-17 13:53:27 -04006334 /*
6335 * IO on this page will never be started, so we need
6336 * to account for any ordered extents now
6337 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006338 clear_extent_bit(tree, page_start, page_end,
6339 EXTENT_DIRTY | EXTENT_DELALLOC |
Josef Bacik32c00af2009-10-08 13:34:05 -04006340 EXTENT_LOCKED | EXTENT_DO_ACCOUNTING, 1, 0,
Josef Bacik2ac55d42010-02-03 19:33:23 +00006341 &cached_state, GFP_NOFS);
Chris Mason8b62b722009-09-02 16:53:46 -04006342 /*
6343 * whoever cleared the private bit is responsible
6344 * for the finish_ordered_io
6345 */
6346 if (TestClearPagePrivate2(page)) {
6347 btrfs_finish_ordered_io(page->mapping->host,
6348 page_start, page_end);
6349 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006350 btrfs_put_ordered_extent(ordered);
Josef Bacik2ac55d42010-02-03 19:33:23 +00006351 cached_state = NULL;
6352 lock_extent_bits(tree, page_start, page_end, 0, &cached_state,
6353 GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006354 }
6355 clear_extent_bit(tree, page_start, page_end,
Josef Bacik32c00af2009-10-08 13:34:05 -04006356 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
Josef Bacik2ac55d42010-02-03 19:33:23 +00006357 EXTENT_DO_ACCOUNTING, 1, 1, &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006358 __btrfs_releasepage(page, GFP_NOFS);
6359
Chris Mason4a096752008-07-21 10:29:44 -04006360 ClearPageChecked(page);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04006361 if (PagePrivate(page)) {
Chris Mason9ad6b7b2008-04-18 16:11:30 -04006362 ClearPagePrivate(page);
6363 set_page_private(page, 0);
6364 page_cache_release(page);
6365 }
Chris Mason39279cc2007-06-12 06:35:45 -04006366}
6367
Chris Mason9ebefb182007-06-15 13:50:00 -04006368/*
6369 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
6370 * called from a page fault handler when a page is first dirtied. Hence we must
6371 * be careful to check for EOF conditions here. We set the page up correctly
6372 * for a written page which means we get ENOSPC checking when writing into
6373 * holes and correct delalloc and unwritten extent mapping on filesystems that
6374 * support these features.
6375 *
6376 * We are not allowed to take the i_mutex here so we have to play games to
6377 * protect against truncate races as the page could now be beyond EOF. Because
6378 * vmtruncate() writes the inode size before removing pages, once we have the
6379 * page lock we can determine safely if the page is beyond EOF. If it is not
6380 * beyond EOF, then the page is guaranteed safe against truncation until we
6381 * unlock the page.
6382 */
Nick Pigginc2ec1752009-03-31 15:23:21 -07006383int btrfs_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Chris Mason9ebefb182007-06-15 13:50:00 -04006384{
Nick Pigginc2ec1752009-03-31 15:23:21 -07006385 struct page *page = vmf->page;
Chris Mason6da6aba2007-12-18 16:15:09 -05006386 struct inode *inode = fdentry(vma->vm_file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05006387 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006388 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
6389 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00006390 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006391 char *kaddr;
6392 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04006393 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05006394 int ret;
Chris Masona52d9a82007-08-27 16:49:44 -04006395 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006396 u64 page_end;
Chris Mason9ebefb182007-06-15 13:50:00 -04006397
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006398 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
Nick Piggin56a76f82009-03-31 15:23:23 -07006399 if (ret) {
6400 if (ret == -ENOMEM)
6401 ret = VM_FAULT_OOM;
6402 else /* -ENOSPC, -EIO, etc */
6403 ret = VM_FAULT_SIGBUS;
Chris Mason1832a6d2007-12-21 16:27:21 -05006404 goto out;
Nick Piggin56a76f82009-03-31 15:23:23 -07006405 }
Chris Mason1832a6d2007-12-21 16:27:21 -05006406
Nick Piggin56a76f82009-03-31 15:23:23 -07006407 ret = VM_FAULT_NOPAGE; /* make the VM retry the fault */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006408again:
Chris Mason9ebefb182007-06-15 13:50:00 -04006409 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04006410 size = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006411 page_start = page_offset(page);
6412 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04006413
Chris Mason9ebefb182007-06-15 13:50:00 -04006414 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04006415 (page_start >= size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04006416 /* page got truncated out from underneath us */
6417 goto out_unlock;
6418 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006419 wait_on_page_writeback(page);
6420
Josef Bacik2ac55d42010-02-03 19:33:23 +00006421 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state,
6422 GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006423 set_page_extent_mapped(page);
6424
Chris Masoneb84ae02008-07-17 13:53:27 -04006425 /*
6426 * we can't set the delalloc bits if there are pending ordered
6427 * extents. Drop our locks and wait for them to finish
6428 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006429 ordered = btrfs_lookup_ordered_extent(inode, page_start);
6430 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00006431 unlock_extent_cached(io_tree, page_start, page_end,
6432 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006433 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04006434 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006435 btrfs_put_ordered_extent(ordered);
6436 goto again;
6437 }
6438
Josef Bacikfbf19082009-10-01 17:10:23 -04006439 /*
6440 * XXX - page_mkwrite gets called every time the page is dirtied, even
6441 * if it was already dirty, so for space accounting reasons we need to
6442 * clear any delalloc bits for the range we are fixing to save. There
6443 * is probably a better way to do this, but for now keep consistent with
6444 * prepare_pages in the normal write path.
6445 */
Josef Bacik2ac55d42010-02-03 19:33:23 +00006446 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Josef Bacik32c00af2009-10-08 13:34:05 -04006447 EXTENT_DIRTY | EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00006448 0, 0, &cached_state, GFP_NOFS);
Josef Bacikfbf19082009-10-01 17:10:23 -04006449
Josef Bacik2ac55d42010-02-03 19:33:23 +00006450 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
6451 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006452 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00006453 unlock_extent_cached(io_tree, page_start, page_end,
6454 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006455 ret = VM_FAULT_SIGBUS;
6456 goto out_unlock;
6457 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006458 ret = 0;
Chris Mason9ebefb182007-06-15 13:50:00 -04006459
6460 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04006461 if (page_start + PAGE_CACHE_SIZE > size)
Chris Masone6dcd2d2008-07-17 12:53:50 -04006462 zero_start = size & ~PAGE_CACHE_MASK;
Chris Mason9ebefb182007-06-15 13:50:00 -04006463 else
Chris Masone6dcd2d2008-07-17 12:53:50 -04006464 zero_start = PAGE_CACHE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04006465
Chris Masone6dcd2d2008-07-17 12:53:50 -04006466 if (zero_start != PAGE_CACHE_SIZE) {
6467 kaddr = kmap(page);
6468 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
6469 flush_dcache_page(page);
6470 kunmap(page);
6471 }
Chris Mason247e7432008-07-17 12:53:51 -04006472 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006473 set_page_dirty(page);
Chris Mason50a9b212009-09-11 12:33:12 -04006474 SetPageUptodate(page);
Chris Mason5a3f23d2009-03-31 13:27:11 -04006475
Chris Mason257c62e2009-10-13 13:21:08 -04006476 BTRFS_I(inode)->last_trans = root->fs_info->generation;
6477 BTRFS_I(inode)->last_sub_trans = BTRFS_I(inode)->root->log_transid;
6478
Josef Bacik2ac55d42010-02-03 19:33:23 +00006479 unlock_extent_cached(io_tree, page_start, page_end, &cached_state, GFP_NOFS);
Chris Mason9ebefb182007-06-15 13:50:00 -04006480
6481out_unlock:
Chris Mason50a9b212009-09-11 12:33:12 -04006482 if (!ret)
6483 return VM_FAULT_LOCKED;
Chris Mason9ebefb182007-06-15 13:50:00 -04006484 unlock_page(page);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006485 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Mason1832a6d2007-12-21 16:27:21 -05006486out:
Chris Mason9ebefb182007-06-15 13:50:00 -04006487 return ret;
6488}
6489
Josef Bacika41ad392011-01-31 15:30:16 -05006490static int btrfs_truncate(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04006491{
6492 struct btrfs_root *root = BTRFS_I(inode)->root;
6493 int ret;
Josef Bacik3893e332011-01-31 16:03:11 -05006494 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006495 struct btrfs_trans_handle *trans;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04006496 unsigned long nr;
Chris Masondbe674a2008-07-17 12:54:05 -04006497 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -04006498
Josef Bacik5d5e1032009-10-13 16:46:49 -04006499 ret = btrfs_truncate_page(inode->i_mapping, inode->i_size);
6500 if (ret)
Josef Bacika41ad392011-01-31 15:30:16 -05006501 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00006502
Chris Mason4a096752008-07-21 10:29:44 -04006503 btrfs_wait_ordered_range(inode, inode->i_size & (~mask), (u64)-1);
Yan, Zheng80825102009-11-12 09:35:36 +00006504 btrfs_ordered_update_i_size(inode, inode->i_size, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006505
Josef Bacikf0cd8462011-03-04 14:37:08 -05006506 trans = btrfs_start_transaction(root, 5);
6507 if (IS_ERR(trans))
6508 return PTR_ERR(trans);
6509
6510 btrfs_set_trans_block_group(trans, inode);
6511
6512 ret = btrfs_orphan_add(trans, inode);
6513 if (ret) {
6514 btrfs_end_transaction(trans, root);
6515 return ret;
6516 }
6517
6518 nr = trans->blocks_used;
6519 btrfs_end_transaction(trans, root);
6520 btrfs_btree_balance_dirty(root, nr);
6521
6522 /* Now start a transaction for the truncate */
Yan, Zhengd68fc572010-05-16 10:49:58 -04006523 trans = btrfs_start_transaction(root, 0);
Josef Bacik3893e332011-01-31 16:03:11 -05006524 if (IS_ERR(trans))
6525 return PTR_ERR(trans);
Yan, Zheng80825102009-11-12 09:35:36 +00006526 btrfs_set_trans_block_group(trans, inode);
Yan, Zhengd68fc572010-05-16 10:49:58 -04006527 trans->block_rsv = root->orphan_block_rsv;
Chris Mason5a3f23d2009-03-31 13:27:11 -04006528
6529 /*
6530 * setattr is responsible for setting the ordered_data_close flag,
6531 * but that is only tested during the last file release. That
6532 * could happen well after the next commit, leaving a great big
6533 * window where new writes may get lost if someone chooses to write
6534 * to this file after truncating to zero
6535 *
6536 * The inode doesn't have any dirty data here, and so if we commit
6537 * this is a noop. If someone immediately starts writing to the inode
6538 * it is very likely we'll catch some of their writes in this
6539 * transaction, and the commit will find this file on the ordered
6540 * data list with good things to send down.
6541 *
6542 * This is a best effort solution, there is still a window where
6543 * using truncate to replace the contents of the file will
6544 * end up with a zero length file after a crash.
6545 */
6546 if (inode->i_size == 0 && BTRFS_I(inode)->ordered_data_close)
6547 btrfs_add_ordered_operation(trans, root, inode);
6548
Yan, Zheng80825102009-11-12 09:35:36 +00006549 while (1) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04006550 if (!trans) {
6551 trans = btrfs_start_transaction(root, 0);
Josef Bacik3893e332011-01-31 16:03:11 -05006552 if (IS_ERR(trans))
6553 return PTR_ERR(trans);
Yan, Zhengd68fc572010-05-16 10:49:58 -04006554 btrfs_set_trans_block_group(trans, inode);
6555 trans->block_rsv = root->orphan_block_rsv;
6556 }
6557
6558 ret = btrfs_block_rsv_check(trans, root,
6559 root->orphan_block_rsv, 0, 5);
Josef Bacik3893e332011-01-31 16:03:11 -05006560 if (ret == -EAGAIN) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04006561 ret = btrfs_commit_transaction(trans, root);
Josef Bacik3893e332011-01-31 16:03:11 -05006562 if (ret)
6563 return ret;
Yan, Zhengd68fc572010-05-16 10:49:58 -04006564 trans = NULL;
6565 continue;
Josef Bacik3893e332011-01-31 16:03:11 -05006566 } else if (ret) {
6567 err = ret;
6568 break;
Yan, Zhengd68fc572010-05-16 10:49:58 -04006569 }
6570
Yan, Zheng80825102009-11-12 09:35:36 +00006571 ret = btrfs_truncate_inode_items(trans, root, inode,
6572 inode->i_size,
6573 BTRFS_EXTENT_DATA_KEY);
Josef Bacik3893e332011-01-31 16:03:11 -05006574 if (ret != -EAGAIN) {
6575 err = ret;
Yan, Zheng80825102009-11-12 09:35:36 +00006576 break;
Josef Bacik3893e332011-01-31 16:03:11 -05006577 }
Chris Mason39279cc2007-06-12 06:35:45 -04006578
Yan, Zheng80825102009-11-12 09:35:36 +00006579 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05006580 if (ret) {
6581 err = ret;
6582 break;
6583 }
Chris Mason5f39d392007-10-15 16:14:19 -04006584
Yan, Zheng80825102009-11-12 09:35:36 +00006585 nr = trans->blocks_used;
6586 btrfs_end_transaction(trans, root);
Yan, Zhengd68fc572010-05-16 10:49:58 -04006587 trans = NULL;
Yan, Zheng80825102009-11-12 09:35:36 +00006588 btrfs_btree_balance_dirty(root, nr);
Yan, Zheng80825102009-11-12 09:35:36 +00006589 }
6590
6591 if (ret == 0 && inode->i_nlink > 0) {
6592 ret = btrfs_orphan_del(trans, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05006593 if (ret)
6594 err = ret;
Josef Bacikded5db92011-03-04 14:09:46 -05006595 } else if (ret && inode->i_nlink > 0) {
6596 /*
6597 * Failed to do the truncate, remove us from the in memory
6598 * orphan list.
6599 */
6600 ret = btrfs_orphan_del(NULL, inode);
Yan, Zheng80825102009-11-12 09:35:36 +00006601 }
6602
6603 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05006604 if (ret && !err)
6605 err = ret;
Josef Bacik7b128762008-07-24 12:17:14 -04006606
Josef Bacik7b128762008-07-24 12:17:14 -04006607 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04006608 ret = btrfs_end_transaction_throttle(trans, root);
Josef Bacik3893e332011-01-31 16:03:11 -05006609 if (ret && !err)
6610 err = ret;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04006611 btrfs_btree_balance_dirty(root, nr);
Josef Bacika41ad392011-01-31 15:30:16 -05006612
Josef Bacik3893e332011-01-31 16:03:11 -05006613 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04006614}
6615
Sven Wegener3b963622008-06-09 21:57:42 -04006616/*
Chris Masond352ac62008-09-29 15:18:18 -04006617 * create a new subvolume directory/inode (helper for the ioctl).
6618 */
Yan Zhengd2fb3432008-12-11 16:30:39 -05006619int btrfs_create_subvol_root(struct btrfs_trans_handle *trans,
Yan, Zheng76dda932009-09-21 16:00:26 -04006620 struct btrfs_root *new_root,
Yan Zhengd2fb3432008-12-11 16:30:39 -05006621 u64 new_dirid, u64 alloc_hint)
Chris Mason39279cc2007-06-12 06:35:45 -04006622{
Chris Mason39279cc2007-06-12 06:35:45 -04006623 struct inode *inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04006624 int err;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006625 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006626
Josef Bacikaec74772008-07-24 12:12:38 -04006627 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2, new_dirid,
Yan Zhengd2fb3432008-12-11 16:30:39 -05006628 new_dirid, alloc_hint, S_IFDIR | 0700, &index);
Chris Mason54aa1f42007-06-22 14:16:25 -04006629 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04006630 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006631 inode->i_op = &btrfs_dir_inode_operations;
6632 inode->i_fop = &btrfs_dir_file_operations;
6633
Chris Mason39279cc2007-06-12 06:35:45 -04006634 inode->i_nlink = 1;
Chris Masondbe674a2008-07-17 12:54:05 -04006635 btrfs_i_size_write(inode, 0);
Sven Wegener3b963622008-06-09 21:57:42 -04006636
Yan, Zheng76dda932009-09-21 16:00:26 -04006637 err = btrfs_update_inode(trans, new_root, inode);
6638 BUG_ON(err);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04006639
Yan, Zheng76dda932009-09-21 16:00:26 -04006640 iput(inode);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04006641 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006642}
6643
Chris Masond352ac62008-09-29 15:18:18 -04006644/* helper function for file defrag and space balancing. This
6645 * forces readahead on a given range of bytes in an inode
6646 */
Chris Masonedbd8d42007-12-21 16:27:24 -05006647unsigned long btrfs_force_ra(struct address_space *mapping,
Chris Mason86479a02007-09-10 19:58:16 -04006648 struct file_ra_state *ra, struct file *file,
6649 pgoff_t offset, pgoff_t last_index)
6650{
Chris Mason8e7bf942008-04-28 09:02:36 -04006651 pgoff_t req_size = last_index - offset + 1;
Chris Mason86479a02007-09-10 19:58:16 -04006652
Chris Mason86479a02007-09-10 19:58:16 -04006653 page_cache_sync_readahead(mapping, ra, file, offset, req_size);
6654 return offset + req_size;
Chris Mason86479a02007-09-10 19:58:16 -04006655}
6656
Chris Mason39279cc2007-06-12 06:35:45 -04006657struct inode *btrfs_alloc_inode(struct super_block *sb)
6658{
6659 struct btrfs_inode *ei;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006660 struct inode *inode;
Chris Mason39279cc2007-06-12 06:35:45 -04006661
6662 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
6663 if (!ei)
6664 return NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006665
6666 ei->root = NULL;
6667 ei->space_info = NULL;
6668 ei->generation = 0;
6669 ei->sequence = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04006670 ei->last_trans = 0;
Chris Mason257c62e2009-10-13 13:21:08 -04006671 ei->last_sub_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04006672 ei->logged_trans = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006673 ei->delalloc_bytes = 0;
6674 ei->reserved_bytes = 0;
6675 ei->disk_i_size = 0;
6676 ei->flags = 0;
6677 ei->index_cnt = (u64)-1;
6678 ei->last_unlink_trans = 0;
6679
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006680 atomic_set(&ei->outstanding_extents, 0);
Josef Bacik57a45ced2011-01-25 16:30:38 -05006681 atomic_set(&ei->reserved_extents, 0);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006682
6683 ei->ordered_data_close = 0;
Yan, Zhengd68fc572010-05-16 10:49:58 -04006684 ei->orphan_meta_reserved = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006685 ei->dummy_inode = 0;
Li Zefan261507a02010-12-17 14:21:50 +08006686 ei->force_compress = BTRFS_COMPRESS_NONE;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006687
Miao Xie16cdcec2011-04-22 18:12:22 +08006688 ei->delayed_node = NULL;
6689
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006690 inode = &ei->vfs_inode;
David Sterbaa8067e02011-04-21 00:34:43 +02006691 extent_map_tree_init(&ei->extent_tree);
David Sterbaf993c882011-04-20 23:35:57 +02006692 extent_io_tree_init(&ei->io_tree, &inode->i_data);
6693 extent_io_tree_init(&ei->io_failure_tree, &inode->i_data);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006694 mutex_init(&ei->log_mutex);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006695 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Josef Bacik7b128762008-07-24 12:17:14 -04006696 INIT_LIST_HEAD(&ei->i_orphan);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006697 INIT_LIST_HEAD(&ei->delalloc_inodes);
Chris Mason5a3f23d2009-03-31 13:27:11 -04006698 INIT_LIST_HEAD(&ei->ordered_operations);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006699 RB_CLEAR_NODE(&ei->rb_node);
6700
6701 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04006702}
6703
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11006704static void btrfs_i_callback(struct rcu_head *head)
6705{
6706 struct inode *inode = container_of(head, struct inode, i_rcu);
6707 INIT_LIST_HEAD(&inode->i_dentry);
6708 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
6709}
6710
Chris Mason39279cc2007-06-12 06:35:45 -04006711void btrfs_destroy_inode(struct inode *inode)
6712{
Chris Masone6dcd2d2008-07-17 12:53:50 -04006713 struct btrfs_ordered_extent *ordered;
Chris Mason5a3f23d2009-03-31 13:27:11 -04006714 struct btrfs_root *root = BTRFS_I(inode)->root;
6715
Chris Mason39279cc2007-06-12 06:35:45 -04006716 WARN_ON(!list_empty(&inode->i_dentry));
6717 WARN_ON(inode->i_data.nrpages);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006718 WARN_ON(atomic_read(&BTRFS_I(inode)->outstanding_extents));
Josef Bacik57a45ced2011-01-25 16:30:38 -05006719 WARN_ON(atomic_read(&BTRFS_I(inode)->reserved_extents));
Chris Mason39279cc2007-06-12 06:35:45 -04006720
Chris Mason5a3f23d2009-03-31 13:27:11 -04006721 /*
Josef Bacika6dbd422009-11-11 15:53:34 -05006722 * This can happen where we create an inode, but somebody else also
6723 * created the same inode and we need to destroy the one we already
6724 * created.
6725 */
6726 if (!root)
6727 goto free;
6728
6729 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04006730 * Make sure we're properly removed from the ordered operation
6731 * lists.
6732 */
6733 smp_mb();
6734 if (!list_empty(&BTRFS_I(inode)->ordered_operations)) {
6735 spin_lock(&root->fs_info->ordered_extent_lock);
6736 list_del_init(&BTRFS_I(inode)->ordered_operations);
6737 spin_unlock(&root->fs_info->ordered_extent_lock);
6738 }
6739
Josef Bacik0af3d002010-06-21 14:48:16 -04006740 if (root == root->fs_info->tree_root) {
6741 struct btrfs_block_group_cache *block_group;
6742
6743 block_group = btrfs_lookup_block_group(root->fs_info,
6744 BTRFS_I(inode)->block_group);
6745 if (block_group && block_group->inode == inode) {
6746 spin_lock(&block_group->lock);
6747 block_group->inode = NULL;
6748 spin_unlock(&block_group->lock);
6749 btrfs_put_block_group(block_group);
6750 } else if (block_group) {
6751 btrfs_put_block_group(block_group);
6752 }
6753 }
6754
Yan, Zhengd68fc572010-05-16 10:49:58 -04006755 spin_lock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04006756 if (!list_empty(&BTRFS_I(inode)->i_orphan)) {
Li Zefan33345d012011-04-20 10:31:50 +08006757 printk(KERN_INFO "BTRFS: inode %llu still on the orphan list\n",
6758 (unsigned long long)btrfs_ino(inode));
Yan, Zheng80825102009-11-12 09:35:36 +00006759 list_del_init(&BTRFS_I(inode)->i_orphan);
Josef Bacik7b128762008-07-24 12:17:14 -04006760 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04006761 spin_unlock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04006762
Chris Masond3977122009-01-05 21:25:51 -05006763 while (1) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04006764 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
6765 if (!ordered)
6766 break;
6767 else {
Chris Masond3977122009-01-05 21:25:51 -05006768 printk(KERN_ERR "btrfs found ordered "
6769 "extent %llu %llu on inode cleanup\n",
6770 (unsigned long long)ordered->file_offset,
6771 (unsigned long long)ordered->len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006772 btrfs_remove_ordered_extent(inode, ordered);
6773 btrfs_put_ordered_extent(ordered);
6774 btrfs_put_ordered_extent(ordered);
6775 }
6776 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006777 inode_tree_del(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04006778 btrfs_drop_extent_cache(inode, 0, (u64)-1, 0);
Josef Bacika6dbd422009-11-11 15:53:34 -05006779free:
Miao Xie16cdcec2011-04-22 18:12:22 +08006780 btrfs_remove_delayed_node(inode);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11006781 call_rcu(&inode->i_rcu, btrfs_i_callback);
Chris Mason39279cc2007-06-12 06:35:45 -04006782}
6783
Al Viro45321ac2010-06-07 13:43:19 -04006784int btrfs_drop_inode(struct inode *inode)
Yan, Zheng76dda932009-09-21 16:00:26 -04006785{
6786 struct btrfs_root *root = BTRFS_I(inode)->root;
Al Viro45321ac2010-06-07 13:43:19 -04006787
Josef Bacik0af3d002010-06-21 14:48:16 -04006788 if (btrfs_root_refs(&root->root_item) == 0 &&
Li Zefan82d59022011-04-20 10:33:24 +08006789 !is_free_space_inode(root, inode))
Al Viro45321ac2010-06-07 13:43:19 -04006790 return 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04006791 else
Al Viro45321ac2010-06-07 13:43:19 -04006792 return generic_drop_inode(inode);
Yan, Zheng76dda932009-09-21 16:00:26 -04006793}
6794
Sven Wegener0ee0fda2008-07-30 16:54:26 -04006795static void init_once(void *foo)
Chris Mason39279cc2007-06-12 06:35:45 -04006796{
6797 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
6798
6799 inode_init_once(&ei->vfs_inode);
6800}
6801
6802void btrfs_destroy_cachep(void)
6803{
6804 if (btrfs_inode_cachep)
6805 kmem_cache_destroy(btrfs_inode_cachep);
6806 if (btrfs_trans_handle_cachep)
6807 kmem_cache_destroy(btrfs_trans_handle_cachep);
6808 if (btrfs_transaction_cachep)
6809 kmem_cache_destroy(btrfs_transaction_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04006810 if (btrfs_path_cachep)
6811 kmem_cache_destroy(btrfs_path_cachep);
Josef Bacikdc89e982011-01-28 17:05:48 -05006812 if (btrfs_free_space_cachep)
6813 kmem_cache_destroy(btrfs_free_space_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04006814}
6815
6816int btrfs_init_cachep(void)
6817{
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006818 btrfs_inode_cachep = kmem_cache_create("btrfs_inode_cache",
6819 sizeof(struct btrfs_inode), 0,
6820 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04006821 if (!btrfs_inode_cachep)
6822 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006823
6824 btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle_cache",
6825 sizeof(struct btrfs_trans_handle), 0,
6826 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006827 if (!btrfs_trans_handle_cachep)
6828 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006829
6830 btrfs_transaction_cachep = kmem_cache_create("btrfs_transaction_cache",
6831 sizeof(struct btrfs_transaction), 0,
6832 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006833 if (!btrfs_transaction_cachep)
6834 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006835
6836 btrfs_path_cachep = kmem_cache_create("btrfs_path_cache",
6837 sizeof(struct btrfs_path), 0,
6838 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006839 if (!btrfs_path_cachep)
6840 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006841
Josef Bacikdc89e982011-01-28 17:05:48 -05006842 btrfs_free_space_cachep = kmem_cache_create("btrfs_free_space_cache",
6843 sizeof(struct btrfs_free_space), 0,
6844 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
6845 if (!btrfs_free_space_cachep)
6846 goto fail;
6847
Chris Mason39279cc2007-06-12 06:35:45 -04006848 return 0;
6849fail:
6850 btrfs_destroy_cachep();
6851 return -ENOMEM;
6852}
6853
6854static int btrfs_getattr(struct vfsmount *mnt,
6855 struct dentry *dentry, struct kstat *stat)
6856{
6857 struct inode *inode = dentry->d_inode;
6858 generic_fillattr(inode, stat);
Chris Mason3394e162008-11-17 20:42:26 -05006859 stat->dev = BTRFS_I(inode)->root->anon_super.s_dev;
Chris Masond6667462008-01-03 14:51:00 -05006860 stat->blksize = PAGE_CACHE_SIZE;
Yan Zhenga76a3cd2008-10-09 11:46:29 -04006861 stat->blocks = (inode_get_bytes(inode) +
6862 BTRFS_I(inode)->delalloc_bytes) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -04006863 return 0;
6864}
6865
Liu Bo75e7cb72011-03-22 10:12:20 +00006866/*
6867 * If a file is moved, it will inherit the cow and compression flags of the new
6868 * directory.
6869 */
6870static void fixup_inode_flags(struct inode *dir, struct inode *inode)
6871{
6872 struct btrfs_inode *b_dir = BTRFS_I(dir);
6873 struct btrfs_inode *b_inode = BTRFS_I(inode);
6874
6875 if (b_dir->flags & BTRFS_INODE_NODATACOW)
6876 b_inode->flags |= BTRFS_INODE_NODATACOW;
6877 else
6878 b_inode->flags &= ~BTRFS_INODE_NODATACOW;
6879
6880 if (b_dir->flags & BTRFS_INODE_COMPRESS)
6881 b_inode->flags |= BTRFS_INODE_COMPRESS;
6882 else
6883 b_inode->flags &= ~BTRFS_INODE_COMPRESS;
6884}
6885
Chris Masond3977122009-01-05 21:25:51 -05006886static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry,
6887 struct inode *new_dir, struct dentry *new_dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04006888{
6889 struct btrfs_trans_handle *trans;
6890 struct btrfs_root *root = BTRFS_I(old_dir)->root;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006891 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04006892 struct inode *new_inode = new_dentry->d_inode;
6893 struct inode *old_inode = old_dentry->d_inode;
6894 struct timespec ctime = CURRENT_TIME;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006895 u64 index = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006896 u64 root_objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04006897 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08006898 u64 old_ino = btrfs_ino(old_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006899
Li Zefan33345d012011-04-20 10:31:50 +08006900 if (btrfs_ino(new_dir) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Yan, Zhengf679a842009-09-24 09:17:31 -04006901 return -EPERM;
6902
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006903 /* we only allow rename subvolume link between subvolumes */
Li Zefan33345d012011-04-20 10:31:50 +08006904 if (old_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
Chris Mason3394e162008-11-17 20:42:26 -05006905 return -EXDEV;
6906
Li Zefan33345d012011-04-20 10:31:50 +08006907 if (old_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID ||
6908 (new_inode && btrfs_ino(new_inode) == BTRFS_FIRST_FREE_OBJECTID))
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006909 return -ENOTEMPTY;
6910
Chris Mason39279cc2007-06-12 06:35:45 -04006911 if (S_ISDIR(old_inode->i_mode) && new_inode &&
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006912 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Chris Mason39279cc2007-06-12 06:35:45 -04006913 return -ENOTEMPTY;
Chris Mason5a3f23d2009-03-31 13:27:11 -04006914 /*
6915 * we're using rename to replace one file with another.
6916 * and the replacement file is large. Start IO on it now so
6917 * we don't add too much work to the end of the transaction
6918 */
Bartlomiej Zolnierkiewicz4baf8c92009-08-07 13:47:08 -04006919 if (new_inode && S_ISREG(old_inode->i_mode) && new_inode->i_size &&
Chris Mason5a3f23d2009-03-31 13:27:11 -04006920 old_inode->i_size > BTRFS_ORDERED_OPERATIONS_FLUSH_LIMIT)
6921 filemap_flush(old_inode->i_mapping);
6922
Yan, Zheng76dda932009-09-21 16:00:26 -04006923 /* close the racy window with snapshot create/destroy ioctl */
Li Zefan33345d012011-04-20 10:31:50 +08006924 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Yan, Zheng76dda932009-09-21 16:00:26 -04006925 down_read(&root->fs_info->subvol_sem);
Yan, Zhenga22285a2010-05-16 10:48:46 -04006926 /*
6927 * We want to reserve the absolute worst case amount of items. So if
6928 * both inodes are subvols and we need to unlink them then that would
6929 * require 4 item modifications, but if they are both normal inodes it
6930 * would require 5 item modifications, so we'll assume their normal
6931 * inodes. So 5 * 2 is 10, plus 1 for the new link, so 11 total items
6932 * should cover the worst case number of items we'll modify.
6933 */
6934 trans = btrfs_start_transaction(root, 20);
Johann Lombardib44c59a2011-03-31 13:23:47 +00006935 if (IS_ERR(trans)) {
6936 ret = PTR_ERR(trans);
6937 goto out_notrans;
6938 }
Chris Mason5f39d392007-10-15 16:14:19 -04006939
Yan, Zhenga5719522009-09-24 09:17:31 -04006940 btrfs_set_trans_block_group(trans, new_dir);
Chris Mason39279cc2007-06-12 06:35:45 -04006941
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006942 if (dest != root)
6943 btrfs_record_root_in_trans(trans, dest);
6944
Yan, Zhenga5719522009-09-24 09:17:31 -04006945 ret = btrfs_set_inode_index(new_dir, &index);
6946 if (ret)
6947 goto out_fail;
Chris Mason5a3f23d2009-03-31 13:27:11 -04006948
Li Zefan33345d012011-04-20 10:31:50 +08006949 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006950 /* force full log commit if subvolume involved. */
6951 root->fs_info->last_trans_log_full_commit = trans->transid;
6952 } else {
Yan, Zhenga5719522009-09-24 09:17:31 -04006953 ret = btrfs_insert_inode_ref(trans, dest,
6954 new_dentry->d_name.name,
6955 new_dentry->d_name.len,
Li Zefan33345d012011-04-20 10:31:50 +08006956 old_ino,
6957 btrfs_ino(new_dir), index);
Yan, Zhenga5719522009-09-24 09:17:31 -04006958 if (ret)
6959 goto out_fail;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006960 /*
6961 * this is an ugly little race, but the rename is required
6962 * to make sure that if we crash, the inode is either at the
6963 * old name or the new one. pinning the log transaction lets
6964 * us make sure we don't allow a log commit to come in after
6965 * we unlink the name but before we add the new name back in.
6966 */
6967 btrfs_pin_log_trans(root);
6968 }
Chris Mason12fcfd22009-03-24 10:24:20 -04006969 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04006970 * make sure the inode gets flushed if it is replacing
6971 * something.
6972 */
Li Zefan33345d012011-04-20 10:31:50 +08006973 if (new_inode && new_inode->i_size && S_ISREG(old_inode->i_mode))
Chris Mason5a3f23d2009-03-31 13:27:11 -04006974 btrfs_add_ordered_operation(trans, root, old_inode);
Chris Mason5a3f23d2009-03-31 13:27:11 -04006975
Chris Mason39279cc2007-06-12 06:35:45 -04006976 old_dir->i_ctime = old_dir->i_mtime = ctime;
6977 new_dir->i_ctime = new_dir->i_mtime = ctime;
6978 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04006979
Chris Mason12fcfd22009-03-24 10:24:20 -04006980 if (old_dentry->d_parent != new_dentry->d_parent)
6981 btrfs_record_unlink_dir(trans, old_dir, old_inode, 1);
6982
Li Zefan33345d012011-04-20 10:31:50 +08006983 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006984 root_objectid = BTRFS_I(old_inode)->root->root_key.objectid;
6985 ret = btrfs_unlink_subvol(trans, root, old_dir, root_objectid,
6986 old_dentry->d_name.name,
6987 old_dentry->d_name.len);
6988 } else {
Al Viro92986792011-03-04 17:14:37 +00006989 ret = __btrfs_unlink_inode(trans, root, old_dir,
6990 old_dentry->d_inode,
6991 old_dentry->d_name.name,
6992 old_dentry->d_name.len);
6993 if (!ret)
6994 ret = btrfs_update_inode(trans, root, old_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006995 }
6996 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04006997
6998 if (new_inode) {
6999 new_inode->i_ctime = CURRENT_TIME;
Li Zefan33345d012011-04-20 10:31:50 +08007000 if (unlikely(btrfs_ino(new_inode) ==
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007001 BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
7002 root_objectid = BTRFS_I(new_inode)->location.objectid;
7003 ret = btrfs_unlink_subvol(trans, dest, new_dir,
7004 root_objectid,
7005 new_dentry->d_name.name,
7006 new_dentry->d_name.len);
7007 BUG_ON(new_inode->i_nlink == 0);
7008 } else {
7009 ret = btrfs_unlink_inode(trans, dest, new_dir,
7010 new_dentry->d_inode,
7011 new_dentry->d_name.name,
7012 new_dentry->d_name.len);
7013 }
7014 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04007015 if (new_inode->i_nlink == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04007016 ret = btrfs_orphan_add(trans, new_dentry->d_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007017 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04007018 }
Chris Mason39279cc2007-06-12 06:35:45 -04007019 }
Josef Bacikaec74772008-07-24 12:12:38 -04007020
Liu Bo75e7cb72011-03-22 10:12:20 +00007021 fixup_inode_flags(new_dir, old_inode);
7022
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007023 ret = btrfs_add_link(trans, new_dir, old_inode,
7024 new_dentry->d_name.name,
Yan, Zhenga5719522009-09-24 09:17:31 -04007025 new_dentry->d_name.len, 0, index);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007026 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04007027
Li Zefan33345d012011-04-20 10:31:50 +08007028 if (old_ino != BTRFS_FIRST_FREE_OBJECTID) {
Josef Bacik6a912212010-11-20 09:48:00 +00007029 struct dentry *parent = dget_parent(new_dentry);
7030 btrfs_log_new_name(trans, old_inode, old_dir, parent);
7031 dput(parent);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007032 btrfs_end_log_trans(root);
7033 }
Chris Mason39279cc2007-06-12 06:35:45 -04007034out_fail:
Chris Masonab78c842008-07-29 16:15:18 -04007035 btrfs_end_transaction_throttle(trans, root);
Johann Lombardib44c59a2011-03-31 13:23:47 +00007036out_notrans:
Li Zefan33345d012011-04-20 10:31:50 +08007037 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Yan, Zheng76dda932009-09-21 16:00:26 -04007038 up_read(&root->fs_info->subvol_sem);
Josef Bacik9ed74f22009-09-11 16:12:44 -04007039
Chris Mason39279cc2007-06-12 06:35:45 -04007040 return ret;
7041}
7042
Chris Masond352ac62008-09-29 15:18:18 -04007043/*
7044 * some fairly slow code that needs optimization. This walks the list
7045 * of all the inodes with pending delalloc and forces them to disk.
7046 */
Yan, Zheng24bbcf02009-11-12 09:36:34 +00007047int btrfs_start_delalloc_inodes(struct btrfs_root *root, int delay_iput)
Chris Masonea8c2812008-08-04 23:17:27 -04007048{
7049 struct list_head *head = &root->fs_info->delalloc_inodes;
7050 struct btrfs_inode *binode;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007051 struct inode *inode;
Chris Masonea8c2812008-08-04 23:17:27 -04007052
Yan Zhengc146afa2008-11-12 14:34:12 -05007053 if (root->fs_info->sb->s_flags & MS_RDONLY)
7054 return -EROFS;
7055
Chris Mason75eff682008-12-15 15:54:40 -05007056 spin_lock(&root->fs_info->delalloc_lock);
Chris Masond3977122009-01-05 21:25:51 -05007057 while (!list_empty(head)) {
Chris Masonea8c2812008-08-04 23:17:27 -04007058 binode = list_entry(head->next, struct btrfs_inode,
7059 delalloc_inodes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007060 inode = igrab(&binode->vfs_inode);
7061 if (!inode)
7062 list_del_init(&binode->delalloc_inodes);
Chris Mason75eff682008-12-15 15:54:40 -05007063 spin_unlock(&root->fs_info->delalloc_lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007064 if (inode) {
Chris Mason8c8bee1d2008-09-29 11:19:10 -04007065 filemap_flush(inode->i_mapping);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00007066 if (delay_iput)
7067 btrfs_add_delayed_iput(inode);
7068 else
7069 iput(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007070 }
7071 cond_resched();
Chris Mason75eff682008-12-15 15:54:40 -05007072 spin_lock(&root->fs_info->delalloc_lock);
Chris Masonea8c2812008-08-04 23:17:27 -04007073 }
Chris Mason75eff682008-12-15 15:54:40 -05007074 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason8c8bee1d2008-09-29 11:19:10 -04007075
7076 /* the filemap_flush will queue IO into the worker threads, but
7077 * we have to make sure the IO is actually started and that
7078 * ordered extents get created before we return
7079 */
7080 atomic_inc(&root->fs_info->async_submit_draining);
Chris Masond3977122009-01-05 21:25:51 -05007081 while (atomic_read(&root->fs_info->nr_async_submits) ||
Chris Mason771ed682008-11-06 22:02:51 -05007082 atomic_read(&root->fs_info->async_delalloc_pages)) {
Chris Mason8c8bee1d2008-09-29 11:19:10 -04007083 wait_event(root->fs_info->async_submit_wait,
Chris Mason771ed682008-11-06 22:02:51 -05007084 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
7085 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
Chris Mason8c8bee1d2008-09-29 11:19:10 -04007086 }
7087 atomic_dec(&root->fs_info->async_submit_draining);
Chris Masonea8c2812008-08-04 23:17:27 -04007088 return 0;
7089}
7090
Chris Mason39279cc2007-06-12 06:35:45 -04007091static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
7092 const char *symname)
7093{
7094 struct btrfs_trans_handle *trans;
7095 struct btrfs_root *root = BTRFS_I(dir)->root;
7096 struct btrfs_path *path;
7097 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05007098 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04007099 int err;
7100 int drop_inode = 0;
7101 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04007102 u64 index = 0 ;
Chris Mason39279cc2007-06-12 06:35:45 -04007103 int name_len;
7104 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04007105 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04007106 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04007107 struct extent_buffer *leaf;
Chris Mason1832a6d2007-12-21 16:27:21 -05007108 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04007109
7110 name_len = strlen(symname) + 1;
7111 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
7112 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05007113
Josef Bacik9ed74f22009-09-11 16:12:44 -04007114 /*
7115 * 2 items for inode item and ref
7116 * 2 items for dir items
7117 * 1 item for xattr if selinux is on
7118 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04007119 trans = btrfs_start_transaction(root, 5);
7120 if (IS_ERR(trans))
7121 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05007122
Chris Mason39279cc2007-06-12 06:35:45 -04007123 btrfs_set_trans_block_group(trans, dir);
7124
Li Zefan581bb052011-04-20 10:06:11 +08007125 err = btrfs_find_free_ino(root, &objectid);
7126 if (err)
7127 goto out_unlock;
7128
Josef Bacikaec74772008-07-24 12:12:38 -04007129 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08007130 dentry->d_name.len, btrfs_ino(dir), objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04007131 BTRFS_I(dir)->block_group, S_IFLNK|S_IRWXUGO,
7132 &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04007133 if (IS_ERR(inode)) {
7134 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007135 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04007136 }
Chris Mason39279cc2007-06-12 06:35:45 -04007137
Eric Paris2a7dba32011-02-01 11:05:39 -05007138 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04007139 if (err) {
7140 drop_inode = 1;
7141 goto out_unlock;
7142 }
7143
Chris Mason39279cc2007-06-12 06:35:45 -04007144 btrfs_set_trans_block_group(trans, inode);
Josef Bacika1b075d2010-11-19 20:36:11 +00007145 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04007146 if (err)
7147 drop_inode = 1;
7148 else {
7149 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04007150 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04007151 inode->i_fop = &btrfs_file_operations;
7152 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05007153 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04007154 }
Chris Mason39279cc2007-06-12 06:35:45 -04007155 btrfs_update_inode_block_group(trans, inode);
7156 btrfs_update_inode_block_group(trans, dir);
7157 if (drop_inode)
7158 goto out_unlock;
7159
7160 path = btrfs_alloc_path();
7161 BUG_ON(!path);
Li Zefan33345d012011-04-20 10:31:50 +08007162 key.objectid = btrfs_ino(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007163 key.offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04007164 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
7165 datasize = btrfs_file_extent_calc_inline_size(name_len);
7166 err = btrfs_insert_empty_item(trans, root, path, &key,
7167 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04007168 if (err) {
7169 drop_inode = 1;
7170 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 Masond3c2fdcf2007-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 Masond3c2fdcf2007-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};