| Chris Mason | 6cbd557 | 2007-06-12 09:07:21 -0400 | [diff] [blame] | 1 | /* | 
|  | 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 Mason | 8f18cf1 | 2008-04-25 16:53:30 -0400 | [diff] [blame] | 19 | #include <linux/kernel.h> | 
| Chris Mason | 065631f | 2008-02-20 12:07:25 -0500 | [diff] [blame] | 20 | #include <linux/bio.h> | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 21 | #include <linux/buffer_head.h> | 
| Sage Weil | f2eb0a2 | 2008-05-02 14:43:14 -0400 | [diff] [blame] | 22 | #include <linux/file.h> | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 23 | #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 Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 29 | #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 Mason | 9ebefb18 | 2007-06-15 13:50:00 -0400 | [diff] [blame] | 35 | #include <linux/bit_spinlock.h> | 
| Josef Bacik | 5103e94 | 2007-11-16 11:45:54 -0500 | [diff] [blame] | 36 | #include <linux/xattr.h> | 
| Josef Bacik | 33268ea | 2008-07-24 12:16:36 -0400 | [diff] [blame] | 37 | #include <linux/posix_acl.h> | 
| Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 38 | #include <linux/falloc.h> | 
| Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 39 | #include <linux/slab.h> | 
| David Sterba | 7a36dde | 2011-05-06 15:33:15 +0200 | [diff] [blame] | 40 | #include <linux/ratelimit.h> | 
| Josef Bacik | 22c44fe | 2011-11-30 10:45:38 -0500 | [diff] [blame] | 41 | #include <linux/mount.h> | 
| Chris Mason | 4b4e25f | 2008-11-20 10:22:27 -0500 | [diff] [blame] | 42 | #include "compat.h" | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 43 | #include "ctree.h" | 
|  | 44 | #include "disk-io.h" | 
|  | 45 | #include "transaction.h" | 
|  | 46 | #include "btrfs_inode.h" | 
|  | 47 | #include "ioctl.h" | 
|  | 48 | #include "print-tree.h" | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 49 | #include "ordered-data.h" | 
| Christoph Hellwig | 95819c0 | 2008-08-28 06:21:17 -0400 | [diff] [blame] | 50 | #include "xattr.h" | 
| Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 51 | #include "tree-log.h" | 
| Jan Schmidt | 4a54c8c | 2011-07-22 15:41:52 +0200 | [diff] [blame] | 52 | #include "volumes.h" | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 53 | #include "compression.h" | 
| Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 54 | #include "locking.h" | 
| Josef Bacik | dc89e98 | 2011-01-28 17:05:48 -0500 | [diff] [blame] | 55 | #include "free-space-cache.h" | 
| Li Zefan | 581bb05 | 2011-04-20 10:06:11 +0800 | [diff] [blame] | 56 | #include "inode-map.h" | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 57 |  | 
|  | 58 | struct btrfs_iget_args { | 
|  | 59 | u64 ino; | 
|  | 60 | struct btrfs_root *root; | 
|  | 61 | }; | 
|  | 62 |  | 
| Alexey Dobriyan | 6e1d5dc | 2009-09-21 17:01:11 -0700 | [diff] [blame] | 63 | static const struct inode_operations btrfs_dir_inode_operations; | 
|  | 64 | static const struct inode_operations btrfs_symlink_inode_operations; | 
|  | 65 | static const struct inode_operations btrfs_dir_ro_inode_operations; | 
|  | 66 | static const struct inode_operations btrfs_special_inode_operations; | 
|  | 67 | static const struct inode_operations btrfs_file_inode_operations; | 
| Alexey Dobriyan | 7f09410 | 2009-09-21 17:01:10 -0700 | [diff] [blame] | 68 | static const struct address_space_operations btrfs_aops; | 
|  | 69 | static const struct address_space_operations btrfs_symlink_aops; | 
| Alexey Dobriyan | 828c095 | 2009-10-01 15:43:56 -0700 | [diff] [blame] | 70 | static const struct file_operations btrfs_dir_file_operations; | 
| Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 71 | static struct extent_io_ops btrfs_extent_io_ops; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 72 |  | 
|  | 73 | static struct kmem_cache *btrfs_inode_cachep; | 
|  | 74 | struct kmem_cache *btrfs_trans_handle_cachep; | 
|  | 75 | struct kmem_cache *btrfs_transaction_cachep; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 76 | struct kmem_cache *btrfs_path_cachep; | 
| Josef Bacik | dc89e98 | 2011-01-28 17:05:48 -0500 | [diff] [blame] | 77 | struct kmem_cache *btrfs_free_space_cachep; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 78 |  | 
|  | 79 | #define S_SHIFT 12 | 
|  | 80 | static unsigned char btrfs_type_by_mode[S_IFMT >> S_SHIFT] = { | 
|  | 81 | [S_IFREG >> S_SHIFT]	= BTRFS_FT_REG_FILE, | 
|  | 82 | [S_IFDIR >> S_SHIFT]	= BTRFS_FT_DIR, | 
|  | 83 | [S_IFCHR >> S_SHIFT]	= BTRFS_FT_CHRDEV, | 
|  | 84 | [S_IFBLK >> S_SHIFT]	= BTRFS_FT_BLKDEV, | 
|  | 85 | [S_IFIFO >> S_SHIFT]	= BTRFS_FT_FIFO, | 
|  | 86 | [S_IFSOCK >> S_SHIFT]	= BTRFS_FT_SOCK, | 
|  | 87 | [S_IFLNK >> S_SHIFT]	= BTRFS_FT_SYMLINK, | 
|  | 88 | }; | 
|  | 89 |  | 
| Josef Bacik | a41ad39 | 2011-01-31 15:30:16 -0500 | [diff] [blame] | 90 | static int btrfs_setsize(struct inode *inode, loff_t newsize); | 
|  | 91 | static int btrfs_truncate(struct inode *inode); | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 92 | static int btrfs_finish_ordered_io(struct inode *inode, u64 start, u64 end); | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 93 | static noinline int cow_file_range(struct inode *inode, | 
|  | 94 | struct page *locked_page, | 
|  | 95 | u64 start, u64 end, int *page_started, | 
|  | 96 | unsigned long *nr_written, int unlock); | 
| Chris Mason | 2115133 | 2011-11-10 20:39:08 -0500 | [diff] [blame] | 97 | static noinline int btrfs_update_inode_fallback(struct btrfs_trans_handle *trans, | 
|  | 98 | struct btrfs_root *root, struct inode *inode); | 
| Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 99 |  | 
| Yan, Zheng | f34f57a | 2009-11-12 09:35:27 +0000 | [diff] [blame] | 100 | static int btrfs_init_inode_security(struct btrfs_trans_handle *trans, | 
| Eric Paris | 2a7dba3 | 2011-02-01 11:05:39 -0500 | [diff] [blame] | 101 | struct inode *inode,  struct inode *dir, | 
|  | 102 | const struct qstr *qstr) | 
| Jim Owens | 0279b4c | 2009-02-04 09:29:13 -0500 | [diff] [blame] | 103 | { | 
|  | 104 | int err; | 
|  | 105 |  | 
| Yan, Zheng | f34f57a | 2009-11-12 09:35:27 +0000 | [diff] [blame] | 106 | err = btrfs_init_acl(trans, inode, dir); | 
| Jim Owens | 0279b4c | 2009-02-04 09:29:13 -0500 | [diff] [blame] | 107 | if (!err) | 
| Eric Paris | 2a7dba3 | 2011-02-01 11:05:39 -0500 | [diff] [blame] | 108 | err = btrfs_xattr_security_init(trans, inode, dir, qstr); | 
| Jim Owens | 0279b4c | 2009-02-04 09:29:13 -0500 | [diff] [blame] | 109 | return err; | 
|  | 110 | } | 
|  | 111 |  | 
| Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 112 | /* | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 113 | * this does all the hard work for inserting an inline extent into | 
|  | 114 | * the btree.  The caller should have done a btrfs_drop_extents so that | 
|  | 115 | * no overlapping inline items exist in the btree | 
|  | 116 | */ | 
| Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 117 | static noinline int insert_inline_extent(struct btrfs_trans_handle *trans, | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 118 | struct btrfs_root *root, struct inode *inode, | 
|  | 119 | u64 start, size_t size, size_t compressed_size, | 
| Li Zefan | fe3f566 | 2011-03-28 08:30:38 +0000 | [diff] [blame] | 120 | int compress_type, | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 121 | struct page **compressed_pages) | 
|  | 122 | { | 
|  | 123 | struct btrfs_key key; | 
|  | 124 | struct btrfs_path *path; | 
|  | 125 | struct extent_buffer *leaf; | 
|  | 126 | struct page *page = NULL; | 
|  | 127 | char *kaddr; | 
|  | 128 | unsigned long ptr; | 
|  | 129 | struct btrfs_file_extent_item *ei; | 
|  | 130 | int err = 0; | 
|  | 131 | int ret; | 
|  | 132 | size_t cur_size = size; | 
|  | 133 | size_t datasize; | 
|  | 134 | unsigned long offset; | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 135 |  | 
| Li Zefan | fe3f566 | 2011-03-28 08:30:38 +0000 | [diff] [blame] | 136 | if (compressed_size && compressed_pages) | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 137 | cur_size = compressed_size; | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 138 |  | 
| Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 139 | path = btrfs_alloc_path(); | 
|  | 140 | if (!path) | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 141 | return -ENOMEM; | 
|  | 142 |  | 
| Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 143 | path->leave_spinning = 1; | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 144 |  | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 145 | key.objectid = btrfs_ino(inode); | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 146 | key.offset = start; | 
|  | 147 | btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY); | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 148 | datasize = btrfs_file_extent_calc_inline_size(cur_size); | 
|  | 149 |  | 
|  | 150 | inode_add_bytes(inode, size); | 
|  | 151 | ret = btrfs_insert_empty_item(trans, root, path, &key, | 
|  | 152 | datasize); | 
|  | 153 | BUG_ON(ret); | 
|  | 154 | if (ret) { | 
|  | 155 | err = ret; | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 156 | goto fail; | 
|  | 157 | } | 
|  | 158 | leaf = path->nodes[0]; | 
|  | 159 | ei = btrfs_item_ptr(leaf, path->slots[0], | 
|  | 160 | struct btrfs_file_extent_item); | 
|  | 161 | btrfs_set_file_extent_generation(leaf, ei, trans->transid); | 
|  | 162 | btrfs_set_file_extent_type(leaf, ei, BTRFS_FILE_EXTENT_INLINE); | 
|  | 163 | btrfs_set_file_extent_encryption(leaf, ei, 0); | 
|  | 164 | btrfs_set_file_extent_other_encoding(leaf, ei, 0); | 
|  | 165 | btrfs_set_file_extent_ram_bytes(leaf, ei, size); | 
|  | 166 | ptr = btrfs_file_extent_inline_start(ei); | 
|  | 167 |  | 
| Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 168 | if (compress_type != BTRFS_COMPRESS_NONE) { | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 169 | struct page *cpage; | 
|  | 170 | int i = 0; | 
| Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 171 | while (compressed_size > 0) { | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 172 | cpage = compressed_pages[i]; | 
| Chris Mason | 5b050f0 | 2008-11-11 09:34:41 -0500 | [diff] [blame] | 173 | cur_size = min_t(unsigned long, compressed_size, | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 174 | PAGE_CACHE_SIZE); | 
|  | 175 |  | 
| Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 176 | kaddr = kmap_atomic(cpage, KM_USER0); | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 177 | write_extent_buffer(leaf, kaddr, ptr, cur_size); | 
| Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 178 | kunmap_atomic(kaddr, KM_USER0); | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 179 |  | 
|  | 180 | i++; | 
|  | 181 | ptr += cur_size; | 
|  | 182 | compressed_size -= cur_size; | 
|  | 183 | } | 
|  | 184 | btrfs_set_file_extent_compression(leaf, ei, | 
| Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 185 | compress_type); | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 186 | } else { | 
|  | 187 | page = find_get_page(inode->i_mapping, | 
|  | 188 | start >> PAGE_CACHE_SHIFT); | 
|  | 189 | btrfs_set_file_extent_compression(leaf, ei, 0); | 
|  | 190 | kaddr = kmap_atomic(page, KM_USER0); | 
|  | 191 | offset = start & (PAGE_CACHE_SIZE - 1); | 
|  | 192 | write_extent_buffer(leaf, kaddr + offset, ptr, size); | 
|  | 193 | kunmap_atomic(kaddr, KM_USER0); | 
|  | 194 | page_cache_release(page); | 
|  | 195 | } | 
|  | 196 | btrfs_mark_buffer_dirty(leaf); | 
|  | 197 | btrfs_free_path(path); | 
|  | 198 |  | 
| Yan, Zheng | c216775 | 2009-11-12 09:34:21 +0000 | [diff] [blame] | 199 | /* | 
|  | 200 | * we're an inline extent, so nobody can | 
|  | 201 | * extend the file past i_size without locking | 
|  | 202 | * a page we already have locked. | 
|  | 203 | * | 
|  | 204 | * We must do any isize and inode updates | 
|  | 205 | * before we unlock the pages.  Otherwise we | 
|  | 206 | * could end up racing with unlink. | 
|  | 207 | */ | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 208 | BTRFS_I(inode)->disk_i_size = inode->i_size; | 
|  | 209 | btrfs_update_inode(trans, root, inode); | 
| Yan, Zheng | c216775 | 2009-11-12 09:34:21 +0000 | [diff] [blame] | 210 |  | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 211 | return 0; | 
|  | 212 | fail: | 
|  | 213 | btrfs_free_path(path); | 
|  | 214 | return err; | 
|  | 215 | } | 
|  | 216 |  | 
|  | 217 |  | 
|  | 218 | /* | 
|  | 219 | * conditionally insert an inline extent into the file.  This | 
|  | 220 | * does the checks required to make sure the data is small enough | 
|  | 221 | * to fit as an inline extent. | 
|  | 222 | */ | 
| Chris Mason | 7f366cf | 2009-03-12 20:12:45 -0400 | [diff] [blame] | 223 | static noinline int cow_file_range_inline(struct btrfs_trans_handle *trans, | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 224 | struct btrfs_root *root, | 
|  | 225 | struct inode *inode, u64 start, u64 end, | 
| Li Zefan | fe3f566 | 2011-03-28 08:30:38 +0000 | [diff] [blame] | 226 | size_t compressed_size, int compress_type, | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 227 | struct page **compressed_pages) | 
|  | 228 | { | 
|  | 229 | u64 isize = i_size_read(inode); | 
|  | 230 | u64 actual_end = min(end + 1, isize); | 
|  | 231 | u64 inline_len = actual_end - start; | 
|  | 232 | u64 aligned_end = (end + root->sectorsize - 1) & | 
|  | 233 | ~((u64)root->sectorsize - 1); | 
|  | 234 | u64 hint_byte; | 
|  | 235 | u64 data_len = inline_len; | 
|  | 236 | int ret; | 
|  | 237 |  | 
|  | 238 | if (compressed_size) | 
|  | 239 | data_len = compressed_size; | 
|  | 240 |  | 
|  | 241 | if (start > 0 || | 
| Chris Mason | 70b99e6 | 2008-10-31 12:46:39 -0400 | [diff] [blame] | 242 | actual_end >= PAGE_CACHE_SIZE || | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 243 | data_len >= BTRFS_MAX_INLINE_DATA_SIZE(root) || | 
|  | 244 | (!compressed_size && | 
|  | 245 | (actual_end & (root->sectorsize - 1)) == 0) || | 
|  | 246 | end + 1 < isize || | 
|  | 247 | data_len > root->fs_info->max_inline) { | 
|  | 248 | return 1; | 
|  | 249 | } | 
|  | 250 |  | 
| Yan, Zheng | 920bbbf | 2009-11-12 09:34:08 +0000 | [diff] [blame] | 251 | ret = btrfs_drop_extents(trans, inode, start, aligned_end, | 
| Chris Mason | a1ed835 | 2009-09-11 12:27:37 -0400 | [diff] [blame] | 252 | &hint_byte, 1); | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 253 | BUG_ON(ret); | 
|  | 254 |  | 
|  | 255 | if (isize > actual_end) | 
|  | 256 | inline_len = min_t(u64, isize, actual_end); | 
|  | 257 | ret = insert_inline_extent(trans, root, inode, start, | 
|  | 258 | inline_len, compressed_size, | 
| Li Zefan | fe3f566 | 2011-03-28 08:30:38 +0000 | [diff] [blame] | 259 | compress_type, compressed_pages); | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 260 | BUG_ON(ret); | 
| Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 261 | btrfs_delalloc_release_metadata(inode, end + 1 - start); | 
| Chris Mason | a1ed835 | 2009-09-11 12:27:37 -0400 | [diff] [blame] | 262 | btrfs_drop_extent_cache(inode, start, aligned_end - 1, 0); | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 263 | return 0; | 
|  | 264 | } | 
|  | 265 |  | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 266 | struct async_extent { | 
|  | 267 | u64 start; | 
|  | 268 | u64 ram_size; | 
|  | 269 | u64 compressed_size; | 
|  | 270 | struct page **pages; | 
|  | 271 | unsigned long nr_pages; | 
| Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 272 | int compress_type; | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 273 | struct list_head list; | 
|  | 274 | }; | 
|  | 275 |  | 
|  | 276 | struct async_cow { | 
|  | 277 | struct inode *inode; | 
|  | 278 | struct btrfs_root *root; | 
|  | 279 | struct page *locked_page; | 
|  | 280 | u64 start; | 
|  | 281 | u64 end; | 
|  | 282 | struct list_head extents; | 
|  | 283 | struct btrfs_work work; | 
|  | 284 | }; | 
|  | 285 |  | 
|  | 286 | static noinline int add_async_extent(struct async_cow *cow, | 
|  | 287 | u64 start, u64 ram_size, | 
|  | 288 | u64 compressed_size, | 
|  | 289 | struct page **pages, | 
| Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 290 | unsigned long nr_pages, | 
|  | 291 | int compress_type) | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 292 | { | 
|  | 293 | struct async_extent *async_extent; | 
|  | 294 |  | 
|  | 295 | async_extent = kmalloc(sizeof(*async_extent), GFP_NOFS); | 
| Yoshinori Sano | dac97e5 | 2011-02-15 12:01:42 +0000 | [diff] [blame] | 296 | BUG_ON(!async_extent); | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 297 | async_extent->start = start; | 
|  | 298 | async_extent->ram_size = ram_size; | 
|  | 299 | async_extent->compressed_size = compressed_size; | 
|  | 300 | async_extent->pages = pages; | 
|  | 301 | async_extent->nr_pages = nr_pages; | 
| Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 302 | async_extent->compress_type = compress_type; | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 303 | list_add_tail(&async_extent->list, &cow->extents); | 
|  | 304 | return 0; | 
|  | 305 | } | 
|  | 306 |  | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 307 | /* | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 308 | * we create compressed extents in two phases.  The first | 
|  | 309 | * phase compresses a range of pages that have already been | 
|  | 310 | * locked (both pages and state bits are locked). | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 311 | * | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 312 | * This is done inside an ordered work queue, and the compression | 
|  | 313 | * is spread across many cpus.  The actual IO submission is step | 
|  | 314 | * two, and the ordered work queue takes care of making sure that | 
|  | 315 | * happens in the same order things were put onto the queue by | 
|  | 316 | * writepages and friends. | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 317 | * | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 318 | * If this code finds it can't get good compression, it puts an | 
|  | 319 | * entry onto the work queue to write the uncompressed bytes.  This | 
|  | 320 | * makes sure that both compressed inodes and uncompressed inodes | 
|  | 321 | * are written in the same order that pdflush sent them down. | 
| Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 322 | */ | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 323 | static noinline int compress_file_range(struct inode *inode, | 
|  | 324 | struct page *locked_page, | 
|  | 325 | u64 start, u64 end, | 
|  | 326 | struct async_cow *async_cow, | 
|  | 327 | int *num_added) | 
| Chris Mason | b888db2 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 328 | { | 
|  | 329 | struct btrfs_root *root = BTRFS_I(inode)->root; | 
|  | 330 | struct btrfs_trans_handle *trans; | 
| Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 331 | u64 num_bytes; | 
| Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 332 | u64 blocksize = root->sectorsize; | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 333 | u64 actual_end; | 
| Chris Mason | 42dc7ba | 2008-12-15 11:44:56 -0500 | [diff] [blame] | 334 | u64 isize = i_size_read(inode); | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 335 | int ret = 0; | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 336 | struct page **pages = NULL; | 
|  | 337 | unsigned long nr_pages; | 
|  | 338 | unsigned long nr_pages_ret = 0; | 
|  | 339 | unsigned long total_compressed = 0; | 
|  | 340 | unsigned long total_in = 0; | 
|  | 341 | unsigned long max_compressed = 128 * 1024; | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 342 | unsigned long max_uncompressed = 128 * 1024; | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 343 | int i; | 
|  | 344 | int will_compress; | 
| Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 345 | int compress_type = root->fs_info->compress_type; | 
| Chris Mason | b888db2 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 346 |  | 
| Chris Mason | 4cb5300 | 2011-05-24 15:35:30 -0400 | [diff] [blame] | 347 | /* if this is a small write inside eof, kick off a defragbot */ | 
|  | 348 | if (end <= BTRFS_I(inode)->disk_i_size && (end - start + 1) < 16 * 1024) | 
|  | 349 | btrfs_add_inode_defrag(NULL, inode); | 
|  | 350 |  | 
| Chris Mason | 42dc7ba | 2008-12-15 11:44:56 -0500 | [diff] [blame] | 351 | actual_end = min_t(u64, isize, end + 1); | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 352 | again: | 
|  | 353 | will_compress = 0; | 
|  | 354 | nr_pages = (end >> PAGE_CACHE_SHIFT) - (start >> PAGE_CACHE_SHIFT) + 1; | 
|  | 355 | nr_pages = min(nr_pages, (128 * 1024UL) / PAGE_CACHE_SIZE); | 
|  | 356 |  | 
| Chris Mason | f03d930 | 2009-02-04 09:31:06 -0500 | [diff] [blame] | 357 | /* | 
|  | 358 | * we don't want to send crud past the end of i_size through | 
|  | 359 | * compression, that's just a waste of CPU time.  So, if the | 
|  | 360 | * end of the file is before the start of our current | 
|  | 361 | * requested range of bytes, we bail out to the uncompressed | 
|  | 362 | * cleanup code that can deal with all of this. | 
|  | 363 | * | 
|  | 364 | * It isn't really the fastest way to fix things, but this is a | 
|  | 365 | * very uncommon corner. | 
|  | 366 | */ | 
|  | 367 | if (actual_end <= start) | 
|  | 368 | goto cleanup_and_bail_uncompressed; | 
|  | 369 |  | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 370 | total_compressed = actual_end - start; | 
|  | 371 |  | 
|  | 372 | /* we want to make sure that amount of ram required to uncompress | 
|  | 373 | * an extent is reasonable, so we limit the total size in ram | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 374 | * of a compressed extent to 128k.  This is a crucial number | 
|  | 375 | * because it also controls how easily we can spread reads across | 
|  | 376 | * cpus for decompression. | 
|  | 377 | * | 
|  | 378 | * We also want to make sure the amount of IO required to do | 
|  | 379 | * a random read is reasonably small, so we limit the size of | 
|  | 380 | * a compressed extent to 128k. | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 381 | */ | 
|  | 382 | total_compressed = min(total_compressed, max_uncompressed); | 
| Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 383 | num_bytes = (end - start + blocksize) & ~(blocksize - 1); | 
| Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 384 | num_bytes = max(blocksize,  num_bytes); | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 385 | total_in = 0; | 
|  | 386 | ret = 0; | 
| Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 387 |  | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 388 | /* | 
|  | 389 | * we do compression for mount -o compress and when the | 
|  | 390 | * inode has not been flagged as nocompress.  This flag can | 
|  | 391 | * change at any time if we discover bad compression ratios. | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 392 | */ | 
| Christoph Hellwig | 6cbff00 | 2009-04-17 10:37:41 +0200 | [diff] [blame] | 393 | if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS) && | 
| Chris Mason | 1e701a3 | 2010-03-11 09:42:04 -0500 | [diff] [blame] | 394 | (btrfs_test_opt(root, COMPRESS) || | 
| Liu Bo | 75e7cb7 | 2011-03-22 10:12:20 +0000 | [diff] [blame] | 395 | (BTRFS_I(inode)->force_compress) || | 
|  | 396 | (BTRFS_I(inode)->flags & BTRFS_INODE_COMPRESS))) { | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 397 | WARN_ON(pages); | 
| Chris Mason | cfbc246 | 2008-10-30 13:22:14 -0400 | [diff] [blame] | 398 | pages = kzalloc(sizeof(struct page *) * nr_pages, GFP_NOFS); | 
| Li Zefan | 560f7d7 | 2011-09-08 10:22:01 +0800 | [diff] [blame] | 399 | if (!pages) { | 
|  | 400 | /* just bail out to the uncompressed code */ | 
|  | 401 | goto cont; | 
|  | 402 | } | 
| Chris Mason | 179e29e | 2007-11-01 11:28:41 -0400 | [diff] [blame] | 403 |  | 
| Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 404 | if (BTRFS_I(inode)->force_compress) | 
|  | 405 | compress_type = BTRFS_I(inode)->force_compress; | 
|  | 406 |  | 
|  | 407 | ret = btrfs_compress_pages(compress_type, | 
|  | 408 | inode->i_mapping, start, | 
|  | 409 | total_compressed, pages, | 
|  | 410 | nr_pages, &nr_pages_ret, | 
|  | 411 | &total_in, | 
|  | 412 | &total_compressed, | 
|  | 413 | max_compressed); | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 414 |  | 
|  | 415 | if (!ret) { | 
|  | 416 | unsigned long offset = total_compressed & | 
|  | 417 | (PAGE_CACHE_SIZE - 1); | 
|  | 418 | struct page *page = pages[nr_pages_ret - 1]; | 
|  | 419 | char *kaddr; | 
|  | 420 |  | 
|  | 421 | /* zero the tail end of the last page, we might be | 
|  | 422 | * sending it down to disk | 
|  | 423 | */ | 
|  | 424 | if (offset) { | 
|  | 425 | kaddr = kmap_atomic(page, KM_USER0); | 
|  | 426 | memset(kaddr + offset, 0, | 
|  | 427 | PAGE_CACHE_SIZE - offset); | 
|  | 428 | kunmap_atomic(kaddr, KM_USER0); | 
|  | 429 | } | 
|  | 430 | will_compress = 1; | 
|  | 431 | } | 
|  | 432 | } | 
| Li Zefan | 560f7d7 | 2011-09-08 10:22:01 +0800 | [diff] [blame] | 433 | cont: | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 434 | if (start == 0) { | 
| Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 435 | trans = btrfs_join_transaction(root); | 
| Tsutomu Itoh | 3612b49 | 2011-01-25 02:51:38 +0000 | [diff] [blame] | 436 | BUG_ON(IS_ERR(trans)); | 
| Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 437 | trans->block_rsv = &root->fs_info->delalloc_block_rsv; | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 438 |  | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 439 | /* lets try to make an inline extent */ | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 440 | if (ret || total_in < (actual_end - start)) { | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 441 | /* we didn't compress the entire range, try | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 442 | * to make an uncompressed inline extent. | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 443 | */ | 
|  | 444 | ret = cow_file_range_inline(trans, root, inode, | 
| Li Zefan | fe3f566 | 2011-03-28 08:30:38 +0000 | [diff] [blame] | 445 | start, end, 0, 0, NULL); | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 446 | } else { | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 447 | /* try making a compressed inline extent */ | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 448 | ret = cow_file_range_inline(trans, root, inode, | 
|  | 449 | start, end, | 
| Li Zefan | fe3f566 | 2011-03-28 08:30:38 +0000 | [diff] [blame] | 450 | total_compressed, | 
|  | 451 | compress_type, pages); | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 452 | } | 
|  | 453 | if (ret == 0) { | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 454 | /* | 
|  | 455 | * inline extent creation worked, we don't need | 
|  | 456 | * to create any more async work items.  Unlock | 
|  | 457 | * and free up our temp pages. | 
|  | 458 | */ | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 459 | extent_clear_unlock_delalloc(inode, | 
| Chris Mason | a791e35 | 2009-10-08 11:27:10 -0400 | [diff] [blame] | 460 | &BTRFS_I(inode)->io_tree, | 
|  | 461 | start, end, NULL, | 
|  | 462 | EXTENT_CLEAR_UNLOCK_PAGE | EXTENT_CLEAR_DIRTY | | 
| Chris Mason | a3429ab | 2009-10-08 12:30:20 -0400 | [diff] [blame] | 463 | EXTENT_CLEAR_DELALLOC | | 
| Chris Mason | a791e35 | 2009-10-08 11:27:10 -0400 | [diff] [blame] | 464 | EXTENT_SET_WRITEBACK | EXTENT_END_WRITEBACK); | 
| Yan, Zheng | c216775 | 2009-11-12 09:34:21 +0000 | [diff] [blame] | 465 |  | 
|  | 466 | btrfs_end_transaction(trans, root); | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 467 | goto free_pages_out; | 
|  | 468 | } | 
| Yan, Zheng | c216775 | 2009-11-12 09:34:21 +0000 | [diff] [blame] | 469 | btrfs_end_transaction(trans, root); | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 470 | } | 
|  | 471 |  | 
|  | 472 | if (will_compress) { | 
|  | 473 | /* | 
|  | 474 | * we aren't doing an inline extent round the compressed size | 
|  | 475 | * up to a block size boundary so the allocator does sane | 
|  | 476 | * things | 
|  | 477 | */ | 
|  | 478 | total_compressed = (total_compressed + blocksize - 1) & | 
|  | 479 | ~(blocksize - 1); | 
|  | 480 |  | 
|  | 481 | /* | 
|  | 482 | * one last check to make sure the compression is really a | 
|  | 483 | * win, compare the page count read with the blocks on disk | 
|  | 484 | */ | 
|  | 485 | total_in = (total_in + PAGE_CACHE_SIZE - 1) & | 
|  | 486 | ~(PAGE_CACHE_SIZE - 1); | 
|  | 487 | if (total_compressed >= total_in) { | 
|  | 488 | will_compress = 0; | 
|  | 489 | } else { | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 490 | num_bytes = total_in; | 
|  | 491 | } | 
|  | 492 | } | 
|  | 493 | if (!will_compress && pages) { | 
|  | 494 | /* | 
|  | 495 | * the compression code ran but failed to make things smaller, | 
|  | 496 | * free any pages it allocated and our page pointer array | 
|  | 497 | */ | 
|  | 498 | for (i = 0; i < nr_pages_ret; i++) { | 
| Chris Mason | 70b99e6 | 2008-10-31 12:46:39 -0400 | [diff] [blame] | 499 | WARN_ON(pages[i]->mapping); | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 500 | page_cache_release(pages[i]); | 
|  | 501 | } | 
|  | 502 | kfree(pages); | 
|  | 503 | pages = NULL; | 
|  | 504 | total_compressed = 0; | 
|  | 505 | nr_pages_ret = 0; | 
|  | 506 |  | 
|  | 507 | /* flag the file so we don't compress in the future */ | 
| Chris Mason | 1e701a3 | 2010-03-11 09:42:04 -0500 | [diff] [blame] | 508 | if (!btrfs_test_opt(root, FORCE_COMPRESS) && | 
|  | 509 | !(BTRFS_I(inode)->force_compress)) { | 
| Chris Mason | a555f81 | 2010-01-28 16:18:15 -0500 | [diff] [blame] | 510 | BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS; | 
| Chris Mason | 1e701a3 | 2010-03-11 09:42:04 -0500 | [diff] [blame] | 511 | } | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 512 | } | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 513 | if (will_compress) { | 
|  | 514 | *num_added += 1; | 
|  | 515 |  | 
|  | 516 | /* the async work queues will take care of doing actual | 
|  | 517 | * allocation on disk for these compressed pages, | 
|  | 518 | * and will submit them to the elevator. | 
|  | 519 | */ | 
|  | 520 | add_async_extent(async_cow, start, num_bytes, | 
| Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 521 | total_compressed, pages, nr_pages_ret, | 
|  | 522 | compress_type); | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 523 |  | 
| Yan, Zheng | 24ae636 | 2010-12-06 07:02:36 +0000 | [diff] [blame] | 524 | if (start + num_bytes < end) { | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 525 | start += num_bytes; | 
|  | 526 | pages = NULL; | 
|  | 527 | cond_resched(); | 
|  | 528 | goto again; | 
|  | 529 | } | 
|  | 530 | } else { | 
| Chris Mason | f03d930 | 2009-02-04 09:31:06 -0500 | [diff] [blame] | 531 | cleanup_and_bail_uncompressed: | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 532 | /* | 
|  | 533 | * No compression, but we still need to write the pages in | 
|  | 534 | * the file we've been given so far.  redirty the locked | 
|  | 535 | * page if it corresponds to our extent and set things up | 
|  | 536 | * for the async work queue to run cow_file_range to do | 
|  | 537 | * the normal delalloc dance | 
|  | 538 | */ | 
|  | 539 | if (page_offset(locked_page) >= start && | 
|  | 540 | page_offset(locked_page) <= end) { | 
|  | 541 | __set_page_dirty_nobuffers(locked_page); | 
|  | 542 | /* unlocked later on in the async handlers */ | 
|  | 543 | } | 
| Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 544 | add_async_extent(async_cow, start, end - start + 1, | 
|  | 545 | 0, NULL, 0, BTRFS_COMPRESS_NONE); | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 546 | *num_added += 1; | 
|  | 547 | } | 
|  | 548 |  | 
|  | 549 | out: | 
|  | 550 | return 0; | 
|  | 551 |  | 
|  | 552 | free_pages_out: | 
|  | 553 | for (i = 0; i < nr_pages_ret; i++) { | 
|  | 554 | WARN_ON(pages[i]->mapping); | 
|  | 555 | page_cache_release(pages[i]); | 
|  | 556 | } | 
| Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 557 | kfree(pages); | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 558 |  | 
|  | 559 | goto out; | 
|  | 560 | } | 
|  | 561 |  | 
|  | 562 | /* | 
|  | 563 | * phase two of compressed writeback.  This is the ordered portion | 
|  | 564 | * of the code, which only gets called in the order the work was | 
|  | 565 | * queued.  We walk all the async extents created by compress_file_range | 
|  | 566 | * and send them down to the disk. | 
|  | 567 | */ | 
|  | 568 | static noinline int submit_compressed_extents(struct inode *inode, | 
|  | 569 | struct async_cow *async_cow) | 
|  | 570 | { | 
|  | 571 | struct async_extent *async_extent; | 
|  | 572 | u64 alloc_hint = 0; | 
|  | 573 | struct btrfs_trans_handle *trans; | 
|  | 574 | struct btrfs_key ins; | 
|  | 575 | struct extent_map *em; | 
|  | 576 | struct btrfs_root *root = BTRFS_I(inode)->root; | 
|  | 577 | struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree; | 
|  | 578 | struct extent_io_tree *io_tree; | 
| Josef Bacik | f5a84ee3 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 579 | int ret = 0; | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 580 |  | 
|  | 581 | if (list_empty(&async_cow->extents)) | 
|  | 582 | return 0; | 
|  | 583 |  | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 584 |  | 
| Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 585 | while (!list_empty(&async_cow->extents)) { | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 586 | async_extent = list_entry(async_cow->extents.next, | 
|  | 587 | struct async_extent, list); | 
|  | 588 | list_del(&async_extent->list); | 
|  | 589 |  | 
|  | 590 | io_tree = &BTRFS_I(inode)->io_tree; | 
|  | 591 |  | 
| Josef Bacik | f5a84ee3 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 592 | retry: | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 593 | /* did the compression code fall back to uncompressed IO? */ | 
|  | 594 | if (!async_extent->pages) { | 
|  | 595 | int page_started = 0; | 
|  | 596 | unsigned long nr_written = 0; | 
|  | 597 |  | 
|  | 598 | lock_extent(io_tree, async_extent->start, | 
| Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 599 | async_extent->start + | 
|  | 600 | async_extent->ram_size - 1, GFP_NOFS); | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 601 |  | 
|  | 602 | /* allocate blocks */ | 
| Josef Bacik | f5a84ee3 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 603 | ret = cow_file_range(inode, async_cow->locked_page, | 
|  | 604 | async_extent->start, | 
|  | 605 | async_extent->start + | 
|  | 606 | async_extent->ram_size - 1, | 
|  | 607 | &page_started, &nr_written, 0); | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 608 |  | 
|  | 609 | /* | 
|  | 610 | * if page_started, cow_file_range inserted an | 
|  | 611 | * inline extent and took care of all the unlocking | 
|  | 612 | * and IO for us.  Otherwise, we need to submit | 
|  | 613 | * all those pages down to the drive. | 
|  | 614 | */ | 
| Josef Bacik | f5a84ee3 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 615 | if (!page_started && !ret) | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 616 | extent_write_locked_range(io_tree, | 
|  | 617 | inode, async_extent->start, | 
| Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 618 | async_extent->start + | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 619 | async_extent->ram_size - 1, | 
|  | 620 | btrfs_get_extent, | 
|  | 621 | WB_SYNC_ALL); | 
|  | 622 | kfree(async_extent); | 
|  | 623 | cond_resched(); | 
|  | 624 | continue; | 
|  | 625 | } | 
|  | 626 |  | 
|  | 627 | lock_extent(io_tree, async_extent->start, | 
|  | 628 | async_extent->start + async_extent->ram_size - 1, | 
|  | 629 | GFP_NOFS); | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 630 |  | 
| Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 631 | trans = btrfs_join_transaction(root); | 
| Tsutomu Itoh | 3612b49 | 2011-01-25 02:51:38 +0000 | [diff] [blame] | 632 | BUG_ON(IS_ERR(trans)); | 
| Josef Bacik | 74b2107 | 2011-04-13 12:02:53 -0400 | [diff] [blame] | 633 | trans->block_rsv = &root->fs_info->delalloc_block_rsv; | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 634 | ret = btrfs_reserve_extent(trans, root, | 
|  | 635 | async_extent->compressed_size, | 
|  | 636 | async_extent->compressed_size, | 
|  | 637 | 0, alloc_hint, | 
|  | 638 | (u64)-1, &ins, 1); | 
| Yan, Zheng | c216775 | 2009-11-12 09:34:21 +0000 | [diff] [blame] | 639 | btrfs_end_transaction(trans, root); | 
|  | 640 |  | 
| Josef Bacik | f5a84ee3 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 641 | if (ret) { | 
|  | 642 | int i; | 
|  | 643 | for (i = 0; i < async_extent->nr_pages; i++) { | 
|  | 644 | WARN_ON(async_extent->pages[i]->mapping); | 
|  | 645 | page_cache_release(async_extent->pages[i]); | 
|  | 646 | } | 
|  | 647 | kfree(async_extent->pages); | 
|  | 648 | async_extent->nr_pages = 0; | 
|  | 649 | async_extent->pages = NULL; | 
|  | 650 | unlock_extent(io_tree, async_extent->start, | 
|  | 651 | async_extent->start + | 
|  | 652 | async_extent->ram_size - 1, GFP_NOFS); | 
|  | 653 | goto retry; | 
|  | 654 | } | 
|  | 655 |  | 
| Yan, Zheng | c216775 | 2009-11-12 09:34:21 +0000 | [diff] [blame] | 656 | /* | 
|  | 657 | * here we're doing allocation and writeback of the | 
|  | 658 | * compressed pages | 
|  | 659 | */ | 
|  | 660 | btrfs_drop_extent_cache(inode, async_extent->start, | 
|  | 661 | async_extent->start + | 
|  | 662 | async_extent->ram_size - 1, 0); | 
|  | 663 |  | 
| David Sterba | 172ddd6 | 2011-04-21 00:48:27 +0200 | [diff] [blame] | 664 | em = alloc_extent_map(); | 
| Tsutomu Itoh | c26a920 | 2011-02-14 00:45:29 +0000 | [diff] [blame] | 665 | BUG_ON(!em); | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 666 | em->start = async_extent->start; | 
|  | 667 | em->len = async_extent->ram_size; | 
| Chris Mason | 445a694 | 2008-11-10 11:53:33 -0500 | [diff] [blame] | 668 | em->orig_start = em->start; | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 669 |  | 
|  | 670 | em->block_start = ins.objectid; | 
|  | 671 | em->block_len = ins.offset; | 
|  | 672 | em->bdev = root->fs_info->fs_devices->latest_bdev; | 
| Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 673 | em->compress_type = async_extent->compress_type; | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 674 | set_bit(EXTENT_FLAG_PINNED, &em->flags); | 
|  | 675 | set_bit(EXTENT_FLAG_COMPRESSED, &em->flags); | 
|  | 676 |  | 
| Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 677 | while (1) { | 
| Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 678 | write_lock(&em_tree->lock); | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 679 | ret = add_extent_mapping(em_tree, em); | 
| Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 680 | write_unlock(&em_tree->lock); | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 681 | if (ret != -EEXIST) { | 
|  | 682 | free_extent_map(em); | 
|  | 683 | break; | 
|  | 684 | } | 
|  | 685 | btrfs_drop_extent_cache(inode, async_extent->start, | 
|  | 686 | async_extent->start + | 
|  | 687 | async_extent->ram_size - 1, 0); | 
|  | 688 | } | 
|  | 689 |  | 
| Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 690 | ret = btrfs_add_ordered_extent_compress(inode, | 
|  | 691 | async_extent->start, | 
|  | 692 | ins.objectid, | 
|  | 693 | async_extent->ram_size, | 
|  | 694 | ins.offset, | 
|  | 695 | BTRFS_ORDERED_COMPRESSED, | 
|  | 696 | async_extent->compress_type); | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 697 | BUG_ON(ret); | 
|  | 698 |  | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 699 | /* | 
|  | 700 | * clear dirty, set writeback and unlock the pages. | 
|  | 701 | */ | 
|  | 702 | extent_clear_unlock_delalloc(inode, | 
| Chris Mason | a791e35 | 2009-10-08 11:27:10 -0400 | [diff] [blame] | 703 | &BTRFS_I(inode)->io_tree, | 
|  | 704 | async_extent->start, | 
|  | 705 | async_extent->start + | 
|  | 706 | async_extent->ram_size - 1, | 
|  | 707 | NULL, EXTENT_CLEAR_UNLOCK_PAGE | | 
|  | 708 | EXTENT_CLEAR_UNLOCK | | 
| Chris Mason | a3429ab | 2009-10-08 12:30:20 -0400 | [diff] [blame] | 709 | EXTENT_CLEAR_DELALLOC | | 
| Chris Mason | a791e35 | 2009-10-08 11:27:10 -0400 | [diff] [blame] | 710 | EXTENT_CLEAR_DIRTY | EXTENT_SET_WRITEBACK); | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 711 |  | 
|  | 712 | ret = btrfs_submit_compressed_write(inode, | 
| Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 713 | async_extent->start, | 
|  | 714 | async_extent->ram_size, | 
|  | 715 | ins.objectid, | 
|  | 716 | ins.offset, async_extent->pages, | 
|  | 717 | async_extent->nr_pages); | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 718 |  | 
|  | 719 | BUG_ON(ret); | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 720 | alloc_hint = ins.objectid + ins.offset; | 
|  | 721 | kfree(async_extent); | 
|  | 722 | cond_resched(); | 
|  | 723 | } | 
|  | 724 |  | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 725 | return 0; | 
|  | 726 | } | 
|  | 727 |  | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 728 | static u64 get_extent_allocation_hint(struct inode *inode, u64 start, | 
|  | 729 | u64 num_bytes) | 
|  | 730 | { | 
|  | 731 | struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree; | 
|  | 732 | struct extent_map *em; | 
|  | 733 | u64 alloc_hint = 0; | 
|  | 734 |  | 
|  | 735 | read_lock(&em_tree->lock); | 
|  | 736 | em = search_extent_mapping(em_tree, start, num_bytes); | 
|  | 737 | if (em) { | 
|  | 738 | /* | 
|  | 739 | * if block start isn't an actual block number then find the | 
|  | 740 | * first block in this inode and use that as a hint.  If that | 
|  | 741 | * block is also bogus then just don't worry about it. | 
|  | 742 | */ | 
|  | 743 | if (em->block_start >= EXTENT_MAP_LAST_BYTE) { | 
|  | 744 | free_extent_map(em); | 
|  | 745 | em = search_extent_mapping(em_tree, 0, 0); | 
|  | 746 | if (em && em->block_start < EXTENT_MAP_LAST_BYTE) | 
|  | 747 | alloc_hint = em->block_start; | 
|  | 748 | if (em) | 
|  | 749 | free_extent_map(em); | 
|  | 750 | } else { | 
|  | 751 | alloc_hint = em->block_start; | 
|  | 752 | free_extent_map(em); | 
|  | 753 | } | 
|  | 754 | } | 
|  | 755 | read_unlock(&em_tree->lock); | 
|  | 756 |  | 
|  | 757 | return alloc_hint; | 
|  | 758 | } | 
|  | 759 |  | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 760 | /* | 
|  | 761 | * when extent_io.c finds a delayed allocation range in the file, | 
|  | 762 | * the call backs end up in this code.  The basic idea is to | 
|  | 763 | * allocate extents on disk for the range, and create ordered data structs | 
|  | 764 | * in ram to track those extents. | 
|  | 765 | * | 
|  | 766 | * locked_page is the page that writepage had locked already.  We use | 
|  | 767 | * it to make sure we don't do extra locks or unlocks. | 
|  | 768 | * | 
|  | 769 | * *page_started is set to one if we unlock locked_page and do everything | 
|  | 770 | * required to start IO on it.  It may be clean and already done with | 
|  | 771 | * IO when we return. | 
|  | 772 | */ | 
|  | 773 | static noinline int cow_file_range(struct inode *inode, | 
|  | 774 | struct page *locked_page, | 
|  | 775 | u64 start, u64 end, int *page_started, | 
|  | 776 | unsigned long *nr_written, | 
|  | 777 | int unlock) | 
|  | 778 | { | 
|  | 779 | struct btrfs_root *root = BTRFS_I(inode)->root; | 
|  | 780 | struct btrfs_trans_handle *trans; | 
|  | 781 | u64 alloc_hint = 0; | 
|  | 782 | u64 num_bytes; | 
|  | 783 | unsigned long ram_size; | 
|  | 784 | u64 disk_num_bytes; | 
|  | 785 | u64 cur_alloc_size; | 
|  | 786 | u64 blocksize = root->sectorsize; | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 787 | struct btrfs_key ins; | 
|  | 788 | struct extent_map *em; | 
|  | 789 | struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree; | 
|  | 790 | int ret = 0; | 
|  | 791 |  | 
| Chris Mason | 2cf8572 | 2011-07-26 15:35:09 -0400 | [diff] [blame] | 792 | BUG_ON(btrfs_is_free_space_inode(root, inode)); | 
| Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 793 | trans = btrfs_join_transaction(root); | 
| Tsutomu Itoh | 3612b49 | 2011-01-25 02:51:38 +0000 | [diff] [blame] | 794 | BUG_ON(IS_ERR(trans)); | 
| Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 795 | trans->block_rsv = &root->fs_info->delalloc_block_rsv; | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 796 |  | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 797 | num_bytes = (end - start + blocksize) & ~(blocksize - 1); | 
|  | 798 | num_bytes = max(blocksize,  num_bytes); | 
|  | 799 | disk_num_bytes = num_bytes; | 
|  | 800 | ret = 0; | 
|  | 801 |  | 
| Chris Mason | 4cb5300 | 2011-05-24 15:35:30 -0400 | [diff] [blame] | 802 | /* if this is a small write inside eof, kick off defrag */ | 
|  | 803 | if (end <= BTRFS_I(inode)->disk_i_size && num_bytes < 64 * 1024) | 
|  | 804 | btrfs_add_inode_defrag(trans, inode); | 
|  | 805 |  | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 806 | if (start == 0) { | 
|  | 807 | /* lets try to make an inline extent */ | 
|  | 808 | ret = cow_file_range_inline(trans, root, inode, | 
| Li Zefan | fe3f566 | 2011-03-28 08:30:38 +0000 | [diff] [blame] | 809 | start, end, 0, 0, NULL); | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 810 | if (ret == 0) { | 
|  | 811 | extent_clear_unlock_delalloc(inode, | 
| Chris Mason | a791e35 | 2009-10-08 11:27:10 -0400 | [diff] [blame] | 812 | &BTRFS_I(inode)->io_tree, | 
|  | 813 | start, end, NULL, | 
|  | 814 | EXTENT_CLEAR_UNLOCK_PAGE | | 
|  | 815 | EXTENT_CLEAR_UNLOCK | | 
|  | 816 | EXTENT_CLEAR_DELALLOC | | 
|  | 817 | EXTENT_CLEAR_DIRTY | | 
|  | 818 | EXTENT_SET_WRITEBACK | | 
|  | 819 | EXTENT_END_WRITEBACK); | 
| Yan, Zheng | c216775 | 2009-11-12 09:34:21 +0000 | [diff] [blame] | 820 |  | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 821 | *nr_written = *nr_written + | 
|  | 822 | (end - start + PAGE_CACHE_SIZE) / PAGE_CACHE_SIZE; | 
|  | 823 | *page_started = 1; | 
|  | 824 | ret = 0; | 
|  | 825 | goto out; | 
|  | 826 | } | 
|  | 827 | } | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 828 |  | 
|  | 829 | BUG_ON(disk_num_bytes > | 
| David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 830 | btrfs_super_total_bytes(root->fs_info->super_copy)); | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 831 |  | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 832 | alloc_hint = get_extent_allocation_hint(inode, start, num_bytes); | 
| Zheng Yan | 5b21f2e | 2008-09-26 10:05:38 -0400 | [diff] [blame] | 833 | btrfs_drop_extent_cache(inode, start, start + num_bytes - 1, 0); | 
| Chris Mason | 3b95151 | 2008-04-17 11:29:12 -0400 | [diff] [blame] | 834 |  | 
| Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 835 | while (disk_num_bytes > 0) { | 
| Chris Mason | a791e35 | 2009-10-08 11:27:10 -0400 | [diff] [blame] | 836 | unsigned long op; | 
|  | 837 |  | 
| Josef Bacik | 287a0ab | 2010-03-19 18:07:23 +0000 | [diff] [blame] | 838 | cur_alloc_size = disk_num_bytes; | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 839 | ret = btrfs_reserve_extent(trans, root, cur_alloc_size, | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 840 | root->sectorsize, 0, alloc_hint, | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 841 | (u64)-1, &ins, 1); | 
| Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 842 | BUG_ON(ret); | 
|  | 843 |  | 
| David Sterba | 172ddd6 | 2011-04-21 00:48:27 +0200 | [diff] [blame] | 844 | em = alloc_extent_map(); | 
| Tsutomu Itoh | c26a920 | 2011-02-14 00:45:29 +0000 | [diff] [blame] | 845 | BUG_ON(!em); | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 846 | em->start = start; | 
| Chris Mason | 445a694 | 2008-11-10 11:53:33 -0500 | [diff] [blame] | 847 | em->orig_start = em->start; | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 848 | ram_size = ins.offset; | 
|  | 849 | em->len = ins.offset; | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 850 |  | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 851 | em->block_start = ins.objectid; | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 852 | em->block_len = ins.offset; | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 853 | em->bdev = root->fs_info->fs_devices->latest_bdev; | 
| Chris Mason | 7f3c74f | 2008-07-18 12:01:11 -0400 | [diff] [blame] | 854 | set_bit(EXTENT_FLAG_PINNED, &em->flags); | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 855 |  | 
| Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 856 | while (1) { | 
| Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 857 | write_lock(&em_tree->lock); | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 858 | ret = add_extent_mapping(em_tree, em); | 
| Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 859 | write_unlock(&em_tree->lock); | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 860 | if (ret != -EEXIST) { | 
|  | 861 | free_extent_map(em); | 
|  | 862 | break; | 
|  | 863 | } | 
|  | 864 | btrfs_drop_extent_cache(inode, start, | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 865 | start + ram_size - 1, 0); | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 866 | } | 
|  | 867 |  | 
| Chris Mason | 98d20f6 | 2008-04-14 09:46:10 -0400 | [diff] [blame] | 868 | cur_alloc_size = ins.offset; | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 869 | ret = btrfs_add_ordered_extent(inode, start, ins.objectid, | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 870 | ram_size, cur_alloc_size, 0); | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 871 | BUG_ON(ret); | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 872 |  | 
| Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 873 | if (root->root_key.objectid == | 
|  | 874 | BTRFS_DATA_RELOC_TREE_OBJECTID) { | 
|  | 875 | ret = btrfs_reloc_clone_csums(inode, start, | 
|  | 876 | cur_alloc_size); | 
|  | 877 | BUG_ON(ret); | 
|  | 878 | } | 
|  | 879 |  | 
| Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 880 | if (disk_num_bytes < cur_alloc_size) | 
| Chris Mason | 3b95151 | 2008-04-17 11:29:12 -0400 | [diff] [blame] | 881 | break; | 
| Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 882 |  | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 883 | /* we're not doing compressed IO, don't unlock the first | 
|  | 884 | * page (which the caller expects to stay locked), don't | 
|  | 885 | * clear any dirty bits and don't set any writeback bits | 
| Chris Mason | 8b62b72 | 2009-09-02 16:53:46 -0400 | [diff] [blame] | 886 | * | 
|  | 887 | * Do set the Private2 bit so we know this page was properly | 
|  | 888 | * setup for writepage | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 889 | */ | 
| Chris Mason | a791e35 | 2009-10-08 11:27:10 -0400 | [diff] [blame] | 890 | op = unlock ? EXTENT_CLEAR_UNLOCK_PAGE : 0; | 
|  | 891 | op |= EXTENT_CLEAR_UNLOCK | EXTENT_CLEAR_DELALLOC | | 
|  | 892 | EXTENT_SET_PRIVATE2; | 
|  | 893 |  | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 894 | extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree, | 
|  | 895 | start, start + ram_size - 1, | 
| Chris Mason | a791e35 | 2009-10-08 11:27:10 -0400 | [diff] [blame] | 896 | locked_page, op); | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 897 | disk_num_bytes -= cur_alloc_size; | 
| Chris Mason | c59f895 | 2007-12-17 20:14:04 -0500 | [diff] [blame] | 898 | num_bytes -= cur_alloc_size; | 
|  | 899 | alloc_hint = ins.objectid + ins.offset; | 
|  | 900 | start += cur_alloc_size; | 
| Chris Mason | b888db2 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 901 | } | 
| Chris Mason | b888db2 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 902 | out: | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 903 | ret = 0; | 
| Chris Mason | b888db2 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 904 | btrfs_end_transaction(trans, root); | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 905 |  | 
| Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 906 | return ret; | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 907 | } | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 908 |  | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 909 | /* | 
|  | 910 | * work queue call back to started compression on a file and pages | 
|  | 911 | */ | 
|  | 912 | static noinline void async_cow_start(struct btrfs_work *work) | 
|  | 913 | { | 
|  | 914 | struct async_cow *async_cow; | 
|  | 915 | int num_added = 0; | 
|  | 916 | async_cow = container_of(work, struct async_cow, work); | 
|  | 917 |  | 
|  | 918 | compress_file_range(async_cow->inode, async_cow->locked_page, | 
|  | 919 | async_cow->start, async_cow->end, async_cow, | 
|  | 920 | &num_added); | 
|  | 921 | if (num_added == 0) | 
|  | 922 | async_cow->inode = NULL; | 
|  | 923 | } | 
|  | 924 |  | 
|  | 925 | /* | 
|  | 926 | * work queue call back to submit previously compressed pages | 
|  | 927 | */ | 
|  | 928 | static noinline void async_cow_submit(struct btrfs_work *work) | 
|  | 929 | { | 
|  | 930 | struct async_cow *async_cow; | 
|  | 931 | struct btrfs_root *root; | 
|  | 932 | unsigned long nr_pages; | 
|  | 933 |  | 
|  | 934 | async_cow = container_of(work, struct async_cow, work); | 
|  | 935 |  | 
|  | 936 | root = async_cow->root; | 
|  | 937 | nr_pages = (async_cow->end - async_cow->start + PAGE_CACHE_SIZE) >> | 
|  | 938 | PAGE_CACHE_SHIFT; | 
|  | 939 |  | 
|  | 940 | atomic_sub(nr_pages, &root->fs_info->async_delalloc_pages); | 
|  | 941 |  | 
|  | 942 | if (atomic_read(&root->fs_info->async_delalloc_pages) < | 
|  | 943 | 5 * 1042 * 1024 && | 
|  | 944 | waitqueue_active(&root->fs_info->async_submit_wait)) | 
|  | 945 | wake_up(&root->fs_info->async_submit_wait); | 
|  | 946 |  | 
| Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 947 | if (async_cow->inode) | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 948 | submit_compressed_extents(async_cow->inode, async_cow); | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 949 | } | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 950 |  | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 951 | static noinline void async_cow_free(struct btrfs_work *work) | 
|  | 952 | { | 
|  | 953 | struct async_cow *async_cow; | 
|  | 954 | async_cow = container_of(work, struct async_cow, work); | 
|  | 955 | kfree(async_cow); | 
|  | 956 | } | 
|  | 957 |  | 
|  | 958 | static int cow_file_range_async(struct inode *inode, struct page *locked_page, | 
|  | 959 | u64 start, u64 end, int *page_started, | 
|  | 960 | unsigned long *nr_written) | 
|  | 961 | { | 
|  | 962 | struct async_cow *async_cow; | 
|  | 963 | struct btrfs_root *root = BTRFS_I(inode)->root; | 
|  | 964 | unsigned long nr_pages; | 
|  | 965 | u64 cur_end; | 
|  | 966 | int limit = 10 * 1024 * 1042; | 
|  | 967 |  | 
| Chris Mason | a3429ab | 2009-10-08 12:30:20 -0400 | [diff] [blame] | 968 | clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, EXTENT_LOCKED, | 
|  | 969 | 1, 0, NULL, GFP_NOFS); | 
| Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 970 | while (start < end) { | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 971 | async_cow = kmalloc(sizeof(*async_cow), GFP_NOFS); | 
| Tsutomu Itoh | 8d41371 | 2011-04-25 19:43:52 -0400 | [diff] [blame] | 972 | BUG_ON(!async_cow); | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 973 | async_cow->inode = inode; | 
|  | 974 | async_cow->root = root; | 
|  | 975 | async_cow->locked_page = locked_page; | 
|  | 976 | async_cow->start = start; | 
|  | 977 |  | 
| Christoph Hellwig | 6cbff00 | 2009-04-17 10:37:41 +0200 | [diff] [blame] | 978 | if (BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS) | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 979 | cur_end = end; | 
|  | 980 | else | 
|  | 981 | cur_end = min(end, start + 512 * 1024 - 1); | 
|  | 982 |  | 
|  | 983 | async_cow->end = cur_end; | 
|  | 984 | INIT_LIST_HEAD(&async_cow->extents); | 
|  | 985 |  | 
|  | 986 | async_cow->work.func = async_cow_start; | 
|  | 987 | async_cow->work.ordered_func = async_cow_submit; | 
|  | 988 | async_cow->work.ordered_free = async_cow_free; | 
|  | 989 | async_cow->work.flags = 0; | 
|  | 990 |  | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 991 | nr_pages = (cur_end - start + PAGE_CACHE_SIZE) >> | 
|  | 992 | PAGE_CACHE_SHIFT; | 
|  | 993 | atomic_add(nr_pages, &root->fs_info->async_delalloc_pages); | 
|  | 994 |  | 
|  | 995 | btrfs_queue_worker(&root->fs_info->delalloc_workers, | 
|  | 996 | &async_cow->work); | 
|  | 997 |  | 
|  | 998 | if (atomic_read(&root->fs_info->async_delalloc_pages) > limit) { | 
|  | 999 | wait_event(root->fs_info->async_submit_wait, | 
|  | 1000 | (atomic_read(&root->fs_info->async_delalloc_pages) < | 
|  | 1001 | limit)); | 
|  | 1002 | } | 
|  | 1003 |  | 
| Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1004 | while (atomic_read(&root->fs_info->async_submit_draining) && | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 1005 | atomic_read(&root->fs_info->async_delalloc_pages)) { | 
|  | 1006 | wait_event(root->fs_info->async_submit_wait, | 
|  | 1007 | (atomic_read(&root->fs_info->async_delalloc_pages) == | 
|  | 1008 | 0)); | 
|  | 1009 | } | 
|  | 1010 |  | 
|  | 1011 | *nr_written += nr_pages; | 
|  | 1012 | start = cur_end + 1; | 
|  | 1013 | } | 
|  | 1014 | *page_started = 1; | 
|  | 1015 | return 0; | 
| Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 1016 | } | 
|  | 1017 |  | 
| Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1018 | static noinline int csum_exist_in_range(struct btrfs_root *root, | 
| Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 1019 | u64 bytenr, u64 num_bytes) | 
|  | 1020 | { | 
|  | 1021 | int ret; | 
|  | 1022 | struct btrfs_ordered_sum *sums; | 
|  | 1023 | LIST_HEAD(list); | 
|  | 1024 |  | 
| Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 1025 | ret = btrfs_lookup_csums_range(root->fs_info->csum_root, bytenr, | 
| Arne Jansen | a2de733 | 2011-03-08 14:14:00 +0100 | [diff] [blame] | 1026 | bytenr + num_bytes - 1, &list, 0); | 
| Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 1027 | if (ret == 0 && list_empty(&list)) | 
|  | 1028 | return 0; | 
|  | 1029 |  | 
|  | 1030 | while (!list_empty(&list)) { | 
|  | 1031 | sums = list_entry(list.next, struct btrfs_ordered_sum, list); | 
|  | 1032 | list_del(&sums->list); | 
|  | 1033 | kfree(sums); | 
|  | 1034 | } | 
|  | 1035 | return 1; | 
|  | 1036 | } | 
|  | 1037 |  | 
| Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 1038 | /* | 
|  | 1039 | * when nowcow writeback call back.  This checks for snapshots or COW copies | 
|  | 1040 | * of the extents that exist in the file, and COWs the file as required. | 
|  | 1041 | * | 
|  | 1042 | * If no cow copies or snapshots exist, we write directly to the existing | 
|  | 1043 | * blocks on disk | 
|  | 1044 | */ | 
| Chris Mason | 7f366cf | 2009-03-12 20:12:45 -0400 | [diff] [blame] | 1045 | static noinline int run_delalloc_nocow(struct inode *inode, | 
|  | 1046 | struct page *locked_page, | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 1047 | u64 start, u64 end, int *page_started, int force, | 
|  | 1048 | unsigned long *nr_written) | 
| Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 1049 | { | 
| Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 1050 | struct btrfs_root *root = BTRFS_I(inode)->root; | 
| Yan Zheng | 7ea394f | 2008-08-05 13:05:02 -0400 | [diff] [blame] | 1051 | struct btrfs_trans_handle *trans; | 
| Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 1052 | struct extent_buffer *leaf; | 
| Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 1053 | struct btrfs_path *path; | 
| Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1054 | struct btrfs_file_extent_item *fi; | 
| Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 1055 | struct btrfs_key found_key; | 
| Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1056 | u64 cow_start; | 
|  | 1057 | u64 cur_offset; | 
|  | 1058 | u64 extent_end; | 
| Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1059 | u64 extent_offset; | 
| Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1060 | u64 disk_bytenr; | 
|  | 1061 | u64 num_bytes; | 
|  | 1062 | int extent_type; | 
|  | 1063 | int ret; | 
| Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1064 | int type; | 
| Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1065 | int nocow; | 
|  | 1066 | int check_prev = 1; | 
| Li Zefan | 82d5902 | 2011-04-20 10:33:24 +0800 | [diff] [blame] | 1067 | bool nolock; | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 1068 | u64 ino = btrfs_ino(inode); | 
| Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 1069 |  | 
|  | 1070 | path = btrfs_alloc_path(); | 
| Mark Fasheh | d8926bb | 2011-07-13 10:38:47 -0700 | [diff] [blame] | 1071 | if (!path) | 
|  | 1072 | return -ENOMEM; | 
| Li Zefan | 82d5902 | 2011-04-20 10:33:24 +0800 | [diff] [blame] | 1073 |  | 
| Chris Mason | 2cf8572 | 2011-07-26 15:35:09 -0400 | [diff] [blame] | 1074 | nolock = btrfs_is_free_space_inode(root, inode); | 
| Li Zefan | 82d5902 | 2011-04-20 10:33:24 +0800 | [diff] [blame] | 1075 |  | 
|  | 1076 | if (nolock) | 
| Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 1077 | trans = btrfs_join_transaction_nolock(root); | 
| Li Zefan | 82d5902 | 2011-04-20 10:33:24 +0800 | [diff] [blame] | 1078 | else | 
| Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 1079 | trans = btrfs_join_transaction(root); | 
| Chris Mason | ff5714c | 2011-05-28 07:00:39 -0400 | [diff] [blame] | 1080 |  | 
| Tsutomu Itoh | 3612b49 | 2011-01-25 02:51:38 +0000 | [diff] [blame] | 1081 | BUG_ON(IS_ERR(trans)); | 
| Josef Bacik | 74b2107 | 2011-04-13 12:02:53 -0400 | [diff] [blame] | 1082 | trans->block_rsv = &root->fs_info->delalloc_block_rsv; | 
| Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 1083 |  | 
| Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1084 | cow_start = (u64)-1; | 
|  | 1085 | cur_offset = start; | 
|  | 1086 | while (1) { | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 1087 | ret = btrfs_lookup_file_extent(trans, root, path, ino, | 
| Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1088 | cur_offset, 0); | 
|  | 1089 | BUG_ON(ret < 0); | 
|  | 1090 | if (ret > 0 && path->slots[0] > 0 && check_prev) { | 
|  | 1091 | leaf = path->nodes[0]; | 
|  | 1092 | btrfs_item_key_to_cpu(leaf, &found_key, | 
|  | 1093 | path->slots[0] - 1); | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 1094 | if (found_key.objectid == ino && | 
| Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1095 | found_key.type == BTRFS_EXTENT_DATA_KEY) | 
|  | 1096 | path->slots[0]--; | 
|  | 1097 | } | 
|  | 1098 | check_prev = 0; | 
|  | 1099 | next_slot: | 
|  | 1100 | leaf = path->nodes[0]; | 
|  | 1101 | if (path->slots[0] >= btrfs_header_nritems(leaf)) { | 
|  | 1102 | ret = btrfs_next_leaf(root, path); | 
|  | 1103 | if (ret < 0) | 
|  | 1104 | BUG_ON(1); | 
|  | 1105 | if (ret > 0) | 
|  | 1106 | break; | 
|  | 1107 | leaf = path->nodes[0]; | 
|  | 1108 | } | 
| Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 1109 |  | 
| Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1110 | nocow = 0; | 
|  | 1111 | disk_bytenr = 0; | 
| Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 1112 | num_bytes = 0; | 
| Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1113 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); | 
| Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 1114 |  | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 1115 | if (found_key.objectid > ino || | 
| Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1116 | found_key.type > BTRFS_EXTENT_DATA_KEY || | 
|  | 1117 | found_key.offset > end) | 
|  | 1118 | break; | 
| Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 1119 |  | 
| Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1120 | if (found_key.offset > cur_offset) { | 
|  | 1121 | extent_end = found_key.offset; | 
| Chris Mason | e9061e2 | 2009-10-09 09:57:45 -0400 | [diff] [blame] | 1122 | extent_type = 0; | 
| Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1123 | goto out_check; | 
|  | 1124 | } | 
| Chris Mason | c31f883 | 2008-01-08 15:46:31 -0500 | [diff] [blame] | 1125 |  | 
| Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1126 | fi = btrfs_item_ptr(leaf, path->slots[0], | 
|  | 1127 | struct btrfs_file_extent_item); | 
|  | 1128 | extent_type = btrfs_file_extent_type(leaf, fi); | 
| Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 1129 |  | 
| Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1130 | if (extent_type == BTRFS_FILE_EXTENT_REG || | 
|  | 1131 | extent_type == BTRFS_FILE_EXTENT_PREALLOC) { | 
| Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1132 | disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi); | 
| Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1133 | extent_offset = btrfs_file_extent_offset(leaf, fi); | 
| Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1134 | extent_end = found_key.offset + | 
|  | 1135 | btrfs_file_extent_num_bytes(leaf, fi); | 
|  | 1136 | if (extent_end <= start) { | 
|  | 1137 | path->slots[0]++; | 
|  | 1138 | goto next_slot; | 
|  | 1139 | } | 
| Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 1140 | if (disk_bytenr == 0) | 
|  | 1141 | goto out_check; | 
| Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1142 | if (btrfs_file_extent_compression(leaf, fi) || | 
|  | 1143 | btrfs_file_extent_encryption(leaf, fi) || | 
|  | 1144 | btrfs_file_extent_other_encoding(leaf, fi)) | 
|  | 1145 | goto out_check; | 
| Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1146 | if (extent_type == BTRFS_FILE_EXTENT_REG && !force) | 
|  | 1147 | goto out_check; | 
| Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 1148 | if (btrfs_extent_readonly(root, disk_bytenr)) | 
| Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1149 | goto out_check; | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 1150 | if (btrfs_cross_ref_exist(trans, root, ino, | 
| Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1151 | found_key.offset - | 
|  | 1152 | extent_offset, disk_bytenr)) | 
| Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 1153 | goto out_check; | 
| Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1154 | disk_bytenr += extent_offset; | 
| Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 1155 | disk_bytenr += cur_offset - found_key.offset; | 
|  | 1156 | num_bytes = min(end + 1, extent_end) - cur_offset; | 
|  | 1157 | /* | 
|  | 1158 | * force cow if csum exists in the range. | 
|  | 1159 | * this ensure that csum for a given extent are | 
|  | 1160 | * either valid or do not exist. | 
|  | 1161 | */ | 
|  | 1162 | if (csum_exist_in_range(root, disk_bytenr, num_bytes)) | 
|  | 1163 | goto out_check; | 
| Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1164 | nocow = 1; | 
|  | 1165 | } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) { | 
|  | 1166 | extent_end = found_key.offset + | 
|  | 1167 | btrfs_file_extent_inline_len(leaf, fi); | 
|  | 1168 | extent_end = ALIGN(extent_end, root->sectorsize); | 
|  | 1169 | } else { | 
|  | 1170 | BUG_ON(1); | 
|  | 1171 | } | 
|  | 1172 | out_check: | 
|  | 1173 | if (extent_end <= start) { | 
|  | 1174 | path->slots[0]++; | 
|  | 1175 | goto next_slot; | 
|  | 1176 | } | 
|  | 1177 | if (!nocow) { | 
|  | 1178 | if (cow_start == (u64)-1) | 
|  | 1179 | cow_start = cur_offset; | 
|  | 1180 | cur_offset = extent_end; | 
|  | 1181 | if (cur_offset > end) | 
|  | 1182 | break; | 
|  | 1183 | path->slots[0]++; | 
|  | 1184 | goto next_slot; | 
| Yan Zheng | 7ea394f | 2008-08-05 13:05:02 -0400 | [diff] [blame] | 1185 | } | 
| Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 1186 |  | 
| David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1187 | btrfs_release_path(path); | 
| Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1188 | if (cow_start != (u64)-1) { | 
|  | 1189 | ret = cow_file_range(inode, locked_page, cow_start, | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 1190 | found_key.offset - 1, page_started, | 
|  | 1191 | nr_written, 1); | 
| Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1192 | BUG_ON(ret); | 
|  | 1193 | cow_start = (u64)-1; | 
| Yan Zheng | 7ea394f | 2008-08-05 13:05:02 -0400 | [diff] [blame] | 1194 | } | 
| Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1195 |  | 
| Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1196 | if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) { | 
|  | 1197 | struct extent_map *em; | 
|  | 1198 | struct extent_map_tree *em_tree; | 
|  | 1199 | em_tree = &BTRFS_I(inode)->extent_tree; | 
| David Sterba | 172ddd6 | 2011-04-21 00:48:27 +0200 | [diff] [blame] | 1200 | em = alloc_extent_map(); | 
| Tsutomu Itoh | c26a920 | 2011-02-14 00:45:29 +0000 | [diff] [blame] | 1201 | BUG_ON(!em); | 
| Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1202 | em->start = cur_offset; | 
| Chris Mason | 445a694 | 2008-11-10 11:53:33 -0500 | [diff] [blame] | 1203 | em->orig_start = em->start; | 
| Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1204 | em->len = num_bytes; | 
|  | 1205 | em->block_len = num_bytes; | 
|  | 1206 | em->block_start = disk_bytenr; | 
|  | 1207 | em->bdev = root->fs_info->fs_devices->latest_bdev; | 
|  | 1208 | set_bit(EXTENT_FLAG_PINNED, &em->flags); | 
|  | 1209 | while (1) { | 
| Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 1210 | write_lock(&em_tree->lock); | 
| Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1211 | ret = add_extent_mapping(em_tree, em); | 
| Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 1212 | write_unlock(&em_tree->lock); | 
| Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1213 | if (ret != -EEXIST) { | 
|  | 1214 | free_extent_map(em); | 
|  | 1215 | break; | 
|  | 1216 | } | 
|  | 1217 | btrfs_drop_extent_cache(inode, em->start, | 
|  | 1218 | em->start + em->len - 1, 0); | 
|  | 1219 | } | 
|  | 1220 | type = BTRFS_ORDERED_PREALLOC; | 
|  | 1221 | } else { | 
|  | 1222 | type = BTRFS_ORDERED_NOCOW; | 
|  | 1223 | } | 
| Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1224 |  | 
|  | 1225 | ret = btrfs_add_ordered_extent(inode, cur_offset, disk_bytenr, | 
| Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1226 | num_bytes, num_bytes, type); | 
|  | 1227 | BUG_ON(ret); | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 1228 |  | 
| Yan, Zheng | efa5646 | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 1229 | if (root->root_key.objectid == | 
|  | 1230 | BTRFS_DATA_RELOC_TREE_OBJECTID) { | 
|  | 1231 | ret = btrfs_reloc_clone_csums(inode, cur_offset, | 
|  | 1232 | num_bytes); | 
|  | 1233 | BUG_ON(ret); | 
|  | 1234 | } | 
|  | 1235 |  | 
| Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1236 | extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree, | 
| Chris Mason | a791e35 | 2009-10-08 11:27:10 -0400 | [diff] [blame] | 1237 | cur_offset, cur_offset + num_bytes - 1, | 
|  | 1238 | locked_page, EXTENT_CLEAR_UNLOCK_PAGE | | 
|  | 1239 | EXTENT_CLEAR_UNLOCK | EXTENT_CLEAR_DELALLOC | | 
|  | 1240 | EXTENT_SET_PRIVATE2); | 
| Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1241 | cur_offset = extent_end; | 
|  | 1242 | if (cur_offset > end) | 
|  | 1243 | break; | 
| Yan Zheng | 7ea394f | 2008-08-05 13:05:02 -0400 | [diff] [blame] | 1244 | } | 
| David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1245 | btrfs_release_path(path); | 
| Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1246 |  | 
|  | 1247 | if (cur_offset <= end && cow_start == (u64)-1) | 
|  | 1248 | cow_start = cur_offset; | 
|  | 1249 | if (cow_start != (u64)-1) { | 
|  | 1250 | ret = cow_file_range(inode, locked_page, cow_start, end, | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 1251 | page_started, nr_written, 1); | 
| Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1252 | BUG_ON(ret); | 
|  | 1253 | } | 
|  | 1254 |  | 
| Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 1255 | if (nolock) { | 
|  | 1256 | ret = btrfs_end_transaction_nolock(trans, root); | 
|  | 1257 | BUG_ON(ret); | 
|  | 1258 | } else { | 
|  | 1259 | ret = btrfs_end_transaction(trans, root); | 
|  | 1260 | BUG_ON(ret); | 
|  | 1261 | } | 
| Yan Zheng | 7ea394f | 2008-08-05 13:05:02 -0400 | [diff] [blame] | 1262 | btrfs_free_path(path); | 
| Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1263 | return 0; | 
| Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 1264 | } | 
|  | 1265 |  | 
| Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 1266 | /* | 
|  | 1267 | * extent_io.c call back to do delayed allocation processing | 
|  | 1268 | */ | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 1269 | static int run_delalloc_range(struct inode *inode, struct page *locked_page, | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 1270 | u64 start, u64 end, int *page_started, | 
|  | 1271 | unsigned long *nr_written) | 
| Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 1272 | { | 
| Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 1273 | int ret; | 
| Chris Mason | 7f366cf | 2009-03-12 20:12:45 -0400 | [diff] [blame] | 1274 | struct btrfs_root *root = BTRFS_I(inode)->root; | 
| Chris Mason | a213501 | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 1275 |  | 
| Christoph Hellwig | 6cbff00 | 2009-04-17 10:37:41 +0200 | [diff] [blame] | 1276 | if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 1277 | ret = run_delalloc_nocow(inode, locked_page, start, end, | 
| Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1278 | page_started, 1, nr_written); | 
| Christoph Hellwig | 6cbff00 | 2009-04-17 10:37:41 +0200 | [diff] [blame] | 1279 | else if (BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC) | 
| Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1280 | ret = run_delalloc_nocow(inode, locked_page, start, end, | 
| Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1281 | page_started, 0, nr_written); | 
| Chris Mason | 1e701a3 | 2010-03-11 09:42:04 -0500 | [diff] [blame] | 1282 | else if (!btrfs_test_opt(root, COMPRESS) && | 
| Liu Bo | 75e7cb7 | 2011-03-22 10:12:20 +0000 | [diff] [blame] | 1283 | !(BTRFS_I(inode)->force_compress) && | 
|  | 1284 | !(BTRFS_I(inode)->flags & BTRFS_INODE_COMPRESS)) | 
| Chris Mason | 7f366cf | 2009-03-12 20:12:45 -0400 | [diff] [blame] | 1285 | ret = cow_file_range(inode, locked_page, start, end, | 
|  | 1286 | page_started, nr_written, 1); | 
| Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 1287 | else | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 1288 | ret = cow_file_range_async(inode, locked_page, start, end, | 
| Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1289 | page_started, nr_written); | 
| Chris Mason | b888db2 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 1290 | return ret; | 
|  | 1291 | } | 
|  | 1292 |  | 
| Jeff Mahoney | 1bf8504 | 2011-07-21 16:56:09 +0000 | [diff] [blame] | 1293 | static void btrfs_split_extent_hook(struct inode *inode, | 
|  | 1294 | struct extent_state *orig, u64 split) | 
| Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 1295 | { | 
| Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 1296 | /* not delalloc, ignore it */ | 
| Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 1297 | if (!(orig->state & EXTENT_DELALLOC)) | 
| Jeff Mahoney | 1bf8504 | 2011-07-21 16:56:09 +0000 | [diff] [blame] | 1298 | return; | 
| Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 1299 |  | 
| Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 1300 | spin_lock(&BTRFS_I(inode)->lock); | 
|  | 1301 | BTRFS_I(inode)->outstanding_extents++; | 
|  | 1302 | spin_unlock(&BTRFS_I(inode)->lock); | 
| Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 1303 | } | 
|  | 1304 |  | 
|  | 1305 | /* | 
|  | 1306 | * extent_io.c merge_extent_hook, used to track merged delayed allocation | 
|  | 1307 | * extents so we can keep track of new extents that are just merged onto old | 
|  | 1308 | * extents, such as when we are doing sequential writes, so we can properly | 
|  | 1309 | * account for the metadata space we'll need. | 
|  | 1310 | */ | 
| Jeff Mahoney | 1bf8504 | 2011-07-21 16:56:09 +0000 | [diff] [blame] | 1311 | static void btrfs_merge_extent_hook(struct inode *inode, | 
|  | 1312 | struct extent_state *new, | 
|  | 1313 | struct extent_state *other) | 
| Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 1314 | { | 
| Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 1315 | /* not delalloc, ignore it */ | 
|  | 1316 | if (!(other->state & EXTENT_DELALLOC)) | 
| Jeff Mahoney | 1bf8504 | 2011-07-21 16:56:09 +0000 | [diff] [blame] | 1317 | return; | 
| Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 1318 |  | 
| Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 1319 | spin_lock(&BTRFS_I(inode)->lock); | 
|  | 1320 | BTRFS_I(inode)->outstanding_extents--; | 
|  | 1321 | spin_unlock(&BTRFS_I(inode)->lock); | 
| Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 1322 | } | 
|  | 1323 |  | 
| Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 1324 | /* | 
|  | 1325 | * extent_io.c set_bit_hook, used to track delayed allocation | 
|  | 1326 | * bytes in this file, and to maintain the list of inodes that | 
|  | 1327 | * have pending delalloc work to be done. | 
|  | 1328 | */ | 
| Jeff Mahoney | 1bf8504 | 2011-07-21 16:56:09 +0000 | [diff] [blame] | 1329 | static void btrfs_set_bit_hook(struct inode *inode, | 
|  | 1330 | struct extent_state *state, int *bits) | 
| Chris Mason | 291d673 | 2008-01-29 15:55:23 -0500 | [diff] [blame] | 1331 | { | 
| Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 1332 |  | 
| Chris Mason | 75eff68 | 2008-12-15 15:54:40 -0500 | [diff] [blame] | 1333 | /* | 
|  | 1334 | * set_bit and clear bit hooks normally require _irqsave/restore | 
| Sergei Trofimovich | 27160b6 | 2011-05-20 20:20:32 +0000 | [diff] [blame] | 1335 | * but in this case, we are only testing for the DELALLOC | 
| Chris Mason | 75eff68 | 2008-12-15 15:54:40 -0500 | [diff] [blame] | 1336 | * bit, which is only set or cleared with irqs on | 
|  | 1337 | */ | 
| Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 1338 | if (!(state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) { | 
| Chris Mason | 291d673 | 2008-01-29 15:55:23 -0500 | [diff] [blame] | 1339 | struct btrfs_root *root = BTRFS_I(inode)->root; | 
| Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 1340 | u64 len = state->end + 1 - state->start; | 
| Chris Mason | 2cf8572 | 2011-07-26 15:35:09 -0400 | [diff] [blame] | 1341 | bool do_list = !btrfs_is_free_space_inode(root, inode); | 
| Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 1342 |  | 
| Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 1343 | if (*bits & EXTENT_FIRST_DELALLOC) { | 
| Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 1344 | *bits &= ~EXTENT_FIRST_DELALLOC; | 
| Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 1345 | } else { | 
|  | 1346 | spin_lock(&BTRFS_I(inode)->lock); | 
|  | 1347 | BTRFS_I(inode)->outstanding_extents++; | 
|  | 1348 | spin_unlock(&BTRFS_I(inode)->lock); | 
|  | 1349 | } | 
| Josef Bacik | 287a0ab | 2010-03-19 18:07:23 +0000 | [diff] [blame] | 1350 |  | 
| Chris Mason | 75eff68 | 2008-12-15 15:54:40 -0500 | [diff] [blame] | 1351 | spin_lock(&root->fs_info->delalloc_lock); | 
| Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 1352 | BTRFS_I(inode)->delalloc_bytes += len; | 
|  | 1353 | root->fs_info->delalloc_bytes += len; | 
| Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 1354 | if (do_list && list_empty(&BTRFS_I(inode)->delalloc_inodes)) { | 
| Chris Mason | ea8c281 | 2008-08-04 23:17:27 -0400 | [diff] [blame] | 1355 | list_add_tail(&BTRFS_I(inode)->delalloc_inodes, | 
|  | 1356 | &root->fs_info->delalloc_inodes); | 
|  | 1357 | } | 
| Chris Mason | 75eff68 | 2008-12-15 15:54:40 -0500 | [diff] [blame] | 1358 | spin_unlock(&root->fs_info->delalloc_lock); | 
| Chris Mason | 291d673 | 2008-01-29 15:55:23 -0500 | [diff] [blame] | 1359 | } | 
| Chris Mason | 291d673 | 2008-01-29 15:55:23 -0500 | [diff] [blame] | 1360 | } | 
|  | 1361 |  | 
| Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 1362 | /* | 
|  | 1363 | * extent_io.c clear_bit_hook, see set_bit_hook for why | 
|  | 1364 | */ | 
| Jeff Mahoney | 1bf8504 | 2011-07-21 16:56:09 +0000 | [diff] [blame] | 1365 | static void btrfs_clear_bit_hook(struct inode *inode, | 
|  | 1366 | struct extent_state *state, int *bits) | 
| Chris Mason | 291d673 | 2008-01-29 15:55:23 -0500 | [diff] [blame] | 1367 | { | 
| Chris Mason | 75eff68 | 2008-12-15 15:54:40 -0500 | [diff] [blame] | 1368 | /* | 
|  | 1369 | * set_bit and clear bit hooks normally require _irqsave/restore | 
| Sergei Trofimovich | 27160b6 | 2011-05-20 20:20:32 +0000 | [diff] [blame] | 1370 | * but in this case, we are only testing for the DELALLOC | 
| Chris Mason | 75eff68 | 2008-12-15 15:54:40 -0500 | [diff] [blame] | 1371 | * bit, which is only set or cleared with irqs on | 
|  | 1372 | */ | 
| Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 1373 | if ((state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) { | 
| Chris Mason | 291d673 | 2008-01-29 15:55:23 -0500 | [diff] [blame] | 1374 | struct btrfs_root *root = BTRFS_I(inode)->root; | 
| Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 1375 | u64 len = state->end + 1 - state->start; | 
| Chris Mason | 2cf8572 | 2011-07-26 15:35:09 -0400 | [diff] [blame] | 1376 | bool do_list = !btrfs_is_free_space_inode(root, inode); | 
| Chris Mason | bcbfce8 | 2008-04-22 13:26:47 -0400 | [diff] [blame] | 1377 |  | 
| Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 1378 | if (*bits & EXTENT_FIRST_DELALLOC) { | 
| Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 1379 | *bits &= ~EXTENT_FIRST_DELALLOC; | 
| Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 1380 | } else if (!(*bits & EXTENT_DO_ACCOUNTING)) { | 
|  | 1381 | spin_lock(&BTRFS_I(inode)->lock); | 
|  | 1382 | BTRFS_I(inode)->outstanding_extents--; | 
|  | 1383 | spin_unlock(&BTRFS_I(inode)->lock); | 
|  | 1384 | } | 
| Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 1385 |  | 
|  | 1386 | if (*bits & EXTENT_DO_ACCOUNTING) | 
|  | 1387 | btrfs_delalloc_release_metadata(inode, len); | 
|  | 1388 |  | 
| Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 1389 | if (root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID | 
|  | 1390 | && do_list) | 
| Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 1391 | btrfs_free_reserved_data_space(inode, len); | 
| Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 1392 |  | 
| Chris Mason | 75eff68 | 2008-12-15 15:54:40 -0500 | [diff] [blame] | 1393 | spin_lock(&root->fs_info->delalloc_lock); | 
| Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 1394 | root->fs_info->delalloc_bytes -= len; | 
|  | 1395 | BTRFS_I(inode)->delalloc_bytes -= len; | 
|  | 1396 |  | 
| Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 1397 | if (do_list && BTRFS_I(inode)->delalloc_bytes == 0 && | 
| Chris Mason | ea8c281 | 2008-08-04 23:17:27 -0400 | [diff] [blame] | 1398 | !list_empty(&BTRFS_I(inode)->delalloc_inodes)) { | 
|  | 1399 | list_del_init(&BTRFS_I(inode)->delalloc_inodes); | 
|  | 1400 | } | 
| Chris Mason | 75eff68 | 2008-12-15 15:54:40 -0500 | [diff] [blame] | 1401 | spin_unlock(&root->fs_info->delalloc_lock); | 
| Chris Mason | 291d673 | 2008-01-29 15:55:23 -0500 | [diff] [blame] | 1402 | } | 
| Chris Mason | 291d673 | 2008-01-29 15:55:23 -0500 | [diff] [blame] | 1403 | } | 
|  | 1404 |  | 
| Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 1405 | /* | 
|  | 1406 | * extent_io.c merge_bio_hook, this must check the chunk tree to make sure | 
|  | 1407 | * we don't create bios that span stripes or chunks | 
|  | 1408 | */ | 
| Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1409 | int btrfs_merge_bio_hook(struct page *page, unsigned long offset, | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 1410 | size_t size, struct bio *bio, | 
|  | 1411 | unsigned long bio_flags) | 
| Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1412 | { | 
|  | 1413 | struct btrfs_root *root = BTRFS_I(page->mapping->host)->root; | 
|  | 1414 | struct btrfs_mapping_tree *map_tree; | 
| Chris Mason | a62b940 | 2008-10-03 16:31:08 -0400 | [diff] [blame] | 1415 | u64 logical = (u64)bio->bi_sector << 9; | 
| Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1416 | u64 length = 0; | 
|  | 1417 | u64 map_length; | 
| Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1418 | int ret; | 
|  | 1419 |  | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 1420 | if (bio_flags & EXTENT_BIO_COMPRESSED) | 
|  | 1421 | return 0; | 
|  | 1422 |  | 
| Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 1423 | length = bio->bi_size; | 
| Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1424 | map_tree = &root->fs_info->mapping_tree; | 
|  | 1425 | map_length = length; | 
| Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 1426 | ret = btrfs_map_block(map_tree, READ, logical, | 
| Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 1427 | &map_length, NULL, 0); | 
| Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 1428 |  | 
| Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1429 | if (map_length < length + size) | 
| Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1430 | return 1; | 
| Andi Kleen | 411fc6b | 2010-10-29 15:14:31 -0400 | [diff] [blame] | 1431 | return ret; | 
| Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1432 | } | 
|  | 1433 |  | 
| Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 1434 | /* | 
|  | 1435 | * in order to insert checksums into the metadata in large chunks, | 
|  | 1436 | * we wait until bio submission time.   All the pages in the bio are | 
|  | 1437 | * checksummed and sums are attached onto the ordered extent record. | 
|  | 1438 | * | 
|  | 1439 | * At IO completion time the cums attached on the ordered extent record | 
|  | 1440 | * are inserted into the btree | 
|  | 1441 | */ | 
| Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1442 | static int __btrfs_submit_bio_start(struct inode *inode, int rw, | 
|  | 1443 | struct bio *bio, int mirror_num, | 
| Chris Mason | eaf25d9 | 2010-05-25 09:48:28 -0400 | [diff] [blame] | 1444 | unsigned long bio_flags, | 
|  | 1445 | u64 bio_offset) | 
| Chris Mason | 065631f | 2008-02-20 12:07:25 -0500 | [diff] [blame] | 1446 | { | 
| Chris Mason | 065631f | 2008-02-20 12:07:25 -0500 | [diff] [blame] | 1447 | struct btrfs_root *root = BTRFS_I(inode)->root; | 
| Chris Mason | 065631f | 2008-02-20 12:07:25 -0500 | [diff] [blame] | 1448 | int ret = 0; | 
| Chris Mason | e015640 | 2008-04-16 11:15:20 -0400 | [diff] [blame] | 1449 |  | 
| Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 1450 | ret = btrfs_csum_one_bio(root, inode, bio, 0, 0); | 
| Chris Mason | 44b8bd7 | 2008-04-16 11:14:51 -0400 | [diff] [blame] | 1451 | BUG_ON(ret); | 
| Chris Mason | 4a69a41 | 2008-11-06 22:03:00 -0500 | [diff] [blame] | 1452 | return 0; | 
|  | 1453 | } | 
| Chris Mason | e015640 | 2008-04-16 11:15:20 -0400 | [diff] [blame] | 1454 |  | 
| Chris Mason | 4a69a41 | 2008-11-06 22:03:00 -0500 | [diff] [blame] | 1455 | /* | 
|  | 1456 | * in order to insert checksums into the metadata in large chunks, | 
|  | 1457 | * we wait until bio submission time.   All the pages in the bio are | 
|  | 1458 | * checksummed and sums are attached onto the ordered extent record. | 
|  | 1459 | * | 
|  | 1460 | * At IO completion time the cums attached on the ordered extent record | 
|  | 1461 | * are inserted into the btree | 
|  | 1462 | */ | 
| Christoph Hellwig | b295086 | 2008-12-02 09:54:17 -0500 | [diff] [blame] | 1463 | static int __btrfs_submit_bio_done(struct inode *inode, int rw, struct bio *bio, | 
| Chris Mason | eaf25d9 | 2010-05-25 09:48:28 -0400 | [diff] [blame] | 1464 | int mirror_num, unsigned long bio_flags, | 
|  | 1465 | u64 bio_offset) | 
| Chris Mason | 4a69a41 | 2008-11-06 22:03:00 -0500 | [diff] [blame] | 1466 | { | 
|  | 1467 | struct btrfs_root *root = BTRFS_I(inode)->root; | 
| Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 1468 | return btrfs_map_bio(root, rw, bio, mirror_num, 1); | 
| Chris Mason | 44b8bd7 | 2008-04-16 11:14:51 -0400 | [diff] [blame] | 1469 | } | 
|  | 1470 |  | 
| Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 1471 | /* | 
| Chris Mason | cad321a | 2008-12-17 14:51:42 -0500 | [diff] [blame] | 1472 | * extent_io.c submission hook. This does the right thing for csum calculation | 
|  | 1473 | * on write, or reading the csums from the tree before a read | 
| Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 1474 | */ | 
| Christoph Hellwig | b295086 | 2008-12-02 09:54:17 -0500 | [diff] [blame] | 1475 | static int btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio, | 
| Chris Mason | eaf25d9 | 2010-05-25 09:48:28 -0400 | [diff] [blame] | 1476 | int mirror_num, unsigned long bio_flags, | 
|  | 1477 | u64 bio_offset) | 
| Chris Mason | 44b8bd7 | 2008-04-16 11:14:51 -0400 | [diff] [blame] | 1478 | { | 
|  | 1479 | struct btrfs_root *root = BTRFS_I(inode)->root; | 
|  | 1480 | int ret = 0; | 
| Chris Mason | 19b9bdb | 2008-10-30 14:23:13 -0400 | [diff] [blame] | 1481 | int skip_sum; | 
| Chris Mason | 44b8bd7 | 2008-04-16 11:14:51 -0400 | [diff] [blame] | 1482 |  | 
| Christoph Hellwig | 6cbff00 | 2009-04-17 10:37:41 +0200 | [diff] [blame] | 1483 | skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM; | 
| Chris Mason | cad321a | 2008-12-17 14:51:42 -0500 | [diff] [blame] | 1484 |  | 
| Chris Mason | 2cf8572 | 2011-07-26 15:35:09 -0400 | [diff] [blame] | 1485 | if (btrfs_is_free_space_inode(root, inode)) | 
| Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 1486 | ret = btrfs_bio_wq_end_io(root->fs_info, bio, 2); | 
|  | 1487 | else | 
|  | 1488 | ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0); | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 1489 | BUG_ON(ret); | 
| Chris Mason | 065631f | 2008-02-20 12:07:25 -0500 | [diff] [blame] | 1490 |  | 
| Christoph Hellwig | 7b6d91d | 2010-08-07 18:20:39 +0200 | [diff] [blame] | 1491 | if (!(rw & REQ_WRITE)) { | 
| Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 1492 | if (bio_flags & EXTENT_BIO_COMPRESSED) { | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 1493 | return btrfs_submit_compressed_read(inode, bio, | 
|  | 1494 | mirror_num, bio_flags); | 
| Tsutomu Itoh | c2db107 | 2011-03-01 06:48:31 +0000 | [diff] [blame] | 1495 | } else if (!skip_sum) { | 
|  | 1496 | ret = btrfs_lookup_bio_sums(root, inode, bio, NULL); | 
|  | 1497 | if (ret) | 
|  | 1498 | return ret; | 
|  | 1499 | } | 
| Chris Mason | 4d1b5fb | 2008-08-20 09:44:52 -0400 | [diff] [blame] | 1500 | goto mapit; | 
| Chris Mason | 19b9bdb | 2008-10-30 14:23:13 -0400 | [diff] [blame] | 1501 | } else if (!skip_sum) { | 
| Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 1502 | /* csum items have already been cloned */ | 
|  | 1503 | if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID) | 
|  | 1504 | goto mapit; | 
| Chris Mason | 19b9bdb | 2008-10-30 14:23:13 -0400 | [diff] [blame] | 1505 | /* we're doing a write, do the async checksumming */ | 
|  | 1506 | return btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info, | 
| Chris Mason | 44b8bd7 | 2008-04-16 11:14:51 -0400 | [diff] [blame] | 1507 | inode, rw, bio, mirror_num, | 
| Chris Mason | eaf25d9 | 2010-05-25 09:48:28 -0400 | [diff] [blame] | 1508 | bio_flags, bio_offset, | 
|  | 1509 | __btrfs_submit_bio_start, | 
| Chris Mason | 4a69a41 | 2008-11-06 22:03:00 -0500 | [diff] [blame] | 1510 | __btrfs_submit_bio_done); | 
| Chris Mason | 19b9bdb | 2008-10-30 14:23:13 -0400 | [diff] [blame] | 1511 | } | 
|  | 1512 |  | 
| Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1513 | mapit: | 
| Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 1514 | return btrfs_map_bio(root, rw, bio, mirror_num, 0); | 
| Chris Mason | 065631f | 2008-02-20 12:07:25 -0500 | [diff] [blame] | 1515 | } | 
| Chris Mason | 6885f30 | 2008-02-20 16:11:05 -0500 | [diff] [blame] | 1516 |  | 
| Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 1517 | /* | 
|  | 1518 | * given a list of ordered sums record them in the inode.  This happens | 
|  | 1519 | * at IO completion time based on sums calculated at bio submission time. | 
|  | 1520 | */ | 
| Chris Mason | ba1da2f | 2008-07-17 12:54:15 -0400 | [diff] [blame] | 1521 | static noinline int add_pending_csums(struct btrfs_trans_handle *trans, | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 1522 | struct inode *inode, u64 file_offset, | 
|  | 1523 | struct list_head *list) | 
|  | 1524 | { | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 1525 | struct btrfs_ordered_sum *sum; | 
|  | 1526 |  | 
| Qinghuang Feng | c6e3087 | 2009-01-21 10:59:08 -0500 | [diff] [blame] | 1527 | list_for_each_entry(sum, list, list) { | 
| Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 1528 | btrfs_csum_file_blocks(trans, | 
|  | 1529 | BTRFS_I(inode)->root->fs_info->csum_root, sum); | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 1530 | } | 
|  | 1531 | return 0; | 
|  | 1532 | } | 
|  | 1533 |  | 
| Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 1534 | int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end, | 
|  | 1535 | struct extent_state **cached_state) | 
| Chris Mason | ea8c281 | 2008-08-04 23:17:27 -0400 | [diff] [blame] | 1536 | { | 
| Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1537 | if ((end & (PAGE_CACHE_SIZE - 1)) == 0) | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 1538 | WARN_ON(1); | 
| Chris Mason | ea8c281 | 2008-08-04 23:17:27 -0400 | [diff] [blame] | 1539 | return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end, | 
| Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 1540 | cached_state, GFP_NOFS); | 
| Chris Mason | ea8c281 | 2008-08-04 23:17:27 -0400 | [diff] [blame] | 1541 | } | 
|  | 1542 |  | 
| Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 1543 | /* see btrfs_writepage_start_hook for details on why this is required */ | 
| Chris Mason | 247e743 | 2008-07-17 12:53:51 -0400 | [diff] [blame] | 1544 | struct btrfs_writepage_fixup { | 
|  | 1545 | struct page *page; | 
|  | 1546 | struct btrfs_work work; | 
|  | 1547 | }; | 
|  | 1548 |  | 
| Christoph Hellwig | b295086 | 2008-12-02 09:54:17 -0500 | [diff] [blame] | 1549 | static void btrfs_writepage_fixup_worker(struct btrfs_work *work) | 
| Chris Mason | 247e743 | 2008-07-17 12:53:51 -0400 | [diff] [blame] | 1550 | { | 
|  | 1551 | struct btrfs_writepage_fixup *fixup; | 
|  | 1552 | struct btrfs_ordered_extent *ordered; | 
| Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 1553 | struct extent_state *cached_state = NULL; | 
| Chris Mason | 247e743 | 2008-07-17 12:53:51 -0400 | [diff] [blame] | 1554 | struct page *page; | 
|  | 1555 | struct inode *inode; | 
|  | 1556 | u64 page_start; | 
|  | 1557 | u64 page_end; | 
|  | 1558 |  | 
|  | 1559 | fixup = container_of(work, struct btrfs_writepage_fixup, work); | 
|  | 1560 | page = fixup->page; | 
| Chris Mason | 4a09675 | 2008-07-21 10:29:44 -0400 | [diff] [blame] | 1561 | again: | 
| Chris Mason | 247e743 | 2008-07-17 12:53:51 -0400 | [diff] [blame] | 1562 | lock_page(page); | 
|  | 1563 | if (!page->mapping || !PageDirty(page) || !PageChecked(page)) { | 
|  | 1564 | ClearPageChecked(page); | 
|  | 1565 | goto out_page; | 
|  | 1566 | } | 
|  | 1567 |  | 
|  | 1568 | inode = page->mapping->host; | 
|  | 1569 | page_start = page_offset(page); | 
|  | 1570 | page_end = page_offset(page) + PAGE_CACHE_SIZE - 1; | 
|  | 1571 |  | 
| Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 1572 | lock_extent_bits(&BTRFS_I(inode)->io_tree, page_start, page_end, 0, | 
|  | 1573 | &cached_state, GFP_NOFS); | 
| Chris Mason | 4a09675 | 2008-07-21 10:29:44 -0400 | [diff] [blame] | 1574 |  | 
|  | 1575 | /* already ordered? We're done */ | 
| Chris Mason | 8b62b72 | 2009-09-02 16:53:46 -0400 | [diff] [blame] | 1576 | if (PagePrivate2(page)) | 
| Chris Mason | 247e743 | 2008-07-17 12:53:51 -0400 | [diff] [blame] | 1577 | goto out; | 
| Chris Mason | 4a09675 | 2008-07-21 10:29:44 -0400 | [diff] [blame] | 1578 |  | 
|  | 1579 | ordered = btrfs_lookup_ordered_extent(inode, page_start); | 
|  | 1580 | if (ordered) { | 
| Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 1581 | unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start, | 
|  | 1582 | page_end, &cached_state, GFP_NOFS); | 
| Chris Mason | 4a09675 | 2008-07-21 10:29:44 -0400 | [diff] [blame] | 1583 | unlock_page(page); | 
|  | 1584 | btrfs_start_ordered_extent(inode, ordered, 1); | 
|  | 1585 | goto again; | 
|  | 1586 | } | 
| Chris Mason | 247e743 | 2008-07-17 12:53:51 -0400 | [diff] [blame] | 1587 |  | 
| Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 1588 | BUG(); | 
| Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 1589 | btrfs_set_extent_delalloc(inode, page_start, page_end, &cached_state); | 
| Chris Mason | 247e743 | 2008-07-17 12:53:51 -0400 | [diff] [blame] | 1590 | ClearPageChecked(page); | 
|  | 1591 | out: | 
| Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 1592 | unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start, page_end, | 
|  | 1593 | &cached_state, GFP_NOFS); | 
| Chris Mason | 247e743 | 2008-07-17 12:53:51 -0400 | [diff] [blame] | 1594 | out_page: | 
|  | 1595 | unlock_page(page); | 
|  | 1596 | page_cache_release(page); | 
| Miao Xie | b897abe | 2011-01-26 16:19:22 +0800 | [diff] [blame] | 1597 | kfree(fixup); | 
| Chris Mason | 247e743 | 2008-07-17 12:53:51 -0400 | [diff] [blame] | 1598 | } | 
|  | 1599 |  | 
|  | 1600 | /* | 
|  | 1601 | * There are a few paths in the higher layers of the kernel that directly | 
|  | 1602 | * set the page dirty bit without asking the filesystem if it is a | 
|  | 1603 | * good idea.  This causes problems because we want to make sure COW | 
|  | 1604 | * properly happens and the data=ordered rules are followed. | 
|  | 1605 | * | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 1606 | * In our case any range that doesn't have the ORDERED bit set | 
| Chris Mason | 247e743 | 2008-07-17 12:53:51 -0400 | [diff] [blame] | 1607 | * hasn't been properly setup for IO.  We kick off an async process | 
|  | 1608 | * to fix it up.  The async helper will wait for ordered extents, set | 
|  | 1609 | * the delalloc bit and make it safe to write the page. | 
|  | 1610 | */ | 
| Christoph Hellwig | b295086 | 2008-12-02 09:54:17 -0500 | [diff] [blame] | 1611 | static int btrfs_writepage_start_hook(struct page *page, u64 start, u64 end) | 
| Chris Mason | 247e743 | 2008-07-17 12:53:51 -0400 | [diff] [blame] | 1612 | { | 
|  | 1613 | struct inode *inode = page->mapping->host; | 
|  | 1614 | struct btrfs_writepage_fixup *fixup; | 
|  | 1615 | struct btrfs_root *root = BTRFS_I(inode)->root; | 
| Chris Mason | 247e743 | 2008-07-17 12:53:51 -0400 | [diff] [blame] | 1616 |  | 
| Chris Mason | 8b62b72 | 2009-09-02 16:53:46 -0400 | [diff] [blame] | 1617 | /* this page is properly in the ordered list */ | 
|  | 1618 | if (TestClearPagePrivate2(page)) | 
| Chris Mason | 247e743 | 2008-07-17 12:53:51 -0400 | [diff] [blame] | 1619 | return 0; | 
|  | 1620 |  | 
|  | 1621 | if (PageChecked(page)) | 
|  | 1622 | return -EAGAIN; | 
|  | 1623 |  | 
|  | 1624 | fixup = kzalloc(sizeof(*fixup), GFP_NOFS); | 
|  | 1625 | if (!fixup) | 
|  | 1626 | return -EAGAIN; | 
| Chris Mason | f421950 | 2008-07-22 11:18:09 -0400 | [diff] [blame] | 1627 |  | 
| Chris Mason | 247e743 | 2008-07-17 12:53:51 -0400 | [diff] [blame] | 1628 | SetPageChecked(page); | 
|  | 1629 | page_cache_get(page); | 
|  | 1630 | fixup->work.func = btrfs_writepage_fixup_worker; | 
|  | 1631 | fixup->page = page; | 
|  | 1632 | btrfs_queue_worker(&root->fs_info->fixup_workers, &fixup->work); | 
|  | 1633 | return -EAGAIN; | 
|  | 1634 | } | 
|  | 1635 |  | 
| Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1636 | static int insert_reserved_file_extent(struct btrfs_trans_handle *trans, | 
|  | 1637 | struct inode *inode, u64 file_pos, | 
|  | 1638 | u64 disk_bytenr, u64 disk_num_bytes, | 
|  | 1639 | u64 num_bytes, u64 ram_bytes, | 
|  | 1640 | u8 compression, u8 encryption, | 
|  | 1641 | u16 other_encoding, int extent_type) | 
|  | 1642 | { | 
|  | 1643 | struct btrfs_root *root = BTRFS_I(inode)->root; | 
|  | 1644 | struct btrfs_file_extent_item *fi; | 
|  | 1645 | struct btrfs_path *path; | 
|  | 1646 | struct extent_buffer *leaf; | 
|  | 1647 | struct btrfs_key ins; | 
|  | 1648 | u64 hint; | 
|  | 1649 | int ret; | 
|  | 1650 |  | 
|  | 1651 | path = btrfs_alloc_path(); | 
| Mark Fasheh | d8926bb | 2011-07-13 10:38:47 -0700 | [diff] [blame] | 1652 | if (!path) | 
|  | 1653 | return -ENOMEM; | 
| Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1654 |  | 
| Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 1655 | path->leave_spinning = 1; | 
| Chris Mason | a1ed835 | 2009-09-11 12:27:37 -0400 | [diff] [blame] | 1656 |  | 
|  | 1657 | /* | 
|  | 1658 | * we may be replacing one extent in the tree with another. | 
|  | 1659 | * The new extent is pinned in the extent map, and we don't want | 
|  | 1660 | * to drop it from the cache until it is completely in the btree. | 
|  | 1661 | * | 
|  | 1662 | * So, tell btrfs_drop_extents to leave this extent in the cache. | 
|  | 1663 | * the caller is expected to unpin it and allow it to be merged | 
|  | 1664 | * with the others. | 
|  | 1665 | */ | 
| Yan, Zheng | 920bbbf | 2009-11-12 09:34:08 +0000 | [diff] [blame] | 1666 | ret = btrfs_drop_extents(trans, inode, file_pos, file_pos + num_bytes, | 
|  | 1667 | &hint, 0); | 
| Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1668 | BUG_ON(ret); | 
|  | 1669 |  | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 1670 | ins.objectid = btrfs_ino(inode); | 
| Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1671 | ins.offset = file_pos; | 
|  | 1672 | ins.type = BTRFS_EXTENT_DATA_KEY; | 
|  | 1673 | ret = btrfs_insert_empty_item(trans, root, path, &ins, sizeof(*fi)); | 
|  | 1674 | BUG_ON(ret); | 
|  | 1675 | leaf = path->nodes[0]; | 
|  | 1676 | fi = btrfs_item_ptr(leaf, path->slots[0], | 
|  | 1677 | struct btrfs_file_extent_item); | 
|  | 1678 | btrfs_set_file_extent_generation(leaf, fi, trans->transid); | 
|  | 1679 | btrfs_set_file_extent_type(leaf, fi, extent_type); | 
|  | 1680 | btrfs_set_file_extent_disk_bytenr(leaf, fi, disk_bytenr); | 
|  | 1681 | btrfs_set_file_extent_disk_num_bytes(leaf, fi, disk_num_bytes); | 
|  | 1682 | btrfs_set_file_extent_offset(leaf, fi, 0); | 
|  | 1683 | btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes); | 
|  | 1684 | btrfs_set_file_extent_ram_bytes(leaf, fi, ram_bytes); | 
|  | 1685 | btrfs_set_file_extent_compression(leaf, fi, compression); | 
|  | 1686 | btrfs_set_file_extent_encryption(leaf, fi, encryption); | 
|  | 1687 | btrfs_set_file_extent_other_encoding(leaf, fi, other_encoding); | 
| Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 1688 |  | 
|  | 1689 | btrfs_unlock_up_safe(path, 1); | 
|  | 1690 | btrfs_set_lock_blocking(leaf); | 
|  | 1691 |  | 
| Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1692 | btrfs_mark_buffer_dirty(leaf); | 
|  | 1693 |  | 
|  | 1694 | inode_add_bytes(inode, num_bytes); | 
| Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1695 |  | 
|  | 1696 | ins.objectid = disk_bytenr; | 
|  | 1697 | ins.offset = disk_num_bytes; | 
|  | 1698 | ins.type = BTRFS_EXTENT_ITEM_KEY; | 
| Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1699 | ret = btrfs_alloc_reserved_file_extent(trans, root, | 
|  | 1700 | root->root_key.objectid, | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 1701 | btrfs_ino(inode), file_pos, &ins); | 
| Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1702 | BUG_ON(ret); | 
| Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1703 | btrfs_free_path(path); | 
| Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 1704 |  | 
| Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1705 | return 0; | 
|  | 1706 | } | 
|  | 1707 |  | 
| Chris Mason | 5d13a98 | 2009-03-13 11:41:46 -0400 | [diff] [blame] | 1708 | /* | 
|  | 1709 | * helper function for btrfs_finish_ordered_io, this | 
|  | 1710 | * just reads in some of the csum leaves to prime them into ram | 
|  | 1711 | * before we start the transaction.  It limits the amount of btree | 
|  | 1712 | * reads required while inside the transaction. | 
|  | 1713 | */ | 
| Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 1714 | /* as ordered data IO finishes, this gets called so we can finish | 
|  | 1715 | * an ordered extent if the range of bytes in the file it covers are | 
|  | 1716 | * fully written. | 
|  | 1717 | */ | 
| Chris Mason | 211f90e | 2008-07-18 11:56:15 -0400 | [diff] [blame] | 1718 | static int btrfs_finish_ordered_io(struct inode *inode, u64 start, u64 end) | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 1719 | { | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 1720 | struct btrfs_root *root = BTRFS_I(inode)->root; | 
| Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 1721 | struct btrfs_trans_handle *trans = NULL; | 
| Chris Mason | 5d13a98 | 2009-03-13 11:41:46 -0400 | [diff] [blame] | 1722 | struct btrfs_ordered_extent *ordered_extent = NULL; | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 1723 | struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree; | 
| Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 1724 | struct extent_state *cached_state = NULL; | 
| Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 1725 | int compress_type = 0; | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 1726 | int ret; | 
| Li Zefan | 82d5902 | 2011-04-20 10:33:24 +0800 | [diff] [blame] | 1727 | bool nolock; | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 1728 |  | 
| Josef Bacik | 5a1a3df | 2010-02-02 20:51:14 +0000 | [diff] [blame] | 1729 | ret = btrfs_dec_test_ordered_pending(inode, &ordered_extent, start, | 
|  | 1730 | end - start + 1); | 
| Chris Mason | ba1da2f | 2008-07-17 12:54:15 -0400 | [diff] [blame] | 1731 | if (!ret) | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 1732 | return 0; | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 1733 | BUG_ON(!ordered_extent); | 
| Josef Bacik | efd049f | 2010-02-02 20:50:10 +0000 | [diff] [blame] | 1734 |  | 
| Chris Mason | 2cf8572 | 2011-07-26 15:35:09 -0400 | [diff] [blame] | 1735 | nolock = btrfs_is_free_space_inode(root, inode); | 
| Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 1736 |  | 
| Yan, Zheng | c216775 | 2009-11-12 09:34:21 +0000 | [diff] [blame] | 1737 | if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags)) { | 
|  | 1738 | BUG_ON(!list_empty(&ordered_extent->list)); | 
|  | 1739 | ret = btrfs_ordered_update_i_size(inode, 0, ordered_extent); | 
|  | 1740 | if (!ret) { | 
| Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 1741 | if (nolock) | 
| Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 1742 | trans = btrfs_join_transaction_nolock(root); | 
| Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 1743 | else | 
| Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 1744 | trans = btrfs_join_transaction(root); | 
| Tsutomu Itoh | 3612b49 | 2011-01-25 02:51:38 +0000 | [diff] [blame] | 1745 | BUG_ON(IS_ERR(trans)); | 
| Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 1746 | trans->block_rsv = &root->fs_info->delalloc_block_rsv; | 
| Chris Mason | 2115133 | 2011-11-10 20:39:08 -0500 | [diff] [blame] | 1747 | ret = btrfs_update_inode_fallback(trans, root, inode); | 
| Yan, Zheng | c216775 | 2009-11-12 09:34:21 +0000 | [diff] [blame] | 1748 | BUG_ON(ret); | 
| Yan, Zheng | c216775 | 2009-11-12 09:34:21 +0000 | [diff] [blame] | 1749 | } | 
|  | 1750 | goto out; | 
|  | 1751 | } | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 1752 |  | 
| Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 1753 | lock_extent_bits(io_tree, ordered_extent->file_offset, | 
|  | 1754 | ordered_extent->file_offset + ordered_extent->len - 1, | 
|  | 1755 | 0, &cached_state, GFP_NOFS); | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 1756 |  | 
| Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 1757 | if (nolock) | 
| Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 1758 | trans = btrfs_join_transaction_nolock(root); | 
| Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 1759 | else | 
| Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 1760 | trans = btrfs_join_transaction(root); | 
| Tsutomu Itoh | 3612b49 | 2011-01-25 02:51:38 +0000 | [diff] [blame] | 1761 | BUG_ON(IS_ERR(trans)); | 
| Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 1762 | trans->block_rsv = &root->fs_info->delalloc_block_rsv; | 
| Yan, Zheng | c216775 | 2009-11-12 09:34:21 +0000 | [diff] [blame] | 1763 |  | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 1764 | if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags)) | 
| Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 1765 | compress_type = ordered_extent->compress_type; | 
| Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1766 | if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) { | 
| Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 1767 | BUG_ON(compress_type); | 
| Yan, Zheng | 920bbbf | 2009-11-12 09:34:08 +0000 | [diff] [blame] | 1768 | ret = btrfs_mark_extent_written(trans, inode, | 
| Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1769 | ordered_extent->file_offset, | 
|  | 1770 | ordered_extent->file_offset + | 
|  | 1771 | ordered_extent->len); | 
|  | 1772 | BUG_ON(ret); | 
|  | 1773 | } else { | 
| Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 1774 | BUG_ON(root == root->fs_info->tree_root); | 
| Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1775 | ret = insert_reserved_file_extent(trans, inode, | 
|  | 1776 | ordered_extent->file_offset, | 
|  | 1777 | ordered_extent->start, | 
|  | 1778 | ordered_extent->disk_len, | 
|  | 1779 | ordered_extent->len, | 
|  | 1780 | ordered_extent->len, | 
| Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 1781 | compress_type, 0, 0, | 
| Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1782 | BTRFS_FILE_EXTENT_REG); | 
| Chris Mason | a1ed835 | 2009-09-11 12:27:37 -0400 | [diff] [blame] | 1783 | unpin_extent_cache(&BTRFS_I(inode)->extent_tree, | 
|  | 1784 | ordered_extent->file_offset, | 
|  | 1785 | ordered_extent->len); | 
| Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1786 | BUG_ON(ret); | 
|  | 1787 | } | 
| Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 1788 | unlock_extent_cached(io_tree, ordered_extent->file_offset, | 
|  | 1789 | ordered_extent->file_offset + | 
|  | 1790 | ordered_extent->len - 1, &cached_state, GFP_NOFS); | 
|  | 1791 |  | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 1792 | add_pending_csums(trans, inode, ordered_extent->file_offset, | 
|  | 1793 | &ordered_extent->list); | 
|  | 1794 |  | 
| Josef Bacik | 1ef30be | 2011-04-05 19:25:36 -0400 | [diff] [blame] | 1795 | ret = btrfs_ordered_update_i_size(inode, 0, ordered_extent); | 
| Miao Xie | a39f752 | 2011-09-11 10:52:25 -0400 | [diff] [blame] | 1796 | if (!ret || !test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) { | 
| Chris Mason | 2115133 | 2011-11-10 20:39:08 -0500 | [diff] [blame] | 1797 | ret = btrfs_update_inode_fallback(trans, root, inode); | 
| Josef Bacik | 1ef30be | 2011-04-05 19:25:36 -0400 | [diff] [blame] | 1798 | BUG_ON(ret); | 
|  | 1799 | } | 
|  | 1800 | ret = 0; | 
| Yan, Zheng | c216775 | 2009-11-12 09:34:21 +0000 | [diff] [blame] | 1801 | out: | 
| Josef Bacik | 5b0e95b | 2011-10-06 08:58:24 -0400 | [diff] [blame] | 1802 | if (root != root->fs_info->tree_root) | 
| Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 1803 | btrfs_delalloc_release_metadata(inode, ordered_extent->len); | 
| Josef Bacik | 5b0e95b | 2011-10-06 08:58:24 -0400 | [diff] [blame] | 1804 | if (trans) { | 
|  | 1805 | if (nolock) | 
| Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 1806 | btrfs_end_transaction_nolock(trans, root); | 
| Josef Bacik | 5b0e95b | 2011-10-06 08:58:24 -0400 | [diff] [blame] | 1807 | else | 
| Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 1808 | btrfs_end_transaction(trans, root); | 
|  | 1809 | } | 
|  | 1810 |  | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 1811 | /* once for us */ | 
|  | 1812 | btrfs_put_ordered_extent(ordered_extent); | 
|  | 1813 | /* once for the tree */ | 
|  | 1814 | btrfs_put_ordered_extent(ordered_extent); | 
|  | 1815 |  | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 1816 | return 0; | 
|  | 1817 | } | 
|  | 1818 |  | 
| Christoph Hellwig | b295086 | 2008-12-02 09:54:17 -0500 | [diff] [blame] | 1819 | static int btrfs_writepage_end_io_hook(struct page *page, u64 start, u64 end, | 
| Chris Mason | 211f90e | 2008-07-18 11:56:15 -0400 | [diff] [blame] | 1820 | struct extent_state *state, int uptodate) | 
|  | 1821 | { | 
| liubo | 1abe9b8 | 2011-03-24 11:18:59 +0000 | [diff] [blame] | 1822 | trace_btrfs_writepage_end_io_hook(page, start, end, uptodate); | 
|  | 1823 |  | 
| Chris Mason | 8b62b72 | 2009-09-02 16:53:46 -0400 | [diff] [blame] | 1824 | ClearPagePrivate2(page); | 
| Chris Mason | 211f90e | 2008-07-18 11:56:15 -0400 | [diff] [blame] | 1825 | return btrfs_finish_ordered_io(page->mapping->host, start, end); | 
|  | 1826 | } | 
|  | 1827 |  | 
| Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 1828 | /* | 
| Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 1829 | * when reads are done, we need to check csums to verify the data is correct | 
| Jan Schmidt | 4a54c8c | 2011-07-22 15:41:52 +0200 | [diff] [blame] | 1830 | * if there's a match, we allow the bio to finish.  If not, the code in | 
|  | 1831 | * extent_io.c will try to find good copies for us. | 
| Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 1832 | */ | 
| Christoph Hellwig | b295086 | 2008-12-02 09:54:17 -0500 | [diff] [blame] | 1833 | static int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end, | 
| Chris Mason | 70dec80 | 2008-01-29 09:59:12 -0500 | [diff] [blame] | 1834 | struct extent_state *state) | 
| Chris Mason | 07157aa | 2007-08-30 08:50:51 -0400 | [diff] [blame] | 1835 | { | 
| Chris Mason | 35ebb93 | 2007-10-30 16:56:53 -0400 | [diff] [blame] | 1836 | size_t offset = start - ((u64)page->index << PAGE_CACHE_SHIFT); | 
| Chris Mason | 07157aa | 2007-08-30 08:50:51 -0400 | [diff] [blame] | 1837 | struct inode *inode = page->mapping->host; | 
| Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 1838 | struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree; | 
| Chris Mason | 07157aa | 2007-08-30 08:50:51 -0400 | [diff] [blame] | 1839 | char *kaddr; | 
| Chris Mason | aadfeb6 | 2008-01-29 09:10:27 -0500 | [diff] [blame] | 1840 | u64 private = ~(u32)0; | 
| Chris Mason | 07157aa | 2007-08-30 08:50:51 -0400 | [diff] [blame] | 1841 | int ret; | 
| Chris Mason | ff79f81 | 2007-10-15 16:22:25 -0400 | [diff] [blame] | 1842 | struct btrfs_root *root = BTRFS_I(inode)->root; | 
|  | 1843 | u32 csum = ~(u32)0; | 
| Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 1844 |  | 
| Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 1845 | if (PageChecked(page)) { | 
|  | 1846 | ClearPageChecked(page); | 
|  | 1847 | goto good; | 
|  | 1848 | } | 
| Christoph Hellwig | 6cbff00 | 2009-04-17 10:37:41 +0200 | [diff] [blame] | 1849 |  | 
|  | 1850 | if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM) | 
| Jan Schmidt | 08d2f34 | 2011-05-04 16:18:50 +0200 | [diff] [blame] | 1851 | goto good; | 
| Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 1852 |  | 
| Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 1853 | if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID && | 
| Chris Mason | 9655d29 | 2009-09-02 15:22:30 -0400 | [diff] [blame] | 1854 | test_range_bit(io_tree, start, end, EXTENT_NODATASUM, 1, NULL)) { | 
| Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 1855 | clear_extent_bits(io_tree, start, end, EXTENT_NODATASUM, | 
|  | 1856 | GFP_NOFS); | 
|  | 1857 | return 0; | 
|  | 1858 | } | 
|  | 1859 |  | 
| Yan | c2e639f | 2008-02-04 08:57:25 -0500 | [diff] [blame] | 1860 | if (state && state->start == start) { | 
| Chris Mason | 70dec80 | 2008-01-29 09:59:12 -0500 | [diff] [blame] | 1861 | private = state->private; | 
|  | 1862 | ret = 0; | 
|  | 1863 | } else { | 
|  | 1864 | ret = get_state_private(io_tree, start, &private); | 
|  | 1865 | } | 
| Chris Mason | 9ab86c8 | 2009-01-07 09:48:51 -0500 | [diff] [blame] | 1866 | kaddr = kmap_atomic(page, KM_USER0); | 
| Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1867 | if (ret) | 
| Chris Mason | 07157aa | 2007-08-30 08:50:51 -0400 | [diff] [blame] | 1868 | goto zeroit; | 
| Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1869 |  | 
| Chris Mason | ff79f81 | 2007-10-15 16:22:25 -0400 | [diff] [blame] | 1870 | csum = btrfs_csum_data(root, kaddr + offset, csum,  end - start + 1); | 
|  | 1871 | btrfs_csum_final(csum, (char *)&csum); | 
| Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1872 | if (csum != private) | 
| Chris Mason | 07157aa | 2007-08-30 08:50:51 -0400 | [diff] [blame] | 1873 | goto zeroit; | 
| Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1874 |  | 
| Chris Mason | 9ab86c8 | 2009-01-07 09:48:51 -0500 | [diff] [blame] | 1875 | kunmap_atomic(kaddr, KM_USER0); | 
| Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 1876 | good: | 
| Chris Mason | 07157aa | 2007-08-30 08:50:51 -0400 | [diff] [blame] | 1877 | return 0; | 
|  | 1878 |  | 
|  | 1879 | zeroit: | 
| Chris Mason | 945d896 | 2011-05-22 12:33:42 -0400 | [diff] [blame] | 1880 | printk_ratelimited(KERN_INFO "btrfs csum failed ino %llu off %llu csum %u " | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 1881 | "private %llu\n", | 
|  | 1882 | (unsigned long long)btrfs_ino(page->mapping->host), | 
| Chris Mason | 193f284 | 2009-04-27 07:29:05 -0400 | [diff] [blame] | 1883 | (unsigned long long)start, csum, | 
|  | 1884 | (unsigned long long)private); | 
| Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 1885 | memset(kaddr + offset, 1, end - start + 1); | 
|  | 1886 | flush_dcache_page(page); | 
| Chris Mason | 9ab86c8 | 2009-01-07 09:48:51 -0500 | [diff] [blame] | 1887 | kunmap_atomic(kaddr, KM_USER0); | 
| Chris Mason | 3b95151 | 2008-04-17 11:29:12 -0400 | [diff] [blame] | 1888 | if (private == 0) | 
|  | 1889 | return 0; | 
| Chris Mason | 7e38326 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 1890 | return -EIO; | 
| Chris Mason | 07157aa | 2007-08-30 08:50:51 -0400 | [diff] [blame] | 1891 | } | 
| Chris Mason | b888db2 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 1892 |  | 
| Yan, Zheng | 24bbcf0 | 2009-11-12 09:36:34 +0000 | [diff] [blame] | 1893 | struct delayed_iput { | 
|  | 1894 | struct list_head list; | 
|  | 1895 | struct inode *inode; | 
|  | 1896 | }; | 
|  | 1897 |  | 
|  | 1898 | void btrfs_add_delayed_iput(struct inode *inode) | 
|  | 1899 | { | 
|  | 1900 | struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info; | 
|  | 1901 | struct delayed_iput *delayed; | 
|  | 1902 |  | 
|  | 1903 | if (atomic_add_unless(&inode->i_count, -1, 1)) | 
|  | 1904 | return; | 
|  | 1905 |  | 
|  | 1906 | delayed = kmalloc(sizeof(*delayed), GFP_NOFS | __GFP_NOFAIL); | 
|  | 1907 | delayed->inode = inode; | 
|  | 1908 |  | 
|  | 1909 | spin_lock(&fs_info->delayed_iput_lock); | 
|  | 1910 | list_add_tail(&delayed->list, &fs_info->delayed_iputs); | 
|  | 1911 | spin_unlock(&fs_info->delayed_iput_lock); | 
|  | 1912 | } | 
|  | 1913 |  | 
|  | 1914 | void btrfs_run_delayed_iputs(struct btrfs_root *root) | 
|  | 1915 | { | 
|  | 1916 | LIST_HEAD(list); | 
|  | 1917 | struct btrfs_fs_info *fs_info = root->fs_info; | 
|  | 1918 | struct delayed_iput *delayed; | 
|  | 1919 | int empty; | 
|  | 1920 |  | 
|  | 1921 | spin_lock(&fs_info->delayed_iput_lock); | 
|  | 1922 | empty = list_empty(&fs_info->delayed_iputs); | 
|  | 1923 | spin_unlock(&fs_info->delayed_iput_lock); | 
|  | 1924 | if (empty) | 
|  | 1925 | return; | 
|  | 1926 |  | 
|  | 1927 | down_read(&root->fs_info->cleanup_work_sem); | 
|  | 1928 | spin_lock(&fs_info->delayed_iput_lock); | 
|  | 1929 | list_splice_init(&fs_info->delayed_iputs, &list); | 
|  | 1930 | spin_unlock(&fs_info->delayed_iput_lock); | 
|  | 1931 |  | 
|  | 1932 | while (!list_empty(&list)) { | 
|  | 1933 | delayed = list_entry(list.next, struct delayed_iput, list); | 
|  | 1934 | list_del(&delayed->list); | 
|  | 1935 | iput(delayed->inode); | 
|  | 1936 | kfree(delayed); | 
|  | 1937 | } | 
|  | 1938 | up_read(&root->fs_info->cleanup_work_sem); | 
|  | 1939 | } | 
|  | 1940 |  | 
| Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 1941 | enum btrfs_orphan_cleanup_state { | 
|  | 1942 | ORPHAN_CLEANUP_STARTED	= 1, | 
|  | 1943 | ORPHAN_CLEANUP_DONE	= 2, | 
|  | 1944 | }; | 
|  | 1945 |  | 
|  | 1946 | /* | 
| Justin P. Mattock | 42b2aa8 | 2011-11-28 20:31:00 -0800 | [diff] [blame] | 1947 | * This is called in transaction commit time. If there are no orphan | 
| Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 1948 | * files in the subvolume, it removes orphan item and frees block_rsv | 
|  | 1949 | * structure. | 
|  | 1950 | */ | 
|  | 1951 | void btrfs_orphan_commit_root(struct btrfs_trans_handle *trans, | 
|  | 1952 | struct btrfs_root *root) | 
|  | 1953 | { | 
| Josef Bacik | 90290e1 | 2011-12-02 15:44:12 -0500 | [diff] [blame] | 1954 | struct btrfs_block_rsv *block_rsv; | 
| Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 1955 | int ret; | 
|  | 1956 |  | 
|  | 1957 | if (!list_empty(&root->orphan_list) || | 
|  | 1958 | root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE) | 
|  | 1959 | return; | 
|  | 1960 |  | 
| Josef Bacik | 90290e1 | 2011-12-02 15:44:12 -0500 | [diff] [blame] | 1961 | spin_lock(&root->orphan_lock); | 
|  | 1962 | if (!list_empty(&root->orphan_list)) { | 
|  | 1963 | spin_unlock(&root->orphan_lock); | 
|  | 1964 | return; | 
|  | 1965 | } | 
|  | 1966 |  | 
|  | 1967 | if (root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE) { | 
|  | 1968 | spin_unlock(&root->orphan_lock); | 
|  | 1969 | return; | 
|  | 1970 | } | 
|  | 1971 |  | 
|  | 1972 | block_rsv = root->orphan_block_rsv; | 
|  | 1973 | root->orphan_block_rsv = NULL; | 
|  | 1974 | spin_unlock(&root->orphan_lock); | 
|  | 1975 |  | 
| Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 1976 | if (root->orphan_item_inserted && | 
|  | 1977 | btrfs_root_refs(&root->root_item) > 0) { | 
|  | 1978 | ret = btrfs_del_orphan_item(trans, root->fs_info->tree_root, | 
|  | 1979 | root->root_key.objectid); | 
|  | 1980 | BUG_ON(ret); | 
|  | 1981 | root->orphan_item_inserted = 0; | 
|  | 1982 | } | 
|  | 1983 |  | 
| Josef Bacik | 90290e1 | 2011-12-02 15:44:12 -0500 | [diff] [blame] | 1984 | if (block_rsv) { | 
|  | 1985 | WARN_ON(block_rsv->size > 0); | 
|  | 1986 | btrfs_free_block_rsv(root, block_rsv); | 
| Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 1987 | } | 
|  | 1988 | } | 
|  | 1989 |  | 
|  | 1990 | /* | 
| Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 1991 | * This creates an orphan entry for the given inode in case something goes | 
|  | 1992 | * wrong in the middle of an unlink/truncate. | 
| Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 1993 | * | 
|  | 1994 | * NOTE: caller of this function should reserve 5 units of metadata for | 
|  | 1995 | *	 this function. | 
| Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 1996 | */ | 
|  | 1997 | int btrfs_orphan_add(struct btrfs_trans_handle *trans, struct inode *inode) | 
|  | 1998 | { | 
|  | 1999 | struct btrfs_root *root = BTRFS_I(inode)->root; | 
| Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2000 | struct btrfs_block_rsv *block_rsv = NULL; | 
|  | 2001 | int reserve = 0; | 
|  | 2002 | int insert = 0; | 
|  | 2003 | int ret; | 
| Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2004 |  | 
| Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2005 | if (!root->orphan_block_rsv) { | 
|  | 2006 | block_rsv = btrfs_alloc_block_rsv(root); | 
| Tsutomu Itoh | b532402 | 2011-07-19 07:27:20 +0000 | [diff] [blame] | 2007 | if (!block_rsv) | 
|  | 2008 | return -ENOMEM; | 
| Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2009 | } | 
|  | 2010 |  | 
| Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2011 | spin_lock(&root->orphan_lock); | 
|  | 2012 | if (!root->orphan_block_rsv) { | 
|  | 2013 | root->orphan_block_rsv = block_rsv; | 
|  | 2014 | } else if (block_rsv) { | 
|  | 2015 | btrfs_free_block_rsv(root, block_rsv); | 
|  | 2016 | block_rsv = NULL; | 
|  | 2017 | } | 
| Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2018 |  | 
| Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2019 | if (list_empty(&BTRFS_I(inode)->i_orphan)) { | 
|  | 2020 | list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list); | 
|  | 2021 | #if 0 | 
|  | 2022 | /* | 
|  | 2023 | * For proper ENOSPC handling, we should do orphan | 
|  | 2024 | * cleanup when mounting. But this introduces backward | 
|  | 2025 | * compatibility issue. | 
|  | 2026 | */ | 
|  | 2027 | if (!xchg(&root->orphan_item_inserted, 1)) | 
|  | 2028 | insert = 2; | 
|  | 2029 | else | 
|  | 2030 | insert = 1; | 
|  | 2031 | #endif | 
|  | 2032 | insert = 1; | 
| Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2033 | } | 
| Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2034 |  | 
| Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2035 | if (!BTRFS_I(inode)->orphan_meta_reserved) { | 
|  | 2036 | BTRFS_I(inode)->orphan_meta_reserved = 1; | 
|  | 2037 | reserve = 1; | 
|  | 2038 | } | 
|  | 2039 | spin_unlock(&root->orphan_lock); | 
| Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2040 |  | 
| Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2041 | /* grab metadata reservation from transaction handle */ | 
|  | 2042 | if (reserve) { | 
|  | 2043 | ret = btrfs_orphan_reserve_metadata(trans, inode); | 
|  | 2044 | BUG_ON(ret); | 
|  | 2045 | } | 
|  | 2046 |  | 
|  | 2047 | /* insert an orphan item to track this unlinked/truncated file */ | 
|  | 2048 | if (insert >= 1) { | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 2049 | ret = btrfs_insert_orphan_item(trans, root, btrfs_ino(inode)); | 
| Josef Bacik | ee4d89f | 2011-12-13 12:55:58 -0500 | [diff] [blame] | 2050 | BUG_ON(ret && ret != -EEXIST); | 
| Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2051 | } | 
|  | 2052 |  | 
|  | 2053 | /* insert an orphan item to track subvolume contains orphan files */ | 
|  | 2054 | if (insert >= 2) { | 
|  | 2055 | ret = btrfs_insert_orphan_item(trans, root->fs_info->tree_root, | 
|  | 2056 | root->root_key.objectid); | 
|  | 2057 | BUG_ON(ret); | 
|  | 2058 | } | 
|  | 2059 | return 0; | 
| Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2060 | } | 
|  | 2061 |  | 
|  | 2062 | /* | 
|  | 2063 | * We have done the truncate/delete so we can go ahead and remove the orphan | 
|  | 2064 | * item for this particular inode. | 
|  | 2065 | */ | 
|  | 2066 | int btrfs_orphan_del(struct btrfs_trans_handle *trans, struct inode *inode) | 
|  | 2067 | { | 
|  | 2068 | struct btrfs_root *root = BTRFS_I(inode)->root; | 
| Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2069 | int delete_item = 0; | 
|  | 2070 | int release_rsv = 0; | 
| Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2071 | int ret = 0; | 
|  | 2072 |  | 
| Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2073 | spin_lock(&root->orphan_lock); | 
|  | 2074 | if (!list_empty(&BTRFS_I(inode)->i_orphan)) { | 
|  | 2075 | list_del_init(&BTRFS_I(inode)->i_orphan); | 
|  | 2076 | delete_item = 1; | 
| Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2077 | } | 
|  | 2078 |  | 
| Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2079 | if (BTRFS_I(inode)->orphan_meta_reserved) { | 
|  | 2080 | BTRFS_I(inode)->orphan_meta_reserved = 0; | 
|  | 2081 | release_rsv = 1; | 
|  | 2082 | } | 
|  | 2083 | spin_unlock(&root->orphan_lock); | 
|  | 2084 |  | 
|  | 2085 | if (trans && delete_item) { | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 2086 | ret = btrfs_del_orphan_item(trans, root, btrfs_ino(inode)); | 
| Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2087 | BUG_ON(ret); | 
| Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2088 | } | 
|  | 2089 |  | 
| Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2090 | if (release_rsv) | 
|  | 2091 | btrfs_orphan_release_metadata(inode); | 
| Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2092 |  | 
| Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2093 | return 0; | 
| Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2094 | } | 
|  | 2095 |  | 
|  | 2096 | /* | 
|  | 2097 | * this cleans up any orphans that may be left on the list from the last use | 
|  | 2098 | * of this root. | 
|  | 2099 | */ | 
| Josef Bacik | 66b4ffd | 2011-01-31 16:22:42 -0500 | [diff] [blame] | 2100 | int btrfs_orphan_cleanup(struct btrfs_root *root) | 
| Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2101 | { | 
|  | 2102 | struct btrfs_path *path; | 
|  | 2103 | struct extent_buffer *leaf; | 
| Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2104 | struct btrfs_key key, found_key; | 
|  | 2105 | struct btrfs_trans_handle *trans; | 
|  | 2106 | struct inode *inode; | 
| Josef Bacik | 8f6d7f4 | 2011-09-26 15:55:20 -0400 | [diff] [blame] | 2107 | u64 last_objectid = 0; | 
| Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2108 | int ret = 0, nr_unlink = 0, nr_truncate = 0; | 
|  | 2109 |  | 
| Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2110 | if (cmpxchg(&root->orphan_cleanup_state, 0, ORPHAN_CLEANUP_STARTED)) | 
| Josef Bacik | 66b4ffd | 2011-01-31 16:22:42 -0500 | [diff] [blame] | 2111 | return 0; | 
| Yan, Zheng | c71bf09 | 2009-11-12 09:34:40 +0000 | [diff] [blame] | 2112 |  | 
|  | 2113 | path = btrfs_alloc_path(); | 
| Josef Bacik | 66b4ffd | 2011-01-31 16:22:42 -0500 | [diff] [blame] | 2114 | if (!path) { | 
|  | 2115 | ret = -ENOMEM; | 
|  | 2116 | goto out; | 
|  | 2117 | } | 
| Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2118 | path->reada = -1; | 
|  | 2119 |  | 
|  | 2120 | key.objectid = BTRFS_ORPHAN_OBJECTID; | 
|  | 2121 | btrfs_set_key_type(&key, BTRFS_ORPHAN_ITEM_KEY); | 
|  | 2122 | key.offset = (u64)-1; | 
|  | 2123 |  | 
| Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2124 | while (1) { | 
|  | 2125 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); | 
| Josef Bacik | 66b4ffd | 2011-01-31 16:22:42 -0500 | [diff] [blame] | 2126 | if (ret < 0) | 
|  | 2127 | goto out; | 
| Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2128 |  | 
|  | 2129 | /* | 
|  | 2130 | * if ret == 0 means we found what we were searching for, which | 
| Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 2131 | * is weird, but possible, so only screw with path if we didn't | 
| Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2132 | * find the key and see if we have stuff that matches | 
|  | 2133 | */ | 
|  | 2134 | if (ret > 0) { | 
| Josef Bacik | 66b4ffd | 2011-01-31 16:22:42 -0500 | [diff] [blame] | 2135 | ret = 0; | 
| Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2136 | if (path->slots[0] == 0) | 
|  | 2137 | break; | 
|  | 2138 | path->slots[0]--; | 
|  | 2139 | } | 
|  | 2140 |  | 
|  | 2141 | /* pull out the item */ | 
|  | 2142 | leaf = path->nodes[0]; | 
| Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2143 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); | 
|  | 2144 |  | 
|  | 2145 | /* make sure the item matches what we want */ | 
|  | 2146 | if (found_key.objectid != BTRFS_ORPHAN_OBJECTID) | 
|  | 2147 | break; | 
|  | 2148 | if (btrfs_key_type(&found_key) != BTRFS_ORPHAN_ITEM_KEY) | 
|  | 2149 | break; | 
|  | 2150 |  | 
|  | 2151 | /* release the path since we're done with it */ | 
| David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2152 | btrfs_release_path(path); | 
| Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2153 |  | 
|  | 2154 | /* | 
|  | 2155 | * this is where we are basically btrfs_lookup, without the | 
|  | 2156 | * crossing root thing.  we store the inode number in the | 
|  | 2157 | * offset of the orphan item. | 
|  | 2158 | */ | 
| Josef Bacik | 8f6d7f4 | 2011-09-26 15:55:20 -0400 | [diff] [blame] | 2159 |  | 
|  | 2160 | if (found_key.offset == last_objectid) { | 
|  | 2161 | printk(KERN_ERR "btrfs: Error removing orphan entry, " | 
|  | 2162 | "stopping orphan cleanup\n"); | 
|  | 2163 | ret = -EINVAL; | 
|  | 2164 | goto out; | 
|  | 2165 | } | 
|  | 2166 |  | 
|  | 2167 | last_objectid = found_key.offset; | 
|  | 2168 |  | 
| Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2169 | found_key.objectid = found_key.offset; | 
|  | 2170 | found_key.type = BTRFS_INODE_ITEM_KEY; | 
|  | 2171 | found_key.offset = 0; | 
| Josef Bacik | 73f7341 | 2009-12-04 17:38:27 +0000 | [diff] [blame] | 2172 | inode = btrfs_iget(root->fs_info->sb, &found_key, root, NULL); | 
| Josef Bacik | a8c9e57 | 2011-09-21 16:55:59 -0400 | [diff] [blame] | 2173 | ret = PTR_RET(inode); | 
|  | 2174 | if (ret && ret != -ESTALE) | 
| Josef Bacik | 66b4ffd | 2011-01-31 16:22:42 -0500 | [diff] [blame] | 2175 | goto out; | 
| Josef Bacik | a8c9e57 | 2011-09-21 16:55:59 -0400 | [diff] [blame] | 2176 |  | 
| Arne Jansen | f8e9e0b | 2011-12-14 20:12:02 -0500 | [diff] [blame] | 2177 | if (ret == -ESTALE && root == root->fs_info->tree_root) { | 
|  | 2178 | struct btrfs_root *dead_root; | 
|  | 2179 | struct btrfs_fs_info *fs_info = root->fs_info; | 
|  | 2180 | int is_dead_root = 0; | 
|  | 2181 |  | 
|  | 2182 | /* | 
|  | 2183 | * this is an orphan in the tree root. Currently these | 
|  | 2184 | * could come from 2 sources: | 
|  | 2185 | *  a) a snapshot deletion in progress | 
|  | 2186 | *  b) a free space cache inode | 
|  | 2187 | * We need to distinguish those two, as the snapshot | 
|  | 2188 | * orphan must not get deleted. | 
|  | 2189 | * find_dead_roots already ran before us, so if this | 
|  | 2190 | * is a snapshot deletion, we should find the root | 
|  | 2191 | * in the dead_roots list | 
|  | 2192 | */ | 
|  | 2193 | spin_lock(&fs_info->trans_lock); | 
|  | 2194 | list_for_each_entry(dead_root, &fs_info->dead_roots, | 
|  | 2195 | root_list) { | 
|  | 2196 | if (dead_root->root_key.objectid == | 
|  | 2197 | found_key.objectid) { | 
|  | 2198 | is_dead_root = 1; | 
|  | 2199 | break; | 
|  | 2200 | } | 
|  | 2201 | } | 
|  | 2202 | spin_unlock(&fs_info->trans_lock); | 
|  | 2203 | if (is_dead_root) { | 
|  | 2204 | /* prevent this orphan from being found again */ | 
|  | 2205 | key.offset = found_key.objectid - 1; | 
|  | 2206 | continue; | 
|  | 2207 | } | 
|  | 2208 | } | 
| Josef Bacik | a8c9e57 | 2011-09-21 16:55:59 -0400 | [diff] [blame] | 2209 | /* | 
|  | 2210 | * Inode is already gone but the orphan item is still there, | 
|  | 2211 | * kill the orphan item. | 
|  | 2212 | */ | 
|  | 2213 | if (ret == -ESTALE) { | 
|  | 2214 | trans = btrfs_start_transaction(root, 1); | 
|  | 2215 | if (IS_ERR(trans)) { | 
|  | 2216 | ret = PTR_ERR(trans); | 
|  | 2217 | goto out; | 
|  | 2218 | } | 
|  | 2219 | ret = btrfs_del_orphan_item(trans, root, | 
|  | 2220 | found_key.objectid); | 
|  | 2221 | BUG_ON(ret); | 
|  | 2222 | btrfs_end_transaction(trans, root); | 
|  | 2223 | continue; | 
| Josef Bacik | 66b4ffd | 2011-01-31 16:22:42 -0500 | [diff] [blame] | 2224 | } | 
| Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2225 |  | 
| Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2226 | /* | 
|  | 2227 | * add this inode to the orphan list so btrfs_orphan_del does | 
|  | 2228 | * the proper thing when we hit it | 
|  | 2229 | */ | 
| Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2230 | spin_lock(&root->orphan_lock); | 
| Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2231 | list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list); | 
| Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2232 | spin_unlock(&root->orphan_lock); | 
| Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2233 |  | 
| Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2234 | /* if we have links, this was a truncate, lets do that */ | 
|  | 2235 | if (inode->i_nlink) { | 
| Josef Bacik | a41ad39 | 2011-01-31 15:30:16 -0500 | [diff] [blame] | 2236 | if (!S_ISREG(inode->i_mode)) { | 
|  | 2237 | WARN_ON(1); | 
|  | 2238 | iput(inode); | 
|  | 2239 | continue; | 
|  | 2240 | } | 
| Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2241 | nr_truncate++; | 
| Josef Bacik | 66b4ffd | 2011-01-31 16:22:42 -0500 | [diff] [blame] | 2242 | ret = btrfs_truncate(inode); | 
| Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2243 | } else { | 
|  | 2244 | nr_unlink++; | 
|  | 2245 | } | 
|  | 2246 |  | 
|  | 2247 | /* this will do delete_inode and everything for us */ | 
|  | 2248 | iput(inode); | 
| Josef Bacik | 66b4ffd | 2011-01-31 16:22:42 -0500 | [diff] [blame] | 2249 | if (ret) | 
|  | 2250 | goto out; | 
| Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2251 | } | 
| Miao Xie | 3254c87 | 2011-11-10 20:45:05 -0500 | [diff] [blame] | 2252 | /* release the path since we're done with it */ | 
|  | 2253 | btrfs_release_path(path); | 
|  | 2254 |  | 
| Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2255 | root->orphan_cleanup_state = ORPHAN_CLEANUP_DONE; | 
|  | 2256 |  | 
|  | 2257 | if (root->orphan_block_rsv) | 
|  | 2258 | btrfs_block_rsv_release(root, root->orphan_block_rsv, | 
|  | 2259 | (u64)-1); | 
|  | 2260 |  | 
|  | 2261 | if (root->orphan_block_rsv || root->orphan_item_inserted) { | 
| Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 2262 | trans = btrfs_join_transaction(root); | 
| Josef Bacik | 66b4ffd | 2011-01-31 16:22:42 -0500 | [diff] [blame] | 2263 | if (!IS_ERR(trans)) | 
|  | 2264 | btrfs_end_transaction(trans, root); | 
| Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2265 | } | 
| Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2266 |  | 
|  | 2267 | if (nr_unlink) | 
|  | 2268 | printk(KERN_INFO "btrfs: unlinked %d orphans\n", nr_unlink); | 
|  | 2269 | if (nr_truncate) | 
|  | 2270 | printk(KERN_INFO "btrfs: truncated %d orphans\n", nr_truncate); | 
| Josef Bacik | 66b4ffd | 2011-01-31 16:22:42 -0500 | [diff] [blame] | 2271 |  | 
|  | 2272 | out: | 
|  | 2273 | if (ret) | 
|  | 2274 | printk(KERN_CRIT "btrfs: could not do orphan cleanup %d\n", ret); | 
|  | 2275 | btrfs_free_path(path); | 
|  | 2276 | return ret; | 
| Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2277 | } | 
|  | 2278 |  | 
| Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 2279 | /* | 
| Chris Mason | 46a53cc | 2009-04-27 11:47:50 -0400 | [diff] [blame] | 2280 | * very simple check to peek ahead in the leaf looking for xattrs.  If we | 
|  | 2281 | * don't find any xattrs, we know there can't be any acls. | 
|  | 2282 | * | 
|  | 2283 | * slot is the slot the inode is in, objectid is the objectid of the inode | 
|  | 2284 | */ | 
|  | 2285 | static noinline int acls_after_inode_item(struct extent_buffer *leaf, | 
|  | 2286 | int slot, u64 objectid) | 
|  | 2287 | { | 
|  | 2288 | u32 nritems = btrfs_header_nritems(leaf); | 
|  | 2289 | struct btrfs_key found_key; | 
|  | 2290 | int scanned = 0; | 
|  | 2291 |  | 
|  | 2292 | slot++; | 
|  | 2293 | while (slot < nritems) { | 
|  | 2294 | btrfs_item_key_to_cpu(leaf, &found_key, slot); | 
|  | 2295 |  | 
|  | 2296 | /* we found a different objectid, there must not be acls */ | 
|  | 2297 | if (found_key.objectid != objectid) | 
|  | 2298 | return 0; | 
|  | 2299 |  | 
|  | 2300 | /* we found an xattr, assume we've got an acl */ | 
|  | 2301 | if (found_key.type == BTRFS_XATTR_ITEM_KEY) | 
|  | 2302 | return 1; | 
|  | 2303 |  | 
|  | 2304 | /* | 
|  | 2305 | * we found a key greater than an xattr key, there can't | 
|  | 2306 | * be any acls later on | 
|  | 2307 | */ | 
|  | 2308 | if (found_key.type > BTRFS_XATTR_ITEM_KEY) | 
|  | 2309 | return 0; | 
|  | 2310 |  | 
|  | 2311 | slot++; | 
|  | 2312 | scanned++; | 
|  | 2313 |  | 
|  | 2314 | /* | 
|  | 2315 | * it goes inode, inode backrefs, xattrs, extents, | 
|  | 2316 | * so if there are a ton of hard links to an inode there can | 
|  | 2317 | * be a lot of backrefs.  Don't waste time searching too hard, | 
|  | 2318 | * this is just an optimization | 
|  | 2319 | */ | 
|  | 2320 | if (scanned >= 8) | 
|  | 2321 | break; | 
|  | 2322 | } | 
|  | 2323 | /* we hit the end of the leaf before we found an xattr or | 
|  | 2324 | * something larger than an xattr.  We have to assume the inode | 
|  | 2325 | * has acls | 
|  | 2326 | */ | 
|  | 2327 | return 1; | 
|  | 2328 | } | 
|  | 2329 |  | 
|  | 2330 | /* | 
| Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 2331 | * read an inode from the btree into the in-memory inode | 
|  | 2332 | */ | 
| Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2333 | static void btrfs_read_locked_inode(struct inode *inode) | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2334 | { | 
|  | 2335 | struct btrfs_path *path; | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2336 | struct extent_buffer *leaf; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2337 | struct btrfs_inode_item *inode_item; | 
| Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 2338 | struct btrfs_timespec *tspec; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2339 | struct btrfs_root *root = BTRFS_I(inode)->root; | 
|  | 2340 | struct btrfs_key location; | 
| Chris Mason | 46a53cc | 2009-04-27 11:47:50 -0400 | [diff] [blame] | 2341 | int maybe_acls; | 
| Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 2342 | u32 rdev; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2343 | int ret; | 
| Miao Xie | 2f7e33d | 2011-06-23 07:27:13 +0000 | [diff] [blame] | 2344 | bool filled = false; | 
|  | 2345 |  | 
|  | 2346 | ret = btrfs_fill_inode(inode, &rdev); | 
|  | 2347 | if (!ret) | 
|  | 2348 | filled = true; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2349 |  | 
|  | 2350 | path = btrfs_alloc_path(); | 
| Mark Fasheh | 1748f84 | 2011-07-12 11:25:31 -0700 | [diff] [blame] | 2351 | if (!path) | 
|  | 2352 | goto make_bad; | 
|  | 2353 |  | 
| Josef Bacik | d90c732 | 2011-05-17 09:50:54 -0400 | [diff] [blame] | 2354 | path->leave_spinning = 1; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2355 | memcpy(&location, &BTRFS_I(inode)->location, sizeof(location)); | 
| Chris Mason | dc17ff8 | 2008-01-08 15:46:30 -0500 | [diff] [blame] | 2356 |  | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2357 | ret = btrfs_lookup_inode(NULL, root, path, &location, 0); | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2358 | if (ret) | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2359 | goto make_bad; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2360 |  | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2361 | leaf = path->nodes[0]; | 
| Miao Xie | 2f7e33d | 2011-06-23 07:27:13 +0000 | [diff] [blame] | 2362 |  | 
|  | 2363 | if (filled) | 
|  | 2364 | goto cache_acl; | 
|  | 2365 |  | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2366 | inode_item = btrfs_item_ptr(leaf, path->slots[0], | 
|  | 2367 | struct btrfs_inode_item); | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2368 | inode->i_mode = btrfs_inode_mode(leaf, inode_item); | 
| Miklos Szeredi | bfe8684 | 2011-10-28 14:13:29 +0200 | [diff] [blame] | 2369 | set_nlink(inode, btrfs_inode_nlink(leaf, inode_item)); | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2370 | inode->i_uid = btrfs_inode_uid(leaf, inode_item); | 
|  | 2371 | inode->i_gid = btrfs_inode_gid(leaf, inode_item); | 
| Chris Mason | dbe674a | 2008-07-17 12:54:05 -0400 | [diff] [blame] | 2372 | btrfs_i_size_write(inode, btrfs_inode_size(leaf, inode_item)); | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2373 |  | 
|  | 2374 | tspec = btrfs_inode_atime(inode_item); | 
|  | 2375 | inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec); | 
|  | 2376 | inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec); | 
|  | 2377 |  | 
|  | 2378 | tspec = btrfs_inode_mtime(inode_item); | 
|  | 2379 | inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec); | 
|  | 2380 | inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec); | 
|  | 2381 |  | 
|  | 2382 | tspec = btrfs_inode_ctime(inode_item); | 
|  | 2383 | inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec); | 
|  | 2384 | inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec); | 
|  | 2385 |  | 
| Yan Zheng | a76a3cd | 2008-10-09 11:46:29 -0400 | [diff] [blame] | 2386 | inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item)); | 
| Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2387 | BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item); | 
| Chris Mason | c3027eb | 2008-12-08 16:40:21 -0500 | [diff] [blame] | 2388 | BTRFS_I(inode)->sequence = btrfs_inode_sequence(leaf, inode_item); | 
| Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2389 | inode->i_generation = BTRFS_I(inode)->generation; | 
| Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 2390 | inode->i_rdev = 0; | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2391 | rdev = btrfs_inode_rdev(leaf, inode_item); | 
|  | 2392 |  | 
| Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 2393 | BTRFS_I(inode)->index_cnt = (u64)-1; | 
| Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 2394 | BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item); | 
| Miao Xie | 2f7e33d | 2011-06-23 07:27:13 +0000 | [diff] [blame] | 2395 | cache_acl: | 
| Chris Mason | 46a53cc | 2009-04-27 11:47:50 -0400 | [diff] [blame] | 2396 | /* | 
|  | 2397 | * try to precache a NULL acl entry for files that don't have | 
|  | 2398 | * any xattrs or acls | 
|  | 2399 | */ | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 2400 | maybe_acls = acls_after_inode_item(leaf, path->slots[0], | 
|  | 2401 | btrfs_ino(inode)); | 
| Al Viro | 72c0490 | 2009-06-24 16:58:48 -0400 | [diff] [blame] | 2402 | if (!maybe_acls) | 
|  | 2403 | cache_no_acl(inode); | 
| Chris Mason | 46a53cc | 2009-04-27 11:47:50 -0400 | [diff] [blame] | 2404 |  | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2405 | btrfs_free_path(path); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2406 |  | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2407 | switch (inode->i_mode & S_IFMT) { | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2408 | case S_IFREG: | 
|  | 2409 | inode->i_mapping->a_ops = &btrfs_aops; | 
| Chris Mason | 0416008 | 2008-03-26 10:28:07 -0400 | [diff] [blame] | 2410 | inode->i_mapping->backing_dev_info = &root->fs_info->bdi; | 
| Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 2411 | BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2412 | inode->i_fop = &btrfs_file_operations; | 
|  | 2413 | inode->i_op = &btrfs_file_inode_operations; | 
|  | 2414 | break; | 
|  | 2415 | case S_IFDIR: | 
|  | 2416 | inode->i_fop = &btrfs_dir_file_operations; | 
|  | 2417 | if (root == root->fs_info->tree_root) | 
|  | 2418 | inode->i_op = &btrfs_dir_ro_inode_operations; | 
|  | 2419 | else | 
|  | 2420 | inode->i_op = &btrfs_dir_inode_operations; | 
|  | 2421 | break; | 
|  | 2422 | case S_IFLNK: | 
|  | 2423 | inode->i_op = &btrfs_symlink_inode_operations; | 
|  | 2424 | inode->i_mapping->a_ops = &btrfs_symlink_aops; | 
| Chris Mason | 0416008 | 2008-03-26 10:28:07 -0400 | [diff] [blame] | 2425 | inode->i_mapping->backing_dev_info = &root->fs_info->bdi; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2426 | break; | 
| Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 2427 | default: | 
| Jim Owens | 0279b4c | 2009-02-04 09:29:13 -0500 | [diff] [blame] | 2428 | inode->i_op = &btrfs_special_inode_operations; | 
| Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 2429 | init_special_inode(inode, inode->i_mode, rdev); | 
|  | 2430 | break; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2431 | } | 
| Christoph Hellwig | 6cbff00 | 2009-04-17 10:37:41 +0200 | [diff] [blame] | 2432 |  | 
|  | 2433 | btrfs_update_iflags(inode); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2434 | return; | 
|  | 2435 |  | 
|  | 2436 | make_bad: | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2437 | btrfs_free_path(path); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2438 | make_bad_inode(inode); | 
|  | 2439 | } | 
|  | 2440 |  | 
| Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 2441 | /* | 
|  | 2442 | * given a leaf and an inode, copy the inode fields into the leaf | 
|  | 2443 | */ | 
| Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2444 | static void fill_inode_item(struct btrfs_trans_handle *trans, | 
|  | 2445 | struct extent_buffer *leaf, | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2446 | struct btrfs_inode_item *item, | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2447 | struct inode *inode) | 
|  | 2448 | { | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2449 | btrfs_set_inode_uid(leaf, item, inode->i_uid); | 
|  | 2450 | btrfs_set_inode_gid(leaf, item, inode->i_gid); | 
| Chris Mason | dbe674a | 2008-07-17 12:54:05 -0400 | [diff] [blame] | 2451 | btrfs_set_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size); | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2452 | btrfs_set_inode_mode(leaf, item, inode->i_mode); | 
|  | 2453 | btrfs_set_inode_nlink(leaf, item, inode->i_nlink); | 
|  | 2454 |  | 
|  | 2455 | btrfs_set_timespec_sec(leaf, btrfs_inode_atime(item), | 
|  | 2456 | inode->i_atime.tv_sec); | 
|  | 2457 | btrfs_set_timespec_nsec(leaf, btrfs_inode_atime(item), | 
|  | 2458 | inode->i_atime.tv_nsec); | 
|  | 2459 |  | 
|  | 2460 | btrfs_set_timespec_sec(leaf, btrfs_inode_mtime(item), | 
|  | 2461 | inode->i_mtime.tv_sec); | 
|  | 2462 | btrfs_set_timespec_nsec(leaf, btrfs_inode_mtime(item), | 
|  | 2463 | inode->i_mtime.tv_nsec); | 
|  | 2464 |  | 
|  | 2465 | btrfs_set_timespec_sec(leaf, btrfs_inode_ctime(item), | 
|  | 2466 | inode->i_ctime.tv_sec); | 
|  | 2467 | btrfs_set_timespec_nsec(leaf, btrfs_inode_ctime(item), | 
|  | 2468 | inode->i_ctime.tv_nsec); | 
|  | 2469 |  | 
| Yan Zheng | a76a3cd | 2008-10-09 11:46:29 -0400 | [diff] [blame] | 2470 | btrfs_set_inode_nbytes(leaf, item, inode_get_bytes(inode)); | 
| Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2471 | btrfs_set_inode_generation(leaf, item, BTRFS_I(inode)->generation); | 
| Chris Mason | c3027eb | 2008-12-08 16:40:21 -0500 | [diff] [blame] | 2472 | btrfs_set_inode_sequence(leaf, item, BTRFS_I(inode)->sequence); | 
| Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2473 | btrfs_set_inode_transid(leaf, item, trans->transid); | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2474 | btrfs_set_inode_rdev(leaf, item, inode->i_rdev); | 
| Yan | b98b676 | 2008-01-08 15:54:37 -0500 | [diff] [blame] | 2475 | btrfs_set_inode_flags(leaf, item, BTRFS_I(inode)->flags); | 
| Josef Bacik | d82a6f1 | 2011-05-11 15:26:06 -0400 | [diff] [blame] | 2476 | btrfs_set_inode_block_group(leaf, item, 0); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2477 | } | 
|  | 2478 |  | 
| Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 2479 | /* | 
|  | 2480 | * copy everything in the in-memory inode into the btree. | 
|  | 2481 | */ | 
| Chris Mason | 2115133 | 2011-11-10 20:39:08 -0500 | [diff] [blame] | 2482 | static noinline int btrfs_update_inode_item(struct btrfs_trans_handle *trans, | 
| Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2483 | struct btrfs_root *root, struct inode *inode) | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2484 | { | 
|  | 2485 | struct btrfs_inode_item *inode_item; | 
|  | 2486 | struct btrfs_path *path; | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2487 | struct extent_buffer *leaf; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2488 | int ret; | 
|  | 2489 |  | 
|  | 2490 | path = btrfs_alloc_path(); | 
| Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 2491 | if (!path) | 
|  | 2492 | return -ENOMEM; | 
|  | 2493 |  | 
| Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 2494 | path->leave_spinning = 1; | 
| Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 2495 | ret = btrfs_lookup_inode(trans, root, path, &BTRFS_I(inode)->location, | 
|  | 2496 | 1); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2497 | if (ret) { | 
|  | 2498 | if (ret > 0) | 
|  | 2499 | ret = -ENOENT; | 
|  | 2500 | goto failed; | 
|  | 2501 | } | 
|  | 2502 |  | 
| Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 2503 | btrfs_unlock_up_safe(path, 1); | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2504 | leaf = path->nodes[0]; | 
|  | 2505 | inode_item = btrfs_item_ptr(leaf, path->slots[0], | 
| Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 2506 | struct btrfs_inode_item); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2507 |  | 
| Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2508 | fill_inode_item(trans, leaf, inode_item, inode); | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2509 | btrfs_mark_buffer_dirty(leaf); | 
| Josef Bacik | 15ee9bc | 2007-08-10 16:22:09 -0400 | [diff] [blame] | 2510 | btrfs_set_inode_last_trans(trans, inode); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2511 | ret = 0; | 
|  | 2512 | failed: | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2513 | btrfs_free_path(path); | 
|  | 2514 | return ret; | 
|  | 2515 | } | 
|  | 2516 |  | 
| Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 2517 | /* | 
| Chris Mason | 2115133 | 2011-11-10 20:39:08 -0500 | [diff] [blame] | 2518 | * copy everything in the in-memory inode into the btree. | 
|  | 2519 | */ | 
|  | 2520 | noinline int btrfs_update_inode(struct btrfs_trans_handle *trans, | 
|  | 2521 | struct btrfs_root *root, struct inode *inode) | 
|  | 2522 | { | 
|  | 2523 | int ret; | 
|  | 2524 |  | 
|  | 2525 | /* | 
|  | 2526 | * If the inode is a free space inode, we can deadlock during commit | 
|  | 2527 | * if we put it into the delayed code. | 
|  | 2528 | * | 
|  | 2529 | * The data relocation inode should also be directly updated | 
|  | 2530 | * without delay | 
|  | 2531 | */ | 
|  | 2532 | if (!btrfs_is_free_space_inode(root, inode) | 
|  | 2533 | && root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID) { | 
|  | 2534 | ret = btrfs_delayed_update_inode(trans, root, inode); | 
|  | 2535 | if (!ret) | 
|  | 2536 | btrfs_set_inode_last_trans(trans, inode); | 
|  | 2537 | return ret; | 
|  | 2538 | } | 
|  | 2539 |  | 
|  | 2540 | return btrfs_update_inode_item(trans, root, inode); | 
|  | 2541 | } | 
|  | 2542 |  | 
|  | 2543 | static noinline int btrfs_update_inode_fallback(struct btrfs_trans_handle *trans, | 
|  | 2544 | struct btrfs_root *root, struct inode *inode) | 
|  | 2545 | { | 
|  | 2546 | int ret; | 
|  | 2547 |  | 
|  | 2548 | ret = btrfs_update_inode(trans, root, inode); | 
|  | 2549 | if (ret == -ENOSPC) | 
|  | 2550 | return btrfs_update_inode_item(trans, root, inode); | 
|  | 2551 | return ret; | 
|  | 2552 | } | 
|  | 2553 |  | 
|  | 2554 | /* | 
| Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 2555 | * unlink helper that gets used here in inode.c and in the tree logging | 
|  | 2556 | * recovery code.  It remove a link in a directory with a given name, and | 
|  | 2557 | * also drops the back refs in the inode to the directory | 
|  | 2558 | */ | 
| Al Viro | 9298679 | 2011-03-04 17:14:37 +0000 | [diff] [blame] | 2559 | static int __btrfs_unlink_inode(struct btrfs_trans_handle *trans, | 
|  | 2560 | struct btrfs_root *root, | 
|  | 2561 | struct inode *dir, struct inode *inode, | 
|  | 2562 | const char *name, int name_len) | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2563 | { | 
|  | 2564 | struct btrfs_path *path; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2565 | int ret = 0; | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2566 | struct extent_buffer *leaf; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2567 | struct btrfs_dir_item *di; | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2568 | struct btrfs_key key; | 
| Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 2569 | u64 index; | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 2570 | u64 ino = btrfs_ino(inode); | 
|  | 2571 | u64 dir_ino = btrfs_ino(dir); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2572 |  | 
|  | 2573 | path = btrfs_alloc_path(); | 
| Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 2574 | if (!path) { | 
|  | 2575 | ret = -ENOMEM; | 
| Tsutomu Itoh | 554233a | 2011-02-03 03:16:25 +0000 | [diff] [blame] | 2576 | goto out; | 
| Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 2577 | } | 
|  | 2578 |  | 
| Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 2579 | path->leave_spinning = 1; | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 2580 | di = btrfs_lookup_dir_item(trans, root, path, dir_ino, | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2581 | name, name_len, -1); | 
|  | 2582 | if (IS_ERR(di)) { | 
|  | 2583 | ret = PTR_ERR(di); | 
|  | 2584 | goto err; | 
|  | 2585 | } | 
|  | 2586 | if (!di) { | 
|  | 2587 | ret = -ENOENT; | 
|  | 2588 | goto err; | 
|  | 2589 | } | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2590 | leaf = path->nodes[0]; | 
|  | 2591 | btrfs_dir_item_key_to_cpu(leaf, di, &key); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2592 | ret = btrfs_delete_one_dir_name(trans, root, path, di); | 
| Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 2593 | if (ret) | 
|  | 2594 | goto err; | 
| David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2595 | btrfs_release_path(path); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2596 |  | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 2597 | ret = btrfs_del_inode_ref(trans, root, name, name_len, ino, | 
|  | 2598 | dir_ino, &index); | 
| Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 2599 | if (ret) { | 
| Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2600 | printk(KERN_INFO "btrfs failed to delete reference to %.*s, " | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 2601 | "inode %llu parent %llu\n", name_len, name, | 
|  | 2602 | (unsigned long long)ino, (unsigned long long)dir_ino); | 
| Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 2603 | goto err; | 
|  | 2604 | } | 
|  | 2605 |  | 
| Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 2606 | ret = btrfs_delete_delayed_dir_index(trans, root, dir, index); | 
|  | 2607 | if (ret) | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2608 | goto err; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2609 |  | 
| Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2610 | ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len, | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 2611 | inode, dir_ino); | 
| Chris Mason | 49eb7e4 | 2008-09-11 15:53:12 -0400 | [diff] [blame] | 2612 | BUG_ON(ret != 0 && ret != -ENOENT); | 
| Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2613 |  | 
|  | 2614 | ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len, | 
|  | 2615 | dir, index); | 
| Chris Mason | 6418c96 | 2010-10-30 07:34:24 -0400 | [diff] [blame] | 2616 | if (ret == -ENOENT) | 
|  | 2617 | ret = 0; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2618 | err: | 
|  | 2619 | btrfs_free_path(path); | 
| Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2620 | if (ret) | 
|  | 2621 | goto out; | 
|  | 2622 |  | 
|  | 2623 | btrfs_i_size_write(dir, dir->i_size - name_len * 2); | 
|  | 2624 | inode->i_ctime = dir->i_mtime = dir->i_ctime = CURRENT_TIME; | 
|  | 2625 | btrfs_update_inode(trans, root, dir); | 
| Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2626 | out: | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2627 | return ret; | 
|  | 2628 | } | 
|  | 2629 |  | 
| Al Viro | 9298679 | 2011-03-04 17:14:37 +0000 | [diff] [blame] | 2630 | int btrfs_unlink_inode(struct btrfs_trans_handle *trans, | 
|  | 2631 | struct btrfs_root *root, | 
|  | 2632 | struct inode *dir, struct inode *inode, | 
|  | 2633 | const char *name, int name_len) | 
|  | 2634 | { | 
|  | 2635 | int ret; | 
|  | 2636 | ret = __btrfs_unlink_inode(trans, root, dir, inode, name, name_len); | 
|  | 2637 | if (!ret) { | 
|  | 2638 | btrfs_drop_nlink(inode); | 
|  | 2639 | ret = btrfs_update_inode(trans, root, inode); | 
|  | 2640 | } | 
|  | 2641 | return ret; | 
|  | 2642 | } | 
|  | 2643 |  | 
|  | 2644 |  | 
| Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2645 | /* helper to check if there is any shared block in the path */ | 
|  | 2646 | static int check_path_shared(struct btrfs_root *root, | 
|  | 2647 | struct btrfs_path *path) | 
|  | 2648 | { | 
|  | 2649 | struct extent_buffer *eb; | 
|  | 2650 | int level; | 
| Dan Carpenter | 0e4dcbe | 2010-06-01 08:23:11 +0000 | [diff] [blame] | 2651 | u64 refs = 1; | 
| Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2652 |  | 
|  | 2653 | for (level = 0; level < BTRFS_MAX_LEVEL; level++) { | 
| Josef Bacik | dedefd7 | 2011-01-24 21:43:18 +0000 | [diff] [blame] | 2654 | int ret; | 
|  | 2655 |  | 
| Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2656 | if (!path->nodes[level]) | 
|  | 2657 | break; | 
|  | 2658 | eb = path->nodes[level]; | 
|  | 2659 | if (!btrfs_block_can_be_shared(root, eb)) | 
|  | 2660 | continue; | 
|  | 2661 | ret = btrfs_lookup_extent_info(NULL, root, eb->start, eb->len, | 
|  | 2662 | &refs, NULL); | 
|  | 2663 | if (refs > 1) | 
|  | 2664 | return 1; | 
|  | 2665 | } | 
| Josef Bacik | dedefd7 | 2011-01-24 21:43:18 +0000 | [diff] [blame] | 2666 | return 0; | 
| Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2667 | } | 
|  | 2668 |  | 
|  | 2669 | /* | 
|  | 2670 | * helper to start transaction for unlink and rmdir. | 
|  | 2671 | * | 
|  | 2672 | * unlink and rmdir are special in btrfs, they do not always free space. | 
|  | 2673 | * so in enospc case, we should make sure they will free space before | 
|  | 2674 | * allowing them to use the global metadata reservation. | 
|  | 2675 | */ | 
|  | 2676 | static struct btrfs_trans_handle *__unlink_start_trans(struct inode *dir, | 
|  | 2677 | struct dentry *dentry) | 
|  | 2678 | { | 
|  | 2679 | struct btrfs_trans_handle *trans; | 
|  | 2680 | struct btrfs_root *root = BTRFS_I(dir)->root; | 
|  | 2681 | struct btrfs_path *path; | 
|  | 2682 | struct btrfs_inode_ref *ref; | 
|  | 2683 | struct btrfs_dir_item *di; | 
|  | 2684 | struct inode *inode = dentry->d_inode; | 
|  | 2685 | u64 index; | 
|  | 2686 | int check_link = 1; | 
|  | 2687 | int err = -ENOSPC; | 
|  | 2688 | int ret; | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 2689 | u64 ino = btrfs_ino(inode); | 
|  | 2690 | u64 dir_ino = btrfs_ino(dir); | 
| Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2691 |  | 
| Josef Bacik | e70bea5 | 2011-10-11 14:18:24 -0400 | [diff] [blame] | 2692 | /* | 
|  | 2693 | * 1 for the possible orphan item | 
|  | 2694 | * 1 for the dir item | 
|  | 2695 | * 1 for the dir index | 
|  | 2696 | * 1 for the inode ref | 
|  | 2697 | * 1 for the inode ref in the tree log | 
|  | 2698 | * 2 for the dir entries in the log | 
|  | 2699 | * 1 for the inode | 
|  | 2700 | */ | 
|  | 2701 | trans = btrfs_start_transaction(root, 8); | 
| Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2702 | if (!IS_ERR(trans) || PTR_ERR(trans) != -ENOSPC) | 
|  | 2703 | return trans; | 
|  | 2704 |  | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 2705 | if (ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID) | 
| Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2706 | return ERR_PTR(-ENOSPC); | 
|  | 2707 |  | 
|  | 2708 | /* check if there is someone else holds reference */ | 
|  | 2709 | if (S_ISDIR(inode->i_mode) && atomic_read(&inode->i_count) > 1) | 
|  | 2710 | return ERR_PTR(-ENOSPC); | 
|  | 2711 |  | 
|  | 2712 | if (atomic_read(&inode->i_count) > 2) | 
|  | 2713 | return ERR_PTR(-ENOSPC); | 
|  | 2714 |  | 
|  | 2715 | if (xchg(&root->fs_info->enospc_unlink, 1)) | 
|  | 2716 | return ERR_PTR(-ENOSPC); | 
|  | 2717 |  | 
|  | 2718 | path = btrfs_alloc_path(); | 
|  | 2719 | if (!path) { | 
|  | 2720 | root->fs_info->enospc_unlink = 0; | 
|  | 2721 | return ERR_PTR(-ENOMEM); | 
|  | 2722 | } | 
|  | 2723 |  | 
| Josef Bacik | 3880a1b | 2011-10-14 14:46:51 -0400 | [diff] [blame] | 2724 | /* 1 for the orphan item */ | 
|  | 2725 | trans = btrfs_start_transaction(root, 1); | 
| Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2726 | if (IS_ERR(trans)) { | 
|  | 2727 | btrfs_free_path(path); | 
|  | 2728 | root->fs_info->enospc_unlink = 0; | 
|  | 2729 | return trans; | 
|  | 2730 | } | 
|  | 2731 |  | 
|  | 2732 | path->skip_locking = 1; | 
|  | 2733 | path->search_commit_root = 1; | 
|  | 2734 |  | 
|  | 2735 | ret = btrfs_lookup_inode(trans, root, path, | 
|  | 2736 | &BTRFS_I(dir)->location, 0); | 
|  | 2737 | if (ret < 0) { | 
|  | 2738 | err = ret; | 
|  | 2739 | goto out; | 
|  | 2740 | } | 
|  | 2741 | if (ret == 0) { | 
|  | 2742 | if (check_path_shared(root, path)) | 
|  | 2743 | goto out; | 
|  | 2744 | } else { | 
|  | 2745 | check_link = 0; | 
|  | 2746 | } | 
| David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2747 | btrfs_release_path(path); | 
| Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2748 |  | 
|  | 2749 | ret = btrfs_lookup_inode(trans, root, path, | 
|  | 2750 | &BTRFS_I(inode)->location, 0); | 
|  | 2751 | if (ret < 0) { | 
|  | 2752 | err = ret; | 
|  | 2753 | goto out; | 
|  | 2754 | } | 
|  | 2755 | if (ret == 0) { | 
|  | 2756 | if (check_path_shared(root, path)) | 
|  | 2757 | goto out; | 
|  | 2758 | } else { | 
|  | 2759 | check_link = 0; | 
|  | 2760 | } | 
| David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2761 | btrfs_release_path(path); | 
| Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2762 |  | 
|  | 2763 | if (ret == 0 && S_ISREG(inode->i_mode)) { | 
|  | 2764 | ret = btrfs_lookup_file_extent(trans, root, path, | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 2765 | ino, (u64)-1, 0); | 
| Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2766 | if (ret < 0) { | 
|  | 2767 | err = ret; | 
|  | 2768 | goto out; | 
|  | 2769 | } | 
|  | 2770 | BUG_ON(ret == 0); | 
|  | 2771 | if (check_path_shared(root, path)) | 
|  | 2772 | goto out; | 
| David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2773 | btrfs_release_path(path); | 
| Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2774 | } | 
|  | 2775 |  | 
|  | 2776 | if (!check_link) { | 
|  | 2777 | err = 0; | 
|  | 2778 | goto out; | 
|  | 2779 | } | 
|  | 2780 |  | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 2781 | di = btrfs_lookup_dir_item(trans, root, path, dir_ino, | 
| Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2782 | dentry->d_name.name, dentry->d_name.len, 0); | 
|  | 2783 | if (IS_ERR(di)) { | 
|  | 2784 | err = PTR_ERR(di); | 
|  | 2785 | goto out; | 
|  | 2786 | } | 
|  | 2787 | if (di) { | 
|  | 2788 | if (check_path_shared(root, path)) | 
|  | 2789 | goto out; | 
|  | 2790 | } else { | 
|  | 2791 | err = 0; | 
|  | 2792 | goto out; | 
|  | 2793 | } | 
| David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2794 | btrfs_release_path(path); | 
| Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2795 |  | 
|  | 2796 | ref = btrfs_lookup_inode_ref(trans, root, path, | 
|  | 2797 | dentry->d_name.name, dentry->d_name.len, | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 2798 | ino, dir_ino, 0); | 
| Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2799 | if (IS_ERR(ref)) { | 
|  | 2800 | err = PTR_ERR(ref); | 
|  | 2801 | goto out; | 
|  | 2802 | } | 
|  | 2803 | BUG_ON(!ref); | 
|  | 2804 | if (check_path_shared(root, path)) | 
|  | 2805 | goto out; | 
|  | 2806 | index = btrfs_inode_ref_index(path->nodes[0], ref); | 
| David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2807 | btrfs_release_path(path); | 
| Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2808 |  | 
| Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 2809 | /* | 
|  | 2810 | * This is a commit root search, if we can lookup inode item and other | 
|  | 2811 | * relative items in the commit root, it means the transaction of | 
|  | 2812 | * dir/file creation has been committed, and the dir index item that we | 
|  | 2813 | * delay to insert has also been inserted into the commit root. So | 
|  | 2814 | * we needn't worry about the delayed insertion of the dir index item | 
|  | 2815 | * here. | 
|  | 2816 | */ | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 2817 | di = btrfs_lookup_dir_index_item(trans, root, path, dir_ino, index, | 
| Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2818 | dentry->d_name.name, dentry->d_name.len, 0); | 
|  | 2819 | if (IS_ERR(di)) { | 
|  | 2820 | err = PTR_ERR(di); | 
|  | 2821 | goto out; | 
|  | 2822 | } | 
|  | 2823 | BUG_ON(ret == -ENOENT); | 
|  | 2824 | if (check_path_shared(root, path)) | 
|  | 2825 | goto out; | 
|  | 2826 |  | 
|  | 2827 | err = 0; | 
|  | 2828 | out: | 
|  | 2829 | btrfs_free_path(path); | 
| Josef Bacik | 3880a1b | 2011-10-14 14:46:51 -0400 | [diff] [blame] | 2830 | /* Migrate the orphan reservation over */ | 
|  | 2831 | if (!err) | 
|  | 2832 | err = btrfs_block_rsv_migrate(trans->block_rsv, | 
|  | 2833 | &root->fs_info->global_block_rsv, | 
| Josef Bacik | 5a77d76 | 2011-11-01 14:32:23 -0400 | [diff] [blame] | 2834 | trans->bytes_reserved); | 
| Josef Bacik | 3880a1b | 2011-10-14 14:46:51 -0400 | [diff] [blame] | 2835 |  | 
| Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2836 | if (err) { | 
|  | 2837 | btrfs_end_transaction(trans, root); | 
|  | 2838 | root->fs_info->enospc_unlink = 0; | 
|  | 2839 | return ERR_PTR(err); | 
|  | 2840 | } | 
|  | 2841 |  | 
|  | 2842 | trans->block_rsv = &root->fs_info->global_block_rsv; | 
|  | 2843 | return trans; | 
|  | 2844 | } | 
|  | 2845 |  | 
|  | 2846 | static void __unlink_end_trans(struct btrfs_trans_handle *trans, | 
|  | 2847 | struct btrfs_root *root) | 
|  | 2848 | { | 
|  | 2849 | if (trans->block_rsv == &root->fs_info->global_block_rsv) { | 
| Josef Bacik | 5a77d76 | 2011-11-01 14:32:23 -0400 | [diff] [blame] | 2850 | btrfs_block_rsv_release(root, trans->block_rsv, | 
|  | 2851 | trans->bytes_reserved); | 
|  | 2852 | trans->block_rsv = &root->fs_info->trans_block_rsv; | 
| Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2853 | BUG_ON(!root->fs_info->enospc_unlink); | 
|  | 2854 | root->fs_info->enospc_unlink = 0; | 
|  | 2855 | } | 
| Josef Bacik | 7ad85bb | 2012-01-12 19:10:12 -0500 | [diff] [blame] | 2856 | btrfs_end_transaction(trans, root); | 
| Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2857 | } | 
|  | 2858 |  | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2859 | static int btrfs_unlink(struct inode *dir, struct dentry *dentry) | 
|  | 2860 | { | 
| Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2861 | struct btrfs_root *root = BTRFS_I(dir)->root; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2862 | struct btrfs_trans_handle *trans; | 
| Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2863 | struct inode *inode = dentry->d_inode; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2864 | int ret; | 
| Chris Mason | 1832a6d | 2007-12-21 16:27:21 -0500 | [diff] [blame] | 2865 | unsigned long nr = 0; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2866 |  | 
| Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2867 | trans = __unlink_start_trans(dir, dentry); | 
|  | 2868 | if (IS_ERR(trans)) | 
| Josef Bacik | 5df6a9f | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 2869 | return PTR_ERR(trans); | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2870 |  | 
| Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 2871 | btrfs_record_unlink_dir(trans, dir, dentry->d_inode, 0); | 
|  | 2872 |  | 
| Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2873 | ret = btrfs_unlink_inode(trans, root, dir, dentry->d_inode, | 
|  | 2874 | dentry->d_name.name, dentry->d_name.len); | 
| Tsutomu Itoh | b532402 | 2011-07-19 07:27:20 +0000 | [diff] [blame] | 2875 | if (ret) | 
|  | 2876 | goto out; | 
| Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2877 |  | 
| Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2878 | if (inode->i_nlink == 0) { | 
| Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2879 | ret = btrfs_orphan_add(trans, inode); | 
| Tsutomu Itoh | b532402 | 2011-07-19 07:27:20 +0000 | [diff] [blame] | 2880 | if (ret) | 
|  | 2881 | goto out; | 
| Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2882 | } | 
| Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2883 |  | 
| Tsutomu Itoh | b532402 | 2011-07-19 07:27:20 +0000 | [diff] [blame] | 2884 | out: | 
| Chris Mason | d3c2fdc | 2007-09-17 10:58:06 -0400 | [diff] [blame] | 2885 | nr = trans->blocks_used; | 
| Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2886 | __unlink_end_trans(trans, root); | 
| Chris Mason | d3c2fdc | 2007-09-17 10:58:06 -0400 | [diff] [blame] | 2887 | btrfs_btree_balance_dirty(root, nr); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2888 | return ret; | 
|  | 2889 | } | 
|  | 2890 |  | 
| Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 2891 | int btrfs_unlink_subvol(struct btrfs_trans_handle *trans, | 
|  | 2892 | struct btrfs_root *root, | 
|  | 2893 | struct inode *dir, u64 objectid, | 
|  | 2894 | const char *name, int name_len) | 
|  | 2895 | { | 
|  | 2896 | struct btrfs_path *path; | 
|  | 2897 | struct extent_buffer *leaf; | 
|  | 2898 | struct btrfs_dir_item *di; | 
|  | 2899 | struct btrfs_key key; | 
|  | 2900 | u64 index; | 
|  | 2901 | int ret; | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 2902 | u64 dir_ino = btrfs_ino(dir); | 
| Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 2903 |  | 
|  | 2904 | path = btrfs_alloc_path(); | 
|  | 2905 | if (!path) | 
|  | 2906 | return -ENOMEM; | 
|  | 2907 |  | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 2908 | di = btrfs_lookup_dir_item(trans, root, path, dir_ino, | 
| Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 2909 | name, name_len, -1); | 
| David Sterba | c704005 | 2011-04-19 18:00:01 +0200 | [diff] [blame] | 2910 | BUG_ON(IS_ERR_OR_NULL(di)); | 
| Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 2911 |  | 
|  | 2912 | leaf = path->nodes[0]; | 
|  | 2913 | btrfs_dir_item_key_to_cpu(leaf, di, &key); | 
|  | 2914 | WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid); | 
|  | 2915 | ret = btrfs_delete_one_dir_name(trans, root, path, di); | 
|  | 2916 | BUG_ON(ret); | 
| David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2917 | btrfs_release_path(path); | 
| Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 2918 |  | 
|  | 2919 | ret = btrfs_del_root_ref(trans, root->fs_info->tree_root, | 
|  | 2920 | objectid, root->root_key.objectid, | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 2921 | dir_ino, &index, name, name_len); | 
| Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 2922 | if (ret < 0) { | 
|  | 2923 | BUG_ON(ret != -ENOENT); | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 2924 | di = btrfs_search_dir_index_item(root, path, dir_ino, | 
| Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 2925 | name, name_len); | 
| David Sterba | c704005 | 2011-04-19 18:00:01 +0200 | [diff] [blame] | 2926 | BUG_ON(IS_ERR_OR_NULL(di)); | 
| Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 2927 |  | 
|  | 2928 | leaf = path->nodes[0]; | 
|  | 2929 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); | 
| David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2930 | btrfs_release_path(path); | 
| Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 2931 | index = key.offset; | 
|  | 2932 | } | 
| David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2933 | btrfs_release_path(path); | 
| Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 2934 |  | 
| Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 2935 | ret = btrfs_delete_delayed_dir_index(trans, root, dir, index); | 
|  | 2936 | BUG_ON(ret); | 
|  | 2937 |  | 
| Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 2938 | btrfs_i_size_write(dir, dir->i_size - name_len * 2); | 
|  | 2939 | dir->i_mtime = dir->i_ctime = CURRENT_TIME; | 
|  | 2940 | ret = btrfs_update_inode(trans, root, dir); | 
|  | 2941 | BUG_ON(ret); | 
| Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 2942 |  | 
| Josef Bacik | 71d7aed | 2011-06-14 14:24:32 -0400 | [diff] [blame] | 2943 | btrfs_free_path(path); | 
| Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 2944 | return 0; | 
|  | 2945 | } | 
|  | 2946 |  | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2947 | static int btrfs_rmdir(struct inode *dir, struct dentry *dentry) | 
|  | 2948 | { | 
|  | 2949 | struct inode *inode = dentry->d_inode; | 
| Chris Mason | 1832a6d | 2007-12-21 16:27:21 -0500 | [diff] [blame] | 2950 | int err = 0; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2951 | struct btrfs_root *root = BTRFS_I(dir)->root; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2952 | struct btrfs_trans_handle *trans; | 
| Chris Mason | 1832a6d | 2007-12-21 16:27:21 -0500 | [diff] [blame] | 2953 | unsigned long nr = 0; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2954 |  | 
| Chris Mason | 3394e16 | 2008-11-17 20:42:26 -0500 | [diff] [blame] | 2955 | if (inode->i_size > BTRFS_EMPTY_DIR_SIZE || | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 2956 | btrfs_ino(inode) == BTRFS_FIRST_FREE_OBJECTID) | 
| Yan | 134d451 | 2007-10-25 15:49:25 -0400 | [diff] [blame] | 2957 | return -ENOTEMPTY; | 
|  | 2958 |  | 
| Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2959 | trans = __unlink_start_trans(dir, dentry); | 
|  | 2960 | if (IS_ERR(trans)) | 
| Josef Bacik | 5df6a9f | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 2961 | return PTR_ERR(trans); | 
| Josef Bacik | 5df6a9f | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 2962 |  | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 2963 | if (unlikely(btrfs_ino(inode) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) { | 
| Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 2964 | err = btrfs_unlink_subvol(trans, root, dir, | 
|  | 2965 | BTRFS_I(inode)->location.objectid, | 
|  | 2966 | dentry->d_name.name, | 
|  | 2967 | dentry->d_name.len); | 
|  | 2968 | goto out; | 
|  | 2969 | } | 
|  | 2970 |  | 
| Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2971 | err = btrfs_orphan_add(trans, inode); | 
|  | 2972 | if (err) | 
| Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 2973 | goto out; | 
| Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2974 |  | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2975 | /* now the directory is empty */ | 
| Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2976 | err = btrfs_unlink_inode(trans, root, dir, dentry->d_inode, | 
|  | 2977 | dentry->d_name.name, dentry->d_name.len); | 
| Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2978 | if (!err) | 
| Chris Mason | dbe674a | 2008-07-17 12:54:05 -0400 | [diff] [blame] | 2979 | btrfs_i_size_write(inode, 0); | 
| Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 2980 | out: | 
| Chris Mason | d3c2fdc | 2007-09-17 10:58:06 -0400 | [diff] [blame] | 2981 | nr = trans->blocks_used; | 
| Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2982 | __unlink_end_trans(trans, root); | 
| Chris Mason | d3c2fdc | 2007-09-17 10:58:06 -0400 | [diff] [blame] | 2983 | btrfs_btree_balance_dirty(root, nr); | 
| Chris Mason | 3954401 | 2007-12-12 14:38:19 -0500 | [diff] [blame] | 2984 |  | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2985 | return err; | 
|  | 2986 | } | 
|  | 2987 |  | 
| Chris Mason | 323ac95 | 2008-10-01 19:05:46 -0400 | [diff] [blame] | 2988 | /* | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2989 | * this can truncate away extent items, csum items and directory items. | 
|  | 2990 | * It starts at a high offset and removes keys until it can't find | 
| Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 2991 | * any higher than new_size | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2992 | * | 
|  | 2993 | * csum items that cross the new i_size are truncated to the new size | 
|  | 2994 | * as well. | 
| Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2995 | * | 
|  | 2996 | * min_type is the minimum key type to truncate down to.  If set to 0, this | 
|  | 2997 | * will kill all the items on this inode, including the INODE_ITEM_KEY. | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2998 | */ | 
| Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 2999 | int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans, | 
|  | 3000 | struct btrfs_root *root, | 
|  | 3001 | struct inode *inode, | 
|  | 3002 | u64 new_size, u32 min_type) | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3003 | { | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3004 | struct btrfs_path *path; | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3005 | struct extent_buffer *leaf; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3006 | struct btrfs_file_extent_item *fi; | 
| Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3007 | struct btrfs_key key; | 
|  | 3008 | struct btrfs_key found_key; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3009 | u64 extent_start = 0; | 
| Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 3010 | u64 extent_num_bytes = 0; | 
| Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3011 | u64 extent_offset = 0; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3012 | u64 item_end = 0; | 
| Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3013 | u64 mask = root->sectorsize - 1; | 
|  | 3014 | u32 found_type = (u8)-1; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3015 | int found_extent; | 
|  | 3016 | int del_item; | 
| Chris Mason | 85e21ba | 2008-01-29 15:11:36 -0500 | [diff] [blame] | 3017 | int pending_del_nr = 0; | 
|  | 3018 | int pending_del_slot = 0; | 
| Chris Mason | 179e29e | 2007-11-01 11:28:41 -0400 | [diff] [blame] | 3019 | int extent_type = -1; | 
| Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3020 | int ret; | 
|  | 3021 | int err = 0; | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3022 | u64 ino = btrfs_ino(inode); | 
| Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3023 |  | 
|  | 3024 | BUG_ON(new_size > 0 && min_type != BTRFS_EXTENT_DATA_KEY); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3025 |  | 
| Mark Fasheh | 0eb0e19 | 2011-07-12 16:44:10 -0700 | [diff] [blame] | 3026 | path = btrfs_alloc_path(); | 
|  | 3027 | if (!path) | 
|  | 3028 | return -ENOMEM; | 
|  | 3029 | path->reada = -1; | 
|  | 3030 |  | 
| Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3031 | if (root->ref_cows || root == root->fs_info->tree_root) | 
| Zheng Yan | 5b21f2e | 2008-09-26 10:05:38 -0400 | [diff] [blame] | 3032 | btrfs_drop_extent_cache(inode, new_size & (~mask), (u64)-1, 0); | 
| Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3033 |  | 
| Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 3034 | /* | 
|  | 3035 | * This function is also used to drop the items in the log tree before | 
|  | 3036 | * we relog the inode, so if root != BTRFS_I(inode)->root, it means | 
|  | 3037 | * it is used to drop the loged items. So we shouldn't kill the delayed | 
|  | 3038 | * items. | 
|  | 3039 | */ | 
|  | 3040 | if (min_type == 0 && root == BTRFS_I(inode)->root) | 
|  | 3041 | btrfs_kill_delayed_inode_items(inode); | 
|  | 3042 |  | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3043 | key.objectid = ino; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3044 | key.offset = (u64)-1; | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3045 | key.type = (u8)-1; | 
|  | 3046 |  | 
| Chris Mason | 85e21ba | 2008-01-29 15:11:36 -0500 | [diff] [blame] | 3047 | search_again: | 
| Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 3048 | path->leave_spinning = 1; | 
| Chris Mason | 85e21ba | 2008-01-29 15:11:36 -0500 | [diff] [blame] | 3049 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); | 
| Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3050 | if (ret < 0) { | 
|  | 3051 | err = ret; | 
|  | 3052 | goto out; | 
|  | 3053 | } | 
| Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3054 |  | 
| Chris Mason | 85e21ba | 2008-01-29 15:11:36 -0500 | [diff] [blame] | 3055 | if (ret > 0) { | 
| Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3056 | /* there are no items in the tree for us to truncate, we're | 
|  | 3057 | * done | 
|  | 3058 | */ | 
| Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3059 | if (path->slots[0] == 0) | 
|  | 3060 | goto out; | 
| Chris Mason | 85e21ba | 2008-01-29 15:11:36 -0500 | [diff] [blame] | 3061 | path->slots[0]--; | 
|  | 3062 | } | 
|  | 3063 |  | 
| Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3064 | while (1) { | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3065 | fi = NULL; | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3066 | leaf = path->nodes[0]; | 
|  | 3067 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); | 
|  | 3068 | found_type = btrfs_key_type(&found_key); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3069 |  | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3070 | if (found_key.objectid != ino) | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3071 | break; | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3072 |  | 
| Chris Mason | 85e21ba | 2008-01-29 15:11:36 -0500 | [diff] [blame] | 3073 | if (found_type < min_type) | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3074 | break; | 
|  | 3075 |  | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3076 | item_end = found_key.offset; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3077 | if (found_type == BTRFS_EXTENT_DATA_KEY) { | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3078 | fi = btrfs_item_ptr(leaf, path->slots[0], | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3079 | struct btrfs_file_extent_item); | 
| Chris Mason | 179e29e | 2007-11-01 11:28:41 -0400 | [diff] [blame] | 3080 | extent_type = btrfs_file_extent_type(leaf, fi); | 
|  | 3081 | if (extent_type != BTRFS_FILE_EXTENT_INLINE) { | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3082 | item_end += | 
| Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 3083 | btrfs_file_extent_num_bytes(leaf, fi); | 
| Chris Mason | 179e29e | 2007-11-01 11:28:41 -0400 | [diff] [blame] | 3084 | } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) { | 
| Chris Mason | 179e29e | 2007-11-01 11:28:41 -0400 | [diff] [blame] | 3085 | item_end += btrfs_file_extent_inline_len(leaf, | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 3086 | fi); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3087 | } | 
| Yan | 008630c | 2007-11-07 13:31:09 -0500 | [diff] [blame] | 3088 | item_end--; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3089 | } | 
| Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3090 | if (found_type > min_type) { | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3091 | del_item = 1; | 
| Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3092 | } else { | 
|  | 3093 | if (item_end < new_size) | 
|  | 3094 | break; | 
|  | 3095 | if (found_key.offset >= new_size) | 
|  | 3096 | del_item = 1; | 
|  | 3097 | else | 
|  | 3098 | del_item = 0; | 
|  | 3099 | } | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3100 | found_extent = 0; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3101 | /* FIXME, shrink the extent if the ref count is only 1 */ | 
| Chris Mason | 179e29e | 2007-11-01 11:28:41 -0400 | [diff] [blame] | 3102 | if (found_type != BTRFS_EXTENT_DATA_KEY) | 
|  | 3103 | goto delete; | 
|  | 3104 |  | 
|  | 3105 | if (extent_type != BTRFS_FILE_EXTENT_INLINE) { | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3106 | u64 num_dec; | 
| Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 3107 | extent_start = btrfs_file_extent_disk_bytenr(leaf, fi); | 
| Miao Xie | f70a9a6 | 2012-01-12 19:10:12 -0500 | [diff] [blame] | 3108 | if (!del_item) { | 
| Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 3109 | u64 orig_num_bytes = | 
|  | 3110 | btrfs_file_extent_num_bytes(leaf, fi); | 
| Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3111 | extent_num_bytes = new_size - | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3112 | found_key.offset + root->sectorsize - 1; | 
| Yan | b1632b1 | 2008-01-30 11:54:04 -0500 | [diff] [blame] | 3113 | extent_num_bytes = extent_num_bytes & | 
|  | 3114 | ~((u64)root->sectorsize - 1); | 
| Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 3115 | btrfs_set_file_extent_num_bytes(leaf, fi, | 
|  | 3116 | extent_num_bytes); | 
|  | 3117 | num_dec = (orig_num_bytes - | 
| Chris Mason | 9069218 | 2008-02-08 13:49:28 -0500 | [diff] [blame] | 3118 | extent_num_bytes); | 
| Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3119 | if (root->ref_cows && extent_start != 0) | 
| Yan Zheng | a76a3cd | 2008-10-09 11:46:29 -0400 | [diff] [blame] | 3120 | inode_sub_bytes(inode, num_dec); | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3121 | btrfs_mark_buffer_dirty(leaf); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3122 | } else { | 
| Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 3123 | extent_num_bytes = | 
|  | 3124 | btrfs_file_extent_disk_num_bytes(leaf, | 
|  | 3125 | fi); | 
| Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3126 | extent_offset = found_key.offset - | 
|  | 3127 | btrfs_file_extent_offset(leaf, fi); | 
|  | 3128 |  | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3129 | /* FIXME blocksize != 4096 */ | 
| Chris Mason | 9069218 | 2008-02-08 13:49:28 -0500 | [diff] [blame] | 3130 | num_dec = btrfs_file_extent_num_bytes(leaf, fi); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3131 | if (extent_start != 0) { | 
|  | 3132 | found_extent = 1; | 
| Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3133 | if (root->ref_cows) | 
| Yan Zheng | a76a3cd | 2008-10-09 11:46:29 -0400 | [diff] [blame] | 3134 | inode_sub_bytes(inode, num_dec); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3135 | } | 
|  | 3136 | } | 
| Chris Mason | 9069218 | 2008-02-08 13:49:28 -0500 | [diff] [blame] | 3137 | } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) { | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 3138 | /* | 
|  | 3139 | * we can't truncate inline items that have had | 
|  | 3140 | * special encodings | 
|  | 3141 | */ | 
|  | 3142 | if (!del_item && | 
|  | 3143 | btrfs_file_extent_compression(leaf, fi) == 0 && | 
|  | 3144 | btrfs_file_extent_encryption(leaf, fi) == 0 && | 
|  | 3145 | btrfs_file_extent_other_encoding(leaf, fi) == 0) { | 
| Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3146 | u32 size = new_size - found_key.offset; | 
|  | 3147 |  | 
|  | 3148 | if (root->ref_cows) { | 
| Yan Zheng | a76a3cd | 2008-10-09 11:46:29 -0400 | [diff] [blame] | 3149 | inode_sub_bytes(inode, item_end + 1 - | 
|  | 3150 | new_size); | 
| Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3151 | } | 
|  | 3152 | size = | 
|  | 3153 | btrfs_file_extent_calc_inline_size(size); | 
| Chris Mason | 9069218 | 2008-02-08 13:49:28 -0500 | [diff] [blame] | 3154 | ret = btrfs_truncate_item(trans, root, path, | 
| Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3155 | size, 1); | 
| Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3156 | } else if (root->ref_cows) { | 
| Yan Zheng | a76a3cd | 2008-10-09 11:46:29 -0400 | [diff] [blame] | 3157 | inode_sub_bytes(inode, item_end + 1 - | 
|  | 3158 | found_key.offset); | 
| Chris Mason | 9069218 | 2008-02-08 13:49:28 -0500 | [diff] [blame] | 3159 | } | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3160 | } | 
| Chris Mason | 179e29e | 2007-11-01 11:28:41 -0400 | [diff] [blame] | 3161 | delete: | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3162 | if (del_item) { | 
| Chris Mason | 85e21ba | 2008-01-29 15:11:36 -0500 | [diff] [blame] | 3163 | if (!pending_del_nr) { | 
|  | 3164 | /* no pending yet, add ourselves */ | 
|  | 3165 | pending_del_slot = path->slots[0]; | 
|  | 3166 | pending_del_nr = 1; | 
|  | 3167 | } else if (pending_del_nr && | 
|  | 3168 | path->slots[0] + 1 == pending_del_slot) { | 
|  | 3169 | /* hop on the pending chunk */ | 
|  | 3170 | pending_del_nr++; | 
|  | 3171 | pending_del_slot = path->slots[0]; | 
|  | 3172 | } else { | 
| Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3173 | BUG(); | 
| Chris Mason | 85e21ba | 2008-01-29 15:11:36 -0500 | [diff] [blame] | 3174 | } | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3175 | } else { | 
|  | 3176 | break; | 
|  | 3177 | } | 
| Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3178 | if (found_extent && (root->ref_cows || | 
|  | 3179 | root == root->fs_info->tree_root)) { | 
| Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 3180 | btrfs_set_path_blocking(path); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3181 | ret = btrfs_free_extent(trans, root, extent_start, | 
| Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3182 | extent_num_bytes, 0, | 
|  | 3183 | btrfs_header_owner(leaf), | 
| Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 3184 | ino, extent_offset, 0); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3185 | BUG_ON(ret); | 
|  | 3186 | } | 
| Chris Mason | 85e21ba | 2008-01-29 15:11:36 -0500 | [diff] [blame] | 3187 |  | 
| Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3188 | if (found_type == BTRFS_INODE_ITEM_KEY) | 
|  | 3189 | break; | 
|  | 3190 |  | 
|  | 3191 | if (path->slots[0] == 0 || | 
|  | 3192 | path->slots[0] != pending_del_slot) { | 
| Li Zefan | 82d5902 | 2011-04-20 10:33:24 +0800 | [diff] [blame] | 3193 | if (root->ref_cows && | 
|  | 3194 | BTRFS_I(inode)->location.objectid != | 
|  | 3195 | BTRFS_FREE_INO_OBJECTID) { | 
| Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3196 | err = -EAGAIN; | 
|  | 3197 | goto out; | 
|  | 3198 | } | 
|  | 3199 | if (pending_del_nr) { | 
|  | 3200 | ret = btrfs_del_items(trans, root, path, | 
|  | 3201 | pending_del_slot, | 
|  | 3202 | pending_del_nr); | 
|  | 3203 | BUG_ON(ret); | 
|  | 3204 | pending_del_nr = 0; | 
|  | 3205 | } | 
| David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3206 | btrfs_release_path(path); | 
| Chris Mason | 85e21ba | 2008-01-29 15:11:36 -0500 | [diff] [blame] | 3207 | goto search_again; | 
| Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3208 | } else { | 
|  | 3209 | path->slots[0]--; | 
| Chris Mason | 85e21ba | 2008-01-29 15:11:36 -0500 | [diff] [blame] | 3210 | } | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3211 | } | 
| Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3212 | out: | 
| Chris Mason | 85e21ba | 2008-01-29 15:11:36 -0500 | [diff] [blame] | 3213 | if (pending_del_nr) { | 
|  | 3214 | ret = btrfs_del_items(trans, root, path, pending_del_slot, | 
|  | 3215 | pending_del_nr); | 
| Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 3216 | BUG_ON(ret); | 
| Chris Mason | 85e21ba | 2008-01-29 15:11:36 -0500 | [diff] [blame] | 3217 | } | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3218 | btrfs_free_path(path); | 
| Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3219 | return err; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3220 | } | 
|  | 3221 |  | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 3222 | /* | 
|  | 3223 | * taken from block_truncate_page, but does cow as it zeros out | 
|  | 3224 | * any bytes left in the last page in the file. | 
|  | 3225 | */ | 
|  | 3226 | static int btrfs_truncate_page(struct address_space *mapping, loff_t from) | 
|  | 3227 | { | 
|  | 3228 | struct inode *inode = mapping->host; | 
| Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 3229 | struct btrfs_root *root = BTRFS_I(inode)->root; | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 3230 | struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree; | 
|  | 3231 | struct btrfs_ordered_extent *ordered; | 
| Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 3232 | struct extent_state *cached_state = NULL; | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 3233 | char *kaddr; | 
| Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 3234 | u32 blocksize = root->sectorsize; | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 3235 | pgoff_t index = from >> PAGE_CACHE_SHIFT; | 
|  | 3236 | unsigned offset = from & (PAGE_CACHE_SIZE-1); | 
|  | 3237 | struct page *page; | 
| Josef Bacik | 3b16a4e | 2011-09-21 15:05:58 -0400 | [diff] [blame] | 3238 | gfp_t mask = btrfs_alloc_write_mask(mapping); | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 3239 | int ret = 0; | 
|  | 3240 | u64 page_start; | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 3241 | u64 page_end; | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 3242 |  | 
|  | 3243 | if ((offset & (blocksize - 1)) == 0) | 
|  | 3244 | goto out; | 
| Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 3245 | ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE); | 
| Josef Bacik | 5d5e103 | 2009-10-13 16:46:49 -0400 | [diff] [blame] | 3246 | if (ret) | 
|  | 3247 | goto out; | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 3248 |  | 
|  | 3249 | ret = -ENOMEM; | 
| Chris Mason | 211c17f | 2008-05-15 09:13:45 -0400 | [diff] [blame] | 3250 | again: | 
| Josef Bacik | 3b16a4e | 2011-09-21 15:05:58 -0400 | [diff] [blame] | 3251 | page = find_or_create_page(mapping, index, mask); | 
| Josef Bacik | 5d5e103 | 2009-10-13 16:46:49 -0400 | [diff] [blame] | 3252 | if (!page) { | 
| Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 3253 | btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE); | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 3254 | goto out; | 
| Josef Bacik | 5d5e103 | 2009-10-13 16:46:49 -0400 | [diff] [blame] | 3255 | } | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 3256 |  | 
|  | 3257 | page_start = page_offset(page); | 
|  | 3258 | page_end = page_start + PAGE_CACHE_SIZE - 1; | 
|  | 3259 |  | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 3260 | if (!PageUptodate(page)) { | 
|  | 3261 | ret = btrfs_readpage(NULL, page); | 
|  | 3262 | lock_page(page); | 
| Chris Mason | 211c17f | 2008-05-15 09:13:45 -0400 | [diff] [blame] | 3263 | if (page->mapping != mapping) { | 
|  | 3264 | unlock_page(page); | 
|  | 3265 | page_cache_release(page); | 
|  | 3266 | goto again; | 
|  | 3267 | } | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 3268 | if (!PageUptodate(page)) { | 
|  | 3269 | ret = -EIO; | 
| Chris Mason | 8964222 | 2008-07-24 09:41:53 -0400 | [diff] [blame] | 3270 | goto out_unlock; | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 3271 | } | 
|  | 3272 | } | 
| Chris Mason | 211c17f | 2008-05-15 09:13:45 -0400 | [diff] [blame] | 3273 | wait_on_page_writeback(page); | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 3274 |  | 
| Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 3275 | lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state, | 
|  | 3276 | GFP_NOFS); | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 3277 | set_page_extent_mapped(page); | 
|  | 3278 |  | 
|  | 3279 | ordered = btrfs_lookup_ordered_extent(inode, page_start); | 
|  | 3280 | if (ordered) { | 
| Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 3281 | unlock_extent_cached(io_tree, page_start, page_end, | 
|  | 3282 | &cached_state, GFP_NOFS); | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 3283 | unlock_page(page); | 
|  | 3284 | page_cache_release(page); | 
| Chris Mason | eb84ae0 | 2008-07-17 13:53:27 -0400 | [diff] [blame] | 3285 | btrfs_start_ordered_extent(inode, ordered, 1); | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 3286 | btrfs_put_ordered_extent(ordered); | 
|  | 3287 | goto again; | 
|  | 3288 | } | 
|  | 3289 |  | 
| Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 3290 | clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end, | 
| Josef Bacik | 5d5e103 | 2009-10-13 16:46:49 -0400 | [diff] [blame] | 3291 | EXTENT_DIRTY | EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING, | 
| Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 3292 | 0, 0, &cached_state, GFP_NOFS); | 
| Josef Bacik | 5d5e103 | 2009-10-13 16:46:49 -0400 | [diff] [blame] | 3293 |  | 
| Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 3294 | ret = btrfs_set_extent_delalloc(inode, page_start, page_end, | 
|  | 3295 | &cached_state); | 
| Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 3296 | if (ret) { | 
| Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 3297 | unlock_extent_cached(io_tree, page_start, page_end, | 
|  | 3298 | &cached_state, GFP_NOFS); | 
| Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 3299 | goto out_unlock; | 
|  | 3300 | } | 
|  | 3301 |  | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 3302 | ret = 0; | 
|  | 3303 | if (offset != PAGE_CACHE_SIZE) { | 
|  | 3304 | kaddr = kmap(page); | 
|  | 3305 | memset(kaddr + offset, 0, PAGE_CACHE_SIZE - offset); | 
|  | 3306 | flush_dcache_page(page); | 
|  | 3307 | kunmap(page); | 
|  | 3308 | } | 
| Chris Mason | 247e743 | 2008-07-17 12:53:51 -0400 | [diff] [blame] | 3309 | ClearPageChecked(page); | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 3310 | set_page_dirty(page); | 
| Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 3311 | unlock_extent_cached(io_tree, page_start, page_end, &cached_state, | 
|  | 3312 | GFP_NOFS); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3313 |  | 
| Chris Mason | 8964222 | 2008-07-24 09:41:53 -0400 | [diff] [blame] | 3314 | out_unlock: | 
| Josef Bacik | 5d5e103 | 2009-10-13 16:46:49 -0400 | [diff] [blame] | 3315 | if (ret) | 
| Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 3316 | btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3317 | unlock_page(page); | 
|  | 3318 | page_cache_release(page); | 
|  | 3319 | out: | 
|  | 3320 | return ret; | 
|  | 3321 | } | 
|  | 3322 |  | 
| Josef Bacik | 695a0d0 | 2011-03-04 15:46:53 -0500 | [diff] [blame] | 3323 | /* | 
|  | 3324 | * This function puts in dummy file extents for the area we're creating a hole | 
|  | 3325 | * for.  So if we are truncating this file to a larger size we need to insert | 
|  | 3326 | * these file extents so that btrfs_get_extent will return a EXTENT_MAP_HOLE for | 
|  | 3327 | * the range between oldsize and size | 
|  | 3328 | */ | 
| Josef Bacik | a41ad39 | 2011-01-31 15:30:16 -0500 | [diff] [blame] | 3329 | int btrfs_cont_expand(struct inode *inode, loff_t oldsize, loff_t size) | 
| Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 3330 | { | 
|  | 3331 | struct btrfs_trans_handle *trans; | 
|  | 3332 | struct btrfs_root *root = BTRFS_I(inode)->root; | 
|  | 3333 | struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree; | 
| Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3334 | struct extent_map *em = NULL; | 
| Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 3335 | struct extent_state *cached_state = NULL; | 
| Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 3336 | u64 mask = root->sectorsize - 1; | 
| Josef Bacik | a41ad39 | 2011-01-31 15:30:16 -0500 | [diff] [blame] | 3337 | u64 hole_start = (oldsize + mask) & ~mask; | 
| Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 3338 | u64 block_end = (size + mask) & ~mask; | 
|  | 3339 | u64 last_byte; | 
|  | 3340 | u64 cur_offset; | 
|  | 3341 | u64 hole_size; | 
| Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 3342 | int err = 0; | 
| Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 3343 |  | 
|  | 3344 | if (size <= hole_start) | 
|  | 3345 | return 0; | 
|  | 3346 |  | 
| Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 3347 | while (1) { | 
|  | 3348 | struct btrfs_ordered_extent *ordered; | 
|  | 3349 | btrfs_wait_ordered_range(inode, hole_start, | 
|  | 3350 | block_end - hole_start); | 
| Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 3351 | lock_extent_bits(io_tree, hole_start, block_end - 1, 0, | 
|  | 3352 | &cached_state, GFP_NOFS); | 
| Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 3353 | ordered = btrfs_lookup_ordered_extent(inode, hole_start); | 
|  | 3354 | if (!ordered) | 
|  | 3355 | break; | 
| Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 3356 | unlock_extent_cached(io_tree, hole_start, block_end - 1, | 
|  | 3357 | &cached_state, GFP_NOFS); | 
| Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 3358 | btrfs_put_ordered_extent(ordered); | 
|  | 3359 | } | 
|  | 3360 |  | 
| Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 3361 | cur_offset = hole_start; | 
|  | 3362 | while (1) { | 
|  | 3363 | em = btrfs_get_extent(inode, NULL, 0, cur_offset, | 
|  | 3364 | block_end - cur_offset, 0); | 
| David Sterba | c704005 | 2011-04-19 18:00:01 +0200 | [diff] [blame] | 3365 | BUG_ON(IS_ERR_OR_NULL(em)); | 
| Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 3366 | last_byte = min(extent_map_end(em), block_end); | 
|  | 3367 | last_byte = (last_byte + mask) & ~mask; | 
| Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3368 | if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) { | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 3369 | u64 hint_byte = 0; | 
| Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 3370 | hole_size = last_byte - cur_offset; | 
| Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3371 |  | 
| Miao Xie | 3642320 | 2011-12-14 20:12:02 -0500 | [diff] [blame] | 3372 | trans = btrfs_start_transaction(root, 3); | 
| Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3373 | if (IS_ERR(trans)) { | 
|  | 3374 | err = PTR_ERR(trans); | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 3375 | break; | 
| Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3376 | } | 
| Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3377 |  | 
|  | 3378 | err = btrfs_drop_extents(trans, inode, cur_offset, | 
|  | 3379 | cur_offset + hole_size, | 
|  | 3380 | &hint_byte, 1); | 
| Miao Xie | 5b39737 | 2011-09-11 10:52:24 -0400 | [diff] [blame] | 3381 | if (err) { | 
| Miao Xie | 3642320 | 2011-12-14 20:12:02 -0500 | [diff] [blame] | 3382 | btrfs_update_inode(trans, root, inode); | 
| Miao Xie | 5b39737 | 2011-09-11 10:52:24 -0400 | [diff] [blame] | 3383 | btrfs_end_transaction(trans, root); | 
| Josef Bacik | 3893e33 | 2011-01-31 16:03:11 -0500 | [diff] [blame] | 3384 | break; | 
| Miao Xie | 5b39737 | 2011-09-11 10:52:24 -0400 | [diff] [blame] | 3385 | } | 
| Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 3386 |  | 
| Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 3387 | err = btrfs_insert_file_extent(trans, root, | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3388 | btrfs_ino(inode), cur_offset, 0, | 
| Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 3389 | 0, hole_size, 0, hole_size, | 
|  | 3390 | 0, 0, 0); | 
| Miao Xie | 5b39737 | 2011-09-11 10:52:24 -0400 | [diff] [blame] | 3391 | if (err) { | 
| Miao Xie | 3642320 | 2011-12-14 20:12:02 -0500 | [diff] [blame] | 3392 | btrfs_update_inode(trans, root, inode); | 
| Miao Xie | 5b39737 | 2011-09-11 10:52:24 -0400 | [diff] [blame] | 3393 | btrfs_end_transaction(trans, root); | 
| Josef Bacik | 3893e33 | 2011-01-31 16:03:11 -0500 | [diff] [blame] | 3394 | break; | 
| Miao Xie | 5b39737 | 2011-09-11 10:52:24 -0400 | [diff] [blame] | 3395 | } | 
| Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3396 |  | 
| Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 3397 | btrfs_drop_extent_cache(inode, hole_start, | 
|  | 3398 | last_byte - 1, 0); | 
| Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3399 |  | 
| Miao Xie | 3642320 | 2011-12-14 20:12:02 -0500 | [diff] [blame] | 3400 | btrfs_update_inode(trans, root, inode); | 
| Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3401 | btrfs_end_transaction(trans, root); | 
| Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 3402 | } | 
|  | 3403 | free_extent_map(em); | 
| Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3404 | em = NULL; | 
| Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 3405 | cur_offset = last_byte; | 
| Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3406 | if (cur_offset >= block_end) | 
| Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 3407 | break; | 
|  | 3408 | } | 
|  | 3409 |  | 
| Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3410 | free_extent_map(em); | 
| Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 3411 | unlock_extent_cached(io_tree, hole_start, block_end - 1, &cached_state, | 
|  | 3412 | GFP_NOFS); | 
| Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 3413 | return err; | 
|  | 3414 | } | 
|  | 3415 |  | 
| Josef Bacik | a41ad39 | 2011-01-31 15:30:16 -0500 | [diff] [blame] | 3416 | static int btrfs_setsize(struct inode *inode, loff_t newsize) | 
| Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3417 | { | 
| Miao Xie | f4a2f4c | 2011-12-14 20:12:01 -0500 | [diff] [blame] | 3418 | struct btrfs_root *root = BTRFS_I(inode)->root; | 
|  | 3419 | struct btrfs_trans_handle *trans; | 
| Josef Bacik | a41ad39 | 2011-01-31 15:30:16 -0500 | [diff] [blame] | 3420 | loff_t oldsize = i_size_read(inode); | 
| Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3421 | int ret; | 
|  | 3422 |  | 
| Josef Bacik | a41ad39 | 2011-01-31 15:30:16 -0500 | [diff] [blame] | 3423 | if (newsize == oldsize) | 
| Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3424 | return 0; | 
|  | 3425 |  | 
| Josef Bacik | a41ad39 | 2011-01-31 15:30:16 -0500 | [diff] [blame] | 3426 | if (newsize > oldsize) { | 
| Josef Bacik | a41ad39 | 2011-01-31 15:30:16 -0500 | [diff] [blame] | 3427 | truncate_pagecache(inode, oldsize, newsize); | 
|  | 3428 | ret = btrfs_cont_expand(inode, oldsize, newsize); | 
| Miao Xie | f4a2f4c | 2011-12-14 20:12:01 -0500 | [diff] [blame] | 3429 | if (ret) | 
| Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3430 | return ret; | 
| Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3431 |  | 
| Miao Xie | f4a2f4c | 2011-12-14 20:12:01 -0500 | [diff] [blame] | 3432 | trans = btrfs_start_transaction(root, 1); | 
|  | 3433 | if (IS_ERR(trans)) | 
|  | 3434 | return PTR_ERR(trans); | 
|  | 3435 |  | 
|  | 3436 | i_size_write(inode, newsize); | 
|  | 3437 | btrfs_ordered_update_i_size(inode, i_size_read(inode), NULL); | 
|  | 3438 | ret = btrfs_update_inode(trans, root, inode); | 
| Josef Bacik | 7ad85bb | 2012-01-12 19:10:12 -0500 | [diff] [blame] | 3439 | btrfs_end_transaction(trans, root); | 
| Josef Bacik | a41ad39 | 2011-01-31 15:30:16 -0500 | [diff] [blame] | 3440 | } else { | 
| Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3441 |  | 
| Josef Bacik | a41ad39 | 2011-01-31 15:30:16 -0500 | [diff] [blame] | 3442 | /* | 
|  | 3443 | * We're truncating a file that used to have good data down to | 
|  | 3444 | * zero. Make sure it gets into the ordered flush list so that | 
|  | 3445 | * any new writes get down to disk quickly. | 
|  | 3446 | */ | 
|  | 3447 | if (newsize == 0) | 
|  | 3448 | BTRFS_I(inode)->ordered_data_close = 1; | 
| Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3449 |  | 
| Josef Bacik | a41ad39 | 2011-01-31 15:30:16 -0500 | [diff] [blame] | 3450 | /* we don't support swapfiles, so vmtruncate shouldn't fail */ | 
|  | 3451 | truncate_setsize(inode, newsize); | 
|  | 3452 | ret = btrfs_truncate(inode); | 
| Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3453 | } | 
|  | 3454 |  | 
| Josef Bacik | a41ad39 | 2011-01-31 15:30:16 -0500 | [diff] [blame] | 3455 | return ret; | 
| Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3456 | } | 
|  | 3457 |  | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3458 | static int btrfs_setattr(struct dentry *dentry, struct iattr *attr) | 
|  | 3459 | { | 
|  | 3460 | struct inode *inode = dentry->d_inode; | 
| Li Zefan | b83cc96 | 2010-12-20 16:04:08 +0800 | [diff] [blame] | 3461 | struct btrfs_root *root = BTRFS_I(inode)->root; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3462 | int err; | 
|  | 3463 |  | 
| Li Zefan | b83cc96 | 2010-12-20 16:04:08 +0800 | [diff] [blame] | 3464 | if (btrfs_root_readonly(root)) | 
|  | 3465 | return -EROFS; | 
|  | 3466 |  | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3467 | err = inode_change_ok(inode, attr); | 
|  | 3468 | if (err) | 
|  | 3469 | return err; | 
|  | 3470 |  | 
| Chris Mason | 5a3f23d | 2009-03-31 13:27:11 -0400 | [diff] [blame] | 3471 | if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) { | 
| Josef Bacik | a41ad39 | 2011-01-31 15:30:16 -0500 | [diff] [blame] | 3472 | err = btrfs_setsize(inode, attr->ia_size); | 
| Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3473 | if (err) | 
|  | 3474 | return err; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3475 | } | 
| Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 3476 |  | 
| Christoph Hellwig | 1025774 | 2010-06-04 11:30:02 +0200 | [diff] [blame] | 3477 | if (attr->ia_valid) { | 
|  | 3478 | setattr_copy(inode, attr); | 
| Josef Bacik | 22c44fe | 2011-11-30 10:45:38 -0500 | [diff] [blame] | 3479 | err = btrfs_dirty_inode(inode); | 
| Josef Bacik | 33268ea | 2008-07-24 12:16:36 -0400 | [diff] [blame] | 3480 |  | 
| Josef Bacik | 22c44fe | 2011-11-30 10:45:38 -0500 | [diff] [blame] | 3481 | if (!err && attr->ia_valid & ATTR_MODE) | 
| Christoph Hellwig | 1025774 | 2010-06-04 11:30:02 +0200 | [diff] [blame] | 3482 | err = btrfs_acl_chmod(inode); | 
|  | 3483 | } | 
|  | 3484 |  | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3485 | return err; | 
|  | 3486 | } | 
| Chris Mason | 61295eb | 2008-01-14 16:24:38 -0500 | [diff] [blame] | 3487 |  | 
| Al Viro | bd55597 | 2010-06-07 11:35:40 -0400 | [diff] [blame] | 3488 | void btrfs_evict_inode(struct inode *inode) | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3489 | { | 
|  | 3490 | struct btrfs_trans_handle *trans; | 
|  | 3491 | struct btrfs_root *root = BTRFS_I(inode)->root; | 
| Josef Bacik | 726c35f | 2011-09-26 15:46:06 -0400 | [diff] [blame] | 3492 | struct btrfs_block_rsv *rsv, *global_rsv; | 
| Josef Bacik | 0712718 | 2011-08-19 10:29:59 -0400 | [diff] [blame] | 3493 | u64 min_size = btrfs_calc_trunc_metadata_size(root, 1); | 
| Chris Mason | d3c2fdc | 2007-09-17 10:58:06 -0400 | [diff] [blame] | 3494 | unsigned long nr; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3495 | int ret; | 
|  | 3496 |  | 
| liubo | 1abe9b8 | 2011-03-24 11:18:59 +0000 | [diff] [blame] | 3497 | trace_btrfs_inode_evict(inode); | 
|  | 3498 |  | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3499 | truncate_inode_pages(&inode->i_data, 0); | 
| Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3500 | if (inode->i_nlink && (btrfs_root_refs(&root->root_item) != 0 || | 
| Chris Mason | 2cf8572 | 2011-07-26 15:35:09 -0400 | [diff] [blame] | 3501 | btrfs_is_free_space_inode(root, inode))) | 
| Al Viro | bd55597 | 2010-06-07 11:35:40 -0400 | [diff] [blame] | 3502 | goto no_delete; | 
|  | 3503 |  | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3504 | if (is_bad_inode(inode)) { | 
| Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 3505 | btrfs_orphan_del(NULL, inode); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3506 | goto no_delete; | 
|  | 3507 | } | 
| Al Viro | bd55597 | 2010-06-07 11:35:40 -0400 | [diff] [blame] | 3508 | /* do we really want it for ->i_nlink > 0 and zero btrfs_root_refs? */ | 
| Chris Mason | 4a09675 | 2008-07-21 10:29:44 -0400 | [diff] [blame] | 3509 | btrfs_wait_ordered_range(inode, 0, (u64)-1); | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3510 |  | 
| Yan, Zheng | c71bf09 | 2009-11-12 09:34:40 +0000 | [diff] [blame] | 3511 | if (root->fs_info->log_root_recovering) { | 
|  | 3512 | BUG_ON(!list_empty(&BTRFS_I(inode)->i_orphan)); | 
|  | 3513 | goto no_delete; | 
|  | 3514 | } | 
|  | 3515 |  | 
| Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 3516 | if (inode->i_nlink > 0) { | 
|  | 3517 | BUG_ON(btrfs_root_refs(&root->root_item) != 0); | 
|  | 3518 | goto no_delete; | 
|  | 3519 | } | 
|  | 3520 |  | 
| Josef Bacik | 4289a66 | 2011-08-05 13:22:24 -0400 | [diff] [blame] | 3521 | rsv = btrfs_alloc_block_rsv(root); | 
|  | 3522 | if (!rsv) { | 
|  | 3523 | btrfs_orphan_del(NULL, inode); | 
|  | 3524 | goto no_delete; | 
|  | 3525 | } | 
| Josef Bacik | 4a33854 | 2011-08-29 11:01:31 -0400 | [diff] [blame] | 3526 | rsv->size = min_size; | 
| Josef Bacik | 726c35f | 2011-09-26 15:46:06 -0400 | [diff] [blame] | 3527 | global_rsv = &root->fs_info->global_block_rsv; | 
| Josef Bacik | 4289a66 | 2011-08-05 13:22:24 -0400 | [diff] [blame] | 3528 |  | 
| Chris Mason | dbe674a | 2008-07-17 12:54:05 -0400 | [diff] [blame] | 3529 | btrfs_i_size_write(inode, 0); | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3530 |  | 
| Josef Bacik | 4289a66 | 2011-08-05 13:22:24 -0400 | [diff] [blame] | 3531 | /* | 
|  | 3532 | * This is a bit simpler than btrfs_truncate since | 
|  | 3533 | * | 
|  | 3534 | * 1) We've already reserved our space for our orphan item in the | 
|  | 3535 | *    unlink. | 
|  | 3536 | * 2) We're going to delete the inode item, so we don't need to update | 
|  | 3537 | *    it at all. | 
|  | 3538 | * | 
|  | 3539 | * So we just need to reserve some slack space in case we add bytes when | 
|  | 3540 | * doing the truncate. | 
|  | 3541 | */ | 
| Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3542 | while (1) { | 
| Miao Xie | aa38a71 | 2011-11-18 17:43:00 +0800 | [diff] [blame] | 3543 | ret = btrfs_block_rsv_refill_noflush(root, rsv, min_size); | 
| Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3544 |  | 
| Josef Bacik | 726c35f | 2011-09-26 15:46:06 -0400 | [diff] [blame] | 3545 | /* | 
|  | 3546 | * Try and steal from the global reserve since we will | 
|  | 3547 | * likely not use this space anyway, we want to try as | 
|  | 3548 | * hard as possible to get this to work. | 
|  | 3549 | */ | 
|  | 3550 | if (ret) | 
|  | 3551 | ret = btrfs_block_rsv_migrate(global_rsv, rsv, min_size); | 
|  | 3552 |  | 
| Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 3553 | if (ret) { | 
| Josef Bacik | 4289a66 | 2011-08-05 13:22:24 -0400 | [diff] [blame] | 3554 | printk(KERN_WARNING "Could not get space for a " | 
| Josef Bacik | 482e6dc | 2011-08-19 10:31:56 -0400 | [diff] [blame] | 3555 | "delete, will truncate on mount %d\n", ret); | 
| Josef Bacik | 4289a66 | 2011-08-05 13:22:24 -0400 | [diff] [blame] | 3556 | btrfs_orphan_del(NULL, inode); | 
|  | 3557 | btrfs_free_block_rsv(root, rsv); | 
|  | 3558 | goto no_delete; | 
| Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 3559 | } | 
|  | 3560 |  | 
| Josef Bacik | 4289a66 | 2011-08-05 13:22:24 -0400 | [diff] [blame] | 3561 | trans = btrfs_start_transaction(root, 0); | 
|  | 3562 | if (IS_ERR(trans)) { | 
|  | 3563 | btrfs_orphan_del(NULL, inode); | 
|  | 3564 | btrfs_free_block_rsv(root, rsv); | 
|  | 3565 | goto no_delete; | 
|  | 3566 | } | 
|  | 3567 |  | 
|  | 3568 | trans->block_rsv = rsv; | 
|  | 3569 |  | 
| Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 3570 | ret = btrfs_truncate_inode_items(trans, root, inode, 0, 0); | 
| Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3571 | if (ret != -EAGAIN) | 
|  | 3572 | break; | 
|  | 3573 |  | 
|  | 3574 | nr = trans->blocks_used; | 
|  | 3575 | btrfs_end_transaction(trans, root); | 
|  | 3576 | trans = NULL; | 
|  | 3577 | btrfs_btree_balance_dirty(root, nr); | 
| Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 3578 | } | 
|  | 3579 |  | 
| Josef Bacik | 4289a66 | 2011-08-05 13:22:24 -0400 | [diff] [blame] | 3580 | btrfs_free_block_rsv(root, rsv); | 
|  | 3581 |  | 
| Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3582 | if (ret == 0) { | 
| Josef Bacik | 4289a66 | 2011-08-05 13:22:24 -0400 | [diff] [blame] | 3583 | trans->block_rsv = root->orphan_block_rsv; | 
| Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3584 | ret = btrfs_orphan_del(trans, inode); | 
|  | 3585 | BUG_ON(ret); | 
|  | 3586 | } | 
| Chris Mason | 85e21ba | 2008-01-29 15:11:36 -0500 | [diff] [blame] | 3587 |  | 
| Josef Bacik | 4289a66 | 2011-08-05 13:22:24 -0400 | [diff] [blame] | 3588 | trans->block_rsv = &root->fs_info->trans_block_rsv; | 
| Li Zefan | 581bb05 | 2011-04-20 10:06:11 +0800 | [diff] [blame] | 3589 | if (!(root == root->fs_info->tree_root || | 
|  | 3590 | root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID)) | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3591 | btrfs_return_ino(root, btrfs_ino(inode)); | 
| Li Zefan | 581bb05 | 2011-04-20 10:06:11 +0800 | [diff] [blame] | 3592 |  | 
| Chris Mason | d3c2fdc | 2007-09-17 10:58:06 -0400 | [diff] [blame] | 3593 | nr = trans->blocks_used; | 
| Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3594 | btrfs_end_transaction(trans, root); | 
| Chris Mason | d3c2fdc | 2007-09-17 10:58:06 -0400 | [diff] [blame] | 3595 | btrfs_btree_balance_dirty(root, nr); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3596 | no_delete: | 
| Al Viro | bd55597 | 2010-06-07 11:35:40 -0400 | [diff] [blame] | 3597 | end_writeback(inode); | 
| Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3598 | return; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3599 | } | 
|  | 3600 |  | 
|  | 3601 | /* | 
|  | 3602 | * this returns the key found in the dir entry in the location pointer. | 
|  | 3603 | * If no dir entries were found, location->objectid is 0. | 
|  | 3604 | */ | 
|  | 3605 | static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry, | 
|  | 3606 | struct btrfs_key *location) | 
|  | 3607 | { | 
|  | 3608 | const char *name = dentry->d_name.name; | 
|  | 3609 | int namelen = dentry->d_name.len; | 
|  | 3610 | struct btrfs_dir_item *di; | 
|  | 3611 | struct btrfs_path *path; | 
|  | 3612 | struct btrfs_root *root = BTRFS_I(dir)->root; | 
| Yan | 0d9f7f3 | 2007-10-25 15:48:28 -0400 | [diff] [blame] | 3613 | int ret = 0; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3614 |  | 
|  | 3615 | path = btrfs_alloc_path(); | 
| Mark Fasheh | d8926bb | 2011-07-13 10:38:47 -0700 | [diff] [blame] | 3616 | if (!path) | 
|  | 3617 | return -ENOMEM; | 
| Chris Mason | 3954401 | 2007-12-12 14:38:19 -0500 | [diff] [blame] | 3618 |  | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3619 | di = btrfs_lookup_dir_item(NULL, root, path, btrfs_ino(dir), name, | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3620 | namelen, 0); | 
| Yan | 0d9f7f3 | 2007-10-25 15:48:28 -0400 | [diff] [blame] | 3621 | if (IS_ERR(di)) | 
|  | 3622 | ret = PTR_ERR(di); | 
| Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3623 |  | 
| David Sterba | c704005 | 2011-04-19 18:00:01 +0200 | [diff] [blame] | 3624 | if (IS_ERR_OR_NULL(di)) | 
| Chris Mason | 3954401 | 2007-12-12 14:38:19 -0500 | [diff] [blame] | 3625 | goto out_err; | 
| Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3626 |  | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3627 | btrfs_dir_item_key_to_cpu(path->nodes[0], di, location); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3628 | out: | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3629 | btrfs_free_path(path); | 
|  | 3630 | return ret; | 
| Chris Mason | 3954401 | 2007-12-12 14:38:19 -0500 | [diff] [blame] | 3631 | out_err: | 
|  | 3632 | location->objectid = 0; | 
|  | 3633 | goto out; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3634 | } | 
|  | 3635 |  | 
|  | 3636 | /* | 
|  | 3637 | * when we hit a tree root in a directory, the btrfs part of the inode | 
|  | 3638 | * needs to be changed to reflect the root directory of the tree root.  This | 
|  | 3639 | * is kind of like crossing a mount point. | 
|  | 3640 | */ | 
|  | 3641 | static int fixup_tree_root_location(struct btrfs_root *root, | 
| Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3642 | struct inode *dir, | 
|  | 3643 | struct dentry *dentry, | 
|  | 3644 | struct btrfs_key *location, | 
|  | 3645 | struct btrfs_root **sub_root) | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3646 | { | 
| Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3647 | struct btrfs_path *path; | 
|  | 3648 | struct btrfs_root *new_root; | 
|  | 3649 | struct btrfs_root_ref *ref; | 
|  | 3650 | struct extent_buffer *leaf; | 
|  | 3651 | int ret; | 
|  | 3652 | int err = 0; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3653 |  | 
| Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3654 | path = btrfs_alloc_path(); | 
|  | 3655 | if (!path) { | 
|  | 3656 | err = -ENOMEM; | 
|  | 3657 | goto out; | 
|  | 3658 | } | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3659 |  | 
| Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3660 | err = -ENOENT; | 
|  | 3661 | ret = btrfs_find_root_ref(root->fs_info->tree_root, path, | 
|  | 3662 | BTRFS_I(dir)->root->root_key.objectid, | 
|  | 3663 | location->objectid); | 
|  | 3664 | if (ret) { | 
|  | 3665 | if (ret < 0) | 
|  | 3666 | err = ret; | 
|  | 3667 | goto out; | 
|  | 3668 | } | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3669 |  | 
| Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3670 | leaf = path->nodes[0]; | 
|  | 3671 | ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref); | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3672 | if (btrfs_root_ref_dirid(leaf, ref) != btrfs_ino(dir) || | 
| Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3673 | btrfs_root_ref_name_len(leaf, ref) != dentry->d_name.len) | 
|  | 3674 | goto out; | 
|  | 3675 |  | 
|  | 3676 | ret = memcmp_extent_buffer(leaf, dentry->d_name.name, | 
|  | 3677 | (unsigned long)(ref + 1), | 
|  | 3678 | dentry->d_name.len); | 
|  | 3679 | if (ret) | 
|  | 3680 | goto out; | 
|  | 3681 |  | 
| David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3682 | btrfs_release_path(path); | 
| Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3683 |  | 
|  | 3684 | new_root = btrfs_read_fs_root_no_name(root->fs_info, location); | 
|  | 3685 | if (IS_ERR(new_root)) { | 
|  | 3686 | err = PTR_ERR(new_root); | 
|  | 3687 | goto out; | 
|  | 3688 | } | 
|  | 3689 |  | 
|  | 3690 | if (btrfs_root_refs(&new_root->root_item) == 0) { | 
|  | 3691 | err = -ENOENT; | 
|  | 3692 | goto out; | 
|  | 3693 | } | 
|  | 3694 |  | 
|  | 3695 | *sub_root = new_root; | 
|  | 3696 | location->objectid = btrfs_root_dirid(&new_root->root_item); | 
|  | 3697 | location->type = BTRFS_INODE_ITEM_KEY; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3698 | location->offset = 0; | 
| Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3699 | err = 0; | 
|  | 3700 | out: | 
|  | 3701 | btrfs_free_path(path); | 
|  | 3702 | return err; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3703 | } | 
|  | 3704 |  | 
| Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3705 | static void inode_tree_add(struct inode *inode) | 
|  | 3706 | { | 
|  | 3707 | struct btrfs_root *root = BTRFS_I(inode)->root; | 
|  | 3708 | struct btrfs_inode *entry; | 
| From: Nick Piggin | 03e860b | 2009-08-21 10:09:44 +0200 | [diff] [blame] | 3709 | struct rb_node **p; | 
|  | 3710 | struct rb_node *parent; | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3711 | u64 ino = btrfs_ino(inode); | 
| From: Nick Piggin | 03e860b | 2009-08-21 10:09:44 +0200 | [diff] [blame] | 3712 | again: | 
|  | 3713 | p = &root->inode_tree.rb_node; | 
|  | 3714 | parent = NULL; | 
| Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3715 |  | 
| Al Viro | 1d3382c | 2010-10-23 15:19:20 -0400 | [diff] [blame] | 3716 | if (inode_unhashed(inode)) | 
| Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 3717 | return; | 
|  | 3718 |  | 
| Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3719 | spin_lock(&root->inode_lock); | 
|  | 3720 | while (*p) { | 
|  | 3721 | parent = *p; | 
|  | 3722 | entry = rb_entry(parent, struct btrfs_inode, rb_node); | 
|  | 3723 |  | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3724 | if (ino < btrfs_ino(&entry->vfs_inode)) | 
| From: Nick Piggin | 03e860b | 2009-08-21 10:09:44 +0200 | [diff] [blame] | 3725 | p = &parent->rb_left; | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3726 | else if (ino > btrfs_ino(&entry->vfs_inode)) | 
| From: Nick Piggin | 03e860b | 2009-08-21 10:09:44 +0200 | [diff] [blame] | 3727 | p = &parent->rb_right; | 
| Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3728 | else { | 
|  | 3729 | WARN_ON(!(entry->vfs_inode.i_state & | 
| Al Viro | a4ffdde | 2010-06-02 17:38:30 -0400 | [diff] [blame] | 3730 | (I_WILL_FREE | I_FREEING))); | 
| From: Nick Piggin | 03e860b | 2009-08-21 10:09:44 +0200 | [diff] [blame] | 3731 | rb_erase(parent, &root->inode_tree); | 
|  | 3732 | RB_CLEAR_NODE(parent); | 
|  | 3733 | spin_unlock(&root->inode_lock); | 
|  | 3734 | goto again; | 
| Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3735 | } | 
|  | 3736 | } | 
|  | 3737 | rb_link_node(&BTRFS_I(inode)->rb_node, parent, p); | 
|  | 3738 | rb_insert_color(&BTRFS_I(inode)->rb_node, &root->inode_tree); | 
|  | 3739 | spin_unlock(&root->inode_lock); | 
|  | 3740 | } | 
|  | 3741 |  | 
|  | 3742 | static void inode_tree_del(struct inode *inode) | 
|  | 3743 | { | 
|  | 3744 | struct btrfs_root *root = BTRFS_I(inode)->root; | 
| Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 3745 | int empty = 0; | 
| Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3746 |  | 
| From: Nick Piggin | 03e860b | 2009-08-21 10:09:44 +0200 | [diff] [blame] | 3747 | spin_lock(&root->inode_lock); | 
| Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3748 | if (!RB_EMPTY_NODE(&BTRFS_I(inode)->rb_node)) { | 
| Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3749 | rb_erase(&BTRFS_I(inode)->rb_node, &root->inode_tree); | 
| Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3750 | RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node); | 
| Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 3751 | empty = RB_EMPTY_ROOT(&root->inode_tree); | 
| Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3752 | } | 
| From: Nick Piggin | 03e860b | 2009-08-21 10:09:44 +0200 | [diff] [blame] | 3753 | spin_unlock(&root->inode_lock); | 
| Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 3754 |  | 
| Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3755 | /* | 
|  | 3756 | * Free space cache has inodes in the tree root, but the tree root has a | 
|  | 3757 | * root_refs of 0, so this could end up dropping the tree root as a | 
|  | 3758 | * snapshot, so we need the extra !root->fs_info->tree_root check to | 
|  | 3759 | * make sure we don't drop it. | 
|  | 3760 | */ | 
|  | 3761 | if (empty && btrfs_root_refs(&root->root_item) == 0 && | 
|  | 3762 | root != root->fs_info->tree_root) { | 
| Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 3763 | synchronize_srcu(&root->fs_info->subvol_srcu); | 
|  | 3764 | spin_lock(&root->inode_lock); | 
|  | 3765 | empty = RB_EMPTY_ROOT(&root->inode_tree); | 
|  | 3766 | spin_unlock(&root->inode_lock); | 
|  | 3767 | if (empty) | 
|  | 3768 | btrfs_add_dead_root(root); | 
|  | 3769 | } | 
|  | 3770 | } | 
|  | 3771 |  | 
|  | 3772 | int btrfs_invalidate_inodes(struct btrfs_root *root) | 
|  | 3773 | { | 
|  | 3774 | struct rb_node *node; | 
|  | 3775 | struct rb_node *prev; | 
|  | 3776 | struct btrfs_inode *entry; | 
|  | 3777 | struct inode *inode; | 
|  | 3778 | u64 objectid = 0; | 
|  | 3779 |  | 
|  | 3780 | WARN_ON(btrfs_root_refs(&root->root_item) != 0); | 
|  | 3781 |  | 
|  | 3782 | spin_lock(&root->inode_lock); | 
|  | 3783 | again: | 
|  | 3784 | node = root->inode_tree.rb_node; | 
|  | 3785 | prev = NULL; | 
|  | 3786 | while (node) { | 
|  | 3787 | prev = node; | 
|  | 3788 | entry = rb_entry(node, struct btrfs_inode, rb_node); | 
|  | 3789 |  | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3790 | if (objectid < btrfs_ino(&entry->vfs_inode)) | 
| Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 3791 | node = node->rb_left; | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3792 | else if (objectid > btrfs_ino(&entry->vfs_inode)) | 
| Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 3793 | node = node->rb_right; | 
|  | 3794 | else | 
|  | 3795 | break; | 
|  | 3796 | } | 
|  | 3797 | if (!node) { | 
|  | 3798 | while (prev) { | 
|  | 3799 | entry = rb_entry(prev, struct btrfs_inode, rb_node); | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3800 | if (objectid <= btrfs_ino(&entry->vfs_inode)) { | 
| Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 3801 | node = prev; | 
|  | 3802 | break; | 
|  | 3803 | } | 
|  | 3804 | prev = rb_next(prev); | 
|  | 3805 | } | 
|  | 3806 | } | 
|  | 3807 | while (node) { | 
|  | 3808 | entry = rb_entry(node, struct btrfs_inode, rb_node); | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3809 | objectid = btrfs_ino(&entry->vfs_inode) + 1; | 
| Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 3810 | inode = igrab(&entry->vfs_inode); | 
|  | 3811 | if (inode) { | 
|  | 3812 | spin_unlock(&root->inode_lock); | 
|  | 3813 | if (atomic_read(&inode->i_count) > 1) | 
|  | 3814 | d_prune_aliases(inode); | 
|  | 3815 | /* | 
| Al Viro | 45321ac | 2010-06-07 13:43:19 -0400 | [diff] [blame] | 3816 | * btrfs_drop_inode will have it removed from | 
| Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 3817 | * the inode cache when its usage count | 
|  | 3818 | * hits zero. | 
|  | 3819 | */ | 
|  | 3820 | iput(inode); | 
|  | 3821 | cond_resched(); | 
|  | 3822 | spin_lock(&root->inode_lock); | 
|  | 3823 | goto again; | 
|  | 3824 | } | 
|  | 3825 |  | 
|  | 3826 | if (cond_resched_lock(&root->inode_lock)) | 
|  | 3827 | goto again; | 
|  | 3828 |  | 
|  | 3829 | node = rb_next(node); | 
|  | 3830 | } | 
|  | 3831 | spin_unlock(&root->inode_lock); | 
|  | 3832 | return 0; | 
| Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3833 | } | 
|  | 3834 |  | 
| Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3835 | static int btrfs_init_locked_inode(struct inode *inode, void *p) | 
|  | 3836 | { | 
|  | 3837 | struct btrfs_iget_args *args = p; | 
|  | 3838 | inode->i_ino = args->ino; | 
| Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3839 | BTRFS_I(inode)->root = args->root; | 
| Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 3840 | btrfs_set_inode_space_info(args->root, inode); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3841 | return 0; | 
|  | 3842 | } | 
|  | 3843 |  | 
|  | 3844 | static int btrfs_find_actor(struct inode *inode, void *opaque) | 
|  | 3845 | { | 
|  | 3846 | struct btrfs_iget_args *args = opaque; | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3847 | return args->ino == btrfs_ino(inode) && | 
| Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3848 | args->root == BTRFS_I(inode)->root; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3849 | } | 
|  | 3850 |  | 
| Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3851 | static struct inode *btrfs_iget_locked(struct super_block *s, | 
|  | 3852 | u64 objectid, | 
|  | 3853 | struct btrfs_root *root) | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3854 | { | 
|  | 3855 | struct inode *inode; | 
|  | 3856 | struct btrfs_iget_args args; | 
|  | 3857 | args.ino = objectid; | 
|  | 3858 | args.root = root; | 
|  | 3859 |  | 
|  | 3860 | inode = iget5_locked(s, objectid, btrfs_find_actor, | 
|  | 3861 | btrfs_init_locked_inode, | 
|  | 3862 | (void *)&args); | 
|  | 3863 | return inode; | 
|  | 3864 | } | 
|  | 3865 |  | 
| Balaji Rao | 1a54ef8 | 2008-07-21 02:01:04 +0530 | [diff] [blame] | 3866 | /* Get an inode object given its location and corresponding root. | 
|  | 3867 | * Returns in *is_new if the inode was read from disk | 
|  | 3868 | */ | 
|  | 3869 | struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location, | 
| Josef Bacik | 73f7341 | 2009-12-04 17:38:27 +0000 | [diff] [blame] | 3870 | struct btrfs_root *root, int *new) | 
| Balaji Rao | 1a54ef8 | 2008-07-21 02:01:04 +0530 | [diff] [blame] | 3871 | { | 
|  | 3872 | struct inode *inode; | 
|  | 3873 |  | 
|  | 3874 | inode = btrfs_iget_locked(s, location->objectid, root); | 
|  | 3875 | if (!inode) | 
| Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3876 | return ERR_PTR(-ENOMEM); | 
| Balaji Rao | 1a54ef8 | 2008-07-21 02:01:04 +0530 | [diff] [blame] | 3877 |  | 
|  | 3878 | if (inode->i_state & I_NEW) { | 
|  | 3879 | BTRFS_I(inode)->root = root; | 
|  | 3880 | memcpy(&BTRFS_I(inode)->location, location, sizeof(*location)); | 
|  | 3881 | btrfs_read_locked_inode(inode); | 
| Mark Fasheh | 1748f84 | 2011-07-12 11:25:31 -0700 | [diff] [blame] | 3882 | if (!is_bad_inode(inode)) { | 
|  | 3883 | inode_tree_add(inode); | 
|  | 3884 | unlock_new_inode(inode); | 
|  | 3885 | if (new) | 
|  | 3886 | *new = 1; | 
|  | 3887 | } else { | 
| Sergei Trofimovich | e0b6d65 | 2011-09-11 10:52:24 -0400 | [diff] [blame] | 3888 | unlock_new_inode(inode); | 
|  | 3889 | iput(inode); | 
|  | 3890 | inode = ERR_PTR(-ESTALE); | 
| Mark Fasheh | 1748f84 | 2011-07-12 11:25:31 -0700 | [diff] [blame] | 3891 | } | 
|  | 3892 | } | 
|  | 3893 |  | 
| Balaji Rao | 1a54ef8 | 2008-07-21 02:01:04 +0530 | [diff] [blame] | 3894 | return inode; | 
|  | 3895 | } | 
|  | 3896 |  | 
| Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3897 | static struct inode *new_simple_dir(struct super_block *s, | 
|  | 3898 | struct btrfs_key *key, | 
|  | 3899 | struct btrfs_root *root) | 
|  | 3900 | { | 
|  | 3901 | struct inode *inode = new_inode(s); | 
|  | 3902 |  | 
|  | 3903 | if (!inode) | 
|  | 3904 | return ERR_PTR(-ENOMEM); | 
|  | 3905 |  | 
| Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3906 | BTRFS_I(inode)->root = root; | 
|  | 3907 | memcpy(&BTRFS_I(inode)->location, key, sizeof(*key)); | 
|  | 3908 | BTRFS_I(inode)->dummy_inode = 1; | 
|  | 3909 |  | 
|  | 3910 | inode->i_ino = BTRFS_EMPTY_SUBVOL_DIR_OBJECTID; | 
|  | 3911 | inode->i_op = &simple_dir_inode_operations; | 
|  | 3912 | inode->i_fop = &simple_dir_operations; | 
|  | 3913 | inode->i_mode = S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO; | 
|  | 3914 | inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME; | 
|  | 3915 |  | 
|  | 3916 | return inode; | 
|  | 3917 | } | 
|  | 3918 |  | 
| Chris Mason | 3de4586 | 2008-11-17 21:02:50 -0500 | [diff] [blame] | 3919 | struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry) | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3920 | { | 
| Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3921 | struct inode *inode; | 
| Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3922 | struct btrfs_root *root = BTRFS_I(dir)->root; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3923 | struct btrfs_root *sub_root = root; | 
|  | 3924 | struct btrfs_key location; | 
| Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 3925 | int index; | 
| Josef Bacik | b4aff1f | 2011-06-28 16:18:59 -0400 | [diff] [blame] | 3926 | int ret = 0; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3927 |  | 
|  | 3928 | if (dentry->d_name.len > BTRFS_NAME_LEN) | 
|  | 3929 | return ERR_PTR(-ENAMETOOLONG); | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3930 |  | 
| Josef Bacik | b4aff1f | 2011-06-28 16:18:59 -0400 | [diff] [blame] | 3931 | if (unlikely(d_need_lookup(dentry))) { | 
|  | 3932 | memcpy(&location, dentry->d_fsdata, sizeof(struct btrfs_key)); | 
|  | 3933 | kfree(dentry->d_fsdata); | 
|  | 3934 | dentry->d_fsdata = NULL; | 
| Josef Bacik | a66e7cc | 2011-09-18 10:34:03 -0400 | [diff] [blame] | 3935 | /* This thing is hashed, drop it for now */ | 
|  | 3936 | d_drop(dentry); | 
| Josef Bacik | b4aff1f | 2011-06-28 16:18:59 -0400 | [diff] [blame] | 3937 | } else { | 
|  | 3938 | ret = btrfs_inode_by_name(dir, dentry, &location); | 
|  | 3939 | } | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3940 |  | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3941 | if (ret < 0) | 
|  | 3942 | return ERR_PTR(ret); | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3943 |  | 
| Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3944 | if (location.objectid == 0) | 
|  | 3945 | return NULL; | 
|  | 3946 |  | 
|  | 3947 | if (location.type == BTRFS_INODE_ITEM_KEY) { | 
| Josef Bacik | 73f7341 | 2009-12-04 17:38:27 +0000 | [diff] [blame] | 3948 | inode = btrfs_iget(dir->i_sb, &location, root, NULL); | 
| Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3949 | return inode; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3950 | } | 
| Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3951 |  | 
|  | 3952 | BUG_ON(location.type != BTRFS_ROOT_ITEM_KEY); | 
|  | 3953 |  | 
| Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 3954 | index = srcu_read_lock(&root->fs_info->subvol_srcu); | 
| Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3955 | ret = fixup_tree_root_location(root, dir, dentry, | 
|  | 3956 | &location, &sub_root); | 
|  | 3957 | if (ret < 0) { | 
|  | 3958 | if (ret != -ENOENT) | 
|  | 3959 | inode = ERR_PTR(ret); | 
|  | 3960 | else | 
|  | 3961 | inode = new_simple_dir(dir->i_sb, &location, sub_root); | 
|  | 3962 | } else { | 
| Josef Bacik | 73f7341 | 2009-12-04 17:38:27 +0000 | [diff] [blame] | 3963 | inode = btrfs_iget(dir->i_sb, &location, sub_root, NULL); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3964 | } | 
| Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 3965 | srcu_read_unlock(&root->fs_info->subvol_srcu, index); | 
|  | 3966 |  | 
| Julia Lawall | 34d19ba | 2011-01-24 19:55:19 +0000 | [diff] [blame] | 3967 | if (!IS_ERR(inode) && root != sub_root) { | 
| Yan, Zheng | c71bf09 | 2009-11-12 09:34:40 +0000 | [diff] [blame] | 3968 | down_read(&root->fs_info->cleanup_work_sem); | 
|  | 3969 | if (!(inode->i_sb->s_flags & MS_RDONLY)) | 
| Josef Bacik | 66b4ffd | 2011-01-31 16:22:42 -0500 | [diff] [blame] | 3970 | ret = btrfs_orphan_cleanup(sub_root); | 
| Yan, Zheng | c71bf09 | 2009-11-12 09:34:40 +0000 | [diff] [blame] | 3971 | up_read(&root->fs_info->cleanup_work_sem); | 
| Josef Bacik | 66b4ffd | 2011-01-31 16:22:42 -0500 | [diff] [blame] | 3972 | if (ret) | 
|  | 3973 | inode = ERR_PTR(ret); | 
| Yan, Zheng | c71bf09 | 2009-11-12 09:34:40 +0000 | [diff] [blame] | 3974 | } | 
|  | 3975 |  | 
| Chris Mason | 3de4586 | 2008-11-17 21:02:50 -0500 | [diff] [blame] | 3976 | return inode; | 
|  | 3977 | } | 
|  | 3978 |  | 
| Nick Piggin | fe15ce4 | 2011-01-07 17:49:23 +1100 | [diff] [blame] | 3979 | static int btrfs_dentry_delete(const struct dentry *dentry) | 
| Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 3980 | { | 
|  | 3981 | struct btrfs_root *root; | 
|  | 3982 |  | 
| Yan, Zheng | efefb14 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 3983 | if (!dentry->d_inode && !IS_ROOT(dentry)) | 
|  | 3984 | dentry = dentry->d_parent; | 
| Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 3985 |  | 
| Yan, Zheng | efefb14 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 3986 | if (dentry->d_inode) { | 
|  | 3987 | root = BTRFS_I(dentry->d_inode)->root; | 
|  | 3988 | if (btrfs_root_refs(&root->root_item) == 0) | 
|  | 3989 | return 1; | 
|  | 3990 | } | 
| Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 3991 | return 0; | 
|  | 3992 | } | 
|  | 3993 |  | 
| Josef Bacik | b4aff1f | 2011-06-28 16:18:59 -0400 | [diff] [blame] | 3994 | static void btrfs_dentry_release(struct dentry *dentry) | 
|  | 3995 | { | 
|  | 3996 | if (dentry->d_fsdata) | 
|  | 3997 | kfree(dentry->d_fsdata); | 
|  | 3998 | } | 
|  | 3999 |  | 
| Chris Mason | 3de4586 | 2008-11-17 21:02:50 -0500 | [diff] [blame] | 4000 | static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry, | 
|  | 4001 | struct nameidata *nd) | 
|  | 4002 | { | 
| Josef Bacik | a66e7cc | 2011-09-18 10:34:03 -0400 | [diff] [blame] | 4003 | struct dentry *ret; | 
|  | 4004 |  | 
|  | 4005 | ret = d_splice_alias(btrfs_lookup_dentry(dir, dentry), dentry); | 
|  | 4006 | if (unlikely(d_need_lookup(dentry))) { | 
|  | 4007 | spin_lock(&dentry->d_lock); | 
|  | 4008 | dentry->d_flags &= ~DCACHE_NEED_LOOKUP; | 
|  | 4009 | spin_unlock(&dentry->d_lock); | 
|  | 4010 | } | 
|  | 4011 | return ret; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4012 | } | 
|  | 4013 |  | 
| Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 4014 | unsigned char btrfs_filetype_table[] = { | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4015 | DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK | 
|  | 4016 | }; | 
|  | 4017 |  | 
| David Woodhouse | cbdf5a2 | 2008-08-06 19:42:33 +0100 | [diff] [blame] | 4018 | static int btrfs_real_readdir(struct file *filp, void *dirent, | 
|  | 4019 | filldir_t filldir) | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4020 | { | 
| Chris Mason | 6da6aba | 2007-12-18 16:15:09 -0500 | [diff] [blame] | 4021 | struct inode *inode = filp->f_dentry->d_inode; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4022 | struct btrfs_root *root = BTRFS_I(inode)->root; | 
|  | 4023 | struct btrfs_item *item; | 
|  | 4024 | struct btrfs_dir_item *di; | 
|  | 4025 | struct btrfs_key key; | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4026 | struct btrfs_key found_key; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4027 | struct btrfs_path *path; | 
| Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 4028 | struct list_head ins_list; | 
|  | 4029 | struct list_head del_list; | 
| Josef Bacik | b4aff1f | 2011-06-28 16:18:59 -0400 | [diff] [blame] | 4030 | struct qstr q; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4031 | int ret; | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4032 | struct extent_buffer *leaf; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4033 | int slot; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4034 | unsigned char d_type; | 
|  | 4035 | int over = 0; | 
|  | 4036 | u32 di_cur; | 
|  | 4037 | u32 di_total; | 
|  | 4038 | u32 di_len; | 
|  | 4039 | int key_type = BTRFS_DIR_INDEX_KEY; | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4040 | char tmp_name[32]; | 
|  | 4041 | char *name_ptr; | 
|  | 4042 | int name_len; | 
| Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 4043 | int is_curr = 0;	/* filp->f_pos points to the current index? */ | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4044 |  | 
|  | 4045 | /* FIXME, use a real flag for deciding about the key type */ | 
|  | 4046 | if (root->fs_info->tree_root == root) | 
|  | 4047 | key_type = BTRFS_DIR_ITEM_KEY; | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4048 |  | 
| Chris Mason | 3954401 | 2007-12-12 14:38:19 -0500 | [diff] [blame] | 4049 | /* special case for "." */ | 
|  | 4050 | if (filp->f_pos == 0) { | 
| Hidetoshi Seto | 3765fef | 2011-09-18 10:20:46 -0400 | [diff] [blame] | 4051 | over = filldir(dirent, ".", 1, | 
|  | 4052 | filp->f_pos, btrfs_ino(inode), DT_DIR); | 
| Chris Mason | 3954401 | 2007-12-12 14:38:19 -0500 | [diff] [blame] | 4053 | if (over) | 
|  | 4054 | return 0; | 
|  | 4055 | filp->f_pos = 1; | 
|  | 4056 | } | 
| Chris Mason | 3954401 | 2007-12-12 14:38:19 -0500 | [diff] [blame] | 4057 | /* special case for .., just use the back ref */ | 
|  | 4058 | if (filp->f_pos == 1) { | 
| David Woodhouse | 5ecc7e5 | 2008-08-17 15:14:48 +0100 | [diff] [blame] | 4059 | u64 pino = parent_ino(filp->f_path.dentry); | 
| Chris Mason | 3954401 | 2007-12-12 14:38:19 -0500 | [diff] [blame] | 4060 | over = filldir(dirent, "..", 2, | 
| Hidetoshi Seto | 3765fef | 2011-09-18 10:20:46 -0400 | [diff] [blame] | 4061 | filp->f_pos, pino, DT_DIR); | 
| Chris Mason | 3954401 | 2007-12-12 14:38:19 -0500 | [diff] [blame] | 4062 | if (over) | 
| David Woodhouse | 49593bf | 2008-08-17 17:08:36 +0100 | [diff] [blame] | 4063 | return 0; | 
| Chris Mason | 3954401 | 2007-12-12 14:38:19 -0500 | [diff] [blame] | 4064 | filp->f_pos = 2; | 
|  | 4065 | } | 
| David Woodhouse | 49593bf | 2008-08-17 17:08:36 +0100 | [diff] [blame] | 4066 | path = btrfs_alloc_path(); | 
| Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 4067 | if (!path) | 
|  | 4068 | return -ENOMEM; | 
| Chris Mason | ff5714c | 2011-05-28 07:00:39 -0400 | [diff] [blame] | 4069 |  | 
| Josef Bacik | 026fd31 | 2011-05-13 10:32:11 -0400 | [diff] [blame] | 4070 | path->reada = 1; | 
| David Woodhouse | 49593bf | 2008-08-17 17:08:36 +0100 | [diff] [blame] | 4071 |  | 
| Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 4072 | if (key_type == BTRFS_DIR_INDEX_KEY) { | 
|  | 4073 | INIT_LIST_HEAD(&ins_list); | 
|  | 4074 | INIT_LIST_HEAD(&del_list); | 
|  | 4075 | btrfs_get_delayed_items(inode, &ins_list, &del_list); | 
|  | 4076 | } | 
|  | 4077 |  | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4078 | btrfs_set_key_type(&key, key_type); | 
|  | 4079 | key.offset = filp->f_pos; | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 4080 | key.objectid = btrfs_ino(inode); | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4081 |  | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4082 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); | 
|  | 4083 | if (ret < 0) | 
|  | 4084 | goto err; | 
| David Woodhouse | 49593bf | 2008-08-17 17:08:36 +0100 | [diff] [blame] | 4085 |  | 
|  | 4086 | while (1) { | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4087 | leaf = path->nodes[0]; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4088 | slot = path->slots[0]; | 
| Li Zefan | b9e03af | 2011-03-23 10:43:58 +0800 | [diff] [blame] | 4089 | if (slot >= btrfs_header_nritems(leaf)) { | 
|  | 4090 | ret = btrfs_next_leaf(root, path); | 
|  | 4091 | if (ret < 0) | 
|  | 4092 | goto err; | 
|  | 4093 | else if (ret > 0) | 
|  | 4094 | break; | 
|  | 4095 | continue; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4096 | } | 
| Chris Mason | 3de4586 | 2008-11-17 21:02:50 -0500 | [diff] [blame] | 4097 |  | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4098 | item = btrfs_item_nr(leaf, slot); | 
|  | 4099 | btrfs_item_key_to_cpu(leaf, &found_key, slot); | 
|  | 4100 |  | 
|  | 4101 | if (found_key.objectid != key.objectid) | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4102 | break; | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4103 | if (btrfs_key_type(&found_key) != key_type) | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4104 | break; | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4105 | if (found_key.offset < filp->f_pos) | 
| Li Zefan | b9e03af | 2011-03-23 10:43:58 +0800 | [diff] [blame] | 4106 | goto next; | 
| Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 4107 | if (key_type == BTRFS_DIR_INDEX_KEY && | 
|  | 4108 | btrfs_should_delete_dir_index(&del_list, | 
|  | 4109 | found_key.offset)) | 
|  | 4110 | goto next; | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4111 |  | 
|  | 4112 | filp->f_pos = found_key.offset; | 
| Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 4113 | is_curr = 1; | 
| David Woodhouse | 49593bf | 2008-08-17 17:08:36 +0100 | [diff] [blame] | 4114 |  | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4115 | di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item); | 
|  | 4116 | di_cur = 0; | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4117 | di_total = btrfs_item_size(leaf, item); | 
| David Woodhouse | 49593bf | 2008-08-17 17:08:36 +0100 | [diff] [blame] | 4118 |  | 
|  | 4119 | while (di_cur < di_total) { | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4120 | struct btrfs_key location; | 
| Josef Bacik | b4aff1f | 2011-06-28 16:18:59 -0400 | [diff] [blame] | 4121 | struct dentry *tmp; | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4122 |  | 
| Josef Bacik | 22a94d4 | 2011-03-16 16:47:17 -0400 | [diff] [blame] | 4123 | if (verify_dir_item(root, leaf, di)) | 
|  | 4124 | break; | 
|  | 4125 |  | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4126 | name_len = btrfs_dir_name_len(leaf, di); | 
| David Woodhouse | 49593bf | 2008-08-17 17:08:36 +0100 | [diff] [blame] | 4127 | if (name_len <= sizeof(tmp_name)) { | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4128 | name_ptr = tmp_name; | 
|  | 4129 | } else { | 
|  | 4130 | name_ptr = kmalloc(name_len, GFP_NOFS); | 
| David Woodhouse | 49593bf | 2008-08-17 17:08:36 +0100 | [diff] [blame] | 4131 | if (!name_ptr) { | 
|  | 4132 | ret = -ENOMEM; | 
|  | 4133 | goto err; | 
|  | 4134 | } | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4135 | } | 
|  | 4136 | read_extent_buffer(leaf, name_ptr, | 
|  | 4137 | (unsigned long)(di + 1), name_len); | 
|  | 4138 |  | 
|  | 4139 | d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)]; | 
|  | 4140 | btrfs_dir_item_key_to_cpu(leaf, di, &location); | 
| Chris Mason | 3de4586 | 2008-11-17 21:02:50 -0500 | [diff] [blame] | 4141 |  | 
| Josef Bacik | b4aff1f | 2011-06-28 16:18:59 -0400 | [diff] [blame] | 4142 | q.name = name_ptr; | 
|  | 4143 | q.len = name_len; | 
|  | 4144 | q.hash = full_name_hash(q.name, q.len); | 
|  | 4145 | tmp = d_lookup(filp->f_dentry, &q); | 
|  | 4146 | if (!tmp) { | 
|  | 4147 | struct btrfs_key *newkey; | 
|  | 4148 |  | 
|  | 4149 | newkey = kzalloc(sizeof(struct btrfs_key), | 
|  | 4150 | GFP_NOFS); | 
|  | 4151 | if (!newkey) | 
|  | 4152 | goto no_dentry; | 
|  | 4153 | tmp = d_alloc(filp->f_dentry, &q); | 
|  | 4154 | if (!tmp) { | 
|  | 4155 | kfree(newkey); | 
|  | 4156 | dput(tmp); | 
|  | 4157 | goto no_dentry; | 
|  | 4158 | } | 
|  | 4159 | memcpy(newkey, &location, | 
|  | 4160 | sizeof(struct btrfs_key)); | 
|  | 4161 | tmp->d_fsdata = newkey; | 
|  | 4162 | tmp->d_flags |= DCACHE_NEED_LOOKUP; | 
|  | 4163 | d_rehash(tmp); | 
|  | 4164 | dput(tmp); | 
|  | 4165 | } else { | 
|  | 4166 | dput(tmp); | 
|  | 4167 | } | 
|  | 4168 | no_dentry: | 
| Chris Mason | 3de4586 | 2008-11-17 21:02:50 -0500 | [diff] [blame] | 4169 | /* is this a reference to our own snapshot? If so | 
|  | 4170 | * skip it | 
|  | 4171 | */ | 
|  | 4172 | if (location.type == BTRFS_ROOT_ITEM_KEY && | 
|  | 4173 | location.objectid == root->root_key.objectid) { | 
|  | 4174 | over = 0; | 
|  | 4175 | goto skip; | 
|  | 4176 | } | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4177 | over = filldir(dirent, name_ptr, name_len, | 
| David Woodhouse | 49593bf | 2008-08-17 17:08:36 +0100 | [diff] [blame] | 4178 | found_key.offset, location.objectid, | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4179 | d_type); | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4180 |  | 
| Chris Mason | 3de4586 | 2008-11-17 21:02:50 -0500 | [diff] [blame] | 4181 | skip: | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4182 | if (name_ptr != tmp_name) | 
|  | 4183 | kfree(name_ptr); | 
|  | 4184 |  | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4185 | if (over) | 
|  | 4186 | goto nopos; | 
| Josef Bacik | 5103e94 | 2007-11-16 11:45:54 -0500 | [diff] [blame] | 4187 | di_len = btrfs_dir_name_len(leaf, di) + | 
| David Woodhouse | 49593bf | 2008-08-17 17:08:36 +0100 | [diff] [blame] | 4188 | btrfs_dir_data_len(leaf, di) + sizeof(*di); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4189 | di_cur += di_len; | 
|  | 4190 | di = (struct btrfs_dir_item *)((char *)di + di_len); | 
|  | 4191 | } | 
| Li Zefan | b9e03af | 2011-03-23 10:43:58 +0800 | [diff] [blame] | 4192 | next: | 
|  | 4193 | path->slots[0]++; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4194 | } | 
| David Woodhouse | 49593bf | 2008-08-17 17:08:36 +0100 | [diff] [blame] | 4195 |  | 
| Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 4196 | if (key_type == BTRFS_DIR_INDEX_KEY) { | 
|  | 4197 | if (is_curr) | 
|  | 4198 | filp->f_pos++; | 
|  | 4199 | ret = btrfs_readdir_delayed_dir_index(filp, dirent, filldir, | 
|  | 4200 | &ins_list); | 
|  | 4201 | if (ret) | 
|  | 4202 | goto nopos; | 
|  | 4203 | } | 
|  | 4204 |  | 
| David Woodhouse | 49593bf | 2008-08-17 17:08:36 +0100 | [diff] [blame] | 4205 | /* Reached end of directory/root. Bump pos past the last item. */ | 
| Yan Zheng | 5e591a0 | 2008-02-19 11:41:02 -0500 | [diff] [blame] | 4206 | if (key_type == BTRFS_DIR_INDEX_KEY) | 
| Jan Engelhardt | 406266a | 2009-12-09 22:00:38 +0000 | [diff] [blame] | 4207 | /* | 
|  | 4208 | * 32-bit glibc will use getdents64, but then strtol - | 
|  | 4209 | * so the last number we can serve is this. | 
|  | 4210 | */ | 
|  | 4211 | filp->f_pos = 0x7fffffff; | 
| Yan Zheng | 5e591a0 | 2008-02-19 11:41:02 -0500 | [diff] [blame] | 4212 | else | 
|  | 4213 | filp->f_pos++; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4214 | nopos: | 
|  | 4215 | ret = 0; | 
|  | 4216 | err: | 
| Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 4217 | if (key_type == BTRFS_DIR_INDEX_KEY) | 
|  | 4218 | btrfs_put_delayed_items(&ins_list, &del_list); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4219 | btrfs_free_path(path); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4220 | return ret; | 
|  | 4221 | } | 
|  | 4222 |  | 
| Christoph Hellwig | a9185b4 | 2010-03-05 09:21:37 +0100 | [diff] [blame] | 4223 | int btrfs_write_inode(struct inode *inode, struct writeback_control *wbc) | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4224 | { | 
|  | 4225 | struct btrfs_root *root = BTRFS_I(inode)->root; | 
|  | 4226 | struct btrfs_trans_handle *trans; | 
|  | 4227 | int ret = 0; | 
| Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 4228 | bool nolock = false; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4229 |  | 
| Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4230 | if (BTRFS_I(inode)->dummy_inode) | 
| Chris Mason | 4ca8b41 | 2008-08-05 13:30:48 -0400 | [diff] [blame] | 4231 | return 0; | 
|  | 4232 |  | 
| Chris Mason | 2cf8572 | 2011-07-26 15:35:09 -0400 | [diff] [blame] | 4233 | if (btrfs_fs_closing(root->fs_info) && btrfs_is_free_space_inode(root, inode)) | 
| Li Zefan | 82d5902 | 2011-04-20 10:33:24 +0800 | [diff] [blame] | 4234 | nolock = true; | 
| Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 4235 |  | 
| Christoph Hellwig | a9185b4 | 2010-03-05 09:21:37 +0100 | [diff] [blame] | 4236 | if (wbc->sync_mode == WB_SYNC_ALL) { | 
| Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 4237 | if (nolock) | 
| Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 4238 | trans = btrfs_join_transaction_nolock(root); | 
| Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 4239 | else | 
| Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 4240 | trans = btrfs_join_transaction(root); | 
| Tsutomu Itoh | 3612b49 | 2011-01-25 02:51:38 +0000 | [diff] [blame] | 4241 | if (IS_ERR(trans)) | 
|  | 4242 | return PTR_ERR(trans); | 
| Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 4243 | if (nolock) | 
|  | 4244 | ret = btrfs_end_transaction_nolock(trans, root); | 
|  | 4245 | else | 
|  | 4246 | ret = btrfs_commit_transaction(trans, root); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4247 | } | 
|  | 4248 | return ret; | 
|  | 4249 | } | 
|  | 4250 |  | 
|  | 4251 | /* | 
| Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 4252 | * This is somewhat expensive, updating the tree every time the | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4253 | * inode changes.  But, it is most likely to find the inode in cache. | 
|  | 4254 | * FIXME, needs more benchmarking...there are no reasons other than performance | 
|  | 4255 | * to keep or drop this code. | 
|  | 4256 | */ | 
| Josef Bacik | 22c44fe | 2011-11-30 10:45:38 -0500 | [diff] [blame] | 4257 | int btrfs_dirty_inode(struct inode *inode) | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4258 | { | 
|  | 4259 | struct btrfs_root *root = BTRFS_I(inode)->root; | 
|  | 4260 | struct btrfs_trans_handle *trans; | 
| Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4261 | int ret; | 
|  | 4262 |  | 
|  | 4263 | if (BTRFS_I(inode)->dummy_inode) | 
| Josef Bacik | 22c44fe | 2011-11-30 10:45:38 -0500 | [diff] [blame] | 4264 | return 0; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4265 |  | 
| Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 4266 | trans = btrfs_join_transaction(root); | 
| Josef Bacik | 22c44fe | 2011-11-30 10:45:38 -0500 | [diff] [blame] | 4267 | if (IS_ERR(trans)) | 
|  | 4268 | return PTR_ERR(trans); | 
| Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4269 |  | 
|  | 4270 | ret = btrfs_update_inode(trans, root, inode); | 
| Chris Mason | 94b6044 | 2010-05-26 11:02:00 -0400 | [diff] [blame] | 4271 | if (ret && ret == -ENOSPC) { | 
|  | 4272 | /* whoops, lets try again with the full transaction */ | 
|  | 4273 | btrfs_end_transaction(trans, root); | 
|  | 4274 | trans = btrfs_start_transaction(root, 1); | 
| Josef Bacik | 22c44fe | 2011-11-30 10:45:38 -0500 | [diff] [blame] | 4275 | if (IS_ERR(trans)) | 
|  | 4276 | return PTR_ERR(trans); | 
| Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4277 |  | 
| Chris Mason | 94b6044 | 2010-05-26 11:02:00 -0400 | [diff] [blame] | 4278 | ret = btrfs_update_inode(trans, root, inode); | 
| Chris Mason | 94b6044 | 2010-05-26 11:02:00 -0400 | [diff] [blame] | 4279 | } | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4280 | btrfs_end_transaction(trans, root); | 
| Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 4281 | if (BTRFS_I(inode)->delayed_node) | 
|  | 4282 | btrfs_balance_delayed_items(root); | 
| Josef Bacik | 22c44fe | 2011-11-30 10:45:38 -0500 | [diff] [blame] | 4283 |  | 
|  | 4284 | return ret; | 
|  | 4285 | } | 
|  | 4286 |  | 
|  | 4287 | /* | 
|  | 4288 | * This is a copy of file_update_time.  We need this so we can return error on | 
|  | 4289 | * ENOSPC for updating the inode in the case of file write and mmap writes. | 
|  | 4290 | */ | 
|  | 4291 | int btrfs_update_time(struct file *file) | 
|  | 4292 | { | 
|  | 4293 | struct inode *inode = file->f_path.dentry->d_inode; | 
|  | 4294 | struct timespec now; | 
|  | 4295 | int ret; | 
|  | 4296 | enum { S_MTIME = 1, S_CTIME = 2, S_VERSION = 4 } sync_it = 0; | 
|  | 4297 |  | 
|  | 4298 | /* First try to exhaust all avenues to not sync */ | 
|  | 4299 | if (IS_NOCMTIME(inode)) | 
|  | 4300 | return 0; | 
|  | 4301 |  | 
|  | 4302 | now = current_fs_time(inode->i_sb); | 
|  | 4303 | if (!timespec_equal(&inode->i_mtime, &now)) | 
|  | 4304 | sync_it = S_MTIME; | 
|  | 4305 |  | 
|  | 4306 | if (!timespec_equal(&inode->i_ctime, &now)) | 
|  | 4307 | sync_it |= S_CTIME; | 
|  | 4308 |  | 
|  | 4309 | if (IS_I_VERSION(inode)) | 
|  | 4310 | sync_it |= S_VERSION; | 
|  | 4311 |  | 
|  | 4312 | if (!sync_it) | 
|  | 4313 | return 0; | 
|  | 4314 |  | 
|  | 4315 | /* Finally allowed to write? Takes lock. */ | 
|  | 4316 | if (mnt_want_write_file(file)) | 
|  | 4317 | return 0; | 
|  | 4318 |  | 
|  | 4319 | /* Only change inode inside the lock region */ | 
|  | 4320 | if (sync_it & S_VERSION) | 
|  | 4321 | inode_inc_iversion(inode); | 
|  | 4322 | if (sync_it & S_CTIME) | 
|  | 4323 | inode->i_ctime = now; | 
|  | 4324 | if (sync_it & S_MTIME) | 
|  | 4325 | inode->i_mtime = now; | 
|  | 4326 | ret = btrfs_dirty_inode(inode); | 
|  | 4327 | if (!ret) | 
|  | 4328 | mark_inode_dirty_sync(inode); | 
|  | 4329 | mnt_drop_write(file->f_path.mnt); | 
|  | 4330 | return ret; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4331 | } | 
|  | 4332 |  | 
| Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 4333 | /* | 
|  | 4334 | * find the highest existing sequence number in a directory | 
|  | 4335 | * and then set the in-memory index_cnt variable to reflect | 
|  | 4336 | * free sequence numbers | 
|  | 4337 | */ | 
| Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 4338 | static int btrfs_set_inode_index_count(struct inode *inode) | 
|  | 4339 | { | 
|  | 4340 | struct btrfs_root *root = BTRFS_I(inode)->root; | 
|  | 4341 | struct btrfs_key key, found_key; | 
|  | 4342 | struct btrfs_path *path; | 
|  | 4343 | struct extent_buffer *leaf; | 
|  | 4344 | int ret; | 
|  | 4345 |  | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 4346 | key.objectid = btrfs_ino(inode); | 
| Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 4347 | btrfs_set_key_type(&key, BTRFS_DIR_INDEX_KEY); | 
|  | 4348 | key.offset = (u64)-1; | 
|  | 4349 |  | 
|  | 4350 | path = btrfs_alloc_path(); | 
|  | 4351 | if (!path) | 
|  | 4352 | return -ENOMEM; | 
|  | 4353 |  | 
|  | 4354 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); | 
|  | 4355 | if (ret < 0) | 
|  | 4356 | goto out; | 
|  | 4357 | /* FIXME: we should be able to handle this */ | 
|  | 4358 | if (ret == 0) | 
|  | 4359 | goto out; | 
|  | 4360 | ret = 0; | 
|  | 4361 |  | 
|  | 4362 | /* | 
|  | 4363 | * MAGIC NUMBER EXPLANATION: | 
|  | 4364 | * since we search a directory based on f_pos we have to start at 2 | 
|  | 4365 | * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody | 
|  | 4366 | * else has to start at 2 | 
|  | 4367 | */ | 
|  | 4368 | if (path->slots[0] == 0) { | 
|  | 4369 | BTRFS_I(inode)->index_cnt = 2; | 
|  | 4370 | goto out; | 
|  | 4371 | } | 
|  | 4372 |  | 
|  | 4373 | path->slots[0]--; | 
|  | 4374 |  | 
|  | 4375 | leaf = path->nodes[0]; | 
|  | 4376 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); | 
|  | 4377 |  | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 4378 | if (found_key.objectid != btrfs_ino(inode) || | 
| Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 4379 | btrfs_key_type(&found_key) != BTRFS_DIR_INDEX_KEY) { | 
|  | 4380 | BTRFS_I(inode)->index_cnt = 2; | 
|  | 4381 | goto out; | 
|  | 4382 | } | 
|  | 4383 |  | 
|  | 4384 | BTRFS_I(inode)->index_cnt = found_key.offset + 1; | 
|  | 4385 | out: | 
|  | 4386 | btrfs_free_path(path); | 
|  | 4387 | return ret; | 
|  | 4388 | } | 
|  | 4389 |  | 
| Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 4390 | /* | 
|  | 4391 | * helper to find a free sequence number in a given directory.  This current | 
|  | 4392 | * code is very simple, later versions will do smarter things in the btree | 
|  | 4393 | */ | 
| Chris Mason | 3de4586 | 2008-11-17 21:02:50 -0500 | [diff] [blame] | 4394 | int btrfs_set_inode_index(struct inode *dir, u64 *index) | 
| Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 4395 | { | 
|  | 4396 | int ret = 0; | 
|  | 4397 |  | 
|  | 4398 | if (BTRFS_I(dir)->index_cnt == (u64)-1) { | 
| Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 4399 | ret = btrfs_inode_delayed_dir_index_count(dir); | 
|  | 4400 | if (ret) { | 
|  | 4401 | ret = btrfs_set_inode_index_count(dir); | 
|  | 4402 | if (ret) | 
|  | 4403 | return ret; | 
|  | 4404 | } | 
| Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 4405 | } | 
|  | 4406 |  | 
| Chris Mason | 00e4e6b | 2008-08-05 11:18:09 -0400 | [diff] [blame] | 4407 | *index = BTRFS_I(dir)->index_cnt; | 
| Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 4408 | BTRFS_I(dir)->index_cnt++; | 
|  | 4409 |  | 
|  | 4410 | return ret; | 
|  | 4411 | } | 
|  | 4412 |  | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4413 | static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans, | 
|  | 4414 | struct btrfs_root *root, | 
| Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 4415 | struct inode *dir, | 
| Chris Mason | 9c58309 | 2008-01-29 15:15:18 -0500 | [diff] [blame] | 4416 | const char *name, int name_len, | 
| Al Viro | 175a4eb | 2011-07-26 03:30:54 -0400 | [diff] [blame] | 4417 | u64 ref_objectid, u64 objectid, | 
|  | 4418 | umode_t mode, u64 *index) | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4419 | { | 
|  | 4420 | struct inode *inode; | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4421 | struct btrfs_inode_item *inode_item; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4422 | struct btrfs_key *location; | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4423 | struct btrfs_path *path; | 
| Chris Mason | 9c58309 | 2008-01-29 15:15:18 -0500 | [diff] [blame] | 4424 | struct btrfs_inode_ref *ref; | 
|  | 4425 | struct btrfs_key key[2]; | 
|  | 4426 | u32 sizes[2]; | 
|  | 4427 | unsigned long ptr; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4428 | int ret; | 
|  | 4429 | int owner; | 
|  | 4430 |  | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4431 | path = btrfs_alloc_path(); | 
| Mark Fasheh | d8926bb | 2011-07-13 10:38:47 -0700 | [diff] [blame] | 4432 | if (!path) | 
|  | 4433 | return ERR_PTR(-ENOMEM); | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4434 |  | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4435 | inode = new_inode(root->fs_info->sb); | 
| Yoshinori Sano | 8fb2764 | 2011-04-09 02:30:07 +0000 | [diff] [blame] | 4436 | if (!inode) { | 
|  | 4437 | btrfs_free_path(path); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4438 | return ERR_PTR(-ENOMEM); | 
| Yoshinori Sano | 8fb2764 | 2011-04-09 02:30:07 +0000 | [diff] [blame] | 4439 | } | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4440 |  | 
| Li Zefan | 581bb05 | 2011-04-20 10:06:11 +0800 | [diff] [blame] | 4441 | /* | 
|  | 4442 | * we have to initialize this early, so we can reclaim the inode | 
|  | 4443 | * number if we fail afterwards in this function. | 
|  | 4444 | */ | 
|  | 4445 | inode->i_ino = objectid; | 
|  | 4446 |  | 
| Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 4447 | if (dir) { | 
| liubo | 1abe9b8 | 2011-03-24 11:18:59 +0000 | [diff] [blame] | 4448 | trace_btrfs_inode_request(dir); | 
|  | 4449 |  | 
| Chris Mason | 3de4586 | 2008-11-17 21:02:50 -0500 | [diff] [blame] | 4450 | ret = btrfs_set_inode_index(dir, index); | 
| Shen Feng | 0977143 | 2009-04-02 16:46:06 -0400 | [diff] [blame] | 4451 | if (ret) { | 
| Yoshinori Sano | 8fb2764 | 2011-04-09 02:30:07 +0000 | [diff] [blame] | 4452 | btrfs_free_path(path); | 
| Shen Feng | 0977143 | 2009-04-02 16:46:06 -0400 | [diff] [blame] | 4453 | iput(inode); | 
| Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 4454 | return ERR_PTR(ret); | 
| Shen Feng | 0977143 | 2009-04-02 16:46:06 -0400 | [diff] [blame] | 4455 | } | 
| Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 4456 | } | 
|  | 4457 | /* | 
|  | 4458 | * index_cnt is ignored for everything but a dir, | 
|  | 4459 | * btrfs_get_inode_index_count has an explanation for the magic | 
|  | 4460 | * number | 
|  | 4461 | */ | 
|  | 4462 | BTRFS_I(inode)->index_cnt = 2; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4463 | BTRFS_I(inode)->root = root; | 
| Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4464 | BTRFS_I(inode)->generation = trans->transid; | 
| Josef Bacik | 7619585 | 2010-11-19 02:18:02 +0000 | [diff] [blame] | 4465 | inode->i_generation = BTRFS_I(inode)->generation; | 
| Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4466 | btrfs_set_inode_space_info(root, inode); | 
| Chris Mason | b888db2 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 4467 |  | 
| Al Viro | 569254b | 2011-07-24 17:08:40 -0400 | [diff] [blame] | 4468 | if (S_ISDIR(mode)) | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4469 | owner = 0; | 
|  | 4470 | else | 
|  | 4471 | owner = 1; | 
| Chris Mason | 9c58309 | 2008-01-29 15:15:18 -0500 | [diff] [blame] | 4472 |  | 
|  | 4473 | key[0].objectid = objectid; | 
|  | 4474 | btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY); | 
|  | 4475 | key[0].offset = 0; | 
|  | 4476 |  | 
|  | 4477 | key[1].objectid = objectid; | 
|  | 4478 | btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY); | 
|  | 4479 | key[1].offset = ref_objectid; | 
|  | 4480 |  | 
|  | 4481 | sizes[0] = sizeof(struct btrfs_inode_item); | 
|  | 4482 | sizes[1] = name_len + sizeof(*ref); | 
|  | 4483 |  | 
| Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 4484 | path->leave_spinning = 1; | 
| Chris Mason | 9c58309 | 2008-01-29 15:15:18 -0500 | [diff] [blame] | 4485 | ret = btrfs_insert_empty_items(trans, root, path, key, sizes, 2); | 
|  | 4486 | if (ret != 0) | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4487 | goto fail; | 
|  | 4488 |  | 
| Dmitry Monakhov | ecc11fab | 2010-03-04 17:31:47 +0300 | [diff] [blame] | 4489 | inode_init_owner(inode, dir, mode); | 
| Yan Zheng | a76a3cd | 2008-10-09 11:46:29 -0400 | [diff] [blame] | 4490 | inode_set_bytes(inode, 0); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4491 | inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME; | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4492 | inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0], | 
|  | 4493 | struct btrfs_inode_item); | 
| Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4494 | fill_inode_item(trans, path->nodes[0], inode_item, inode); | 
| Chris Mason | 9c58309 | 2008-01-29 15:15:18 -0500 | [diff] [blame] | 4495 |  | 
|  | 4496 | ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1, | 
|  | 4497 | struct btrfs_inode_ref); | 
|  | 4498 | btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len); | 
| Chris Mason | 00e4e6b | 2008-08-05 11:18:09 -0400 | [diff] [blame] | 4499 | btrfs_set_inode_ref_index(path->nodes[0], ref, *index); | 
| Chris Mason | 9c58309 | 2008-01-29 15:15:18 -0500 | [diff] [blame] | 4500 | ptr = (unsigned long)(ref + 1); | 
|  | 4501 | write_extent_buffer(path->nodes[0], name, ptr, name_len); | 
|  | 4502 |  | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4503 | btrfs_mark_buffer_dirty(path->nodes[0]); | 
|  | 4504 | btrfs_free_path(path); | 
|  | 4505 |  | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4506 | location = &BTRFS_I(inode)->location; | 
|  | 4507 | location->objectid = objectid; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4508 | location->offset = 0; | 
|  | 4509 | btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY); | 
|  | 4510 |  | 
| Christoph Hellwig | 6cbff00 | 2009-04-17 10:37:41 +0200 | [diff] [blame] | 4511 | btrfs_inherit_iflags(inode, dir); | 
|  | 4512 |  | 
| Al Viro | 569254b | 2011-07-24 17:08:40 -0400 | [diff] [blame] | 4513 | if (S_ISREG(mode)) { | 
| Chris Mason | 9427216 | 2009-07-02 12:26:06 -0400 | [diff] [blame] | 4514 | if (btrfs_test_opt(root, NODATASUM)) | 
|  | 4515 | BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM; | 
| Liu Bo | 75e7cb7 | 2011-03-22 10:12:20 +0000 | [diff] [blame] | 4516 | if (btrfs_test_opt(root, NODATACOW) || | 
|  | 4517 | (BTRFS_I(dir)->flags & BTRFS_INODE_NODATACOW)) | 
| Chris Mason | 9427216 | 2009-07-02 12:26:06 -0400 | [diff] [blame] | 4518 | BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW; | 
|  | 4519 | } | 
|  | 4520 |  | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4521 | insert_inode_hash(inode); | 
| Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 4522 | inode_tree_add(inode); | 
| liubo | 1abe9b8 | 2011-03-24 11:18:59 +0000 | [diff] [blame] | 4523 |  | 
|  | 4524 | trace_btrfs_inode_new(inode); | 
| Chris Mason | 1973f0f | 2011-06-24 13:13:29 -0400 | [diff] [blame] | 4525 | btrfs_set_inode_last_trans(trans, inode); | 
| liubo | 1abe9b8 | 2011-03-24 11:18:59 +0000 | [diff] [blame] | 4526 |  | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4527 | return inode; | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4528 | fail: | 
| Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 4529 | if (dir) | 
|  | 4530 | BTRFS_I(dir)->index_cnt--; | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4531 | btrfs_free_path(path); | 
| Shen Feng | 0977143 | 2009-04-02 16:46:06 -0400 | [diff] [blame] | 4532 | iput(inode); | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4533 | return ERR_PTR(ret); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4534 | } | 
|  | 4535 |  | 
|  | 4536 | static inline u8 btrfs_inode_type(struct inode *inode) | 
|  | 4537 | { | 
|  | 4538 | return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT]; | 
|  | 4539 | } | 
|  | 4540 |  | 
| Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 4541 | /* | 
|  | 4542 | * utility function to add 'inode' into 'parent_inode' with | 
|  | 4543 | * a give name and a given sequence number. | 
|  | 4544 | * if 'add_backref' is true, also insert a backref from the | 
|  | 4545 | * inode to the parent directory. | 
|  | 4546 | */ | 
| Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4547 | int btrfs_add_link(struct btrfs_trans_handle *trans, | 
|  | 4548 | struct inode *parent_inode, struct inode *inode, | 
|  | 4549 | const char *name, int name_len, int add_backref, u64 index) | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4550 | { | 
| Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 4551 | int ret = 0; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4552 | struct btrfs_key key; | 
| Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4553 | struct btrfs_root *root = BTRFS_I(parent_inode)->root; | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 4554 | u64 ino = btrfs_ino(inode); | 
|  | 4555 | u64 parent_ino = btrfs_ino(parent_inode); | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4556 |  | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 4557 | if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) { | 
| Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 4558 | memcpy(&key, &BTRFS_I(inode)->root->root_key, sizeof(key)); | 
|  | 4559 | } else { | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 4560 | key.objectid = ino; | 
| Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 4561 | btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY); | 
|  | 4562 | key.offset = 0; | 
|  | 4563 | } | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4564 |  | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 4565 | if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) { | 
| Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 4566 | ret = btrfs_add_root_ref(trans, root->fs_info->tree_root, | 
|  | 4567 | key.objectid, root->root_key.objectid, | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 4568 | parent_ino, index, name, name_len); | 
| Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 4569 | } else if (add_backref) { | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 4570 | ret = btrfs_insert_inode_ref(trans, root, name, name_len, ino, | 
|  | 4571 | parent_ino, index); | 
| Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 4572 | } | 
|  | 4573 |  | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4574 | if (ret == 0) { | 
| Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 4575 | ret = btrfs_insert_dir_item(trans, root, name, name_len, | 
| Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 4576 | parent_inode, &key, | 
| Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 4577 | btrfs_inode_type(inode), index); | 
|  | 4578 | BUG_ON(ret); | 
|  | 4579 |  | 
| Chris Mason | dbe674a | 2008-07-17 12:54:05 -0400 | [diff] [blame] | 4580 | btrfs_i_size_write(parent_inode, parent_inode->i_size + | 
| Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4581 | name_len * 2); | 
| Chris Mason | 79c4458 | 2007-06-25 10:09:33 -0400 | [diff] [blame] | 4582 | parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME; | 
| Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4583 | ret = btrfs_update_inode(trans, root, parent_inode); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4584 | } | 
|  | 4585 | return ret; | 
|  | 4586 | } | 
|  | 4587 |  | 
|  | 4588 | static int btrfs_add_nondir(struct btrfs_trans_handle *trans, | 
| Josef Bacik | a1b075d | 2010-11-19 20:36:11 +0000 | [diff] [blame] | 4589 | struct inode *dir, struct dentry *dentry, | 
|  | 4590 | struct inode *inode, int backref, u64 index) | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4591 | { | 
| Josef Bacik | a1b075d | 2010-11-19 20:36:11 +0000 | [diff] [blame] | 4592 | int err = btrfs_add_link(trans, dir, inode, | 
|  | 4593 | dentry->d_name.name, dentry->d_name.len, | 
|  | 4594 | backref, index); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4595 | if (err > 0) | 
|  | 4596 | err = -EEXIST; | 
|  | 4597 | return err; | 
|  | 4598 | } | 
|  | 4599 |  | 
| Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 4600 | static int btrfs_mknod(struct inode *dir, struct dentry *dentry, | 
| Al Viro | 1a67aaf | 2011-07-26 01:52:52 -0400 | [diff] [blame] | 4601 | umode_t mode, dev_t rdev) | 
| Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 4602 | { | 
|  | 4603 | struct btrfs_trans_handle *trans; | 
|  | 4604 | struct btrfs_root *root = BTRFS_I(dir)->root; | 
| Chris Mason | 1832a6d | 2007-12-21 16:27:21 -0500 | [diff] [blame] | 4605 | struct inode *inode = NULL; | 
| Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 4606 | int err; | 
|  | 4607 | int drop_inode = 0; | 
|  | 4608 | u64 objectid; | 
| Chris Mason | 1832a6d | 2007-12-21 16:27:21 -0500 | [diff] [blame] | 4609 | unsigned long nr = 0; | 
| Chris Mason | 00e4e6b | 2008-08-05 11:18:09 -0400 | [diff] [blame] | 4610 | u64 index = 0; | 
| Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 4611 |  | 
|  | 4612 | if (!new_valid_dev(rdev)) | 
|  | 4613 | return -EINVAL; | 
|  | 4614 |  | 
| Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 4615 | /* | 
|  | 4616 | * 2 for inode item and ref | 
|  | 4617 | * 2 for dir items | 
|  | 4618 | * 1 for xattr if selinux is on | 
|  | 4619 | */ | 
| Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4620 | trans = btrfs_start_transaction(root, 5); | 
|  | 4621 | if (IS_ERR(trans)) | 
|  | 4622 | return PTR_ERR(trans); | 
| Chris Mason | 1832a6d | 2007-12-21 16:27:21 -0500 | [diff] [blame] | 4623 |  | 
| Li Zefan | 581bb05 | 2011-04-20 10:06:11 +0800 | [diff] [blame] | 4624 | err = btrfs_find_free_ino(root, &objectid); | 
|  | 4625 | if (err) | 
|  | 4626 | goto out_unlock; | 
|  | 4627 |  | 
| Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 4628 | inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name, | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 4629 | dentry->d_name.len, btrfs_ino(dir), objectid, | 
| Josef Bacik | d82a6f1 | 2011-05-11 15:26:06 -0400 | [diff] [blame] | 4630 | mode, &index); | 
| Tsutomu Itoh | 7cf96da | 2011-04-25 19:43:53 -0400 | [diff] [blame] | 4631 | if (IS_ERR(inode)) { | 
|  | 4632 | err = PTR_ERR(inode); | 
| Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 4633 | goto out_unlock; | 
| Tsutomu Itoh | 7cf96da | 2011-04-25 19:43:53 -0400 | [diff] [blame] | 4634 | } | 
| Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 4635 |  | 
| Eric Paris | 2a7dba3 | 2011-02-01 11:05:39 -0500 | [diff] [blame] | 4636 | err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name); | 
| Josef Bacik | 33268ea | 2008-07-24 12:16:36 -0400 | [diff] [blame] | 4637 | if (err) { | 
|  | 4638 | drop_inode = 1; | 
|  | 4639 | goto out_unlock; | 
|  | 4640 | } | 
|  | 4641 |  | 
| Casey Schaufler | ad19db7 | 2011-12-15 10:09:07 -0500 | [diff] [blame] | 4642 | /* | 
|  | 4643 | * If the active LSM wants to access the inode during | 
|  | 4644 | * d_instantiate it needs these. Smack checks to see | 
|  | 4645 | * if the filesystem supports xattrs by looking at the | 
|  | 4646 | * ops vector. | 
|  | 4647 | */ | 
|  | 4648 |  | 
|  | 4649 | inode->i_op = &btrfs_special_inode_operations; | 
| Josef Bacik | a1b075d | 2010-11-19 20:36:11 +0000 | [diff] [blame] | 4650 | err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index); | 
| Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 4651 | if (err) | 
|  | 4652 | drop_inode = 1; | 
|  | 4653 | else { | 
| Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 4654 | init_special_inode(inode, inode->i_mode, rdev); | 
| Yan | 1b4ab1b | 2007-08-29 09:11:44 -0400 | [diff] [blame] | 4655 | btrfs_update_inode(trans, root, inode); | 
| Al Viro | 08c422c | 2011-12-23 07:58:13 -0500 | [diff] [blame] | 4656 | d_instantiate(dentry, inode); | 
| Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 4657 | } | 
| Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 4658 | out_unlock: | 
| Chris Mason | d3c2fdc | 2007-09-17 10:58:06 -0400 | [diff] [blame] | 4659 | nr = trans->blocks_used; | 
| Josef Bacik | 7ad85bb | 2012-01-12 19:10:12 -0500 | [diff] [blame] | 4660 | btrfs_end_transaction(trans, root); | 
| Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4661 | btrfs_btree_balance_dirty(root, nr); | 
| Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 4662 | if (drop_inode) { | 
|  | 4663 | inode_dec_link_count(inode); | 
|  | 4664 | iput(inode); | 
|  | 4665 | } | 
| Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 4666 | return err; | 
|  | 4667 | } | 
|  | 4668 |  | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4669 | static int btrfs_create(struct inode *dir, struct dentry *dentry, | 
| Al Viro | 4acdaf2 | 2011-07-26 01:42:34 -0400 | [diff] [blame] | 4670 | umode_t mode, struct nameidata *nd) | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4671 | { | 
|  | 4672 | struct btrfs_trans_handle *trans; | 
|  | 4673 | struct btrfs_root *root = BTRFS_I(dir)->root; | 
| Chris Mason | 1832a6d | 2007-12-21 16:27:21 -0500 | [diff] [blame] | 4674 | struct inode *inode = NULL; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4675 | int drop_inode = 0; | 
| Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4676 | int err; | 
| Chris Mason | 1832a6d | 2007-12-21 16:27:21 -0500 | [diff] [blame] | 4677 | unsigned long nr = 0; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4678 | u64 objectid; | 
| Chris Mason | 00e4e6b | 2008-08-05 11:18:09 -0400 | [diff] [blame] | 4679 | u64 index = 0; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4680 |  | 
| Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 4681 | /* | 
|  | 4682 | * 2 for inode item and ref | 
|  | 4683 | * 2 for dir items | 
|  | 4684 | * 1 for xattr if selinux is on | 
|  | 4685 | */ | 
| Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4686 | trans = btrfs_start_transaction(root, 5); | 
|  | 4687 | if (IS_ERR(trans)) | 
|  | 4688 | return PTR_ERR(trans); | 
| Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 4689 |  | 
| Li Zefan | 581bb05 | 2011-04-20 10:06:11 +0800 | [diff] [blame] | 4690 | err = btrfs_find_free_ino(root, &objectid); | 
|  | 4691 | if (err) | 
|  | 4692 | goto out_unlock; | 
|  | 4693 |  | 
| Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 4694 | inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name, | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 4695 | dentry->d_name.len, btrfs_ino(dir), objectid, | 
| Josef Bacik | d82a6f1 | 2011-05-11 15:26:06 -0400 | [diff] [blame] | 4696 | mode, &index); | 
| Tsutomu Itoh | 7cf96da | 2011-04-25 19:43:53 -0400 | [diff] [blame] | 4697 | if (IS_ERR(inode)) { | 
|  | 4698 | err = PTR_ERR(inode); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4699 | goto out_unlock; | 
| Tsutomu Itoh | 7cf96da | 2011-04-25 19:43:53 -0400 | [diff] [blame] | 4700 | } | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4701 |  | 
| Eric Paris | 2a7dba3 | 2011-02-01 11:05:39 -0500 | [diff] [blame] | 4702 | err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name); | 
| Josef Bacik | 33268ea | 2008-07-24 12:16:36 -0400 | [diff] [blame] | 4703 | if (err) { | 
|  | 4704 | drop_inode = 1; | 
|  | 4705 | goto out_unlock; | 
|  | 4706 | } | 
|  | 4707 |  | 
| Casey Schaufler | ad19db7 | 2011-12-15 10:09:07 -0500 | [diff] [blame] | 4708 | /* | 
|  | 4709 | * If the active LSM wants to access the inode during | 
|  | 4710 | * d_instantiate it needs these. Smack checks to see | 
|  | 4711 | * if the filesystem supports xattrs by looking at the | 
|  | 4712 | * ops vector. | 
|  | 4713 | */ | 
|  | 4714 | inode->i_fop = &btrfs_file_operations; | 
|  | 4715 | inode->i_op = &btrfs_file_inode_operations; | 
|  | 4716 |  | 
| Josef Bacik | a1b075d | 2010-11-19 20:36:11 +0000 | [diff] [blame] | 4717 | err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4718 | if (err) | 
|  | 4719 | drop_inode = 1; | 
|  | 4720 | else { | 
|  | 4721 | inode->i_mapping->a_ops = &btrfs_aops; | 
| Chris Mason | 0416008 | 2008-03-26 10:28:07 -0400 | [diff] [blame] | 4722 | inode->i_mapping->backing_dev_info = &root->fs_info->bdi; | 
| Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 4723 | BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops; | 
| Al Viro | 08c422c | 2011-12-23 07:58:13 -0500 | [diff] [blame] | 4724 | d_instantiate(dentry, inode); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4725 | } | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4726 | out_unlock: | 
| Chris Mason | d3c2fdc | 2007-09-17 10:58:06 -0400 | [diff] [blame] | 4727 | nr = trans->blocks_used; | 
| Josef Bacik | 7ad85bb | 2012-01-12 19:10:12 -0500 | [diff] [blame] | 4728 | btrfs_end_transaction(trans, root); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4729 | if (drop_inode) { | 
|  | 4730 | inode_dec_link_count(inode); | 
|  | 4731 | iput(inode); | 
|  | 4732 | } | 
| Chris Mason | d3c2fdc | 2007-09-17 10:58:06 -0400 | [diff] [blame] | 4733 | btrfs_btree_balance_dirty(root, nr); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4734 | return err; | 
|  | 4735 | } | 
|  | 4736 |  | 
|  | 4737 | static int btrfs_link(struct dentry *old_dentry, struct inode *dir, | 
|  | 4738 | struct dentry *dentry) | 
|  | 4739 | { | 
|  | 4740 | struct btrfs_trans_handle *trans; | 
|  | 4741 | struct btrfs_root *root = BTRFS_I(dir)->root; | 
|  | 4742 | struct inode *inode = old_dentry->d_inode; | 
| Chris Mason | 00e4e6b | 2008-08-05 11:18:09 -0400 | [diff] [blame] | 4743 | u64 index; | 
| Chris Mason | 1832a6d | 2007-12-21 16:27:21 -0500 | [diff] [blame] | 4744 | unsigned long nr = 0; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4745 | int err; | 
|  | 4746 | int drop_inode = 0; | 
|  | 4747 |  | 
| TARUISI Hiroaki | 4a8be42 | 2009-11-12 07:14:26 +0000 | [diff] [blame] | 4748 | /* do not allow sys_link's with other subvols of the same device */ | 
|  | 4749 | if (root->objectid != BTRFS_I(inode)->root->objectid) | 
| Mark Fasheh | 3ab3564 | 2011-03-22 17:20:26 +0000 | [diff] [blame] | 4750 | return -EXDEV; | 
| TARUISI Hiroaki | 4a8be42 | 2009-11-12 07:14:26 +0000 | [diff] [blame] | 4751 |  | 
| Al Viro | c055e99 | 2011-03-04 17:15:18 +0000 | [diff] [blame] | 4752 | if (inode->i_nlink == ~0U) | 
|  | 4753 | return -EMLINK; | 
| Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 4754 |  | 
| Chris Mason | 3de4586 | 2008-11-17 21:02:50 -0500 | [diff] [blame] | 4755 | err = btrfs_set_inode_index(dir, &index); | 
| Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 4756 | if (err) | 
|  | 4757 | goto fail; | 
|  | 4758 |  | 
| Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4759 | /* | 
| Miao Xie | 7e6b646 | 2011-02-18 09:21:17 +0000 | [diff] [blame] | 4760 | * 2 items for inode and inode ref | 
| Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4761 | * 2 items for dir items | 
| Miao Xie | 7e6b646 | 2011-02-18 09:21:17 +0000 | [diff] [blame] | 4762 | * 1 item for parent inode | 
| Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4763 | */ | 
| Miao Xie | 7e6b646 | 2011-02-18 09:21:17 +0000 | [diff] [blame] | 4764 | trans = btrfs_start_transaction(root, 5); | 
| Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4765 | if (IS_ERR(trans)) { | 
|  | 4766 | err = PTR_ERR(trans); | 
|  | 4767 | goto fail; | 
|  | 4768 | } | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4769 |  | 
| Miao Xie | 3153495 | 2011-04-13 13:19:21 +0800 | [diff] [blame] | 4770 | btrfs_inc_nlink(inode); | 
|  | 4771 | inode->i_ctime = CURRENT_TIME; | 
| Al Viro | 7de9c6e | 2010-10-23 11:11:40 -0400 | [diff] [blame] | 4772 | ihold(inode); | 
| Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 4773 |  | 
| Josef Bacik | a1b075d | 2010-11-19 20:36:11 +0000 | [diff] [blame] | 4774 | err = btrfs_add_nondir(trans, dir, dentry, inode, 1, index); | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4775 |  | 
| Yan, Zheng | a571952 | 2009-09-24 09:17:31 -0400 | [diff] [blame] | 4776 | if (err) { | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4777 | drop_inode = 1; | 
| Yan, Zheng | a571952 | 2009-09-24 09:17:31 -0400 | [diff] [blame] | 4778 | } else { | 
| Al Viro | 10d9f30 | 2011-07-16 23:09:10 -0400 | [diff] [blame] | 4779 | struct dentry *parent = dentry->d_parent; | 
| Yan, Zheng | a571952 | 2009-09-24 09:17:31 -0400 | [diff] [blame] | 4780 | err = btrfs_update_inode(trans, root, inode); | 
|  | 4781 | BUG_ON(err); | 
| Al Viro | 08c422c | 2011-12-23 07:58:13 -0500 | [diff] [blame] | 4782 | d_instantiate(dentry, inode); | 
| Josef Bacik | 6a91221 | 2010-11-20 09:48:00 +0000 | [diff] [blame] | 4783 | btrfs_log_new_name(trans, inode, NULL, parent); | 
| Yan, Zheng | a571952 | 2009-09-24 09:17:31 -0400 | [diff] [blame] | 4784 | } | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4785 |  | 
| Chris Mason | d3c2fdc | 2007-09-17 10:58:06 -0400 | [diff] [blame] | 4786 | nr = trans->blocks_used; | 
| Josef Bacik | 7ad85bb | 2012-01-12 19:10:12 -0500 | [diff] [blame] | 4787 | btrfs_end_transaction(trans, root); | 
| Chris Mason | 1832a6d | 2007-12-21 16:27:21 -0500 | [diff] [blame] | 4788 | fail: | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4789 | if (drop_inode) { | 
|  | 4790 | inode_dec_link_count(inode); | 
|  | 4791 | iput(inode); | 
|  | 4792 | } | 
| Chris Mason | d3c2fdc | 2007-09-17 10:58:06 -0400 | [diff] [blame] | 4793 | btrfs_btree_balance_dirty(root, nr); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4794 | return err; | 
|  | 4795 | } | 
|  | 4796 |  | 
| Al Viro | 18bb1db | 2011-07-26 01:41:39 -0400 | [diff] [blame] | 4797 | static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode) | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4798 | { | 
| Chris Mason | b9d8666 | 2008-05-02 16:13:49 -0400 | [diff] [blame] | 4799 | struct inode *inode = NULL; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4800 | struct btrfs_trans_handle *trans; | 
|  | 4801 | struct btrfs_root *root = BTRFS_I(dir)->root; | 
|  | 4802 | int err = 0; | 
|  | 4803 | int drop_on_err = 0; | 
| Chris Mason | b9d8666 | 2008-05-02 16:13:49 -0400 | [diff] [blame] | 4804 | u64 objectid = 0; | 
| Chris Mason | 00e4e6b | 2008-08-05 11:18:09 -0400 | [diff] [blame] | 4805 | u64 index = 0; | 
| Chris Mason | d3c2fdc | 2007-09-17 10:58:06 -0400 | [diff] [blame] | 4806 | unsigned long nr = 1; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4807 |  | 
| Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 4808 | /* | 
|  | 4809 | * 2 items for inode and ref | 
|  | 4810 | * 2 items for dir items | 
|  | 4811 | * 1 for xattr if selinux is on | 
|  | 4812 | */ | 
| Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4813 | trans = btrfs_start_transaction(root, 5); | 
|  | 4814 | if (IS_ERR(trans)) | 
|  | 4815 | return PTR_ERR(trans); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4816 |  | 
| Li Zefan | 581bb05 | 2011-04-20 10:06:11 +0800 | [diff] [blame] | 4817 | err = btrfs_find_free_ino(root, &objectid); | 
|  | 4818 | if (err) | 
|  | 4819 | goto out_fail; | 
|  | 4820 |  | 
| Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 4821 | inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name, | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 4822 | dentry->d_name.len, btrfs_ino(dir), objectid, | 
| Josef Bacik | d82a6f1 | 2011-05-11 15:26:06 -0400 | [diff] [blame] | 4823 | S_IFDIR | mode, &index); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4824 | if (IS_ERR(inode)) { | 
|  | 4825 | err = PTR_ERR(inode); | 
|  | 4826 | goto out_fail; | 
|  | 4827 | } | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4828 |  | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4829 | drop_on_err = 1; | 
| Josef Bacik | 33268ea | 2008-07-24 12:16:36 -0400 | [diff] [blame] | 4830 |  | 
| Eric Paris | 2a7dba3 | 2011-02-01 11:05:39 -0500 | [diff] [blame] | 4831 | err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name); | 
| Josef Bacik | 33268ea | 2008-07-24 12:16:36 -0400 | [diff] [blame] | 4832 | if (err) | 
|  | 4833 | goto out_fail; | 
|  | 4834 |  | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4835 | inode->i_op = &btrfs_dir_inode_operations; | 
|  | 4836 | inode->i_fop = &btrfs_dir_file_operations; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4837 |  | 
| Chris Mason | dbe674a | 2008-07-17 12:54:05 -0400 | [diff] [blame] | 4838 | btrfs_i_size_write(inode, 0); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4839 | err = btrfs_update_inode(trans, root, inode); | 
|  | 4840 | if (err) | 
|  | 4841 | goto out_fail; | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4842 |  | 
| Josef Bacik | a1b075d | 2010-11-19 20:36:11 +0000 | [diff] [blame] | 4843 | err = btrfs_add_link(trans, dir, inode, dentry->d_name.name, | 
|  | 4844 | dentry->d_name.len, 0, index); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4845 | if (err) | 
|  | 4846 | goto out_fail; | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4847 |  | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4848 | d_instantiate(dentry, inode); | 
|  | 4849 | drop_on_err = 0; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4850 |  | 
|  | 4851 | out_fail: | 
| Chris Mason | d3c2fdc | 2007-09-17 10:58:06 -0400 | [diff] [blame] | 4852 | nr = trans->blocks_used; | 
| Josef Bacik | 7ad85bb | 2012-01-12 19:10:12 -0500 | [diff] [blame] | 4853 | btrfs_end_transaction(trans, root); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4854 | if (drop_on_err) | 
|  | 4855 | iput(inode); | 
| Chris Mason | d3c2fdc | 2007-09-17 10:58:06 -0400 | [diff] [blame] | 4856 | btrfs_btree_balance_dirty(root, nr); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4857 | return err; | 
|  | 4858 | } | 
|  | 4859 |  | 
| Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 4860 | /* helper for btfs_get_extent.  Given an existing extent in the tree, | 
|  | 4861 | * and an extent that you want to insert, deal with overlap and insert | 
|  | 4862 | * the new extent into the tree. | 
|  | 4863 | */ | 
| Chris Mason | 3b95151 | 2008-04-17 11:29:12 -0400 | [diff] [blame] | 4864 | static int merge_extent_mapping(struct extent_map_tree *em_tree, | 
|  | 4865 | struct extent_map *existing, | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 4866 | struct extent_map *em, | 
|  | 4867 | u64 map_start, u64 map_len) | 
| Chris Mason | 3b95151 | 2008-04-17 11:29:12 -0400 | [diff] [blame] | 4868 | { | 
|  | 4869 | u64 start_diff; | 
| Chris Mason | 3b95151 | 2008-04-17 11:29:12 -0400 | [diff] [blame] | 4870 |  | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 4871 | BUG_ON(map_start < em->start || map_start >= extent_map_end(em)); | 
|  | 4872 | start_diff = map_start - em->start; | 
|  | 4873 | em->start = map_start; | 
|  | 4874 | em->len = map_len; | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 4875 | if (em->block_start < EXTENT_MAP_LAST_BYTE && | 
|  | 4876 | !test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) { | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 4877 | em->block_start += start_diff; | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 4878 | em->block_len -= start_diff; | 
|  | 4879 | } | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 4880 | return add_extent_mapping(em_tree, em); | 
| Chris Mason | 3b95151 | 2008-04-17 11:29:12 -0400 | [diff] [blame] | 4881 | } | 
|  | 4882 |  | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 4883 | static noinline int uncompress_inline(struct btrfs_path *path, | 
|  | 4884 | struct inode *inode, struct page *page, | 
|  | 4885 | size_t pg_offset, u64 extent_offset, | 
|  | 4886 | struct btrfs_file_extent_item *item) | 
|  | 4887 | { | 
|  | 4888 | int ret; | 
|  | 4889 | struct extent_buffer *leaf = path->nodes[0]; | 
|  | 4890 | char *tmp; | 
|  | 4891 | size_t max_size; | 
|  | 4892 | unsigned long inline_size; | 
|  | 4893 | unsigned long ptr; | 
| Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 4894 | int compress_type; | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 4895 |  | 
|  | 4896 | WARN_ON(pg_offset != 0); | 
| Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 4897 | compress_type = btrfs_file_extent_compression(leaf, item); | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 4898 | max_size = btrfs_file_extent_ram_bytes(leaf, item); | 
|  | 4899 | inline_size = btrfs_file_extent_inline_item_len(leaf, | 
|  | 4900 | btrfs_item_nr(leaf, path->slots[0])); | 
|  | 4901 | tmp = kmalloc(inline_size, GFP_NOFS); | 
| Tsutomu Itoh | 8d41371 | 2011-04-25 19:43:52 -0400 | [diff] [blame] | 4902 | if (!tmp) | 
|  | 4903 | return -ENOMEM; | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 4904 | ptr = btrfs_file_extent_inline_start(item); | 
|  | 4905 |  | 
|  | 4906 | read_extent_buffer(leaf, tmp, ptr, inline_size); | 
|  | 4907 |  | 
| Chris Mason | 5b050f0 | 2008-11-11 09:34:41 -0500 | [diff] [blame] | 4908 | max_size = min_t(unsigned long, PAGE_CACHE_SIZE, max_size); | 
| Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 4909 | ret = btrfs_decompress(compress_type, tmp, page, | 
|  | 4910 | extent_offset, inline_size, max_size); | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 4911 | if (ret) { | 
|  | 4912 | char *kaddr = kmap_atomic(page, KM_USER0); | 
|  | 4913 | unsigned long copy_size = min_t(u64, | 
|  | 4914 | PAGE_CACHE_SIZE - pg_offset, | 
|  | 4915 | max_size - extent_offset); | 
|  | 4916 | memset(kaddr + pg_offset, 0, copy_size); | 
|  | 4917 | kunmap_atomic(kaddr, KM_USER0); | 
|  | 4918 | } | 
|  | 4919 | kfree(tmp); | 
|  | 4920 | return 0; | 
|  | 4921 | } | 
|  | 4922 |  | 
| Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 4923 | /* | 
|  | 4924 | * a bit scary, this does extent mapping from logical file offset to the disk. | 
| Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 4925 | * the ugly parts come from merging extents from the disk with the in-ram | 
|  | 4926 | * representation.  This gets more complex because of the data=ordered code, | 
| Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 4927 | * where the in-ram extents might be locked pending data=ordered completion. | 
|  | 4928 | * | 
|  | 4929 | * This also copies inline extents directly into the page. | 
|  | 4930 | */ | 
| Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 4931 |  | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 4932 | struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page, | 
| Chris Mason | 70dec80 | 2008-01-29 09:59:12 -0500 | [diff] [blame] | 4933 | size_t pg_offset, u64 start, u64 len, | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 4934 | int create) | 
|  | 4935 | { | 
|  | 4936 | int ret; | 
|  | 4937 | int err = 0; | 
| Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 4938 | u64 bytenr; | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 4939 | u64 extent_start = 0; | 
|  | 4940 | u64 extent_end = 0; | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 4941 | u64 objectid = btrfs_ino(inode); | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 4942 | u32 found_type; | 
| Chris Mason | f421950 | 2008-07-22 11:18:09 -0400 | [diff] [blame] | 4943 | struct btrfs_path *path = NULL; | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 4944 | struct btrfs_root *root = BTRFS_I(inode)->root; | 
|  | 4945 | struct btrfs_file_extent_item *item; | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4946 | struct extent_buffer *leaf; | 
|  | 4947 | struct btrfs_key found_key; | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 4948 | struct extent_map *em = NULL; | 
|  | 4949 | struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree; | 
| Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 4950 | struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree; | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 4951 | struct btrfs_trans_handle *trans = NULL; | 
| Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 4952 | int compress_type; | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 4953 |  | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 4954 | again: | 
| Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 4955 | read_lock(&em_tree->lock); | 
| Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 4956 | em = lookup_extent_mapping(em_tree, start, len); | 
| Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 4957 | if (em) | 
|  | 4958 | em->bdev = root->fs_info->fs_devices->latest_bdev; | 
| Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 4959 | read_unlock(&em_tree->lock); | 
| Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 4960 |  | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 4961 | if (em) { | 
| Chris Mason | e1c4b74 | 2008-04-22 13:26:46 -0400 | [diff] [blame] | 4962 | if (em->start > start || em->start + em->len <= start) | 
|  | 4963 | free_extent_map(em); | 
|  | 4964 | else if (em->block_start == EXTENT_MAP_INLINE && page) | 
| Chris Mason | 70dec80 | 2008-01-29 09:59:12 -0500 | [diff] [blame] | 4965 | free_extent_map(em); | 
|  | 4966 | else | 
|  | 4967 | goto out; | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 4968 | } | 
| David Sterba | 172ddd6 | 2011-04-21 00:48:27 +0200 | [diff] [blame] | 4969 | em = alloc_extent_map(); | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 4970 | if (!em) { | 
| Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 4971 | err = -ENOMEM; | 
|  | 4972 | goto out; | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 4973 | } | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 4974 | em->bdev = root->fs_info->fs_devices->latest_bdev; | 
| Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 4975 | em->start = EXTENT_MAP_HOLE; | 
| Chris Mason | 445a694 | 2008-11-10 11:53:33 -0500 | [diff] [blame] | 4976 | em->orig_start = EXTENT_MAP_HOLE; | 
| Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 4977 | em->len = (u64)-1; | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 4978 | em->block_len = (u64)-1; | 
| Chris Mason | f421950 | 2008-07-22 11:18:09 -0400 | [diff] [blame] | 4979 |  | 
|  | 4980 | if (!path) { | 
|  | 4981 | path = btrfs_alloc_path(); | 
| Josef Bacik | 026fd31 | 2011-05-13 10:32:11 -0400 | [diff] [blame] | 4982 | if (!path) { | 
|  | 4983 | err = -ENOMEM; | 
|  | 4984 | goto out; | 
|  | 4985 | } | 
|  | 4986 | /* | 
|  | 4987 | * Chances are we'll be called again, so go ahead and do | 
|  | 4988 | * readahead | 
|  | 4989 | */ | 
|  | 4990 | path->reada = 1; | 
| Chris Mason | f421950 | 2008-07-22 11:18:09 -0400 | [diff] [blame] | 4991 | } | 
|  | 4992 |  | 
| Chris Mason | 179e29e | 2007-11-01 11:28:41 -0400 | [diff] [blame] | 4993 | ret = btrfs_lookup_file_extent(trans, root, path, | 
|  | 4994 | objectid, start, trans != NULL); | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 4995 | if (ret < 0) { | 
|  | 4996 | err = ret; | 
|  | 4997 | goto out; | 
|  | 4998 | } | 
|  | 4999 |  | 
|  | 5000 | if (ret != 0) { | 
|  | 5001 | if (path->slots[0] == 0) | 
|  | 5002 | goto not_found; | 
|  | 5003 | path->slots[0]--; | 
|  | 5004 | } | 
|  | 5005 |  | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5006 | leaf = path->nodes[0]; | 
|  | 5007 | item = btrfs_item_ptr(leaf, path->slots[0], | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5008 | struct btrfs_file_extent_item); | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5009 | /* are we inside the extent that was found? */ | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5010 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); | 
|  | 5011 | found_type = btrfs_key_type(&found_key); | 
|  | 5012 | if (found_key.objectid != objectid || | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5013 | found_type != BTRFS_EXTENT_DATA_KEY) { | 
|  | 5014 | goto not_found; | 
|  | 5015 | } | 
|  | 5016 |  | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5017 | found_type = btrfs_file_extent_type(leaf, item); | 
|  | 5018 | extent_start = found_key.offset; | 
| Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 5019 | compress_type = btrfs_file_extent_compression(leaf, item); | 
| Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 5020 | if (found_type == BTRFS_FILE_EXTENT_REG || | 
|  | 5021 | found_type == BTRFS_FILE_EXTENT_PREALLOC) { | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5022 | extent_end = extent_start + | 
| Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 5023 | btrfs_file_extent_num_bytes(leaf, item); | 
| Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 5024 | } else if (found_type == BTRFS_FILE_EXTENT_INLINE) { | 
|  | 5025 | size_t size; | 
|  | 5026 | size = btrfs_file_extent_inline_len(leaf, item); | 
|  | 5027 | extent_end = (extent_start + size + root->sectorsize - 1) & | 
|  | 5028 | ~((u64)root->sectorsize - 1); | 
|  | 5029 | } | 
|  | 5030 |  | 
|  | 5031 | if (start >= extent_end) { | 
|  | 5032 | path->slots[0]++; | 
|  | 5033 | if (path->slots[0] >= btrfs_header_nritems(leaf)) { | 
|  | 5034 | ret = btrfs_next_leaf(root, path); | 
|  | 5035 | if (ret < 0) { | 
|  | 5036 | err = ret; | 
|  | 5037 | goto out; | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5038 | } | 
| Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 5039 | if (ret > 0) | 
|  | 5040 | goto not_found; | 
|  | 5041 | leaf = path->nodes[0]; | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5042 | } | 
| Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 5043 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); | 
|  | 5044 | if (found_key.objectid != objectid || | 
|  | 5045 | found_key.type != BTRFS_EXTENT_DATA_KEY) | 
|  | 5046 | goto not_found; | 
|  | 5047 | if (start + len <= found_key.offset) | 
|  | 5048 | goto not_found; | 
|  | 5049 | em->start = start; | 
|  | 5050 | em->len = found_key.offset - start; | 
|  | 5051 | goto not_found_em; | 
|  | 5052 | } | 
|  | 5053 |  | 
| Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 5054 | if (found_type == BTRFS_FILE_EXTENT_REG || | 
|  | 5055 | found_type == BTRFS_FILE_EXTENT_PREALLOC) { | 
| Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 5056 | em->start = extent_start; | 
|  | 5057 | em->len = extent_end - extent_start; | 
| Yan Zheng | ff5b7ee | 2008-11-10 07:34:43 -0500 | [diff] [blame] | 5058 | em->orig_start = extent_start - | 
|  | 5059 | btrfs_file_extent_offset(leaf, item); | 
| Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 5060 | bytenr = btrfs_file_extent_disk_bytenr(leaf, item); | 
|  | 5061 | if (bytenr == 0) { | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5062 | em->block_start = EXTENT_MAP_HOLE; | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5063 | goto insert; | 
|  | 5064 | } | 
| Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 5065 | if (compress_type != BTRFS_COMPRESS_NONE) { | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 5066 | set_bit(EXTENT_FLAG_COMPRESSED, &em->flags); | 
| Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 5067 | em->compress_type = compress_type; | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 5068 | em->block_start = bytenr; | 
|  | 5069 | em->block_len = btrfs_file_extent_disk_num_bytes(leaf, | 
|  | 5070 | item); | 
|  | 5071 | } else { | 
|  | 5072 | bytenr += btrfs_file_extent_offset(leaf, item); | 
|  | 5073 | em->block_start = bytenr; | 
|  | 5074 | em->block_len = em->len; | 
| Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 5075 | if (found_type == BTRFS_FILE_EXTENT_PREALLOC) | 
|  | 5076 | set_bit(EXTENT_FLAG_PREALLOC, &em->flags); | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 5077 | } | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5078 | goto insert; | 
|  | 5079 | } else if (found_type == BTRFS_FILE_EXTENT_INLINE) { | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5080 | unsigned long ptr; | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5081 | char *map; | 
| Chris Mason | 3326d1b | 2007-10-15 16:18:25 -0400 | [diff] [blame] | 5082 | size_t size; | 
|  | 5083 | size_t extent_offset; | 
|  | 5084 | size_t copy_size; | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5085 |  | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5086 | em->block_start = EXTENT_MAP_INLINE; | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 5087 | if (!page || create) { | 
| Yan | 689f934 | 2007-10-29 11:41:07 -0400 | [diff] [blame] | 5088 | em->start = extent_start; | 
| Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 5089 | em->len = extent_end - extent_start; | 
| Yan | 689f934 | 2007-10-29 11:41:07 -0400 | [diff] [blame] | 5090 | goto out; | 
|  | 5091 | } | 
|  | 5092 |  | 
| Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 5093 | size = btrfs_file_extent_inline_len(leaf, item); | 
|  | 5094 | extent_offset = page_offset(page) + pg_offset - extent_start; | 
| Chris Mason | 70dec80 | 2008-01-29 09:59:12 -0500 | [diff] [blame] | 5095 | copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset, | 
| Yan | 689f934 | 2007-10-29 11:41:07 -0400 | [diff] [blame] | 5096 | size - extent_offset); | 
| Chris Mason | 3326d1b | 2007-10-15 16:18:25 -0400 | [diff] [blame] | 5097 | em->start = extent_start + extent_offset; | 
| Chris Mason | 70dec80 | 2008-01-29 09:59:12 -0500 | [diff] [blame] | 5098 | em->len = (copy_size + root->sectorsize - 1) & | 
|  | 5099 | ~((u64)root->sectorsize - 1); | 
| Yan Zheng | ff5b7ee | 2008-11-10 07:34:43 -0500 | [diff] [blame] | 5100 | em->orig_start = EXTENT_MAP_INLINE; | 
| Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 5101 | if (compress_type) { | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 5102 | set_bit(EXTENT_FLAG_COMPRESSED, &em->flags); | 
| Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 5103 | em->compress_type = compress_type; | 
|  | 5104 | } | 
| Yan | 689f934 | 2007-10-29 11:41:07 -0400 | [diff] [blame] | 5105 | ptr = btrfs_file_extent_inline_start(item) + extent_offset; | 
| Chris Mason | 179e29e | 2007-11-01 11:28:41 -0400 | [diff] [blame] | 5106 | if (create == 0 && !PageUptodate(page)) { | 
| Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 5107 | if (btrfs_file_extent_compression(leaf, item) != | 
|  | 5108 | BTRFS_COMPRESS_NONE) { | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 5109 | ret = uncompress_inline(path, inode, page, | 
|  | 5110 | pg_offset, | 
|  | 5111 | extent_offset, item); | 
|  | 5112 | BUG_ON(ret); | 
|  | 5113 | } else { | 
|  | 5114 | map = kmap(page); | 
|  | 5115 | read_extent_buffer(leaf, map + pg_offset, ptr, | 
|  | 5116 | copy_size); | 
| Chris Mason | 93c82d5 | 2009-09-11 12:36:29 -0400 | [diff] [blame] | 5117 | if (pg_offset + copy_size < PAGE_CACHE_SIZE) { | 
|  | 5118 | memset(map + pg_offset + copy_size, 0, | 
|  | 5119 | PAGE_CACHE_SIZE - pg_offset - | 
|  | 5120 | copy_size); | 
|  | 5121 | } | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 5122 | kunmap(page); | 
|  | 5123 | } | 
| Chris Mason | 179e29e | 2007-11-01 11:28:41 -0400 | [diff] [blame] | 5124 | flush_dcache_page(page); | 
|  | 5125 | } else if (create && PageUptodate(page)) { | 
| Jan Schmidt | 6bf7e08 | 2011-12-01 14:35:19 +0100 | [diff] [blame] | 5126 | BUG(); | 
| Chris Mason | 179e29e | 2007-11-01 11:28:41 -0400 | [diff] [blame] | 5127 | if (!trans) { | 
|  | 5128 | kunmap(page); | 
|  | 5129 | free_extent_map(em); | 
|  | 5130 | em = NULL; | 
| Chris Mason | ff5714c | 2011-05-28 07:00:39 -0400 | [diff] [blame] | 5131 |  | 
| David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 5132 | btrfs_release_path(path); | 
| Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 5133 | trans = btrfs_join_transaction(root); | 
| Chris Mason | ff5714c | 2011-05-28 07:00:39 -0400 | [diff] [blame] | 5134 |  | 
| Tsutomu Itoh | 3612b49 | 2011-01-25 02:51:38 +0000 | [diff] [blame] | 5135 | if (IS_ERR(trans)) | 
|  | 5136 | return ERR_CAST(trans); | 
| Chris Mason | 179e29e | 2007-11-01 11:28:41 -0400 | [diff] [blame] | 5137 | goto again; | 
|  | 5138 | } | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 5139 | map = kmap(page); | 
| Chris Mason | 70dec80 | 2008-01-29 09:59:12 -0500 | [diff] [blame] | 5140 | write_extent_buffer(leaf, map + pg_offset, ptr, | 
| Chris Mason | 179e29e | 2007-11-01 11:28:41 -0400 | [diff] [blame] | 5141 | copy_size); | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 5142 | kunmap(page); | 
| Chris Mason | 179e29e | 2007-11-01 11:28:41 -0400 | [diff] [blame] | 5143 | btrfs_mark_buffer_dirty(leaf); | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5144 | } | 
| Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 5145 | set_extent_uptodate(io_tree, em->start, | 
| Arne Jansen | 507903b | 2011-04-06 10:02:20 +0000 | [diff] [blame] | 5146 | extent_map_end(em) - 1, NULL, GFP_NOFS); | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5147 | goto insert; | 
|  | 5148 | } else { | 
| Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 5149 | printk(KERN_ERR "btrfs unknown found_type %d\n", found_type); | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5150 | WARN_ON(1); | 
|  | 5151 | } | 
|  | 5152 | not_found: | 
|  | 5153 | em->start = start; | 
| Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 5154 | em->len = len; | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5155 | not_found_em: | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5156 | em->block_start = EXTENT_MAP_HOLE; | 
| Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 5157 | set_bit(EXTENT_FLAG_VACANCY, &em->flags); | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5158 | insert: | 
| David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 5159 | btrfs_release_path(path); | 
| Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 5160 | if (em->start > start || extent_map_end(em) <= start) { | 
| Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 5161 | printk(KERN_ERR "Btrfs: bad extent! em: [%llu %llu] passed " | 
|  | 5162 | "[%llu %llu]\n", (unsigned long long)em->start, | 
|  | 5163 | (unsigned long long)em->len, | 
|  | 5164 | (unsigned long long)start, | 
|  | 5165 | (unsigned long long)len); | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5166 | err = -EIO; | 
|  | 5167 | goto out; | 
|  | 5168 | } | 
| Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 5169 |  | 
|  | 5170 | err = 0; | 
| Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 5171 | write_lock(&em_tree->lock); | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5172 | ret = add_extent_mapping(em_tree, em); | 
| Chris Mason | 3b95151 | 2008-04-17 11:29:12 -0400 | [diff] [blame] | 5173 | /* it is possible that someone inserted the extent into the tree | 
|  | 5174 | * while we had the lock dropped.  It is also possible that | 
|  | 5175 | * an overlapping map exists in the tree | 
|  | 5176 | */ | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5177 | if (ret == -EEXIST) { | 
| Chris Mason | 3b95151 | 2008-04-17 11:29:12 -0400 | [diff] [blame] | 5178 | struct extent_map *existing; | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 5179 |  | 
|  | 5180 | ret = 0; | 
|  | 5181 |  | 
| Chris Mason | 3b95151 | 2008-04-17 11:29:12 -0400 | [diff] [blame] | 5182 | existing = lookup_extent_mapping(em_tree, start, len); | 
| Chris Mason | e1c4b74 | 2008-04-22 13:26:46 -0400 | [diff] [blame] | 5183 | if (existing && (existing->start > start || | 
|  | 5184 | existing->start + existing->len <= start)) { | 
|  | 5185 | free_extent_map(existing); | 
|  | 5186 | existing = NULL; | 
|  | 5187 | } | 
| Chris Mason | 3b95151 | 2008-04-17 11:29:12 -0400 | [diff] [blame] | 5188 | if (!existing) { | 
|  | 5189 | existing = lookup_extent_mapping(em_tree, em->start, | 
|  | 5190 | em->len); | 
|  | 5191 | if (existing) { | 
|  | 5192 | err = merge_extent_mapping(em_tree, existing, | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 5193 | em, start, | 
|  | 5194 | root->sectorsize); | 
| Chris Mason | 3b95151 | 2008-04-17 11:29:12 -0400 | [diff] [blame] | 5195 | free_extent_map(existing); | 
|  | 5196 | if (err) { | 
|  | 5197 | free_extent_map(em); | 
|  | 5198 | em = NULL; | 
|  | 5199 | } | 
|  | 5200 | } else { | 
|  | 5201 | err = -EIO; | 
| Chris Mason | 3b95151 | 2008-04-17 11:29:12 -0400 | [diff] [blame] | 5202 | free_extent_map(em); | 
|  | 5203 | em = NULL; | 
|  | 5204 | } | 
|  | 5205 | } else { | 
|  | 5206 | free_extent_map(em); | 
|  | 5207 | em = existing; | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 5208 | err = 0; | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5209 | } | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5210 | } | 
| Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 5211 | write_unlock(&em_tree->lock); | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5212 | out: | 
| liubo | 1abe9b8 | 2011-03-24 11:18:59 +0000 | [diff] [blame] | 5213 |  | 
|  | 5214 | trace_btrfs_get_extent(root, em); | 
|  | 5215 |  | 
| Chris Mason | f421950 | 2008-07-22 11:18:09 -0400 | [diff] [blame] | 5216 | if (path) | 
|  | 5217 | btrfs_free_path(path); | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5218 | if (trans) { | 
|  | 5219 | ret = btrfs_end_transaction(trans, root); | 
| Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 5220 | if (!err) | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5221 | err = ret; | 
|  | 5222 | } | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5223 | if (err) { | 
|  | 5224 | free_extent_map(em); | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5225 | return ERR_PTR(err); | 
|  | 5226 | } | 
|  | 5227 | return em; | 
|  | 5228 | } | 
|  | 5229 |  | 
| Chris Mason | ec29ed5 | 2011-02-23 16:23:20 -0500 | [diff] [blame] | 5230 | struct extent_map *btrfs_get_extent_fiemap(struct inode *inode, struct page *page, | 
|  | 5231 | size_t pg_offset, u64 start, u64 len, | 
|  | 5232 | int create) | 
|  | 5233 | { | 
|  | 5234 | struct extent_map *em; | 
|  | 5235 | struct extent_map *hole_em = NULL; | 
|  | 5236 | u64 range_start = start; | 
|  | 5237 | u64 end; | 
|  | 5238 | u64 found; | 
|  | 5239 | u64 found_end; | 
|  | 5240 | int err = 0; | 
|  | 5241 |  | 
|  | 5242 | em = btrfs_get_extent(inode, page, pg_offset, start, len, create); | 
|  | 5243 | if (IS_ERR(em)) | 
|  | 5244 | return em; | 
|  | 5245 | if (em) { | 
|  | 5246 | /* | 
|  | 5247 | * if our em maps to a hole, there might | 
|  | 5248 | * actually be delalloc bytes behind it | 
|  | 5249 | */ | 
|  | 5250 | if (em->block_start != EXTENT_MAP_HOLE) | 
|  | 5251 | return em; | 
|  | 5252 | else | 
|  | 5253 | hole_em = em; | 
|  | 5254 | } | 
|  | 5255 |  | 
|  | 5256 | /* check to see if we've wrapped (len == -1 or similar) */ | 
|  | 5257 | end = start + len; | 
|  | 5258 | if (end < start) | 
|  | 5259 | end = (u64)-1; | 
|  | 5260 | else | 
|  | 5261 | end -= 1; | 
|  | 5262 |  | 
|  | 5263 | em = NULL; | 
|  | 5264 |  | 
|  | 5265 | /* ok, we didn't find anything, lets look for delalloc */ | 
|  | 5266 | found = count_range_bits(&BTRFS_I(inode)->io_tree, &range_start, | 
|  | 5267 | end, len, EXTENT_DELALLOC, 1); | 
|  | 5268 | found_end = range_start + found; | 
|  | 5269 | if (found_end < range_start) | 
|  | 5270 | found_end = (u64)-1; | 
|  | 5271 |  | 
|  | 5272 | /* | 
|  | 5273 | * we didn't find anything useful, return | 
|  | 5274 | * the original results from get_extent() | 
|  | 5275 | */ | 
|  | 5276 | if (range_start > end || found_end <= start) { | 
|  | 5277 | em = hole_em; | 
|  | 5278 | hole_em = NULL; | 
|  | 5279 | goto out; | 
|  | 5280 | } | 
|  | 5281 |  | 
|  | 5282 | /* adjust the range_start to make sure it doesn't | 
|  | 5283 | * go backwards from the start they passed in | 
|  | 5284 | */ | 
|  | 5285 | range_start = max(start,range_start); | 
|  | 5286 | found = found_end - range_start; | 
|  | 5287 |  | 
|  | 5288 | if (found > 0) { | 
|  | 5289 | u64 hole_start = start; | 
|  | 5290 | u64 hole_len = len; | 
|  | 5291 |  | 
| David Sterba | 172ddd6 | 2011-04-21 00:48:27 +0200 | [diff] [blame] | 5292 | em = alloc_extent_map(); | 
| Chris Mason | ec29ed5 | 2011-02-23 16:23:20 -0500 | [diff] [blame] | 5293 | if (!em) { | 
|  | 5294 | err = -ENOMEM; | 
|  | 5295 | goto out; | 
|  | 5296 | } | 
|  | 5297 | /* | 
|  | 5298 | * when btrfs_get_extent can't find anything it | 
|  | 5299 | * returns one huge hole | 
|  | 5300 | * | 
|  | 5301 | * make sure what it found really fits our range, and | 
|  | 5302 | * adjust to make sure it is based on the start from | 
|  | 5303 | * the caller | 
|  | 5304 | */ | 
|  | 5305 | if (hole_em) { | 
|  | 5306 | u64 calc_end = extent_map_end(hole_em); | 
|  | 5307 |  | 
|  | 5308 | if (calc_end <= start || (hole_em->start > end)) { | 
|  | 5309 | free_extent_map(hole_em); | 
|  | 5310 | hole_em = NULL; | 
|  | 5311 | } else { | 
|  | 5312 | hole_start = max(hole_em->start, start); | 
|  | 5313 | hole_len = calc_end - hole_start; | 
|  | 5314 | } | 
|  | 5315 | } | 
|  | 5316 | em->bdev = NULL; | 
|  | 5317 | if (hole_em && range_start > hole_start) { | 
|  | 5318 | /* our hole starts before our delalloc, so we | 
|  | 5319 | * have to return just the parts of the hole | 
|  | 5320 | * that go until  the delalloc starts | 
|  | 5321 | */ | 
|  | 5322 | em->len = min(hole_len, | 
|  | 5323 | range_start - hole_start); | 
|  | 5324 | em->start = hole_start; | 
|  | 5325 | em->orig_start = hole_start; | 
|  | 5326 | /* | 
|  | 5327 | * don't adjust block start at all, | 
|  | 5328 | * it is fixed at EXTENT_MAP_HOLE | 
|  | 5329 | */ | 
|  | 5330 | em->block_start = hole_em->block_start; | 
|  | 5331 | em->block_len = hole_len; | 
|  | 5332 | } else { | 
|  | 5333 | em->start = range_start; | 
|  | 5334 | em->len = found; | 
|  | 5335 | em->orig_start = range_start; | 
|  | 5336 | em->block_start = EXTENT_MAP_DELALLOC; | 
|  | 5337 | em->block_len = found; | 
|  | 5338 | } | 
|  | 5339 | } else if (hole_em) { | 
|  | 5340 | return hole_em; | 
|  | 5341 | } | 
|  | 5342 | out: | 
|  | 5343 |  | 
|  | 5344 | free_extent_map(hole_em); | 
|  | 5345 | if (err) { | 
|  | 5346 | free_extent_map(em); | 
|  | 5347 | return ERR_PTR(err); | 
|  | 5348 | } | 
|  | 5349 | return em; | 
|  | 5350 | } | 
|  | 5351 |  | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5352 | static struct extent_map *btrfs_new_extent_direct(struct inode *inode, | 
| Josef Bacik | 16d299a | 2011-04-06 14:53:07 -0400 | [diff] [blame] | 5353 | struct extent_map *em, | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5354 | u64 start, u64 len) | 
|  | 5355 | { | 
|  | 5356 | struct btrfs_root *root = BTRFS_I(inode)->root; | 
|  | 5357 | struct btrfs_trans_handle *trans; | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5358 | struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree; | 
|  | 5359 | struct btrfs_key ins; | 
|  | 5360 | u64 alloc_hint; | 
|  | 5361 | int ret; | 
| Josef Bacik | 16d299a | 2011-04-06 14:53:07 -0400 | [diff] [blame] | 5362 | bool insert = false; | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5363 |  | 
| Josef Bacik | 16d299a | 2011-04-06 14:53:07 -0400 | [diff] [blame] | 5364 | /* | 
|  | 5365 | * Ok if the extent map we looked up is a hole and is for the exact | 
|  | 5366 | * range we want, there is no reason to allocate a new one, however if | 
|  | 5367 | * it is not right then we need to free this one and drop the cache for | 
|  | 5368 | * our range. | 
|  | 5369 | */ | 
|  | 5370 | if (em->block_start != EXTENT_MAP_HOLE || em->start != start || | 
|  | 5371 | em->len != len) { | 
|  | 5372 | free_extent_map(em); | 
|  | 5373 | em = NULL; | 
|  | 5374 | insert = true; | 
|  | 5375 | btrfs_drop_extent_cache(inode, start, start + len - 1, 0); | 
|  | 5376 | } | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5377 |  | 
| Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 5378 | trans = btrfs_join_transaction(root); | 
| Tsutomu Itoh | 3612b49 | 2011-01-25 02:51:38 +0000 | [diff] [blame] | 5379 | if (IS_ERR(trans)) | 
|  | 5380 | return ERR_CAST(trans); | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5381 |  | 
| Chris Mason | 4cb5300 | 2011-05-24 15:35:30 -0400 | [diff] [blame] | 5382 | if (start <= BTRFS_I(inode)->disk_i_size && len < 64 * 1024) | 
|  | 5383 | btrfs_add_inode_defrag(trans, inode); | 
|  | 5384 |  | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5385 | trans->block_rsv = &root->fs_info->delalloc_block_rsv; | 
|  | 5386 |  | 
|  | 5387 | alloc_hint = get_extent_allocation_hint(inode, start, len); | 
|  | 5388 | ret = btrfs_reserve_extent(trans, root, len, root->sectorsize, 0, | 
|  | 5389 | alloc_hint, (u64)-1, &ins, 1); | 
|  | 5390 | if (ret) { | 
|  | 5391 | em = ERR_PTR(ret); | 
|  | 5392 | goto out; | 
|  | 5393 | } | 
|  | 5394 |  | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5395 | if (!em) { | 
| David Sterba | 172ddd6 | 2011-04-21 00:48:27 +0200 | [diff] [blame] | 5396 | em = alloc_extent_map(); | 
| Josef Bacik | 16d299a | 2011-04-06 14:53:07 -0400 | [diff] [blame] | 5397 | if (!em) { | 
|  | 5398 | em = ERR_PTR(-ENOMEM); | 
|  | 5399 | goto out; | 
|  | 5400 | } | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5401 | } | 
|  | 5402 |  | 
|  | 5403 | em->start = start; | 
|  | 5404 | em->orig_start = em->start; | 
|  | 5405 | em->len = ins.offset; | 
|  | 5406 |  | 
|  | 5407 | em->block_start = ins.objectid; | 
|  | 5408 | em->block_len = ins.offset; | 
|  | 5409 | em->bdev = root->fs_info->fs_devices->latest_bdev; | 
| Josef Bacik | 16d299a | 2011-04-06 14:53:07 -0400 | [diff] [blame] | 5410 |  | 
|  | 5411 | /* | 
|  | 5412 | * We need to do this because if we're using the original em we searched | 
|  | 5413 | * for, we could have EXTENT_FLAG_VACANCY set, and we don't want that. | 
|  | 5414 | */ | 
|  | 5415 | em->flags = 0; | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5416 | set_bit(EXTENT_FLAG_PINNED, &em->flags); | 
|  | 5417 |  | 
| Josef Bacik | 16d299a | 2011-04-06 14:53:07 -0400 | [diff] [blame] | 5418 | while (insert) { | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5419 | write_lock(&em_tree->lock); | 
|  | 5420 | ret = add_extent_mapping(em_tree, em); | 
|  | 5421 | write_unlock(&em_tree->lock); | 
|  | 5422 | if (ret != -EEXIST) | 
|  | 5423 | break; | 
|  | 5424 | btrfs_drop_extent_cache(inode, start, start + em->len - 1, 0); | 
|  | 5425 | } | 
|  | 5426 |  | 
|  | 5427 | ret = btrfs_add_ordered_extent_dio(inode, start, ins.objectid, | 
|  | 5428 | ins.offset, ins.offset, 0); | 
|  | 5429 | if (ret) { | 
|  | 5430 | btrfs_free_reserved_extent(root, ins.objectid, ins.offset); | 
|  | 5431 | em = ERR_PTR(ret); | 
|  | 5432 | } | 
|  | 5433 | out: | 
|  | 5434 | btrfs_end_transaction(trans, root); | 
|  | 5435 | return em; | 
|  | 5436 | } | 
|  | 5437 |  | 
| Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 5438 | /* | 
|  | 5439 | * returns 1 when the nocow is safe, < 1 on error, 0 if the | 
|  | 5440 | * block must be cow'd | 
|  | 5441 | */ | 
|  | 5442 | static noinline int can_nocow_odirect(struct btrfs_trans_handle *trans, | 
|  | 5443 | struct inode *inode, u64 offset, u64 len) | 
|  | 5444 | { | 
|  | 5445 | struct btrfs_path *path; | 
|  | 5446 | int ret; | 
|  | 5447 | struct extent_buffer *leaf; | 
|  | 5448 | struct btrfs_root *root = BTRFS_I(inode)->root; | 
|  | 5449 | struct btrfs_file_extent_item *fi; | 
|  | 5450 | struct btrfs_key key; | 
|  | 5451 | u64 disk_bytenr; | 
|  | 5452 | u64 backref_offset; | 
|  | 5453 | u64 extent_end; | 
|  | 5454 | u64 num_bytes; | 
|  | 5455 | int slot; | 
|  | 5456 | int found_type; | 
|  | 5457 |  | 
|  | 5458 | path = btrfs_alloc_path(); | 
|  | 5459 | if (!path) | 
|  | 5460 | return -ENOMEM; | 
|  | 5461 |  | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 5462 | ret = btrfs_lookup_file_extent(trans, root, path, btrfs_ino(inode), | 
| Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 5463 | offset, 0); | 
|  | 5464 | if (ret < 0) | 
|  | 5465 | goto out; | 
|  | 5466 |  | 
|  | 5467 | slot = path->slots[0]; | 
|  | 5468 | if (ret == 1) { | 
|  | 5469 | if (slot == 0) { | 
|  | 5470 | /* can't find the item, must cow */ | 
|  | 5471 | ret = 0; | 
|  | 5472 | goto out; | 
|  | 5473 | } | 
|  | 5474 | slot--; | 
|  | 5475 | } | 
|  | 5476 | ret = 0; | 
|  | 5477 | leaf = path->nodes[0]; | 
|  | 5478 | btrfs_item_key_to_cpu(leaf, &key, slot); | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 5479 | if (key.objectid != btrfs_ino(inode) || | 
| Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 5480 | key.type != BTRFS_EXTENT_DATA_KEY) { | 
|  | 5481 | /* not our file or wrong item type, must cow */ | 
|  | 5482 | goto out; | 
|  | 5483 | } | 
|  | 5484 |  | 
|  | 5485 | if (key.offset > offset) { | 
|  | 5486 | /* Wrong offset, must cow */ | 
|  | 5487 | goto out; | 
|  | 5488 | } | 
|  | 5489 |  | 
|  | 5490 | fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item); | 
|  | 5491 | found_type = btrfs_file_extent_type(leaf, fi); | 
|  | 5492 | if (found_type != BTRFS_FILE_EXTENT_REG && | 
|  | 5493 | found_type != BTRFS_FILE_EXTENT_PREALLOC) { | 
|  | 5494 | /* not a regular extent, must cow */ | 
|  | 5495 | goto out; | 
|  | 5496 | } | 
|  | 5497 | disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi); | 
|  | 5498 | backref_offset = btrfs_file_extent_offset(leaf, fi); | 
|  | 5499 |  | 
|  | 5500 | extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi); | 
|  | 5501 | if (extent_end < offset + len) { | 
|  | 5502 | /* extent doesn't include our full range, must cow */ | 
|  | 5503 | goto out; | 
|  | 5504 | } | 
|  | 5505 |  | 
|  | 5506 | if (btrfs_extent_readonly(root, disk_bytenr)) | 
|  | 5507 | goto out; | 
|  | 5508 |  | 
|  | 5509 | /* | 
|  | 5510 | * look for other files referencing this extent, if we | 
|  | 5511 | * find any we must cow | 
|  | 5512 | */ | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 5513 | if (btrfs_cross_ref_exist(trans, root, btrfs_ino(inode), | 
| Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 5514 | key.offset - backref_offset, disk_bytenr)) | 
|  | 5515 | goto out; | 
|  | 5516 |  | 
|  | 5517 | /* | 
|  | 5518 | * adjust disk_bytenr and num_bytes to cover just the bytes | 
|  | 5519 | * in this extent we are about to write.  If there | 
|  | 5520 | * are any csums in that range we have to cow in order | 
|  | 5521 | * to keep the csums correct | 
|  | 5522 | */ | 
|  | 5523 | disk_bytenr += backref_offset; | 
|  | 5524 | disk_bytenr += offset - key.offset; | 
|  | 5525 | num_bytes = min(offset + len, extent_end) - offset; | 
|  | 5526 | if (csum_exist_in_range(root, disk_bytenr, num_bytes)) | 
|  | 5527 | goto out; | 
|  | 5528 | /* | 
|  | 5529 | * all of the above have passed, it is safe to overwrite this extent | 
|  | 5530 | * without cow | 
|  | 5531 | */ | 
|  | 5532 | ret = 1; | 
|  | 5533 | out: | 
|  | 5534 | btrfs_free_path(path); | 
|  | 5535 | return ret; | 
|  | 5536 | } | 
|  | 5537 |  | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5538 | static int btrfs_get_blocks_direct(struct inode *inode, sector_t iblock, | 
|  | 5539 | struct buffer_head *bh_result, int create) | 
|  | 5540 | { | 
|  | 5541 | struct extent_map *em; | 
|  | 5542 | struct btrfs_root *root = BTRFS_I(inode)->root; | 
|  | 5543 | u64 start = iblock << inode->i_blkbits; | 
|  | 5544 | u64 len = bh_result->b_size; | 
| Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 5545 | struct btrfs_trans_handle *trans; | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5546 |  | 
|  | 5547 | em = btrfs_get_extent(inode, NULL, 0, start, len, 0); | 
|  | 5548 | if (IS_ERR(em)) | 
|  | 5549 | return PTR_ERR(em); | 
|  | 5550 |  | 
|  | 5551 | /* | 
|  | 5552 | * Ok for INLINE and COMPRESSED extents we need to fallback on buffered | 
|  | 5553 | * io.  INLINE is special, and we could probably kludge it in here, but | 
|  | 5554 | * it's still buffered so for safety lets just fall back to the generic | 
|  | 5555 | * buffered path. | 
|  | 5556 | * | 
|  | 5557 | * For COMPRESSED we _have_ to read the entire extent in so we can | 
|  | 5558 | * decompress it, so there will be buffering required no matter what we | 
|  | 5559 | * do, so go ahead and fallback to buffered. | 
|  | 5560 | * | 
|  | 5561 | * We return -ENOTBLK because thats what makes DIO go ahead and go back | 
|  | 5562 | * to buffered IO.  Don't blame me, this is the price we pay for using | 
|  | 5563 | * the generic code. | 
|  | 5564 | */ | 
|  | 5565 | if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) || | 
|  | 5566 | em->block_start == EXTENT_MAP_INLINE) { | 
|  | 5567 | free_extent_map(em); | 
|  | 5568 | return -ENOTBLK; | 
|  | 5569 | } | 
|  | 5570 |  | 
|  | 5571 | /* Just a good old fashioned hole, return */ | 
|  | 5572 | if (!create && (em->block_start == EXTENT_MAP_HOLE || | 
|  | 5573 | test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) { | 
|  | 5574 | free_extent_map(em); | 
|  | 5575 | /* DIO will do one hole at a time, so just unlock a sector */ | 
|  | 5576 | unlock_extent(&BTRFS_I(inode)->io_tree, start, | 
|  | 5577 | start + root->sectorsize - 1, GFP_NOFS); | 
|  | 5578 | return 0; | 
|  | 5579 | } | 
|  | 5580 |  | 
|  | 5581 | /* | 
|  | 5582 | * We don't allocate a new extent in the following cases | 
|  | 5583 | * | 
|  | 5584 | * 1) The inode is marked as NODATACOW.  In this case we'll just use the | 
|  | 5585 | * existing extent. | 
|  | 5586 | * 2) The extent is marked as PREALLOC.  We're good to go here and can | 
|  | 5587 | * just use the extent. | 
|  | 5588 | * | 
|  | 5589 | */ | 
| Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 5590 | if (!create) { | 
|  | 5591 | len = em->len - (start - em->start); | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5592 | goto map; | 
| Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 5593 | } | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5594 |  | 
|  | 5595 | if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) || | 
|  | 5596 | ((BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) && | 
|  | 5597 | em->block_start != EXTENT_MAP_HOLE)) { | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5598 | int type; | 
|  | 5599 | int ret; | 
| Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 5600 | u64 block_start; | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5601 |  | 
|  | 5602 | if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) | 
|  | 5603 | type = BTRFS_ORDERED_PREALLOC; | 
|  | 5604 | else | 
|  | 5605 | type = BTRFS_ORDERED_NOCOW; | 
| Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 5606 | len = min(len, em->len - (start - em->start)); | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5607 | block_start = em->block_start + (start - em->start); | 
| Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 5608 |  | 
|  | 5609 | /* | 
|  | 5610 | * we're not going to log anything, but we do need | 
|  | 5611 | * to make sure the current transaction stays open | 
|  | 5612 | * while we look for nocow cross refs | 
|  | 5613 | */ | 
| Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 5614 | trans = btrfs_join_transaction(root); | 
| Tsutomu Itoh | 3612b49 | 2011-01-25 02:51:38 +0000 | [diff] [blame] | 5615 | if (IS_ERR(trans)) | 
| Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 5616 | goto must_cow; | 
|  | 5617 |  | 
|  | 5618 | if (can_nocow_odirect(trans, inode, start, len) == 1) { | 
|  | 5619 | ret = btrfs_add_ordered_extent_dio(inode, start, | 
|  | 5620 | block_start, len, len, type); | 
|  | 5621 | btrfs_end_transaction(trans, root); | 
|  | 5622 | if (ret) { | 
|  | 5623 | free_extent_map(em); | 
|  | 5624 | return ret; | 
|  | 5625 | } | 
|  | 5626 | goto unlock; | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5627 | } | 
| Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 5628 | btrfs_end_transaction(trans, root); | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5629 | } | 
| Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 5630 | must_cow: | 
|  | 5631 | /* | 
|  | 5632 | * this will cow the extent, reset the len in case we changed | 
|  | 5633 | * it above | 
|  | 5634 | */ | 
|  | 5635 | len = bh_result->b_size; | 
| Josef Bacik | 16d299a | 2011-04-06 14:53:07 -0400 | [diff] [blame] | 5636 | em = btrfs_new_extent_direct(inode, em, start, len); | 
| Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 5637 | if (IS_ERR(em)) | 
|  | 5638 | return PTR_ERR(em); | 
|  | 5639 | len = min(len, em->len - (start - em->start)); | 
|  | 5640 | unlock: | 
| Chris Mason | 4845e44 | 2010-05-25 20:56:50 -0400 | [diff] [blame] | 5641 | clear_extent_bit(&BTRFS_I(inode)->io_tree, start, start + len - 1, | 
|  | 5642 | EXTENT_LOCKED | EXTENT_DELALLOC | EXTENT_DIRTY, 1, | 
|  | 5643 | 0, NULL, GFP_NOFS); | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5644 | map: | 
|  | 5645 | bh_result->b_blocknr = (em->block_start + (start - em->start)) >> | 
|  | 5646 | inode->i_blkbits; | 
| Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 5647 | bh_result->b_size = len; | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5648 | bh_result->b_bdev = em->bdev; | 
|  | 5649 | set_buffer_mapped(bh_result); | 
|  | 5650 | if (create && !test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) | 
|  | 5651 | set_buffer_new(bh_result); | 
|  | 5652 |  | 
|  | 5653 | free_extent_map(em); | 
|  | 5654 |  | 
|  | 5655 | return 0; | 
|  | 5656 | } | 
|  | 5657 |  | 
|  | 5658 | struct btrfs_dio_private { | 
|  | 5659 | struct inode *inode; | 
|  | 5660 | u64 logical_offset; | 
|  | 5661 | u64 disk_bytenr; | 
|  | 5662 | u64 bytes; | 
|  | 5663 | u32 *csums; | 
|  | 5664 | void *private; | 
| Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 5665 |  | 
|  | 5666 | /* number of bios pending for this dio */ | 
|  | 5667 | atomic_t pending_bios; | 
|  | 5668 |  | 
|  | 5669 | /* IO errors */ | 
|  | 5670 | int errors; | 
|  | 5671 |  | 
|  | 5672 | struct bio *orig_bio; | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5673 | }; | 
|  | 5674 |  | 
|  | 5675 | static void btrfs_endio_direct_read(struct bio *bio, int err) | 
|  | 5676 | { | 
| Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 5677 | struct btrfs_dio_private *dip = bio->bi_private; | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5678 | struct bio_vec *bvec_end = bio->bi_io_vec + bio->bi_vcnt - 1; | 
|  | 5679 | struct bio_vec *bvec = bio->bi_io_vec; | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5680 | struct inode *inode = dip->inode; | 
|  | 5681 | struct btrfs_root *root = BTRFS_I(inode)->root; | 
|  | 5682 | u64 start; | 
|  | 5683 | u32 *private = dip->csums; | 
|  | 5684 |  | 
|  | 5685 | start = dip->logical_offset; | 
|  | 5686 | do { | 
|  | 5687 | if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)) { | 
|  | 5688 | struct page *page = bvec->bv_page; | 
|  | 5689 | char *kaddr; | 
|  | 5690 | u32 csum = ~(u32)0; | 
|  | 5691 | unsigned long flags; | 
|  | 5692 |  | 
|  | 5693 | local_irq_save(flags); | 
|  | 5694 | kaddr = kmap_atomic(page, KM_IRQ0); | 
|  | 5695 | csum = btrfs_csum_data(root, kaddr + bvec->bv_offset, | 
|  | 5696 | csum, bvec->bv_len); | 
|  | 5697 | btrfs_csum_final(csum, (char *)&csum); | 
|  | 5698 | kunmap_atomic(kaddr, KM_IRQ0); | 
|  | 5699 | local_irq_restore(flags); | 
|  | 5700 |  | 
|  | 5701 | flush_dcache_page(bvec->bv_page); | 
|  | 5702 | if (csum != *private) { | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 5703 | printk(KERN_ERR "btrfs csum failed ino %llu off" | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5704 | " %llu csum %u private %u\n", | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 5705 | (unsigned long long)btrfs_ino(inode), | 
|  | 5706 | (unsigned long long)start, | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5707 | csum, *private); | 
|  | 5708 | err = -EIO; | 
|  | 5709 | } | 
|  | 5710 | } | 
|  | 5711 |  | 
|  | 5712 | start += bvec->bv_len; | 
|  | 5713 | private++; | 
|  | 5714 | bvec++; | 
|  | 5715 | } while (bvec <= bvec_end); | 
|  | 5716 |  | 
|  | 5717 | unlock_extent(&BTRFS_I(inode)->io_tree, dip->logical_offset, | 
|  | 5718 | dip->logical_offset + dip->bytes - 1, GFP_NOFS); | 
|  | 5719 | bio->bi_private = dip->private; | 
|  | 5720 |  | 
|  | 5721 | kfree(dip->csums); | 
|  | 5722 | kfree(dip); | 
| Josef Bacik | c0da7aa | 2011-03-22 11:05:07 -0400 | [diff] [blame] | 5723 |  | 
|  | 5724 | /* If we had a csum failure make sure to clear the uptodate flag */ | 
|  | 5725 | if (err) | 
|  | 5726 | clear_bit(BIO_UPTODATE, &bio->bi_flags); | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5727 | dio_end_io(bio, err); | 
|  | 5728 | } | 
|  | 5729 |  | 
|  | 5730 | static void btrfs_endio_direct_write(struct bio *bio, int err) | 
|  | 5731 | { | 
|  | 5732 | struct btrfs_dio_private *dip = bio->bi_private; | 
|  | 5733 | struct inode *inode = dip->inode; | 
|  | 5734 | struct btrfs_root *root = BTRFS_I(inode)->root; | 
|  | 5735 | struct btrfs_trans_handle *trans; | 
|  | 5736 | struct btrfs_ordered_extent *ordered = NULL; | 
|  | 5737 | struct extent_state *cached_state = NULL; | 
| Chris Mason | 163cf09 | 2010-11-28 19:56:33 -0500 | [diff] [blame] | 5738 | u64 ordered_offset = dip->logical_offset; | 
|  | 5739 | u64 ordered_bytes = dip->bytes; | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5740 | int ret; | 
|  | 5741 |  | 
|  | 5742 | if (err) | 
|  | 5743 | goto out_done; | 
| Chris Mason | 163cf09 | 2010-11-28 19:56:33 -0500 | [diff] [blame] | 5744 | again: | 
|  | 5745 | ret = btrfs_dec_test_first_ordered_pending(inode, &ordered, | 
|  | 5746 | &ordered_offset, | 
|  | 5747 | ordered_bytes); | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5748 | if (!ret) | 
| Chris Mason | 163cf09 | 2010-11-28 19:56:33 -0500 | [diff] [blame] | 5749 | goto out_test; | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5750 |  | 
|  | 5751 | BUG_ON(!ordered); | 
|  | 5752 |  | 
| Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 5753 | trans = btrfs_join_transaction(root); | 
| Tsutomu Itoh | 3612b49 | 2011-01-25 02:51:38 +0000 | [diff] [blame] | 5754 | if (IS_ERR(trans)) { | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5755 | err = -ENOMEM; | 
|  | 5756 | goto out; | 
|  | 5757 | } | 
|  | 5758 | trans->block_rsv = &root->fs_info->delalloc_block_rsv; | 
|  | 5759 |  | 
|  | 5760 | if (test_bit(BTRFS_ORDERED_NOCOW, &ordered->flags)) { | 
|  | 5761 | ret = btrfs_ordered_update_i_size(inode, 0, ordered); | 
|  | 5762 | if (!ret) | 
| Chris Mason | 2115133 | 2011-11-10 20:39:08 -0500 | [diff] [blame] | 5763 | err = btrfs_update_inode_fallback(trans, root, inode); | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5764 | goto out; | 
|  | 5765 | } | 
|  | 5766 |  | 
|  | 5767 | lock_extent_bits(&BTRFS_I(inode)->io_tree, ordered->file_offset, | 
|  | 5768 | ordered->file_offset + ordered->len - 1, 0, | 
|  | 5769 | &cached_state, GFP_NOFS); | 
|  | 5770 |  | 
|  | 5771 | if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered->flags)) { | 
|  | 5772 | ret = btrfs_mark_extent_written(trans, inode, | 
|  | 5773 | ordered->file_offset, | 
|  | 5774 | ordered->file_offset + | 
|  | 5775 | ordered->len); | 
|  | 5776 | if (ret) { | 
|  | 5777 | err = ret; | 
|  | 5778 | goto out_unlock; | 
|  | 5779 | } | 
|  | 5780 | } else { | 
|  | 5781 | ret = insert_reserved_file_extent(trans, inode, | 
|  | 5782 | ordered->file_offset, | 
|  | 5783 | ordered->start, | 
|  | 5784 | ordered->disk_len, | 
|  | 5785 | ordered->len, | 
|  | 5786 | ordered->len, | 
|  | 5787 | 0, 0, 0, | 
|  | 5788 | BTRFS_FILE_EXTENT_REG); | 
|  | 5789 | unpin_extent_cache(&BTRFS_I(inode)->extent_tree, | 
|  | 5790 | ordered->file_offset, ordered->len); | 
|  | 5791 | if (ret) { | 
|  | 5792 | err = ret; | 
|  | 5793 | WARN_ON(1); | 
|  | 5794 | goto out_unlock; | 
|  | 5795 | } | 
|  | 5796 | } | 
|  | 5797 |  | 
|  | 5798 | add_pending_csums(trans, inode, ordered->file_offset, &ordered->list); | 
| Josef Bacik | 1ef30be | 2011-04-05 19:25:36 -0400 | [diff] [blame] | 5799 | ret = btrfs_ordered_update_i_size(inode, 0, ordered); | 
| Miao Xie | a39f752 | 2011-09-11 10:52:25 -0400 | [diff] [blame] | 5800 | if (!ret || !test_bit(BTRFS_ORDERED_PREALLOC, &ordered->flags)) | 
| Chris Mason | 2115133 | 2011-11-10 20:39:08 -0500 | [diff] [blame] | 5801 | btrfs_update_inode_fallback(trans, root, inode); | 
| Josef Bacik | 1ef30be | 2011-04-05 19:25:36 -0400 | [diff] [blame] | 5802 | ret = 0; | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5803 | out_unlock: | 
|  | 5804 | unlock_extent_cached(&BTRFS_I(inode)->io_tree, ordered->file_offset, | 
|  | 5805 | ordered->file_offset + ordered->len - 1, | 
|  | 5806 | &cached_state, GFP_NOFS); | 
|  | 5807 | out: | 
|  | 5808 | btrfs_delalloc_release_metadata(inode, ordered->len); | 
|  | 5809 | btrfs_end_transaction(trans, root); | 
| Chris Mason | 163cf09 | 2010-11-28 19:56:33 -0500 | [diff] [blame] | 5810 | ordered_offset = ordered->file_offset + ordered->len; | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5811 | btrfs_put_ordered_extent(ordered); | 
|  | 5812 | btrfs_put_ordered_extent(ordered); | 
| Chris Mason | 163cf09 | 2010-11-28 19:56:33 -0500 | [diff] [blame] | 5813 |  | 
|  | 5814 | out_test: | 
|  | 5815 | /* | 
|  | 5816 | * our bio might span multiple ordered extents.  If we haven't | 
|  | 5817 | * completed the accounting for the whole dio, go back and try again | 
|  | 5818 | */ | 
|  | 5819 | if (ordered_offset < dip->logical_offset + dip->bytes) { | 
|  | 5820 | ordered_bytes = dip->logical_offset + dip->bytes - | 
|  | 5821 | ordered_offset; | 
|  | 5822 | goto again; | 
|  | 5823 | } | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5824 | out_done: | 
|  | 5825 | bio->bi_private = dip->private; | 
|  | 5826 |  | 
|  | 5827 | kfree(dip->csums); | 
|  | 5828 | kfree(dip); | 
| Josef Bacik | c0da7aa | 2011-03-22 11:05:07 -0400 | [diff] [blame] | 5829 |  | 
|  | 5830 | /* If we had an error make sure to clear the uptodate flag */ | 
|  | 5831 | if (err) | 
|  | 5832 | clear_bit(BIO_UPTODATE, &bio->bi_flags); | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5833 | dio_end_io(bio, err); | 
|  | 5834 | } | 
|  | 5835 |  | 
| Chris Mason | eaf25d9 | 2010-05-25 09:48:28 -0400 | [diff] [blame] | 5836 | static int __btrfs_submit_bio_start_direct_io(struct inode *inode, int rw, | 
|  | 5837 | struct bio *bio, int mirror_num, | 
|  | 5838 | unsigned long bio_flags, u64 offset) | 
|  | 5839 | { | 
|  | 5840 | int ret; | 
|  | 5841 | struct btrfs_root *root = BTRFS_I(inode)->root; | 
|  | 5842 | ret = btrfs_csum_one_bio(root, inode, bio, offset, 1); | 
|  | 5843 | BUG_ON(ret); | 
|  | 5844 | return 0; | 
|  | 5845 | } | 
|  | 5846 |  | 
| Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 5847 | static void btrfs_end_dio_bio(struct bio *bio, int err) | 
|  | 5848 | { | 
|  | 5849 | struct btrfs_dio_private *dip = bio->bi_private; | 
|  | 5850 |  | 
|  | 5851 | if (err) { | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 5852 | printk(KERN_ERR "btrfs direct IO failed ino %llu rw %lu " | 
| Jan Beulich | 3dd1462 | 2010-12-07 14:54:09 +0000 | [diff] [blame] | 5853 | "sector %#Lx len %u err no %d\n", | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 5854 | (unsigned long long)btrfs_ino(dip->inode), bio->bi_rw, | 
| Jan Beulich | 3dd1462 | 2010-12-07 14:54:09 +0000 | [diff] [blame] | 5855 | (unsigned long long)bio->bi_sector, bio->bi_size, err); | 
| Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 5856 | dip->errors = 1; | 
|  | 5857 |  | 
|  | 5858 | /* | 
|  | 5859 | * before atomic variable goto zero, we must make sure | 
|  | 5860 | * dip->errors is perceived to be set. | 
|  | 5861 | */ | 
|  | 5862 | smp_mb__before_atomic_dec(); | 
|  | 5863 | } | 
|  | 5864 |  | 
|  | 5865 | /* if there are more bios still pending for this dio, just exit */ | 
|  | 5866 | if (!atomic_dec_and_test(&dip->pending_bios)) | 
|  | 5867 | goto out; | 
|  | 5868 |  | 
|  | 5869 | if (dip->errors) | 
|  | 5870 | bio_io_error(dip->orig_bio); | 
|  | 5871 | else { | 
|  | 5872 | set_bit(BIO_UPTODATE, &dip->orig_bio->bi_flags); | 
|  | 5873 | bio_endio(dip->orig_bio, 0); | 
|  | 5874 | } | 
|  | 5875 | out: | 
|  | 5876 | bio_put(bio); | 
|  | 5877 | } | 
|  | 5878 |  | 
|  | 5879 | static struct bio *btrfs_dio_bio_alloc(struct block_device *bdev, | 
|  | 5880 | u64 first_sector, gfp_t gfp_flags) | 
|  | 5881 | { | 
|  | 5882 | int nr_vecs = bio_get_nr_vecs(bdev); | 
|  | 5883 | return btrfs_bio_alloc(bdev, first_sector, nr_vecs, gfp_flags); | 
|  | 5884 | } | 
|  | 5885 |  | 
|  | 5886 | static inline int __btrfs_submit_dio_bio(struct bio *bio, struct inode *inode, | 
|  | 5887 | int rw, u64 file_offset, int skip_sum, | 
| Josef Bacik | 1ae3993 | 2011-04-06 14:41:34 -0400 | [diff] [blame] | 5888 | u32 *csums, int async_submit) | 
| Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 5889 | { | 
|  | 5890 | int write = rw & REQ_WRITE; | 
|  | 5891 | struct btrfs_root *root = BTRFS_I(inode)->root; | 
|  | 5892 | int ret; | 
|  | 5893 |  | 
|  | 5894 | bio_get(bio); | 
|  | 5895 | ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0); | 
|  | 5896 | if (ret) | 
|  | 5897 | goto err; | 
|  | 5898 |  | 
| Josef Bacik | 1ae3993 | 2011-04-06 14:41:34 -0400 | [diff] [blame] | 5899 | if (skip_sum) | 
|  | 5900 | goto map; | 
|  | 5901 |  | 
|  | 5902 | if (write && async_submit) { | 
| Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 5903 | ret = btrfs_wq_submit_bio(root->fs_info, | 
|  | 5904 | inode, rw, bio, 0, 0, | 
|  | 5905 | file_offset, | 
|  | 5906 | __btrfs_submit_bio_start_direct_io, | 
|  | 5907 | __btrfs_submit_bio_done); | 
|  | 5908 | goto err; | 
| Josef Bacik | 1ae3993 | 2011-04-06 14:41:34 -0400 | [diff] [blame] | 5909 | } else if (write) { | 
|  | 5910 | /* | 
|  | 5911 | * If we aren't doing async submit, calculate the csum of the | 
|  | 5912 | * bio now. | 
|  | 5913 | */ | 
|  | 5914 | ret = btrfs_csum_one_bio(root, inode, bio, file_offset, 1); | 
|  | 5915 | if (ret) | 
|  | 5916 | goto err; | 
| Tsutomu Itoh | c2db107 | 2011-03-01 06:48:31 +0000 | [diff] [blame] | 5917 | } else if (!skip_sum) { | 
|  | 5918 | ret = btrfs_lookup_bio_sums_dio(root, inode, bio, | 
| Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 5919 | file_offset, csums); | 
| Tsutomu Itoh | c2db107 | 2011-03-01 06:48:31 +0000 | [diff] [blame] | 5920 | if (ret) | 
|  | 5921 | goto err; | 
|  | 5922 | } | 
| Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 5923 |  | 
| Josef Bacik | 1ae3993 | 2011-04-06 14:41:34 -0400 | [diff] [blame] | 5924 | map: | 
|  | 5925 | ret = btrfs_map_bio(root, rw, bio, 0, async_submit); | 
| Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 5926 | err: | 
|  | 5927 | bio_put(bio); | 
|  | 5928 | return ret; | 
|  | 5929 | } | 
|  | 5930 |  | 
|  | 5931 | static int btrfs_submit_direct_hook(int rw, struct btrfs_dio_private *dip, | 
|  | 5932 | int skip_sum) | 
|  | 5933 | { | 
|  | 5934 | struct inode *inode = dip->inode; | 
|  | 5935 | struct btrfs_root *root = BTRFS_I(inode)->root; | 
|  | 5936 | struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree; | 
|  | 5937 | struct bio *bio; | 
|  | 5938 | struct bio *orig_bio = dip->orig_bio; | 
|  | 5939 | struct bio_vec *bvec = orig_bio->bi_io_vec; | 
|  | 5940 | u64 start_sector = orig_bio->bi_sector; | 
|  | 5941 | u64 file_offset = dip->logical_offset; | 
|  | 5942 | u64 submit_len = 0; | 
|  | 5943 | u64 map_length; | 
|  | 5944 | int nr_pages = 0; | 
|  | 5945 | u32 *csums = dip->csums; | 
|  | 5946 | int ret = 0; | 
| Josef Bacik | 1ae3993 | 2011-04-06 14:41:34 -0400 | [diff] [blame] | 5947 | int async_submit = 0; | 
| Josef Bacik | 98bc314 | 2011-03-22 11:00:46 -0400 | [diff] [blame] | 5948 | int write = rw & REQ_WRITE; | 
| Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 5949 |  | 
| Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 5950 | map_length = orig_bio->bi_size; | 
|  | 5951 | ret = btrfs_map_block(map_tree, READ, start_sector << 9, | 
|  | 5952 | &map_length, NULL, 0); | 
|  | 5953 | if (ret) { | 
| Josef Bacik | 64728bb | 2011-04-25 19:43:52 -0400 | [diff] [blame] | 5954 | bio_put(orig_bio); | 
| Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 5955 | return -EIO; | 
|  | 5956 | } | 
|  | 5957 |  | 
| Josef Bacik | 02f57c7 | 2011-04-06 14:25:44 -0400 | [diff] [blame] | 5958 | if (map_length >= orig_bio->bi_size) { | 
|  | 5959 | bio = orig_bio; | 
|  | 5960 | goto submit; | 
|  | 5961 | } | 
|  | 5962 |  | 
| Josef Bacik | 1ae3993 | 2011-04-06 14:41:34 -0400 | [diff] [blame] | 5963 | async_submit = 1; | 
| Josef Bacik | 02f57c7 | 2011-04-06 14:25:44 -0400 | [diff] [blame] | 5964 | bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev, start_sector, GFP_NOFS); | 
|  | 5965 | if (!bio) | 
|  | 5966 | return -ENOMEM; | 
|  | 5967 | bio->bi_private = dip; | 
|  | 5968 | bio->bi_end_io = btrfs_end_dio_bio; | 
|  | 5969 | atomic_inc(&dip->pending_bios); | 
|  | 5970 |  | 
| Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 5971 | while (bvec <= (orig_bio->bi_io_vec + orig_bio->bi_vcnt - 1)) { | 
|  | 5972 | if (unlikely(map_length < submit_len + bvec->bv_len || | 
|  | 5973 | bio_add_page(bio, bvec->bv_page, bvec->bv_len, | 
|  | 5974 | bvec->bv_offset) < bvec->bv_len)) { | 
|  | 5975 | /* | 
|  | 5976 | * inc the count before we submit the bio so | 
|  | 5977 | * we know the end IO handler won't happen before | 
|  | 5978 | * we inc the count. Otherwise, the dip might get freed | 
|  | 5979 | * before we're done setting it up | 
|  | 5980 | */ | 
|  | 5981 | atomic_inc(&dip->pending_bios); | 
|  | 5982 | ret = __btrfs_submit_dio_bio(bio, inode, rw, | 
|  | 5983 | file_offset, skip_sum, | 
| Josef Bacik | 1ae3993 | 2011-04-06 14:41:34 -0400 | [diff] [blame] | 5984 | csums, async_submit); | 
| Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 5985 | if (ret) { | 
|  | 5986 | bio_put(bio); | 
|  | 5987 | atomic_dec(&dip->pending_bios); | 
|  | 5988 | goto out_err; | 
|  | 5989 | } | 
|  | 5990 |  | 
| Josef Bacik | 98bc314 | 2011-03-22 11:00:46 -0400 | [diff] [blame] | 5991 | /* Write's use the ordered csums */ | 
|  | 5992 | if (!write && !skip_sum) | 
| Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 5993 | csums = csums + nr_pages; | 
|  | 5994 | start_sector += submit_len >> 9; | 
|  | 5995 | file_offset += submit_len; | 
|  | 5996 |  | 
|  | 5997 | submit_len = 0; | 
|  | 5998 | nr_pages = 0; | 
|  | 5999 |  | 
|  | 6000 | bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev, | 
|  | 6001 | start_sector, GFP_NOFS); | 
|  | 6002 | if (!bio) | 
|  | 6003 | goto out_err; | 
|  | 6004 | bio->bi_private = dip; | 
|  | 6005 | bio->bi_end_io = btrfs_end_dio_bio; | 
|  | 6006 |  | 
|  | 6007 | map_length = orig_bio->bi_size; | 
|  | 6008 | ret = btrfs_map_block(map_tree, READ, start_sector << 9, | 
|  | 6009 | &map_length, NULL, 0); | 
|  | 6010 | if (ret) { | 
|  | 6011 | bio_put(bio); | 
|  | 6012 | goto out_err; | 
|  | 6013 | } | 
|  | 6014 | } else { | 
|  | 6015 | submit_len += bvec->bv_len; | 
|  | 6016 | nr_pages ++; | 
|  | 6017 | bvec++; | 
|  | 6018 | } | 
|  | 6019 | } | 
|  | 6020 |  | 
| Josef Bacik | 02f57c7 | 2011-04-06 14:25:44 -0400 | [diff] [blame] | 6021 | submit: | 
| Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 6022 | ret = __btrfs_submit_dio_bio(bio, inode, rw, file_offset, skip_sum, | 
| Josef Bacik | 1ae3993 | 2011-04-06 14:41:34 -0400 | [diff] [blame] | 6023 | csums, async_submit); | 
| Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 6024 | if (!ret) | 
|  | 6025 | return 0; | 
|  | 6026 |  | 
|  | 6027 | bio_put(bio); | 
|  | 6028 | out_err: | 
|  | 6029 | dip->errors = 1; | 
|  | 6030 | /* | 
|  | 6031 | * before atomic variable goto zero, we must | 
|  | 6032 | * make sure dip->errors is perceived to be set. | 
|  | 6033 | */ | 
|  | 6034 | smp_mb__before_atomic_dec(); | 
|  | 6035 | if (atomic_dec_and_test(&dip->pending_bios)) | 
|  | 6036 | bio_io_error(dip->orig_bio); | 
|  | 6037 |  | 
|  | 6038 | /* bio_end_io() will handle error, so we needn't return it */ | 
|  | 6039 | return 0; | 
|  | 6040 | } | 
|  | 6041 |  | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6042 | static void btrfs_submit_direct(int rw, struct bio *bio, struct inode *inode, | 
|  | 6043 | loff_t file_offset) | 
|  | 6044 | { | 
|  | 6045 | struct btrfs_root *root = BTRFS_I(inode)->root; | 
|  | 6046 | struct btrfs_dio_private *dip; | 
|  | 6047 | struct bio_vec *bvec = bio->bi_io_vec; | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6048 | int skip_sum; | 
| Christoph Hellwig | 7b6d91d | 2010-08-07 18:20:39 +0200 | [diff] [blame] | 6049 | int write = rw & REQ_WRITE; | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6050 | int ret = 0; | 
|  | 6051 |  | 
|  | 6052 | skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM; | 
|  | 6053 |  | 
|  | 6054 | dip = kmalloc(sizeof(*dip), GFP_NOFS); | 
|  | 6055 | if (!dip) { | 
|  | 6056 | ret = -ENOMEM; | 
|  | 6057 | goto free_ordered; | 
|  | 6058 | } | 
|  | 6059 | dip->csums = NULL; | 
|  | 6060 |  | 
| Josef Bacik | 98bc314 | 2011-03-22 11:00:46 -0400 | [diff] [blame] | 6061 | /* Write's use the ordered csum stuff, so we don't need dip->csums */ | 
|  | 6062 | if (!write && !skip_sum) { | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6063 | dip->csums = kmalloc(sizeof(u32) * bio->bi_vcnt, GFP_NOFS); | 
|  | 6064 | if (!dip->csums) { | 
| Daniel J Blueman | b4966b7 | 2011-03-09 16:46:42 +0000 | [diff] [blame] | 6065 | kfree(dip); | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6066 | ret = -ENOMEM; | 
|  | 6067 | goto free_ordered; | 
|  | 6068 | } | 
|  | 6069 | } | 
|  | 6070 |  | 
|  | 6071 | dip->private = bio->bi_private; | 
|  | 6072 | dip->inode = inode; | 
|  | 6073 | dip->logical_offset = file_offset; | 
|  | 6074 |  | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6075 | dip->bytes = 0; | 
|  | 6076 | do { | 
|  | 6077 | dip->bytes += bvec->bv_len; | 
|  | 6078 | bvec++; | 
|  | 6079 | } while (bvec <= (bio->bi_io_vec + bio->bi_vcnt - 1)); | 
|  | 6080 |  | 
| Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 6081 | dip->disk_bytenr = (u64)bio->bi_sector << 9; | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6082 | bio->bi_private = dip; | 
| Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 6083 | dip->errors = 0; | 
|  | 6084 | dip->orig_bio = bio; | 
|  | 6085 | atomic_set(&dip->pending_bios, 0); | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6086 |  | 
|  | 6087 | if (write) | 
|  | 6088 | bio->bi_end_io = btrfs_endio_direct_write; | 
|  | 6089 | else | 
|  | 6090 | bio->bi_end_io = btrfs_endio_direct_read; | 
|  | 6091 |  | 
| Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 6092 | ret = btrfs_submit_direct_hook(rw, dip, skip_sum); | 
|  | 6093 | if (!ret) | 
| Chris Mason | eaf25d9 | 2010-05-25 09:48:28 -0400 | [diff] [blame] | 6094 | return; | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6095 | free_ordered: | 
|  | 6096 | /* | 
|  | 6097 | * If this is a write, we need to clean up the reserved space and kill | 
|  | 6098 | * the ordered extent. | 
|  | 6099 | */ | 
|  | 6100 | if (write) { | 
|  | 6101 | struct btrfs_ordered_extent *ordered; | 
| Josef Bacik | 955256f | 2010-11-19 09:41:10 -0500 | [diff] [blame] | 6102 | ordered = btrfs_lookup_ordered_extent(inode, file_offset); | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6103 | if (!test_bit(BTRFS_ORDERED_PREALLOC, &ordered->flags) && | 
|  | 6104 | !test_bit(BTRFS_ORDERED_NOCOW, &ordered->flags)) | 
|  | 6105 | btrfs_free_reserved_extent(root, ordered->start, | 
|  | 6106 | ordered->disk_len); | 
|  | 6107 | btrfs_put_ordered_extent(ordered); | 
|  | 6108 | btrfs_put_ordered_extent(ordered); | 
|  | 6109 | } | 
|  | 6110 | bio_endio(bio, ret); | 
|  | 6111 | } | 
|  | 6112 |  | 
| Chris Mason | 5a5f79b | 2010-05-26 21:33:37 -0400 | [diff] [blame] | 6113 | static ssize_t check_direct_IO(struct btrfs_root *root, int rw, struct kiocb *iocb, | 
|  | 6114 | const struct iovec *iov, loff_t offset, | 
|  | 6115 | unsigned long nr_segs) | 
|  | 6116 | { | 
|  | 6117 | int seg; | 
| Josef Bacik | a1b75f7 | 2011-04-08 15:51:18 +0000 | [diff] [blame] | 6118 | int i; | 
| Chris Mason | 5a5f79b | 2010-05-26 21:33:37 -0400 | [diff] [blame] | 6119 | size_t size; | 
|  | 6120 | unsigned long addr; | 
|  | 6121 | unsigned blocksize_mask = root->sectorsize - 1; | 
|  | 6122 | ssize_t retval = -EINVAL; | 
|  | 6123 | loff_t end = offset; | 
|  | 6124 |  | 
|  | 6125 | if (offset & blocksize_mask) | 
|  | 6126 | goto out; | 
|  | 6127 |  | 
|  | 6128 | /* Check the memory alignment.  Blocks cannot straddle pages */ | 
|  | 6129 | for (seg = 0; seg < nr_segs; seg++) { | 
|  | 6130 | addr = (unsigned long)iov[seg].iov_base; | 
|  | 6131 | size = iov[seg].iov_len; | 
|  | 6132 | end += size; | 
| Josef Bacik | a1b75f7 | 2011-04-08 15:51:18 +0000 | [diff] [blame] | 6133 | if ((addr & blocksize_mask) || (size & blocksize_mask)) | 
| Chris Mason | 5a5f79b | 2010-05-26 21:33:37 -0400 | [diff] [blame] | 6134 | goto out; | 
| Josef Bacik | a1b75f7 | 2011-04-08 15:51:18 +0000 | [diff] [blame] | 6135 |  | 
|  | 6136 | /* If this is a write we don't need to check anymore */ | 
|  | 6137 | if (rw & WRITE) | 
|  | 6138 | continue; | 
|  | 6139 |  | 
|  | 6140 | /* | 
|  | 6141 | * Check to make sure we don't have duplicate iov_base's in this | 
|  | 6142 | * iovec, if so return EINVAL, otherwise we'll get csum errors | 
|  | 6143 | * when reading back. | 
|  | 6144 | */ | 
|  | 6145 | for (i = seg + 1; i < nr_segs; i++) { | 
|  | 6146 | if (iov[seg].iov_base == iov[i].iov_base) | 
|  | 6147 | goto out; | 
|  | 6148 | } | 
| Chris Mason | 5a5f79b | 2010-05-26 21:33:37 -0400 | [diff] [blame] | 6149 | } | 
|  | 6150 | retval = 0; | 
|  | 6151 | out: | 
|  | 6152 | return retval; | 
|  | 6153 | } | 
| Chris Mason | 1643298 | 2008-04-10 10:23:21 -0400 | [diff] [blame] | 6154 | static ssize_t btrfs_direct_IO(int rw, struct kiocb *iocb, | 
|  | 6155 | const struct iovec *iov, loff_t offset, | 
|  | 6156 | unsigned long nr_segs) | 
|  | 6157 | { | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6158 | struct file *file = iocb->ki_filp; | 
|  | 6159 | struct inode *inode = file->f_mapping->host; | 
|  | 6160 | struct btrfs_ordered_extent *ordered; | 
| Chris Mason | 4845e44 | 2010-05-25 20:56:50 -0400 | [diff] [blame] | 6161 | struct extent_state *cached_state = NULL; | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6162 | u64 lockstart, lockend; | 
|  | 6163 | ssize_t ret; | 
| Chris Mason | 4845e44 | 2010-05-25 20:56:50 -0400 | [diff] [blame] | 6164 | int writing = rw & WRITE; | 
|  | 6165 | int write_bits = 0; | 
| Chris Mason | 3f7c579 | 2010-05-26 10:59:53 -0400 | [diff] [blame] | 6166 | size_t count = iov_length(iov, nr_segs); | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6167 |  | 
| Chris Mason | 5a5f79b | 2010-05-26 21:33:37 -0400 | [diff] [blame] | 6168 | if (check_direct_IO(BTRFS_I(inode)->root, rw, iocb, iov, | 
|  | 6169 | offset, nr_segs)) { | 
|  | 6170 | return 0; | 
|  | 6171 | } | 
|  | 6172 |  | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6173 | lockstart = offset; | 
| Chris Mason | 3f7c579 | 2010-05-26 10:59:53 -0400 | [diff] [blame] | 6174 | lockend = offset + count - 1; | 
|  | 6175 |  | 
|  | 6176 | if (writing) { | 
|  | 6177 | ret = btrfs_delalloc_reserve_space(inode, count); | 
|  | 6178 | if (ret) | 
|  | 6179 | goto out; | 
|  | 6180 | } | 
| Chris Mason | 4845e44 | 2010-05-25 20:56:50 -0400 | [diff] [blame] | 6181 |  | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6182 | while (1) { | 
| Chris Mason | 4845e44 | 2010-05-25 20:56:50 -0400 | [diff] [blame] | 6183 | lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend, | 
|  | 6184 | 0, &cached_state, GFP_NOFS); | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6185 | /* | 
|  | 6186 | * We're concerned with the entire range that we're going to be | 
|  | 6187 | * doing DIO to, so we need to make sure theres no ordered | 
|  | 6188 | * extents in this range. | 
|  | 6189 | */ | 
|  | 6190 | ordered = btrfs_lookup_ordered_range(inode, lockstart, | 
|  | 6191 | lockend - lockstart + 1); | 
|  | 6192 | if (!ordered) | 
|  | 6193 | break; | 
| Chris Mason | 4845e44 | 2010-05-25 20:56:50 -0400 | [diff] [blame] | 6194 | unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend, | 
|  | 6195 | &cached_state, GFP_NOFS); | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6196 | btrfs_start_ordered_extent(inode, ordered, 1); | 
|  | 6197 | btrfs_put_ordered_extent(ordered); | 
|  | 6198 | cond_resched(); | 
|  | 6199 | } | 
|  | 6200 |  | 
| Chris Mason | 4845e44 | 2010-05-25 20:56:50 -0400 | [diff] [blame] | 6201 | /* | 
|  | 6202 | * we don't use btrfs_set_extent_delalloc because we don't want | 
|  | 6203 | * the dirty or uptodate bits | 
|  | 6204 | */ | 
|  | 6205 | if (writing) { | 
|  | 6206 | write_bits = EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING; | 
|  | 6207 | ret = set_extent_bit(&BTRFS_I(inode)->io_tree, lockstart, lockend, | 
|  | 6208 | EXTENT_DELALLOC, 0, NULL, &cached_state, | 
|  | 6209 | GFP_NOFS); | 
|  | 6210 | if (ret) { | 
|  | 6211 | clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart, | 
|  | 6212 | lockend, EXTENT_LOCKED | write_bits, | 
|  | 6213 | 1, 0, &cached_state, GFP_NOFS); | 
|  | 6214 | goto out; | 
|  | 6215 | } | 
|  | 6216 | } | 
|  | 6217 |  | 
|  | 6218 | free_extent_state(cached_state); | 
|  | 6219 | cached_state = NULL; | 
|  | 6220 |  | 
| Chris Mason | 5a5f79b | 2010-05-26 21:33:37 -0400 | [diff] [blame] | 6221 | ret = __blockdev_direct_IO(rw, iocb, inode, | 
|  | 6222 | BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev, | 
|  | 6223 | iov, offset, nr_segs, btrfs_get_blocks_direct, NULL, | 
|  | 6224 | btrfs_submit_direct, 0); | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6225 |  | 
|  | 6226 | if (ret < 0 && ret != -EIOCBQUEUED) { | 
| Chris Mason | 4845e44 | 2010-05-25 20:56:50 -0400 | [diff] [blame] | 6227 | clear_extent_bit(&BTRFS_I(inode)->io_tree, offset, | 
|  | 6228 | offset + iov_length(iov, nr_segs) - 1, | 
|  | 6229 | EXTENT_LOCKED | write_bits, 1, 0, | 
|  | 6230 | &cached_state, GFP_NOFS); | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6231 | } else if (ret >= 0 && ret < iov_length(iov, nr_segs)) { | 
|  | 6232 | /* | 
|  | 6233 | * We're falling back to buffered, unlock the section we didn't | 
|  | 6234 | * do IO on. | 
|  | 6235 | */ | 
| Chris Mason | 4845e44 | 2010-05-25 20:56:50 -0400 | [diff] [blame] | 6236 | clear_extent_bit(&BTRFS_I(inode)->io_tree, offset + ret, | 
|  | 6237 | offset + iov_length(iov, nr_segs) - 1, | 
|  | 6238 | EXTENT_LOCKED | write_bits, 1, 0, | 
|  | 6239 | &cached_state, GFP_NOFS); | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6240 | } | 
| Chris Mason | 4845e44 | 2010-05-25 20:56:50 -0400 | [diff] [blame] | 6241 | out: | 
|  | 6242 | free_extent_state(cached_state); | 
| Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6243 | return ret; | 
| Chris Mason | 1643298 | 2008-04-10 10:23:21 -0400 | [diff] [blame] | 6244 | } | 
|  | 6245 |  | 
| Yehuda Sadeh | 1506fcc | 2009-01-21 14:39:14 -0500 | [diff] [blame] | 6246 | static int btrfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo, | 
|  | 6247 | __u64 start, __u64 len) | 
|  | 6248 | { | 
| Chris Mason | ec29ed5 | 2011-02-23 16:23:20 -0500 | [diff] [blame] | 6249 | return extent_fiemap(inode, fieinfo, start, len, btrfs_get_extent_fiemap); | 
| Yehuda Sadeh | 1506fcc | 2009-01-21 14:39:14 -0500 | [diff] [blame] | 6250 | } | 
|  | 6251 |  | 
| Chris Mason | 9ebefb18 | 2007-06-15 13:50:00 -0400 | [diff] [blame] | 6252 | int btrfs_readpage(struct file *file, struct page *page) | 
|  | 6253 | { | 
| Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 6254 | struct extent_io_tree *tree; | 
|  | 6255 | tree = &BTRFS_I(page->mapping->host)->io_tree; | 
| Jan Schmidt | 8ddc7d9 | 2011-06-13 20:02:58 +0200 | [diff] [blame] | 6256 | return extent_read_full_page(tree, page, btrfs_get_extent, 0); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6257 | } | 
| Chris Mason | 1832a6d | 2007-12-21 16:27:21 -0500 | [diff] [blame] | 6258 |  | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6259 | static int btrfs_writepage(struct page *page, struct writeback_control *wbc) | 
|  | 6260 | { | 
| Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 6261 | struct extent_io_tree *tree; | 
| Chris Mason | b888db2 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6262 |  | 
|  | 6263 |  | 
|  | 6264 | if (current->flags & PF_MEMALLOC) { | 
|  | 6265 | redirty_page_for_writepage(wbc, page); | 
|  | 6266 | unlock_page(page); | 
|  | 6267 | return 0; | 
|  | 6268 | } | 
| Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 6269 | tree = &BTRFS_I(page->mapping->host)->io_tree; | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6270 | return extent_write_full_page(tree, page, btrfs_get_extent, wbc); | 
|  | 6271 | } | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6272 |  | 
| Chris Mason | f421950 | 2008-07-22 11:18:09 -0400 | [diff] [blame] | 6273 | int btrfs_writepages(struct address_space *mapping, | 
|  | 6274 | struct writeback_control *wbc) | 
| Chris Mason | b293f02 | 2007-11-01 19:45:34 -0400 | [diff] [blame] | 6275 | { | 
| Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 6276 | struct extent_io_tree *tree; | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 6277 |  | 
| Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 6278 | tree = &BTRFS_I(mapping->host)->io_tree; | 
| Chris Mason | b293f02 | 2007-11-01 19:45:34 -0400 | [diff] [blame] | 6279 | return extent_writepages(tree, mapping, btrfs_get_extent, wbc); | 
|  | 6280 | } | 
|  | 6281 |  | 
| Chris Mason | 3ab2fb5 | 2007-11-08 10:59:22 -0500 | [diff] [blame] | 6282 | static int | 
|  | 6283 | btrfs_readpages(struct file *file, struct address_space *mapping, | 
|  | 6284 | struct list_head *pages, unsigned nr_pages) | 
|  | 6285 | { | 
| Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 6286 | struct extent_io_tree *tree; | 
|  | 6287 | tree = &BTRFS_I(mapping->host)->io_tree; | 
| Chris Mason | 3ab2fb5 | 2007-11-08 10:59:22 -0500 | [diff] [blame] | 6288 | return extent_readpages(tree, mapping, pages, nr_pages, | 
|  | 6289 | btrfs_get_extent); | 
|  | 6290 | } | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6291 | static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags) | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6292 | { | 
| Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 6293 | struct extent_io_tree *tree; | 
|  | 6294 | struct extent_map_tree *map; | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6295 | int ret; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6296 |  | 
| Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 6297 | tree = &BTRFS_I(page->mapping->host)->io_tree; | 
|  | 6298 | map = &BTRFS_I(page->mapping->host)->extent_tree; | 
| Chris Mason | 70dec80 | 2008-01-29 09:59:12 -0500 | [diff] [blame] | 6299 | ret = try_release_extent_mapping(map, tree, page, gfp_flags); | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6300 | if (ret == 1) { | 
|  | 6301 | ClearPagePrivate(page); | 
|  | 6302 | set_page_private(page, 0); | 
|  | 6303 | page_cache_release(page); | 
|  | 6304 | } | 
|  | 6305 | return ret; | 
|  | 6306 | } | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6307 |  | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6308 | static int btrfs_releasepage(struct page *page, gfp_t gfp_flags) | 
|  | 6309 | { | 
| Chris Mason | 98509cf | 2008-09-11 15:51:43 -0400 | [diff] [blame] | 6310 | if (PageWriteback(page) || PageDirty(page)) | 
|  | 6311 | return 0; | 
| Yan Zheng | b335b00 | 2009-02-12 10:06:04 -0500 | [diff] [blame] | 6312 | return __btrfs_releasepage(page, gfp_flags & GFP_NOFS); | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6313 | } | 
|  | 6314 |  | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6315 | static void btrfs_invalidatepage(struct page *page, unsigned long offset) | 
|  | 6316 | { | 
| Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 6317 | struct extent_io_tree *tree; | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6318 | struct btrfs_ordered_extent *ordered; | 
| Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 6319 | struct extent_state *cached_state = NULL; | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6320 | u64 page_start = page_offset(page); | 
|  | 6321 | u64 page_end = page_start + PAGE_CACHE_SIZE - 1; | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6322 |  | 
| Chris Mason | 8b62b72 | 2009-09-02 16:53:46 -0400 | [diff] [blame] | 6323 |  | 
|  | 6324 | /* | 
|  | 6325 | * we have the page locked, so new writeback can't start, | 
|  | 6326 | * and the dirty bit won't be cleared while we are here. | 
|  | 6327 | * | 
|  | 6328 | * Wait for IO on this page so that we can safely clear | 
|  | 6329 | * the PagePrivate2 bit and do ordered accounting | 
|  | 6330 | */ | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6331 | wait_on_page_writeback(page); | 
| Chris Mason | 8b62b72 | 2009-09-02 16:53:46 -0400 | [diff] [blame] | 6332 |  | 
| Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 6333 | tree = &BTRFS_I(page->mapping->host)->io_tree; | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6334 | if (offset) { | 
|  | 6335 | btrfs_releasepage(page, GFP_NOFS); | 
|  | 6336 | return; | 
|  | 6337 | } | 
| Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 6338 | lock_extent_bits(tree, page_start, page_end, 0, &cached_state, | 
|  | 6339 | GFP_NOFS); | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6340 | ordered = btrfs_lookup_ordered_extent(page->mapping->host, | 
|  | 6341 | page_offset(page)); | 
|  | 6342 | if (ordered) { | 
| Chris Mason | eb84ae0 | 2008-07-17 13:53:27 -0400 | [diff] [blame] | 6343 | /* | 
|  | 6344 | * IO on this page will never be started, so we need | 
|  | 6345 | * to account for any ordered extents now | 
|  | 6346 | */ | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6347 | clear_extent_bit(tree, page_start, page_end, | 
|  | 6348 | EXTENT_DIRTY | EXTENT_DELALLOC | | 
| Josef Bacik | 32c00af | 2009-10-08 13:34:05 -0400 | [diff] [blame] | 6349 | EXTENT_LOCKED | EXTENT_DO_ACCOUNTING, 1, 0, | 
| Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 6350 | &cached_state, GFP_NOFS); | 
| Chris Mason | 8b62b72 | 2009-09-02 16:53:46 -0400 | [diff] [blame] | 6351 | /* | 
|  | 6352 | * whoever cleared the private bit is responsible | 
|  | 6353 | * for the finish_ordered_io | 
|  | 6354 | */ | 
|  | 6355 | if (TestClearPagePrivate2(page)) { | 
|  | 6356 | btrfs_finish_ordered_io(page->mapping->host, | 
|  | 6357 | page_start, page_end); | 
|  | 6358 | } | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6359 | btrfs_put_ordered_extent(ordered); | 
| Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 6360 | cached_state = NULL; | 
|  | 6361 | lock_extent_bits(tree, page_start, page_end, 0, &cached_state, | 
|  | 6362 | GFP_NOFS); | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6363 | } | 
|  | 6364 | clear_extent_bit(tree, page_start, page_end, | 
| Josef Bacik | 32c00af | 2009-10-08 13:34:05 -0400 | [diff] [blame] | 6365 | EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC | | 
| Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 6366 | EXTENT_DO_ACCOUNTING, 1, 1, &cached_state, GFP_NOFS); | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6367 | __btrfs_releasepage(page, GFP_NOFS); | 
|  | 6368 |  | 
| Chris Mason | 4a09675 | 2008-07-21 10:29:44 -0400 | [diff] [blame] | 6369 | ClearPageChecked(page); | 
| Chris Mason | 9ad6b7b | 2008-04-18 16:11:30 -0400 | [diff] [blame] | 6370 | if (PagePrivate(page)) { | 
| Chris Mason | 9ad6b7b | 2008-04-18 16:11:30 -0400 | [diff] [blame] | 6371 | ClearPagePrivate(page); | 
|  | 6372 | set_page_private(page, 0); | 
|  | 6373 | page_cache_release(page); | 
|  | 6374 | } | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6375 | } | 
|  | 6376 |  | 
| Chris Mason | 9ebefb18 | 2007-06-15 13:50:00 -0400 | [diff] [blame] | 6377 | /* | 
|  | 6378 | * btrfs_page_mkwrite() is not allowed to change the file size as it gets | 
|  | 6379 | * called from a page fault handler when a page is first dirtied. Hence we must | 
|  | 6380 | * be careful to check for EOF conditions here. We set the page up correctly | 
|  | 6381 | * for a written page which means we get ENOSPC checking when writing into | 
|  | 6382 | * holes and correct delalloc and unwritten extent mapping on filesystems that | 
|  | 6383 | * support these features. | 
|  | 6384 | * | 
|  | 6385 | * We are not allowed to take the i_mutex here so we have to play games to | 
|  | 6386 | * protect against truncate races as the page could now be beyond EOF.  Because | 
|  | 6387 | * vmtruncate() writes the inode size before removing pages, once we have the | 
|  | 6388 | * page lock we can determine safely if the page is beyond EOF. If it is not | 
|  | 6389 | * beyond EOF, then the page is guaranteed safe against truncation until we | 
|  | 6390 | * unlock the page. | 
|  | 6391 | */ | 
| Nick Piggin | c2ec175 | 2009-03-31 15:23:21 -0700 | [diff] [blame] | 6392 | int btrfs_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf) | 
| Chris Mason | 9ebefb18 | 2007-06-15 13:50:00 -0400 | [diff] [blame] | 6393 | { | 
| Nick Piggin | c2ec175 | 2009-03-31 15:23:21 -0700 | [diff] [blame] | 6394 | struct page *page = vmf->page; | 
| Chris Mason | 6da6aba | 2007-12-18 16:15:09 -0500 | [diff] [blame] | 6395 | struct inode *inode = fdentry(vma->vm_file)->d_inode; | 
| Chris Mason | 1832a6d | 2007-12-21 16:27:21 -0500 | [diff] [blame] | 6396 | struct btrfs_root *root = BTRFS_I(inode)->root; | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6397 | struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree; | 
|  | 6398 | struct btrfs_ordered_extent *ordered; | 
| Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 6399 | struct extent_state *cached_state = NULL; | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6400 | char *kaddr; | 
|  | 6401 | unsigned long zero_start; | 
| Chris Mason | 9ebefb18 | 2007-06-15 13:50:00 -0400 | [diff] [blame] | 6402 | loff_t size; | 
| Chris Mason | 1832a6d | 2007-12-21 16:27:21 -0500 | [diff] [blame] | 6403 | int ret; | 
| Chris Mason | 9998eb7 | 2012-01-25 13:47:40 -0500 | [diff] [blame] | 6404 | int reserved = 0; | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6405 | u64 page_start; | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6406 | u64 page_end; | 
| Chris Mason | 9ebefb18 | 2007-06-15 13:50:00 -0400 | [diff] [blame] | 6407 |  | 
| Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6408 | ret  = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE); | 
| Chris Mason | 9998eb7 | 2012-01-25 13:47:40 -0500 | [diff] [blame] | 6409 | if (!ret) { | 
| Josef Bacik | 22c44fe | 2011-11-30 10:45:38 -0500 | [diff] [blame] | 6410 | ret = btrfs_update_time(vma->vm_file); | 
| Chris Mason | 9998eb7 | 2012-01-25 13:47:40 -0500 | [diff] [blame] | 6411 | reserved = 1; | 
|  | 6412 | } | 
| Nick Piggin | 56a76f8 | 2009-03-31 15:23:23 -0700 | [diff] [blame] | 6413 | if (ret) { | 
|  | 6414 | if (ret == -ENOMEM) | 
|  | 6415 | ret = VM_FAULT_OOM; | 
|  | 6416 | else /* -ENOSPC, -EIO, etc */ | 
|  | 6417 | ret = VM_FAULT_SIGBUS; | 
| Chris Mason | 9998eb7 | 2012-01-25 13:47:40 -0500 | [diff] [blame] | 6418 | if (reserved) | 
|  | 6419 | goto out; | 
|  | 6420 | goto out_noreserve; | 
| Nick Piggin | 56a76f8 | 2009-03-31 15:23:23 -0700 | [diff] [blame] | 6421 | } | 
| Chris Mason | 1832a6d | 2007-12-21 16:27:21 -0500 | [diff] [blame] | 6422 |  | 
| Nick Piggin | 56a76f8 | 2009-03-31 15:23:23 -0700 | [diff] [blame] | 6423 | ret = VM_FAULT_NOPAGE; /* make the VM retry the fault */ | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6424 | again: | 
| Chris Mason | 9ebefb18 | 2007-06-15 13:50:00 -0400 | [diff] [blame] | 6425 | lock_page(page); | 
| Chris Mason | 9ebefb18 | 2007-06-15 13:50:00 -0400 | [diff] [blame] | 6426 | size = i_size_read(inode); | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6427 | page_start = page_offset(page); | 
|  | 6428 | page_end = page_start + PAGE_CACHE_SIZE - 1; | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6429 |  | 
| Chris Mason | 9ebefb18 | 2007-06-15 13:50:00 -0400 | [diff] [blame] | 6430 | if ((page->mapping != inode->i_mapping) || | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6431 | (page_start >= size)) { | 
| Chris Mason | 9ebefb18 | 2007-06-15 13:50:00 -0400 | [diff] [blame] | 6432 | /* page got truncated out from underneath us */ | 
|  | 6433 | goto out_unlock; | 
|  | 6434 | } | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6435 | wait_on_page_writeback(page); | 
|  | 6436 |  | 
| Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 6437 | lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state, | 
|  | 6438 | GFP_NOFS); | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6439 | set_page_extent_mapped(page); | 
|  | 6440 |  | 
| Chris Mason | eb84ae0 | 2008-07-17 13:53:27 -0400 | [diff] [blame] | 6441 | /* | 
|  | 6442 | * we can't set the delalloc bits if there are pending ordered | 
|  | 6443 | * extents.  Drop our locks and wait for them to finish | 
|  | 6444 | */ | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6445 | ordered = btrfs_lookup_ordered_extent(inode, page_start); | 
|  | 6446 | if (ordered) { | 
| Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 6447 | unlock_extent_cached(io_tree, page_start, page_end, | 
|  | 6448 | &cached_state, GFP_NOFS); | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6449 | unlock_page(page); | 
| Chris Mason | eb84ae0 | 2008-07-17 13:53:27 -0400 | [diff] [blame] | 6450 | btrfs_start_ordered_extent(inode, ordered, 1); | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6451 | btrfs_put_ordered_extent(ordered); | 
|  | 6452 | goto again; | 
|  | 6453 | } | 
|  | 6454 |  | 
| Josef Bacik | fbf1908 | 2009-10-01 17:10:23 -0400 | [diff] [blame] | 6455 | /* | 
|  | 6456 | * XXX - page_mkwrite gets called every time the page is dirtied, even | 
|  | 6457 | * if it was already dirty, so for space accounting reasons we need to | 
|  | 6458 | * clear any delalloc bits for the range we are fixing to save.  There | 
|  | 6459 | * is probably a better way to do this, but for now keep consistent with | 
|  | 6460 | * prepare_pages in the normal write path. | 
|  | 6461 | */ | 
| Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 6462 | clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end, | 
| Josef Bacik | 32c00af | 2009-10-08 13:34:05 -0400 | [diff] [blame] | 6463 | EXTENT_DIRTY | EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING, | 
| Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 6464 | 0, 0, &cached_state, GFP_NOFS); | 
| Josef Bacik | fbf1908 | 2009-10-01 17:10:23 -0400 | [diff] [blame] | 6465 |  | 
| Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 6466 | ret = btrfs_set_extent_delalloc(inode, page_start, page_end, | 
|  | 6467 | &cached_state); | 
| Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 6468 | if (ret) { | 
| Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 6469 | unlock_extent_cached(io_tree, page_start, page_end, | 
|  | 6470 | &cached_state, GFP_NOFS); | 
| Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 6471 | ret = VM_FAULT_SIGBUS; | 
|  | 6472 | goto out_unlock; | 
|  | 6473 | } | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6474 | ret = 0; | 
| Chris Mason | 9ebefb18 | 2007-06-15 13:50:00 -0400 | [diff] [blame] | 6475 |  | 
|  | 6476 | /* page is wholly or partially inside EOF */ | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6477 | if (page_start + PAGE_CACHE_SIZE > size) | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6478 | zero_start = size & ~PAGE_CACHE_MASK; | 
| Chris Mason | 9ebefb18 | 2007-06-15 13:50:00 -0400 | [diff] [blame] | 6479 | else | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6480 | zero_start = PAGE_CACHE_SIZE; | 
| Chris Mason | 9ebefb18 | 2007-06-15 13:50:00 -0400 | [diff] [blame] | 6481 |  | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6482 | if (zero_start != PAGE_CACHE_SIZE) { | 
|  | 6483 | kaddr = kmap(page); | 
|  | 6484 | memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start); | 
|  | 6485 | flush_dcache_page(page); | 
|  | 6486 | kunmap(page); | 
|  | 6487 | } | 
| Chris Mason | 247e743 | 2008-07-17 12:53:51 -0400 | [diff] [blame] | 6488 | ClearPageChecked(page); | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6489 | set_page_dirty(page); | 
| Chris Mason | 50a9b21 | 2009-09-11 12:33:12 -0400 | [diff] [blame] | 6490 | SetPageUptodate(page); | 
| Chris Mason | 5a3f23d | 2009-03-31 13:27:11 -0400 | [diff] [blame] | 6491 |  | 
| Chris Mason | 257c62e | 2009-10-13 13:21:08 -0400 | [diff] [blame] | 6492 | BTRFS_I(inode)->last_trans = root->fs_info->generation; | 
|  | 6493 | BTRFS_I(inode)->last_sub_trans = BTRFS_I(inode)->root->log_transid; | 
|  | 6494 |  | 
| Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 6495 | unlock_extent_cached(io_tree, page_start, page_end, &cached_state, GFP_NOFS); | 
| Chris Mason | 9ebefb18 | 2007-06-15 13:50:00 -0400 | [diff] [blame] | 6496 |  | 
|  | 6497 | out_unlock: | 
| Chris Mason | 50a9b21 | 2009-09-11 12:33:12 -0400 | [diff] [blame] | 6498 | if (!ret) | 
|  | 6499 | return VM_FAULT_LOCKED; | 
| Chris Mason | 9ebefb18 | 2007-06-15 13:50:00 -0400 | [diff] [blame] | 6500 | unlock_page(page); | 
| Chris Mason | 1832a6d | 2007-12-21 16:27:21 -0500 | [diff] [blame] | 6501 | out: | 
| Josef Bacik | ec39e18 | 2012-01-12 19:10:12 -0500 | [diff] [blame] | 6502 | btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE); | 
| Chris Mason | 9998eb7 | 2012-01-25 13:47:40 -0500 | [diff] [blame] | 6503 | out_noreserve: | 
| Chris Mason | 9ebefb18 | 2007-06-15 13:50:00 -0400 | [diff] [blame] | 6504 | return ret; | 
|  | 6505 | } | 
|  | 6506 |  | 
| Josef Bacik | a41ad39 | 2011-01-31 15:30:16 -0500 | [diff] [blame] | 6507 | static int btrfs_truncate(struct inode *inode) | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6508 | { | 
|  | 6509 | struct btrfs_root *root = BTRFS_I(inode)->root; | 
| Josef Bacik | fcb80c2 | 2011-05-03 10:40:22 -0400 | [diff] [blame] | 6510 | struct btrfs_block_rsv *rsv; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6511 | int ret; | 
| Josef Bacik | 3893e33 | 2011-01-31 16:03:11 -0500 | [diff] [blame] | 6512 | int err = 0; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6513 | struct btrfs_trans_handle *trans; | 
| Chris Mason | d3c2fdc | 2007-09-17 10:58:06 -0400 | [diff] [blame] | 6514 | unsigned long nr; | 
| Chris Mason | dbe674a | 2008-07-17 12:54:05 -0400 | [diff] [blame] | 6515 | u64 mask = root->sectorsize - 1; | 
| Josef Bacik | 0712718 | 2011-08-19 10:29:59 -0400 | [diff] [blame] | 6516 | u64 min_size = btrfs_calc_trunc_metadata_size(root, 1); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6517 |  | 
| Josef Bacik | 5d5e103 | 2009-10-13 16:46:49 -0400 | [diff] [blame] | 6518 | ret = btrfs_truncate_page(inode->i_mapping, inode->i_size); | 
|  | 6519 | if (ret) | 
| Josef Bacik | a41ad39 | 2011-01-31 15:30:16 -0500 | [diff] [blame] | 6520 | return ret; | 
| Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 6521 |  | 
| Chris Mason | 4a09675 | 2008-07-21 10:29:44 -0400 | [diff] [blame] | 6522 | btrfs_wait_ordered_range(inode, inode->i_size & (~mask), (u64)-1); | 
| Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 6523 | btrfs_ordered_update_i_size(inode, inode->i_size, NULL); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6524 |  | 
| Josef Bacik | fcb80c2 | 2011-05-03 10:40:22 -0400 | [diff] [blame] | 6525 | /* | 
|  | 6526 | * Yes ladies and gentelment, this is indeed ugly.  The fact is we have | 
|  | 6527 | * 3 things going on here | 
|  | 6528 | * | 
|  | 6529 | * 1) We need to reserve space for our orphan item and the space to | 
|  | 6530 | * delete our orphan item.  Lord knows we don't want to have a dangling | 
|  | 6531 | * orphan item because we didn't reserve space to remove it. | 
|  | 6532 | * | 
|  | 6533 | * 2) We need to reserve space to update our inode. | 
|  | 6534 | * | 
|  | 6535 | * 3) We need to have something to cache all the space that is going to | 
|  | 6536 | * be free'd up by the truncate operation, but also have some slack | 
|  | 6537 | * space reserved in case it uses space during the truncate (thank you | 
|  | 6538 | * very much snapshotting). | 
|  | 6539 | * | 
|  | 6540 | * And we need these to all be seperate.  The fact is we can use alot of | 
|  | 6541 | * space doing the truncate, and we have no earthly idea how much space | 
|  | 6542 | * we will use, so we need the truncate reservation to be seperate so it | 
|  | 6543 | * doesn't end up using space reserved for updating the inode or | 
|  | 6544 | * removing the orphan item.  We also need to be able to stop the | 
|  | 6545 | * transaction and start a new one, which means we need to be able to | 
|  | 6546 | * update the inode several times, and we have no idea of knowing how | 
|  | 6547 | * many times that will be, so we can't just reserve 1 item for the | 
|  | 6548 | * entirety of the opration, so that has to be done seperately as well. | 
|  | 6549 | * Then there is the orphan item, which does indeed need to be held on | 
|  | 6550 | * to for the whole operation, and we need nobody to touch this reserved | 
|  | 6551 | * space except the orphan code. | 
|  | 6552 | * | 
|  | 6553 | * So that leaves us with | 
|  | 6554 | * | 
|  | 6555 | * 1) root->orphan_block_rsv - for the orphan deletion. | 
|  | 6556 | * 2) rsv - for the truncate reservation, which we will steal from the | 
|  | 6557 | * transaction reservation. | 
|  | 6558 | * 3) fs_info->trans_block_rsv - this will have 1 items worth left for | 
|  | 6559 | * updating the inode. | 
|  | 6560 | */ | 
|  | 6561 | rsv = btrfs_alloc_block_rsv(root); | 
|  | 6562 | if (!rsv) | 
|  | 6563 | return -ENOMEM; | 
| Josef Bacik | 4a33854 | 2011-08-29 11:01:31 -0400 | [diff] [blame] | 6564 | rsv->size = min_size; | 
| Josef Bacik | f0cd846 | 2011-03-04 14:37:08 -0500 | [diff] [blame] | 6565 |  | 
| Josef Bacik | 907cbce | 2011-08-08 13:46:15 -0400 | [diff] [blame] | 6566 | /* | 
| Josef Bacik | 0712718 | 2011-08-19 10:29:59 -0400 | [diff] [blame] | 6567 | * 1 for the truncate slack space | 
| Josef Bacik | 907cbce | 2011-08-08 13:46:15 -0400 | [diff] [blame] | 6568 | * 1 for the orphan item we're going to add | 
|  | 6569 | * 1 for the orphan item deletion | 
|  | 6570 | * 1 for updating the inode. | 
|  | 6571 | */ | 
| Josef Bacik | fcb80c2 | 2011-05-03 10:40:22 -0400 | [diff] [blame] | 6572 | trans = btrfs_start_transaction(root, 4); | 
|  | 6573 | if (IS_ERR(trans)) { | 
|  | 6574 | err = PTR_ERR(trans); | 
|  | 6575 | goto out; | 
|  | 6576 | } | 
| Josef Bacik | f0cd846 | 2011-03-04 14:37:08 -0500 | [diff] [blame] | 6577 |  | 
| Josef Bacik | 907cbce | 2011-08-08 13:46:15 -0400 | [diff] [blame] | 6578 | /* Migrate the slack space for the truncate to our reserve */ | 
|  | 6579 | ret = btrfs_block_rsv_migrate(&root->fs_info->trans_block_rsv, rsv, | 
|  | 6580 | min_size); | 
| Josef Bacik | fcb80c2 | 2011-05-03 10:40:22 -0400 | [diff] [blame] | 6581 | BUG_ON(ret); | 
| Josef Bacik | f0cd846 | 2011-03-04 14:37:08 -0500 | [diff] [blame] | 6582 |  | 
|  | 6583 | ret = btrfs_orphan_add(trans, inode); | 
|  | 6584 | if (ret) { | 
|  | 6585 | btrfs_end_transaction(trans, root); | 
| Josef Bacik | fcb80c2 | 2011-05-03 10:40:22 -0400 | [diff] [blame] | 6586 | goto out; | 
| Josef Bacik | f0cd846 | 2011-03-04 14:37:08 -0500 | [diff] [blame] | 6587 | } | 
|  | 6588 |  | 
| Chris Mason | 5a3f23d | 2009-03-31 13:27:11 -0400 | [diff] [blame] | 6589 | /* | 
|  | 6590 | * setattr is responsible for setting the ordered_data_close flag, | 
|  | 6591 | * but that is only tested during the last file release.  That | 
|  | 6592 | * could happen well after the next commit, leaving a great big | 
|  | 6593 | * window where new writes may get lost if someone chooses to write | 
|  | 6594 | * to this file after truncating to zero | 
|  | 6595 | * | 
|  | 6596 | * The inode doesn't have any dirty data here, and so if we commit | 
|  | 6597 | * this is a noop.  If someone immediately starts writing to the inode | 
|  | 6598 | * it is very likely we'll catch some of their writes in this | 
|  | 6599 | * transaction, and the commit will find this file on the ordered | 
|  | 6600 | * data list with good things to send down. | 
|  | 6601 | * | 
|  | 6602 | * This is a best effort solution, there is still a window where | 
|  | 6603 | * using truncate to replace the contents of the file will | 
|  | 6604 | * end up with a zero length file after a crash. | 
|  | 6605 | */ | 
|  | 6606 | if (inode->i_size == 0 && BTRFS_I(inode)->ordered_data_close) | 
|  | 6607 | btrfs_add_ordered_operation(trans, root, inode); | 
|  | 6608 |  | 
| Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 6609 | while (1) { | 
| Josef Bacik | 36ba022 | 2011-10-18 12:15:48 -0400 | [diff] [blame] | 6610 | ret = btrfs_block_rsv_refill(root, rsv, min_size); | 
| Josef Bacik | 907cbce | 2011-08-08 13:46:15 -0400 | [diff] [blame] | 6611 | if (ret) { | 
|  | 6612 | /* | 
|  | 6613 | * This can only happen with the original transaction we | 
|  | 6614 | * started above, every other time we shouldn't have a | 
|  | 6615 | * transaction started yet. | 
|  | 6616 | */ | 
|  | 6617 | if (ret == -EAGAIN) | 
|  | 6618 | goto end_trans; | 
|  | 6619 | err = ret; | 
|  | 6620 | break; | 
|  | 6621 | } | 
|  | 6622 |  | 
| Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 6623 | if (!trans) { | 
| Josef Bacik | 907cbce | 2011-08-08 13:46:15 -0400 | [diff] [blame] | 6624 | /* Just need the 1 for updating the inode */ | 
|  | 6625 | trans = btrfs_start_transaction(root, 1); | 
| Josef Bacik | fcb80c2 | 2011-05-03 10:40:22 -0400 | [diff] [blame] | 6626 | if (IS_ERR(trans)) { | 
| Josef Bacik | 7041ee9 | 2011-12-09 13:26:22 -0500 | [diff] [blame] | 6627 | ret = err = PTR_ERR(trans); | 
|  | 6628 | trans = NULL; | 
|  | 6629 | break; | 
| Josef Bacik | fcb80c2 | 2011-05-03 10:40:22 -0400 | [diff] [blame] | 6630 | } | 
| Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 6631 | } | 
|  | 6632 |  | 
| Josef Bacik | 907cbce | 2011-08-08 13:46:15 -0400 | [diff] [blame] | 6633 | trans->block_rsv = rsv; | 
|  | 6634 |  | 
| Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 6635 | ret = btrfs_truncate_inode_items(trans, root, inode, | 
|  | 6636 | inode->i_size, | 
|  | 6637 | BTRFS_EXTENT_DATA_KEY); | 
| Josef Bacik | 3893e33 | 2011-01-31 16:03:11 -0500 | [diff] [blame] | 6638 | if (ret != -EAGAIN) { | 
|  | 6639 | err = ret; | 
| Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 6640 | break; | 
| Josef Bacik | 3893e33 | 2011-01-31 16:03:11 -0500 | [diff] [blame] | 6641 | } | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6642 |  | 
| Josef Bacik | fcb80c2 | 2011-05-03 10:40:22 -0400 | [diff] [blame] | 6643 | trans->block_rsv = &root->fs_info->trans_block_rsv; | 
| Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 6644 | ret = btrfs_update_inode(trans, root, inode); | 
| Josef Bacik | 3893e33 | 2011-01-31 16:03:11 -0500 | [diff] [blame] | 6645 | if (ret) { | 
|  | 6646 | err = ret; | 
|  | 6647 | break; | 
|  | 6648 | } | 
| Josef Bacik | 907cbce | 2011-08-08 13:46:15 -0400 | [diff] [blame] | 6649 | end_trans: | 
| Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 6650 | nr = trans->blocks_used; | 
|  | 6651 | btrfs_end_transaction(trans, root); | 
| Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 6652 | trans = NULL; | 
| Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 6653 | btrfs_btree_balance_dirty(root, nr); | 
| Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 6654 | } | 
|  | 6655 |  | 
|  | 6656 | if (ret == 0 && inode->i_nlink > 0) { | 
| Josef Bacik | fcb80c2 | 2011-05-03 10:40:22 -0400 | [diff] [blame] | 6657 | trans->block_rsv = root->orphan_block_rsv; | 
| Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 6658 | ret = btrfs_orphan_del(trans, inode); | 
| Josef Bacik | 3893e33 | 2011-01-31 16:03:11 -0500 | [diff] [blame] | 6659 | if (ret) | 
|  | 6660 | err = ret; | 
| Josef Bacik | ded5db9 | 2011-03-04 14:09:46 -0500 | [diff] [blame] | 6661 | } else if (ret && inode->i_nlink > 0) { | 
|  | 6662 | /* | 
|  | 6663 | * Failed to do the truncate, remove us from the in memory | 
|  | 6664 | * orphan list. | 
|  | 6665 | */ | 
|  | 6666 | ret = btrfs_orphan_del(NULL, inode); | 
| Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 6667 | } | 
|  | 6668 |  | 
| Chris Mason | 917c16b | 2011-11-08 14:49:59 -0500 | [diff] [blame] | 6669 | if (trans) { | 
|  | 6670 | trans->block_rsv = &root->fs_info->trans_block_rsv; | 
|  | 6671 | ret = btrfs_update_inode(trans, root, inode); | 
|  | 6672 | if (ret && !err) | 
|  | 6673 | err = ret; | 
| Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 6674 |  | 
| Chris Mason | 917c16b | 2011-11-08 14:49:59 -0500 | [diff] [blame] | 6675 | nr = trans->blocks_used; | 
| Josef Bacik | 7ad85bb | 2012-01-12 19:10:12 -0500 | [diff] [blame] | 6676 | ret = btrfs_end_transaction(trans, root); | 
| Chris Mason | 917c16b | 2011-11-08 14:49:59 -0500 | [diff] [blame] | 6677 | btrfs_btree_balance_dirty(root, nr); | 
|  | 6678 | } | 
| Josef Bacik | fcb80c2 | 2011-05-03 10:40:22 -0400 | [diff] [blame] | 6679 |  | 
|  | 6680 | out: | 
|  | 6681 | btrfs_free_block_rsv(root, rsv); | 
|  | 6682 |  | 
| Josef Bacik | 3893e33 | 2011-01-31 16:03:11 -0500 | [diff] [blame] | 6683 | if (ret && !err) | 
|  | 6684 | err = ret; | 
| Josef Bacik | a41ad39 | 2011-01-31 15:30:16 -0500 | [diff] [blame] | 6685 |  | 
| Josef Bacik | 3893e33 | 2011-01-31 16:03:11 -0500 | [diff] [blame] | 6686 | return err; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6687 | } | 
|  | 6688 |  | 
| Sven Wegener | 3b96362 | 2008-06-09 21:57:42 -0400 | [diff] [blame] | 6689 | /* | 
| Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 6690 | * create a new subvolume directory/inode (helper for the ioctl). | 
|  | 6691 | */ | 
| Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 6692 | int btrfs_create_subvol_root(struct btrfs_trans_handle *trans, | 
| Josef Bacik | d82a6f1 | 2011-05-11 15:26:06 -0400 | [diff] [blame] | 6693 | struct btrfs_root *new_root, u64 new_dirid) | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6694 | { | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6695 | struct inode *inode; | 
| Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 6696 | int err; | 
| Chris Mason | 00e4e6b | 2008-08-05 11:18:09 -0400 | [diff] [blame] | 6697 | u64 index = 0; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6698 |  | 
| Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 6699 | inode = btrfs_new_inode(trans, new_root, NULL, "..", 2, new_dirid, | 
| Josef Bacik | d82a6f1 | 2011-05-11 15:26:06 -0400 | [diff] [blame] | 6700 | new_dirid, S_IFDIR | 0700, &index); | 
| Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 6701 | if (IS_ERR(inode)) | 
| Christoph Hellwig | f46b5a6 | 2008-06-11 21:53:53 -0400 | [diff] [blame] | 6702 | return PTR_ERR(inode); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6703 | inode->i_op = &btrfs_dir_inode_operations; | 
|  | 6704 | inode->i_fop = &btrfs_dir_file_operations; | 
|  | 6705 |  | 
| Miklos Szeredi | bfe8684 | 2011-10-28 14:13:29 +0200 | [diff] [blame] | 6706 | set_nlink(inode, 1); | 
| Chris Mason | dbe674a | 2008-07-17 12:54:05 -0400 | [diff] [blame] | 6707 | btrfs_i_size_write(inode, 0); | 
| Sven Wegener | 3b96362 | 2008-06-09 21:57:42 -0400 | [diff] [blame] | 6708 |  | 
| Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 6709 | err = btrfs_update_inode(trans, new_root, inode); | 
|  | 6710 | BUG_ON(err); | 
| Christoph Hellwig | cb8e709 | 2008-10-09 13:39:39 -0400 | [diff] [blame] | 6711 |  | 
| Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 6712 | iput(inode); | 
| Christoph Hellwig | cb8e709 | 2008-10-09 13:39:39 -0400 | [diff] [blame] | 6713 | return 0; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6714 | } | 
|  | 6715 |  | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6716 | struct inode *btrfs_alloc_inode(struct super_block *sb) | 
|  | 6717 | { | 
|  | 6718 | struct btrfs_inode *ei; | 
| Yan, Zheng | 2ead6ae | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6719 | struct inode *inode; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6720 |  | 
|  | 6721 | ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS); | 
|  | 6722 | if (!ei) | 
|  | 6723 | return NULL; | 
| Yan, Zheng | 2ead6ae | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6724 |  | 
|  | 6725 | ei->root = NULL; | 
|  | 6726 | ei->space_info = NULL; | 
|  | 6727 | ei->generation = 0; | 
|  | 6728 | ei->sequence = 0; | 
| Josef Bacik | 15ee9bc | 2007-08-10 16:22:09 -0400 | [diff] [blame] | 6729 | ei->last_trans = 0; | 
| Chris Mason | 257c62e | 2009-10-13 13:21:08 -0400 | [diff] [blame] | 6730 | ei->last_sub_trans = 0; | 
| Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 6731 | ei->logged_trans = 0; | 
| Yan, Zheng | 2ead6ae | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6732 | ei->delalloc_bytes = 0; | 
| Yan, Zheng | 2ead6ae | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6733 | ei->disk_i_size = 0; | 
|  | 6734 | ei->flags = 0; | 
| Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 6735 | ei->csum_bytes = 0; | 
| Yan, Zheng | 2ead6ae | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6736 | ei->index_cnt = (u64)-1; | 
|  | 6737 | ei->last_unlink_trans = 0; | 
|  | 6738 |  | 
| Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 6739 | spin_lock_init(&ei->lock); | 
|  | 6740 | ei->outstanding_extents = 0; | 
|  | 6741 | ei->reserved_extents = 0; | 
| Yan, Zheng | 2ead6ae | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6742 |  | 
|  | 6743 | ei->ordered_data_close = 0; | 
| Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 6744 | ei->orphan_meta_reserved = 0; | 
| Yan, Zheng | 2ead6ae | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6745 | ei->dummy_inode = 0; | 
| Chris Mason | 4cb5300 | 2011-05-24 15:35:30 -0400 | [diff] [blame] | 6746 | ei->in_defrag = 0; | 
| Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 6747 | ei->delalloc_meta_reserved = 0; | 
| Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 6748 | ei->force_compress = BTRFS_COMPRESS_NONE; | 
| Yan, Zheng | 2ead6ae | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6749 |  | 
| Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 6750 | ei->delayed_node = NULL; | 
|  | 6751 |  | 
| Yan, Zheng | 2ead6ae | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6752 | inode = &ei->vfs_inode; | 
| David Sterba | a8067e0 | 2011-04-21 00:34:43 +0200 | [diff] [blame] | 6753 | extent_map_tree_init(&ei->extent_tree); | 
| David Sterba | f993c88 | 2011-04-20 23:35:57 +0200 | [diff] [blame] | 6754 | extent_io_tree_init(&ei->io_tree, &inode->i_data); | 
|  | 6755 | extent_io_tree_init(&ei->io_failure_tree, &inode->i_data); | 
| Yan, Zheng | 2ead6ae | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6756 | mutex_init(&ei->log_mutex); | 
| Josef Bacik | f248679 | 2012-01-13 12:09:22 -0500 | [diff] [blame] | 6757 | mutex_init(&ei->delalloc_mutex); | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6758 | btrfs_ordered_inode_tree_init(&ei->ordered_tree); | 
| Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 6759 | INIT_LIST_HEAD(&ei->i_orphan); | 
| Yan, Zheng | 2ead6ae | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6760 | INIT_LIST_HEAD(&ei->delalloc_inodes); | 
| Chris Mason | 5a3f23d | 2009-03-31 13:27:11 -0400 | [diff] [blame] | 6761 | INIT_LIST_HEAD(&ei->ordered_operations); | 
| Yan, Zheng | 2ead6ae | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6762 | RB_CLEAR_NODE(&ei->rb_node); | 
|  | 6763 |  | 
|  | 6764 | return inode; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6765 | } | 
|  | 6766 |  | 
| Nick Piggin | fa0d7e3 | 2011-01-07 17:49:49 +1100 | [diff] [blame] | 6767 | static void btrfs_i_callback(struct rcu_head *head) | 
|  | 6768 | { | 
|  | 6769 | struct inode *inode = container_of(head, struct inode, i_rcu); | 
| Nick Piggin | fa0d7e3 | 2011-01-07 17:49:49 +1100 | [diff] [blame] | 6770 | kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode)); | 
|  | 6771 | } | 
|  | 6772 |  | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6773 | void btrfs_destroy_inode(struct inode *inode) | 
|  | 6774 | { | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6775 | struct btrfs_ordered_extent *ordered; | 
| Chris Mason | 5a3f23d | 2009-03-31 13:27:11 -0400 | [diff] [blame] | 6776 | struct btrfs_root *root = BTRFS_I(inode)->root; | 
|  | 6777 |  | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6778 | WARN_ON(!list_empty(&inode->i_dentry)); | 
|  | 6779 | WARN_ON(inode->i_data.nrpages); | 
| Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 6780 | WARN_ON(BTRFS_I(inode)->outstanding_extents); | 
|  | 6781 | WARN_ON(BTRFS_I(inode)->reserved_extents); | 
| Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 6782 | WARN_ON(BTRFS_I(inode)->delalloc_bytes); | 
|  | 6783 | WARN_ON(BTRFS_I(inode)->csum_bytes); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6784 |  | 
| Chris Mason | 5a3f23d | 2009-03-31 13:27:11 -0400 | [diff] [blame] | 6785 | /* | 
| Josef Bacik | a6dbd42 | 2009-11-11 15:53:34 -0500 | [diff] [blame] | 6786 | * This can happen where we create an inode, but somebody else also | 
|  | 6787 | * created the same inode and we need to destroy the one we already | 
|  | 6788 | * created. | 
|  | 6789 | */ | 
|  | 6790 | if (!root) | 
|  | 6791 | goto free; | 
|  | 6792 |  | 
|  | 6793 | /* | 
| Chris Mason | 5a3f23d | 2009-03-31 13:27:11 -0400 | [diff] [blame] | 6794 | * Make sure we're properly removed from the ordered operation | 
|  | 6795 | * lists. | 
|  | 6796 | */ | 
|  | 6797 | smp_mb(); | 
|  | 6798 | if (!list_empty(&BTRFS_I(inode)->ordered_operations)) { | 
|  | 6799 | spin_lock(&root->fs_info->ordered_extent_lock); | 
|  | 6800 | list_del_init(&BTRFS_I(inode)->ordered_operations); | 
|  | 6801 | spin_unlock(&root->fs_info->ordered_extent_lock); | 
|  | 6802 | } | 
|  | 6803 |  | 
| Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 6804 | spin_lock(&root->orphan_lock); | 
| Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 6805 | if (!list_empty(&BTRFS_I(inode)->i_orphan)) { | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 6806 | printk(KERN_INFO "BTRFS: inode %llu still on the orphan list\n", | 
|  | 6807 | (unsigned long long)btrfs_ino(inode)); | 
| Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 6808 | list_del_init(&BTRFS_I(inode)->i_orphan); | 
| Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 6809 | } | 
| Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 6810 | spin_unlock(&root->orphan_lock); | 
| Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 6811 |  | 
| Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 6812 | while (1) { | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6813 | ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1); | 
|  | 6814 | if (!ordered) | 
|  | 6815 | break; | 
|  | 6816 | else { | 
| Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 6817 | printk(KERN_ERR "btrfs found ordered " | 
|  | 6818 | "extent %llu %llu on inode cleanup\n", | 
|  | 6819 | (unsigned long long)ordered->file_offset, | 
|  | 6820 | (unsigned long long)ordered->len); | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6821 | btrfs_remove_ordered_extent(inode, ordered); | 
|  | 6822 | btrfs_put_ordered_extent(ordered); | 
|  | 6823 | btrfs_put_ordered_extent(ordered); | 
|  | 6824 | } | 
|  | 6825 | } | 
| Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6826 | inode_tree_del(inode); | 
| Zheng Yan | 5b21f2e | 2008-09-26 10:05:38 -0400 | [diff] [blame] | 6827 | btrfs_drop_extent_cache(inode, 0, (u64)-1, 0); | 
| Josef Bacik | a6dbd42 | 2009-11-11 15:53:34 -0500 | [diff] [blame] | 6828 | free: | 
| Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 6829 | btrfs_remove_delayed_node(inode); | 
| Nick Piggin | fa0d7e3 | 2011-01-07 17:49:49 +1100 | [diff] [blame] | 6830 | call_rcu(&inode->i_rcu, btrfs_i_callback); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6831 | } | 
|  | 6832 |  | 
| Al Viro | 45321ac | 2010-06-07 13:43:19 -0400 | [diff] [blame] | 6833 | int btrfs_drop_inode(struct inode *inode) | 
| Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 6834 | { | 
|  | 6835 | struct btrfs_root *root = BTRFS_I(inode)->root; | 
| Al Viro | 45321ac | 2010-06-07 13:43:19 -0400 | [diff] [blame] | 6836 |  | 
| Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 6837 | if (btrfs_root_refs(&root->root_item) == 0 && | 
| Chris Mason | 2cf8572 | 2011-07-26 15:35:09 -0400 | [diff] [blame] | 6838 | !btrfs_is_free_space_inode(root, inode)) | 
| Al Viro | 45321ac | 2010-06-07 13:43:19 -0400 | [diff] [blame] | 6839 | return 1; | 
| Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 6840 | else | 
| Al Viro | 45321ac | 2010-06-07 13:43:19 -0400 | [diff] [blame] | 6841 | return generic_drop_inode(inode); | 
| Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 6842 | } | 
|  | 6843 |  | 
| Sven Wegener | 0ee0fda | 2008-07-30 16:54:26 -0400 | [diff] [blame] | 6844 | static void init_once(void *foo) | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6845 | { | 
|  | 6846 | struct btrfs_inode *ei = (struct btrfs_inode *) foo; | 
|  | 6847 |  | 
|  | 6848 | inode_init_once(&ei->vfs_inode); | 
|  | 6849 | } | 
|  | 6850 |  | 
|  | 6851 | void btrfs_destroy_cachep(void) | 
|  | 6852 | { | 
|  | 6853 | if (btrfs_inode_cachep) | 
|  | 6854 | kmem_cache_destroy(btrfs_inode_cachep); | 
|  | 6855 | if (btrfs_trans_handle_cachep) | 
|  | 6856 | kmem_cache_destroy(btrfs_trans_handle_cachep); | 
|  | 6857 | if (btrfs_transaction_cachep) | 
|  | 6858 | kmem_cache_destroy(btrfs_transaction_cachep); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6859 | if (btrfs_path_cachep) | 
|  | 6860 | kmem_cache_destroy(btrfs_path_cachep); | 
| Josef Bacik | dc89e98 | 2011-01-28 17:05:48 -0500 | [diff] [blame] | 6861 | if (btrfs_free_space_cachep) | 
|  | 6862 | kmem_cache_destroy(btrfs_free_space_cachep); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6863 | } | 
|  | 6864 |  | 
|  | 6865 | int btrfs_init_cachep(void) | 
|  | 6866 | { | 
| Christoph Hellwig | 9601e3f | 2009-04-13 15:33:09 +0200 | [diff] [blame] | 6867 | btrfs_inode_cachep = kmem_cache_create("btrfs_inode_cache", | 
|  | 6868 | sizeof(struct btrfs_inode), 0, | 
|  | 6869 | SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, init_once); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6870 | if (!btrfs_inode_cachep) | 
|  | 6871 | goto fail; | 
| Christoph Hellwig | 9601e3f | 2009-04-13 15:33:09 +0200 | [diff] [blame] | 6872 |  | 
|  | 6873 | btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle_cache", | 
|  | 6874 | sizeof(struct btrfs_trans_handle), 0, | 
|  | 6875 | SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6876 | if (!btrfs_trans_handle_cachep) | 
|  | 6877 | goto fail; | 
| Christoph Hellwig | 9601e3f | 2009-04-13 15:33:09 +0200 | [diff] [blame] | 6878 |  | 
|  | 6879 | btrfs_transaction_cachep = kmem_cache_create("btrfs_transaction_cache", | 
|  | 6880 | sizeof(struct btrfs_transaction), 0, | 
|  | 6881 | SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6882 | if (!btrfs_transaction_cachep) | 
|  | 6883 | goto fail; | 
| Christoph Hellwig | 9601e3f | 2009-04-13 15:33:09 +0200 | [diff] [blame] | 6884 |  | 
|  | 6885 | btrfs_path_cachep = kmem_cache_create("btrfs_path_cache", | 
|  | 6886 | sizeof(struct btrfs_path), 0, | 
|  | 6887 | SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6888 | if (!btrfs_path_cachep) | 
|  | 6889 | goto fail; | 
| Christoph Hellwig | 9601e3f | 2009-04-13 15:33:09 +0200 | [diff] [blame] | 6890 |  | 
| Josef Bacik | dc89e98 | 2011-01-28 17:05:48 -0500 | [diff] [blame] | 6891 | btrfs_free_space_cachep = kmem_cache_create("btrfs_free_space_cache", | 
|  | 6892 | sizeof(struct btrfs_free_space), 0, | 
|  | 6893 | SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL); | 
|  | 6894 | if (!btrfs_free_space_cachep) | 
|  | 6895 | goto fail; | 
|  | 6896 |  | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6897 | return 0; | 
|  | 6898 | fail: | 
|  | 6899 | btrfs_destroy_cachep(); | 
|  | 6900 | return -ENOMEM; | 
|  | 6901 | } | 
|  | 6902 |  | 
|  | 6903 | static int btrfs_getattr(struct vfsmount *mnt, | 
|  | 6904 | struct dentry *dentry, struct kstat *stat) | 
|  | 6905 | { | 
|  | 6906 | struct inode *inode = dentry->d_inode; | 
| David Sterba | fadc0d8 | 2011-11-20 07:33:38 -0500 | [diff] [blame] | 6907 | u32 blocksize = inode->i_sb->s_blocksize; | 
|  | 6908 |  | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6909 | generic_fillattr(inode, stat); | 
| Al Viro | 0ee5dc6 | 2011-07-07 15:44:25 -0400 | [diff] [blame] | 6910 | stat->dev = BTRFS_I(inode)->root->anon_dev; | 
| Chris Mason | d666746 | 2008-01-03 14:51:00 -0500 | [diff] [blame] | 6911 | stat->blksize = PAGE_CACHE_SIZE; | 
| David Sterba | fadc0d8 | 2011-11-20 07:33:38 -0500 | [diff] [blame] | 6912 | stat->blocks = (ALIGN(inode_get_bytes(inode), blocksize) + | 
|  | 6913 | ALIGN(BTRFS_I(inode)->delalloc_bytes, blocksize)) >> 9; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6914 | return 0; | 
|  | 6915 | } | 
|  | 6916 |  | 
| Liu Bo | 75e7cb7 | 2011-03-22 10:12:20 +0000 | [diff] [blame] | 6917 | /* | 
|  | 6918 | * If a file is moved, it will inherit the cow and compression flags of the new | 
|  | 6919 | * directory. | 
|  | 6920 | */ | 
|  | 6921 | static void fixup_inode_flags(struct inode *dir, struct inode *inode) | 
|  | 6922 | { | 
|  | 6923 | struct btrfs_inode *b_dir = BTRFS_I(dir); | 
|  | 6924 | struct btrfs_inode *b_inode = BTRFS_I(inode); | 
|  | 6925 |  | 
|  | 6926 | if (b_dir->flags & BTRFS_INODE_NODATACOW) | 
|  | 6927 | b_inode->flags |= BTRFS_INODE_NODATACOW; | 
|  | 6928 | else | 
|  | 6929 | b_inode->flags &= ~BTRFS_INODE_NODATACOW; | 
|  | 6930 |  | 
|  | 6931 | if (b_dir->flags & BTRFS_INODE_COMPRESS) | 
|  | 6932 | b_inode->flags |= BTRFS_INODE_COMPRESS; | 
|  | 6933 | else | 
|  | 6934 | b_inode->flags &= ~BTRFS_INODE_COMPRESS; | 
|  | 6935 | } | 
|  | 6936 |  | 
| Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 6937 | static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry, | 
|  | 6938 | struct inode *new_dir, struct dentry *new_dentry) | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6939 | { | 
|  | 6940 | struct btrfs_trans_handle *trans; | 
|  | 6941 | struct btrfs_root *root = BTRFS_I(old_dir)->root; | 
| Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 6942 | struct btrfs_root *dest = BTRFS_I(new_dir)->root; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6943 | struct inode *new_inode = new_dentry->d_inode; | 
|  | 6944 | struct inode *old_inode = old_dentry->d_inode; | 
|  | 6945 | struct timespec ctime = CURRENT_TIME; | 
| Chris Mason | 00e4e6b | 2008-08-05 11:18:09 -0400 | [diff] [blame] | 6946 | u64 index = 0; | 
| Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 6947 | u64 root_objectid; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6948 | int ret; | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 6949 | u64 old_ino = btrfs_ino(old_inode); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6950 |  | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 6951 | if (btrfs_ino(new_dir) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID) | 
| Yan, Zheng | f679a84 | 2009-09-24 09:17:31 -0400 | [diff] [blame] | 6952 | return -EPERM; | 
|  | 6953 |  | 
| Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 6954 | /* we only allow rename subvolume link between subvolumes */ | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 6955 | if (old_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest) | 
| Chris Mason | 3394e16 | 2008-11-17 20:42:26 -0500 | [diff] [blame] | 6956 | return -EXDEV; | 
|  | 6957 |  | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 6958 | if (old_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID || | 
|  | 6959 | (new_inode && btrfs_ino(new_inode) == BTRFS_FIRST_FREE_OBJECTID)) | 
| Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 6960 | return -ENOTEMPTY; | 
|  | 6961 |  | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6962 | if (S_ISDIR(old_inode->i_mode) && new_inode && | 
| Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 6963 | new_inode->i_size > BTRFS_EMPTY_DIR_SIZE) | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6964 | return -ENOTEMPTY; | 
| Chris Mason | 5a3f23d | 2009-03-31 13:27:11 -0400 | [diff] [blame] | 6965 | /* | 
|  | 6966 | * we're using rename to replace one file with another. | 
|  | 6967 | * and the replacement file is large.  Start IO on it now so | 
|  | 6968 | * we don't add too much work to the end of the transaction | 
|  | 6969 | */ | 
| Bartlomiej Zolnierkiewicz | 4baf8c9 | 2009-08-07 13:47:08 -0400 | [diff] [blame] | 6970 | if (new_inode && S_ISREG(old_inode->i_mode) && new_inode->i_size && | 
| Chris Mason | 5a3f23d | 2009-03-31 13:27:11 -0400 | [diff] [blame] | 6971 | old_inode->i_size > BTRFS_ORDERED_OPERATIONS_FLUSH_LIMIT) | 
|  | 6972 | filemap_flush(old_inode->i_mapping); | 
|  | 6973 |  | 
| Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 6974 | /* close the racy window with snapshot create/destroy ioctl */ | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 6975 | if (old_ino == BTRFS_FIRST_FREE_OBJECTID) | 
| Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 6976 | down_read(&root->fs_info->subvol_sem); | 
| Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 6977 | /* | 
|  | 6978 | * We want to reserve the absolute worst case amount of items.  So if | 
|  | 6979 | * both inodes are subvols and we need to unlink them then that would | 
|  | 6980 | * require 4 item modifications, but if they are both normal inodes it | 
|  | 6981 | * would require 5 item modifications, so we'll assume their normal | 
|  | 6982 | * inodes.  So 5 * 2 is 10, plus 1 for the new link, so 11 total items | 
|  | 6983 | * should cover the worst case number of items we'll modify. | 
|  | 6984 | */ | 
|  | 6985 | trans = btrfs_start_transaction(root, 20); | 
| Johann Lombardi | b44c59a | 2011-03-31 13:23:47 +0000 | [diff] [blame] | 6986 | if (IS_ERR(trans)) { | 
|  | 6987 | ret = PTR_ERR(trans); | 
|  | 6988 | goto out_notrans; | 
|  | 6989 | } | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 6990 |  | 
| Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 6991 | if (dest != root) | 
|  | 6992 | btrfs_record_root_in_trans(trans, dest); | 
|  | 6993 |  | 
| Yan, Zheng | a571952 | 2009-09-24 09:17:31 -0400 | [diff] [blame] | 6994 | ret = btrfs_set_inode_index(new_dir, &index); | 
|  | 6995 | if (ret) | 
|  | 6996 | goto out_fail; | 
| Chris Mason | 5a3f23d | 2009-03-31 13:27:11 -0400 | [diff] [blame] | 6997 |  | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 6998 | if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) { | 
| Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 6999 | /* force full log commit if subvolume involved. */ | 
|  | 7000 | root->fs_info->last_trans_log_full_commit = trans->transid; | 
|  | 7001 | } else { | 
| Yan, Zheng | a571952 | 2009-09-24 09:17:31 -0400 | [diff] [blame] | 7002 | ret = btrfs_insert_inode_ref(trans, dest, | 
|  | 7003 | new_dentry->d_name.name, | 
|  | 7004 | new_dentry->d_name.len, | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 7005 | old_ino, | 
|  | 7006 | btrfs_ino(new_dir), index); | 
| Yan, Zheng | a571952 | 2009-09-24 09:17:31 -0400 | [diff] [blame] | 7007 | if (ret) | 
|  | 7008 | goto out_fail; | 
| Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 7009 | /* | 
|  | 7010 | * this is an ugly little race, but the rename is required | 
|  | 7011 | * to make sure that if we crash, the inode is either at the | 
|  | 7012 | * old name or the new one.  pinning the log transaction lets | 
|  | 7013 | * us make sure we don't allow a log commit to come in after | 
|  | 7014 | * we unlink the name but before we add the new name back in. | 
|  | 7015 | */ | 
|  | 7016 | btrfs_pin_log_trans(root); | 
|  | 7017 | } | 
| Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 7018 | /* | 
| Chris Mason | 5a3f23d | 2009-03-31 13:27:11 -0400 | [diff] [blame] | 7019 | * make sure the inode gets flushed if it is replacing | 
|  | 7020 | * something. | 
|  | 7021 | */ | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 7022 | if (new_inode && new_inode->i_size && S_ISREG(old_inode->i_mode)) | 
| Chris Mason | 5a3f23d | 2009-03-31 13:27:11 -0400 | [diff] [blame] | 7023 | btrfs_add_ordered_operation(trans, root, old_inode); | 
| Chris Mason | 5a3f23d | 2009-03-31 13:27:11 -0400 | [diff] [blame] | 7024 |  | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7025 | old_dir->i_ctime = old_dir->i_mtime = ctime; | 
|  | 7026 | new_dir->i_ctime = new_dir->i_mtime = ctime; | 
|  | 7027 | old_inode->i_ctime = ctime; | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 7028 |  | 
| Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 7029 | if (old_dentry->d_parent != new_dentry->d_parent) | 
|  | 7030 | btrfs_record_unlink_dir(trans, old_dir, old_inode, 1); | 
|  | 7031 |  | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 7032 | if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) { | 
| Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 7033 | root_objectid = BTRFS_I(old_inode)->root->root_key.objectid; | 
|  | 7034 | ret = btrfs_unlink_subvol(trans, root, old_dir, root_objectid, | 
|  | 7035 | old_dentry->d_name.name, | 
|  | 7036 | old_dentry->d_name.len); | 
|  | 7037 | } else { | 
| Al Viro | 9298679 | 2011-03-04 17:14:37 +0000 | [diff] [blame] | 7038 | ret = __btrfs_unlink_inode(trans, root, old_dir, | 
|  | 7039 | old_dentry->d_inode, | 
|  | 7040 | old_dentry->d_name.name, | 
|  | 7041 | old_dentry->d_name.len); | 
|  | 7042 | if (!ret) | 
|  | 7043 | ret = btrfs_update_inode(trans, root, old_inode); | 
| Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 7044 | } | 
|  | 7045 | BUG_ON(ret); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7046 |  | 
|  | 7047 | if (new_inode) { | 
|  | 7048 | new_inode->i_ctime = CURRENT_TIME; | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 7049 | if (unlikely(btrfs_ino(new_inode) == | 
| Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 7050 | BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) { | 
|  | 7051 | root_objectid = BTRFS_I(new_inode)->location.objectid; | 
|  | 7052 | ret = btrfs_unlink_subvol(trans, dest, new_dir, | 
|  | 7053 | root_objectid, | 
|  | 7054 | new_dentry->d_name.name, | 
|  | 7055 | new_dentry->d_name.len); | 
|  | 7056 | BUG_ON(new_inode->i_nlink == 0); | 
|  | 7057 | } else { | 
|  | 7058 | ret = btrfs_unlink_inode(trans, dest, new_dir, | 
|  | 7059 | new_dentry->d_inode, | 
|  | 7060 | new_dentry->d_name.name, | 
|  | 7061 | new_dentry->d_name.len); | 
|  | 7062 | } | 
|  | 7063 | BUG_ON(ret); | 
| Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 7064 | if (new_inode->i_nlink == 0) { | 
| Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 7065 | ret = btrfs_orphan_add(trans, new_dentry->d_inode); | 
| Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 7066 | BUG_ON(ret); | 
| Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 7067 | } | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7068 | } | 
| Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 7069 |  | 
| Liu Bo | 75e7cb7 | 2011-03-22 10:12:20 +0000 | [diff] [blame] | 7070 | fixup_inode_flags(new_dir, old_inode); | 
|  | 7071 |  | 
| Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 7072 | ret = btrfs_add_link(trans, new_dir, old_inode, | 
|  | 7073 | new_dentry->d_name.name, | 
| Yan, Zheng | a571952 | 2009-09-24 09:17:31 -0400 | [diff] [blame] | 7074 | new_dentry->d_name.len, 0, index); | 
| Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 7075 | BUG_ON(ret); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7076 |  | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 7077 | if (old_ino != BTRFS_FIRST_FREE_OBJECTID) { | 
| Al Viro | 10d9f30 | 2011-07-16 23:09:10 -0400 | [diff] [blame] | 7078 | struct dentry *parent = new_dentry->d_parent; | 
| Josef Bacik | 6a91221 | 2010-11-20 09:48:00 +0000 | [diff] [blame] | 7079 | btrfs_log_new_name(trans, old_inode, old_dir, parent); | 
| Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 7080 | btrfs_end_log_trans(root); | 
|  | 7081 | } | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7082 | out_fail: | 
| Josef Bacik | 7ad85bb | 2012-01-12 19:10:12 -0500 | [diff] [blame] | 7083 | btrfs_end_transaction(trans, root); | 
| Johann Lombardi | b44c59a | 2011-03-31 13:23:47 +0000 | [diff] [blame] | 7084 | out_notrans: | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 7085 | if (old_ino == BTRFS_FIRST_FREE_OBJECTID) | 
| Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 7086 | up_read(&root->fs_info->subvol_sem); | 
| Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 7087 |  | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7088 | return ret; | 
|  | 7089 | } | 
|  | 7090 |  | 
| Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 7091 | /* | 
|  | 7092 | * some fairly slow code that needs optimization. This walks the list | 
|  | 7093 | * of all the inodes with pending delalloc and forces them to disk. | 
|  | 7094 | */ | 
| Yan, Zheng | 24bbcf0 | 2009-11-12 09:36:34 +0000 | [diff] [blame] | 7095 | int btrfs_start_delalloc_inodes(struct btrfs_root *root, int delay_iput) | 
| Chris Mason | ea8c281 | 2008-08-04 23:17:27 -0400 | [diff] [blame] | 7096 | { | 
|  | 7097 | struct list_head *head = &root->fs_info->delalloc_inodes; | 
|  | 7098 | struct btrfs_inode *binode; | 
| Zheng Yan | 5b21f2e | 2008-09-26 10:05:38 -0400 | [diff] [blame] | 7099 | struct inode *inode; | 
| Chris Mason | ea8c281 | 2008-08-04 23:17:27 -0400 | [diff] [blame] | 7100 |  | 
| Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 7101 | if (root->fs_info->sb->s_flags & MS_RDONLY) | 
|  | 7102 | return -EROFS; | 
|  | 7103 |  | 
| Chris Mason | 75eff68 | 2008-12-15 15:54:40 -0500 | [diff] [blame] | 7104 | spin_lock(&root->fs_info->delalloc_lock); | 
| Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 7105 | while (!list_empty(head)) { | 
| Chris Mason | ea8c281 | 2008-08-04 23:17:27 -0400 | [diff] [blame] | 7106 | binode = list_entry(head->next, struct btrfs_inode, | 
|  | 7107 | delalloc_inodes); | 
| Zheng Yan | 5b21f2e | 2008-09-26 10:05:38 -0400 | [diff] [blame] | 7108 | inode = igrab(&binode->vfs_inode); | 
|  | 7109 | if (!inode) | 
|  | 7110 | list_del_init(&binode->delalloc_inodes); | 
| Chris Mason | 75eff68 | 2008-12-15 15:54:40 -0500 | [diff] [blame] | 7111 | spin_unlock(&root->fs_info->delalloc_lock); | 
| Zheng Yan | 5b21f2e | 2008-09-26 10:05:38 -0400 | [diff] [blame] | 7112 | if (inode) { | 
| Chris Mason | 8c8bee1 | 2008-09-29 11:19:10 -0400 | [diff] [blame] | 7113 | filemap_flush(inode->i_mapping); | 
| Yan, Zheng | 24bbcf0 | 2009-11-12 09:36:34 +0000 | [diff] [blame] | 7114 | if (delay_iput) | 
|  | 7115 | btrfs_add_delayed_iput(inode); | 
|  | 7116 | else | 
|  | 7117 | iput(inode); | 
| Zheng Yan | 5b21f2e | 2008-09-26 10:05:38 -0400 | [diff] [blame] | 7118 | } | 
|  | 7119 | cond_resched(); | 
| Chris Mason | 75eff68 | 2008-12-15 15:54:40 -0500 | [diff] [blame] | 7120 | spin_lock(&root->fs_info->delalloc_lock); | 
| Chris Mason | ea8c281 | 2008-08-04 23:17:27 -0400 | [diff] [blame] | 7121 | } | 
| Chris Mason | 75eff68 | 2008-12-15 15:54:40 -0500 | [diff] [blame] | 7122 | spin_unlock(&root->fs_info->delalloc_lock); | 
| Chris Mason | 8c8bee1 | 2008-09-29 11:19:10 -0400 | [diff] [blame] | 7123 |  | 
|  | 7124 | /* the filemap_flush will queue IO into the worker threads, but | 
|  | 7125 | * we have to make sure the IO is actually started and that | 
|  | 7126 | * ordered extents get created before we return | 
|  | 7127 | */ | 
|  | 7128 | atomic_inc(&root->fs_info->async_submit_draining); | 
| Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 7129 | while (atomic_read(&root->fs_info->nr_async_submits) || | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 7130 | atomic_read(&root->fs_info->async_delalloc_pages)) { | 
| Chris Mason | 8c8bee1 | 2008-09-29 11:19:10 -0400 | [diff] [blame] | 7131 | wait_event(root->fs_info->async_submit_wait, | 
| Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 7132 | (atomic_read(&root->fs_info->nr_async_submits) == 0 && | 
|  | 7133 | atomic_read(&root->fs_info->async_delalloc_pages) == 0)); | 
| Chris Mason | 8c8bee1 | 2008-09-29 11:19:10 -0400 | [diff] [blame] | 7134 | } | 
|  | 7135 | atomic_dec(&root->fs_info->async_submit_draining); | 
| Chris Mason | ea8c281 | 2008-08-04 23:17:27 -0400 | [diff] [blame] | 7136 | return 0; | 
|  | 7137 | } | 
|  | 7138 |  | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7139 | static int btrfs_symlink(struct inode *dir, struct dentry *dentry, | 
|  | 7140 | const char *symname) | 
|  | 7141 | { | 
|  | 7142 | struct btrfs_trans_handle *trans; | 
|  | 7143 | struct btrfs_root *root = BTRFS_I(dir)->root; | 
|  | 7144 | struct btrfs_path *path; | 
|  | 7145 | struct btrfs_key key; | 
| Chris Mason | 1832a6d | 2007-12-21 16:27:21 -0500 | [diff] [blame] | 7146 | struct inode *inode = NULL; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7147 | int err; | 
|  | 7148 | int drop_inode = 0; | 
|  | 7149 | u64 objectid; | 
| Chris Mason | 00e4e6b | 2008-08-05 11:18:09 -0400 | [diff] [blame] | 7150 | u64 index = 0 ; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7151 | int name_len; | 
|  | 7152 | int datasize; | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 7153 | unsigned long ptr; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7154 | struct btrfs_file_extent_item *ei; | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 7155 | struct extent_buffer *leaf; | 
| Chris Mason | 1832a6d | 2007-12-21 16:27:21 -0500 | [diff] [blame] | 7156 | unsigned long nr = 0; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7157 |  | 
|  | 7158 | name_len = strlen(symname) + 1; | 
|  | 7159 | if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root)) | 
|  | 7160 | return -ENAMETOOLONG; | 
| Chris Mason | 1832a6d | 2007-12-21 16:27:21 -0500 | [diff] [blame] | 7161 |  | 
| Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 7162 | /* | 
|  | 7163 | * 2 items for inode item and ref | 
|  | 7164 | * 2 items for dir items | 
|  | 7165 | * 1 item for xattr if selinux is on | 
|  | 7166 | */ | 
| Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 7167 | trans = btrfs_start_transaction(root, 5); | 
|  | 7168 | if (IS_ERR(trans)) | 
|  | 7169 | return PTR_ERR(trans); | 
| Chris Mason | 1832a6d | 2007-12-21 16:27:21 -0500 | [diff] [blame] | 7170 |  | 
| Li Zefan | 581bb05 | 2011-04-20 10:06:11 +0800 | [diff] [blame] | 7171 | err = btrfs_find_free_ino(root, &objectid); | 
|  | 7172 | if (err) | 
|  | 7173 | goto out_unlock; | 
|  | 7174 |  | 
| Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 7175 | inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name, | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 7176 | dentry->d_name.len, btrfs_ino(dir), objectid, | 
| Josef Bacik | d82a6f1 | 2011-05-11 15:26:06 -0400 | [diff] [blame] | 7177 | S_IFLNK|S_IRWXUGO, &index); | 
| Tsutomu Itoh | 7cf96da | 2011-04-25 19:43:53 -0400 | [diff] [blame] | 7178 | if (IS_ERR(inode)) { | 
|  | 7179 | err = PTR_ERR(inode); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7180 | goto out_unlock; | 
| Tsutomu Itoh | 7cf96da | 2011-04-25 19:43:53 -0400 | [diff] [blame] | 7181 | } | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7182 |  | 
| Eric Paris | 2a7dba3 | 2011-02-01 11:05:39 -0500 | [diff] [blame] | 7183 | err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name); | 
| Josef Bacik | 33268ea | 2008-07-24 12:16:36 -0400 | [diff] [blame] | 7184 | if (err) { | 
|  | 7185 | drop_inode = 1; | 
|  | 7186 | goto out_unlock; | 
|  | 7187 | } | 
|  | 7188 |  | 
| Casey Schaufler | ad19db7 | 2011-12-15 10:09:07 -0500 | [diff] [blame] | 7189 | /* | 
|  | 7190 | * If the active LSM wants to access the inode during | 
|  | 7191 | * d_instantiate it needs these. Smack checks to see | 
|  | 7192 | * if the filesystem supports xattrs by looking at the | 
|  | 7193 | * ops vector. | 
|  | 7194 | */ | 
|  | 7195 | inode->i_fop = &btrfs_file_operations; | 
|  | 7196 | inode->i_op = &btrfs_file_inode_operations; | 
|  | 7197 |  | 
| Josef Bacik | a1b075d | 2010-11-19 20:36:11 +0000 | [diff] [blame] | 7198 | err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7199 | if (err) | 
|  | 7200 | drop_inode = 1; | 
|  | 7201 | else { | 
|  | 7202 | inode->i_mapping->a_ops = &btrfs_aops; | 
| Chris Mason | 0416008 | 2008-03-26 10:28:07 -0400 | [diff] [blame] | 7203 | inode->i_mapping->backing_dev_info = &root->fs_info->bdi; | 
| Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 7204 | BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7205 | } | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7206 | if (drop_inode) | 
|  | 7207 | goto out_unlock; | 
|  | 7208 |  | 
|  | 7209 | path = btrfs_alloc_path(); | 
| Mark Fasheh | d8926bb | 2011-07-13 10:38:47 -0700 | [diff] [blame] | 7210 | if (!path) { | 
|  | 7211 | err = -ENOMEM; | 
|  | 7212 | drop_inode = 1; | 
|  | 7213 | goto out_unlock; | 
|  | 7214 | } | 
| Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 7215 | key.objectid = btrfs_ino(inode); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7216 | key.offset = 0; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7217 | btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY); | 
|  | 7218 | datasize = btrfs_file_extent_calc_inline_size(name_len); | 
|  | 7219 | err = btrfs_insert_empty_item(trans, root, path, &key, | 
|  | 7220 | datasize); | 
| Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 7221 | if (err) { | 
|  | 7222 | drop_inode = 1; | 
| Julia Lawall | b083916 | 2011-05-14 07:10:51 +0000 | [diff] [blame] | 7223 | btrfs_free_path(path); | 
| Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 7224 | goto out_unlock; | 
|  | 7225 | } | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 7226 | leaf = path->nodes[0]; | 
|  | 7227 | ei = btrfs_item_ptr(leaf, path->slots[0], | 
|  | 7228 | struct btrfs_file_extent_item); | 
|  | 7229 | btrfs_set_file_extent_generation(leaf, ei, trans->transid); | 
|  | 7230 | btrfs_set_file_extent_type(leaf, ei, | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7231 | BTRFS_FILE_EXTENT_INLINE); | 
| Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 7232 | btrfs_set_file_extent_encryption(leaf, ei, 0); | 
|  | 7233 | btrfs_set_file_extent_compression(leaf, ei, 0); | 
|  | 7234 | btrfs_set_file_extent_other_encoding(leaf, ei, 0); | 
|  | 7235 | btrfs_set_file_extent_ram_bytes(leaf, ei, name_len); | 
|  | 7236 |  | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7237 | ptr = btrfs_file_extent_inline_start(ei); | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 7238 | write_extent_buffer(leaf, symname, ptr, name_len); | 
|  | 7239 | btrfs_mark_buffer_dirty(leaf); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7240 | btrfs_free_path(path); | 
| Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 7241 |  | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7242 | inode->i_op = &btrfs_symlink_inode_operations; | 
|  | 7243 | inode->i_mapping->a_ops = &btrfs_symlink_aops; | 
| Chris Mason | 0416008 | 2008-03-26 10:28:07 -0400 | [diff] [blame] | 7244 | inode->i_mapping->backing_dev_info = &root->fs_info->bdi; | 
| Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 7245 | inode_set_bytes(inode, name_len); | 
| Chris Mason | dbe674a | 2008-07-17 12:54:05 -0400 | [diff] [blame] | 7246 | btrfs_i_size_write(inode, name_len - 1); | 
| Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 7247 | err = btrfs_update_inode(trans, root, inode); | 
|  | 7248 | if (err) | 
|  | 7249 | drop_inode = 1; | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7250 |  | 
|  | 7251 | out_unlock: | 
| Al Viro | 08c422c | 2011-12-23 07:58:13 -0500 | [diff] [blame] | 7252 | if (!err) | 
|  | 7253 | d_instantiate(dentry, inode); | 
| Chris Mason | d3c2fdc | 2007-09-17 10:58:06 -0400 | [diff] [blame] | 7254 | nr = trans->blocks_used; | 
| Josef Bacik | 7ad85bb | 2012-01-12 19:10:12 -0500 | [diff] [blame] | 7255 | btrfs_end_transaction(trans, root); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7256 | if (drop_inode) { | 
|  | 7257 | inode_dec_link_count(inode); | 
|  | 7258 | iput(inode); | 
|  | 7259 | } | 
| Chris Mason | d3c2fdc | 2007-09-17 10:58:06 -0400 | [diff] [blame] | 7260 | btrfs_btree_balance_dirty(root, nr); | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7261 | return err; | 
|  | 7262 | } | 
| Chris Mason | 1643298 | 2008-04-10 10:23:21 -0400 | [diff] [blame] | 7263 |  | 
| Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 7264 | static int __btrfs_prealloc_file_range(struct inode *inode, int mode, | 
|  | 7265 | u64 start, u64 num_bytes, u64 min_size, | 
|  | 7266 | loff_t actual_len, u64 *alloc_hint, | 
|  | 7267 | struct btrfs_trans_handle *trans) | 
| Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 7268 | { | 
| Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 7269 | struct btrfs_root *root = BTRFS_I(inode)->root; | 
|  | 7270 | struct btrfs_key ins; | 
| Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 7271 | u64 cur_offset = start; | 
| Josef Bacik | 55a61d1 | 2010-11-22 18:50:32 +0000 | [diff] [blame] | 7272 | u64 i_size; | 
| Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 7273 | int ret = 0; | 
| Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 7274 | bool own_trans = true; | 
| Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 7275 |  | 
| Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 7276 | if (trans) | 
|  | 7277 | own_trans = false; | 
| Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 7278 | while (num_bytes > 0) { | 
| Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 7279 | if (own_trans) { | 
|  | 7280 | trans = btrfs_start_transaction(root, 3); | 
|  | 7281 | if (IS_ERR(trans)) { | 
|  | 7282 | ret = PTR_ERR(trans); | 
|  | 7283 | break; | 
|  | 7284 | } | 
| Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 7285 | } | 
| Yan, Zheng | 5a303d5 | 2009-11-12 09:34:52 +0000 | [diff] [blame] | 7286 |  | 
| Yan, Zheng | efa5646 | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 7287 | ret = btrfs_reserve_extent(trans, root, num_bytes, min_size, | 
|  | 7288 | 0, *alloc_hint, (u64)-1, &ins, 1); | 
| Yan, Zheng | 5a303d5 | 2009-11-12 09:34:52 +0000 | [diff] [blame] | 7289 | if (ret) { | 
| Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 7290 | if (own_trans) | 
|  | 7291 | btrfs_end_transaction(trans, root); | 
| Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 7292 | break; | 
| Yan, Zheng | 5a303d5 | 2009-11-12 09:34:52 +0000 | [diff] [blame] | 7293 | } | 
|  | 7294 |  | 
| Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 7295 | ret = insert_reserved_file_extent(trans, inode, | 
|  | 7296 | cur_offset, ins.objectid, | 
|  | 7297 | ins.offset, ins.offset, | 
| Yan, Zheng | 920bbbf | 2009-11-12 09:34:08 +0000 | [diff] [blame] | 7298 | ins.offset, 0, 0, 0, | 
| Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 7299 | BTRFS_FILE_EXTENT_PREALLOC); | 
|  | 7300 | BUG_ON(ret); | 
| Chris Mason | a1ed835 | 2009-09-11 12:27:37 -0400 | [diff] [blame] | 7301 | btrfs_drop_extent_cache(inode, cur_offset, | 
|  | 7302 | cur_offset + ins.offset -1, 0); | 
| Yan, Zheng | 5a303d5 | 2009-11-12 09:34:52 +0000 | [diff] [blame] | 7303 |  | 
| Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 7304 | num_bytes -= ins.offset; | 
|  | 7305 | cur_offset += ins.offset; | 
| Yan, Zheng | efa5646 | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 7306 | *alloc_hint = ins.objectid + ins.offset; | 
| Yan, Zheng | 5a303d5 | 2009-11-12 09:34:52 +0000 | [diff] [blame] | 7307 |  | 
| Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 7308 | inode->i_ctime = CURRENT_TIME; | 
| Christoph Hellwig | 6cbff00 | 2009-04-17 10:37:41 +0200 | [diff] [blame] | 7309 | BTRFS_I(inode)->flags |= BTRFS_INODE_PREALLOC; | 
| Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 7310 | if (!(mode & FALLOC_FL_KEEP_SIZE) && | 
| Yan, Zheng | efa5646 | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 7311 | (actual_len > inode->i_size) && | 
|  | 7312 | (cur_offset > inode->i_size)) { | 
| Aneesh Kumar K.V | d1ea6a6 | 2010-01-20 07:28:54 +0000 | [diff] [blame] | 7313 | if (cur_offset > actual_len) | 
| Josef Bacik | 55a61d1 | 2010-11-22 18:50:32 +0000 | [diff] [blame] | 7314 | i_size = actual_len; | 
| Aneesh Kumar K.V | d1ea6a6 | 2010-01-20 07:28:54 +0000 | [diff] [blame] | 7315 | else | 
| Josef Bacik | 55a61d1 | 2010-11-22 18:50:32 +0000 | [diff] [blame] | 7316 | i_size = cur_offset; | 
|  | 7317 | i_size_write(inode, i_size); | 
|  | 7318 | btrfs_ordered_update_i_size(inode, i_size, NULL); | 
| Yan, Zheng | 5a303d5 | 2009-11-12 09:34:52 +0000 | [diff] [blame] | 7319 | } | 
|  | 7320 |  | 
| Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 7321 | ret = btrfs_update_inode(trans, root, inode); | 
|  | 7322 | BUG_ON(ret); | 
| Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 7323 |  | 
| Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 7324 | if (own_trans) | 
|  | 7325 | btrfs_end_transaction(trans, root); | 
| Yan, Zheng | 5a303d5 | 2009-11-12 09:34:52 +0000 | [diff] [blame] | 7326 | } | 
| Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 7327 | return ret; | 
|  | 7328 | } | 
|  | 7329 |  | 
| Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 7330 | int btrfs_prealloc_file_range(struct inode *inode, int mode, | 
|  | 7331 | u64 start, u64 num_bytes, u64 min_size, | 
|  | 7332 | loff_t actual_len, u64 *alloc_hint) | 
|  | 7333 | { | 
|  | 7334 | return __btrfs_prealloc_file_range(inode, mode, start, num_bytes, | 
|  | 7335 | min_size, actual_len, alloc_hint, | 
|  | 7336 | NULL); | 
|  | 7337 | } | 
|  | 7338 |  | 
|  | 7339 | int btrfs_prealloc_file_range_trans(struct inode *inode, | 
|  | 7340 | struct btrfs_trans_handle *trans, int mode, | 
|  | 7341 | u64 start, u64 num_bytes, u64 min_size, | 
|  | 7342 | loff_t actual_len, u64 *alloc_hint) | 
|  | 7343 | { | 
|  | 7344 | return __btrfs_prealloc_file_range(inode, mode, start, num_bytes, | 
|  | 7345 | min_size, actual_len, alloc_hint, trans); | 
|  | 7346 | } | 
|  | 7347 |  | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7348 | static int btrfs_set_page_dirty(struct page *page) | 
|  | 7349 | { | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7350 | return __set_page_dirty_nobuffers(page); | 
|  | 7351 | } | 
|  | 7352 |  | 
| Al Viro | 10556cb | 2011-06-20 19:28:19 -0400 | [diff] [blame] | 7353 | static int btrfs_permission(struct inode *inode, int mask) | 
| Yan | fdebe2b | 2008-01-14 13:26:08 -0500 | [diff] [blame] | 7354 | { | 
| Li Zefan | b83cc96 | 2010-12-20 16:04:08 +0800 | [diff] [blame] | 7355 | struct btrfs_root *root = BTRFS_I(inode)->root; | 
| Jeff Mahoney | cb6db4e | 2011-08-15 17:27:21 +0000 | [diff] [blame] | 7356 | umode_t mode = inode->i_mode; | 
| Li Zefan | b83cc96 | 2010-12-20 16:04:08 +0800 | [diff] [blame] | 7357 |  | 
| Jeff Mahoney | cb6db4e | 2011-08-15 17:27:21 +0000 | [diff] [blame] | 7358 | if (mask & MAY_WRITE && | 
|  | 7359 | (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode))) { | 
|  | 7360 | if (btrfs_root_readonly(root)) | 
|  | 7361 | return -EROFS; | 
|  | 7362 | if (BTRFS_I(inode)->flags & BTRFS_INODE_READONLY) | 
|  | 7363 | return -EACCES; | 
|  | 7364 | } | 
| Al Viro | 2830ba7 | 2011-06-20 19:16:29 -0400 | [diff] [blame] | 7365 | return generic_permission(inode, mask); | 
| Yan | fdebe2b | 2008-01-14 13:26:08 -0500 | [diff] [blame] | 7366 | } | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7367 |  | 
| Alexey Dobriyan | 6e1d5dc | 2009-09-21 17:01:11 -0700 | [diff] [blame] | 7368 | static const struct inode_operations btrfs_dir_inode_operations = { | 
| Chris Mason | 3394e16 | 2008-11-17 20:42:26 -0500 | [diff] [blame] | 7369 | .getattr	= btrfs_getattr, | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7370 | .lookup		= btrfs_lookup, | 
|  | 7371 | .create		= btrfs_create, | 
|  | 7372 | .unlink		= btrfs_unlink, | 
|  | 7373 | .link		= btrfs_link, | 
|  | 7374 | .mkdir		= btrfs_mkdir, | 
|  | 7375 | .rmdir		= btrfs_rmdir, | 
|  | 7376 | .rename		= btrfs_rename, | 
|  | 7377 | .symlink	= btrfs_symlink, | 
|  | 7378 | .setattr	= btrfs_setattr, | 
| Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 7379 | .mknod		= btrfs_mknod, | 
| Christoph Hellwig | 95819c0 | 2008-08-28 06:21:17 -0400 | [diff] [blame] | 7380 | .setxattr	= btrfs_setxattr, | 
|  | 7381 | .getxattr	= btrfs_getxattr, | 
| Josef Bacik | 5103e94 | 2007-11-16 11:45:54 -0500 | [diff] [blame] | 7382 | .listxattr	= btrfs_listxattr, | 
| Christoph Hellwig | 95819c0 | 2008-08-28 06:21:17 -0400 | [diff] [blame] | 7383 | .removexattr	= btrfs_removexattr, | 
| Yan | fdebe2b | 2008-01-14 13:26:08 -0500 | [diff] [blame] | 7384 | .permission	= btrfs_permission, | 
| Christoph Hellwig | 4e34e71 | 2011-07-23 17:37:31 +0200 | [diff] [blame] | 7385 | .get_acl	= btrfs_get_acl, | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7386 | }; | 
| Alexey Dobriyan | 6e1d5dc | 2009-09-21 17:01:11 -0700 | [diff] [blame] | 7387 | static const struct inode_operations btrfs_dir_ro_inode_operations = { | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7388 | .lookup		= btrfs_lookup, | 
| Yan | fdebe2b | 2008-01-14 13:26:08 -0500 | [diff] [blame] | 7389 | .permission	= btrfs_permission, | 
| Christoph Hellwig | 4e34e71 | 2011-07-23 17:37:31 +0200 | [diff] [blame] | 7390 | .get_acl	= btrfs_get_acl, | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7391 | }; | 
| Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 7392 |  | 
| Alexey Dobriyan | 828c095 | 2009-10-01 15:43:56 -0700 | [diff] [blame] | 7393 | static const struct file_operations btrfs_dir_file_operations = { | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7394 | .llseek		= generic_file_llseek, | 
|  | 7395 | .read		= generic_read_dir, | 
| David Woodhouse | cbdf5a2 | 2008-08-06 19:42:33 +0100 | [diff] [blame] | 7396 | .readdir	= btrfs_real_readdir, | 
| Christoph Hellwig | 34287aa | 2007-09-14 10:22:47 -0400 | [diff] [blame] | 7397 | .unlocked_ioctl	= btrfs_ioctl, | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7398 | #ifdef CONFIG_COMPAT | 
| Christoph Hellwig | 34287aa | 2007-09-14 10:22:47 -0400 | [diff] [blame] | 7399 | .compat_ioctl	= btrfs_ioctl, | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7400 | #endif | 
| Sage Weil | 6bf13c0 | 2008-06-10 10:07:39 -0400 | [diff] [blame] | 7401 | .release        = btrfs_release_file, | 
| Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 7402 | .fsync		= btrfs_sync_file, | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7403 | }; | 
|  | 7404 |  | 
| Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 7405 | static struct extent_io_ops btrfs_extent_io_ops = { | 
| Chris Mason | 07157aa | 2007-08-30 08:50:51 -0400 | [diff] [blame] | 7406 | .fill_delalloc = run_delalloc_range, | 
| Chris Mason | 065631f | 2008-02-20 12:07:25 -0500 | [diff] [blame] | 7407 | .submit_bio_hook = btrfs_submit_bio_hook, | 
| Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 7408 | .merge_bio_hook = btrfs_merge_bio_hook, | 
| Chris Mason | 07157aa | 2007-08-30 08:50:51 -0400 | [diff] [blame] | 7409 | .readpage_end_io_hook = btrfs_readpage_end_io_hook, | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7410 | .writepage_end_io_hook = btrfs_writepage_end_io_hook, | 
| Chris Mason | 247e743 | 2008-07-17 12:53:51 -0400 | [diff] [blame] | 7411 | .writepage_start_hook = btrfs_writepage_start_hook, | 
| Chris Mason | b0c68f8 | 2008-01-31 11:05:37 -0500 | [diff] [blame] | 7412 | .set_bit_hook = btrfs_set_bit_hook, | 
|  | 7413 | .clear_bit_hook = btrfs_clear_bit_hook, | 
| Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 7414 | .merge_extent_hook = btrfs_merge_extent_hook, | 
|  | 7415 | .split_extent_hook = btrfs_split_extent_hook, | 
| Chris Mason | 07157aa | 2007-08-30 08:50:51 -0400 | [diff] [blame] | 7416 | }; | 
|  | 7417 |  | 
| Chris Mason | 3505439 | 2009-01-21 13:11:13 -0500 | [diff] [blame] | 7418 | /* | 
|  | 7419 | * btrfs doesn't support the bmap operation because swapfiles | 
|  | 7420 | * use bmap to make a mapping of extents in the file.  They assume | 
|  | 7421 | * these extents won't change over the life of the file and they | 
|  | 7422 | * use the bmap result to do IO directly to the drive. | 
|  | 7423 | * | 
|  | 7424 | * the btrfs bmap call would return logical addresses that aren't | 
|  | 7425 | * suitable for IO and they also will change frequently as COW | 
|  | 7426 | * operations happen.  So, swapfile + btrfs == corruption. | 
|  | 7427 | * | 
|  | 7428 | * For now we're avoiding this by dropping bmap. | 
|  | 7429 | */ | 
| Alexey Dobriyan | 7f09410 | 2009-09-21 17:01:10 -0700 | [diff] [blame] | 7430 | static const struct address_space_operations btrfs_aops = { | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7431 | .readpage	= btrfs_readpage, | 
|  | 7432 | .writepage	= btrfs_writepage, | 
| Chris Mason | b293f02 | 2007-11-01 19:45:34 -0400 | [diff] [blame] | 7433 | .writepages	= btrfs_writepages, | 
| Chris Mason | 3ab2fb5 | 2007-11-08 10:59:22 -0500 | [diff] [blame] | 7434 | .readpages	= btrfs_readpages, | 
| Chris Mason | 1643298 | 2008-04-10 10:23:21 -0400 | [diff] [blame] | 7435 | .direct_IO	= btrfs_direct_IO, | 
| Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 7436 | .invalidatepage = btrfs_invalidatepage, | 
|  | 7437 | .releasepage	= btrfs_releasepage, | 
| Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7438 | .set_page_dirty	= btrfs_set_page_dirty, | 
| Andi Kleen | 465fdd9 | 2009-09-16 11:50:18 +0200 | [diff] [blame] | 7439 | .error_remove_page = generic_error_remove_page, | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7440 | }; | 
|  | 7441 |  | 
| Alexey Dobriyan | 7f09410 | 2009-09-21 17:01:10 -0700 | [diff] [blame] | 7442 | static const struct address_space_operations btrfs_symlink_aops = { | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7443 | .readpage	= btrfs_readpage, | 
|  | 7444 | .writepage	= btrfs_writepage, | 
| Chris Mason | 2bf5a72 | 2007-08-30 11:54:02 -0400 | [diff] [blame] | 7445 | .invalidatepage = btrfs_invalidatepage, | 
|  | 7446 | .releasepage	= btrfs_releasepage, | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7447 | }; | 
|  | 7448 |  | 
| Alexey Dobriyan | 6e1d5dc | 2009-09-21 17:01:11 -0700 | [diff] [blame] | 7449 | static const struct inode_operations btrfs_file_inode_operations = { | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7450 | .getattr	= btrfs_getattr, | 
|  | 7451 | .setattr	= btrfs_setattr, | 
| Christoph Hellwig | 95819c0 | 2008-08-28 06:21:17 -0400 | [diff] [blame] | 7452 | .setxattr	= btrfs_setxattr, | 
|  | 7453 | .getxattr	= btrfs_getxattr, | 
| Josef Bacik | 5103e94 | 2007-11-16 11:45:54 -0500 | [diff] [blame] | 7454 | .listxattr      = btrfs_listxattr, | 
| Christoph Hellwig | 95819c0 | 2008-08-28 06:21:17 -0400 | [diff] [blame] | 7455 | .removexattr	= btrfs_removexattr, | 
| Yan | fdebe2b | 2008-01-14 13:26:08 -0500 | [diff] [blame] | 7456 | .permission	= btrfs_permission, | 
| Yehuda Sadeh | 1506fcc | 2009-01-21 14:39:14 -0500 | [diff] [blame] | 7457 | .fiemap		= btrfs_fiemap, | 
| Christoph Hellwig | 4e34e71 | 2011-07-23 17:37:31 +0200 | [diff] [blame] | 7458 | .get_acl	= btrfs_get_acl, | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7459 | }; | 
| Alexey Dobriyan | 6e1d5dc | 2009-09-21 17:01:11 -0700 | [diff] [blame] | 7460 | static const struct inode_operations btrfs_special_inode_operations = { | 
| Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 7461 | .getattr	= btrfs_getattr, | 
|  | 7462 | .setattr	= btrfs_setattr, | 
| Yan | fdebe2b | 2008-01-14 13:26:08 -0500 | [diff] [blame] | 7463 | .permission	= btrfs_permission, | 
| Christoph Hellwig | 95819c0 | 2008-08-28 06:21:17 -0400 | [diff] [blame] | 7464 | .setxattr	= btrfs_setxattr, | 
|  | 7465 | .getxattr	= btrfs_getxattr, | 
| Josef Bacik | 33268ea | 2008-07-24 12:16:36 -0400 | [diff] [blame] | 7466 | .listxattr	= btrfs_listxattr, | 
| Christoph Hellwig | 95819c0 | 2008-08-28 06:21:17 -0400 | [diff] [blame] | 7467 | .removexattr	= btrfs_removexattr, | 
| Christoph Hellwig | 4e34e71 | 2011-07-23 17:37:31 +0200 | [diff] [blame] | 7468 | .get_acl	= btrfs_get_acl, | 
| Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 7469 | }; | 
| Alexey Dobriyan | 6e1d5dc | 2009-09-21 17:01:11 -0700 | [diff] [blame] | 7470 | static const struct inode_operations btrfs_symlink_inode_operations = { | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7471 | .readlink	= generic_readlink, | 
|  | 7472 | .follow_link	= page_follow_link_light, | 
|  | 7473 | .put_link	= page_put_link, | 
| Li Zefan | f209561 | 2010-11-19 02:05:24 +0000 | [diff] [blame] | 7474 | .getattr	= btrfs_getattr, | 
| Josef Bacik | 22c44fe | 2011-11-30 10:45:38 -0500 | [diff] [blame] | 7475 | .setattr	= btrfs_setattr, | 
| Yan | fdebe2b | 2008-01-14 13:26:08 -0500 | [diff] [blame] | 7476 | .permission	= btrfs_permission, | 
| Jim Owens | 0279b4c | 2009-02-04 09:29:13 -0500 | [diff] [blame] | 7477 | .setxattr	= btrfs_setxattr, | 
|  | 7478 | .getxattr	= btrfs_getxattr, | 
|  | 7479 | .listxattr	= btrfs_listxattr, | 
|  | 7480 | .removexattr	= btrfs_removexattr, | 
| Christoph Hellwig | 4e34e71 | 2011-07-23 17:37:31 +0200 | [diff] [blame] | 7481 | .get_acl	= btrfs_get_acl, | 
| Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7482 | }; | 
| Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 7483 |  | 
| Alexey Dobriyan | 82d339d | 2009-10-09 09:54:36 -0400 | [diff] [blame] | 7484 | const struct dentry_operations btrfs_dentry_operations = { | 
| Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 7485 | .d_delete	= btrfs_dentry_delete, | 
| Josef Bacik | b4aff1f | 2011-06-28 16:18:59 -0400 | [diff] [blame] | 7486 | .d_release	= btrfs_dentry_release, | 
| Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 7487 | }; |