2 * Copyright (C) 2007 Oracle. All rights reserved.
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.
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.
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.
19 #include <linux/buffer_head.h>
21 #include <linux/pagemap.h>
22 #include <linux/highmem.h>
23 #include <linux/time.h>
24 #include <linux/init.h>
25 #include <linux/string.h>
26 #include <linux/smp_lock.h>
27 #include <linux/backing-dev.h>
28 #include <linux/mpage.h>
29 #include <linux/swap.h>
30 #include <linux/writeback.h>
31 #include <linux/statfs.h>
32 #include <linux/compat.h>
33 #include <linux/bit_spinlock.h>
34 #include <linux/version.h>
35 #include <linux/xattr.h>
38 #include "transaction.h"
39 #include "btrfs_inode.h"
41 #include "print-tree.h"
43 struct btrfs_iget_args {
45 struct btrfs_root *root;
48 static struct inode_operations btrfs_dir_inode_operations;
49 static struct inode_operations btrfs_symlink_inode_operations;
50 static struct inode_operations btrfs_dir_ro_inode_operations;
51 static struct inode_operations btrfs_special_inode_operations;
52 static struct inode_operations btrfs_file_inode_operations;
53 static struct address_space_operations btrfs_aops;
54 static struct address_space_operations btrfs_symlink_aops;
55 static struct file_operations btrfs_dir_file_operations;
56 static struct extent_map_ops btrfs_extent_map_ops;
58 static struct kmem_cache *btrfs_inode_cachep;
59 struct kmem_cache *btrfs_trans_handle_cachep;
60 struct kmem_cache *btrfs_transaction_cachep;
61 struct kmem_cache *btrfs_bit_radix_cachep;
62 struct kmem_cache *btrfs_path_cachep;
65 static unsigned char btrfs_type_by_mode[S_IFMT >> S_SHIFT] = {
66 [S_IFREG >> S_SHIFT] = BTRFS_FT_REG_FILE,
67 [S_IFDIR >> S_SHIFT] = BTRFS_FT_DIR,
68 [S_IFCHR >> S_SHIFT] = BTRFS_FT_CHRDEV,
69 [S_IFBLK >> S_SHIFT] = BTRFS_FT_BLKDEV,
70 [S_IFIFO >> S_SHIFT] = BTRFS_FT_FIFO,
71 [S_IFSOCK >> S_SHIFT] = BTRFS_FT_SOCK,
72 [S_IFLNK >> S_SHIFT] = BTRFS_FT_SYMLINK,
75 int btrfs_check_free_space(struct btrfs_root *root, u64 num_required,
78 u64 total = btrfs_super_total_bytes(&root->fs_info->super_copy);
79 u64 used = btrfs_super_bytes_used(&root->fs_info->super_copy);
90 spin_lock(&root->fs_info->delalloc_lock);
91 if (used + root->fs_info->delalloc_bytes + num_required > thresh)
93 spin_unlock(&root->fs_info->delalloc_lock);
97 static int cow_file_range(struct inode *inode, u64 start, u64 end)
99 struct btrfs_root *root = BTRFS_I(inode)->root;
100 struct btrfs_trans_handle *trans;
104 u64 blocksize = root->sectorsize;
105 struct btrfs_key ins;
108 trans = btrfs_start_transaction(root, 1);
110 btrfs_set_trans_block_group(trans, inode);
112 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
113 num_bytes = max(blocksize, num_bytes);
114 ret = btrfs_drop_extents(trans, root, inode,
115 start, start + num_bytes, start, &alloc_hint);
117 if (alloc_hint == EXTENT_MAP_INLINE)
120 while(num_bytes > 0) {
121 cur_alloc_size = min(num_bytes, root->fs_info->max_extent);
122 ret = btrfs_alloc_extent(trans, root, cur_alloc_size,
123 root->root_key.objectid,
125 inode->i_ino, start, 0,
126 alloc_hint, (u64)-1, &ins, 1);
131 ret = btrfs_insert_file_extent(trans, root, inode->i_ino,
132 start, ins.objectid, ins.offset,
134 num_bytes -= cur_alloc_size;
135 alloc_hint = ins.objectid + ins.offset;
136 start += cur_alloc_size;
138 btrfs_add_ordered_inode(inode);
140 btrfs_end_transaction(trans, root);
144 static int run_delalloc_nocow(struct inode *inode, u64 start, u64 end)
152 struct btrfs_root *root = BTRFS_I(inode)->root;
153 struct extent_buffer *leaf;
155 struct btrfs_path *path;
156 struct btrfs_file_extent_item *item;
159 struct btrfs_key found_key;
161 total_fs_bytes = btrfs_super_total_bytes(&root->fs_info->super_copy);
162 path = btrfs_alloc_path();
165 ret = btrfs_lookup_file_extent(NULL, root, path,
166 inode->i_ino, start, 0);
168 btrfs_free_path(path);
174 if (path->slots[0] == 0)
179 leaf = path->nodes[0];
180 item = btrfs_item_ptr(leaf, path->slots[0],
181 struct btrfs_file_extent_item);
183 /* are we inside the extent that was found? */
184 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
185 found_type = btrfs_key_type(&found_key);
186 if (found_key.objectid != inode->i_ino ||
187 found_type != BTRFS_EXTENT_DATA_KEY) {
191 found_type = btrfs_file_extent_type(leaf, item);
192 extent_start = found_key.offset;
193 if (found_type == BTRFS_FILE_EXTENT_REG) {
194 u64 extent_num_bytes;
196 extent_num_bytes = btrfs_file_extent_num_bytes(leaf, item);
197 extent_end = extent_start + extent_num_bytes;
200 if (loops && start != extent_start)
203 if (start < extent_start || start >= extent_end)
206 cow_end = min(end, extent_end - 1);
207 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
212 * we may be called by the resizer, make sure we're inside
213 * the limits of the FS
215 if (bytenr + extent_num_bytes > total_fs_bytes)
218 if (btrfs_count_snapshots_in_path(root, path, bytenr) != 1) {
228 btrfs_free_path(path);
231 btrfs_release_path(root, path);
236 cow_file_range(inode, start, cow_end);
241 static int run_delalloc_range(struct inode *inode, u64 start, u64 end)
243 struct btrfs_root *root = BTRFS_I(inode)->root;
247 mutex_lock(&root->fs_info->fs_mutex);
248 if (btrfs_test_opt(root, NODATACOW))
249 ret = run_delalloc_nocow(inode, start, end);
251 ret = cow_file_range(inode, start, end);
253 spin_lock(&root->fs_info->delalloc_lock);
254 num_bytes = end + 1 - start;
255 if (root->fs_info->delalloc_bytes < num_bytes) {
256 printk("delalloc accounting error total %llu sub %llu\n",
257 root->fs_info->delalloc_bytes, num_bytes);
259 root->fs_info->delalloc_bytes -= num_bytes;
261 spin_unlock(&root->fs_info->delalloc_lock);
263 mutex_unlock(&root->fs_info->fs_mutex);
267 int btrfs_writepage_io_hook(struct page *page, u64 start, u64 end)
269 struct inode *inode = page->mapping->host;
270 struct btrfs_root *root = BTRFS_I(inode)->root;
271 struct btrfs_trans_handle *trans;
274 u64 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
275 size_t offset = start - page_start;
277 if (btrfs_test_opt(root, NODATASUM))
280 mutex_lock(&root->fs_info->fs_mutex);
281 trans = btrfs_start_transaction(root, 1);
282 btrfs_set_trans_block_group(trans, inode);
284 btrfs_csum_file_block(trans, root, inode, inode->i_ino,
285 start, kaddr + offset, end - start + 1);
287 ret = btrfs_end_transaction(trans, root);
289 mutex_unlock(&root->fs_info->fs_mutex);
293 int btrfs_readpage_io_hook(struct page *page, u64 start, u64 end)
296 struct inode *inode = page->mapping->host;
297 struct btrfs_root *root = BTRFS_I(inode)->root;
298 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
299 struct btrfs_csum_item *item;
300 struct btrfs_path *path = NULL;
303 if (btrfs_test_opt(root, NODATASUM))
306 mutex_lock(&root->fs_info->fs_mutex);
307 path = btrfs_alloc_path();
308 item = btrfs_lookup_csum(NULL, root, path, inode->i_ino, start, 0);
311 /* a csum that isn't present is a preallocated region. */
312 if (ret == -ENOENT || ret == -EFBIG)
317 read_extent_buffer(path->nodes[0], &csum, (unsigned long)item,
319 set_state_private(em_tree, start, csum);
322 btrfs_free_path(path);
323 mutex_unlock(&root->fs_info->fs_mutex);
327 int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end)
329 size_t offset = start - ((u64)page->index << PAGE_CACHE_SHIFT);
330 struct inode *inode = page->mapping->host;
331 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
335 struct btrfs_root *root = BTRFS_I(inode)->root;
339 if (btrfs_test_opt(root, NODATASUM))
342 ret = get_state_private(em_tree, start, &private);
343 local_irq_save(flags);
344 kaddr = kmap_atomic(page, KM_IRQ0);
348 csum = btrfs_csum_data(root, kaddr + offset, csum, end - start + 1);
349 btrfs_csum_final(csum, (char *)&csum);
350 if (csum != private) {
353 kunmap_atomic(kaddr, KM_IRQ0);
354 local_irq_restore(flags);
358 printk("btrfs csum failed ino %lu off %llu\n",
359 page->mapping->host->i_ino, (unsigned long long)start);
360 memset(kaddr + offset, 1, end - start + 1);
361 flush_dcache_page(page);
362 kunmap_atomic(kaddr, KM_IRQ0);
363 local_irq_restore(flags);
367 void btrfs_read_locked_inode(struct inode *inode)
369 struct btrfs_path *path;
370 struct extent_buffer *leaf;
371 struct btrfs_inode_item *inode_item;
372 struct btrfs_inode_timespec *tspec;
373 struct btrfs_root *root = BTRFS_I(inode)->root;
374 struct btrfs_key location;
375 u64 alloc_group_block;
379 path = btrfs_alloc_path();
381 mutex_lock(&root->fs_info->fs_mutex);
382 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
384 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
388 leaf = path->nodes[0];
389 inode_item = btrfs_item_ptr(leaf, path->slots[0],
390 struct btrfs_inode_item);
392 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
393 inode->i_nlink = btrfs_inode_nlink(leaf, inode_item);
394 inode->i_uid = btrfs_inode_uid(leaf, inode_item);
395 inode->i_gid = btrfs_inode_gid(leaf, inode_item);
396 inode->i_size = btrfs_inode_size(leaf, inode_item);
398 tspec = btrfs_inode_atime(inode_item);
399 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
400 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
402 tspec = btrfs_inode_mtime(inode_item);
403 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
404 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
406 tspec = btrfs_inode_ctime(inode_item);
407 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
408 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
410 inode->i_blocks = btrfs_inode_nblocks(leaf, inode_item);
411 inode->i_generation = btrfs_inode_generation(leaf, inode_item);
413 rdev = btrfs_inode_rdev(leaf, inode_item);
415 alloc_group_block = btrfs_inode_block_group(leaf, inode_item);
416 BTRFS_I(inode)->block_group = btrfs_lookup_block_group(root->fs_info,
419 if (!BTRFS_I(inode)->block_group) {
420 BTRFS_I(inode)->block_group = btrfs_find_block_group(root,
423 btrfs_free_path(path);
426 mutex_unlock(&root->fs_info->fs_mutex);
428 switch (inode->i_mode & S_IFMT) {
430 inode->i_mapping->a_ops = &btrfs_aops;
431 BTRFS_I(inode)->extent_tree.ops = &btrfs_extent_map_ops;
432 inode->i_fop = &btrfs_file_operations;
433 inode->i_op = &btrfs_file_inode_operations;
436 inode->i_fop = &btrfs_dir_file_operations;
437 if (root == root->fs_info->tree_root)
438 inode->i_op = &btrfs_dir_ro_inode_operations;
440 inode->i_op = &btrfs_dir_inode_operations;
443 inode->i_op = &btrfs_symlink_inode_operations;
444 inode->i_mapping->a_ops = &btrfs_symlink_aops;
447 init_special_inode(inode, inode->i_mode, rdev);
453 btrfs_release_path(root, path);
454 btrfs_free_path(path);
455 mutex_unlock(&root->fs_info->fs_mutex);
456 make_bad_inode(inode);
459 static void fill_inode_item(struct extent_buffer *leaf,
460 struct btrfs_inode_item *item,
463 btrfs_set_inode_uid(leaf, item, inode->i_uid);
464 btrfs_set_inode_gid(leaf, item, inode->i_gid);
465 btrfs_set_inode_size(leaf, item, inode->i_size);
466 btrfs_set_inode_mode(leaf, item, inode->i_mode);
467 btrfs_set_inode_nlink(leaf, item, inode->i_nlink);
469 btrfs_set_timespec_sec(leaf, btrfs_inode_atime(item),
470 inode->i_atime.tv_sec);
471 btrfs_set_timespec_nsec(leaf, btrfs_inode_atime(item),
472 inode->i_atime.tv_nsec);
474 btrfs_set_timespec_sec(leaf, btrfs_inode_mtime(item),
475 inode->i_mtime.tv_sec);
476 btrfs_set_timespec_nsec(leaf, btrfs_inode_mtime(item),
477 inode->i_mtime.tv_nsec);
479 btrfs_set_timespec_sec(leaf, btrfs_inode_ctime(item),
480 inode->i_ctime.tv_sec);
481 btrfs_set_timespec_nsec(leaf, btrfs_inode_ctime(item),
482 inode->i_ctime.tv_nsec);
484 btrfs_set_inode_nblocks(leaf, item, inode->i_blocks);
485 btrfs_set_inode_generation(leaf, item, inode->i_generation);
486 btrfs_set_inode_rdev(leaf, item, inode->i_rdev);
487 btrfs_set_inode_block_group(leaf, item,
488 BTRFS_I(inode)->block_group->key.objectid);
491 int btrfs_update_inode(struct btrfs_trans_handle *trans,
492 struct btrfs_root *root,
495 struct btrfs_inode_item *inode_item;
496 struct btrfs_path *path;
497 struct extent_buffer *leaf;
500 path = btrfs_alloc_path();
502 ret = btrfs_lookup_inode(trans, root, path,
503 &BTRFS_I(inode)->location, 1);
510 leaf = path->nodes[0];
511 inode_item = btrfs_item_ptr(leaf, path->slots[0],
512 struct btrfs_inode_item);
514 fill_inode_item(leaf, inode_item, inode);
515 btrfs_mark_buffer_dirty(leaf);
516 btrfs_set_inode_last_trans(trans, inode);
519 btrfs_release_path(root, path);
520 btrfs_free_path(path);
525 static int btrfs_unlink_trans(struct btrfs_trans_handle *trans,
526 struct btrfs_root *root,
528 struct dentry *dentry)
530 struct btrfs_path *path;
531 const char *name = dentry->d_name.name;
532 int name_len = dentry->d_name.len;
534 struct extent_buffer *leaf;
535 struct btrfs_dir_item *di;
536 struct btrfs_key key;
538 path = btrfs_alloc_path();
544 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
554 leaf = path->nodes[0];
555 btrfs_dir_item_key_to_cpu(leaf, di, &key);
556 ret = btrfs_delete_one_dir_name(trans, root, path, di);
559 btrfs_release_path(root, path);
561 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino,
562 key.objectid, name, name_len, -1);
571 ret = btrfs_delete_one_dir_name(trans, root, path, di);
573 dentry->d_inode->i_ctime = dir->i_ctime;
574 ret = btrfs_del_inode_ref(trans, root, name, name_len,
575 dentry->d_inode->i_ino,
576 dentry->d_parent->d_inode->i_ino);
578 printk("failed to delete reference to %.*s, "
579 "inode %lu parent %lu\n", name_len, name,
580 dentry->d_inode->i_ino,
581 dentry->d_parent->d_inode->i_ino);
584 btrfs_free_path(path);
586 dir->i_size -= name_len * 2;
587 dir->i_mtime = dir->i_ctime = CURRENT_TIME;
588 btrfs_update_inode(trans, root, dir);
589 #if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
590 dentry->d_inode->i_nlink--;
592 drop_nlink(dentry->d_inode);
594 ret = btrfs_update_inode(trans, root, dentry->d_inode);
595 dir->i_sb->s_dirt = 1;
600 static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
602 struct btrfs_root *root;
603 struct btrfs_trans_handle *trans;
605 unsigned long nr = 0;
607 root = BTRFS_I(dir)->root;
608 mutex_lock(&root->fs_info->fs_mutex);
610 ret = btrfs_check_free_space(root, 1, 1);
614 trans = btrfs_start_transaction(root, 1);
616 btrfs_set_trans_block_group(trans, dir);
617 ret = btrfs_unlink_trans(trans, root, dir, dentry);
618 nr = trans->blocks_used;
620 btrfs_end_transaction(trans, root);
622 mutex_unlock(&root->fs_info->fs_mutex);
623 btrfs_btree_balance_dirty(root, nr);
624 btrfs_throttle(root);
628 static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
630 struct inode *inode = dentry->d_inode;
633 struct btrfs_root *root = BTRFS_I(dir)->root;
634 struct btrfs_trans_handle *trans;
635 unsigned long nr = 0;
637 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE)
640 mutex_lock(&root->fs_info->fs_mutex);
641 ret = btrfs_check_free_space(root, 1, 1);
645 trans = btrfs_start_transaction(root, 1);
646 btrfs_set_trans_block_group(trans, dir);
648 /* now the directory is empty */
649 err = btrfs_unlink_trans(trans, root, dir, dentry);
654 nr = trans->blocks_used;
655 ret = btrfs_end_transaction(trans, root);
657 mutex_unlock(&root->fs_info->fs_mutex);
658 btrfs_btree_balance_dirty(root, nr);
659 btrfs_throttle(root);
666 static int btrfs_free_inode(struct btrfs_trans_handle *trans,
667 struct btrfs_root *root,
670 struct btrfs_path *path;
675 path = btrfs_alloc_path();
677 ret = btrfs_lookup_inode(trans, root, path,
678 &BTRFS_I(inode)->location, -1);
682 ret = btrfs_del_item(trans, root, path);
683 btrfs_free_path(path);
688 * this can truncate away extent items, csum items and directory items.
689 * It starts at a high offset and removes keys until it can't find
690 * any higher than i_size.
692 * csum items that cross the new i_size are truncated to the new size
695 static int btrfs_truncate_in_trans(struct btrfs_trans_handle *trans,
696 struct btrfs_root *root,
700 struct btrfs_path *path;
701 struct btrfs_key key;
702 struct btrfs_key found_key;
704 struct extent_buffer *leaf;
705 struct btrfs_file_extent_item *fi;
706 u64 extent_start = 0;
707 u64 extent_num_bytes = 0;
713 int extent_type = -1;
715 btrfs_drop_extent_cache(inode, inode->i_size, (u64)-1);
716 path = btrfs_alloc_path();
720 /* FIXME, add redo link to tree so we don't leak on crash */
721 key.objectid = inode->i_ino;
722 key.offset = (u64)-1;
726 btrfs_init_path(path);
728 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
733 BUG_ON(path->slots[0] == 0);
736 leaf = path->nodes[0];
737 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
738 found_type = btrfs_key_type(&found_key);
740 if (found_key.objectid != inode->i_ino)
743 if (found_type != BTRFS_CSUM_ITEM_KEY &&
744 found_type != BTRFS_DIR_ITEM_KEY &&
745 found_type != BTRFS_DIR_INDEX_KEY &&
746 found_type != BTRFS_EXTENT_DATA_KEY)
749 item_end = found_key.offset;
750 if (found_type == BTRFS_EXTENT_DATA_KEY) {
751 fi = btrfs_item_ptr(leaf, path->slots[0],
752 struct btrfs_file_extent_item);
753 extent_type = btrfs_file_extent_type(leaf, fi);
754 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
756 btrfs_file_extent_num_bytes(leaf, fi);
757 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
758 struct btrfs_item *item = btrfs_item_nr(leaf,
760 item_end += btrfs_file_extent_inline_len(leaf,
765 if (found_type == BTRFS_CSUM_ITEM_KEY) {
766 ret = btrfs_csum_truncate(trans, root, path,
770 if (item_end < inode->i_size) {
771 if (found_type == BTRFS_DIR_ITEM_KEY) {
772 found_type = BTRFS_INODE_ITEM_KEY;
773 } else if (found_type == BTRFS_EXTENT_ITEM_KEY) {
774 found_type = BTRFS_CSUM_ITEM_KEY;
775 } else if (found_type) {
780 btrfs_set_key_type(&key, found_type);
781 btrfs_release_path(root, path);
784 if (found_key.offset >= inode->i_size)
790 /* FIXME, shrink the extent if the ref count is only 1 */
791 if (found_type != BTRFS_EXTENT_DATA_KEY)
794 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
796 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
799 btrfs_file_extent_num_bytes(leaf, fi);
800 extent_num_bytes = inode->i_size -
801 found_key.offset + root->sectorsize - 1;
802 btrfs_set_file_extent_num_bytes(leaf, fi,
804 num_dec = (orig_num_bytes -
805 extent_num_bytes) >> 9;
806 if (extent_start != 0) {
807 inode->i_blocks -= num_dec;
809 btrfs_mark_buffer_dirty(leaf);
812 btrfs_file_extent_disk_num_bytes(leaf,
814 /* FIXME blocksize != 4096 */
815 num_dec = btrfs_file_extent_num_bytes(leaf,
817 if (extent_start != 0) {
819 inode->i_blocks -= num_dec;
821 root_gen = btrfs_header_generation(leaf);
822 root_owner = btrfs_header_owner(leaf);
824 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE &&
826 u32 newsize = inode->i_size - found_key.offset;
827 newsize = btrfs_file_extent_calc_inline_size(newsize);
828 ret = btrfs_truncate_item(trans, root, path,
834 ret = btrfs_del_item(trans, root, path);
840 btrfs_release_path(root, path);
842 ret = btrfs_free_extent(trans, root, extent_start,
845 root_gen, inode->i_ino,
846 found_key.offset, 0);
852 btrfs_release_path(root, path);
853 btrfs_free_path(path);
854 inode->i_sb->s_dirt = 1;
858 static int btrfs_cow_one_page(struct inode *inode, struct page *page,
862 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
863 struct btrfs_root *root = BTRFS_I(inode)->root;
864 u64 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
865 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
866 u64 existing_delalloc;
870 WARN_ON(!PageLocked(page));
871 set_page_extent_mapped(page);
873 lock_extent(em_tree, page_start, page_end, GFP_NOFS);
874 delalloc_start = page_start;
875 existing_delalloc = count_range_bits(&BTRFS_I(inode)->extent_tree,
876 &delalloc_start, page_end,
877 PAGE_CACHE_SIZE, EXTENT_DELALLOC);
878 set_extent_delalloc(&BTRFS_I(inode)->extent_tree, page_start,
881 spin_lock(&root->fs_info->delalloc_lock);
882 root->fs_info->delalloc_bytes += PAGE_CACHE_SIZE - existing_delalloc;
883 spin_unlock(&root->fs_info->delalloc_lock);
885 if (zero_start != PAGE_CACHE_SIZE) {
887 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
888 flush_dcache_page(page);
891 set_page_dirty(page);
892 unlock_extent(em_tree, page_start, page_end, GFP_NOFS);
898 * taken from block_truncate_page, but does cow as it zeros out
899 * any bytes left in the last page in the file.
901 static int btrfs_truncate_page(struct address_space *mapping, loff_t from)
903 struct inode *inode = mapping->host;
904 struct btrfs_root *root = BTRFS_I(inode)->root;
905 u32 blocksize = root->sectorsize;
906 pgoff_t index = from >> PAGE_CACHE_SHIFT;
907 unsigned offset = from & (PAGE_CACHE_SIZE-1);
912 if ((offset & (blocksize - 1)) == 0)
916 page = grab_cache_page(mapping, index);
919 if (!PageUptodate(page)) {
920 ret = btrfs_readpage(NULL, page);
922 if (!PageUptodate(page)) {
927 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
929 ret = btrfs_cow_one_page(inode, page, offset);
932 page_cache_release(page);
937 static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
939 struct inode *inode = dentry->d_inode;
942 err = inode_change_ok(inode, attr);
946 if (S_ISREG(inode->i_mode) &&
947 attr->ia_valid & ATTR_SIZE && attr->ia_size > inode->i_size) {
948 struct btrfs_trans_handle *trans;
949 struct btrfs_root *root = BTRFS_I(inode)->root;
950 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
952 u64 mask = root->sectorsize - 1;
953 u64 pos = (inode->i_size + mask) & ~mask;
954 u64 block_end = attr->ia_size | mask;
958 if (attr->ia_size <= pos)
961 mutex_lock(&root->fs_info->fs_mutex);
962 err = btrfs_check_free_space(root, 1, 0);
963 mutex_unlock(&root->fs_info->fs_mutex);
967 btrfs_truncate_page(inode->i_mapping, inode->i_size);
969 lock_extent(em_tree, pos, block_end, GFP_NOFS);
970 hole_size = (attr->ia_size - pos + mask) & ~mask;
972 mutex_lock(&root->fs_info->fs_mutex);
973 trans = btrfs_start_transaction(root, 1);
974 btrfs_set_trans_block_group(trans, inode);
975 err = btrfs_drop_extents(trans, root, inode,
976 pos, pos + hole_size, pos,
979 if (alloc_hint != EXTENT_MAP_INLINE) {
980 err = btrfs_insert_file_extent(trans, root,
982 pos, 0, 0, hole_size);
984 btrfs_end_transaction(trans, root);
985 mutex_unlock(&root->fs_info->fs_mutex);
986 unlock_extent(em_tree, pos, block_end, GFP_NOFS);
991 err = inode_setattr(inode, attr);
995 void btrfs_delete_inode(struct inode *inode)
997 struct btrfs_trans_handle *trans;
998 struct btrfs_root *root = BTRFS_I(inode)->root;
1002 truncate_inode_pages(&inode->i_data, 0);
1003 if (is_bad_inode(inode)) {
1008 mutex_lock(&root->fs_info->fs_mutex);
1009 trans = btrfs_start_transaction(root, 1);
1011 btrfs_set_trans_block_group(trans, inode);
1012 ret = btrfs_truncate_in_trans(trans, root, inode);
1014 goto no_delete_lock;
1015 ret = btrfs_delete_xattrs(trans, root, inode);
1017 goto no_delete_lock;
1018 ret = btrfs_free_inode(trans, root, inode);
1020 goto no_delete_lock;
1021 nr = trans->blocks_used;
1023 btrfs_end_transaction(trans, root);
1024 mutex_unlock(&root->fs_info->fs_mutex);
1025 btrfs_btree_balance_dirty(root, nr);
1026 btrfs_throttle(root);
1030 nr = trans->blocks_used;
1031 btrfs_end_transaction(trans, root);
1032 mutex_unlock(&root->fs_info->fs_mutex);
1033 btrfs_btree_balance_dirty(root, nr);
1034 btrfs_throttle(root);
1040 * this returns the key found in the dir entry in the location pointer.
1041 * If no dir entries were found, location->objectid is 0.
1043 static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
1044 struct btrfs_key *location)
1046 const char *name = dentry->d_name.name;
1047 int namelen = dentry->d_name.len;
1048 struct btrfs_dir_item *di;
1049 struct btrfs_path *path;
1050 struct btrfs_root *root = BTRFS_I(dir)->root;
1053 if (namelen == 1 && strcmp(name, ".") == 0) {
1054 location->objectid = dir->i_ino;
1055 location->type = BTRFS_INODE_ITEM_KEY;
1056 location->offset = 0;
1059 path = btrfs_alloc_path();
1062 if (namelen == 2 && strcmp(name, "..") == 0) {
1063 struct btrfs_key key;
1064 struct extent_buffer *leaf;
1068 key.objectid = dir->i_ino;
1069 btrfs_set_key_type(&key, BTRFS_INODE_REF_KEY);
1071 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1075 leaf = path->nodes[0];
1076 slot = path->slots[0];
1077 nritems = btrfs_header_nritems(leaf);
1078 if (slot >= nritems)
1081 btrfs_item_key_to_cpu(leaf, &key, slot);
1082 if (key.objectid != dir->i_ino ||
1083 key.type != BTRFS_INODE_REF_KEY) {
1086 location->objectid = key.offset;
1087 location->type = BTRFS_INODE_ITEM_KEY;
1088 location->offset = 0;
1092 di = btrfs_lookup_dir_item(NULL, root, path, dir->i_ino, name,
1096 if (!di || IS_ERR(di)) {
1099 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
1101 btrfs_free_path(path);
1104 location->objectid = 0;
1109 * when we hit a tree root in a directory, the btrfs part of the inode
1110 * needs to be changed to reflect the root directory of the tree root. This
1111 * is kind of like crossing a mount point.
1113 static int fixup_tree_root_location(struct btrfs_root *root,
1114 struct btrfs_key *location,
1115 struct btrfs_root **sub_root,
1116 struct dentry *dentry)
1118 struct btrfs_path *path;
1119 struct btrfs_root_item *ri;
1121 if (btrfs_key_type(location) != BTRFS_ROOT_ITEM_KEY)
1123 if (location->objectid == BTRFS_ROOT_TREE_OBJECTID)
1126 path = btrfs_alloc_path();
1128 mutex_lock(&root->fs_info->fs_mutex);
1130 *sub_root = btrfs_read_fs_root(root->fs_info, location,
1131 dentry->d_name.name,
1132 dentry->d_name.len);
1133 if (IS_ERR(*sub_root))
1134 return PTR_ERR(*sub_root);
1136 ri = &(*sub_root)->root_item;
1137 location->objectid = btrfs_root_dirid(ri);
1138 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
1139 location->offset = 0;
1141 btrfs_free_path(path);
1142 mutex_unlock(&root->fs_info->fs_mutex);
1146 static int btrfs_init_locked_inode(struct inode *inode, void *p)
1148 struct btrfs_iget_args *args = p;
1149 inode->i_ino = args->ino;
1150 BTRFS_I(inode)->root = args->root;
1151 extent_map_tree_init(&BTRFS_I(inode)->extent_tree,
1152 inode->i_mapping, GFP_NOFS);
1156 static int btrfs_find_actor(struct inode *inode, void *opaque)
1158 struct btrfs_iget_args *args = opaque;
1159 return (args->ino == inode->i_ino &&
1160 args->root == BTRFS_I(inode)->root);
1163 struct inode *btrfs_ilookup(struct super_block *s, u64 objectid,
1166 struct btrfs_iget_args args;
1167 args.ino = objectid;
1168 args.root = btrfs_lookup_fs_root(btrfs_sb(s)->fs_info, root_objectid);
1173 return ilookup5(s, objectid, btrfs_find_actor, (void *)&args);
1176 struct inode *btrfs_iget_locked(struct super_block *s, u64 objectid,
1177 struct btrfs_root *root)
1179 struct inode *inode;
1180 struct btrfs_iget_args args;
1181 args.ino = objectid;
1184 inode = iget5_locked(s, objectid, btrfs_find_actor,
1185 btrfs_init_locked_inode,
1190 static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
1191 struct nameidata *nd)
1193 struct inode * inode;
1194 struct btrfs_inode *bi = BTRFS_I(dir);
1195 struct btrfs_root *root = bi->root;
1196 struct btrfs_root *sub_root = root;
1197 struct btrfs_key location;
1200 if (dentry->d_name.len > BTRFS_NAME_LEN)
1201 return ERR_PTR(-ENAMETOOLONG);
1203 mutex_lock(&root->fs_info->fs_mutex);
1204 ret = btrfs_inode_by_name(dir, dentry, &location);
1205 mutex_unlock(&root->fs_info->fs_mutex);
1208 return ERR_PTR(ret);
1211 if (location.objectid) {
1212 ret = fixup_tree_root_location(root, &location, &sub_root,
1215 return ERR_PTR(ret);
1217 return ERR_PTR(-ENOENT);
1218 inode = btrfs_iget_locked(dir->i_sb, location.objectid,
1221 return ERR_PTR(-EACCES);
1222 if (inode->i_state & I_NEW) {
1223 /* the inode and parent dir are two different roots */
1224 if (sub_root != root) {
1226 sub_root->inode = inode;
1228 BTRFS_I(inode)->root = sub_root;
1229 memcpy(&BTRFS_I(inode)->location, &location,
1231 btrfs_read_locked_inode(inode);
1232 unlock_new_inode(inode);
1235 return d_splice_alias(inode, dentry);
1238 static unsigned char btrfs_filetype_table[] = {
1239 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
1242 static int btrfs_readdir(struct file *filp, void *dirent, filldir_t filldir)
1244 struct inode *inode = filp->f_dentry->d_inode;
1245 struct btrfs_root *root = BTRFS_I(inode)->root;
1246 struct btrfs_item *item;
1247 struct btrfs_dir_item *di;
1248 struct btrfs_key key;
1249 struct btrfs_key found_key;
1250 struct btrfs_path *path;
1253 struct extent_buffer *leaf;
1256 unsigned char d_type;
1261 int key_type = BTRFS_DIR_INDEX_KEY;
1266 /* FIXME, use a real flag for deciding about the key type */
1267 if (root->fs_info->tree_root == root)
1268 key_type = BTRFS_DIR_ITEM_KEY;
1270 /* special case for "." */
1271 if (filp->f_pos == 0) {
1272 over = filldir(dirent, ".", 1,
1280 mutex_lock(&root->fs_info->fs_mutex);
1281 key.objectid = inode->i_ino;
1282 path = btrfs_alloc_path();
1285 /* special case for .., just use the back ref */
1286 if (filp->f_pos == 1) {
1287 btrfs_set_key_type(&key, BTRFS_INODE_REF_KEY);
1289 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1291 leaf = path->nodes[0];
1292 slot = path->slots[0];
1293 nritems = btrfs_header_nritems(leaf);
1294 if (slot >= nritems) {
1295 btrfs_release_path(root, path);
1296 goto read_dir_items;
1298 btrfs_item_key_to_cpu(leaf, &found_key, slot);
1299 btrfs_release_path(root, path);
1300 if (found_key.objectid != key.objectid ||
1301 found_key.type != BTRFS_INODE_REF_KEY)
1302 goto read_dir_items;
1303 over = filldir(dirent, "..", 2,
1304 2, found_key.offset, DT_DIR);
1311 btrfs_set_key_type(&key, key_type);
1312 key.offset = filp->f_pos;
1314 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1319 leaf = path->nodes[0];
1320 nritems = btrfs_header_nritems(leaf);
1321 slot = path->slots[0];
1322 if (advance || slot >= nritems) {
1323 if (slot >= nritems -1) {
1324 ret = btrfs_next_leaf(root, path);
1327 leaf = path->nodes[0];
1328 nritems = btrfs_header_nritems(leaf);
1329 slot = path->slots[0];
1336 item = btrfs_item_nr(leaf, slot);
1337 btrfs_item_key_to_cpu(leaf, &found_key, slot);
1339 if (found_key.objectid != key.objectid)
1341 if (btrfs_key_type(&found_key) != key_type)
1343 if (found_key.offset < filp->f_pos)
1346 filp->f_pos = found_key.offset;
1348 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
1350 di_total = btrfs_item_size(leaf, item);
1351 while(di_cur < di_total) {
1352 struct btrfs_key location;
1354 name_len = btrfs_dir_name_len(leaf, di);
1355 if (name_len < 32) {
1356 name_ptr = tmp_name;
1358 name_ptr = kmalloc(name_len, GFP_NOFS);
1361 read_extent_buffer(leaf, name_ptr,
1362 (unsigned long)(di + 1), name_len);
1364 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
1365 btrfs_dir_item_key_to_cpu(leaf, di, &location);
1366 over = filldir(dirent, name_ptr, name_len,
1371 if (name_ptr != tmp_name)
1376 di_len = btrfs_dir_name_len(leaf, di) +
1377 btrfs_dir_data_len(leaf, di) +sizeof(*di);
1379 di = (struct btrfs_dir_item *)((char *)di + di_len);
1386 btrfs_release_path(root, path);
1387 btrfs_free_path(path);
1388 mutex_unlock(&root->fs_info->fs_mutex);
1392 int btrfs_write_inode(struct inode *inode, int wait)
1394 struct btrfs_root *root = BTRFS_I(inode)->root;
1395 struct btrfs_trans_handle *trans;
1399 mutex_lock(&root->fs_info->fs_mutex);
1400 trans = btrfs_start_transaction(root, 1);
1401 btrfs_set_trans_block_group(trans, inode);
1402 ret = btrfs_commit_transaction(trans, root);
1403 mutex_unlock(&root->fs_info->fs_mutex);
1409 * This is somewhat expensive, updating the tree every time the
1410 * inode changes. But, it is most likely to find the inode in cache.
1411 * FIXME, needs more benchmarking...there are no reasons other than performance
1412 * to keep or drop this code.
1414 void btrfs_dirty_inode(struct inode *inode)
1416 struct btrfs_root *root = BTRFS_I(inode)->root;
1417 struct btrfs_trans_handle *trans;
1419 mutex_lock(&root->fs_info->fs_mutex);
1420 trans = btrfs_start_transaction(root, 1);
1421 btrfs_set_trans_block_group(trans, inode);
1422 btrfs_update_inode(trans, root, inode);
1423 btrfs_end_transaction(trans, root);
1424 mutex_unlock(&root->fs_info->fs_mutex);
1427 static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
1428 struct btrfs_root *root,
1430 struct btrfs_block_group_cache *group,
1433 struct inode *inode;
1434 struct btrfs_inode_item *inode_item;
1435 struct btrfs_key *location;
1436 struct btrfs_path *path;
1440 path = btrfs_alloc_path();
1443 inode = new_inode(root->fs_info->sb);
1445 return ERR_PTR(-ENOMEM);
1447 extent_map_tree_init(&BTRFS_I(inode)->extent_tree,
1448 inode->i_mapping, GFP_NOFS);
1449 BTRFS_I(inode)->root = root;
1455 group = btrfs_find_block_group(root, group, 0, 0, owner);
1456 BTRFS_I(inode)->block_group = group;
1458 ret = btrfs_insert_empty_inode(trans, root, path, objectid);
1462 inode->i_uid = current->fsuid;
1463 inode->i_gid = current->fsgid;
1464 inode->i_mode = mode;
1465 inode->i_ino = objectid;
1466 inode->i_blocks = 0;
1467 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
1468 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
1469 struct btrfs_inode_item);
1470 fill_inode_item(path->nodes[0], inode_item, inode);
1471 btrfs_mark_buffer_dirty(path->nodes[0]);
1472 btrfs_free_path(path);
1474 location = &BTRFS_I(inode)->location;
1475 location->objectid = objectid;
1476 location->offset = 0;
1477 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
1479 insert_inode_hash(inode);
1482 btrfs_free_path(path);
1483 return ERR_PTR(ret);
1486 static inline u8 btrfs_inode_type(struct inode *inode)
1488 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
1491 static int btrfs_add_link(struct btrfs_trans_handle *trans,
1492 struct dentry *dentry, struct inode *inode)
1495 struct btrfs_key key;
1496 struct btrfs_root *root = BTRFS_I(dentry->d_parent->d_inode)->root;
1497 struct inode *parent_inode;
1499 key.objectid = inode->i_ino;
1500 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
1503 ret = btrfs_insert_dir_item(trans, root,
1504 dentry->d_name.name, dentry->d_name.len,
1505 dentry->d_parent->d_inode->i_ino,
1506 &key, btrfs_inode_type(inode));
1508 ret = btrfs_insert_inode_ref(trans, root,
1509 dentry->d_name.name,
1512 dentry->d_parent->d_inode->i_ino);
1513 parent_inode = dentry->d_parent->d_inode;
1514 parent_inode->i_size += dentry->d_name.len * 2;
1515 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
1516 ret = btrfs_update_inode(trans, root,
1517 dentry->d_parent->d_inode);
1522 static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
1523 struct dentry *dentry, struct inode *inode)
1525 int err = btrfs_add_link(trans, dentry, inode);
1527 d_instantiate(dentry, inode);
1535 static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
1536 int mode, dev_t rdev)
1538 struct btrfs_trans_handle *trans;
1539 struct btrfs_root *root = BTRFS_I(dir)->root;
1540 struct inode *inode = NULL;
1544 unsigned long nr = 0;
1546 if (!new_valid_dev(rdev))
1549 mutex_lock(&root->fs_info->fs_mutex);
1550 err = btrfs_check_free_space(root, 1, 0);
1554 trans = btrfs_start_transaction(root, 1);
1555 btrfs_set_trans_block_group(trans, dir);
1557 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
1563 inode = btrfs_new_inode(trans, root, objectid,
1564 BTRFS_I(dir)->block_group, mode);
1565 err = PTR_ERR(inode);
1569 btrfs_set_trans_block_group(trans, inode);
1570 err = btrfs_add_nondir(trans, dentry, inode);
1574 inode->i_op = &btrfs_special_inode_operations;
1575 init_special_inode(inode, inode->i_mode, rdev);
1576 btrfs_update_inode(trans, root, inode);
1578 dir->i_sb->s_dirt = 1;
1579 btrfs_update_inode_block_group(trans, inode);
1580 btrfs_update_inode_block_group(trans, dir);
1582 nr = trans->blocks_used;
1583 btrfs_end_transaction(trans, root);
1585 mutex_unlock(&root->fs_info->fs_mutex);
1588 inode_dec_link_count(inode);
1591 btrfs_btree_balance_dirty(root, nr);
1592 btrfs_throttle(root);
1596 static int btrfs_create(struct inode *dir, struct dentry *dentry,
1597 int mode, struct nameidata *nd)
1599 struct btrfs_trans_handle *trans;
1600 struct btrfs_root *root = BTRFS_I(dir)->root;
1601 struct inode *inode = NULL;
1604 unsigned long nr = 0;
1607 mutex_lock(&root->fs_info->fs_mutex);
1608 err = btrfs_check_free_space(root, 1, 0);
1611 trans = btrfs_start_transaction(root, 1);
1612 btrfs_set_trans_block_group(trans, dir);
1614 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
1620 inode = btrfs_new_inode(trans, root, objectid,
1621 BTRFS_I(dir)->block_group, mode);
1622 err = PTR_ERR(inode);
1626 btrfs_set_trans_block_group(trans, inode);
1627 err = btrfs_add_nondir(trans, dentry, inode);
1631 inode->i_mapping->a_ops = &btrfs_aops;
1632 inode->i_fop = &btrfs_file_operations;
1633 inode->i_op = &btrfs_file_inode_operations;
1634 extent_map_tree_init(&BTRFS_I(inode)->extent_tree,
1635 inode->i_mapping, GFP_NOFS);
1636 BTRFS_I(inode)->extent_tree.ops = &btrfs_extent_map_ops;
1638 dir->i_sb->s_dirt = 1;
1639 btrfs_update_inode_block_group(trans, inode);
1640 btrfs_update_inode_block_group(trans, dir);
1642 nr = trans->blocks_used;
1643 btrfs_end_transaction(trans, root);
1645 mutex_unlock(&root->fs_info->fs_mutex);
1648 inode_dec_link_count(inode);
1651 btrfs_btree_balance_dirty(root, nr);
1652 btrfs_throttle(root);
1656 static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
1657 struct dentry *dentry)
1659 struct btrfs_trans_handle *trans;
1660 struct btrfs_root *root = BTRFS_I(dir)->root;
1661 struct inode *inode = old_dentry->d_inode;
1662 unsigned long nr = 0;
1666 if (inode->i_nlink == 0)
1669 #if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
1674 mutex_lock(&root->fs_info->fs_mutex);
1675 err = btrfs_check_free_space(root, 1, 0);
1678 trans = btrfs_start_transaction(root, 1);
1680 btrfs_set_trans_block_group(trans, dir);
1681 atomic_inc(&inode->i_count);
1682 err = btrfs_add_nondir(trans, dentry, inode);
1687 dir->i_sb->s_dirt = 1;
1688 btrfs_update_inode_block_group(trans, dir);
1689 err = btrfs_update_inode(trans, root, inode);
1694 nr = trans->blocks_used;
1695 btrfs_end_transaction(trans, root);
1697 mutex_unlock(&root->fs_info->fs_mutex);
1700 inode_dec_link_count(inode);
1703 btrfs_btree_balance_dirty(root, nr);
1704 btrfs_throttle(root);
1708 static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
1710 struct inode *inode;
1711 struct btrfs_trans_handle *trans;
1712 struct btrfs_root *root = BTRFS_I(dir)->root;
1714 int drop_on_err = 0;
1716 unsigned long nr = 1;
1718 mutex_lock(&root->fs_info->fs_mutex);
1719 err = btrfs_check_free_space(root, 1, 0);
1723 trans = btrfs_start_transaction(root, 1);
1724 btrfs_set_trans_block_group(trans, dir);
1726 if (IS_ERR(trans)) {
1727 err = PTR_ERR(trans);
1731 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
1737 inode = btrfs_new_inode(trans, root, objectid,
1738 BTRFS_I(dir)->block_group, S_IFDIR | mode);
1739 if (IS_ERR(inode)) {
1740 err = PTR_ERR(inode);
1745 inode->i_op = &btrfs_dir_inode_operations;
1746 inode->i_fop = &btrfs_dir_file_operations;
1747 btrfs_set_trans_block_group(trans, inode);
1750 err = btrfs_update_inode(trans, root, inode);
1754 err = btrfs_add_link(trans, dentry, inode);
1758 d_instantiate(dentry, inode);
1760 dir->i_sb->s_dirt = 1;
1761 btrfs_update_inode_block_group(trans, inode);
1762 btrfs_update_inode_block_group(trans, dir);
1765 nr = trans->blocks_used;
1766 btrfs_end_transaction(trans, root);
1769 mutex_unlock(&root->fs_info->fs_mutex);
1772 btrfs_btree_balance_dirty(root, nr);
1773 btrfs_throttle(root);
1777 struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
1778 size_t page_offset, u64 start, u64 end,
1784 u64 extent_start = 0;
1786 u64 objectid = inode->i_ino;
1788 int failed_insert = 0;
1789 struct btrfs_path *path;
1790 struct btrfs_root *root = BTRFS_I(inode)->root;
1791 struct btrfs_file_extent_item *item;
1792 struct extent_buffer *leaf;
1793 struct btrfs_key found_key;
1794 struct extent_map *em = NULL;
1795 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
1796 struct btrfs_trans_handle *trans = NULL;
1798 path = btrfs_alloc_path();
1800 mutex_lock(&root->fs_info->fs_mutex);
1803 em = lookup_extent_mapping(em_tree, start, end);
1805 if (em->start > start) {
1806 printk("get_extent start %Lu em start %Lu\n",
1813 em = alloc_extent_map(GFP_NOFS);
1818 em->start = EXTENT_MAP_HOLE;
1819 em->end = EXTENT_MAP_HOLE;
1821 em->bdev = inode->i_sb->s_bdev;
1822 ret = btrfs_lookup_file_extent(trans, root, path,
1823 objectid, start, trans != NULL);
1830 if (path->slots[0] == 0)
1835 leaf = path->nodes[0];
1836 item = btrfs_item_ptr(leaf, path->slots[0],
1837 struct btrfs_file_extent_item);
1838 /* are we inside the extent that was found? */
1839 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1840 found_type = btrfs_key_type(&found_key);
1841 if (found_key.objectid != objectid ||
1842 found_type != BTRFS_EXTENT_DATA_KEY) {
1846 found_type = btrfs_file_extent_type(leaf, item);
1847 extent_start = found_key.offset;
1848 if (found_type == BTRFS_FILE_EXTENT_REG) {
1849 extent_end = extent_start +
1850 btrfs_file_extent_num_bytes(leaf, item);
1852 if (start < extent_start || start >= extent_end) {
1854 if (start < extent_start) {
1855 if (end < extent_start)
1857 em->end = extent_end - 1;
1863 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
1865 em->start = extent_start;
1866 em->end = extent_end - 1;
1867 em->block_start = EXTENT_MAP_HOLE;
1868 em->block_end = EXTENT_MAP_HOLE;
1871 bytenr += btrfs_file_extent_offset(leaf, item);
1872 em->block_start = bytenr;
1873 em->block_end = em->block_start +
1874 btrfs_file_extent_num_bytes(leaf, item) - 1;
1875 em->start = extent_start;
1876 em->end = extent_end - 1;
1878 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
1882 size_t extent_offset;
1885 size = btrfs_file_extent_inline_len(leaf, btrfs_item_nr(leaf,
1887 extent_end = (extent_start + size - 1) |
1888 ((u64)root->sectorsize - 1);
1889 if (start < extent_start || start >= extent_end) {
1891 if (start < extent_start) {
1892 if (end < extent_start)
1894 em->end = extent_end;
1900 em->block_start = EXTENT_MAP_INLINE;
1901 em->block_end = EXTENT_MAP_INLINE;
1904 em->start = extent_start;
1905 em->end = extent_start + size - 1;
1909 extent_offset = ((u64)page->index << PAGE_CACHE_SHIFT) -
1910 extent_start + page_offset;
1911 copy_size = min_t(u64, PAGE_CACHE_SIZE - page_offset,
1912 size - extent_offset);
1913 em->start = extent_start + extent_offset;
1914 em->end = (em->start + copy_size -1) |
1915 ((u64)root->sectorsize -1);
1917 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
1918 if (create == 0 && !PageUptodate(page)) {
1919 read_extent_buffer(leaf, map + page_offset, ptr,
1921 flush_dcache_page(page);
1922 } else if (create && PageUptodate(page)) {
1925 free_extent_map(em);
1927 btrfs_release_path(root, path);
1928 trans = btrfs_start_transaction(root, 1);
1931 write_extent_buffer(leaf, map + page_offset, ptr,
1933 btrfs_mark_buffer_dirty(leaf);
1936 set_extent_uptodate(em_tree, em->start, em->end, GFP_NOFS);
1939 printk("unkknown found_type %d\n", found_type);
1946 em->block_start = EXTENT_MAP_HOLE;
1947 em->block_end = EXTENT_MAP_HOLE;
1949 btrfs_release_path(root, path);
1950 if (em->start > start || em->end < start) {
1951 printk("bad extent! em: [%Lu %Lu] passed [%Lu %Lu]\n", em->start, em->end, start, end);
1955 ret = add_extent_mapping(em_tree, em);
1956 if (ret == -EEXIST) {
1957 free_extent_map(em);
1959 if (0 && failed_insert == 1) {
1960 btrfs_drop_extent_cache(inode, start, end);
1963 if (failed_insert > 5) {
1964 printk("failing to insert %Lu %Lu\n", start, end);
1972 btrfs_free_path(path);
1974 ret = btrfs_end_transaction(trans, root);
1978 mutex_unlock(&root->fs_info->fs_mutex);
1980 free_extent_map(em);
1982 return ERR_PTR(err);
1987 static sector_t btrfs_bmap(struct address_space *mapping, sector_t iblock)
1989 return extent_bmap(mapping, iblock, btrfs_get_extent);
1992 int btrfs_readpage(struct file *file, struct page *page)
1994 struct extent_map_tree *tree;
1995 tree = &BTRFS_I(page->mapping->host)->extent_tree;
1996 return extent_read_full_page(tree, page, btrfs_get_extent);
1999 static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
2001 struct extent_map_tree *tree;
2004 if (current->flags & PF_MEMALLOC) {
2005 redirty_page_for_writepage(wbc, page);
2009 tree = &BTRFS_I(page->mapping->host)->extent_tree;
2010 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
2013 static int btrfs_writepages(struct address_space *mapping,
2014 struct writeback_control *wbc)
2016 struct extent_map_tree *tree;
2017 tree = &BTRFS_I(mapping->host)->extent_tree;
2018 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
2022 btrfs_readpages(struct file *file, struct address_space *mapping,
2023 struct list_head *pages, unsigned nr_pages)
2025 struct extent_map_tree *tree;
2026 tree = &BTRFS_I(mapping->host)->extent_tree;
2027 return extent_readpages(tree, mapping, pages, nr_pages,
2031 static int btrfs_releasepage(struct page *page, gfp_t unused_gfp_flags)
2033 struct extent_map_tree *tree;
2036 tree = &BTRFS_I(page->mapping->host)->extent_tree;
2037 ret = try_release_extent_mapping(tree, page);
2039 ClearPagePrivate(page);
2040 set_page_private(page, 0);
2041 page_cache_release(page);
2046 static void btrfs_invalidatepage(struct page *page, unsigned long offset)
2048 struct extent_map_tree *tree;
2050 tree = &BTRFS_I(page->mapping->host)->extent_tree;
2051 extent_invalidatepage(tree, page, offset);
2052 btrfs_releasepage(page, GFP_NOFS);
2056 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
2057 * called from a page fault handler when a page is first dirtied. Hence we must
2058 * be careful to check for EOF conditions here. We set the page up correctly
2059 * for a written page which means we get ENOSPC checking when writing into
2060 * holes and correct delalloc and unwritten extent mapping on filesystems that
2061 * support these features.
2063 * We are not allowed to take the i_mutex here so we have to play games to
2064 * protect against truncate races as the page could now be beyond EOF. Because
2065 * vmtruncate() writes the inode size before removing pages, once we have the
2066 * page lock we can determine safely if the page is beyond EOF. If it is not
2067 * beyond EOF, then the page is guaranteed safe against truncation until we
2070 int btrfs_page_mkwrite(struct vm_area_struct *vma, struct page *page)
2072 struct inode *inode = fdentry(vma->vm_file)->d_inode;
2073 struct btrfs_root *root = BTRFS_I(inode)->root;
2079 mutex_lock(&root->fs_info->fs_mutex);
2080 ret = btrfs_check_free_space(root, PAGE_CACHE_SIZE, 0);
2081 mutex_unlock(&root->fs_info->fs_mutex);
2088 wait_on_page_writeback(page);
2089 size = i_size_read(inode);
2090 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
2092 if ((page->mapping != inode->i_mapping) ||
2093 (page_start > size)) {
2094 /* page got truncated out from underneath us */
2098 /* page is wholly or partially inside EOF */
2099 if (page_start + PAGE_CACHE_SIZE > size)
2100 end = size & ~PAGE_CACHE_MASK;
2102 end = PAGE_CACHE_SIZE;
2104 ret = btrfs_cow_one_page(inode, page, end);
2112 static void btrfs_truncate(struct inode *inode)
2114 struct btrfs_root *root = BTRFS_I(inode)->root;
2116 struct btrfs_trans_handle *trans;
2119 if (!S_ISREG(inode->i_mode))
2121 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
2124 btrfs_truncate_page(inode->i_mapping, inode->i_size);
2126 mutex_lock(&root->fs_info->fs_mutex);
2127 trans = btrfs_start_transaction(root, 1);
2128 btrfs_set_trans_block_group(trans, inode);
2130 /* FIXME, add redo link to tree so we don't leak on crash */
2131 ret = btrfs_truncate_in_trans(trans, root, inode);
2132 btrfs_update_inode(trans, root, inode);
2133 nr = trans->blocks_used;
2135 ret = btrfs_end_transaction(trans, root);
2137 mutex_unlock(&root->fs_info->fs_mutex);
2138 btrfs_btree_balance_dirty(root, nr);
2139 btrfs_throttle(root);
2142 static int noinline create_subvol(struct btrfs_root *root, char *name,
2145 struct btrfs_trans_handle *trans;
2146 struct btrfs_key key;
2147 struct btrfs_root_item root_item;
2148 struct btrfs_inode_item *inode_item;
2149 struct extent_buffer *leaf;
2150 struct btrfs_root *new_root = root;
2151 struct inode *inode;
2156 u64 new_dirid = BTRFS_FIRST_FREE_OBJECTID;
2157 unsigned long nr = 1;
2159 mutex_lock(&root->fs_info->fs_mutex);
2160 ret = btrfs_check_free_space(root, 1, 0);
2164 trans = btrfs_start_transaction(root, 1);
2167 ret = btrfs_find_free_objectid(trans, root->fs_info->tree_root,
2172 leaf = __btrfs_alloc_free_block(trans, root, root->leafsize,
2173 objectid, trans->transid, 0, 0,
2176 return PTR_ERR(leaf);
2178 btrfs_set_header_nritems(leaf, 0);
2179 btrfs_set_header_level(leaf, 0);
2180 btrfs_set_header_bytenr(leaf, leaf->start);
2181 btrfs_set_header_generation(leaf, trans->transid);
2182 btrfs_set_header_owner(leaf, objectid);
2184 write_extent_buffer(leaf, root->fs_info->fsid,
2185 (unsigned long)btrfs_header_fsid(leaf),
2187 btrfs_mark_buffer_dirty(leaf);
2189 inode_item = &root_item.inode;
2190 memset(inode_item, 0, sizeof(*inode_item));
2191 inode_item->generation = cpu_to_le64(1);
2192 inode_item->size = cpu_to_le64(3);
2193 inode_item->nlink = cpu_to_le32(1);
2194 inode_item->nblocks = cpu_to_le64(1);
2195 inode_item->mode = cpu_to_le32(S_IFDIR | 0755);
2197 btrfs_set_root_bytenr(&root_item, leaf->start);
2198 btrfs_set_root_level(&root_item, 0);
2199 btrfs_set_root_refs(&root_item, 1);
2200 btrfs_set_root_used(&root_item, 0);
2202 memset(&root_item.drop_progress, 0, sizeof(root_item.drop_progress));
2203 root_item.drop_level = 0;
2205 free_extent_buffer(leaf);
2208 btrfs_set_root_dirid(&root_item, new_dirid);
2210 key.objectid = objectid;
2212 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
2213 ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
2219 * insert the directory item
2221 key.offset = (u64)-1;
2222 dir = root->fs_info->sb->s_root->d_inode;
2223 ret = btrfs_insert_dir_item(trans, root->fs_info->tree_root,
2224 name, namelen, dir->i_ino, &key,
2229 ret = btrfs_insert_inode_ref(trans, root->fs_info->tree_root,
2230 name, namelen, objectid,
2231 root->fs_info->sb->s_root->d_inode->i_ino);
2235 ret = btrfs_commit_transaction(trans, root);
2239 new_root = btrfs_read_fs_root(root->fs_info, &key, name, namelen);
2242 trans = btrfs_start_transaction(new_root, 1);
2245 inode = btrfs_new_inode(trans, new_root, new_dirid,
2246 BTRFS_I(dir)->block_group, S_IFDIR | 0700);
2249 inode->i_op = &btrfs_dir_inode_operations;
2250 inode->i_fop = &btrfs_dir_file_operations;
2251 new_root->inode = inode;
2253 ret = btrfs_insert_inode_ref(trans, new_root, "..", 2, new_dirid,
2257 ret = btrfs_update_inode(trans, new_root, inode);
2261 nr = trans->blocks_used;
2262 err = btrfs_commit_transaction(trans, new_root);
2266 mutex_unlock(&root->fs_info->fs_mutex);
2267 btrfs_btree_balance_dirty(root, nr);
2268 btrfs_throttle(root);
2272 static int create_snapshot(struct btrfs_root *root, char *name, int namelen)
2274 struct btrfs_pending_snapshot *pending_snapshot;
2275 struct btrfs_trans_handle *trans;
2278 unsigned long nr = 0;
2280 if (!root->ref_cows)
2283 mutex_lock(&root->fs_info->fs_mutex);
2284 ret = btrfs_check_free_space(root, 1, 0);
2288 pending_snapshot = kmalloc(sizeof(*pending_snapshot), GFP_NOFS);
2289 if (!pending_snapshot) {
2293 pending_snapshot->name = kstrndup(name, namelen, GFP_NOFS);
2294 if (!pending_snapshot->name) {
2296 kfree(pending_snapshot);
2299 trans = btrfs_start_transaction(root, 1);
2302 pending_snapshot->root = root;
2303 list_add(&pending_snapshot->list,
2304 &trans->transaction->pending_snapshots);
2305 ret = btrfs_update_inode(trans, root, root->inode);
2306 err = btrfs_commit_transaction(trans, root);
2309 mutex_unlock(&root->fs_info->fs_mutex);
2310 btrfs_btree_balance_dirty(root, nr);
2311 btrfs_throttle(root);
2315 unsigned long btrfs_force_ra(struct address_space *mapping,
2316 struct file_ra_state *ra, struct file *file,
2317 pgoff_t offset, pgoff_t last_index)
2321 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23)
2322 req_size = last_index - offset + 1;
2323 offset = page_cache_readahead(mapping, ra, file, offset, req_size);
2326 req_size = min(last_index - offset + 1, (pgoff_t)128);
2327 page_cache_sync_readahead(mapping, ra, file, offset, req_size);
2328 return offset + req_size;
2332 int btrfs_defrag_file(struct file *file) {
2333 struct inode *inode = fdentry(file)->d_inode;
2334 struct btrfs_root *root = BTRFS_I(inode)->root;
2335 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
2337 unsigned long last_index;
2338 unsigned long ra_index = 0;
2342 u64 existing_delalloc;
2346 mutex_lock(&root->fs_info->fs_mutex);
2347 ret = btrfs_check_free_space(root, inode->i_size, 0);
2348 mutex_unlock(&root->fs_info->fs_mutex);
2352 mutex_lock(&inode->i_mutex);
2353 last_index = inode->i_size >> PAGE_CACHE_SHIFT;
2354 for (i = 0; i <= last_index; i++) {
2355 if (i == ra_index) {
2356 ra_index = btrfs_force_ra(inode->i_mapping,
2358 file, ra_index, last_index);
2360 page = grab_cache_page(inode->i_mapping, i);
2363 if (!PageUptodate(page)) {
2364 btrfs_readpage(NULL, page);
2366 if (!PageUptodate(page)) {
2368 page_cache_release(page);
2372 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
2373 page_end = page_start + PAGE_CACHE_SIZE - 1;
2375 lock_extent(em_tree, page_start, page_end, GFP_NOFS);
2376 delalloc_start = page_start;
2378 count_range_bits(&BTRFS_I(inode)->extent_tree,
2379 &delalloc_start, page_end,
2380 PAGE_CACHE_SIZE, EXTENT_DELALLOC);
2381 set_extent_delalloc(em_tree, page_start,
2382 page_end, GFP_NOFS);
2384 spin_lock(&root->fs_info->delalloc_lock);
2385 root->fs_info->delalloc_bytes += PAGE_CACHE_SIZE -
2387 spin_unlock(&root->fs_info->delalloc_lock);
2389 unlock_extent(em_tree, page_start, page_end, GFP_NOFS);
2390 set_page_dirty(page);
2392 page_cache_release(page);
2393 balance_dirty_pages_ratelimited_nr(inode->i_mapping, 1);
2397 mutex_unlock(&inode->i_mutex);
2401 static int btrfs_ioctl_resize(struct btrfs_root *root, void __user *arg)
2405 struct btrfs_ioctl_vol_args *vol_args;
2406 struct btrfs_trans_handle *trans;
2412 vol_args = kmalloc(sizeof(*vol_args), GFP_NOFS);
2417 if (copy_from_user(vol_args, arg, sizeof(*vol_args))) {
2421 namelen = strlen(vol_args->name);
2422 if (namelen > BTRFS_VOL_NAME_MAX) {
2427 sizestr = vol_args->name;
2428 if (!strcmp(sizestr, "max"))
2429 new_size = root->fs_info->sb->s_bdev->bd_inode->i_size;
2431 if (sizestr[0] == '-') {
2434 } else if (sizestr[0] == '+') {
2438 new_size = btrfs_parse_size(sizestr);
2439 if (new_size == 0) {
2445 mutex_lock(&root->fs_info->fs_mutex);
2446 old_size = btrfs_super_total_bytes(&root->fs_info->super_copy);
2449 if (new_size > old_size) {
2453 new_size = old_size - new_size;
2454 } else if (mod > 0) {
2455 new_size = old_size + new_size;
2458 if (new_size < 256 * 1024 * 1024) {
2462 if (new_size > root->fs_info->sb->s_bdev->bd_inode->i_size) {
2467 do_div(new_size, root->sectorsize);
2468 new_size *= root->sectorsize;
2470 printk("new size is %Lu\n", new_size);
2471 if (new_size > old_size) {
2472 trans = btrfs_start_transaction(root, 1);
2473 ret = btrfs_grow_extent_tree(trans, root, new_size);
2474 btrfs_commit_transaction(trans, root);
2476 ret = btrfs_shrink_extent_tree(root, new_size);
2480 mutex_unlock(&root->fs_info->fs_mutex);
2486 static int noinline btrfs_ioctl_snap_create(struct btrfs_root *root,
2489 struct btrfs_ioctl_vol_args *vol_args;
2490 struct btrfs_dir_item *di;
2491 struct btrfs_path *path;
2496 vol_args = kmalloc(sizeof(*vol_args), GFP_NOFS);
2501 if (copy_from_user(vol_args, arg, sizeof(*vol_args))) {
2506 namelen = strlen(vol_args->name);
2507 if (namelen > BTRFS_VOL_NAME_MAX) {
2511 if (strchr(vol_args->name, '/')) {
2516 path = btrfs_alloc_path();
2522 root_dirid = root->fs_info->sb->s_root->d_inode->i_ino,
2523 mutex_lock(&root->fs_info->fs_mutex);
2524 di = btrfs_lookup_dir_item(NULL, root->fs_info->tree_root,
2526 vol_args->name, namelen, 0);
2527 mutex_unlock(&root->fs_info->fs_mutex);
2528 btrfs_free_path(path);
2530 if (di && !IS_ERR(di)) {
2540 if (root == root->fs_info->tree_root)
2541 ret = create_subvol(root, vol_args->name, namelen);
2543 ret = create_snapshot(root, vol_args->name, namelen);
2549 static int btrfs_ioctl_defrag(struct file *file)
2551 struct inode *inode = fdentry(file)->d_inode;
2552 struct btrfs_root *root = BTRFS_I(inode)->root;
2554 switch (inode->i_mode & S_IFMT) {
2556 mutex_lock(&root->fs_info->fs_mutex);
2557 btrfs_defrag_root(root, 0);
2558 btrfs_defrag_root(root->fs_info->extent_root, 0);
2559 mutex_unlock(&root->fs_info->fs_mutex);
2562 btrfs_defrag_file(file);
2569 long btrfs_ioctl(struct file *file, unsigned int
2570 cmd, unsigned long arg)
2572 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
2575 case BTRFS_IOC_SNAP_CREATE:
2576 return btrfs_ioctl_snap_create(root, (void __user *)arg);
2577 case BTRFS_IOC_DEFRAG:
2578 return btrfs_ioctl_defrag(file);
2579 case BTRFS_IOC_RESIZE:
2580 return btrfs_ioctl_resize(root, (void __user *)arg);
2587 * Called inside transaction, so use GFP_NOFS
2589 struct inode *btrfs_alloc_inode(struct super_block *sb)
2591 struct btrfs_inode *ei;
2593 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
2597 ei->ordered_trans = 0;
2598 return &ei->vfs_inode;
2601 void btrfs_destroy_inode(struct inode *inode)
2603 WARN_ON(!list_empty(&inode->i_dentry));
2604 WARN_ON(inode->i_data.nrpages);
2606 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
2609 #if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,23)
2610 static void init_once(struct kmem_cache * cachep, void *foo)
2612 static void init_once(void * foo, struct kmem_cache * cachep,
2613 unsigned long flags)
2616 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
2618 inode_init_once(&ei->vfs_inode);
2621 void btrfs_destroy_cachep(void)
2623 if (btrfs_inode_cachep)
2624 kmem_cache_destroy(btrfs_inode_cachep);
2625 if (btrfs_trans_handle_cachep)
2626 kmem_cache_destroy(btrfs_trans_handle_cachep);
2627 if (btrfs_transaction_cachep)
2628 kmem_cache_destroy(btrfs_transaction_cachep);
2629 if (btrfs_bit_radix_cachep)
2630 kmem_cache_destroy(btrfs_bit_radix_cachep);
2631 if (btrfs_path_cachep)
2632 kmem_cache_destroy(btrfs_path_cachep);
2635 struct kmem_cache *btrfs_cache_create(const char *name, size_t size,
2636 unsigned long extra_flags,
2637 #if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,23)
2638 void (*ctor)(struct kmem_cache *, void *)
2640 void (*ctor)(void *, struct kmem_cache *,
2645 return kmem_cache_create(name, size, 0, (SLAB_RECLAIM_ACCOUNT |
2646 SLAB_MEM_SPREAD | extra_flags), ctor
2647 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23)
2653 int btrfs_init_cachep(void)
2655 btrfs_inode_cachep = btrfs_cache_create("btrfs_inode_cache",
2656 sizeof(struct btrfs_inode),
2658 if (!btrfs_inode_cachep)
2660 btrfs_trans_handle_cachep =
2661 btrfs_cache_create("btrfs_trans_handle_cache",
2662 sizeof(struct btrfs_trans_handle),
2664 if (!btrfs_trans_handle_cachep)
2666 btrfs_transaction_cachep = btrfs_cache_create("btrfs_transaction_cache",
2667 sizeof(struct btrfs_transaction),
2669 if (!btrfs_transaction_cachep)
2671 btrfs_path_cachep = btrfs_cache_create("btrfs_path_cache",
2672 sizeof(struct btrfs_path),
2674 if (!btrfs_path_cachep)
2676 btrfs_bit_radix_cachep = btrfs_cache_create("btrfs_radix", 256,
2677 SLAB_DESTROY_BY_RCU, NULL);
2678 if (!btrfs_bit_radix_cachep)
2682 btrfs_destroy_cachep();
2686 static int btrfs_getattr(struct vfsmount *mnt,
2687 struct dentry *dentry, struct kstat *stat)
2689 struct inode *inode = dentry->d_inode;
2690 generic_fillattr(inode, stat);
2691 stat->blksize = PAGE_CACHE_SIZE;
2695 static int btrfs_rename(struct inode * old_dir, struct dentry *old_dentry,
2696 struct inode * new_dir,struct dentry *new_dentry)
2698 struct btrfs_trans_handle *trans;
2699 struct btrfs_root *root = BTRFS_I(old_dir)->root;
2700 struct inode *new_inode = new_dentry->d_inode;
2701 struct inode *old_inode = old_dentry->d_inode;
2702 struct timespec ctime = CURRENT_TIME;
2703 struct btrfs_path *path;
2706 if (S_ISDIR(old_inode->i_mode) && new_inode &&
2707 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE) {
2711 mutex_lock(&root->fs_info->fs_mutex);
2712 ret = btrfs_check_free_space(root, 1, 0);
2716 trans = btrfs_start_transaction(root, 1);
2718 btrfs_set_trans_block_group(trans, new_dir);
2719 path = btrfs_alloc_path();
2725 old_dentry->d_inode->i_nlink++;
2726 old_dir->i_ctime = old_dir->i_mtime = ctime;
2727 new_dir->i_ctime = new_dir->i_mtime = ctime;
2728 old_inode->i_ctime = ctime;
2730 ret = btrfs_unlink_trans(trans, root, old_dir, old_dentry);
2735 new_inode->i_ctime = CURRENT_TIME;
2736 ret = btrfs_unlink_trans(trans, root, new_dir, new_dentry);
2740 ret = btrfs_add_link(trans, new_dentry, old_inode);
2745 btrfs_free_path(path);
2746 btrfs_end_transaction(trans, root);
2748 mutex_unlock(&root->fs_info->fs_mutex);
2752 static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
2753 const char *symname)
2755 struct btrfs_trans_handle *trans;
2756 struct btrfs_root *root = BTRFS_I(dir)->root;
2757 struct btrfs_path *path;
2758 struct btrfs_key key;
2759 struct inode *inode = NULL;
2766 struct btrfs_file_extent_item *ei;
2767 struct extent_buffer *leaf;
2768 unsigned long nr = 0;
2770 name_len = strlen(symname) + 1;
2771 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
2772 return -ENAMETOOLONG;
2774 mutex_lock(&root->fs_info->fs_mutex);
2775 err = btrfs_check_free_space(root, 1, 0);
2779 trans = btrfs_start_transaction(root, 1);
2780 btrfs_set_trans_block_group(trans, dir);
2782 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
2788 inode = btrfs_new_inode(trans, root, objectid,
2789 BTRFS_I(dir)->block_group, S_IFLNK|S_IRWXUGO);
2790 err = PTR_ERR(inode);
2794 btrfs_set_trans_block_group(trans, inode);
2795 err = btrfs_add_nondir(trans, dentry, inode);
2799 inode->i_mapping->a_ops = &btrfs_aops;
2800 inode->i_fop = &btrfs_file_operations;
2801 inode->i_op = &btrfs_file_inode_operations;
2802 extent_map_tree_init(&BTRFS_I(inode)->extent_tree,
2803 inode->i_mapping, GFP_NOFS);
2804 BTRFS_I(inode)->extent_tree.ops = &btrfs_extent_map_ops;
2806 dir->i_sb->s_dirt = 1;
2807 btrfs_update_inode_block_group(trans, inode);
2808 btrfs_update_inode_block_group(trans, dir);
2812 path = btrfs_alloc_path();
2814 key.objectid = inode->i_ino;
2816 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
2817 datasize = btrfs_file_extent_calc_inline_size(name_len);
2818 err = btrfs_insert_empty_item(trans, root, path, &key,
2824 leaf = path->nodes[0];
2825 ei = btrfs_item_ptr(leaf, path->slots[0],
2826 struct btrfs_file_extent_item);
2827 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
2828 btrfs_set_file_extent_type(leaf, ei,
2829 BTRFS_FILE_EXTENT_INLINE);
2830 ptr = btrfs_file_extent_inline_start(ei);
2831 write_extent_buffer(leaf, symname, ptr, name_len);
2832 btrfs_mark_buffer_dirty(leaf);
2833 btrfs_free_path(path);
2835 inode->i_op = &btrfs_symlink_inode_operations;
2836 inode->i_mapping->a_ops = &btrfs_symlink_aops;
2837 inode->i_size = name_len - 1;
2838 err = btrfs_update_inode(trans, root, inode);
2843 nr = trans->blocks_used;
2844 btrfs_end_transaction(trans, root);
2846 mutex_unlock(&root->fs_info->fs_mutex);
2848 inode_dec_link_count(inode);
2851 btrfs_btree_balance_dirty(root, nr);
2852 btrfs_throttle(root);
2856 static struct inode_operations btrfs_dir_inode_operations = {
2857 .lookup = btrfs_lookup,
2858 .create = btrfs_create,
2859 .unlink = btrfs_unlink,
2861 .mkdir = btrfs_mkdir,
2862 .rmdir = btrfs_rmdir,
2863 .rename = btrfs_rename,
2864 .symlink = btrfs_symlink,
2865 .setattr = btrfs_setattr,
2866 .mknod = btrfs_mknod,
2867 .setxattr = generic_setxattr,
2868 .getxattr = generic_getxattr,
2869 .listxattr = btrfs_listxattr,
2870 .removexattr = generic_removexattr,
2873 static struct inode_operations btrfs_dir_ro_inode_operations = {
2874 .lookup = btrfs_lookup,
2877 static struct file_operations btrfs_dir_file_operations = {
2878 .llseek = generic_file_llseek,
2879 .read = generic_read_dir,
2880 .readdir = btrfs_readdir,
2881 .unlocked_ioctl = btrfs_ioctl,
2882 #ifdef CONFIG_COMPAT
2883 .compat_ioctl = btrfs_ioctl,
2887 static struct extent_map_ops btrfs_extent_map_ops = {
2888 .fill_delalloc = run_delalloc_range,
2889 .writepage_io_hook = btrfs_writepage_io_hook,
2890 .readpage_io_hook = btrfs_readpage_io_hook,
2891 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
2894 static struct address_space_operations btrfs_aops = {
2895 .readpage = btrfs_readpage,
2896 .writepage = btrfs_writepage,
2897 .writepages = btrfs_writepages,
2898 .readpages = btrfs_readpages,
2899 .sync_page = block_sync_page,
2901 .invalidatepage = btrfs_invalidatepage,
2902 .releasepage = btrfs_releasepage,
2903 .set_page_dirty = __set_page_dirty_nobuffers,
2906 static struct address_space_operations btrfs_symlink_aops = {
2907 .readpage = btrfs_readpage,
2908 .writepage = btrfs_writepage,
2909 .invalidatepage = btrfs_invalidatepage,
2910 .releasepage = btrfs_releasepage,
2913 static struct inode_operations btrfs_file_inode_operations = {
2914 .truncate = btrfs_truncate,
2915 .getattr = btrfs_getattr,
2916 .setattr = btrfs_setattr,
2917 .setxattr = generic_setxattr,
2918 .getxattr = generic_getxattr,
2919 .listxattr = btrfs_listxattr,
2920 .removexattr = generic_removexattr,
2923 static struct inode_operations btrfs_special_inode_operations = {
2924 .getattr = btrfs_getattr,
2925 .setattr = btrfs_setattr,
2928 static struct inode_operations btrfs_symlink_inode_operations = {
2929 .readlink = generic_readlink,
2930 .follow_link = page_follow_link_light,
2931 .put_link = page_put_link,