blob: d97b69afbbfb412889335f35dbbe334a7d995d78 [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>
Chris Mason4b4e25f2008-11-20 10:22:27 -050040#include "compat.h"
Chris Mason39279cc2007-06-12 06:35:45 -040041#include "ctree.h"
42#include "disk-io.h"
43#include "transaction.h"
44#include "btrfs_inode.h"
45#include "ioctl.h"
46#include "print-tree.h"
Chris Mason0b86a832008-03-24 15:01:56 -040047#include "volumes.h"
Chris Masone6dcd2d2008-07-17 12:53:50 -040048#include "ordered-data.h"
Christoph Hellwig95819c02008-08-28 06:21:17 -040049#include "xattr.h"
Chris Masone02119d2008-09-05 16:13:11 -040050#include "tree-log.h"
Chris Masonc8b97812008-10-29 14:49:59 -040051#include "compression.h"
Chris Masonb4ce94d2009-02-04 09:25:08 -050052#include "locking.h"
Chris Mason39279cc2007-06-12 06:35:45 -040053
54struct btrfs_iget_args {
55 u64 ino;
56 struct btrfs_root *root;
57};
58
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070059static const struct inode_operations btrfs_dir_inode_operations;
60static const struct inode_operations btrfs_symlink_inode_operations;
61static const struct inode_operations btrfs_dir_ro_inode_operations;
62static const struct inode_operations btrfs_special_inode_operations;
63static const struct inode_operations btrfs_file_inode_operations;
Alexey Dobriyan7f094102009-09-21 17:01:10 -070064static const struct address_space_operations btrfs_aops;
65static const struct address_space_operations btrfs_symlink_aops;
Alexey Dobriyan828c0952009-10-01 15:43:56 -070066static const struct file_operations btrfs_dir_file_operations;
Chris Masond1310b22008-01-24 16:13:08 -050067static struct extent_io_ops btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -040068
69static struct kmem_cache *btrfs_inode_cachep;
70struct kmem_cache *btrfs_trans_handle_cachep;
71struct kmem_cache *btrfs_transaction_cachep;
Chris Mason39279cc2007-06-12 06:35:45 -040072struct kmem_cache *btrfs_path_cachep;
73
74#define S_SHIFT 12
75static unsigned char btrfs_type_by_mode[S_IFMT >> S_SHIFT] = {
76 [S_IFREG >> S_SHIFT] = BTRFS_FT_REG_FILE,
77 [S_IFDIR >> S_SHIFT] = BTRFS_FT_DIR,
78 [S_IFCHR >> S_SHIFT] = BTRFS_FT_CHRDEV,
79 [S_IFBLK >> S_SHIFT] = BTRFS_FT_BLKDEV,
80 [S_IFIFO >> S_SHIFT] = BTRFS_FT_FIFO,
81 [S_IFSOCK >> S_SHIFT] = BTRFS_FT_SOCK,
82 [S_IFLNK >> S_SHIFT] = BTRFS_FT_SYMLINK,
83};
84
Josef Bacik7b128762008-07-24 12:17:14 -040085static void btrfs_truncate(struct inode *inode);
Chris Masonc8b97812008-10-29 14:49:59 -040086static int btrfs_finish_ordered_io(struct inode *inode, u64 start, u64 end);
Chris Mason771ed682008-11-06 22:02:51 -050087static noinline int cow_file_range(struct inode *inode,
88 struct page *locked_page,
89 u64 start, u64 end, int *page_started,
90 unsigned long *nr_written, int unlock);
Josef Bacik7b128762008-07-24 12:17:14 -040091
Yan, Zhengf34f57a2009-11-12 09:35:27 +000092static int btrfs_init_inode_security(struct btrfs_trans_handle *trans,
93 struct inode *inode, struct inode *dir)
Jim Owens0279b4c2009-02-04 09:29:13 -050094{
95 int err;
96
Yan, Zhengf34f57a2009-11-12 09:35:27 +000097 err = btrfs_init_acl(trans, inode, dir);
Jim Owens0279b4c2009-02-04 09:29:13 -050098 if (!err)
Yan, Zhengf34f57a2009-11-12 09:35:27 +000099 err = btrfs_xattr_security_init(trans, inode, dir);
Jim Owens0279b4c2009-02-04 09:29:13 -0500100 return err;
101}
102
Chris Masond352ac62008-09-29 15:18:18 -0400103/*
Chris Masonc8b97812008-10-29 14:49:59 -0400104 * this does all the hard work for inserting an inline extent into
105 * the btree. The caller should have done a btrfs_drop_extents so that
106 * no overlapping inline items exist in the btree
107 */
Chris Masond3977122009-01-05 21:25:51 -0500108static noinline int insert_inline_extent(struct btrfs_trans_handle *trans,
Chris Masonc8b97812008-10-29 14:49:59 -0400109 struct btrfs_root *root, struct inode *inode,
110 u64 start, size_t size, size_t compressed_size,
111 struct page **compressed_pages)
112{
113 struct btrfs_key key;
114 struct btrfs_path *path;
115 struct extent_buffer *leaf;
116 struct page *page = NULL;
117 char *kaddr;
118 unsigned long ptr;
119 struct btrfs_file_extent_item *ei;
120 int err = 0;
121 int ret;
122 size_t cur_size = size;
123 size_t datasize;
124 unsigned long offset;
Li Zefan261507a02010-12-17 14:21:50 +0800125 int compress_type = BTRFS_COMPRESS_NONE;
Chris Masonc8b97812008-10-29 14:49:59 -0400126
127 if (compressed_size && compressed_pages) {
Li Zefan261507a02010-12-17 14:21:50 +0800128 compress_type = root->fs_info->compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -0400129 cur_size = compressed_size;
130 }
131
Chris Masond3977122009-01-05 21:25:51 -0500132 path = btrfs_alloc_path();
133 if (!path)
Chris Masonc8b97812008-10-29 14:49:59 -0400134 return -ENOMEM;
135
Chris Masonb9473432009-03-13 11:00:37 -0400136 path->leave_spinning = 1;
Chris Masonc8b97812008-10-29 14:49:59 -0400137 btrfs_set_trans_block_group(trans, inode);
138
139 key.objectid = inode->i_ino;
140 key.offset = start;
141 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
Chris Masonc8b97812008-10-29 14:49:59 -0400142 datasize = btrfs_file_extent_calc_inline_size(cur_size);
143
144 inode_add_bytes(inode, size);
145 ret = btrfs_insert_empty_item(trans, root, path, &key,
146 datasize);
147 BUG_ON(ret);
148 if (ret) {
149 err = ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400150 goto fail;
151 }
152 leaf = path->nodes[0];
153 ei = btrfs_item_ptr(leaf, path->slots[0],
154 struct btrfs_file_extent_item);
155 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
156 btrfs_set_file_extent_type(leaf, ei, BTRFS_FILE_EXTENT_INLINE);
157 btrfs_set_file_extent_encryption(leaf, ei, 0);
158 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
159 btrfs_set_file_extent_ram_bytes(leaf, ei, size);
160 ptr = btrfs_file_extent_inline_start(ei);
161
Li Zefan261507a02010-12-17 14:21:50 +0800162 if (compress_type != BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -0400163 struct page *cpage;
164 int i = 0;
Chris Masond3977122009-01-05 21:25:51 -0500165 while (compressed_size > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -0400166 cpage = compressed_pages[i];
Chris Mason5b050f02008-11-11 09:34:41 -0500167 cur_size = min_t(unsigned long, compressed_size,
Chris Masonc8b97812008-10-29 14:49:59 -0400168 PAGE_CACHE_SIZE);
169
Chris Masonb9473432009-03-13 11:00:37 -0400170 kaddr = kmap_atomic(cpage, KM_USER0);
Chris Masonc8b97812008-10-29 14:49:59 -0400171 write_extent_buffer(leaf, kaddr, ptr, cur_size);
Chris Masonb9473432009-03-13 11:00:37 -0400172 kunmap_atomic(kaddr, KM_USER0);
Chris Masonc8b97812008-10-29 14:49:59 -0400173
174 i++;
175 ptr += cur_size;
176 compressed_size -= cur_size;
177 }
178 btrfs_set_file_extent_compression(leaf, ei,
Li Zefan261507a02010-12-17 14:21:50 +0800179 compress_type);
Chris Masonc8b97812008-10-29 14:49:59 -0400180 } else {
181 page = find_get_page(inode->i_mapping,
182 start >> PAGE_CACHE_SHIFT);
183 btrfs_set_file_extent_compression(leaf, ei, 0);
184 kaddr = kmap_atomic(page, KM_USER0);
185 offset = start & (PAGE_CACHE_SIZE - 1);
186 write_extent_buffer(leaf, kaddr + offset, ptr, size);
187 kunmap_atomic(kaddr, KM_USER0);
188 page_cache_release(page);
189 }
190 btrfs_mark_buffer_dirty(leaf);
191 btrfs_free_path(path);
192
Yan, Zhengc2167752009-11-12 09:34:21 +0000193 /*
194 * we're an inline extent, so nobody can
195 * extend the file past i_size without locking
196 * a page we already have locked.
197 *
198 * We must do any isize and inode updates
199 * before we unlock the pages. Otherwise we
200 * could end up racing with unlink.
201 */
Chris Masonc8b97812008-10-29 14:49:59 -0400202 BTRFS_I(inode)->disk_i_size = inode->i_size;
203 btrfs_update_inode(trans, root, inode);
Yan, Zhengc2167752009-11-12 09:34:21 +0000204
Chris Masonc8b97812008-10-29 14:49:59 -0400205 return 0;
206fail:
207 btrfs_free_path(path);
208 return err;
209}
210
211
212/*
213 * conditionally insert an inline extent into the file. This
214 * does the checks required to make sure the data is small enough
215 * to fit as an inline extent.
216 */
Chris Mason7f366cf2009-03-12 20:12:45 -0400217static noinline int cow_file_range_inline(struct btrfs_trans_handle *trans,
Chris Masonc8b97812008-10-29 14:49:59 -0400218 struct btrfs_root *root,
219 struct inode *inode, u64 start, u64 end,
220 size_t compressed_size,
221 struct page **compressed_pages)
222{
223 u64 isize = i_size_read(inode);
224 u64 actual_end = min(end + 1, isize);
225 u64 inline_len = actual_end - start;
226 u64 aligned_end = (end + root->sectorsize - 1) &
227 ~((u64)root->sectorsize - 1);
228 u64 hint_byte;
229 u64 data_len = inline_len;
230 int ret;
231
232 if (compressed_size)
233 data_len = compressed_size;
234
235 if (start > 0 ||
Chris Mason70b99e62008-10-31 12:46:39 -0400236 actual_end >= PAGE_CACHE_SIZE ||
Chris Masonc8b97812008-10-29 14:49:59 -0400237 data_len >= BTRFS_MAX_INLINE_DATA_SIZE(root) ||
238 (!compressed_size &&
239 (actual_end & (root->sectorsize - 1)) == 0) ||
240 end + 1 < isize ||
241 data_len > root->fs_info->max_inline) {
242 return 1;
243 }
244
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000245 ret = btrfs_drop_extents(trans, inode, start, aligned_end,
Chris Masona1ed8352009-09-11 12:27:37 -0400246 &hint_byte, 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400247 BUG_ON(ret);
248
249 if (isize > actual_end)
250 inline_len = min_t(u64, isize, actual_end);
251 ret = insert_inline_extent(trans, root, inode, start,
252 inline_len, compressed_size,
253 compressed_pages);
254 BUG_ON(ret);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400255 btrfs_delalloc_release_metadata(inode, end + 1 - start);
Chris Masona1ed8352009-09-11 12:27:37 -0400256 btrfs_drop_extent_cache(inode, start, aligned_end - 1, 0);
Chris Masonc8b97812008-10-29 14:49:59 -0400257 return 0;
258}
259
Chris Mason771ed682008-11-06 22:02:51 -0500260struct async_extent {
261 u64 start;
262 u64 ram_size;
263 u64 compressed_size;
264 struct page **pages;
265 unsigned long nr_pages;
Li Zefan261507a02010-12-17 14:21:50 +0800266 int compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500267 struct list_head list;
268};
269
270struct async_cow {
271 struct inode *inode;
272 struct btrfs_root *root;
273 struct page *locked_page;
274 u64 start;
275 u64 end;
276 struct list_head extents;
277 struct btrfs_work work;
278};
279
280static noinline int add_async_extent(struct async_cow *cow,
281 u64 start, u64 ram_size,
282 u64 compressed_size,
283 struct page **pages,
Li Zefan261507a02010-12-17 14:21:50 +0800284 unsigned long nr_pages,
285 int compress_type)
Chris Mason771ed682008-11-06 22:02:51 -0500286{
287 struct async_extent *async_extent;
288
289 async_extent = kmalloc(sizeof(*async_extent), GFP_NOFS);
290 async_extent->start = start;
291 async_extent->ram_size = ram_size;
292 async_extent->compressed_size = compressed_size;
293 async_extent->pages = pages;
294 async_extent->nr_pages = nr_pages;
Li Zefan261507a02010-12-17 14:21:50 +0800295 async_extent->compress_type = compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500296 list_add_tail(&async_extent->list, &cow->extents);
297 return 0;
298}
299
Chris Masonc8b97812008-10-29 14:49:59 -0400300/*
Chris Mason771ed682008-11-06 22:02:51 -0500301 * we create compressed extents in two phases. The first
302 * phase compresses a range of pages that have already been
303 * locked (both pages and state bits are locked).
Chris Masonc8b97812008-10-29 14:49:59 -0400304 *
Chris Mason771ed682008-11-06 22:02:51 -0500305 * This is done inside an ordered work queue, and the compression
306 * is spread across many cpus. The actual IO submission is step
307 * two, and the ordered work queue takes care of making sure that
308 * happens in the same order things were put onto the queue by
309 * writepages and friends.
Chris Masonc8b97812008-10-29 14:49:59 -0400310 *
Chris Mason771ed682008-11-06 22:02:51 -0500311 * If this code finds it can't get good compression, it puts an
312 * entry onto the work queue to write the uncompressed bytes. This
313 * makes sure that both compressed inodes and uncompressed inodes
314 * are written in the same order that pdflush sent them down.
Chris Masond352ac62008-09-29 15:18:18 -0400315 */
Chris Mason771ed682008-11-06 22:02:51 -0500316static noinline int compress_file_range(struct inode *inode,
317 struct page *locked_page,
318 u64 start, u64 end,
319 struct async_cow *async_cow,
320 int *num_added)
Chris Masonb888db22007-08-27 16:49:44 -0400321{
322 struct btrfs_root *root = BTRFS_I(inode)->root;
323 struct btrfs_trans_handle *trans;
Chris Masondb945352007-10-15 16:15:53 -0400324 u64 num_bytes;
Chris Masondb945352007-10-15 16:15:53 -0400325 u64 blocksize = root->sectorsize;
Chris Masonc8b97812008-10-29 14:49:59 -0400326 u64 actual_end;
Chris Mason42dc7ba2008-12-15 11:44:56 -0500327 u64 isize = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400328 int ret = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400329 struct page **pages = NULL;
330 unsigned long nr_pages;
331 unsigned long nr_pages_ret = 0;
332 unsigned long total_compressed = 0;
333 unsigned long total_in = 0;
334 unsigned long max_compressed = 128 * 1024;
Chris Mason771ed682008-11-06 22:02:51 -0500335 unsigned long max_uncompressed = 128 * 1024;
Chris Masonc8b97812008-10-29 14:49:59 -0400336 int i;
337 int will_compress;
Li Zefan261507a02010-12-17 14:21:50 +0800338 int compress_type = root->fs_info->compress_type;
Chris Masonb888db22007-08-27 16:49:44 -0400339
Chris Mason42dc7ba2008-12-15 11:44:56 -0500340 actual_end = min_t(u64, isize, end + 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400341again:
342 will_compress = 0;
343 nr_pages = (end >> PAGE_CACHE_SHIFT) - (start >> PAGE_CACHE_SHIFT) + 1;
344 nr_pages = min(nr_pages, (128 * 1024UL) / PAGE_CACHE_SIZE);
345
Chris Masonf03d9302009-02-04 09:31:06 -0500346 /*
347 * we don't want to send crud past the end of i_size through
348 * compression, that's just a waste of CPU time. So, if the
349 * end of the file is before the start of our current
350 * requested range of bytes, we bail out to the uncompressed
351 * cleanup code that can deal with all of this.
352 *
353 * It isn't really the fastest way to fix things, but this is a
354 * very uncommon corner.
355 */
356 if (actual_end <= start)
357 goto cleanup_and_bail_uncompressed;
358
Chris Masonc8b97812008-10-29 14:49:59 -0400359 total_compressed = actual_end - start;
360
361 /* we want to make sure that amount of ram required to uncompress
362 * an extent is reasonable, so we limit the total size in ram
Chris Mason771ed682008-11-06 22:02:51 -0500363 * of a compressed extent to 128k. This is a crucial number
364 * because it also controls how easily we can spread reads across
365 * cpus for decompression.
366 *
367 * We also want to make sure the amount of IO required to do
368 * a random read is reasonably small, so we limit the size of
369 * a compressed extent to 128k.
Chris Masonc8b97812008-10-29 14:49:59 -0400370 */
371 total_compressed = min(total_compressed, max_uncompressed);
Chris Masondb945352007-10-15 16:15:53 -0400372 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
Chris Masonbe20aa92007-12-17 20:14:01 -0500373 num_bytes = max(blocksize, num_bytes);
Chris Masonc8b97812008-10-29 14:49:59 -0400374 total_in = 0;
375 ret = 0;
Chris Masondb945352007-10-15 16:15:53 -0400376
Chris Mason771ed682008-11-06 22:02:51 -0500377 /*
378 * we do compression for mount -o compress and when the
379 * inode has not been flagged as nocompress. This flag can
380 * change at any time if we discover bad compression ratios.
Chris Masonc8b97812008-10-29 14:49:59 -0400381 */
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200382 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS) &&
Chris Mason1e701a32010-03-11 09:42:04 -0500383 (btrfs_test_opt(root, COMPRESS) ||
384 (BTRFS_I(inode)->force_compress))) {
Chris Masonc8b97812008-10-29 14:49:59 -0400385 WARN_ON(pages);
Chris Masoncfbc2462008-10-30 13:22:14 -0400386 pages = kzalloc(sizeof(struct page *) * nr_pages, GFP_NOFS);
Chris Mason179e29e2007-11-01 11:28:41 -0400387
Li Zefan261507a02010-12-17 14:21:50 +0800388 if (BTRFS_I(inode)->force_compress)
389 compress_type = BTRFS_I(inode)->force_compress;
390
391 ret = btrfs_compress_pages(compress_type,
392 inode->i_mapping, start,
393 total_compressed, pages,
394 nr_pages, &nr_pages_ret,
395 &total_in,
396 &total_compressed,
397 max_compressed);
Chris Masonc8b97812008-10-29 14:49:59 -0400398
399 if (!ret) {
400 unsigned long offset = total_compressed &
401 (PAGE_CACHE_SIZE - 1);
402 struct page *page = pages[nr_pages_ret - 1];
403 char *kaddr;
404
405 /* zero the tail end of the last page, we might be
406 * sending it down to disk
407 */
408 if (offset) {
409 kaddr = kmap_atomic(page, KM_USER0);
410 memset(kaddr + offset, 0,
411 PAGE_CACHE_SIZE - offset);
412 kunmap_atomic(kaddr, KM_USER0);
413 }
414 will_compress = 1;
415 }
416 }
417 if (start == 0) {
Chris Mason771ed682008-11-06 22:02:51 -0500418 trans = btrfs_join_transaction(root, 1);
Tsutomu Itoh3612b492011-01-25 02:51:38 +0000419 BUG_ON(IS_ERR(trans));
Chris Mason771ed682008-11-06 22:02:51 -0500420 btrfs_set_trans_block_group(trans, inode);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400421 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Mason771ed682008-11-06 22:02:51 -0500422
Chris Masonc8b97812008-10-29 14:49:59 -0400423 /* lets try to make an inline extent */
Chris Mason771ed682008-11-06 22:02:51 -0500424 if (ret || total_in < (actual_end - start)) {
Chris Masonc8b97812008-10-29 14:49:59 -0400425 /* we didn't compress the entire range, try
Chris Mason771ed682008-11-06 22:02:51 -0500426 * to make an uncompressed inline extent.
Chris Masonc8b97812008-10-29 14:49:59 -0400427 */
428 ret = cow_file_range_inline(trans, root, inode,
429 start, end, 0, NULL);
430 } else {
Chris Mason771ed682008-11-06 22:02:51 -0500431 /* try making a compressed inline extent */
Chris Masonc8b97812008-10-29 14:49:59 -0400432 ret = cow_file_range_inline(trans, root, inode,
433 start, end,
434 total_compressed, pages);
435 }
436 if (ret == 0) {
Chris Mason771ed682008-11-06 22:02:51 -0500437 /*
438 * inline extent creation worked, we don't need
439 * to create any more async work items. Unlock
440 * and free up our temp pages.
441 */
Chris Masonc8b97812008-10-29 14:49:59 -0400442 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400443 &BTRFS_I(inode)->io_tree,
444 start, end, NULL,
445 EXTENT_CLEAR_UNLOCK_PAGE | EXTENT_CLEAR_DIRTY |
Chris Masona3429ab2009-10-08 12:30:20 -0400446 EXTENT_CLEAR_DELALLOC |
Chris Masona791e352009-10-08 11:27:10 -0400447 EXTENT_SET_WRITEBACK | EXTENT_END_WRITEBACK);
Yan, Zhengc2167752009-11-12 09:34:21 +0000448
449 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400450 goto free_pages_out;
451 }
Yan, Zhengc2167752009-11-12 09:34:21 +0000452 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400453 }
454
455 if (will_compress) {
456 /*
457 * we aren't doing an inline extent round the compressed size
458 * up to a block size boundary so the allocator does sane
459 * things
460 */
461 total_compressed = (total_compressed + blocksize - 1) &
462 ~(blocksize - 1);
463
464 /*
465 * one last check to make sure the compression is really a
466 * win, compare the page count read with the blocks on disk
467 */
468 total_in = (total_in + PAGE_CACHE_SIZE - 1) &
469 ~(PAGE_CACHE_SIZE - 1);
470 if (total_compressed >= total_in) {
471 will_compress = 0;
472 } else {
Chris Masonc8b97812008-10-29 14:49:59 -0400473 num_bytes = total_in;
474 }
475 }
476 if (!will_compress && pages) {
477 /*
478 * the compression code ran but failed to make things smaller,
479 * free any pages it allocated and our page pointer array
480 */
481 for (i = 0; i < nr_pages_ret; i++) {
Chris Mason70b99e62008-10-31 12:46:39 -0400482 WARN_ON(pages[i]->mapping);
Chris Masonc8b97812008-10-29 14:49:59 -0400483 page_cache_release(pages[i]);
484 }
485 kfree(pages);
486 pages = NULL;
487 total_compressed = 0;
488 nr_pages_ret = 0;
489
490 /* flag the file so we don't compress in the future */
Chris Mason1e701a32010-03-11 09:42:04 -0500491 if (!btrfs_test_opt(root, FORCE_COMPRESS) &&
492 !(BTRFS_I(inode)->force_compress)) {
Chris Masona555f812010-01-28 16:18:15 -0500493 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
Chris Mason1e701a32010-03-11 09:42:04 -0500494 }
Chris Masonc8b97812008-10-29 14:49:59 -0400495 }
Chris Mason771ed682008-11-06 22:02:51 -0500496 if (will_compress) {
497 *num_added += 1;
498
499 /* the async work queues will take care of doing actual
500 * allocation on disk for these compressed pages,
501 * and will submit them to the elevator.
502 */
503 add_async_extent(async_cow, start, num_bytes,
Li Zefan261507a02010-12-17 14:21:50 +0800504 total_compressed, pages, nr_pages_ret,
505 compress_type);
Chris Mason771ed682008-11-06 22:02:51 -0500506
Yan, Zheng24ae6362010-12-06 07:02:36 +0000507 if (start + num_bytes < end) {
Chris Mason771ed682008-11-06 22:02:51 -0500508 start += num_bytes;
509 pages = NULL;
510 cond_resched();
511 goto again;
512 }
513 } else {
Chris Masonf03d9302009-02-04 09:31:06 -0500514cleanup_and_bail_uncompressed:
Chris Mason771ed682008-11-06 22:02:51 -0500515 /*
516 * No compression, but we still need to write the pages in
517 * the file we've been given so far. redirty the locked
518 * page if it corresponds to our extent and set things up
519 * for the async work queue to run cow_file_range to do
520 * the normal delalloc dance
521 */
522 if (page_offset(locked_page) >= start &&
523 page_offset(locked_page) <= end) {
524 __set_page_dirty_nobuffers(locked_page);
525 /* unlocked later on in the async handlers */
526 }
Li Zefan261507a02010-12-17 14:21:50 +0800527 add_async_extent(async_cow, start, end - start + 1,
528 0, NULL, 0, BTRFS_COMPRESS_NONE);
Chris Mason771ed682008-11-06 22:02:51 -0500529 *num_added += 1;
530 }
531
532out:
533 return 0;
534
535free_pages_out:
536 for (i = 0; i < nr_pages_ret; i++) {
537 WARN_ON(pages[i]->mapping);
538 page_cache_release(pages[i]);
539 }
Chris Masond3977122009-01-05 21:25:51 -0500540 kfree(pages);
Chris Mason771ed682008-11-06 22:02:51 -0500541
542 goto out;
543}
544
545/*
546 * phase two of compressed writeback. This is the ordered portion
547 * of the code, which only gets called in the order the work was
548 * queued. We walk all the async extents created by compress_file_range
549 * and send them down to the disk.
550 */
551static noinline int submit_compressed_extents(struct inode *inode,
552 struct async_cow *async_cow)
553{
554 struct async_extent *async_extent;
555 u64 alloc_hint = 0;
556 struct btrfs_trans_handle *trans;
557 struct btrfs_key ins;
558 struct extent_map *em;
559 struct btrfs_root *root = BTRFS_I(inode)->root;
560 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
561 struct extent_io_tree *io_tree;
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500562 int ret = 0;
Chris Mason771ed682008-11-06 22:02:51 -0500563
564 if (list_empty(&async_cow->extents))
565 return 0;
566
Chris Mason771ed682008-11-06 22:02:51 -0500567
Chris Masond3977122009-01-05 21:25:51 -0500568 while (!list_empty(&async_cow->extents)) {
Chris Mason771ed682008-11-06 22:02:51 -0500569 async_extent = list_entry(async_cow->extents.next,
570 struct async_extent, list);
571 list_del(&async_extent->list);
572
573 io_tree = &BTRFS_I(inode)->io_tree;
574
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500575retry:
Chris Mason771ed682008-11-06 22:02:51 -0500576 /* did the compression code fall back to uncompressed IO? */
577 if (!async_extent->pages) {
578 int page_started = 0;
579 unsigned long nr_written = 0;
580
581 lock_extent(io_tree, async_extent->start,
Josef Bacik2ac55d42010-02-03 19:33:23 +0000582 async_extent->start +
583 async_extent->ram_size - 1, GFP_NOFS);
Chris Mason771ed682008-11-06 22:02:51 -0500584
585 /* allocate blocks */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500586 ret = cow_file_range(inode, async_cow->locked_page,
587 async_extent->start,
588 async_extent->start +
589 async_extent->ram_size - 1,
590 &page_started, &nr_written, 0);
Chris Mason771ed682008-11-06 22:02:51 -0500591
592 /*
593 * if page_started, cow_file_range inserted an
594 * inline extent and took care of all the unlocking
595 * and IO for us. Otherwise, we need to submit
596 * all those pages down to the drive.
597 */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500598 if (!page_started && !ret)
Chris Mason771ed682008-11-06 22:02:51 -0500599 extent_write_locked_range(io_tree,
600 inode, async_extent->start,
Chris Masond3977122009-01-05 21:25:51 -0500601 async_extent->start +
Chris Mason771ed682008-11-06 22:02:51 -0500602 async_extent->ram_size - 1,
603 btrfs_get_extent,
604 WB_SYNC_ALL);
605 kfree(async_extent);
606 cond_resched();
607 continue;
608 }
609
610 lock_extent(io_tree, async_extent->start,
611 async_extent->start + async_extent->ram_size - 1,
612 GFP_NOFS);
Chris Mason771ed682008-11-06 22:02:51 -0500613
Yan, Zhengc2167752009-11-12 09:34:21 +0000614 trans = btrfs_join_transaction(root, 1);
Tsutomu Itoh3612b492011-01-25 02:51:38 +0000615 BUG_ON(IS_ERR(trans));
Chris Mason771ed682008-11-06 22:02:51 -0500616 ret = btrfs_reserve_extent(trans, root,
617 async_extent->compressed_size,
618 async_extent->compressed_size,
619 0, alloc_hint,
620 (u64)-1, &ins, 1);
Yan, Zhengc2167752009-11-12 09:34:21 +0000621 btrfs_end_transaction(trans, root);
622
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500623 if (ret) {
624 int i;
625 for (i = 0; i < async_extent->nr_pages; i++) {
626 WARN_ON(async_extent->pages[i]->mapping);
627 page_cache_release(async_extent->pages[i]);
628 }
629 kfree(async_extent->pages);
630 async_extent->nr_pages = 0;
631 async_extent->pages = NULL;
632 unlock_extent(io_tree, async_extent->start,
633 async_extent->start +
634 async_extent->ram_size - 1, GFP_NOFS);
635 goto retry;
636 }
637
Yan, Zhengc2167752009-11-12 09:34:21 +0000638 /*
639 * here we're doing allocation and writeback of the
640 * compressed pages
641 */
642 btrfs_drop_extent_cache(inode, async_extent->start,
643 async_extent->start +
644 async_extent->ram_size - 1, 0);
645
Chris Mason771ed682008-11-06 22:02:51 -0500646 em = alloc_extent_map(GFP_NOFS);
Tsutomu Itohc26a9202011-02-14 00:45:29 +0000647 BUG_ON(!em);
Chris Mason771ed682008-11-06 22:02:51 -0500648 em->start = async_extent->start;
649 em->len = async_extent->ram_size;
Chris Mason445a6942008-11-10 11:53:33 -0500650 em->orig_start = em->start;
Chris Mason771ed682008-11-06 22:02:51 -0500651
652 em->block_start = ins.objectid;
653 em->block_len = ins.offset;
654 em->bdev = root->fs_info->fs_devices->latest_bdev;
Li Zefan261507a02010-12-17 14:21:50 +0800655 em->compress_type = async_extent->compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500656 set_bit(EXTENT_FLAG_PINNED, &em->flags);
657 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
658
Chris Masond3977122009-01-05 21:25:51 -0500659 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -0400660 write_lock(&em_tree->lock);
Chris Mason771ed682008-11-06 22:02:51 -0500661 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -0400662 write_unlock(&em_tree->lock);
Chris Mason771ed682008-11-06 22:02:51 -0500663 if (ret != -EEXIST) {
664 free_extent_map(em);
665 break;
666 }
667 btrfs_drop_extent_cache(inode, async_extent->start,
668 async_extent->start +
669 async_extent->ram_size - 1, 0);
670 }
671
Li Zefan261507a02010-12-17 14:21:50 +0800672 ret = btrfs_add_ordered_extent_compress(inode,
673 async_extent->start,
674 ins.objectid,
675 async_extent->ram_size,
676 ins.offset,
677 BTRFS_ORDERED_COMPRESSED,
678 async_extent->compress_type);
Chris Mason771ed682008-11-06 22:02:51 -0500679 BUG_ON(ret);
680
Chris Mason771ed682008-11-06 22:02:51 -0500681 /*
682 * clear dirty, set writeback and unlock the pages.
683 */
684 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400685 &BTRFS_I(inode)->io_tree,
686 async_extent->start,
687 async_extent->start +
688 async_extent->ram_size - 1,
689 NULL, EXTENT_CLEAR_UNLOCK_PAGE |
690 EXTENT_CLEAR_UNLOCK |
Chris Masona3429ab2009-10-08 12:30:20 -0400691 EXTENT_CLEAR_DELALLOC |
Chris Masona791e352009-10-08 11:27:10 -0400692 EXTENT_CLEAR_DIRTY | EXTENT_SET_WRITEBACK);
Chris Mason771ed682008-11-06 22:02:51 -0500693
694 ret = btrfs_submit_compressed_write(inode,
Chris Masond3977122009-01-05 21:25:51 -0500695 async_extent->start,
696 async_extent->ram_size,
697 ins.objectid,
698 ins.offset, async_extent->pages,
699 async_extent->nr_pages);
Chris Mason771ed682008-11-06 22:02:51 -0500700
701 BUG_ON(ret);
Chris Mason771ed682008-11-06 22:02:51 -0500702 alloc_hint = ins.objectid + ins.offset;
703 kfree(async_extent);
704 cond_resched();
705 }
706
Chris Mason771ed682008-11-06 22:02:51 -0500707 return 0;
708}
709
Josef Bacik4b46fce2010-05-23 11:00:55 -0400710static u64 get_extent_allocation_hint(struct inode *inode, u64 start,
711 u64 num_bytes)
712{
713 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
714 struct extent_map *em;
715 u64 alloc_hint = 0;
716
717 read_lock(&em_tree->lock);
718 em = search_extent_mapping(em_tree, start, num_bytes);
719 if (em) {
720 /*
721 * if block start isn't an actual block number then find the
722 * first block in this inode and use that as a hint. If that
723 * block is also bogus then just don't worry about it.
724 */
725 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
726 free_extent_map(em);
727 em = search_extent_mapping(em_tree, 0, 0);
728 if (em && em->block_start < EXTENT_MAP_LAST_BYTE)
729 alloc_hint = em->block_start;
730 if (em)
731 free_extent_map(em);
732 } else {
733 alloc_hint = em->block_start;
734 free_extent_map(em);
735 }
736 }
737 read_unlock(&em_tree->lock);
738
739 return alloc_hint;
740}
741
Chris Mason771ed682008-11-06 22:02:51 -0500742/*
743 * when extent_io.c finds a delayed allocation range in the file,
744 * the call backs end up in this code. The basic idea is to
745 * allocate extents on disk for the range, and create ordered data structs
746 * in ram to track those extents.
747 *
748 * locked_page is the page that writepage had locked already. We use
749 * it to make sure we don't do extra locks or unlocks.
750 *
751 * *page_started is set to one if we unlock locked_page and do everything
752 * required to start IO on it. It may be clean and already done with
753 * IO when we return.
754 */
755static noinline int cow_file_range(struct inode *inode,
756 struct page *locked_page,
757 u64 start, u64 end, int *page_started,
758 unsigned long *nr_written,
759 int unlock)
760{
761 struct btrfs_root *root = BTRFS_I(inode)->root;
762 struct btrfs_trans_handle *trans;
763 u64 alloc_hint = 0;
764 u64 num_bytes;
765 unsigned long ram_size;
766 u64 disk_num_bytes;
767 u64 cur_alloc_size;
768 u64 blocksize = root->sectorsize;
Chris Mason771ed682008-11-06 22:02:51 -0500769 struct btrfs_key ins;
770 struct extent_map *em;
771 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
772 int ret = 0;
773
Josef Bacik0cb59c92010-07-02 12:14:14 -0400774 BUG_ON(root == root->fs_info->tree_root);
Chris Mason771ed682008-11-06 22:02:51 -0500775 trans = btrfs_join_transaction(root, 1);
Tsutomu Itoh3612b492011-01-25 02:51:38 +0000776 BUG_ON(IS_ERR(trans));
Chris Mason771ed682008-11-06 22:02:51 -0500777 btrfs_set_trans_block_group(trans, inode);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400778 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Mason771ed682008-11-06 22:02:51 -0500779
Chris Mason771ed682008-11-06 22:02:51 -0500780 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
781 num_bytes = max(blocksize, num_bytes);
782 disk_num_bytes = num_bytes;
783 ret = 0;
784
785 if (start == 0) {
786 /* lets try to make an inline extent */
787 ret = cow_file_range_inline(trans, root, inode,
788 start, end, 0, NULL);
789 if (ret == 0) {
790 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400791 &BTRFS_I(inode)->io_tree,
792 start, end, NULL,
793 EXTENT_CLEAR_UNLOCK_PAGE |
794 EXTENT_CLEAR_UNLOCK |
795 EXTENT_CLEAR_DELALLOC |
796 EXTENT_CLEAR_DIRTY |
797 EXTENT_SET_WRITEBACK |
798 EXTENT_END_WRITEBACK);
Yan, Zhengc2167752009-11-12 09:34:21 +0000799
Chris Mason771ed682008-11-06 22:02:51 -0500800 *nr_written = *nr_written +
801 (end - start + PAGE_CACHE_SIZE) / PAGE_CACHE_SIZE;
802 *page_started = 1;
803 ret = 0;
804 goto out;
805 }
806 }
Chris Masonc8b97812008-10-29 14:49:59 -0400807
808 BUG_ON(disk_num_bytes >
809 btrfs_super_total_bytes(&root->fs_info->super_copy));
810
Josef Bacik4b46fce2010-05-23 11:00:55 -0400811 alloc_hint = get_extent_allocation_hint(inode, start, num_bytes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400812 btrfs_drop_extent_cache(inode, start, start + num_bytes - 1, 0);
Chris Mason3b951512008-04-17 11:29:12 -0400813
Chris Masond3977122009-01-05 21:25:51 -0500814 while (disk_num_bytes > 0) {
Chris Masona791e352009-10-08 11:27:10 -0400815 unsigned long op;
816
Josef Bacik287a0ab2010-03-19 18:07:23 +0000817 cur_alloc_size = disk_num_bytes;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400818 ret = btrfs_reserve_extent(trans, root, cur_alloc_size,
Chris Mason771ed682008-11-06 22:02:51 -0500819 root->sectorsize, 0, alloc_hint,
Chris Masone6dcd2d2008-07-17 12:53:50 -0400820 (u64)-1, &ins, 1);
Chris Masond3977122009-01-05 21:25:51 -0500821 BUG_ON(ret);
822
Chris Masone6dcd2d2008-07-17 12:53:50 -0400823 em = alloc_extent_map(GFP_NOFS);
Tsutomu Itohc26a9202011-02-14 00:45:29 +0000824 BUG_ON(!em);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400825 em->start = start;
Chris Mason445a6942008-11-10 11:53:33 -0500826 em->orig_start = em->start;
Chris Mason771ed682008-11-06 22:02:51 -0500827 ram_size = ins.offset;
828 em->len = ins.offset;
Chris Masonc8b97812008-10-29 14:49:59 -0400829
Chris Masone6dcd2d2008-07-17 12:53:50 -0400830 em->block_start = ins.objectid;
Chris Masonc8b97812008-10-29 14:49:59 -0400831 em->block_len = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400832 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -0400833 set_bit(EXTENT_FLAG_PINNED, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -0400834
Chris Masond3977122009-01-05 21:25:51 -0500835 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -0400836 write_lock(&em_tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400837 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -0400838 write_unlock(&em_tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400839 if (ret != -EEXIST) {
840 free_extent_map(em);
841 break;
842 }
843 btrfs_drop_extent_cache(inode, start,
Chris Masonc8b97812008-10-29 14:49:59 -0400844 start + ram_size - 1, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400845 }
846
Chris Mason98d20f62008-04-14 09:46:10 -0400847 cur_alloc_size = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400848 ret = btrfs_add_ordered_extent(inode, start, ins.objectid,
Chris Mason771ed682008-11-06 22:02:51 -0500849 ram_size, cur_alloc_size, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400850 BUG_ON(ret);
Chris Masonc8b97812008-10-29 14:49:59 -0400851
Yan Zheng17d217f2008-12-12 10:03:38 -0500852 if (root->root_key.objectid ==
853 BTRFS_DATA_RELOC_TREE_OBJECTID) {
854 ret = btrfs_reloc_clone_csums(inode, start,
855 cur_alloc_size);
856 BUG_ON(ret);
857 }
858
Chris Masond3977122009-01-05 21:25:51 -0500859 if (disk_num_bytes < cur_alloc_size)
Chris Mason3b951512008-04-17 11:29:12 -0400860 break;
Chris Masond3977122009-01-05 21:25:51 -0500861
Chris Masonc8b97812008-10-29 14:49:59 -0400862 /* we're not doing compressed IO, don't unlock the first
863 * page (which the caller expects to stay locked), don't
864 * clear any dirty bits and don't set any writeback bits
Chris Mason8b62b722009-09-02 16:53:46 -0400865 *
866 * Do set the Private2 bit so we know this page was properly
867 * setup for writepage
Chris Masonc8b97812008-10-29 14:49:59 -0400868 */
Chris Masona791e352009-10-08 11:27:10 -0400869 op = unlock ? EXTENT_CLEAR_UNLOCK_PAGE : 0;
870 op |= EXTENT_CLEAR_UNLOCK | EXTENT_CLEAR_DELALLOC |
871 EXTENT_SET_PRIVATE2;
872
Chris Masonc8b97812008-10-29 14:49:59 -0400873 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
874 start, start + ram_size - 1,
Chris Masona791e352009-10-08 11:27:10 -0400875 locked_page, op);
Chris Masonc8b97812008-10-29 14:49:59 -0400876 disk_num_bytes -= cur_alloc_size;
Chris Masonc59f8952007-12-17 20:14:04 -0500877 num_bytes -= cur_alloc_size;
878 alloc_hint = ins.objectid + ins.offset;
879 start += cur_alloc_size;
Chris Masonb888db22007-08-27 16:49:44 -0400880 }
Chris Masonb888db22007-08-27 16:49:44 -0400881out:
Chris Mason771ed682008-11-06 22:02:51 -0500882 ret = 0;
Chris Masonb888db22007-08-27 16:49:44 -0400883 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400884
Chris Masonbe20aa92007-12-17 20:14:01 -0500885 return ret;
Chris Mason771ed682008-11-06 22:02:51 -0500886}
Chris Masonc8b97812008-10-29 14:49:59 -0400887
Chris Mason771ed682008-11-06 22:02:51 -0500888/*
889 * work queue call back to started compression on a file and pages
890 */
891static noinline void async_cow_start(struct btrfs_work *work)
892{
893 struct async_cow *async_cow;
894 int num_added = 0;
895 async_cow = container_of(work, struct async_cow, work);
896
897 compress_file_range(async_cow->inode, async_cow->locked_page,
898 async_cow->start, async_cow->end, async_cow,
899 &num_added);
900 if (num_added == 0)
901 async_cow->inode = NULL;
902}
903
904/*
905 * work queue call back to submit previously compressed pages
906 */
907static noinline void async_cow_submit(struct btrfs_work *work)
908{
909 struct async_cow *async_cow;
910 struct btrfs_root *root;
911 unsigned long nr_pages;
912
913 async_cow = container_of(work, struct async_cow, work);
914
915 root = async_cow->root;
916 nr_pages = (async_cow->end - async_cow->start + PAGE_CACHE_SIZE) >>
917 PAGE_CACHE_SHIFT;
918
919 atomic_sub(nr_pages, &root->fs_info->async_delalloc_pages);
920
921 if (atomic_read(&root->fs_info->async_delalloc_pages) <
922 5 * 1042 * 1024 &&
923 waitqueue_active(&root->fs_info->async_submit_wait))
924 wake_up(&root->fs_info->async_submit_wait);
925
Chris Masond3977122009-01-05 21:25:51 -0500926 if (async_cow->inode)
Chris Mason771ed682008-11-06 22:02:51 -0500927 submit_compressed_extents(async_cow->inode, async_cow);
Chris Mason771ed682008-11-06 22:02:51 -0500928}
Chris Masonc8b97812008-10-29 14:49:59 -0400929
Chris Mason771ed682008-11-06 22:02:51 -0500930static noinline void async_cow_free(struct btrfs_work *work)
931{
932 struct async_cow *async_cow;
933 async_cow = container_of(work, struct async_cow, work);
934 kfree(async_cow);
935}
936
937static int cow_file_range_async(struct inode *inode, struct page *locked_page,
938 u64 start, u64 end, int *page_started,
939 unsigned long *nr_written)
940{
941 struct async_cow *async_cow;
942 struct btrfs_root *root = BTRFS_I(inode)->root;
943 unsigned long nr_pages;
944 u64 cur_end;
945 int limit = 10 * 1024 * 1042;
946
Chris Masona3429ab2009-10-08 12:30:20 -0400947 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, EXTENT_LOCKED,
948 1, 0, NULL, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -0500949 while (start < end) {
Chris Mason771ed682008-11-06 22:02:51 -0500950 async_cow = kmalloc(sizeof(*async_cow), GFP_NOFS);
951 async_cow->inode = inode;
952 async_cow->root = root;
953 async_cow->locked_page = locked_page;
954 async_cow->start = start;
955
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200956 if (BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS)
Chris Mason771ed682008-11-06 22:02:51 -0500957 cur_end = end;
958 else
959 cur_end = min(end, start + 512 * 1024 - 1);
960
961 async_cow->end = cur_end;
962 INIT_LIST_HEAD(&async_cow->extents);
963
964 async_cow->work.func = async_cow_start;
965 async_cow->work.ordered_func = async_cow_submit;
966 async_cow->work.ordered_free = async_cow_free;
967 async_cow->work.flags = 0;
968
Chris Mason771ed682008-11-06 22:02:51 -0500969 nr_pages = (cur_end - start + PAGE_CACHE_SIZE) >>
970 PAGE_CACHE_SHIFT;
971 atomic_add(nr_pages, &root->fs_info->async_delalloc_pages);
972
973 btrfs_queue_worker(&root->fs_info->delalloc_workers,
974 &async_cow->work);
975
976 if (atomic_read(&root->fs_info->async_delalloc_pages) > limit) {
977 wait_event(root->fs_info->async_submit_wait,
978 (atomic_read(&root->fs_info->async_delalloc_pages) <
979 limit));
980 }
981
Chris Masond3977122009-01-05 21:25:51 -0500982 while (atomic_read(&root->fs_info->async_submit_draining) &&
Chris Mason771ed682008-11-06 22:02:51 -0500983 atomic_read(&root->fs_info->async_delalloc_pages)) {
984 wait_event(root->fs_info->async_submit_wait,
985 (atomic_read(&root->fs_info->async_delalloc_pages) ==
986 0));
987 }
988
989 *nr_written += nr_pages;
990 start = cur_end + 1;
991 }
992 *page_started = 1;
993 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -0500994}
995
Chris Masond3977122009-01-05 21:25:51 -0500996static noinline int csum_exist_in_range(struct btrfs_root *root,
Yan Zheng17d217f2008-12-12 10:03:38 -0500997 u64 bytenr, u64 num_bytes)
998{
999 int ret;
1000 struct btrfs_ordered_sum *sums;
1001 LIST_HEAD(list);
1002
Yan Zheng07d400a2009-01-06 11:42:00 -05001003 ret = btrfs_lookup_csums_range(root->fs_info->csum_root, bytenr,
1004 bytenr + num_bytes - 1, &list);
Yan Zheng17d217f2008-12-12 10:03:38 -05001005 if (ret == 0 && list_empty(&list))
1006 return 0;
1007
1008 while (!list_empty(&list)) {
1009 sums = list_entry(list.next, struct btrfs_ordered_sum, list);
1010 list_del(&sums->list);
1011 kfree(sums);
1012 }
1013 return 1;
1014}
1015
Chris Masond352ac62008-09-29 15:18:18 -04001016/*
1017 * when nowcow writeback call back. This checks for snapshots or COW copies
1018 * of the extents that exist in the file, and COWs the file as required.
1019 *
1020 * If no cow copies or snapshots exist, we write directly to the existing
1021 * blocks on disk
1022 */
Chris Mason7f366cf2009-03-12 20:12:45 -04001023static noinline int run_delalloc_nocow(struct inode *inode,
1024 struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001025 u64 start, u64 end, int *page_started, int force,
1026 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001027{
Chris Masonbe20aa92007-12-17 20:14:01 -05001028 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001029 struct btrfs_trans_handle *trans;
Chris Masonbe20aa92007-12-17 20:14:01 -05001030 struct extent_buffer *leaf;
Chris Masonbe20aa92007-12-17 20:14:01 -05001031 struct btrfs_path *path;
Yan Zheng80ff3852008-10-30 14:20:02 -04001032 struct btrfs_file_extent_item *fi;
Chris Masonbe20aa92007-12-17 20:14:01 -05001033 struct btrfs_key found_key;
Yan Zheng80ff3852008-10-30 14:20:02 -04001034 u64 cow_start;
1035 u64 cur_offset;
1036 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001037 u64 extent_offset;
Yan Zheng80ff3852008-10-30 14:20:02 -04001038 u64 disk_bytenr;
1039 u64 num_bytes;
1040 int extent_type;
1041 int ret;
Yan Zhengd899e052008-10-30 14:25:28 -04001042 int type;
Yan Zheng80ff3852008-10-30 14:20:02 -04001043 int nocow;
1044 int check_prev = 1;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001045 bool nolock = false;
Chris Masonbe20aa92007-12-17 20:14:01 -05001046
1047 path = btrfs_alloc_path();
1048 BUG_ON(!path);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001049 if (root == root->fs_info->tree_root) {
1050 nolock = true;
1051 trans = btrfs_join_transaction_nolock(root, 1);
1052 } else {
1053 trans = btrfs_join_transaction(root, 1);
1054 }
Tsutomu Itoh3612b492011-01-25 02:51:38 +00001055 BUG_ON(IS_ERR(trans));
Chris Masonbe20aa92007-12-17 20:14:01 -05001056
Yan Zheng80ff3852008-10-30 14:20:02 -04001057 cow_start = (u64)-1;
1058 cur_offset = start;
1059 while (1) {
1060 ret = btrfs_lookup_file_extent(trans, root, path, inode->i_ino,
1061 cur_offset, 0);
1062 BUG_ON(ret < 0);
1063 if (ret > 0 && path->slots[0] > 0 && check_prev) {
1064 leaf = path->nodes[0];
1065 btrfs_item_key_to_cpu(leaf, &found_key,
1066 path->slots[0] - 1);
1067 if (found_key.objectid == inode->i_ino &&
1068 found_key.type == BTRFS_EXTENT_DATA_KEY)
1069 path->slots[0]--;
1070 }
1071 check_prev = 0;
1072next_slot:
1073 leaf = path->nodes[0];
1074 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1075 ret = btrfs_next_leaf(root, path);
1076 if (ret < 0)
1077 BUG_ON(1);
1078 if (ret > 0)
1079 break;
1080 leaf = path->nodes[0];
1081 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001082
Yan Zheng80ff3852008-10-30 14:20:02 -04001083 nocow = 0;
1084 disk_bytenr = 0;
Yan Zheng17d217f2008-12-12 10:03:38 -05001085 num_bytes = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001086 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05001087
Yan Zheng80ff3852008-10-30 14:20:02 -04001088 if (found_key.objectid > inode->i_ino ||
1089 found_key.type > BTRFS_EXTENT_DATA_KEY ||
1090 found_key.offset > end)
1091 break;
Chris Masonbe20aa92007-12-17 20:14:01 -05001092
Yan Zheng80ff3852008-10-30 14:20:02 -04001093 if (found_key.offset > cur_offset) {
1094 extent_end = found_key.offset;
Chris Masone9061e22009-10-09 09:57:45 -04001095 extent_type = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001096 goto out_check;
1097 }
Chris Masonc31f8832008-01-08 15:46:31 -05001098
Yan Zheng80ff3852008-10-30 14:20:02 -04001099 fi = btrfs_item_ptr(leaf, path->slots[0],
1100 struct btrfs_file_extent_item);
1101 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Masonbe20aa92007-12-17 20:14:01 -05001102
Yan Zhengd899e052008-10-30 14:25:28 -04001103 if (extent_type == BTRFS_FILE_EXTENT_REG ||
1104 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001105 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001106 extent_offset = btrfs_file_extent_offset(leaf, fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001107 extent_end = found_key.offset +
1108 btrfs_file_extent_num_bytes(leaf, fi);
1109 if (extent_end <= start) {
1110 path->slots[0]++;
1111 goto next_slot;
1112 }
Yan Zheng17d217f2008-12-12 10:03:38 -05001113 if (disk_bytenr == 0)
1114 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001115 if (btrfs_file_extent_compression(leaf, fi) ||
1116 btrfs_file_extent_encryption(leaf, fi) ||
1117 btrfs_file_extent_other_encoding(leaf, fi))
1118 goto out_check;
Yan Zhengd899e052008-10-30 14:25:28 -04001119 if (extent_type == BTRFS_FILE_EXTENT_REG && !force)
1120 goto out_check;
Yan Zhengd2fb3432008-12-11 16:30:39 -05001121 if (btrfs_extent_readonly(root, disk_bytenr))
Yan Zheng80ff3852008-10-30 14:20:02 -04001122 goto out_check;
Yan Zheng17d217f2008-12-12 10:03:38 -05001123 if (btrfs_cross_ref_exist(trans, root, inode->i_ino,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001124 found_key.offset -
1125 extent_offset, disk_bytenr))
Yan Zheng17d217f2008-12-12 10:03:38 -05001126 goto out_check;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001127 disk_bytenr += extent_offset;
Yan Zheng17d217f2008-12-12 10:03:38 -05001128 disk_bytenr += cur_offset - found_key.offset;
1129 num_bytes = min(end + 1, extent_end) - cur_offset;
1130 /*
1131 * force cow if csum exists in the range.
1132 * this ensure that csum for a given extent are
1133 * either valid or do not exist.
1134 */
1135 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
1136 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001137 nocow = 1;
1138 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1139 extent_end = found_key.offset +
1140 btrfs_file_extent_inline_len(leaf, fi);
1141 extent_end = ALIGN(extent_end, root->sectorsize);
1142 } else {
1143 BUG_ON(1);
1144 }
1145out_check:
1146 if (extent_end <= start) {
1147 path->slots[0]++;
1148 goto next_slot;
1149 }
1150 if (!nocow) {
1151 if (cow_start == (u64)-1)
1152 cow_start = cur_offset;
1153 cur_offset = extent_end;
1154 if (cur_offset > end)
1155 break;
1156 path->slots[0]++;
1157 goto next_slot;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001158 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001159
Yan Zheng7ea394f2008-08-05 13:05:02 -04001160 btrfs_release_path(root, path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001161 if (cow_start != (u64)-1) {
1162 ret = cow_file_range(inode, locked_page, cow_start,
Chris Mason771ed682008-11-06 22:02:51 -05001163 found_key.offset - 1, page_started,
1164 nr_written, 1);
Yan Zheng80ff3852008-10-30 14:20:02 -04001165 BUG_ON(ret);
1166 cow_start = (u64)-1;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001167 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001168
Yan Zhengd899e052008-10-30 14:25:28 -04001169 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
1170 struct extent_map *em;
1171 struct extent_map_tree *em_tree;
1172 em_tree = &BTRFS_I(inode)->extent_tree;
1173 em = alloc_extent_map(GFP_NOFS);
Tsutomu Itohc26a9202011-02-14 00:45:29 +00001174 BUG_ON(!em);
Yan Zhengd899e052008-10-30 14:25:28 -04001175 em->start = cur_offset;
Chris Mason445a6942008-11-10 11:53:33 -05001176 em->orig_start = em->start;
Yan Zhengd899e052008-10-30 14:25:28 -04001177 em->len = num_bytes;
1178 em->block_len = num_bytes;
1179 em->block_start = disk_bytenr;
1180 em->bdev = root->fs_info->fs_devices->latest_bdev;
1181 set_bit(EXTENT_FLAG_PINNED, &em->flags);
1182 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04001183 write_lock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001184 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04001185 write_unlock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001186 if (ret != -EEXIST) {
1187 free_extent_map(em);
1188 break;
1189 }
1190 btrfs_drop_extent_cache(inode, em->start,
1191 em->start + em->len - 1, 0);
1192 }
1193 type = BTRFS_ORDERED_PREALLOC;
1194 } else {
1195 type = BTRFS_ORDERED_NOCOW;
1196 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001197
1198 ret = btrfs_add_ordered_extent(inode, cur_offset, disk_bytenr,
Yan Zhengd899e052008-10-30 14:25:28 -04001199 num_bytes, num_bytes, type);
1200 BUG_ON(ret);
Chris Mason771ed682008-11-06 22:02:51 -05001201
Yan, Zhengefa56462010-05-16 10:49:59 -04001202 if (root->root_key.objectid ==
1203 BTRFS_DATA_RELOC_TREE_OBJECTID) {
1204 ret = btrfs_reloc_clone_csums(inode, cur_offset,
1205 num_bytes);
1206 BUG_ON(ret);
1207 }
1208
Yan Zhengd899e052008-10-30 14:25:28 -04001209 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
Chris Masona791e352009-10-08 11:27:10 -04001210 cur_offset, cur_offset + num_bytes - 1,
1211 locked_page, EXTENT_CLEAR_UNLOCK_PAGE |
1212 EXTENT_CLEAR_UNLOCK | EXTENT_CLEAR_DELALLOC |
1213 EXTENT_SET_PRIVATE2);
Yan Zheng80ff3852008-10-30 14:20:02 -04001214 cur_offset = extent_end;
1215 if (cur_offset > end)
1216 break;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001217 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001218 btrfs_release_path(root, path);
1219
1220 if (cur_offset <= end && cow_start == (u64)-1)
1221 cow_start = cur_offset;
1222 if (cow_start != (u64)-1) {
1223 ret = cow_file_range(inode, locked_page, cow_start, end,
Chris Mason771ed682008-11-06 22:02:51 -05001224 page_started, nr_written, 1);
Yan Zheng80ff3852008-10-30 14:20:02 -04001225 BUG_ON(ret);
1226 }
1227
Josef Bacik0cb59c92010-07-02 12:14:14 -04001228 if (nolock) {
1229 ret = btrfs_end_transaction_nolock(trans, root);
1230 BUG_ON(ret);
1231 } else {
1232 ret = btrfs_end_transaction(trans, root);
1233 BUG_ON(ret);
1234 }
Yan Zheng7ea394f2008-08-05 13:05:02 -04001235 btrfs_free_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001236 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05001237}
1238
Chris Masond352ac62008-09-29 15:18:18 -04001239/*
1240 * extent_io.c call back to do delayed allocation processing
1241 */
Chris Masonc8b97812008-10-29 14:49:59 -04001242static int run_delalloc_range(struct inode *inode, struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001243 u64 start, u64 end, int *page_started,
1244 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001245{
Chris Masonbe20aa92007-12-17 20:14:01 -05001246 int ret;
Chris Mason7f366cf2009-03-12 20:12:45 -04001247 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masona2135012008-06-25 16:01:30 -04001248
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001249 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW)
Chris Masonc8b97812008-10-29 14:49:59 -04001250 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001251 page_started, 1, nr_written);
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001252 else if (BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC)
Yan Zhengd899e052008-10-30 14:25:28 -04001253 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001254 page_started, 0, nr_written);
Chris Mason1e701a32010-03-11 09:42:04 -05001255 else if (!btrfs_test_opt(root, COMPRESS) &&
1256 !(BTRFS_I(inode)->force_compress))
Chris Mason7f366cf2009-03-12 20:12:45 -04001257 ret = cow_file_range(inode, locked_page, start, end,
1258 page_started, nr_written, 1);
Chris Masonbe20aa92007-12-17 20:14:01 -05001259 else
Chris Mason771ed682008-11-06 22:02:51 -05001260 ret = cow_file_range_async(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001261 page_started, nr_written);
Chris Masonb888db22007-08-27 16:49:44 -04001262 return ret;
1263}
1264
Josef Bacik9ed74f22009-09-11 16:12:44 -04001265static int btrfs_split_extent_hook(struct inode *inode,
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001266 struct extent_state *orig, u64 split)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001267{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001268 /* not delalloc, ignore it */
Josef Bacik9ed74f22009-09-11 16:12:44 -04001269 if (!(orig->state & EXTENT_DELALLOC))
1270 return 0;
1271
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001272 atomic_inc(&BTRFS_I(inode)->outstanding_extents);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001273 return 0;
1274}
1275
1276/*
1277 * extent_io.c merge_extent_hook, used to track merged delayed allocation
1278 * extents so we can keep track of new extents that are just merged onto old
1279 * extents, such as when we are doing sequential writes, so we can properly
1280 * account for the metadata space we'll need.
1281 */
1282static int btrfs_merge_extent_hook(struct inode *inode,
1283 struct extent_state *new,
1284 struct extent_state *other)
1285{
Josef Bacik9ed74f22009-09-11 16:12:44 -04001286 /* not delalloc, ignore it */
1287 if (!(other->state & EXTENT_DELALLOC))
1288 return 0;
1289
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001290 atomic_dec(&BTRFS_I(inode)->outstanding_extents);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001291 return 0;
1292}
1293
Chris Masond352ac62008-09-29 15:18:18 -04001294/*
1295 * extent_io.c set_bit_hook, used to track delayed allocation
1296 * bytes in this file, and to maintain the list of inodes that
1297 * have pending delalloc work to be done.
1298 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001299static int btrfs_set_bit_hook(struct inode *inode,
1300 struct extent_state *state, int *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001301{
Josef Bacik9ed74f22009-09-11 16:12:44 -04001302
Chris Mason75eff682008-12-15 15:54:40 -05001303 /*
1304 * set_bit and clear bit hooks normally require _irqsave/restore
1305 * but in this case, we are only testeing for the DELALLOC
1306 * bit, which is only set or cleared with irqs on
1307 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001308 if (!(state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001309 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001310 u64 len = state->end + 1 - state->start;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001311 int do_list = (root->root_key.objectid !=
1312 BTRFS_ROOT_TREE_OBJECTID);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001313
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001314 if (*bits & EXTENT_FIRST_DELALLOC)
1315 *bits &= ~EXTENT_FIRST_DELALLOC;
1316 else
1317 atomic_inc(&BTRFS_I(inode)->outstanding_extents);
Josef Bacik287a0ab2010-03-19 18:07:23 +00001318
Chris Mason75eff682008-12-15 15:54:40 -05001319 spin_lock(&root->fs_info->delalloc_lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001320 BTRFS_I(inode)->delalloc_bytes += len;
1321 root->fs_info->delalloc_bytes += len;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001322 if (do_list && list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
Chris Masonea8c2812008-08-04 23:17:27 -04001323 list_add_tail(&BTRFS_I(inode)->delalloc_inodes,
1324 &root->fs_info->delalloc_inodes);
1325 }
Chris Mason75eff682008-12-15 15:54:40 -05001326 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason291d6732008-01-29 15:55:23 -05001327 }
1328 return 0;
1329}
1330
Chris Masond352ac62008-09-29 15:18:18 -04001331/*
1332 * extent_io.c clear_bit_hook, see set_bit_hook for why
1333 */
Josef Bacik9ed74f22009-09-11 16:12:44 -04001334static int btrfs_clear_bit_hook(struct inode *inode,
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001335 struct extent_state *state, int *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001336{
Chris Mason75eff682008-12-15 15:54:40 -05001337 /*
1338 * set_bit and clear bit hooks normally require _irqsave/restore
1339 * but in this case, we are only testeing for the DELALLOC
1340 * bit, which is only set or cleared with irqs on
1341 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001342 if ((state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001343 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001344 u64 len = state->end + 1 - state->start;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001345 int do_list = (root->root_key.objectid !=
1346 BTRFS_ROOT_TREE_OBJECTID);
Chris Masonbcbfce82008-04-22 13:26:47 -04001347
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001348 if (*bits & EXTENT_FIRST_DELALLOC)
1349 *bits &= ~EXTENT_FIRST_DELALLOC;
1350 else if (!(*bits & EXTENT_DO_ACCOUNTING))
1351 atomic_dec(&BTRFS_I(inode)->outstanding_extents);
1352
1353 if (*bits & EXTENT_DO_ACCOUNTING)
1354 btrfs_delalloc_release_metadata(inode, len);
1355
Josef Bacik0cb59c92010-07-02 12:14:14 -04001356 if (root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID
1357 && do_list)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001358 btrfs_free_reserved_data_space(inode, len);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001359
Chris Mason75eff682008-12-15 15:54:40 -05001360 spin_lock(&root->fs_info->delalloc_lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001361 root->fs_info->delalloc_bytes -= len;
1362 BTRFS_I(inode)->delalloc_bytes -= len;
1363
Josef Bacik0cb59c92010-07-02 12:14:14 -04001364 if (do_list && BTRFS_I(inode)->delalloc_bytes == 0 &&
Chris Masonea8c2812008-08-04 23:17:27 -04001365 !list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1366 list_del_init(&BTRFS_I(inode)->delalloc_inodes);
1367 }
Chris Mason75eff682008-12-15 15:54:40 -05001368 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason291d6732008-01-29 15:55:23 -05001369 }
1370 return 0;
1371}
1372
Chris Masond352ac62008-09-29 15:18:18 -04001373/*
1374 * extent_io.c merge_bio_hook, this must check the chunk tree to make sure
1375 * we don't create bios that span stripes or chunks
1376 */
Chris Mason239b14b2008-03-24 15:02:07 -04001377int btrfs_merge_bio_hook(struct page *page, unsigned long offset,
Chris Masonc8b97812008-10-29 14:49:59 -04001378 size_t size, struct bio *bio,
1379 unsigned long bio_flags)
Chris Mason239b14b2008-03-24 15:02:07 -04001380{
1381 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
1382 struct btrfs_mapping_tree *map_tree;
Chris Masona62b9402008-10-03 16:31:08 -04001383 u64 logical = (u64)bio->bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -04001384 u64 length = 0;
1385 u64 map_length;
Chris Mason239b14b2008-03-24 15:02:07 -04001386 int ret;
1387
Chris Mason771ed682008-11-06 22:02:51 -05001388 if (bio_flags & EXTENT_BIO_COMPRESSED)
1389 return 0;
1390
Chris Masonf2d8d742008-04-21 10:03:05 -04001391 length = bio->bi_size;
Chris Mason239b14b2008-03-24 15:02:07 -04001392 map_tree = &root->fs_info->mapping_tree;
1393 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04001394 ret = btrfs_map_block(map_tree, READ, logical,
Chris Masonf1885912008-04-09 16:28:12 -04001395 &map_length, NULL, 0);
Chris Masoncea9e442008-04-09 16:28:12 -04001396
Chris Masond3977122009-01-05 21:25:51 -05001397 if (map_length < length + size)
Chris Mason239b14b2008-03-24 15:02:07 -04001398 return 1;
Andi Kleen411fc6b2010-10-29 15:14:31 -04001399 return ret;
Chris Mason239b14b2008-03-24 15:02:07 -04001400}
1401
Chris Masond352ac62008-09-29 15:18:18 -04001402/*
1403 * in order to insert checksums into the metadata in large chunks,
1404 * we wait until bio submission time. All the pages in the bio are
1405 * checksummed and sums are attached onto the ordered extent record.
1406 *
1407 * At IO completion time the cums attached on the ordered extent record
1408 * are inserted into the btree
1409 */
Chris Masond3977122009-01-05 21:25:51 -05001410static int __btrfs_submit_bio_start(struct inode *inode, int rw,
1411 struct bio *bio, int mirror_num,
Chris Masoneaf25d92010-05-25 09:48:28 -04001412 unsigned long bio_flags,
1413 u64 bio_offset)
Chris Mason065631f2008-02-20 12:07:25 -05001414{
Chris Mason065631f2008-02-20 12:07:25 -05001415 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason065631f2008-02-20 12:07:25 -05001416 int ret = 0;
Chris Masone0156402008-04-16 11:15:20 -04001417
Chris Masond20f7042008-12-08 16:58:54 -05001418 ret = btrfs_csum_one_bio(root, inode, bio, 0, 0);
Chris Mason44b8bd72008-04-16 11:14:51 -04001419 BUG_ON(ret);
Chris Mason4a69a412008-11-06 22:03:00 -05001420 return 0;
1421}
Chris Masone0156402008-04-16 11:15:20 -04001422
Chris Mason4a69a412008-11-06 22:03:00 -05001423/*
1424 * in order to insert checksums into the metadata in large chunks,
1425 * we wait until bio submission time. All the pages in the bio are
1426 * checksummed and sums are attached onto the ordered extent record.
1427 *
1428 * At IO completion time the cums attached on the ordered extent record
1429 * are inserted into the btree
1430 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001431static int __btrfs_submit_bio_done(struct inode *inode, int rw, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001432 int mirror_num, unsigned long bio_flags,
1433 u64 bio_offset)
Chris Mason4a69a412008-11-06 22:03:00 -05001434{
1435 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason8b712842008-06-11 16:50:36 -04001436 return btrfs_map_bio(root, rw, bio, mirror_num, 1);
Chris Mason44b8bd72008-04-16 11:14:51 -04001437}
1438
Chris Masond352ac62008-09-29 15:18:18 -04001439/*
Chris Masoncad321a2008-12-17 14:51:42 -05001440 * extent_io.c submission hook. This does the right thing for csum calculation
1441 * on write, or reading the csums from the tree before a read
Chris Masond352ac62008-09-29 15:18:18 -04001442 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001443static int btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001444 int mirror_num, unsigned long bio_flags,
1445 u64 bio_offset)
Chris Mason44b8bd72008-04-16 11:14:51 -04001446{
1447 struct btrfs_root *root = BTRFS_I(inode)->root;
1448 int ret = 0;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001449 int skip_sum;
Chris Mason44b8bd72008-04-16 11:14:51 -04001450
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001451 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
Chris Masoncad321a2008-12-17 14:51:42 -05001452
Josef Bacik0cb59c92010-07-02 12:14:14 -04001453 if (root == root->fs_info->tree_root)
1454 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 2);
1455 else
1456 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001457 BUG_ON(ret);
Chris Mason065631f2008-02-20 12:07:25 -05001458
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001459 if (!(rw & REQ_WRITE)) {
Chris Masond20f7042008-12-08 16:58:54 -05001460 if (bio_flags & EXTENT_BIO_COMPRESSED) {
Chris Masonc8b97812008-10-29 14:49:59 -04001461 return btrfs_submit_compressed_read(inode, bio,
1462 mirror_num, bio_flags);
Chris Masond20f7042008-12-08 16:58:54 -05001463 } else if (!skip_sum)
1464 btrfs_lookup_bio_sums(root, inode, bio, NULL);
Chris Mason4d1b5fb2008-08-20 09:44:52 -04001465 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001466 } else if (!skip_sum) {
Yan Zheng17d217f2008-12-12 10:03:38 -05001467 /* csum items have already been cloned */
1468 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
1469 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001470 /* we're doing a write, do the async checksumming */
1471 return btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
Chris Mason44b8bd72008-04-16 11:14:51 -04001472 inode, rw, bio, mirror_num,
Chris Masoneaf25d92010-05-25 09:48:28 -04001473 bio_flags, bio_offset,
1474 __btrfs_submit_bio_start,
Chris Mason4a69a412008-11-06 22:03:00 -05001475 __btrfs_submit_bio_done);
Chris Mason19b9bdb2008-10-30 14:23:13 -04001476 }
1477
Chris Mason0b86a832008-03-24 15:01:56 -04001478mapit:
Chris Mason8b712842008-06-11 16:50:36 -04001479 return btrfs_map_bio(root, rw, bio, mirror_num, 0);
Chris Mason065631f2008-02-20 12:07:25 -05001480}
Chris Mason6885f302008-02-20 16:11:05 -05001481
Chris Masond352ac62008-09-29 15:18:18 -04001482/*
1483 * given a list of ordered sums record them in the inode. This happens
1484 * at IO completion time based on sums calculated at bio submission time.
1485 */
Chris Masonba1da2f2008-07-17 12:54:15 -04001486static noinline int add_pending_csums(struct btrfs_trans_handle *trans,
Chris Masone6dcd2d2008-07-17 12:53:50 -04001487 struct inode *inode, u64 file_offset,
1488 struct list_head *list)
1489{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001490 struct btrfs_ordered_sum *sum;
1491
1492 btrfs_set_trans_block_group(trans, inode);
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001493
1494 list_for_each_entry(sum, list, list) {
Chris Masond20f7042008-12-08 16:58:54 -05001495 btrfs_csum_file_blocks(trans,
1496 BTRFS_I(inode)->root->fs_info->csum_root, sum);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001497 }
1498 return 0;
1499}
1500
Josef Bacik2ac55d42010-02-03 19:33:23 +00001501int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end,
1502 struct extent_state **cached_state)
Chris Masonea8c2812008-08-04 23:17:27 -04001503{
Chris Masond3977122009-01-05 21:25:51 -05001504 if ((end & (PAGE_CACHE_SIZE - 1)) == 0)
Chris Mason771ed682008-11-06 22:02:51 -05001505 WARN_ON(1);
Chris Masonea8c2812008-08-04 23:17:27 -04001506 return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001507 cached_state, GFP_NOFS);
Chris Masonea8c2812008-08-04 23:17:27 -04001508}
1509
Chris Masond352ac62008-09-29 15:18:18 -04001510/* see btrfs_writepage_start_hook for details on why this is required */
Chris Mason247e7432008-07-17 12:53:51 -04001511struct btrfs_writepage_fixup {
1512 struct page *page;
1513 struct btrfs_work work;
1514};
1515
Christoph Hellwigb2950862008-12-02 09:54:17 -05001516static void btrfs_writepage_fixup_worker(struct btrfs_work *work)
Chris Mason247e7432008-07-17 12:53:51 -04001517{
1518 struct btrfs_writepage_fixup *fixup;
1519 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00001520 struct extent_state *cached_state = NULL;
Chris Mason247e7432008-07-17 12:53:51 -04001521 struct page *page;
1522 struct inode *inode;
1523 u64 page_start;
1524 u64 page_end;
1525
1526 fixup = container_of(work, struct btrfs_writepage_fixup, work);
1527 page = fixup->page;
Chris Mason4a096752008-07-21 10:29:44 -04001528again:
Chris Mason247e7432008-07-17 12:53:51 -04001529 lock_page(page);
1530 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
1531 ClearPageChecked(page);
1532 goto out_page;
1533 }
1534
1535 inode = page->mapping->host;
1536 page_start = page_offset(page);
1537 page_end = page_offset(page) + PAGE_CACHE_SIZE - 1;
1538
Josef Bacik2ac55d42010-02-03 19:33:23 +00001539 lock_extent_bits(&BTRFS_I(inode)->io_tree, page_start, page_end, 0,
1540 &cached_state, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -04001541
1542 /* already ordered? We're done */
Chris Mason8b62b722009-09-02 16:53:46 -04001543 if (PagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001544 goto out;
Chris Mason4a096752008-07-21 10:29:44 -04001545
1546 ordered = btrfs_lookup_ordered_extent(inode, page_start);
1547 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00001548 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start,
1549 page_end, &cached_state, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -04001550 unlock_page(page);
1551 btrfs_start_ordered_extent(inode, ordered, 1);
1552 goto again;
1553 }
Chris Mason247e7432008-07-17 12:53:51 -04001554
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001555 BUG();
Josef Bacik2ac55d42010-02-03 19:33:23 +00001556 btrfs_set_extent_delalloc(inode, page_start, page_end, &cached_state);
Chris Mason247e7432008-07-17 12:53:51 -04001557 ClearPageChecked(page);
1558out:
Josef Bacik2ac55d42010-02-03 19:33:23 +00001559 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start, page_end,
1560 &cached_state, GFP_NOFS);
Chris Mason247e7432008-07-17 12:53:51 -04001561out_page:
1562 unlock_page(page);
1563 page_cache_release(page);
Miao Xieb897abe2011-01-26 16:19:22 +08001564 kfree(fixup);
Chris Mason247e7432008-07-17 12:53:51 -04001565}
1566
1567/*
1568 * There are a few paths in the higher layers of the kernel that directly
1569 * set the page dirty bit without asking the filesystem if it is a
1570 * good idea. This causes problems because we want to make sure COW
1571 * properly happens and the data=ordered rules are followed.
1572 *
Chris Masonc8b97812008-10-29 14:49:59 -04001573 * In our case any range that doesn't have the ORDERED bit set
Chris Mason247e7432008-07-17 12:53:51 -04001574 * hasn't been properly setup for IO. We kick off an async process
1575 * to fix it up. The async helper will wait for ordered extents, set
1576 * the delalloc bit and make it safe to write the page.
1577 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001578static int btrfs_writepage_start_hook(struct page *page, u64 start, u64 end)
Chris Mason247e7432008-07-17 12:53:51 -04001579{
1580 struct inode *inode = page->mapping->host;
1581 struct btrfs_writepage_fixup *fixup;
1582 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason247e7432008-07-17 12:53:51 -04001583
Chris Mason8b62b722009-09-02 16:53:46 -04001584 /* this page is properly in the ordered list */
1585 if (TestClearPagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001586 return 0;
1587
1588 if (PageChecked(page))
1589 return -EAGAIN;
1590
1591 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
1592 if (!fixup)
1593 return -EAGAIN;
Chris Masonf4219502008-07-22 11:18:09 -04001594
Chris Mason247e7432008-07-17 12:53:51 -04001595 SetPageChecked(page);
1596 page_cache_get(page);
1597 fixup->work.func = btrfs_writepage_fixup_worker;
1598 fixup->page = page;
1599 btrfs_queue_worker(&root->fs_info->fixup_workers, &fixup->work);
1600 return -EAGAIN;
1601}
1602
Yan Zhengd899e052008-10-30 14:25:28 -04001603static int insert_reserved_file_extent(struct btrfs_trans_handle *trans,
1604 struct inode *inode, u64 file_pos,
1605 u64 disk_bytenr, u64 disk_num_bytes,
1606 u64 num_bytes, u64 ram_bytes,
1607 u8 compression, u8 encryption,
1608 u16 other_encoding, int extent_type)
1609{
1610 struct btrfs_root *root = BTRFS_I(inode)->root;
1611 struct btrfs_file_extent_item *fi;
1612 struct btrfs_path *path;
1613 struct extent_buffer *leaf;
1614 struct btrfs_key ins;
1615 u64 hint;
1616 int ret;
1617
1618 path = btrfs_alloc_path();
1619 BUG_ON(!path);
1620
Chris Masonb9473432009-03-13 11:00:37 -04001621 path->leave_spinning = 1;
Chris Masona1ed8352009-09-11 12:27:37 -04001622
1623 /*
1624 * we may be replacing one extent in the tree with another.
1625 * The new extent is pinned in the extent map, and we don't want
1626 * to drop it from the cache until it is completely in the btree.
1627 *
1628 * So, tell btrfs_drop_extents to leave this extent in the cache.
1629 * the caller is expected to unpin it and allow it to be merged
1630 * with the others.
1631 */
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001632 ret = btrfs_drop_extents(trans, inode, file_pos, file_pos + num_bytes,
1633 &hint, 0);
Yan Zhengd899e052008-10-30 14:25:28 -04001634 BUG_ON(ret);
1635
1636 ins.objectid = inode->i_ino;
1637 ins.offset = file_pos;
1638 ins.type = BTRFS_EXTENT_DATA_KEY;
1639 ret = btrfs_insert_empty_item(trans, root, path, &ins, sizeof(*fi));
1640 BUG_ON(ret);
1641 leaf = path->nodes[0];
1642 fi = btrfs_item_ptr(leaf, path->slots[0],
1643 struct btrfs_file_extent_item);
1644 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
1645 btrfs_set_file_extent_type(leaf, fi, extent_type);
1646 btrfs_set_file_extent_disk_bytenr(leaf, fi, disk_bytenr);
1647 btrfs_set_file_extent_disk_num_bytes(leaf, fi, disk_num_bytes);
1648 btrfs_set_file_extent_offset(leaf, fi, 0);
1649 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
1650 btrfs_set_file_extent_ram_bytes(leaf, fi, ram_bytes);
1651 btrfs_set_file_extent_compression(leaf, fi, compression);
1652 btrfs_set_file_extent_encryption(leaf, fi, encryption);
1653 btrfs_set_file_extent_other_encoding(leaf, fi, other_encoding);
Chris Masonb9473432009-03-13 11:00:37 -04001654
1655 btrfs_unlock_up_safe(path, 1);
1656 btrfs_set_lock_blocking(leaf);
1657
Yan Zhengd899e052008-10-30 14:25:28 -04001658 btrfs_mark_buffer_dirty(leaf);
1659
1660 inode_add_bytes(inode, num_bytes);
Yan Zhengd899e052008-10-30 14:25:28 -04001661
1662 ins.objectid = disk_bytenr;
1663 ins.offset = disk_num_bytes;
1664 ins.type = BTRFS_EXTENT_ITEM_KEY;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001665 ret = btrfs_alloc_reserved_file_extent(trans, root,
1666 root->root_key.objectid,
1667 inode->i_ino, file_pos, &ins);
Yan Zhengd899e052008-10-30 14:25:28 -04001668 BUG_ON(ret);
Yan Zhengd899e052008-10-30 14:25:28 -04001669 btrfs_free_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04001670
Yan Zhengd899e052008-10-30 14:25:28 -04001671 return 0;
1672}
1673
Chris Mason5d13a982009-03-13 11:41:46 -04001674/*
1675 * helper function for btrfs_finish_ordered_io, this
1676 * just reads in some of the csum leaves to prime them into ram
1677 * before we start the transaction. It limits the amount of btree
1678 * reads required while inside the transaction.
1679 */
Chris Masond352ac62008-09-29 15:18:18 -04001680/* as ordered data IO finishes, this gets called so we can finish
1681 * an ordered extent if the range of bytes in the file it covers are
1682 * fully written.
1683 */
Chris Mason211f90e2008-07-18 11:56:15 -04001684static int btrfs_finish_ordered_io(struct inode *inode, u64 start, u64 end)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001685{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001686 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001687 struct btrfs_trans_handle *trans = NULL;
Chris Mason5d13a982009-03-13 11:41:46 -04001688 struct btrfs_ordered_extent *ordered_extent = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001689 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Josef Bacik2ac55d42010-02-03 19:33:23 +00001690 struct extent_state *cached_state = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08001691 int compress_type = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001692 int ret;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001693 bool nolock = false;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001694
Josef Bacik5a1a3df2010-02-02 20:51:14 +00001695 ret = btrfs_dec_test_ordered_pending(inode, &ordered_extent, start,
1696 end - start + 1);
Chris Masonba1da2f2008-07-17 12:54:15 -04001697 if (!ret)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001698 return 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001699 BUG_ON(!ordered_extent);
Josef Bacikefd049f2010-02-02 20:50:10 +00001700
Josef Bacik0cb59c92010-07-02 12:14:14 -04001701 nolock = (root == root->fs_info->tree_root);
1702
Yan, Zhengc2167752009-11-12 09:34:21 +00001703 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags)) {
1704 BUG_ON(!list_empty(&ordered_extent->list));
1705 ret = btrfs_ordered_update_i_size(inode, 0, ordered_extent);
1706 if (!ret) {
Josef Bacik0cb59c92010-07-02 12:14:14 -04001707 if (nolock)
1708 trans = btrfs_join_transaction_nolock(root, 1);
1709 else
1710 trans = btrfs_join_transaction(root, 1);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00001711 BUG_ON(IS_ERR(trans));
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001712 btrfs_set_trans_block_group(trans, inode);
1713 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Yan, Zhengc2167752009-11-12 09:34:21 +00001714 ret = btrfs_update_inode(trans, root, inode);
1715 BUG_ON(ret);
Yan, Zhengc2167752009-11-12 09:34:21 +00001716 }
1717 goto out;
1718 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04001719
Josef Bacik2ac55d42010-02-03 19:33:23 +00001720 lock_extent_bits(io_tree, ordered_extent->file_offset,
1721 ordered_extent->file_offset + ordered_extent->len - 1,
1722 0, &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001723
Josef Bacik0cb59c92010-07-02 12:14:14 -04001724 if (nolock)
1725 trans = btrfs_join_transaction_nolock(root, 1);
1726 else
1727 trans = btrfs_join_transaction(root, 1);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00001728 BUG_ON(IS_ERR(trans));
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001729 btrfs_set_trans_block_group(trans, inode);
1730 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Yan, Zhengc2167752009-11-12 09:34:21 +00001731
Chris Masonc8b97812008-10-29 14:49:59 -04001732 if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags))
Li Zefan261507a02010-12-17 14:21:50 +08001733 compress_type = ordered_extent->compress_type;
Yan Zhengd899e052008-10-30 14:25:28 -04001734 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
Li Zefan261507a02010-12-17 14:21:50 +08001735 BUG_ON(compress_type);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001736 ret = btrfs_mark_extent_written(trans, inode,
Yan Zhengd899e052008-10-30 14:25:28 -04001737 ordered_extent->file_offset,
1738 ordered_extent->file_offset +
1739 ordered_extent->len);
1740 BUG_ON(ret);
1741 } else {
Josef Bacik0af3d002010-06-21 14:48:16 -04001742 BUG_ON(root == root->fs_info->tree_root);
Yan Zhengd899e052008-10-30 14:25:28 -04001743 ret = insert_reserved_file_extent(trans, inode,
1744 ordered_extent->file_offset,
1745 ordered_extent->start,
1746 ordered_extent->disk_len,
1747 ordered_extent->len,
1748 ordered_extent->len,
Li Zefan261507a02010-12-17 14:21:50 +08001749 compress_type, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04001750 BTRFS_FILE_EXTENT_REG);
Chris Masona1ed8352009-09-11 12:27:37 -04001751 unpin_extent_cache(&BTRFS_I(inode)->extent_tree,
1752 ordered_extent->file_offset,
1753 ordered_extent->len);
Yan Zhengd899e052008-10-30 14:25:28 -04001754 BUG_ON(ret);
1755 }
Josef Bacik2ac55d42010-02-03 19:33:23 +00001756 unlock_extent_cached(io_tree, ordered_extent->file_offset,
1757 ordered_extent->file_offset +
1758 ordered_extent->len - 1, &cached_state, GFP_NOFS);
1759
Chris Masone6dcd2d2008-07-17 12:53:50 -04001760 add_pending_csums(trans, inode, ordered_extent->file_offset,
1761 &ordered_extent->list);
1762
Yan, Zhengc2167752009-11-12 09:34:21 +00001763 btrfs_ordered_update_i_size(inode, 0, ordered_extent);
1764 ret = btrfs_update_inode(trans, root, inode);
1765 BUG_ON(ret);
Yan, Zhengc2167752009-11-12 09:34:21 +00001766out:
Josef Bacik0cb59c92010-07-02 12:14:14 -04001767 if (nolock) {
1768 if (trans)
1769 btrfs_end_transaction_nolock(trans, root);
1770 } else {
1771 btrfs_delalloc_release_metadata(inode, ordered_extent->len);
1772 if (trans)
1773 btrfs_end_transaction(trans, root);
1774 }
1775
Chris Masone6dcd2d2008-07-17 12:53:50 -04001776 /* once for us */
1777 btrfs_put_ordered_extent(ordered_extent);
1778 /* once for the tree */
1779 btrfs_put_ordered_extent(ordered_extent);
1780
Chris Masone6dcd2d2008-07-17 12:53:50 -04001781 return 0;
1782}
1783
Christoph Hellwigb2950862008-12-02 09:54:17 -05001784static int btrfs_writepage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason211f90e2008-07-18 11:56:15 -04001785 struct extent_state *state, int uptodate)
1786{
Chris Mason8b62b722009-09-02 16:53:46 -04001787 ClearPagePrivate2(page);
Chris Mason211f90e2008-07-18 11:56:15 -04001788 return btrfs_finish_ordered_io(page->mapping->host, start, end);
1789}
1790
Chris Masond352ac62008-09-29 15:18:18 -04001791/*
1792 * When IO fails, either with EIO or csum verification fails, we
1793 * try other mirrors that might have a good copy of the data. This
1794 * io_failure_record is used to record state as we go through all the
1795 * mirrors. If another mirror has good data, the page is set up to date
1796 * and things continue. If a good mirror can't be found, the original
1797 * bio end_io callback is called to indicate things have failed.
1798 */
Chris Mason7e383262008-04-09 16:28:12 -04001799struct io_failure_record {
1800 struct page *page;
1801 u64 start;
1802 u64 len;
1803 u64 logical;
Chris Masond20f7042008-12-08 16:58:54 -05001804 unsigned long bio_flags;
Chris Mason7e383262008-04-09 16:28:12 -04001805 int last_mirror;
1806};
1807
Christoph Hellwigb2950862008-12-02 09:54:17 -05001808static int btrfs_io_failed_hook(struct bio *failed_bio,
Chris Mason1259ab72008-05-12 13:39:03 -04001809 struct page *page, u64 start, u64 end,
1810 struct extent_state *state)
Chris Mason7e383262008-04-09 16:28:12 -04001811{
1812 struct io_failure_record *failrec = NULL;
1813 u64 private;
1814 struct extent_map *em;
1815 struct inode *inode = page->mapping->host;
1816 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
Chris Mason3b951512008-04-17 11:29:12 -04001817 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason7e383262008-04-09 16:28:12 -04001818 struct bio *bio;
1819 int num_copies;
1820 int ret;
Chris Mason1259ab72008-05-12 13:39:03 -04001821 int rw;
Chris Mason7e383262008-04-09 16:28:12 -04001822 u64 logical;
1823
1824 ret = get_state_private(failure_tree, start, &private);
1825 if (ret) {
Chris Mason7e383262008-04-09 16:28:12 -04001826 failrec = kmalloc(sizeof(*failrec), GFP_NOFS);
1827 if (!failrec)
1828 return -ENOMEM;
1829 failrec->start = start;
1830 failrec->len = end - start + 1;
1831 failrec->last_mirror = 0;
Chris Masond20f7042008-12-08 16:58:54 -05001832 failrec->bio_flags = 0;
Chris Mason7e383262008-04-09 16:28:12 -04001833
Chris Mason890871b2009-09-02 16:24:52 -04001834 read_lock(&em_tree->lock);
Chris Mason3b951512008-04-17 11:29:12 -04001835 em = lookup_extent_mapping(em_tree, start, failrec->len);
1836 if (em->start > start || em->start + em->len < start) {
1837 free_extent_map(em);
1838 em = NULL;
1839 }
Chris Mason890871b2009-09-02 16:24:52 -04001840 read_unlock(&em_tree->lock);
Chris Mason7e383262008-04-09 16:28:12 -04001841
1842 if (!em || IS_ERR(em)) {
1843 kfree(failrec);
1844 return -EIO;
1845 }
1846 logical = start - em->start;
1847 logical = em->block_start + logical;
Chris Masond20f7042008-12-08 16:58:54 -05001848 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
1849 logical = em->block_start;
1850 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
Li Zefan261507a02010-12-17 14:21:50 +08001851 extent_set_compress_type(&failrec->bio_flags,
1852 em->compress_type);
Chris Masond20f7042008-12-08 16:58:54 -05001853 }
Chris Mason7e383262008-04-09 16:28:12 -04001854 failrec->logical = logical;
1855 free_extent_map(em);
1856 set_extent_bits(failure_tree, start, end, EXTENT_LOCKED |
1857 EXTENT_DIRTY, GFP_NOFS);
Chris Mason587f7702008-04-11 12:16:46 -04001858 set_state_private(failure_tree, start,
1859 (u64)(unsigned long)failrec);
Chris Mason7e383262008-04-09 16:28:12 -04001860 } else {
Chris Mason587f7702008-04-11 12:16:46 -04001861 failrec = (struct io_failure_record *)(unsigned long)private;
Chris Mason7e383262008-04-09 16:28:12 -04001862 }
1863 num_copies = btrfs_num_copies(
1864 &BTRFS_I(inode)->root->fs_info->mapping_tree,
1865 failrec->logical, failrec->len);
1866 failrec->last_mirror++;
1867 if (!state) {
Chris Masoncad321a2008-12-17 14:51:42 -05001868 spin_lock(&BTRFS_I(inode)->io_tree.lock);
Chris Mason7e383262008-04-09 16:28:12 -04001869 state = find_first_extent_bit_state(&BTRFS_I(inode)->io_tree,
1870 failrec->start,
1871 EXTENT_LOCKED);
1872 if (state && state->start != failrec->start)
1873 state = NULL;
Chris Masoncad321a2008-12-17 14:51:42 -05001874 spin_unlock(&BTRFS_I(inode)->io_tree.lock);
Chris Mason7e383262008-04-09 16:28:12 -04001875 }
1876 if (!state || failrec->last_mirror > num_copies) {
1877 set_state_private(failure_tree, failrec->start, 0);
1878 clear_extent_bits(failure_tree, failrec->start,
1879 failrec->start + failrec->len - 1,
1880 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
1881 kfree(failrec);
1882 return -EIO;
1883 }
1884 bio = bio_alloc(GFP_NOFS, 1);
1885 bio->bi_private = state;
1886 bio->bi_end_io = failed_bio->bi_end_io;
1887 bio->bi_sector = failrec->logical >> 9;
1888 bio->bi_bdev = failed_bio->bi_bdev;
Chris Masone1c4b742008-04-22 13:26:46 -04001889 bio->bi_size = 0;
Chris Masond20f7042008-12-08 16:58:54 -05001890
Chris Mason7e383262008-04-09 16:28:12 -04001891 bio_add_page(bio, page, failrec->len, start - page_offset(page));
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001892 if (failed_bio->bi_rw & REQ_WRITE)
Chris Mason1259ab72008-05-12 13:39:03 -04001893 rw = WRITE;
1894 else
1895 rw = READ;
1896
1897 BTRFS_I(inode)->io_tree.ops->submit_bio_hook(inode, rw, bio,
Chris Masonc8b97812008-10-29 14:49:59 -04001898 failrec->last_mirror,
Chris Masoneaf25d92010-05-25 09:48:28 -04001899 failrec->bio_flags, 0);
Chris Mason1259ab72008-05-12 13:39:03 -04001900 return 0;
1901}
1902
Chris Masond352ac62008-09-29 15:18:18 -04001903/*
1904 * each time an IO finishes, we do a fast check in the IO failure tree
1905 * to see if we need to process or clean up an io_failure_record
1906 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001907static int btrfs_clean_io_failures(struct inode *inode, u64 start)
Chris Mason1259ab72008-05-12 13:39:03 -04001908{
1909 u64 private;
1910 u64 private_failure;
1911 struct io_failure_record *failure;
1912 int ret;
1913
1914 private = 0;
1915 if (count_range_bits(&BTRFS_I(inode)->io_failure_tree, &private,
Chris Masonec29ed52011-02-23 16:23:20 -05001916 (u64)-1, 1, EXTENT_DIRTY, 0)) {
Chris Mason1259ab72008-05-12 13:39:03 -04001917 ret = get_state_private(&BTRFS_I(inode)->io_failure_tree,
1918 start, &private_failure);
1919 if (ret == 0) {
1920 failure = (struct io_failure_record *)(unsigned long)
1921 private_failure;
1922 set_state_private(&BTRFS_I(inode)->io_failure_tree,
1923 failure->start, 0);
1924 clear_extent_bits(&BTRFS_I(inode)->io_failure_tree,
1925 failure->start,
1926 failure->start + failure->len - 1,
1927 EXTENT_DIRTY | EXTENT_LOCKED,
1928 GFP_NOFS);
1929 kfree(failure);
1930 }
1931 }
Chris Mason7e383262008-04-09 16:28:12 -04001932 return 0;
1933}
1934
Chris Masond352ac62008-09-29 15:18:18 -04001935/*
1936 * when reads are done, we need to check csums to verify the data is correct
1937 * if there's a match, we allow the bio to finish. If not, we go through
1938 * the io_failure_record routines to find good copies
1939 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001940static int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason70dec802008-01-29 09:59:12 -05001941 struct extent_state *state)
Chris Mason07157aa2007-08-30 08:50:51 -04001942{
Chris Mason35ebb932007-10-30 16:56:53 -04001943 size_t offset = start - ((u64)page->index << PAGE_CACHE_SHIFT);
Chris Mason07157aa2007-08-30 08:50:51 -04001944 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05001945 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -04001946 char *kaddr;
Chris Masonaadfeb62008-01-29 09:10:27 -05001947 u64 private = ~(u32)0;
Chris Mason07157aa2007-08-30 08:50:51 -04001948 int ret;
Chris Masonff79f812007-10-15 16:22:25 -04001949 struct btrfs_root *root = BTRFS_I(inode)->root;
1950 u32 csum = ~(u32)0;
Chris Masond1310b22008-01-24 16:13:08 -05001951
Chris Masond20f7042008-12-08 16:58:54 -05001952 if (PageChecked(page)) {
1953 ClearPageChecked(page);
1954 goto good;
1955 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001956
1957 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)
Chris Masonb6cda9b2007-12-14 15:30:32 -05001958 return 0;
Chris Masond20f7042008-12-08 16:58:54 -05001959
Yan Zheng17d217f2008-12-12 10:03:38 -05001960 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID &&
Chris Mason9655d292009-09-02 15:22:30 -04001961 test_range_bit(io_tree, start, end, EXTENT_NODATASUM, 1, NULL)) {
Yan Zheng17d217f2008-12-12 10:03:38 -05001962 clear_extent_bits(io_tree, start, end, EXTENT_NODATASUM,
1963 GFP_NOFS);
1964 return 0;
1965 }
1966
Yanc2e639f2008-02-04 08:57:25 -05001967 if (state && state->start == start) {
Chris Mason70dec802008-01-29 09:59:12 -05001968 private = state->private;
1969 ret = 0;
1970 } else {
1971 ret = get_state_private(io_tree, start, &private);
1972 }
Chris Mason9ab86c82009-01-07 09:48:51 -05001973 kaddr = kmap_atomic(page, KM_USER0);
Chris Masond3977122009-01-05 21:25:51 -05001974 if (ret)
Chris Mason07157aa2007-08-30 08:50:51 -04001975 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05001976
Chris Masonff79f812007-10-15 16:22:25 -04001977 csum = btrfs_csum_data(root, kaddr + offset, csum, end - start + 1);
1978 btrfs_csum_final(csum, (char *)&csum);
Chris Masond3977122009-01-05 21:25:51 -05001979 if (csum != private)
Chris Mason07157aa2007-08-30 08:50:51 -04001980 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05001981
Chris Mason9ab86c82009-01-07 09:48:51 -05001982 kunmap_atomic(kaddr, KM_USER0);
Chris Masond20f7042008-12-08 16:58:54 -05001983good:
Chris Mason7e383262008-04-09 16:28:12 -04001984 /* if the io failure tree for this inode is non-empty,
1985 * check to see if we've recovered from a failed IO
1986 */
Chris Mason1259ab72008-05-12 13:39:03 -04001987 btrfs_clean_io_failures(inode, start);
Chris Mason07157aa2007-08-30 08:50:51 -04001988 return 0;
1989
1990zeroit:
Chris Mason193f2842009-04-27 07:29:05 -04001991 if (printk_ratelimit()) {
1992 printk(KERN_INFO "btrfs csum failed ino %lu off %llu csum %u "
1993 "private %llu\n", page->mapping->host->i_ino,
1994 (unsigned long long)start, csum,
1995 (unsigned long long)private);
1996 }
Chris Masondb945352007-10-15 16:15:53 -04001997 memset(kaddr + offset, 1, end - start + 1);
1998 flush_dcache_page(page);
Chris Mason9ab86c82009-01-07 09:48:51 -05001999 kunmap_atomic(kaddr, KM_USER0);
Chris Mason3b951512008-04-17 11:29:12 -04002000 if (private == 0)
2001 return 0;
Chris Mason7e383262008-04-09 16:28:12 -04002002 return -EIO;
Chris Mason07157aa2007-08-30 08:50:51 -04002003}
Chris Masonb888db22007-08-27 16:49:44 -04002004
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002005struct delayed_iput {
2006 struct list_head list;
2007 struct inode *inode;
2008};
2009
2010void btrfs_add_delayed_iput(struct inode *inode)
2011{
2012 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
2013 struct delayed_iput *delayed;
2014
2015 if (atomic_add_unless(&inode->i_count, -1, 1))
2016 return;
2017
2018 delayed = kmalloc(sizeof(*delayed), GFP_NOFS | __GFP_NOFAIL);
2019 delayed->inode = inode;
2020
2021 spin_lock(&fs_info->delayed_iput_lock);
2022 list_add_tail(&delayed->list, &fs_info->delayed_iputs);
2023 spin_unlock(&fs_info->delayed_iput_lock);
2024}
2025
2026void btrfs_run_delayed_iputs(struct btrfs_root *root)
2027{
2028 LIST_HEAD(list);
2029 struct btrfs_fs_info *fs_info = root->fs_info;
2030 struct delayed_iput *delayed;
2031 int empty;
2032
2033 spin_lock(&fs_info->delayed_iput_lock);
2034 empty = list_empty(&fs_info->delayed_iputs);
2035 spin_unlock(&fs_info->delayed_iput_lock);
2036 if (empty)
2037 return;
2038
2039 down_read(&root->fs_info->cleanup_work_sem);
2040 spin_lock(&fs_info->delayed_iput_lock);
2041 list_splice_init(&fs_info->delayed_iputs, &list);
2042 spin_unlock(&fs_info->delayed_iput_lock);
2043
2044 while (!list_empty(&list)) {
2045 delayed = list_entry(list.next, struct delayed_iput, list);
2046 list_del(&delayed->list);
2047 iput(delayed->inode);
2048 kfree(delayed);
2049 }
2050 up_read(&root->fs_info->cleanup_work_sem);
2051}
2052
Josef Bacik7b128762008-07-24 12:17:14 -04002053/*
Yan, Zhengd68fc572010-05-16 10:49:58 -04002054 * calculate extra metadata reservation when snapshotting a subvolume
2055 * contains orphan files.
2056 */
2057void btrfs_orphan_pre_snapshot(struct btrfs_trans_handle *trans,
2058 struct btrfs_pending_snapshot *pending,
2059 u64 *bytes_to_reserve)
2060{
2061 struct btrfs_root *root;
2062 struct btrfs_block_rsv *block_rsv;
2063 u64 num_bytes;
2064 int index;
2065
2066 root = pending->root;
2067 if (!root->orphan_block_rsv || list_empty(&root->orphan_list))
2068 return;
2069
2070 block_rsv = root->orphan_block_rsv;
2071
2072 /* orphan block reservation for the snapshot */
2073 num_bytes = block_rsv->size;
2074
2075 /*
2076 * after the snapshot is created, COWing tree blocks may use more
2077 * space than it frees. So we should make sure there is enough
2078 * reserved space.
2079 */
2080 index = trans->transid & 0x1;
2081 if (block_rsv->reserved + block_rsv->freed[index] < block_rsv->size) {
2082 num_bytes += block_rsv->size -
2083 (block_rsv->reserved + block_rsv->freed[index]);
2084 }
2085
2086 *bytes_to_reserve += num_bytes;
2087}
2088
2089void btrfs_orphan_post_snapshot(struct btrfs_trans_handle *trans,
2090 struct btrfs_pending_snapshot *pending)
2091{
2092 struct btrfs_root *root = pending->root;
2093 struct btrfs_root *snap = pending->snap;
2094 struct btrfs_block_rsv *block_rsv;
2095 u64 num_bytes;
2096 int index;
2097 int ret;
2098
2099 if (!root->orphan_block_rsv || list_empty(&root->orphan_list))
2100 return;
2101
2102 /* refill source subvolume's orphan block reservation */
2103 block_rsv = root->orphan_block_rsv;
2104 index = trans->transid & 0x1;
2105 if (block_rsv->reserved + block_rsv->freed[index] < block_rsv->size) {
2106 num_bytes = block_rsv->size -
2107 (block_rsv->reserved + block_rsv->freed[index]);
2108 ret = btrfs_block_rsv_migrate(&pending->block_rsv,
2109 root->orphan_block_rsv,
2110 num_bytes);
2111 BUG_ON(ret);
2112 }
2113
2114 /* setup orphan block reservation for the snapshot */
2115 block_rsv = btrfs_alloc_block_rsv(snap);
2116 BUG_ON(!block_rsv);
2117
2118 btrfs_add_durable_block_rsv(root->fs_info, block_rsv);
2119 snap->orphan_block_rsv = block_rsv;
2120
2121 num_bytes = root->orphan_block_rsv->size;
2122 ret = btrfs_block_rsv_migrate(&pending->block_rsv,
2123 block_rsv, num_bytes);
2124 BUG_ON(ret);
2125
2126#if 0
2127 /* insert orphan item for the snapshot */
2128 WARN_ON(!root->orphan_item_inserted);
2129 ret = btrfs_insert_orphan_item(trans, root->fs_info->tree_root,
2130 snap->root_key.objectid);
2131 BUG_ON(ret);
2132 snap->orphan_item_inserted = 1;
2133#endif
2134}
2135
2136enum btrfs_orphan_cleanup_state {
2137 ORPHAN_CLEANUP_STARTED = 1,
2138 ORPHAN_CLEANUP_DONE = 2,
2139};
2140
2141/*
2142 * This is called in transaction commmit time. If there are no orphan
2143 * files in the subvolume, it removes orphan item and frees block_rsv
2144 * structure.
2145 */
2146void btrfs_orphan_commit_root(struct btrfs_trans_handle *trans,
2147 struct btrfs_root *root)
2148{
2149 int ret;
2150
2151 if (!list_empty(&root->orphan_list) ||
2152 root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE)
2153 return;
2154
2155 if (root->orphan_item_inserted &&
2156 btrfs_root_refs(&root->root_item) > 0) {
2157 ret = btrfs_del_orphan_item(trans, root->fs_info->tree_root,
2158 root->root_key.objectid);
2159 BUG_ON(ret);
2160 root->orphan_item_inserted = 0;
2161 }
2162
2163 if (root->orphan_block_rsv) {
2164 WARN_ON(root->orphan_block_rsv->size > 0);
2165 btrfs_free_block_rsv(root, root->orphan_block_rsv);
2166 root->orphan_block_rsv = NULL;
2167 }
2168}
2169
2170/*
Josef Bacik7b128762008-07-24 12:17:14 -04002171 * This creates an orphan entry for the given inode in case something goes
2172 * wrong in the middle of an unlink/truncate.
Yan, Zhengd68fc572010-05-16 10:49:58 -04002173 *
2174 * NOTE: caller of this function should reserve 5 units of metadata for
2175 * this function.
Josef Bacik7b128762008-07-24 12:17:14 -04002176 */
2177int btrfs_orphan_add(struct btrfs_trans_handle *trans, struct inode *inode)
2178{
2179 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002180 struct btrfs_block_rsv *block_rsv = NULL;
2181 int reserve = 0;
2182 int insert = 0;
2183 int ret;
Josef Bacik7b128762008-07-24 12:17:14 -04002184
Yan, Zhengd68fc572010-05-16 10:49:58 -04002185 if (!root->orphan_block_rsv) {
2186 block_rsv = btrfs_alloc_block_rsv(root);
2187 BUG_ON(!block_rsv);
Josef Bacik7b128762008-07-24 12:17:14 -04002188 }
2189
Yan, Zhengd68fc572010-05-16 10:49:58 -04002190 spin_lock(&root->orphan_lock);
2191 if (!root->orphan_block_rsv) {
2192 root->orphan_block_rsv = block_rsv;
2193 } else if (block_rsv) {
2194 btrfs_free_block_rsv(root, block_rsv);
2195 block_rsv = NULL;
2196 }
Josef Bacik7b128762008-07-24 12:17:14 -04002197
Yan, Zhengd68fc572010-05-16 10:49:58 -04002198 if (list_empty(&BTRFS_I(inode)->i_orphan)) {
2199 list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
2200#if 0
2201 /*
2202 * For proper ENOSPC handling, we should do orphan
2203 * cleanup when mounting. But this introduces backward
2204 * compatibility issue.
2205 */
2206 if (!xchg(&root->orphan_item_inserted, 1))
2207 insert = 2;
2208 else
2209 insert = 1;
2210#endif
2211 insert = 1;
2212 } else {
2213 WARN_ON(!BTRFS_I(inode)->orphan_meta_reserved);
2214 }
Josef Bacik7b128762008-07-24 12:17:14 -04002215
Yan, Zhengd68fc572010-05-16 10:49:58 -04002216 if (!BTRFS_I(inode)->orphan_meta_reserved) {
2217 BTRFS_I(inode)->orphan_meta_reserved = 1;
2218 reserve = 1;
2219 }
2220 spin_unlock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002221
Yan, Zhengd68fc572010-05-16 10:49:58 -04002222 if (block_rsv)
2223 btrfs_add_durable_block_rsv(root->fs_info, block_rsv);
2224
2225 /* grab metadata reservation from transaction handle */
2226 if (reserve) {
2227 ret = btrfs_orphan_reserve_metadata(trans, inode);
2228 BUG_ON(ret);
2229 }
2230
2231 /* insert an orphan item to track this unlinked/truncated file */
2232 if (insert >= 1) {
2233 ret = btrfs_insert_orphan_item(trans, root, inode->i_ino);
2234 BUG_ON(ret);
2235 }
2236
2237 /* insert an orphan item to track subvolume contains orphan files */
2238 if (insert >= 2) {
2239 ret = btrfs_insert_orphan_item(trans, root->fs_info->tree_root,
2240 root->root_key.objectid);
2241 BUG_ON(ret);
2242 }
2243 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002244}
2245
2246/*
2247 * We have done the truncate/delete so we can go ahead and remove the orphan
2248 * item for this particular inode.
2249 */
2250int btrfs_orphan_del(struct btrfs_trans_handle *trans, struct inode *inode)
2251{
2252 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002253 int delete_item = 0;
2254 int release_rsv = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002255 int ret = 0;
2256
Yan, Zhengd68fc572010-05-16 10:49:58 -04002257 spin_lock(&root->orphan_lock);
2258 if (!list_empty(&BTRFS_I(inode)->i_orphan)) {
2259 list_del_init(&BTRFS_I(inode)->i_orphan);
2260 delete_item = 1;
Josef Bacik7b128762008-07-24 12:17:14 -04002261 }
2262
Yan, Zhengd68fc572010-05-16 10:49:58 -04002263 if (BTRFS_I(inode)->orphan_meta_reserved) {
2264 BTRFS_I(inode)->orphan_meta_reserved = 0;
2265 release_rsv = 1;
2266 }
2267 spin_unlock(&root->orphan_lock);
2268
2269 if (trans && delete_item) {
2270 ret = btrfs_del_orphan_item(trans, root, inode->i_ino);
2271 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04002272 }
2273
Yan, Zhengd68fc572010-05-16 10:49:58 -04002274 if (release_rsv)
2275 btrfs_orphan_release_metadata(inode);
Josef Bacik7b128762008-07-24 12:17:14 -04002276
Yan, Zhengd68fc572010-05-16 10:49:58 -04002277 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002278}
2279
2280/*
2281 * this cleans up any orphans that may be left on the list from the last use
2282 * of this root.
2283 */
2284void btrfs_orphan_cleanup(struct btrfs_root *root)
2285{
2286 struct btrfs_path *path;
2287 struct extent_buffer *leaf;
Josef Bacik7b128762008-07-24 12:17:14 -04002288 struct btrfs_key key, found_key;
2289 struct btrfs_trans_handle *trans;
2290 struct inode *inode;
2291 int ret = 0, nr_unlink = 0, nr_truncate = 0;
2292
Yan, Zhengd68fc572010-05-16 10:49:58 -04002293 if (cmpxchg(&root->orphan_cleanup_state, 0, ORPHAN_CLEANUP_STARTED))
Josef Bacik7b128762008-07-24 12:17:14 -04002294 return;
Yan, Zhengc71bf092009-11-12 09:34:40 +00002295
2296 path = btrfs_alloc_path();
2297 BUG_ON(!path);
Josef Bacik7b128762008-07-24 12:17:14 -04002298 path->reada = -1;
2299
2300 key.objectid = BTRFS_ORPHAN_OBJECTID;
2301 btrfs_set_key_type(&key, BTRFS_ORPHAN_ITEM_KEY);
2302 key.offset = (u64)-1;
2303
Josef Bacik7b128762008-07-24 12:17:14 -04002304 while (1) {
2305 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2306 if (ret < 0) {
2307 printk(KERN_ERR "Error searching slot for orphan: %d"
2308 "\n", ret);
2309 break;
2310 }
2311
2312 /*
2313 * if ret == 0 means we found what we were searching for, which
2314 * is weird, but possible, so only screw with path if we didnt
2315 * find the key and see if we have stuff that matches
2316 */
2317 if (ret > 0) {
2318 if (path->slots[0] == 0)
2319 break;
2320 path->slots[0]--;
2321 }
2322
2323 /* pull out the item */
2324 leaf = path->nodes[0];
Josef Bacik7b128762008-07-24 12:17:14 -04002325 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2326
2327 /* make sure the item matches what we want */
2328 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
2329 break;
2330 if (btrfs_key_type(&found_key) != BTRFS_ORPHAN_ITEM_KEY)
2331 break;
2332
2333 /* release the path since we're done with it */
2334 btrfs_release_path(root, path);
2335
2336 /*
2337 * this is where we are basically btrfs_lookup, without the
2338 * crossing root thing. we store the inode number in the
2339 * offset of the orphan item.
2340 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002341 found_key.objectid = found_key.offset;
2342 found_key.type = BTRFS_INODE_ITEM_KEY;
2343 found_key.offset = 0;
Josef Bacik73f73412009-12-04 17:38:27 +00002344 inode = btrfs_iget(root->fs_info->sb, &found_key, root, NULL);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002345 BUG_ON(IS_ERR(inode));
Josef Bacik7b128762008-07-24 12:17:14 -04002346
Josef Bacik7b128762008-07-24 12:17:14 -04002347 /*
2348 * add this inode to the orphan list so btrfs_orphan_del does
2349 * the proper thing when we hit it
2350 */
Yan, Zhengd68fc572010-05-16 10:49:58 -04002351 spin_lock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002352 list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002353 spin_unlock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002354
2355 /*
2356 * if this is a bad inode, means we actually succeeded in
2357 * removing the inode, but not the orphan record, which means
2358 * we need to manually delete the orphan since iput will just
2359 * do a destroy_inode
2360 */
2361 if (is_bad_inode(inode)) {
Yan, Zhenga22285a2010-05-16 10:48:46 -04002362 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002363 BUG_ON(IS_ERR(trans));
Josef Bacik7b128762008-07-24 12:17:14 -04002364 btrfs_orphan_del(trans, inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04002365 btrfs_end_transaction(trans, root);
Josef Bacik7b128762008-07-24 12:17:14 -04002366 iput(inode);
2367 continue;
2368 }
2369
2370 /* if we have links, this was a truncate, lets do that */
2371 if (inode->i_nlink) {
2372 nr_truncate++;
2373 btrfs_truncate(inode);
2374 } else {
2375 nr_unlink++;
2376 }
2377
2378 /* this will do delete_inode and everything for us */
2379 iput(inode);
2380 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04002381 btrfs_free_path(path);
2382
2383 root->orphan_cleanup_state = ORPHAN_CLEANUP_DONE;
2384
2385 if (root->orphan_block_rsv)
2386 btrfs_block_rsv_release(root, root->orphan_block_rsv,
2387 (u64)-1);
2388
2389 if (root->orphan_block_rsv || root->orphan_item_inserted) {
2390 trans = btrfs_join_transaction(root, 1);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00002391 BUG_ON(IS_ERR(trans));
Yan, Zhengd68fc572010-05-16 10:49:58 -04002392 btrfs_end_transaction(trans, root);
2393 }
Josef Bacik7b128762008-07-24 12:17:14 -04002394
2395 if (nr_unlink)
2396 printk(KERN_INFO "btrfs: unlinked %d orphans\n", nr_unlink);
2397 if (nr_truncate)
2398 printk(KERN_INFO "btrfs: truncated %d orphans\n", nr_truncate);
Josef Bacik7b128762008-07-24 12:17:14 -04002399}
2400
Chris Masond352ac62008-09-29 15:18:18 -04002401/*
Chris Mason46a53cc2009-04-27 11:47:50 -04002402 * very simple check to peek ahead in the leaf looking for xattrs. If we
2403 * don't find any xattrs, we know there can't be any acls.
2404 *
2405 * slot is the slot the inode is in, objectid is the objectid of the inode
2406 */
2407static noinline int acls_after_inode_item(struct extent_buffer *leaf,
2408 int slot, u64 objectid)
2409{
2410 u32 nritems = btrfs_header_nritems(leaf);
2411 struct btrfs_key found_key;
2412 int scanned = 0;
2413
2414 slot++;
2415 while (slot < nritems) {
2416 btrfs_item_key_to_cpu(leaf, &found_key, slot);
2417
2418 /* we found a different objectid, there must not be acls */
2419 if (found_key.objectid != objectid)
2420 return 0;
2421
2422 /* we found an xattr, assume we've got an acl */
2423 if (found_key.type == BTRFS_XATTR_ITEM_KEY)
2424 return 1;
2425
2426 /*
2427 * we found a key greater than an xattr key, there can't
2428 * be any acls later on
2429 */
2430 if (found_key.type > BTRFS_XATTR_ITEM_KEY)
2431 return 0;
2432
2433 slot++;
2434 scanned++;
2435
2436 /*
2437 * it goes inode, inode backrefs, xattrs, extents,
2438 * so if there are a ton of hard links to an inode there can
2439 * be a lot of backrefs. Don't waste time searching too hard,
2440 * this is just an optimization
2441 */
2442 if (scanned >= 8)
2443 break;
2444 }
2445 /* we hit the end of the leaf before we found an xattr or
2446 * something larger than an xattr. We have to assume the inode
2447 * has acls
2448 */
2449 return 1;
2450}
2451
2452/*
Chris Masond352ac62008-09-29 15:18:18 -04002453 * read an inode from the btree into the in-memory inode
2454 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002455static void btrfs_read_locked_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002456{
2457 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002458 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002459 struct btrfs_inode_item *inode_item;
Chris Mason0b86a832008-03-24 15:01:56 -04002460 struct btrfs_timespec *tspec;
Chris Mason39279cc2007-06-12 06:35:45 -04002461 struct btrfs_root *root = BTRFS_I(inode)->root;
2462 struct btrfs_key location;
Chris Mason46a53cc2009-04-27 11:47:50 -04002463 int maybe_acls;
Chris Mason39279cc2007-06-12 06:35:45 -04002464 u64 alloc_group_block;
Josef Bacik618e21d2007-07-11 10:18:17 -04002465 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -04002466 int ret;
2467
2468 path = btrfs_alloc_path();
2469 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -04002470 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -05002471
Chris Mason39279cc2007-06-12 06:35:45 -04002472 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002473 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -04002474 goto make_bad;
Chris Mason39279cc2007-06-12 06:35:45 -04002475
Chris Mason5f39d392007-10-15 16:14:19 -04002476 leaf = path->nodes[0];
2477 inode_item = btrfs_item_ptr(leaf, path->slots[0],
2478 struct btrfs_inode_item);
2479
2480 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
2481 inode->i_nlink = btrfs_inode_nlink(leaf, inode_item);
2482 inode->i_uid = btrfs_inode_uid(leaf, inode_item);
2483 inode->i_gid = btrfs_inode_gid(leaf, inode_item);
Chris Masondbe674a2008-07-17 12:54:05 -04002484 btrfs_i_size_write(inode, btrfs_inode_size(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04002485
2486 tspec = btrfs_inode_atime(inode_item);
2487 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2488 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2489
2490 tspec = btrfs_inode_mtime(inode_item);
2491 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2492 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2493
2494 tspec = btrfs_inode_ctime(inode_item);
2495 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2496 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2497
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002498 inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04002499 BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item);
Chris Masonc3027eb2008-12-08 16:40:21 -05002500 BTRFS_I(inode)->sequence = btrfs_inode_sequence(leaf, inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04002501 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik618e21d2007-07-11 10:18:17 -04002502 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002503 rdev = btrfs_inode_rdev(leaf, inode_item);
2504
Josef Bacikaec74772008-07-24 12:12:38 -04002505 BTRFS_I(inode)->index_cnt = (u64)-1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05002506 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Josef Bacikaec74772008-07-24 12:12:38 -04002507
Chris Mason5f39d392007-10-15 16:14:19 -04002508 alloc_group_block = btrfs_inode_block_group(leaf, inode_item);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002509
Chris Mason46a53cc2009-04-27 11:47:50 -04002510 /*
2511 * try to precache a NULL acl entry for files that don't have
2512 * any xattrs or acls
2513 */
2514 maybe_acls = acls_after_inode_item(leaf, path->slots[0], inode->i_ino);
Al Viro72c04902009-06-24 16:58:48 -04002515 if (!maybe_acls)
2516 cache_no_acl(inode);
Chris Mason46a53cc2009-04-27 11:47:50 -04002517
Yan Zhengd2fb3432008-12-11 16:30:39 -05002518 BTRFS_I(inode)->block_group = btrfs_find_block_group(root, 0,
2519 alloc_group_block, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002520 btrfs_free_path(path);
2521 inode_item = NULL;
2522
Chris Mason39279cc2007-06-12 06:35:45 -04002523 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -04002524 case S_IFREG:
2525 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04002526 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05002527 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04002528 inode->i_fop = &btrfs_file_operations;
2529 inode->i_op = &btrfs_file_inode_operations;
2530 break;
2531 case S_IFDIR:
2532 inode->i_fop = &btrfs_dir_file_operations;
2533 if (root == root->fs_info->tree_root)
2534 inode->i_op = &btrfs_dir_ro_inode_operations;
2535 else
2536 inode->i_op = &btrfs_dir_inode_operations;
2537 break;
2538 case S_IFLNK:
2539 inode->i_op = &btrfs_symlink_inode_operations;
2540 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04002541 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04002542 break;
Josef Bacik618e21d2007-07-11 10:18:17 -04002543 default:
Jim Owens0279b4c2009-02-04 09:29:13 -05002544 inode->i_op = &btrfs_special_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -04002545 init_special_inode(inode, inode->i_mode, rdev);
2546 break;
Chris Mason39279cc2007-06-12 06:35:45 -04002547 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02002548
2549 btrfs_update_iflags(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002550 return;
2551
2552make_bad:
Chris Mason39279cc2007-06-12 06:35:45 -04002553 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002554 make_bad_inode(inode);
2555}
2556
Chris Masond352ac62008-09-29 15:18:18 -04002557/*
2558 * given a leaf and an inode, copy the inode fields into the leaf
2559 */
Chris Masone02119d2008-09-05 16:13:11 -04002560static void fill_inode_item(struct btrfs_trans_handle *trans,
2561 struct extent_buffer *leaf,
Chris Mason5f39d392007-10-15 16:14:19 -04002562 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -04002563 struct inode *inode)
2564{
Chris Mason5f39d392007-10-15 16:14:19 -04002565 btrfs_set_inode_uid(leaf, item, inode->i_uid);
2566 btrfs_set_inode_gid(leaf, item, inode->i_gid);
Chris Masondbe674a2008-07-17 12:54:05 -04002567 btrfs_set_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size);
Chris Mason5f39d392007-10-15 16:14:19 -04002568 btrfs_set_inode_mode(leaf, item, inode->i_mode);
2569 btrfs_set_inode_nlink(leaf, item, inode->i_nlink);
2570
2571 btrfs_set_timespec_sec(leaf, btrfs_inode_atime(item),
2572 inode->i_atime.tv_sec);
2573 btrfs_set_timespec_nsec(leaf, btrfs_inode_atime(item),
2574 inode->i_atime.tv_nsec);
2575
2576 btrfs_set_timespec_sec(leaf, btrfs_inode_mtime(item),
2577 inode->i_mtime.tv_sec);
2578 btrfs_set_timespec_nsec(leaf, btrfs_inode_mtime(item),
2579 inode->i_mtime.tv_nsec);
2580
2581 btrfs_set_timespec_sec(leaf, btrfs_inode_ctime(item),
2582 inode->i_ctime.tv_sec);
2583 btrfs_set_timespec_nsec(leaf, btrfs_inode_ctime(item),
2584 inode->i_ctime.tv_nsec);
2585
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002586 btrfs_set_inode_nbytes(leaf, item, inode_get_bytes(inode));
Chris Masone02119d2008-09-05 16:13:11 -04002587 btrfs_set_inode_generation(leaf, item, BTRFS_I(inode)->generation);
Chris Masonc3027eb2008-12-08 16:40:21 -05002588 btrfs_set_inode_sequence(leaf, item, BTRFS_I(inode)->sequence);
Chris Masone02119d2008-09-05 16:13:11 -04002589 btrfs_set_inode_transid(leaf, item, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04002590 btrfs_set_inode_rdev(leaf, item, inode->i_rdev);
Yanb98b6762008-01-08 15:54:37 -05002591 btrfs_set_inode_flags(leaf, item, BTRFS_I(inode)->flags);
Yan Zhengd2fb3432008-12-11 16:30:39 -05002592 btrfs_set_inode_block_group(leaf, item, BTRFS_I(inode)->block_group);
Chris Mason39279cc2007-06-12 06:35:45 -04002593}
2594
Chris Masond352ac62008-09-29 15:18:18 -04002595/*
2596 * copy everything in the in-memory inode into the btree.
2597 */
Chris Masond3977122009-01-05 21:25:51 -05002598noinline int btrfs_update_inode(struct btrfs_trans_handle *trans,
2599 struct btrfs_root *root, struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002600{
2601 struct btrfs_inode_item *inode_item;
2602 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002603 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002604 int ret;
2605
2606 path = btrfs_alloc_path();
2607 BUG_ON(!path);
Chris Masonb9473432009-03-13 11:00:37 -04002608 path->leave_spinning = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002609 ret = btrfs_lookup_inode(trans, root, path,
2610 &BTRFS_I(inode)->location, 1);
2611 if (ret) {
2612 if (ret > 0)
2613 ret = -ENOENT;
2614 goto failed;
2615 }
2616
Chris Masonb4ce94d2009-02-04 09:25:08 -05002617 btrfs_unlock_up_safe(path, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002618 leaf = path->nodes[0];
2619 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04002620 struct btrfs_inode_item);
2621
Chris Masone02119d2008-09-05 16:13:11 -04002622 fill_inode_item(trans, leaf, inode_item, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04002623 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002624 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002625 ret = 0;
2626failed:
Chris Mason39279cc2007-06-12 06:35:45 -04002627 btrfs_free_path(path);
2628 return ret;
2629}
2630
2631
Chris Masond352ac62008-09-29 15:18:18 -04002632/*
2633 * unlink helper that gets used here in inode.c and in the tree logging
2634 * recovery code. It remove a link in a directory with a given name, and
2635 * also drops the back refs in the inode to the directory
2636 */
Chris Masone02119d2008-09-05 16:13:11 -04002637int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
2638 struct btrfs_root *root,
2639 struct inode *dir, struct inode *inode,
2640 const char *name, int name_len)
Chris Mason39279cc2007-06-12 06:35:45 -04002641{
2642 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04002643 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002644 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002645 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -04002646 struct btrfs_key key;
Josef Bacikaec74772008-07-24 12:12:38 -04002647 u64 index;
Chris Mason39279cc2007-06-12 06:35:45 -04002648
2649 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04002650 if (!path) {
2651 ret = -ENOMEM;
Tsutomu Itoh554233a2011-02-03 03:16:25 +00002652 goto out;
Chris Mason54aa1f42007-06-22 14:16:25 -04002653 }
2654
Chris Masonb9473432009-03-13 11:00:37 -04002655 path->leave_spinning = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002656 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
2657 name, name_len, -1);
2658 if (IS_ERR(di)) {
2659 ret = PTR_ERR(di);
2660 goto err;
2661 }
2662 if (!di) {
2663 ret = -ENOENT;
2664 goto err;
2665 }
Chris Mason5f39d392007-10-15 16:14:19 -04002666 leaf = path->nodes[0];
2667 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -04002668 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -04002669 if (ret)
2670 goto err;
Chris Mason39279cc2007-06-12 06:35:45 -04002671 btrfs_release_path(root, path);
2672
Josef Bacikaec74772008-07-24 12:12:38 -04002673 ret = btrfs_del_inode_ref(trans, root, name, name_len,
Chris Masone02119d2008-09-05 16:13:11 -04002674 inode->i_ino,
2675 dir->i_ino, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04002676 if (ret) {
Chris Masond3977122009-01-05 21:25:51 -05002677 printk(KERN_INFO "btrfs failed to delete reference to %.*s, "
Josef Bacikaec74772008-07-24 12:12:38 -04002678 "inode %lu parent %lu\n", name_len, name,
Chris Masone02119d2008-09-05 16:13:11 -04002679 inode->i_ino, dir->i_ino);
Josef Bacikaec74772008-07-24 12:12:38 -04002680 goto err;
2681 }
2682
Chris Mason39279cc2007-06-12 06:35:45 -04002683 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino,
Josef Bacikaec74772008-07-24 12:12:38 -04002684 index, name, name_len, -1);
Chris Mason39279cc2007-06-12 06:35:45 -04002685 if (IS_ERR(di)) {
2686 ret = PTR_ERR(di);
2687 goto err;
2688 }
2689 if (!di) {
2690 ret = -ENOENT;
2691 goto err;
2692 }
2693 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason925baed2008-06-25 16:01:30 -04002694 btrfs_release_path(root, path);
Chris Mason39279cc2007-06-12 06:35:45 -04002695
Chris Masone02119d2008-09-05 16:13:11 -04002696 ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len,
2697 inode, dir->i_ino);
Chris Mason49eb7e42008-09-11 15:53:12 -04002698 BUG_ON(ret != 0 && ret != -ENOENT);
Chris Masone02119d2008-09-05 16:13:11 -04002699
2700 ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len,
2701 dir, index);
Chris Mason6418c962010-10-30 07:34:24 -04002702 if (ret == -ENOENT)
2703 ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002704err:
2705 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002706 if (ret)
2707 goto out;
2708
2709 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
2710 inode->i_ctime = dir->i_mtime = dir->i_ctime = CURRENT_TIME;
2711 btrfs_update_inode(trans, root, dir);
2712 btrfs_drop_nlink(inode);
2713 ret = btrfs_update_inode(trans, root, inode);
Chris Masone02119d2008-09-05 16:13:11 -04002714out:
Chris Mason39279cc2007-06-12 06:35:45 -04002715 return ret;
2716}
2717
Yan, Zhenga22285a2010-05-16 10:48:46 -04002718/* helper to check if there is any shared block in the path */
2719static int check_path_shared(struct btrfs_root *root,
2720 struct btrfs_path *path)
2721{
2722 struct extent_buffer *eb;
2723 int level;
Dan Carpenter0e4dcbe2010-06-01 08:23:11 +00002724 u64 refs = 1;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002725
2726 for (level = 0; level < BTRFS_MAX_LEVEL; level++) {
Josef Bacikdedefd72011-01-24 21:43:18 +00002727 int ret;
2728
Yan, Zhenga22285a2010-05-16 10:48:46 -04002729 if (!path->nodes[level])
2730 break;
2731 eb = path->nodes[level];
2732 if (!btrfs_block_can_be_shared(root, eb))
2733 continue;
2734 ret = btrfs_lookup_extent_info(NULL, root, eb->start, eb->len,
2735 &refs, NULL);
2736 if (refs > 1)
2737 return 1;
2738 }
Josef Bacikdedefd72011-01-24 21:43:18 +00002739 return 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002740}
2741
2742/*
2743 * helper to start transaction for unlink and rmdir.
2744 *
2745 * unlink and rmdir are special in btrfs, they do not always free space.
2746 * so in enospc case, we should make sure they will free space before
2747 * allowing them to use the global metadata reservation.
2748 */
2749static struct btrfs_trans_handle *__unlink_start_trans(struct inode *dir,
2750 struct dentry *dentry)
2751{
2752 struct btrfs_trans_handle *trans;
2753 struct btrfs_root *root = BTRFS_I(dir)->root;
2754 struct btrfs_path *path;
2755 struct btrfs_inode_ref *ref;
2756 struct btrfs_dir_item *di;
2757 struct inode *inode = dentry->d_inode;
2758 u64 index;
2759 int check_link = 1;
2760 int err = -ENOSPC;
2761 int ret;
2762
2763 trans = btrfs_start_transaction(root, 10);
2764 if (!IS_ERR(trans) || PTR_ERR(trans) != -ENOSPC)
2765 return trans;
2766
2767 if (inode->i_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
2768 return ERR_PTR(-ENOSPC);
2769
2770 /* check if there is someone else holds reference */
2771 if (S_ISDIR(inode->i_mode) && atomic_read(&inode->i_count) > 1)
2772 return ERR_PTR(-ENOSPC);
2773
2774 if (atomic_read(&inode->i_count) > 2)
2775 return ERR_PTR(-ENOSPC);
2776
2777 if (xchg(&root->fs_info->enospc_unlink, 1))
2778 return ERR_PTR(-ENOSPC);
2779
2780 path = btrfs_alloc_path();
2781 if (!path) {
2782 root->fs_info->enospc_unlink = 0;
2783 return ERR_PTR(-ENOMEM);
2784 }
2785
2786 trans = btrfs_start_transaction(root, 0);
2787 if (IS_ERR(trans)) {
2788 btrfs_free_path(path);
2789 root->fs_info->enospc_unlink = 0;
2790 return trans;
2791 }
2792
2793 path->skip_locking = 1;
2794 path->search_commit_root = 1;
2795
2796 ret = btrfs_lookup_inode(trans, root, path,
2797 &BTRFS_I(dir)->location, 0);
2798 if (ret < 0) {
2799 err = ret;
2800 goto out;
2801 }
2802 if (ret == 0) {
2803 if (check_path_shared(root, path))
2804 goto out;
2805 } else {
2806 check_link = 0;
2807 }
2808 btrfs_release_path(root, path);
2809
2810 ret = btrfs_lookup_inode(trans, root, path,
2811 &BTRFS_I(inode)->location, 0);
2812 if (ret < 0) {
2813 err = ret;
2814 goto out;
2815 }
2816 if (ret == 0) {
2817 if (check_path_shared(root, path))
2818 goto out;
2819 } else {
2820 check_link = 0;
2821 }
2822 btrfs_release_path(root, path);
2823
2824 if (ret == 0 && S_ISREG(inode->i_mode)) {
2825 ret = btrfs_lookup_file_extent(trans, root, path,
2826 inode->i_ino, (u64)-1, 0);
2827 if (ret < 0) {
2828 err = ret;
2829 goto out;
2830 }
2831 BUG_ON(ret == 0);
2832 if (check_path_shared(root, path))
2833 goto out;
2834 btrfs_release_path(root, path);
2835 }
2836
2837 if (!check_link) {
2838 err = 0;
2839 goto out;
2840 }
2841
2842 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
2843 dentry->d_name.name, dentry->d_name.len, 0);
2844 if (IS_ERR(di)) {
2845 err = PTR_ERR(di);
2846 goto out;
2847 }
2848 if (di) {
2849 if (check_path_shared(root, path))
2850 goto out;
2851 } else {
2852 err = 0;
2853 goto out;
2854 }
2855 btrfs_release_path(root, path);
2856
2857 ref = btrfs_lookup_inode_ref(trans, root, path,
2858 dentry->d_name.name, dentry->d_name.len,
2859 inode->i_ino, dir->i_ino, 0);
2860 if (IS_ERR(ref)) {
2861 err = PTR_ERR(ref);
2862 goto out;
2863 }
2864 BUG_ON(!ref);
2865 if (check_path_shared(root, path))
2866 goto out;
2867 index = btrfs_inode_ref_index(path->nodes[0], ref);
2868 btrfs_release_path(root, path);
2869
2870 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino, index,
2871 dentry->d_name.name, dentry->d_name.len, 0);
2872 if (IS_ERR(di)) {
2873 err = PTR_ERR(di);
2874 goto out;
2875 }
2876 BUG_ON(ret == -ENOENT);
2877 if (check_path_shared(root, path))
2878 goto out;
2879
2880 err = 0;
2881out:
2882 btrfs_free_path(path);
2883 if (err) {
2884 btrfs_end_transaction(trans, root);
2885 root->fs_info->enospc_unlink = 0;
2886 return ERR_PTR(err);
2887 }
2888
2889 trans->block_rsv = &root->fs_info->global_block_rsv;
2890 return trans;
2891}
2892
2893static void __unlink_end_trans(struct btrfs_trans_handle *trans,
2894 struct btrfs_root *root)
2895{
2896 if (trans->block_rsv == &root->fs_info->global_block_rsv) {
2897 BUG_ON(!root->fs_info->enospc_unlink);
2898 root->fs_info->enospc_unlink = 0;
2899 }
2900 btrfs_end_transaction_throttle(trans, root);
2901}
2902
Chris Mason39279cc2007-06-12 06:35:45 -04002903static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
2904{
Yan, Zhenga22285a2010-05-16 10:48:46 -04002905 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04002906 struct btrfs_trans_handle *trans;
Josef Bacik7b128762008-07-24 12:17:14 -04002907 struct inode *inode = dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04002908 int ret;
Chris Mason1832a6d2007-12-21 16:27:21 -05002909 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002910
Yan, Zhenga22285a2010-05-16 10:48:46 -04002911 trans = __unlink_start_trans(dir, dentry);
2912 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05002913 return PTR_ERR(trans);
Chris Mason5f39d392007-10-15 16:14:19 -04002914
Chris Mason39279cc2007-06-12 06:35:45 -04002915 btrfs_set_trans_block_group(trans, dir);
Chris Mason12fcfd22009-03-24 10:24:20 -04002916
2917 btrfs_record_unlink_dir(trans, dir, dentry->d_inode, 0);
2918
Chris Masone02119d2008-09-05 16:13:11 -04002919 ret = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
2920 dentry->d_name.name, dentry->d_name.len);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002921 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04002922
Yan, Zhenga22285a2010-05-16 10:48:46 -04002923 if (inode->i_nlink == 0) {
Josef Bacik7b128762008-07-24 12:17:14 -04002924 ret = btrfs_orphan_add(trans, inode);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002925 BUG_ON(ret);
2926 }
Josef Bacik7b128762008-07-24 12:17:14 -04002927
Chris Masond3c2fdc2007-09-17 10:58:06 -04002928 nr = trans->blocks_used;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002929 __unlink_end_trans(trans, root);
Chris Masond3c2fdc2007-09-17 10:58:06 -04002930 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002931 return ret;
2932}
2933
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002934int btrfs_unlink_subvol(struct btrfs_trans_handle *trans,
2935 struct btrfs_root *root,
2936 struct inode *dir, u64 objectid,
2937 const char *name, int name_len)
2938{
2939 struct btrfs_path *path;
2940 struct extent_buffer *leaf;
2941 struct btrfs_dir_item *di;
2942 struct btrfs_key key;
2943 u64 index;
2944 int ret;
2945
2946 path = btrfs_alloc_path();
2947 if (!path)
2948 return -ENOMEM;
2949
2950 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
2951 name, name_len, -1);
2952 BUG_ON(!di || IS_ERR(di));
2953
2954 leaf = path->nodes[0];
2955 btrfs_dir_item_key_to_cpu(leaf, di, &key);
2956 WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
2957 ret = btrfs_delete_one_dir_name(trans, root, path, di);
2958 BUG_ON(ret);
2959 btrfs_release_path(root, path);
2960
2961 ret = btrfs_del_root_ref(trans, root->fs_info->tree_root,
2962 objectid, root->root_key.objectid,
2963 dir->i_ino, &index, name, name_len);
2964 if (ret < 0) {
2965 BUG_ON(ret != -ENOENT);
2966 di = btrfs_search_dir_index_item(root, path, dir->i_ino,
2967 name, name_len);
2968 BUG_ON(!di || IS_ERR(di));
2969
2970 leaf = path->nodes[0];
2971 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
2972 btrfs_release_path(root, path);
2973 index = key.offset;
2974 }
2975
2976 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino,
2977 index, name, name_len, -1);
2978 BUG_ON(!di || IS_ERR(di));
2979
2980 leaf = path->nodes[0];
2981 btrfs_dir_item_key_to_cpu(leaf, di, &key);
2982 WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
2983 ret = btrfs_delete_one_dir_name(trans, root, path, di);
2984 BUG_ON(ret);
2985 btrfs_release_path(root, path);
2986
2987 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
2988 dir->i_mtime = dir->i_ctime = CURRENT_TIME;
2989 ret = btrfs_update_inode(trans, root, dir);
2990 BUG_ON(ret);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002991
2992 btrfs_free_path(path);
2993 return 0;
2994}
2995
Chris Mason39279cc2007-06-12 06:35:45 -04002996static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
2997{
2998 struct inode *inode = dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05002999 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003000 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003001 struct btrfs_trans_handle *trans;
Chris Mason1832a6d2007-12-21 16:27:21 -05003002 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003003
Chris Mason3394e162008-11-17 20:42:26 -05003004 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE ||
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003005 inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)
Yan134d4512007-10-25 15:49:25 -04003006 return -ENOTEMPTY;
3007
Yan, Zhenga22285a2010-05-16 10:48:46 -04003008 trans = __unlink_start_trans(dir, dentry);
3009 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05003010 return PTR_ERR(trans);
Josef Bacik5df6a9f2009-11-10 21:23:48 -05003011
Chris Mason39279cc2007-06-12 06:35:45 -04003012 btrfs_set_trans_block_group(trans, dir);
Chris Mason39279cc2007-06-12 06:35:45 -04003013
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003014 if (unlikely(inode->i_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
3015 err = btrfs_unlink_subvol(trans, root, dir,
3016 BTRFS_I(inode)->location.objectid,
3017 dentry->d_name.name,
3018 dentry->d_name.len);
3019 goto out;
3020 }
3021
Josef Bacik7b128762008-07-24 12:17:14 -04003022 err = btrfs_orphan_add(trans, inode);
3023 if (err)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003024 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003025
Chris Mason39279cc2007-06-12 06:35:45 -04003026 /* now the directory is empty */
Chris Masone02119d2008-09-05 16:13:11 -04003027 err = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
3028 dentry->d_name.name, dentry->d_name.len);
Chris Masond3977122009-01-05 21:25:51 -05003029 if (!err)
Chris Masondbe674a2008-07-17 12:54:05 -04003030 btrfs_i_size_write(inode, 0);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003031out:
Chris Masond3c2fdc2007-09-17 10:58:06 -04003032 nr = trans->blocks_used;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003033 __unlink_end_trans(trans, root);
Chris Masond3c2fdc2007-09-17 10:58:06 -04003034 btrfs_btree_balance_dirty(root, nr);
Chris Mason39544012007-12-12 14:38:19 -05003035
Chris Mason39279cc2007-06-12 06:35:45 -04003036 return err;
3037}
3038
Chris Masond20f7042008-12-08 16:58:54 -05003039#if 0
Chris Mason39279cc2007-06-12 06:35:45 -04003040/*
Chris Mason323ac952008-10-01 19:05:46 -04003041 * when truncating bytes in a file, it is possible to avoid reading
3042 * the leaves that contain only checksum items. This can be the
3043 * majority of the IO required to delete a large file, but it must
3044 * be done carefully.
3045 *
3046 * The keys in the level just above the leaves are checked to make sure
3047 * the lowest key in a given leaf is a csum key, and starts at an offset
3048 * after the new size.
3049 *
3050 * Then the key for the next leaf is checked to make sure it also has
3051 * a checksum item for the same file. If it does, we know our target leaf
3052 * contains only checksum items, and it can be safely freed without reading
3053 * it.
3054 *
3055 * This is just an optimization targeted at large files. It may do
3056 * nothing. It will return 0 unless things went badly.
3057 */
3058static noinline int drop_csum_leaves(struct btrfs_trans_handle *trans,
3059 struct btrfs_root *root,
3060 struct btrfs_path *path,
3061 struct inode *inode, u64 new_size)
3062{
3063 struct btrfs_key key;
3064 int ret;
3065 int nritems;
3066 struct btrfs_key found_key;
3067 struct btrfs_key other_key;
Yan Zheng5b84e8d2008-10-09 11:46:19 -04003068 struct btrfs_leaf_ref *ref;
3069 u64 leaf_gen;
3070 u64 leaf_start;
Chris Mason323ac952008-10-01 19:05:46 -04003071
3072 path->lowest_level = 1;
3073 key.objectid = inode->i_ino;
3074 key.type = BTRFS_CSUM_ITEM_KEY;
3075 key.offset = new_size;
3076again:
3077 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
3078 if (ret < 0)
3079 goto out;
3080
3081 if (path->nodes[1] == NULL) {
3082 ret = 0;
3083 goto out;
3084 }
3085 ret = 0;
3086 btrfs_node_key_to_cpu(path->nodes[1], &found_key, path->slots[1]);
3087 nritems = btrfs_header_nritems(path->nodes[1]);
3088
3089 if (!nritems)
3090 goto out;
3091
3092 if (path->slots[1] >= nritems)
3093 goto next_node;
3094
3095 /* did we find a key greater than anything we want to delete? */
3096 if (found_key.objectid > inode->i_ino ||
3097 (found_key.objectid == inode->i_ino && found_key.type > key.type))
3098 goto out;
3099
3100 /* we check the next key in the node to make sure the leave contains
3101 * only checksum items. This comparison doesn't work if our
3102 * leaf is the last one in the node
3103 */
3104 if (path->slots[1] + 1 >= nritems) {
3105next_node:
3106 /* search forward from the last key in the node, this
3107 * will bring us into the next node in the tree
3108 */
3109 btrfs_node_key_to_cpu(path->nodes[1], &found_key, nritems - 1);
3110
3111 /* unlikely, but we inc below, so check to be safe */
3112 if (found_key.offset == (u64)-1)
3113 goto out;
3114
3115 /* search_forward needs a path with locks held, do the
3116 * search again for the original key. It is possible
3117 * this will race with a balance and return a path that
3118 * we could modify, but this drop is just an optimization
3119 * and is allowed to miss some leaves.
3120 */
3121 btrfs_release_path(root, path);
3122 found_key.offset++;
3123
3124 /* setup a max key for search_forward */
3125 other_key.offset = (u64)-1;
3126 other_key.type = key.type;
3127 other_key.objectid = key.objectid;
3128
3129 path->keep_locks = 1;
3130 ret = btrfs_search_forward(root, &found_key, &other_key,
3131 path, 0, 0);
3132 path->keep_locks = 0;
3133 if (ret || found_key.objectid != key.objectid ||
3134 found_key.type != key.type) {
3135 ret = 0;
3136 goto out;
3137 }
3138
3139 key.offset = found_key.offset;
3140 btrfs_release_path(root, path);
3141 cond_resched();
3142 goto again;
3143 }
3144
3145 /* we know there's one more slot after us in the tree,
3146 * read that key so we can verify it is also a checksum item
3147 */
3148 btrfs_node_key_to_cpu(path->nodes[1], &other_key, path->slots[1] + 1);
3149
3150 if (found_key.objectid < inode->i_ino)
3151 goto next_key;
3152
3153 if (found_key.type != key.type || found_key.offset < new_size)
3154 goto next_key;
3155
3156 /*
3157 * if the key for the next leaf isn't a csum key from this objectid,
3158 * we can't be sure there aren't good items inside this leaf.
3159 * Bail out
3160 */
3161 if (other_key.objectid != inode->i_ino || other_key.type != key.type)
3162 goto out;
3163
Yan Zheng5b84e8d2008-10-09 11:46:19 -04003164 leaf_start = btrfs_node_blockptr(path->nodes[1], path->slots[1]);
3165 leaf_gen = btrfs_node_ptr_generation(path->nodes[1], path->slots[1]);
Chris Mason323ac952008-10-01 19:05:46 -04003166 /*
3167 * it is safe to delete this leaf, it contains only
3168 * csum items from this inode at an offset >= new_size
3169 */
Yan Zheng5b84e8d2008-10-09 11:46:19 -04003170 ret = btrfs_del_leaf(trans, root, path, leaf_start);
Chris Mason323ac952008-10-01 19:05:46 -04003171 BUG_ON(ret);
3172
Yan Zheng5b84e8d2008-10-09 11:46:19 -04003173 if (root->ref_cows && leaf_gen < trans->transid) {
3174 ref = btrfs_alloc_leaf_ref(root, 0);
3175 if (ref) {
3176 ref->root_gen = root->root_key.offset;
3177 ref->bytenr = leaf_start;
3178 ref->owner = 0;
3179 ref->generation = leaf_gen;
3180 ref->nritems = 0;
3181
Chris Masonbd56b302009-02-04 09:27:02 -05003182 btrfs_sort_leaf_ref(ref);
3183
Yan Zheng5b84e8d2008-10-09 11:46:19 -04003184 ret = btrfs_add_leaf_ref(root, ref, 0);
3185 WARN_ON(ret);
3186 btrfs_free_leaf_ref(root, ref);
3187 } else {
3188 WARN_ON(1);
3189 }
3190 }
Chris Mason323ac952008-10-01 19:05:46 -04003191next_key:
3192 btrfs_release_path(root, path);
3193
3194 if (other_key.objectid == inode->i_ino &&
3195 other_key.type == key.type && other_key.offset > key.offset) {
3196 key.offset = other_key.offset;
3197 cond_resched();
3198 goto again;
3199 }
3200 ret = 0;
3201out:
3202 /* fixup any changes we've made to the path */
3203 path->lowest_level = 0;
3204 path->keep_locks = 0;
3205 btrfs_release_path(root, path);
3206 return ret;
3207}
3208
Chris Masond20f7042008-12-08 16:58:54 -05003209#endif
3210
Chris Mason323ac952008-10-01 19:05:46 -04003211/*
Chris Mason39279cc2007-06-12 06:35:45 -04003212 * this can truncate away extent items, csum items and directory items.
3213 * It starts at a high offset and removes keys until it can't find
Chris Masond352ac62008-09-29 15:18:18 -04003214 * any higher than new_size
Chris Mason39279cc2007-06-12 06:35:45 -04003215 *
3216 * csum items that cross the new i_size are truncated to the new size
3217 * as well.
Josef Bacik7b128762008-07-24 12:17:14 -04003218 *
3219 * min_type is the minimum key type to truncate down to. If set to 0, this
3220 * will kill all the items on this inode, including the INODE_ITEM_KEY.
Chris Mason39279cc2007-06-12 06:35:45 -04003221 */
Yan, Zheng80825102009-11-12 09:35:36 +00003222int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
3223 struct btrfs_root *root,
3224 struct inode *inode,
3225 u64 new_size, u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04003226{
Chris Mason39279cc2007-06-12 06:35:45 -04003227 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04003228 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003229 struct btrfs_file_extent_item *fi;
Yan, Zheng80825102009-11-12 09:35:36 +00003230 struct btrfs_key key;
3231 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04003232 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04003233 u64 extent_num_bytes = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003234 u64 extent_offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003235 u64 item_end = 0;
Yan, Zheng80825102009-11-12 09:35:36 +00003236 u64 mask = root->sectorsize - 1;
3237 u32 found_type = (u8)-1;
Chris Mason39279cc2007-06-12 06:35:45 -04003238 int found_extent;
3239 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05003240 int pending_del_nr = 0;
3241 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04003242 int extent_type = -1;
Chris Mason771ed682008-11-06 22:02:51 -05003243 int encoding;
Yan, Zheng80825102009-11-12 09:35:36 +00003244 int ret;
3245 int err = 0;
3246
3247 BUG_ON(new_size > 0 && min_type != BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04003248
Josef Bacik0af3d002010-06-21 14:48:16 -04003249 if (root->ref_cows || root == root->fs_info->tree_root)
Zheng Yan5b21f2e2008-09-26 10:05:38 -04003250 btrfs_drop_extent_cache(inode, new_size & (~mask), (u64)-1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003251
Chris Mason39279cc2007-06-12 06:35:45 -04003252 path = btrfs_alloc_path();
3253 BUG_ON(!path);
Julia Lawall33c17ad2009-07-22 16:49:01 -04003254 path->reada = -1;
Chris Mason5f39d392007-10-15 16:14:19 -04003255
Chris Mason39279cc2007-06-12 06:35:45 -04003256 key.objectid = inode->i_ino;
3257 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04003258 key.type = (u8)-1;
3259
Chris Mason85e21ba2008-01-29 15:11:36 -05003260search_again:
Chris Masonb9473432009-03-13 11:00:37 -04003261 path->leave_spinning = 1;
Chris Mason85e21ba2008-01-29 15:11:36 -05003262 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Yan, Zheng80825102009-11-12 09:35:36 +00003263 if (ret < 0) {
3264 err = ret;
3265 goto out;
3266 }
Chris Masond3977122009-01-05 21:25:51 -05003267
Chris Mason85e21ba2008-01-29 15:11:36 -05003268 if (ret > 0) {
Chris Masone02119d2008-09-05 16:13:11 -04003269 /* there are no items in the tree for us to truncate, we're
3270 * done
3271 */
Yan, Zheng80825102009-11-12 09:35:36 +00003272 if (path->slots[0] == 0)
3273 goto out;
Chris Mason85e21ba2008-01-29 15:11:36 -05003274 path->slots[0]--;
3275 }
3276
Chris Masond3977122009-01-05 21:25:51 -05003277 while (1) {
Chris Mason39279cc2007-06-12 06:35:45 -04003278 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04003279 leaf = path->nodes[0];
3280 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3281 found_type = btrfs_key_type(&found_key);
Chris Mason771ed682008-11-06 22:02:51 -05003282 encoding = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003283
Chris Mason5f39d392007-10-15 16:14:19 -04003284 if (found_key.objectid != inode->i_ino)
Chris Mason39279cc2007-06-12 06:35:45 -04003285 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003286
Chris Mason85e21ba2008-01-29 15:11:36 -05003287 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04003288 break;
3289
Chris Mason5f39d392007-10-15 16:14:19 -04003290 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04003291 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04003292 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04003293 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04003294 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Mason771ed682008-11-06 22:02:51 -05003295 encoding = btrfs_file_extent_compression(leaf, fi);
3296 encoding |= btrfs_file_extent_encryption(leaf, fi);
3297 encoding |= btrfs_file_extent_other_encoding(leaf, fi);
3298
Chris Mason179e29e2007-11-01 11:28:41 -04003299 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04003300 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04003301 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -04003302 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason179e29e2007-11-01 11:28:41 -04003303 item_end += btrfs_file_extent_inline_len(leaf,
Chris Masonc8b97812008-10-29 14:49:59 -04003304 fi);
Chris Mason39279cc2007-06-12 06:35:45 -04003305 }
Yan008630c2007-11-07 13:31:09 -05003306 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04003307 }
Yan, Zheng80825102009-11-12 09:35:36 +00003308 if (found_type > min_type) {
Chris Mason39279cc2007-06-12 06:35:45 -04003309 del_item = 1;
Yan, Zheng80825102009-11-12 09:35:36 +00003310 } else {
3311 if (item_end < new_size)
3312 break;
3313 if (found_key.offset >= new_size)
3314 del_item = 1;
3315 else
3316 del_item = 0;
3317 }
Chris Mason39279cc2007-06-12 06:35:45 -04003318 found_extent = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003319 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04003320 if (found_type != BTRFS_EXTENT_DATA_KEY)
3321 goto delete;
3322
3323 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04003324 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04003325 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Chris Mason771ed682008-11-06 22:02:51 -05003326 if (!del_item && !encoding) {
Chris Masondb945352007-10-15 16:15:53 -04003327 u64 orig_num_bytes =
3328 btrfs_file_extent_num_bytes(leaf, fi);
Chris Masone02119d2008-09-05 16:13:11 -04003329 extent_num_bytes = new_size -
Chris Mason5f39d392007-10-15 16:14:19 -04003330 found_key.offset + root->sectorsize - 1;
Yanb1632b12008-01-30 11:54:04 -05003331 extent_num_bytes = extent_num_bytes &
3332 ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -04003333 btrfs_set_file_extent_num_bytes(leaf, fi,
3334 extent_num_bytes);
3335 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05003336 extent_num_bytes);
Chris Masone02119d2008-09-05 16:13:11 -04003337 if (root->ref_cows && extent_start != 0)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003338 inode_sub_bytes(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04003339 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003340 } else {
Chris Masondb945352007-10-15 16:15:53 -04003341 extent_num_bytes =
3342 btrfs_file_extent_disk_num_bytes(leaf,
3343 fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003344 extent_offset = found_key.offset -
3345 btrfs_file_extent_offset(leaf, fi);
3346
Chris Mason39279cc2007-06-12 06:35:45 -04003347 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05003348 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04003349 if (extent_start != 0) {
3350 found_extent = 1;
Chris Masone02119d2008-09-05 16:13:11 -04003351 if (root->ref_cows)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003352 inode_sub_bytes(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04003353 }
3354 }
Chris Mason90692182008-02-08 13:49:28 -05003355 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003356 /*
3357 * we can't truncate inline items that have had
3358 * special encodings
3359 */
3360 if (!del_item &&
3361 btrfs_file_extent_compression(leaf, fi) == 0 &&
3362 btrfs_file_extent_encryption(leaf, fi) == 0 &&
3363 btrfs_file_extent_other_encoding(leaf, fi) == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04003364 u32 size = new_size - found_key.offset;
3365
3366 if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003367 inode_sub_bytes(inode, item_end + 1 -
3368 new_size);
Chris Masone02119d2008-09-05 16:13:11 -04003369 }
3370 size =
3371 btrfs_file_extent_calc_inline_size(size);
Chris Mason90692182008-02-08 13:49:28 -05003372 ret = btrfs_truncate_item(trans, root, path,
Chris Masone02119d2008-09-05 16:13:11 -04003373 size, 1);
Chris Mason90692182008-02-08 13:49:28 -05003374 BUG_ON(ret);
Chris Masone02119d2008-09-05 16:13:11 -04003375 } else if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003376 inode_sub_bytes(inode, item_end + 1 -
3377 found_key.offset);
Chris Mason90692182008-02-08 13:49:28 -05003378 }
Chris Mason39279cc2007-06-12 06:35:45 -04003379 }
Chris Mason179e29e2007-11-01 11:28:41 -04003380delete:
Chris Mason39279cc2007-06-12 06:35:45 -04003381 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05003382 if (!pending_del_nr) {
3383 /* no pending yet, add ourselves */
3384 pending_del_slot = path->slots[0];
3385 pending_del_nr = 1;
3386 } else if (pending_del_nr &&
3387 path->slots[0] + 1 == pending_del_slot) {
3388 /* hop on the pending chunk */
3389 pending_del_nr++;
3390 pending_del_slot = path->slots[0];
3391 } else {
Chris Masond3977122009-01-05 21:25:51 -05003392 BUG();
Chris Mason85e21ba2008-01-29 15:11:36 -05003393 }
Chris Mason39279cc2007-06-12 06:35:45 -04003394 } else {
3395 break;
3396 }
Josef Bacik0af3d002010-06-21 14:48:16 -04003397 if (found_extent && (root->ref_cows ||
3398 root == root->fs_info->tree_root)) {
Chris Masonb9473432009-03-13 11:00:37 -04003399 btrfs_set_path_blocking(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003400 ret = btrfs_free_extent(trans, root, extent_start,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003401 extent_num_bytes, 0,
3402 btrfs_header_owner(leaf),
3403 inode->i_ino, extent_offset);
Chris Mason39279cc2007-06-12 06:35:45 -04003404 BUG_ON(ret);
3405 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003406
Yan, Zheng80825102009-11-12 09:35:36 +00003407 if (found_type == BTRFS_INODE_ITEM_KEY)
3408 break;
3409
3410 if (path->slots[0] == 0 ||
3411 path->slots[0] != pending_del_slot) {
3412 if (root->ref_cows) {
3413 err = -EAGAIN;
3414 goto out;
3415 }
3416 if (pending_del_nr) {
3417 ret = btrfs_del_items(trans, root, path,
3418 pending_del_slot,
3419 pending_del_nr);
3420 BUG_ON(ret);
3421 pending_del_nr = 0;
3422 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003423 btrfs_release_path(root, path);
3424 goto search_again;
Yan, Zheng80825102009-11-12 09:35:36 +00003425 } else {
3426 path->slots[0]--;
Chris Mason85e21ba2008-01-29 15:11:36 -05003427 }
Chris Mason39279cc2007-06-12 06:35:45 -04003428 }
Yan, Zheng80825102009-11-12 09:35:36 +00003429out:
Chris Mason85e21ba2008-01-29 15:11:36 -05003430 if (pending_del_nr) {
3431 ret = btrfs_del_items(trans, root, path, pending_del_slot,
3432 pending_del_nr);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003433 BUG_ON(ret);
Chris Mason85e21ba2008-01-29 15:11:36 -05003434 }
Chris Mason39279cc2007-06-12 06:35:45 -04003435 btrfs_free_path(path);
Yan, Zheng80825102009-11-12 09:35:36 +00003436 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003437}
3438
Chris Masona52d9a82007-08-27 16:49:44 -04003439/*
3440 * taken from block_truncate_page, but does cow as it zeros out
3441 * any bytes left in the last page in the file.
3442 */
3443static int btrfs_truncate_page(struct address_space *mapping, loff_t from)
3444{
3445 struct inode *inode = mapping->host;
Chris Masondb945352007-10-15 16:15:53 -04003446 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003447 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
3448 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003449 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003450 char *kaddr;
Chris Masondb945352007-10-15 16:15:53 -04003451 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -04003452 pgoff_t index = from >> PAGE_CACHE_SHIFT;
3453 unsigned offset = from & (PAGE_CACHE_SIZE-1);
3454 struct page *page;
3455 int ret = 0;
3456 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003457 u64 page_end;
Chris Masona52d9a82007-08-27 16:49:44 -04003458
3459 if ((offset & (blocksize - 1)) == 0)
3460 goto out;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003461 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003462 if (ret)
3463 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04003464
3465 ret = -ENOMEM;
Chris Mason211c17f2008-05-15 09:13:45 -04003466again:
Chris Masona52d9a82007-08-27 16:49:44 -04003467 page = grab_cache_page(mapping, index);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003468 if (!page) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003469 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Masona52d9a82007-08-27 16:49:44 -04003470 goto out;
Josef Bacik5d5e1032009-10-13 16:46:49 -04003471 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04003472
3473 page_start = page_offset(page);
3474 page_end = page_start + PAGE_CACHE_SIZE - 1;
3475
Chris Masona52d9a82007-08-27 16:49:44 -04003476 if (!PageUptodate(page)) {
3477 ret = btrfs_readpage(NULL, page);
3478 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04003479 if (page->mapping != mapping) {
3480 unlock_page(page);
3481 page_cache_release(page);
3482 goto again;
3483 }
Chris Masona52d9a82007-08-27 16:49:44 -04003484 if (!PageUptodate(page)) {
3485 ret = -EIO;
Chris Mason89642222008-07-24 09:41:53 -04003486 goto out_unlock;
Chris Masona52d9a82007-08-27 16:49:44 -04003487 }
3488 }
Chris Mason211c17f2008-05-15 09:13:45 -04003489 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003490
Josef Bacik2ac55d42010-02-03 19:33:23 +00003491 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state,
3492 GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003493 set_page_extent_mapped(page);
3494
3495 ordered = btrfs_lookup_ordered_extent(inode, page_start);
3496 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00003497 unlock_extent_cached(io_tree, page_start, page_end,
3498 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003499 unlock_page(page);
3500 page_cache_release(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04003501 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003502 btrfs_put_ordered_extent(ordered);
3503 goto again;
3504 }
3505
Josef Bacik2ac55d42010-02-03 19:33:23 +00003506 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Josef Bacik5d5e1032009-10-13 16:46:49 -04003507 EXTENT_DIRTY | EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00003508 0, 0, &cached_state, GFP_NOFS);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003509
Josef Bacik2ac55d42010-02-03 19:33:23 +00003510 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
3511 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003512 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00003513 unlock_extent_cached(io_tree, page_start, page_end,
3514 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003515 goto out_unlock;
3516 }
3517
Chris Masone6dcd2d2008-07-17 12:53:50 -04003518 ret = 0;
3519 if (offset != PAGE_CACHE_SIZE) {
3520 kaddr = kmap(page);
3521 memset(kaddr + offset, 0, PAGE_CACHE_SIZE - offset);
3522 flush_dcache_page(page);
3523 kunmap(page);
3524 }
Chris Mason247e7432008-07-17 12:53:51 -04003525 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003526 set_page_dirty(page);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003527 unlock_extent_cached(io_tree, page_start, page_end, &cached_state,
3528 GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04003529
Chris Mason89642222008-07-24 09:41:53 -04003530out_unlock:
Josef Bacik5d5e1032009-10-13 16:46:49 -04003531 if (ret)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003532 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Mason39279cc2007-06-12 06:35:45 -04003533 unlock_page(page);
3534 page_cache_release(page);
3535out:
3536 return ret;
3537}
3538
Yan Zheng9036c102008-10-30 14:19:41 -04003539int btrfs_cont_expand(struct inode *inode, loff_t size)
3540{
3541 struct btrfs_trans_handle *trans;
3542 struct btrfs_root *root = BTRFS_I(inode)->root;
3543 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003544 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003545 struct extent_state *cached_state = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04003546 u64 mask = root->sectorsize - 1;
3547 u64 hole_start = (inode->i_size + mask) & ~mask;
3548 u64 block_end = (size + mask) & ~mask;
3549 u64 last_byte;
3550 u64 cur_offset;
3551 u64 hole_size;
Josef Bacik9ed74f22009-09-11 16:12:44 -04003552 int err = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04003553
3554 if (size <= hole_start)
3555 return 0;
3556
Yan Zheng9036c102008-10-30 14:19:41 -04003557 while (1) {
3558 struct btrfs_ordered_extent *ordered;
3559 btrfs_wait_ordered_range(inode, hole_start,
3560 block_end - hole_start);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003561 lock_extent_bits(io_tree, hole_start, block_end - 1, 0,
3562 &cached_state, GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003563 ordered = btrfs_lookup_ordered_extent(inode, hole_start);
3564 if (!ordered)
3565 break;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003566 unlock_extent_cached(io_tree, hole_start, block_end - 1,
3567 &cached_state, GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003568 btrfs_put_ordered_extent(ordered);
3569 }
3570
Yan Zheng9036c102008-10-30 14:19:41 -04003571 cur_offset = hole_start;
3572 while (1) {
3573 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
3574 block_end - cur_offset, 0);
3575 BUG_ON(IS_ERR(em) || !em);
3576 last_byte = min(extent_map_end(em), block_end);
3577 last_byte = (last_byte + mask) & ~mask;
Yan, Zheng80825102009-11-12 09:35:36 +00003578 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
Chris Mason771ed682008-11-06 22:02:51 -05003579 u64 hint_byte = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04003580 hole_size = last_byte - cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00003581
Yan, Zhenga22285a2010-05-16 10:48:46 -04003582 trans = btrfs_start_transaction(root, 2);
3583 if (IS_ERR(trans)) {
3584 err = PTR_ERR(trans);
Chris Mason771ed682008-11-06 22:02:51 -05003585 break;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003586 }
Yan, Zheng80825102009-11-12 09:35:36 +00003587 btrfs_set_trans_block_group(trans, inode);
3588
3589 err = btrfs_drop_extents(trans, inode, cur_offset,
3590 cur_offset + hole_size,
3591 &hint_byte, 1);
3592 BUG_ON(err);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003593
Yan Zheng9036c102008-10-30 14:19:41 -04003594 err = btrfs_insert_file_extent(trans, root,
3595 inode->i_ino, cur_offset, 0,
3596 0, hole_size, 0, hole_size,
3597 0, 0, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003598 BUG_ON(err);
3599
Yan Zheng9036c102008-10-30 14:19:41 -04003600 btrfs_drop_extent_cache(inode, hole_start,
3601 last_byte - 1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003602
3603 btrfs_end_transaction(trans, root);
Yan Zheng9036c102008-10-30 14:19:41 -04003604 }
3605 free_extent_map(em);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003606 em = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04003607 cur_offset = last_byte;
Yan, Zheng80825102009-11-12 09:35:36 +00003608 if (cur_offset >= block_end)
Yan Zheng9036c102008-10-30 14:19:41 -04003609 break;
3610 }
3611
Yan, Zhenga22285a2010-05-16 10:48:46 -04003612 free_extent_map(em);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003613 unlock_extent_cached(io_tree, hole_start, block_end - 1, &cached_state,
3614 GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003615 return err;
3616}
3617
Yan, Zheng80825102009-11-12 09:35:36 +00003618static int btrfs_setattr_size(struct inode *inode, struct iattr *attr)
3619{
3620 struct btrfs_root *root = BTRFS_I(inode)->root;
3621 struct btrfs_trans_handle *trans;
3622 unsigned long nr;
3623 int ret;
3624
3625 if (attr->ia_size == inode->i_size)
3626 return 0;
3627
3628 if (attr->ia_size > inode->i_size) {
3629 unsigned long limit;
3630 limit = current->signal->rlim[RLIMIT_FSIZE].rlim_cur;
3631 if (attr->ia_size > inode->i_sb->s_maxbytes)
3632 return -EFBIG;
3633 if (limit != RLIM_INFINITY && attr->ia_size > limit) {
3634 send_sig(SIGXFSZ, current, 0);
3635 return -EFBIG;
3636 }
3637 }
3638
Yan, Zhengd68fc572010-05-16 10:49:58 -04003639 trans = btrfs_start_transaction(root, 5);
3640 if (IS_ERR(trans))
3641 return PTR_ERR(trans);
Yan, Zheng80825102009-11-12 09:35:36 +00003642
Yan, Zheng80825102009-11-12 09:35:36 +00003643 btrfs_set_trans_block_group(trans, inode);
3644
3645 ret = btrfs_orphan_add(trans, inode);
3646 BUG_ON(ret);
3647
3648 nr = trans->blocks_used;
3649 btrfs_end_transaction(trans, root);
Yan, Zheng80825102009-11-12 09:35:36 +00003650 btrfs_btree_balance_dirty(root, nr);
3651
3652 if (attr->ia_size > inode->i_size) {
3653 ret = btrfs_cont_expand(inode, attr->ia_size);
3654 if (ret) {
3655 btrfs_truncate(inode);
3656 return ret;
3657 }
3658
3659 i_size_write(inode, attr->ia_size);
3660 btrfs_ordered_update_i_size(inode, inode->i_size, NULL);
3661
Yan, Zhengd68fc572010-05-16 10:49:58 -04003662 trans = btrfs_start_transaction(root, 0);
3663 BUG_ON(IS_ERR(trans));
Yan, Zheng80825102009-11-12 09:35:36 +00003664 btrfs_set_trans_block_group(trans, inode);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003665 trans->block_rsv = root->orphan_block_rsv;
3666 BUG_ON(!trans->block_rsv);
Yan, Zheng80825102009-11-12 09:35:36 +00003667
3668 ret = btrfs_update_inode(trans, root, inode);
3669 BUG_ON(ret);
3670 if (inode->i_nlink > 0) {
3671 ret = btrfs_orphan_del(trans, inode);
3672 BUG_ON(ret);
3673 }
3674 nr = trans->blocks_used;
3675 btrfs_end_transaction(trans, root);
3676 btrfs_btree_balance_dirty(root, nr);
3677 return 0;
3678 }
3679
3680 /*
3681 * We're truncating a file that used to have good data down to
3682 * zero. Make sure it gets into the ordered flush list so that
3683 * any new writes get down to disk quickly.
3684 */
3685 if (attr->ia_size == 0)
3686 BTRFS_I(inode)->ordered_data_close = 1;
3687
3688 /* we don't support swapfiles, so vmtruncate shouldn't fail */
3689 ret = vmtruncate(inode, attr->ia_size);
3690 BUG_ON(ret);
3691
3692 return 0;
3693}
3694
Chris Mason39279cc2007-06-12 06:35:45 -04003695static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
3696{
3697 struct inode *inode = dentry->d_inode;
Li Zefanb83cc962010-12-20 16:04:08 +08003698 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003699 int err;
3700
Li Zefanb83cc962010-12-20 16:04:08 +08003701 if (btrfs_root_readonly(root))
3702 return -EROFS;
3703
Chris Mason39279cc2007-06-12 06:35:45 -04003704 err = inode_change_ok(inode, attr);
3705 if (err)
3706 return err;
3707
Chris Mason5a3f23d2009-03-31 13:27:11 -04003708 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
Yan, Zheng80825102009-11-12 09:35:36 +00003709 err = btrfs_setattr_size(inode, attr);
3710 if (err)
3711 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003712 }
Yan Zheng9036c102008-10-30 14:19:41 -04003713
Christoph Hellwig10257742010-06-04 11:30:02 +02003714 if (attr->ia_valid) {
3715 setattr_copy(inode, attr);
3716 mark_inode_dirty(inode);
Josef Bacik33268ea2008-07-24 12:16:36 -04003717
Christoph Hellwig10257742010-06-04 11:30:02 +02003718 if (attr->ia_valid & ATTR_MODE)
3719 err = btrfs_acl_chmod(inode);
3720 }
3721
Chris Mason39279cc2007-06-12 06:35:45 -04003722 return err;
3723}
Chris Mason61295eb2008-01-14 16:24:38 -05003724
Al Virobd555972010-06-07 11:35:40 -04003725void btrfs_evict_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04003726{
3727 struct btrfs_trans_handle *trans;
3728 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond3c2fdc2007-09-17 10:58:06 -04003729 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04003730 int ret;
3731
3732 truncate_inode_pages(&inode->i_data, 0);
Josef Bacik0af3d002010-06-21 14:48:16 -04003733 if (inode->i_nlink && (btrfs_root_refs(&root->root_item) != 0 ||
3734 root == root->fs_info->tree_root))
Al Virobd555972010-06-07 11:35:40 -04003735 goto no_delete;
3736
Chris Mason39279cc2007-06-12 06:35:45 -04003737 if (is_bad_inode(inode)) {
Josef Bacik7b128762008-07-24 12:17:14 -04003738 btrfs_orphan_del(NULL, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003739 goto no_delete;
3740 }
Al Virobd555972010-06-07 11:35:40 -04003741 /* do we really want it for ->i_nlink > 0 and zero btrfs_root_refs? */
Chris Mason4a096752008-07-21 10:29:44 -04003742 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Chris Mason5f39d392007-10-15 16:14:19 -04003743
Yan, Zhengc71bf092009-11-12 09:34:40 +00003744 if (root->fs_info->log_root_recovering) {
3745 BUG_ON(!list_empty(&BTRFS_I(inode)->i_orphan));
3746 goto no_delete;
3747 }
3748
Yan, Zheng76dda932009-09-21 16:00:26 -04003749 if (inode->i_nlink > 0) {
3750 BUG_ON(btrfs_root_refs(&root->root_item) != 0);
3751 goto no_delete;
3752 }
3753
Chris Masondbe674a2008-07-17 12:54:05 -04003754 btrfs_i_size_write(inode, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003755
Yan, Zheng80825102009-11-12 09:35:36 +00003756 while (1) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04003757 trans = btrfs_start_transaction(root, 0);
3758 BUG_ON(IS_ERR(trans));
Yan, Zheng80825102009-11-12 09:35:36 +00003759 btrfs_set_trans_block_group(trans, inode);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003760 trans->block_rsv = root->orphan_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00003761
Yan, Zhengd68fc572010-05-16 10:49:58 -04003762 ret = btrfs_block_rsv_check(trans, root,
3763 root->orphan_block_rsv, 0, 5);
3764 if (ret) {
3765 BUG_ON(ret != -EAGAIN);
3766 ret = btrfs_commit_transaction(trans, root);
3767 BUG_ON(ret);
3768 continue;
3769 }
3770
3771 ret = btrfs_truncate_inode_items(trans, root, inode, 0, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003772 if (ret != -EAGAIN)
3773 break;
3774
3775 nr = trans->blocks_used;
3776 btrfs_end_transaction(trans, root);
3777 trans = NULL;
3778 btrfs_btree_balance_dirty(root, nr);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003779
Josef Bacik7b128762008-07-24 12:17:14 -04003780 }
3781
Yan, Zheng80825102009-11-12 09:35:36 +00003782 if (ret == 0) {
3783 ret = btrfs_orphan_del(trans, inode);
3784 BUG_ON(ret);
3785 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003786
Chris Masond3c2fdc2007-09-17 10:58:06 -04003787 nr = trans->blocks_used;
Chris Mason54aa1f42007-06-22 14:16:25 -04003788 btrfs_end_transaction(trans, root);
Chris Masond3c2fdc2007-09-17 10:58:06 -04003789 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003790no_delete:
Al Virobd555972010-06-07 11:35:40 -04003791 end_writeback(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003792 return;
Chris Mason39279cc2007-06-12 06:35:45 -04003793}
3794
3795/*
3796 * this returns the key found in the dir entry in the location pointer.
3797 * If no dir entries were found, location->objectid is 0.
3798 */
3799static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
3800 struct btrfs_key *location)
3801{
3802 const char *name = dentry->d_name.name;
3803 int namelen = dentry->d_name.len;
3804 struct btrfs_dir_item *di;
3805 struct btrfs_path *path;
3806 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04003807 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003808
3809 path = btrfs_alloc_path();
3810 BUG_ON(!path);
Chris Mason39544012007-12-12 14:38:19 -05003811
Chris Mason39279cc2007-06-12 06:35:45 -04003812 di = btrfs_lookup_dir_item(NULL, root, path, dir->i_ino, name,
3813 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04003814 if (IS_ERR(di))
3815 ret = PTR_ERR(di);
Chris Masond3977122009-01-05 21:25:51 -05003816
3817 if (!di || IS_ERR(di))
Chris Mason39544012007-12-12 14:38:19 -05003818 goto out_err;
Chris Masond3977122009-01-05 21:25:51 -05003819
Chris Mason5f39d392007-10-15 16:14:19 -04003820 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04003821out:
Chris Mason39279cc2007-06-12 06:35:45 -04003822 btrfs_free_path(path);
3823 return ret;
Chris Mason39544012007-12-12 14:38:19 -05003824out_err:
3825 location->objectid = 0;
3826 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04003827}
3828
3829/*
3830 * when we hit a tree root in a directory, the btrfs part of the inode
3831 * needs to be changed to reflect the root directory of the tree root. This
3832 * is kind of like crossing a mount point.
3833 */
3834static int fixup_tree_root_location(struct btrfs_root *root,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003835 struct inode *dir,
3836 struct dentry *dentry,
3837 struct btrfs_key *location,
3838 struct btrfs_root **sub_root)
Chris Mason39279cc2007-06-12 06:35:45 -04003839{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003840 struct btrfs_path *path;
3841 struct btrfs_root *new_root;
3842 struct btrfs_root_ref *ref;
3843 struct extent_buffer *leaf;
3844 int ret;
3845 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003846
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003847 path = btrfs_alloc_path();
3848 if (!path) {
3849 err = -ENOMEM;
3850 goto out;
3851 }
Chris Mason39279cc2007-06-12 06:35:45 -04003852
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003853 err = -ENOENT;
3854 ret = btrfs_find_root_ref(root->fs_info->tree_root, path,
3855 BTRFS_I(dir)->root->root_key.objectid,
3856 location->objectid);
3857 if (ret) {
3858 if (ret < 0)
3859 err = ret;
3860 goto out;
3861 }
Chris Mason39279cc2007-06-12 06:35:45 -04003862
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003863 leaf = path->nodes[0];
3864 ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref);
3865 if (btrfs_root_ref_dirid(leaf, ref) != dir->i_ino ||
3866 btrfs_root_ref_name_len(leaf, ref) != dentry->d_name.len)
3867 goto out;
3868
3869 ret = memcmp_extent_buffer(leaf, dentry->d_name.name,
3870 (unsigned long)(ref + 1),
3871 dentry->d_name.len);
3872 if (ret)
3873 goto out;
3874
3875 btrfs_release_path(root->fs_info->tree_root, path);
3876
3877 new_root = btrfs_read_fs_root_no_name(root->fs_info, location);
3878 if (IS_ERR(new_root)) {
3879 err = PTR_ERR(new_root);
3880 goto out;
3881 }
3882
3883 if (btrfs_root_refs(&new_root->root_item) == 0) {
3884 err = -ENOENT;
3885 goto out;
3886 }
3887
3888 *sub_root = new_root;
3889 location->objectid = btrfs_root_dirid(&new_root->root_item);
3890 location->type = BTRFS_INODE_ITEM_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -04003891 location->offset = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003892 err = 0;
3893out:
3894 btrfs_free_path(path);
3895 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003896}
3897
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003898static void inode_tree_add(struct inode *inode)
3899{
3900 struct btrfs_root *root = BTRFS_I(inode)->root;
3901 struct btrfs_inode *entry;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003902 struct rb_node **p;
3903 struct rb_node *parent;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003904again:
3905 p = &root->inode_tree.rb_node;
3906 parent = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003907
Al Viro1d3382c2010-10-23 15:19:20 -04003908 if (inode_unhashed(inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04003909 return;
3910
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003911 spin_lock(&root->inode_lock);
3912 while (*p) {
3913 parent = *p;
3914 entry = rb_entry(parent, struct btrfs_inode, rb_node);
3915
3916 if (inode->i_ino < entry->vfs_inode.i_ino)
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003917 p = &parent->rb_left;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003918 else if (inode->i_ino > entry->vfs_inode.i_ino)
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003919 p = &parent->rb_right;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003920 else {
3921 WARN_ON(!(entry->vfs_inode.i_state &
Al Viroa4ffdde2010-06-02 17:38:30 -04003922 (I_WILL_FREE | I_FREEING)));
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003923 rb_erase(parent, &root->inode_tree);
3924 RB_CLEAR_NODE(parent);
3925 spin_unlock(&root->inode_lock);
3926 goto again;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003927 }
3928 }
3929 rb_link_node(&BTRFS_I(inode)->rb_node, parent, p);
3930 rb_insert_color(&BTRFS_I(inode)->rb_node, &root->inode_tree);
3931 spin_unlock(&root->inode_lock);
3932}
3933
3934static void inode_tree_del(struct inode *inode)
3935{
3936 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -04003937 int empty = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003938
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003939 spin_lock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003940 if (!RB_EMPTY_NODE(&BTRFS_I(inode)->rb_node)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003941 rb_erase(&BTRFS_I(inode)->rb_node, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003942 RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node);
Yan, Zheng76dda932009-09-21 16:00:26 -04003943 empty = RB_EMPTY_ROOT(&root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003944 }
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003945 spin_unlock(&root->inode_lock);
Yan, Zheng76dda932009-09-21 16:00:26 -04003946
Josef Bacik0af3d002010-06-21 14:48:16 -04003947 /*
3948 * Free space cache has inodes in the tree root, but the tree root has a
3949 * root_refs of 0, so this could end up dropping the tree root as a
3950 * snapshot, so we need the extra !root->fs_info->tree_root check to
3951 * make sure we don't drop it.
3952 */
3953 if (empty && btrfs_root_refs(&root->root_item) == 0 &&
3954 root != root->fs_info->tree_root) {
Yan, Zheng76dda932009-09-21 16:00:26 -04003955 synchronize_srcu(&root->fs_info->subvol_srcu);
3956 spin_lock(&root->inode_lock);
3957 empty = RB_EMPTY_ROOT(&root->inode_tree);
3958 spin_unlock(&root->inode_lock);
3959 if (empty)
3960 btrfs_add_dead_root(root);
3961 }
3962}
3963
3964int btrfs_invalidate_inodes(struct btrfs_root *root)
3965{
3966 struct rb_node *node;
3967 struct rb_node *prev;
3968 struct btrfs_inode *entry;
3969 struct inode *inode;
3970 u64 objectid = 0;
3971
3972 WARN_ON(btrfs_root_refs(&root->root_item) != 0);
3973
3974 spin_lock(&root->inode_lock);
3975again:
3976 node = root->inode_tree.rb_node;
3977 prev = NULL;
3978 while (node) {
3979 prev = node;
3980 entry = rb_entry(node, struct btrfs_inode, rb_node);
3981
3982 if (objectid < entry->vfs_inode.i_ino)
3983 node = node->rb_left;
3984 else if (objectid > entry->vfs_inode.i_ino)
3985 node = node->rb_right;
3986 else
3987 break;
3988 }
3989 if (!node) {
3990 while (prev) {
3991 entry = rb_entry(prev, struct btrfs_inode, rb_node);
3992 if (objectid <= entry->vfs_inode.i_ino) {
3993 node = prev;
3994 break;
3995 }
3996 prev = rb_next(prev);
3997 }
3998 }
3999 while (node) {
4000 entry = rb_entry(node, struct btrfs_inode, rb_node);
4001 objectid = entry->vfs_inode.i_ino + 1;
4002 inode = igrab(&entry->vfs_inode);
4003 if (inode) {
4004 spin_unlock(&root->inode_lock);
4005 if (atomic_read(&inode->i_count) > 1)
4006 d_prune_aliases(inode);
4007 /*
Al Viro45321ac2010-06-07 13:43:19 -04004008 * btrfs_drop_inode will have it removed from
Yan, Zheng76dda932009-09-21 16:00:26 -04004009 * the inode cache when its usage count
4010 * hits zero.
4011 */
4012 iput(inode);
4013 cond_resched();
4014 spin_lock(&root->inode_lock);
4015 goto again;
4016 }
4017
4018 if (cond_resched_lock(&root->inode_lock))
4019 goto again;
4020
4021 node = rb_next(node);
4022 }
4023 spin_unlock(&root->inode_lock);
4024 return 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004025}
4026
Chris Masone02119d2008-09-05 16:13:11 -04004027static int btrfs_init_locked_inode(struct inode *inode, void *p)
4028{
4029 struct btrfs_iget_args *args = p;
4030 inode->i_ino = args->ino;
Chris Masone02119d2008-09-05 16:13:11 -04004031 BTRFS_I(inode)->root = args->root;
Josef Bacik6a632092009-02-20 11:00:09 -05004032 btrfs_set_inode_space_info(args->root, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004033 return 0;
4034}
4035
4036static int btrfs_find_actor(struct inode *inode, void *opaque)
4037{
4038 struct btrfs_iget_args *args = opaque;
Chris Masond3977122009-01-05 21:25:51 -05004039 return args->ino == inode->i_ino &&
4040 args->root == BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004041}
4042
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004043static struct inode *btrfs_iget_locked(struct super_block *s,
4044 u64 objectid,
4045 struct btrfs_root *root)
Chris Mason39279cc2007-06-12 06:35:45 -04004046{
4047 struct inode *inode;
4048 struct btrfs_iget_args args;
4049 args.ino = objectid;
4050 args.root = root;
4051
4052 inode = iget5_locked(s, objectid, btrfs_find_actor,
4053 btrfs_init_locked_inode,
4054 (void *)&args);
4055 return inode;
4056}
4057
Balaji Rao1a54ef82008-07-21 02:01:04 +05304058/* Get an inode object given its location and corresponding root.
4059 * Returns in *is_new if the inode was read from disk
4060 */
4061struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
Josef Bacik73f73412009-12-04 17:38:27 +00004062 struct btrfs_root *root, int *new)
Balaji Rao1a54ef82008-07-21 02:01:04 +05304063{
4064 struct inode *inode;
4065
4066 inode = btrfs_iget_locked(s, location->objectid, root);
4067 if (!inode)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004068 return ERR_PTR(-ENOMEM);
Balaji Rao1a54ef82008-07-21 02:01:04 +05304069
4070 if (inode->i_state & I_NEW) {
4071 BTRFS_I(inode)->root = root;
4072 memcpy(&BTRFS_I(inode)->location, location, sizeof(*location));
4073 btrfs_read_locked_inode(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004074
4075 inode_tree_add(inode);
Balaji Rao1a54ef82008-07-21 02:01:04 +05304076 unlock_new_inode(inode);
Josef Bacik73f73412009-12-04 17:38:27 +00004077 if (new)
4078 *new = 1;
Balaji Rao1a54ef82008-07-21 02:01:04 +05304079 }
4080
4081 return inode;
4082}
4083
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004084static struct inode *new_simple_dir(struct super_block *s,
4085 struct btrfs_key *key,
4086 struct btrfs_root *root)
4087{
4088 struct inode *inode = new_inode(s);
4089
4090 if (!inode)
4091 return ERR_PTR(-ENOMEM);
4092
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004093 BTRFS_I(inode)->root = root;
4094 memcpy(&BTRFS_I(inode)->location, key, sizeof(*key));
4095 BTRFS_I(inode)->dummy_inode = 1;
4096
4097 inode->i_ino = BTRFS_EMPTY_SUBVOL_DIR_OBJECTID;
4098 inode->i_op = &simple_dir_inode_operations;
4099 inode->i_fop = &simple_dir_operations;
4100 inode->i_mode = S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO;
4101 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
4102
4103 return inode;
4104}
4105
Chris Mason3de45862008-11-17 21:02:50 -05004106struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04004107{
Chris Masond3977122009-01-05 21:25:51 -05004108 struct inode *inode;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004109 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004110 struct btrfs_root *sub_root = root;
4111 struct btrfs_key location;
Yan, Zheng76dda932009-09-21 16:00:26 -04004112 int index;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004113 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004114
4115 if (dentry->d_name.len > BTRFS_NAME_LEN)
4116 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04004117
Chris Mason39279cc2007-06-12 06:35:45 -04004118 ret = btrfs_inode_by_name(dir, dentry, &location);
Chris Mason5f39d392007-10-15 16:14:19 -04004119
Chris Mason39279cc2007-06-12 06:35:45 -04004120 if (ret < 0)
4121 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04004122
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004123 if (location.objectid == 0)
4124 return NULL;
4125
4126 if (location.type == BTRFS_INODE_ITEM_KEY) {
Josef Bacik73f73412009-12-04 17:38:27 +00004127 inode = btrfs_iget(dir->i_sb, &location, root, NULL);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004128 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04004129 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004130
4131 BUG_ON(location.type != BTRFS_ROOT_ITEM_KEY);
4132
Yan, Zheng76dda932009-09-21 16:00:26 -04004133 index = srcu_read_lock(&root->fs_info->subvol_srcu);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004134 ret = fixup_tree_root_location(root, dir, dentry,
4135 &location, &sub_root);
4136 if (ret < 0) {
4137 if (ret != -ENOENT)
4138 inode = ERR_PTR(ret);
4139 else
4140 inode = new_simple_dir(dir->i_sb, &location, sub_root);
4141 } else {
Josef Bacik73f73412009-12-04 17:38:27 +00004142 inode = btrfs_iget(dir->i_sb, &location, sub_root, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04004143 }
Yan, Zheng76dda932009-09-21 16:00:26 -04004144 srcu_read_unlock(&root->fs_info->subvol_srcu, index);
4145
Julia Lawall34d19ba2011-01-24 19:55:19 +00004146 if (!IS_ERR(inode) && root != sub_root) {
Yan, Zhengc71bf092009-11-12 09:34:40 +00004147 down_read(&root->fs_info->cleanup_work_sem);
4148 if (!(inode->i_sb->s_flags & MS_RDONLY))
4149 btrfs_orphan_cleanup(sub_root);
4150 up_read(&root->fs_info->cleanup_work_sem);
4151 }
4152
Chris Mason3de45862008-11-17 21:02:50 -05004153 return inode;
4154}
4155
Nick Pigginfe15ce42011-01-07 17:49:23 +11004156static int btrfs_dentry_delete(const struct dentry *dentry)
Yan, Zheng76dda932009-09-21 16:00:26 -04004157{
4158 struct btrfs_root *root;
4159
Yan, Zhengefefb142009-10-09 09:25:16 -04004160 if (!dentry->d_inode && !IS_ROOT(dentry))
4161 dentry = dentry->d_parent;
Yan, Zheng76dda932009-09-21 16:00:26 -04004162
Yan, Zhengefefb142009-10-09 09:25:16 -04004163 if (dentry->d_inode) {
4164 root = BTRFS_I(dentry->d_inode)->root;
4165 if (btrfs_root_refs(&root->root_item) == 0)
4166 return 1;
4167 }
Yan, Zheng76dda932009-09-21 16:00:26 -04004168 return 0;
4169}
4170
Chris Mason3de45862008-11-17 21:02:50 -05004171static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
4172 struct nameidata *nd)
4173{
4174 struct inode *inode;
4175
Chris Mason3de45862008-11-17 21:02:50 -05004176 inode = btrfs_lookup_dentry(dir, dentry);
4177 if (IS_ERR(inode))
4178 return ERR_CAST(inode);
Josef Bacik7b128762008-07-24 12:17:14 -04004179
Chris Mason39279cc2007-06-12 06:35:45 -04004180 return d_splice_alias(inode, dentry);
4181}
4182
Chris Mason39279cc2007-06-12 06:35:45 -04004183static unsigned char btrfs_filetype_table[] = {
4184 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
4185};
4186
David Woodhousecbdf5a22008-08-06 19:42:33 +01004187static int btrfs_real_readdir(struct file *filp, void *dirent,
4188 filldir_t filldir)
Chris Mason39279cc2007-06-12 06:35:45 -04004189{
Chris Mason6da6aba2007-12-18 16:15:09 -05004190 struct inode *inode = filp->f_dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04004191 struct btrfs_root *root = BTRFS_I(inode)->root;
4192 struct btrfs_item *item;
4193 struct btrfs_dir_item *di;
4194 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04004195 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04004196 struct btrfs_path *path;
4197 int ret;
4198 u32 nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04004199 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04004200 int slot;
4201 int advance;
4202 unsigned char d_type;
4203 int over = 0;
4204 u32 di_cur;
4205 u32 di_total;
4206 u32 di_len;
4207 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04004208 char tmp_name[32];
4209 char *name_ptr;
4210 int name_len;
Chris Mason39279cc2007-06-12 06:35:45 -04004211
4212 /* FIXME, use a real flag for deciding about the key type */
4213 if (root->fs_info->tree_root == root)
4214 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04004215
Chris Mason39544012007-12-12 14:38:19 -05004216 /* special case for "." */
4217 if (filp->f_pos == 0) {
4218 over = filldir(dirent, ".", 1,
4219 1, inode->i_ino,
4220 DT_DIR);
4221 if (over)
4222 return 0;
4223 filp->f_pos = 1;
4224 }
Chris Mason39544012007-12-12 14:38:19 -05004225 /* special case for .., just use the back ref */
4226 if (filp->f_pos == 1) {
David Woodhouse5ecc7e52008-08-17 15:14:48 +01004227 u64 pino = parent_ino(filp->f_path.dentry);
Chris Mason39544012007-12-12 14:38:19 -05004228 over = filldir(dirent, "..", 2,
David Woodhouse5ecc7e52008-08-17 15:14:48 +01004229 2, pino, DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05004230 if (over)
David Woodhouse49593bf2008-08-17 17:08:36 +01004231 return 0;
Chris Mason39544012007-12-12 14:38:19 -05004232 filp->f_pos = 2;
4233 }
David Woodhouse49593bf2008-08-17 17:08:36 +01004234 path = btrfs_alloc_path();
4235 path->reada = 2;
4236
Chris Mason39279cc2007-06-12 06:35:45 -04004237 btrfs_set_key_type(&key, key_type);
4238 key.offset = filp->f_pos;
David Woodhouse49593bf2008-08-17 17:08:36 +01004239 key.objectid = inode->i_ino;
Chris Mason5f39d392007-10-15 16:14:19 -04004240
Chris Mason39279cc2007-06-12 06:35:45 -04004241 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4242 if (ret < 0)
4243 goto err;
4244 advance = 0;
David Woodhouse49593bf2008-08-17 17:08:36 +01004245
4246 while (1) {
Chris Mason5f39d392007-10-15 16:14:19 -04004247 leaf = path->nodes[0];
4248 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04004249 slot = path->slots[0];
4250 if (advance || slot >= nritems) {
David Woodhouse49593bf2008-08-17 17:08:36 +01004251 if (slot >= nritems - 1) {
Chris Mason39279cc2007-06-12 06:35:45 -04004252 ret = btrfs_next_leaf(root, path);
4253 if (ret)
4254 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004255 leaf = path->nodes[0];
4256 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04004257 slot = path->slots[0];
4258 } else {
4259 slot++;
4260 path->slots[0]++;
4261 }
4262 }
Chris Mason3de45862008-11-17 21:02:50 -05004263
Chris Mason39279cc2007-06-12 06:35:45 -04004264 advance = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04004265 item = btrfs_item_nr(leaf, slot);
4266 btrfs_item_key_to_cpu(leaf, &found_key, slot);
4267
4268 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04004269 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004270 if (btrfs_key_type(&found_key) != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04004271 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004272 if (found_key.offset < filp->f_pos)
Chris Mason39279cc2007-06-12 06:35:45 -04004273 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04004274
4275 filp->f_pos = found_key.offset;
David Woodhouse49593bf2008-08-17 17:08:36 +01004276
Chris Mason39279cc2007-06-12 06:35:45 -04004277 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
4278 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04004279 di_total = btrfs_item_size(leaf, item);
David Woodhouse49593bf2008-08-17 17:08:36 +01004280
4281 while (di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04004282 struct btrfs_key location;
4283
4284 name_len = btrfs_dir_name_len(leaf, di);
David Woodhouse49593bf2008-08-17 17:08:36 +01004285 if (name_len <= sizeof(tmp_name)) {
Chris Mason5f39d392007-10-15 16:14:19 -04004286 name_ptr = tmp_name;
4287 } else {
4288 name_ptr = kmalloc(name_len, GFP_NOFS);
David Woodhouse49593bf2008-08-17 17:08:36 +01004289 if (!name_ptr) {
4290 ret = -ENOMEM;
4291 goto err;
4292 }
Chris Mason5f39d392007-10-15 16:14:19 -04004293 }
4294 read_extent_buffer(leaf, name_ptr,
4295 (unsigned long)(di + 1), name_len);
4296
4297 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
4298 btrfs_dir_item_key_to_cpu(leaf, di, &location);
Chris Mason3de45862008-11-17 21:02:50 -05004299
4300 /* is this a reference to our own snapshot? If so
4301 * skip it
4302 */
4303 if (location.type == BTRFS_ROOT_ITEM_KEY &&
4304 location.objectid == root->root_key.objectid) {
4305 over = 0;
4306 goto skip;
4307 }
Chris Mason5f39d392007-10-15 16:14:19 -04004308 over = filldir(dirent, name_ptr, name_len,
David Woodhouse49593bf2008-08-17 17:08:36 +01004309 found_key.offset, location.objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04004310 d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04004311
Chris Mason3de45862008-11-17 21:02:50 -05004312skip:
Chris Mason5f39d392007-10-15 16:14:19 -04004313 if (name_ptr != tmp_name)
4314 kfree(name_ptr);
4315
Chris Mason39279cc2007-06-12 06:35:45 -04004316 if (over)
4317 goto nopos;
Josef Bacik5103e942007-11-16 11:45:54 -05004318 di_len = btrfs_dir_name_len(leaf, di) +
David Woodhouse49593bf2008-08-17 17:08:36 +01004319 btrfs_dir_data_len(leaf, di) + sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04004320 di_cur += di_len;
4321 di = (struct btrfs_dir_item *)((char *)di + di_len);
4322 }
4323 }
David Woodhouse49593bf2008-08-17 17:08:36 +01004324
4325 /* Reached end of directory/root. Bump pos past the last item. */
Yan Zheng5e591a02008-02-19 11:41:02 -05004326 if (key_type == BTRFS_DIR_INDEX_KEY)
Jan Engelhardt406266a2009-12-09 22:00:38 +00004327 /*
4328 * 32-bit glibc will use getdents64, but then strtol -
4329 * so the last number we can serve is this.
4330 */
4331 filp->f_pos = 0x7fffffff;
Yan Zheng5e591a02008-02-19 11:41:02 -05004332 else
4333 filp->f_pos++;
Chris Mason39279cc2007-06-12 06:35:45 -04004334nopos:
4335 ret = 0;
4336err:
Chris Mason39279cc2007-06-12 06:35:45 -04004337 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04004338 return ret;
4339}
4340
Christoph Hellwiga9185b42010-03-05 09:21:37 +01004341int btrfs_write_inode(struct inode *inode, struct writeback_control *wbc)
Chris Mason39279cc2007-06-12 06:35:45 -04004342{
4343 struct btrfs_root *root = BTRFS_I(inode)->root;
4344 struct btrfs_trans_handle *trans;
4345 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04004346 bool nolock = false;
Chris Mason39279cc2007-06-12 06:35:45 -04004347
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004348 if (BTRFS_I(inode)->dummy_inode)
Chris Mason4ca8b412008-08-05 13:30:48 -04004349 return 0;
4350
Josef Bacik0af3d002010-06-21 14:48:16 -04004351 smp_mb();
4352 nolock = (root->fs_info->closing && root == root->fs_info->tree_root);
4353
Christoph Hellwiga9185b42010-03-05 09:21:37 +01004354 if (wbc->sync_mode == WB_SYNC_ALL) {
Josef Bacik0af3d002010-06-21 14:48:16 -04004355 if (nolock)
4356 trans = btrfs_join_transaction_nolock(root, 1);
4357 else
4358 trans = btrfs_join_transaction(root, 1);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00004359 if (IS_ERR(trans))
4360 return PTR_ERR(trans);
Chris Mason39279cc2007-06-12 06:35:45 -04004361 btrfs_set_trans_block_group(trans, inode);
Josef Bacik0af3d002010-06-21 14:48:16 -04004362 if (nolock)
4363 ret = btrfs_end_transaction_nolock(trans, root);
4364 else
4365 ret = btrfs_commit_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004366 }
4367 return ret;
4368}
4369
4370/*
Chris Mason54aa1f42007-06-22 14:16:25 -04004371 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04004372 * inode changes. But, it is most likely to find the inode in cache.
4373 * FIXME, needs more benchmarking...there are no reasons other than performance
4374 * to keep or drop this code.
4375 */
4376void btrfs_dirty_inode(struct inode *inode)
4377{
4378 struct btrfs_root *root = BTRFS_I(inode)->root;
4379 struct btrfs_trans_handle *trans;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004380 int ret;
4381
4382 if (BTRFS_I(inode)->dummy_inode)
4383 return;
Chris Mason39279cc2007-06-12 06:35:45 -04004384
Chris Masonf9295742008-07-17 12:54:14 -04004385 trans = btrfs_join_transaction(root, 1);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00004386 BUG_ON(IS_ERR(trans));
Chris Mason39279cc2007-06-12 06:35:45 -04004387 btrfs_set_trans_block_group(trans, inode);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004388
4389 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04004390 if (ret && ret == -ENOSPC) {
4391 /* whoops, lets try again with the full transaction */
4392 btrfs_end_transaction(trans, root);
4393 trans = btrfs_start_transaction(root, 1);
Chris Mason9aeead72010-05-27 10:23:00 -04004394 if (IS_ERR(trans)) {
4395 if (printk_ratelimit()) {
4396 printk(KERN_ERR "btrfs: fail to "
4397 "dirty inode %lu error %ld\n",
4398 inode->i_ino, PTR_ERR(trans));
4399 }
4400 return;
4401 }
Chris Mason94b60442010-05-26 11:02:00 -04004402 btrfs_set_trans_block_group(trans, inode);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004403
Chris Mason94b60442010-05-26 11:02:00 -04004404 ret = btrfs_update_inode(trans, root, inode);
4405 if (ret) {
Chris Mason9aeead72010-05-27 10:23:00 -04004406 if (printk_ratelimit()) {
4407 printk(KERN_ERR "btrfs: fail to "
4408 "dirty inode %lu error %d\n",
4409 inode->i_ino, ret);
4410 }
Chris Mason94b60442010-05-26 11:02:00 -04004411 }
4412 }
Chris Mason39279cc2007-06-12 06:35:45 -04004413 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004414}
4415
Chris Masond352ac62008-09-29 15:18:18 -04004416/*
4417 * find the highest existing sequence number in a directory
4418 * and then set the in-memory index_cnt variable to reflect
4419 * free sequence numbers
4420 */
Josef Bacikaec74772008-07-24 12:12:38 -04004421static int btrfs_set_inode_index_count(struct inode *inode)
4422{
4423 struct btrfs_root *root = BTRFS_I(inode)->root;
4424 struct btrfs_key key, found_key;
4425 struct btrfs_path *path;
4426 struct extent_buffer *leaf;
4427 int ret;
4428
4429 key.objectid = inode->i_ino;
4430 btrfs_set_key_type(&key, BTRFS_DIR_INDEX_KEY);
4431 key.offset = (u64)-1;
4432
4433 path = btrfs_alloc_path();
4434 if (!path)
4435 return -ENOMEM;
4436
4437 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4438 if (ret < 0)
4439 goto out;
4440 /* FIXME: we should be able to handle this */
4441 if (ret == 0)
4442 goto out;
4443 ret = 0;
4444
4445 /*
4446 * MAGIC NUMBER EXPLANATION:
4447 * since we search a directory based on f_pos we have to start at 2
4448 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
4449 * else has to start at 2
4450 */
4451 if (path->slots[0] == 0) {
4452 BTRFS_I(inode)->index_cnt = 2;
4453 goto out;
4454 }
4455
4456 path->slots[0]--;
4457
4458 leaf = path->nodes[0];
4459 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
4460
4461 if (found_key.objectid != inode->i_ino ||
4462 btrfs_key_type(&found_key) != BTRFS_DIR_INDEX_KEY) {
4463 BTRFS_I(inode)->index_cnt = 2;
4464 goto out;
4465 }
4466
4467 BTRFS_I(inode)->index_cnt = found_key.offset + 1;
4468out:
4469 btrfs_free_path(path);
4470 return ret;
4471}
4472
Chris Masond352ac62008-09-29 15:18:18 -04004473/*
4474 * helper to find a free sequence number in a given directory. This current
4475 * code is very simple, later versions will do smarter things in the btree
4476 */
Chris Mason3de45862008-11-17 21:02:50 -05004477int btrfs_set_inode_index(struct inode *dir, u64 *index)
Josef Bacikaec74772008-07-24 12:12:38 -04004478{
4479 int ret = 0;
4480
4481 if (BTRFS_I(dir)->index_cnt == (u64)-1) {
4482 ret = btrfs_set_inode_index_count(dir);
Chris Masond3977122009-01-05 21:25:51 -05004483 if (ret)
Josef Bacikaec74772008-07-24 12:12:38 -04004484 return ret;
4485 }
4486
Chris Mason00e4e6b2008-08-05 11:18:09 -04004487 *index = BTRFS_I(dir)->index_cnt;
Josef Bacikaec74772008-07-24 12:12:38 -04004488 BTRFS_I(dir)->index_cnt++;
4489
4490 return ret;
4491}
4492
Chris Mason39279cc2007-06-12 06:35:45 -04004493static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
4494 struct btrfs_root *root,
Josef Bacikaec74772008-07-24 12:12:38 -04004495 struct inode *dir,
Chris Mason9c583092008-01-29 15:15:18 -05004496 const char *name, int name_len,
Yan Zhengd2fb3432008-12-11 16:30:39 -05004497 u64 ref_objectid, u64 objectid,
4498 u64 alloc_hint, int mode, u64 *index)
Chris Mason39279cc2007-06-12 06:35:45 -04004499{
4500 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04004501 struct btrfs_inode_item *inode_item;
Chris Mason39279cc2007-06-12 06:35:45 -04004502 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04004503 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05004504 struct btrfs_inode_ref *ref;
4505 struct btrfs_key key[2];
4506 u32 sizes[2];
4507 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04004508 int ret;
4509 int owner;
4510
Chris Mason5f39d392007-10-15 16:14:19 -04004511 path = btrfs_alloc_path();
4512 BUG_ON(!path);
4513
Chris Mason39279cc2007-06-12 06:35:45 -04004514 inode = new_inode(root->fs_info->sb);
4515 if (!inode)
4516 return ERR_PTR(-ENOMEM);
4517
Josef Bacikaec74772008-07-24 12:12:38 -04004518 if (dir) {
Chris Mason3de45862008-11-17 21:02:50 -05004519 ret = btrfs_set_inode_index(dir, index);
Shen Feng09771432009-04-02 16:46:06 -04004520 if (ret) {
4521 iput(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004522 return ERR_PTR(ret);
Shen Feng09771432009-04-02 16:46:06 -04004523 }
Josef Bacikaec74772008-07-24 12:12:38 -04004524 }
4525 /*
4526 * index_cnt is ignored for everything but a dir,
4527 * btrfs_get_inode_index_count has an explanation for the magic
4528 * number
4529 */
4530 BTRFS_I(inode)->index_cnt = 2;
Chris Mason39279cc2007-06-12 06:35:45 -04004531 BTRFS_I(inode)->root = root;
Chris Masone02119d2008-09-05 16:13:11 -04004532 BTRFS_I(inode)->generation = trans->transid;
Josef Bacik76195852010-11-19 02:18:02 +00004533 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik6a632092009-02-20 11:00:09 -05004534 btrfs_set_inode_space_info(root, inode);
Chris Masonb888db22007-08-27 16:49:44 -04004535
Chris Mason39279cc2007-06-12 06:35:45 -04004536 if (mode & S_IFDIR)
4537 owner = 0;
4538 else
4539 owner = 1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05004540 BTRFS_I(inode)->block_group =
4541 btrfs_find_block_group(root, 0, alloc_hint, owner);
Chris Mason9c583092008-01-29 15:15:18 -05004542
4543 key[0].objectid = objectid;
4544 btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
4545 key[0].offset = 0;
4546
4547 key[1].objectid = objectid;
4548 btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY);
4549 key[1].offset = ref_objectid;
4550
4551 sizes[0] = sizeof(struct btrfs_inode_item);
4552 sizes[1] = name_len + sizeof(*ref);
4553
Chris Masonb9473432009-03-13 11:00:37 -04004554 path->leave_spinning = 1;
Chris Mason9c583092008-01-29 15:15:18 -05004555 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, 2);
4556 if (ret != 0)
Chris Mason5f39d392007-10-15 16:14:19 -04004557 goto fail;
4558
Dmitry Monakhovecc11fab2010-03-04 17:31:47 +03004559 inode_init_owner(inode, dir, mode);
Chris Mason39279cc2007-06-12 06:35:45 -04004560 inode->i_ino = objectid;
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004561 inode_set_bytes(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04004562 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Chris Mason5f39d392007-10-15 16:14:19 -04004563 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
4564 struct btrfs_inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04004565 fill_inode_item(trans, path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05004566
4567 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
4568 struct btrfs_inode_ref);
4569 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
Chris Mason00e4e6b2008-08-05 11:18:09 -04004570 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
Chris Mason9c583092008-01-29 15:15:18 -05004571 ptr = (unsigned long)(ref + 1);
4572 write_extent_buffer(path->nodes[0], name, ptr, name_len);
4573
Chris Mason5f39d392007-10-15 16:14:19 -04004574 btrfs_mark_buffer_dirty(path->nodes[0]);
4575 btrfs_free_path(path);
4576
Chris Mason39279cc2007-06-12 06:35:45 -04004577 location = &BTRFS_I(inode)->location;
4578 location->objectid = objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04004579 location->offset = 0;
4580 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
4581
Christoph Hellwig6cbff002009-04-17 10:37:41 +02004582 btrfs_inherit_iflags(inode, dir);
4583
Chris Mason94272162009-07-02 12:26:06 -04004584 if ((mode & S_IFREG)) {
4585 if (btrfs_test_opt(root, NODATASUM))
4586 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
4587 if (btrfs_test_opt(root, NODATACOW))
4588 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW;
4589 }
4590
Chris Mason39279cc2007-06-12 06:35:45 -04004591 insert_inode_hash(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004592 inode_tree_add(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004593 return inode;
Chris Mason5f39d392007-10-15 16:14:19 -04004594fail:
Josef Bacikaec74772008-07-24 12:12:38 -04004595 if (dir)
4596 BTRFS_I(dir)->index_cnt--;
Chris Mason5f39d392007-10-15 16:14:19 -04004597 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04004598 iput(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004599 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04004600}
4601
4602static inline u8 btrfs_inode_type(struct inode *inode)
4603{
4604 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
4605}
4606
Chris Masond352ac62008-09-29 15:18:18 -04004607/*
4608 * utility function to add 'inode' into 'parent_inode' with
4609 * a give name and a given sequence number.
4610 * if 'add_backref' is true, also insert a backref from the
4611 * inode to the parent directory.
4612 */
Chris Masone02119d2008-09-05 16:13:11 -04004613int btrfs_add_link(struct btrfs_trans_handle *trans,
4614 struct inode *parent_inode, struct inode *inode,
4615 const char *name, int name_len, int add_backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04004616{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004617 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004618 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -04004619 struct btrfs_root *root = BTRFS_I(parent_inode)->root;
Chris Mason5f39d392007-10-15 16:14:19 -04004620
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004621 if (unlikely(inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)) {
4622 memcpy(&key, &BTRFS_I(inode)->root->root_key, sizeof(key));
4623 } else {
4624 key.objectid = inode->i_ino;
4625 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
4626 key.offset = 0;
4627 }
Chris Mason39279cc2007-06-12 06:35:45 -04004628
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004629 if (unlikely(inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)) {
4630 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
4631 key.objectid, root->root_key.objectid,
4632 parent_inode->i_ino,
4633 index, name, name_len);
4634 } else if (add_backref) {
4635 ret = btrfs_insert_inode_ref(trans, root,
4636 name, name_len, inode->i_ino,
4637 parent_inode->i_ino, index);
4638 }
4639
Chris Mason39279cc2007-06-12 06:35:45 -04004640 if (ret == 0) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004641 ret = btrfs_insert_dir_item(trans, root, name, name_len,
4642 parent_inode->i_ino, &key,
4643 btrfs_inode_type(inode), index);
4644 BUG_ON(ret);
4645
Chris Masondbe674a2008-07-17 12:54:05 -04004646 btrfs_i_size_write(parent_inode, parent_inode->i_size +
Chris Masone02119d2008-09-05 16:13:11 -04004647 name_len * 2);
Chris Mason79c44582007-06-25 10:09:33 -04004648 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
Chris Masone02119d2008-09-05 16:13:11 -04004649 ret = btrfs_update_inode(trans, root, parent_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004650 }
4651 return ret;
4652}
4653
4654static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Josef Bacika1b075d2010-11-19 20:36:11 +00004655 struct inode *dir, struct dentry *dentry,
4656 struct inode *inode, int backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04004657{
Josef Bacika1b075d2010-11-19 20:36:11 +00004658 int err = btrfs_add_link(trans, dir, inode,
4659 dentry->d_name.name, dentry->d_name.len,
4660 backref, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004661 if (!err) {
4662 d_instantiate(dentry, inode);
4663 return 0;
4664 }
4665 if (err > 0)
4666 err = -EEXIST;
4667 return err;
4668}
4669
Josef Bacik618e21d2007-07-11 10:18:17 -04004670static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
4671 int mode, dev_t rdev)
4672{
4673 struct btrfs_trans_handle *trans;
4674 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05004675 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04004676 int err;
4677 int drop_inode = 0;
4678 u64 objectid;
Chris Mason1832a6d2007-12-21 16:27:21 -05004679 unsigned long nr = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004680 u64 index = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04004681
4682 if (!new_valid_dev(rdev))
4683 return -EINVAL;
4684
Yan, Zhenga22285a2010-05-16 10:48:46 -04004685 err = btrfs_find_free_objectid(NULL, root, dir->i_ino, &objectid);
4686 if (err)
4687 return err;
4688
Josef Bacik9ed74f22009-09-11 16:12:44 -04004689 /*
4690 * 2 for inode item and ref
4691 * 2 for dir items
4692 * 1 for xattr if selinux is on
4693 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004694 trans = btrfs_start_transaction(root, 5);
4695 if (IS_ERR(trans))
4696 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05004697
Josef Bacik618e21d2007-07-11 10:18:17 -04004698 btrfs_set_trans_block_group(trans, dir);
4699
Josef Bacikaec74772008-07-24 12:12:38 -04004700 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Josef Bacika1b075d2010-11-19 20:36:11 +00004701 dentry->d_name.len, dir->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04004702 BTRFS_I(dir)->block_group, mode, &index);
Josef Bacik618e21d2007-07-11 10:18:17 -04004703 err = PTR_ERR(inode);
4704 if (IS_ERR(inode))
4705 goto out_unlock;
4706
Yan, Zhengf34f57a2009-11-12 09:35:27 +00004707 err = btrfs_init_inode_security(trans, inode, dir);
Josef Bacik33268ea2008-07-24 12:16:36 -04004708 if (err) {
4709 drop_inode = 1;
4710 goto out_unlock;
4711 }
4712
Josef Bacik618e21d2007-07-11 10:18:17 -04004713 btrfs_set_trans_block_group(trans, inode);
Josef Bacika1b075d2010-11-19 20:36:11 +00004714 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Josef Bacik618e21d2007-07-11 10:18:17 -04004715 if (err)
4716 drop_inode = 1;
4717 else {
4718 inode->i_op = &btrfs_special_inode_operations;
4719 init_special_inode(inode, inode->i_mode, rdev);
Yan1b4ab1b2007-08-29 09:11:44 -04004720 btrfs_update_inode(trans, root, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04004721 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004722 btrfs_update_inode_block_group(trans, inode);
4723 btrfs_update_inode_block_group(trans, dir);
4724out_unlock:
Chris Masond3c2fdc2007-09-17 10:58:06 -04004725 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04004726 btrfs_end_transaction_throttle(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004727 btrfs_btree_balance_dirty(root, nr);
Josef Bacik618e21d2007-07-11 10:18:17 -04004728 if (drop_inode) {
4729 inode_dec_link_count(inode);
4730 iput(inode);
4731 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004732 return err;
4733}
4734
Chris Mason39279cc2007-06-12 06:35:45 -04004735static int btrfs_create(struct inode *dir, struct dentry *dentry,
4736 int mode, struct nameidata *nd)
4737{
4738 struct btrfs_trans_handle *trans;
4739 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05004740 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04004741 int drop_inode = 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004742 int err;
Chris Mason1832a6d2007-12-21 16:27:21 -05004743 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004744 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004745 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004746
Yan, Zhenga22285a2010-05-16 10:48:46 -04004747 err = btrfs_find_free_objectid(NULL, root, dir->i_ino, &objectid);
4748 if (err)
4749 return err;
Josef Bacik9ed74f22009-09-11 16:12:44 -04004750 /*
4751 * 2 for inode item and ref
4752 * 2 for dir items
4753 * 1 for xattr if selinux is on
4754 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004755 trans = btrfs_start_transaction(root, 5);
4756 if (IS_ERR(trans))
4757 return PTR_ERR(trans);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004758
Chris Mason39279cc2007-06-12 06:35:45 -04004759 btrfs_set_trans_block_group(trans, dir);
4760
Josef Bacikaec74772008-07-24 12:12:38 -04004761 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Josef Bacika1b075d2010-11-19 20:36:11 +00004762 dentry->d_name.len, dir->i_ino, objectid,
4763 BTRFS_I(dir)->block_group, mode, &index);
Chris Mason39279cc2007-06-12 06:35:45 -04004764 err = PTR_ERR(inode);
4765 if (IS_ERR(inode))
4766 goto out_unlock;
4767
Yan, Zhengf34f57a2009-11-12 09:35:27 +00004768 err = btrfs_init_inode_security(trans, inode, dir);
Josef Bacik33268ea2008-07-24 12:16:36 -04004769 if (err) {
4770 drop_inode = 1;
4771 goto out_unlock;
4772 }
4773
Chris Mason39279cc2007-06-12 06:35:45 -04004774 btrfs_set_trans_block_group(trans, inode);
Josef Bacika1b075d2010-11-19 20:36:11 +00004775 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004776 if (err)
4777 drop_inode = 1;
4778 else {
4779 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04004780 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04004781 inode->i_fop = &btrfs_file_operations;
4782 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05004783 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04004784 }
Chris Mason39279cc2007-06-12 06:35:45 -04004785 btrfs_update_inode_block_group(trans, inode);
4786 btrfs_update_inode_block_group(trans, dir);
4787out_unlock:
Chris Masond3c2fdc2007-09-17 10:58:06 -04004788 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04004789 btrfs_end_transaction_throttle(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004790 if (drop_inode) {
4791 inode_dec_link_count(inode);
4792 iput(inode);
4793 }
Chris Masond3c2fdc2007-09-17 10:58:06 -04004794 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004795 return err;
4796}
4797
4798static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
4799 struct dentry *dentry)
4800{
4801 struct btrfs_trans_handle *trans;
4802 struct btrfs_root *root = BTRFS_I(dir)->root;
4803 struct inode *inode = old_dentry->d_inode;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004804 u64 index;
Chris Mason1832a6d2007-12-21 16:27:21 -05004805 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004806 int err;
4807 int drop_inode = 0;
4808
4809 if (inode->i_nlink == 0)
4810 return -ENOENT;
4811
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00004812 /* do not allow sys_link's with other subvols of the same device */
4813 if (root->objectid != BTRFS_I(inode)->root->objectid)
4814 return -EPERM;
4815
Josef Bacik9ed74f22009-09-11 16:12:44 -04004816 btrfs_inc_nlink(inode);
Josef Bacikbc1cbf12010-11-23 19:50:59 +00004817 inode->i_ctime = CURRENT_TIME;
Josef Bacik9ed74f22009-09-11 16:12:44 -04004818
Chris Mason3de45862008-11-17 21:02:50 -05004819 err = btrfs_set_inode_index(dir, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04004820 if (err)
4821 goto fail;
4822
Yan, Zhenga22285a2010-05-16 10:48:46 -04004823 /*
Miao Xie7e6b6462011-02-18 09:21:17 +00004824 * 2 items for inode and inode ref
Yan, Zhenga22285a2010-05-16 10:48:46 -04004825 * 2 items for dir items
Miao Xie7e6b6462011-02-18 09:21:17 +00004826 * 1 item for parent inode
Yan, Zhenga22285a2010-05-16 10:48:46 -04004827 */
Miao Xie7e6b6462011-02-18 09:21:17 +00004828 trans = btrfs_start_transaction(root, 5);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004829 if (IS_ERR(trans)) {
4830 err = PTR_ERR(trans);
4831 goto fail;
4832 }
Chris Mason5f39d392007-10-15 16:14:19 -04004833
Chris Mason39279cc2007-06-12 06:35:45 -04004834 btrfs_set_trans_block_group(trans, dir);
Al Viro7de9c6e2010-10-23 11:11:40 -04004835 ihold(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004836
Josef Bacika1b075d2010-11-19 20:36:11 +00004837 err = btrfs_add_nondir(trans, dir, dentry, inode, 1, index);
Chris Mason5f39d392007-10-15 16:14:19 -04004838
Yan, Zhenga5719522009-09-24 09:17:31 -04004839 if (err) {
Chris Mason39279cc2007-06-12 06:35:45 -04004840 drop_inode = 1;
Yan, Zhenga5719522009-09-24 09:17:31 -04004841 } else {
Josef Bacik6a912212010-11-20 09:48:00 +00004842 struct dentry *parent = dget_parent(dentry);
Yan, Zhenga5719522009-09-24 09:17:31 -04004843 btrfs_update_inode_block_group(trans, dir);
4844 err = btrfs_update_inode(trans, root, inode);
4845 BUG_ON(err);
Josef Bacik6a912212010-11-20 09:48:00 +00004846 btrfs_log_new_name(trans, inode, NULL, parent);
4847 dput(parent);
Yan, Zhenga5719522009-09-24 09:17:31 -04004848 }
Chris Mason39279cc2007-06-12 06:35:45 -04004849
Chris Masond3c2fdc2007-09-17 10:58:06 -04004850 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04004851 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05004852fail:
Chris Mason39279cc2007-06-12 06:35:45 -04004853 if (drop_inode) {
4854 inode_dec_link_count(inode);
4855 iput(inode);
4856 }
Chris Masond3c2fdc2007-09-17 10:58:06 -04004857 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004858 return err;
4859}
4860
Chris Mason39279cc2007-06-12 06:35:45 -04004861static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
4862{
Chris Masonb9d86662008-05-02 16:13:49 -04004863 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04004864 struct btrfs_trans_handle *trans;
4865 struct btrfs_root *root = BTRFS_I(dir)->root;
4866 int err = 0;
4867 int drop_on_err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04004868 u64 objectid = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004869 u64 index = 0;
Chris Masond3c2fdc2007-09-17 10:58:06 -04004870 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04004871
Yan, Zhenga22285a2010-05-16 10:48:46 -04004872 err = btrfs_find_free_objectid(NULL, root, dir->i_ino, &objectid);
4873 if (err)
4874 return err;
4875
Josef Bacik9ed74f22009-09-11 16:12:44 -04004876 /*
4877 * 2 items for inode and ref
4878 * 2 items for dir items
4879 * 1 for xattr if selinux is on
4880 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004881 trans = btrfs_start_transaction(root, 5);
4882 if (IS_ERR(trans))
4883 return PTR_ERR(trans);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004884 btrfs_set_trans_block_group(trans, dir);
Chris Mason39279cc2007-06-12 06:35:45 -04004885
Josef Bacikaec74772008-07-24 12:12:38 -04004886 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Josef Bacika1b075d2010-11-19 20:36:11 +00004887 dentry->d_name.len, dir->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04004888 BTRFS_I(dir)->block_group, S_IFDIR | mode,
4889 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04004890 if (IS_ERR(inode)) {
4891 err = PTR_ERR(inode);
4892 goto out_fail;
4893 }
Chris Mason5f39d392007-10-15 16:14:19 -04004894
Chris Mason39279cc2007-06-12 06:35:45 -04004895 drop_on_err = 1;
Josef Bacik33268ea2008-07-24 12:16:36 -04004896
Yan, Zhengf34f57a2009-11-12 09:35:27 +00004897 err = btrfs_init_inode_security(trans, inode, dir);
Josef Bacik33268ea2008-07-24 12:16:36 -04004898 if (err)
4899 goto out_fail;
4900
Chris Mason39279cc2007-06-12 06:35:45 -04004901 inode->i_op = &btrfs_dir_inode_operations;
4902 inode->i_fop = &btrfs_dir_file_operations;
4903 btrfs_set_trans_block_group(trans, inode);
4904
Chris Masondbe674a2008-07-17 12:54:05 -04004905 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04004906 err = btrfs_update_inode(trans, root, inode);
4907 if (err)
4908 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04004909
Josef Bacika1b075d2010-11-19 20:36:11 +00004910 err = btrfs_add_link(trans, dir, inode, dentry->d_name.name,
4911 dentry->d_name.len, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004912 if (err)
4913 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04004914
Chris Mason39279cc2007-06-12 06:35:45 -04004915 d_instantiate(dentry, inode);
4916 drop_on_err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004917 btrfs_update_inode_block_group(trans, inode);
4918 btrfs_update_inode_block_group(trans, dir);
4919
4920out_fail:
Chris Masond3c2fdc2007-09-17 10:58:06 -04004921 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04004922 btrfs_end_transaction_throttle(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004923 if (drop_on_err)
4924 iput(inode);
Chris Masond3c2fdc2007-09-17 10:58:06 -04004925 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004926 return err;
4927}
4928
Chris Masond352ac62008-09-29 15:18:18 -04004929/* helper for btfs_get_extent. Given an existing extent in the tree,
4930 * and an extent that you want to insert, deal with overlap and insert
4931 * the new extent into the tree.
4932 */
Chris Mason3b951512008-04-17 11:29:12 -04004933static int merge_extent_mapping(struct extent_map_tree *em_tree,
4934 struct extent_map *existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04004935 struct extent_map *em,
4936 u64 map_start, u64 map_len)
Chris Mason3b951512008-04-17 11:29:12 -04004937{
4938 u64 start_diff;
Chris Mason3b951512008-04-17 11:29:12 -04004939
Chris Masone6dcd2d2008-07-17 12:53:50 -04004940 BUG_ON(map_start < em->start || map_start >= extent_map_end(em));
4941 start_diff = map_start - em->start;
4942 em->start = map_start;
4943 em->len = map_len;
Chris Masonc8b97812008-10-29 14:49:59 -04004944 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
4945 !test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04004946 em->block_start += start_diff;
Chris Masonc8b97812008-10-29 14:49:59 -04004947 em->block_len -= start_diff;
4948 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004949 return add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04004950}
4951
Chris Masonc8b97812008-10-29 14:49:59 -04004952static noinline int uncompress_inline(struct btrfs_path *path,
4953 struct inode *inode, struct page *page,
4954 size_t pg_offset, u64 extent_offset,
4955 struct btrfs_file_extent_item *item)
4956{
4957 int ret;
4958 struct extent_buffer *leaf = path->nodes[0];
4959 char *tmp;
4960 size_t max_size;
4961 unsigned long inline_size;
4962 unsigned long ptr;
Li Zefan261507a02010-12-17 14:21:50 +08004963 int compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04004964
4965 WARN_ON(pg_offset != 0);
Li Zefan261507a02010-12-17 14:21:50 +08004966 compress_type = btrfs_file_extent_compression(leaf, item);
Chris Masonc8b97812008-10-29 14:49:59 -04004967 max_size = btrfs_file_extent_ram_bytes(leaf, item);
4968 inline_size = btrfs_file_extent_inline_item_len(leaf,
4969 btrfs_item_nr(leaf, path->slots[0]));
4970 tmp = kmalloc(inline_size, GFP_NOFS);
4971 ptr = btrfs_file_extent_inline_start(item);
4972
4973 read_extent_buffer(leaf, tmp, ptr, inline_size);
4974
Chris Mason5b050f02008-11-11 09:34:41 -05004975 max_size = min_t(unsigned long, PAGE_CACHE_SIZE, max_size);
Li Zefan261507a02010-12-17 14:21:50 +08004976 ret = btrfs_decompress(compress_type, tmp, page,
4977 extent_offset, inline_size, max_size);
Chris Masonc8b97812008-10-29 14:49:59 -04004978 if (ret) {
4979 char *kaddr = kmap_atomic(page, KM_USER0);
4980 unsigned long copy_size = min_t(u64,
4981 PAGE_CACHE_SIZE - pg_offset,
4982 max_size - extent_offset);
4983 memset(kaddr + pg_offset, 0, copy_size);
4984 kunmap_atomic(kaddr, KM_USER0);
4985 }
4986 kfree(tmp);
4987 return 0;
4988}
4989
Chris Masond352ac62008-09-29 15:18:18 -04004990/*
4991 * a bit scary, this does extent mapping from logical file offset to the disk.
Chris Masond3977122009-01-05 21:25:51 -05004992 * the ugly parts come from merging extents from the disk with the in-ram
4993 * representation. This gets more complex because of the data=ordered code,
Chris Masond352ac62008-09-29 15:18:18 -04004994 * where the in-ram extents might be locked pending data=ordered completion.
4995 *
4996 * This also copies inline extents directly into the page.
4997 */
Chris Masond3977122009-01-05 21:25:51 -05004998
Chris Masona52d9a82007-08-27 16:49:44 -04004999struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05005000 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04005001 int create)
5002{
5003 int ret;
5004 int err = 0;
Chris Masondb945352007-10-15 16:15:53 -04005005 u64 bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04005006 u64 extent_start = 0;
5007 u64 extent_end = 0;
5008 u64 objectid = inode->i_ino;
5009 u32 found_type;
Chris Masonf4219502008-07-22 11:18:09 -04005010 struct btrfs_path *path = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -04005011 struct btrfs_root *root = BTRFS_I(inode)->root;
5012 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04005013 struct extent_buffer *leaf;
5014 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04005015 struct extent_map *em = NULL;
5016 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05005017 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04005018 struct btrfs_trans_handle *trans = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08005019 int compress_type;
Chris Masona52d9a82007-08-27 16:49:44 -04005020
Chris Masona52d9a82007-08-27 16:49:44 -04005021again:
Chris Mason890871b2009-09-02 16:24:52 -04005022 read_lock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05005023 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04005024 if (em)
5025 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason890871b2009-09-02 16:24:52 -04005026 read_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05005027
Chris Masona52d9a82007-08-27 16:49:44 -04005028 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04005029 if (em->start > start || em->start + em->len <= start)
5030 free_extent_map(em);
5031 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05005032 free_extent_map(em);
5033 else
5034 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04005035 }
Chris Masond1310b22008-01-24 16:13:08 -05005036 em = alloc_extent_map(GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04005037 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05005038 err = -ENOMEM;
5039 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04005040 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04005041 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05005042 em->start = EXTENT_MAP_HOLE;
Chris Mason445a6942008-11-10 11:53:33 -05005043 em->orig_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05005044 em->len = (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -04005045 em->block_len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04005046
5047 if (!path) {
5048 path = btrfs_alloc_path();
5049 BUG_ON(!path);
5050 }
5051
Chris Mason179e29e2007-11-01 11:28:41 -04005052 ret = btrfs_lookup_file_extent(trans, root, path,
5053 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04005054 if (ret < 0) {
5055 err = ret;
5056 goto out;
5057 }
5058
5059 if (ret != 0) {
5060 if (path->slots[0] == 0)
5061 goto not_found;
5062 path->slots[0]--;
5063 }
5064
Chris Mason5f39d392007-10-15 16:14:19 -04005065 leaf = path->nodes[0];
5066 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04005067 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04005068 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04005069 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5070 found_type = btrfs_key_type(&found_key);
5071 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04005072 found_type != BTRFS_EXTENT_DATA_KEY) {
5073 goto not_found;
5074 }
5075
Chris Mason5f39d392007-10-15 16:14:19 -04005076 found_type = btrfs_file_extent_type(leaf, item);
5077 extent_start = found_key.offset;
Li Zefan261507a02010-12-17 14:21:50 +08005078 compress_type = btrfs_file_extent_compression(leaf, item);
Yan Zhengd899e052008-10-30 14:25:28 -04005079 if (found_type == BTRFS_FILE_EXTENT_REG ||
5080 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04005081 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04005082 btrfs_file_extent_num_bytes(leaf, item);
Yan Zheng9036c102008-10-30 14:19:41 -04005083 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
5084 size_t size;
5085 size = btrfs_file_extent_inline_len(leaf, item);
5086 extent_end = (extent_start + size + root->sectorsize - 1) &
5087 ~((u64)root->sectorsize - 1);
5088 }
5089
5090 if (start >= extent_end) {
5091 path->slots[0]++;
5092 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
5093 ret = btrfs_next_leaf(root, path);
5094 if (ret < 0) {
5095 err = ret;
5096 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04005097 }
Yan Zheng9036c102008-10-30 14:19:41 -04005098 if (ret > 0)
5099 goto not_found;
5100 leaf = path->nodes[0];
Chris Masona52d9a82007-08-27 16:49:44 -04005101 }
Yan Zheng9036c102008-10-30 14:19:41 -04005102 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5103 if (found_key.objectid != objectid ||
5104 found_key.type != BTRFS_EXTENT_DATA_KEY)
5105 goto not_found;
5106 if (start + len <= found_key.offset)
5107 goto not_found;
5108 em->start = start;
5109 em->len = found_key.offset - start;
5110 goto not_found_em;
5111 }
5112
Yan Zhengd899e052008-10-30 14:25:28 -04005113 if (found_type == BTRFS_FILE_EXTENT_REG ||
5114 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng9036c102008-10-30 14:19:41 -04005115 em->start = extent_start;
5116 em->len = extent_end - extent_start;
Yan Zhengff5b7ee2008-11-10 07:34:43 -05005117 em->orig_start = extent_start -
5118 btrfs_file_extent_offset(leaf, item);
Chris Masondb945352007-10-15 16:15:53 -04005119 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
5120 if (bytenr == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04005121 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04005122 goto insert;
5123 }
Li Zefan261507a02010-12-17 14:21:50 +08005124 if (compress_type != BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -04005125 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Li Zefan261507a02010-12-17 14:21:50 +08005126 em->compress_type = compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04005127 em->block_start = bytenr;
5128 em->block_len = btrfs_file_extent_disk_num_bytes(leaf,
5129 item);
5130 } else {
5131 bytenr += btrfs_file_extent_offset(leaf, item);
5132 em->block_start = bytenr;
5133 em->block_len = em->len;
Yan Zhengd899e052008-10-30 14:25:28 -04005134 if (found_type == BTRFS_FILE_EXTENT_PREALLOC)
5135 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -04005136 }
Chris Masona52d9a82007-08-27 16:49:44 -04005137 goto insert;
5138 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04005139 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04005140 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04005141 size_t size;
5142 size_t extent_offset;
5143 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04005144
Chris Masona52d9a82007-08-27 16:49:44 -04005145 em->block_start = EXTENT_MAP_INLINE;
Chris Masonc8b97812008-10-29 14:49:59 -04005146 if (!page || create) {
Yan689f9342007-10-29 11:41:07 -04005147 em->start = extent_start;
Yan Zheng9036c102008-10-30 14:19:41 -04005148 em->len = extent_end - extent_start;
Yan689f9342007-10-29 11:41:07 -04005149 goto out;
5150 }
5151
Yan Zheng9036c102008-10-30 14:19:41 -04005152 size = btrfs_file_extent_inline_len(leaf, item);
5153 extent_offset = page_offset(page) + pg_offset - extent_start;
Chris Mason70dec802008-01-29 09:59:12 -05005154 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
Yan689f9342007-10-29 11:41:07 -04005155 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04005156 em->start = extent_start + extent_offset;
Chris Mason70dec802008-01-29 09:59:12 -05005157 em->len = (copy_size + root->sectorsize - 1) &
5158 ~((u64)root->sectorsize - 1);
Yan Zhengff5b7ee2008-11-10 07:34:43 -05005159 em->orig_start = EXTENT_MAP_INLINE;
Li Zefan261507a02010-12-17 14:21:50 +08005160 if (compress_type) {
Chris Masonc8b97812008-10-29 14:49:59 -04005161 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Li Zefan261507a02010-12-17 14:21:50 +08005162 em->compress_type = compress_type;
5163 }
Yan689f9342007-10-29 11:41:07 -04005164 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04005165 if (create == 0 && !PageUptodate(page)) {
Li Zefan261507a02010-12-17 14:21:50 +08005166 if (btrfs_file_extent_compression(leaf, item) !=
5167 BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -04005168 ret = uncompress_inline(path, inode, page,
5169 pg_offset,
5170 extent_offset, item);
5171 BUG_ON(ret);
5172 } else {
5173 map = kmap(page);
5174 read_extent_buffer(leaf, map + pg_offset, ptr,
5175 copy_size);
Chris Mason93c82d52009-09-11 12:36:29 -04005176 if (pg_offset + copy_size < PAGE_CACHE_SIZE) {
5177 memset(map + pg_offset + copy_size, 0,
5178 PAGE_CACHE_SIZE - pg_offset -
5179 copy_size);
5180 }
Chris Masonc8b97812008-10-29 14:49:59 -04005181 kunmap(page);
5182 }
Chris Mason179e29e2007-11-01 11:28:41 -04005183 flush_dcache_page(page);
5184 } else if (create && PageUptodate(page)) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005185 WARN_ON(1);
Chris Mason179e29e2007-11-01 11:28:41 -04005186 if (!trans) {
5187 kunmap(page);
5188 free_extent_map(em);
5189 em = NULL;
5190 btrfs_release_path(root, path);
Chris Masonf9295742008-07-17 12:54:14 -04005191 trans = btrfs_join_transaction(root, 1);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005192 if (IS_ERR(trans))
5193 return ERR_CAST(trans);
Chris Mason179e29e2007-11-01 11:28:41 -04005194 goto again;
5195 }
Chris Masonc8b97812008-10-29 14:49:59 -04005196 map = kmap(page);
Chris Mason70dec802008-01-29 09:59:12 -05005197 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04005198 copy_size);
Chris Masonc8b97812008-10-29 14:49:59 -04005199 kunmap(page);
Chris Mason179e29e2007-11-01 11:28:41 -04005200 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04005201 }
Chris Masond1310b22008-01-24 16:13:08 -05005202 set_extent_uptodate(io_tree, em->start,
5203 extent_map_end(em) - 1, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04005204 goto insert;
5205 } else {
Chris Masond3977122009-01-05 21:25:51 -05005206 printk(KERN_ERR "btrfs unknown found_type %d\n", found_type);
Chris Masona52d9a82007-08-27 16:49:44 -04005207 WARN_ON(1);
5208 }
5209not_found:
5210 em->start = start;
Chris Masond1310b22008-01-24 16:13:08 -05005211 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04005212not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04005213 em->block_start = EXTENT_MAP_HOLE;
Yan Zheng9036c102008-10-30 14:19:41 -04005214 set_bit(EXTENT_FLAG_VACANCY, &em->flags);
Chris Masona52d9a82007-08-27 16:49:44 -04005215insert:
5216 btrfs_release_path(root, path);
Chris Masond1310b22008-01-24 16:13:08 -05005217 if (em->start > start || extent_map_end(em) <= start) {
Chris Masond3977122009-01-05 21:25:51 -05005218 printk(KERN_ERR "Btrfs: bad extent! em: [%llu %llu] passed "
5219 "[%llu %llu]\n", (unsigned long long)em->start,
5220 (unsigned long long)em->len,
5221 (unsigned long long)start,
5222 (unsigned long long)len);
Chris Masona52d9a82007-08-27 16:49:44 -04005223 err = -EIO;
5224 goto out;
5225 }
Chris Masond1310b22008-01-24 16:13:08 -05005226
5227 err = 0;
Chris Mason890871b2009-09-02 16:24:52 -04005228 write_lock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04005229 ret = add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04005230 /* it is possible that someone inserted the extent into the tree
5231 * while we had the lock dropped. It is also possible that
5232 * an overlapping map exists in the tree
5233 */
Chris Masona52d9a82007-08-27 16:49:44 -04005234 if (ret == -EEXIST) {
Chris Mason3b951512008-04-17 11:29:12 -04005235 struct extent_map *existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005236
5237 ret = 0;
5238
Chris Mason3b951512008-04-17 11:29:12 -04005239 existing = lookup_extent_mapping(em_tree, start, len);
Chris Masone1c4b742008-04-22 13:26:46 -04005240 if (existing && (existing->start > start ||
5241 existing->start + existing->len <= start)) {
5242 free_extent_map(existing);
5243 existing = NULL;
5244 }
Chris Mason3b951512008-04-17 11:29:12 -04005245 if (!existing) {
5246 existing = lookup_extent_mapping(em_tree, em->start,
5247 em->len);
5248 if (existing) {
5249 err = merge_extent_mapping(em_tree, existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04005250 em, start,
5251 root->sectorsize);
Chris Mason3b951512008-04-17 11:29:12 -04005252 free_extent_map(existing);
5253 if (err) {
5254 free_extent_map(em);
5255 em = NULL;
5256 }
5257 } else {
5258 err = -EIO;
Chris Mason3b951512008-04-17 11:29:12 -04005259 free_extent_map(em);
5260 em = NULL;
5261 }
5262 } else {
5263 free_extent_map(em);
5264 em = existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005265 err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04005266 }
Chris Masona52d9a82007-08-27 16:49:44 -04005267 }
Chris Mason890871b2009-09-02 16:24:52 -04005268 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04005269out:
Chris Masonf4219502008-07-22 11:18:09 -04005270 if (path)
5271 btrfs_free_path(path);
Chris Masona52d9a82007-08-27 16:49:44 -04005272 if (trans) {
5273 ret = btrfs_end_transaction(trans, root);
Chris Masond3977122009-01-05 21:25:51 -05005274 if (!err)
Chris Masona52d9a82007-08-27 16:49:44 -04005275 err = ret;
5276 }
Chris Masona52d9a82007-08-27 16:49:44 -04005277 if (err) {
5278 free_extent_map(em);
Chris Masona52d9a82007-08-27 16:49:44 -04005279 return ERR_PTR(err);
5280 }
5281 return em;
5282}
5283
Chris Masonec29ed52011-02-23 16:23:20 -05005284struct extent_map *btrfs_get_extent_fiemap(struct inode *inode, struct page *page,
5285 size_t pg_offset, u64 start, u64 len,
5286 int create)
5287{
5288 struct extent_map *em;
5289 struct extent_map *hole_em = NULL;
5290 u64 range_start = start;
5291 u64 end;
5292 u64 found;
5293 u64 found_end;
5294 int err = 0;
5295
5296 em = btrfs_get_extent(inode, page, pg_offset, start, len, create);
5297 if (IS_ERR(em))
5298 return em;
5299 if (em) {
5300 /*
5301 * if our em maps to a hole, there might
5302 * actually be delalloc bytes behind it
5303 */
5304 if (em->block_start != EXTENT_MAP_HOLE)
5305 return em;
5306 else
5307 hole_em = em;
5308 }
5309
5310 /* check to see if we've wrapped (len == -1 or similar) */
5311 end = start + len;
5312 if (end < start)
5313 end = (u64)-1;
5314 else
5315 end -= 1;
5316
5317 em = NULL;
5318
5319 /* ok, we didn't find anything, lets look for delalloc */
5320 found = count_range_bits(&BTRFS_I(inode)->io_tree, &range_start,
5321 end, len, EXTENT_DELALLOC, 1);
5322 found_end = range_start + found;
5323 if (found_end < range_start)
5324 found_end = (u64)-1;
5325
5326 /*
5327 * we didn't find anything useful, return
5328 * the original results from get_extent()
5329 */
5330 if (range_start > end || found_end <= start) {
5331 em = hole_em;
5332 hole_em = NULL;
5333 goto out;
5334 }
5335
5336 /* adjust the range_start to make sure it doesn't
5337 * go backwards from the start they passed in
5338 */
5339 range_start = max(start,range_start);
5340 found = found_end - range_start;
5341
5342 if (found > 0) {
5343 u64 hole_start = start;
5344 u64 hole_len = len;
5345
5346 em = alloc_extent_map(GFP_NOFS);
5347 if (!em) {
5348 err = -ENOMEM;
5349 goto out;
5350 }
5351 /*
5352 * when btrfs_get_extent can't find anything it
5353 * returns one huge hole
5354 *
5355 * make sure what it found really fits our range, and
5356 * adjust to make sure it is based on the start from
5357 * the caller
5358 */
5359 if (hole_em) {
5360 u64 calc_end = extent_map_end(hole_em);
5361
5362 if (calc_end <= start || (hole_em->start > end)) {
5363 free_extent_map(hole_em);
5364 hole_em = NULL;
5365 } else {
5366 hole_start = max(hole_em->start, start);
5367 hole_len = calc_end - hole_start;
5368 }
5369 }
5370 em->bdev = NULL;
5371 if (hole_em && range_start > hole_start) {
5372 /* our hole starts before our delalloc, so we
5373 * have to return just the parts of the hole
5374 * that go until the delalloc starts
5375 */
5376 em->len = min(hole_len,
5377 range_start - hole_start);
5378 em->start = hole_start;
5379 em->orig_start = hole_start;
5380 /*
5381 * don't adjust block start at all,
5382 * it is fixed at EXTENT_MAP_HOLE
5383 */
5384 em->block_start = hole_em->block_start;
5385 em->block_len = hole_len;
5386 } else {
5387 em->start = range_start;
5388 em->len = found;
5389 em->orig_start = range_start;
5390 em->block_start = EXTENT_MAP_DELALLOC;
5391 em->block_len = found;
5392 }
5393 } else if (hole_em) {
5394 return hole_em;
5395 }
5396out:
5397
5398 free_extent_map(hole_em);
5399 if (err) {
5400 free_extent_map(em);
5401 return ERR_PTR(err);
5402 }
5403 return em;
5404}
5405
Josef Bacik4b46fce2010-05-23 11:00:55 -04005406static struct extent_map *btrfs_new_extent_direct(struct inode *inode,
5407 u64 start, u64 len)
5408{
5409 struct btrfs_root *root = BTRFS_I(inode)->root;
5410 struct btrfs_trans_handle *trans;
5411 struct extent_map *em;
5412 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
5413 struct btrfs_key ins;
5414 u64 alloc_hint;
5415 int ret;
5416
5417 btrfs_drop_extent_cache(inode, start, start + len - 1, 0);
5418
5419 trans = btrfs_join_transaction(root, 0);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005420 if (IS_ERR(trans))
5421 return ERR_CAST(trans);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005422
5423 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
5424
5425 alloc_hint = get_extent_allocation_hint(inode, start, len);
5426 ret = btrfs_reserve_extent(trans, root, len, root->sectorsize, 0,
5427 alloc_hint, (u64)-1, &ins, 1);
5428 if (ret) {
5429 em = ERR_PTR(ret);
5430 goto out;
5431 }
5432
5433 em = alloc_extent_map(GFP_NOFS);
5434 if (!em) {
5435 em = ERR_PTR(-ENOMEM);
5436 goto out;
5437 }
5438
5439 em->start = start;
5440 em->orig_start = em->start;
5441 em->len = ins.offset;
5442
5443 em->block_start = ins.objectid;
5444 em->block_len = ins.offset;
5445 em->bdev = root->fs_info->fs_devices->latest_bdev;
5446 set_bit(EXTENT_FLAG_PINNED, &em->flags);
5447
5448 while (1) {
5449 write_lock(&em_tree->lock);
5450 ret = add_extent_mapping(em_tree, em);
5451 write_unlock(&em_tree->lock);
5452 if (ret != -EEXIST)
5453 break;
5454 btrfs_drop_extent_cache(inode, start, start + em->len - 1, 0);
5455 }
5456
5457 ret = btrfs_add_ordered_extent_dio(inode, start, ins.objectid,
5458 ins.offset, ins.offset, 0);
5459 if (ret) {
5460 btrfs_free_reserved_extent(root, ins.objectid, ins.offset);
5461 em = ERR_PTR(ret);
5462 }
5463out:
5464 btrfs_end_transaction(trans, root);
5465 return em;
5466}
5467
Chris Mason46bfbb52010-05-26 11:04:10 -04005468/*
5469 * returns 1 when the nocow is safe, < 1 on error, 0 if the
5470 * block must be cow'd
5471 */
5472static noinline int can_nocow_odirect(struct btrfs_trans_handle *trans,
5473 struct inode *inode, u64 offset, u64 len)
5474{
5475 struct btrfs_path *path;
5476 int ret;
5477 struct extent_buffer *leaf;
5478 struct btrfs_root *root = BTRFS_I(inode)->root;
5479 struct btrfs_file_extent_item *fi;
5480 struct btrfs_key key;
5481 u64 disk_bytenr;
5482 u64 backref_offset;
5483 u64 extent_end;
5484 u64 num_bytes;
5485 int slot;
5486 int found_type;
5487
5488 path = btrfs_alloc_path();
5489 if (!path)
5490 return -ENOMEM;
5491
5492 ret = btrfs_lookup_file_extent(trans, root, path, inode->i_ino,
5493 offset, 0);
5494 if (ret < 0)
5495 goto out;
5496
5497 slot = path->slots[0];
5498 if (ret == 1) {
5499 if (slot == 0) {
5500 /* can't find the item, must cow */
5501 ret = 0;
5502 goto out;
5503 }
5504 slot--;
5505 }
5506 ret = 0;
5507 leaf = path->nodes[0];
5508 btrfs_item_key_to_cpu(leaf, &key, slot);
5509 if (key.objectid != inode->i_ino ||
5510 key.type != BTRFS_EXTENT_DATA_KEY) {
5511 /* not our file or wrong item type, must cow */
5512 goto out;
5513 }
5514
5515 if (key.offset > offset) {
5516 /* Wrong offset, must cow */
5517 goto out;
5518 }
5519
5520 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
5521 found_type = btrfs_file_extent_type(leaf, fi);
5522 if (found_type != BTRFS_FILE_EXTENT_REG &&
5523 found_type != BTRFS_FILE_EXTENT_PREALLOC) {
5524 /* not a regular extent, must cow */
5525 goto out;
5526 }
5527 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
5528 backref_offset = btrfs_file_extent_offset(leaf, fi);
5529
5530 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
5531 if (extent_end < offset + len) {
5532 /* extent doesn't include our full range, must cow */
5533 goto out;
5534 }
5535
5536 if (btrfs_extent_readonly(root, disk_bytenr))
5537 goto out;
5538
5539 /*
5540 * look for other files referencing this extent, if we
5541 * find any we must cow
5542 */
5543 if (btrfs_cross_ref_exist(trans, root, inode->i_ino,
5544 key.offset - backref_offset, disk_bytenr))
5545 goto out;
5546
5547 /*
5548 * adjust disk_bytenr and num_bytes to cover just the bytes
5549 * in this extent we are about to write. If there
5550 * are any csums in that range we have to cow in order
5551 * to keep the csums correct
5552 */
5553 disk_bytenr += backref_offset;
5554 disk_bytenr += offset - key.offset;
5555 num_bytes = min(offset + len, extent_end) - offset;
5556 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
5557 goto out;
5558 /*
5559 * all of the above have passed, it is safe to overwrite this extent
5560 * without cow
5561 */
5562 ret = 1;
5563out:
5564 btrfs_free_path(path);
5565 return ret;
5566}
5567
Josef Bacik4b46fce2010-05-23 11:00:55 -04005568static int btrfs_get_blocks_direct(struct inode *inode, sector_t iblock,
5569 struct buffer_head *bh_result, int create)
5570{
5571 struct extent_map *em;
5572 struct btrfs_root *root = BTRFS_I(inode)->root;
5573 u64 start = iblock << inode->i_blkbits;
5574 u64 len = bh_result->b_size;
Chris Mason46bfbb52010-05-26 11:04:10 -04005575 struct btrfs_trans_handle *trans;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005576
5577 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
5578 if (IS_ERR(em))
5579 return PTR_ERR(em);
5580
5581 /*
5582 * Ok for INLINE and COMPRESSED extents we need to fallback on buffered
5583 * io. INLINE is special, and we could probably kludge it in here, but
5584 * it's still buffered so for safety lets just fall back to the generic
5585 * buffered path.
5586 *
5587 * For COMPRESSED we _have_ to read the entire extent in so we can
5588 * decompress it, so there will be buffering required no matter what we
5589 * do, so go ahead and fallback to buffered.
5590 *
5591 * We return -ENOTBLK because thats what makes DIO go ahead and go back
5592 * to buffered IO. Don't blame me, this is the price we pay for using
5593 * the generic code.
5594 */
5595 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) ||
5596 em->block_start == EXTENT_MAP_INLINE) {
5597 free_extent_map(em);
5598 return -ENOTBLK;
5599 }
5600
5601 /* Just a good old fashioned hole, return */
5602 if (!create && (em->block_start == EXTENT_MAP_HOLE ||
5603 test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
5604 free_extent_map(em);
5605 /* DIO will do one hole at a time, so just unlock a sector */
5606 unlock_extent(&BTRFS_I(inode)->io_tree, start,
5607 start + root->sectorsize - 1, GFP_NOFS);
5608 return 0;
5609 }
5610
5611 /*
5612 * We don't allocate a new extent in the following cases
5613 *
5614 * 1) The inode is marked as NODATACOW. In this case we'll just use the
5615 * existing extent.
5616 * 2) The extent is marked as PREALLOC. We're good to go here and can
5617 * just use the extent.
5618 *
5619 */
Chris Mason46bfbb52010-05-26 11:04:10 -04005620 if (!create) {
5621 len = em->len - (start - em->start);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005622 goto map;
Chris Mason46bfbb52010-05-26 11:04:10 -04005623 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005624
5625 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) ||
5626 ((BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) &&
5627 em->block_start != EXTENT_MAP_HOLE)) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04005628 int type;
5629 int ret;
Chris Mason46bfbb52010-05-26 11:04:10 -04005630 u64 block_start;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005631
5632 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
5633 type = BTRFS_ORDERED_PREALLOC;
5634 else
5635 type = BTRFS_ORDERED_NOCOW;
Chris Mason46bfbb52010-05-26 11:04:10 -04005636 len = min(len, em->len - (start - em->start));
Josef Bacik4b46fce2010-05-23 11:00:55 -04005637 block_start = em->block_start + (start - em->start);
Chris Mason46bfbb52010-05-26 11:04:10 -04005638
5639 /*
5640 * we're not going to log anything, but we do need
5641 * to make sure the current transaction stays open
5642 * while we look for nocow cross refs
5643 */
5644 trans = btrfs_join_transaction(root, 0);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005645 if (IS_ERR(trans))
Chris Mason46bfbb52010-05-26 11:04:10 -04005646 goto must_cow;
5647
5648 if (can_nocow_odirect(trans, inode, start, len) == 1) {
5649 ret = btrfs_add_ordered_extent_dio(inode, start,
5650 block_start, len, len, type);
5651 btrfs_end_transaction(trans, root);
5652 if (ret) {
5653 free_extent_map(em);
5654 return ret;
5655 }
5656 goto unlock;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005657 }
Chris Mason46bfbb52010-05-26 11:04:10 -04005658 btrfs_end_transaction(trans, root);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005659 }
Chris Mason46bfbb52010-05-26 11:04:10 -04005660must_cow:
5661 /*
5662 * this will cow the extent, reset the len in case we changed
5663 * it above
5664 */
5665 len = bh_result->b_size;
5666 free_extent_map(em);
5667 em = btrfs_new_extent_direct(inode, start, len);
5668 if (IS_ERR(em))
5669 return PTR_ERR(em);
5670 len = min(len, em->len - (start - em->start));
5671unlock:
Chris Mason4845e442010-05-25 20:56:50 -04005672 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, start + len - 1,
5673 EXTENT_LOCKED | EXTENT_DELALLOC | EXTENT_DIRTY, 1,
5674 0, NULL, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005675map:
5676 bh_result->b_blocknr = (em->block_start + (start - em->start)) >>
5677 inode->i_blkbits;
Chris Mason46bfbb52010-05-26 11:04:10 -04005678 bh_result->b_size = len;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005679 bh_result->b_bdev = em->bdev;
5680 set_buffer_mapped(bh_result);
5681 if (create && !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
5682 set_buffer_new(bh_result);
5683
5684 free_extent_map(em);
5685
5686 return 0;
5687}
5688
5689struct btrfs_dio_private {
5690 struct inode *inode;
5691 u64 logical_offset;
5692 u64 disk_bytenr;
5693 u64 bytes;
5694 u32 *csums;
5695 void *private;
Miao Xiee65e1532010-11-22 03:04:43 +00005696
5697 /* number of bios pending for this dio */
5698 atomic_t pending_bios;
5699
5700 /* IO errors */
5701 int errors;
5702
5703 struct bio *orig_bio;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005704};
5705
5706static void btrfs_endio_direct_read(struct bio *bio, int err)
5707{
Miao Xiee65e1532010-11-22 03:04:43 +00005708 struct btrfs_dio_private *dip = bio->bi_private;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005709 struct bio_vec *bvec_end = bio->bi_io_vec + bio->bi_vcnt - 1;
5710 struct bio_vec *bvec = bio->bi_io_vec;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005711 struct inode *inode = dip->inode;
5712 struct btrfs_root *root = BTRFS_I(inode)->root;
5713 u64 start;
5714 u32 *private = dip->csums;
5715
5716 start = dip->logical_offset;
5717 do {
5718 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)) {
5719 struct page *page = bvec->bv_page;
5720 char *kaddr;
5721 u32 csum = ~(u32)0;
5722 unsigned long flags;
5723
5724 local_irq_save(flags);
5725 kaddr = kmap_atomic(page, KM_IRQ0);
5726 csum = btrfs_csum_data(root, kaddr + bvec->bv_offset,
5727 csum, bvec->bv_len);
5728 btrfs_csum_final(csum, (char *)&csum);
5729 kunmap_atomic(kaddr, KM_IRQ0);
5730 local_irq_restore(flags);
5731
5732 flush_dcache_page(bvec->bv_page);
5733 if (csum != *private) {
5734 printk(KERN_ERR "btrfs csum failed ino %lu off"
5735 " %llu csum %u private %u\n",
5736 inode->i_ino, (unsigned long long)start,
5737 csum, *private);
5738 err = -EIO;
5739 }
5740 }
5741
5742 start += bvec->bv_len;
5743 private++;
5744 bvec++;
5745 } while (bvec <= bvec_end);
5746
5747 unlock_extent(&BTRFS_I(inode)->io_tree, dip->logical_offset,
5748 dip->logical_offset + dip->bytes - 1, GFP_NOFS);
5749 bio->bi_private = dip->private;
5750
5751 kfree(dip->csums);
5752 kfree(dip);
5753 dio_end_io(bio, err);
5754}
5755
5756static void btrfs_endio_direct_write(struct bio *bio, int err)
5757{
5758 struct btrfs_dio_private *dip = bio->bi_private;
5759 struct inode *inode = dip->inode;
5760 struct btrfs_root *root = BTRFS_I(inode)->root;
5761 struct btrfs_trans_handle *trans;
5762 struct btrfs_ordered_extent *ordered = NULL;
5763 struct extent_state *cached_state = NULL;
Chris Mason163cf092010-11-28 19:56:33 -05005764 u64 ordered_offset = dip->logical_offset;
5765 u64 ordered_bytes = dip->bytes;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005766 int ret;
5767
5768 if (err)
5769 goto out_done;
Chris Mason163cf092010-11-28 19:56:33 -05005770again:
5771 ret = btrfs_dec_test_first_ordered_pending(inode, &ordered,
5772 &ordered_offset,
5773 ordered_bytes);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005774 if (!ret)
Chris Mason163cf092010-11-28 19:56:33 -05005775 goto out_test;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005776
5777 BUG_ON(!ordered);
5778
5779 trans = btrfs_join_transaction(root, 1);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005780 if (IS_ERR(trans)) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04005781 err = -ENOMEM;
5782 goto out;
5783 }
5784 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
5785
5786 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered->flags)) {
5787 ret = btrfs_ordered_update_i_size(inode, 0, ordered);
5788 if (!ret)
5789 ret = btrfs_update_inode(trans, root, inode);
5790 err = ret;
5791 goto out;
5792 }
5793
5794 lock_extent_bits(&BTRFS_I(inode)->io_tree, ordered->file_offset,
5795 ordered->file_offset + ordered->len - 1, 0,
5796 &cached_state, GFP_NOFS);
5797
5798 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered->flags)) {
5799 ret = btrfs_mark_extent_written(trans, inode,
5800 ordered->file_offset,
5801 ordered->file_offset +
5802 ordered->len);
5803 if (ret) {
5804 err = ret;
5805 goto out_unlock;
5806 }
5807 } else {
5808 ret = insert_reserved_file_extent(trans, inode,
5809 ordered->file_offset,
5810 ordered->start,
5811 ordered->disk_len,
5812 ordered->len,
5813 ordered->len,
5814 0, 0, 0,
5815 BTRFS_FILE_EXTENT_REG);
5816 unpin_extent_cache(&BTRFS_I(inode)->extent_tree,
5817 ordered->file_offset, ordered->len);
5818 if (ret) {
5819 err = ret;
5820 WARN_ON(1);
5821 goto out_unlock;
5822 }
5823 }
5824
5825 add_pending_csums(trans, inode, ordered->file_offset, &ordered->list);
5826 btrfs_ordered_update_i_size(inode, 0, ordered);
5827 btrfs_update_inode(trans, root, inode);
5828out_unlock:
5829 unlock_extent_cached(&BTRFS_I(inode)->io_tree, ordered->file_offset,
5830 ordered->file_offset + ordered->len - 1,
5831 &cached_state, GFP_NOFS);
5832out:
5833 btrfs_delalloc_release_metadata(inode, ordered->len);
5834 btrfs_end_transaction(trans, root);
Chris Mason163cf092010-11-28 19:56:33 -05005835 ordered_offset = ordered->file_offset + ordered->len;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005836 btrfs_put_ordered_extent(ordered);
5837 btrfs_put_ordered_extent(ordered);
Chris Mason163cf092010-11-28 19:56:33 -05005838
5839out_test:
5840 /*
5841 * our bio might span multiple ordered extents. If we haven't
5842 * completed the accounting for the whole dio, go back and try again
5843 */
5844 if (ordered_offset < dip->logical_offset + dip->bytes) {
5845 ordered_bytes = dip->logical_offset + dip->bytes -
5846 ordered_offset;
5847 goto again;
5848 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005849out_done:
5850 bio->bi_private = dip->private;
5851
5852 kfree(dip->csums);
5853 kfree(dip);
5854 dio_end_io(bio, err);
5855}
5856
Chris Masoneaf25d92010-05-25 09:48:28 -04005857static int __btrfs_submit_bio_start_direct_io(struct inode *inode, int rw,
5858 struct bio *bio, int mirror_num,
5859 unsigned long bio_flags, u64 offset)
5860{
5861 int ret;
5862 struct btrfs_root *root = BTRFS_I(inode)->root;
5863 ret = btrfs_csum_one_bio(root, inode, bio, offset, 1);
5864 BUG_ON(ret);
5865 return 0;
5866}
5867
Miao Xiee65e1532010-11-22 03:04:43 +00005868static void btrfs_end_dio_bio(struct bio *bio, int err)
5869{
5870 struct btrfs_dio_private *dip = bio->bi_private;
5871
5872 if (err) {
5873 printk(KERN_ERR "btrfs direct IO failed ino %lu rw %lu "
Jan Beulich3dd14622010-12-07 14:54:09 +00005874 "sector %#Lx len %u err no %d\n",
5875 dip->inode->i_ino, bio->bi_rw,
5876 (unsigned long long)bio->bi_sector, bio->bi_size, err);
Miao Xiee65e1532010-11-22 03:04:43 +00005877 dip->errors = 1;
5878
5879 /*
5880 * before atomic variable goto zero, we must make sure
5881 * dip->errors is perceived to be set.
5882 */
5883 smp_mb__before_atomic_dec();
5884 }
5885
5886 /* if there are more bios still pending for this dio, just exit */
5887 if (!atomic_dec_and_test(&dip->pending_bios))
5888 goto out;
5889
5890 if (dip->errors)
5891 bio_io_error(dip->orig_bio);
5892 else {
5893 set_bit(BIO_UPTODATE, &dip->orig_bio->bi_flags);
5894 bio_endio(dip->orig_bio, 0);
5895 }
5896out:
5897 bio_put(bio);
5898}
5899
5900static struct bio *btrfs_dio_bio_alloc(struct block_device *bdev,
5901 u64 first_sector, gfp_t gfp_flags)
5902{
5903 int nr_vecs = bio_get_nr_vecs(bdev);
5904 return btrfs_bio_alloc(bdev, first_sector, nr_vecs, gfp_flags);
5905}
5906
5907static inline int __btrfs_submit_dio_bio(struct bio *bio, struct inode *inode,
5908 int rw, u64 file_offset, int skip_sum,
5909 u32 *csums)
5910{
5911 int write = rw & REQ_WRITE;
5912 struct btrfs_root *root = BTRFS_I(inode)->root;
5913 int ret;
5914
5915 bio_get(bio);
5916 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
5917 if (ret)
5918 goto err;
5919
5920 if (write && !skip_sum) {
5921 ret = btrfs_wq_submit_bio(root->fs_info,
5922 inode, rw, bio, 0, 0,
5923 file_offset,
5924 __btrfs_submit_bio_start_direct_io,
5925 __btrfs_submit_bio_done);
5926 goto err;
5927 } else if (!skip_sum)
5928 btrfs_lookup_bio_sums_dio(root, inode, bio,
5929 file_offset, csums);
5930
5931 ret = btrfs_map_bio(root, rw, bio, 0, 1);
5932err:
5933 bio_put(bio);
5934 return ret;
5935}
5936
5937static int btrfs_submit_direct_hook(int rw, struct btrfs_dio_private *dip,
5938 int skip_sum)
5939{
5940 struct inode *inode = dip->inode;
5941 struct btrfs_root *root = BTRFS_I(inode)->root;
5942 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
5943 struct bio *bio;
5944 struct bio *orig_bio = dip->orig_bio;
5945 struct bio_vec *bvec = orig_bio->bi_io_vec;
5946 u64 start_sector = orig_bio->bi_sector;
5947 u64 file_offset = dip->logical_offset;
5948 u64 submit_len = 0;
5949 u64 map_length;
5950 int nr_pages = 0;
5951 u32 *csums = dip->csums;
5952 int ret = 0;
5953
5954 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev, start_sector, GFP_NOFS);
5955 if (!bio)
5956 return -ENOMEM;
5957 bio->bi_private = dip;
5958 bio->bi_end_io = btrfs_end_dio_bio;
5959 atomic_inc(&dip->pending_bios);
5960
5961 map_length = orig_bio->bi_size;
5962 ret = btrfs_map_block(map_tree, READ, start_sector << 9,
5963 &map_length, NULL, 0);
5964 if (ret) {
5965 bio_put(bio);
5966 return -EIO;
5967 }
5968
5969 while (bvec <= (orig_bio->bi_io_vec + orig_bio->bi_vcnt - 1)) {
5970 if (unlikely(map_length < submit_len + bvec->bv_len ||
5971 bio_add_page(bio, bvec->bv_page, bvec->bv_len,
5972 bvec->bv_offset) < bvec->bv_len)) {
5973 /*
5974 * inc the count before we submit the bio so
5975 * we know the end IO handler won't happen before
5976 * we inc the count. Otherwise, the dip might get freed
5977 * before we're done setting it up
5978 */
5979 atomic_inc(&dip->pending_bios);
5980 ret = __btrfs_submit_dio_bio(bio, inode, rw,
5981 file_offset, skip_sum,
5982 csums);
5983 if (ret) {
5984 bio_put(bio);
5985 atomic_dec(&dip->pending_bios);
5986 goto out_err;
5987 }
5988
5989 if (!skip_sum)
5990 csums = csums + nr_pages;
5991 start_sector += submit_len >> 9;
5992 file_offset += submit_len;
5993
5994 submit_len = 0;
5995 nr_pages = 0;
5996
5997 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev,
5998 start_sector, GFP_NOFS);
5999 if (!bio)
6000 goto out_err;
6001 bio->bi_private = dip;
6002 bio->bi_end_io = btrfs_end_dio_bio;
6003
6004 map_length = orig_bio->bi_size;
6005 ret = btrfs_map_block(map_tree, READ, start_sector << 9,
6006 &map_length, NULL, 0);
6007 if (ret) {
6008 bio_put(bio);
6009 goto out_err;
6010 }
6011 } else {
6012 submit_len += bvec->bv_len;
6013 nr_pages ++;
6014 bvec++;
6015 }
6016 }
6017
6018 ret = __btrfs_submit_dio_bio(bio, inode, rw, file_offset, skip_sum,
6019 csums);
6020 if (!ret)
6021 return 0;
6022
6023 bio_put(bio);
6024out_err:
6025 dip->errors = 1;
6026 /*
6027 * before atomic variable goto zero, we must
6028 * make sure dip->errors is perceived to be set.
6029 */
6030 smp_mb__before_atomic_dec();
6031 if (atomic_dec_and_test(&dip->pending_bios))
6032 bio_io_error(dip->orig_bio);
6033
6034 /* bio_end_io() will handle error, so we needn't return it */
6035 return 0;
6036}
6037
Josef Bacik4b46fce2010-05-23 11:00:55 -04006038static void btrfs_submit_direct(int rw, struct bio *bio, struct inode *inode,
6039 loff_t file_offset)
6040{
6041 struct btrfs_root *root = BTRFS_I(inode)->root;
6042 struct btrfs_dio_private *dip;
6043 struct bio_vec *bvec = bio->bi_io_vec;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006044 int skip_sum;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02006045 int write = rw & REQ_WRITE;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006046 int ret = 0;
6047
6048 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
6049
6050 dip = kmalloc(sizeof(*dip), GFP_NOFS);
6051 if (!dip) {
6052 ret = -ENOMEM;
6053 goto free_ordered;
6054 }
6055 dip->csums = NULL;
6056
6057 if (!skip_sum) {
6058 dip->csums = kmalloc(sizeof(u32) * bio->bi_vcnt, GFP_NOFS);
6059 if (!dip->csums) {
Daniel J Bluemanb4966b72011-03-09 16:46:42 +00006060 kfree(dip);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006061 ret = -ENOMEM;
6062 goto free_ordered;
6063 }
6064 }
6065
6066 dip->private = bio->bi_private;
6067 dip->inode = inode;
6068 dip->logical_offset = file_offset;
6069
Josef Bacik4b46fce2010-05-23 11:00:55 -04006070 dip->bytes = 0;
6071 do {
6072 dip->bytes += bvec->bv_len;
6073 bvec++;
6074 } while (bvec <= (bio->bi_io_vec + bio->bi_vcnt - 1));
6075
Chris Mason46bfbb52010-05-26 11:04:10 -04006076 dip->disk_bytenr = (u64)bio->bi_sector << 9;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006077 bio->bi_private = dip;
Miao Xiee65e1532010-11-22 03:04:43 +00006078 dip->errors = 0;
6079 dip->orig_bio = bio;
6080 atomic_set(&dip->pending_bios, 0);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006081
6082 if (write)
6083 bio->bi_end_io = btrfs_endio_direct_write;
6084 else
6085 bio->bi_end_io = btrfs_endio_direct_read;
6086
Miao Xiee65e1532010-11-22 03:04:43 +00006087 ret = btrfs_submit_direct_hook(rw, dip, skip_sum);
6088 if (!ret)
Chris Masoneaf25d92010-05-25 09:48:28 -04006089 return;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006090free_ordered:
6091 /*
6092 * If this is a write, we need to clean up the reserved space and kill
6093 * the ordered extent.
6094 */
6095 if (write) {
6096 struct btrfs_ordered_extent *ordered;
Josef Bacik955256f2010-11-19 09:41:10 -05006097 ordered = btrfs_lookup_ordered_extent(inode, file_offset);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006098 if (!test_bit(BTRFS_ORDERED_PREALLOC, &ordered->flags) &&
6099 !test_bit(BTRFS_ORDERED_NOCOW, &ordered->flags))
6100 btrfs_free_reserved_extent(root, ordered->start,
6101 ordered->disk_len);
6102 btrfs_put_ordered_extent(ordered);
6103 btrfs_put_ordered_extent(ordered);
6104 }
6105 bio_endio(bio, ret);
6106}
6107
Chris Mason5a5f79b2010-05-26 21:33:37 -04006108static ssize_t check_direct_IO(struct btrfs_root *root, int rw, struct kiocb *iocb,
6109 const struct iovec *iov, loff_t offset,
6110 unsigned long nr_segs)
6111{
6112 int seg;
6113 size_t size;
6114 unsigned long addr;
6115 unsigned blocksize_mask = root->sectorsize - 1;
6116 ssize_t retval = -EINVAL;
6117 loff_t end = offset;
6118
6119 if (offset & blocksize_mask)
6120 goto out;
6121
6122 /* Check the memory alignment. Blocks cannot straddle pages */
6123 for (seg = 0; seg < nr_segs; seg++) {
6124 addr = (unsigned long)iov[seg].iov_base;
6125 size = iov[seg].iov_len;
6126 end += size;
6127 if ((addr & blocksize_mask) || (size & blocksize_mask))
6128 goto out;
6129 }
6130 retval = 0;
6131out:
6132 return retval;
6133}
Chris Mason16432982008-04-10 10:23:21 -04006134static ssize_t btrfs_direct_IO(int rw, struct kiocb *iocb,
6135 const struct iovec *iov, loff_t offset,
6136 unsigned long nr_segs)
6137{
Josef Bacik4b46fce2010-05-23 11:00:55 -04006138 struct file *file = iocb->ki_filp;
6139 struct inode *inode = file->f_mapping->host;
6140 struct btrfs_ordered_extent *ordered;
Chris Mason4845e442010-05-25 20:56:50 -04006141 struct extent_state *cached_state = NULL;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006142 u64 lockstart, lockend;
6143 ssize_t ret;
Chris Mason4845e442010-05-25 20:56:50 -04006144 int writing = rw & WRITE;
6145 int write_bits = 0;
Chris Mason3f7c5792010-05-26 10:59:53 -04006146 size_t count = iov_length(iov, nr_segs);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006147
Chris Mason5a5f79b2010-05-26 21:33:37 -04006148 if (check_direct_IO(BTRFS_I(inode)->root, rw, iocb, iov,
6149 offset, nr_segs)) {
6150 return 0;
6151 }
6152
Josef Bacik4b46fce2010-05-23 11:00:55 -04006153 lockstart = offset;
Chris Mason3f7c5792010-05-26 10:59:53 -04006154 lockend = offset + count - 1;
6155
6156 if (writing) {
6157 ret = btrfs_delalloc_reserve_space(inode, count);
6158 if (ret)
6159 goto out;
6160 }
Chris Mason4845e442010-05-25 20:56:50 -04006161
Josef Bacik4b46fce2010-05-23 11:00:55 -04006162 while (1) {
Chris Mason4845e442010-05-25 20:56:50 -04006163 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
6164 0, &cached_state, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006165 /*
6166 * We're concerned with the entire range that we're going to be
6167 * doing DIO to, so we need to make sure theres no ordered
6168 * extents in this range.
6169 */
6170 ordered = btrfs_lookup_ordered_range(inode, lockstart,
6171 lockend - lockstart + 1);
6172 if (!ordered)
6173 break;
Chris Mason4845e442010-05-25 20:56:50 -04006174 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
6175 &cached_state, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006176 btrfs_start_ordered_extent(inode, ordered, 1);
6177 btrfs_put_ordered_extent(ordered);
6178 cond_resched();
6179 }
6180
Chris Mason4845e442010-05-25 20:56:50 -04006181 /*
6182 * we don't use btrfs_set_extent_delalloc because we don't want
6183 * the dirty or uptodate bits
6184 */
6185 if (writing) {
6186 write_bits = EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING;
6187 ret = set_extent_bit(&BTRFS_I(inode)->io_tree, lockstart, lockend,
6188 EXTENT_DELALLOC, 0, NULL, &cached_state,
6189 GFP_NOFS);
6190 if (ret) {
6191 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
6192 lockend, EXTENT_LOCKED | write_bits,
6193 1, 0, &cached_state, GFP_NOFS);
6194 goto out;
6195 }
6196 }
6197
6198 free_extent_state(cached_state);
6199 cached_state = NULL;
6200
Chris Mason5a5f79b2010-05-26 21:33:37 -04006201 ret = __blockdev_direct_IO(rw, iocb, inode,
6202 BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev,
6203 iov, offset, nr_segs, btrfs_get_blocks_direct, NULL,
6204 btrfs_submit_direct, 0);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006205
6206 if (ret < 0 && ret != -EIOCBQUEUED) {
Chris Mason4845e442010-05-25 20:56:50 -04006207 clear_extent_bit(&BTRFS_I(inode)->io_tree, offset,
6208 offset + iov_length(iov, nr_segs) - 1,
6209 EXTENT_LOCKED | write_bits, 1, 0,
6210 &cached_state, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006211 } else if (ret >= 0 && ret < iov_length(iov, nr_segs)) {
6212 /*
6213 * We're falling back to buffered, unlock the section we didn't
6214 * do IO on.
6215 */
Chris Mason4845e442010-05-25 20:56:50 -04006216 clear_extent_bit(&BTRFS_I(inode)->io_tree, offset + ret,
6217 offset + iov_length(iov, nr_segs) - 1,
6218 EXTENT_LOCKED | write_bits, 1, 0,
6219 &cached_state, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006220 }
Chris Mason4845e442010-05-25 20:56:50 -04006221out:
6222 free_extent_state(cached_state);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006223 return ret;
Chris Mason16432982008-04-10 10:23:21 -04006224}
6225
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05006226static int btrfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
6227 __u64 start, __u64 len)
6228{
Chris Masonec29ed52011-02-23 16:23:20 -05006229 return extent_fiemap(inode, fieinfo, start, len, btrfs_get_extent_fiemap);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05006230}
6231
Chris Mason9ebefb182007-06-15 13:50:00 -04006232int btrfs_readpage(struct file *file, struct page *page)
6233{
Chris Masond1310b22008-01-24 16:13:08 -05006234 struct extent_io_tree *tree;
6235 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04006236 return extent_read_full_page(tree, page, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04006237}
Chris Mason1832a6d2007-12-21 16:27:21 -05006238
Chris Mason39279cc2007-06-12 06:35:45 -04006239static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
6240{
Chris Masond1310b22008-01-24 16:13:08 -05006241 struct extent_io_tree *tree;
Chris Masonb888db22007-08-27 16:49:44 -04006242
6243
6244 if (current->flags & PF_MEMALLOC) {
6245 redirty_page_for_writepage(wbc, page);
6246 unlock_page(page);
6247 return 0;
6248 }
Chris Masond1310b22008-01-24 16:13:08 -05006249 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04006250 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
6251}
Chris Mason39279cc2007-06-12 06:35:45 -04006252
Chris Masonf4219502008-07-22 11:18:09 -04006253int btrfs_writepages(struct address_space *mapping,
6254 struct writeback_control *wbc)
Chris Masonb293f022007-11-01 19:45:34 -04006255{
Chris Masond1310b22008-01-24 16:13:08 -05006256 struct extent_io_tree *tree;
Chris Mason771ed682008-11-06 22:02:51 -05006257
Chris Masond1310b22008-01-24 16:13:08 -05006258 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f022007-11-01 19:45:34 -04006259 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
6260}
6261
Chris Mason3ab2fb52007-11-08 10:59:22 -05006262static int
6263btrfs_readpages(struct file *file, struct address_space *mapping,
6264 struct list_head *pages, unsigned nr_pages)
6265{
Chris Masond1310b22008-01-24 16:13:08 -05006266 struct extent_io_tree *tree;
6267 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05006268 return extent_readpages(tree, mapping, pages, nr_pages,
6269 btrfs_get_extent);
6270}
Chris Masone6dcd2d2008-07-17 12:53:50 -04006271static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04006272{
Chris Masond1310b22008-01-24 16:13:08 -05006273 struct extent_io_tree *tree;
6274 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04006275 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006276
Chris Masond1310b22008-01-24 16:13:08 -05006277 tree = &BTRFS_I(page->mapping->host)->io_tree;
6278 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05006279 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04006280 if (ret == 1) {
6281 ClearPagePrivate(page);
6282 set_page_private(page, 0);
6283 page_cache_release(page);
6284 }
6285 return ret;
6286}
Chris Mason39279cc2007-06-12 06:35:45 -04006287
Chris Masone6dcd2d2008-07-17 12:53:50 -04006288static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
6289{
Chris Mason98509cf2008-09-11 15:51:43 -04006290 if (PageWriteback(page) || PageDirty(page))
6291 return 0;
Yan Zhengb335b002009-02-12 10:06:04 -05006292 return __btrfs_releasepage(page, gfp_flags & GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006293}
6294
Chris Masona52d9a82007-08-27 16:49:44 -04006295static void btrfs_invalidatepage(struct page *page, unsigned long offset)
6296{
Chris Masond1310b22008-01-24 16:13:08 -05006297 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006298 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00006299 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006300 u64 page_start = page_offset(page);
6301 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04006302
Chris Mason8b62b722009-09-02 16:53:46 -04006303
6304 /*
6305 * we have the page locked, so new writeback can't start,
6306 * and the dirty bit won't be cleared while we are here.
6307 *
6308 * Wait for IO on this page so that we can safely clear
6309 * the PagePrivate2 bit and do ordered accounting
6310 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006311 wait_on_page_writeback(page);
Chris Mason8b62b722009-09-02 16:53:46 -04006312
Chris Masond1310b22008-01-24 16:13:08 -05006313 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006314 if (offset) {
6315 btrfs_releasepage(page, GFP_NOFS);
6316 return;
6317 }
Josef Bacik2ac55d42010-02-03 19:33:23 +00006318 lock_extent_bits(tree, page_start, page_end, 0, &cached_state,
6319 GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006320 ordered = btrfs_lookup_ordered_extent(page->mapping->host,
6321 page_offset(page));
6322 if (ordered) {
Chris Masoneb84ae02008-07-17 13:53:27 -04006323 /*
6324 * IO on this page will never be started, so we need
6325 * to account for any ordered extents now
6326 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006327 clear_extent_bit(tree, page_start, page_end,
6328 EXTENT_DIRTY | EXTENT_DELALLOC |
Josef Bacik32c00af2009-10-08 13:34:05 -04006329 EXTENT_LOCKED | EXTENT_DO_ACCOUNTING, 1, 0,
Josef Bacik2ac55d42010-02-03 19:33:23 +00006330 &cached_state, GFP_NOFS);
Chris Mason8b62b722009-09-02 16:53:46 -04006331 /*
6332 * whoever cleared the private bit is responsible
6333 * for the finish_ordered_io
6334 */
6335 if (TestClearPagePrivate2(page)) {
6336 btrfs_finish_ordered_io(page->mapping->host,
6337 page_start, page_end);
6338 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006339 btrfs_put_ordered_extent(ordered);
Josef Bacik2ac55d42010-02-03 19:33:23 +00006340 cached_state = NULL;
6341 lock_extent_bits(tree, page_start, page_end, 0, &cached_state,
6342 GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006343 }
6344 clear_extent_bit(tree, page_start, page_end,
Josef Bacik32c00af2009-10-08 13:34:05 -04006345 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
Josef Bacik2ac55d42010-02-03 19:33:23 +00006346 EXTENT_DO_ACCOUNTING, 1, 1, &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006347 __btrfs_releasepage(page, GFP_NOFS);
6348
Chris Mason4a096752008-07-21 10:29:44 -04006349 ClearPageChecked(page);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04006350 if (PagePrivate(page)) {
Chris Mason9ad6b7b2008-04-18 16:11:30 -04006351 ClearPagePrivate(page);
6352 set_page_private(page, 0);
6353 page_cache_release(page);
6354 }
Chris Mason39279cc2007-06-12 06:35:45 -04006355}
6356
Chris Mason9ebefb182007-06-15 13:50:00 -04006357/*
6358 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
6359 * called from a page fault handler when a page is first dirtied. Hence we must
6360 * be careful to check for EOF conditions here. We set the page up correctly
6361 * for a written page which means we get ENOSPC checking when writing into
6362 * holes and correct delalloc and unwritten extent mapping on filesystems that
6363 * support these features.
6364 *
6365 * We are not allowed to take the i_mutex here so we have to play games to
6366 * protect against truncate races as the page could now be beyond EOF. Because
6367 * vmtruncate() writes the inode size before removing pages, once we have the
6368 * page lock we can determine safely if the page is beyond EOF. If it is not
6369 * beyond EOF, then the page is guaranteed safe against truncation until we
6370 * unlock the page.
6371 */
Nick Pigginc2ec1752009-03-31 15:23:21 -07006372int btrfs_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Chris Mason9ebefb182007-06-15 13:50:00 -04006373{
Nick Pigginc2ec1752009-03-31 15:23:21 -07006374 struct page *page = vmf->page;
Chris Mason6da6aba2007-12-18 16:15:09 -05006375 struct inode *inode = fdentry(vma->vm_file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05006376 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006377 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
6378 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00006379 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006380 char *kaddr;
6381 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04006382 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05006383 int ret;
Chris Masona52d9a82007-08-27 16:49:44 -04006384 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006385 u64 page_end;
Chris Mason9ebefb182007-06-15 13:50:00 -04006386
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006387 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
Nick Piggin56a76f82009-03-31 15:23:23 -07006388 if (ret) {
6389 if (ret == -ENOMEM)
6390 ret = VM_FAULT_OOM;
6391 else /* -ENOSPC, -EIO, etc */
6392 ret = VM_FAULT_SIGBUS;
Chris Mason1832a6d2007-12-21 16:27:21 -05006393 goto out;
Nick Piggin56a76f82009-03-31 15:23:23 -07006394 }
Chris Mason1832a6d2007-12-21 16:27:21 -05006395
Nick Piggin56a76f82009-03-31 15:23:23 -07006396 ret = VM_FAULT_NOPAGE; /* make the VM retry the fault */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006397again:
Chris Mason9ebefb182007-06-15 13:50:00 -04006398 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04006399 size = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006400 page_start = page_offset(page);
6401 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04006402
Chris Mason9ebefb182007-06-15 13:50:00 -04006403 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04006404 (page_start >= size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04006405 /* page got truncated out from underneath us */
6406 goto out_unlock;
6407 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006408 wait_on_page_writeback(page);
6409
Josef Bacik2ac55d42010-02-03 19:33:23 +00006410 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state,
6411 GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006412 set_page_extent_mapped(page);
6413
Chris Masoneb84ae02008-07-17 13:53:27 -04006414 /*
6415 * we can't set the delalloc bits if there are pending ordered
6416 * extents. Drop our locks and wait for them to finish
6417 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006418 ordered = btrfs_lookup_ordered_extent(inode, page_start);
6419 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00006420 unlock_extent_cached(io_tree, page_start, page_end,
6421 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006422 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04006423 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006424 btrfs_put_ordered_extent(ordered);
6425 goto again;
6426 }
6427
Josef Bacikfbf19082009-10-01 17:10:23 -04006428 /*
6429 * XXX - page_mkwrite gets called every time the page is dirtied, even
6430 * if it was already dirty, so for space accounting reasons we need to
6431 * clear any delalloc bits for the range we are fixing to save. There
6432 * is probably a better way to do this, but for now keep consistent with
6433 * prepare_pages in the normal write path.
6434 */
Josef Bacik2ac55d42010-02-03 19:33:23 +00006435 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Josef Bacik32c00af2009-10-08 13:34:05 -04006436 EXTENT_DIRTY | EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00006437 0, 0, &cached_state, GFP_NOFS);
Josef Bacikfbf19082009-10-01 17:10:23 -04006438
Josef Bacik2ac55d42010-02-03 19:33:23 +00006439 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
6440 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006441 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00006442 unlock_extent_cached(io_tree, page_start, page_end,
6443 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006444 ret = VM_FAULT_SIGBUS;
6445 goto out_unlock;
6446 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006447 ret = 0;
Chris Mason9ebefb182007-06-15 13:50:00 -04006448
6449 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04006450 if (page_start + PAGE_CACHE_SIZE > size)
Chris Masone6dcd2d2008-07-17 12:53:50 -04006451 zero_start = size & ~PAGE_CACHE_MASK;
Chris Mason9ebefb182007-06-15 13:50:00 -04006452 else
Chris Masone6dcd2d2008-07-17 12:53:50 -04006453 zero_start = PAGE_CACHE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04006454
Chris Masone6dcd2d2008-07-17 12:53:50 -04006455 if (zero_start != PAGE_CACHE_SIZE) {
6456 kaddr = kmap(page);
6457 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
6458 flush_dcache_page(page);
6459 kunmap(page);
6460 }
Chris Mason247e7432008-07-17 12:53:51 -04006461 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006462 set_page_dirty(page);
Chris Mason50a9b212009-09-11 12:33:12 -04006463 SetPageUptodate(page);
Chris Mason5a3f23d2009-03-31 13:27:11 -04006464
Chris Mason257c62e2009-10-13 13:21:08 -04006465 BTRFS_I(inode)->last_trans = root->fs_info->generation;
6466 BTRFS_I(inode)->last_sub_trans = BTRFS_I(inode)->root->log_transid;
6467
Josef Bacik2ac55d42010-02-03 19:33:23 +00006468 unlock_extent_cached(io_tree, page_start, page_end, &cached_state, GFP_NOFS);
Chris Mason9ebefb182007-06-15 13:50:00 -04006469
6470out_unlock:
Chris Mason50a9b212009-09-11 12:33:12 -04006471 if (!ret)
6472 return VM_FAULT_LOCKED;
Chris Mason9ebefb182007-06-15 13:50:00 -04006473 unlock_page(page);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006474 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Mason1832a6d2007-12-21 16:27:21 -05006475out:
Chris Mason9ebefb182007-06-15 13:50:00 -04006476 return ret;
6477}
6478
Chris Mason39279cc2007-06-12 06:35:45 -04006479static void btrfs_truncate(struct inode *inode)
6480{
6481 struct btrfs_root *root = BTRFS_I(inode)->root;
6482 int ret;
6483 struct btrfs_trans_handle *trans;
Chris Masond3c2fdc2007-09-17 10:58:06 -04006484 unsigned long nr;
Chris Masondbe674a2008-07-17 12:54:05 -04006485 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -04006486
Yan, Zheng80825102009-11-12 09:35:36 +00006487 if (!S_ISREG(inode->i_mode)) {
6488 WARN_ON(1);
Chris Mason39279cc2007-06-12 06:35:45 -04006489 return;
Yan, Zheng80825102009-11-12 09:35:36 +00006490 }
Chris Mason39279cc2007-06-12 06:35:45 -04006491
Josef Bacik5d5e1032009-10-13 16:46:49 -04006492 ret = btrfs_truncate_page(inode->i_mapping, inode->i_size);
6493 if (ret)
6494 return;
Yan, Zheng80825102009-11-12 09:35:36 +00006495
Chris Mason4a096752008-07-21 10:29:44 -04006496 btrfs_wait_ordered_range(inode, inode->i_size & (~mask), (u64)-1);
Yan, Zheng80825102009-11-12 09:35:36 +00006497 btrfs_ordered_update_i_size(inode, inode->i_size, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006498
Yan, Zhengd68fc572010-05-16 10:49:58 -04006499 trans = btrfs_start_transaction(root, 0);
6500 BUG_ON(IS_ERR(trans));
Yan, Zheng80825102009-11-12 09:35:36 +00006501 btrfs_set_trans_block_group(trans, inode);
Yan, Zhengd68fc572010-05-16 10:49:58 -04006502 trans->block_rsv = root->orphan_block_rsv;
Chris Mason5a3f23d2009-03-31 13:27:11 -04006503
6504 /*
6505 * setattr is responsible for setting the ordered_data_close flag,
6506 * but that is only tested during the last file release. That
6507 * could happen well after the next commit, leaving a great big
6508 * window where new writes may get lost if someone chooses to write
6509 * to this file after truncating to zero
6510 *
6511 * The inode doesn't have any dirty data here, and so if we commit
6512 * this is a noop. If someone immediately starts writing to the inode
6513 * it is very likely we'll catch some of their writes in this
6514 * transaction, and the commit will find this file on the ordered
6515 * data list with good things to send down.
6516 *
6517 * This is a best effort solution, there is still a window where
6518 * using truncate to replace the contents of the file will
6519 * end up with a zero length file after a crash.
6520 */
6521 if (inode->i_size == 0 && BTRFS_I(inode)->ordered_data_close)
6522 btrfs_add_ordered_operation(trans, root, inode);
6523
Yan, Zheng80825102009-11-12 09:35:36 +00006524 while (1) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04006525 if (!trans) {
6526 trans = btrfs_start_transaction(root, 0);
6527 BUG_ON(IS_ERR(trans));
6528 btrfs_set_trans_block_group(trans, inode);
6529 trans->block_rsv = root->orphan_block_rsv;
6530 }
6531
6532 ret = btrfs_block_rsv_check(trans, root,
6533 root->orphan_block_rsv, 0, 5);
6534 if (ret) {
6535 BUG_ON(ret != -EAGAIN);
6536 ret = btrfs_commit_transaction(trans, root);
6537 BUG_ON(ret);
6538 trans = NULL;
6539 continue;
6540 }
6541
Yan, Zheng80825102009-11-12 09:35:36 +00006542 ret = btrfs_truncate_inode_items(trans, root, inode,
6543 inode->i_size,
6544 BTRFS_EXTENT_DATA_KEY);
6545 if (ret != -EAGAIN)
6546 break;
Chris Mason39279cc2007-06-12 06:35:45 -04006547
Yan, Zheng80825102009-11-12 09:35:36 +00006548 ret = btrfs_update_inode(trans, root, inode);
6549 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04006550
Yan, Zheng80825102009-11-12 09:35:36 +00006551 nr = trans->blocks_used;
6552 btrfs_end_transaction(trans, root);
Yan, Zhengd68fc572010-05-16 10:49:58 -04006553 trans = NULL;
Yan, Zheng80825102009-11-12 09:35:36 +00006554 btrfs_btree_balance_dirty(root, nr);
Yan, Zheng80825102009-11-12 09:35:36 +00006555 }
6556
6557 if (ret == 0 && inode->i_nlink > 0) {
6558 ret = btrfs_orphan_del(trans, inode);
6559 BUG_ON(ret);
6560 }
6561
6562 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik7b128762008-07-24 12:17:14 -04006563 BUG_ON(ret);
6564
Josef Bacik7b128762008-07-24 12:17:14 -04006565 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04006566 ret = btrfs_end_transaction_throttle(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04006567 BUG_ON(ret);
Chris Masond3c2fdc2007-09-17 10:58:06 -04006568 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04006569}
6570
Sven Wegener3b963622008-06-09 21:57:42 -04006571/*
Chris Masond352ac62008-09-29 15:18:18 -04006572 * create a new subvolume directory/inode (helper for the ioctl).
6573 */
Yan Zhengd2fb3432008-12-11 16:30:39 -05006574int btrfs_create_subvol_root(struct btrfs_trans_handle *trans,
Yan, Zheng76dda932009-09-21 16:00:26 -04006575 struct btrfs_root *new_root,
Yan Zhengd2fb3432008-12-11 16:30:39 -05006576 u64 new_dirid, u64 alloc_hint)
Chris Mason39279cc2007-06-12 06:35:45 -04006577{
Chris Mason39279cc2007-06-12 06:35:45 -04006578 struct inode *inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04006579 int err;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006580 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006581
Josef Bacikaec74772008-07-24 12:12:38 -04006582 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2, new_dirid,
Yan Zhengd2fb3432008-12-11 16:30:39 -05006583 new_dirid, alloc_hint, S_IFDIR | 0700, &index);
Chris Mason54aa1f42007-06-22 14:16:25 -04006584 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04006585 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006586 inode->i_op = &btrfs_dir_inode_operations;
6587 inode->i_fop = &btrfs_dir_file_operations;
6588
Chris Mason39279cc2007-06-12 06:35:45 -04006589 inode->i_nlink = 1;
Chris Masondbe674a2008-07-17 12:54:05 -04006590 btrfs_i_size_write(inode, 0);
Sven Wegener3b963622008-06-09 21:57:42 -04006591
Yan, Zheng76dda932009-09-21 16:00:26 -04006592 err = btrfs_update_inode(trans, new_root, inode);
6593 BUG_ON(err);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04006594
Yan, Zheng76dda932009-09-21 16:00:26 -04006595 iput(inode);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04006596 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006597}
6598
Chris Masond352ac62008-09-29 15:18:18 -04006599/* helper function for file defrag and space balancing. This
6600 * forces readahead on a given range of bytes in an inode
6601 */
Chris Masonedbd8d42007-12-21 16:27:24 -05006602unsigned long btrfs_force_ra(struct address_space *mapping,
Chris Mason86479a02007-09-10 19:58:16 -04006603 struct file_ra_state *ra, struct file *file,
6604 pgoff_t offset, pgoff_t last_index)
6605{
Chris Mason8e7bf942008-04-28 09:02:36 -04006606 pgoff_t req_size = last_index - offset + 1;
Chris Mason86479a02007-09-10 19:58:16 -04006607
Chris Mason86479a02007-09-10 19:58:16 -04006608 page_cache_sync_readahead(mapping, ra, file, offset, req_size);
6609 return offset + req_size;
Chris Mason86479a02007-09-10 19:58:16 -04006610}
6611
Chris Mason39279cc2007-06-12 06:35:45 -04006612struct inode *btrfs_alloc_inode(struct super_block *sb)
6613{
6614 struct btrfs_inode *ei;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006615 struct inode *inode;
Chris Mason39279cc2007-06-12 06:35:45 -04006616
6617 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
6618 if (!ei)
6619 return NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006620
6621 ei->root = NULL;
6622 ei->space_info = NULL;
6623 ei->generation = 0;
6624 ei->sequence = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04006625 ei->last_trans = 0;
Chris Mason257c62e2009-10-13 13:21:08 -04006626 ei->last_sub_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04006627 ei->logged_trans = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006628 ei->delalloc_bytes = 0;
6629 ei->reserved_bytes = 0;
6630 ei->disk_i_size = 0;
6631 ei->flags = 0;
6632 ei->index_cnt = (u64)-1;
6633 ei->last_unlink_trans = 0;
6634
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006635 atomic_set(&ei->outstanding_extents, 0);
Josef Bacik57a45ced2011-01-25 16:30:38 -05006636 atomic_set(&ei->reserved_extents, 0);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006637
6638 ei->ordered_data_close = 0;
Yan, Zhengd68fc572010-05-16 10:49:58 -04006639 ei->orphan_meta_reserved = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006640 ei->dummy_inode = 0;
Li Zefan261507a02010-12-17 14:21:50 +08006641 ei->force_compress = BTRFS_COMPRESS_NONE;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006642
6643 inode = &ei->vfs_inode;
6644 extent_map_tree_init(&ei->extent_tree, GFP_NOFS);
6645 extent_io_tree_init(&ei->io_tree, &inode->i_data, GFP_NOFS);
6646 extent_io_tree_init(&ei->io_failure_tree, &inode->i_data, GFP_NOFS);
6647 mutex_init(&ei->log_mutex);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006648 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Josef Bacik7b128762008-07-24 12:17:14 -04006649 INIT_LIST_HEAD(&ei->i_orphan);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006650 INIT_LIST_HEAD(&ei->delalloc_inodes);
Chris Mason5a3f23d2009-03-31 13:27:11 -04006651 INIT_LIST_HEAD(&ei->ordered_operations);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006652 RB_CLEAR_NODE(&ei->rb_node);
6653
6654 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04006655}
6656
Nick Pigginfa0d7e32011-01-07 17:49:49 +11006657static void btrfs_i_callback(struct rcu_head *head)
6658{
6659 struct inode *inode = container_of(head, struct inode, i_rcu);
6660 INIT_LIST_HEAD(&inode->i_dentry);
6661 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
6662}
6663
Chris Mason39279cc2007-06-12 06:35:45 -04006664void btrfs_destroy_inode(struct inode *inode)
6665{
Chris Masone6dcd2d2008-07-17 12:53:50 -04006666 struct btrfs_ordered_extent *ordered;
Chris Mason5a3f23d2009-03-31 13:27:11 -04006667 struct btrfs_root *root = BTRFS_I(inode)->root;
6668
Chris Mason39279cc2007-06-12 06:35:45 -04006669 WARN_ON(!list_empty(&inode->i_dentry));
6670 WARN_ON(inode->i_data.nrpages);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006671 WARN_ON(atomic_read(&BTRFS_I(inode)->outstanding_extents));
Josef Bacik57a45ced2011-01-25 16:30:38 -05006672 WARN_ON(atomic_read(&BTRFS_I(inode)->reserved_extents));
Chris Mason39279cc2007-06-12 06:35:45 -04006673
Chris Mason5a3f23d2009-03-31 13:27:11 -04006674 /*
Josef Bacika6dbd422009-11-11 15:53:34 -05006675 * This can happen where we create an inode, but somebody else also
6676 * created the same inode and we need to destroy the one we already
6677 * created.
6678 */
6679 if (!root)
6680 goto free;
6681
6682 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04006683 * Make sure we're properly removed from the ordered operation
6684 * lists.
6685 */
6686 smp_mb();
6687 if (!list_empty(&BTRFS_I(inode)->ordered_operations)) {
6688 spin_lock(&root->fs_info->ordered_extent_lock);
6689 list_del_init(&BTRFS_I(inode)->ordered_operations);
6690 spin_unlock(&root->fs_info->ordered_extent_lock);
6691 }
6692
Josef Bacik0af3d002010-06-21 14:48:16 -04006693 if (root == root->fs_info->tree_root) {
6694 struct btrfs_block_group_cache *block_group;
6695
6696 block_group = btrfs_lookup_block_group(root->fs_info,
6697 BTRFS_I(inode)->block_group);
6698 if (block_group && block_group->inode == inode) {
6699 spin_lock(&block_group->lock);
6700 block_group->inode = NULL;
6701 spin_unlock(&block_group->lock);
6702 btrfs_put_block_group(block_group);
6703 } else if (block_group) {
6704 btrfs_put_block_group(block_group);
6705 }
6706 }
6707
Yan, Zhengd68fc572010-05-16 10:49:58 -04006708 spin_lock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04006709 if (!list_empty(&BTRFS_I(inode)->i_orphan)) {
Yan, Zheng80825102009-11-12 09:35:36 +00006710 printk(KERN_INFO "BTRFS: inode %lu still on the orphan list\n",
6711 inode->i_ino);
6712 list_del_init(&BTRFS_I(inode)->i_orphan);
Josef Bacik7b128762008-07-24 12:17:14 -04006713 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04006714 spin_unlock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04006715
Chris Masond3977122009-01-05 21:25:51 -05006716 while (1) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04006717 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
6718 if (!ordered)
6719 break;
6720 else {
Chris Masond3977122009-01-05 21:25:51 -05006721 printk(KERN_ERR "btrfs found ordered "
6722 "extent %llu %llu on inode cleanup\n",
6723 (unsigned long long)ordered->file_offset,
6724 (unsigned long long)ordered->len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006725 btrfs_remove_ordered_extent(inode, ordered);
6726 btrfs_put_ordered_extent(ordered);
6727 btrfs_put_ordered_extent(ordered);
6728 }
6729 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006730 inode_tree_del(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04006731 btrfs_drop_extent_cache(inode, 0, (u64)-1, 0);
Josef Bacika6dbd422009-11-11 15:53:34 -05006732free:
Nick Pigginfa0d7e32011-01-07 17:49:49 +11006733 call_rcu(&inode->i_rcu, btrfs_i_callback);
Chris Mason39279cc2007-06-12 06:35:45 -04006734}
6735
Al Viro45321ac2010-06-07 13:43:19 -04006736int btrfs_drop_inode(struct inode *inode)
Yan, Zheng76dda932009-09-21 16:00:26 -04006737{
6738 struct btrfs_root *root = BTRFS_I(inode)->root;
Al Viro45321ac2010-06-07 13:43:19 -04006739
Josef Bacik0af3d002010-06-21 14:48:16 -04006740 if (btrfs_root_refs(&root->root_item) == 0 &&
6741 root != root->fs_info->tree_root)
Al Viro45321ac2010-06-07 13:43:19 -04006742 return 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04006743 else
Al Viro45321ac2010-06-07 13:43:19 -04006744 return generic_drop_inode(inode);
Yan, Zheng76dda932009-09-21 16:00:26 -04006745}
6746
Sven Wegener0ee0fda2008-07-30 16:54:26 -04006747static void init_once(void *foo)
Chris Mason39279cc2007-06-12 06:35:45 -04006748{
6749 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
6750
6751 inode_init_once(&ei->vfs_inode);
6752}
6753
6754void btrfs_destroy_cachep(void)
6755{
6756 if (btrfs_inode_cachep)
6757 kmem_cache_destroy(btrfs_inode_cachep);
6758 if (btrfs_trans_handle_cachep)
6759 kmem_cache_destroy(btrfs_trans_handle_cachep);
6760 if (btrfs_transaction_cachep)
6761 kmem_cache_destroy(btrfs_transaction_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04006762 if (btrfs_path_cachep)
6763 kmem_cache_destroy(btrfs_path_cachep);
6764}
6765
6766int btrfs_init_cachep(void)
6767{
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006768 btrfs_inode_cachep = kmem_cache_create("btrfs_inode_cache",
6769 sizeof(struct btrfs_inode), 0,
6770 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04006771 if (!btrfs_inode_cachep)
6772 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006773
6774 btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle_cache",
6775 sizeof(struct btrfs_trans_handle), 0,
6776 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006777 if (!btrfs_trans_handle_cachep)
6778 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006779
6780 btrfs_transaction_cachep = kmem_cache_create("btrfs_transaction_cache",
6781 sizeof(struct btrfs_transaction), 0,
6782 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006783 if (!btrfs_transaction_cachep)
6784 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006785
6786 btrfs_path_cachep = kmem_cache_create("btrfs_path_cache",
6787 sizeof(struct btrfs_path), 0,
6788 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006789 if (!btrfs_path_cachep)
6790 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006791
Chris Mason39279cc2007-06-12 06:35:45 -04006792 return 0;
6793fail:
6794 btrfs_destroy_cachep();
6795 return -ENOMEM;
6796}
6797
6798static int btrfs_getattr(struct vfsmount *mnt,
6799 struct dentry *dentry, struct kstat *stat)
6800{
6801 struct inode *inode = dentry->d_inode;
6802 generic_fillattr(inode, stat);
Chris Mason3394e162008-11-17 20:42:26 -05006803 stat->dev = BTRFS_I(inode)->root->anon_super.s_dev;
Chris Masond6667462008-01-03 14:51:00 -05006804 stat->blksize = PAGE_CACHE_SIZE;
Yan Zhenga76a3cd2008-10-09 11:46:29 -04006805 stat->blocks = (inode_get_bytes(inode) +
6806 BTRFS_I(inode)->delalloc_bytes) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -04006807 return 0;
6808}
6809
Chris Masond3977122009-01-05 21:25:51 -05006810static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry,
6811 struct inode *new_dir, struct dentry *new_dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04006812{
6813 struct btrfs_trans_handle *trans;
6814 struct btrfs_root *root = BTRFS_I(old_dir)->root;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006815 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04006816 struct inode *new_inode = new_dentry->d_inode;
6817 struct inode *old_inode = old_dentry->d_inode;
6818 struct timespec ctime = CURRENT_TIME;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006819 u64 index = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006820 u64 root_objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04006821 int ret;
6822
Yan, Zhengf679a842009-09-24 09:17:31 -04006823 if (new_dir->i_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
6824 return -EPERM;
6825
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006826 /* we only allow rename subvolume link between subvolumes */
6827 if (old_inode->i_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
Chris Mason3394e162008-11-17 20:42:26 -05006828 return -EXDEV;
6829
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006830 if (old_inode->i_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID ||
6831 (new_inode && new_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID))
6832 return -ENOTEMPTY;
6833
Chris Mason39279cc2007-06-12 06:35:45 -04006834 if (S_ISDIR(old_inode->i_mode) && new_inode &&
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006835 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Chris Mason39279cc2007-06-12 06:35:45 -04006836 return -ENOTEMPTY;
Chris Mason5a3f23d2009-03-31 13:27:11 -04006837 /*
6838 * we're using rename to replace one file with another.
6839 * and the replacement file is large. Start IO on it now so
6840 * we don't add too much work to the end of the transaction
6841 */
Bartlomiej Zolnierkiewicz4baf8c92009-08-07 13:47:08 -04006842 if (new_inode && S_ISREG(old_inode->i_mode) && new_inode->i_size &&
Chris Mason5a3f23d2009-03-31 13:27:11 -04006843 old_inode->i_size > BTRFS_ORDERED_OPERATIONS_FLUSH_LIMIT)
6844 filemap_flush(old_inode->i_mapping);
6845
Yan, Zheng76dda932009-09-21 16:00:26 -04006846 /* close the racy window with snapshot create/destroy ioctl */
6847 if (old_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)
6848 down_read(&root->fs_info->subvol_sem);
Yan, Zhenga22285a2010-05-16 10:48:46 -04006849 /*
6850 * We want to reserve the absolute worst case amount of items. So if
6851 * both inodes are subvols and we need to unlink them then that would
6852 * require 4 item modifications, but if they are both normal inodes it
6853 * would require 5 item modifications, so we'll assume their normal
6854 * inodes. So 5 * 2 is 10, plus 1 for the new link, so 11 total items
6855 * should cover the worst case number of items we'll modify.
6856 */
6857 trans = btrfs_start_transaction(root, 20);
6858 if (IS_ERR(trans))
6859 return PTR_ERR(trans);
Chris Mason5f39d392007-10-15 16:14:19 -04006860
Yan, Zhenga5719522009-09-24 09:17:31 -04006861 btrfs_set_trans_block_group(trans, new_dir);
Chris Mason39279cc2007-06-12 06:35:45 -04006862
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006863 if (dest != root)
6864 btrfs_record_root_in_trans(trans, dest);
6865
Yan, Zhenga5719522009-09-24 09:17:31 -04006866 ret = btrfs_set_inode_index(new_dir, &index);
6867 if (ret)
6868 goto out_fail;
Chris Mason5a3f23d2009-03-31 13:27:11 -04006869
Yan, Zhenga5719522009-09-24 09:17:31 -04006870 if (unlikely(old_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006871 /* force full log commit if subvolume involved. */
6872 root->fs_info->last_trans_log_full_commit = trans->transid;
6873 } else {
Yan, Zhenga5719522009-09-24 09:17:31 -04006874 ret = btrfs_insert_inode_ref(trans, dest,
6875 new_dentry->d_name.name,
6876 new_dentry->d_name.len,
6877 old_inode->i_ino,
6878 new_dir->i_ino, index);
6879 if (ret)
6880 goto out_fail;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006881 /*
6882 * this is an ugly little race, but the rename is required
6883 * to make sure that if we crash, the inode is either at the
6884 * old name or the new one. pinning the log transaction lets
6885 * us make sure we don't allow a log commit to come in after
6886 * we unlink the name but before we add the new name back in.
6887 */
6888 btrfs_pin_log_trans(root);
6889 }
Chris Mason12fcfd22009-03-24 10:24:20 -04006890 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04006891 * make sure the inode gets flushed if it is replacing
6892 * something.
6893 */
6894 if (new_inode && new_inode->i_size &&
6895 old_inode && S_ISREG(old_inode->i_mode)) {
6896 btrfs_add_ordered_operation(trans, root, old_inode);
6897 }
6898
Chris Mason39279cc2007-06-12 06:35:45 -04006899 old_dir->i_ctime = old_dir->i_mtime = ctime;
6900 new_dir->i_ctime = new_dir->i_mtime = ctime;
6901 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04006902
Chris Mason12fcfd22009-03-24 10:24:20 -04006903 if (old_dentry->d_parent != new_dentry->d_parent)
6904 btrfs_record_unlink_dir(trans, old_dir, old_inode, 1);
6905
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006906 if (unlikely(old_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)) {
6907 root_objectid = BTRFS_I(old_inode)->root->root_key.objectid;
6908 ret = btrfs_unlink_subvol(trans, root, old_dir, root_objectid,
6909 old_dentry->d_name.name,
6910 old_dentry->d_name.len);
6911 } else {
6912 btrfs_inc_nlink(old_dentry->d_inode);
6913 ret = btrfs_unlink_inode(trans, root, old_dir,
6914 old_dentry->d_inode,
6915 old_dentry->d_name.name,
6916 old_dentry->d_name.len);
6917 }
6918 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04006919
6920 if (new_inode) {
6921 new_inode->i_ctime = CURRENT_TIME;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006922 if (unlikely(new_inode->i_ino ==
6923 BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
6924 root_objectid = BTRFS_I(new_inode)->location.objectid;
6925 ret = btrfs_unlink_subvol(trans, dest, new_dir,
6926 root_objectid,
6927 new_dentry->d_name.name,
6928 new_dentry->d_name.len);
6929 BUG_ON(new_inode->i_nlink == 0);
6930 } else {
6931 ret = btrfs_unlink_inode(trans, dest, new_dir,
6932 new_dentry->d_inode,
6933 new_dentry->d_name.name,
6934 new_dentry->d_name.len);
6935 }
6936 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04006937 if (new_inode->i_nlink == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04006938 ret = btrfs_orphan_add(trans, new_dentry->d_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006939 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04006940 }
Chris Mason39279cc2007-06-12 06:35:45 -04006941 }
Josef Bacikaec74772008-07-24 12:12:38 -04006942
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006943 ret = btrfs_add_link(trans, new_dir, old_inode,
6944 new_dentry->d_name.name,
Yan, Zhenga5719522009-09-24 09:17:31 -04006945 new_dentry->d_name.len, 0, index);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006946 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04006947
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006948 if (old_inode->i_ino != BTRFS_FIRST_FREE_OBJECTID) {
Josef Bacik6a912212010-11-20 09:48:00 +00006949 struct dentry *parent = dget_parent(new_dentry);
6950 btrfs_log_new_name(trans, old_inode, old_dir, parent);
6951 dput(parent);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006952 btrfs_end_log_trans(root);
6953 }
Chris Mason39279cc2007-06-12 06:35:45 -04006954out_fail:
Chris Masonab78c842008-07-29 16:15:18 -04006955 btrfs_end_transaction_throttle(trans, root);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006956
Yan, Zheng76dda932009-09-21 16:00:26 -04006957 if (old_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)
6958 up_read(&root->fs_info->subvol_sem);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006959
Chris Mason39279cc2007-06-12 06:35:45 -04006960 return ret;
6961}
6962
Chris Masond352ac62008-09-29 15:18:18 -04006963/*
6964 * some fairly slow code that needs optimization. This walks the list
6965 * of all the inodes with pending delalloc and forces them to disk.
6966 */
Yan, Zheng24bbcf02009-11-12 09:36:34 +00006967int btrfs_start_delalloc_inodes(struct btrfs_root *root, int delay_iput)
Chris Masonea8c2812008-08-04 23:17:27 -04006968{
6969 struct list_head *head = &root->fs_info->delalloc_inodes;
6970 struct btrfs_inode *binode;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04006971 struct inode *inode;
Chris Masonea8c2812008-08-04 23:17:27 -04006972
Yan Zhengc146afa2008-11-12 14:34:12 -05006973 if (root->fs_info->sb->s_flags & MS_RDONLY)
6974 return -EROFS;
6975
Chris Mason75eff682008-12-15 15:54:40 -05006976 spin_lock(&root->fs_info->delalloc_lock);
Chris Masond3977122009-01-05 21:25:51 -05006977 while (!list_empty(head)) {
Chris Masonea8c2812008-08-04 23:17:27 -04006978 binode = list_entry(head->next, struct btrfs_inode,
6979 delalloc_inodes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04006980 inode = igrab(&binode->vfs_inode);
6981 if (!inode)
6982 list_del_init(&binode->delalloc_inodes);
Chris Mason75eff682008-12-15 15:54:40 -05006983 spin_unlock(&root->fs_info->delalloc_lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04006984 if (inode) {
Chris Mason8c8bee12008-09-29 11:19:10 -04006985 filemap_flush(inode->i_mapping);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00006986 if (delay_iput)
6987 btrfs_add_delayed_iput(inode);
6988 else
6989 iput(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04006990 }
6991 cond_resched();
Chris Mason75eff682008-12-15 15:54:40 -05006992 spin_lock(&root->fs_info->delalloc_lock);
Chris Masonea8c2812008-08-04 23:17:27 -04006993 }
Chris Mason75eff682008-12-15 15:54:40 -05006994 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason8c8bee12008-09-29 11:19:10 -04006995
6996 /* the filemap_flush will queue IO into the worker threads, but
6997 * we have to make sure the IO is actually started and that
6998 * ordered extents get created before we return
6999 */
7000 atomic_inc(&root->fs_info->async_submit_draining);
Chris Masond3977122009-01-05 21:25:51 -05007001 while (atomic_read(&root->fs_info->nr_async_submits) ||
Chris Mason771ed682008-11-06 22:02:51 -05007002 atomic_read(&root->fs_info->async_delalloc_pages)) {
Chris Mason8c8bee12008-09-29 11:19:10 -04007003 wait_event(root->fs_info->async_submit_wait,
Chris Mason771ed682008-11-06 22:02:51 -05007004 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
7005 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
Chris Mason8c8bee12008-09-29 11:19:10 -04007006 }
7007 atomic_dec(&root->fs_info->async_submit_draining);
Chris Masonea8c2812008-08-04 23:17:27 -04007008 return 0;
7009}
7010
Josef Bacik0019f102010-10-15 15:18:40 -04007011int btrfs_start_one_delalloc_inode(struct btrfs_root *root, int delay_iput,
7012 int sync)
Yan, Zheng5da9d012010-05-16 10:46:25 -04007013{
7014 struct btrfs_inode *binode;
7015 struct inode *inode = NULL;
7016
7017 spin_lock(&root->fs_info->delalloc_lock);
7018 while (!list_empty(&root->fs_info->delalloc_inodes)) {
7019 binode = list_entry(root->fs_info->delalloc_inodes.next,
7020 struct btrfs_inode, delalloc_inodes);
7021 inode = igrab(&binode->vfs_inode);
7022 if (inode) {
7023 list_move_tail(&binode->delalloc_inodes,
7024 &root->fs_info->delalloc_inodes);
7025 break;
7026 }
7027
7028 list_del_init(&binode->delalloc_inodes);
7029 cond_resched_lock(&root->fs_info->delalloc_lock);
7030 }
7031 spin_unlock(&root->fs_info->delalloc_lock);
7032
7033 if (inode) {
Josef Bacik0019f102010-10-15 15:18:40 -04007034 if (sync) {
7035 filemap_write_and_wait(inode->i_mapping);
7036 /*
7037 * We have to do this because compression doesn't
7038 * actually set PG_writeback until it submits the pages
7039 * for IO, which happens in an async thread, so we could
7040 * race and not actually wait for any writeback pages
7041 * because they've not been submitted yet. Technically
7042 * this could still be the case for the ordered stuff
7043 * since the async thread may not have started to do its
7044 * work yet. If this becomes the case then we need to
7045 * figure out a way to make sure that in writepage we
7046 * wait for any async pages to be submitted before
7047 * returning so that fdatawait does what its supposed to
7048 * do.
7049 */
7050 btrfs_wait_ordered_range(inode, 0, (u64)-1);
7051 } else {
7052 filemap_flush(inode->i_mapping);
7053 }
Yan, Zheng5da9d012010-05-16 10:46:25 -04007054 if (delay_iput)
7055 btrfs_add_delayed_iput(inode);
7056 else
7057 iput(inode);
7058 return 1;
7059 }
7060 return 0;
7061}
7062
Chris Mason39279cc2007-06-12 06:35:45 -04007063static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
7064 const char *symname)
7065{
7066 struct btrfs_trans_handle *trans;
7067 struct btrfs_root *root = BTRFS_I(dir)->root;
7068 struct btrfs_path *path;
7069 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05007070 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04007071 int err;
7072 int drop_inode = 0;
7073 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04007074 u64 index = 0 ;
Chris Mason39279cc2007-06-12 06:35:45 -04007075 int name_len;
7076 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04007077 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04007078 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04007079 struct extent_buffer *leaf;
Chris Mason1832a6d2007-12-21 16:27:21 -05007080 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04007081
7082 name_len = strlen(symname) + 1;
7083 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
7084 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05007085
Yan, Zhenga22285a2010-05-16 10:48:46 -04007086 err = btrfs_find_free_objectid(NULL, root, dir->i_ino, &objectid);
7087 if (err)
7088 return err;
Josef Bacik9ed74f22009-09-11 16:12:44 -04007089 /*
7090 * 2 items for inode item and ref
7091 * 2 items for dir items
7092 * 1 item for xattr if selinux is on
7093 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04007094 trans = btrfs_start_transaction(root, 5);
7095 if (IS_ERR(trans))
7096 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05007097
Chris Mason39279cc2007-06-12 06:35:45 -04007098 btrfs_set_trans_block_group(trans, dir);
7099
Josef Bacikaec74772008-07-24 12:12:38 -04007100 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Josef Bacika1b075d2010-11-19 20:36:11 +00007101 dentry->d_name.len, dir->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04007102 BTRFS_I(dir)->block_group, S_IFLNK|S_IRWXUGO,
7103 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04007104 err = PTR_ERR(inode);
7105 if (IS_ERR(inode))
7106 goto out_unlock;
7107
Yan, Zhengf34f57a2009-11-12 09:35:27 +00007108 err = btrfs_init_inode_security(trans, inode, dir);
Josef Bacik33268ea2008-07-24 12:16:36 -04007109 if (err) {
7110 drop_inode = 1;
7111 goto out_unlock;
7112 }
7113
Chris Mason39279cc2007-06-12 06:35:45 -04007114 btrfs_set_trans_block_group(trans, inode);
Josef Bacika1b075d2010-11-19 20:36:11 +00007115 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04007116 if (err)
7117 drop_inode = 1;
7118 else {
7119 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04007120 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04007121 inode->i_fop = &btrfs_file_operations;
7122 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05007123 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04007124 }
Chris Mason39279cc2007-06-12 06:35:45 -04007125 btrfs_update_inode_block_group(trans, inode);
7126 btrfs_update_inode_block_group(trans, dir);
7127 if (drop_inode)
7128 goto out_unlock;
7129
7130 path = btrfs_alloc_path();
7131 BUG_ON(!path);
7132 key.objectid = inode->i_ino;
7133 key.offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04007134 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
7135 datasize = btrfs_file_extent_calc_inline_size(name_len);
7136 err = btrfs_insert_empty_item(trans, root, path, &key,
7137 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04007138 if (err) {
7139 drop_inode = 1;
7140 goto out_unlock;
7141 }
Chris Mason5f39d392007-10-15 16:14:19 -04007142 leaf = path->nodes[0];
7143 ei = btrfs_item_ptr(leaf, path->slots[0],
7144 struct btrfs_file_extent_item);
7145 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
7146 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04007147 BTRFS_FILE_EXTENT_INLINE);
Chris Masonc8b97812008-10-29 14:49:59 -04007148 btrfs_set_file_extent_encryption(leaf, ei, 0);
7149 btrfs_set_file_extent_compression(leaf, ei, 0);
7150 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
7151 btrfs_set_file_extent_ram_bytes(leaf, ei, name_len);
7152
Chris Mason39279cc2007-06-12 06:35:45 -04007153 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04007154 write_extent_buffer(leaf, symname, ptr, name_len);
7155 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04007156 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04007157
Chris Mason39279cc2007-06-12 06:35:45 -04007158 inode->i_op = &btrfs_symlink_inode_operations;
7159 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04007160 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Yan Zhengd899e052008-10-30 14:25:28 -04007161 inode_set_bytes(inode, name_len);
Chris Masondbe674a2008-07-17 12:54:05 -04007162 btrfs_i_size_write(inode, name_len - 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04007163 err = btrfs_update_inode(trans, root, inode);
7164 if (err)
7165 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04007166
7167out_unlock:
Chris Masond3c2fdc2007-09-17 10:58:06 -04007168 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04007169 btrfs_end_transaction_throttle(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04007170 if (drop_inode) {
7171 inode_dec_link_count(inode);
7172 iput(inode);
7173 }
Chris Masond3c2fdc2007-09-17 10:58:06 -04007174 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04007175 return err;
7176}
Chris Mason16432982008-04-10 10:23:21 -04007177
Josef Bacik0af3d002010-06-21 14:48:16 -04007178static int __btrfs_prealloc_file_range(struct inode *inode, int mode,
7179 u64 start, u64 num_bytes, u64 min_size,
7180 loff_t actual_len, u64 *alloc_hint,
7181 struct btrfs_trans_handle *trans)
Yan Zhengd899e052008-10-30 14:25:28 -04007182{
Yan Zhengd899e052008-10-30 14:25:28 -04007183 struct btrfs_root *root = BTRFS_I(inode)->root;
7184 struct btrfs_key ins;
Yan Zhengd899e052008-10-30 14:25:28 -04007185 u64 cur_offset = start;
Josef Bacik55a61d12010-11-22 18:50:32 +00007186 u64 i_size;
Yan Zhengd899e052008-10-30 14:25:28 -04007187 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04007188 bool own_trans = true;
Yan Zhengd899e052008-10-30 14:25:28 -04007189
Josef Bacik0af3d002010-06-21 14:48:16 -04007190 if (trans)
7191 own_trans = false;
Yan Zhengd899e052008-10-30 14:25:28 -04007192 while (num_bytes > 0) {
Josef Bacik0af3d002010-06-21 14:48:16 -04007193 if (own_trans) {
7194 trans = btrfs_start_transaction(root, 3);
7195 if (IS_ERR(trans)) {
7196 ret = PTR_ERR(trans);
7197 break;
7198 }
Yan Zhengd899e052008-10-30 14:25:28 -04007199 }
Yan, Zheng5a303d52009-11-12 09:34:52 +00007200
Yan, Zhengefa56462010-05-16 10:49:59 -04007201 ret = btrfs_reserve_extent(trans, root, num_bytes, min_size,
7202 0, *alloc_hint, (u64)-1, &ins, 1);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007203 if (ret) {
Josef Bacik0af3d002010-06-21 14:48:16 -04007204 if (own_trans)
7205 btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04007206 break;
Yan, Zheng5a303d52009-11-12 09:34:52 +00007207 }
7208
Yan Zhengd899e052008-10-30 14:25:28 -04007209 ret = insert_reserved_file_extent(trans, inode,
7210 cur_offset, ins.objectid,
7211 ins.offset, ins.offset,
Yan, Zheng920bbbf2009-11-12 09:34:08 +00007212 ins.offset, 0, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04007213 BTRFS_FILE_EXTENT_PREALLOC);
7214 BUG_ON(ret);
Chris Masona1ed8352009-09-11 12:27:37 -04007215 btrfs_drop_extent_cache(inode, cur_offset,
7216 cur_offset + ins.offset -1, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007217
Yan Zhengd899e052008-10-30 14:25:28 -04007218 num_bytes -= ins.offset;
7219 cur_offset += ins.offset;
Yan, Zhengefa56462010-05-16 10:49:59 -04007220 *alloc_hint = ins.objectid + ins.offset;
Yan, Zheng5a303d52009-11-12 09:34:52 +00007221
Yan Zhengd899e052008-10-30 14:25:28 -04007222 inode->i_ctime = CURRENT_TIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +02007223 BTRFS_I(inode)->flags |= BTRFS_INODE_PREALLOC;
Yan Zhengd899e052008-10-30 14:25:28 -04007224 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
Yan, Zhengefa56462010-05-16 10:49:59 -04007225 (actual_len > inode->i_size) &&
7226 (cur_offset > inode->i_size)) {
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00007227 if (cur_offset > actual_len)
Josef Bacik55a61d12010-11-22 18:50:32 +00007228 i_size = actual_len;
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00007229 else
Josef Bacik55a61d12010-11-22 18:50:32 +00007230 i_size = cur_offset;
7231 i_size_write(inode, i_size);
7232 btrfs_ordered_update_i_size(inode, i_size, NULL);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007233 }
7234
Yan Zhengd899e052008-10-30 14:25:28 -04007235 ret = btrfs_update_inode(trans, root, inode);
7236 BUG_ON(ret);
Yan Zhengd899e052008-10-30 14:25:28 -04007237
Josef Bacik0af3d002010-06-21 14:48:16 -04007238 if (own_trans)
7239 btrfs_end_transaction(trans, root);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007240 }
Yan Zhengd899e052008-10-30 14:25:28 -04007241 return ret;
7242}
7243
Josef Bacik0af3d002010-06-21 14:48:16 -04007244int btrfs_prealloc_file_range(struct inode *inode, int mode,
7245 u64 start, u64 num_bytes, u64 min_size,
7246 loff_t actual_len, u64 *alloc_hint)
7247{
7248 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
7249 min_size, actual_len, alloc_hint,
7250 NULL);
7251}
7252
7253int btrfs_prealloc_file_range_trans(struct inode *inode,
7254 struct btrfs_trans_handle *trans, int mode,
7255 u64 start, u64 num_bytes, u64 min_size,
7256 loff_t actual_len, u64 *alloc_hint)
7257{
7258 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
7259 min_size, actual_len, alloc_hint, trans);
7260}
7261
Chris Masone6dcd2d2008-07-17 12:53:50 -04007262static int btrfs_set_page_dirty(struct page *page)
7263{
Chris Masone6dcd2d2008-07-17 12:53:50 -04007264 return __set_page_dirty_nobuffers(page);
7265}
7266
Nick Pigginb74c79e2011-01-07 17:49:58 +11007267static int btrfs_permission(struct inode *inode, int mask, unsigned int flags)
Yanfdebe2b2008-01-14 13:26:08 -05007268{
Li Zefanb83cc962010-12-20 16:04:08 +08007269 struct btrfs_root *root = BTRFS_I(inode)->root;
7270
7271 if (btrfs_root_readonly(root) && (mask & MAY_WRITE))
7272 return -EROFS;
Christoph Hellwig6cbff002009-04-17 10:37:41 +02007273 if ((BTRFS_I(inode)->flags & BTRFS_INODE_READONLY) && (mask & MAY_WRITE))
Yanfdebe2b2008-01-14 13:26:08 -05007274 return -EACCES;
Nick Pigginb74c79e2011-01-07 17:49:58 +11007275 return generic_permission(inode, mask, flags, btrfs_check_acl);
Yanfdebe2b2008-01-14 13:26:08 -05007276}
Chris Mason39279cc2007-06-12 06:35:45 -04007277
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007278static const struct inode_operations btrfs_dir_inode_operations = {
Chris Mason3394e162008-11-17 20:42:26 -05007279 .getattr = btrfs_getattr,
Chris Mason39279cc2007-06-12 06:35:45 -04007280 .lookup = btrfs_lookup,
7281 .create = btrfs_create,
7282 .unlink = btrfs_unlink,
7283 .link = btrfs_link,
7284 .mkdir = btrfs_mkdir,
7285 .rmdir = btrfs_rmdir,
7286 .rename = btrfs_rename,
7287 .symlink = btrfs_symlink,
7288 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04007289 .mknod = btrfs_mknod,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007290 .setxattr = btrfs_setxattr,
7291 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05007292 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007293 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05007294 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04007295};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007296static const struct inode_operations btrfs_dir_ro_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007297 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -05007298 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04007299};
Yan, Zheng76dda932009-09-21 16:00:26 -04007300
Alexey Dobriyan828c0952009-10-01 15:43:56 -07007301static const struct file_operations btrfs_dir_file_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007302 .llseek = generic_file_llseek,
7303 .read = generic_read_dir,
David Woodhousecbdf5a22008-08-06 19:42:33 +01007304 .readdir = btrfs_real_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04007305 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04007306#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04007307 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04007308#endif
Sage Weil6bf13c02008-06-10 10:07:39 -04007309 .release = btrfs_release_file,
Chris Masone02119d2008-09-05 16:13:11 -04007310 .fsync = btrfs_sync_file,
Chris Mason39279cc2007-06-12 06:35:45 -04007311};
7312
Chris Masond1310b22008-01-24 16:13:08 -05007313static struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -04007314 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -05007315 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04007316 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04007317 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Masone6dcd2d2008-07-17 12:53:50 -04007318 .writepage_end_io_hook = btrfs_writepage_end_io_hook,
Chris Mason247e7432008-07-17 12:53:51 -04007319 .writepage_start_hook = btrfs_writepage_start_hook,
Chris Mason1259ab72008-05-12 13:39:03 -04007320 .readpage_io_failed_hook = btrfs_io_failed_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -05007321 .set_bit_hook = btrfs_set_bit_hook,
7322 .clear_bit_hook = btrfs_clear_bit_hook,
Josef Bacik9ed74f22009-09-11 16:12:44 -04007323 .merge_extent_hook = btrfs_merge_extent_hook,
7324 .split_extent_hook = btrfs_split_extent_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04007325};
7326
Chris Mason35054392009-01-21 13:11:13 -05007327/*
7328 * btrfs doesn't support the bmap operation because swapfiles
7329 * use bmap to make a mapping of extents in the file. They assume
7330 * these extents won't change over the life of the file and they
7331 * use the bmap result to do IO directly to the drive.
7332 *
7333 * the btrfs bmap call would return logical addresses that aren't
7334 * suitable for IO and they also will change frequently as COW
7335 * operations happen. So, swapfile + btrfs == corruption.
7336 *
7337 * For now we're avoiding this by dropping bmap.
7338 */
Alexey Dobriyan7f094102009-09-21 17:01:10 -07007339static const struct address_space_operations btrfs_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04007340 .readpage = btrfs_readpage,
7341 .writepage = btrfs_writepage,
Chris Masonb293f022007-11-01 19:45:34 -04007342 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -05007343 .readpages = btrfs_readpages,
Chris Mason39279cc2007-06-12 06:35:45 -04007344 .sync_page = block_sync_page,
Chris Mason16432982008-04-10 10:23:21 -04007345 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -04007346 .invalidatepage = btrfs_invalidatepage,
7347 .releasepage = btrfs_releasepage,
Chris Masone6dcd2d2008-07-17 12:53:50 -04007348 .set_page_dirty = btrfs_set_page_dirty,
Andi Kleen465fdd92009-09-16 11:50:18 +02007349 .error_remove_page = generic_error_remove_page,
Chris Mason39279cc2007-06-12 06:35:45 -04007350};
7351
Alexey Dobriyan7f094102009-09-21 17:01:10 -07007352static const struct address_space_operations btrfs_symlink_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04007353 .readpage = btrfs_readpage,
7354 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -04007355 .invalidatepage = btrfs_invalidatepage,
7356 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -04007357};
7358
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007359static const struct inode_operations btrfs_file_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007360 .truncate = btrfs_truncate,
7361 .getattr = btrfs_getattr,
7362 .setattr = btrfs_setattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007363 .setxattr = btrfs_setxattr,
7364 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05007365 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007366 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05007367 .permission = btrfs_permission,
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05007368 .fiemap = btrfs_fiemap,
Chris Mason39279cc2007-06-12 06:35:45 -04007369};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007370static const struct inode_operations btrfs_special_inode_operations = {
Josef Bacik618e21d2007-07-11 10:18:17 -04007371 .getattr = btrfs_getattr,
7372 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05007373 .permission = btrfs_permission,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007374 .setxattr = btrfs_setxattr,
7375 .getxattr = btrfs_getxattr,
Josef Bacik33268ea2008-07-24 12:16:36 -04007376 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007377 .removexattr = btrfs_removexattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04007378};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007379static const struct inode_operations btrfs_symlink_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007380 .readlink = generic_readlink,
7381 .follow_link = page_follow_link_light,
7382 .put_link = page_put_link,
Li Zefanf2095612010-11-19 02:05:24 +00007383 .getattr = btrfs_getattr,
Yanfdebe2b2008-01-14 13:26:08 -05007384 .permission = btrfs_permission,
Jim Owens0279b4c2009-02-04 09:29:13 -05007385 .setxattr = btrfs_setxattr,
7386 .getxattr = btrfs_getxattr,
7387 .listxattr = btrfs_listxattr,
7388 .removexattr = btrfs_removexattr,
Chris Mason39279cc2007-06-12 06:35:45 -04007389};
Yan, Zheng76dda932009-09-21 16:00:26 -04007390
Alexey Dobriyan82d339d2009-10-09 09:54:36 -04007391const struct dentry_operations btrfs_dentry_operations = {
Yan, Zheng76dda932009-09-21 16:00:26 -04007392 .d_delete = btrfs_dentry_delete,
7393};