blob: ba563b2a5d6cfdc533e8f6a859632d39c12ff22f [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, Zhengc21677542009-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, Zhengc21677542009-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);
419 BUG_ON(!trans);
420 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, Zhengc21677542009-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, Zhengc21677542009-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, Zhengc21677542009-11-12 09:34:21 +0000614 trans = btrfs_join_transaction(root, 1);
Chris Mason771ed682008-11-06 22:02:51 -0500615 ret = btrfs_reserve_extent(trans, root,
616 async_extent->compressed_size,
617 async_extent->compressed_size,
618 0, alloc_hint,
619 (u64)-1, &ins, 1);
Yan, Zhengc21677542009-11-12 09:34:21 +0000620 btrfs_end_transaction(trans, root);
621
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500622 if (ret) {
623 int i;
624 for (i = 0; i < async_extent->nr_pages; i++) {
625 WARN_ON(async_extent->pages[i]->mapping);
626 page_cache_release(async_extent->pages[i]);
627 }
628 kfree(async_extent->pages);
629 async_extent->nr_pages = 0;
630 async_extent->pages = NULL;
631 unlock_extent(io_tree, async_extent->start,
632 async_extent->start +
633 async_extent->ram_size - 1, GFP_NOFS);
634 goto retry;
635 }
636
Yan, Zhengc21677542009-11-12 09:34:21 +0000637 /*
638 * here we're doing allocation and writeback of the
639 * compressed pages
640 */
641 btrfs_drop_extent_cache(inode, async_extent->start,
642 async_extent->start +
643 async_extent->ram_size - 1, 0);
644
Chris Mason771ed682008-11-06 22:02:51 -0500645 em = alloc_extent_map(GFP_NOFS);
646 em->start = async_extent->start;
647 em->len = async_extent->ram_size;
Chris Mason445a6942008-11-10 11:53:33 -0500648 em->orig_start = em->start;
Chris Mason771ed682008-11-06 22:02:51 -0500649
650 em->block_start = ins.objectid;
651 em->block_len = ins.offset;
652 em->bdev = root->fs_info->fs_devices->latest_bdev;
Li Zefan261507a02010-12-17 14:21:50 +0800653 em->compress_type = async_extent->compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500654 set_bit(EXTENT_FLAG_PINNED, &em->flags);
655 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
656
Chris Masond3977122009-01-05 21:25:51 -0500657 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -0400658 write_lock(&em_tree->lock);
Chris Mason771ed682008-11-06 22:02:51 -0500659 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -0400660 write_unlock(&em_tree->lock);
Chris Mason771ed682008-11-06 22:02:51 -0500661 if (ret != -EEXIST) {
662 free_extent_map(em);
663 break;
664 }
665 btrfs_drop_extent_cache(inode, async_extent->start,
666 async_extent->start +
667 async_extent->ram_size - 1, 0);
668 }
669
Li Zefan261507a02010-12-17 14:21:50 +0800670 ret = btrfs_add_ordered_extent_compress(inode,
671 async_extent->start,
672 ins.objectid,
673 async_extent->ram_size,
674 ins.offset,
675 BTRFS_ORDERED_COMPRESSED,
676 async_extent->compress_type);
Chris Mason771ed682008-11-06 22:02:51 -0500677 BUG_ON(ret);
678
Chris Mason771ed682008-11-06 22:02:51 -0500679 /*
680 * clear dirty, set writeback and unlock the pages.
681 */
682 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400683 &BTRFS_I(inode)->io_tree,
684 async_extent->start,
685 async_extent->start +
686 async_extent->ram_size - 1,
687 NULL, EXTENT_CLEAR_UNLOCK_PAGE |
688 EXTENT_CLEAR_UNLOCK |
Chris Masona3429ab2009-10-08 12:30:20 -0400689 EXTENT_CLEAR_DELALLOC |
Chris Masona791e352009-10-08 11:27:10 -0400690 EXTENT_CLEAR_DIRTY | EXTENT_SET_WRITEBACK);
Chris Mason771ed682008-11-06 22:02:51 -0500691
692 ret = btrfs_submit_compressed_write(inode,
Chris Masond3977122009-01-05 21:25:51 -0500693 async_extent->start,
694 async_extent->ram_size,
695 ins.objectid,
696 ins.offset, async_extent->pages,
697 async_extent->nr_pages);
Chris Mason771ed682008-11-06 22:02:51 -0500698
699 BUG_ON(ret);
Chris Mason771ed682008-11-06 22:02:51 -0500700 alloc_hint = ins.objectid + ins.offset;
701 kfree(async_extent);
702 cond_resched();
703 }
704
Chris Mason771ed682008-11-06 22:02:51 -0500705 return 0;
706}
707
Josef Bacik4b46fce2010-05-23 11:00:55 -0400708static u64 get_extent_allocation_hint(struct inode *inode, u64 start,
709 u64 num_bytes)
710{
711 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
712 struct extent_map *em;
713 u64 alloc_hint = 0;
714
715 read_lock(&em_tree->lock);
716 em = search_extent_mapping(em_tree, start, num_bytes);
717 if (em) {
718 /*
719 * if block start isn't an actual block number then find the
720 * first block in this inode and use that as a hint. If that
721 * block is also bogus then just don't worry about it.
722 */
723 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
724 free_extent_map(em);
725 em = search_extent_mapping(em_tree, 0, 0);
726 if (em && em->block_start < EXTENT_MAP_LAST_BYTE)
727 alloc_hint = em->block_start;
728 if (em)
729 free_extent_map(em);
730 } else {
731 alloc_hint = em->block_start;
732 free_extent_map(em);
733 }
734 }
735 read_unlock(&em_tree->lock);
736
737 return alloc_hint;
738}
739
Chris Mason771ed682008-11-06 22:02:51 -0500740/*
741 * when extent_io.c finds a delayed allocation range in the file,
742 * the call backs end up in this code. The basic idea is to
743 * allocate extents on disk for the range, and create ordered data structs
744 * in ram to track those extents.
745 *
746 * locked_page is the page that writepage had locked already. We use
747 * it to make sure we don't do extra locks or unlocks.
748 *
749 * *page_started is set to one if we unlock locked_page and do everything
750 * required to start IO on it. It may be clean and already done with
751 * IO when we return.
752 */
753static noinline int cow_file_range(struct inode *inode,
754 struct page *locked_page,
755 u64 start, u64 end, int *page_started,
756 unsigned long *nr_written,
757 int unlock)
758{
759 struct btrfs_root *root = BTRFS_I(inode)->root;
760 struct btrfs_trans_handle *trans;
761 u64 alloc_hint = 0;
762 u64 num_bytes;
763 unsigned long ram_size;
764 u64 disk_num_bytes;
765 u64 cur_alloc_size;
766 u64 blocksize = root->sectorsize;
Chris Mason771ed682008-11-06 22:02:51 -0500767 struct btrfs_key ins;
768 struct extent_map *em;
769 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
770 int ret = 0;
771
Josef Bacik0cb59c92010-07-02 12:14:14 -0400772 BUG_ON(root == root->fs_info->tree_root);
Chris Mason771ed682008-11-06 22:02:51 -0500773 trans = btrfs_join_transaction(root, 1);
774 BUG_ON(!trans);
775 btrfs_set_trans_block_group(trans, inode);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400776 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Mason771ed682008-11-06 22:02:51 -0500777
Chris Mason771ed682008-11-06 22:02:51 -0500778 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
779 num_bytes = max(blocksize, num_bytes);
780 disk_num_bytes = num_bytes;
781 ret = 0;
782
783 if (start == 0) {
784 /* lets try to make an inline extent */
785 ret = cow_file_range_inline(trans, root, inode,
786 start, end, 0, NULL);
787 if (ret == 0) {
788 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400789 &BTRFS_I(inode)->io_tree,
790 start, end, NULL,
791 EXTENT_CLEAR_UNLOCK_PAGE |
792 EXTENT_CLEAR_UNLOCK |
793 EXTENT_CLEAR_DELALLOC |
794 EXTENT_CLEAR_DIRTY |
795 EXTENT_SET_WRITEBACK |
796 EXTENT_END_WRITEBACK);
Yan, Zhengc21677542009-11-12 09:34:21 +0000797
Chris Mason771ed682008-11-06 22:02:51 -0500798 *nr_written = *nr_written +
799 (end - start + PAGE_CACHE_SIZE) / PAGE_CACHE_SIZE;
800 *page_started = 1;
801 ret = 0;
802 goto out;
803 }
804 }
Chris Masonc8b97812008-10-29 14:49:59 -0400805
806 BUG_ON(disk_num_bytes >
807 btrfs_super_total_bytes(&root->fs_info->super_copy));
808
Josef Bacik4b46fce2010-05-23 11:00:55 -0400809 alloc_hint = get_extent_allocation_hint(inode, start, num_bytes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400810 btrfs_drop_extent_cache(inode, start, start + num_bytes - 1, 0);
Chris Mason3b951512008-04-17 11:29:12 -0400811
Chris Masond3977122009-01-05 21:25:51 -0500812 while (disk_num_bytes > 0) {
Chris Masona791e352009-10-08 11:27:10 -0400813 unsigned long op;
814
Josef Bacik287a0ab2010-03-19 18:07:23 +0000815 cur_alloc_size = disk_num_bytes;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400816 ret = btrfs_reserve_extent(trans, root, cur_alloc_size,
Chris Mason771ed682008-11-06 22:02:51 -0500817 root->sectorsize, 0, alloc_hint,
Chris Masone6dcd2d2008-07-17 12:53:50 -0400818 (u64)-1, &ins, 1);
Chris Masond3977122009-01-05 21:25:51 -0500819 BUG_ON(ret);
820
Chris Masone6dcd2d2008-07-17 12:53:50 -0400821 em = alloc_extent_map(GFP_NOFS);
822 em->start = start;
Chris Mason445a6942008-11-10 11:53:33 -0500823 em->orig_start = em->start;
Chris Mason771ed682008-11-06 22:02:51 -0500824 ram_size = ins.offset;
825 em->len = ins.offset;
Chris Masonc8b97812008-10-29 14:49:59 -0400826
Chris Masone6dcd2d2008-07-17 12:53:50 -0400827 em->block_start = ins.objectid;
Chris Masonc8b97812008-10-29 14:49:59 -0400828 em->block_len = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400829 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -0400830 set_bit(EXTENT_FLAG_PINNED, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -0400831
Chris Masond3977122009-01-05 21:25:51 -0500832 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -0400833 write_lock(&em_tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400834 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -0400835 write_unlock(&em_tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400836 if (ret != -EEXIST) {
837 free_extent_map(em);
838 break;
839 }
840 btrfs_drop_extent_cache(inode, start,
Chris Masonc8b97812008-10-29 14:49:59 -0400841 start + ram_size - 1, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400842 }
843
Chris Mason98d20f62008-04-14 09:46:10 -0400844 cur_alloc_size = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400845 ret = btrfs_add_ordered_extent(inode, start, ins.objectid,
Chris Mason771ed682008-11-06 22:02:51 -0500846 ram_size, cur_alloc_size, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400847 BUG_ON(ret);
Chris Masonc8b97812008-10-29 14:49:59 -0400848
Yan Zheng17d217f2008-12-12 10:03:38 -0500849 if (root->root_key.objectid ==
850 BTRFS_DATA_RELOC_TREE_OBJECTID) {
851 ret = btrfs_reloc_clone_csums(inode, start,
852 cur_alloc_size);
853 BUG_ON(ret);
854 }
855
Chris Masond3977122009-01-05 21:25:51 -0500856 if (disk_num_bytes < cur_alloc_size)
Chris Mason3b951512008-04-17 11:29:12 -0400857 break;
Chris Masond3977122009-01-05 21:25:51 -0500858
Chris Masonc8b97812008-10-29 14:49:59 -0400859 /* we're not doing compressed IO, don't unlock the first
860 * page (which the caller expects to stay locked), don't
861 * clear any dirty bits and don't set any writeback bits
Chris Mason8b62b722009-09-02 16:53:46 -0400862 *
863 * Do set the Private2 bit so we know this page was properly
864 * setup for writepage
Chris Masonc8b97812008-10-29 14:49:59 -0400865 */
Chris Masona791e352009-10-08 11:27:10 -0400866 op = unlock ? EXTENT_CLEAR_UNLOCK_PAGE : 0;
867 op |= EXTENT_CLEAR_UNLOCK | EXTENT_CLEAR_DELALLOC |
868 EXTENT_SET_PRIVATE2;
869
Chris Masonc8b97812008-10-29 14:49:59 -0400870 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
871 start, start + ram_size - 1,
Chris Masona791e352009-10-08 11:27:10 -0400872 locked_page, op);
Chris Masonc8b97812008-10-29 14:49:59 -0400873 disk_num_bytes -= cur_alloc_size;
Chris Masonc59f8952007-12-17 20:14:04 -0500874 num_bytes -= cur_alloc_size;
875 alloc_hint = ins.objectid + ins.offset;
876 start += cur_alloc_size;
Chris Masonb888db22007-08-27 16:49:44 -0400877 }
Chris Masonb888db22007-08-27 16:49:44 -0400878out:
Chris Mason771ed682008-11-06 22:02:51 -0500879 ret = 0;
Chris Masonb888db22007-08-27 16:49:44 -0400880 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400881
Chris Masonbe20aa92007-12-17 20:14:01 -0500882 return ret;
Chris Mason771ed682008-11-06 22:02:51 -0500883}
Chris Masonc8b97812008-10-29 14:49:59 -0400884
Chris Mason771ed682008-11-06 22:02:51 -0500885/*
886 * work queue call back to started compression on a file and pages
887 */
888static noinline void async_cow_start(struct btrfs_work *work)
889{
890 struct async_cow *async_cow;
891 int num_added = 0;
892 async_cow = container_of(work, struct async_cow, work);
893
894 compress_file_range(async_cow->inode, async_cow->locked_page,
895 async_cow->start, async_cow->end, async_cow,
896 &num_added);
897 if (num_added == 0)
898 async_cow->inode = NULL;
899}
900
901/*
902 * work queue call back to submit previously compressed pages
903 */
904static noinline void async_cow_submit(struct btrfs_work *work)
905{
906 struct async_cow *async_cow;
907 struct btrfs_root *root;
908 unsigned long nr_pages;
909
910 async_cow = container_of(work, struct async_cow, work);
911
912 root = async_cow->root;
913 nr_pages = (async_cow->end - async_cow->start + PAGE_CACHE_SIZE) >>
914 PAGE_CACHE_SHIFT;
915
916 atomic_sub(nr_pages, &root->fs_info->async_delalloc_pages);
917
918 if (atomic_read(&root->fs_info->async_delalloc_pages) <
919 5 * 1042 * 1024 &&
920 waitqueue_active(&root->fs_info->async_submit_wait))
921 wake_up(&root->fs_info->async_submit_wait);
922
Chris Masond3977122009-01-05 21:25:51 -0500923 if (async_cow->inode)
Chris Mason771ed682008-11-06 22:02:51 -0500924 submit_compressed_extents(async_cow->inode, async_cow);
Chris Mason771ed682008-11-06 22:02:51 -0500925}
Chris Masonc8b97812008-10-29 14:49:59 -0400926
Chris Mason771ed682008-11-06 22:02:51 -0500927static noinline void async_cow_free(struct btrfs_work *work)
928{
929 struct async_cow *async_cow;
930 async_cow = container_of(work, struct async_cow, work);
931 kfree(async_cow);
932}
933
934static int cow_file_range_async(struct inode *inode, struct page *locked_page,
935 u64 start, u64 end, int *page_started,
936 unsigned long *nr_written)
937{
938 struct async_cow *async_cow;
939 struct btrfs_root *root = BTRFS_I(inode)->root;
940 unsigned long nr_pages;
941 u64 cur_end;
942 int limit = 10 * 1024 * 1042;
943
Chris Masona3429ab2009-10-08 12:30:20 -0400944 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, EXTENT_LOCKED,
945 1, 0, NULL, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -0500946 while (start < end) {
Chris Mason771ed682008-11-06 22:02:51 -0500947 async_cow = kmalloc(sizeof(*async_cow), GFP_NOFS);
948 async_cow->inode = inode;
949 async_cow->root = root;
950 async_cow->locked_page = locked_page;
951 async_cow->start = start;
952
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200953 if (BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS)
Chris Mason771ed682008-11-06 22:02:51 -0500954 cur_end = end;
955 else
956 cur_end = min(end, start + 512 * 1024 - 1);
957
958 async_cow->end = cur_end;
959 INIT_LIST_HEAD(&async_cow->extents);
960
961 async_cow->work.func = async_cow_start;
962 async_cow->work.ordered_func = async_cow_submit;
963 async_cow->work.ordered_free = async_cow_free;
964 async_cow->work.flags = 0;
965
Chris Mason771ed682008-11-06 22:02:51 -0500966 nr_pages = (cur_end - start + PAGE_CACHE_SIZE) >>
967 PAGE_CACHE_SHIFT;
968 atomic_add(nr_pages, &root->fs_info->async_delalloc_pages);
969
970 btrfs_queue_worker(&root->fs_info->delalloc_workers,
971 &async_cow->work);
972
973 if (atomic_read(&root->fs_info->async_delalloc_pages) > limit) {
974 wait_event(root->fs_info->async_submit_wait,
975 (atomic_read(&root->fs_info->async_delalloc_pages) <
976 limit));
977 }
978
Chris Masond3977122009-01-05 21:25:51 -0500979 while (atomic_read(&root->fs_info->async_submit_draining) &&
Chris Mason771ed682008-11-06 22:02:51 -0500980 atomic_read(&root->fs_info->async_delalloc_pages)) {
981 wait_event(root->fs_info->async_submit_wait,
982 (atomic_read(&root->fs_info->async_delalloc_pages) ==
983 0));
984 }
985
986 *nr_written += nr_pages;
987 start = cur_end + 1;
988 }
989 *page_started = 1;
990 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -0500991}
992
Chris Masond3977122009-01-05 21:25:51 -0500993static noinline int csum_exist_in_range(struct btrfs_root *root,
Yan Zheng17d217f2008-12-12 10:03:38 -0500994 u64 bytenr, u64 num_bytes)
995{
996 int ret;
997 struct btrfs_ordered_sum *sums;
998 LIST_HEAD(list);
999
Yan Zheng07d400a2009-01-06 11:42:00 -05001000 ret = btrfs_lookup_csums_range(root->fs_info->csum_root, bytenr,
1001 bytenr + num_bytes - 1, &list);
Yan Zheng17d217f2008-12-12 10:03:38 -05001002 if (ret == 0 && list_empty(&list))
1003 return 0;
1004
1005 while (!list_empty(&list)) {
1006 sums = list_entry(list.next, struct btrfs_ordered_sum, list);
1007 list_del(&sums->list);
1008 kfree(sums);
1009 }
1010 return 1;
1011}
1012
Chris Masond352ac62008-09-29 15:18:18 -04001013/*
1014 * when nowcow writeback call back. This checks for snapshots or COW copies
1015 * of the extents that exist in the file, and COWs the file as required.
1016 *
1017 * If no cow copies or snapshots exist, we write directly to the existing
1018 * blocks on disk
1019 */
Chris Mason7f366cf2009-03-12 20:12:45 -04001020static noinline int run_delalloc_nocow(struct inode *inode,
1021 struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001022 u64 start, u64 end, int *page_started, int force,
1023 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001024{
Chris Masonbe20aa92007-12-17 20:14:01 -05001025 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001026 struct btrfs_trans_handle *trans;
Chris Masonbe20aa92007-12-17 20:14:01 -05001027 struct extent_buffer *leaf;
Chris Masonbe20aa92007-12-17 20:14:01 -05001028 struct btrfs_path *path;
Yan Zheng80ff3852008-10-30 14:20:02 -04001029 struct btrfs_file_extent_item *fi;
Chris Masonbe20aa92007-12-17 20:14:01 -05001030 struct btrfs_key found_key;
Yan Zheng80ff3852008-10-30 14:20:02 -04001031 u64 cow_start;
1032 u64 cur_offset;
1033 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001034 u64 extent_offset;
Yan Zheng80ff3852008-10-30 14:20:02 -04001035 u64 disk_bytenr;
1036 u64 num_bytes;
1037 int extent_type;
1038 int ret;
Yan Zhengd899e052008-10-30 14:25:28 -04001039 int type;
Yan Zheng80ff3852008-10-30 14:20:02 -04001040 int nocow;
1041 int check_prev = 1;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001042 bool nolock = false;
Chris Masonbe20aa92007-12-17 20:14:01 -05001043
1044 path = btrfs_alloc_path();
1045 BUG_ON(!path);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001046 if (root == root->fs_info->tree_root) {
1047 nolock = true;
1048 trans = btrfs_join_transaction_nolock(root, 1);
1049 } else {
1050 trans = btrfs_join_transaction(root, 1);
1051 }
Yan Zheng7ea394f2008-08-05 13:05:02 -04001052 BUG_ON(!trans);
Chris Masonbe20aa92007-12-17 20:14:01 -05001053
Yan Zheng80ff3852008-10-30 14:20:02 -04001054 cow_start = (u64)-1;
1055 cur_offset = start;
1056 while (1) {
1057 ret = btrfs_lookup_file_extent(trans, root, path, inode->i_ino,
1058 cur_offset, 0);
1059 BUG_ON(ret < 0);
1060 if (ret > 0 && path->slots[0] > 0 && check_prev) {
1061 leaf = path->nodes[0];
1062 btrfs_item_key_to_cpu(leaf, &found_key,
1063 path->slots[0] - 1);
1064 if (found_key.objectid == inode->i_ino &&
1065 found_key.type == BTRFS_EXTENT_DATA_KEY)
1066 path->slots[0]--;
1067 }
1068 check_prev = 0;
1069next_slot:
1070 leaf = path->nodes[0];
1071 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1072 ret = btrfs_next_leaf(root, path);
1073 if (ret < 0)
1074 BUG_ON(1);
1075 if (ret > 0)
1076 break;
1077 leaf = path->nodes[0];
1078 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001079
Yan Zheng80ff3852008-10-30 14:20:02 -04001080 nocow = 0;
1081 disk_bytenr = 0;
Yan Zheng17d217f2008-12-12 10:03:38 -05001082 num_bytes = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001083 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05001084
Yan Zheng80ff3852008-10-30 14:20:02 -04001085 if (found_key.objectid > inode->i_ino ||
1086 found_key.type > BTRFS_EXTENT_DATA_KEY ||
1087 found_key.offset > end)
1088 break;
Chris Masonbe20aa92007-12-17 20:14:01 -05001089
Yan Zheng80ff3852008-10-30 14:20:02 -04001090 if (found_key.offset > cur_offset) {
1091 extent_end = found_key.offset;
Chris Masone9061e22009-10-09 09:57:45 -04001092 extent_type = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001093 goto out_check;
1094 }
Chris Masonc31f8832008-01-08 15:46:31 -05001095
Yan Zheng80ff3852008-10-30 14:20:02 -04001096 fi = btrfs_item_ptr(leaf, path->slots[0],
1097 struct btrfs_file_extent_item);
1098 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Masonbe20aa92007-12-17 20:14:01 -05001099
Yan Zhengd899e052008-10-30 14:25:28 -04001100 if (extent_type == BTRFS_FILE_EXTENT_REG ||
1101 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001102 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001103 extent_offset = btrfs_file_extent_offset(leaf, fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001104 extent_end = found_key.offset +
1105 btrfs_file_extent_num_bytes(leaf, fi);
1106 if (extent_end <= start) {
1107 path->slots[0]++;
1108 goto next_slot;
1109 }
Yan Zheng17d217f2008-12-12 10:03:38 -05001110 if (disk_bytenr == 0)
1111 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001112 if (btrfs_file_extent_compression(leaf, fi) ||
1113 btrfs_file_extent_encryption(leaf, fi) ||
1114 btrfs_file_extent_other_encoding(leaf, fi))
1115 goto out_check;
Yan Zhengd899e052008-10-30 14:25:28 -04001116 if (extent_type == BTRFS_FILE_EXTENT_REG && !force)
1117 goto out_check;
Yan Zhengd2fb3432008-12-11 16:30:39 -05001118 if (btrfs_extent_readonly(root, disk_bytenr))
Yan Zheng80ff3852008-10-30 14:20:02 -04001119 goto out_check;
Yan Zheng17d217f2008-12-12 10:03:38 -05001120 if (btrfs_cross_ref_exist(trans, root, inode->i_ino,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001121 found_key.offset -
1122 extent_offset, disk_bytenr))
Yan Zheng17d217f2008-12-12 10:03:38 -05001123 goto out_check;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001124 disk_bytenr += extent_offset;
Yan Zheng17d217f2008-12-12 10:03:38 -05001125 disk_bytenr += cur_offset - found_key.offset;
1126 num_bytes = min(end + 1, extent_end) - cur_offset;
1127 /*
1128 * force cow if csum exists in the range.
1129 * this ensure that csum for a given extent are
1130 * either valid or do not exist.
1131 */
1132 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
1133 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001134 nocow = 1;
1135 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1136 extent_end = found_key.offset +
1137 btrfs_file_extent_inline_len(leaf, fi);
1138 extent_end = ALIGN(extent_end, root->sectorsize);
1139 } else {
1140 BUG_ON(1);
1141 }
1142out_check:
1143 if (extent_end <= start) {
1144 path->slots[0]++;
1145 goto next_slot;
1146 }
1147 if (!nocow) {
1148 if (cow_start == (u64)-1)
1149 cow_start = cur_offset;
1150 cur_offset = extent_end;
1151 if (cur_offset > end)
1152 break;
1153 path->slots[0]++;
1154 goto next_slot;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001155 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001156
Yan Zheng7ea394f2008-08-05 13:05:02 -04001157 btrfs_release_path(root, path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001158 if (cow_start != (u64)-1) {
1159 ret = cow_file_range(inode, locked_page, cow_start,
Chris Mason771ed682008-11-06 22:02:51 -05001160 found_key.offset - 1, page_started,
1161 nr_written, 1);
Yan Zheng80ff3852008-10-30 14:20:02 -04001162 BUG_ON(ret);
1163 cow_start = (u64)-1;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001164 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001165
Yan Zhengd899e052008-10-30 14:25:28 -04001166 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
1167 struct extent_map *em;
1168 struct extent_map_tree *em_tree;
1169 em_tree = &BTRFS_I(inode)->extent_tree;
1170 em = alloc_extent_map(GFP_NOFS);
1171 em->start = cur_offset;
Chris Mason445a6942008-11-10 11:53:33 -05001172 em->orig_start = em->start;
Yan Zhengd899e052008-10-30 14:25:28 -04001173 em->len = num_bytes;
1174 em->block_len = num_bytes;
1175 em->block_start = disk_bytenr;
1176 em->bdev = root->fs_info->fs_devices->latest_bdev;
1177 set_bit(EXTENT_FLAG_PINNED, &em->flags);
1178 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04001179 write_lock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001180 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04001181 write_unlock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001182 if (ret != -EEXIST) {
1183 free_extent_map(em);
1184 break;
1185 }
1186 btrfs_drop_extent_cache(inode, em->start,
1187 em->start + em->len - 1, 0);
1188 }
1189 type = BTRFS_ORDERED_PREALLOC;
1190 } else {
1191 type = BTRFS_ORDERED_NOCOW;
1192 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001193
1194 ret = btrfs_add_ordered_extent(inode, cur_offset, disk_bytenr,
Yan Zhengd899e052008-10-30 14:25:28 -04001195 num_bytes, num_bytes, type);
1196 BUG_ON(ret);
Chris Mason771ed682008-11-06 22:02:51 -05001197
Yan, Zhengefa56462010-05-16 10:49:59 -04001198 if (root->root_key.objectid ==
1199 BTRFS_DATA_RELOC_TREE_OBJECTID) {
1200 ret = btrfs_reloc_clone_csums(inode, cur_offset,
1201 num_bytes);
1202 BUG_ON(ret);
1203 }
1204
Yan Zhengd899e052008-10-30 14:25:28 -04001205 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
Chris Masona791e352009-10-08 11:27:10 -04001206 cur_offset, cur_offset + num_bytes - 1,
1207 locked_page, EXTENT_CLEAR_UNLOCK_PAGE |
1208 EXTENT_CLEAR_UNLOCK | EXTENT_CLEAR_DELALLOC |
1209 EXTENT_SET_PRIVATE2);
Yan Zheng80ff3852008-10-30 14:20:02 -04001210 cur_offset = extent_end;
1211 if (cur_offset > end)
1212 break;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001213 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001214 btrfs_release_path(root, path);
1215
1216 if (cur_offset <= end && cow_start == (u64)-1)
1217 cow_start = cur_offset;
1218 if (cow_start != (u64)-1) {
1219 ret = cow_file_range(inode, locked_page, cow_start, end,
Chris Mason771ed682008-11-06 22:02:51 -05001220 page_started, nr_written, 1);
Yan Zheng80ff3852008-10-30 14:20:02 -04001221 BUG_ON(ret);
1222 }
1223
Josef Bacik0cb59c92010-07-02 12:14:14 -04001224 if (nolock) {
1225 ret = btrfs_end_transaction_nolock(trans, root);
1226 BUG_ON(ret);
1227 } else {
1228 ret = btrfs_end_transaction(trans, root);
1229 BUG_ON(ret);
1230 }
Yan Zheng7ea394f2008-08-05 13:05:02 -04001231 btrfs_free_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001232 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05001233}
1234
Chris Masond352ac62008-09-29 15:18:18 -04001235/*
1236 * extent_io.c call back to do delayed allocation processing
1237 */
Chris Masonc8b97812008-10-29 14:49:59 -04001238static int run_delalloc_range(struct inode *inode, struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001239 u64 start, u64 end, int *page_started,
1240 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001241{
Chris Masonbe20aa92007-12-17 20:14:01 -05001242 int ret;
Chris Mason7f366cf2009-03-12 20:12:45 -04001243 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masona2135012008-06-25 16:01:30 -04001244
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001245 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW)
Chris Masonc8b97812008-10-29 14:49:59 -04001246 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001247 page_started, 1, nr_written);
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001248 else if (BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC)
Yan Zhengd899e052008-10-30 14:25:28 -04001249 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001250 page_started, 0, nr_written);
Chris Mason1e701a32010-03-11 09:42:04 -05001251 else if (!btrfs_test_opt(root, COMPRESS) &&
1252 !(BTRFS_I(inode)->force_compress))
Chris Mason7f366cf2009-03-12 20:12:45 -04001253 ret = cow_file_range(inode, locked_page, start, end,
1254 page_started, nr_written, 1);
Chris Masonbe20aa92007-12-17 20:14:01 -05001255 else
Chris Mason771ed682008-11-06 22:02:51 -05001256 ret = cow_file_range_async(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001257 page_started, nr_written);
Chris Masonb888db22007-08-27 16:49:44 -04001258 return ret;
1259}
1260
Josef Bacik9ed74f22009-09-11 16:12:44 -04001261static int btrfs_split_extent_hook(struct inode *inode,
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001262 struct extent_state *orig, u64 split)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001263{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001264 /* not delalloc, ignore it */
Josef Bacik9ed74f22009-09-11 16:12:44 -04001265 if (!(orig->state & EXTENT_DELALLOC))
1266 return 0;
1267
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001268 atomic_inc(&BTRFS_I(inode)->outstanding_extents);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001269 return 0;
1270}
1271
1272/*
1273 * extent_io.c merge_extent_hook, used to track merged delayed allocation
1274 * extents so we can keep track of new extents that are just merged onto old
1275 * extents, such as when we are doing sequential writes, so we can properly
1276 * account for the metadata space we'll need.
1277 */
1278static int btrfs_merge_extent_hook(struct inode *inode,
1279 struct extent_state *new,
1280 struct extent_state *other)
1281{
Josef Bacik9ed74f22009-09-11 16:12:44 -04001282 /* not delalloc, ignore it */
1283 if (!(other->state & EXTENT_DELALLOC))
1284 return 0;
1285
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001286 atomic_dec(&BTRFS_I(inode)->outstanding_extents);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001287 return 0;
1288}
1289
Chris Masond352ac62008-09-29 15:18:18 -04001290/*
1291 * extent_io.c set_bit_hook, used to track delayed allocation
1292 * bytes in this file, and to maintain the list of inodes that
1293 * have pending delalloc work to be done.
1294 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001295static int btrfs_set_bit_hook(struct inode *inode,
1296 struct extent_state *state, int *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001297{
Josef Bacik9ed74f22009-09-11 16:12:44 -04001298
Chris Mason75eff682008-12-15 15:54:40 -05001299 /*
1300 * set_bit and clear bit hooks normally require _irqsave/restore
1301 * but in this case, we are only testeing for the DELALLOC
1302 * bit, which is only set or cleared with irqs on
1303 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001304 if (!(state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001305 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001306 u64 len = state->end + 1 - state->start;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001307 int do_list = (root->root_key.objectid !=
1308 BTRFS_ROOT_TREE_OBJECTID);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001309
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001310 if (*bits & EXTENT_FIRST_DELALLOC)
1311 *bits &= ~EXTENT_FIRST_DELALLOC;
1312 else
1313 atomic_inc(&BTRFS_I(inode)->outstanding_extents);
Josef Bacik287a0ab2010-03-19 18:07:23 +00001314
Chris Mason75eff682008-12-15 15:54:40 -05001315 spin_lock(&root->fs_info->delalloc_lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001316 BTRFS_I(inode)->delalloc_bytes += len;
1317 root->fs_info->delalloc_bytes += len;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001318 if (do_list && list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
Chris Masonea8c2812008-08-04 23:17:27 -04001319 list_add_tail(&BTRFS_I(inode)->delalloc_inodes,
1320 &root->fs_info->delalloc_inodes);
1321 }
Chris Mason75eff682008-12-15 15:54:40 -05001322 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason291d6732008-01-29 15:55:23 -05001323 }
1324 return 0;
1325}
1326
Chris Masond352ac62008-09-29 15:18:18 -04001327/*
1328 * extent_io.c clear_bit_hook, see set_bit_hook for why
1329 */
Josef Bacik9ed74f22009-09-11 16:12:44 -04001330static int btrfs_clear_bit_hook(struct inode *inode,
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001331 struct extent_state *state, int *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001332{
Chris Mason75eff682008-12-15 15:54:40 -05001333 /*
1334 * set_bit and clear bit hooks normally require _irqsave/restore
1335 * but in this case, we are only testeing for the DELALLOC
1336 * bit, which is only set or cleared with irqs on
1337 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001338 if ((state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001339 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001340 u64 len = state->end + 1 - state->start;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001341 int do_list = (root->root_key.objectid !=
1342 BTRFS_ROOT_TREE_OBJECTID);
Chris Masonbcbfce82008-04-22 13:26:47 -04001343
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001344 if (*bits & EXTENT_FIRST_DELALLOC)
1345 *bits &= ~EXTENT_FIRST_DELALLOC;
1346 else if (!(*bits & EXTENT_DO_ACCOUNTING))
1347 atomic_dec(&BTRFS_I(inode)->outstanding_extents);
1348
1349 if (*bits & EXTENT_DO_ACCOUNTING)
1350 btrfs_delalloc_release_metadata(inode, len);
1351
Josef Bacik0cb59c92010-07-02 12:14:14 -04001352 if (root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID
1353 && do_list)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001354 btrfs_free_reserved_data_space(inode, len);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001355
Chris Mason75eff682008-12-15 15:54:40 -05001356 spin_lock(&root->fs_info->delalloc_lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001357 root->fs_info->delalloc_bytes -= len;
1358 BTRFS_I(inode)->delalloc_bytes -= len;
1359
Josef Bacik0cb59c92010-07-02 12:14:14 -04001360 if (do_list && BTRFS_I(inode)->delalloc_bytes == 0 &&
Chris Masonea8c2812008-08-04 23:17:27 -04001361 !list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1362 list_del_init(&BTRFS_I(inode)->delalloc_inodes);
1363 }
Chris Mason75eff682008-12-15 15:54:40 -05001364 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason291d6732008-01-29 15:55:23 -05001365 }
1366 return 0;
1367}
1368
Chris Masond352ac62008-09-29 15:18:18 -04001369/*
1370 * extent_io.c merge_bio_hook, this must check the chunk tree to make sure
1371 * we don't create bios that span stripes or chunks
1372 */
Chris Mason239b14b2008-03-24 15:02:07 -04001373int btrfs_merge_bio_hook(struct page *page, unsigned long offset,
Chris Masonc8b97812008-10-29 14:49:59 -04001374 size_t size, struct bio *bio,
1375 unsigned long bio_flags)
Chris Mason239b14b2008-03-24 15:02:07 -04001376{
1377 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
1378 struct btrfs_mapping_tree *map_tree;
Chris Masona62b9402008-10-03 16:31:08 -04001379 u64 logical = (u64)bio->bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -04001380 u64 length = 0;
1381 u64 map_length;
Chris Mason239b14b2008-03-24 15:02:07 -04001382 int ret;
1383
Chris Mason771ed682008-11-06 22:02:51 -05001384 if (bio_flags & EXTENT_BIO_COMPRESSED)
1385 return 0;
1386
Chris Masonf2d8d742008-04-21 10:03:05 -04001387 length = bio->bi_size;
Chris Mason239b14b2008-03-24 15:02:07 -04001388 map_tree = &root->fs_info->mapping_tree;
1389 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04001390 ret = btrfs_map_block(map_tree, READ, logical,
Chris Masonf1885912008-04-09 16:28:12 -04001391 &map_length, NULL, 0);
Chris Masoncea9e442008-04-09 16:28:12 -04001392
Chris Masond3977122009-01-05 21:25:51 -05001393 if (map_length < length + size)
Chris Mason239b14b2008-03-24 15:02:07 -04001394 return 1;
Andi Kleen411fc6b2010-10-29 15:14:31 -04001395 return ret;
Chris Mason239b14b2008-03-24 15:02:07 -04001396}
1397
Chris Masond352ac62008-09-29 15:18:18 -04001398/*
1399 * in order to insert checksums into the metadata in large chunks,
1400 * we wait until bio submission time. All the pages in the bio are
1401 * checksummed and sums are attached onto the ordered extent record.
1402 *
1403 * At IO completion time the cums attached on the ordered extent record
1404 * are inserted into the btree
1405 */
Chris Masond3977122009-01-05 21:25:51 -05001406static int __btrfs_submit_bio_start(struct inode *inode, int rw,
1407 struct bio *bio, int mirror_num,
Chris Masoneaf25d92010-05-25 09:48:28 -04001408 unsigned long bio_flags,
1409 u64 bio_offset)
Chris Mason065631f2008-02-20 12:07:25 -05001410{
Chris Mason065631f2008-02-20 12:07:25 -05001411 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason065631f2008-02-20 12:07:25 -05001412 int ret = 0;
Chris Masone0156402008-04-16 11:15:20 -04001413
Chris Masond20f7042008-12-08 16:58:54 -05001414 ret = btrfs_csum_one_bio(root, inode, bio, 0, 0);
Chris Mason44b8bd72008-04-16 11:14:51 -04001415 BUG_ON(ret);
Chris Mason4a69a412008-11-06 22:03:00 -05001416 return 0;
1417}
Chris Masone0156402008-04-16 11:15:20 -04001418
Chris Mason4a69a412008-11-06 22:03:00 -05001419/*
1420 * in order to insert checksums into the metadata in large chunks,
1421 * we wait until bio submission time. All the pages in the bio are
1422 * checksummed and sums are attached onto the ordered extent record.
1423 *
1424 * At IO completion time the cums attached on the ordered extent record
1425 * are inserted into the btree
1426 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001427static int __btrfs_submit_bio_done(struct inode *inode, int rw, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001428 int mirror_num, unsigned long bio_flags,
1429 u64 bio_offset)
Chris Mason4a69a412008-11-06 22:03:00 -05001430{
1431 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason8b712842008-06-11 16:50:36 -04001432 return btrfs_map_bio(root, rw, bio, mirror_num, 1);
Chris Mason44b8bd72008-04-16 11:14:51 -04001433}
1434
Chris Masond352ac62008-09-29 15:18:18 -04001435/*
Chris Masoncad321a2008-12-17 14:51:42 -05001436 * extent_io.c submission hook. This does the right thing for csum calculation
1437 * on write, or reading the csums from the tree before a read
Chris Masond352ac62008-09-29 15:18:18 -04001438 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001439static int btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001440 int mirror_num, unsigned long bio_flags,
1441 u64 bio_offset)
Chris Mason44b8bd72008-04-16 11:14:51 -04001442{
1443 struct btrfs_root *root = BTRFS_I(inode)->root;
1444 int ret = 0;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001445 int skip_sum;
Chris Mason44b8bd72008-04-16 11:14:51 -04001446
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001447 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
Chris Masoncad321a2008-12-17 14:51:42 -05001448
Josef Bacik0cb59c92010-07-02 12:14:14 -04001449 if (root == root->fs_info->tree_root)
1450 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 2);
1451 else
1452 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001453 BUG_ON(ret);
Chris Mason065631f2008-02-20 12:07:25 -05001454
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001455 if (!(rw & REQ_WRITE)) {
Chris Masond20f7042008-12-08 16:58:54 -05001456 if (bio_flags & EXTENT_BIO_COMPRESSED) {
Chris Masonc8b97812008-10-29 14:49:59 -04001457 return btrfs_submit_compressed_read(inode, bio,
1458 mirror_num, bio_flags);
Chris Masond20f7042008-12-08 16:58:54 -05001459 } else if (!skip_sum)
1460 btrfs_lookup_bio_sums(root, inode, bio, NULL);
Chris Mason4d1b5fb2008-08-20 09:44:52 -04001461 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001462 } else if (!skip_sum) {
Yan Zheng17d217f2008-12-12 10:03:38 -05001463 /* csum items have already been cloned */
1464 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
1465 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001466 /* we're doing a write, do the async checksumming */
1467 return btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
Chris Mason44b8bd72008-04-16 11:14:51 -04001468 inode, rw, bio, mirror_num,
Chris Masoneaf25d92010-05-25 09:48:28 -04001469 bio_flags, bio_offset,
1470 __btrfs_submit_bio_start,
Chris Mason4a69a412008-11-06 22:03:00 -05001471 __btrfs_submit_bio_done);
Chris Mason19b9bdb2008-10-30 14:23:13 -04001472 }
1473
Chris Mason0b86a832008-03-24 15:01:56 -04001474mapit:
Chris Mason8b712842008-06-11 16:50:36 -04001475 return btrfs_map_bio(root, rw, bio, mirror_num, 0);
Chris Mason065631f2008-02-20 12:07:25 -05001476}
Chris Mason6885f302008-02-20 16:11:05 -05001477
Chris Masond352ac62008-09-29 15:18:18 -04001478/*
1479 * given a list of ordered sums record them in the inode. This happens
1480 * at IO completion time based on sums calculated at bio submission time.
1481 */
Chris Masonba1da2f2008-07-17 12:54:15 -04001482static noinline int add_pending_csums(struct btrfs_trans_handle *trans,
Chris Masone6dcd2d2008-07-17 12:53:50 -04001483 struct inode *inode, u64 file_offset,
1484 struct list_head *list)
1485{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001486 struct btrfs_ordered_sum *sum;
1487
1488 btrfs_set_trans_block_group(trans, inode);
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001489
1490 list_for_each_entry(sum, list, list) {
Chris Masond20f7042008-12-08 16:58:54 -05001491 btrfs_csum_file_blocks(trans,
1492 BTRFS_I(inode)->root->fs_info->csum_root, sum);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001493 }
1494 return 0;
1495}
1496
Josef Bacik2ac55d42010-02-03 19:33:23 +00001497int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end,
1498 struct extent_state **cached_state)
Chris Masonea8c2812008-08-04 23:17:27 -04001499{
Chris Masond3977122009-01-05 21:25:51 -05001500 if ((end & (PAGE_CACHE_SIZE - 1)) == 0)
Chris Mason771ed682008-11-06 22:02:51 -05001501 WARN_ON(1);
Chris Masonea8c2812008-08-04 23:17:27 -04001502 return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001503 cached_state, GFP_NOFS);
Chris Masonea8c2812008-08-04 23:17:27 -04001504}
1505
Chris Masond352ac62008-09-29 15:18:18 -04001506/* see btrfs_writepage_start_hook for details on why this is required */
Chris Mason247e7432008-07-17 12:53:51 -04001507struct btrfs_writepage_fixup {
1508 struct page *page;
1509 struct btrfs_work work;
1510};
1511
Christoph Hellwigb2950862008-12-02 09:54:17 -05001512static void btrfs_writepage_fixup_worker(struct btrfs_work *work)
Chris Mason247e7432008-07-17 12:53:51 -04001513{
1514 struct btrfs_writepage_fixup *fixup;
1515 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00001516 struct extent_state *cached_state = NULL;
Chris Mason247e7432008-07-17 12:53:51 -04001517 struct page *page;
1518 struct inode *inode;
1519 u64 page_start;
1520 u64 page_end;
1521
1522 fixup = container_of(work, struct btrfs_writepage_fixup, work);
1523 page = fixup->page;
Chris Mason4a096752008-07-21 10:29:44 -04001524again:
Chris Mason247e7432008-07-17 12:53:51 -04001525 lock_page(page);
1526 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
1527 ClearPageChecked(page);
1528 goto out_page;
1529 }
1530
1531 inode = page->mapping->host;
1532 page_start = page_offset(page);
1533 page_end = page_offset(page) + PAGE_CACHE_SIZE - 1;
1534
Josef Bacik2ac55d42010-02-03 19:33:23 +00001535 lock_extent_bits(&BTRFS_I(inode)->io_tree, page_start, page_end, 0,
1536 &cached_state, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -04001537
1538 /* already ordered? We're done */
Chris Mason8b62b722009-09-02 16:53:46 -04001539 if (PagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001540 goto out;
Chris Mason4a096752008-07-21 10:29:44 -04001541
1542 ordered = btrfs_lookup_ordered_extent(inode, page_start);
1543 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00001544 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start,
1545 page_end, &cached_state, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -04001546 unlock_page(page);
1547 btrfs_start_ordered_extent(inode, ordered, 1);
1548 goto again;
1549 }
Chris Mason247e7432008-07-17 12:53:51 -04001550
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001551 BUG();
Josef Bacik2ac55d42010-02-03 19:33:23 +00001552 btrfs_set_extent_delalloc(inode, page_start, page_end, &cached_state);
Chris Mason247e7432008-07-17 12:53:51 -04001553 ClearPageChecked(page);
1554out:
Josef Bacik2ac55d42010-02-03 19:33:23 +00001555 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start, page_end,
1556 &cached_state, GFP_NOFS);
Chris Mason247e7432008-07-17 12:53:51 -04001557out_page:
1558 unlock_page(page);
1559 page_cache_release(page);
1560}
1561
1562/*
1563 * There are a few paths in the higher layers of the kernel that directly
1564 * set the page dirty bit without asking the filesystem if it is a
1565 * good idea. This causes problems because we want to make sure COW
1566 * properly happens and the data=ordered rules are followed.
1567 *
Chris Masonc8b97812008-10-29 14:49:59 -04001568 * In our case any range that doesn't have the ORDERED bit set
Chris Mason247e7432008-07-17 12:53:51 -04001569 * hasn't been properly setup for IO. We kick off an async process
1570 * to fix it up. The async helper will wait for ordered extents, set
1571 * the delalloc bit and make it safe to write the page.
1572 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001573static int btrfs_writepage_start_hook(struct page *page, u64 start, u64 end)
Chris Mason247e7432008-07-17 12:53:51 -04001574{
1575 struct inode *inode = page->mapping->host;
1576 struct btrfs_writepage_fixup *fixup;
1577 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason247e7432008-07-17 12:53:51 -04001578
Chris Mason8b62b722009-09-02 16:53:46 -04001579 /* this page is properly in the ordered list */
1580 if (TestClearPagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001581 return 0;
1582
1583 if (PageChecked(page))
1584 return -EAGAIN;
1585
1586 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
1587 if (!fixup)
1588 return -EAGAIN;
Chris Masonf4219502008-07-22 11:18:09 -04001589
Chris Mason247e7432008-07-17 12:53:51 -04001590 SetPageChecked(page);
1591 page_cache_get(page);
1592 fixup->work.func = btrfs_writepage_fixup_worker;
1593 fixup->page = page;
1594 btrfs_queue_worker(&root->fs_info->fixup_workers, &fixup->work);
1595 return -EAGAIN;
1596}
1597
Yan Zhengd899e052008-10-30 14:25:28 -04001598static int insert_reserved_file_extent(struct btrfs_trans_handle *trans,
1599 struct inode *inode, u64 file_pos,
1600 u64 disk_bytenr, u64 disk_num_bytes,
1601 u64 num_bytes, u64 ram_bytes,
1602 u8 compression, u8 encryption,
1603 u16 other_encoding, int extent_type)
1604{
1605 struct btrfs_root *root = BTRFS_I(inode)->root;
1606 struct btrfs_file_extent_item *fi;
1607 struct btrfs_path *path;
1608 struct extent_buffer *leaf;
1609 struct btrfs_key ins;
1610 u64 hint;
1611 int ret;
1612
1613 path = btrfs_alloc_path();
1614 BUG_ON(!path);
1615
Chris Masonb9473432009-03-13 11:00:37 -04001616 path->leave_spinning = 1;
Chris Masona1ed8352009-09-11 12:27:37 -04001617
1618 /*
1619 * we may be replacing one extent in the tree with another.
1620 * The new extent is pinned in the extent map, and we don't want
1621 * to drop it from the cache until it is completely in the btree.
1622 *
1623 * So, tell btrfs_drop_extents to leave this extent in the cache.
1624 * the caller is expected to unpin it and allow it to be merged
1625 * with the others.
1626 */
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001627 ret = btrfs_drop_extents(trans, inode, file_pos, file_pos + num_bytes,
1628 &hint, 0);
Yan Zhengd899e052008-10-30 14:25:28 -04001629 BUG_ON(ret);
1630
1631 ins.objectid = inode->i_ino;
1632 ins.offset = file_pos;
1633 ins.type = BTRFS_EXTENT_DATA_KEY;
1634 ret = btrfs_insert_empty_item(trans, root, path, &ins, sizeof(*fi));
1635 BUG_ON(ret);
1636 leaf = path->nodes[0];
1637 fi = btrfs_item_ptr(leaf, path->slots[0],
1638 struct btrfs_file_extent_item);
1639 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
1640 btrfs_set_file_extent_type(leaf, fi, extent_type);
1641 btrfs_set_file_extent_disk_bytenr(leaf, fi, disk_bytenr);
1642 btrfs_set_file_extent_disk_num_bytes(leaf, fi, disk_num_bytes);
1643 btrfs_set_file_extent_offset(leaf, fi, 0);
1644 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
1645 btrfs_set_file_extent_ram_bytes(leaf, fi, ram_bytes);
1646 btrfs_set_file_extent_compression(leaf, fi, compression);
1647 btrfs_set_file_extent_encryption(leaf, fi, encryption);
1648 btrfs_set_file_extent_other_encoding(leaf, fi, other_encoding);
Chris Masonb9473432009-03-13 11:00:37 -04001649
1650 btrfs_unlock_up_safe(path, 1);
1651 btrfs_set_lock_blocking(leaf);
1652
Yan Zhengd899e052008-10-30 14:25:28 -04001653 btrfs_mark_buffer_dirty(leaf);
1654
1655 inode_add_bytes(inode, num_bytes);
Yan Zhengd899e052008-10-30 14:25:28 -04001656
1657 ins.objectid = disk_bytenr;
1658 ins.offset = disk_num_bytes;
1659 ins.type = BTRFS_EXTENT_ITEM_KEY;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001660 ret = btrfs_alloc_reserved_file_extent(trans, root,
1661 root->root_key.objectid,
1662 inode->i_ino, file_pos, &ins);
Yan Zhengd899e052008-10-30 14:25:28 -04001663 BUG_ON(ret);
Yan Zhengd899e052008-10-30 14:25:28 -04001664 btrfs_free_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04001665
Yan Zhengd899e052008-10-30 14:25:28 -04001666 return 0;
1667}
1668
Chris Mason5d13a982009-03-13 11:41:46 -04001669/*
1670 * helper function for btrfs_finish_ordered_io, this
1671 * just reads in some of the csum leaves to prime them into ram
1672 * before we start the transaction. It limits the amount of btree
1673 * reads required while inside the transaction.
1674 */
Chris Masond352ac62008-09-29 15:18:18 -04001675/* as ordered data IO finishes, this gets called so we can finish
1676 * an ordered extent if the range of bytes in the file it covers are
1677 * fully written.
1678 */
Chris Mason211f90e2008-07-18 11:56:15 -04001679static int btrfs_finish_ordered_io(struct inode *inode, u64 start, u64 end)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001680{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001681 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001682 struct btrfs_trans_handle *trans = NULL;
Chris Mason5d13a982009-03-13 11:41:46 -04001683 struct btrfs_ordered_extent *ordered_extent = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001684 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Josef Bacik2ac55d42010-02-03 19:33:23 +00001685 struct extent_state *cached_state = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08001686 int compress_type = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001687 int ret;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001688 bool nolock = false;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001689
Josef Bacik5a1a3df2010-02-02 20:51:14 +00001690 ret = btrfs_dec_test_ordered_pending(inode, &ordered_extent, start,
1691 end - start + 1);
Chris Masonba1da2f2008-07-17 12:54:15 -04001692 if (!ret)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001693 return 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001694 BUG_ON(!ordered_extent);
Josef Bacikefd049f2010-02-02 20:50:10 +00001695
Josef Bacik0cb59c92010-07-02 12:14:14 -04001696 nolock = (root == root->fs_info->tree_root);
1697
Yan, Zhengc21677542009-11-12 09:34:21 +00001698 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags)) {
1699 BUG_ON(!list_empty(&ordered_extent->list));
1700 ret = btrfs_ordered_update_i_size(inode, 0, ordered_extent);
1701 if (!ret) {
Josef Bacik0cb59c92010-07-02 12:14:14 -04001702 if (nolock)
1703 trans = btrfs_join_transaction_nolock(root, 1);
1704 else
1705 trans = btrfs_join_transaction(root, 1);
1706 BUG_ON(!trans);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001707 btrfs_set_trans_block_group(trans, inode);
1708 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Yan, Zhengc21677542009-11-12 09:34:21 +00001709 ret = btrfs_update_inode(trans, root, inode);
1710 BUG_ON(ret);
Yan, Zhengc21677542009-11-12 09:34:21 +00001711 }
1712 goto out;
1713 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04001714
Josef Bacik2ac55d42010-02-03 19:33:23 +00001715 lock_extent_bits(io_tree, ordered_extent->file_offset,
1716 ordered_extent->file_offset + ordered_extent->len - 1,
1717 0, &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001718
Josef Bacik0cb59c92010-07-02 12:14:14 -04001719 if (nolock)
1720 trans = btrfs_join_transaction_nolock(root, 1);
1721 else
1722 trans = btrfs_join_transaction(root, 1);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001723 btrfs_set_trans_block_group(trans, inode);
1724 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Yan, Zhengc21677542009-11-12 09:34:21 +00001725
Chris Masonc8b97812008-10-29 14:49:59 -04001726 if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags))
Li Zefan261507a02010-12-17 14:21:50 +08001727 compress_type = ordered_extent->compress_type;
Yan Zhengd899e052008-10-30 14:25:28 -04001728 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
Li Zefan261507a02010-12-17 14:21:50 +08001729 BUG_ON(compress_type);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001730 ret = btrfs_mark_extent_written(trans, inode,
Yan Zhengd899e052008-10-30 14:25:28 -04001731 ordered_extent->file_offset,
1732 ordered_extent->file_offset +
1733 ordered_extent->len);
1734 BUG_ON(ret);
1735 } else {
Josef Bacik0af3d002010-06-21 14:48:16 -04001736 BUG_ON(root == root->fs_info->tree_root);
Yan Zhengd899e052008-10-30 14:25:28 -04001737 ret = insert_reserved_file_extent(trans, inode,
1738 ordered_extent->file_offset,
1739 ordered_extent->start,
1740 ordered_extent->disk_len,
1741 ordered_extent->len,
1742 ordered_extent->len,
Li Zefan261507a02010-12-17 14:21:50 +08001743 compress_type, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04001744 BTRFS_FILE_EXTENT_REG);
Chris Masona1ed8352009-09-11 12:27:37 -04001745 unpin_extent_cache(&BTRFS_I(inode)->extent_tree,
1746 ordered_extent->file_offset,
1747 ordered_extent->len);
Yan Zhengd899e052008-10-30 14:25:28 -04001748 BUG_ON(ret);
1749 }
Josef Bacik2ac55d42010-02-03 19:33:23 +00001750 unlock_extent_cached(io_tree, ordered_extent->file_offset,
1751 ordered_extent->file_offset +
1752 ordered_extent->len - 1, &cached_state, GFP_NOFS);
1753
Chris Masone6dcd2d2008-07-17 12:53:50 -04001754 add_pending_csums(trans, inode, ordered_extent->file_offset,
1755 &ordered_extent->list);
1756
Yan, Zhengc21677542009-11-12 09:34:21 +00001757 btrfs_ordered_update_i_size(inode, 0, ordered_extent);
1758 ret = btrfs_update_inode(trans, root, inode);
1759 BUG_ON(ret);
Yan, Zhengc21677542009-11-12 09:34:21 +00001760out:
Josef Bacik0cb59c92010-07-02 12:14:14 -04001761 if (nolock) {
1762 if (trans)
1763 btrfs_end_transaction_nolock(trans, root);
1764 } else {
1765 btrfs_delalloc_release_metadata(inode, ordered_extent->len);
1766 if (trans)
1767 btrfs_end_transaction(trans, root);
1768 }
1769
Chris Masone6dcd2d2008-07-17 12:53:50 -04001770 /* once for us */
1771 btrfs_put_ordered_extent(ordered_extent);
1772 /* once for the tree */
1773 btrfs_put_ordered_extent(ordered_extent);
1774
Chris Masone6dcd2d2008-07-17 12:53:50 -04001775 return 0;
1776}
1777
Christoph Hellwigb2950862008-12-02 09:54:17 -05001778static int btrfs_writepage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason211f90e2008-07-18 11:56:15 -04001779 struct extent_state *state, int uptodate)
1780{
Chris Mason8b62b722009-09-02 16:53:46 -04001781 ClearPagePrivate2(page);
Chris Mason211f90e2008-07-18 11:56:15 -04001782 return btrfs_finish_ordered_io(page->mapping->host, start, end);
1783}
1784
Chris Masond352ac62008-09-29 15:18:18 -04001785/*
1786 * When IO fails, either with EIO or csum verification fails, we
1787 * try other mirrors that might have a good copy of the data. This
1788 * io_failure_record is used to record state as we go through all the
1789 * mirrors. If another mirror has good data, the page is set up to date
1790 * and things continue. If a good mirror can't be found, the original
1791 * bio end_io callback is called to indicate things have failed.
1792 */
Chris Mason7e383262008-04-09 16:28:12 -04001793struct io_failure_record {
1794 struct page *page;
1795 u64 start;
1796 u64 len;
1797 u64 logical;
Chris Masond20f7042008-12-08 16:58:54 -05001798 unsigned long bio_flags;
Chris Mason7e383262008-04-09 16:28:12 -04001799 int last_mirror;
1800};
1801
Christoph Hellwigb2950862008-12-02 09:54:17 -05001802static int btrfs_io_failed_hook(struct bio *failed_bio,
Chris Mason1259ab72008-05-12 13:39:03 -04001803 struct page *page, u64 start, u64 end,
1804 struct extent_state *state)
Chris Mason7e383262008-04-09 16:28:12 -04001805{
1806 struct io_failure_record *failrec = NULL;
1807 u64 private;
1808 struct extent_map *em;
1809 struct inode *inode = page->mapping->host;
1810 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
Chris Mason3b951512008-04-17 11:29:12 -04001811 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason7e383262008-04-09 16:28:12 -04001812 struct bio *bio;
1813 int num_copies;
1814 int ret;
Chris Mason1259ab72008-05-12 13:39:03 -04001815 int rw;
Chris Mason7e383262008-04-09 16:28:12 -04001816 u64 logical;
1817
1818 ret = get_state_private(failure_tree, start, &private);
1819 if (ret) {
Chris Mason7e383262008-04-09 16:28:12 -04001820 failrec = kmalloc(sizeof(*failrec), GFP_NOFS);
1821 if (!failrec)
1822 return -ENOMEM;
1823 failrec->start = start;
1824 failrec->len = end - start + 1;
1825 failrec->last_mirror = 0;
Chris Masond20f7042008-12-08 16:58:54 -05001826 failrec->bio_flags = 0;
Chris Mason7e383262008-04-09 16:28:12 -04001827
Chris Mason890871b2009-09-02 16:24:52 -04001828 read_lock(&em_tree->lock);
Chris Mason3b951512008-04-17 11:29:12 -04001829 em = lookup_extent_mapping(em_tree, start, failrec->len);
1830 if (em->start > start || em->start + em->len < start) {
1831 free_extent_map(em);
1832 em = NULL;
1833 }
Chris Mason890871b2009-09-02 16:24:52 -04001834 read_unlock(&em_tree->lock);
Chris Mason7e383262008-04-09 16:28:12 -04001835
1836 if (!em || IS_ERR(em)) {
1837 kfree(failrec);
1838 return -EIO;
1839 }
1840 logical = start - em->start;
1841 logical = em->block_start + logical;
Chris Masond20f7042008-12-08 16:58:54 -05001842 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
1843 logical = em->block_start;
1844 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
Li Zefan261507a02010-12-17 14:21:50 +08001845 extent_set_compress_type(&failrec->bio_flags,
1846 em->compress_type);
Chris Masond20f7042008-12-08 16:58:54 -05001847 }
Chris Mason7e383262008-04-09 16:28:12 -04001848 failrec->logical = logical;
1849 free_extent_map(em);
1850 set_extent_bits(failure_tree, start, end, EXTENT_LOCKED |
1851 EXTENT_DIRTY, GFP_NOFS);
Chris Mason587f7702008-04-11 12:16:46 -04001852 set_state_private(failure_tree, start,
1853 (u64)(unsigned long)failrec);
Chris Mason7e383262008-04-09 16:28:12 -04001854 } else {
Chris Mason587f7702008-04-11 12:16:46 -04001855 failrec = (struct io_failure_record *)(unsigned long)private;
Chris Mason7e383262008-04-09 16:28:12 -04001856 }
1857 num_copies = btrfs_num_copies(
1858 &BTRFS_I(inode)->root->fs_info->mapping_tree,
1859 failrec->logical, failrec->len);
1860 failrec->last_mirror++;
1861 if (!state) {
Chris Masoncad321a2008-12-17 14:51:42 -05001862 spin_lock(&BTRFS_I(inode)->io_tree.lock);
Chris Mason7e383262008-04-09 16:28:12 -04001863 state = find_first_extent_bit_state(&BTRFS_I(inode)->io_tree,
1864 failrec->start,
1865 EXTENT_LOCKED);
1866 if (state && state->start != failrec->start)
1867 state = NULL;
Chris Masoncad321a2008-12-17 14:51:42 -05001868 spin_unlock(&BTRFS_I(inode)->io_tree.lock);
Chris Mason7e383262008-04-09 16:28:12 -04001869 }
1870 if (!state || failrec->last_mirror > num_copies) {
1871 set_state_private(failure_tree, failrec->start, 0);
1872 clear_extent_bits(failure_tree, failrec->start,
1873 failrec->start + failrec->len - 1,
1874 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
1875 kfree(failrec);
1876 return -EIO;
1877 }
1878 bio = bio_alloc(GFP_NOFS, 1);
1879 bio->bi_private = state;
1880 bio->bi_end_io = failed_bio->bi_end_io;
1881 bio->bi_sector = failrec->logical >> 9;
1882 bio->bi_bdev = failed_bio->bi_bdev;
Chris Masone1c4b742008-04-22 13:26:46 -04001883 bio->bi_size = 0;
Chris Masond20f7042008-12-08 16:58:54 -05001884
Chris Mason7e383262008-04-09 16:28:12 -04001885 bio_add_page(bio, page, failrec->len, start - page_offset(page));
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001886 if (failed_bio->bi_rw & REQ_WRITE)
Chris Mason1259ab72008-05-12 13:39:03 -04001887 rw = WRITE;
1888 else
1889 rw = READ;
1890
1891 BTRFS_I(inode)->io_tree.ops->submit_bio_hook(inode, rw, bio,
Chris Masonc8b97812008-10-29 14:49:59 -04001892 failrec->last_mirror,
Chris Masoneaf25d92010-05-25 09:48:28 -04001893 failrec->bio_flags, 0);
Chris Mason1259ab72008-05-12 13:39:03 -04001894 return 0;
1895}
1896
Chris Masond352ac62008-09-29 15:18:18 -04001897/*
1898 * each time an IO finishes, we do a fast check in the IO failure tree
1899 * to see if we need to process or clean up an io_failure_record
1900 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001901static int btrfs_clean_io_failures(struct inode *inode, u64 start)
Chris Mason1259ab72008-05-12 13:39:03 -04001902{
1903 u64 private;
1904 u64 private_failure;
1905 struct io_failure_record *failure;
1906 int ret;
1907
1908 private = 0;
1909 if (count_range_bits(&BTRFS_I(inode)->io_failure_tree, &private,
1910 (u64)-1, 1, EXTENT_DIRTY)) {
1911 ret = get_state_private(&BTRFS_I(inode)->io_failure_tree,
1912 start, &private_failure);
1913 if (ret == 0) {
1914 failure = (struct io_failure_record *)(unsigned long)
1915 private_failure;
1916 set_state_private(&BTRFS_I(inode)->io_failure_tree,
1917 failure->start, 0);
1918 clear_extent_bits(&BTRFS_I(inode)->io_failure_tree,
1919 failure->start,
1920 failure->start + failure->len - 1,
1921 EXTENT_DIRTY | EXTENT_LOCKED,
1922 GFP_NOFS);
1923 kfree(failure);
1924 }
1925 }
Chris Mason7e383262008-04-09 16:28:12 -04001926 return 0;
1927}
1928
Chris Masond352ac62008-09-29 15:18:18 -04001929/*
1930 * when reads are done, we need to check csums to verify the data is correct
1931 * if there's a match, we allow the bio to finish. If not, we go through
1932 * the io_failure_record routines to find good copies
1933 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001934static int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason70dec802008-01-29 09:59:12 -05001935 struct extent_state *state)
Chris Mason07157aa2007-08-30 08:50:51 -04001936{
Chris Mason35ebb932007-10-30 16:56:53 -04001937 size_t offset = start - ((u64)page->index << PAGE_CACHE_SHIFT);
Chris Mason07157aa2007-08-30 08:50:51 -04001938 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05001939 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -04001940 char *kaddr;
Chris Masonaadfeb62008-01-29 09:10:27 -05001941 u64 private = ~(u32)0;
Chris Mason07157aa2007-08-30 08:50:51 -04001942 int ret;
Chris Masonff79f812007-10-15 16:22:25 -04001943 struct btrfs_root *root = BTRFS_I(inode)->root;
1944 u32 csum = ~(u32)0;
Chris Masond1310b22008-01-24 16:13:08 -05001945
Chris Masond20f7042008-12-08 16:58:54 -05001946 if (PageChecked(page)) {
1947 ClearPageChecked(page);
1948 goto good;
1949 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001950
1951 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)
Chris Masonb6cda9b2007-12-14 15:30:32 -05001952 return 0;
Chris Masond20f7042008-12-08 16:58:54 -05001953
Yan Zheng17d217f2008-12-12 10:03:38 -05001954 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID &&
Chris Mason9655d292009-09-02 15:22:30 -04001955 test_range_bit(io_tree, start, end, EXTENT_NODATASUM, 1, NULL)) {
Yan Zheng17d217f2008-12-12 10:03:38 -05001956 clear_extent_bits(io_tree, start, end, EXTENT_NODATASUM,
1957 GFP_NOFS);
1958 return 0;
1959 }
1960
Yanc2e639f2008-02-04 08:57:25 -05001961 if (state && state->start == start) {
Chris Mason70dec802008-01-29 09:59:12 -05001962 private = state->private;
1963 ret = 0;
1964 } else {
1965 ret = get_state_private(io_tree, start, &private);
1966 }
Chris Mason9ab86c82009-01-07 09:48:51 -05001967 kaddr = kmap_atomic(page, KM_USER0);
Chris Masond3977122009-01-05 21:25:51 -05001968 if (ret)
Chris Mason07157aa2007-08-30 08:50:51 -04001969 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05001970
Chris Masonff79f812007-10-15 16:22:25 -04001971 csum = btrfs_csum_data(root, kaddr + offset, csum, end - start + 1);
1972 btrfs_csum_final(csum, (char *)&csum);
Chris Masond3977122009-01-05 21:25:51 -05001973 if (csum != private)
Chris Mason07157aa2007-08-30 08:50:51 -04001974 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05001975
Chris Mason9ab86c82009-01-07 09:48:51 -05001976 kunmap_atomic(kaddr, KM_USER0);
Chris Masond20f7042008-12-08 16:58:54 -05001977good:
Chris Mason7e383262008-04-09 16:28:12 -04001978 /* if the io failure tree for this inode is non-empty,
1979 * check to see if we've recovered from a failed IO
1980 */
Chris Mason1259ab72008-05-12 13:39:03 -04001981 btrfs_clean_io_failures(inode, start);
Chris Mason07157aa2007-08-30 08:50:51 -04001982 return 0;
1983
1984zeroit:
Chris Mason193f2842009-04-27 07:29:05 -04001985 if (printk_ratelimit()) {
1986 printk(KERN_INFO "btrfs csum failed ino %lu off %llu csum %u "
1987 "private %llu\n", page->mapping->host->i_ino,
1988 (unsigned long long)start, csum,
1989 (unsigned long long)private);
1990 }
Chris Masondb945352007-10-15 16:15:53 -04001991 memset(kaddr + offset, 1, end - start + 1);
1992 flush_dcache_page(page);
Chris Mason9ab86c82009-01-07 09:48:51 -05001993 kunmap_atomic(kaddr, KM_USER0);
Chris Mason3b951512008-04-17 11:29:12 -04001994 if (private == 0)
1995 return 0;
Chris Mason7e383262008-04-09 16:28:12 -04001996 return -EIO;
Chris Mason07157aa2007-08-30 08:50:51 -04001997}
Chris Masonb888db22007-08-27 16:49:44 -04001998
Yan, Zheng24bbcf02009-11-12 09:36:34 +00001999struct delayed_iput {
2000 struct list_head list;
2001 struct inode *inode;
2002};
2003
2004void btrfs_add_delayed_iput(struct inode *inode)
2005{
2006 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
2007 struct delayed_iput *delayed;
2008
2009 if (atomic_add_unless(&inode->i_count, -1, 1))
2010 return;
2011
2012 delayed = kmalloc(sizeof(*delayed), GFP_NOFS | __GFP_NOFAIL);
2013 delayed->inode = inode;
2014
2015 spin_lock(&fs_info->delayed_iput_lock);
2016 list_add_tail(&delayed->list, &fs_info->delayed_iputs);
2017 spin_unlock(&fs_info->delayed_iput_lock);
2018}
2019
2020void btrfs_run_delayed_iputs(struct btrfs_root *root)
2021{
2022 LIST_HEAD(list);
2023 struct btrfs_fs_info *fs_info = root->fs_info;
2024 struct delayed_iput *delayed;
2025 int empty;
2026
2027 spin_lock(&fs_info->delayed_iput_lock);
2028 empty = list_empty(&fs_info->delayed_iputs);
2029 spin_unlock(&fs_info->delayed_iput_lock);
2030 if (empty)
2031 return;
2032
2033 down_read(&root->fs_info->cleanup_work_sem);
2034 spin_lock(&fs_info->delayed_iput_lock);
2035 list_splice_init(&fs_info->delayed_iputs, &list);
2036 spin_unlock(&fs_info->delayed_iput_lock);
2037
2038 while (!list_empty(&list)) {
2039 delayed = list_entry(list.next, struct delayed_iput, list);
2040 list_del(&delayed->list);
2041 iput(delayed->inode);
2042 kfree(delayed);
2043 }
2044 up_read(&root->fs_info->cleanup_work_sem);
2045}
2046
Josef Bacik7b128762008-07-24 12:17:14 -04002047/*
Yan, Zhengd68fc572010-05-16 10:49:58 -04002048 * calculate extra metadata reservation when snapshotting a subvolume
2049 * contains orphan files.
2050 */
2051void btrfs_orphan_pre_snapshot(struct btrfs_trans_handle *trans,
2052 struct btrfs_pending_snapshot *pending,
2053 u64 *bytes_to_reserve)
2054{
2055 struct btrfs_root *root;
2056 struct btrfs_block_rsv *block_rsv;
2057 u64 num_bytes;
2058 int index;
2059
2060 root = pending->root;
2061 if (!root->orphan_block_rsv || list_empty(&root->orphan_list))
2062 return;
2063
2064 block_rsv = root->orphan_block_rsv;
2065
2066 /* orphan block reservation for the snapshot */
2067 num_bytes = block_rsv->size;
2068
2069 /*
2070 * after the snapshot is created, COWing tree blocks may use more
2071 * space than it frees. So we should make sure there is enough
2072 * reserved space.
2073 */
2074 index = trans->transid & 0x1;
2075 if (block_rsv->reserved + block_rsv->freed[index] < block_rsv->size) {
2076 num_bytes += block_rsv->size -
2077 (block_rsv->reserved + block_rsv->freed[index]);
2078 }
2079
2080 *bytes_to_reserve += num_bytes;
2081}
2082
2083void btrfs_orphan_post_snapshot(struct btrfs_trans_handle *trans,
2084 struct btrfs_pending_snapshot *pending)
2085{
2086 struct btrfs_root *root = pending->root;
2087 struct btrfs_root *snap = pending->snap;
2088 struct btrfs_block_rsv *block_rsv;
2089 u64 num_bytes;
2090 int index;
2091 int ret;
2092
2093 if (!root->orphan_block_rsv || list_empty(&root->orphan_list))
2094 return;
2095
2096 /* refill source subvolume's orphan block reservation */
2097 block_rsv = root->orphan_block_rsv;
2098 index = trans->transid & 0x1;
2099 if (block_rsv->reserved + block_rsv->freed[index] < block_rsv->size) {
2100 num_bytes = block_rsv->size -
2101 (block_rsv->reserved + block_rsv->freed[index]);
2102 ret = btrfs_block_rsv_migrate(&pending->block_rsv,
2103 root->orphan_block_rsv,
2104 num_bytes);
2105 BUG_ON(ret);
2106 }
2107
2108 /* setup orphan block reservation for the snapshot */
2109 block_rsv = btrfs_alloc_block_rsv(snap);
2110 BUG_ON(!block_rsv);
2111
2112 btrfs_add_durable_block_rsv(root->fs_info, block_rsv);
2113 snap->orphan_block_rsv = block_rsv;
2114
2115 num_bytes = root->orphan_block_rsv->size;
2116 ret = btrfs_block_rsv_migrate(&pending->block_rsv,
2117 block_rsv, num_bytes);
2118 BUG_ON(ret);
2119
2120#if 0
2121 /* insert orphan item for the snapshot */
2122 WARN_ON(!root->orphan_item_inserted);
2123 ret = btrfs_insert_orphan_item(trans, root->fs_info->tree_root,
2124 snap->root_key.objectid);
2125 BUG_ON(ret);
2126 snap->orphan_item_inserted = 1;
2127#endif
2128}
2129
2130enum btrfs_orphan_cleanup_state {
2131 ORPHAN_CLEANUP_STARTED = 1,
2132 ORPHAN_CLEANUP_DONE = 2,
2133};
2134
2135/*
2136 * This is called in transaction commmit time. If there are no orphan
2137 * files in the subvolume, it removes orphan item and frees block_rsv
2138 * structure.
2139 */
2140void btrfs_orphan_commit_root(struct btrfs_trans_handle *trans,
2141 struct btrfs_root *root)
2142{
2143 int ret;
2144
2145 if (!list_empty(&root->orphan_list) ||
2146 root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE)
2147 return;
2148
2149 if (root->orphan_item_inserted &&
2150 btrfs_root_refs(&root->root_item) > 0) {
2151 ret = btrfs_del_orphan_item(trans, root->fs_info->tree_root,
2152 root->root_key.objectid);
2153 BUG_ON(ret);
2154 root->orphan_item_inserted = 0;
2155 }
2156
2157 if (root->orphan_block_rsv) {
2158 WARN_ON(root->orphan_block_rsv->size > 0);
2159 btrfs_free_block_rsv(root, root->orphan_block_rsv);
2160 root->orphan_block_rsv = NULL;
2161 }
2162}
2163
2164/*
Josef Bacik7b128762008-07-24 12:17:14 -04002165 * This creates an orphan entry for the given inode in case something goes
2166 * wrong in the middle of an unlink/truncate.
Yan, Zhengd68fc572010-05-16 10:49:58 -04002167 *
2168 * NOTE: caller of this function should reserve 5 units of metadata for
2169 * this function.
Josef Bacik7b128762008-07-24 12:17:14 -04002170 */
2171int btrfs_orphan_add(struct btrfs_trans_handle *trans, struct inode *inode)
2172{
2173 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002174 struct btrfs_block_rsv *block_rsv = NULL;
2175 int reserve = 0;
2176 int insert = 0;
2177 int ret;
Josef Bacik7b128762008-07-24 12:17:14 -04002178
Yan, Zhengd68fc572010-05-16 10:49:58 -04002179 if (!root->orphan_block_rsv) {
2180 block_rsv = btrfs_alloc_block_rsv(root);
2181 BUG_ON(!block_rsv);
Josef Bacik7b128762008-07-24 12:17:14 -04002182 }
2183
Yan, Zhengd68fc572010-05-16 10:49:58 -04002184 spin_lock(&root->orphan_lock);
2185 if (!root->orphan_block_rsv) {
2186 root->orphan_block_rsv = block_rsv;
2187 } else if (block_rsv) {
2188 btrfs_free_block_rsv(root, block_rsv);
2189 block_rsv = NULL;
2190 }
Josef Bacik7b128762008-07-24 12:17:14 -04002191
Yan, Zhengd68fc572010-05-16 10:49:58 -04002192 if (list_empty(&BTRFS_I(inode)->i_orphan)) {
2193 list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
2194#if 0
2195 /*
2196 * For proper ENOSPC handling, we should do orphan
2197 * cleanup when mounting. But this introduces backward
2198 * compatibility issue.
2199 */
2200 if (!xchg(&root->orphan_item_inserted, 1))
2201 insert = 2;
2202 else
2203 insert = 1;
2204#endif
2205 insert = 1;
2206 } else {
2207 WARN_ON(!BTRFS_I(inode)->orphan_meta_reserved);
2208 }
Josef Bacik7b128762008-07-24 12:17:14 -04002209
Yan, Zhengd68fc572010-05-16 10:49:58 -04002210 if (!BTRFS_I(inode)->orphan_meta_reserved) {
2211 BTRFS_I(inode)->orphan_meta_reserved = 1;
2212 reserve = 1;
2213 }
2214 spin_unlock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002215
Yan, Zhengd68fc572010-05-16 10:49:58 -04002216 if (block_rsv)
2217 btrfs_add_durable_block_rsv(root->fs_info, block_rsv);
2218
2219 /* grab metadata reservation from transaction handle */
2220 if (reserve) {
2221 ret = btrfs_orphan_reserve_metadata(trans, inode);
2222 BUG_ON(ret);
2223 }
2224
2225 /* insert an orphan item to track this unlinked/truncated file */
2226 if (insert >= 1) {
2227 ret = btrfs_insert_orphan_item(trans, root, inode->i_ino);
2228 BUG_ON(ret);
2229 }
2230
2231 /* insert an orphan item to track subvolume contains orphan files */
2232 if (insert >= 2) {
2233 ret = btrfs_insert_orphan_item(trans, root->fs_info->tree_root,
2234 root->root_key.objectid);
2235 BUG_ON(ret);
2236 }
2237 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002238}
2239
2240/*
2241 * We have done the truncate/delete so we can go ahead and remove the orphan
2242 * item for this particular inode.
2243 */
2244int btrfs_orphan_del(struct btrfs_trans_handle *trans, struct inode *inode)
2245{
2246 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002247 int delete_item = 0;
2248 int release_rsv = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002249 int ret = 0;
2250
Yan, Zhengd68fc572010-05-16 10:49:58 -04002251 spin_lock(&root->orphan_lock);
2252 if (!list_empty(&BTRFS_I(inode)->i_orphan)) {
2253 list_del_init(&BTRFS_I(inode)->i_orphan);
2254 delete_item = 1;
Josef Bacik7b128762008-07-24 12:17:14 -04002255 }
2256
Yan, Zhengd68fc572010-05-16 10:49:58 -04002257 if (BTRFS_I(inode)->orphan_meta_reserved) {
2258 BTRFS_I(inode)->orphan_meta_reserved = 0;
2259 release_rsv = 1;
2260 }
2261 spin_unlock(&root->orphan_lock);
2262
2263 if (trans && delete_item) {
2264 ret = btrfs_del_orphan_item(trans, root, inode->i_ino);
2265 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04002266 }
2267
Yan, Zhengd68fc572010-05-16 10:49:58 -04002268 if (release_rsv)
2269 btrfs_orphan_release_metadata(inode);
Josef Bacik7b128762008-07-24 12:17:14 -04002270
Yan, Zhengd68fc572010-05-16 10:49:58 -04002271 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002272}
2273
2274/*
2275 * this cleans up any orphans that may be left on the list from the last use
2276 * of this root.
2277 */
2278void btrfs_orphan_cleanup(struct btrfs_root *root)
2279{
2280 struct btrfs_path *path;
2281 struct extent_buffer *leaf;
Josef Bacik7b128762008-07-24 12:17:14 -04002282 struct btrfs_key key, found_key;
2283 struct btrfs_trans_handle *trans;
2284 struct inode *inode;
2285 int ret = 0, nr_unlink = 0, nr_truncate = 0;
2286
Yan, Zhengd68fc572010-05-16 10:49:58 -04002287 if (cmpxchg(&root->orphan_cleanup_state, 0, ORPHAN_CLEANUP_STARTED))
Josef Bacik7b128762008-07-24 12:17:14 -04002288 return;
Yan, Zhengc71bf092009-11-12 09:34:40 +00002289
2290 path = btrfs_alloc_path();
2291 BUG_ON(!path);
Josef Bacik7b128762008-07-24 12:17:14 -04002292 path->reada = -1;
2293
2294 key.objectid = BTRFS_ORPHAN_OBJECTID;
2295 btrfs_set_key_type(&key, BTRFS_ORPHAN_ITEM_KEY);
2296 key.offset = (u64)-1;
2297
Josef Bacik7b128762008-07-24 12:17:14 -04002298 while (1) {
2299 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2300 if (ret < 0) {
2301 printk(KERN_ERR "Error searching slot for orphan: %d"
2302 "\n", ret);
2303 break;
2304 }
2305
2306 /*
2307 * if ret == 0 means we found what we were searching for, which
2308 * is weird, but possible, so only screw with path if we didnt
2309 * find the key and see if we have stuff that matches
2310 */
2311 if (ret > 0) {
2312 if (path->slots[0] == 0)
2313 break;
2314 path->slots[0]--;
2315 }
2316
2317 /* pull out the item */
2318 leaf = path->nodes[0];
Josef Bacik7b128762008-07-24 12:17:14 -04002319 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2320
2321 /* make sure the item matches what we want */
2322 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
2323 break;
2324 if (btrfs_key_type(&found_key) != BTRFS_ORPHAN_ITEM_KEY)
2325 break;
2326
2327 /* release the path since we're done with it */
2328 btrfs_release_path(root, path);
2329
2330 /*
2331 * this is where we are basically btrfs_lookup, without the
2332 * crossing root thing. we store the inode number in the
2333 * offset of the orphan item.
2334 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002335 found_key.objectid = found_key.offset;
2336 found_key.type = BTRFS_INODE_ITEM_KEY;
2337 found_key.offset = 0;
Josef Bacik73f73412009-12-04 17:38:27 +00002338 inode = btrfs_iget(root->fs_info->sb, &found_key, root, NULL);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002339 BUG_ON(IS_ERR(inode));
Josef Bacik7b128762008-07-24 12:17:14 -04002340
Josef Bacik7b128762008-07-24 12:17:14 -04002341 /*
2342 * add this inode to the orphan list so btrfs_orphan_del does
2343 * the proper thing when we hit it
2344 */
Yan, Zhengd68fc572010-05-16 10:49:58 -04002345 spin_lock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002346 list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002347 spin_unlock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002348
2349 /*
2350 * if this is a bad inode, means we actually succeeded in
2351 * removing the inode, but not the orphan record, which means
2352 * we need to manually delete the orphan since iput will just
2353 * do a destroy_inode
2354 */
2355 if (is_bad_inode(inode)) {
Yan, Zhenga22285a2010-05-16 10:48:46 -04002356 trans = btrfs_start_transaction(root, 0);
Josef Bacik7b128762008-07-24 12:17:14 -04002357 btrfs_orphan_del(trans, inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04002358 btrfs_end_transaction(trans, root);
Josef Bacik7b128762008-07-24 12:17:14 -04002359 iput(inode);
2360 continue;
2361 }
2362
2363 /* if we have links, this was a truncate, lets do that */
2364 if (inode->i_nlink) {
2365 nr_truncate++;
2366 btrfs_truncate(inode);
2367 } else {
2368 nr_unlink++;
2369 }
2370
2371 /* this will do delete_inode and everything for us */
2372 iput(inode);
2373 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04002374 btrfs_free_path(path);
2375
2376 root->orphan_cleanup_state = ORPHAN_CLEANUP_DONE;
2377
2378 if (root->orphan_block_rsv)
2379 btrfs_block_rsv_release(root, root->orphan_block_rsv,
2380 (u64)-1);
2381
2382 if (root->orphan_block_rsv || root->orphan_item_inserted) {
2383 trans = btrfs_join_transaction(root, 1);
2384 btrfs_end_transaction(trans, root);
2385 }
Josef Bacik7b128762008-07-24 12:17:14 -04002386
2387 if (nr_unlink)
2388 printk(KERN_INFO "btrfs: unlinked %d orphans\n", nr_unlink);
2389 if (nr_truncate)
2390 printk(KERN_INFO "btrfs: truncated %d orphans\n", nr_truncate);
Josef Bacik7b128762008-07-24 12:17:14 -04002391}
2392
Chris Masond352ac62008-09-29 15:18:18 -04002393/*
Chris Mason46a53cc2009-04-27 11:47:50 -04002394 * very simple check to peek ahead in the leaf looking for xattrs. If we
2395 * don't find any xattrs, we know there can't be any acls.
2396 *
2397 * slot is the slot the inode is in, objectid is the objectid of the inode
2398 */
2399static noinline int acls_after_inode_item(struct extent_buffer *leaf,
2400 int slot, u64 objectid)
2401{
2402 u32 nritems = btrfs_header_nritems(leaf);
2403 struct btrfs_key found_key;
2404 int scanned = 0;
2405
2406 slot++;
2407 while (slot < nritems) {
2408 btrfs_item_key_to_cpu(leaf, &found_key, slot);
2409
2410 /* we found a different objectid, there must not be acls */
2411 if (found_key.objectid != objectid)
2412 return 0;
2413
2414 /* we found an xattr, assume we've got an acl */
2415 if (found_key.type == BTRFS_XATTR_ITEM_KEY)
2416 return 1;
2417
2418 /*
2419 * we found a key greater than an xattr key, there can't
2420 * be any acls later on
2421 */
2422 if (found_key.type > BTRFS_XATTR_ITEM_KEY)
2423 return 0;
2424
2425 slot++;
2426 scanned++;
2427
2428 /*
2429 * it goes inode, inode backrefs, xattrs, extents,
2430 * so if there are a ton of hard links to an inode there can
2431 * be a lot of backrefs. Don't waste time searching too hard,
2432 * this is just an optimization
2433 */
2434 if (scanned >= 8)
2435 break;
2436 }
2437 /* we hit the end of the leaf before we found an xattr or
2438 * something larger than an xattr. We have to assume the inode
2439 * has acls
2440 */
2441 return 1;
2442}
2443
2444/*
Chris Masond352ac62008-09-29 15:18:18 -04002445 * read an inode from the btree into the in-memory inode
2446 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002447static void btrfs_read_locked_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002448{
2449 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002450 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002451 struct btrfs_inode_item *inode_item;
Chris Mason0b86a832008-03-24 15:01:56 -04002452 struct btrfs_timespec *tspec;
Chris Mason39279cc2007-06-12 06:35:45 -04002453 struct btrfs_root *root = BTRFS_I(inode)->root;
2454 struct btrfs_key location;
Chris Mason46a53cc2009-04-27 11:47:50 -04002455 int maybe_acls;
Chris Mason39279cc2007-06-12 06:35:45 -04002456 u64 alloc_group_block;
Josef Bacik618e21d2007-07-11 10:18:17 -04002457 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -04002458 int ret;
2459
2460 path = btrfs_alloc_path();
2461 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -04002462 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -05002463
Chris Mason39279cc2007-06-12 06:35:45 -04002464 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002465 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -04002466 goto make_bad;
Chris Mason39279cc2007-06-12 06:35:45 -04002467
Chris Mason5f39d392007-10-15 16:14:19 -04002468 leaf = path->nodes[0];
2469 inode_item = btrfs_item_ptr(leaf, path->slots[0],
2470 struct btrfs_inode_item);
2471
2472 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
2473 inode->i_nlink = btrfs_inode_nlink(leaf, inode_item);
2474 inode->i_uid = btrfs_inode_uid(leaf, inode_item);
2475 inode->i_gid = btrfs_inode_gid(leaf, inode_item);
Chris Masondbe674a2008-07-17 12:54:05 -04002476 btrfs_i_size_write(inode, btrfs_inode_size(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04002477
2478 tspec = btrfs_inode_atime(inode_item);
2479 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2480 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2481
2482 tspec = btrfs_inode_mtime(inode_item);
2483 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2484 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2485
2486 tspec = btrfs_inode_ctime(inode_item);
2487 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2488 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2489
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002490 inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04002491 BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item);
Chris Masonc3027eb2008-12-08 16:40:21 -05002492 BTRFS_I(inode)->sequence = btrfs_inode_sequence(leaf, inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04002493 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik618e21d2007-07-11 10:18:17 -04002494 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002495 rdev = btrfs_inode_rdev(leaf, inode_item);
2496
Josef Bacikaec74772008-07-24 12:12:38 -04002497 BTRFS_I(inode)->index_cnt = (u64)-1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05002498 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Josef Bacikaec74772008-07-24 12:12:38 -04002499
Chris Mason5f39d392007-10-15 16:14:19 -04002500 alloc_group_block = btrfs_inode_block_group(leaf, inode_item);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002501
Chris Mason46a53cc2009-04-27 11:47:50 -04002502 /*
2503 * try to precache a NULL acl entry for files that don't have
2504 * any xattrs or acls
2505 */
2506 maybe_acls = acls_after_inode_item(leaf, path->slots[0], inode->i_ino);
Al Viro72c04902009-06-24 16:58:48 -04002507 if (!maybe_acls)
2508 cache_no_acl(inode);
Chris Mason46a53cc2009-04-27 11:47:50 -04002509
Yan Zhengd2fb3432008-12-11 16:30:39 -05002510 BTRFS_I(inode)->block_group = btrfs_find_block_group(root, 0,
2511 alloc_group_block, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002512 btrfs_free_path(path);
2513 inode_item = NULL;
2514
Chris Mason39279cc2007-06-12 06:35:45 -04002515 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -04002516 case S_IFREG:
2517 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04002518 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05002519 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04002520 inode->i_fop = &btrfs_file_operations;
2521 inode->i_op = &btrfs_file_inode_operations;
2522 break;
2523 case S_IFDIR:
2524 inode->i_fop = &btrfs_dir_file_operations;
2525 if (root == root->fs_info->tree_root)
2526 inode->i_op = &btrfs_dir_ro_inode_operations;
2527 else
2528 inode->i_op = &btrfs_dir_inode_operations;
2529 break;
2530 case S_IFLNK:
2531 inode->i_op = &btrfs_symlink_inode_operations;
2532 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04002533 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04002534 break;
Josef Bacik618e21d2007-07-11 10:18:17 -04002535 default:
Jim Owens0279b4c2009-02-04 09:29:13 -05002536 inode->i_op = &btrfs_special_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -04002537 init_special_inode(inode, inode->i_mode, rdev);
2538 break;
Chris Mason39279cc2007-06-12 06:35:45 -04002539 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02002540
2541 btrfs_update_iflags(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002542 return;
2543
2544make_bad:
Chris Mason39279cc2007-06-12 06:35:45 -04002545 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002546 make_bad_inode(inode);
2547}
2548
Chris Masond352ac62008-09-29 15:18:18 -04002549/*
2550 * given a leaf and an inode, copy the inode fields into the leaf
2551 */
Chris Masone02119d2008-09-05 16:13:11 -04002552static void fill_inode_item(struct btrfs_trans_handle *trans,
2553 struct extent_buffer *leaf,
Chris Mason5f39d392007-10-15 16:14:19 -04002554 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -04002555 struct inode *inode)
2556{
Chris Mason5f39d392007-10-15 16:14:19 -04002557 btrfs_set_inode_uid(leaf, item, inode->i_uid);
2558 btrfs_set_inode_gid(leaf, item, inode->i_gid);
Chris Masondbe674a2008-07-17 12:54:05 -04002559 btrfs_set_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size);
Chris Mason5f39d392007-10-15 16:14:19 -04002560 btrfs_set_inode_mode(leaf, item, inode->i_mode);
2561 btrfs_set_inode_nlink(leaf, item, inode->i_nlink);
2562
2563 btrfs_set_timespec_sec(leaf, btrfs_inode_atime(item),
2564 inode->i_atime.tv_sec);
2565 btrfs_set_timespec_nsec(leaf, btrfs_inode_atime(item),
2566 inode->i_atime.tv_nsec);
2567
2568 btrfs_set_timespec_sec(leaf, btrfs_inode_mtime(item),
2569 inode->i_mtime.tv_sec);
2570 btrfs_set_timespec_nsec(leaf, btrfs_inode_mtime(item),
2571 inode->i_mtime.tv_nsec);
2572
2573 btrfs_set_timespec_sec(leaf, btrfs_inode_ctime(item),
2574 inode->i_ctime.tv_sec);
2575 btrfs_set_timespec_nsec(leaf, btrfs_inode_ctime(item),
2576 inode->i_ctime.tv_nsec);
2577
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002578 btrfs_set_inode_nbytes(leaf, item, inode_get_bytes(inode));
Chris Masone02119d2008-09-05 16:13:11 -04002579 btrfs_set_inode_generation(leaf, item, BTRFS_I(inode)->generation);
Chris Masonc3027eb2008-12-08 16:40:21 -05002580 btrfs_set_inode_sequence(leaf, item, BTRFS_I(inode)->sequence);
Chris Masone02119d2008-09-05 16:13:11 -04002581 btrfs_set_inode_transid(leaf, item, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04002582 btrfs_set_inode_rdev(leaf, item, inode->i_rdev);
Yanb98b6762008-01-08 15:54:37 -05002583 btrfs_set_inode_flags(leaf, item, BTRFS_I(inode)->flags);
Yan Zhengd2fb3432008-12-11 16:30:39 -05002584 btrfs_set_inode_block_group(leaf, item, BTRFS_I(inode)->block_group);
Chris Mason39279cc2007-06-12 06:35:45 -04002585}
2586
Chris Masond352ac62008-09-29 15:18:18 -04002587/*
2588 * copy everything in the in-memory inode into the btree.
2589 */
Chris Masond3977122009-01-05 21:25:51 -05002590noinline int btrfs_update_inode(struct btrfs_trans_handle *trans,
2591 struct btrfs_root *root, struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002592{
2593 struct btrfs_inode_item *inode_item;
2594 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002595 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002596 int ret;
2597
2598 path = btrfs_alloc_path();
2599 BUG_ON(!path);
Chris Masonb9473432009-03-13 11:00:37 -04002600 path->leave_spinning = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002601 ret = btrfs_lookup_inode(trans, root, path,
2602 &BTRFS_I(inode)->location, 1);
2603 if (ret) {
2604 if (ret > 0)
2605 ret = -ENOENT;
2606 goto failed;
2607 }
2608
Chris Masonb4ce94d2009-02-04 09:25:08 -05002609 btrfs_unlock_up_safe(path, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002610 leaf = path->nodes[0];
2611 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04002612 struct btrfs_inode_item);
2613
Chris Masone02119d2008-09-05 16:13:11 -04002614 fill_inode_item(trans, leaf, inode_item, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04002615 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002616 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002617 ret = 0;
2618failed:
Chris Mason39279cc2007-06-12 06:35:45 -04002619 btrfs_free_path(path);
2620 return ret;
2621}
2622
2623
Chris Masond352ac62008-09-29 15:18:18 -04002624/*
2625 * unlink helper that gets used here in inode.c and in the tree logging
2626 * recovery code. It remove a link in a directory with a given name, and
2627 * also drops the back refs in the inode to the directory
2628 */
Chris Masone02119d2008-09-05 16:13:11 -04002629int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
2630 struct btrfs_root *root,
2631 struct inode *dir, struct inode *inode,
2632 const char *name, int name_len)
Chris Mason39279cc2007-06-12 06:35:45 -04002633{
2634 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04002635 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002636 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002637 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -04002638 struct btrfs_key key;
Josef Bacikaec74772008-07-24 12:12:38 -04002639 u64 index;
Chris Mason39279cc2007-06-12 06:35:45 -04002640
2641 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04002642 if (!path) {
2643 ret = -ENOMEM;
2644 goto err;
2645 }
2646
Chris Masonb9473432009-03-13 11:00:37 -04002647 path->leave_spinning = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002648 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
2649 name, name_len, -1);
2650 if (IS_ERR(di)) {
2651 ret = PTR_ERR(di);
2652 goto err;
2653 }
2654 if (!di) {
2655 ret = -ENOENT;
2656 goto err;
2657 }
Chris Mason5f39d392007-10-15 16:14:19 -04002658 leaf = path->nodes[0];
2659 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -04002660 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -04002661 if (ret)
2662 goto err;
Chris Mason39279cc2007-06-12 06:35:45 -04002663 btrfs_release_path(root, path);
2664
Josef Bacikaec74772008-07-24 12:12:38 -04002665 ret = btrfs_del_inode_ref(trans, root, name, name_len,
Chris Masone02119d2008-09-05 16:13:11 -04002666 inode->i_ino,
2667 dir->i_ino, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04002668 if (ret) {
Chris Masond3977122009-01-05 21:25:51 -05002669 printk(KERN_INFO "btrfs failed to delete reference to %.*s, "
Josef Bacikaec74772008-07-24 12:12:38 -04002670 "inode %lu parent %lu\n", name_len, name,
Chris Masone02119d2008-09-05 16:13:11 -04002671 inode->i_ino, dir->i_ino);
Josef Bacikaec74772008-07-24 12:12:38 -04002672 goto err;
2673 }
2674
Chris Mason39279cc2007-06-12 06:35:45 -04002675 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino,
Josef Bacikaec74772008-07-24 12:12:38 -04002676 index, name, name_len, -1);
Chris Mason39279cc2007-06-12 06:35:45 -04002677 if (IS_ERR(di)) {
2678 ret = PTR_ERR(di);
2679 goto err;
2680 }
2681 if (!di) {
2682 ret = -ENOENT;
2683 goto err;
2684 }
2685 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason925baed2008-06-25 16:01:30 -04002686 btrfs_release_path(root, path);
Chris Mason39279cc2007-06-12 06:35:45 -04002687
Chris Masone02119d2008-09-05 16:13:11 -04002688 ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len,
2689 inode, dir->i_ino);
Chris Mason49eb7e42008-09-11 15:53:12 -04002690 BUG_ON(ret != 0 && ret != -ENOENT);
Chris Masone02119d2008-09-05 16:13:11 -04002691
2692 ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len,
2693 dir, index);
Chris Mason6418c962010-10-30 07:34:24 -04002694 if (ret == -ENOENT)
2695 ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002696err:
2697 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002698 if (ret)
2699 goto out;
2700
2701 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
2702 inode->i_ctime = dir->i_mtime = dir->i_ctime = CURRENT_TIME;
2703 btrfs_update_inode(trans, root, dir);
2704 btrfs_drop_nlink(inode);
2705 ret = btrfs_update_inode(trans, root, inode);
Chris Masone02119d2008-09-05 16:13:11 -04002706out:
Chris Mason39279cc2007-06-12 06:35:45 -04002707 return ret;
2708}
2709
Yan, Zhenga22285a2010-05-16 10:48:46 -04002710/* helper to check if there is any shared block in the path */
2711static int check_path_shared(struct btrfs_root *root,
2712 struct btrfs_path *path)
2713{
2714 struct extent_buffer *eb;
2715 int level;
Dan Carpenter0e4dcbe2010-06-01 08:23:11 +00002716 u64 refs = 1;
Andi Kleen411fc6b2010-10-29 15:14:31 -04002717 int uninitialized_var(ret);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002718
2719 for (level = 0; level < BTRFS_MAX_LEVEL; level++) {
2720 if (!path->nodes[level])
2721 break;
2722 eb = path->nodes[level];
2723 if (!btrfs_block_can_be_shared(root, eb))
2724 continue;
2725 ret = btrfs_lookup_extent_info(NULL, root, eb->start, eb->len,
2726 &refs, NULL);
2727 if (refs > 1)
2728 return 1;
2729 }
Andi Kleen411fc6b2010-10-29 15:14:31 -04002730 return ret; /* XXX callers? */
Yan, Zhenga22285a2010-05-16 10:48:46 -04002731}
2732
2733/*
2734 * helper to start transaction for unlink and rmdir.
2735 *
2736 * unlink and rmdir are special in btrfs, they do not always free space.
2737 * so in enospc case, we should make sure they will free space before
2738 * allowing them to use the global metadata reservation.
2739 */
2740static struct btrfs_trans_handle *__unlink_start_trans(struct inode *dir,
2741 struct dentry *dentry)
2742{
2743 struct btrfs_trans_handle *trans;
2744 struct btrfs_root *root = BTRFS_I(dir)->root;
2745 struct btrfs_path *path;
2746 struct btrfs_inode_ref *ref;
2747 struct btrfs_dir_item *di;
2748 struct inode *inode = dentry->d_inode;
2749 u64 index;
2750 int check_link = 1;
2751 int err = -ENOSPC;
2752 int ret;
2753
2754 trans = btrfs_start_transaction(root, 10);
2755 if (!IS_ERR(trans) || PTR_ERR(trans) != -ENOSPC)
2756 return trans;
2757
2758 if (inode->i_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
2759 return ERR_PTR(-ENOSPC);
2760
2761 /* check if there is someone else holds reference */
2762 if (S_ISDIR(inode->i_mode) && atomic_read(&inode->i_count) > 1)
2763 return ERR_PTR(-ENOSPC);
2764
2765 if (atomic_read(&inode->i_count) > 2)
2766 return ERR_PTR(-ENOSPC);
2767
2768 if (xchg(&root->fs_info->enospc_unlink, 1))
2769 return ERR_PTR(-ENOSPC);
2770
2771 path = btrfs_alloc_path();
2772 if (!path) {
2773 root->fs_info->enospc_unlink = 0;
2774 return ERR_PTR(-ENOMEM);
2775 }
2776
2777 trans = btrfs_start_transaction(root, 0);
2778 if (IS_ERR(trans)) {
2779 btrfs_free_path(path);
2780 root->fs_info->enospc_unlink = 0;
2781 return trans;
2782 }
2783
2784 path->skip_locking = 1;
2785 path->search_commit_root = 1;
2786
2787 ret = btrfs_lookup_inode(trans, root, path,
2788 &BTRFS_I(dir)->location, 0);
2789 if (ret < 0) {
2790 err = ret;
2791 goto out;
2792 }
2793 if (ret == 0) {
2794 if (check_path_shared(root, path))
2795 goto out;
2796 } else {
2797 check_link = 0;
2798 }
2799 btrfs_release_path(root, path);
2800
2801 ret = btrfs_lookup_inode(trans, root, path,
2802 &BTRFS_I(inode)->location, 0);
2803 if (ret < 0) {
2804 err = ret;
2805 goto out;
2806 }
2807 if (ret == 0) {
2808 if (check_path_shared(root, path))
2809 goto out;
2810 } else {
2811 check_link = 0;
2812 }
2813 btrfs_release_path(root, path);
2814
2815 if (ret == 0 && S_ISREG(inode->i_mode)) {
2816 ret = btrfs_lookup_file_extent(trans, root, path,
2817 inode->i_ino, (u64)-1, 0);
2818 if (ret < 0) {
2819 err = ret;
2820 goto out;
2821 }
2822 BUG_ON(ret == 0);
2823 if (check_path_shared(root, path))
2824 goto out;
2825 btrfs_release_path(root, path);
2826 }
2827
2828 if (!check_link) {
2829 err = 0;
2830 goto out;
2831 }
2832
2833 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
2834 dentry->d_name.name, dentry->d_name.len, 0);
2835 if (IS_ERR(di)) {
2836 err = PTR_ERR(di);
2837 goto out;
2838 }
2839 if (di) {
2840 if (check_path_shared(root, path))
2841 goto out;
2842 } else {
2843 err = 0;
2844 goto out;
2845 }
2846 btrfs_release_path(root, path);
2847
2848 ref = btrfs_lookup_inode_ref(trans, root, path,
2849 dentry->d_name.name, dentry->d_name.len,
2850 inode->i_ino, dir->i_ino, 0);
2851 if (IS_ERR(ref)) {
2852 err = PTR_ERR(ref);
2853 goto out;
2854 }
2855 BUG_ON(!ref);
2856 if (check_path_shared(root, path))
2857 goto out;
2858 index = btrfs_inode_ref_index(path->nodes[0], ref);
2859 btrfs_release_path(root, path);
2860
2861 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino, index,
2862 dentry->d_name.name, dentry->d_name.len, 0);
2863 if (IS_ERR(di)) {
2864 err = PTR_ERR(di);
2865 goto out;
2866 }
2867 BUG_ON(ret == -ENOENT);
2868 if (check_path_shared(root, path))
2869 goto out;
2870
2871 err = 0;
2872out:
2873 btrfs_free_path(path);
2874 if (err) {
2875 btrfs_end_transaction(trans, root);
2876 root->fs_info->enospc_unlink = 0;
2877 return ERR_PTR(err);
2878 }
2879
2880 trans->block_rsv = &root->fs_info->global_block_rsv;
2881 return trans;
2882}
2883
2884static void __unlink_end_trans(struct btrfs_trans_handle *trans,
2885 struct btrfs_root *root)
2886{
2887 if (trans->block_rsv == &root->fs_info->global_block_rsv) {
2888 BUG_ON(!root->fs_info->enospc_unlink);
2889 root->fs_info->enospc_unlink = 0;
2890 }
2891 btrfs_end_transaction_throttle(trans, root);
2892}
2893
Chris Mason39279cc2007-06-12 06:35:45 -04002894static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
2895{
Yan, Zhenga22285a2010-05-16 10:48:46 -04002896 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04002897 struct btrfs_trans_handle *trans;
Josef Bacik7b128762008-07-24 12:17:14 -04002898 struct inode *inode = dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04002899 int ret;
Chris Mason1832a6d2007-12-21 16:27:21 -05002900 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002901
Yan, Zhenga22285a2010-05-16 10:48:46 -04002902 trans = __unlink_start_trans(dir, dentry);
2903 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05002904 return PTR_ERR(trans);
Chris Mason5f39d392007-10-15 16:14:19 -04002905
Chris Mason39279cc2007-06-12 06:35:45 -04002906 btrfs_set_trans_block_group(trans, dir);
Chris Mason12fcfd22009-03-24 10:24:20 -04002907
2908 btrfs_record_unlink_dir(trans, dir, dentry->d_inode, 0);
2909
Chris Masone02119d2008-09-05 16:13:11 -04002910 ret = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
2911 dentry->d_name.name, dentry->d_name.len);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002912 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04002913
Yan, Zhenga22285a2010-05-16 10:48:46 -04002914 if (inode->i_nlink == 0) {
Josef Bacik7b128762008-07-24 12:17:14 -04002915 ret = btrfs_orphan_add(trans, inode);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002916 BUG_ON(ret);
2917 }
Josef Bacik7b128762008-07-24 12:17:14 -04002918
Chris Masond3c2fdc2007-09-17 10:58:06 -04002919 nr = trans->blocks_used;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002920 __unlink_end_trans(trans, root);
Chris Masond3c2fdc2007-09-17 10:58:06 -04002921 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002922 return ret;
2923}
2924
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002925int btrfs_unlink_subvol(struct btrfs_trans_handle *trans,
2926 struct btrfs_root *root,
2927 struct inode *dir, u64 objectid,
2928 const char *name, int name_len)
2929{
2930 struct btrfs_path *path;
2931 struct extent_buffer *leaf;
2932 struct btrfs_dir_item *di;
2933 struct btrfs_key key;
2934 u64 index;
2935 int ret;
2936
2937 path = btrfs_alloc_path();
2938 if (!path)
2939 return -ENOMEM;
2940
2941 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
2942 name, name_len, -1);
2943 BUG_ON(!di || IS_ERR(di));
2944
2945 leaf = path->nodes[0];
2946 btrfs_dir_item_key_to_cpu(leaf, di, &key);
2947 WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
2948 ret = btrfs_delete_one_dir_name(trans, root, path, di);
2949 BUG_ON(ret);
2950 btrfs_release_path(root, path);
2951
2952 ret = btrfs_del_root_ref(trans, root->fs_info->tree_root,
2953 objectid, root->root_key.objectid,
2954 dir->i_ino, &index, name, name_len);
2955 if (ret < 0) {
2956 BUG_ON(ret != -ENOENT);
2957 di = btrfs_search_dir_index_item(root, path, dir->i_ino,
2958 name, name_len);
2959 BUG_ON(!di || IS_ERR(di));
2960
2961 leaf = path->nodes[0];
2962 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
2963 btrfs_release_path(root, path);
2964 index = key.offset;
2965 }
2966
2967 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino,
2968 index, name, name_len, -1);
2969 BUG_ON(!di || IS_ERR(di));
2970
2971 leaf = path->nodes[0];
2972 btrfs_dir_item_key_to_cpu(leaf, di, &key);
2973 WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
2974 ret = btrfs_delete_one_dir_name(trans, root, path, di);
2975 BUG_ON(ret);
2976 btrfs_release_path(root, path);
2977
2978 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
2979 dir->i_mtime = dir->i_ctime = CURRENT_TIME;
2980 ret = btrfs_update_inode(trans, root, dir);
2981 BUG_ON(ret);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002982
2983 btrfs_free_path(path);
2984 return 0;
2985}
2986
Chris Mason39279cc2007-06-12 06:35:45 -04002987static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
2988{
2989 struct inode *inode = dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05002990 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002991 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04002992 struct btrfs_trans_handle *trans;
Chris Mason1832a6d2007-12-21 16:27:21 -05002993 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002994
Chris Mason3394e162008-11-17 20:42:26 -05002995 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE ||
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002996 inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)
Yan134d4512007-10-25 15:49:25 -04002997 return -ENOTEMPTY;
2998
Yan, Zhenga22285a2010-05-16 10:48:46 -04002999 trans = __unlink_start_trans(dir, dentry);
3000 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05003001 return PTR_ERR(trans);
Josef Bacik5df6a9f2009-11-10 21:23:48 -05003002
Chris Mason39279cc2007-06-12 06:35:45 -04003003 btrfs_set_trans_block_group(trans, dir);
Chris Mason39279cc2007-06-12 06:35:45 -04003004
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003005 if (unlikely(inode->i_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
3006 err = btrfs_unlink_subvol(trans, root, dir,
3007 BTRFS_I(inode)->location.objectid,
3008 dentry->d_name.name,
3009 dentry->d_name.len);
3010 goto out;
3011 }
3012
Josef Bacik7b128762008-07-24 12:17:14 -04003013 err = btrfs_orphan_add(trans, inode);
3014 if (err)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003015 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003016
Chris Mason39279cc2007-06-12 06:35:45 -04003017 /* now the directory is empty */
Chris Masone02119d2008-09-05 16:13:11 -04003018 err = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
3019 dentry->d_name.name, dentry->d_name.len);
Chris Masond3977122009-01-05 21:25:51 -05003020 if (!err)
Chris Masondbe674a2008-07-17 12:54:05 -04003021 btrfs_i_size_write(inode, 0);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003022out:
Chris Masond3c2fdc2007-09-17 10:58:06 -04003023 nr = trans->blocks_used;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003024 __unlink_end_trans(trans, root);
Chris Masond3c2fdc2007-09-17 10:58:06 -04003025 btrfs_btree_balance_dirty(root, nr);
Chris Mason39544012007-12-12 14:38:19 -05003026
Chris Mason39279cc2007-06-12 06:35:45 -04003027 return err;
3028}
3029
Chris Masond20f7042008-12-08 16:58:54 -05003030#if 0
Chris Mason39279cc2007-06-12 06:35:45 -04003031/*
Chris Mason323ac952008-10-01 19:05:46 -04003032 * when truncating bytes in a file, it is possible to avoid reading
3033 * the leaves that contain only checksum items. This can be the
3034 * majority of the IO required to delete a large file, but it must
3035 * be done carefully.
3036 *
3037 * The keys in the level just above the leaves are checked to make sure
3038 * the lowest key in a given leaf is a csum key, and starts at an offset
3039 * after the new size.
3040 *
3041 * Then the key for the next leaf is checked to make sure it also has
3042 * a checksum item for the same file. If it does, we know our target leaf
3043 * contains only checksum items, and it can be safely freed without reading
3044 * it.
3045 *
3046 * This is just an optimization targeted at large files. It may do
3047 * nothing. It will return 0 unless things went badly.
3048 */
3049static noinline int drop_csum_leaves(struct btrfs_trans_handle *trans,
3050 struct btrfs_root *root,
3051 struct btrfs_path *path,
3052 struct inode *inode, u64 new_size)
3053{
3054 struct btrfs_key key;
3055 int ret;
3056 int nritems;
3057 struct btrfs_key found_key;
3058 struct btrfs_key other_key;
Yan Zheng5b84e8d2008-10-09 11:46:19 -04003059 struct btrfs_leaf_ref *ref;
3060 u64 leaf_gen;
3061 u64 leaf_start;
Chris Mason323ac952008-10-01 19:05:46 -04003062
3063 path->lowest_level = 1;
3064 key.objectid = inode->i_ino;
3065 key.type = BTRFS_CSUM_ITEM_KEY;
3066 key.offset = new_size;
3067again:
3068 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
3069 if (ret < 0)
3070 goto out;
3071
3072 if (path->nodes[1] == NULL) {
3073 ret = 0;
3074 goto out;
3075 }
3076 ret = 0;
3077 btrfs_node_key_to_cpu(path->nodes[1], &found_key, path->slots[1]);
3078 nritems = btrfs_header_nritems(path->nodes[1]);
3079
3080 if (!nritems)
3081 goto out;
3082
3083 if (path->slots[1] >= nritems)
3084 goto next_node;
3085
3086 /* did we find a key greater than anything we want to delete? */
3087 if (found_key.objectid > inode->i_ino ||
3088 (found_key.objectid == inode->i_ino && found_key.type > key.type))
3089 goto out;
3090
3091 /* we check the next key in the node to make sure the leave contains
3092 * only checksum items. This comparison doesn't work if our
3093 * leaf is the last one in the node
3094 */
3095 if (path->slots[1] + 1 >= nritems) {
3096next_node:
3097 /* search forward from the last key in the node, this
3098 * will bring us into the next node in the tree
3099 */
3100 btrfs_node_key_to_cpu(path->nodes[1], &found_key, nritems - 1);
3101
3102 /* unlikely, but we inc below, so check to be safe */
3103 if (found_key.offset == (u64)-1)
3104 goto out;
3105
3106 /* search_forward needs a path with locks held, do the
3107 * search again for the original key. It is possible
3108 * this will race with a balance and return a path that
3109 * we could modify, but this drop is just an optimization
3110 * and is allowed to miss some leaves.
3111 */
3112 btrfs_release_path(root, path);
3113 found_key.offset++;
3114
3115 /* setup a max key for search_forward */
3116 other_key.offset = (u64)-1;
3117 other_key.type = key.type;
3118 other_key.objectid = key.objectid;
3119
3120 path->keep_locks = 1;
3121 ret = btrfs_search_forward(root, &found_key, &other_key,
3122 path, 0, 0);
3123 path->keep_locks = 0;
3124 if (ret || found_key.objectid != key.objectid ||
3125 found_key.type != key.type) {
3126 ret = 0;
3127 goto out;
3128 }
3129
3130 key.offset = found_key.offset;
3131 btrfs_release_path(root, path);
3132 cond_resched();
3133 goto again;
3134 }
3135
3136 /* we know there's one more slot after us in the tree,
3137 * read that key so we can verify it is also a checksum item
3138 */
3139 btrfs_node_key_to_cpu(path->nodes[1], &other_key, path->slots[1] + 1);
3140
3141 if (found_key.objectid < inode->i_ino)
3142 goto next_key;
3143
3144 if (found_key.type != key.type || found_key.offset < new_size)
3145 goto next_key;
3146
3147 /*
3148 * if the key for the next leaf isn't a csum key from this objectid,
3149 * we can't be sure there aren't good items inside this leaf.
3150 * Bail out
3151 */
3152 if (other_key.objectid != inode->i_ino || other_key.type != key.type)
3153 goto out;
3154
Yan Zheng5b84e8d2008-10-09 11:46:19 -04003155 leaf_start = btrfs_node_blockptr(path->nodes[1], path->slots[1]);
3156 leaf_gen = btrfs_node_ptr_generation(path->nodes[1], path->slots[1]);
Chris Mason323ac952008-10-01 19:05:46 -04003157 /*
3158 * it is safe to delete this leaf, it contains only
3159 * csum items from this inode at an offset >= new_size
3160 */
Yan Zheng5b84e8d2008-10-09 11:46:19 -04003161 ret = btrfs_del_leaf(trans, root, path, leaf_start);
Chris Mason323ac952008-10-01 19:05:46 -04003162 BUG_ON(ret);
3163
Yan Zheng5b84e8d2008-10-09 11:46:19 -04003164 if (root->ref_cows && leaf_gen < trans->transid) {
3165 ref = btrfs_alloc_leaf_ref(root, 0);
3166 if (ref) {
3167 ref->root_gen = root->root_key.offset;
3168 ref->bytenr = leaf_start;
3169 ref->owner = 0;
3170 ref->generation = leaf_gen;
3171 ref->nritems = 0;
3172
Chris Masonbd56b302009-02-04 09:27:02 -05003173 btrfs_sort_leaf_ref(ref);
3174
Yan Zheng5b84e8d2008-10-09 11:46:19 -04003175 ret = btrfs_add_leaf_ref(root, ref, 0);
3176 WARN_ON(ret);
3177 btrfs_free_leaf_ref(root, ref);
3178 } else {
3179 WARN_ON(1);
3180 }
3181 }
Chris Mason323ac952008-10-01 19:05:46 -04003182next_key:
3183 btrfs_release_path(root, path);
3184
3185 if (other_key.objectid == inode->i_ino &&
3186 other_key.type == key.type && other_key.offset > key.offset) {
3187 key.offset = other_key.offset;
3188 cond_resched();
3189 goto again;
3190 }
3191 ret = 0;
3192out:
3193 /* fixup any changes we've made to the path */
3194 path->lowest_level = 0;
3195 path->keep_locks = 0;
3196 btrfs_release_path(root, path);
3197 return ret;
3198}
3199
Chris Masond20f7042008-12-08 16:58:54 -05003200#endif
3201
Chris Mason323ac952008-10-01 19:05:46 -04003202/*
Chris Mason39279cc2007-06-12 06:35:45 -04003203 * this can truncate away extent items, csum items and directory items.
3204 * It starts at a high offset and removes keys until it can't find
Chris Masond352ac62008-09-29 15:18:18 -04003205 * any higher than new_size
Chris Mason39279cc2007-06-12 06:35:45 -04003206 *
3207 * csum items that cross the new i_size are truncated to the new size
3208 * as well.
Josef Bacik7b128762008-07-24 12:17:14 -04003209 *
3210 * min_type is the minimum key type to truncate down to. If set to 0, this
3211 * will kill all the items on this inode, including the INODE_ITEM_KEY.
Chris Mason39279cc2007-06-12 06:35:45 -04003212 */
Yan, Zheng80825102009-11-12 09:35:36 +00003213int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
3214 struct btrfs_root *root,
3215 struct inode *inode,
3216 u64 new_size, u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04003217{
Chris Mason39279cc2007-06-12 06:35:45 -04003218 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04003219 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003220 struct btrfs_file_extent_item *fi;
Yan, Zheng80825102009-11-12 09:35:36 +00003221 struct btrfs_key key;
3222 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04003223 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04003224 u64 extent_num_bytes = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003225 u64 extent_offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003226 u64 item_end = 0;
Yan, Zheng80825102009-11-12 09:35:36 +00003227 u64 mask = root->sectorsize - 1;
3228 u32 found_type = (u8)-1;
Chris Mason39279cc2007-06-12 06:35:45 -04003229 int found_extent;
3230 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05003231 int pending_del_nr = 0;
3232 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04003233 int extent_type = -1;
Chris Mason771ed682008-11-06 22:02:51 -05003234 int encoding;
Yan, Zheng80825102009-11-12 09:35:36 +00003235 int ret;
3236 int err = 0;
3237
3238 BUG_ON(new_size > 0 && min_type != BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04003239
Josef Bacik0af3d002010-06-21 14:48:16 -04003240 if (root->ref_cows || root == root->fs_info->tree_root)
Zheng Yan5b21f2e2008-09-26 10:05:38 -04003241 btrfs_drop_extent_cache(inode, new_size & (~mask), (u64)-1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003242
Chris Mason39279cc2007-06-12 06:35:45 -04003243 path = btrfs_alloc_path();
3244 BUG_ON(!path);
Julia Lawall33c17ad2009-07-22 16:49:01 -04003245 path->reada = -1;
Chris Mason5f39d392007-10-15 16:14:19 -04003246
Chris Mason39279cc2007-06-12 06:35:45 -04003247 key.objectid = inode->i_ino;
3248 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04003249 key.type = (u8)-1;
3250
Chris Mason85e21ba2008-01-29 15:11:36 -05003251search_again:
Chris Masonb9473432009-03-13 11:00:37 -04003252 path->leave_spinning = 1;
Chris Mason85e21ba2008-01-29 15:11:36 -05003253 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Yan, Zheng80825102009-11-12 09:35:36 +00003254 if (ret < 0) {
3255 err = ret;
3256 goto out;
3257 }
Chris Masond3977122009-01-05 21:25:51 -05003258
Chris Mason85e21ba2008-01-29 15:11:36 -05003259 if (ret > 0) {
Chris Masone02119d2008-09-05 16:13:11 -04003260 /* there are no items in the tree for us to truncate, we're
3261 * done
3262 */
Yan, Zheng80825102009-11-12 09:35:36 +00003263 if (path->slots[0] == 0)
3264 goto out;
Chris Mason85e21ba2008-01-29 15:11:36 -05003265 path->slots[0]--;
3266 }
3267
Chris Masond3977122009-01-05 21:25:51 -05003268 while (1) {
Chris Mason39279cc2007-06-12 06:35:45 -04003269 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04003270 leaf = path->nodes[0];
3271 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3272 found_type = btrfs_key_type(&found_key);
Chris Mason771ed682008-11-06 22:02:51 -05003273 encoding = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003274
Chris Mason5f39d392007-10-15 16:14:19 -04003275 if (found_key.objectid != inode->i_ino)
Chris Mason39279cc2007-06-12 06:35:45 -04003276 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003277
Chris Mason85e21ba2008-01-29 15:11:36 -05003278 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04003279 break;
3280
Chris Mason5f39d392007-10-15 16:14:19 -04003281 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04003282 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04003283 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04003284 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04003285 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Mason771ed682008-11-06 22:02:51 -05003286 encoding = btrfs_file_extent_compression(leaf, fi);
3287 encoding |= btrfs_file_extent_encryption(leaf, fi);
3288 encoding |= btrfs_file_extent_other_encoding(leaf, fi);
3289
Chris Mason179e29e2007-11-01 11:28:41 -04003290 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04003291 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04003292 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -04003293 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason179e29e2007-11-01 11:28:41 -04003294 item_end += btrfs_file_extent_inline_len(leaf,
Chris Masonc8b97812008-10-29 14:49:59 -04003295 fi);
Chris Mason39279cc2007-06-12 06:35:45 -04003296 }
Yan008630c2007-11-07 13:31:09 -05003297 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04003298 }
Yan, Zheng80825102009-11-12 09:35:36 +00003299 if (found_type > min_type) {
Chris Mason39279cc2007-06-12 06:35:45 -04003300 del_item = 1;
Yan, Zheng80825102009-11-12 09:35:36 +00003301 } else {
3302 if (item_end < new_size)
3303 break;
3304 if (found_key.offset >= new_size)
3305 del_item = 1;
3306 else
3307 del_item = 0;
3308 }
Chris Mason39279cc2007-06-12 06:35:45 -04003309 found_extent = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003310 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04003311 if (found_type != BTRFS_EXTENT_DATA_KEY)
3312 goto delete;
3313
3314 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04003315 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04003316 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Chris Mason771ed682008-11-06 22:02:51 -05003317 if (!del_item && !encoding) {
Chris Masondb945352007-10-15 16:15:53 -04003318 u64 orig_num_bytes =
3319 btrfs_file_extent_num_bytes(leaf, fi);
Chris Masone02119d2008-09-05 16:13:11 -04003320 extent_num_bytes = new_size -
Chris Mason5f39d392007-10-15 16:14:19 -04003321 found_key.offset + root->sectorsize - 1;
Yanb1632b102008-01-30 11:54:04 -05003322 extent_num_bytes = extent_num_bytes &
3323 ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -04003324 btrfs_set_file_extent_num_bytes(leaf, fi,
3325 extent_num_bytes);
3326 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05003327 extent_num_bytes);
Chris Masone02119d2008-09-05 16:13:11 -04003328 if (root->ref_cows && extent_start != 0)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003329 inode_sub_bytes(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04003330 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003331 } else {
Chris Masondb945352007-10-15 16:15:53 -04003332 extent_num_bytes =
3333 btrfs_file_extent_disk_num_bytes(leaf,
3334 fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003335 extent_offset = found_key.offset -
3336 btrfs_file_extent_offset(leaf, fi);
3337
Chris Mason39279cc2007-06-12 06:35:45 -04003338 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05003339 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04003340 if (extent_start != 0) {
3341 found_extent = 1;
Chris Masone02119d2008-09-05 16:13:11 -04003342 if (root->ref_cows)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003343 inode_sub_bytes(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04003344 }
3345 }
Chris Mason90692182008-02-08 13:49:28 -05003346 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003347 /*
3348 * we can't truncate inline items that have had
3349 * special encodings
3350 */
3351 if (!del_item &&
3352 btrfs_file_extent_compression(leaf, fi) == 0 &&
3353 btrfs_file_extent_encryption(leaf, fi) == 0 &&
3354 btrfs_file_extent_other_encoding(leaf, fi) == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04003355 u32 size = new_size - found_key.offset;
3356
3357 if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003358 inode_sub_bytes(inode, item_end + 1 -
3359 new_size);
Chris Masone02119d2008-09-05 16:13:11 -04003360 }
3361 size =
3362 btrfs_file_extent_calc_inline_size(size);
Chris Mason90692182008-02-08 13:49:28 -05003363 ret = btrfs_truncate_item(trans, root, path,
Chris Masone02119d2008-09-05 16:13:11 -04003364 size, 1);
Chris Mason90692182008-02-08 13:49:28 -05003365 BUG_ON(ret);
Chris Masone02119d2008-09-05 16:13:11 -04003366 } else if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003367 inode_sub_bytes(inode, item_end + 1 -
3368 found_key.offset);
Chris Mason90692182008-02-08 13:49:28 -05003369 }
Chris Mason39279cc2007-06-12 06:35:45 -04003370 }
Chris Mason179e29e2007-11-01 11:28:41 -04003371delete:
Chris Mason39279cc2007-06-12 06:35:45 -04003372 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05003373 if (!pending_del_nr) {
3374 /* no pending yet, add ourselves */
3375 pending_del_slot = path->slots[0];
3376 pending_del_nr = 1;
3377 } else if (pending_del_nr &&
3378 path->slots[0] + 1 == pending_del_slot) {
3379 /* hop on the pending chunk */
3380 pending_del_nr++;
3381 pending_del_slot = path->slots[0];
3382 } else {
Chris Masond3977122009-01-05 21:25:51 -05003383 BUG();
Chris Mason85e21ba2008-01-29 15:11:36 -05003384 }
Chris Mason39279cc2007-06-12 06:35:45 -04003385 } else {
3386 break;
3387 }
Josef Bacik0af3d002010-06-21 14:48:16 -04003388 if (found_extent && (root->ref_cows ||
3389 root == root->fs_info->tree_root)) {
Chris Masonb9473432009-03-13 11:00:37 -04003390 btrfs_set_path_blocking(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003391 ret = btrfs_free_extent(trans, root, extent_start,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003392 extent_num_bytes, 0,
3393 btrfs_header_owner(leaf),
3394 inode->i_ino, extent_offset);
Chris Mason39279cc2007-06-12 06:35:45 -04003395 BUG_ON(ret);
3396 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003397
Yan, Zheng80825102009-11-12 09:35:36 +00003398 if (found_type == BTRFS_INODE_ITEM_KEY)
3399 break;
3400
3401 if (path->slots[0] == 0 ||
3402 path->slots[0] != pending_del_slot) {
3403 if (root->ref_cows) {
3404 err = -EAGAIN;
3405 goto out;
3406 }
3407 if (pending_del_nr) {
3408 ret = btrfs_del_items(trans, root, path,
3409 pending_del_slot,
3410 pending_del_nr);
3411 BUG_ON(ret);
3412 pending_del_nr = 0;
3413 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003414 btrfs_release_path(root, path);
3415 goto search_again;
Yan, Zheng80825102009-11-12 09:35:36 +00003416 } else {
3417 path->slots[0]--;
Chris Mason85e21ba2008-01-29 15:11:36 -05003418 }
Chris Mason39279cc2007-06-12 06:35:45 -04003419 }
Yan, Zheng80825102009-11-12 09:35:36 +00003420out:
Chris Mason85e21ba2008-01-29 15:11:36 -05003421 if (pending_del_nr) {
3422 ret = btrfs_del_items(trans, root, path, pending_del_slot,
3423 pending_del_nr);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003424 BUG_ON(ret);
Chris Mason85e21ba2008-01-29 15:11:36 -05003425 }
Chris Mason39279cc2007-06-12 06:35:45 -04003426 btrfs_free_path(path);
Yan, Zheng80825102009-11-12 09:35:36 +00003427 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003428}
3429
Chris Masona52d9a82007-08-27 16:49:44 -04003430/*
3431 * taken from block_truncate_page, but does cow as it zeros out
3432 * any bytes left in the last page in the file.
3433 */
3434static int btrfs_truncate_page(struct address_space *mapping, loff_t from)
3435{
3436 struct inode *inode = mapping->host;
Chris Masondb945352007-10-15 16:15:53 -04003437 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003438 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
3439 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003440 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003441 char *kaddr;
Chris Masondb945352007-10-15 16:15:53 -04003442 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -04003443 pgoff_t index = from >> PAGE_CACHE_SHIFT;
3444 unsigned offset = from & (PAGE_CACHE_SIZE-1);
3445 struct page *page;
3446 int ret = 0;
3447 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003448 u64 page_end;
Chris Masona52d9a82007-08-27 16:49:44 -04003449
3450 if ((offset & (blocksize - 1)) == 0)
3451 goto out;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003452 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003453 if (ret)
3454 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04003455
3456 ret = -ENOMEM;
Chris Mason211c17f2008-05-15 09:13:45 -04003457again:
Chris Masona52d9a82007-08-27 16:49:44 -04003458 page = grab_cache_page(mapping, index);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003459 if (!page) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003460 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Masona52d9a82007-08-27 16:49:44 -04003461 goto out;
Josef Bacik5d5e1032009-10-13 16:46:49 -04003462 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04003463
3464 page_start = page_offset(page);
3465 page_end = page_start + PAGE_CACHE_SIZE - 1;
3466
Chris Masona52d9a82007-08-27 16:49:44 -04003467 if (!PageUptodate(page)) {
3468 ret = btrfs_readpage(NULL, page);
3469 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04003470 if (page->mapping != mapping) {
3471 unlock_page(page);
3472 page_cache_release(page);
3473 goto again;
3474 }
Chris Masona52d9a82007-08-27 16:49:44 -04003475 if (!PageUptodate(page)) {
3476 ret = -EIO;
Chris Mason89642222008-07-24 09:41:53 -04003477 goto out_unlock;
Chris Masona52d9a82007-08-27 16:49:44 -04003478 }
3479 }
Chris Mason211c17f2008-05-15 09:13:45 -04003480 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003481
Josef Bacik2ac55d42010-02-03 19:33:23 +00003482 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state,
3483 GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003484 set_page_extent_mapped(page);
3485
3486 ordered = btrfs_lookup_ordered_extent(inode, page_start);
3487 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00003488 unlock_extent_cached(io_tree, page_start, page_end,
3489 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003490 unlock_page(page);
3491 page_cache_release(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04003492 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003493 btrfs_put_ordered_extent(ordered);
3494 goto again;
3495 }
3496
Josef Bacik2ac55d42010-02-03 19:33:23 +00003497 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Josef Bacik5d5e1032009-10-13 16:46:49 -04003498 EXTENT_DIRTY | EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00003499 0, 0, &cached_state, GFP_NOFS);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003500
Josef Bacik2ac55d42010-02-03 19:33:23 +00003501 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
3502 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003503 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00003504 unlock_extent_cached(io_tree, page_start, page_end,
3505 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003506 goto out_unlock;
3507 }
3508
Chris Masone6dcd2d2008-07-17 12:53:50 -04003509 ret = 0;
3510 if (offset != PAGE_CACHE_SIZE) {
3511 kaddr = kmap(page);
3512 memset(kaddr + offset, 0, PAGE_CACHE_SIZE - offset);
3513 flush_dcache_page(page);
3514 kunmap(page);
3515 }
Chris Mason247e7432008-07-17 12:53:51 -04003516 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003517 set_page_dirty(page);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003518 unlock_extent_cached(io_tree, page_start, page_end, &cached_state,
3519 GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04003520
Chris Mason89642222008-07-24 09:41:53 -04003521out_unlock:
Josef Bacik5d5e1032009-10-13 16:46:49 -04003522 if (ret)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003523 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Mason39279cc2007-06-12 06:35:45 -04003524 unlock_page(page);
3525 page_cache_release(page);
3526out:
3527 return ret;
3528}
3529
Yan Zheng9036c102008-10-30 14:19:41 -04003530int btrfs_cont_expand(struct inode *inode, loff_t size)
3531{
3532 struct btrfs_trans_handle *trans;
3533 struct btrfs_root *root = BTRFS_I(inode)->root;
3534 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003535 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003536 struct extent_state *cached_state = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04003537 u64 mask = root->sectorsize - 1;
3538 u64 hole_start = (inode->i_size + mask) & ~mask;
3539 u64 block_end = (size + mask) & ~mask;
3540 u64 last_byte;
3541 u64 cur_offset;
3542 u64 hole_size;
Josef Bacik9ed74f22009-09-11 16:12:44 -04003543 int err = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04003544
3545 if (size <= hole_start)
3546 return 0;
3547
Yan Zheng9036c102008-10-30 14:19:41 -04003548 while (1) {
3549 struct btrfs_ordered_extent *ordered;
3550 btrfs_wait_ordered_range(inode, hole_start,
3551 block_end - hole_start);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003552 lock_extent_bits(io_tree, hole_start, block_end - 1, 0,
3553 &cached_state, GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003554 ordered = btrfs_lookup_ordered_extent(inode, hole_start);
3555 if (!ordered)
3556 break;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003557 unlock_extent_cached(io_tree, hole_start, block_end - 1,
3558 &cached_state, GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003559 btrfs_put_ordered_extent(ordered);
3560 }
3561
Yan Zheng9036c102008-10-30 14:19:41 -04003562 cur_offset = hole_start;
3563 while (1) {
3564 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
3565 block_end - cur_offset, 0);
3566 BUG_ON(IS_ERR(em) || !em);
3567 last_byte = min(extent_map_end(em), block_end);
3568 last_byte = (last_byte + mask) & ~mask;
Yan, Zheng80825102009-11-12 09:35:36 +00003569 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
Chris Mason771ed682008-11-06 22:02:51 -05003570 u64 hint_byte = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04003571 hole_size = last_byte - cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00003572
Yan, Zhenga22285a2010-05-16 10:48:46 -04003573 trans = btrfs_start_transaction(root, 2);
3574 if (IS_ERR(trans)) {
3575 err = PTR_ERR(trans);
Chris Mason771ed682008-11-06 22:02:51 -05003576 break;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003577 }
Yan, Zheng80825102009-11-12 09:35:36 +00003578 btrfs_set_trans_block_group(trans, inode);
3579
3580 err = btrfs_drop_extents(trans, inode, cur_offset,
3581 cur_offset + hole_size,
3582 &hint_byte, 1);
3583 BUG_ON(err);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003584
Yan Zheng9036c102008-10-30 14:19:41 -04003585 err = btrfs_insert_file_extent(trans, root,
3586 inode->i_ino, cur_offset, 0,
3587 0, hole_size, 0, hole_size,
3588 0, 0, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003589 BUG_ON(err);
3590
Yan Zheng9036c102008-10-30 14:19:41 -04003591 btrfs_drop_extent_cache(inode, hole_start,
3592 last_byte - 1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003593
3594 btrfs_end_transaction(trans, root);
Yan Zheng9036c102008-10-30 14:19:41 -04003595 }
3596 free_extent_map(em);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003597 em = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04003598 cur_offset = last_byte;
Yan, Zheng80825102009-11-12 09:35:36 +00003599 if (cur_offset >= block_end)
Yan Zheng9036c102008-10-30 14:19:41 -04003600 break;
3601 }
3602
Yan, Zhenga22285a2010-05-16 10:48:46 -04003603 free_extent_map(em);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003604 unlock_extent_cached(io_tree, hole_start, block_end - 1, &cached_state,
3605 GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003606 return err;
3607}
3608
Yan, Zheng80825102009-11-12 09:35:36 +00003609static int btrfs_setattr_size(struct inode *inode, struct iattr *attr)
3610{
3611 struct btrfs_root *root = BTRFS_I(inode)->root;
3612 struct btrfs_trans_handle *trans;
3613 unsigned long nr;
3614 int ret;
3615
3616 if (attr->ia_size == inode->i_size)
3617 return 0;
3618
3619 if (attr->ia_size > inode->i_size) {
3620 unsigned long limit;
3621 limit = current->signal->rlim[RLIMIT_FSIZE].rlim_cur;
3622 if (attr->ia_size > inode->i_sb->s_maxbytes)
3623 return -EFBIG;
3624 if (limit != RLIM_INFINITY && attr->ia_size > limit) {
3625 send_sig(SIGXFSZ, current, 0);
3626 return -EFBIG;
3627 }
3628 }
3629
Yan, Zhengd68fc572010-05-16 10:49:58 -04003630 trans = btrfs_start_transaction(root, 5);
3631 if (IS_ERR(trans))
3632 return PTR_ERR(trans);
Yan, Zheng80825102009-11-12 09:35:36 +00003633
Yan, Zheng80825102009-11-12 09:35:36 +00003634 btrfs_set_trans_block_group(trans, inode);
3635
3636 ret = btrfs_orphan_add(trans, inode);
3637 BUG_ON(ret);
3638
3639 nr = trans->blocks_used;
3640 btrfs_end_transaction(trans, root);
Yan, Zheng80825102009-11-12 09:35:36 +00003641 btrfs_btree_balance_dirty(root, nr);
3642
3643 if (attr->ia_size > inode->i_size) {
3644 ret = btrfs_cont_expand(inode, attr->ia_size);
3645 if (ret) {
3646 btrfs_truncate(inode);
3647 return ret;
3648 }
3649
3650 i_size_write(inode, attr->ia_size);
3651 btrfs_ordered_update_i_size(inode, inode->i_size, NULL);
3652
Yan, Zhengd68fc572010-05-16 10:49:58 -04003653 trans = btrfs_start_transaction(root, 0);
3654 BUG_ON(IS_ERR(trans));
Yan, Zheng80825102009-11-12 09:35:36 +00003655 btrfs_set_trans_block_group(trans, inode);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003656 trans->block_rsv = root->orphan_block_rsv;
3657 BUG_ON(!trans->block_rsv);
Yan, Zheng80825102009-11-12 09:35:36 +00003658
3659 ret = btrfs_update_inode(trans, root, inode);
3660 BUG_ON(ret);
3661 if (inode->i_nlink > 0) {
3662 ret = btrfs_orphan_del(trans, inode);
3663 BUG_ON(ret);
3664 }
3665 nr = trans->blocks_used;
3666 btrfs_end_transaction(trans, root);
3667 btrfs_btree_balance_dirty(root, nr);
3668 return 0;
3669 }
3670
3671 /*
3672 * We're truncating a file that used to have good data down to
3673 * zero. Make sure it gets into the ordered flush list so that
3674 * any new writes get down to disk quickly.
3675 */
3676 if (attr->ia_size == 0)
3677 BTRFS_I(inode)->ordered_data_close = 1;
3678
3679 /* we don't support swapfiles, so vmtruncate shouldn't fail */
3680 ret = vmtruncate(inode, attr->ia_size);
3681 BUG_ON(ret);
3682
3683 return 0;
3684}
3685
Chris Mason39279cc2007-06-12 06:35:45 -04003686static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
3687{
3688 struct inode *inode = dentry->d_inode;
3689 int err;
3690
3691 err = inode_change_ok(inode, attr);
3692 if (err)
3693 return err;
3694
Chris Mason5a3f23d2009-03-31 13:27:11 -04003695 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
Yan, Zheng80825102009-11-12 09:35:36 +00003696 err = btrfs_setattr_size(inode, attr);
3697 if (err)
3698 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003699 }
Yan Zheng9036c102008-10-30 14:19:41 -04003700
Christoph Hellwig10257742010-06-04 11:30:02 +02003701 if (attr->ia_valid) {
3702 setattr_copy(inode, attr);
3703 mark_inode_dirty(inode);
Josef Bacik33268ea2008-07-24 12:16:36 -04003704
Christoph Hellwig10257742010-06-04 11:30:02 +02003705 if (attr->ia_valid & ATTR_MODE)
3706 err = btrfs_acl_chmod(inode);
3707 }
3708
Chris Mason39279cc2007-06-12 06:35:45 -04003709 return err;
3710}
Chris Mason61295eb2008-01-14 16:24:38 -05003711
Al Virobd555972010-06-07 11:35:40 -04003712void btrfs_evict_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04003713{
3714 struct btrfs_trans_handle *trans;
3715 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond3c2fdc2007-09-17 10:58:06 -04003716 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04003717 int ret;
3718
3719 truncate_inode_pages(&inode->i_data, 0);
Josef Bacik0af3d002010-06-21 14:48:16 -04003720 if (inode->i_nlink && (btrfs_root_refs(&root->root_item) != 0 ||
3721 root == root->fs_info->tree_root))
Al Virobd555972010-06-07 11:35:40 -04003722 goto no_delete;
3723
Chris Mason39279cc2007-06-12 06:35:45 -04003724 if (is_bad_inode(inode)) {
Josef Bacik7b128762008-07-24 12:17:14 -04003725 btrfs_orphan_del(NULL, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003726 goto no_delete;
3727 }
Al Virobd555972010-06-07 11:35:40 -04003728 /* do we really want it for ->i_nlink > 0 and zero btrfs_root_refs? */
Chris Mason4a096752008-07-21 10:29:44 -04003729 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Chris Mason5f39d392007-10-15 16:14:19 -04003730
Yan, Zhengc71bf092009-11-12 09:34:40 +00003731 if (root->fs_info->log_root_recovering) {
3732 BUG_ON(!list_empty(&BTRFS_I(inode)->i_orphan));
3733 goto no_delete;
3734 }
3735
Yan, Zheng76dda932009-09-21 16:00:26 -04003736 if (inode->i_nlink > 0) {
3737 BUG_ON(btrfs_root_refs(&root->root_item) != 0);
3738 goto no_delete;
3739 }
3740
Chris Masondbe674a2008-07-17 12:54:05 -04003741 btrfs_i_size_write(inode, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003742
Yan, Zheng80825102009-11-12 09:35:36 +00003743 while (1) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04003744 trans = btrfs_start_transaction(root, 0);
3745 BUG_ON(IS_ERR(trans));
Yan, Zheng80825102009-11-12 09:35:36 +00003746 btrfs_set_trans_block_group(trans, inode);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003747 trans->block_rsv = root->orphan_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00003748
Yan, Zhengd68fc572010-05-16 10:49:58 -04003749 ret = btrfs_block_rsv_check(trans, root,
3750 root->orphan_block_rsv, 0, 5);
3751 if (ret) {
3752 BUG_ON(ret != -EAGAIN);
3753 ret = btrfs_commit_transaction(trans, root);
3754 BUG_ON(ret);
3755 continue;
3756 }
3757
3758 ret = btrfs_truncate_inode_items(trans, root, inode, 0, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003759 if (ret != -EAGAIN)
3760 break;
3761
3762 nr = trans->blocks_used;
3763 btrfs_end_transaction(trans, root);
3764 trans = NULL;
3765 btrfs_btree_balance_dirty(root, nr);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003766
Josef Bacik7b128762008-07-24 12:17:14 -04003767 }
3768
Yan, Zheng80825102009-11-12 09:35:36 +00003769 if (ret == 0) {
3770 ret = btrfs_orphan_del(trans, inode);
3771 BUG_ON(ret);
3772 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003773
Chris Masond3c2fdc2007-09-17 10:58:06 -04003774 nr = trans->blocks_used;
Chris Mason54aa1f42007-06-22 14:16:25 -04003775 btrfs_end_transaction(trans, root);
Chris Masond3c2fdc2007-09-17 10:58:06 -04003776 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003777no_delete:
Al Virobd555972010-06-07 11:35:40 -04003778 end_writeback(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003779 return;
Chris Mason39279cc2007-06-12 06:35:45 -04003780}
3781
3782/*
3783 * this returns the key found in the dir entry in the location pointer.
3784 * If no dir entries were found, location->objectid is 0.
3785 */
3786static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
3787 struct btrfs_key *location)
3788{
3789 const char *name = dentry->d_name.name;
3790 int namelen = dentry->d_name.len;
3791 struct btrfs_dir_item *di;
3792 struct btrfs_path *path;
3793 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04003794 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003795
3796 path = btrfs_alloc_path();
3797 BUG_ON(!path);
Chris Mason39544012007-12-12 14:38:19 -05003798
Chris Mason39279cc2007-06-12 06:35:45 -04003799 di = btrfs_lookup_dir_item(NULL, root, path, dir->i_ino, name,
3800 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04003801 if (IS_ERR(di))
3802 ret = PTR_ERR(di);
Chris Masond3977122009-01-05 21:25:51 -05003803
3804 if (!di || IS_ERR(di))
Chris Mason39544012007-12-12 14:38:19 -05003805 goto out_err;
Chris Masond3977122009-01-05 21:25:51 -05003806
Chris Mason5f39d392007-10-15 16:14:19 -04003807 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04003808out:
Chris Mason39279cc2007-06-12 06:35:45 -04003809 btrfs_free_path(path);
3810 return ret;
Chris Mason39544012007-12-12 14:38:19 -05003811out_err:
3812 location->objectid = 0;
3813 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04003814}
3815
3816/*
3817 * when we hit a tree root in a directory, the btrfs part of the inode
3818 * needs to be changed to reflect the root directory of the tree root. This
3819 * is kind of like crossing a mount point.
3820 */
3821static int fixup_tree_root_location(struct btrfs_root *root,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003822 struct inode *dir,
3823 struct dentry *dentry,
3824 struct btrfs_key *location,
3825 struct btrfs_root **sub_root)
Chris Mason39279cc2007-06-12 06:35:45 -04003826{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003827 struct btrfs_path *path;
3828 struct btrfs_root *new_root;
3829 struct btrfs_root_ref *ref;
3830 struct extent_buffer *leaf;
3831 int ret;
3832 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003833
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003834 path = btrfs_alloc_path();
3835 if (!path) {
3836 err = -ENOMEM;
3837 goto out;
3838 }
Chris Mason39279cc2007-06-12 06:35:45 -04003839
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003840 err = -ENOENT;
3841 ret = btrfs_find_root_ref(root->fs_info->tree_root, path,
3842 BTRFS_I(dir)->root->root_key.objectid,
3843 location->objectid);
3844 if (ret) {
3845 if (ret < 0)
3846 err = ret;
3847 goto out;
3848 }
Chris Mason39279cc2007-06-12 06:35:45 -04003849
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003850 leaf = path->nodes[0];
3851 ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref);
3852 if (btrfs_root_ref_dirid(leaf, ref) != dir->i_ino ||
3853 btrfs_root_ref_name_len(leaf, ref) != dentry->d_name.len)
3854 goto out;
3855
3856 ret = memcmp_extent_buffer(leaf, dentry->d_name.name,
3857 (unsigned long)(ref + 1),
3858 dentry->d_name.len);
3859 if (ret)
3860 goto out;
3861
3862 btrfs_release_path(root->fs_info->tree_root, path);
3863
3864 new_root = btrfs_read_fs_root_no_name(root->fs_info, location);
3865 if (IS_ERR(new_root)) {
3866 err = PTR_ERR(new_root);
3867 goto out;
3868 }
3869
3870 if (btrfs_root_refs(&new_root->root_item) == 0) {
3871 err = -ENOENT;
3872 goto out;
3873 }
3874
3875 *sub_root = new_root;
3876 location->objectid = btrfs_root_dirid(&new_root->root_item);
3877 location->type = BTRFS_INODE_ITEM_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -04003878 location->offset = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003879 err = 0;
3880out:
3881 btrfs_free_path(path);
3882 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003883}
3884
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003885static void inode_tree_add(struct inode *inode)
3886{
3887 struct btrfs_root *root = BTRFS_I(inode)->root;
3888 struct btrfs_inode *entry;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003889 struct rb_node **p;
3890 struct rb_node *parent;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003891again:
3892 p = &root->inode_tree.rb_node;
3893 parent = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003894
Yan, Zheng76dda932009-09-21 16:00:26 -04003895 if (hlist_unhashed(&inode->i_hash))
3896 return;
3897
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003898 spin_lock(&root->inode_lock);
3899 while (*p) {
3900 parent = *p;
3901 entry = rb_entry(parent, struct btrfs_inode, rb_node);
3902
3903 if (inode->i_ino < entry->vfs_inode.i_ino)
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003904 p = &parent->rb_left;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003905 else if (inode->i_ino > entry->vfs_inode.i_ino)
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003906 p = &parent->rb_right;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003907 else {
3908 WARN_ON(!(entry->vfs_inode.i_state &
Al Viroa4ffdde2010-06-02 17:38:30 -04003909 (I_WILL_FREE | I_FREEING)));
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003910 rb_erase(parent, &root->inode_tree);
3911 RB_CLEAR_NODE(parent);
3912 spin_unlock(&root->inode_lock);
3913 goto again;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003914 }
3915 }
3916 rb_link_node(&BTRFS_I(inode)->rb_node, parent, p);
3917 rb_insert_color(&BTRFS_I(inode)->rb_node, &root->inode_tree);
3918 spin_unlock(&root->inode_lock);
3919}
3920
3921static void inode_tree_del(struct inode *inode)
3922{
3923 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -04003924 int empty = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003925
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003926 spin_lock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003927 if (!RB_EMPTY_NODE(&BTRFS_I(inode)->rb_node)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003928 rb_erase(&BTRFS_I(inode)->rb_node, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003929 RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node);
Yan, Zheng76dda932009-09-21 16:00:26 -04003930 empty = RB_EMPTY_ROOT(&root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003931 }
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003932 spin_unlock(&root->inode_lock);
Yan, Zheng76dda932009-09-21 16:00:26 -04003933
Josef Bacik0af3d002010-06-21 14:48:16 -04003934 /*
3935 * Free space cache has inodes in the tree root, but the tree root has a
3936 * root_refs of 0, so this could end up dropping the tree root as a
3937 * snapshot, so we need the extra !root->fs_info->tree_root check to
3938 * make sure we don't drop it.
3939 */
3940 if (empty && btrfs_root_refs(&root->root_item) == 0 &&
3941 root != root->fs_info->tree_root) {
Yan, Zheng76dda932009-09-21 16:00:26 -04003942 synchronize_srcu(&root->fs_info->subvol_srcu);
3943 spin_lock(&root->inode_lock);
3944 empty = RB_EMPTY_ROOT(&root->inode_tree);
3945 spin_unlock(&root->inode_lock);
3946 if (empty)
3947 btrfs_add_dead_root(root);
3948 }
3949}
3950
3951int btrfs_invalidate_inodes(struct btrfs_root *root)
3952{
3953 struct rb_node *node;
3954 struct rb_node *prev;
3955 struct btrfs_inode *entry;
3956 struct inode *inode;
3957 u64 objectid = 0;
3958
3959 WARN_ON(btrfs_root_refs(&root->root_item) != 0);
3960
3961 spin_lock(&root->inode_lock);
3962again:
3963 node = root->inode_tree.rb_node;
3964 prev = NULL;
3965 while (node) {
3966 prev = node;
3967 entry = rb_entry(node, struct btrfs_inode, rb_node);
3968
3969 if (objectid < entry->vfs_inode.i_ino)
3970 node = node->rb_left;
3971 else if (objectid > entry->vfs_inode.i_ino)
3972 node = node->rb_right;
3973 else
3974 break;
3975 }
3976 if (!node) {
3977 while (prev) {
3978 entry = rb_entry(prev, struct btrfs_inode, rb_node);
3979 if (objectid <= entry->vfs_inode.i_ino) {
3980 node = prev;
3981 break;
3982 }
3983 prev = rb_next(prev);
3984 }
3985 }
3986 while (node) {
3987 entry = rb_entry(node, struct btrfs_inode, rb_node);
3988 objectid = entry->vfs_inode.i_ino + 1;
3989 inode = igrab(&entry->vfs_inode);
3990 if (inode) {
3991 spin_unlock(&root->inode_lock);
3992 if (atomic_read(&inode->i_count) > 1)
3993 d_prune_aliases(inode);
3994 /*
Al Viro45321ac2010-06-07 13:43:19 -04003995 * btrfs_drop_inode will have it removed from
Yan, Zheng76dda932009-09-21 16:00:26 -04003996 * the inode cache when its usage count
3997 * hits zero.
3998 */
3999 iput(inode);
4000 cond_resched();
4001 spin_lock(&root->inode_lock);
4002 goto again;
4003 }
4004
4005 if (cond_resched_lock(&root->inode_lock))
4006 goto again;
4007
4008 node = rb_next(node);
4009 }
4010 spin_unlock(&root->inode_lock);
4011 return 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004012}
4013
Chris Masone02119d2008-09-05 16:13:11 -04004014static int btrfs_init_locked_inode(struct inode *inode, void *p)
4015{
4016 struct btrfs_iget_args *args = p;
4017 inode->i_ino = args->ino;
Chris Masone02119d2008-09-05 16:13:11 -04004018 BTRFS_I(inode)->root = args->root;
Josef Bacik6a632092009-02-20 11:00:09 -05004019 btrfs_set_inode_space_info(args->root, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004020 return 0;
4021}
4022
4023static int btrfs_find_actor(struct inode *inode, void *opaque)
4024{
4025 struct btrfs_iget_args *args = opaque;
Chris Masond3977122009-01-05 21:25:51 -05004026 return args->ino == inode->i_ino &&
4027 args->root == BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004028}
4029
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004030static struct inode *btrfs_iget_locked(struct super_block *s,
4031 u64 objectid,
4032 struct btrfs_root *root)
Chris Mason39279cc2007-06-12 06:35:45 -04004033{
4034 struct inode *inode;
4035 struct btrfs_iget_args args;
4036 args.ino = objectid;
4037 args.root = root;
4038
4039 inode = iget5_locked(s, objectid, btrfs_find_actor,
4040 btrfs_init_locked_inode,
4041 (void *)&args);
4042 return inode;
4043}
4044
Balaji Rao1a54ef82008-07-21 02:01:04 +05304045/* Get an inode object given its location and corresponding root.
4046 * Returns in *is_new if the inode was read from disk
4047 */
4048struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
Josef Bacik73f73412009-12-04 17:38:27 +00004049 struct btrfs_root *root, int *new)
Balaji Rao1a54ef82008-07-21 02:01:04 +05304050{
4051 struct inode *inode;
4052
4053 inode = btrfs_iget_locked(s, location->objectid, root);
4054 if (!inode)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004055 return ERR_PTR(-ENOMEM);
Balaji Rao1a54ef82008-07-21 02:01:04 +05304056
4057 if (inode->i_state & I_NEW) {
4058 BTRFS_I(inode)->root = root;
4059 memcpy(&BTRFS_I(inode)->location, location, sizeof(*location));
4060 btrfs_read_locked_inode(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004061
4062 inode_tree_add(inode);
Balaji Rao1a54ef82008-07-21 02:01:04 +05304063 unlock_new_inode(inode);
Josef Bacik73f73412009-12-04 17:38:27 +00004064 if (new)
4065 *new = 1;
Balaji Rao1a54ef82008-07-21 02:01:04 +05304066 }
4067
4068 return inode;
4069}
4070
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004071static struct inode *new_simple_dir(struct super_block *s,
4072 struct btrfs_key *key,
4073 struct btrfs_root *root)
4074{
4075 struct inode *inode = new_inode(s);
4076
4077 if (!inode)
4078 return ERR_PTR(-ENOMEM);
4079
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004080 BTRFS_I(inode)->root = root;
4081 memcpy(&BTRFS_I(inode)->location, key, sizeof(*key));
4082 BTRFS_I(inode)->dummy_inode = 1;
4083
4084 inode->i_ino = BTRFS_EMPTY_SUBVOL_DIR_OBJECTID;
4085 inode->i_op = &simple_dir_inode_operations;
4086 inode->i_fop = &simple_dir_operations;
4087 inode->i_mode = S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO;
4088 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
4089
4090 return inode;
4091}
4092
Chris Mason3de45862008-11-17 21:02:50 -05004093struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04004094{
Chris Masond3977122009-01-05 21:25:51 -05004095 struct inode *inode;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004096 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004097 struct btrfs_root *sub_root = root;
4098 struct btrfs_key location;
Yan, Zheng76dda932009-09-21 16:00:26 -04004099 int index;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004100 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004101
Yan, Zheng76dda932009-09-21 16:00:26 -04004102 dentry->d_op = &btrfs_dentry_operations;
4103
Chris Mason39279cc2007-06-12 06:35:45 -04004104 if (dentry->d_name.len > BTRFS_NAME_LEN)
4105 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04004106
Chris Mason39279cc2007-06-12 06:35:45 -04004107 ret = btrfs_inode_by_name(dir, dentry, &location);
Chris Mason5f39d392007-10-15 16:14:19 -04004108
Chris Mason39279cc2007-06-12 06:35:45 -04004109 if (ret < 0)
4110 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04004111
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004112 if (location.objectid == 0)
4113 return NULL;
4114
4115 if (location.type == BTRFS_INODE_ITEM_KEY) {
Josef Bacik73f73412009-12-04 17:38:27 +00004116 inode = btrfs_iget(dir->i_sb, &location, root, NULL);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004117 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04004118 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004119
4120 BUG_ON(location.type != BTRFS_ROOT_ITEM_KEY);
4121
Yan, Zheng76dda932009-09-21 16:00:26 -04004122 index = srcu_read_lock(&root->fs_info->subvol_srcu);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004123 ret = fixup_tree_root_location(root, dir, dentry,
4124 &location, &sub_root);
4125 if (ret < 0) {
4126 if (ret != -ENOENT)
4127 inode = ERR_PTR(ret);
4128 else
4129 inode = new_simple_dir(dir->i_sb, &location, sub_root);
4130 } else {
Josef Bacik73f73412009-12-04 17:38:27 +00004131 inode = btrfs_iget(dir->i_sb, &location, sub_root, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04004132 }
Yan, Zheng76dda932009-09-21 16:00:26 -04004133 srcu_read_unlock(&root->fs_info->subvol_srcu, index);
4134
Yan, Zhengc71bf092009-11-12 09:34:40 +00004135 if (root != sub_root) {
4136 down_read(&root->fs_info->cleanup_work_sem);
4137 if (!(inode->i_sb->s_flags & MS_RDONLY))
4138 btrfs_orphan_cleanup(sub_root);
4139 up_read(&root->fs_info->cleanup_work_sem);
4140 }
4141
Chris Mason3de45862008-11-17 21:02:50 -05004142 return inode;
4143}
4144
Yan, Zheng76dda932009-09-21 16:00:26 -04004145static int btrfs_dentry_delete(struct dentry *dentry)
4146{
4147 struct btrfs_root *root;
4148
Yan, Zhengefefb142009-10-09 09:25:16 -04004149 if (!dentry->d_inode && !IS_ROOT(dentry))
4150 dentry = dentry->d_parent;
Yan, Zheng76dda932009-09-21 16:00:26 -04004151
Yan, Zhengefefb142009-10-09 09:25:16 -04004152 if (dentry->d_inode) {
4153 root = BTRFS_I(dentry->d_inode)->root;
4154 if (btrfs_root_refs(&root->root_item) == 0)
4155 return 1;
4156 }
Yan, Zheng76dda932009-09-21 16:00:26 -04004157 return 0;
4158}
4159
Chris Mason3de45862008-11-17 21:02:50 -05004160static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
4161 struct nameidata *nd)
4162{
4163 struct inode *inode;
4164
Chris Mason3de45862008-11-17 21:02:50 -05004165 inode = btrfs_lookup_dentry(dir, dentry);
4166 if (IS_ERR(inode))
4167 return ERR_CAST(inode);
Josef Bacik7b128762008-07-24 12:17:14 -04004168
Chris Mason39279cc2007-06-12 06:35:45 -04004169 return d_splice_alias(inode, dentry);
4170}
4171
Chris Mason39279cc2007-06-12 06:35:45 -04004172static unsigned char btrfs_filetype_table[] = {
4173 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
4174};
4175
David Woodhousecbdf5a22008-08-06 19:42:33 +01004176static int btrfs_real_readdir(struct file *filp, void *dirent,
4177 filldir_t filldir)
Chris Mason39279cc2007-06-12 06:35:45 -04004178{
Chris Mason6da6aba2007-12-18 16:15:09 -05004179 struct inode *inode = filp->f_dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04004180 struct btrfs_root *root = BTRFS_I(inode)->root;
4181 struct btrfs_item *item;
4182 struct btrfs_dir_item *di;
4183 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04004184 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04004185 struct btrfs_path *path;
4186 int ret;
4187 u32 nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04004188 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04004189 int slot;
4190 int advance;
4191 unsigned char d_type;
4192 int over = 0;
4193 u32 di_cur;
4194 u32 di_total;
4195 u32 di_len;
4196 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04004197 char tmp_name[32];
4198 char *name_ptr;
4199 int name_len;
Chris Mason39279cc2007-06-12 06:35:45 -04004200
4201 /* FIXME, use a real flag for deciding about the key type */
4202 if (root->fs_info->tree_root == root)
4203 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04004204
Chris Mason39544012007-12-12 14:38:19 -05004205 /* special case for "." */
4206 if (filp->f_pos == 0) {
4207 over = filldir(dirent, ".", 1,
4208 1, inode->i_ino,
4209 DT_DIR);
4210 if (over)
4211 return 0;
4212 filp->f_pos = 1;
4213 }
Chris Mason39544012007-12-12 14:38:19 -05004214 /* special case for .., just use the back ref */
4215 if (filp->f_pos == 1) {
David Woodhouse5ecc7e52008-08-17 15:14:48 +01004216 u64 pino = parent_ino(filp->f_path.dentry);
Chris Mason39544012007-12-12 14:38:19 -05004217 over = filldir(dirent, "..", 2,
David Woodhouse5ecc7e52008-08-17 15:14:48 +01004218 2, pino, DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05004219 if (over)
David Woodhouse49593bf2008-08-17 17:08:36 +01004220 return 0;
Chris Mason39544012007-12-12 14:38:19 -05004221 filp->f_pos = 2;
4222 }
David Woodhouse49593bf2008-08-17 17:08:36 +01004223 path = btrfs_alloc_path();
4224 path->reada = 2;
4225
Chris Mason39279cc2007-06-12 06:35:45 -04004226 btrfs_set_key_type(&key, key_type);
4227 key.offset = filp->f_pos;
David Woodhouse49593bf2008-08-17 17:08:36 +01004228 key.objectid = inode->i_ino;
Chris Mason5f39d392007-10-15 16:14:19 -04004229
Chris Mason39279cc2007-06-12 06:35:45 -04004230 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4231 if (ret < 0)
4232 goto err;
4233 advance = 0;
David Woodhouse49593bf2008-08-17 17:08:36 +01004234
4235 while (1) {
Chris Mason5f39d392007-10-15 16:14:19 -04004236 leaf = path->nodes[0];
4237 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04004238 slot = path->slots[0];
4239 if (advance || slot >= nritems) {
David Woodhouse49593bf2008-08-17 17:08:36 +01004240 if (slot >= nritems - 1) {
Chris Mason39279cc2007-06-12 06:35:45 -04004241 ret = btrfs_next_leaf(root, path);
4242 if (ret)
4243 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004244 leaf = path->nodes[0];
4245 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04004246 slot = path->slots[0];
4247 } else {
4248 slot++;
4249 path->slots[0]++;
4250 }
4251 }
Chris Mason3de45862008-11-17 21:02:50 -05004252
Chris Mason39279cc2007-06-12 06:35:45 -04004253 advance = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04004254 item = btrfs_item_nr(leaf, slot);
4255 btrfs_item_key_to_cpu(leaf, &found_key, slot);
4256
4257 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04004258 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004259 if (btrfs_key_type(&found_key) != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04004260 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004261 if (found_key.offset < filp->f_pos)
Chris Mason39279cc2007-06-12 06:35:45 -04004262 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04004263
4264 filp->f_pos = found_key.offset;
David Woodhouse49593bf2008-08-17 17:08:36 +01004265
Chris Mason39279cc2007-06-12 06:35:45 -04004266 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
4267 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04004268 di_total = btrfs_item_size(leaf, item);
David Woodhouse49593bf2008-08-17 17:08:36 +01004269
4270 while (di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04004271 struct btrfs_key location;
4272
4273 name_len = btrfs_dir_name_len(leaf, di);
David Woodhouse49593bf2008-08-17 17:08:36 +01004274 if (name_len <= sizeof(tmp_name)) {
Chris Mason5f39d392007-10-15 16:14:19 -04004275 name_ptr = tmp_name;
4276 } else {
4277 name_ptr = kmalloc(name_len, GFP_NOFS);
David Woodhouse49593bf2008-08-17 17:08:36 +01004278 if (!name_ptr) {
4279 ret = -ENOMEM;
4280 goto err;
4281 }
Chris Mason5f39d392007-10-15 16:14:19 -04004282 }
4283 read_extent_buffer(leaf, name_ptr,
4284 (unsigned long)(di + 1), name_len);
4285
4286 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
4287 btrfs_dir_item_key_to_cpu(leaf, di, &location);
Chris Mason3de45862008-11-17 21:02:50 -05004288
4289 /* is this a reference to our own snapshot? If so
4290 * skip it
4291 */
4292 if (location.type == BTRFS_ROOT_ITEM_KEY &&
4293 location.objectid == root->root_key.objectid) {
4294 over = 0;
4295 goto skip;
4296 }
Chris Mason5f39d392007-10-15 16:14:19 -04004297 over = filldir(dirent, name_ptr, name_len,
David Woodhouse49593bf2008-08-17 17:08:36 +01004298 found_key.offset, location.objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04004299 d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04004300
Chris Mason3de45862008-11-17 21:02:50 -05004301skip:
Chris Mason5f39d392007-10-15 16:14:19 -04004302 if (name_ptr != tmp_name)
4303 kfree(name_ptr);
4304
Chris Mason39279cc2007-06-12 06:35:45 -04004305 if (over)
4306 goto nopos;
Josef Bacik5103e942007-11-16 11:45:54 -05004307 di_len = btrfs_dir_name_len(leaf, di) +
David Woodhouse49593bf2008-08-17 17:08:36 +01004308 btrfs_dir_data_len(leaf, di) + sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04004309 di_cur += di_len;
4310 di = (struct btrfs_dir_item *)((char *)di + di_len);
4311 }
4312 }
David Woodhouse49593bf2008-08-17 17:08:36 +01004313
4314 /* Reached end of directory/root. Bump pos past the last item. */
Yan Zheng5e591a02008-02-19 11:41:02 -05004315 if (key_type == BTRFS_DIR_INDEX_KEY)
Jan Engelhardt406266a2009-12-09 22:00:38 +00004316 /*
4317 * 32-bit glibc will use getdents64, but then strtol -
4318 * so the last number we can serve is this.
4319 */
4320 filp->f_pos = 0x7fffffff;
Yan Zheng5e591a02008-02-19 11:41:02 -05004321 else
4322 filp->f_pos++;
Chris Mason39279cc2007-06-12 06:35:45 -04004323nopos:
4324 ret = 0;
4325err:
Chris Mason39279cc2007-06-12 06:35:45 -04004326 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04004327 return ret;
4328}
4329
Christoph Hellwiga9185b42010-03-05 09:21:37 +01004330int btrfs_write_inode(struct inode *inode, struct writeback_control *wbc)
Chris Mason39279cc2007-06-12 06:35:45 -04004331{
4332 struct btrfs_root *root = BTRFS_I(inode)->root;
4333 struct btrfs_trans_handle *trans;
4334 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04004335 bool nolock = false;
Chris Mason39279cc2007-06-12 06:35:45 -04004336
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004337 if (BTRFS_I(inode)->dummy_inode)
Chris Mason4ca8b412008-08-05 13:30:48 -04004338 return 0;
4339
Josef Bacik0af3d002010-06-21 14:48:16 -04004340 smp_mb();
4341 nolock = (root->fs_info->closing && root == root->fs_info->tree_root);
4342
Christoph Hellwiga9185b42010-03-05 09:21:37 +01004343 if (wbc->sync_mode == WB_SYNC_ALL) {
Josef Bacik0af3d002010-06-21 14:48:16 -04004344 if (nolock)
4345 trans = btrfs_join_transaction_nolock(root, 1);
4346 else
4347 trans = btrfs_join_transaction(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04004348 btrfs_set_trans_block_group(trans, inode);
Josef Bacik0af3d002010-06-21 14:48:16 -04004349 if (nolock)
4350 ret = btrfs_end_transaction_nolock(trans, root);
4351 else
4352 ret = btrfs_commit_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004353 }
4354 return ret;
4355}
4356
4357/*
Chris Mason54aa1f42007-06-22 14:16:25 -04004358 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04004359 * inode changes. But, it is most likely to find the inode in cache.
4360 * FIXME, needs more benchmarking...there are no reasons other than performance
4361 * to keep or drop this code.
4362 */
4363void btrfs_dirty_inode(struct inode *inode)
4364{
4365 struct btrfs_root *root = BTRFS_I(inode)->root;
4366 struct btrfs_trans_handle *trans;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004367 int ret;
4368
4369 if (BTRFS_I(inode)->dummy_inode)
4370 return;
Chris Mason39279cc2007-06-12 06:35:45 -04004371
Chris Masonf9295742008-07-17 12:54:14 -04004372 trans = btrfs_join_transaction(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04004373 btrfs_set_trans_block_group(trans, inode);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004374
4375 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04004376 if (ret && ret == -ENOSPC) {
4377 /* whoops, lets try again with the full transaction */
4378 btrfs_end_transaction(trans, root);
4379 trans = btrfs_start_transaction(root, 1);
Chris Mason9aeead72010-05-27 10:23:00 -04004380 if (IS_ERR(trans)) {
4381 if (printk_ratelimit()) {
4382 printk(KERN_ERR "btrfs: fail to "
4383 "dirty inode %lu error %ld\n",
4384 inode->i_ino, PTR_ERR(trans));
4385 }
4386 return;
4387 }
Chris Mason94b60442010-05-26 11:02:00 -04004388 btrfs_set_trans_block_group(trans, inode);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004389
Chris Mason94b60442010-05-26 11:02:00 -04004390 ret = btrfs_update_inode(trans, root, inode);
4391 if (ret) {
Chris Mason9aeead72010-05-27 10:23:00 -04004392 if (printk_ratelimit()) {
4393 printk(KERN_ERR "btrfs: fail to "
4394 "dirty inode %lu error %d\n",
4395 inode->i_ino, ret);
4396 }
Chris Mason94b60442010-05-26 11:02:00 -04004397 }
4398 }
Chris Mason39279cc2007-06-12 06:35:45 -04004399 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004400}
4401
Chris Masond352ac62008-09-29 15:18:18 -04004402/*
4403 * find the highest existing sequence number in a directory
4404 * and then set the in-memory index_cnt variable to reflect
4405 * free sequence numbers
4406 */
Josef Bacikaec74772008-07-24 12:12:38 -04004407static int btrfs_set_inode_index_count(struct inode *inode)
4408{
4409 struct btrfs_root *root = BTRFS_I(inode)->root;
4410 struct btrfs_key key, found_key;
4411 struct btrfs_path *path;
4412 struct extent_buffer *leaf;
4413 int ret;
4414
4415 key.objectid = inode->i_ino;
4416 btrfs_set_key_type(&key, BTRFS_DIR_INDEX_KEY);
4417 key.offset = (u64)-1;
4418
4419 path = btrfs_alloc_path();
4420 if (!path)
4421 return -ENOMEM;
4422
4423 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4424 if (ret < 0)
4425 goto out;
4426 /* FIXME: we should be able to handle this */
4427 if (ret == 0)
4428 goto out;
4429 ret = 0;
4430
4431 /*
4432 * MAGIC NUMBER EXPLANATION:
4433 * since we search a directory based on f_pos we have to start at 2
4434 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
4435 * else has to start at 2
4436 */
4437 if (path->slots[0] == 0) {
4438 BTRFS_I(inode)->index_cnt = 2;
4439 goto out;
4440 }
4441
4442 path->slots[0]--;
4443
4444 leaf = path->nodes[0];
4445 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
4446
4447 if (found_key.objectid != inode->i_ino ||
4448 btrfs_key_type(&found_key) != BTRFS_DIR_INDEX_KEY) {
4449 BTRFS_I(inode)->index_cnt = 2;
4450 goto out;
4451 }
4452
4453 BTRFS_I(inode)->index_cnt = found_key.offset + 1;
4454out:
4455 btrfs_free_path(path);
4456 return ret;
4457}
4458
Chris Masond352ac62008-09-29 15:18:18 -04004459/*
4460 * helper to find a free sequence number in a given directory. This current
4461 * code is very simple, later versions will do smarter things in the btree
4462 */
Chris Mason3de45862008-11-17 21:02:50 -05004463int btrfs_set_inode_index(struct inode *dir, u64 *index)
Josef Bacikaec74772008-07-24 12:12:38 -04004464{
4465 int ret = 0;
4466
4467 if (BTRFS_I(dir)->index_cnt == (u64)-1) {
4468 ret = btrfs_set_inode_index_count(dir);
Chris Masond3977122009-01-05 21:25:51 -05004469 if (ret)
Josef Bacikaec74772008-07-24 12:12:38 -04004470 return ret;
4471 }
4472
Chris Mason00e4e6b2008-08-05 11:18:09 -04004473 *index = BTRFS_I(dir)->index_cnt;
Josef Bacikaec74772008-07-24 12:12:38 -04004474 BTRFS_I(dir)->index_cnt++;
4475
4476 return ret;
4477}
4478
Chris Mason39279cc2007-06-12 06:35:45 -04004479static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
4480 struct btrfs_root *root,
Josef Bacikaec74772008-07-24 12:12:38 -04004481 struct inode *dir,
Chris Mason9c583092008-01-29 15:15:18 -05004482 const char *name, int name_len,
Yan Zhengd2fb3432008-12-11 16:30:39 -05004483 u64 ref_objectid, u64 objectid,
4484 u64 alloc_hint, int mode, u64 *index)
Chris Mason39279cc2007-06-12 06:35:45 -04004485{
4486 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04004487 struct btrfs_inode_item *inode_item;
Chris Mason39279cc2007-06-12 06:35:45 -04004488 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04004489 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05004490 struct btrfs_inode_ref *ref;
4491 struct btrfs_key key[2];
4492 u32 sizes[2];
4493 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04004494 int ret;
4495 int owner;
4496
Chris Mason5f39d392007-10-15 16:14:19 -04004497 path = btrfs_alloc_path();
4498 BUG_ON(!path);
4499
Chris Mason39279cc2007-06-12 06:35:45 -04004500 inode = new_inode(root->fs_info->sb);
4501 if (!inode)
4502 return ERR_PTR(-ENOMEM);
4503
Josef Bacikaec74772008-07-24 12:12:38 -04004504 if (dir) {
Chris Mason3de45862008-11-17 21:02:50 -05004505 ret = btrfs_set_inode_index(dir, index);
Shen Feng09771432009-04-02 16:46:06 -04004506 if (ret) {
4507 iput(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004508 return ERR_PTR(ret);
Shen Feng09771432009-04-02 16:46:06 -04004509 }
Josef Bacikaec74772008-07-24 12:12:38 -04004510 }
4511 /*
4512 * index_cnt is ignored for everything but a dir,
4513 * btrfs_get_inode_index_count has an explanation for the magic
4514 * number
4515 */
4516 BTRFS_I(inode)->index_cnt = 2;
Chris Mason39279cc2007-06-12 06:35:45 -04004517 BTRFS_I(inode)->root = root;
Chris Masone02119d2008-09-05 16:13:11 -04004518 BTRFS_I(inode)->generation = trans->transid;
Josef Bacik76195852010-11-19 02:18:02 +00004519 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik6a632092009-02-20 11:00:09 -05004520 btrfs_set_inode_space_info(root, inode);
Chris Masonb888db22007-08-27 16:49:44 -04004521
Chris Mason39279cc2007-06-12 06:35:45 -04004522 if (mode & S_IFDIR)
4523 owner = 0;
4524 else
4525 owner = 1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05004526 BTRFS_I(inode)->block_group =
4527 btrfs_find_block_group(root, 0, alloc_hint, owner);
Chris Mason9c583092008-01-29 15:15:18 -05004528
4529 key[0].objectid = objectid;
4530 btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
4531 key[0].offset = 0;
4532
4533 key[1].objectid = objectid;
4534 btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY);
4535 key[1].offset = ref_objectid;
4536
4537 sizes[0] = sizeof(struct btrfs_inode_item);
4538 sizes[1] = name_len + sizeof(*ref);
4539
Chris Masonb9473432009-03-13 11:00:37 -04004540 path->leave_spinning = 1;
Chris Mason9c583092008-01-29 15:15:18 -05004541 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, 2);
4542 if (ret != 0)
Chris Mason5f39d392007-10-15 16:14:19 -04004543 goto fail;
4544
Dmitry Monakhovecc11fab2010-03-04 17:31:47 +03004545 inode_init_owner(inode, dir, mode);
Chris Mason39279cc2007-06-12 06:35:45 -04004546 inode->i_ino = objectid;
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004547 inode_set_bytes(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04004548 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Chris Mason5f39d392007-10-15 16:14:19 -04004549 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
4550 struct btrfs_inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04004551 fill_inode_item(trans, path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05004552
4553 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
4554 struct btrfs_inode_ref);
4555 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
Chris Mason00e4e6b2008-08-05 11:18:09 -04004556 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
Chris Mason9c583092008-01-29 15:15:18 -05004557 ptr = (unsigned long)(ref + 1);
4558 write_extent_buffer(path->nodes[0], name, ptr, name_len);
4559
Chris Mason5f39d392007-10-15 16:14:19 -04004560 btrfs_mark_buffer_dirty(path->nodes[0]);
4561 btrfs_free_path(path);
4562
Chris Mason39279cc2007-06-12 06:35:45 -04004563 location = &BTRFS_I(inode)->location;
4564 location->objectid = objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04004565 location->offset = 0;
4566 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
4567
Christoph Hellwig6cbff002009-04-17 10:37:41 +02004568 btrfs_inherit_iflags(inode, dir);
4569
Chris Mason94272162009-07-02 12:26:06 -04004570 if ((mode & S_IFREG)) {
4571 if (btrfs_test_opt(root, NODATASUM))
4572 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
4573 if (btrfs_test_opt(root, NODATACOW))
4574 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW;
4575 }
4576
Chris Mason39279cc2007-06-12 06:35:45 -04004577 insert_inode_hash(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004578 inode_tree_add(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004579 return inode;
Chris Mason5f39d392007-10-15 16:14:19 -04004580fail:
Josef Bacikaec74772008-07-24 12:12:38 -04004581 if (dir)
4582 BTRFS_I(dir)->index_cnt--;
Chris Mason5f39d392007-10-15 16:14:19 -04004583 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04004584 iput(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004585 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04004586}
4587
4588static inline u8 btrfs_inode_type(struct inode *inode)
4589{
4590 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
4591}
4592
Chris Masond352ac62008-09-29 15:18:18 -04004593/*
4594 * utility function to add 'inode' into 'parent_inode' with
4595 * a give name and a given sequence number.
4596 * if 'add_backref' is true, also insert a backref from the
4597 * inode to the parent directory.
4598 */
Chris Masone02119d2008-09-05 16:13:11 -04004599int btrfs_add_link(struct btrfs_trans_handle *trans,
4600 struct inode *parent_inode, struct inode *inode,
4601 const char *name, int name_len, int add_backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04004602{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004603 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004604 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -04004605 struct btrfs_root *root = BTRFS_I(parent_inode)->root;
Chris Mason5f39d392007-10-15 16:14:19 -04004606
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004607 if (unlikely(inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)) {
4608 memcpy(&key, &BTRFS_I(inode)->root->root_key, sizeof(key));
4609 } else {
4610 key.objectid = inode->i_ino;
4611 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
4612 key.offset = 0;
4613 }
Chris Mason39279cc2007-06-12 06:35:45 -04004614
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004615 if (unlikely(inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)) {
4616 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
4617 key.objectid, root->root_key.objectid,
4618 parent_inode->i_ino,
4619 index, name, name_len);
4620 } else if (add_backref) {
4621 ret = btrfs_insert_inode_ref(trans, root,
4622 name, name_len, inode->i_ino,
4623 parent_inode->i_ino, index);
4624 }
4625
Chris Mason39279cc2007-06-12 06:35:45 -04004626 if (ret == 0) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004627 ret = btrfs_insert_dir_item(trans, root, name, name_len,
4628 parent_inode->i_ino, &key,
4629 btrfs_inode_type(inode), index);
4630 BUG_ON(ret);
4631
Chris Masondbe674a2008-07-17 12:54:05 -04004632 btrfs_i_size_write(parent_inode, parent_inode->i_size +
Chris Masone02119d2008-09-05 16:13:11 -04004633 name_len * 2);
Chris Mason79c44582007-06-25 10:09:33 -04004634 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
Chris Masone02119d2008-09-05 16:13:11 -04004635 ret = btrfs_update_inode(trans, root, parent_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004636 }
4637 return ret;
4638}
4639
4640static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Josef Bacika1b075d2010-11-19 20:36:11 +00004641 struct inode *dir, struct dentry *dentry,
4642 struct inode *inode, int backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04004643{
Josef Bacika1b075d2010-11-19 20:36:11 +00004644 int err = btrfs_add_link(trans, dir, inode,
4645 dentry->d_name.name, dentry->d_name.len,
4646 backref, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004647 if (!err) {
4648 d_instantiate(dentry, inode);
4649 return 0;
4650 }
4651 if (err > 0)
4652 err = -EEXIST;
4653 return err;
4654}
4655
Josef Bacik618e21d2007-07-11 10:18:17 -04004656static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
4657 int mode, dev_t rdev)
4658{
4659 struct btrfs_trans_handle *trans;
4660 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05004661 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04004662 int err;
4663 int drop_inode = 0;
4664 u64 objectid;
Chris Mason1832a6d2007-12-21 16:27:21 -05004665 unsigned long nr = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004666 u64 index = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04004667
4668 if (!new_valid_dev(rdev))
4669 return -EINVAL;
4670
Yan, Zhenga22285a2010-05-16 10:48:46 -04004671 err = btrfs_find_free_objectid(NULL, root, dir->i_ino, &objectid);
4672 if (err)
4673 return err;
4674
Josef Bacik9ed74f22009-09-11 16:12:44 -04004675 /*
4676 * 2 for inode item and ref
4677 * 2 for dir items
4678 * 1 for xattr if selinux is on
4679 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004680 trans = btrfs_start_transaction(root, 5);
4681 if (IS_ERR(trans))
4682 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05004683
Josef Bacik618e21d2007-07-11 10:18:17 -04004684 btrfs_set_trans_block_group(trans, dir);
4685
Josef Bacikaec74772008-07-24 12:12:38 -04004686 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Josef Bacika1b075d2010-11-19 20:36:11 +00004687 dentry->d_name.len, dir->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04004688 BTRFS_I(dir)->block_group, mode, &index);
Josef Bacik618e21d2007-07-11 10:18:17 -04004689 err = PTR_ERR(inode);
4690 if (IS_ERR(inode))
4691 goto out_unlock;
4692
Yan, Zhengf34f57a2009-11-12 09:35:27 +00004693 err = btrfs_init_inode_security(trans, inode, dir);
Josef Bacik33268ea2008-07-24 12:16:36 -04004694 if (err) {
4695 drop_inode = 1;
4696 goto out_unlock;
4697 }
4698
Josef Bacik618e21d2007-07-11 10:18:17 -04004699 btrfs_set_trans_block_group(trans, inode);
Josef Bacika1b075d2010-11-19 20:36:11 +00004700 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Josef Bacik618e21d2007-07-11 10:18:17 -04004701 if (err)
4702 drop_inode = 1;
4703 else {
4704 inode->i_op = &btrfs_special_inode_operations;
4705 init_special_inode(inode, inode->i_mode, rdev);
Yan1b4ab1b2007-08-29 09:11:44 -04004706 btrfs_update_inode(trans, root, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04004707 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004708 btrfs_update_inode_block_group(trans, inode);
4709 btrfs_update_inode_block_group(trans, dir);
4710out_unlock:
Chris Masond3c2fdc2007-09-17 10:58:06 -04004711 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04004712 btrfs_end_transaction_throttle(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004713 btrfs_btree_balance_dirty(root, nr);
Josef Bacik618e21d2007-07-11 10:18:17 -04004714 if (drop_inode) {
4715 inode_dec_link_count(inode);
4716 iput(inode);
4717 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004718 return err;
4719}
4720
Chris Mason39279cc2007-06-12 06:35:45 -04004721static int btrfs_create(struct inode *dir, struct dentry *dentry,
4722 int mode, struct nameidata *nd)
4723{
4724 struct btrfs_trans_handle *trans;
4725 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05004726 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04004727 int drop_inode = 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004728 int err;
Chris Mason1832a6d2007-12-21 16:27:21 -05004729 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004730 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004731 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004732
Yan, Zhenga22285a2010-05-16 10:48:46 -04004733 err = btrfs_find_free_objectid(NULL, root, dir->i_ino, &objectid);
4734 if (err)
4735 return err;
Josef Bacik9ed74f22009-09-11 16:12:44 -04004736 /*
4737 * 2 for inode item and ref
4738 * 2 for dir items
4739 * 1 for xattr if selinux is on
4740 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004741 trans = btrfs_start_transaction(root, 5);
4742 if (IS_ERR(trans))
4743 return PTR_ERR(trans);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004744
Chris Mason39279cc2007-06-12 06:35:45 -04004745 btrfs_set_trans_block_group(trans, dir);
4746
Josef Bacikaec74772008-07-24 12:12:38 -04004747 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Josef Bacika1b075d2010-11-19 20:36:11 +00004748 dentry->d_name.len, dir->i_ino, objectid,
4749 BTRFS_I(dir)->block_group, mode, &index);
Chris Mason39279cc2007-06-12 06:35:45 -04004750 err = PTR_ERR(inode);
4751 if (IS_ERR(inode))
4752 goto out_unlock;
4753
Yan, Zhengf34f57a2009-11-12 09:35:27 +00004754 err = btrfs_init_inode_security(trans, inode, dir);
Josef Bacik33268ea2008-07-24 12:16:36 -04004755 if (err) {
4756 drop_inode = 1;
4757 goto out_unlock;
4758 }
4759
Chris Mason39279cc2007-06-12 06:35:45 -04004760 btrfs_set_trans_block_group(trans, inode);
Josef Bacika1b075d2010-11-19 20:36:11 +00004761 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004762 if (err)
4763 drop_inode = 1;
4764 else {
4765 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04004766 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04004767 inode->i_fop = &btrfs_file_operations;
4768 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05004769 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04004770 }
Chris Mason39279cc2007-06-12 06:35:45 -04004771 btrfs_update_inode_block_group(trans, inode);
4772 btrfs_update_inode_block_group(trans, dir);
4773out_unlock:
Chris Masond3c2fdc2007-09-17 10:58:06 -04004774 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04004775 btrfs_end_transaction_throttle(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004776 if (drop_inode) {
4777 inode_dec_link_count(inode);
4778 iput(inode);
4779 }
Chris Masond3c2fdc2007-09-17 10:58:06 -04004780 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004781 return err;
4782}
4783
4784static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
4785 struct dentry *dentry)
4786{
4787 struct btrfs_trans_handle *trans;
4788 struct btrfs_root *root = BTRFS_I(dir)->root;
4789 struct inode *inode = old_dentry->d_inode;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004790 u64 index;
Chris Mason1832a6d2007-12-21 16:27:21 -05004791 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004792 int err;
4793 int drop_inode = 0;
4794
4795 if (inode->i_nlink == 0)
4796 return -ENOENT;
4797
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00004798 /* do not allow sys_link's with other subvols of the same device */
4799 if (root->objectid != BTRFS_I(inode)->root->objectid)
4800 return -EPERM;
4801
Josef Bacik9ed74f22009-09-11 16:12:44 -04004802 btrfs_inc_nlink(inode);
Josef Bacikbc1cbf12010-11-23 19:50:59 +00004803 inode->i_ctime = CURRENT_TIME;
Josef Bacik9ed74f22009-09-11 16:12:44 -04004804
Chris Mason3de45862008-11-17 21:02:50 -05004805 err = btrfs_set_inode_index(dir, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04004806 if (err)
4807 goto fail;
4808
Yan, Zhenga22285a2010-05-16 10:48:46 -04004809 /*
4810 * 1 item for inode ref
4811 * 2 items for dir items
4812 */
4813 trans = btrfs_start_transaction(root, 3);
4814 if (IS_ERR(trans)) {
4815 err = PTR_ERR(trans);
4816 goto fail;
4817 }
Chris Mason5f39d392007-10-15 16:14:19 -04004818
Chris Mason39279cc2007-06-12 06:35:45 -04004819 btrfs_set_trans_block_group(trans, dir);
4820 atomic_inc(&inode->i_count);
Josef Bacikaec74772008-07-24 12:12:38 -04004821
Josef Bacika1b075d2010-11-19 20:36:11 +00004822 err = btrfs_add_nondir(trans, dir, dentry, inode, 1, index);
Chris Mason5f39d392007-10-15 16:14:19 -04004823
Yan, Zhenga5719522009-09-24 09:17:31 -04004824 if (err) {
Chris Mason39279cc2007-06-12 06:35:45 -04004825 drop_inode = 1;
Yan, Zhenga5719522009-09-24 09:17:31 -04004826 } else {
Josef Bacik6a912212010-11-20 09:48:00 +00004827 struct dentry *parent = dget_parent(dentry);
Yan, Zhenga5719522009-09-24 09:17:31 -04004828 btrfs_update_inode_block_group(trans, dir);
4829 err = btrfs_update_inode(trans, root, inode);
4830 BUG_ON(err);
Josef Bacik6a912212010-11-20 09:48:00 +00004831 btrfs_log_new_name(trans, inode, NULL, parent);
4832 dput(parent);
Yan, Zhenga5719522009-09-24 09:17:31 -04004833 }
Chris Mason39279cc2007-06-12 06:35:45 -04004834
Chris Masond3c2fdc2007-09-17 10:58:06 -04004835 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04004836 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05004837fail:
Chris Mason39279cc2007-06-12 06:35:45 -04004838 if (drop_inode) {
4839 inode_dec_link_count(inode);
4840 iput(inode);
4841 }
Chris Masond3c2fdc2007-09-17 10:58:06 -04004842 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004843 return err;
4844}
4845
Chris Mason39279cc2007-06-12 06:35:45 -04004846static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
4847{
Chris Masonb9d86662008-05-02 16:13:49 -04004848 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04004849 struct btrfs_trans_handle *trans;
4850 struct btrfs_root *root = BTRFS_I(dir)->root;
4851 int err = 0;
4852 int drop_on_err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04004853 u64 objectid = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004854 u64 index = 0;
Chris Masond3c2fdc2007-09-17 10:58:06 -04004855 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04004856
Yan, Zhenga22285a2010-05-16 10:48:46 -04004857 err = btrfs_find_free_objectid(NULL, root, dir->i_ino, &objectid);
4858 if (err)
4859 return err;
4860
Josef Bacik9ed74f22009-09-11 16:12:44 -04004861 /*
4862 * 2 items for inode and ref
4863 * 2 items for dir items
4864 * 1 for xattr if selinux is on
4865 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004866 trans = btrfs_start_transaction(root, 5);
4867 if (IS_ERR(trans))
4868 return PTR_ERR(trans);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004869 btrfs_set_trans_block_group(trans, dir);
Chris Mason39279cc2007-06-12 06:35:45 -04004870
Josef Bacikaec74772008-07-24 12:12:38 -04004871 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Josef Bacika1b075d2010-11-19 20:36:11 +00004872 dentry->d_name.len, dir->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04004873 BTRFS_I(dir)->block_group, S_IFDIR | mode,
4874 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04004875 if (IS_ERR(inode)) {
4876 err = PTR_ERR(inode);
4877 goto out_fail;
4878 }
Chris Mason5f39d392007-10-15 16:14:19 -04004879
Chris Mason39279cc2007-06-12 06:35:45 -04004880 drop_on_err = 1;
Josef Bacik33268ea2008-07-24 12:16:36 -04004881
Yan, Zhengf34f57a2009-11-12 09:35:27 +00004882 err = btrfs_init_inode_security(trans, inode, dir);
Josef Bacik33268ea2008-07-24 12:16:36 -04004883 if (err)
4884 goto out_fail;
4885
Chris Mason39279cc2007-06-12 06:35:45 -04004886 inode->i_op = &btrfs_dir_inode_operations;
4887 inode->i_fop = &btrfs_dir_file_operations;
4888 btrfs_set_trans_block_group(trans, inode);
4889
Chris Masondbe674a2008-07-17 12:54:05 -04004890 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04004891 err = btrfs_update_inode(trans, root, inode);
4892 if (err)
4893 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04004894
Josef Bacika1b075d2010-11-19 20:36:11 +00004895 err = btrfs_add_link(trans, dir, inode, dentry->d_name.name,
4896 dentry->d_name.len, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004897 if (err)
4898 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04004899
Chris Mason39279cc2007-06-12 06:35:45 -04004900 d_instantiate(dentry, inode);
4901 drop_on_err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004902 btrfs_update_inode_block_group(trans, inode);
4903 btrfs_update_inode_block_group(trans, dir);
4904
4905out_fail:
Chris Masond3c2fdc2007-09-17 10:58:06 -04004906 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04004907 btrfs_end_transaction_throttle(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004908 if (drop_on_err)
4909 iput(inode);
Chris Masond3c2fdc2007-09-17 10:58:06 -04004910 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004911 return err;
4912}
4913
Chris Masond352ac62008-09-29 15:18:18 -04004914/* helper for btfs_get_extent. Given an existing extent in the tree,
4915 * and an extent that you want to insert, deal with overlap and insert
4916 * the new extent into the tree.
4917 */
Chris Mason3b951512008-04-17 11:29:12 -04004918static int merge_extent_mapping(struct extent_map_tree *em_tree,
4919 struct extent_map *existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04004920 struct extent_map *em,
4921 u64 map_start, u64 map_len)
Chris Mason3b951512008-04-17 11:29:12 -04004922{
4923 u64 start_diff;
Chris Mason3b951512008-04-17 11:29:12 -04004924
Chris Masone6dcd2d2008-07-17 12:53:50 -04004925 BUG_ON(map_start < em->start || map_start >= extent_map_end(em));
4926 start_diff = map_start - em->start;
4927 em->start = map_start;
4928 em->len = map_len;
Chris Masonc8b97812008-10-29 14:49:59 -04004929 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
4930 !test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04004931 em->block_start += start_diff;
Chris Masonc8b97812008-10-29 14:49:59 -04004932 em->block_len -= start_diff;
4933 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004934 return add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04004935}
4936
Chris Masonc8b97812008-10-29 14:49:59 -04004937static noinline int uncompress_inline(struct btrfs_path *path,
4938 struct inode *inode, struct page *page,
4939 size_t pg_offset, u64 extent_offset,
4940 struct btrfs_file_extent_item *item)
4941{
4942 int ret;
4943 struct extent_buffer *leaf = path->nodes[0];
4944 char *tmp;
4945 size_t max_size;
4946 unsigned long inline_size;
4947 unsigned long ptr;
Li Zefan261507a02010-12-17 14:21:50 +08004948 int compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04004949
4950 WARN_ON(pg_offset != 0);
Li Zefan261507a02010-12-17 14:21:50 +08004951 compress_type = btrfs_file_extent_compression(leaf, item);
Chris Masonc8b97812008-10-29 14:49:59 -04004952 max_size = btrfs_file_extent_ram_bytes(leaf, item);
4953 inline_size = btrfs_file_extent_inline_item_len(leaf,
4954 btrfs_item_nr(leaf, path->slots[0]));
4955 tmp = kmalloc(inline_size, GFP_NOFS);
4956 ptr = btrfs_file_extent_inline_start(item);
4957
4958 read_extent_buffer(leaf, tmp, ptr, inline_size);
4959
Chris Mason5b050f02008-11-11 09:34:41 -05004960 max_size = min_t(unsigned long, PAGE_CACHE_SIZE, max_size);
Li Zefan261507a02010-12-17 14:21:50 +08004961 ret = btrfs_decompress(compress_type, tmp, page,
4962 extent_offset, inline_size, max_size);
Chris Masonc8b97812008-10-29 14:49:59 -04004963 if (ret) {
4964 char *kaddr = kmap_atomic(page, KM_USER0);
4965 unsigned long copy_size = min_t(u64,
4966 PAGE_CACHE_SIZE - pg_offset,
4967 max_size - extent_offset);
4968 memset(kaddr + pg_offset, 0, copy_size);
4969 kunmap_atomic(kaddr, KM_USER0);
4970 }
4971 kfree(tmp);
4972 return 0;
4973}
4974
Chris Masond352ac62008-09-29 15:18:18 -04004975/*
4976 * a bit scary, this does extent mapping from logical file offset to the disk.
Chris Masond3977122009-01-05 21:25:51 -05004977 * the ugly parts come from merging extents from the disk with the in-ram
4978 * representation. This gets more complex because of the data=ordered code,
Chris Masond352ac62008-09-29 15:18:18 -04004979 * where the in-ram extents might be locked pending data=ordered completion.
4980 *
4981 * This also copies inline extents directly into the page.
4982 */
Chris Masond3977122009-01-05 21:25:51 -05004983
Chris Masona52d9a82007-08-27 16:49:44 -04004984struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05004985 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04004986 int create)
4987{
4988 int ret;
4989 int err = 0;
Chris Masondb945352007-10-15 16:15:53 -04004990 u64 bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04004991 u64 extent_start = 0;
4992 u64 extent_end = 0;
4993 u64 objectid = inode->i_ino;
4994 u32 found_type;
Chris Masonf4219502008-07-22 11:18:09 -04004995 struct btrfs_path *path = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -04004996 struct btrfs_root *root = BTRFS_I(inode)->root;
4997 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04004998 struct extent_buffer *leaf;
4999 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04005000 struct extent_map *em = NULL;
5001 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05005002 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04005003 struct btrfs_trans_handle *trans = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08005004 int compress_type;
Chris Masona52d9a82007-08-27 16:49:44 -04005005
Chris Masona52d9a82007-08-27 16:49:44 -04005006again:
Chris Mason890871b2009-09-02 16:24:52 -04005007 read_lock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05005008 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04005009 if (em)
5010 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason890871b2009-09-02 16:24:52 -04005011 read_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05005012
Chris Masona52d9a82007-08-27 16:49:44 -04005013 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04005014 if (em->start > start || em->start + em->len <= start)
5015 free_extent_map(em);
5016 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05005017 free_extent_map(em);
5018 else
5019 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04005020 }
Chris Masond1310b22008-01-24 16:13:08 -05005021 em = alloc_extent_map(GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04005022 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05005023 err = -ENOMEM;
5024 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04005025 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04005026 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05005027 em->start = EXTENT_MAP_HOLE;
Chris Mason445a6942008-11-10 11:53:33 -05005028 em->orig_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05005029 em->len = (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -04005030 em->block_len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04005031
5032 if (!path) {
5033 path = btrfs_alloc_path();
5034 BUG_ON(!path);
5035 }
5036
Chris Mason179e29e2007-11-01 11:28:41 -04005037 ret = btrfs_lookup_file_extent(trans, root, path,
5038 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04005039 if (ret < 0) {
5040 err = ret;
5041 goto out;
5042 }
5043
5044 if (ret != 0) {
5045 if (path->slots[0] == 0)
5046 goto not_found;
5047 path->slots[0]--;
5048 }
5049
Chris Mason5f39d392007-10-15 16:14:19 -04005050 leaf = path->nodes[0];
5051 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04005052 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04005053 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04005054 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5055 found_type = btrfs_key_type(&found_key);
5056 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04005057 found_type != BTRFS_EXTENT_DATA_KEY) {
5058 goto not_found;
5059 }
5060
Chris Mason5f39d392007-10-15 16:14:19 -04005061 found_type = btrfs_file_extent_type(leaf, item);
5062 extent_start = found_key.offset;
Li Zefan261507a02010-12-17 14:21:50 +08005063 compress_type = btrfs_file_extent_compression(leaf, item);
Yan Zhengd899e052008-10-30 14:25:28 -04005064 if (found_type == BTRFS_FILE_EXTENT_REG ||
5065 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04005066 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04005067 btrfs_file_extent_num_bytes(leaf, item);
Yan Zheng9036c102008-10-30 14:19:41 -04005068 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
5069 size_t size;
5070 size = btrfs_file_extent_inline_len(leaf, item);
5071 extent_end = (extent_start + size + root->sectorsize - 1) &
5072 ~((u64)root->sectorsize - 1);
5073 }
5074
5075 if (start >= extent_end) {
5076 path->slots[0]++;
5077 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
5078 ret = btrfs_next_leaf(root, path);
5079 if (ret < 0) {
5080 err = ret;
5081 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04005082 }
Yan Zheng9036c102008-10-30 14:19:41 -04005083 if (ret > 0)
5084 goto not_found;
5085 leaf = path->nodes[0];
Chris Masona52d9a82007-08-27 16:49:44 -04005086 }
Yan Zheng9036c102008-10-30 14:19:41 -04005087 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5088 if (found_key.objectid != objectid ||
5089 found_key.type != BTRFS_EXTENT_DATA_KEY)
5090 goto not_found;
5091 if (start + len <= found_key.offset)
5092 goto not_found;
5093 em->start = start;
5094 em->len = found_key.offset - start;
5095 goto not_found_em;
5096 }
5097
Yan Zhengd899e052008-10-30 14:25:28 -04005098 if (found_type == BTRFS_FILE_EXTENT_REG ||
5099 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng9036c102008-10-30 14:19:41 -04005100 em->start = extent_start;
5101 em->len = extent_end - extent_start;
Yan Zhengff5b7ee2008-11-10 07:34:43 -05005102 em->orig_start = extent_start -
5103 btrfs_file_extent_offset(leaf, item);
Chris Masondb945352007-10-15 16:15:53 -04005104 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
5105 if (bytenr == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04005106 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04005107 goto insert;
5108 }
Li Zefan261507a02010-12-17 14:21:50 +08005109 if (compress_type != BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -04005110 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Li Zefan261507a02010-12-17 14:21:50 +08005111 em->compress_type = compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04005112 em->block_start = bytenr;
5113 em->block_len = btrfs_file_extent_disk_num_bytes(leaf,
5114 item);
5115 } else {
5116 bytenr += btrfs_file_extent_offset(leaf, item);
5117 em->block_start = bytenr;
5118 em->block_len = em->len;
Yan Zhengd899e052008-10-30 14:25:28 -04005119 if (found_type == BTRFS_FILE_EXTENT_PREALLOC)
5120 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -04005121 }
Chris Masona52d9a82007-08-27 16:49:44 -04005122 goto insert;
5123 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04005124 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04005125 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04005126 size_t size;
5127 size_t extent_offset;
5128 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04005129
Chris Masona52d9a82007-08-27 16:49:44 -04005130 em->block_start = EXTENT_MAP_INLINE;
Chris Masonc8b97812008-10-29 14:49:59 -04005131 if (!page || create) {
Yan689f9342007-10-29 11:41:07 -04005132 em->start = extent_start;
Yan Zheng9036c102008-10-30 14:19:41 -04005133 em->len = extent_end - extent_start;
Yan689f9342007-10-29 11:41:07 -04005134 goto out;
5135 }
5136
Yan Zheng9036c102008-10-30 14:19:41 -04005137 size = btrfs_file_extent_inline_len(leaf, item);
5138 extent_offset = page_offset(page) + pg_offset - extent_start;
Chris Mason70dec802008-01-29 09:59:12 -05005139 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
Yan689f9342007-10-29 11:41:07 -04005140 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04005141 em->start = extent_start + extent_offset;
Chris Mason70dec802008-01-29 09:59:12 -05005142 em->len = (copy_size + root->sectorsize - 1) &
5143 ~((u64)root->sectorsize - 1);
Yan Zhengff5b7ee2008-11-10 07:34:43 -05005144 em->orig_start = EXTENT_MAP_INLINE;
Li Zefan261507a02010-12-17 14:21:50 +08005145 if (compress_type) {
Chris Masonc8b97812008-10-29 14:49:59 -04005146 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Li Zefan261507a02010-12-17 14:21:50 +08005147 em->compress_type = compress_type;
5148 }
Yan689f9342007-10-29 11:41:07 -04005149 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04005150 if (create == 0 && !PageUptodate(page)) {
Li Zefan261507a02010-12-17 14:21:50 +08005151 if (btrfs_file_extent_compression(leaf, item) !=
5152 BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -04005153 ret = uncompress_inline(path, inode, page,
5154 pg_offset,
5155 extent_offset, item);
5156 BUG_ON(ret);
5157 } else {
5158 map = kmap(page);
5159 read_extent_buffer(leaf, map + pg_offset, ptr,
5160 copy_size);
Chris Mason93c82d52009-09-11 12:36:29 -04005161 if (pg_offset + copy_size < PAGE_CACHE_SIZE) {
5162 memset(map + pg_offset + copy_size, 0,
5163 PAGE_CACHE_SIZE - pg_offset -
5164 copy_size);
5165 }
Chris Masonc8b97812008-10-29 14:49:59 -04005166 kunmap(page);
5167 }
Chris Mason179e29e2007-11-01 11:28:41 -04005168 flush_dcache_page(page);
5169 } else if (create && PageUptodate(page)) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005170 WARN_ON(1);
Chris Mason179e29e2007-11-01 11:28:41 -04005171 if (!trans) {
5172 kunmap(page);
5173 free_extent_map(em);
5174 em = NULL;
5175 btrfs_release_path(root, path);
Chris Masonf9295742008-07-17 12:54:14 -04005176 trans = btrfs_join_transaction(root, 1);
Chris Mason179e29e2007-11-01 11:28:41 -04005177 goto again;
5178 }
Chris Masonc8b97812008-10-29 14:49:59 -04005179 map = kmap(page);
Chris Mason70dec802008-01-29 09:59:12 -05005180 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04005181 copy_size);
Chris Masonc8b97812008-10-29 14:49:59 -04005182 kunmap(page);
Chris Mason179e29e2007-11-01 11:28:41 -04005183 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04005184 }
Chris Masond1310b22008-01-24 16:13:08 -05005185 set_extent_uptodate(io_tree, em->start,
5186 extent_map_end(em) - 1, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04005187 goto insert;
5188 } else {
Chris Masond3977122009-01-05 21:25:51 -05005189 printk(KERN_ERR "btrfs unknown found_type %d\n", found_type);
Chris Masona52d9a82007-08-27 16:49:44 -04005190 WARN_ON(1);
5191 }
5192not_found:
5193 em->start = start;
Chris Masond1310b22008-01-24 16:13:08 -05005194 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04005195not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04005196 em->block_start = EXTENT_MAP_HOLE;
Yan Zheng9036c102008-10-30 14:19:41 -04005197 set_bit(EXTENT_FLAG_VACANCY, &em->flags);
Chris Masona52d9a82007-08-27 16:49:44 -04005198insert:
5199 btrfs_release_path(root, path);
Chris Masond1310b22008-01-24 16:13:08 -05005200 if (em->start > start || extent_map_end(em) <= start) {
Chris Masond3977122009-01-05 21:25:51 -05005201 printk(KERN_ERR "Btrfs: bad extent! em: [%llu %llu] passed "
5202 "[%llu %llu]\n", (unsigned long long)em->start,
5203 (unsigned long long)em->len,
5204 (unsigned long long)start,
5205 (unsigned long long)len);
Chris Masona52d9a82007-08-27 16:49:44 -04005206 err = -EIO;
5207 goto out;
5208 }
Chris Masond1310b22008-01-24 16:13:08 -05005209
5210 err = 0;
Chris Mason890871b2009-09-02 16:24:52 -04005211 write_lock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04005212 ret = add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04005213 /* it is possible that someone inserted the extent into the tree
5214 * while we had the lock dropped. It is also possible that
5215 * an overlapping map exists in the tree
5216 */
Chris Masona52d9a82007-08-27 16:49:44 -04005217 if (ret == -EEXIST) {
Chris Mason3b951512008-04-17 11:29:12 -04005218 struct extent_map *existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005219
5220 ret = 0;
5221
Chris Mason3b951512008-04-17 11:29:12 -04005222 existing = lookup_extent_mapping(em_tree, start, len);
Chris Masone1c4b742008-04-22 13:26:46 -04005223 if (existing && (existing->start > start ||
5224 existing->start + existing->len <= start)) {
5225 free_extent_map(existing);
5226 existing = NULL;
5227 }
Chris Mason3b951512008-04-17 11:29:12 -04005228 if (!existing) {
5229 existing = lookup_extent_mapping(em_tree, em->start,
5230 em->len);
5231 if (existing) {
5232 err = merge_extent_mapping(em_tree, existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04005233 em, start,
5234 root->sectorsize);
Chris Mason3b951512008-04-17 11:29:12 -04005235 free_extent_map(existing);
5236 if (err) {
5237 free_extent_map(em);
5238 em = NULL;
5239 }
5240 } else {
5241 err = -EIO;
Chris Mason3b951512008-04-17 11:29:12 -04005242 free_extent_map(em);
5243 em = NULL;
5244 }
5245 } else {
5246 free_extent_map(em);
5247 em = existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005248 err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04005249 }
Chris Masona52d9a82007-08-27 16:49:44 -04005250 }
Chris Mason890871b2009-09-02 16:24:52 -04005251 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04005252out:
Chris Masonf4219502008-07-22 11:18:09 -04005253 if (path)
5254 btrfs_free_path(path);
Chris Masona52d9a82007-08-27 16:49:44 -04005255 if (trans) {
5256 ret = btrfs_end_transaction(trans, root);
Chris Masond3977122009-01-05 21:25:51 -05005257 if (!err)
Chris Masona52d9a82007-08-27 16:49:44 -04005258 err = ret;
5259 }
Chris Masona52d9a82007-08-27 16:49:44 -04005260 if (err) {
5261 free_extent_map(em);
Chris Masona52d9a82007-08-27 16:49:44 -04005262 return ERR_PTR(err);
5263 }
5264 return em;
5265}
5266
Josef Bacik4b46fce2010-05-23 11:00:55 -04005267static struct extent_map *btrfs_new_extent_direct(struct inode *inode,
5268 u64 start, u64 len)
5269{
5270 struct btrfs_root *root = BTRFS_I(inode)->root;
5271 struct btrfs_trans_handle *trans;
5272 struct extent_map *em;
5273 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
5274 struct btrfs_key ins;
5275 u64 alloc_hint;
5276 int ret;
5277
5278 btrfs_drop_extent_cache(inode, start, start + len - 1, 0);
5279
5280 trans = btrfs_join_transaction(root, 0);
5281 if (!trans)
5282 return ERR_PTR(-ENOMEM);
5283
5284 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
5285
5286 alloc_hint = get_extent_allocation_hint(inode, start, len);
5287 ret = btrfs_reserve_extent(trans, root, len, root->sectorsize, 0,
5288 alloc_hint, (u64)-1, &ins, 1);
5289 if (ret) {
5290 em = ERR_PTR(ret);
5291 goto out;
5292 }
5293
5294 em = alloc_extent_map(GFP_NOFS);
5295 if (!em) {
5296 em = ERR_PTR(-ENOMEM);
5297 goto out;
5298 }
5299
5300 em->start = start;
5301 em->orig_start = em->start;
5302 em->len = ins.offset;
5303
5304 em->block_start = ins.objectid;
5305 em->block_len = ins.offset;
5306 em->bdev = root->fs_info->fs_devices->latest_bdev;
5307 set_bit(EXTENT_FLAG_PINNED, &em->flags);
5308
5309 while (1) {
5310 write_lock(&em_tree->lock);
5311 ret = add_extent_mapping(em_tree, em);
5312 write_unlock(&em_tree->lock);
5313 if (ret != -EEXIST)
5314 break;
5315 btrfs_drop_extent_cache(inode, start, start + em->len - 1, 0);
5316 }
5317
5318 ret = btrfs_add_ordered_extent_dio(inode, start, ins.objectid,
5319 ins.offset, ins.offset, 0);
5320 if (ret) {
5321 btrfs_free_reserved_extent(root, ins.objectid, ins.offset);
5322 em = ERR_PTR(ret);
5323 }
5324out:
5325 btrfs_end_transaction(trans, root);
5326 return em;
5327}
5328
Chris Mason46bfbb52010-05-26 11:04:10 -04005329/*
5330 * returns 1 when the nocow is safe, < 1 on error, 0 if the
5331 * block must be cow'd
5332 */
5333static noinline int can_nocow_odirect(struct btrfs_trans_handle *trans,
5334 struct inode *inode, u64 offset, u64 len)
5335{
5336 struct btrfs_path *path;
5337 int ret;
5338 struct extent_buffer *leaf;
5339 struct btrfs_root *root = BTRFS_I(inode)->root;
5340 struct btrfs_file_extent_item *fi;
5341 struct btrfs_key key;
5342 u64 disk_bytenr;
5343 u64 backref_offset;
5344 u64 extent_end;
5345 u64 num_bytes;
5346 int slot;
5347 int found_type;
5348
5349 path = btrfs_alloc_path();
5350 if (!path)
5351 return -ENOMEM;
5352
5353 ret = btrfs_lookup_file_extent(trans, root, path, inode->i_ino,
5354 offset, 0);
5355 if (ret < 0)
5356 goto out;
5357
5358 slot = path->slots[0];
5359 if (ret == 1) {
5360 if (slot == 0) {
5361 /* can't find the item, must cow */
5362 ret = 0;
5363 goto out;
5364 }
5365 slot--;
5366 }
5367 ret = 0;
5368 leaf = path->nodes[0];
5369 btrfs_item_key_to_cpu(leaf, &key, slot);
5370 if (key.objectid != inode->i_ino ||
5371 key.type != BTRFS_EXTENT_DATA_KEY) {
5372 /* not our file or wrong item type, must cow */
5373 goto out;
5374 }
5375
5376 if (key.offset > offset) {
5377 /* Wrong offset, must cow */
5378 goto out;
5379 }
5380
5381 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
5382 found_type = btrfs_file_extent_type(leaf, fi);
5383 if (found_type != BTRFS_FILE_EXTENT_REG &&
5384 found_type != BTRFS_FILE_EXTENT_PREALLOC) {
5385 /* not a regular extent, must cow */
5386 goto out;
5387 }
5388 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
5389 backref_offset = btrfs_file_extent_offset(leaf, fi);
5390
5391 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
5392 if (extent_end < offset + len) {
5393 /* extent doesn't include our full range, must cow */
5394 goto out;
5395 }
5396
5397 if (btrfs_extent_readonly(root, disk_bytenr))
5398 goto out;
5399
5400 /*
5401 * look for other files referencing this extent, if we
5402 * find any we must cow
5403 */
5404 if (btrfs_cross_ref_exist(trans, root, inode->i_ino,
5405 key.offset - backref_offset, disk_bytenr))
5406 goto out;
5407
5408 /*
5409 * adjust disk_bytenr and num_bytes to cover just the bytes
5410 * in this extent we are about to write. If there
5411 * are any csums in that range we have to cow in order
5412 * to keep the csums correct
5413 */
5414 disk_bytenr += backref_offset;
5415 disk_bytenr += offset - key.offset;
5416 num_bytes = min(offset + len, extent_end) - offset;
5417 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
5418 goto out;
5419 /*
5420 * all of the above have passed, it is safe to overwrite this extent
5421 * without cow
5422 */
5423 ret = 1;
5424out:
5425 btrfs_free_path(path);
5426 return ret;
5427}
5428
Josef Bacik4b46fce2010-05-23 11:00:55 -04005429static int btrfs_get_blocks_direct(struct inode *inode, sector_t iblock,
5430 struct buffer_head *bh_result, int create)
5431{
5432 struct extent_map *em;
5433 struct btrfs_root *root = BTRFS_I(inode)->root;
5434 u64 start = iblock << inode->i_blkbits;
5435 u64 len = bh_result->b_size;
Chris Mason46bfbb52010-05-26 11:04:10 -04005436 struct btrfs_trans_handle *trans;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005437
5438 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
5439 if (IS_ERR(em))
5440 return PTR_ERR(em);
5441
5442 /*
5443 * Ok for INLINE and COMPRESSED extents we need to fallback on buffered
5444 * io. INLINE is special, and we could probably kludge it in here, but
5445 * it's still buffered so for safety lets just fall back to the generic
5446 * buffered path.
5447 *
5448 * For COMPRESSED we _have_ to read the entire extent in so we can
5449 * decompress it, so there will be buffering required no matter what we
5450 * do, so go ahead and fallback to buffered.
5451 *
5452 * We return -ENOTBLK because thats what makes DIO go ahead and go back
5453 * to buffered IO. Don't blame me, this is the price we pay for using
5454 * the generic code.
5455 */
5456 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) ||
5457 em->block_start == EXTENT_MAP_INLINE) {
5458 free_extent_map(em);
5459 return -ENOTBLK;
5460 }
5461
5462 /* Just a good old fashioned hole, return */
5463 if (!create && (em->block_start == EXTENT_MAP_HOLE ||
5464 test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
5465 free_extent_map(em);
5466 /* DIO will do one hole at a time, so just unlock a sector */
5467 unlock_extent(&BTRFS_I(inode)->io_tree, start,
5468 start + root->sectorsize - 1, GFP_NOFS);
5469 return 0;
5470 }
5471
5472 /*
5473 * We don't allocate a new extent in the following cases
5474 *
5475 * 1) The inode is marked as NODATACOW. In this case we'll just use the
5476 * existing extent.
5477 * 2) The extent is marked as PREALLOC. We're good to go here and can
5478 * just use the extent.
5479 *
5480 */
Chris Mason46bfbb52010-05-26 11:04:10 -04005481 if (!create) {
5482 len = em->len - (start - em->start);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005483 goto map;
Chris Mason46bfbb52010-05-26 11:04:10 -04005484 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005485
5486 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) ||
5487 ((BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) &&
5488 em->block_start != EXTENT_MAP_HOLE)) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04005489 int type;
5490 int ret;
Chris Mason46bfbb52010-05-26 11:04:10 -04005491 u64 block_start;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005492
5493 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
5494 type = BTRFS_ORDERED_PREALLOC;
5495 else
5496 type = BTRFS_ORDERED_NOCOW;
Chris Mason46bfbb52010-05-26 11:04:10 -04005497 len = min(len, em->len - (start - em->start));
Josef Bacik4b46fce2010-05-23 11:00:55 -04005498 block_start = em->block_start + (start - em->start);
Chris Mason46bfbb52010-05-26 11:04:10 -04005499
5500 /*
5501 * we're not going to log anything, but we do need
5502 * to make sure the current transaction stays open
5503 * while we look for nocow cross refs
5504 */
5505 trans = btrfs_join_transaction(root, 0);
5506 if (!trans)
5507 goto must_cow;
5508
5509 if (can_nocow_odirect(trans, inode, start, len) == 1) {
5510 ret = btrfs_add_ordered_extent_dio(inode, start,
5511 block_start, len, len, type);
5512 btrfs_end_transaction(trans, root);
5513 if (ret) {
5514 free_extent_map(em);
5515 return ret;
5516 }
5517 goto unlock;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005518 }
Chris Mason46bfbb52010-05-26 11:04:10 -04005519 btrfs_end_transaction(trans, root);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005520 }
Chris Mason46bfbb52010-05-26 11:04:10 -04005521must_cow:
5522 /*
5523 * this will cow the extent, reset the len in case we changed
5524 * it above
5525 */
5526 len = bh_result->b_size;
5527 free_extent_map(em);
5528 em = btrfs_new_extent_direct(inode, start, len);
5529 if (IS_ERR(em))
5530 return PTR_ERR(em);
5531 len = min(len, em->len - (start - em->start));
5532unlock:
Chris Mason4845e442010-05-25 20:56:50 -04005533 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, start + len - 1,
5534 EXTENT_LOCKED | EXTENT_DELALLOC | EXTENT_DIRTY, 1,
5535 0, NULL, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005536map:
5537 bh_result->b_blocknr = (em->block_start + (start - em->start)) >>
5538 inode->i_blkbits;
Chris Mason46bfbb52010-05-26 11:04:10 -04005539 bh_result->b_size = len;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005540 bh_result->b_bdev = em->bdev;
5541 set_buffer_mapped(bh_result);
5542 if (create && !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
5543 set_buffer_new(bh_result);
5544
5545 free_extent_map(em);
5546
5547 return 0;
5548}
5549
5550struct btrfs_dio_private {
5551 struct inode *inode;
5552 u64 logical_offset;
5553 u64 disk_bytenr;
5554 u64 bytes;
5555 u32 *csums;
5556 void *private;
Miao Xiee65e1532010-11-22 03:04:43 +00005557
5558 /* number of bios pending for this dio */
5559 atomic_t pending_bios;
5560
5561 /* IO errors */
5562 int errors;
5563
5564 struct bio *orig_bio;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005565};
5566
5567static void btrfs_endio_direct_read(struct bio *bio, int err)
5568{
Miao Xiee65e1532010-11-22 03:04:43 +00005569 struct btrfs_dio_private *dip = bio->bi_private;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005570 struct bio_vec *bvec_end = bio->bi_io_vec + bio->bi_vcnt - 1;
5571 struct bio_vec *bvec = bio->bi_io_vec;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005572 struct inode *inode = dip->inode;
5573 struct btrfs_root *root = BTRFS_I(inode)->root;
5574 u64 start;
5575 u32 *private = dip->csums;
5576
5577 start = dip->logical_offset;
5578 do {
5579 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)) {
5580 struct page *page = bvec->bv_page;
5581 char *kaddr;
5582 u32 csum = ~(u32)0;
5583 unsigned long flags;
5584
5585 local_irq_save(flags);
5586 kaddr = kmap_atomic(page, KM_IRQ0);
5587 csum = btrfs_csum_data(root, kaddr + bvec->bv_offset,
5588 csum, bvec->bv_len);
5589 btrfs_csum_final(csum, (char *)&csum);
5590 kunmap_atomic(kaddr, KM_IRQ0);
5591 local_irq_restore(flags);
5592
5593 flush_dcache_page(bvec->bv_page);
5594 if (csum != *private) {
5595 printk(KERN_ERR "btrfs csum failed ino %lu off"
5596 " %llu csum %u private %u\n",
5597 inode->i_ino, (unsigned long long)start,
5598 csum, *private);
5599 err = -EIO;
5600 }
5601 }
5602
5603 start += bvec->bv_len;
5604 private++;
5605 bvec++;
5606 } while (bvec <= bvec_end);
5607
5608 unlock_extent(&BTRFS_I(inode)->io_tree, dip->logical_offset,
5609 dip->logical_offset + dip->bytes - 1, GFP_NOFS);
5610 bio->bi_private = dip->private;
5611
5612 kfree(dip->csums);
5613 kfree(dip);
5614 dio_end_io(bio, err);
5615}
5616
5617static void btrfs_endio_direct_write(struct bio *bio, int err)
5618{
5619 struct btrfs_dio_private *dip = bio->bi_private;
5620 struct inode *inode = dip->inode;
5621 struct btrfs_root *root = BTRFS_I(inode)->root;
5622 struct btrfs_trans_handle *trans;
5623 struct btrfs_ordered_extent *ordered = NULL;
5624 struct extent_state *cached_state = NULL;
Chris Mason163cf092010-11-28 19:56:33 -05005625 u64 ordered_offset = dip->logical_offset;
5626 u64 ordered_bytes = dip->bytes;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005627 int ret;
5628
5629 if (err)
5630 goto out_done;
Chris Mason163cf092010-11-28 19:56:33 -05005631again:
5632 ret = btrfs_dec_test_first_ordered_pending(inode, &ordered,
5633 &ordered_offset,
5634 ordered_bytes);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005635 if (!ret)
Chris Mason163cf092010-11-28 19:56:33 -05005636 goto out_test;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005637
5638 BUG_ON(!ordered);
5639
5640 trans = btrfs_join_transaction(root, 1);
5641 if (!trans) {
5642 err = -ENOMEM;
5643 goto out;
5644 }
5645 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
5646
5647 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered->flags)) {
5648 ret = btrfs_ordered_update_i_size(inode, 0, ordered);
5649 if (!ret)
5650 ret = btrfs_update_inode(trans, root, inode);
5651 err = ret;
5652 goto out;
5653 }
5654
5655 lock_extent_bits(&BTRFS_I(inode)->io_tree, ordered->file_offset,
5656 ordered->file_offset + ordered->len - 1, 0,
5657 &cached_state, GFP_NOFS);
5658
5659 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered->flags)) {
5660 ret = btrfs_mark_extent_written(trans, inode,
5661 ordered->file_offset,
5662 ordered->file_offset +
5663 ordered->len);
5664 if (ret) {
5665 err = ret;
5666 goto out_unlock;
5667 }
5668 } else {
5669 ret = insert_reserved_file_extent(trans, inode,
5670 ordered->file_offset,
5671 ordered->start,
5672 ordered->disk_len,
5673 ordered->len,
5674 ordered->len,
5675 0, 0, 0,
5676 BTRFS_FILE_EXTENT_REG);
5677 unpin_extent_cache(&BTRFS_I(inode)->extent_tree,
5678 ordered->file_offset, ordered->len);
5679 if (ret) {
5680 err = ret;
5681 WARN_ON(1);
5682 goto out_unlock;
5683 }
5684 }
5685
5686 add_pending_csums(trans, inode, ordered->file_offset, &ordered->list);
5687 btrfs_ordered_update_i_size(inode, 0, ordered);
5688 btrfs_update_inode(trans, root, inode);
5689out_unlock:
5690 unlock_extent_cached(&BTRFS_I(inode)->io_tree, ordered->file_offset,
5691 ordered->file_offset + ordered->len - 1,
5692 &cached_state, GFP_NOFS);
5693out:
5694 btrfs_delalloc_release_metadata(inode, ordered->len);
5695 btrfs_end_transaction(trans, root);
Chris Mason163cf092010-11-28 19:56:33 -05005696 ordered_offset = ordered->file_offset + ordered->len;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005697 btrfs_put_ordered_extent(ordered);
5698 btrfs_put_ordered_extent(ordered);
Chris Mason163cf092010-11-28 19:56:33 -05005699
5700out_test:
5701 /*
5702 * our bio might span multiple ordered extents. If we haven't
5703 * completed the accounting for the whole dio, go back and try again
5704 */
5705 if (ordered_offset < dip->logical_offset + dip->bytes) {
5706 ordered_bytes = dip->logical_offset + dip->bytes -
5707 ordered_offset;
5708 goto again;
5709 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005710out_done:
5711 bio->bi_private = dip->private;
5712
5713 kfree(dip->csums);
5714 kfree(dip);
5715 dio_end_io(bio, err);
5716}
5717
Chris Masoneaf25d92010-05-25 09:48:28 -04005718static int __btrfs_submit_bio_start_direct_io(struct inode *inode, int rw,
5719 struct bio *bio, int mirror_num,
5720 unsigned long bio_flags, u64 offset)
5721{
5722 int ret;
5723 struct btrfs_root *root = BTRFS_I(inode)->root;
5724 ret = btrfs_csum_one_bio(root, inode, bio, offset, 1);
5725 BUG_ON(ret);
5726 return 0;
5727}
5728
Miao Xiee65e1532010-11-22 03:04:43 +00005729static void btrfs_end_dio_bio(struct bio *bio, int err)
5730{
5731 struct btrfs_dio_private *dip = bio->bi_private;
5732
5733 if (err) {
5734 printk(KERN_ERR "btrfs direct IO failed ino %lu rw %lu "
Jan Beulich3dd14622010-12-07 14:54:09 +00005735 "sector %#Lx len %u err no %d\n",
5736 dip->inode->i_ino, bio->bi_rw,
5737 (unsigned long long)bio->bi_sector, bio->bi_size, err);
Miao Xiee65e1532010-11-22 03:04:43 +00005738 dip->errors = 1;
5739
5740 /*
5741 * before atomic variable goto zero, we must make sure
5742 * dip->errors is perceived to be set.
5743 */
5744 smp_mb__before_atomic_dec();
5745 }
5746
5747 /* if there are more bios still pending for this dio, just exit */
5748 if (!atomic_dec_and_test(&dip->pending_bios))
5749 goto out;
5750
5751 if (dip->errors)
5752 bio_io_error(dip->orig_bio);
5753 else {
5754 set_bit(BIO_UPTODATE, &dip->orig_bio->bi_flags);
5755 bio_endio(dip->orig_bio, 0);
5756 }
5757out:
5758 bio_put(bio);
5759}
5760
5761static struct bio *btrfs_dio_bio_alloc(struct block_device *bdev,
5762 u64 first_sector, gfp_t gfp_flags)
5763{
5764 int nr_vecs = bio_get_nr_vecs(bdev);
5765 return btrfs_bio_alloc(bdev, first_sector, nr_vecs, gfp_flags);
5766}
5767
5768static inline int __btrfs_submit_dio_bio(struct bio *bio, struct inode *inode,
5769 int rw, u64 file_offset, int skip_sum,
5770 u32 *csums)
5771{
5772 int write = rw & REQ_WRITE;
5773 struct btrfs_root *root = BTRFS_I(inode)->root;
5774 int ret;
5775
5776 bio_get(bio);
5777 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
5778 if (ret)
5779 goto err;
5780
5781 if (write && !skip_sum) {
5782 ret = btrfs_wq_submit_bio(root->fs_info,
5783 inode, rw, bio, 0, 0,
5784 file_offset,
5785 __btrfs_submit_bio_start_direct_io,
5786 __btrfs_submit_bio_done);
5787 goto err;
5788 } else if (!skip_sum)
5789 btrfs_lookup_bio_sums_dio(root, inode, bio,
5790 file_offset, csums);
5791
5792 ret = btrfs_map_bio(root, rw, bio, 0, 1);
5793err:
5794 bio_put(bio);
5795 return ret;
5796}
5797
5798static int btrfs_submit_direct_hook(int rw, struct btrfs_dio_private *dip,
5799 int skip_sum)
5800{
5801 struct inode *inode = dip->inode;
5802 struct btrfs_root *root = BTRFS_I(inode)->root;
5803 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
5804 struct bio *bio;
5805 struct bio *orig_bio = dip->orig_bio;
5806 struct bio_vec *bvec = orig_bio->bi_io_vec;
5807 u64 start_sector = orig_bio->bi_sector;
5808 u64 file_offset = dip->logical_offset;
5809 u64 submit_len = 0;
5810 u64 map_length;
5811 int nr_pages = 0;
5812 u32 *csums = dip->csums;
5813 int ret = 0;
5814
5815 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev, start_sector, GFP_NOFS);
5816 if (!bio)
5817 return -ENOMEM;
5818 bio->bi_private = dip;
5819 bio->bi_end_io = btrfs_end_dio_bio;
5820 atomic_inc(&dip->pending_bios);
5821
5822 map_length = orig_bio->bi_size;
5823 ret = btrfs_map_block(map_tree, READ, start_sector << 9,
5824 &map_length, NULL, 0);
5825 if (ret) {
5826 bio_put(bio);
5827 return -EIO;
5828 }
5829
5830 while (bvec <= (orig_bio->bi_io_vec + orig_bio->bi_vcnt - 1)) {
5831 if (unlikely(map_length < submit_len + bvec->bv_len ||
5832 bio_add_page(bio, bvec->bv_page, bvec->bv_len,
5833 bvec->bv_offset) < bvec->bv_len)) {
5834 /*
5835 * inc the count before we submit the bio so
5836 * we know the end IO handler won't happen before
5837 * we inc the count. Otherwise, the dip might get freed
5838 * before we're done setting it up
5839 */
5840 atomic_inc(&dip->pending_bios);
5841 ret = __btrfs_submit_dio_bio(bio, inode, rw,
5842 file_offset, skip_sum,
5843 csums);
5844 if (ret) {
5845 bio_put(bio);
5846 atomic_dec(&dip->pending_bios);
5847 goto out_err;
5848 }
5849
5850 if (!skip_sum)
5851 csums = csums + nr_pages;
5852 start_sector += submit_len >> 9;
5853 file_offset += submit_len;
5854
5855 submit_len = 0;
5856 nr_pages = 0;
5857
5858 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev,
5859 start_sector, GFP_NOFS);
5860 if (!bio)
5861 goto out_err;
5862 bio->bi_private = dip;
5863 bio->bi_end_io = btrfs_end_dio_bio;
5864
5865 map_length = orig_bio->bi_size;
5866 ret = btrfs_map_block(map_tree, READ, start_sector << 9,
5867 &map_length, NULL, 0);
5868 if (ret) {
5869 bio_put(bio);
5870 goto out_err;
5871 }
5872 } else {
5873 submit_len += bvec->bv_len;
5874 nr_pages ++;
5875 bvec++;
5876 }
5877 }
5878
5879 ret = __btrfs_submit_dio_bio(bio, inode, rw, file_offset, skip_sum,
5880 csums);
5881 if (!ret)
5882 return 0;
5883
5884 bio_put(bio);
5885out_err:
5886 dip->errors = 1;
5887 /*
5888 * before atomic variable goto zero, we must
5889 * make sure dip->errors is perceived to be set.
5890 */
5891 smp_mb__before_atomic_dec();
5892 if (atomic_dec_and_test(&dip->pending_bios))
5893 bio_io_error(dip->orig_bio);
5894
5895 /* bio_end_io() will handle error, so we needn't return it */
5896 return 0;
5897}
5898
Josef Bacik4b46fce2010-05-23 11:00:55 -04005899static void btrfs_submit_direct(int rw, struct bio *bio, struct inode *inode,
5900 loff_t file_offset)
5901{
5902 struct btrfs_root *root = BTRFS_I(inode)->root;
5903 struct btrfs_dio_private *dip;
5904 struct bio_vec *bvec = bio->bi_io_vec;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005905 int skip_sum;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02005906 int write = rw & REQ_WRITE;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005907 int ret = 0;
5908
5909 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
5910
5911 dip = kmalloc(sizeof(*dip), GFP_NOFS);
5912 if (!dip) {
5913 ret = -ENOMEM;
5914 goto free_ordered;
5915 }
5916 dip->csums = NULL;
5917
5918 if (!skip_sum) {
5919 dip->csums = kmalloc(sizeof(u32) * bio->bi_vcnt, GFP_NOFS);
5920 if (!dip->csums) {
5921 ret = -ENOMEM;
5922 goto free_ordered;
5923 }
5924 }
5925
5926 dip->private = bio->bi_private;
5927 dip->inode = inode;
5928 dip->logical_offset = file_offset;
5929
Josef Bacik4b46fce2010-05-23 11:00:55 -04005930 dip->bytes = 0;
5931 do {
5932 dip->bytes += bvec->bv_len;
5933 bvec++;
5934 } while (bvec <= (bio->bi_io_vec + bio->bi_vcnt - 1));
5935
Chris Mason46bfbb52010-05-26 11:04:10 -04005936 dip->disk_bytenr = (u64)bio->bi_sector << 9;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005937 bio->bi_private = dip;
Miao Xiee65e1532010-11-22 03:04:43 +00005938 dip->errors = 0;
5939 dip->orig_bio = bio;
5940 atomic_set(&dip->pending_bios, 0);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005941
5942 if (write)
5943 bio->bi_end_io = btrfs_endio_direct_write;
5944 else
5945 bio->bi_end_io = btrfs_endio_direct_read;
5946
Miao Xiee65e1532010-11-22 03:04:43 +00005947 ret = btrfs_submit_direct_hook(rw, dip, skip_sum);
5948 if (!ret)
Chris Masoneaf25d92010-05-25 09:48:28 -04005949 return;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005950free_ordered:
5951 /*
5952 * If this is a write, we need to clean up the reserved space and kill
5953 * the ordered extent.
5954 */
5955 if (write) {
5956 struct btrfs_ordered_extent *ordered;
Josef Bacik955256f2010-11-19 09:41:10 -05005957 ordered = btrfs_lookup_ordered_extent(inode, file_offset);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005958 if (!test_bit(BTRFS_ORDERED_PREALLOC, &ordered->flags) &&
5959 !test_bit(BTRFS_ORDERED_NOCOW, &ordered->flags))
5960 btrfs_free_reserved_extent(root, ordered->start,
5961 ordered->disk_len);
5962 btrfs_put_ordered_extent(ordered);
5963 btrfs_put_ordered_extent(ordered);
5964 }
5965 bio_endio(bio, ret);
5966}
5967
Chris Mason5a5f79b2010-05-26 21:33:37 -04005968static ssize_t check_direct_IO(struct btrfs_root *root, int rw, struct kiocb *iocb,
5969 const struct iovec *iov, loff_t offset,
5970 unsigned long nr_segs)
5971{
5972 int seg;
5973 size_t size;
5974 unsigned long addr;
5975 unsigned blocksize_mask = root->sectorsize - 1;
5976 ssize_t retval = -EINVAL;
5977 loff_t end = offset;
5978
5979 if (offset & blocksize_mask)
5980 goto out;
5981
5982 /* Check the memory alignment. Blocks cannot straddle pages */
5983 for (seg = 0; seg < nr_segs; seg++) {
5984 addr = (unsigned long)iov[seg].iov_base;
5985 size = iov[seg].iov_len;
5986 end += size;
5987 if ((addr & blocksize_mask) || (size & blocksize_mask))
5988 goto out;
5989 }
5990 retval = 0;
5991out:
5992 return retval;
5993}
Chris Mason16432982008-04-10 10:23:21 -04005994static ssize_t btrfs_direct_IO(int rw, struct kiocb *iocb,
5995 const struct iovec *iov, loff_t offset,
5996 unsigned long nr_segs)
5997{
Josef Bacik4b46fce2010-05-23 11:00:55 -04005998 struct file *file = iocb->ki_filp;
5999 struct inode *inode = file->f_mapping->host;
6000 struct btrfs_ordered_extent *ordered;
Chris Mason4845e442010-05-25 20:56:50 -04006001 struct extent_state *cached_state = NULL;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006002 u64 lockstart, lockend;
6003 ssize_t ret;
Chris Mason4845e442010-05-25 20:56:50 -04006004 int writing = rw & WRITE;
6005 int write_bits = 0;
Chris Mason3f7c5792010-05-26 10:59:53 -04006006 size_t count = iov_length(iov, nr_segs);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006007
Chris Mason5a5f79b2010-05-26 21:33:37 -04006008 if (check_direct_IO(BTRFS_I(inode)->root, rw, iocb, iov,
6009 offset, nr_segs)) {
6010 return 0;
6011 }
6012
Josef Bacik4b46fce2010-05-23 11:00:55 -04006013 lockstart = offset;
Chris Mason3f7c5792010-05-26 10:59:53 -04006014 lockend = offset + count - 1;
6015
6016 if (writing) {
6017 ret = btrfs_delalloc_reserve_space(inode, count);
6018 if (ret)
6019 goto out;
6020 }
Chris Mason4845e442010-05-25 20:56:50 -04006021
Josef Bacik4b46fce2010-05-23 11:00:55 -04006022 while (1) {
Chris Mason4845e442010-05-25 20:56:50 -04006023 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
6024 0, &cached_state, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006025 /*
6026 * We're concerned with the entire range that we're going to be
6027 * doing DIO to, so we need to make sure theres no ordered
6028 * extents in this range.
6029 */
6030 ordered = btrfs_lookup_ordered_range(inode, lockstart,
6031 lockend - lockstart + 1);
6032 if (!ordered)
6033 break;
Chris Mason4845e442010-05-25 20:56:50 -04006034 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
6035 &cached_state, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006036 btrfs_start_ordered_extent(inode, ordered, 1);
6037 btrfs_put_ordered_extent(ordered);
6038 cond_resched();
6039 }
6040
Chris Mason4845e442010-05-25 20:56:50 -04006041 /*
6042 * we don't use btrfs_set_extent_delalloc because we don't want
6043 * the dirty or uptodate bits
6044 */
6045 if (writing) {
6046 write_bits = EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING;
6047 ret = set_extent_bit(&BTRFS_I(inode)->io_tree, lockstart, lockend,
6048 EXTENT_DELALLOC, 0, NULL, &cached_state,
6049 GFP_NOFS);
6050 if (ret) {
6051 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
6052 lockend, EXTENT_LOCKED | write_bits,
6053 1, 0, &cached_state, GFP_NOFS);
6054 goto out;
6055 }
6056 }
6057
6058 free_extent_state(cached_state);
6059 cached_state = NULL;
6060
Chris Mason5a5f79b2010-05-26 21:33:37 -04006061 ret = __blockdev_direct_IO(rw, iocb, inode,
6062 BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev,
6063 iov, offset, nr_segs, btrfs_get_blocks_direct, NULL,
6064 btrfs_submit_direct, 0);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006065
6066 if (ret < 0 && ret != -EIOCBQUEUED) {
Chris Mason4845e442010-05-25 20:56:50 -04006067 clear_extent_bit(&BTRFS_I(inode)->io_tree, offset,
6068 offset + iov_length(iov, nr_segs) - 1,
6069 EXTENT_LOCKED | write_bits, 1, 0,
6070 &cached_state, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006071 } else if (ret >= 0 && ret < iov_length(iov, nr_segs)) {
6072 /*
6073 * We're falling back to buffered, unlock the section we didn't
6074 * do IO on.
6075 */
Chris Mason4845e442010-05-25 20:56:50 -04006076 clear_extent_bit(&BTRFS_I(inode)->io_tree, offset + ret,
6077 offset + iov_length(iov, nr_segs) - 1,
6078 EXTENT_LOCKED | write_bits, 1, 0,
6079 &cached_state, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006080 }
Chris Mason4845e442010-05-25 20:56:50 -04006081out:
6082 free_extent_state(cached_state);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006083 return ret;
Chris Mason16432982008-04-10 10:23:21 -04006084}
6085
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05006086static int btrfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
6087 __u64 start, __u64 len)
6088{
6089 return extent_fiemap(inode, fieinfo, start, len, btrfs_get_extent);
6090}
6091
Chris Mason9ebefb182007-06-15 13:50:00 -04006092int btrfs_readpage(struct file *file, struct page *page)
6093{
Chris Masond1310b22008-01-24 16:13:08 -05006094 struct extent_io_tree *tree;
6095 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04006096 return extent_read_full_page(tree, page, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04006097}
Chris Mason1832a6d2007-12-21 16:27:21 -05006098
Chris Mason39279cc2007-06-12 06:35:45 -04006099static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
6100{
Chris Masond1310b22008-01-24 16:13:08 -05006101 struct extent_io_tree *tree;
Chris Masonb888db22007-08-27 16:49:44 -04006102
6103
6104 if (current->flags & PF_MEMALLOC) {
6105 redirty_page_for_writepage(wbc, page);
6106 unlock_page(page);
6107 return 0;
6108 }
Chris Masond1310b22008-01-24 16:13:08 -05006109 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04006110 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
6111}
Chris Mason39279cc2007-06-12 06:35:45 -04006112
Chris Masonf4219502008-07-22 11:18:09 -04006113int btrfs_writepages(struct address_space *mapping,
6114 struct writeback_control *wbc)
Chris Masonb293f022007-11-01 19:45:34 -04006115{
Chris Masond1310b22008-01-24 16:13:08 -05006116 struct extent_io_tree *tree;
Chris Mason771ed682008-11-06 22:02:51 -05006117
Chris Masond1310b22008-01-24 16:13:08 -05006118 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f022007-11-01 19:45:34 -04006119 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
6120}
6121
Chris Mason3ab2fb52007-11-08 10:59:22 -05006122static int
6123btrfs_readpages(struct file *file, struct address_space *mapping,
6124 struct list_head *pages, unsigned nr_pages)
6125{
Chris Masond1310b22008-01-24 16:13:08 -05006126 struct extent_io_tree *tree;
6127 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05006128 return extent_readpages(tree, mapping, pages, nr_pages,
6129 btrfs_get_extent);
6130}
Chris Masone6dcd2d2008-07-17 12:53:50 -04006131static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04006132{
Chris Masond1310b22008-01-24 16:13:08 -05006133 struct extent_io_tree *tree;
6134 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04006135 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006136
Chris Masond1310b22008-01-24 16:13:08 -05006137 tree = &BTRFS_I(page->mapping->host)->io_tree;
6138 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05006139 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04006140 if (ret == 1) {
6141 ClearPagePrivate(page);
6142 set_page_private(page, 0);
6143 page_cache_release(page);
6144 }
6145 return ret;
6146}
Chris Mason39279cc2007-06-12 06:35:45 -04006147
Chris Masone6dcd2d2008-07-17 12:53:50 -04006148static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
6149{
Chris Mason98509cf2008-09-11 15:51:43 -04006150 if (PageWriteback(page) || PageDirty(page))
6151 return 0;
Yan Zhengb335b002009-02-12 10:06:04 -05006152 return __btrfs_releasepage(page, gfp_flags & GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006153}
6154
Chris Masona52d9a82007-08-27 16:49:44 -04006155static void btrfs_invalidatepage(struct page *page, unsigned long offset)
6156{
Chris Masond1310b22008-01-24 16:13:08 -05006157 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006158 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00006159 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006160 u64 page_start = page_offset(page);
6161 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04006162
Chris Mason8b62b722009-09-02 16:53:46 -04006163
6164 /*
6165 * we have the page locked, so new writeback can't start,
6166 * and the dirty bit won't be cleared while we are here.
6167 *
6168 * Wait for IO on this page so that we can safely clear
6169 * the PagePrivate2 bit and do ordered accounting
6170 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006171 wait_on_page_writeback(page);
Chris Mason8b62b722009-09-02 16:53:46 -04006172
Chris Masond1310b22008-01-24 16:13:08 -05006173 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006174 if (offset) {
6175 btrfs_releasepage(page, GFP_NOFS);
6176 return;
6177 }
Josef Bacik2ac55d42010-02-03 19:33:23 +00006178 lock_extent_bits(tree, page_start, page_end, 0, &cached_state,
6179 GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006180 ordered = btrfs_lookup_ordered_extent(page->mapping->host,
6181 page_offset(page));
6182 if (ordered) {
Chris Masoneb84ae02008-07-17 13:53:27 -04006183 /*
6184 * IO on this page will never be started, so we need
6185 * to account for any ordered extents now
6186 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006187 clear_extent_bit(tree, page_start, page_end,
6188 EXTENT_DIRTY | EXTENT_DELALLOC |
Josef Bacik32c00af2009-10-08 13:34:05 -04006189 EXTENT_LOCKED | EXTENT_DO_ACCOUNTING, 1, 0,
Josef Bacik2ac55d42010-02-03 19:33:23 +00006190 &cached_state, GFP_NOFS);
Chris Mason8b62b722009-09-02 16:53:46 -04006191 /*
6192 * whoever cleared the private bit is responsible
6193 * for the finish_ordered_io
6194 */
6195 if (TestClearPagePrivate2(page)) {
6196 btrfs_finish_ordered_io(page->mapping->host,
6197 page_start, page_end);
6198 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006199 btrfs_put_ordered_extent(ordered);
Josef Bacik2ac55d42010-02-03 19:33:23 +00006200 cached_state = NULL;
6201 lock_extent_bits(tree, page_start, page_end, 0, &cached_state,
6202 GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006203 }
6204 clear_extent_bit(tree, page_start, page_end,
Josef Bacik32c00af2009-10-08 13:34:05 -04006205 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
Josef Bacik2ac55d42010-02-03 19:33:23 +00006206 EXTENT_DO_ACCOUNTING, 1, 1, &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006207 __btrfs_releasepage(page, GFP_NOFS);
6208
Chris Mason4a096752008-07-21 10:29:44 -04006209 ClearPageChecked(page);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04006210 if (PagePrivate(page)) {
Chris Mason9ad6b7b2008-04-18 16:11:30 -04006211 ClearPagePrivate(page);
6212 set_page_private(page, 0);
6213 page_cache_release(page);
6214 }
Chris Mason39279cc2007-06-12 06:35:45 -04006215}
6216
Chris Mason9ebefb182007-06-15 13:50:00 -04006217/*
6218 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
6219 * called from a page fault handler when a page is first dirtied. Hence we must
6220 * be careful to check for EOF conditions here. We set the page up correctly
6221 * for a written page which means we get ENOSPC checking when writing into
6222 * holes and correct delalloc and unwritten extent mapping on filesystems that
6223 * support these features.
6224 *
6225 * We are not allowed to take the i_mutex here so we have to play games to
6226 * protect against truncate races as the page could now be beyond EOF. Because
6227 * vmtruncate() writes the inode size before removing pages, once we have the
6228 * page lock we can determine safely if the page is beyond EOF. If it is not
6229 * beyond EOF, then the page is guaranteed safe against truncation until we
6230 * unlock the page.
6231 */
Nick Pigginc2ec1752009-03-31 15:23:21 -07006232int btrfs_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Chris Mason9ebefb182007-06-15 13:50:00 -04006233{
Nick Pigginc2ec1752009-03-31 15:23:21 -07006234 struct page *page = vmf->page;
Chris Mason6da6aba2007-12-18 16:15:09 -05006235 struct inode *inode = fdentry(vma->vm_file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05006236 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006237 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
6238 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00006239 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006240 char *kaddr;
6241 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04006242 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05006243 int ret;
Chris Masona52d9a82007-08-27 16:49:44 -04006244 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006245 u64 page_end;
Chris Mason9ebefb182007-06-15 13:50:00 -04006246
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006247 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
Nick Piggin56a76f82009-03-31 15:23:23 -07006248 if (ret) {
6249 if (ret == -ENOMEM)
6250 ret = VM_FAULT_OOM;
6251 else /* -ENOSPC, -EIO, etc */
6252 ret = VM_FAULT_SIGBUS;
Chris Mason1832a6d2007-12-21 16:27:21 -05006253 goto out;
Nick Piggin56a76f82009-03-31 15:23:23 -07006254 }
Chris Mason1832a6d2007-12-21 16:27:21 -05006255
Nick Piggin56a76f82009-03-31 15:23:23 -07006256 ret = VM_FAULT_NOPAGE; /* make the VM retry the fault */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006257again:
Chris Mason9ebefb182007-06-15 13:50:00 -04006258 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04006259 size = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006260 page_start = page_offset(page);
6261 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04006262
Chris Mason9ebefb182007-06-15 13:50:00 -04006263 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04006264 (page_start >= size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04006265 /* page got truncated out from underneath us */
6266 goto out_unlock;
6267 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006268 wait_on_page_writeback(page);
6269
Josef Bacik2ac55d42010-02-03 19:33:23 +00006270 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state,
6271 GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006272 set_page_extent_mapped(page);
6273
Chris Masoneb84ae02008-07-17 13:53:27 -04006274 /*
6275 * we can't set the delalloc bits if there are pending ordered
6276 * extents. Drop our locks and wait for them to finish
6277 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006278 ordered = btrfs_lookup_ordered_extent(inode, page_start);
6279 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00006280 unlock_extent_cached(io_tree, page_start, page_end,
6281 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006282 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04006283 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006284 btrfs_put_ordered_extent(ordered);
6285 goto again;
6286 }
6287
Josef Bacikfbf19082009-10-01 17:10:23 -04006288 /*
6289 * XXX - page_mkwrite gets called every time the page is dirtied, even
6290 * if it was already dirty, so for space accounting reasons we need to
6291 * clear any delalloc bits for the range we are fixing to save. There
6292 * is probably a better way to do this, but for now keep consistent with
6293 * prepare_pages in the normal write path.
6294 */
Josef Bacik2ac55d42010-02-03 19:33:23 +00006295 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Josef Bacik32c00af2009-10-08 13:34:05 -04006296 EXTENT_DIRTY | EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00006297 0, 0, &cached_state, GFP_NOFS);
Josef Bacikfbf19082009-10-01 17:10:23 -04006298
Josef Bacik2ac55d42010-02-03 19:33:23 +00006299 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
6300 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006301 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00006302 unlock_extent_cached(io_tree, page_start, page_end,
6303 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006304 ret = VM_FAULT_SIGBUS;
6305 goto out_unlock;
6306 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006307 ret = 0;
Chris Mason9ebefb182007-06-15 13:50:00 -04006308
6309 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04006310 if (page_start + PAGE_CACHE_SIZE > size)
Chris Masone6dcd2d2008-07-17 12:53:50 -04006311 zero_start = size & ~PAGE_CACHE_MASK;
Chris Mason9ebefb182007-06-15 13:50:00 -04006312 else
Chris Masone6dcd2d2008-07-17 12:53:50 -04006313 zero_start = PAGE_CACHE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04006314
Chris Masone6dcd2d2008-07-17 12:53:50 -04006315 if (zero_start != PAGE_CACHE_SIZE) {
6316 kaddr = kmap(page);
6317 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
6318 flush_dcache_page(page);
6319 kunmap(page);
6320 }
Chris Mason247e7432008-07-17 12:53:51 -04006321 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006322 set_page_dirty(page);
Chris Mason50a9b212009-09-11 12:33:12 -04006323 SetPageUptodate(page);
Chris Mason5a3f23d2009-03-31 13:27:11 -04006324
Chris Mason257c62e2009-10-13 13:21:08 -04006325 BTRFS_I(inode)->last_trans = root->fs_info->generation;
6326 BTRFS_I(inode)->last_sub_trans = BTRFS_I(inode)->root->log_transid;
6327
Josef Bacik2ac55d42010-02-03 19:33:23 +00006328 unlock_extent_cached(io_tree, page_start, page_end, &cached_state, GFP_NOFS);
Chris Mason9ebefb182007-06-15 13:50:00 -04006329
6330out_unlock:
Chris Mason50a9b212009-09-11 12:33:12 -04006331 if (!ret)
6332 return VM_FAULT_LOCKED;
Chris Mason9ebefb182007-06-15 13:50:00 -04006333 unlock_page(page);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006334 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Mason1832a6d2007-12-21 16:27:21 -05006335out:
Chris Mason9ebefb182007-06-15 13:50:00 -04006336 return ret;
6337}
6338
Chris Mason39279cc2007-06-12 06:35:45 -04006339static void btrfs_truncate(struct inode *inode)
6340{
6341 struct btrfs_root *root = BTRFS_I(inode)->root;
6342 int ret;
6343 struct btrfs_trans_handle *trans;
Chris Masond3c2fdc2007-09-17 10:58:06 -04006344 unsigned long nr;
Chris Masondbe674a2008-07-17 12:54:05 -04006345 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -04006346
Yan, Zheng80825102009-11-12 09:35:36 +00006347 if (!S_ISREG(inode->i_mode)) {
6348 WARN_ON(1);
Chris Mason39279cc2007-06-12 06:35:45 -04006349 return;
Yan, Zheng80825102009-11-12 09:35:36 +00006350 }
Chris Mason39279cc2007-06-12 06:35:45 -04006351
Josef Bacik5d5e1032009-10-13 16:46:49 -04006352 ret = btrfs_truncate_page(inode->i_mapping, inode->i_size);
6353 if (ret)
6354 return;
Yan, Zheng80825102009-11-12 09:35:36 +00006355
Chris Mason4a096752008-07-21 10:29:44 -04006356 btrfs_wait_ordered_range(inode, inode->i_size & (~mask), (u64)-1);
Yan, Zheng80825102009-11-12 09:35:36 +00006357 btrfs_ordered_update_i_size(inode, inode->i_size, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006358
Yan, Zhengd68fc572010-05-16 10:49:58 -04006359 trans = btrfs_start_transaction(root, 0);
6360 BUG_ON(IS_ERR(trans));
Yan, Zheng80825102009-11-12 09:35:36 +00006361 btrfs_set_trans_block_group(trans, inode);
Yan, Zhengd68fc572010-05-16 10:49:58 -04006362 trans->block_rsv = root->orphan_block_rsv;
Chris Mason5a3f23d2009-03-31 13:27:11 -04006363
6364 /*
6365 * setattr is responsible for setting the ordered_data_close flag,
6366 * but that is only tested during the last file release. That
6367 * could happen well after the next commit, leaving a great big
6368 * window where new writes may get lost if someone chooses to write
6369 * to this file after truncating to zero
6370 *
6371 * The inode doesn't have any dirty data here, and so if we commit
6372 * this is a noop. If someone immediately starts writing to the inode
6373 * it is very likely we'll catch some of their writes in this
6374 * transaction, and the commit will find this file on the ordered
6375 * data list with good things to send down.
6376 *
6377 * This is a best effort solution, there is still a window where
6378 * using truncate to replace the contents of the file will
6379 * end up with a zero length file after a crash.
6380 */
6381 if (inode->i_size == 0 && BTRFS_I(inode)->ordered_data_close)
6382 btrfs_add_ordered_operation(trans, root, inode);
6383
Yan, Zheng80825102009-11-12 09:35:36 +00006384 while (1) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04006385 if (!trans) {
6386 trans = btrfs_start_transaction(root, 0);
6387 BUG_ON(IS_ERR(trans));
6388 btrfs_set_trans_block_group(trans, inode);
6389 trans->block_rsv = root->orphan_block_rsv;
6390 }
6391
6392 ret = btrfs_block_rsv_check(trans, root,
6393 root->orphan_block_rsv, 0, 5);
6394 if (ret) {
6395 BUG_ON(ret != -EAGAIN);
6396 ret = btrfs_commit_transaction(trans, root);
6397 BUG_ON(ret);
6398 trans = NULL;
6399 continue;
6400 }
6401
Yan, Zheng80825102009-11-12 09:35:36 +00006402 ret = btrfs_truncate_inode_items(trans, root, inode,
6403 inode->i_size,
6404 BTRFS_EXTENT_DATA_KEY);
6405 if (ret != -EAGAIN)
6406 break;
Chris Mason39279cc2007-06-12 06:35:45 -04006407
Yan, Zheng80825102009-11-12 09:35:36 +00006408 ret = btrfs_update_inode(trans, root, inode);
6409 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04006410
Yan, Zheng80825102009-11-12 09:35:36 +00006411 nr = trans->blocks_used;
6412 btrfs_end_transaction(trans, root);
Yan, Zhengd68fc572010-05-16 10:49:58 -04006413 trans = NULL;
Yan, Zheng80825102009-11-12 09:35:36 +00006414 btrfs_btree_balance_dirty(root, nr);
Yan, Zheng80825102009-11-12 09:35:36 +00006415 }
6416
6417 if (ret == 0 && inode->i_nlink > 0) {
6418 ret = btrfs_orphan_del(trans, inode);
6419 BUG_ON(ret);
6420 }
6421
6422 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik7b128762008-07-24 12:17:14 -04006423 BUG_ON(ret);
6424
Josef Bacik7b128762008-07-24 12:17:14 -04006425 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04006426 ret = btrfs_end_transaction_throttle(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04006427 BUG_ON(ret);
Chris Masond3c2fdc2007-09-17 10:58:06 -04006428 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04006429}
6430
Sven Wegener3b963622008-06-09 21:57:42 -04006431/*
Chris Masond352ac62008-09-29 15:18:18 -04006432 * create a new subvolume directory/inode (helper for the ioctl).
6433 */
Yan Zhengd2fb3432008-12-11 16:30:39 -05006434int btrfs_create_subvol_root(struct btrfs_trans_handle *trans,
Yan, Zheng76dda932009-09-21 16:00:26 -04006435 struct btrfs_root *new_root,
Yan Zhengd2fb3432008-12-11 16:30:39 -05006436 u64 new_dirid, u64 alloc_hint)
Chris Mason39279cc2007-06-12 06:35:45 -04006437{
Chris Mason39279cc2007-06-12 06:35:45 -04006438 struct inode *inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04006439 int err;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006440 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006441
Josef Bacikaec74772008-07-24 12:12:38 -04006442 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2, new_dirid,
Yan Zhengd2fb3432008-12-11 16:30:39 -05006443 new_dirid, alloc_hint, S_IFDIR | 0700, &index);
Chris Mason54aa1f42007-06-22 14:16:25 -04006444 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04006445 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006446 inode->i_op = &btrfs_dir_inode_operations;
6447 inode->i_fop = &btrfs_dir_file_operations;
6448
Chris Mason39279cc2007-06-12 06:35:45 -04006449 inode->i_nlink = 1;
Chris Masondbe674a2008-07-17 12:54:05 -04006450 btrfs_i_size_write(inode, 0);
Sven Wegener3b963622008-06-09 21:57:42 -04006451
Yan, Zheng76dda932009-09-21 16:00:26 -04006452 err = btrfs_update_inode(trans, new_root, inode);
6453 BUG_ON(err);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04006454
Yan, Zheng76dda932009-09-21 16:00:26 -04006455 iput(inode);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04006456 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006457}
6458
Chris Masond352ac62008-09-29 15:18:18 -04006459/* helper function for file defrag and space balancing. This
6460 * forces readahead on a given range of bytes in an inode
6461 */
Chris Masonedbd8d42007-12-21 16:27:24 -05006462unsigned long btrfs_force_ra(struct address_space *mapping,
Chris Mason86479a02007-09-10 19:58:16 -04006463 struct file_ra_state *ra, struct file *file,
6464 pgoff_t offset, pgoff_t last_index)
6465{
Chris Mason8e7bf942008-04-28 09:02:36 -04006466 pgoff_t req_size = last_index - offset + 1;
Chris Mason86479a02007-09-10 19:58:16 -04006467
Chris Mason86479a02007-09-10 19:58:16 -04006468 page_cache_sync_readahead(mapping, ra, file, offset, req_size);
6469 return offset + req_size;
Chris Mason86479a02007-09-10 19:58:16 -04006470}
6471
Chris Mason39279cc2007-06-12 06:35:45 -04006472struct inode *btrfs_alloc_inode(struct super_block *sb)
6473{
6474 struct btrfs_inode *ei;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006475 struct inode *inode;
Chris Mason39279cc2007-06-12 06:35:45 -04006476
6477 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
6478 if (!ei)
6479 return NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006480
6481 ei->root = NULL;
6482 ei->space_info = NULL;
6483 ei->generation = 0;
6484 ei->sequence = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04006485 ei->last_trans = 0;
Chris Mason257c62e2009-10-13 13:21:08 -04006486 ei->last_sub_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04006487 ei->logged_trans = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006488 ei->delalloc_bytes = 0;
6489 ei->reserved_bytes = 0;
6490 ei->disk_i_size = 0;
6491 ei->flags = 0;
6492 ei->index_cnt = (u64)-1;
6493 ei->last_unlink_trans = 0;
6494
Josef Bacik32c00af2009-10-08 13:34:05 -04006495 spin_lock_init(&ei->accounting_lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006496 atomic_set(&ei->outstanding_extents, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04006497 ei->reserved_extents = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006498
6499 ei->ordered_data_close = 0;
Yan, Zhengd68fc572010-05-16 10:49:58 -04006500 ei->orphan_meta_reserved = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006501 ei->dummy_inode = 0;
Li Zefan261507a02010-12-17 14:21:50 +08006502 ei->force_compress = BTRFS_COMPRESS_NONE;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006503
6504 inode = &ei->vfs_inode;
6505 extent_map_tree_init(&ei->extent_tree, GFP_NOFS);
6506 extent_io_tree_init(&ei->io_tree, &inode->i_data, GFP_NOFS);
6507 extent_io_tree_init(&ei->io_failure_tree, &inode->i_data, GFP_NOFS);
6508 mutex_init(&ei->log_mutex);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006509 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Josef Bacik7b128762008-07-24 12:17:14 -04006510 INIT_LIST_HEAD(&ei->i_orphan);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006511 INIT_LIST_HEAD(&ei->delalloc_inodes);
Chris Mason5a3f23d2009-03-31 13:27:11 -04006512 INIT_LIST_HEAD(&ei->ordered_operations);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006513 RB_CLEAR_NODE(&ei->rb_node);
6514
6515 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04006516}
6517
6518void btrfs_destroy_inode(struct inode *inode)
6519{
Chris Masone6dcd2d2008-07-17 12:53:50 -04006520 struct btrfs_ordered_extent *ordered;
Chris Mason5a3f23d2009-03-31 13:27:11 -04006521 struct btrfs_root *root = BTRFS_I(inode)->root;
6522
Chris Mason39279cc2007-06-12 06:35:45 -04006523 WARN_ON(!list_empty(&inode->i_dentry));
6524 WARN_ON(inode->i_data.nrpages);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006525 WARN_ON(atomic_read(&BTRFS_I(inode)->outstanding_extents));
6526 WARN_ON(BTRFS_I(inode)->reserved_extents);
Chris Mason39279cc2007-06-12 06:35:45 -04006527
Chris Mason5a3f23d2009-03-31 13:27:11 -04006528 /*
Josef Bacika6dbd422009-11-11 15:53:34 -05006529 * This can happen where we create an inode, but somebody else also
6530 * created the same inode and we need to destroy the one we already
6531 * created.
6532 */
6533 if (!root)
6534 goto free;
6535
6536 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04006537 * Make sure we're properly removed from the ordered operation
6538 * lists.
6539 */
6540 smp_mb();
6541 if (!list_empty(&BTRFS_I(inode)->ordered_operations)) {
6542 spin_lock(&root->fs_info->ordered_extent_lock);
6543 list_del_init(&BTRFS_I(inode)->ordered_operations);
6544 spin_unlock(&root->fs_info->ordered_extent_lock);
6545 }
6546
Josef Bacik0af3d002010-06-21 14:48:16 -04006547 if (root == root->fs_info->tree_root) {
6548 struct btrfs_block_group_cache *block_group;
6549
6550 block_group = btrfs_lookup_block_group(root->fs_info,
6551 BTRFS_I(inode)->block_group);
6552 if (block_group && block_group->inode == inode) {
6553 spin_lock(&block_group->lock);
6554 block_group->inode = NULL;
6555 spin_unlock(&block_group->lock);
6556 btrfs_put_block_group(block_group);
6557 } else if (block_group) {
6558 btrfs_put_block_group(block_group);
6559 }
6560 }
6561
Yan, Zhengd68fc572010-05-16 10:49:58 -04006562 spin_lock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04006563 if (!list_empty(&BTRFS_I(inode)->i_orphan)) {
Yan, Zheng80825102009-11-12 09:35:36 +00006564 printk(KERN_INFO "BTRFS: inode %lu still on the orphan list\n",
6565 inode->i_ino);
6566 list_del_init(&BTRFS_I(inode)->i_orphan);
Josef Bacik7b128762008-07-24 12:17:14 -04006567 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04006568 spin_unlock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04006569
Chris Masond3977122009-01-05 21:25:51 -05006570 while (1) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04006571 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
6572 if (!ordered)
6573 break;
6574 else {
Chris Masond3977122009-01-05 21:25:51 -05006575 printk(KERN_ERR "btrfs found ordered "
6576 "extent %llu %llu on inode cleanup\n",
6577 (unsigned long long)ordered->file_offset,
6578 (unsigned long long)ordered->len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006579 btrfs_remove_ordered_extent(inode, ordered);
6580 btrfs_put_ordered_extent(ordered);
6581 btrfs_put_ordered_extent(ordered);
6582 }
6583 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006584 inode_tree_del(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04006585 btrfs_drop_extent_cache(inode, 0, (u64)-1, 0);
Josef Bacika6dbd422009-11-11 15:53:34 -05006586free:
Chris Mason39279cc2007-06-12 06:35:45 -04006587 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
6588}
6589
Al Viro45321ac2010-06-07 13:43:19 -04006590int btrfs_drop_inode(struct inode *inode)
Yan, Zheng76dda932009-09-21 16:00:26 -04006591{
6592 struct btrfs_root *root = BTRFS_I(inode)->root;
Al Viro45321ac2010-06-07 13:43:19 -04006593
Josef Bacik0af3d002010-06-21 14:48:16 -04006594 if (btrfs_root_refs(&root->root_item) == 0 &&
6595 root != root->fs_info->tree_root)
Al Viro45321ac2010-06-07 13:43:19 -04006596 return 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04006597 else
Al Viro45321ac2010-06-07 13:43:19 -04006598 return generic_drop_inode(inode);
Yan, Zheng76dda932009-09-21 16:00:26 -04006599}
6600
Sven Wegener0ee0fda2008-07-30 16:54:26 -04006601static void init_once(void *foo)
Chris Mason39279cc2007-06-12 06:35:45 -04006602{
6603 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
6604
6605 inode_init_once(&ei->vfs_inode);
6606}
6607
6608void btrfs_destroy_cachep(void)
6609{
6610 if (btrfs_inode_cachep)
6611 kmem_cache_destroy(btrfs_inode_cachep);
6612 if (btrfs_trans_handle_cachep)
6613 kmem_cache_destroy(btrfs_trans_handle_cachep);
6614 if (btrfs_transaction_cachep)
6615 kmem_cache_destroy(btrfs_transaction_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04006616 if (btrfs_path_cachep)
6617 kmem_cache_destroy(btrfs_path_cachep);
6618}
6619
6620int btrfs_init_cachep(void)
6621{
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006622 btrfs_inode_cachep = kmem_cache_create("btrfs_inode_cache",
6623 sizeof(struct btrfs_inode), 0,
6624 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04006625 if (!btrfs_inode_cachep)
6626 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006627
6628 btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle_cache",
6629 sizeof(struct btrfs_trans_handle), 0,
6630 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006631 if (!btrfs_trans_handle_cachep)
6632 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006633
6634 btrfs_transaction_cachep = kmem_cache_create("btrfs_transaction_cache",
6635 sizeof(struct btrfs_transaction), 0,
6636 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006637 if (!btrfs_transaction_cachep)
6638 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006639
6640 btrfs_path_cachep = kmem_cache_create("btrfs_path_cache",
6641 sizeof(struct btrfs_path), 0,
6642 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006643 if (!btrfs_path_cachep)
6644 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006645
Chris Mason39279cc2007-06-12 06:35:45 -04006646 return 0;
6647fail:
6648 btrfs_destroy_cachep();
6649 return -ENOMEM;
6650}
6651
6652static int btrfs_getattr(struct vfsmount *mnt,
6653 struct dentry *dentry, struct kstat *stat)
6654{
6655 struct inode *inode = dentry->d_inode;
6656 generic_fillattr(inode, stat);
Chris Mason3394e162008-11-17 20:42:26 -05006657 stat->dev = BTRFS_I(inode)->root->anon_super.s_dev;
Chris Masond6667462008-01-03 14:51:00 -05006658 stat->blksize = PAGE_CACHE_SIZE;
Yan Zhenga76a3cd2008-10-09 11:46:29 -04006659 stat->blocks = (inode_get_bytes(inode) +
6660 BTRFS_I(inode)->delalloc_bytes) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -04006661 return 0;
6662}
6663
Chris Masond3977122009-01-05 21:25:51 -05006664static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry,
6665 struct inode *new_dir, struct dentry *new_dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04006666{
6667 struct btrfs_trans_handle *trans;
6668 struct btrfs_root *root = BTRFS_I(old_dir)->root;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006669 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04006670 struct inode *new_inode = new_dentry->d_inode;
6671 struct inode *old_inode = old_dentry->d_inode;
6672 struct timespec ctime = CURRENT_TIME;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006673 u64 index = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006674 u64 root_objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04006675 int ret;
6676
Yan, Zhengf679a842009-09-24 09:17:31 -04006677 if (new_dir->i_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
6678 return -EPERM;
6679
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006680 /* we only allow rename subvolume link between subvolumes */
6681 if (old_inode->i_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
Chris Mason3394e162008-11-17 20:42:26 -05006682 return -EXDEV;
6683
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006684 if (old_inode->i_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID ||
6685 (new_inode && new_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID))
6686 return -ENOTEMPTY;
6687
Chris Mason39279cc2007-06-12 06:35:45 -04006688 if (S_ISDIR(old_inode->i_mode) && new_inode &&
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006689 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Chris Mason39279cc2007-06-12 06:35:45 -04006690 return -ENOTEMPTY;
Chris Mason5a3f23d2009-03-31 13:27:11 -04006691 /*
6692 * we're using rename to replace one file with another.
6693 * and the replacement file is large. Start IO on it now so
6694 * we don't add too much work to the end of the transaction
6695 */
Bartlomiej Zolnierkiewicz4baf8c92009-08-07 13:47:08 -04006696 if (new_inode && S_ISREG(old_inode->i_mode) && new_inode->i_size &&
Chris Mason5a3f23d2009-03-31 13:27:11 -04006697 old_inode->i_size > BTRFS_ORDERED_OPERATIONS_FLUSH_LIMIT)
6698 filemap_flush(old_inode->i_mapping);
6699
Yan, Zheng76dda932009-09-21 16:00:26 -04006700 /* close the racy window with snapshot create/destroy ioctl */
6701 if (old_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)
6702 down_read(&root->fs_info->subvol_sem);
Yan, Zhenga22285a2010-05-16 10:48:46 -04006703 /*
6704 * We want to reserve the absolute worst case amount of items. So if
6705 * both inodes are subvols and we need to unlink them then that would
6706 * require 4 item modifications, but if they are both normal inodes it
6707 * would require 5 item modifications, so we'll assume their normal
6708 * inodes. So 5 * 2 is 10, plus 1 for the new link, so 11 total items
6709 * should cover the worst case number of items we'll modify.
6710 */
6711 trans = btrfs_start_transaction(root, 20);
6712 if (IS_ERR(trans))
6713 return PTR_ERR(trans);
Chris Mason5f39d392007-10-15 16:14:19 -04006714
Yan, Zhenga5719522009-09-24 09:17:31 -04006715 btrfs_set_trans_block_group(trans, new_dir);
Chris Mason39279cc2007-06-12 06:35:45 -04006716
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006717 if (dest != root)
6718 btrfs_record_root_in_trans(trans, dest);
6719
Yan, Zhenga5719522009-09-24 09:17:31 -04006720 ret = btrfs_set_inode_index(new_dir, &index);
6721 if (ret)
6722 goto out_fail;
Chris Mason5a3f23d2009-03-31 13:27:11 -04006723
Yan, Zhenga5719522009-09-24 09:17:31 -04006724 if (unlikely(old_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006725 /* force full log commit if subvolume involved. */
6726 root->fs_info->last_trans_log_full_commit = trans->transid;
6727 } else {
Yan, Zhenga5719522009-09-24 09:17:31 -04006728 ret = btrfs_insert_inode_ref(trans, dest,
6729 new_dentry->d_name.name,
6730 new_dentry->d_name.len,
6731 old_inode->i_ino,
6732 new_dir->i_ino, index);
6733 if (ret)
6734 goto out_fail;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006735 /*
6736 * this is an ugly little race, but the rename is required
6737 * to make sure that if we crash, the inode is either at the
6738 * old name or the new one. pinning the log transaction lets
6739 * us make sure we don't allow a log commit to come in after
6740 * we unlink the name but before we add the new name back in.
6741 */
6742 btrfs_pin_log_trans(root);
6743 }
Chris Mason12fcfd22009-03-24 10:24:20 -04006744 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04006745 * make sure the inode gets flushed if it is replacing
6746 * something.
6747 */
6748 if (new_inode && new_inode->i_size &&
6749 old_inode && S_ISREG(old_inode->i_mode)) {
6750 btrfs_add_ordered_operation(trans, root, old_inode);
6751 }
6752
Chris Mason39279cc2007-06-12 06:35:45 -04006753 old_dir->i_ctime = old_dir->i_mtime = ctime;
6754 new_dir->i_ctime = new_dir->i_mtime = ctime;
6755 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04006756
Chris Mason12fcfd22009-03-24 10:24:20 -04006757 if (old_dentry->d_parent != new_dentry->d_parent)
6758 btrfs_record_unlink_dir(trans, old_dir, old_inode, 1);
6759
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006760 if (unlikely(old_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)) {
6761 root_objectid = BTRFS_I(old_inode)->root->root_key.objectid;
6762 ret = btrfs_unlink_subvol(trans, root, old_dir, root_objectid,
6763 old_dentry->d_name.name,
6764 old_dentry->d_name.len);
6765 } else {
6766 btrfs_inc_nlink(old_dentry->d_inode);
6767 ret = btrfs_unlink_inode(trans, root, old_dir,
6768 old_dentry->d_inode,
6769 old_dentry->d_name.name,
6770 old_dentry->d_name.len);
6771 }
6772 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04006773
6774 if (new_inode) {
6775 new_inode->i_ctime = CURRENT_TIME;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006776 if (unlikely(new_inode->i_ino ==
6777 BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
6778 root_objectid = BTRFS_I(new_inode)->location.objectid;
6779 ret = btrfs_unlink_subvol(trans, dest, new_dir,
6780 root_objectid,
6781 new_dentry->d_name.name,
6782 new_dentry->d_name.len);
6783 BUG_ON(new_inode->i_nlink == 0);
6784 } else {
6785 ret = btrfs_unlink_inode(trans, dest, new_dir,
6786 new_dentry->d_inode,
6787 new_dentry->d_name.name,
6788 new_dentry->d_name.len);
6789 }
6790 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04006791 if (new_inode->i_nlink == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04006792 ret = btrfs_orphan_add(trans, new_dentry->d_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006793 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04006794 }
Chris Mason39279cc2007-06-12 06:35:45 -04006795 }
Josef Bacikaec74772008-07-24 12:12:38 -04006796
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006797 ret = btrfs_add_link(trans, new_dir, old_inode,
6798 new_dentry->d_name.name,
Yan, Zhenga5719522009-09-24 09:17:31 -04006799 new_dentry->d_name.len, 0, index);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006800 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04006801
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006802 if (old_inode->i_ino != BTRFS_FIRST_FREE_OBJECTID) {
Josef Bacik6a912212010-11-20 09:48:00 +00006803 struct dentry *parent = dget_parent(new_dentry);
6804 btrfs_log_new_name(trans, old_inode, old_dir, parent);
6805 dput(parent);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006806 btrfs_end_log_trans(root);
6807 }
Chris Mason39279cc2007-06-12 06:35:45 -04006808out_fail:
Chris Masonab78c842008-07-29 16:15:18 -04006809 btrfs_end_transaction_throttle(trans, root);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006810
Yan, Zheng76dda932009-09-21 16:00:26 -04006811 if (old_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)
6812 up_read(&root->fs_info->subvol_sem);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006813
Chris Mason39279cc2007-06-12 06:35:45 -04006814 return ret;
6815}
6816
Chris Masond352ac62008-09-29 15:18:18 -04006817/*
6818 * some fairly slow code that needs optimization. This walks the list
6819 * of all the inodes with pending delalloc and forces them to disk.
6820 */
Yan, Zheng24bbcf02009-11-12 09:36:34 +00006821int btrfs_start_delalloc_inodes(struct btrfs_root *root, int delay_iput)
Chris Masonea8c2812008-08-04 23:17:27 -04006822{
6823 struct list_head *head = &root->fs_info->delalloc_inodes;
6824 struct btrfs_inode *binode;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04006825 struct inode *inode;
Chris Masonea8c2812008-08-04 23:17:27 -04006826
Yan Zhengc146afa2008-11-12 14:34:12 -05006827 if (root->fs_info->sb->s_flags & MS_RDONLY)
6828 return -EROFS;
6829
Chris Mason75eff682008-12-15 15:54:40 -05006830 spin_lock(&root->fs_info->delalloc_lock);
Chris Masond3977122009-01-05 21:25:51 -05006831 while (!list_empty(head)) {
Chris Masonea8c2812008-08-04 23:17:27 -04006832 binode = list_entry(head->next, struct btrfs_inode,
6833 delalloc_inodes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04006834 inode = igrab(&binode->vfs_inode);
6835 if (!inode)
6836 list_del_init(&binode->delalloc_inodes);
Chris Mason75eff682008-12-15 15:54:40 -05006837 spin_unlock(&root->fs_info->delalloc_lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04006838 if (inode) {
Chris Mason8c8bee12008-09-29 11:19:10 -04006839 filemap_flush(inode->i_mapping);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00006840 if (delay_iput)
6841 btrfs_add_delayed_iput(inode);
6842 else
6843 iput(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04006844 }
6845 cond_resched();
Chris Mason75eff682008-12-15 15:54:40 -05006846 spin_lock(&root->fs_info->delalloc_lock);
Chris Masonea8c2812008-08-04 23:17:27 -04006847 }
Chris Mason75eff682008-12-15 15:54:40 -05006848 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason8c8bee12008-09-29 11:19:10 -04006849
6850 /* the filemap_flush will queue IO into the worker threads, but
6851 * we have to make sure the IO is actually started and that
6852 * ordered extents get created before we return
6853 */
6854 atomic_inc(&root->fs_info->async_submit_draining);
Chris Masond3977122009-01-05 21:25:51 -05006855 while (atomic_read(&root->fs_info->nr_async_submits) ||
Chris Mason771ed682008-11-06 22:02:51 -05006856 atomic_read(&root->fs_info->async_delalloc_pages)) {
Chris Mason8c8bee12008-09-29 11:19:10 -04006857 wait_event(root->fs_info->async_submit_wait,
Chris Mason771ed682008-11-06 22:02:51 -05006858 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
6859 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
Chris Mason8c8bee12008-09-29 11:19:10 -04006860 }
6861 atomic_dec(&root->fs_info->async_submit_draining);
Chris Masonea8c2812008-08-04 23:17:27 -04006862 return 0;
6863}
6864
Josef Bacik0019f102010-10-15 15:18:40 -04006865int btrfs_start_one_delalloc_inode(struct btrfs_root *root, int delay_iput,
6866 int sync)
Yan, Zheng5da9d012010-05-16 10:46:25 -04006867{
6868 struct btrfs_inode *binode;
6869 struct inode *inode = NULL;
6870
6871 spin_lock(&root->fs_info->delalloc_lock);
6872 while (!list_empty(&root->fs_info->delalloc_inodes)) {
6873 binode = list_entry(root->fs_info->delalloc_inodes.next,
6874 struct btrfs_inode, delalloc_inodes);
6875 inode = igrab(&binode->vfs_inode);
6876 if (inode) {
6877 list_move_tail(&binode->delalloc_inodes,
6878 &root->fs_info->delalloc_inodes);
6879 break;
6880 }
6881
6882 list_del_init(&binode->delalloc_inodes);
6883 cond_resched_lock(&root->fs_info->delalloc_lock);
6884 }
6885 spin_unlock(&root->fs_info->delalloc_lock);
6886
6887 if (inode) {
Josef Bacik0019f102010-10-15 15:18:40 -04006888 if (sync) {
6889 filemap_write_and_wait(inode->i_mapping);
6890 /*
6891 * We have to do this because compression doesn't
6892 * actually set PG_writeback until it submits the pages
6893 * for IO, which happens in an async thread, so we could
6894 * race and not actually wait for any writeback pages
6895 * because they've not been submitted yet. Technically
6896 * this could still be the case for the ordered stuff
6897 * since the async thread may not have started to do its
6898 * work yet. If this becomes the case then we need to
6899 * figure out a way to make sure that in writepage we
6900 * wait for any async pages to be submitted before
6901 * returning so that fdatawait does what its supposed to
6902 * do.
6903 */
6904 btrfs_wait_ordered_range(inode, 0, (u64)-1);
6905 } else {
6906 filemap_flush(inode->i_mapping);
6907 }
Yan, Zheng5da9d012010-05-16 10:46:25 -04006908 if (delay_iput)
6909 btrfs_add_delayed_iput(inode);
6910 else
6911 iput(inode);
6912 return 1;
6913 }
6914 return 0;
6915}
6916
Chris Mason39279cc2007-06-12 06:35:45 -04006917static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
6918 const char *symname)
6919{
6920 struct btrfs_trans_handle *trans;
6921 struct btrfs_root *root = BTRFS_I(dir)->root;
6922 struct btrfs_path *path;
6923 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05006924 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04006925 int err;
6926 int drop_inode = 0;
6927 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006928 u64 index = 0 ;
Chris Mason39279cc2007-06-12 06:35:45 -04006929 int name_len;
6930 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04006931 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04006932 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04006933 struct extent_buffer *leaf;
Chris Mason1832a6d2007-12-21 16:27:21 -05006934 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006935
6936 name_len = strlen(symname) + 1;
6937 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
6938 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05006939
Yan, Zhenga22285a2010-05-16 10:48:46 -04006940 err = btrfs_find_free_objectid(NULL, root, dir->i_ino, &objectid);
6941 if (err)
6942 return err;
Josef Bacik9ed74f22009-09-11 16:12:44 -04006943 /*
6944 * 2 items for inode item and ref
6945 * 2 items for dir items
6946 * 1 item for xattr if selinux is on
6947 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04006948 trans = btrfs_start_transaction(root, 5);
6949 if (IS_ERR(trans))
6950 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05006951
Chris Mason39279cc2007-06-12 06:35:45 -04006952 btrfs_set_trans_block_group(trans, dir);
6953
Josef Bacikaec74772008-07-24 12:12:38 -04006954 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Josef Bacika1b075d2010-11-19 20:36:11 +00006955 dentry->d_name.len, dir->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04006956 BTRFS_I(dir)->block_group, S_IFLNK|S_IRWXUGO,
6957 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04006958 err = PTR_ERR(inode);
6959 if (IS_ERR(inode))
6960 goto out_unlock;
6961
Yan, Zhengf34f57a2009-11-12 09:35:27 +00006962 err = btrfs_init_inode_security(trans, inode, dir);
Josef Bacik33268ea2008-07-24 12:16:36 -04006963 if (err) {
6964 drop_inode = 1;
6965 goto out_unlock;
6966 }
6967
Chris Mason39279cc2007-06-12 06:35:45 -04006968 btrfs_set_trans_block_group(trans, inode);
Josef Bacika1b075d2010-11-19 20:36:11 +00006969 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04006970 if (err)
6971 drop_inode = 1;
6972 else {
6973 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04006974 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04006975 inode->i_fop = &btrfs_file_operations;
6976 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05006977 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04006978 }
Chris Mason39279cc2007-06-12 06:35:45 -04006979 btrfs_update_inode_block_group(trans, inode);
6980 btrfs_update_inode_block_group(trans, dir);
6981 if (drop_inode)
6982 goto out_unlock;
6983
6984 path = btrfs_alloc_path();
6985 BUG_ON(!path);
6986 key.objectid = inode->i_ino;
6987 key.offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006988 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
6989 datasize = btrfs_file_extent_calc_inline_size(name_len);
6990 err = btrfs_insert_empty_item(trans, root, path, &key,
6991 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04006992 if (err) {
6993 drop_inode = 1;
6994 goto out_unlock;
6995 }
Chris Mason5f39d392007-10-15 16:14:19 -04006996 leaf = path->nodes[0];
6997 ei = btrfs_item_ptr(leaf, path->slots[0],
6998 struct btrfs_file_extent_item);
6999 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
7000 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04007001 BTRFS_FILE_EXTENT_INLINE);
Chris Masonc8b97812008-10-29 14:49:59 -04007002 btrfs_set_file_extent_encryption(leaf, ei, 0);
7003 btrfs_set_file_extent_compression(leaf, ei, 0);
7004 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
7005 btrfs_set_file_extent_ram_bytes(leaf, ei, name_len);
7006
Chris Mason39279cc2007-06-12 06:35:45 -04007007 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04007008 write_extent_buffer(leaf, symname, ptr, name_len);
7009 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04007010 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04007011
Chris Mason39279cc2007-06-12 06:35:45 -04007012 inode->i_op = &btrfs_symlink_inode_operations;
7013 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04007014 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Yan Zhengd899e052008-10-30 14:25:28 -04007015 inode_set_bytes(inode, name_len);
Chris Masondbe674a2008-07-17 12:54:05 -04007016 btrfs_i_size_write(inode, name_len - 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04007017 err = btrfs_update_inode(trans, root, inode);
7018 if (err)
7019 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04007020
7021out_unlock:
Chris Masond3c2fdc2007-09-17 10:58:06 -04007022 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04007023 btrfs_end_transaction_throttle(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04007024 if (drop_inode) {
7025 inode_dec_link_count(inode);
7026 iput(inode);
7027 }
Chris Masond3c2fdc2007-09-17 10:58:06 -04007028 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04007029 return err;
7030}
Chris Mason16432982008-04-10 10:23:21 -04007031
Josef Bacik0af3d002010-06-21 14:48:16 -04007032static int __btrfs_prealloc_file_range(struct inode *inode, int mode,
7033 u64 start, u64 num_bytes, u64 min_size,
7034 loff_t actual_len, u64 *alloc_hint,
7035 struct btrfs_trans_handle *trans)
Yan Zhengd899e052008-10-30 14:25:28 -04007036{
Yan Zhengd899e052008-10-30 14:25:28 -04007037 struct btrfs_root *root = BTRFS_I(inode)->root;
7038 struct btrfs_key ins;
Yan Zhengd899e052008-10-30 14:25:28 -04007039 u64 cur_offset = start;
Josef Bacik55a61d12010-11-22 18:50:32 +00007040 u64 i_size;
Yan Zhengd899e052008-10-30 14:25:28 -04007041 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04007042 bool own_trans = true;
Yan Zhengd899e052008-10-30 14:25:28 -04007043
Josef Bacik0af3d002010-06-21 14:48:16 -04007044 if (trans)
7045 own_trans = false;
Yan Zhengd899e052008-10-30 14:25:28 -04007046 while (num_bytes > 0) {
Josef Bacik0af3d002010-06-21 14:48:16 -04007047 if (own_trans) {
7048 trans = btrfs_start_transaction(root, 3);
7049 if (IS_ERR(trans)) {
7050 ret = PTR_ERR(trans);
7051 break;
7052 }
Yan Zhengd899e052008-10-30 14:25:28 -04007053 }
Yan, Zheng5a303d52009-11-12 09:34:52 +00007054
Yan, Zhengefa56462010-05-16 10:49:59 -04007055 ret = btrfs_reserve_extent(trans, root, num_bytes, min_size,
7056 0, *alloc_hint, (u64)-1, &ins, 1);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007057 if (ret) {
Josef Bacik0af3d002010-06-21 14:48:16 -04007058 if (own_trans)
7059 btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04007060 break;
Yan, Zheng5a303d52009-11-12 09:34:52 +00007061 }
7062
Yan Zhengd899e052008-10-30 14:25:28 -04007063 ret = insert_reserved_file_extent(trans, inode,
7064 cur_offset, ins.objectid,
7065 ins.offset, ins.offset,
Yan, Zheng920bbbf2009-11-12 09:34:08 +00007066 ins.offset, 0, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04007067 BTRFS_FILE_EXTENT_PREALLOC);
7068 BUG_ON(ret);
Chris Masona1ed8352009-09-11 12:27:37 -04007069 btrfs_drop_extent_cache(inode, cur_offset,
7070 cur_offset + ins.offset -1, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007071
Yan Zhengd899e052008-10-30 14:25:28 -04007072 num_bytes -= ins.offset;
7073 cur_offset += ins.offset;
Yan, Zhengefa56462010-05-16 10:49:59 -04007074 *alloc_hint = ins.objectid + ins.offset;
Yan, Zheng5a303d52009-11-12 09:34:52 +00007075
Yan Zhengd899e052008-10-30 14:25:28 -04007076 inode->i_ctime = CURRENT_TIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +02007077 BTRFS_I(inode)->flags |= BTRFS_INODE_PREALLOC;
Yan Zhengd899e052008-10-30 14:25:28 -04007078 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
Yan, Zhengefa56462010-05-16 10:49:59 -04007079 (actual_len > inode->i_size) &&
7080 (cur_offset > inode->i_size)) {
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00007081 if (cur_offset > actual_len)
Josef Bacik55a61d12010-11-22 18:50:32 +00007082 i_size = actual_len;
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00007083 else
Josef Bacik55a61d12010-11-22 18:50:32 +00007084 i_size = cur_offset;
7085 i_size_write(inode, i_size);
7086 btrfs_ordered_update_i_size(inode, i_size, NULL);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007087 }
7088
Yan Zhengd899e052008-10-30 14:25:28 -04007089 ret = btrfs_update_inode(trans, root, inode);
7090 BUG_ON(ret);
Yan Zhengd899e052008-10-30 14:25:28 -04007091
Josef Bacik0af3d002010-06-21 14:48:16 -04007092 if (own_trans)
7093 btrfs_end_transaction(trans, root);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007094 }
Yan Zhengd899e052008-10-30 14:25:28 -04007095 return ret;
7096}
7097
Josef Bacik0af3d002010-06-21 14:48:16 -04007098int btrfs_prealloc_file_range(struct inode *inode, int mode,
7099 u64 start, u64 num_bytes, u64 min_size,
7100 loff_t actual_len, u64 *alloc_hint)
7101{
7102 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
7103 min_size, actual_len, alloc_hint,
7104 NULL);
7105}
7106
7107int btrfs_prealloc_file_range_trans(struct inode *inode,
7108 struct btrfs_trans_handle *trans, int mode,
7109 u64 start, u64 num_bytes, u64 min_size,
7110 loff_t actual_len, u64 *alloc_hint)
7111{
7112 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
7113 min_size, actual_len, alloc_hint, trans);
7114}
7115
Yan Zhengd899e052008-10-30 14:25:28 -04007116static long btrfs_fallocate(struct inode *inode, int mode,
7117 loff_t offset, loff_t len)
7118{
Josef Bacik2ac55d42010-02-03 19:33:23 +00007119 struct extent_state *cached_state = NULL;
Yan Zhengd899e052008-10-30 14:25:28 -04007120 u64 cur_offset;
7121 u64 last_byte;
7122 u64 alloc_start;
7123 u64 alloc_end;
7124 u64 alloc_hint = 0;
Chris Masone980b502009-04-24 14:39:24 -04007125 u64 locked_end;
Yan Zhengd899e052008-10-30 14:25:28 -04007126 u64 mask = BTRFS_I(inode)->root->sectorsize - 1;
7127 struct extent_map *em;
7128 int ret;
7129
7130 alloc_start = offset & ~mask;
7131 alloc_end = (offset + len + mask) & ~mask;
7132
Chris Mason546888d2009-04-21 11:53:38 -04007133 /*
7134 * wait for ordered IO before we have any locks. We'll loop again
7135 * below with the locks held.
7136 */
7137 btrfs_wait_ordered_range(inode, alloc_start, alloc_end - alloc_start);
7138
Yan Zhengd899e052008-10-30 14:25:28 -04007139 mutex_lock(&inode->i_mutex);
Josef Bacik0ed42a62010-11-22 18:55:39 +00007140 ret = inode_newsize_ok(inode, alloc_end);
7141 if (ret)
7142 goto out;
7143
Yan Zhengd899e052008-10-30 14:25:28 -04007144 if (alloc_start > inode->i_size) {
7145 ret = btrfs_cont_expand(inode, alloc_start);
7146 if (ret)
7147 goto out;
7148 }
7149
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04007150 ret = btrfs_check_data_free_space(inode, alloc_end - alloc_start);
Josef Bacika970b0a2009-06-27 21:07:34 -04007151 if (ret)
7152 goto out;
7153
Chris Masone980b502009-04-24 14:39:24 -04007154 locked_end = alloc_end - 1;
Yan Zhengd899e052008-10-30 14:25:28 -04007155 while (1) {
7156 struct btrfs_ordered_extent *ordered;
Chris Mason546888d2009-04-21 11:53:38 -04007157
Chris Mason546888d2009-04-21 11:53:38 -04007158 /* the extent lock is ordered inside the running
7159 * transaction
7160 */
Josef Bacik2ac55d42010-02-03 19:33:23 +00007161 lock_extent_bits(&BTRFS_I(inode)->io_tree, alloc_start,
7162 locked_end, 0, &cached_state, GFP_NOFS);
Yan Zhengd899e052008-10-30 14:25:28 -04007163 ordered = btrfs_lookup_first_ordered_extent(inode,
7164 alloc_end - 1);
7165 if (ordered &&
7166 ordered->file_offset + ordered->len > alloc_start &&
7167 ordered->file_offset < alloc_end) {
7168 btrfs_put_ordered_extent(ordered);
Josef Bacik2ac55d42010-02-03 19:33:23 +00007169 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
7170 alloc_start, locked_end,
7171 &cached_state, GFP_NOFS);
Chris Mason546888d2009-04-21 11:53:38 -04007172 /*
7173 * we can't wait on the range with the transaction
7174 * running or with the extent lock held
7175 */
Yan Zhengd899e052008-10-30 14:25:28 -04007176 btrfs_wait_ordered_range(inode, alloc_start,
7177 alloc_end - alloc_start);
7178 } else {
7179 if (ordered)
7180 btrfs_put_ordered_extent(ordered);
7181 break;
7182 }
7183 }
7184
7185 cur_offset = alloc_start;
7186 while (1) {
7187 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
7188 alloc_end - cur_offset, 0);
7189 BUG_ON(IS_ERR(em) || !em);
7190 last_byte = min(extent_map_end(em), alloc_end);
7191 last_byte = (last_byte + mask) & ~mask;
Yan, Zheng5a303d52009-11-12 09:34:52 +00007192 if (em->block_start == EXTENT_MAP_HOLE ||
7193 (cur_offset >= inode->i_size &&
7194 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
Josef Bacik83609772010-06-07 18:26:37 +00007195 ret = btrfs_prealloc_file_range(inode, mode, cur_offset,
Yan, Zhengefa56462010-05-16 10:49:59 -04007196 last_byte - cur_offset,
7197 1 << inode->i_blkbits,
7198 offset + len,
7199 &alloc_hint);
Yan Zhengd899e052008-10-30 14:25:28 -04007200 if (ret < 0) {
7201 free_extent_map(em);
7202 break;
7203 }
7204 }
Yan Zhengd899e052008-10-30 14:25:28 -04007205 free_extent_map(em);
7206
7207 cur_offset = last_byte;
7208 if (cur_offset >= alloc_end) {
7209 ret = 0;
7210 break;
7211 }
7212 }
Josef Bacik2ac55d42010-02-03 19:33:23 +00007213 unlock_extent_cached(&BTRFS_I(inode)->io_tree, alloc_start, locked_end,
7214 &cached_state, GFP_NOFS);
Chris Mason546888d2009-04-21 11:53:38 -04007215
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04007216 btrfs_free_reserved_data_space(inode, alloc_end - alloc_start);
Yan Zhengd899e052008-10-30 14:25:28 -04007217out:
7218 mutex_unlock(&inode->i_mutex);
7219 return ret;
7220}
7221
Chris Masone6dcd2d2008-07-17 12:53:50 -04007222static int btrfs_set_page_dirty(struct page *page)
7223{
Chris Masone6dcd2d2008-07-17 12:53:50 -04007224 return __set_page_dirty_nobuffers(page);
7225}
7226
Sven Wegener0ee0fda2008-07-30 16:54:26 -04007227static int btrfs_permission(struct inode *inode, int mask)
Yanfdebe2b2008-01-14 13:26:08 -05007228{
Christoph Hellwig6cbff002009-04-17 10:37:41 +02007229 if ((BTRFS_I(inode)->flags & BTRFS_INODE_READONLY) && (mask & MAY_WRITE))
Yanfdebe2b2008-01-14 13:26:08 -05007230 return -EACCES;
Josef Bacik33268ea2008-07-24 12:16:36 -04007231 return generic_permission(inode, mask, btrfs_check_acl);
Yanfdebe2b2008-01-14 13:26:08 -05007232}
Chris Mason39279cc2007-06-12 06:35:45 -04007233
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007234static const struct inode_operations btrfs_dir_inode_operations = {
Chris Mason3394e162008-11-17 20:42:26 -05007235 .getattr = btrfs_getattr,
Chris Mason39279cc2007-06-12 06:35:45 -04007236 .lookup = btrfs_lookup,
7237 .create = btrfs_create,
7238 .unlink = btrfs_unlink,
7239 .link = btrfs_link,
7240 .mkdir = btrfs_mkdir,
7241 .rmdir = btrfs_rmdir,
7242 .rename = btrfs_rename,
7243 .symlink = btrfs_symlink,
7244 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04007245 .mknod = btrfs_mknod,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007246 .setxattr = btrfs_setxattr,
7247 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05007248 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007249 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05007250 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04007251};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007252static const struct inode_operations btrfs_dir_ro_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007253 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -05007254 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04007255};
Yan, Zheng76dda932009-09-21 16:00:26 -04007256
Alexey Dobriyan828c0952009-10-01 15:43:56 -07007257static const struct file_operations btrfs_dir_file_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007258 .llseek = generic_file_llseek,
7259 .read = generic_read_dir,
David Woodhousecbdf5a22008-08-06 19:42:33 +01007260 .readdir = btrfs_real_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04007261 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04007262#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04007263 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04007264#endif
Sage Weil6bf13c02008-06-10 10:07:39 -04007265 .release = btrfs_release_file,
Chris Masone02119d2008-09-05 16:13:11 -04007266 .fsync = btrfs_sync_file,
Chris Mason39279cc2007-06-12 06:35:45 -04007267};
7268
Chris Masond1310b22008-01-24 16:13:08 -05007269static struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -04007270 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -05007271 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04007272 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04007273 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Masone6dcd2d2008-07-17 12:53:50 -04007274 .writepage_end_io_hook = btrfs_writepage_end_io_hook,
Chris Mason247e7432008-07-17 12:53:51 -04007275 .writepage_start_hook = btrfs_writepage_start_hook,
Chris Mason1259ab72008-05-12 13:39:03 -04007276 .readpage_io_failed_hook = btrfs_io_failed_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -05007277 .set_bit_hook = btrfs_set_bit_hook,
7278 .clear_bit_hook = btrfs_clear_bit_hook,
Josef Bacik9ed74f22009-09-11 16:12:44 -04007279 .merge_extent_hook = btrfs_merge_extent_hook,
7280 .split_extent_hook = btrfs_split_extent_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04007281};
7282
Chris Mason35054392009-01-21 13:11:13 -05007283/*
7284 * btrfs doesn't support the bmap operation because swapfiles
7285 * use bmap to make a mapping of extents in the file. They assume
7286 * these extents won't change over the life of the file and they
7287 * use the bmap result to do IO directly to the drive.
7288 *
7289 * the btrfs bmap call would return logical addresses that aren't
7290 * suitable for IO and they also will change frequently as COW
7291 * operations happen. So, swapfile + btrfs == corruption.
7292 *
7293 * For now we're avoiding this by dropping bmap.
7294 */
Alexey Dobriyan7f094102009-09-21 17:01:10 -07007295static const struct address_space_operations btrfs_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04007296 .readpage = btrfs_readpage,
7297 .writepage = btrfs_writepage,
Chris Masonb293f022007-11-01 19:45:34 -04007298 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -05007299 .readpages = btrfs_readpages,
Chris Mason39279cc2007-06-12 06:35:45 -04007300 .sync_page = block_sync_page,
Chris Mason16432982008-04-10 10:23:21 -04007301 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -04007302 .invalidatepage = btrfs_invalidatepage,
7303 .releasepage = btrfs_releasepage,
Chris Masone6dcd2d2008-07-17 12:53:50 -04007304 .set_page_dirty = btrfs_set_page_dirty,
Andi Kleen465fdd92009-09-16 11:50:18 +02007305 .error_remove_page = generic_error_remove_page,
Chris Mason39279cc2007-06-12 06:35:45 -04007306};
7307
Alexey Dobriyan7f094102009-09-21 17:01:10 -07007308static const struct address_space_operations btrfs_symlink_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04007309 .readpage = btrfs_readpage,
7310 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -04007311 .invalidatepage = btrfs_invalidatepage,
7312 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -04007313};
7314
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007315static const struct inode_operations btrfs_file_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007316 .truncate = btrfs_truncate,
7317 .getattr = btrfs_getattr,
7318 .setattr = btrfs_setattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007319 .setxattr = btrfs_setxattr,
7320 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05007321 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007322 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05007323 .permission = btrfs_permission,
Yan Zhengd899e052008-10-30 14:25:28 -04007324 .fallocate = btrfs_fallocate,
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05007325 .fiemap = btrfs_fiemap,
Chris Mason39279cc2007-06-12 06:35:45 -04007326};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007327static const struct inode_operations btrfs_special_inode_operations = {
Josef Bacik618e21d2007-07-11 10:18:17 -04007328 .getattr = btrfs_getattr,
7329 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05007330 .permission = btrfs_permission,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007331 .setxattr = btrfs_setxattr,
7332 .getxattr = btrfs_getxattr,
Josef Bacik33268ea2008-07-24 12:16:36 -04007333 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007334 .removexattr = btrfs_removexattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04007335};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007336static const struct inode_operations btrfs_symlink_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007337 .readlink = generic_readlink,
7338 .follow_link = page_follow_link_light,
7339 .put_link = page_put_link,
Li Zefanf2095612010-11-19 02:05:24 +00007340 .getattr = btrfs_getattr,
Yanfdebe2b2008-01-14 13:26:08 -05007341 .permission = btrfs_permission,
Jim Owens0279b4c2009-02-04 09:29:13 -05007342 .setxattr = btrfs_setxattr,
7343 .getxattr = btrfs_getxattr,
7344 .listxattr = btrfs_listxattr,
7345 .removexattr = btrfs_removexattr,
Chris Mason39279cc2007-06-12 06:35:45 -04007346};
Yan, Zheng76dda932009-09-21 16:00:26 -04007347
Alexey Dobriyan82d339d2009-10-09 09:54:36 -04007348const struct dentry_operations btrfs_dentry_operations = {
Yan, Zheng76dda932009-09-21 16:00:26 -04007349 .d_delete = btrfs_dentry_delete,
7350};