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); |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 92 | static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent); |
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); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 153 | if (ret) { |
| 154 | err = ret; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 155 | goto fail; |
| 156 | } |
| 157 | leaf = path->nodes[0]; |
| 158 | ei = btrfs_item_ptr(leaf, path->slots[0], |
| 159 | struct btrfs_file_extent_item); |
| 160 | btrfs_set_file_extent_generation(leaf, ei, trans->transid); |
| 161 | btrfs_set_file_extent_type(leaf, ei, BTRFS_FILE_EXTENT_INLINE); |
| 162 | btrfs_set_file_extent_encryption(leaf, ei, 0); |
| 163 | btrfs_set_file_extent_other_encoding(leaf, ei, 0); |
| 164 | btrfs_set_file_extent_ram_bytes(leaf, ei, size); |
| 165 | ptr = btrfs_file_extent_inline_start(ei); |
| 166 | |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 167 | if (compress_type != BTRFS_COMPRESS_NONE) { |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 168 | struct page *cpage; |
| 169 | int i = 0; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 170 | while (compressed_size > 0) { |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 171 | cpage = compressed_pages[i]; |
Chris Mason | 5b050f0 | 2008-11-11 09:34:41 -0500 | [diff] [blame] | 172 | cur_size = min_t(unsigned long, compressed_size, |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 173 | PAGE_CACHE_SIZE); |
| 174 | |
Cong Wang | 7ac687d | 2011-11-25 23:14:28 +0800 | [diff] [blame] | 175 | kaddr = kmap_atomic(cpage); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 176 | write_extent_buffer(leaf, kaddr, ptr, cur_size); |
Cong Wang | 7ac687d | 2011-11-25 23:14:28 +0800 | [diff] [blame] | 177 | kunmap_atomic(kaddr); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 178 | |
| 179 | i++; |
| 180 | ptr += cur_size; |
| 181 | compressed_size -= cur_size; |
| 182 | } |
| 183 | btrfs_set_file_extent_compression(leaf, ei, |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 184 | compress_type); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 185 | } else { |
| 186 | page = find_get_page(inode->i_mapping, |
| 187 | start >> PAGE_CACHE_SHIFT); |
| 188 | btrfs_set_file_extent_compression(leaf, ei, 0); |
Cong Wang | 7ac687d | 2011-11-25 23:14:28 +0800 | [diff] [blame] | 189 | kaddr = kmap_atomic(page); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 190 | offset = start & (PAGE_CACHE_SIZE - 1); |
| 191 | write_extent_buffer(leaf, kaddr + offset, ptr, size); |
Cong Wang | 7ac687d | 2011-11-25 23:14:28 +0800 | [diff] [blame] | 192 | kunmap_atomic(kaddr); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 193 | page_cache_release(page); |
| 194 | } |
| 195 | btrfs_mark_buffer_dirty(leaf); |
| 196 | btrfs_free_path(path); |
| 197 | |
Yan, Zheng | c216775 | 2009-11-12 09:34:21 +0000 | [diff] [blame] | 198 | /* |
| 199 | * we're an inline extent, so nobody can |
| 200 | * extend the file past i_size without locking |
| 201 | * a page we already have locked. |
| 202 | * |
| 203 | * We must do any isize and inode updates |
| 204 | * before we unlock the pages. Otherwise we |
| 205 | * could end up racing with unlink. |
| 206 | */ |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 207 | BTRFS_I(inode)->disk_i_size = inode->i_size; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 208 | ret = btrfs_update_inode(trans, root, inode); |
Yan, Zheng | c216775 | 2009-11-12 09:34:21 +0000 | [diff] [blame] | 209 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 210 | return ret; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 211 | fail: |
| 212 | btrfs_free_path(path); |
| 213 | return err; |
| 214 | } |
| 215 | |
| 216 | |
| 217 | /* |
| 218 | * conditionally insert an inline extent into the file. This |
| 219 | * does the checks required to make sure the data is small enough |
| 220 | * to fit as an inline extent. |
| 221 | */ |
Chris Mason | 7f366cf | 2009-03-12 20:12:45 -0400 | [diff] [blame] | 222 | static noinline int cow_file_range_inline(struct btrfs_trans_handle *trans, |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 223 | struct btrfs_root *root, |
| 224 | struct inode *inode, u64 start, u64 end, |
Li Zefan | fe3f566 | 2011-03-28 08:30:38 +0000 | [diff] [blame] | 225 | size_t compressed_size, int compress_type, |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 226 | struct page **compressed_pages) |
| 227 | { |
| 228 | u64 isize = i_size_read(inode); |
| 229 | u64 actual_end = min(end + 1, isize); |
| 230 | u64 inline_len = actual_end - start; |
| 231 | u64 aligned_end = (end + root->sectorsize - 1) & |
| 232 | ~((u64)root->sectorsize - 1); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 233 | u64 data_len = inline_len; |
| 234 | int ret; |
| 235 | |
| 236 | if (compressed_size) |
| 237 | data_len = compressed_size; |
| 238 | |
| 239 | if (start > 0 || |
Chris Mason | 70b99e6 | 2008-10-31 12:46:39 -0400 | [diff] [blame] | 240 | actual_end >= PAGE_CACHE_SIZE || |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 241 | data_len >= BTRFS_MAX_INLINE_DATA_SIZE(root) || |
| 242 | (!compressed_size && |
| 243 | (actual_end & (root->sectorsize - 1)) == 0) || |
| 244 | end + 1 < isize || |
| 245 | data_len > root->fs_info->max_inline) { |
| 246 | return 1; |
| 247 | } |
| 248 | |
Josef Bacik | 2671485 | 2012-08-29 12:24:27 -0400 | [diff] [blame] | 249 | ret = btrfs_drop_extents(trans, root, inode, start, aligned_end, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 250 | if (ret) |
| 251 | return ret; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 252 | |
| 253 | if (isize > actual_end) |
| 254 | inline_len = min_t(u64, isize, actual_end); |
| 255 | ret = insert_inline_extent(trans, root, inode, start, |
| 256 | inline_len, compressed_size, |
Li Zefan | fe3f566 | 2011-03-28 08:30:38 +0000 | [diff] [blame] | 257 | compress_type, compressed_pages); |
Josef Bacik | 2adcac1 | 2012-05-23 16:10:14 -0400 | [diff] [blame] | 258 | if (ret && ret != -ENOSPC) { |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 259 | btrfs_abort_transaction(trans, root, ret); |
| 260 | return ret; |
Josef Bacik | 2adcac1 | 2012-05-23 16:10:14 -0400 | [diff] [blame] | 261 | } else if (ret == -ENOSPC) { |
| 262 | return 1; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 263 | } |
Josef Bacik | 2adcac1 | 2012-05-23 16:10:14 -0400 | [diff] [blame] | 264 | |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 265 | btrfs_delalloc_release_metadata(inode, end + 1 - start); |
Chris Mason | a1ed835 | 2009-09-11 12:27:37 -0400 | [diff] [blame] | 266 | btrfs_drop_extent_cache(inode, start, aligned_end - 1, 0); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 267 | return 0; |
| 268 | } |
| 269 | |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 270 | struct async_extent { |
| 271 | u64 start; |
| 272 | u64 ram_size; |
| 273 | u64 compressed_size; |
| 274 | struct page **pages; |
| 275 | unsigned long nr_pages; |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 276 | int compress_type; |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 277 | struct list_head list; |
| 278 | }; |
| 279 | |
| 280 | struct async_cow { |
| 281 | struct inode *inode; |
| 282 | struct btrfs_root *root; |
| 283 | struct page *locked_page; |
| 284 | u64 start; |
| 285 | u64 end; |
| 286 | struct list_head extents; |
| 287 | struct btrfs_work work; |
| 288 | }; |
| 289 | |
| 290 | static noinline int add_async_extent(struct async_cow *cow, |
| 291 | u64 start, u64 ram_size, |
| 292 | u64 compressed_size, |
| 293 | struct page **pages, |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 294 | unsigned long nr_pages, |
| 295 | int compress_type) |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 296 | { |
| 297 | struct async_extent *async_extent; |
| 298 | |
| 299 | async_extent = kmalloc(sizeof(*async_extent), GFP_NOFS); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 300 | BUG_ON(!async_extent); /* -ENOMEM */ |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 301 | async_extent->start = start; |
| 302 | async_extent->ram_size = ram_size; |
| 303 | async_extent->compressed_size = compressed_size; |
| 304 | async_extent->pages = pages; |
| 305 | async_extent->nr_pages = nr_pages; |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 306 | async_extent->compress_type = compress_type; |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 307 | list_add_tail(&async_extent->list, &cow->extents); |
| 308 | return 0; |
| 309 | } |
| 310 | |
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 | * we create compressed extents in two phases. The first |
| 313 | * phase compresses a range of pages that have already been |
| 314 | * locked (both pages and state bits are locked). |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 315 | * |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 316 | * This is done inside an ordered work queue, and the compression |
| 317 | * is spread across many cpus. The actual IO submission is step |
| 318 | * two, and the ordered work queue takes care of making sure that |
| 319 | * happens in the same order things were put onto the queue by |
| 320 | * writepages and friends. |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 321 | * |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 322 | * If this code finds it can't get good compression, it puts an |
| 323 | * entry onto the work queue to write the uncompressed bytes. This |
| 324 | * makes sure that both compressed inodes and uncompressed inodes |
Artem Bityutskiy | b257031 | 2012-07-25 18:12:06 +0300 | [diff] [blame] | 325 | * are written in the same order that the flusher thread sent them |
| 326 | * down. |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 327 | */ |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 328 | static noinline int compress_file_range(struct inode *inode, |
| 329 | struct page *locked_page, |
| 330 | u64 start, u64 end, |
| 331 | struct async_cow *async_cow, |
| 332 | int *num_added) |
Chris Mason | b888db2b | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 333 | { |
| 334 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 335 | struct btrfs_trans_handle *trans; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 336 | u64 num_bytes; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 337 | u64 blocksize = root->sectorsize; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 338 | u64 actual_end; |
Chris Mason | 42dc7ba | 2008-12-15 11:44:56 -0500 | [diff] [blame] | 339 | u64 isize = i_size_read(inode); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 340 | int ret = 0; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 341 | struct page **pages = NULL; |
| 342 | unsigned long nr_pages; |
| 343 | unsigned long nr_pages_ret = 0; |
| 344 | unsigned long total_compressed = 0; |
| 345 | unsigned long total_in = 0; |
| 346 | unsigned long max_compressed = 128 * 1024; |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 347 | unsigned long max_uncompressed = 128 * 1024; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 348 | int i; |
| 349 | int will_compress; |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 350 | int compress_type = root->fs_info->compress_type; |
Chris Mason | b888db2b | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 351 | |
Liu Bo | 4cb13e5 | 2012-03-29 09:57:45 -0400 | [diff] [blame] | 352 | /* if this is a small write inside eof, kick off a defrag */ |
| 353 | if ((end - start + 1) < 16 * 1024 && |
| 354 | (start > 0 || end + 1 < BTRFS_I(inode)->disk_i_size)) |
Chris Mason | 4cb5300 | 2011-05-24 15:35:30 -0400 | [diff] [blame] | 355 | btrfs_add_inode_defrag(NULL, inode); |
| 356 | |
Chris Mason | 42dc7ba | 2008-12-15 11:44:56 -0500 | [diff] [blame] | 357 | actual_end = min_t(u64, isize, end + 1); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 358 | again: |
| 359 | will_compress = 0; |
| 360 | nr_pages = (end >> PAGE_CACHE_SHIFT) - (start >> PAGE_CACHE_SHIFT) + 1; |
| 361 | nr_pages = min(nr_pages, (128 * 1024UL) / PAGE_CACHE_SIZE); |
| 362 | |
Chris Mason | f03d9301f | 2009-02-04 09:31:06 -0500 | [diff] [blame] | 363 | /* |
| 364 | * we don't want to send crud past the end of i_size through |
| 365 | * compression, that's just a waste of CPU time. So, if the |
| 366 | * end of the file is before the start of our current |
| 367 | * requested range of bytes, we bail out to the uncompressed |
| 368 | * cleanup code that can deal with all of this. |
| 369 | * |
| 370 | * It isn't really the fastest way to fix things, but this is a |
| 371 | * very uncommon corner. |
| 372 | */ |
| 373 | if (actual_end <= start) |
| 374 | goto cleanup_and_bail_uncompressed; |
| 375 | |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 376 | total_compressed = actual_end - start; |
| 377 | |
| 378 | /* we want to make sure that amount of ram required to uncompress |
| 379 | * an extent is reasonable, so we limit the total size in ram |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 380 | * of a compressed extent to 128k. This is a crucial number |
| 381 | * because it also controls how easily we can spread reads across |
| 382 | * cpus for decompression. |
| 383 | * |
| 384 | * We also want to make sure the amount of IO required to do |
| 385 | * a random read is reasonably small, so we limit the size of |
| 386 | * a compressed extent to 128k. |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 387 | */ |
| 388 | total_compressed = min(total_compressed, max_uncompressed); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 389 | num_bytes = (end - start + blocksize) & ~(blocksize - 1); |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 390 | num_bytes = max(blocksize, num_bytes); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 391 | total_in = 0; |
| 392 | ret = 0; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 393 | |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 394 | /* |
| 395 | * we do compression for mount -o compress and when the |
| 396 | * inode has not been flagged as nocompress. This flag can |
| 397 | * change at any time if we discover bad compression ratios. |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 398 | */ |
Christoph Hellwig | 6cbff00 | 2009-04-17 10:37:41 +0200 | [diff] [blame] | 399 | if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS) && |
Chris Mason | 1e701a3 | 2010-03-11 09:42:04 -0500 | [diff] [blame] | 400 | (btrfs_test_opt(root, COMPRESS) || |
Liu Bo | 75e7cb7 | 2011-03-22 10:12:20 +0000 | [diff] [blame] | 401 | (BTRFS_I(inode)->force_compress) || |
| 402 | (BTRFS_I(inode)->flags & BTRFS_INODE_COMPRESS))) { |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 403 | WARN_ON(pages); |
Chris Mason | cfbc246 | 2008-10-30 13:22:14 -0400 | [diff] [blame] | 404 | pages = kzalloc(sizeof(struct page *) * nr_pages, GFP_NOFS); |
Li Zefan | 560f7d7 | 2011-09-08 10:22:01 +0800 | [diff] [blame] | 405 | if (!pages) { |
| 406 | /* just bail out to the uncompressed code */ |
| 407 | goto cont; |
| 408 | } |
Chris Mason | 179e29e | 2007-11-01 11:28:41 -0400 | [diff] [blame] | 409 | |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 410 | if (BTRFS_I(inode)->force_compress) |
| 411 | compress_type = BTRFS_I(inode)->force_compress; |
| 412 | |
| 413 | ret = btrfs_compress_pages(compress_type, |
| 414 | inode->i_mapping, start, |
| 415 | total_compressed, pages, |
| 416 | nr_pages, &nr_pages_ret, |
| 417 | &total_in, |
| 418 | &total_compressed, |
| 419 | max_compressed); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 420 | |
| 421 | if (!ret) { |
| 422 | unsigned long offset = total_compressed & |
| 423 | (PAGE_CACHE_SIZE - 1); |
| 424 | struct page *page = pages[nr_pages_ret - 1]; |
| 425 | char *kaddr; |
| 426 | |
| 427 | /* zero the tail end of the last page, we might be |
| 428 | * sending it down to disk |
| 429 | */ |
| 430 | if (offset) { |
Cong Wang | 7ac687d | 2011-11-25 23:14:28 +0800 | [diff] [blame] | 431 | kaddr = kmap_atomic(page); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 432 | memset(kaddr + offset, 0, |
| 433 | PAGE_CACHE_SIZE - offset); |
Cong Wang | 7ac687d | 2011-11-25 23:14:28 +0800 | [diff] [blame] | 434 | kunmap_atomic(kaddr); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 435 | } |
| 436 | will_compress = 1; |
| 437 | } |
| 438 | } |
Li Zefan | 560f7d7 | 2011-09-08 10:22:01 +0800 | [diff] [blame] | 439 | cont: |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 440 | if (start == 0) { |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 441 | trans = btrfs_join_transaction(root); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 442 | if (IS_ERR(trans)) { |
| 443 | ret = PTR_ERR(trans); |
| 444 | trans = NULL; |
| 445 | goto cleanup_and_out; |
| 446 | } |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 447 | trans->block_rsv = &root->fs_info->delalloc_block_rsv; |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 448 | |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 449 | /* lets try to make an inline extent */ |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 450 | if (ret || total_in < (actual_end - start)) { |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 451 | /* we didn't compress the entire range, try |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 452 | * to make an uncompressed inline extent. |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 453 | */ |
| 454 | ret = cow_file_range_inline(trans, root, inode, |
Li Zefan | fe3f566 | 2011-03-28 08:30:38 +0000 | [diff] [blame] | 455 | start, end, 0, 0, NULL); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 456 | } else { |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 457 | /* try making a compressed inline extent */ |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 458 | ret = cow_file_range_inline(trans, root, inode, |
| 459 | start, end, |
Li Zefan | fe3f566 | 2011-03-28 08:30:38 +0000 | [diff] [blame] | 460 | total_compressed, |
| 461 | compress_type, pages); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 462 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 463 | if (ret <= 0) { |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 464 | /* |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 465 | * inline extent creation worked or returned error, |
| 466 | * we don't need to create any more async work items. |
| 467 | * Unlock and free up our temp pages. |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 468 | */ |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 469 | extent_clear_unlock_delalloc(inode, |
Chris Mason | a791e35 | 2009-10-08 11:27:10 -0400 | [diff] [blame] | 470 | &BTRFS_I(inode)->io_tree, |
| 471 | start, end, NULL, |
| 472 | EXTENT_CLEAR_UNLOCK_PAGE | EXTENT_CLEAR_DIRTY | |
Chris Mason | a3429ab | 2009-10-08 12:30:20 -0400 | [diff] [blame] | 473 | EXTENT_CLEAR_DELALLOC | |
Chris Mason | a791e35 | 2009-10-08 11:27:10 -0400 | [diff] [blame] | 474 | EXTENT_SET_WRITEBACK | EXTENT_END_WRITEBACK); |
Yan, Zheng | c216775 | 2009-11-12 09:34:21 +0000 | [diff] [blame] | 475 | |
| 476 | btrfs_end_transaction(trans, root); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 477 | goto free_pages_out; |
| 478 | } |
Yan, Zheng | c216775 | 2009-11-12 09:34:21 +0000 | [diff] [blame] | 479 | btrfs_end_transaction(trans, root); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 480 | } |
| 481 | |
| 482 | if (will_compress) { |
| 483 | /* |
| 484 | * we aren't doing an inline extent round the compressed size |
| 485 | * up to a block size boundary so the allocator does sane |
| 486 | * things |
| 487 | */ |
| 488 | total_compressed = (total_compressed + blocksize - 1) & |
| 489 | ~(blocksize - 1); |
| 490 | |
| 491 | /* |
| 492 | * one last check to make sure the compression is really a |
| 493 | * win, compare the page count read with the blocks on disk |
| 494 | */ |
| 495 | total_in = (total_in + PAGE_CACHE_SIZE - 1) & |
| 496 | ~(PAGE_CACHE_SIZE - 1); |
| 497 | if (total_compressed >= total_in) { |
| 498 | will_compress = 0; |
| 499 | } else { |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 500 | num_bytes = total_in; |
| 501 | } |
| 502 | } |
| 503 | if (!will_compress && pages) { |
| 504 | /* |
| 505 | * the compression code ran but failed to make things smaller, |
| 506 | * free any pages it allocated and our page pointer array |
| 507 | */ |
| 508 | for (i = 0; i < nr_pages_ret; i++) { |
Chris Mason | 70b99e6 | 2008-10-31 12:46:39 -0400 | [diff] [blame] | 509 | WARN_ON(pages[i]->mapping); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 510 | page_cache_release(pages[i]); |
| 511 | } |
| 512 | kfree(pages); |
| 513 | pages = NULL; |
| 514 | total_compressed = 0; |
| 515 | nr_pages_ret = 0; |
| 516 | |
| 517 | /* flag the file so we don't compress in the future */ |
Chris Mason | 1e701a3 | 2010-03-11 09:42:04 -0500 | [diff] [blame] | 518 | if (!btrfs_test_opt(root, FORCE_COMPRESS) && |
| 519 | !(BTRFS_I(inode)->force_compress)) { |
Chris Mason | a555f81 | 2010-01-28 16:18:15 -0500 | [diff] [blame] | 520 | BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS; |
Chris Mason | 1e701a3 | 2010-03-11 09:42:04 -0500 | [diff] [blame] | 521 | } |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 522 | } |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 523 | if (will_compress) { |
| 524 | *num_added += 1; |
| 525 | |
| 526 | /* the async work queues will take care of doing actual |
| 527 | * allocation on disk for these compressed pages, |
| 528 | * and will submit them to the elevator. |
| 529 | */ |
| 530 | add_async_extent(async_cow, start, num_bytes, |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 531 | total_compressed, pages, nr_pages_ret, |
| 532 | compress_type); |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 533 | |
Yan, Zheng | 24ae636 | 2010-12-06 07:02:36 +0000 | [diff] [blame] | 534 | if (start + num_bytes < end) { |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 535 | start += num_bytes; |
| 536 | pages = NULL; |
| 537 | cond_resched(); |
| 538 | goto again; |
| 539 | } |
| 540 | } else { |
Chris Mason | f03d9301f | 2009-02-04 09:31:06 -0500 | [diff] [blame] | 541 | cleanup_and_bail_uncompressed: |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 542 | /* |
| 543 | * No compression, but we still need to write the pages in |
| 544 | * the file we've been given so far. redirty the locked |
| 545 | * page if it corresponds to our extent and set things up |
| 546 | * for the async work queue to run cow_file_range to do |
| 547 | * the normal delalloc dance |
| 548 | */ |
| 549 | if (page_offset(locked_page) >= start && |
| 550 | page_offset(locked_page) <= end) { |
| 551 | __set_page_dirty_nobuffers(locked_page); |
| 552 | /* unlocked later on in the async handlers */ |
| 553 | } |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 554 | add_async_extent(async_cow, start, end - start + 1, |
| 555 | 0, NULL, 0, BTRFS_COMPRESS_NONE); |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 556 | *num_added += 1; |
| 557 | } |
| 558 | |
| 559 | out: |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 560 | return ret; |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 561 | |
| 562 | free_pages_out: |
| 563 | for (i = 0; i < nr_pages_ret; i++) { |
| 564 | WARN_ON(pages[i]->mapping); |
| 565 | page_cache_release(pages[i]); |
| 566 | } |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 567 | kfree(pages); |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 568 | |
| 569 | goto out; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 570 | |
| 571 | cleanup_and_out: |
| 572 | extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree, |
| 573 | start, end, NULL, |
| 574 | EXTENT_CLEAR_UNLOCK_PAGE | |
| 575 | EXTENT_CLEAR_DIRTY | |
| 576 | EXTENT_CLEAR_DELALLOC | |
| 577 | EXTENT_SET_WRITEBACK | |
| 578 | EXTENT_END_WRITEBACK); |
| 579 | if (!trans || IS_ERR(trans)) |
| 580 | btrfs_error(root->fs_info, ret, "Failed to join transaction"); |
| 581 | else |
| 582 | btrfs_abort_transaction(trans, root, ret); |
| 583 | goto free_pages_out; |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 584 | } |
| 585 | |
| 586 | /* |
| 587 | * phase two of compressed writeback. This is the ordered portion |
| 588 | * of the code, which only gets called in the order the work was |
| 589 | * queued. We walk all the async extents created by compress_file_range |
| 590 | * and send them down to the disk. |
| 591 | */ |
| 592 | static noinline int submit_compressed_extents(struct inode *inode, |
| 593 | struct async_cow *async_cow) |
| 594 | { |
| 595 | struct async_extent *async_extent; |
| 596 | u64 alloc_hint = 0; |
| 597 | struct btrfs_trans_handle *trans; |
| 598 | struct btrfs_key ins; |
| 599 | struct extent_map *em; |
| 600 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 601 | struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree; |
| 602 | struct extent_io_tree *io_tree; |
Josef Bacik | f5a84ee3 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 603 | int ret = 0; |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 604 | |
| 605 | if (list_empty(&async_cow->extents)) |
| 606 | return 0; |
| 607 | |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 608 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 609 | while (!list_empty(&async_cow->extents)) { |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 610 | async_extent = list_entry(async_cow->extents.next, |
| 611 | struct async_extent, list); |
| 612 | list_del(&async_extent->list); |
| 613 | |
| 614 | io_tree = &BTRFS_I(inode)->io_tree; |
| 615 | |
Josef Bacik | f5a84ee3 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 616 | retry: |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 617 | /* did the compression code fall back to uncompressed IO? */ |
| 618 | if (!async_extent->pages) { |
| 619 | int page_started = 0; |
| 620 | unsigned long nr_written = 0; |
| 621 | |
| 622 | lock_extent(io_tree, async_extent->start, |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 623 | async_extent->start + |
Jeff Mahoney | d008237 | 2012-03-01 14:57:19 +0100 | [diff] [blame] | 624 | async_extent->ram_size - 1); |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 625 | |
| 626 | /* allocate blocks */ |
Josef Bacik | f5a84ee3 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 627 | ret = cow_file_range(inode, async_cow->locked_page, |
| 628 | async_extent->start, |
| 629 | async_extent->start + |
| 630 | async_extent->ram_size - 1, |
| 631 | &page_started, &nr_written, 0); |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 632 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 633 | /* JDM XXX */ |
| 634 | |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 635 | /* |
| 636 | * if page_started, cow_file_range inserted an |
| 637 | * inline extent and took care of all the unlocking |
| 638 | * and IO for us. Otherwise, we need to submit |
| 639 | * all those pages down to the drive. |
| 640 | */ |
Josef Bacik | f5a84ee3 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 641 | if (!page_started && !ret) |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 642 | extent_write_locked_range(io_tree, |
| 643 | inode, async_extent->start, |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 644 | async_extent->start + |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 645 | async_extent->ram_size - 1, |
| 646 | btrfs_get_extent, |
| 647 | WB_SYNC_ALL); |
| 648 | kfree(async_extent); |
| 649 | cond_resched(); |
| 650 | continue; |
| 651 | } |
| 652 | |
| 653 | lock_extent(io_tree, async_extent->start, |
Jeff Mahoney | d008237 | 2012-03-01 14:57:19 +0100 | [diff] [blame] | 654 | async_extent->start + async_extent->ram_size - 1); |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 655 | |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 656 | trans = btrfs_join_transaction(root); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 657 | if (IS_ERR(trans)) { |
| 658 | ret = PTR_ERR(trans); |
| 659 | } else { |
| 660 | trans->block_rsv = &root->fs_info->delalloc_block_rsv; |
| 661 | ret = btrfs_reserve_extent(trans, root, |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 662 | async_extent->compressed_size, |
| 663 | async_extent->compressed_size, |
Josef Bacik | 81c9ad2 | 2012-01-18 10:56:06 -0500 | [diff] [blame] | 664 | 0, alloc_hint, &ins, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 665 | if (ret) |
| 666 | btrfs_abort_transaction(trans, root, ret); |
| 667 | btrfs_end_transaction(trans, root); |
| 668 | } |
Yan, Zheng | c216775 | 2009-11-12 09:34:21 +0000 | [diff] [blame] | 669 | |
Josef Bacik | f5a84ee3 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 670 | if (ret) { |
| 671 | int i; |
| 672 | for (i = 0; i < async_extent->nr_pages; i++) { |
| 673 | WARN_ON(async_extent->pages[i]->mapping); |
| 674 | page_cache_release(async_extent->pages[i]); |
| 675 | } |
| 676 | kfree(async_extent->pages); |
| 677 | async_extent->nr_pages = 0; |
| 678 | async_extent->pages = NULL; |
| 679 | unlock_extent(io_tree, async_extent->start, |
| 680 | async_extent->start + |
Jeff Mahoney | d008237 | 2012-03-01 14:57:19 +0100 | [diff] [blame] | 681 | async_extent->ram_size - 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 682 | if (ret == -ENOSPC) |
| 683 | goto retry; |
| 684 | goto out_free; /* JDM: Requeue? */ |
Josef Bacik | f5a84ee3 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 685 | } |
| 686 | |
Yan, Zheng | c216775 | 2009-11-12 09:34:21 +0000 | [diff] [blame] | 687 | /* |
| 688 | * here we're doing allocation and writeback of the |
| 689 | * compressed pages |
| 690 | */ |
| 691 | btrfs_drop_extent_cache(inode, async_extent->start, |
| 692 | async_extent->start + |
| 693 | async_extent->ram_size - 1, 0); |
| 694 | |
David Sterba | 172ddd6 | 2011-04-21 00:48:27 +0200 | [diff] [blame] | 695 | em = alloc_extent_map(); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 696 | BUG_ON(!em); /* -ENOMEM */ |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 697 | em->start = async_extent->start; |
| 698 | em->len = async_extent->ram_size; |
Chris Mason | 445a694 | 2008-11-10 11:53:33 -0500 | [diff] [blame] | 699 | em->orig_start = em->start; |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 700 | |
| 701 | em->block_start = ins.objectid; |
| 702 | em->block_len = ins.offset; |
| 703 | em->bdev = root->fs_info->fs_devices->latest_bdev; |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 704 | em->compress_type = async_extent->compress_type; |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 705 | set_bit(EXTENT_FLAG_PINNED, &em->flags); |
| 706 | set_bit(EXTENT_FLAG_COMPRESSED, &em->flags); |
| 707 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 708 | while (1) { |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 709 | write_lock(&em_tree->lock); |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 710 | ret = add_extent_mapping(em_tree, em); |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 711 | write_unlock(&em_tree->lock); |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 712 | if (ret != -EEXIST) { |
| 713 | free_extent_map(em); |
| 714 | break; |
| 715 | } |
| 716 | btrfs_drop_extent_cache(inode, async_extent->start, |
| 717 | async_extent->start + |
| 718 | async_extent->ram_size - 1, 0); |
| 719 | } |
| 720 | |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 721 | ret = btrfs_add_ordered_extent_compress(inode, |
| 722 | async_extent->start, |
| 723 | ins.objectid, |
| 724 | async_extent->ram_size, |
| 725 | ins.offset, |
| 726 | BTRFS_ORDERED_COMPRESSED, |
| 727 | async_extent->compress_type); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 728 | BUG_ON(ret); /* -ENOMEM */ |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 729 | |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 730 | /* |
| 731 | * clear dirty, set writeback and unlock the pages. |
| 732 | */ |
| 733 | extent_clear_unlock_delalloc(inode, |
Chris Mason | a791e35 | 2009-10-08 11:27:10 -0400 | [diff] [blame] | 734 | &BTRFS_I(inode)->io_tree, |
| 735 | async_extent->start, |
| 736 | async_extent->start + |
| 737 | async_extent->ram_size - 1, |
| 738 | NULL, EXTENT_CLEAR_UNLOCK_PAGE | |
| 739 | EXTENT_CLEAR_UNLOCK | |
Chris Mason | a3429ab | 2009-10-08 12:30:20 -0400 | [diff] [blame] | 740 | EXTENT_CLEAR_DELALLOC | |
Chris Mason | a791e35 | 2009-10-08 11:27:10 -0400 | [diff] [blame] | 741 | EXTENT_CLEAR_DIRTY | EXTENT_SET_WRITEBACK); |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 742 | |
| 743 | ret = btrfs_submit_compressed_write(inode, |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 744 | async_extent->start, |
| 745 | async_extent->ram_size, |
| 746 | ins.objectid, |
| 747 | ins.offset, async_extent->pages, |
| 748 | async_extent->nr_pages); |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 749 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 750 | BUG_ON(ret); /* -ENOMEM */ |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 751 | alloc_hint = ins.objectid + ins.offset; |
| 752 | kfree(async_extent); |
| 753 | cond_resched(); |
| 754 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 755 | ret = 0; |
| 756 | out: |
| 757 | return ret; |
| 758 | out_free: |
| 759 | kfree(async_extent); |
| 760 | goto out; |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 761 | } |
| 762 | |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 763 | static u64 get_extent_allocation_hint(struct inode *inode, u64 start, |
| 764 | u64 num_bytes) |
| 765 | { |
| 766 | struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree; |
| 767 | struct extent_map *em; |
| 768 | u64 alloc_hint = 0; |
| 769 | |
| 770 | read_lock(&em_tree->lock); |
| 771 | em = search_extent_mapping(em_tree, start, num_bytes); |
| 772 | if (em) { |
| 773 | /* |
| 774 | * if block start isn't an actual block number then find the |
| 775 | * first block in this inode and use that as a hint. If that |
| 776 | * block is also bogus then just don't worry about it. |
| 777 | */ |
| 778 | if (em->block_start >= EXTENT_MAP_LAST_BYTE) { |
| 779 | free_extent_map(em); |
| 780 | em = search_extent_mapping(em_tree, 0, 0); |
| 781 | if (em && em->block_start < EXTENT_MAP_LAST_BYTE) |
| 782 | alloc_hint = em->block_start; |
| 783 | if (em) |
| 784 | free_extent_map(em); |
| 785 | } else { |
| 786 | alloc_hint = em->block_start; |
| 787 | free_extent_map(em); |
| 788 | } |
| 789 | } |
| 790 | read_unlock(&em_tree->lock); |
| 791 | |
| 792 | return alloc_hint; |
| 793 | } |
| 794 | |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 795 | /* |
| 796 | * when extent_io.c finds a delayed allocation range in the file, |
| 797 | * the call backs end up in this code. The basic idea is to |
| 798 | * allocate extents on disk for the range, and create ordered data structs |
| 799 | * in ram to track those extents. |
| 800 | * |
| 801 | * locked_page is the page that writepage had locked already. We use |
| 802 | * it to make sure we don't do extra locks or unlocks. |
| 803 | * |
| 804 | * *page_started is set to one if we unlock locked_page and do everything |
| 805 | * required to start IO on it. It may be clean and already done with |
| 806 | * IO when we return. |
| 807 | */ |
| 808 | static noinline int cow_file_range(struct inode *inode, |
| 809 | struct page *locked_page, |
| 810 | u64 start, u64 end, int *page_started, |
| 811 | unsigned long *nr_written, |
| 812 | int unlock) |
| 813 | { |
| 814 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 815 | struct btrfs_trans_handle *trans; |
| 816 | u64 alloc_hint = 0; |
| 817 | u64 num_bytes; |
| 818 | unsigned long ram_size; |
| 819 | u64 disk_num_bytes; |
| 820 | u64 cur_alloc_size; |
| 821 | u64 blocksize = root->sectorsize; |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 822 | struct btrfs_key ins; |
| 823 | struct extent_map *em; |
| 824 | struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree; |
| 825 | int ret = 0; |
| 826 | |
Liu Bo | 83eea1f | 2012-07-10 05:28:39 -0600 | [diff] [blame] | 827 | BUG_ON(btrfs_is_free_space_inode(inode)); |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 828 | trans = btrfs_join_transaction(root); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 829 | if (IS_ERR(trans)) { |
| 830 | extent_clear_unlock_delalloc(inode, |
| 831 | &BTRFS_I(inode)->io_tree, |
Josef Bacik | beb42dd | 2012-05-30 15:35:17 -0400 | [diff] [blame] | 832 | start, end, locked_page, |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 833 | EXTENT_CLEAR_UNLOCK_PAGE | |
| 834 | EXTENT_CLEAR_UNLOCK | |
| 835 | EXTENT_CLEAR_DELALLOC | |
| 836 | EXTENT_CLEAR_DIRTY | |
| 837 | EXTENT_SET_WRITEBACK | |
| 838 | EXTENT_END_WRITEBACK); |
| 839 | return PTR_ERR(trans); |
| 840 | } |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 841 | trans->block_rsv = &root->fs_info->delalloc_block_rsv; |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 842 | |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 843 | num_bytes = (end - start + blocksize) & ~(blocksize - 1); |
| 844 | num_bytes = max(blocksize, num_bytes); |
| 845 | disk_num_bytes = num_bytes; |
| 846 | ret = 0; |
| 847 | |
Chris Mason | 4cb5300 | 2011-05-24 15:35:30 -0400 | [diff] [blame] | 848 | /* if this is a small write inside eof, kick off defrag */ |
Liu Bo | 4cb13e5 | 2012-03-29 09:57:45 -0400 | [diff] [blame] | 849 | if (num_bytes < 64 * 1024 && |
| 850 | (start > 0 || end + 1 < BTRFS_I(inode)->disk_i_size)) |
Chris Mason | 4cb5300 | 2011-05-24 15:35:30 -0400 | [diff] [blame] | 851 | btrfs_add_inode_defrag(trans, inode); |
| 852 | |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 853 | if (start == 0) { |
| 854 | /* lets try to make an inline extent */ |
| 855 | ret = cow_file_range_inline(trans, root, inode, |
Li Zefan | fe3f566 | 2011-03-28 08:30:38 +0000 | [diff] [blame] | 856 | start, end, 0, 0, NULL); |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 857 | if (ret == 0) { |
| 858 | extent_clear_unlock_delalloc(inode, |
Chris Mason | a791e35 | 2009-10-08 11:27:10 -0400 | [diff] [blame] | 859 | &BTRFS_I(inode)->io_tree, |
| 860 | start, end, NULL, |
| 861 | EXTENT_CLEAR_UNLOCK_PAGE | |
| 862 | EXTENT_CLEAR_UNLOCK | |
| 863 | EXTENT_CLEAR_DELALLOC | |
| 864 | EXTENT_CLEAR_DIRTY | |
| 865 | EXTENT_SET_WRITEBACK | |
| 866 | EXTENT_END_WRITEBACK); |
Yan, Zheng | c216775 | 2009-11-12 09:34:21 +0000 | [diff] [blame] | 867 | |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 868 | *nr_written = *nr_written + |
| 869 | (end - start + PAGE_CACHE_SIZE) / PAGE_CACHE_SIZE; |
| 870 | *page_started = 1; |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 871 | goto out; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 872 | } else if (ret < 0) { |
| 873 | btrfs_abort_transaction(trans, root, ret); |
| 874 | goto out_unlock; |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 875 | } |
| 876 | } |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 877 | |
| 878 | BUG_ON(disk_num_bytes > |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 879 | btrfs_super_total_bytes(root->fs_info->super_copy)); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 880 | |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 881 | alloc_hint = get_extent_allocation_hint(inode, start, num_bytes); |
Zheng Yan | 5b21f2e | 2008-09-26 10:05:38 -0400 | [diff] [blame] | 882 | btrfs_drop_extent_cache(inode, start, start + num_bytes - 1, 0); |
Chris Mason | 3b95151 | 2008-04-17 11:29:12 -0400 | [diff] [blame] | 883 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 884 | while (disk_num_bytes > 0) { |
Chris Mason | a791e35 | 2009-10-08 11:27:10 -0400 | [diff] [blame] | 885 | unsigned long op; |
| 886 | |
Josef Bacik | 287a0ab | 2010-03-19 18:07:23 +0000 | [diff] [blame] | 887 | cur_alloc_size = disk_num_bytes; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 888 | ret = btrfs_reserve_extent(trans, root, cur_alloc_size, |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 889 | root->sectorsize, 0, alloc_hint, |
Josef Bacik | 81c9ad2 | 2012-01-18 10:56:06 -0500 | [diff] [blame] | 890 | &ins, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 891 | if (ret < 0) { |
| 892 | btrfs_abort_transaction(trans, root, ret); |
| 893 | goto out_unlock; |
| 894 | } |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 895 | |
David Sterba | 172ddd6 | 2011-04-21 00:48:27 +0200 | [diff] [blame] | 896 | em = alloc_extent_map(); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 897 | BUG_ON(!em); /* -ENOMEM */ |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 898 | em->start = start; |
Chris Mason | 445a694 | 2008-11-10 11:53:33 -0500 | [diff] [blame] | 899 | em->orig_start = em->start; |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 900 | ram_size = ins.offset; |
| 901 | em->len = ins.offset; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 902 | |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 903 | em->block_start = ins.objectid; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 904 | em->block_len = ins.offset; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 905 | em->bdev = root->fs_info->fs_devices->latest_bdev; |
Chris Mason | 7f3c74f | 2008-07-18 12:01:11 -0400 | [diff] [blame] | 906 | set_bit(EXTENT_FLAG_PINNED, &em->flags); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 907 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 908 | while (1) { |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 909 | write_lock(&em_tree->lock); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 910 | ret = add_extent_mapping(em_tree, em); |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 911 | write_unlock(&em_tree->lock); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 912 | if (ret != -EEXIST) { |
| 913 | free_extent_map(em); |
| 914 | break; |
| 915 | } |
| 916 | btrfs_drop_extent_cache(inode, start, |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 917 | start + ram_size - 1, 0); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 918 | } |
| 919 | |
Chris Mason | 98d20f6 | 2008-04-14 09:46:10 -0400 | [diff] [blame] | 920 | cur_alloc_size = ins.offset; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 921 | ret = btrfs_add_ordered_extent(inode, start, ins.objectid, |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 922 | ram_size, cur_alloc_size, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 923 | BUG_ON(ret); /* -ENOMEM */ |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 924 | |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 925 | if (root->root_key.objectid == |
| 926 | BTRFS_DATA_RELOC_TREE_OBJECTID) { |
| 927 | ret = btrfs_reloc_clone_csums(inode, start, |
| 928 | cur_alloc_size); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 929 | if (ret) { |
| 930 | btrfs_abort_transaction(trans, root, ret); |
| 931 | goto out_unlock; |
| 932 | } |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 933 | } |
| 934 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 935 | if (disk_num_bytes < cur_alloc_size) |
Chris Mason | 3b95151 | 2008-04-17 11:29:12 -0400 | [diff] [blame] | 936 | break; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 937 | |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 938 | /* we're not doing compressed IO, don't unlock the first |
| 939 | * page (which the caller expects to stay locked), don't |
| 940 | * clear any dirty bits and don't set any writeback bits |
Chris Mason | 8b62b72 | 2009-09-02 16:53:46 -0400 | [diff] [blame] | 941 | * |
| 942 | * Do set the Private2 bit so we know this page was properly |
| 943 | * setup for writepage |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 944 | */ |
Chris Mason | a791e35 | 2009-10-08 11:27:10 -0400 | [diff] [blame] | 945 | op = unlock ? EXTENT_CLEAR_UNLOCK_PAGE : 0; |
| 946 | op |= EXTENT_CLEAR_UNLOCK | EXTENT_CLEAR_DELALLOC | |
| 947 | EXTENT_SET_PRIVATE2; |
| 948 | |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 949 | extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree, |
| 950 | start, start + ram_size - 1, |
Chris Mason | a791e35 | 2009-10-08 11:27:10 -0400 | [diff] [blame] | 951 | locked_page, op); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 952 | disk_num_bytes -= cur_alloc_size; |
Chris Mason | c59f895 | 2007-12-17 20:14:04 -0500 | [diff] [blame] | 953 | num_bytes -= cur_alloc_size; |
| 954 | alloc_hint = ins.objectid + ins.offset; |
| 955 | start += cur_alloc_size; |
Chris Mason | b888db2b | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 956 | } |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 957 | ret = 0; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 958 | out: |
Chris Mason | b888db2b | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 959 | btrfs_end_transaction(trans, root); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 960 | |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 961 | return ret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 962 | out_unlock: |
| 963 | extent_clear_unlock_delalloc(inode, |
| 964 | &BTRFS_I(inode)->io_tree, |
Josef Bacik | beb42dd | 2012-05-30 15:35:17 -0400 | [diff] [blame] | 965 | start, end, locked_page, |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 966 | EXTENT_CLEAR_UNLOCK_PAGE | |
| 967 | EXTENT_CLEAR_UNLOCK | |
| 968 | EXTENT_CLEAR_DELALLOC | |
| 969 | EXTENT_CLEAR_DIRTY | |
| 970 | EXTENT_SET_WRITEBACK | |
| 971 | EXTENT_END_WRITEBACK); |
| 972 | |
| 973 | goto out; |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 974 | } |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 975 | |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 976 | /* |
| 977 | * work queue call back to started compression on a file and pages |
| 978 | */ |
| 979 | static noinline void async_cow_start(struct btrfs_work *work) |
| 980 | { |
| 981 | struct async_cow *async_cow; |
| 982 | int num_added = 0; |
| 983 | async_cow = container_of(work, struct async_cow, work); |
| 984 | |
| 985 | compress_file_range(async_cow->inode, async_cow->locked_page, |
| 986 | async_cow->start, async_cow->end, async_cow, |
| 987 | &num_added); |
Josef Bacik | 8180ef8 | 2012-06-08 15:16:12 -0400 | [diff] [blame] | 988 | if (num_added == 0) { |
Josef Bacik | cb77fcd | 2012-06-15 12:19:48 -0600 | [diff] [blame] | 989 | btrfs_add_delayed_iput(async_cow->inode); |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 990 | async_cow->inode = NULL; |
Josef Bacik | 8180ef8 | 2012-06-08 15:16:12 -0400 | [diff] [blame] | 991 | } |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 992 | } |
| 993 | |
| 994 | /* |
| 995 | * work queue call back to submit previously compressed pages |
| 996 | */ |
| 997 | static noinline void async_cow_submit(struct btrfs_work *work) |
| 998 | { |
| 999 | struct async_cow *async_cow; |
| 1000 | struct btrfs_root *root; |
| 1001 | unsigned long nr_pages; |
| 1002 | |
| 1003 | async_cow = container_of(work, struct async_cow, work); |
| 1004 | |
| 1005 | root = async_cow->root; |
| 1006 | nr_pages = (async_cow->end - async_cow->start + PAGE_CACHE_SIZE) >> |
| 1007 | PAGE_CACHE_SHIFT; |
| 1008 | |
Josef Bacik | 66657b3 | 2012-08-01 15:36:24 -0400 | [diff] [blame] | 1009 | if (atomic_sub_return(nr_pages, &root->fs_info->async_delalloc_pages) < |
Liu Bo | 287082b | 2012-06-28 04:02:24 -0600 | [diff] [blame] | 1010 | 5 * 1024 * 1024 && |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 1011 | waitqueue_active(&root->fs_info->async_submit_wait)) |
| 1012 | wake_up(&root->fs_info->async_submit_wait); |
| 1013 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1014 | if (async_cow->inode) |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 1015 | submit_compressed_extents(async_cow->inode, async_cow); |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 1016 | } |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 1017 | |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 1018 | static noinline void async_cow_free(struct btrfs_work *work) |
| 1019 | { |
| 1020 | struct async_cow *async_cow; |
| 1021 | async_cow = container_of(work, struct async_cow, work); |
Josef Bacik | 8180ef8 | 2012-06-08 15:16:12 -0400 | [diff] [blame] | 1022 | if (async_cow->inode) |
Josef Bacik | cb77fcd | 2012-06-15 12:19:48 -0600 | [diff] [blame] | 1023 | btrfs_add_delayed_iput(async_cow->inode); |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 1024 | kfree(async_cow); |
| 1025 | } |
| 1026 | |
| 1027 | static int cow_file_range_async(struct inode *inode, struct page *locked_page, |
| 1028 | u64 start, u64 end, int *page_started, |
| 1029 | unsigned long *nr_written) |
| 1030 | { |
| 1031 | struct async_cow *async_cow; |
| 1032 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 1033 | unsigned long nr_pages; |
| 1034 | u64 cur_end; |
Liu Bo | 287082b | 2012-06-28 04:02:24 -0600 | [diff] [blame] | 1035 | int limit = 10 * 1024 * 1024; |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 1036 | |
Chris Mason | a3429ab | 2009-10-08 12:30:20 -0400 | [diff] [blame] | 1037 | clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, EXTENT_LOCKED, |
| 1038 | 1, 0, NULL, GFP_NOFS); |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1039 | while (start < end) { |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 1040 | async_cow = kmalloc(sizeof(*async_cow), GFP_NOFS); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1041 | BUG_ON(!async_cow); /* -ENOMEM */ |
Josef Bacik | 8180ef8 | 2012-06-08 15:16:12 -0400 | [diff] [blame] | 1042 | async_cow->inode = igrab(inode); |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 1043 | async_cow->root = root; |
| 1044 | async_cow->locked_page = locked_page; |
| 1045 | async_cow->start = start; |
| 1046 | |
Christoph Hellwig | 6cbff00 | 2009-04-17 10:37:41 +0200 | [diff] [blame] | 1047 | if (BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS) |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 1048 | cur_end = end; |
| 1049 | else |
| 1050 | cur_end = min(end, start + 512 * 1024 - 1); |
| 1051 | |
| 1052 | async_cow->end = cur_end; |
| 1053 | INIT_LIST_HEAD(&async_cow->extents); |
| 1054 | |
| 1055 | async_cow->work.func = async_cow_start; |
| 1056 | async_cow->work.ordered_func = async_cow_submit; |
| 1057 | async_cow->work.ordered_free = async_cow_free; |
| 1058 | async_cow->work.flags = 0; |
| 1059 | |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 1060 | nr_pages = (cur_end - start + PAGE_CACHE_SIZE) >> |
| 1061 | PAGE_CACHE_SHIFT; |
| 1062 | atomic_add(nr_pages, &root->fs_info->async_delalloc_pages); |
| 1063 | |
| 1064 | btrfs_queue_worker(&root->fs_info->delalloc_workers, |
| 1065 | &async_cow->work); |
| 1066 | |
| 1067 | if (atomic_read(&root->fs_info->async_delalloc_pages) > limit) { |
| 1068 | wait_event(root->fs_info->async_submit_wait, |
| 1069 | (atomic_read(&root->fs_info->async_delalloc_pages) < |
| 1070 | limit)); |
| 1071 | } |
| 1072 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1073 | while (atomic_read(&root->fs_info->async_submit_draining) && |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 1074 | atomic_read(&root->fs_info->async_delalloc_pages)) { |
| 1075 | wait_event(root->fs_info->async_submit_wait, |
| 1076 | (atomic_read(&root->fs_info->async_delalloc_pages) == |
| 1077 | 0)); |
| 1078 | } |
| 1079 | |
| 1080 | *nr_written += nr_pages; |
| 1081 | start = cur_end + 1; |
| 1082 | } |
| 1083 | *page_started = 1; |
| 1084 | return 0; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 1085 | } |
| 1086 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1087 | static noinline int csum_exist_in_range(struct btrfs_root *root, |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 1088 | u64 bytenr, u64 num_bytes) |
| 1089 | { |
| 1090 | int ret; |
| 1091 | struct btrfs_ordered_sum *sums; |
| 1092 | LIST_HEAD(list); |
| 1093 | |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 1094 | ret = btrfs_lookup_csums_range(root->fs_info->csum_root, bytenr, |
Arne Jansen | a2de733 | 2011-03-08 14:14:00 +0100 | [diff] [blame] | 1095 | bytenr + num_bytes - 1, &list, 0); |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 1096 | if (ret == 0 && list_empty(&list)) |
| 1097 | return 0; |
| 1098 | |
| 1099 | while (!list_empty(&list)) { |
| 1100 | sums = list_entry(list.next, struct btrfs_ordered_sum, list); |
| 1101 | list_del(&sums->list); |
| 1102 | kfree(sums); |
| 1103 | } |
| 1104 | return 1; |
| 1105 | } |
| 1106 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 1107 | /* |
| 1108 | * when nowcow writeback call back. This checks for snapshots or COW copies |
| 1109 | * of the extents that exist in the file, and COWs the file as required. |
| 1110 | * |
| 1111 | * If no cow copies or snapshots exist, we write directly to the existing |
| 1112 | * blocks on disk |
| 1113 | */ |
Chris Mason | 7f366cf | 2009-03-12 20:12:45 -0400 | [diff] [blame] | 1114 | static noinline int run_delalloc_nocow(struct inode *inode, |
| 1115 | struct page *locked_page, |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 1116 | u64 start, u64 end, int *page_started, int force, |
| 1117 | unsigned long *nr_written) |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 1118 | { |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 1119 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Yan Zheng | 7ea394f | 2008-08-05 13:05:02 -0400 | [diff] [blame] | 1120 | struct btrfs_trans_handle *trans; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 1121 | struct extent_buffer *leaf; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 1122 | struct btrfs_path *path; |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1123 | struct btrfs_file_extent_item *fi; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 1124 | struct btrfs_key found_key; |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1125 | u64 cow_start; |
| 1126 | u64 cur_offset; |
| 1127 | u64 extent_end; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1128 | u64 extent_offset; |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1129 | u64 disk_bytenr; |
| 1130 | u64 num_bytes; |
| 1131 | int extent_type; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1132 | int ret, err; |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1133 | int type; |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1134 | int nocow; |
| 1135 | int check_prev = 1; |
Li Zefan | 82d5902 | 2011-04-20 10:33:24 +0800 | [diff] [blame] | 1136 | bool nolock; |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 1137 | u64 ino = btrfs_ino(inode); |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 1138 | |
| 1139 | path = btrfs_alloc_path(); |
Josef Bacik | 17ca04a | 2012-05-31 15:58:55 -0400 | [diff] [blame] | 1140 | if (!path) { |
| 1141 | extent_clear_unlock_delalloc(inode, |
| 1142 | &BTRFS_I(inode)->io_tree, |
| 1143 | start, end, locked_page, |
| 1144 | EXTENT_CLEAR_UNLOCK_PAGE | |
| 1145 | EXTENT_CLEAR_UNLOCK | |
| 1146 | EXTENT_CLEAR_DELALLOC | |
| 1147 | EXTENT_CLEAR_DIRTY | |
| 1148 | EXTENT_SET_WRITEBACK | |
| 1149 | EXTENT_END_WRITEBACK); |
Mark Fasheh | d8926bb | 2011-07-13 10:38:47 -0700 | [diff] [blame] | 1150 | return -ENOMEM; |
Josef Bacik | 17ca04a | 2012-05-31 15:58:55 -0400 | [diff] [blame] | 1151 | } |
Li Zefan | 82d5902 | 2011-04-20 10:33:24 +0800 | [diff] [blame] | 1152 | |
Liu Bo | 83eea1f | 2012-07-10 05:28:39 -0600 | [diff] [blame] | 1153 | nolock = btrfs_is_free_space_inode(inode); |
Li Zefan | 82d5902 | 2011-04-20 10:33:24 +0800 | [diff] [blame] | 1154 | |
| 1155 | if (nolock) |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 1156 | trans = btrfs_join_transaction_nolock(root); |
Li Zefan | 82d5902 | 2011-04-20 10:33:24 +0800 | [diff] [blame] | 1157 | else |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 1158 | trans = btrfs_join_transaction(root); |
Chris Mason | ff5714c | 2011-05-28 07:00:39 -0400 | [diff] [blame] | 1159 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1160 | if (IS_ERR(trans)) { |
Josef Bacik | 17ca04a | 2012-05-31 15:58:55 -0400 | [diff] [blame] | 1161 | extent_clear_unlock_delalloc(inode, |
| 1162 | &BTRFS_I(inode)->io_tree, |
| 1163 | start, end, locked_page, |
| 1164 | EXTENT_CLEAR_UNLOCK_PAGE | |
| 1165 | EXTENT_CLEAR_UNLOCK | |
| 1166 | EXTENT_CLEAR_DELALLOC | |
| 1167 | EXTENT_CLEAR_DIRTY | |
| 1168 | EXTENT_SET_WRITEBACK | |
| 1169 | EXTENT_END_WRITEBACK); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1170 | btrfs_free_path(path); |
| 1171 | return PTR_ERR(trans); |
| 1172 | } |
| 1173 | |
Josef Bacik | 74b2107 | 2011-04-13 12:02:53 -0400 | [diff] [blame] | 1174 | trans->block_rsv = &root->fs_info->delalloc_block_rsv; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 1175 | |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1176 | cow_start = (u64)-1; |
| 1177 | cur_offset = start; |
| 1178 | while (1) { |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 1179 | ret = btrfs_lookup_file_extent(trans, root, path, ino, |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1180 | cur_offset, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1181 | if (ret < 0) { |
| 1182 | btrfs_abort_transaction(trans, root, ret); |
| 1183 | goto error; |
| 1184 | } |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1185 | if (ret > 0 && path->slots[0] > 0 && check_prev) { |
| 1186 | leaf = path->nodes[0]; |
| 1187 | btrfs_item_key_to_cpu(leaf, &found_key, |
| 1188 | path->slots[0] - 1); |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 1189 | if (found_key.objectid == ino && |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1190 | found_key.type == BTRFS_EXTENT_DATA_KEY) |
| 1191 | path->slots[0]--; |
| 1192 | } |
| 1193 | check_prev = 0; |
| 1194 | next_slot: |
| 1195 | leaf = path->nodes[0]; |
| 1196 | if (path->slots[0] >= btrfs_header_nritems(leaf)) { |
| 1197 | ret = btrfs_next_leaf(root, path); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1198 | if (ret < 0) { |
| 1199 | btrfs_abort_transaction(trans, root, ret); |
| 1200 | goto error; |
| 1201 | } |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1202 | if (ret > 0) |
| 1203 | break; |
| 1204 | leaf = path->nodes[0]; |
| 1205 | } |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 1206 | |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1207 | nocow = 0; |
| 1208 | disk_bytenr = 0; |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 1209 | num_bytes = 0; |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1210 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 1211 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 1212 | if (found_key.objectid > ino || |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1213 | found_key.type > BTRFS_EXTENT_DATA_KEY || |
| 1214 | found_key.offset > end) |
| 1215 | break; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 1216 | |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1217 | if (found_key.offset > cur_offset) { |
| 1218 | extent_end = found_key.offset; |
Chris Mason | e9061e2 | 2009-10-09 09:57:45 -0400 | [diff] [blame] | 1219 | extent_type = 0; |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1220 | goto out_check; |
| 1221 | } |
Chris Mason | c31f883 | 2008-01-08 15:46:31 -0500 | [diff] [blame] | 1222 | |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1223 | fi = btrfs_item_ptr(leaf, path->slots[0], |
| 1224 | struct btrfs_file_extent_item); |
| 1225 | extent_type = btrfs_file_extent_type(leaf, fi); |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 1226 | |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1227 | if (extent_type == BTRFS_FILE_EXTENT_REG || |
| 1228 | extent_type == BTRFS_FILE_EXTENT_PREALLOC) { |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1229 | disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1230 | extent_offset = btrfs_file_extent_offset(leaf, fi); |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1231 | extent_end = found_key.offset + |
| 1232 | btrfs_file_extent_num_bytes(leaf, fi); |
| 1233 | if (extent_end <= start) { |
| 1234 | path->slots[0]++; |
| 1235 | goto next_slot; |
| 1236 | } |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 1237 | if (disk_bytenr == 0) |
| 1238 | goto out_check; |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1239 | if (btrfs_file_extent_compression(leaf, fi) || |
| 1240 | btrfs_file_extent_encryption(leaf, fi) || |
| 1241 | btrfs_file_extent_other_encoding(leaf, fi)) |
| 1242 | goto out_check; |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1243 | if (extent_type == BTRFS_FILE_EXTENT_REG && !force) |
| 1244 | goto out_check; |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 1245 | if (btrfs_extent_readonly(root, disk_bytenr)) |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1246 | goto out_check; |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 1247 | if (btrfs_cross_ref_exist(trans, root, ino, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1248 | found_key.offset - |
| 1249 | extent_offset, disk_bytenr)) |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 1250 | goto out_check; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1251 | disk_bytenr += extent_offset; |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 1252 | disk_bytenr += cur_offset - found_key.offset; |
| 1253 | num_bytes = min(end + 1, extent_end) - cur_offset; |
| 1254 | /* |
| 1255 | * force cow if csum exists in the range. |
| 1256 | * this ensure that csum for a given extent are |
| 1257 | * either valid or do not exist. |
| 1258 | */ |
| 1259 | if (csum_exist_in_range(root, disk_bytenr, num_bytes)) |
| 1260 | goto out_check; |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1261 | nocow = 1; |
| 1262 | } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) { |
| 1263 | extent_end = found_key.offset + |
| 1264 | btrfs_file_extent_inline_len(leaf, fi); |
| 1265 | extent_end = ALIGN(extent_end, root->sectorsize); |
| 1266 | } else { |
| 1267 | BUG_ON(1); |
| 1268 | } |
| 1269 | out_check: |
| 1270 | if (extent_end <= start) { |
| 1271 | path->slots[0]++; |
| 1272 | goto next_slot; |
| 1273 | } |
| 1274 | if (!nocow) { |
| 1275 | if (cow_start == (u64)-1) |
| 1276 | cow_start = cur_offset; |
| 1277 | cur_offset = extent_end; |
| 1278 | if (cur_offset > end) |
| 1279 | break; |
| 1280 | path->slots[0]++; |
| 1281 | goto next_slot; |
Yan Zheng | 7ea394f | 2008-08-05 13:05:02 -0400 | [diff] [blame] | 1282 | } |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 1283 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1284 | btrfs_release_path(path); |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1285 | if (cow_start != (u64)-1) { |
| 1286 | ret = cow_file_range(inode, locked_page, cow_start, |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 1287 | found_key.offset - 1, page_started, |
| 1288 | nr_written, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1289 | if (ret) { |
| 1290 | btrfs_abort_transaction(trans, root, ret); |
| 1291 | goto error; |
| 1292 | } |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1293 | cow_start = (u64)-1; |
Yan Zheng | 7ea394f | 2008-08-05 13:05:02 -0400 | [diff] [blame] | 1294 | } |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1295 | |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1296 | if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) { |
| 1297 | struct extent_map *em; |
| 1298 | struct extent_map_tree *em_tree; |
| 1299 | em_tree = &BTRFS_I(inode)->extent_tree; |
David Sterba | 172ddd6 | 2011-04-21 00:48:27 +0200 | [diff] [blame] | 1300 | em = alloc_extent_map(); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1301 | BUG_ON(!em); /* -ENOMEM */ |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1302 | em->start = cur_offset; |
Chris Mason | 445a694 | 2008-11-10 11:53:33 -0500 | [diff] [blame] | 1303 | em->orig_start = em->start; |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1304 | em->len = num_bytes; |
| 1305 | em->block_len = num_bytes; |
| 1306 | em->block_start = disk_bytenr; |
| 1307 | em->bdev = root->fs_info->fs_devices->latest_bdev; |
| 1308 | set_bit(EXTENT_FLAG_PINNED, &em->flags); |
Liu Bo | 4e2f84e | 2012-08-27 10:52:20 -0600 | [diff] [blame] | 1309 | set_bit(EXTENT_FLAG_PREALLOC, &em->flags); |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1310 | while (1) { |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 1311 | write_lock(&em_tree->lock); |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1312 | ret = add_extent_mapping(em_tree, em); |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 1313 | write_unlock(&em_tree->lock); |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1314 | if (ret != -EEXIST) { |
| 1315 | free_extent_map(em); |
| 1316 | break; |
| 1317 | } |
| 1318 | btrfs_drop_extent_cache(inode, em->start, |
| 1319 | em->start + em->len - 1, 0); |
| 1320 | } |
| 1321 | type = BTRFS_ORDERED_PREALLOC; |
| 1322 | } else { |
| 1323 | type = BTRFS_ORDERED_NOCOW; |
| 1324 | } |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1325 | |
| 1326 | ret = btrfs_add_ordered_extent(inode, cur_offset, disk_bytenr, |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1327 | num_bytes, num_bytes, type); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1328 | BUG_ON(ret); /* -ENOMEM */ |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 1329 | |
Yan, Zheng | efa5646 | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 1330 | if (root->root_key.objectid == |
| 1331 | BTRFS_DATA_RELOC_TREE_OBJECTID) { |
| 1332 | ret = btrfs_reloc_clone_csums(inode, cur_offset, |
| 1333 | num_bytes); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1334 | if (ret) { |
| 1335 | btrfs_abort_transaction(trans, root, ret); |
| 1336 | goto error; |
| 1337 | } |
Yan, Zheng | efa5646 | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 1338 | } |
| 1339 | |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1340 | extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree, |
Chris Mason | a791e35 | 2009-10-08 11:27:10 -0400 | [diff] [blame] | 1341 | cur_offset, cur_offset + num_bytes - 1, |
| 1342 | locked_page, EXTENT_CLEAR_UNLOCK_PAGE | |
| 1343 | EXTENT_CLEAR_UNLOCK | EXTENT_CLEAR_DELALLOC | |
| 1344 | EXTENT_SET_PRIVATE2); |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1345 | cur_offset = extent_end; |
| 1346 | if (cur_offset > end) |
| 1347 | break; |
Yan Zheng | 7ea394f | 2008-08-05 13:05:02 -0400 | [diff] [blame] | 1348 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1349 | btrfs_release_path(path); |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1350 | |
Josef Bacik | 17ca04a | 2012-05-31 15:58:55 -0400 | [diff] [blame] | 1351 | if (cur_offset <= end && cow_start == (u64)-1) { |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1352 | cow_start = cur_offset; |
Josef Bacik | 17ca04a | 2012-05-31 15:58:55 -0400 | [diff] [blame] | 1353 | cur_offset = end; |
| 1354 | } |
| 1355 | |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1356 | if (cow_start != (u64)-1) { |
| 1357 | ret = cow_file_range(inode, locked_page, cow_start, end, |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 1358 | page_started, nr_written, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1359 | if (ret) { |
| 1360 | btrfs_abort_transaction(trans, root, ret); |
| 1361 | goto error; |
| 1362 | } |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1363 | } |
| 1364 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1365 | error: |
Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 1366 | if (nolock) { |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1367 | err = btrfs_end_transaction_nolock(trans, root); |
Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 1368 | } else { |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1369 | err = btrfs_end_transaction(trans, root); |
Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 1370 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1371 | if (!ret) |
| 1372 | ret = err; |
| 1373 | |
Josef Bacik | 17ca04a | 2012-05-31 15:58:55 -0400 | [diff] [blame] | 1374 | if (ret && cur_offset < end) |
| 1375 | extent_clear_unlock_delalloc(inode, |
| 1376 | &BTRFS_I(inode)->io_tree, |
| 1377 | cur_offset, end, locked_page, |
| 1378 | EXTENT_CLEAR_UNLOCK_PAGE | |
| 1379 | EXTENT_CLEAR_UNLOCK | |
| 1380 | EXTENT_CLEAR_DELALLOC | |
| 1381 | EXTENT_CLEAR_DIRTY | |
| 1382 | EXTENT_SET_WRITEBACK | |
| 1383 | EXTENT_END_WRITEBACK); |
| 1384 | |
Yan Zheng | 7ea394f | 2008-08-05 13:05:02 -0400 | [diff] [blame] | 1385 | btrfs_free_path(path); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1386 | return ret; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 1387 | } |
| 1388 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 1389 | /* |
| 1390 | * extent_io.c call back to do delayed allocation processing |
| 1391 | */ |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 1392 | static int run_delalloc_range(struct inode *inode, struct page *locked_page, |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 1393 | u64 start, u64 end, int *page_started, |
| 1394 | unsigned long *nr_written) |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 1395 | { |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 1396 | int ret; |
Chris Mason | 7f366cf | 2009-03-12 20:12:45 -0400 | [diff] [blame] | 1397 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Chris Mason | a213501 | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 1398 | |
Josef Bacik | 7ddf5a4 | 2012-06-08 15:26:47 -0400 | [diff] [blame] | 1399 | if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) { |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 1400 | ret = run_delalloc_nocow(inode, locked_page, start, end, |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1401 | page_started, 1, nr_written); |
Josef Bacik | 7ddf5a4 | 2012-06-08 15:26:47 -0400 | [diff] [blame] | 1402 | } else if (BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC) { |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1403 | ret = run_delalloc_nocow(inode, locked_page, start, end, |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1404 | page_started, 0, nr_written); |
Josef Bacik | 7ddf5a4 | 2012-06-08 15:26:47 -0400 | [diff] [blame] | 1405 | } else if (!btrfs_test_opt(root, COMPRESS) && |
| 1406 | !(BTRFS_I(inode)->force_compress) && |
| 1407 | !(BTRFS_I(inode)->flags & BTRFS_INODE_COMPRESS)) { |
Chris Mason | 7f366cf | 2009-03-12 20:12:45 -0400 | [diff] [blame] | 1408 | ret = cow_file_range(inode, locked_page, start, end, |
| 1409 | page_started, nr_written, 1); |
Josef Bacik | 7ddf5a4 | 2012-06-08 15:26:47 -0400 | [diff] [blame] | 1410 | } else { |
| 1411 | set_bit(BTRFS_INODE_HAS_ASYNC_EXTENT, |
| 1412 | &BTRFS_I(inode)->runtime_flags); |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 1413 | ret = cow_file_range_async(inode, locked_page, start, end, |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1414 | page_started, nr_written); |
Josef Bacik | 7ddf5a4 | 2012-06-08 15:26:47 -0400 | [diff] [blame] | 1415 | } |
Chris Mason | b888db2b | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 1416 | return ret; |
| 1417 | } |
| 1418 | |
Jeff Mahoney | 1bf8504 | 2011-07-21 16:56:09 +0000 | [diff] [blame] | 1419 | static void btrfs_split_extent_hook(struct inode *inode, |
| 1420 | struct extent_state *orig, u64 split) |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 1421 | { |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 1422 | /* not delalloc, ignore it */ |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 1423 | if (!(orig->state & EXTENT_DELALLOC)) |
Jeff Mahoney | 1bf8504 | 2011-07-21 16:56:09 +0000 | [diff] [blame] | 1424 | return; |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 1425 | |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 1426 | spin_lock(&BTRFS_I(inode)->lock); |
| 1427 | BTRFS_I(inode)->outstanding_extents++; |
| 1428 | spin_unlock(&BTRFS_I(inode)->lock); |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 1429 | } |
| 1430 | |
| 1431 | /* |
| 1432 | * extent_io.c merge_extent_hook, used to track merged delayed allocation |
| 1433 | * extents so we can keep track of new extents that are just merged onto old |
| 1434 | * extents, such as when we are doing sequential writes, so we can properly |
| 1435 | * account for the metadata space we'll need. |
| 1436 | */ |
Jeff Mahoney | 1bf8504 | 2011-07-21 16:56:09 +0000 | [diff] [blame] | 1437 | static void btrfs_merge_extent_hook(struct inode *inode, |
| 1438 | struct extent_state *new, |
| 1439 | struct extent_state *other) |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 1440 | { |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 1441 | /* not delalloc, ignore it */ |
| 1442 | if (!(other->state & EXTENT_DELALLOC)) |
Jeff Mahoney | 1bf8504 | 2011-07-21 16:56:09 +0000 | [diff] [blame] | 1443 | return; |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 1444 | |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 1445 | spin_lock(&BTRFS_I(inode)->lock); |
| 1446 | BTRFS_I(inode)->outstanding_extents--; |
| 1447 | spin_unlock(&BTRFS_I(inode)->lock); |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 1448 | } |
| 1449 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 1450 | /* |
| 1451 | * extent_io.c set_bit_hook, used to track delayed allocation |
| 1452 | * bytes in this file, and to maintain the list of inodes that |
| 1453 | * have pending delalloc work to be done. |
| 1454 | */ |
Jeff Mahoney | 1bf8504 | 2011-07-21 16:56:09 +0000 | [diff] [blame] | 1455 | static void btrfs_set_bit_hook(struct inode *inode, |
| 1456 | struct extent_state *state, int *bits) |
Chris Mason | 291d673 | 2008-01-29 15:55:23 -0500 | [diff] [blame] | 1457 | { |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 1458 | |
Chris Mason | 75eff68 | 2008-12-15 15:54:40 -0500 | [diff] [blame] | 1459 | /* |
| 1460 | * set_bit and clear bit hooks normally require _irqsave/restore |
Sergei Trofimovich | 27160b6 | 2011-05-20 20:20:32 +0000 | [diff] [blame] | 1461 | * but in this case, we are only testing for the DELALLOC |
Chris Mason | 75eff68 | 2008-12-15 15:54:40 -0500 | [diff] [blame] | 1462 | * bit, which is only set or cleared with irqs on |
| 1463 | */ |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 1464 | if (!(state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) { |
Chris Mason | 291d673 | 2008-01-29 15:55:23 -0500 | [diff] [blame] | 1465 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 1466 | u64 len = state->end + 1 - state->start; |
Liu Bo | 83eea1f | 2012-07-10 05:28:39 -0600 | [diff] [blame] | 1467 | bool do_list = !btrfs_is_free_space_inode(inode); |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 1468 | |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 1469 | if (*bits & EXTENT_FIRST_DELALLOC) { |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 1470 | *bits &= ~EXTENT_FIRST_DELALLOC; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 1471 | } else { |
| 1472 | spin_lock(&BTRFS_I(inode)->lock); |
| 1473 | BTRFS_I(inode)->outstanding_extents++; |
| 1474 | spin_unlock(&BTRFS_I(inode)->lock); |
| 1475 | } |
Josef Bacik | 287a0ab | 2010-03-19 18:07:23 +0000 | [diff] [blame] | 1476 | |
Chris Mason | 75eff68 | 2008-12-15 15:54:40 -0500 | [diff] [blame] | 1477 | spin_lock(&root->fs_info->delalloc_lock); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 1478 | BTRFS_I(inode)->delalloc_bytes += len; |
| 1479 | root->fs_info->delalloc_bytes += len; |
Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 1480 | if (do_list && list_empty(&BTRFS_I(inode)->delalloc_inodes)) { |
Chris Mason | ea8c281 | 2008-08-04 23:17:27 -0400 | [diff] [blame] | 1481 | list_add_tail(&BTRFS_I(inode)->delalloc_inodes, |
| 1482 | &root->fs_info->delalloc_inodes); |
| 1483 | } |
Chris Mason | 75eff68 | 2008-12-15 15:54:40 -0500 | [diff] [blame] | 1484 | spin_unlock(&root->fs_info->delalloc_lock); |
Chris Mason | 291d673 | 2008-01-29 15:55:23 -0500 | [diff] [blame] | 1485 | } |
Chris Mason | 291d673 | 2008-01-29 15:55:23 -0500 | [diff] [blame] | 1486 | } |
| 1487 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 1488 | /* |
| 1489 | * extent_io.c clear_bit_hook, see set_bit_hook for why |
| 1490 | */ |
Jeff Mahoney | 1bf8504 | 2011-07-21 16:56:09 +0000 | [diff] [blame] | 1491 | static void btrfs_clear_bit_hook(struct inode *inode, |
| 1492 | struct extent_state *state, int *bits) |
Chris Mason | 291d673 | 2008-01-29 15:55:23 -0500 | [diff] [blame] | 1493 | { |
Chris Mason | 75eff68 | 2008-12-15 15:54:40 -0500 | [diff] [blame] | 1494 | /* |
| 1495 | * set_bit and clear bit hooks normally require _irqsave/restore |
Sergei Trofimovich | 27160b6 | 2011-05-20 20:20:32 +0000 | [diff] [blame] | 1496 | * but in this case, we are only testing for the DELALLOC |
Chris Mason | 75eff68 | 2008-12-15 15:54:40 -0500 | [diff] [blame] | 1497 | * bit, which is only set or cleared with irqs on |
| 1498 | */ |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 1499 | if ((state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) { |
Chris Mason | 291d673 | 2008-01-29 15:55:23 -0500 | [diff] [blame] | 1500 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 1501 | u64 len = state->end + 1 - state->start; |
Liu Bo | 83eea1f | 2012-07-10 05:28:39 -0600 | [diff] [blame] | 1502 | bool do_list = !btrfs_is_free_space_inode(inode); |
Chris Mason | bcbfce8 | 2008-04-22 13:26:47 -0400 | [diff] [blame] | 1503 | |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 1504 | if (*bits & EXTENT_FIRST_DELALLOC) { |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 1505 | *bits &= ~EXTENT_FIRST_DELALLOC; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 1506 | } else if (!(*bits & EXTENT_DO_ACCOUNTING)) { |
| 1507 | spin_lock(&BTRFS_I(inode)->lock); |
| 1508 | BTRFS_I(inode)->outstanding_extents--; |
| 1509 | spin_unlock(&BTRFS_I(inode)->lock); |
| 1510 | } |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 1511 | |
| 1512 | if (*bits & EXTENT_DO_ACCOUNTING) |
| 1513 | btrfs_delalloc_release_metadata(inode, len); |
| 1514 | |
Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 1515 | if (root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID |
| 1516 | && do_list) |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 1517 | btrfs_free_reserved_data_space(inode, len); |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 1518 | |
Chris Mason | 75eff68 | 2008-12-15 15:54:40 -0500 | [diff] [blame] | 1519 | spin_lock(&root->fs_info->delalloc_lock); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 1520 | root->fs_info->delalloc_bytes -= len; |
| 1521 | BTRFS_I(inode)->delalloc_bytes -= len; |
| 1522 | |
Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 1523 | if (do_list && BTRFS_I(inode)->delalloc_bytes == 0 && |
Chris Mason | ea8c281 | 2008-08-04 23:17:27 -0400 | [diff] [blame] | 1524 | !list_empty(&BTRFS_I(inode)->delalloc_inodes)) { |
| 1525 | list_del_init(&BTRFS_I(inode)->delalloc_inodes); |
| 1526 | } |
Chris Mason | 75eff68 | 2008-12-15 15:54:40 -0500 | [diff] [blame] | 1527 | spin_unlock(&root->fs_info->delalloc_lock); |
Chris Mason | 291d673 | 2008-01-29 15:55:23 -0500 | [diff] [blame] | 1528 | } |
Chris Mason | 291d673 | 2008-01-29 15:55:23 -0500 | [diff] [blame] | 1529 | } |
| 1530 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 1531 | /* |
| 1532 | * extent_io.c merge_bio_hook, this must check the chunk tree to make sure |
| 1533 | * we don't create bios that span stripes or chunks |
| 1534 | */ |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1535 | int btrfs_merge_bio_hook(struct page *page, unsigned long offset, |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 1536 | size_t size, struct bio *bio, |
| 1537 | unsigned long bio_flags) |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1538 | { |
| 1539 | struct btrfs_root *root = BTRFS_I(page->mapping->host)->root; |
| 1540 | struct btrfs_mapping_tree *map_tree; |
Chris Mason | a62b940 | 2008-10-03 16:31:08 -0400 | [diff] [blame] | 1541 | u64 logical = (u64)bio->bi_sector << 9; |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1542 | u64 length = 0; |
| 1543 | u64 map_length; |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1544 | int ret; |
| 1545 | |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 1546 | if (bio_flags & EXTENT_BIO_COMPRESSED) |
| 1547 | return 0; |
| 1548 | |
Chris Mason | f2d8d74 | 2008-04-21 10:03:05 -0400 | [diff] [blame] | 1549 | length = bio->bi_size; |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1550 | map_tree = &root->fs_info->mapping_tree; |
| 1551 | map_length = length; |
Chris Mason | cea9e44 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 1552 | ret = btrfs_map_block(map_tree, READ, logical, |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 1553 | &map_length, NULL, 0); |
Jeff Mahoney | 3444a97 | 2011-10-03 23:23:13 -0400 | [diff] [blame] | 1554 | /* Will always return 0 or 1 with map_multi == NULL */ |
| 1555 | BUG_ON(ret < 0); |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1556 | if (map_length < length + size) |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1557 | return 1; |
Jeff Mahoney | 3444a97 | 2011-10-03 23:23:13 -0400 | [diff] [blame] | 1558 | return 0; |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1559 | } |
| 1560 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 1561 | /* |
| 1562 | * in order to insert checksums into the metadata in large chunks, |
| 1563 | * we wait until bio submission time. All the pages in the bio are |
| 1564 | * checksummed and sums are attached onto the ordered extent record. |
| 1565 | * |
| 1566 | * At IO completion time the cums attached on the ordered extent record |
| 1567 | * are inserted into the btree |
| 1568 | */ |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1569 | static int __btrfs_submit_bio_start(struct inode *inode, int rw, |
| 1570 | struct bio *bio, int mirror_num, |
Chris Mason | eaf25d9 | 2010-05-25 09:48:28 -0400 | [diff] [blame] | 1571 | unsigned long bio_flags, |
| 1572 | u64 bio_offset) |
Chris Mason | 065631f | 2008-02-20 12:07:25 -0500 | [diff] [blame] | 1573 | { |
Chris Mason | 065631f | 2008-02-20 12:07:25 -0500 | [diff] [blame] | 1574 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Chris Mason | 065631f | 2008-02-20 12:07:25 -0500 | [diff] [blame] | 1575 | int ret = 0; |
Chris Mason | e015640 | 2008-04-16 11:15:20 -0400 | [diff] [blame] | 1576 | |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 1577 | ret = btrfs_csum_one_bio(root, inode, bio, 0, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1578 | BUG_ON(ret); /* -ENOMEM */ |
Chris Mason | 4a69a41 | 2008-11-06 22:03:00 -0500 | [diff] [blame] | 1579 | return 0; |
| 1580 | } |
Chris Mason | e015640 | 2008-04-16 11:15:20 -0400 | [diff] [blame] | 1581 | |
Chris Mason | 4a69a41 | 2008-11-06 22:03:00 -0500 | [diff] [blame] | 1582 | /* |
| 1583 | * in order to insert checksums into the metadata in large chunks, |
| 1584 | * we wait until bio submission time. All the pages in the bio are |
| 1585 | * checksummed and sums are attached onto the ordered extent record. |
| 1586 | * |
| 1587 | * At IO completion time the cums attached on the ordered extent record |
| 1588 | * are inserted into the btree |
| 1589 | */ |
Christoph Hellwig | b295086 | 2008-12-02 09:54:17 -0500 | [diff] [blame] | 1590 | 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] | 1591 | int mirror_num, unsigned long bio_flags, |
| 1592 | u64 bio_offset) |
Chris Mason | 4a69a41 | 2008-11-06 22:03:00 -0500 | [diff] [blame] | 1593 | { |
| 1594 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 1595 | return btrfs_map_bio(root, rw, bio, mirror_num, 1); |
Chris Mason | 44b8bd7 | 2008-04-16 11:14:51 -0400 | [diff] [blame] | 1596 | } |
| 1597 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 1598 | /* |
Chris Mason | cad321a | 2008-12-17 14:51:42 -0500 | [diff] [blame] | 1599 | * extent_io.c submission hook. This does the right thing for csum calculation |
| 1600 | * on write, or reading the csums from the tree before a read |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 1601 | */ |
Christoph Hellwig | b295086 | 2008-12-02 09:54:17 -0500 | [diff] [blame] | 1602 | 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] | 1603 | int mirror_num, unsigned long bio_flags, |
| 1604 | u64 bio_offset) |
Chris Mason | 44b8bd7 | 2008-04-16 11:14:51 -0400 | [diff] [blame] | 1605 | { |
| 1606 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 1607 | int ret = 0; |
Chris Mason | 19b9bdb | 2008-10-30 14:23:13 -0400 | [diff] [blame] | 1608 | int skip_sum; |
Jeff Mahoney | 0417341 | 2011-10-03 23:23:12 -0400 | [diff] [blame] | 1609 | int metadata = 0; |
Chris Mason | 44b8bd7 | 2008-04-16 11:14:51 -0400 | [diff] [blame] | 1610 | |
Christoph Hellwig | 6cbff00 | 2009-04-17 10:37:41 +0200 | [diff] [blame] | 1611 | skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM; |
Chris Mason | cad321a | 2008-12-17 14:51:42 -0500 | [diff] [blame] | 1612 | |
Liu Bo | 83eea1f | 2012-07-10 05:28:39 -0600 | [diff] [blame] | 1613 | if (btrfs_is_free_space_inode(inode)) |
Jeff Mahoney | 0417341 | 2011-10-03 23:23:12 -0400 | [diff] [blame] | 1614 | metadata = 2; |
| 1615 | |
Christoph Hellwig | 7b6d91d | 2010-08-07 18:20:39 +0200 | [diff] [blame] | 1616 | if (!(rw & REQ_WRITE)) { |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 1617 | ret = btrfs_bio_wq_end_io(root->fs_info, bio, metadata); |
| 1618 | if (ret) |
| 1619 | return ret; |
| 1620 | |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 1621 | if (bio_flags & EXTENT_BIO_COMPRESSED) { |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 1622 | return btrfs_submit_compressed_read(inode, bio, |
| 1623 | mirror_num, bio_flags); |
Tsutomu Itoh | c2db107 | 2011-03-01 06:48:31 +0000 | [diff] [blame] | 1624 | } else if (!skip_sum) { |
| 1625 | ret = btrfs_lookup_bio_sums(root, inode, bio, NULL); |
| 1626 | if (ret) |
| 1627 | return ret; |
| 1628 | } |
Chris Mason | 4d1b5fb | 2008-08-20 09:44:52 -0400 | [diff] [blame] | 1629 | goto mapit; |
Chris Mason | 19b9bdb | 2008-10-30 14:23:13 -0400 | [diff] [blame] | 1630 | } else if (!skip_sum) { |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 1631 | /* csum items have already been cloned */ |
| 1632 | if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID) |
| 1633 | goto mapit; |
Chris Mason | 19b9bdb | 2008-10-30 14:23:13 -0400 | [diff] [blame] | 1634 | /* we're doing a write, do the async checksumming */ |
| 1635 | return btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info, |
Chris Mason | 44b8bd7 | 2008-04-16 11:14:51 -0400 | [diff] [blame] | 1636 | inode, rw, bio, mirror_num, |
Chris Mason | eaf25d9 | 2010-05-25 09:48:28 -0400 | [diff] [blame] | 1637 | bio_flags, bio_offset, |
| 1638 | __btrfs_submit_bio_start, |
Chris Mason | 4a69a41 | 2008-11-06 22:03:00 -0500 | [diff] [blame] | 1639 | __btrfs_submit_bio_done); |
Chris Mason | 19b9bdb | 2008-10-30 14:23:13 -0400 | [diff] [blame] | 1640 | } |
| 1641 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1642 | mapit: |
Chris Mason | 8b71284 | 2008-06-11 16:50:36 -0400 | [diff] [blame] | 1643 | return btrfs_map_bio(root, rw, bio, mirror_num, 0); |
Chris Mason | 065631f | 2008-02-20 12:07:25 -0500 | [diff] [blame] | 1644 | } |
Chris Mason | 6885f30 | 2008-02-20 16:11:05 -0500 | [diff] [blame] | 1645 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 1646 | /* |
| 1647 | * given a list of ordered sums record them in the inode. This happens |
| 1648 | * at IO completion time based on sums calculated at bio submission time. |
| 1649 | */ |
Chris Mason | ba1da2f | 2008-07-17 12:54:15 -0400 | [diff] [blame] | 1650 | static noinline int add_pending_csums(struct btrfs_trans_handle *trans, |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 1651 | struct inode *inode, u64 file_offset, |
| 1652 | struct list_head *list) |
| 1653 | { |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 1654 | struct btrfs_ordered_sum *sum; |
| 1655 | |
Qinghuang Feng | c6e3087 | 2009-01-21 10:59:08 -0500 | [diff] [blame] | 1656 | list_for_each_entry(sum, list, list) { |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 1657 | btrfs_csum_file_blocks(trans, |
| 1658 | BTRFS_I(inode)->root->fs_info->csum_root, sum); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 1659 | } |
| 1660 | return 0; |
| 1661 | } |
| 1662 | |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 1663 | int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end, |
| 1664 | struct extent_state **cached_state) |
Chris Mason | ea8c281 | 2008-08-04 23:17:27 -0400 | [diff] [blame] | 1665 | { |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1666 | if ((end & (PAGE_CACHE_SIZE - 1)) == 0) |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 1667 | WARN_ON(1); |
Chris Mason | ea8c281 | 2008-08-04 23:17:27 -0400 | [diff] [blame] | 1668 | return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end, |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 1669 | cached_state, GFP_NOFS); |
Chris Mason | ea8c281 | 2008-08-04 23:17:27 -0400 | [diff] [blame] | 1670 | } |
| 1671 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 1672 | /* see btrfs_writepage_start_hook for details on why this is required */ |
Chris Mason | 247e743 | 2008-07-17 12:53:51 -0400 | [diff] [blame] | 1673 | struct btrfs_writepage_fixup { |
| 1674 | struct page *page; |
| 1675 | struct btrfs_work work; |
| 1676 | }; |
| 1677 | |
Christoph Hellwig | b295086 | 2008-12-02 09:54:17 -0500 | [diff] [blame] | 1678 | static void btrfs_writepage_fixup_worker(struct btrfs_work *work) |
Chris Mason | 247e743 | 2008-07-17 12:53:51 -0400 | [diff] [blame] | 1679 | { |
| 1680 | struct btrfs_writepage_fixup *fixup; |
| 1681 | struct btrfs_ordered_extent *ordered; |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 1682 | struct extent_state *cached_state = NULL; |
Chris Mason | 247e743 | 2008-07-17 12:53:51 -0400 | [diff] [blame] | 1683 | struct page *page; |
| 1684 | struct inode *inode; |
| 1685 | u64 page_start; |
| 1686 | u64 page_end; |
Jeff Mahoney | 87826df | 2012-02-15 16:23:57 +0100 | [diff] [blame] | 1687 | int ret; |
Chris Mason | 247e743 | 2008-07-17 12:53:51 -0400 | [diff] [blame] | 1688 | |
| 1689 | fixup = container_of(work, struct btrfs_writepage_fixup, work); |
| 1690 | page = fixup->page; |
Chris Mason | 4a09675 | 2008-07-21 10:29:44 -0400 | [diff] [blame] | 1691 | again: |
Chris Mason | 247e743 | 2008-07-17 12:53:51 -0400 | [diff] [blame] | 1692 | lock_page(page); |
| 1693 | if (!page->mapping || !PageDirty(page) || !PageChecked(page)) { |
| 1694 | ClearPageChecked(page); |
| 1695 | goto out_page; |
| 1696 | } |
| 1697 | |
| 1698 | inode = page->mapping->host; |
| 1699 | page_start = page_offset(page); |
| 1700 | page_end = page_offset(page) + PAGE_CACHE_SIZE - 1; |
| 1701 | |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 1702 | lock_extent_bits(&BTRFS_I(inode)->io_tree, page_start, page_end, 0, |
Jeff Mahoney | d008237 | 2012-03-01 14:57:19 +0100 | [diff] [blame] | 1703 | &cached_state); |
Chris Mason | 4a09675 | 2008-07-21 10:29:44 -0400 | [diff] [blame] | 1704 | |
| 1705 | /* already ordered? We're done */ |
Chris Mason | 8b62b72 | 2009-09-02 16:53:46 -0400 | [diff] [blame] | 1706 | if (PagePrivate2(page)) |
Chris Mason | 247e743 | 2008-07-17 12:53:51 -0400 | [diff] [blame] | 1707 | goto out; |
Chris Mason | 4a09675 | 2008-07-21 10:29:44 -0400 | [diff] [blame] | 1708 | |
| 1709 | ordered = btrfs_lookup_ordered_extent(inode, page_start); |
| 1710 | if (ordered) { |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 1711 | unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start, |
| 1712 | page_end, &cached_state, GFP_NOFS); |
Chris Mason | 4a09675 | 2008-07-21 10:29:44 -0400 | [diff] [blame] | 1713 | unlock_page(page); |
| 1714 | btrfs_start_ordered_extent(inode, ordered, 1); |
Jeff Mahoney | 87826df | 2012-02-15 16:23:57 +0100 | [diff] [blame] | 1715 | btrfs_put_ordered_extent(ordered); |
Chris Mason | 4a09675 | 2008-07-21 10:29:44 -0400 | [diff] [blame] | 1716 | goto again; |
| 1717 | } |
Chris Mason | 247e743 | 2008-07-17 12:53:51 -0400 | [diff] [blame] | 1718 | |
Jeff Mahoney | 87826df | 2012-02-15 16:23:57 +0100 | [diff] [blame] | 1719 | ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE); |
| 1720 | if (ret) { |
| 1721 | mapping_set_error(page->mapping, ret); |
| 1722 | end_extent_writepage(page, ret, page_start, page_end); |
| 1723 | ClearPageChecked(page); |
| 1724 | goto out; |
| 1725 | } |
| 1726 | |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 1727 | btrfs_set_extent_delalloc(inode, page_start, page_end, &cached_state); |
Chris Mason | 247e743 | 2008-07-17 12:53:51 -0400 | [diff] [blame] | 1728 | ClearPageChecked(page); |
Jeff Mahoney | 87826df | 2012-02-15 16:23:57 +0100 | [diff] [blame] | 1729 | set_page_dirty(page); |
Chris Mason | 247e743 | 2008-07-17 12:53:51 -0400 | [diff] [blame] | 1730 | out: |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 1731 | unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start, page_end, |
| 1732 | &cached_state, GFP_NOFS); |
Chris Mason | 247e743 | 2008-07-17 12:53:51 -0400 | [diff] [blame] | 1733 | out_page: |
| 1734 | unlock_page(page); |
| 1735 | page_cache_release(page); |
Miao Xie | b897abe | 2011-01-26 16:19:22 +0800 | [diff] [blame] | 1736 | kfree(fixup); |
Chris Mason | 247e743 | 2008-07-17 12:53:51 -0400 | [diff] [blame] | 1737 | } |
| 1738 | |
| 1739 | /* |
| 1740 | * There are a few paths in the higher layers of the kernel that directly |
| 1741 | * set the page dirty bit without asking the filesystem if it is a |
| 1742 | * good idea. This causes problems because we want to make sure COW |
| 1743 | * properly happens and the data=ordered rules are followed. |
| 1744 | * |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 1745 | * 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] | 1746 | * hasn't been properly setup for IO. We kick off an async process |
| 1747 | * to fix it up. The async helper will wait for ordered extents, set |
| 1748 | * the delalloc bit and make it safe to write the page. |
| 1749 | */ |
Christoph Hellwig | b295086 | 2008-12-02 09:54:17 -0500 | [diff] [blame] | 1750 | 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] | 1751 | { |
| 1752 | struct inode *inode = page->mapping->host; |
| 1753 | struct btrfs_writepage_fixup *fixup; |
| 1754 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Chris Mason | 247e743 | 2008-07-17 12:53:51 -0400 | [diff] [blame] | 1755 | |
Chris Mason | 8b62b72 | 2009-09-02 16:53:46 -0400 | [diff] [blame] | 1756 | /* this page is properly in the ordered list */ |
| 1757 | if (TestClearPagePrivate2(page)) |
Chris Mason | 247e743 | 2008-07-17 12:53:51 -0400 | [diff] [blame] | 1758 | return 0; |
| 1759 | |
| 1760 | if (PageChecked(page)) |
| 1761 | return -EAGAIN; |
| 1762 | |
| 1763 | fixup = kzalloc(sizeof(*fixup), GFP_NOFS); |
| 1764 | if (!fixup) |
| 1765 | return -EAGAIN; |
Chris Mason | f421950 | 2008-07-22 11:18:09 -0400 | [diff] [blame] | 1766 | |
Chris Mason | 247e743 | 2008-07-17 12:53:51 -0400 | [diff] [blame] | 1767 | SetPageChecked(page); |
| 1768 | page_cache_get(page); |
| 1769 | fixup->work.func = btrfs_writepage_fixup_worker; |
| 1770 | fixup->page = page; |
| 1771 | btrfs_queue_worker(&root->fs_info->fixup_workers, &fixup->work); |
Jeff Mahoney | 87826df | 2012-02-15 16:23:57 +0100 | [diff] [blame] | 1772 | return -EBUSY; |
Chris Mason | 247e743 | 2008-07-17 12:53:51 -0400 | [diff] [blame] | 1773 | } |
| 1774 | |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1775 | static int insert_reserved_file_extent(struct btrfs_trans_handle *trans, |
| 1776 | struct inode *inode, u64 file_pos, |
| 1777 | u64 disk_bytenr, u64 disk_num_bytes, |
| 1778 | u64 num_bytes, u64 ram_bytes, |
| 1779 | u8 compression, u8 encryption, |
| 1780 | u16 other_encoding, int extent_type) |
| 1781 | { |
| 1782 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 1783 | struct btrfs_file_extent_item *fi; |
| 1784 | struct btrfs_path *path; |
| 1785 | struct extent_buffer *leaf; |
| 1786 | struct btrfs_key ins; |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1787 | int ret; |
| 1788 | |
| 1789 | path = btrfs_alloc_path(); |
Mark Fasheh | d8926bb | 2011-07-13 10:38:47 -0700 | [diff] [blame] | 1790 | if (!path) |
| 1791 | return -ENOMEM; |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1792 | |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 1793 | path->leave_spinning = 1; |
Chris Mason | a1ed835 | 2009-09-11 12:27:37 -0400 | [diff] [blame] | 1794 | |
| 1795 | /* |
| 1796 | * we may be replacing one extent in the tree with another. |
| 1797 | * The new extent is pinned in the extent map, and we don't want |
| 1798 | * to drop it from the cache until it is completely in the btree. |
| 1799 | * |
| 1800 | * So, tell btrfs_drop_extents to leave this extent in the cache. |
| 1801 | * the caller is expected to unpin it and allow it to be merged |
| 1802 | * with the others. |
| 1803 | */ |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 1804 | ret = btrfs_drop_extents(trans, root, inode, file_pos, |
Josef Bacik | 2671485 | 2012-08-29 12:24:27 -0400 | [diff] [blame] | 1805 | file_pos + num_bytes, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1806 | if (ret) |
| 1807 | goto out; |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1808 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 1809 | ins.objectid = btrfs_ino(inode); |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1810 | ins.offset = file_pos; |
| 1811 | ins.type = BTRFS_EXTENT_DATA_KEY; |
| 1812 | ret = btrfs_insert_empty_item(trans, root, path, &ins, sizeof(*fi)); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1813 | if (ret) |
| 1814 | goto out; |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1815 | leaf = path->nodes[0]; |
| 1816 | fi = btrfs_item_ptr(leaf, path->slots[0], |
| 1817 | struct btrfs_file_extent_item); |
| 1818 | btrfs_set_file_extent_generation(leaf, fi, trans->transid); |
| 1819 | btrfs_set_file_extent_type(leaf, fi, extent_type); |
| 1820 | btrfs_set_file_extent_disk_bytenr(leaf, fi, disk_bytenr); |
| 1821 | btrfs_set_file_extent_disk_num_bytes(leaf, fi, disk_num_bytes); |
| 1822 | btrfs_set_file_extent_offset(leaf, fi, 0); |
| 1823 | btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes); |
| 1824 | btrfs_set_file_extent_ram_bytes(leaf, fi, ram_bytes); |
| 1825 | btrfs_set_file_extent_compression(leaf, fi, compression); |
| 1826 | btrfs_set_file_extent_encryption(leaf, fi, encryption); |
| 1827 | btrfs_set_file_extent_other_encoding(leaf, fi, other_encoding); |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 1828 | |
| 1829 | btrfs_unlock_up_safe(path, 1); |
| 1830 | btrfs_set_lock_blocking(leaf); |
| 1831 | |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1832 | btrfs_mark_buffer_dirty(leaf); |
| 1833 | |
| 1834 | inode_add_bytes(inode, num_bytes); |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1835 | |
| 1836 | ins.objectid = disk_bytenr; |
| 1837 | ins.offset = disk_num_bytes; |
| 1838 | ins.type = BTRFS_EXTENT_ITEM_KEY; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1839 | ret = btrfs_alloc_reserved_file_extent(trans, root, |
| 1840 | root->root_key.objectid, |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 1841 | btrfs_ino(inode), file_pos, &ins); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1842 | out: |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1843 | btrfs_free_path(path); |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 1844 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1845 | return ret; |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1846 | } |
| 1847 | |
Chris Mason | 5d13a98 | 2009-03-13 11:41:46 -0400 | [diff] [blame] | 1848 | /* |
| 1849 | * helper function for btrfs_finish_ordered_io, this |
| 1850 | * just reads in some of the csum leaves to prime them into ram |
| 1851 | * before we start the transaction. It limits the amount of btree |
| 1852 | * reads required while inside the transaction. |
| 1853 | */ |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 1854 | /* as ordered data IO finishes, this gets called so we can finish |
| 1855 | * an ordered extent if the range of bytes in the file it covers are |
| 1856 | * fully written. |
| 1857 | */ |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 1858 | static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent) |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 1859 | { |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 1860 | struct inode *inode = ordered_extent->inode; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 1861 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 1862 | struct btrfs_trans_handle *trans = NULL; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 1863 | struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree; |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 1864 | struct extent_state *cached_state = NULL; |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 1865 | int compress_type = 0; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 1866 | int ret; |
Li Zefan | 82d5902 | 2011-04-20 10:33:24 +0800 | [diff] [blame] | 1867 | bool nolock; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 1868 | |
Liu Bo | 83eea1f | 2012-07-10 05:28:39 -0600 | [diff] [blame] | 1869 | nolock = btrfs_is_free_space_inode(inode); |
Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 1870 | |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 1871 | if (test_bit(BTRFS_ORDERED_IOERR, &ordered_extent->flags)) { |
| 1872 | ret = -EIO; |
| 1873 | goto out; |
| 1874 | } |
| 1875 | |
Yan, Zheng | c216775 | 2009-11-12 09:34:21 +0000 | [diff] [blame] | 1876 | if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags)) { |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1877 | BUG_ON(!list_empty(&ordered_extent->list)); /* Logic error */ |
Yan, Zheng | c216775 | 2009-11-12 09:34:21 +0000 | [diff] [blame] | 1878 | ret = btrfs_ordered_update_i_size(inode, 0, ordered_extent); |
| 1879 | if (!ret) { |
Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 1880 | if (nolock) |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 1881 | trans = btrfs_join_transaction_nolock(root); |
Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 1882 | else |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 1883 | trans = btrfs_join_transaction(root); |
Liu Bo | d280e5b | 2012-08-21 21:13:25 -0600 | [diff] [blame] | 1884 | if (IS_ERR(trans)) { |
| 1885 | ret = PTR_ERR(trans); |
| 1886 | trans = NULL; |
| 1887 | goto out; |
| 1888 | } |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 1889 | trans->block_rsv = &root->fs_info->delalloc_block_rsv; |
Chris Mason | 2115133 | 2011-11-10 20:39:08 -0500 | [diff] [blame] | 1890 | ret = btrfs_update_inode_fallback(trans, root, inode); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1891 | if (ret) /* -ENOMEM or corruption */ |
| 1892 | btrfs_abort_transaction(trans, root, ret); |
Yan, Zheng | c216775 | 2009-11-12 09:34:21 +0000 | [diff] [blame] | 1893 | } |
| 1894 | goto out; |
| 1895 | } |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 1896 | |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 1897 | lock_extent_bits(io_tree, ordered_extent->file_offset, |
| 1898 | ordered_extent->file_offset + ordered_extent->len - 1, |
Jeff Mahoney | d008237 | 2012-03-01 14:57:19 +0100 | [diff] [blame] | 1899 | 0, &cached_state); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 1900 | |
Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 1901 | if (nolock) |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 1902 | trans = btrfs_join_transaction_nolock(root); |
Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 1903 | else |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 1904 | trans = btrfs_join_transaction(root); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1905 | if (IS_ERR(trans)) { |
| 1906 | ret = PTR_ERR(trans); |
| 1907 | trans = NULL; |
| 1908 | goto out_unlock; |
| 1909 | } |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 1910 | trans->block_rsv = &root->fs_info->delalloc_block_rsv; |
Yan, Zheng | c216775 | 2009-11-12 09:34:21 +0000 | [diff] [blame] | 1911 | |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 1912 | if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags)) |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 1913 | compress_type = ordered_extent->compress_type; |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1914 | if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) { |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 1915 | BUG_ON(compress_type); |
Yan, Zheng | 920bbbf | 2009-11-12 09:34:08 +0000 | [diff] [blame] | 1916 | ret = btrfs_mark_extent_written(trans, inode, |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1917 | ordered_extent->file_offset, |
| 1918 | ordered_extent->file_offset + |
| 1919 | ordered_extent->len); |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1920 | } else { |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 1921 | BUG_ON(root == root->fs_info->tree_root); |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1922 | ret = insert_reserved_file_extent(trans, inode, |
| 1923 | ordered_extent->file_offset, |
| 1924 | ordered_extent->start, |
| 1925 | ordered_extent->disk_len, |
| 1926 | ordered_extent->len, |
| 1927 | ordered_extent->len, |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 1928 | compress_type, 0, 0, |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1929 | BTRFS_FILE_EXTENT_REG); |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1930 | } |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 1931 | unpin_extent_cache(&BTRFS_I(inode)->extent_tree, |
| 1932 | ordered_extent->file_offset, ordered_extent->len, |
| 1933 | trans->transid); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1934 | if (ret < 0) { |
| 1935 | btrfs_abort_transaction(trans, root, ret); |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 1936 | goto out_unlock; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1937 | } |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 1938 | |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 1939 | add_pending_csums(trans, inode, ordered_extent->file_offset, |
| 1940 | &ordered_extent->list); |
| 1941 | |
Josef Bacik | 1ef30be | 2011-04-05 19:25:36 -0400 | [diff] [blame] | 1942 | ret = btrfs_ordered_update_i_size(inode, 0, ordered_extent); |
Miao Xie | a39f752 | 2011-09-11 10:52:25 -0400 | [diff] [blame] | 1943 | if (!ret || !test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) { |
Chris Mason | 2115133 | 2011-11-10 20:39:08 -0500 | [diff] [blame] | 1944 | ret = btrfs_update_inode_fallback(trans, root, inode); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1945 | if (ret) { /* -ENOMEM or corruption */ |
| 1946 | btrfs_abort_transaction(trans, root, ret); |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 1947 | goto out_unlock; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1948 | } |
Josef Bacik | 7c73531 | 2012-08-13 15:43:26 -0400 | [diff] [blame] | 1949 | } else { |
| 1950 | btrfs_set_inode_last_trans(trans, inode); |
Josef Bacik | 1ef30be | 2011-04-05 19:25:36 -0400 | [diff] [blame] | 1951 | } |
| 1952 | ret = 0; |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 1953 | out_unlock: |
| 1954 | unlock_extent_cached(io_tree, ordered_extent->file_offset, |
| 1955 | ordered_extent->file_offset + |
| 1956 | ordered_extent->len - 1, &cached_state, GFP_NOFS); |
Yan, Zheng | c216775 | 2009-11-12 09:34:21 +0000 | [diff] [blame] | 1957 | out: |
Josef Bacik | 5b0e95b | 2011-10-06 08:58:24 -0400 | [diff] [blame] | 1958 | if (root != root->fs_info->tree_root) |
Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 1959 | btrfs_delalloc_release_metadata(inode, ordered_extent->len); |
Josef Bacik | 5b0e95b | 2011-10-06 08:58:24 -0400 | [diff] [blame] | 1960 | if (trans) { |
| 1961 | if (nolock) |
Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 1962 | btrfs_end_transaction_nolock(trans, root); |
Josef Bacik | 5b0e95b | 2011-10-06 08:58:24 -0400 | [diff] [blame] | 1963 | else |
Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 1964 | btrfs_end_transaction(trans, root); |
| 1965 | } |
| 1966 | |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 1967 | if (ret) |
| 1968 | clear_extent_uptodate(io_tree, ordered_extent->file_offset, |
| 1969 | ordered_extent->file_offset + |
| 1970 | ordered_extent->len - 1, NULL, GFP_NOFS); |
| 1971 | |
| 1972 | /* |
| 1973 | * This needs to be dont to make sure anybody waiting knows we are done |
| 1974 | * upating everything for this ordered extent. |
| 1975 | */ |
| 1976 | btrfs_remove_ordered_extent(inode, ordered_extent); |
| 1977 | |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 1978 | /* once for us */ |
| 1979 | btrfs_put_ordered_extent(ordered_extent); |
| 1980 | /* once for the tree */ |
| 1981 | btrfs_put_ordered_extent(ordered_extent); |
| 1982 | |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 1983 | return ret; |
| 1984 | } |
| 1985 | |
| 1986 | static void finish_ordered_fn(struct btrfs_work *work) |
| 1987 | { |
| 1988 | struct btrfs_ordered_extent *ordered_extent; |
| 1989 | ordered_extent = container_of(work, struct btrfs_ordered_extent, work); |
| 1990 | btrfs_finish_ordered_io(ordered_extent); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 1991 | } |
| 1992 | |
Christoph Hellwig | b295086 | 2008-12-02 09:54:17 -0500 | [diff] [blame] | 1993 | 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] | 1994 | struct extent_state *state, int uptodate) |
| 1995 | { |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 1996 | struct inode *inode = page->mapping->host; |
| 1997 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 1998 | struct btrfs_ordered_extent *ordered_extent = NULL; |
| 1999 | struct btrfs_workers *workers; |
| 2000 | |
liubo | 1abe9b8 | 2011-03-24 11:18:59 +0000 | [diff] [blame] | 2001 | trace_btrfs_writepage_end_io_hook(page, start, end, uptodate); |
| 2002 | |
Chris Mason | 8b62b72 | 2009-09-02 16:53:46 -0400 | [diff] [blame] | 2003 | ClearPagePrivate2(page); |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 2004 | if (!btrfs_dec_test_ordered_pending(inode, &ordered_extent, start, |
| 2005 | end - start + 1, uptodate)) |
| 2006 | return 0; |
| 2007 | |
| 2008 | ordered_extent->work.func = finish_ordered_fn; |
| 2009 | ordered_extent->work.flags = 0; |
| 2010 | |
Liu Bo | 83eea1f | 2012-07-10 05:28:39 -0600 | [diff] [blame] | 2011 | if (btrfs_is_free_space_inode(inode)) |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 2012 | workers = &root->fs_info->endio_freespace_worker; |
| 2013 | else |
| 2014 | workers = &root->fs_info->endio_write_workers; |
| 2015 | btrfs_queue_worker(workers, &ordered_extent->work); |
| 2016 | |
| 2017 | return 0; |
Chris Mason | 211f90e | 2008-07-18 11:56:15 -0400 | [diff] [blame] | 2018 | } |
| 2019 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 2020 | /* |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 2021 | * 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] | 2022 | * if there's a match, we allow the bio to finish. If not, the code in |
| 2023 | * extent_io.c will try to find good copies for us. |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 2024 | */ |
Christoph Hellwig | b295086 | 2008-12-02 09:54:17 -0500 | [diff] [blame] | 2025 | static int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end, |
Josef Bacik | 5cf1ab5 | 2012-04-16 09:42:26 -0400 | [diff] [blame] | 2026 | struct extent_state *state, int mirror) |
Chris Mason | 07157aa | 2007-08-30 08:50:51 -0400 | [diff] [blame] | 2027 | { |
Chris Mason | 35ebb93 | 2007-10-30 16:56:53 -0400 | [diff] [blame] | 2028 | size_t offset = start - ((u64)page->index << PAGE_CACHE_SHIFT); |
Chris Mason | 07157aa | 2007-08-30 08:50:51 -0400 | [diff] [blame] | 2029 | struct inode *inode = page->mapping->host; |
Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 2030 | struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree; |
Chris Mason | 07157aa | 2007-08-30 08:50:51 -0400 | [diff] [blame] | 2031 | char *kaddr; |
Chris Mason | aadfeb6 | 2008-01-29 09:10:27 -0500 | [diff] [blame] | 2032 | u64 private = ~(u32)0; |
Chris Mason | 07157aa | 2007-08-30 08:50:51 -0400 | [diff] [blame] | 2033 | int ret; |
Chris Mason | ff79f81 | 2007-10-15 16:22:25 -0400 | [diff] [blame] | 2034 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 2035 | u32 csum = ~(u32)0; |
Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 2036 | |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 2037 | if (PageChecked(page)) { |
| 2038 | ClearPageChecked(page); |
| 2039 | goto good; |
| 2040 | } |
Christoph Hellwig | 6cbff00 | 2009-04-17 10:37:41 +0200 | [diff] [blame] | 2041 | |
| 2042 | if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM) |
Jan Schmidt | 08d2f34 | 2011-05-04 16:18:50 +0200 | [diff] [blame] | 2043 | goto good; |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 2044 | |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 2045 | if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID && |
Chris Mason | 9655d29 | 2009-09-02 15:22:30 -0400 | [diff] [blame] | 2046 | test_range_bit(io_tree, start, end, EXTENT_NODATASUM, 1, NULL)) { |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 2047 | clear_extent_bits(io_tree, start, end, EXTENT_NODATASUM, |
| 2048 | GFP_NOFS); |
| 2049 | return 0; |
| 2050 | } |
| 2051 | |
Yan | c2e639f | 2008-02-04 08:57:25 -0500 | [diff] [blame] | 2052 | if (state && state->start == start) { |
Chris Mason | 70dec80 | 2008-01-29 09:59:12 -0500 | [diff] [blame] | 2053 | private = state->private; |
| 2054 | ret = 0; |
| 2055 | } else { |
| 2056 | ret = get_state_private(io_tree, start, &private); |
| 2057 | } |
Cong Wang | 7ac687d | 2011-11-25 23:14:28 +0800 | [diff] [blame] | 2058 | kaddr = kmap_atomic(page); |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2059 | if (ret) |
Chris Mason | 07157aa | 2007-08-30 08:50:51 -0400 | [diff] [blame] | 2060 | goto zeroit; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2061 | |
Chris Mason | ff79f81 | 2007-10-15 16:22:25 -0400 | [diff] [blame] | 2062 | csum = btrfs_csum_data(root, kaddr + offset, csum, end - start + 1); |
| 2063 | btrfs_csum_final(csum, (char *)&csum); |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2064 | if (csum != private) |
Chris Mason | 07157aa | 2007-08-30 08:50:51 -0400 | [diff] [blame] | 2065 | goto zeroit; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2066 | |
Cong Wang | 7ac687d | 2011-11-25 23:14:28 +0800 | [diff] [blame] | 2067 | kunmap_atomic(kaddr); |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 2068 | good: |
Chris Mason | 07157aa | 2007-08-30 08:50:51 -0400 | [diff] [blame] | 2069 | return 0; |
| 2070 | |
| 2071 | zeroit: |
Chris Mason | 945d896 | 2011-05-22 12:33:42 -0400 | [diff] [blame] | 2072 | 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] | 2073 | "private %llu\n", |
| 2074 | (unsigned long long)btrfs_ino(page->mapping->host), |
Chris Mason | 193f284 | 2009-04-27 07:29:05 -0400 | [diff] [blame] | 2075 | (unsigned long long)start, csum, |
| 2076 | (unsigned long long)private); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 2077 | memset(kaddr + offset, 1, end - start + 1); |
| 2078 | flush_dcache_page(page); |
Cong Wang | 7ac687d | 2011-11-25 23:14:28 +0800 | [diff] [blame] | 2079 | kunmap_atomic(kaddr); |
Chris Mason | 3b95151 | 2008-04-17 11:29:12 -0400 | [diff] [blame] | 2080 | if (private == 0) |
| 2081 | return 0; |
Chris Mason | 7e38326 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 2082 | return -EIO; |
Chris Mason | 07157aa | 2007-08-30 08:50:51 -0400 | [diff] [blame] | 2083 | } |
Chris Mason | b888db2b | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 2084 | |
Yan, Zheng | 24bbcf0 | 2009-11-12 09:36:34 +0000 | [diff] [blame] | 2085 | struct delayed_iput { |
| 2086 | struct list_head list; |
| 2087 | struct inode *inode; |
| 2088 | }; |
| 2089 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2090 | /* JDM: If this is fs-wide, why can't we add a pointer to |
| 2091 | * btrfs_inode instead and avoid the allocation? */ |
Yan, Zheng | 24bbcf0 | 2009-11-12 09:36:34 +0000 | [diff] [blame] | 2092 | void btrfs_add_delayed_iput(struct inode *inode) |
| 2093 | { |
| 2094 | struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info; |
| 2095 | struct delayed_iput *delayed; |
| 2096 | |
| 2097 | if (atomic_add_unless(&inode->i_count, -1, 1)) |
| 2098 | return; |
| 2099 | |
| 2100 | delayed = kmalloc(sizeof(*delayed), GFP_NOFS | __GFP_NOFAIL); |
| 2101 | delayed->inode = inode; |
| 2102 | |
| 2103 | spin_lock(&fs_info->delayed_iput_lock); |
| 2104 | list_add_tail(&delayed->list, &fs_info->delayed_iputs); |
| 2105 | spin_unlock(&fs_info->delayed_iput_lock); |
| 2106 | } |
| 2107 | |
| 2108 | void btrfs_run_delayed_iputs(struct btrfs_root *root) |
| 2109 | { |
| 2110 | LIST_HEAD(list); |
| 2111 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 2112 | struct delayed_iput *delayed; |
| 2113 | int empty; |
| 2114 | |
| 2115 | spin_lock(&fs_info->delayed_iput_lock); |
| 2116 | empty = list_empty(&fs_info->delayed_iputs); |
| 2117 | spin_unlock(&fs_info->delayed_iput_lock); |
| 2118 | if (empty) |
| 2119 | return; |
| 2120 | |
Yan, Zheng | 24bbcf0 | 2009-11-12 09:36:34 +0000 | [diff] [blame] | 2121 | spin_lock(&fs_info->delayed_iput_lock); |
| 2122 | list_splice_init(&fs_info->delayed_iputs, &list); |
| 2123 | spin_unlock(&fs_info->delayed_iput_lock); |
| 2124 | |
| 2125 | while (!list_empty(&list)) { |
| 2126 | delayed = list_entry(list.next, struct delayed_iput, list); |
| 2127 | list_del(&delayed->list); |
| 2128 | iput(delayed->inode); |
| 2129 | kfree(delayed); |
| 2130 | } |
Yan, Zheng | 24bbcf0 | 2009-11-12 09:36:34 +0000 | [diff] [blame] | 2131 | } |
| 2132 | |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2133 | enum btrfs_orphan_cleanup_state { |
| 2134 | ORPHAN_CLEANUP_STARTED = 1, |
| 2135 | ORPHAN_CLEANUP_DONE = 2, |
| 2136 | }; |
| 2137 | |
| 2138 | /* |
Justin P. Mattock | 42b2aa8 | 2011-11-28 20:31:00 -0800 | [diff] [blame] | 2139 | * This is called in transaction commit time. If there are no orphan |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2140 | * files in the subvolume, it removes orphan item and frees block_rsv |
| 2141 | * structure. |
| 2142 | */ |
| 2143 | void btrfs_orphan_commit_root(struct btrfs_trans_handle *trans, |
| 2144 | struct btrfs_root *root) |
| 2145 | { |
Josef Bacik | 90290e1 | 2011-12-02 15:44:12 -0500 | [diff] [blame] | 2146 | struct btrfs_block_rsv *block_rsv; |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2147 | int ret; |
| 2148 | |
Josef Bacik | 8a35d95 | 2012-05-23 14:26:42 -0400 | [diff] [blame] | 2149 | if (atomic_read(&root->orphan_inodes) || |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2150 | root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE) |
| 2151 | return; |
| 2152 | |
Josef Bacik | 90290e1 | 2011-12-02 15:44:12 -0500 | [diff] [blame] | 2153 | spin_lock(&root->orphan_lock); |
Josef Bacik | 8a35d95 | 2012-05-23 14:26:42 -0400 | [diff] [blame] | 2154 | if (atomic_read(&root->orphan_inodes)) { |
Josef Bacik | 90290e1 | 2011-12-02 15:44:12 -0500 | [diff] [blame] | 2155 | spin_unlock(&root->orphan_lock); |
| 2156 | return; |
| 2157 | } |
| 2158 | |
| 2159 | if (root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE) { |
| 2160 | spin_unlock(&root->orphan_lock); |
| 2161 | return; |
| 2162 | } |
| 2163 | |
| 2164 | block_rsv = root->orphan_block_rsv; |
| 2165 | root->orphan_block_rsv = NULL; |
| 2166 | spin_unlock(&root->orphan_lock); |
| 2167 | |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2168 | if (root->orphan_item_inserted && |
| 2169 | btrfs_root_refs(&root->root_item) > 0) { |
| 2170 | ret = btrfs_del_orphan_item(trans, root->fs_info->tree_root, |
| 2171 | root->root_key.objectid); |
| 2172 | BUG_ON(ret); |
| 2173 | root->orphan_item_inserted = 0; |
| 2174 | } |
| 2175 | |
Josef Bacik | 90290e1 | 2011-12-02 15:44:12 -0500 | [diff] [blame] | 2176 | if (block_rsv) { |
| 2177 | WARN_ON(block_rsv->size > 0); |
| 2178 | btrfs_free_block_rsv(root, block_rsv); |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2179 | } |
| 2180 | } |
| 2181 | |
| 2182 | /* |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2183 | * This creates an orphan entry for the given inode in case something goes |
| 2184 | * wrong in the middle of an unlink/truncate. |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2185 | * |
| 2186 | * NOTE: caller of this function should reserve 5 units of metadata for |
| 2187 | * this function. |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2188 | */ |
| 2189 | int btrfs_orphan_add(struct btrfs_trans_handle *trans, struct inode *inode) |
| 2190 | { |
| 2191 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2192 | struct btrfs_block_rsv *block_rsv = NULL; |
| 2193 | int reserve = 0; |
| 2194 | int insert = 0; |
| 2195 | int ret; |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2196 | |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2197 | if (!root->orphan_block_rsv) { |
Miao Xie | 66d8f3d | 2012-09-06 04:02:28 -0600 | [diff] [blame] | 2198 | block_rsv = btrfs_alloc_block_rsv(root, BTRFS_BLOCK_RSV_TEMP); |
Tsutomu Itoh | b532402 | 2011-07-19 07:27:20 +0000 | [diff] [blame] | 2199 | if (!block_rsv) |
| 2200 | return -ENOMEM; |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2201 | } |
| 2202 | |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2203 | spin_lock(&root->orphan_lock); |
| 2204 | if (!root->orphan_block_rsv) { |
| 2205 | root->orphan_block_rsv = block_rsv; |
| 2206 | } else if (block_rsv) { |
| 2207 | btrfs_free_block_rsv(root, block_rsv); |
| 2208 | block_rsv = NULL; |
| 2209 | } |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2210 | |
Josef Bacik | 8a35d95 | 2012-05-23 14:26:42 -0400 | [diff] [blame] | 2211 | if (!test_and_set_bit(BTRFS_INODE_HAS_ORPHAN_ITEM, |
| 2212 | &BTRFS_I(inode)->runtime_flags)) { |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2213 | #if 0 |
| 2214 | /* |
| 2215 | * For proper ENOSPC handling, we should do orphan |
| 2216 | * cleanup when mounting. But this introduces backward |
| 2217 | * compatibility issue. |
| 2218 | */ |
| 2219 | if (!xchg(&root->orphan_item_inserted, 1)) |
| 2220 | insert = 2; |
| 2221 | else |
| 2222 | insert = 1; |
| 2223 | #endif |
| 2224 | insert = 1; |
Miao Xie | 321f0e7 | 2012-08-28 22:13:02 -0600 | [diff] [blame] | 2225 | atomic_inc(&root->orphan_inodes); |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2226 | } |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2227 | |
Josef Bacik | 72ac3c0 | 2012-05-23 14:13:11 -0400 | [diff] [blame] | 2228 | if (!test_and_set_bit(BTRFS_INODE_ORPHAN_META_RESERVED, |
| 2229 | &BTRFS_I(inode)->runtime_flags)) |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2230 | reserve = 1; |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2231 | spin_unlock(&root->orphan_lock); |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2232 | |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2233 | /* grab metadata reservation from transaction handle */ |
| 2234 | if (reserve) { |
| 2235 | ret = btrfs_orphan_reserve_metadata(trans, inode); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2236 | BUG_ON(ret); /* -ENOSPC in reservation; Logic error? JDM */ |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2237 | } |
| 2238 | |
| 2239 | /* insert an orphan item to track this unlinked/truncated file */ |
| 2240 | if (insert >= 1) { |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 2241 | ret = btrfs_insert_orphan_item(trans, root, btrfs_ino(inode)); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2242 | if (ret && ret != -EEXIST) { |
Josef Bacik | 8a35d95 | 2012-05-23 14:26:42 -0400 | [diff] [blame] | 2243 | clear_bit(BTRFS_INODE_HAS_ORPHAN_ITEM, |
| 2244 | &BTRFS_I(inode)->runtime_flags); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2245 | btrfs_abort_transaction(trans, root, ret); |
| 2246 | return ret; |
| 2247 | } |
| 2248 | ret = 0; |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2249 | } |
| 2250 | |
| 2251 | /* insert an orphan item to track subvolume contains orphan files */ |
| 2252 | if (insert >= 2) { |
| 2253 | ret = btrfs_insert_orphan_item(trans, root->fs_info->tree_root, |
| 2254 | root->root_key.objectid); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2255 | if (ret && ret != -EEXIST) { |
| 2256 | btrfs_abort_transaction(trans, root, ret); |
| 2257 | return ret; |
| 2258 | } |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2259 | } |
| 2260 | return 0; |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2261 | } |
| 2262 | |
| 2263 | /* |
| 2264 | * We have done the truncate/delete so we can go ahead and remove the orphan |
| 2265 | * item for this particular inode. |
| 2266 | */ |
| 2267 | int btrfs_orphan_del(struct btrfs_trans_handle *trans, struct inode *inode) |
| 2268 | { |
| 2269 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2270 | int delete_item = 0; |
| 2271 | int release_rsv = 0; |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2272 | int ret = 0; |
| 2273 | |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2274 | spin_lock(&root->orphan_lock); |
Josef Bacik | 8a35d95 | 2012-05-23 14:26:42 -0400 | [diff] [blame] | 2275 | if (test_and_clear_bit(BTRFS_INODE_HAS_ORPHAN_ITEM, |
| 2276 | &BTRFS_I(inode)->runtime_flags)) |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2277 | delete_item = 1; |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2278 | |
Josef Bacik | 72ac3c0 | 2012-05-23 14:13:11 -0400 | [diff] [blame] | 2279 | if (test_and_clear_bit(BTRFS_INODE_ORPHAN_META_RESERVED, |
| 2280 | &BTRFS_I(inode)->runtime_flags)) |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2281 | release_rsv = 1; |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2282 | spin_unlock(&root->orphan_lock); |
| 2283 | |
| 2284 | if (trans && delete_item) { |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 2285 | ret = btrfs_del_orphan_item(trans, root, btrfs_ino(inode)); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2286 | BUG_ON(ret); /* -ENOMEM or corruption (JDM: Recheck) */ |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2287 | } |
| 2288 | |
Josef Bacik | 8a35d95 | 2012-05-23 14:26:42 -0400 | [diff] [blame] | 2289 | if (release_rsv) { |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2290 | btrfs_orphan_release_metadata(inode); |
Josef Bacik | 8a35d95 | 2012-05-23 14:26:42 -0400 | [diff] [blame] | 2291 | atomic_dec(&root->orphan_inodes); |
| 2292 | } |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2293 | |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2294 | return 0; |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2295 | } |
| 2296 | |
| 2297 | /* |
| 2298 | * this cleans up any orphans that may be left on the list from the last use |
| 2299 | * of this root. |
| 2300 | */ |
Josef Bacik | 66b4ffd | 2011-01-31 16:22:42 -0500 | [diff] [blame] | 2301 | int btrfs_orphan_cleanup(struct btrfs_root *root) |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2302 | { |
| 2303 | struct btrfs_path *path; |
| 2304 | struct extent_buffer *leaf; |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2305 | struct btrfs_key key, found_key; |
| 2306 | struct btrfs_trans_handle *trans; |
| 2307 | struct inode *inode; |
Josef Bacik | 8f6d7f4 | 2011-09-26 15:55:20 -0400 | [diff] [blame] | 2308 | u64 last_objectid = 0; |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2309 | int ret = 0, nr_unlink = 0, nr_truncate = 0; |
| 2310 | |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2311 | if (cmpxchg(&root->orphan_cleanup_state, 0, ORPHAN_CLEANUP_STARTED)) |
Josef Bacik | 66b4ffd | 2011-01-31 16:22:42 -0500 | [diff] [blame] | 2312 | return 0; |
Yan, Zheng | c71bf09 | 2009-11-12 09:34:40 +0000 | [diff] [blame] | 2313 | |
| 2314 | path = btrfs_alloc_path(); |
Josef Bacik | 66b4ffd | 2011-01-31 16:22:42 -0500 | [diff] [blame] | 2315 | if (!path) { |
| 2316 | ret = -ENOMEM; |
| 2317 | goto out; |
| 2318 | } |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2319 | path->reada = -1; |
| 2320 | |
| 2321 | key.objectid = BTRFS_ORPHAN_OBJECTID; |
| 2322 | btrfs_set_key_type(&key, BTRFS_ORPHAN_ITEM_KEY); |
| 2323 | key.offset = (u64)-1; |
| 2324 | |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2325 | while (1) { |
| 2326 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
Josef Bacik | 66b4ffd | 2011-01-31 16:22:42 -0500 | [diff] [blame] | 2327 | if (ret < 0) |
| 2328 | goto out; |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2329 | |
| 2330 | /* |
| 2331 | * 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] | 2332 | * 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] | 2333 | * find the key and see if we have stuff that matches |
| 2334 | */ |
| 2335 | if (ret > 0) { |
Josef Bacik | 66b4ffd | 2011-01-31 16:22:42 -0500 | [diff] [blame] | 2336 | ret = 0; |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2337 | if (path->slots[0] == 0) |
| 2338 | break; |
| 2339 | path->slots[0]--; |
| 2340 | } |
| 2341 | |
| 2342 | /* pull out the item */ |
| 2343 | leaf = path->nodes[0]; |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2344 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
| 2345 | |
| 2346 | /* make sure the item matches what we want */ |
| 2347 | if (found_key.objectid != BTRFS_ORPHAN_OBJECTID) |
| 2348 | break; |
| 2349 | if (btrfs_key_type(&found_key) != BTRFS_ORPHAN_ITEM_KEY) |
| 2350 | break; |
| 2351 | |
| 2352 | /* release the path since we're done with it */ |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2353 | btrfs_release_path(path); |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2354 | |
| 2355 | /* |
| 2356 | * this is where we are basically btrfs_lookup, without the |
| 2357 | * crossing root thing. we store the inode number in the |
| 2358 | * offset of the orphan item. |
| 2359 | */ |
Josef Bacik | 8f6d7f4 | 2011-09-26 15:55:20 -0400 | [diff] [blame] | 2360 | |
| 2361 | if (found_key.offset == last_objectid) { |
| 2362 | printk(KERN_ERR "btrfs: Error removing orphan entry, " |
| 2363 | "stopping orphan cleanup\n"); |
| 2364 | ret = -EINVAL; |
| 2365 | goto out; |
| 2366 | } |
| 2367 | |
| 2368 | last_objectid = found_key.offset; |
| 2369 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2370 | found_key.objectid = found_key.offset; |
| 2371 | found_key.type = BTRFS_INODE_ITEM_KEY; |
| 2372 | found_key.offset = 0; |
Josef Bacik | 73f7341 | 2009-12-04 17:38:27 +0000 | [diff] [blame] | 2373 | inode = btrfs_iget(root->fs_info->sb, &found_key, root, NULL); |
Josef Bacik | a8c9e57 | 2011-09-21 16:55:59 -0400 | [diff] [blame] | 2374 | ret = PTR_RET(inode); |
| 2375 | if (ret && ret != -ESTALE) |
Josef Bacik | 66b4ffd | 2011-01-31 16:22:42 -0500 | [diff] [blame] | 2376 | goto out; |
Josef Bacik | a8c9e57 | 2011-09-21 16:55:59 -0400 | [diff] [blame] | 2377 | |
Arne Jansen | f8e9e0b | 2011-12-14 20:12:02 -0500 | [diff] [blame] | 2378 | if (ret == -ESTALE && root == root->fs_info->tree_root) { |
| 2379 | struct btrfs_root *dead_root; |
| 2380 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 2381 | int is_dead_root = 0; |
| 2382 | |
| 2383 | /* |
| 2384 | * this is an orphan in the tree root. Currently these |
| 2385 | * could come from 2 sources: |
| 2386 | * a) a snapshot deletion in progress |
| 2387 | * b) a free space cache inode |
| 2388 | * We need to distinguish those two, as the snapshot |
| 2389 | * orphan must not get deleted. |
| 2390 | * find_dead_roots already ran before us, so if this |
| 2391 | * is a snapshot deletion, we should find the root |
| 2392 | * in the dead_roots list |
| 2393 | */ |
| 2394 | spin_lock(&fs_info->trans_lock); |
| 2395 | list_for_each_entry(dead_root, &fs_info->dead_roots, |
| 2396 | root_list) { |
| 2397 | if (dead_root->root_key.objectid == |
| 2398 | found_key.objectid) { |
| 2399 | is_dead_root = 1; |
| 2400 | break; |
| 2401 | } |
| 2402 | } |
| 2403 | spin_unlock(&fs_info->trans_lock); |
| 2404 | if (is_dead_root) { |
| 2405 | /* prevent this orphan from being found again */ |
| 2406 | key.offset = found_key.objectid - 1; |
| 2407 | continue; |
| 2408 | } |
| 2409 | } |
Josef Bacik | a8c9e57 | 2011-09-21 16:55:59 -0400 | [diff] [blame] | 2410 | /* |
| 2411 | * Inode is already gone but the orphan item is still there, |
| 2412 | * kill the orphan item. |
| 2413 | */ |
| 2414 | if (ret == -ESTALE) { |
| 2415 | trans = btrfs_start_transaction(root, 1); |
| 2416 | if (IS_ERR(trans)) { |
| 2417 | ret = PTR_ERR(trans); |
| 2418 | goto out; |
| 2419 | } |
Josef Bacik | 8a35d95 | 2012-05-23 14:26:42 -0400 | [diff] [blame] | 2420 | printk(KERN_ERR "auto deleting %Lu\n", |
| 2421 | found_key.objectid); |
Josef Bacik | a8c9e57 | 2011-09-21 16:55:59 -0400 | [diff] [blame] | 2422 | ret = btrfs_del_orphan_item(trans, root, |
| 2423 | found_key.objectid); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2424 | BUG_ON(ret); /* -ENOMEM or corruption (JDM: Recheck) */ |
Josef Bacik | a8c9e57 | 2011-09-21 16:55:59 -0400 | [diff] [blame] | 2425 | btrfs_end_transaction(trans, root); |
| 2426 | continue; |
Josef Bacik | 66b4ffd | 2011-01-31 16:22:42 -0500 | [diff] [blame] | 2427 | } |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2428 | |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2429 | /* |
| 2430 | * add this inode to the orphan list so btrfs_orphan_del does |
| 2431 | * the proper thing when we hit it |
| 2432 | */ |
Josef Bacik | 8a35d95 | 2012-05-23 14:26:42 -0400 | [diff] [blame] | 2433 | set_bit(BTRFS_INODE_HAS_ORPHAN_ITEM, |
| 2434 | &BTRFS_I(inode)->runtime_flags); |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2435 | |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2436 | /* if we have links, this was a truncate, lets do that */ |
| 2437 | if (inode->i_nlink) { |
Josef Bacik | a41ad39 | 2011-01-31 15:30:16 -0500 | [diff] [blame] | 2438 | if (!S_ISREG(inode->i_mode)) { |
| 2439 | WARN_ON(1); |
| 2440 | iput(inode); |
| 2441 | continue; |
| 2442 | } |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2443 | nr_truncate++; |
Josef Bacik | 66b4ffd | 2011-01-31 16:22:42 -0500 | [diff] [blame] | 2444 | ret = btrfs_truncate(inode); |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2445 | } else { |
| 2446 | nr_unlink++; |
| 2447 | } |
| 2448 | |
| 2449 | /* this will do delete_inode and everything for us */ |
| 2450 | iput(inode); |
Josef Bacik | 66b4ffd | 2011-01-31 16:22:42 -0500 | [diff] [blame] | 2451 | if (ret) |
| 2452 | goto out; |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2453 | } |
Miao Xie | 3254c87 | 2011-11-10 20:45:05 -0500 | [diff] [blame] | 2454 | /* release the path since we're done with it */ |
| 2455 | btrfs_release_path(path); |
| 2456 | |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2457 | root->orphan_cleanup_state = ORPHAN_CLEANUP_DONE; |
| 2458 | |
| 2459 | if (root->orphan_block_rsv) |
| 2460 | btrfs_block_rsv_release(root, root->orphan_block_rsv, |
| 2461 | (u64)-1); |
| 2462 | |
| 2463 | if (root->orphan_block_rsv || root->orphan_item_inserted) { |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 2464 | trans = btrfs_join_transaction(root); |
Josef Bacik | 66b4ffd | 2011-01-31 16:22:42 -0500 | [diff] [blame] | 2465 | if (!IS_ERR(trans)) |
| 2466 | btrfs_end_transaction(trans, root); |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2467 | } |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2468 | |
| 2469 | if (nr_unlink) |
| 2470 | printk(KERN_INFO "btrfs: unlinked %d orphans\n", nr_unlink); |
| 2471 | if (nr_truncate) |
| 2472 | printk(KERN_INFO "btrfs: truncated %d orphans\n", nr_truncate); |
Josef Bacik | 66b4ffd | 2011-01-31 16:22:42 -0500 | [diff] [blame] | 2473 | |
| 2474 | out: |
| 2475 | if (ret) |
| 2476 | printk(KERN_CRIT "btrfs: could not do orphan cleanup %d\n", ret); |
| 2477 | btrfs_free_path(path); |
| 2478 | return ret; |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2479 | } |
| 2480 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 2481 | /* |
Chris Mason | 46a53cc | 2009-04-27 11:47:50 -0400 | [diff] [blame] | 2482 | * very simple check to peek ahead in the leaf looking for xattrs. If we |
| 2483 | * don't find any xattrs, we know there can't be any acls. |
| 2484 | * |
| 2485 | * slot is the slot the inode is in, objectid is the objectid of the inode |
| 2486 | */ |
| 2487 | static noinline int acls_after_inode_item(struct extent_buffer *leaf, |
| 2488 | int slot, u64 objectid) |
| 2489 | { |
| 2490 | u32 nritems = btrfs_header_nritems(leaf); |
| 2491 | struct btrfs_key found_key; |
| 2492 | int scanned = 0; |
| 2493 | |
| 2494 | slot++; |
| 2495 | while (slot < nritems) { |
| 2496 | btrfs_item_key_to_cpu(leaf, &found_key, slot); |
| 2497 | |
| 2498 | /* we found a different objectid, there must not be acls */ |
| 2499 | if (found_key.objectid != objectid) |
| 2500 | return 0; |
| 2501 | |
| 2502 | /* we found an xattr, assume we've got an acl */ |
| 2503 | if (found_key.type == BTRFS_XATTR_ITEM_KEY) |
| 2504 | return 1; |
| 2505 | |
| 2506 | /* |
| 2507 | * we found a key greater than an xattr key, there can't |
| 2508 | * be any acls later on |
| 2509 | */ |
| 2510 | if (found_key.type > BTRFS_XATTR_ITEM_KEY) |
| 2511 | return 0; |
| 2512 | |
| 2513 | slot++; |
| 2514 | scanned++; |
| 2515 | |
| 2516 | /* |
| 2517 | * it goes inode, inode backrefs, xattrs, extents, |
| 2518 | * so if there are a ton of hard links to an inode there can |
| 2519 | * be a lot of backrefs. Don't waste time searching too hard, |
| 2520 | * this is just an optimization |
| 2521 | */ |
| 2522 | if (scanned >= 8) |
| 2523 | break; |
| 2524 | } |
| 2525 | /* we hit the end of the leaf before we found an xattr or |
| 2526 | * something larger than an xattr. We have to assume the inode |
| 2527 | * has acls |
| 2528 | */ |
| 2529 | return 1; |
| 2530 | } |
| 2531 | |
| 2532 | /* |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 2533 | * read an inode from the btree into the in-memory inode |
| 2534 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2535 | static void btrfs_read_locked_inode(struct inode *inode) |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2536 | { |
| 2537 | struct btrfs_path *path; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2538 | struct extent_buffer *leaf; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2539 | struct btrfs_inode_item *inode_item; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 2540 | struct btrfs_timespec *tspec; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2541 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 2542 | struct btrfs_key location; |
Chris Mason | 46a53cc | 2009-04-27 11:47:50 -0400 | [diff] [blame] | 2543 | int maybe_acls; |
Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 2544 | u32 rdev; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2545 | int ret; |
Miao Xie | 2f7e33d | 2011-06-23 07:27:13 +0000 | [diff] [blame] | 2546 | bool filled = false; |
| 2547 | |
| 2548 | ret = btrfs_fill_inode(inode, &rdev); |
| 2549 | if (!ret) |
| 2550 | filled = true; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2551 | |
| 2552 | path = btrfs_alloc_path(); |
Mark Fasheh | 1748f84 | 2011-07-12 11:25:31 -0700 | [diff] [blame] | 2553 | if (!path) |
| 2554 | goto make_bad; |
| 2555 | |
Josef Bacik | d90c732 | 2011-05-17 09:50:54 -0400 | [diff] [blame] | 2556 | path->leave_spinning = 1; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2557 | memcpy(&location, &BTRFS_I(inode)->location, sizeof(location)); |
Chris Mason | dc17ff8 | 2008-01-08 15:46:30 -0500 | [diff] [blame] | 2558 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2559 | ret = btrfs_lookup_inode(NULL, root, path, &location, 0); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2560 | if (ret) |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2561 | goto make_bad; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2562 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2563 | leaf = path->nodes[0]; |
Miao Xie | 2f7e33d | 2011-06-23 07:27:13 +0000 | [diff] [blame] | 2564 | |
| 2565 | if (filled) |
| 2566 | goto cache_acl; |
| 2567 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2568 | inode_item = btrfs_item_ptr(leaf, path->slots[0], |
| 2569 | struct btrfs_inode_item); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2570 | inode->i_mode = btrfs_inode_mode(leaf, inode_item); |
Miklos Szeredi | bfe8684 | 2011-10-28 14:13:29 +0200 | [diff] [blame] | 2571 | set_nlink(inode, btrfs_inode_nlink(leaf, inode_item)); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2572 | inode->i_uid = btrfs_inode_uid(leaf, inode_item); |
| 2573 | inode->i_gid = btrfs_inode_gid(leaf, inode_item); |
Chris Mason | dbe674a | 2008-07-17 12:54:05 -0400 | [diff] [blame] | 2574 | btrfs_i_size_write(inode, btrfs_inode_size(leaf, inode_item)); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2575 | |
| 2576 | tspec = btrfs_inode_atime(inode_item); |
| 2577 | inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec); |
| 2578 | inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec); |
| 2579 | |
| 2580 | tspec = btrfs_inode_mtime(inode_item); |
| 2581 | inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec); |
| 2582 | inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec); |
| 2583 | |
| 2584 | tspec = btrfs_inode_ctime(inode_item); |
| 2585 | inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec); |
| 2586 | inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec); |
| 2587 | |
Yan Zheng | a76a3cd | 2008-10-09 11:46:29 -0400 | [diff] [blame] | 2588 | inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item)); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2589 | BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item); |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 2590 | BTRFS_I(inode)->last_trans = btrfs_inode_transid(leaf, inode_item); |
| 2591 | |
| 2592 | /* |
| 2593 | * If we were modified in the current generation and evicted from memory |
| 2594 | * and then re-read we need to do a full sync since we don't have any |
| 2595 | * idea about which extents were modified before we were evicted from |
| 2596 | * cache. |
| 2597 | */ |
| 2598 | if (BTRFS_I(inode)->last_trans == root->fs_info->generation) |
| 2599 | set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, |
| 2600 | &BTRFS_I(inode)->runtime_flags); |
| 2601 | |
Josef Bacik | 0c4d2d9 | 2012-04-05 15:03:02 -0400 | [diff] [blame] | 2602 | inode->i_version = btrfs_inode_sequence(leaf, inode_item); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2603 | inode->i_generation = BTRFS_I(inode)->generation; |
Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 2604 | inode->i_rdev = 0; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2605 | rdev = btrfs_inode_rdev(leaf, inode_item); |
| 2606 | |
Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 2607 | BTRFS_I(inode)->index_cnt = (u64)-1; |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 2608 | BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item); |
Miao Xie | 2f7e33d | 2011-06-23 07:27:13 +0000 | [diff] [blame] | 2609 | cache_acl: |
Chris Mason | 46a53cc | 2009-04-27 11:47:50 -0400 | [diff] [blame] | 2610 | /* |
| 2611 | * try to precache a NULL acl entry for files that don't have |
| 2612 | * any xattrs or acls |
| 2613 | */ |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 2614 | maybe_acls = acls_after_inode_item(leaf, path->slots[0], |
| 2615 | btrfs_ino(inode)); |
Al Viro | 72c0490 | 2009-06-24 16:58:48 -0400 | [diff] [blame] | 2616 | if (!maybe_acls) |
| 2617 | cache_no_acl(inode); |
Chris Mason | 46a53cc | 2009-04-27 11:47:50 -0400 | [diff] [blame] | 2618 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2619 | btrfs_free_path(path); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2620 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2621 | switch (inode->i_mode & S_IFMT) { |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2622 | case S_IFREG: |
| 2623 | inode->i_mapping->a_ops = &btrfs_aops; |
Chris Mason | 0416008 | 2008-03-26 10:28:07 -0400 | [diff] [blame] | 2624 | inode->i_mapping->backing_dev_info = &root->fs_info->bdi; |
Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 2625 | BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2626 | inode->i_fop = &btrfs_file_operations; |
| 2627 | inode->i_op = &btrfs_file_inode_operations; |
| 2628 | break; |
| 2629 | case S_IFDIR: |
| 2630 | inode->i_fop = &btrfs_dir_file_operations; |
| 2631 | if (root == root->fs_info->tree_root) |
| 2632 | inode->i_op = &btrfs_dir_ro_inode_operations; |
| 2633 | else |
| 2634 | inode->i_op = &btrfs_dir_inode_operations; |
| 2635 | break; |
| 2636 | case S_IFLNK: |
| 2637 | inode->i_op = &btrfs_symlink_inode_operations; |
| 2638 | inode->i_mapping->a_ops = &btrfs_symlink_aops; |
Chris Mason | 0416008 | 2008-03-26 10:28:07 -0400 | [diff] [blame] | 2639 | inode->i_mapping->backing_dev_info = &root->fs_info->bdi; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2640 | break; |
Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 2641 | default: |
Jim Owens | 0279b4c | 2009-02-04 09:29:13 -0500 | [diff] [blame] | 2642 | inode->i_op = &btrfs_special_inode_operations; |
Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 2643 | init_special_inode(inode, inode->i_mode, rdev); |
| 2644 | break; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2645 | } |
Christoph Hellwig | 6cbff00 | 2009-04-17 10:37:41 +0200 | [diff] [blame] | 2646 | |
| 2647 | btrfs_update_iflags(inode); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2648 | return; |
| 2649 | |
| 2650 | make_bad: |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2651 | btrfs_free_path(path); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2652 | make_bad_inode(inode); |
| 2653 | } |
| 2654 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 2655 | /* |
| 2656 | * given a leaf and an inode, copy the inode fields into the leaf |
| 2657 | */ |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2658 | static void fill_inode_item(struct btrfs_trans_handle *trans, |
| 2659 | struct extent_buffer *leaf, |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2660 | struct btrfs_inode_item *item, |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2661 | struct inode *inode) |
| 2662 | { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2663 | btrfs_set_inode_uid(leaf, item, inode->i_uid); |
| 2664 | btrfs_set_inode_gid(leaf, item, inode->i_gid); |
Chris Mason | dbe674a | 2008-07-17 12:54:05 -0400 | [diff] [blame] | 2665 | btrfs_set_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2666 | btrfs_set_inode_mode(leaf, item, inode->i_mode); |
| 2667 | btrfs_set_inode_nlink(leaf, item, inode->i_nlink); |
| 2668 | |
| 2669 | btrfs_set_timespec_sec(leaf, btrfs_inode_atime(item), |
| 2670 | inode->i_atime.tv_sec); |
| 2671 | btrfs_set_timespec_nsec(leaf, btrfs_inode_atime(item), |
| 2672 | inode->i_atime.tv_nsec); |
| 2673 | |
| 2674 | btrfs_set_timespec_sec(leaf, btrfs_inode_mtime(item), |
| 2675 | inode->i_mtime.tv_sec); |
| 2676 | btrfs_set_timespec_nsec(leaf, btrfs_inode_mtime(item), |
| 2677 | inode->i_mtime.tv_nsec); |
| 2678 | |
| 2679 | btrfs_set_timespec_sec(leaf, btrfs_inode_ctime(item), |
| 2680 | inode->i_ctime.tv_sec); |
| 2681 | btrfs_set_timespec_nsec(leaf, btrfs_inode_ctime(item), |
| 2682 | inode->i_ctime.tv_nsec); |
| 2683 | |
Yan Zheng | a76a3cd | 2008-10-09 11:46:29 -0400 | [diff] [blame] | 2684 | btrfs_set_inode_nbytes(leaf, item, inode_get_bytes(inode)); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2685 | btrfs_set_inode_generation(leaf, item, BTRFS_I(inode)->generation); |
Josef Bacik | 0c4d2d9 | 2012-04-05 15:03:02 -0400 | [diff] [blame] | 2686 | btrfs_set_inode_sequence(leaf, item, inode->i_version); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2687 | btrfs_set_inode_transid(leaf, item, trans->transid); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2688 | btrfs_set_inode_rdev(leaf, item, inode->i_rdev); |
Yan | b98b676 | 2008-01-08 15:54:37 -0500 | [diff] [blame] | 2689 | btrfs_set_inode_flags(leaf, item, BTRFS_I(inode)->flags); |
Josef Bacik | d82a6f1d | 2011-05-11 15:26:06 -0400 | [diff] [blame] | 2690 | btrfs_set_inode_block_group(leaf, item, 0); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2691 | } |
| 2692 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 2693 | /* |
| 2694 | * copy everything in the in-memory inode into the btree. |
| 2695 | */ |
Chris Mason | 2115133 | 2011-11-10 20:39:08 -0500 | [diff] [blame] | 2696 | static noinline int btrfs_update_inode_item(struct btrfs_trans_handle *trans, |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2697 | struct btrfs_root *root, struct inode *inode) |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2698 | { |
| 2699 | struct btrfs_inode_item *inode_item; |
| 2700 | struct btrfs_path *path; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2701 | struct extent_buffer *leaf; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2702 | int ret; |
| 2703 | |
| 2704 | path = btrfs_alloc_path(); |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 2705 | if (!path) |
| 2706 | return -ENOMEM; |
| 2707 | |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 2708 | path->leave_spinning = 1; |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 2709 | ret = btrfs_lookup_inode(trans, root, path, &BTRFS_I(inode)->location, |
| 2710 | 1); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2711 | if (ret) { |
| 2712 | if (ret > 0) |
| 2713 | ret = -ENOENT; |
| 2714 | goto failed; |
| 2715 | } |
| 2716 | |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 2717 | btrfs_unlock_up_safe(path, 1); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2718 | leaf = path->nodes[0]; |
| 2719 | inode_item = btrfs_item_ptr(leaf, path->slots[0], |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 2720 | struct btrfs_inode_item); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2721 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2722 | fill_inode_item(trans, leaf, inode_item, inode); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2723 | btrfs_mark_buffer_dirty(leaf); |
Josef Bacik | 15ee9bc | 2007-08-10 16:22:09 -0400 | [diff] [blame] | 2724 | btrfs_set_inode_last_trans(trans, inode); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2725 | ret = 0; |
| 2726 | failed: |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2727 | btrfs_free_path(path); |
| 2728 | return ret; |
| 2729 | } |
| 2730 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 2731 | /* |
Chris Mason | 2115133 | 2011-11-10 20:39:08 -0500 | [diff] [blame] | 2732 | * copy everything in the in-memory inode into the btree. |
| 2733 | */ |
| 2734 | noinline int btrfs_update_inode(struct btrfs_trans_handle *trans, |
| 2735 | struct btrfs_root *root, struct inode *inode) |
| 2736 | { |
| 2737 | int ret; |
| 2738 | |
| 2739 | /* |
| 2740 | * If the inode is a free space inode, we can deadlock during commit |
| 2741 | * if we put it into the delayed code. |
| 2742 | * |
| 2743 | * The data relocation inode should also be directly updated |
| 2744 | * without delay |
| 2745 | */ |
Liu Bo | 83eea1f | 2012-07-10 05:28:39 -0600 | [diff] [blame] | 2746 | if (!btrfs_is_free_space_inode(inode) |
Chris Mason | 2115133 | 2011-11-10 20:39:08 -0500 | [diff] [blame] | 2747 | && root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID) { |
Alexander Block | 8ea05e3 | 2012-07-25 17:35:53 +0200 | [diff] [blame] | 2748 | btrfs_update_root_times(trans, root); |
| 2749 | |
Chris Mason | 2115133 | 2011-11-10 20:39:08 -0500 | [diff] [blame] | 2750 | ret = btrfs_delayed_update_inode(trans, root, inode); |
| 2751 | if (!ret) |
| 2752 | btrfs_set_inode_last_trans(trans, inode); |
| 2753 | return ret; |
| 2754 | } |
| 2755 | |
| 2756 | return btrfs_update_inode_item(trans, root, inode); |
| 2757 | } |
| 2758 | |
| 2759 | static noinline int btrfs_update_inode_fallback(struct btrfs_trans_handle *trans, |
| 2760 | struct btrfs_root *root, struct inode *inode) |
| 2761 | { |
| 2762 | int ret; |
| 2763 | |
| 2764 | ret = btrfs_update_inode(trans, root, inode); |
| 2765 | if (ret == -ENOSPC) |
| 2766 | return btrfs_update_inode_item(trans, root, inode); |
| 2767 | return ret; |
| 2768 | } |
| 2769 | |
| 2770 | /* |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 2771 | * unlink helper that gets used here in inode.c and in the tree logging |
| 2772 | * recovery code. It remove a link in a directory with a given name, and |
| 2773 | * also drops the back refs in the inode to the directory |
| 2774 | */ |
Al Viro | 9298679 | 2011-03-04 17:14:37 +0000 | [diff] [blame] | 2775 | static int __btrfs_unlink_inode(struct btrfs_trans_handle *trans, |
| 2776 | struct btrfs_root *root, |
| 2777 | struct inode *dir, struct inode *inode, |
| 2778 | const char *name, int name_len) |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2779 | { |
| 2780 | struct btrfs_path *path; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2781 | int ret = 0; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2782 | struct extent_buffer *leaf; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2783 | struct btrfs_dir_item *di; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2784 | struct btrfs_key key; |
Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 2785 | u64 index; |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 2786 | u64 ino = btrfs_ino(inode); |
| 2787 | u64 dir_ino = btrfs_ino(dir); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2788 | |
| 2789 | path = btrfs_alloc_path(); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 2790 | if (!path) { |
| 2791 | ret = -ENOMEM; |
Tsutomu Itoh | 554233a | 2011-02-03 03:16:25 +0000 | [diff] [blame] | 2792 | goto out; |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 2793 | } |
| 2794 | |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 2795 | path->leave_spinning = 1; |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 2796 | di = btrfs_lookup_dir_item(trans, root, path, dir_ino, |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2797 | name, name_len, -1); |
| 2798 | if (IS_ERR(di)) { |
| 2799 | ret = PTR_ERR(di); |
| 2800 | goto err; |
| 2801 | } |
| 2802 | if (!di) { |
| 2803 | ret = -ENOENT; |
| 2804 | goto err; |
| 2805 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2806 | leaf = path->nodes[0]; |
| 2807 | btrfs_dir_item_key_to_cpu(leaf, di, &key); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2808 | ret = btrfs_delete_one_dir_name(trans, root, path, di); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 2809 | if (ret) |
| 2810 | goto err; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2811 | btrfs_release_path(path); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2812 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 2813 | ret = btrfs_del_inode_ref(trans, root, name, name_len, ino, |
| 2814 | dir_ino, &index); |
Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 2815 | if (ret) { |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2816 | printk(KERN_INFO "btrfs failed to delete reference to %.*s, " |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 2817 | "inode %llu parent %llu\n", name_len, name, |
| 2818 | (unsigned long long)ino, (unsigned long long)dir_ino); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2819 | btrfs_abort_transaction(trans, root, ret); |
Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 2820 | goto err; |
| 2821 | } |
| 2822 | |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 2823 | ret = btrfs_delete_delayed_dir_index(trans, root, dir, index); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2824 | if (ret) { |
| 2825 | btrfs_abort_transaction(trans, root, ret); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2826 | goto err; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2827 | } |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2828 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2829 | ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len, |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 2830 | inode, dir_ino); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2831 | if (ret != 0 && ret != -ENOENT) { |
| 2832 | btrfs_abort_transaction(trans, root, ret); |
| 2833 | goto err; |
| 2834 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2835 | |
| 2836 | ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len, |
| 2837 | dir, index); |
Chris Mason | 6418c96 | 2010-10-30 07:34:24 -0400 | [diff] [blame] | 2838 | if (ret == -ENOENT) |
| 2839 | ret = 0; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2840 | err: |
| 2841 | btrfs_free_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2842 | if (ret) |
| 2843 | goto out; |
| 2844 | |
| 2845 | btrfs_i_size_write(dir, dir->i_size - name_len * 2); |
Josef Bacik | 0c4d2d9 | 2012-04-05 15:03:02 -0400 | [diff] [blame] | 2846 | inode_inc_iversion(inode); |
| 2847 | inode_inc_iversion(dir); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2848 | inode->i_ctime = dir->i_mtime = dir->i_ctime = CURRENT_TIME; |
Tsutomu Itoh | b995929 | 2012-06-25 21:25:22 -0600 | [diff] [blame] | 2849 | ret = btrfs_update_inode(trans, root, dir); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2850 | out: |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 2851 | return ret; |
| 2852 | } |
| 2853 | |
Al Viro | 9298679 | 2011-03-04 17:14:37 +0000 | [diff] [blame] | 2854 | int btrfs_unlink_inode(struct btrfs_trans_handle *trans, |
| 2855 | struct btrfs_root *root, |
| 2856 | struct inode *dir, struct inode *inode, |
| 2857 | const char *name, int name_len) |
| 2858 | { |
| 2859 | int ret; |
| 2860 | ret = __btrfs_unlink_inode(trans, root, dir, inode, name, name_len); |
| 2861 | if (!ret) { |
| 2862 | btrfs_drop_nlink(inode); |
| 2863 | ret = btrfs_update_inode(trans, root, inode); |
| 2864 | } |
| 2865 | return ret; |
| 2866 | } |
| 2867 | |
| 2868 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2869 | /* helper to check if there is any shared block in the path */ |
| 2870 | static int check_path_shared(struct btrfs_root *root, |
| 2871 | struct btrfs_path *path) |
| 2872 | { |
| 2873 | struct extent_buffer *eb; |
| 2874 | int level; |
Dan Carpenter | 0e4dcbef | 2010-06-01 08:23:11 +0000 | [diff] [blame] | 2875 | u64 refs = 1; |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2876 | |
| 2877 | for (level = 0; level < BTRFS_MAX_LEVEL; level++) { |
Josef Bacik | dedefd7 | 2011-01-24 21:43:18 +0000 | [diff] [blame] | 2878 | int ret; |
| 2879 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2880 | if (!path->nodes[level]) |
| 2881 | break; |
| 2882 | eb = path->nodes[level]; |
| 2883 | if (!btrfs_block_can_be_shared(root, eb)) |
| 2884 | continue; |
| 2885 | ret = btrfs_lookup_extent_info(NULL, root, eb->start, eb->len, |
| 2886 | &refs, NULL); |
| 2887 | if (refs > 1) |
| 2888 | return 1; |
| 2889 | } |
Josef Bacik | dedefd7 | 2011-01-24 21:43:18 +0000 | [diff] [blame] | 2890 | return 0; |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2891 | } |
| 2892 | |
| 2893 | /* |
| 2894 | * helper to start transaction for unlink and rmdir. |
| 2895 | * |
| 2896 | * unlink and rmdir are special in btrfs, they do not always free space. |
| 2897 | * so in enospc case, we should make sure they will free space before |
| 2898 | * allowing them to use the global metadata reservation. |
| 2899 | */ |
| 2900 | static struct btrfs_trans_handle *__unlink_start_trans(struct inode *dir, |
| 2901 | struct dentry *dentry) |
| 2902 | { |
| 2903 | struct btrfs_trans_handle *trans; |
| 2904 | struct btrfs_root *root = BTRFS_I(dir)->root; |
| 2905 | struct btrfs_path *path; |
| 2906 | struct btrfs_inode_ref *ref; |
| 2907 | struct btrfs_dir_item *di; |
| 2908 | struct inode *inode = dentry->d_inode; |
| 2909 | u64 index; |
| 2910 | int check_link = 1; |
| 2911 | int err = -ENOSPC; |
| 2912 | int ret; |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 2913 | u64 ino = btrfs_ino(inode); |
| 2914 | u64 dir_ino = btrfs_ino(dir); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2915 | |
Josef Bacik | e70bea5 | 2011-10-11 14:18:24 -0400 | [diff] [blame] | 2916 | /* |
| 2917 | * 1 for the possible orphan item |
| 2918 | * 1 for the dir item |
| 2919 | * 1 for the dir index |
| 2920 | * 1 for the inode ref |
| 2921 | * 1 for the inode ref in the tree log |
| 2922 | * 2 for the dir entries in the log |
| 2923 | * 1 for the inode |
| 2924 | */ |
| 2925 | trans = btrfs_start_transaction(root, 8); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2926 | if (!IS_ERR(trans) || PTR_ERR(trans) != -ENOSPC) |
| 2927 | return trans; |
| 2928 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 2929 | if (ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID) |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2930 | return ERR_PTR(-ENOSPC); |
| 2931 | |
| 2932 | /* check if there is someone else holds reference */ |
| 2933 | if (S_ISDIR(inode->i_mode) && atomic_read(&inode->i_count) > 1) |
| 2934 | return ERR_PTR(-ENOSPC); |
| 2935 | |
| 2936 | if (atomic_read(&inode->i_count) > 2) |
| 2937 | return ERR_PTR(-ENOSPC); |
| 2938 | |
| 2939 | if (xchg(&root->fs_info->enospc_unlink, 1)) |
| 2940 | return ERR_PTR(-ENOSPC); |
| 2941 | |
| 2942 | path = btrfs_alloc_path(); |
| 2943 | if (!path) { |
| 2944 | root->fs_info->enospc_unlink = 0; |
| 2945 | return ERR_PTR(-ENOMEM); |
| 2946 | } |
| 2947 | |
Josef Bacik | 3880a1b | 2011-10-14 14:46:51 -0400 | [diff] [blame] | 2948 | /* 1 for the orphan item */ |
| 2949 | trans = btrfs_start_transaction(root, 1); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2950 | if (IS_ERR(trans)) { |
| 2951 | btrfs_free_path(path); |
| 2952 | root->fs_info->enospc_unlink = 0; |
| 2953 | return trans; |
| 2954 | } |
| 2955 | |
| 2956 | path->skip_locking = 1; |
| 2957 | path->search_commit_root = 1; |
| 2958 | |
| 2959 | ret = btrfs_lookup_inode(trans, root, path, |
| 2960 | &BTRFS_I(dir)->location, 0); |
| 2961 | if (ret < 0) { |
| 2962 | err = ret; |
| 2963 | goto out; |
| 2964 | } |
| 2965 | if (ret == 0) { |
| 2966 | if (check_path_shared(root, path)) |
| 2967 | goto out; |
| 2968 | } else { |
| 2969 | check_link = 0; |
| 2970 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2971 | btrfs_release_path(path); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2972 | |
| 2973 | ret = btrfs_lookup_inode(trans, root, path, |
| 2974 | &BTRFS_I(inode)->location, 0); |
| 2975 | if (ret < 0) { |
| 2976 | err = ret; |
| 2977 | goto out; |
| 2978 | } |
| 2979 | if (ret == 0) { |
| 2980 | if (check_path_shared(root, path)) |
| 2981 | goto out; |
| 2982 | } else { |
| 2983 | check_link = 0; |
| 2984 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2985 | btrfs_release_path(path); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2986 | |
| 2987 | if (ret == 0 && S_ISREG(inode->i_mode)) { |
| 2988 | ret = btrfs_lookup_file_extent(trans, root, path, |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 2989 | ino, (u64)-1, 0); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2990 | if (ret < 0) { |
| 2991 | err = ret; |
| 2992 | goto out; |
| 2993 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2994 | BUG_ON(ret == 0); /* Corruption */ |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2995 | if (check_path_shared(root, path)) |
| 2996 | goto out; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2997 | btrfs_release_path(path); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 2998 | } |
| 2999 | |
| 3000 | if (!check_link) { |
| 3001 | err = 0; |
| 3002 | goto out; |
| 3003 | } |
| 3004 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3005 | di = btrfs_lookup_dir_item(trans, root, path, dir_ino, |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3006 | dentry->d_name.name, dentry->d_name.len, 0); |
| 3007 | if (IS_ERR(di)) { |
| 3008 | err = PTR_ERR(di); |
| 3009 | goto out; |
| 3010 | } |
| 3011 | if (di) { |
| 3012 | if (check_path_shared(root, path)) |
| 3013 | goto out; |
| 3014 | } else { |
| 3015 | err = 0; |
| 3016 | goto out; |
| 3017 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3018 | btrfs_release_path(path); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3019 | |
| 3020 | ref = btrfs_lookup_inode_ref(trans, root, path, |
| 3021 | dentry->d_name.name, dentry->d_name.len, |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3022 | ino, dir_ino, 0); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3023 | if (IS_ERR(ref)) { |
| 3024 | err = PTR_ERR(ref); |
| 3025 | goto out; |
| 3026 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3027 | BUG_ON(!ref); /* Logic error */ |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3028 | if (check_path_shared(root, path)) |
| 3029 | goto out; |
| 3030 | index = btrfs_inode_ref_index(path->nodes[0], ref); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3031 | btrfs_release_path(path); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3032 | |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 3033 | /* |
| 3034 | * This is a commit root search, if we can lookup inode item and other |
| 3035 | * relative items in the commit root, it means the transaction of |
| 3036 | * dir/file creation has been committed, and the dir index item that we |
| 3037 | * delay to insert has also been inserted into the commit root. So |
| 3038 | * we needn't worry about the delayed insertion of the dir index item |
| 3039 | * here. |
| 3040 | */ |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3041 | di = btrfs_lookup_dir_index_item(trans, root, path, dir_ino, index, |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3042 | dentry->d_name.name, dentry->d_name.len, 0); |
| 3043 | if (IS_ERR(di)) { |
| 3044 | err = PTR_ERR(di); |
| 3045 | goto out; |
| 3046 | } |
| 3047 | BUG_ON(ret == -ENOENT); |
| 3048 | if (check_path_shared(root, path)) |
| 3049 | goto out; |
| 3050 | |
| 3051 | err = 0; |
| 3052 | out: |
| 3053 | btrfs_free_path(path); |
Josef Bacik | 3880a1b | 2011-10-14 14:46:51 -0400 | [diff] [blame] | 3054 | /* Migrate the orphan reservation over */ |
| 3055 | if (!err) |
| 3056 | err = btrfs_block_rsv_migrate(trans->block_rsv, |
| 3057 | &root->fs_info->global_block_rsv, |
Josef Bacik | 5a77d76 | 2011-11-01 14:32:23 -0400 | [diff] [blame] | 3058 | trans->bytes_reserved); |
Josef Bacik | 3880a1b | 2011-10-14 14:46:51 -0400 | [diff] [blame] | 3059 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3060 | if (err) { |
| 3061 | btrfs_end_transaction(trans, root); |
| 3062 | root->fs_info->enospc_unlink = 0; |
| 3063 | return ERR_PTR(err); |
| 3064 | } |
| 3065 | |
| 3066 | trans->block_rsv = &root->fs_info->global_block_rsv; |
| 3067 | return trans; |
| 3068 | } |
| 3069 | |
| 3070 | static void __unlink_end_trans(struct btrfs_trans_handle *trans, |
| 3071 | struct btrfs_root *root) |
| 3072 | { |
Miao Xie | 66d8f3d | 2012-09-06 04:02:28 -0600 | [diff] [blame] | 3073 | if (trans->block_rsv->type == BTRFS_BLOCK_RSV_GLOBAL) { |
Josef Bacik | 5a77d76 | 2011-11-01 14:32:23 -0400 | [diff] [blame] | 3074 | btrfs_block_rsv_release(root, trans->block_rsv, |
| 3075 | trans->bytes_reserved); |
| 3076 | trans->block_rsv = &root->fs_info->trans_block_rsv; |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3077 | BUG_ON(!root->fs_info->enospc_unlink); |
| 3078 | root->fs_info->enospc_unlink = 0; |
| 3079 | } |
Josef Bacik | 7ad85bb | 2012-01-12 19:10:12 -0500 | [diff] [blame] | 3080 | btrfs_end_transaction(trans, root); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3081 | } |
| 3082 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3083 | static int btrfs_unlink(struct inode *dir, struct dentry *dentry) |
| 3084 | { |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3085 | struct btrfs_root *root = BTRFS_I(dir)->root; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3086 | struct btrfs_trans_handle *trans; |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 3087 | struct inode *inode = dentry->d_inode; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3088 | int ret; |
Chris Mason | 1832a6d | 2007-12-21 16:27:21 -0500 | [diff] [blame] | 3089 | unsigned long nr = 0; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3090 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3091 | trans = __unlink_start_trans(dir, dentry); |
| 3092 | if (IS_ERR(trans)) |
Josef Bacik | 5df6a9f | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 3093 | return PTR_ERR(trans); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3094 | |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3095 | btrfs_record_unlink_dir(trans, dir, dentry->d_inode, 0); |
| 3096 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3097 | ret = btrfs_unlink_inode(trans, root, dir, dentry->d_inode, |
| 3098 | dentry->d_name.name, dentry->d_name.len); |
Tsutomu Itoh | b532402 | 2011-07-19 07:27:20 +0000 | [diff] [blame] | 3099 | if (ret) |
| 3100 | goto out; |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 3101 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3102 | if (inode->i_nlink == 0) { |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 3103 | ret = btrfs_orphan_add(trans, inode); |
Tsutomu Itoh | b532402 | 2011-07-19 07:27:20 +0000 | [diff] [blame] | 3104 | if (ret) |
| 3105 | goto out; |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3106 | } |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 3107 | |
Tsutomu Itoh | b532402 | 2011-07-19 07:27:20 +0000 | [diff] [blame] | 3108 | out: |
Chris Mason | d3c2fdcf | 2007-09-17 10:58:06 -0400 | [diff] [blame] | 3109 | nr = trans->blocks_used; |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3110 | __unlink_end_trans(trans, root); |
Chris Mason | d3c2fdcf | 2007-09-17 10:58:06 -0400 | [diff] [blame] | 3111 | btrfs_btree_balance_dirty(root, nr); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3112 | return ret; |
| 3113 | } |
| 3114 | |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3115 | int btrfs_unlink_subvol(struct btrfs_trans_handle *trans, |
| 3116 | struct btrfs_root *root, |
| 3117 | struct inode *dir, u64 objectid, |
| 3118 | const char *name, int name_len) |
| 3119 | { |
| 3120 | struct btrfs_path *path; |
| 3121 | struct extent_buffer *leaf; |
| 3122 | struct btrfs_dir_item *di; |
| 3123 | struct btrfs_key key; |
| 3124 | u64 index; |
| 3125 | int ret; |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3126 | u64 dir_ino = btrfs_ino(dir); |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3127 | |
| 3128 | path = btrfs_alloc_path(); |
| 3129 | if (!path) |
| 3130 | return -ENOMEM; |
| 3131 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3132 | di = btrfs_lookup_dir_item(trans, root, path, dir_ino, |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3133 | name, name_len, -1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3134 | if (IS_ERR_OR_NULL(di)) { |
| 3135 | if (!di) |
| 3136 | ret = -ENOENT; |
| 3137 | else |
| 3138 | ret = PTR_ERR(di); |
| 3139 | goto out; |
| 3140 | } |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3141 | |
| 3142 | leaf = path->nodes[0]; |
| 3143 | btrfs_dir_item_key_to_cpu(leaf, di, &key); |
| 3144 | WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid); |
| 3145 | ret = btrfs_delete_one_dir_name(trans, root, path, di); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3146 | if (ret) { |
| 3147 | btrfs_abort_transaction(trans, root, ret); |
| 3148 | goto out; |
| 3149 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3150 | btrfs_release_path(path); |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3151 | |
| 3152 | ret = btrfs_del_root_ref(trans, root->fs_info->tree_root, |
| 3153 | objectid, root->root_key.objectid, |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3154 | dir_ino, &index, name, name_len); |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3155 | if (ret < 0) { |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3156 | if (ret != -ENOENT) { |
| 3157 | btrfs_abort_transaction(trans, root, ret); |
| 3158 | goto out; |
| 3159 | } |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3160 | di = btrfs_search_dir_index_item(root, path, dir_ino, |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3161 | name, name_len); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3162 | if (IS_ERR_OR_NULL(di)) { |
| 3163 | if (!di) |
| 3164 | ret = -ENOENT; |
| 3165 | else |
| 3166 | ret = PTR_ERR(di); |
| 3167 | btrfs_abort_transaction(trans, root, ret); |
| 3168 | goto out; |
| 3169 | } |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3170 | |
| 3171 | leaf = path->nodes[0]; |
| 3172 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3173 | btrfs_release_path(path); |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3174 | index = key.offset; |
| 3175 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3176 | btrfs_release_path(path); |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3177 | |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 3178 | ret = btrfs_delete_delayed_dir_index(trans, root, dir, index); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3179 | if (ret) { |
| 3180 | btrfs_abort_transaction(trans, root, ret); |
| 3181 | goto out; |
| 3182 | } |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 3183 | |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3184 | btrfs_i_size_write(dir, dir->i_size - name_len * 2); |
Josef Bacik | 0c4d2d9 | 2012-04-05 15:03:02 -0400 | [diff] [blame] | 3185 | inode_inc_iversion(dir); |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3186 | dir->i_mtime = dir->i_ctime = CURRENT_TIME; |
Josef Bacik | 5a24e84 | 2012-08-08 10:12:59 -0600 | [diff] [blame] | 3187 | ret = btrfs_update_inode_fallback(trans, root, dir); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3188 | if (ret) |
| 3189 | btrfs_abort_transaction(trans, root, ret); |
| 3190 | out: |
Josef Bacik | 71d7aed | 2011-06-14 14:24:32 -0400 | [diff] [blame] | 3191 | btrfs_free_path(path); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3192 | return ret; |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3193 | } |
| 3194 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3195 | static int btrfs_rmdir(struct inode *dir, struct dentry *dentry) |
| 3196 | { |
| 3197 | struct inode *inode = dentry->d_inode; |
Chris Mason | 1832a6d | 2007-12-21 16:27:21 -0500 | [diff] [blame] | 3198 | int err = 0; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3199 | struct btrfs_root *root = BTRFS_I(dir)->root; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3200 | struct btrfs_trans_handle *trans; |
Chris Mason | 1832a6d | 2007-12-21 16:27:21 -0500 | [diff] [blame] | 3201 | unsigned long nr = 0; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3202 | |
Chris Mason | 3394e16 | 2008-11-17 20:42:26 -0500 | [diff] [blame] | 3203 | if (inode->i_size > BTRFS_EMPTY_DIR_SIZE || |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3204 | btrfs_ino(inode) == BTRFS_FIRST_FREE_OBJECTID) |
Yan | 134d451 | 2007-10-25 15:49:25 -0400 | [diff] [blame] | 3205 | return -ENOTEMPTY; |
| 3206 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3207 | trans = __unlink_start_trans(dir, dentry); |
| 3208 | if (IS_ERR(trans)) |
Josef Bacik | 5df6a9f | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 3209 | return PTR_ERR(trans); |
Josef Bacik | 5df6a9f | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 3210 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3211 | if (unlikely(btrfs_ino(inode) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) { |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3212 | err = btrfs_unlink_subvol(trans, root, dir, |
| 3213 | BTRFS_I(inode)->location.objectid, |
| 3214 | dentry->d_name.name, |
| 3215 | dentry->d_name.len); |
| 3216 | goto out; |
| 3217 | } |
| 3218 | |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 3219 | err = btrfs_orphan_add(trans, inode); |
| 3220 | if (err) |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3221 | goto out; |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 3222 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3223 | /* now the directory is empty */ |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3224 | err = btrfs_unlink_inode(trans, root, dir, dentry->d_inode, |
| 3225 | dentry->d_name.name, dentry->d_name.len); |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3226 | if (!err) |
Chris Mason | dbe674a | 2008-07-17 12:54:05 -0400 | [diff] [blame] | 3227 | btrfs_i_size_write(inode, 0); |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3228 | out: |
Chris Mason | d3c2fdcf | 2007-09-17 10:58:06 -0400 | [diff] [blame] | 3229 | nr = trans->blocks_used; |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3230 | __unlink_end_trans(trans, root); |
Chris Mason | d3c2fdcf | 2007-09-17 10:58:06 -0400 | [diff] [blame] | 3231 | btrfs_btree_balance_dirty(root, nr); |
Chris Mason | 3954401 | 2007-12-12 14:38:19 -0500 | [diff] [blame] | 3232 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3233 | return err; |
| 3234 | } |
| 3235 | |
Chris Mason | 323ac95 | 2008-10-01 19:05:46 -0400 | [diff] [blame] | 3236 | /* |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3237 | * this can truncate away extent items, csum items and directory items. |
| 3238 | * 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] | 3239 | * any higher than new_size |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3240 | * |
| 3241 | * csum items that cross the new i_size are truncated to the new size |
| 3242 | * as well. |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 3243 | * |
| 3244 | * min_type is the minimum key type to truncate down to. If set to 0, this |
| 3245 | * 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] | 3246 | */ |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3247 | int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans, |
| 3248 | struct btrfs_root *root, |
| 3249 | struct inode *inode, |
| 3250 | u64 new_size, u32 min_type) |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3251 | { |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3252 | struct btrfs_path *path; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3253 | struct extent_buffer *leaf; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3254 | struct btrfs_file_extent_item *fi; |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3255 | struct btrfs_key key; |
| 3256 | struct btrfs_key found_key; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3257 | u64 extent_start = 0; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 3258 | u64 extent_num_bytes = 0; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3259 | u64 extent_offset = 0; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3260 | u64 item_end = 0; |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3261 | u64 mask = root->sectorsize - 1; |
| 3262 | u32 found_type = (u8)-1; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3263 | int found_extent; |
| 3264 | int del_item; |
Chris Mason | 85e21ba | 2008-01-29 15:11:36 -0500 | [diff] [blame] | 3265 | int pending_del_nr = 0; |
| 3266 | int pending_del_slot = 0; |
Chris Mason | 179e29e | 2007-11-01 11:28:41 -0400 | [diff] [blame] | 3267 | int extent_type = -1; |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3268 | int ret; |
| 3269 | int err = 0; |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3270 | u64 ino = btrfs_ino(inode); |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3271 | |
| 3272 | BUG_ON(new_size > 0 && min_type != BTRFS_EXTENT_DATA_KEY); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3273 | |
Mark Fasheh | 0eb0e19 | 2011-07-12 16:44:10 -0700 | [diff] [blame] | 3274 | path = btrfs_alloc_path(); |
| 3275 | if (!path) |
| 3276 | return -ENOMEM; |
| 3277 | path->reada = -1; |
| 3278 | |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 3279 | /* |
| 3280 | * We want to drop from the next block forward in case this new size is |
| 3281 | * not block aligned since we will be keeping the last block of the |
| 3282 | * extent just the way it is. |
| 3283 | */ |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3284 | if (root->ref_cows || root == root->fs_info->tree_root) |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 3285 | btrfs_drop_extent_cache(inode, (new_size + mask) & (~mask), (u64)-1, 0); |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3286 | |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 3287 | /* |
| 3288 | * This function is also used to drop the items in the log tree before |
| 3289 | * we relog the inode, so if root != BTRFS_I(inode)->root, it means |
| 3290 | * it is used to drop the loged items. So we shouldn't kill the delayed |
| 3291 | * items. |
| 3292 | */ |
| 3293 | if (min_type == 0 && root == BTRFS_I(inode)->root) |
| 3294 | btrfs_kill_delayed_inode_items(inode); |
| 3295 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3296 | key.objectid = ino; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3297 | key.offset = (u64)-1; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3298 | key.type = (u8)-1; |
| 3299 | |
Chris Mason | 85e21ba | 2008-01-29 15:11:36 -0500 | [diff] [blame] | 3300 | search_again: |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 3301 | path->leave_spinning = 1; |
Chris Mason | 85e21ba | 2008-01-29 15:11:36 -0500 | [diff] [blame] | 3302 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3303 | if (ret < 0) { |
| 3304 | err = ret; |
| 3305 | goto out; |
| 3306 | } |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3307 | |
Chris Mason | 85e21ba | 2008-01-29 15:11:36 -0500 | [diff] [blame] | 3308 | if (ret > 0) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3309 | /* there are no items in the tree for us to truncate, we're |
| 3310 | * done |
| 3311 | */ |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3312 | if (path->slots[0] == 0) |
| 3313 | goto out; |
Chris Mason | 85e21ba | 2008-01-29 15:11:36 -0500 | [diff] [blame] | 3314 | path->slots[0]--; |
| 3315 | } |
| 3316 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3317 | while (1) { |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3318 | fi = NULL; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3319 | leaf = path->nodes[0]; |
| 3320 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
| 3321 | found_type = btrfs_key_type(&found_key); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3322 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3323 | if (found_key.objectid != ino) |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3324 | break; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3325 | |
Chris Mason | 85e21ba | 2008-01-29 15:11:36 -0500 | [diff] [blame] | 3326 | if (found_type < min_type) |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3327 | break; |
| 3328 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3329 | item_end = found_key.offset; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3330 | if (found_type == BTRFS_EXTENT_DATA_KEY) { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3331 | fi = btrfs_item_ptr(leaf, path->slots[0], |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3332 | struct btrfs_file_extent_item); |
Chris Mason | 179e29e | 2007-11-01 11:28:41 -0400 | [diff] [blame] | 3333 | extent_type = btrfs_file_extent_type(leaf, fi); |
| 3334 | if (extent_type != BTRFS_FILE_EXTENT_INLINE) { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3335 | item_end += |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 3336 | btrfs_file_extent_num_bytes(leaf, fi); |
Chris Mason | 179e29e | 2007-11-01 11:28:41 -0400 | [diff] [blame] | 3337 | } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) { |
Chris Mason | 179e29e | 2007-11-01 11:28:41 -0400 | [diff] [blame] | 3338 | item_end += btrfs_file_extent_inline_len(leaf, |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 3339 | fi); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3340 | } |
Yan | 008630c | 2007-11-07 13:31:09 -0500 | [diff] [blame] | 3341 | item_end--; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3342 | } |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3343 | if (found_type > min_type) { |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3344 | del_item = 1; |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3345 | } else { |
| 3346 | if (item_end < new_size) |
| 3347 | break; |
| 3348 | if (found_key.offset >= new_size) |
| 3349 | del_item = 1; |
| 3350 | else |
| 3351 | del_item = 0; |
| 3352 | } |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3353 | found_extent = 0; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3354 | /* FIXME, shrink the extent if the ref count is only 1 */ |
Chris Mason | 179e29e | 2007-11-01 11:28:41 -0400 | [diff] [blame] | 3355 | if (found_type != BTRFS_EXTENT_DATA_KEY) |
| 3356 | goto delete; |
| 3357 | |
| 3358 | if (extent_type != BTRFS_FILE_EXTENT_INLINE) { |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3359 | u64 num_dec; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 3360 | extent_start = btrfs_file_extent_disk_bytenr(leaf, fi); |
Miao Xie | f70a9a6b | 2012-01-12 19:10:12 -0500 | [diff] [blame] | 3361 | if (!del_item) { |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 3362 | u64 orig_num_bytes = |
| 3363 | btrfs_file_extent_num_bytes(leaf, fi); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3364 | extent_num_bytes = new_size - |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3365 | found_key.offset + root->sectorsize - 1; |
Yan | b1632b1 | 2008-01-30 11:54:04 -0500 | [diff] [blame] | 3366 | extent_num_bytes = extent_num_bytes & |
| 3367 | ~((u64)root->sectorsize - 1); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 3368 | btrfs_set_file_extent_num_bytes(leaf, fi, |
| 3369 | extent_num_bytes); |
| 3370 | num_dec = (orig_num_bytes - |
Chris Mason | 9069218 | 2008-02-08 13:49:28 -0500 | [diff] [blame] | 3371 | extent_num_bytes); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3372 | if (root->ref_cows && extent_start != 0) |
Yan Zheng | a76a3cd | 2008-10-09 11:46:29 -0400 | [diff] [blame] | 3373 | inode_sub_bytes(inode, num_dec); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3374 | btrfs_mark_buffer_dirty(leaf); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3375 | } else { |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 3376 | extent_num_bytes = |
| 3377 | btrfs_file_extent_disk_num_bytes(leaf, |
| 3378 | fi); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3379 | extent_offset = found_key.offset - |
| 3380 | btrfs_file_extent_offset(leaf, fi); |
| 3381 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3382 | /* FIXME blocksize != 4096 */ |
Chris Mason | 9069218 | 2008-02-08 13:49:28 -0500 | [diff] [blame] | 3383 | num_dec = btrfs_file_extent_num_bytes(leaf, fi); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3384 | if (extent_start != 0) { |
| 3385 | found_extent = 1; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3386 | if (root->ref_cows) |
Yan Zheng | a76a3cd | 2008-10-09 11:46:29 -0400 | [diff] [blame] | 3387 | inode_sub_bytes(inode, num_dec); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3388 | } |
| 3389 | } |
Chris Mason | 9069218 | 2008-02-08 13:49:28 -0500 | [diff] [blame] | 3390 | } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) { |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 3391 | /* |
| 3392 | * we can't truncate inline items that have had |
| 3393 | * special encodings |
| 3394 | */ |
| 3395 | if (!del_item && |
| 3396 | btrfs_file_extent_compression(leaf, fi) == 0 && |
| 3397 | btrfs_file_extent_encryption(leaf, fi) == 0 && |
| 3398 | btrfs_file_extent_other_encoding(leaf, fi) == 0) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3399 | u32 size = new_size - found_key.offset; |
| 3400 | |
| 3401 | if (root->ref_cows) { |
Yan Zheng | a76a3cd | 2008-10-09 11:46:29 -0400 | [diff] [blame] | 3402 | inode_sub_bytes(inode, item_end + 1 - |
| 3403 | new_size); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3404 | } |
| 3405 | size = |
| 3406 | btrfs_file_extent_calc_inline_size(size); |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 3407 | btrfs_truncate_item(trans, root, path, |
| 3408 | size, 1); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3409 | } else if (root->ref_cows) { |
Yan Zheng | a76a3cd | 2008-10-09 11:46:29 -0400 | [diff] [blame] | 3410 | inode_sub_bytes(inode, item_end + 1 - |
| 3411 | found_key.offset); |
Chris Mason | 9069218 | 2008-02-08 13:49:28 -0500 | [diff] [blame] | 3412 | } |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3413 | } |
Chris Mason | 179e29e | 2007-11-01 11:28:41 -0400 | [diff] [blame] | 3414 | delete: |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3415 | if (del_item) { |
Chris Mason | 85e21ba | 2008-01-29 15:11:36 -0500 | [diff] [blame] | 3416 | if (!pending_del_nr) { |
| 3417 | /* no pending yet, add ourselves */ |
| 3418 | pending_del_slot = path->slots[0]; |
| 3419 | pending_del_nr = 1; |
| 3420 | } else if (pending_del_nr && |
| 3421 | path->slots[0] + 1 == pending_del_slot) { |
| 3422 | /* hop on the pending chunk */ |
| 3423 | pending_del_nr++; |
| 3424 | pending_del_slot = path->slots[0]; |
| 3425 | } else { |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3426 | BUG(); |
Chris Mason | 85e21ba | 2008-01-29 15:11:36 -0500 | [diff] [blame] | 3427 | } |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3428 | } else { |
| 3429 | break; |
| 3430 | } |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3431 | if (found_extent && (root->ref_cows || |
| 3432 | root == root->fs_info->tree_root)) { |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 3433 | btrfs_set_path_blocking(path); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3434 | ret = btrfs_free_extent(trans, root, extent_start, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3435 | extent_num_bytes, 0, |
| 3436 | btrfs_header_owner(leaf), |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 3437 | ino, extent_offset, 0); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3438 | BUG_ON(ret); |
| 3439 | } |
Chris Mason | 85e21ba | 2008-01-29 15:11:36 -0500 | [diff] [blame] | 3440 | |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3441 | if (found_type == BTRFS_INODE_ITEM_KEY) |
| 3442 | break; |
| 3443 | |
| 3444 | if (path->slots[0] == 0 || |
| 3445 | path->slots[0] != pending_del_slot) { |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3446 | if (pending_del_nr) { |
| 3447 | ret = btrfs_del_items(trans, root, path, |
| 3448 | pending_del_slot, |
| 3449 | pending_del_nr); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3450 | if (ret) { |
| 3451 | btrfs_abort_transaction(trans, |
| 3452 | root, ret); |
| 3453 | goto error; |
| 3454 | } |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3455 | pending_del_nr = 0; |
| 3456 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3457 | btrfs_release_path(path); |
Chris Mason | 85e21ba | 2008-01-29 15:11:36 -0500 | [diff] [blame] | 3458 | goto search_again; |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3459 | } else { |
| 3460 | path->slots[0]--; |
Chris Mason | 85e21ba | 2008-01-29 15:11:36 -0500 | [diff] [blame] | 3461 | } |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3462 | } |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3463 | out: |
Chris Mason | 85e21ba | 2008-01-29 15:11:36 -0500 | [diff] [blame] | 3464 | if (pending_del_nr) { |
| 3465 | ret = btrfs_del_items(trans, root, path, pending_del_slot, |
| 3466 | pending_del_nr); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3467 | if (ret) |
| 3468 | btrfs_abort_transaction(trans, root, ret); |
Chris Mason | 85e21ba | 2008-01-29 15:11:36 -0500 | [diff] [blame] | 3469 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3470 | error: |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3471 | btrfs_free_path(path); |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3472 | return err; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3473 | } |
| 3474 | |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 3475 | /* |
Josef Bacik | 2aaa665 | 2012-08-29 14:27:18 -0400 | [diff] [blame] | 3476 | * btrfs_truncate_page - read, zero a chunk and write a page |
| 3477 | * @inode - inode that we're zeroing |
| 3478 | * @from - the offset to start zeroing |
| 3479 | * @len - the length to zero, 0 to zero the entire range respective to the |
| 3480 | * offset |
| 3481 | * @front - zero up to the offset instead of from the offset on |
| 3482 | * |
| 3483 | * This will find the page for the "from" offset and cow the page and zero the |
| 3484 | * part we want to zero. This is used with truncate and hole punching. |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 3485 | */ |
Josef Bacik | 2aaa665 | 2012-08-29 14:27:18 -0400 | [diff] [blame] | 3486 | int btrfs_truncate_page(struct inode *inode, loff_t from, loff_t len, |
| 3487 | int front) |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 3488 | { |
Josef Bacik | 2aaa665 | 2012-08-29 14:27:18 -0400 | [diff] [blame] | 3489 | struct address_space *mapping = inode->i_mapping; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 3490 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 3491 | struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree; |
| 3492 | struct btrfs_ordered_extent *ordered; |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 3493 | struct extent_state *cached_state = NULL; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 3494 | char *kaddr; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 3495 | u32 blocksize = root->sectorsize; |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 3496 | pgoff_t index = from >> PAGE_CACHE_SHIFT; |
| 3497 | unsigned offset = from & (PAGE_CACHE_SIZE-1); |
| 3498 | struct page *page; |
Josef Bacik | 3b16a4e | 2011-09-21 15:05:58 -0400 | [diff] [blame] | 3499 | gfp_t mask = btrfs_alloc_write_mask(mapping); |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 3500 | int ret = 0; |
| 3501 | u64 page_start; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 3502 | u64 page_end; |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 3503 | |
Josef Bacik | 2aaa665 | 2012-08-29 14:27:18 -0400 | [diff] [blame] | 3504 | if ((offset & (blocksize - 1)) == 0 && |
| 3505 | (!len || ((len & (blocksize - 1)) == 0))) |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 3506 | goto out; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 3507 | ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE); |
Josef Bacik | 5d5e103 | 2009-10-13 16:46:49 -0400 | [diff] [blame] | 3508 | if (ret) |
| 3509 | goto out; |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 3510 | |
| 3511 | ret = -ENOMEM; |
Chris Mason | 211c17f | 2008-05-15 09:13:45 -0400 | [diff] [blame] | 3512 | again: |
Josef Bacik | 3b16a4e | 2011-09-21 15:05:58 -0400 | [diff] [blame] | 3513 | page = find_or_create_page(mapping, index, mask); |
Josef Bacik | 5d5e103 | 2009-10-13 16:46:49 -0400 | [diff] [blame] | 3514 | if (!page) { |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 3515 | btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE); |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 3516 | goto out; |
Josef Bacik | 5d5e103 | 2009-10-13 16:46:49 -0400 | [diff] [blame] | 3517 | } |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 3518 | |
| 3519 | page_start = page_offset(page); |
| 3520 | page_end = page_start + PAGE_CACHE_SIZE - 1; |
| 3521 | |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 3522 | if (!PageUptodate(page)) { |
| 3523 | ret = btrfs_readpage(NULL, page); |
| 3524 | lock_page(page); |
Chris Mason | 211c17f | 2008-05-15 09:13:45 -0400 | [diff] [blame] | 3525 | if (page->mapping != mapping) { |
| 3526 | unlock_page(page); |
| 3527 | page_cache_release(page); |
| 3528 | goto again; |
| 3529 | } |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 3530 | if (!PageUptodate(page)) { |
| 3531 | ret = -EIO; |
Chris Mason | 8964222 | 2008-07-24 09:41:53 -0400 | [diff] [blame] | 3532 | goto out_unlock; |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 3533 | } |
| 3534 | } |
Chris Mason | 211c17f | 2008-05-15 09:13:45 -0400 | [diff] [blame] | 3535 | wait_on_page_writeback(page); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 3536 | |
Jeff Mahoney | d008237 | 2012-03-01 14:57:19 +0100 | [diff] [blame] | 3537 | lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 3538 | set_page_extent_mapped(page); |
| 3539 | |
| 3540 | ordered = btrfs_lookup_ordered_extent(inode, page_start); |
| 3541 | if (ordered) { |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 3542 | unlock_extent_cached(io_tree, page_start, page_end, |
| 3543 | &cached_state, GFP_NOFS); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 3544 | unlock_page(page); |
| 3545 | page_cache_release(page); |
Chris Mason | eb84ae0 | 2008-07-17 13:53:27 -0400 | [diff] [blame] | 3546 | btrfs_start_ordered_extent(inode, ordered, 1); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 3547 | btrfs_put_ordered_extent(ordered); |
| 3548 | goto again; |
| 3549 | } |
| 3550 | |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 3551 | clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end, |
Liu Bo | 9e8a4a8 | 2012-09-05 19:10:51 -0600 | [diff] [blame] | 3552 | EXTENT_DIRTY | EXTENT_DELALLOC | |
| 3553 | EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 3554 | 0, 0, &cached_state, GFP_NOFS); |
Josef Bacik | 5d5e103 | 2009-10-13 16:46:49 -0400 | [diff] [blame] | 3555 | |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 3556 | ret = btrfs_set_extent_delalloc(inode, page_start, page_end, |
| 3557 | &cached_state); |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 3558 | if (ret) { |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 3559 | unlock_extent_cached(io_tree, page_start, page_end, |
| 3560 | &cached_state, GFP_NOFS); |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 3561 | goto out_unlock; |
| 3562 | } |
| 3563 | |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 3564 | ret = 0; |
| 3565 | if (offset != PAGE_CACHE_SIZE) { |
Josef Bacik | 2aaa665 | 2012-08-29 14:27:18 -0400 | [diff] [blame] | 3566 | if (!len) |
| 3567 | len = PAGE_CACHE_SIZE - offset; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 3568 | kaddr = kmap(page); |
Josef Bacik | 2aaa665 | 2012-08-29 14:27:18 -0400 | [diff] [blame] | 3569 | if (front) |
| 3570 | memset(kaddr, 0, offset); |
| 3571 | else |
| 3572 | memset(kaddr + offset, 0, len); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 3573 | flush_dcache_page(page); |
| 3574 | kunmap(page); |
| 3575 | } |
Chris Mason | 247e743 | 2008-07-17 12:53:51 -0400 | [diff] [blame] | 3576 | ClearPageChecked(page); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 3577 | set_page_dirty(page); |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 3578 | unlock_extent_cached(io_tree, page_start, page_end, &cached_state, |
| 3579 | GFP_NOFS); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3580 | |
Chris Mason | 8964222 | 2008-07-24 09:41:53 -0400 | [diff] [blame] | 3581 | out_unlock: |
Josef Bacik | 5d5e103 | 2009-10-13 16:46:49 -0400 | [diff] [blame] | 3582 | if (ret) |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 3583 | btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3584 | unlock_page(page); |
| 3585 | page_cache_release(page); |
| 3586 | out: |
| 3587 | return ret; |
| 3588 | } |
| 3589 | |
Josef Bacik | 695a0d0 | 2011-03-04 15:46:53 -0500 | [diff] [blame] | 3590 | /* |
| 3591 | * This function puts in dummy file extents for the area we're creating a hole |
| 3592 | * for. So if we are truncating this file to a larger size we need to insert |
| 3593 | * these file extents so that btrfs_get_extent will return a EXTENT_MAP_HOLE for |
| 3594 | * the range between oldsize and size |
| 3595 | */ |
Josef Bacik | a41ad39 | 2011-01-31 15:30:16 -0500 | [diff] [blame] | 3596 | 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] | 3597 | { |
| 3598 | struct btrfs_trans_handle *trans; |
| 3599 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 3600 | struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree; |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3601 | struct extent_map *em = NULL; |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 3602 | struct extent_state *cached_state = NULL; |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 3603 | struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree; |
Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 3604 | u64 mask = root->sectorsize - 1; |
Josef Bacik | a41ad39 | 2011-01-31 15:30:16 -0500 | [diff] [blame] | 3605 | u64 hole_start = (oldsize + mask) & ~mask; |
Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 3606 | u64 block_end = (size + mask) & ~mask; |
| 3607 | u64 last_byte; |
| 3608 | u64 cur_offset; |
| 3609 | u64 hole_size; |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 3610 | int err = 0; |
Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 3611 | |
| 3612 | if (size <= hole_start) |
| 3613 | return 0; |
| 3614 | |
Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 3615 | while (1) { |
| 3616 | struct btrfs_ordered_extent *ordered; |
| 3617 | btrfs_wait_ordered_range(inode, hole_start, |
| 3618 | block_end - hole_start); |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 3619 | lock_extent_bits(io_tree, hole_start, block_end - 1, 0, |
Jeff Mahoney | d008237 | 2012-03-01 14:57:19 +0100 | [diff] [blame] | 3620 | &cached_state); |
Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 3621 | ordered = btrfs_lookup_ordered_extent(inode, hole_start); |
| 3622 | if (!ordered) |
| 3623 | break; |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 3624 | unlock_extent_cached(io_tree, hole_start, block_end - 1, |
| 3625 | &cached_state, GFP_NOFS); |
Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 3626 | btrfs_put_ordered_extent(ordered); |
| 3627 | } |
| 3628 | |
Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 3629 | cur_offset = hole_start; |
| 3630 | while (1) { |
| 3631 | em = btrfs_get_extent(inode, NULL, 0, cur_offset, |
| 3632 | block_end - cur_offset, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3633 | if (IS_ERR(em)) { |
| 3634 | err = PTR_ERR(em); |
| 3635 | break; |
| 3636 | } |
Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 3637 | last_byte = min(extent_map_end(em), block_end); |
| 3638 | last_byte = (last_byte + mask) & ~mask; |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3639 | if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) { |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 3640 | struct extent_map *hole_em; |
Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 3641 | hole_size = last_byte - cur_offset; |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3642 | |
Miao Xie | 3642320 | 2011-12-14 20:12:02 -0500 | [diff] [blame] | 3643 | trans = btrfs_start_transaction(root, 3); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3644 | if (IS_ERR(trans)) { |
| 3645 | err = PTR_ERR(trans); |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 3646 | break; |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3647 | } |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3648 | |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 3649 | err = btrfs_drop_extents(trans, root, inode, |
| 3650 | cur_offset, |
Josef Bacik | 2671485 | 2012-08-29 12:24:27 -0400 | [diff] [blame] | 3651 | cur_offset + hole_size, 1); |
Miao Xie | 5b39737 | 2011-09-11 10:52:24 -0400 | [diff] [blame] | 3652 | if (err) { |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3653 | btrfs_abort_transaction(trans, root, err); |
Miao Xie | 5b39737 | 2011-09-11 10:52:24 -0400 | [diff] [blame] | 3654 | btrfs_end_transaction(trans, root); |
Josef Bacik | 3893e33 | 2011-01-31 16:03:11 -0500 | [diff] [blame] | 3655 | break; |
Miao Xie | 5b39737 | 2011-09-11 10:52:24 -0400 | [diff] [blame] | 3656 | } |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 3657 | |
Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 3658 | err = btrfs_insert_file_extent(trans, root, |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3659 | btrfs_ino(inode), cur_offset, 0, |
Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 3660 | 0, hole_size, 0, hole_size, |
| 3661 | 0, 0, 0); |
Miao Xie | 5b39737 | 2011-09-11 10:52:24 -0400 | [diff] [blame] | 3662 | if (err) { |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3663 | btrfs_abort_transaction(trans, root, err); |
Miao Xie | 5b39737 | 2011-09-11 10:52:24 -0400 | [diff] [blame] | 3664 | btrfs_end_transaction(trans, root); |
Josef Bacik | 3893e33 | 2011-01-31 16:03:11 -0500 | [diff] [blame] | 3665 | break; |
Miao Xie | 5b39737 | 2011-09-11 10:52:24 -0400 | [diff] [blame] | 3666 | } |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3667 | |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 3668 | btrfs_drop_extent_cache(inode, cur_offset, |
| 3669 | cur_offset + hole_size - 1, 0); |
| 3670 | hole_em = alloc_extent_map(); |
| 3671 | if (!hole_em) { |
| 3672 | set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, |
| 3673 | &BTRFS_I(inode)->runtime_flags); |
| 3674 | goto next; |
| 3675 | } |
| 3676 | hole_em->start = cur_offset; |
| 3677 | hole_em->len = hole_size; |
| 3678 | hole_em->orig_start = cur_offset; |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3679 | |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 3680 | hole_em->block_start = EXTENT_MAP_HOLE; |
| 3681 | hole_em->block_len = 0; |
| 3682 | hole_em->bdev = root->fs_info->fs_devices->latest_bdev; |
| 3683 | hole_em->compress_type = BTRFS_COMPRESS_NONE; |
| 3684 | hole_em->generation = trans->transid; |
| 3685 | |
| 3686 | while (1) { |
| 3687 | write_lock(&em_tree->lock); |
| 3688 | err = add_extent_mapping(em_tree, hole_em); |
| 3689 | if (!err) |
| 3690 | list_move(&hole_em->list, |
| 3691 | &em_tree->modified_extents); |
| 3692 | write_unlock(&em_tree->lock); |
| 3693 | if (err != -EEXIST) |
| 3694 | break; |
| 3695 | btrfs_drop_extent_cache(inode, cur_offset, |
| 3696 | cur_offset + |
| 3697 | hole_size - 1, 0); |
| 3698 | } |
| 3699 | free_extent_map(hole_em); |
| 3700 | next: |
Miao Xie | 3642320 | 2011-12-14 20:12:02 -0500 | [diff] [blame] | 3701 | btrfs_update_inode(trans, root, inode); |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3702 | btrfs_end_transaction(trans, root); |
Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 3703 | } |
| 3704 | free_extent_map(em); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3705 | em = NULL; |
Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 3706 | cur_offset = last_byte; |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3707 | if (cur_offset >= block_end) |
Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 3708 | break; |
| 3709 | } |
| 3710 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3711 | free_extent_map(em); |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 3712 | unlock_extent_cached(io_tree, hole_start, block_end - 1, &cached_state, |
| 3713 | GFP_NOFS); |
Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 3714 | return err; |
| 3715 | } |
| 3716 | |
Josef Bacik | a41ad39 | 2011-01-31 15:30:16 -0500 | [diff] [blame] | 3717 | static int btrfs_setsize(struct inode *inode, loff_t newsize) |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3718 | { |
Miao Xie | f4a2f4c | 2011-12-14 20:12:01 -0500 | [diff] [blame] | 3719 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 3720 | struct btrfs_trans_handle *trans; |
Josef Bacik | a41ad39 | 2011-01-31 15:30:16 -0500 | [diff] [blame] | 3721 | loff_t oldsize = i_size_read(inode); |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3722 | int ret; |
| 3723 | |
Josef Bacik | a41ad39 | 2011-01-31 15:30:16 -0500 | [diff] [blame] | 3724 | if (newsize == oldsize) |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3725 | return 0; |
| 3726 | |
Josef Bacik | a41ad39 | 2011-01-31 15:30:16 -0500 | [diff] [blame] | 3727 | if (newsize > oldsize) { |
Josef Bacik | a41ad39 | 2011-01-31 15:30:16 -0500 | [diff] [blame] | 3728 | truncate_pagecache(inode, oldsize, newsize); |
| 3729 | ret = btrfs_cont_expand(inode, oldsize, newsize); |
Miao Xie | f4a2f4c | 2011-12-14 20:12:01 -0500 | [diff] [blame] | 3730 | if (ret) |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3731 | return ret; |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3732 | |
Miao Xie | f4a2f4c | 2011-12-14 20:12:01 -0500 | [diff] [blame] | 3733 | trans = btrfs_start_transaction(root, 1); |
| 3734 | if (IS_ERR(trans)) |
| 3735 | return PTR_ERR(trans); |
| 3736 | |
| 3737 | i_size_write(inode, newsize); |
| 3738 | btrfs_ordered_update_i_size(inode, i_size_read(inode), NULL); |
| 3739 | ret = btrfs_update_inode(trans, root, inode); |
Josef Bacik | 7ad85bb | 2012-01-12 19:10:12 -0500 | [diff] [blame] | 3740 | btrfs_end_transaction(trans, root); |
Josef Bacik | a41ad39 | 2011-01-31 15:30:16 -0500 | [diff] [blame] | 3741 | } else { |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3742 | |
Josef Bacik | a41ad39 | 2011-01-31 15:30:16 -0500 | [diff] [blame] | 3743 | /* |
| 3744 | * We're truncating a file that used to have good data down to |
| 3745 | * zero. Make sure it gets into the ordered flush list so that |
| 3746 | * any new writes get down to disk quickly. |
| 3747 | */ |
| 3748 | if (newsize == 0) |
Josef Bacik | 72ac3c0 | 2012-05-23 14:13:11 -0400 | [diff] [blame] | 3749 | set_bit(BTRFS_INODE_ORDERED_DATA_CLOSE, |
| 3750 | &BTRFS_I(inode)->runtime_flags); |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3751 | |
Josef Bacik | a41ad39 | 2011-01-31 15:30:16 -0500 | [diff] [blame] | 3752 | /* we don't support swapfiles, so vmtruncate shouldn't fail */ |
| 3753 | truncate_setsize(inode, newsize); |
| 3754 | ret = btrfs_truncate(inode); |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3755 | } |
| 3756 | |
Josef Bacik | a41ad39 | 2011-01-31 15:30:16 -0500 | [diff] [blame] | 3757 | return ret; |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3758 | } |
| 3759 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3760 | static int btrfs_setattr(struct dentry *dentry, struct iattr *attr) |
| 3761 | { |
| 3762 | struct inode *inode = dentry->d_inode; |
Li Zefan | b83cc96 | 2010-12-20 16:04:08 +0800 | [diff] [blame] | 3763 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3764 | int err; |
| 3765 | |
Li Zefan | b83cc96 | 2010-12-20 16:04:08 +0800 | [diff] [blame] | 3766 | if (btrfs_root_readonly(root)) |
| 3767 | return -EROFS; |
| 3768 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3769 | err = inode_change_ok(inode, attr); |
| 3770 | if (err) |
| 3771 | return err; |
| 3772 | |
Chris Mason | 5a3f23d | 2009-03-31 13:27:11 -0400 | [diff] [blame] | 3773 | if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) { |
Josef Bacik | a41ad39 | 2011-01-31 15:30:16 -0500 | [diff] [blame] | 3774 | err = btrfs_setsize(inode, attr->ia_size); |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3775 | if (err) |
| 3776 | return err; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3777 | } |
Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 3778 | |
Christoph Hellwig | 1025774 | 2010-06-04 11:30:02 +0200 | [diff] [blame] | 3779 | if (attr->ia_valid) { |
| 3780 | setattr_copy(inode, attr); |
Josef Bacik | 0c4d2d9 | 2012-04-05 15:03:02 -0400 | [diff] [blame] | 3781 | inode_inc_iversion(inode); |
Josef Bacik | 22c44fe | 2011-11-30 10:45:38 -0500 | [diff] [blame] | 3782 | err = btrfs_dirty_inode(inode); |
Josef Bacik | 33268ea | 2008-07-24 12:16:36 -0400 | [diff] [blame] | 3783 | |
Josef Bacik | 22c44fe | 2011-11-30 10:45:38 -0500 | [diff] [blame] | 3784 | if (!err && attr->ia_valid & ATTR_MODE) |
Christoph Hellwig | 1025774 | 2010-06-04 11:30:02 +0200 | [diff] [blame] | 3785 | err = btrfs_acl_chmod(inode); |
| 3786 | } |
| 3787 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3788 | return err; |
| 3789 | } |
Chris Mason | 61295eb | 2008-01-14 16:24:38 -0500 | [diff] [blame] | 3790 | |
Al Viro | bd55597 | 2010-06-07 11:35:40 -0400 | [diff] [blame] | 3791 | void btrfs_evict_inode(struct inode *inode) |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3792 | { |
| 3793 | struct btrfs_trans_handle *trans; |
| 3794 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Josef Bacik | 726c35f | 2011-09-26 15:46:06 -0400 | [diff] [blame] | 3795 | struct btrfs_block_rsv *rsv, *global_rsv; |
Josef Bacik | 0712718 | 2011-08-19 10:29:59 -0400 | [diff] [blame] | 3796 | u64 min_size = btrfs_calc_trunc_metadata_size(root, 1); |
Chris Mason | d3c2fdcf | 2007-09-17 10:58:06 -0400 | [diff] [blame] | 3797 | unsigned long nr; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3798 | int ret; |
| 3799 | |
liubo | 1abe9b8 | 2011-03-24 11:18:59 +0000 | [diff] [blame] | 3800 | trace_btrfs_inode_evict(inode); |
| 3801 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3802 | truncate_inode_pages(&inode->i_data, 0); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3803 | if (inode->i_nlink && (btrfs_root_refs(&root->root_item) != 0 || |
Liu Bo | 83eea1f | 2012-07-10 05:28:39 -0600 | [diff] [blame] | 3804 | btrfs_is_free_space_inode(inode))) |
Al Viro | bd55597 | 2010-06-07 11:35:40 -0400 | [diff] [blame] | 3805 | goto no_delete; |
| 3806 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3807 | if (is_bad_inode(inode)) { |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 3808 | btrfs_orphan_del(NULL, inode); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3809 | goto no_delete; |
| 3810 | } |
Al Viro | bd55597 | 2010-06-07 11:35:40 -0400 | [diff] [blame] | 3811 | /* 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] | 3812 | btrfs_wait_ordered_range(inode, 0, (u64)-1); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3813 | |
Yan, Zheng | c71bf09 | 2009-11-12 09:34:40 +0000 | [diff] [blame] | 3814 | if (root->fs_info->log_root_recovering) { |
Liu Bo | 6bf0231 | 2012-06-25 21:59:09 -0600 | [diff] [blame] | 3815 | BUG_ON(test_bit(BTRFS_INODE_HAS_ORPHAN_ITEM, |
Josef Bacik | 8a35d95 | 2012-05-23 14:26:42 -0400 | [diff] [blame] | 3816 | &BTRFS_I(inode)->runtime_flags)); |
Yan, Zheng | c71bf09 | 2009-11-12 09:34:40 +0000 | [diff] [blame] | 3817 | goto no_delete; |
| 3818 | } |
| 3819 | |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 3820 | if (inode->i_nlink > 0) { |
| 3821 | BUG_ON(btrfs_root_refs(&root->root_item) != 0); |
| 3822 | goto no_delete; |
| 3823 | } |
| 3824 | |
Miao Xie | 66d8f3d | 2012-09-06 04:02:28 -0600 | [diff] [blame] | 3825 | rsv = btrfs_alloc_block_rsv(root, BTRFS_BLOCK_RSV_TEMP); |
Josef Bacik | 4289a66 | 2011-08-05 13:22:24 -0400 | [diff] [blame] | 3826 | if (!rsv) { |
| 3827 | btrfs_orphan_del(NULL, inode); |
| 3828 | goto no_delete; |
| 3829 | } |
Josef Bacik | 4a33854 | 2011-08-29 11:01:31 -0400 | [diff] [blame] | 3830 | rsv->size = min_size; |
Josef Bacik | ca7e70f | 2012-08-27 17:48:15 -0400 | [diff] [blame] | 3831 | rsv->failfast = 1; |
Josef Bacik | 726c35f | 2011-09-26 15:46:06 -0400 | [diff] [blame] | 3832 | global_rsv = &root->fs_info->global_block_rsv; |
Josef Bacik | 4289a66 | 2011-08-05 13:22:24 -0400 | [diff] [blame] | 3833 | |
Chris Mason | dbe674a | 2008-07-17 12:54:05 -0400 | [diff] [blame] | 3834 | btrfs_i_size_write(inode, 0); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3835 | |
Josef Bacik | 4289a66 | 2011-08-05 13:22:24 -0400 | [diff] [blame] | 3836 | /* |
| 3837 | * This is a bit simpler than btrfs_truncate since |
| 3838 | * |
| 3839 | * 1) We've already reserved our space for our orphan item in the |
| 3840 | * unlink. |
| 3841 | * 2) We're going to delete the inode item, so we don't need to update |
| 3842 | * it at all. |
| 3843 | * |
| 3844 | * So we just need to reserve some slack space in case we add bytes when |
| 3845 | * doing the truncate. |
| 3846 | */ |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3847 | while (1) { |
Miao Xie | aa38a71 | 2011-11-18 17:43:00 +0800 | [diff] [blame] | 3848 | ret = btrfs_block_rsv_refill_noflush(root, rsv, min_size); |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3849 | |
Josef Bacik | 726c35f | 2011-09-26 15:46:06 -0400 | [diff] [blame] | 3850 | /* |
| 3851 | * Try and steal from the global reserve since we will |
| 3852 | * likely not use this space anyway, we want to try as |
| 3853 | * hard as possible to get this to work. |
| 3854 | */ |
| 3855 | if (ret) |
| 3856 | ret = btrfs_block_rsv_migrate(global_rsv, rsv, min_size); |
| 3857 | |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 3858 | if (ret) { |
Josef Bacik | 4289a66 | 2011-08-05 13:22:24 -0400 | [diff] [blame] | 3859 | printk(KERN_WARNING "Could not get space for a " |
Josef Bacik | 482e6dc | 2011-08-19 10:31:56 -0400 | [diff] [blame] | 3860 | "delete, will truncate on mount %d\n", ret); |
Josef Bacik | 4289a66 | 2011-08-05 13:22:24 -0400 | [diff] [blame] | 3861 | btrfs_orphan_del(NULL, inode); |
| 3862 | btrfs_free_block_rsv(root, rsv); |
| 3863 | goto no_delete; |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 3864 | } |
| 3865 | |
Josef Bacik | 4289a66 | 2011-08-05 13:22:24 -0400 | [diff] [blame] | 3866 | trans = btrfs_start_transaction(root, 0); |
| 3867 | if (IS_ERR(trans)) { |
| 3868 | btrfs_orphan_del(NULL, inode); |
| 3869 | btrfs_free_block_rsv(root, rsv); |
| 3870 | goto no_delete; |
| 3871 | } |
| 3872 | |
| 3873 | trans->block_rsv = rsv; |
| 3874 | |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 3875 | ret = btrfs_truncate_inode_items(trans, root, inode, 0, 0); |
Josef Bacik | ca7e70f | 2012-08-27 17:48:15 -0400 | [diff] [blame] | 3876 | if (ret != -ENOSPC) |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3877 | break; |
| 3878 | |
| 3879 | nr = trans->blocks_used; |
| 3880 | btrfs_end_transaction(trans, root); |
| 3881 | trans = NULL; |
| 3882 | btrfs_btree_balance_dirty(root, nr); |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 3883 | } |
| 3884 | |
Josef Bacik | 4289a66 | 2011-08-05 13:22:24 -0400 | [diff] [blame] | 3885 | btrfs_free_block_rsv(root, rsv); |
| 3886 | |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3887 | if (ret == 0) { |
Josef Bacik | 4289a66 | 2011-08-05 13:22:24 -0400 | [diff] [blame] | 3888 | trans->block_rsv = root->orphan_block_rsv; |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3889 | ret = btrfs_orphan_del(trans, inode); |
| 3890 | BUG_ON(ret); |
| 3891 | } |
Chris Mason | 85e21ba | 2008-01-29 15:11:36 -0500 | [diff] [blame] | 3892 | |
Josef Bacik | 4289a66 | 2011-08-05 13:22:24 -0400 | [diff] [blame] | 3893 | trans->block_rsv = &root->fs_info->trans_block_rsv; |
Li Zefan | 581bb05 | 2011-04-20 10:06:11 +0800 | [diff] [blame] | 3894 | if (!(root == root->fs_info->tree_root || |
| 3895 | root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID)) |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3896 | btrfs_return_ino(root, btrfs_ino(inode)); |
Li Zefan | 581bb05 | 2011-04-20 10:06:11 +0800 | [diff] [blame] | 3897 | |
Chris Mason | d3c2fdcf | 2007-09-17 10:58:06 -0400 | [diff] [blame] | 3898 | nr = trans->blocks_used; |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3899 | btrfs_end_transaction(trans, root); |
Chris Mason | d3c2fdcf | 2007-09-17 10:58:06 -0400 | [diff] [blame] | 3900 | btrfs_btree_balance_dirty(root, nr); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3901 | no_delete: |
Jan Kara | dbd5768 | 2012-05-03 14:48:02 +0200 | [diff] [blame] | 3902 | clear_inode(inode); |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3903 | return; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3904 | } |
| 3905 | |
| 3906 | /* |
| 3907 | * this returns the key found in the dir entry in the location pointer. |
| 3908 | * If no dir entries were found, location->objectid is 0. |
| 3909 | */ |
| 3910 | static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry, |
| 3911 | struct btrfs_key *location) |
| 3912 | { |
| 3913 | const char *name = dentry->d_name.name; |
| 3914 | int namelen = dentry->d_name.len; |
| 3915 | struct btrfs_dir_item *di; |
| 3916 | struct btrfs_path *path; |
| 3917 | struct btrfs_root *root = BTRFS_I(dir)->root; |
Yan | 0d9f7f3 | 2007-10-25 15:48:28 -0400 | [diff] [blame] | 3918 | int ret = 0; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3919 | |
| 3920 | path = btrfs_alloc_path(); |
Mark Fasheh | d8926bb | 2011-07-13 10:38:47 -0700 | [diff] [blame] | 3921 | if (!path) |
| 3922 | return -ENOMEM; |
Chris Mason | 3954401 | 2007-12-12 14:38:19 -0500 | [diff] [blame] | 3923 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3924 | di = btrfs_lookup_dir_item(NULL, root, path, btrfs_ino(dir), name, |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3925 | namelen, 0); |
Yan | 0d9f7f3 | 2007-10-25 15:48:28 -0400 | [diff] [blame] | 3926 | if (IS_ERR(di)) |
| 3927 | ret = PTR_ERR(di); |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3928 | |
David Sterba | c704005 | 2011-04-19 18:00:01 +0200 | [diff] [blame] | 3929 | if (IS_ERR_OR_NULL(di)) |
Chris Mason | 3954401 | 2007-12-12 14:38:19 -0500 | [diff] [blame] | 3930 | goto out_err; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3931 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3932 | btrfs_dir_item_key_to_cpu(path->nodes[0], di, location); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3933 | out: |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3934 | btrfs_free_path(path); |
| 3935 | return ret; |
Chris Mason | 3954401 | 2007-12-12 14:38:19 -0500 | [diff] [blame] | 3936 | out_err: |
| 3937 | location->objectid = 0; |
| 3938 | goto out; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3939 | } |
| 3940 | |
| 3941 | /* |
| 3942 | * when we hit a tree root in a directory, the btrfs part of the inode |
| 3943 | * needs to be changed to reflect the root directory of the tree root. This |
| 3944 | * is kind of like crossing a mount point. |
| 3945 | */ |
| 3946 | static int fixup_tree_root_location(struct btrfs_root *root, |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3947 | struct inode *dir, |
| 3948 | struct dentry *dentry, |
| 3949 | struct btrfs_key *location, |
| 3950 | struct btrfs_root **sub_root) |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3951 | { |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3952 | struct btrfs_path *path; |
| 3953 | struct btrfs_root *new_root; |
| 3954 | struct btrfs_root_ref *ref; |
| 3955 | struct extent_buffer *leaf; |
| 3956 | int ret; |
| 3957 | int err = 0; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3958 | |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3959 | path = btrfs_alloc_path(); |
| 3960 | if (!path) { |
| 3961 | err = -ENOMEM; |
| 3962 | goto out; |
| 3963 | } |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3964 | |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3965 | err = -ENOENT; |
| 3966 | ret = btrfs_find_root_ref(root->fs_info->tree_root, path, |
| 3967 | BTRFS_I(dir)->root->root_key.objectid, |
| 3968 | location->objectid); |
| 3969 | if (ret) { |
| 3970 | if (ret < 0) |
| 3971 | err = ret; |
| 3972 | goto out; |
| 3973 | } |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3974 | |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3975 | leaf = path->nodes[0]; |
| 3976 | ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref); |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3977 | if (btrfs_root_ref_dirid(leaf, ref) != btrfs_ino(dir) || |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3978 | btrfs_root_ref_name_len(leaf, ref) != dentry->d_name.len) |
| 3979 | goto out; |
| 3980 | |
| 3981 | ret = memcmp_extent_buffer(leaf, dentry->d_name.name, |
| 3982 | (unsigned long)(ref + 1), |
| 3983 | dentry->d_name.len); |
| 3984 | if (ret) |
| 3985 | goto out; |
| 3986 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3987 | btrfs_release_path(path); |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3988 | |
| 3989 | new_root = btrfs_read_fs_root_no_name(root->fs_info, location); |
| 3990 | if (IS_ERR(new_root)) { |
| 3991 | err = PTR_ERR(new_root); |
| 3992 | goto out; |
| 3993 | } |
| 3994 | |
| 3995 | if (btrfs_root_refs(&new_root->root_item) == 0) { |
| 3996 | err = -ENOENT; |
| 3997 | goto out; |
| 3998 | } |
| 3999 | |
| 4000 | *sub_root = new_root; |
| 4001 | location->objectid = btrfs_root_dirid(&new_root->root_item); |
| 4002 | location->type = BTRFS_INODE_ITEM_KEY; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4003 | location->offset = 0; |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 4004 | err = 0; |
| 4005 | out: |
| 4006 | btrfs_free_path(path); |
| 4007 | return err; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4008 | } |
| 4009 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 4010 | static void inode_tree_add(struct inode *inode) |
| 4011 | { |
| 4012 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 4013 | struct btrfs_inode *entry; |
From: Nick Piggin | 03e860b | 2009-08-21 10:09:44 +0200 | [diff] [blame] | 4014 | struct rb_node **p; |
| 4015 | struct rb_node *parent; |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 4016 | u64 ino = btrfs_ino(inode); |
From: Nick Piggin | 03e860b | 2009-08-21 10:09:44 +0200 | [diff] [blame] | 4017 | again: |
| 4018 | p = &root->inode_tree.rb_node; |
| 4019 | parent = NULL; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 4020 | |
Al Viro | 1d3382cb | 2010-10-23 15:19:20 -0400 | [diff] [blame] | 4021 | if (inode_unhashed(inode)) |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 4022 | return; |
| 4023 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 4024 | spin_lock(&root->inode_lock); |
| 4025 | while (*p) { |
| 4026 | parent = *p; |
| 4027 | entry = rb_entry(parent, struct btrfs_inode, rb_node); |
| 4028 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 4029 | if (ino < btrfs_ino(&entry->vfs_inode)) |
From: Nick Piggin | 03e860b | 2009-08-21 10:09:44 +0200 | [diff] [blame] | 4030 | p = &parent->rb_left; |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 4031 | else if (ino > btrfs_ino(&entry->vfs_inode)) |
From: Nick Piggin | 03e860b | 2009-08-21 10:09:44 +0200 | [diff] [blame] | 4032 | p = &parent->rb_right; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 4033 | else { |
| 4034 | WARN_ON(!(entry->vfs_inode.i_state & |
Al Viro | a4ffdde | 2010-06-02 17:38:30 -0400 | [diff] [blame] | 4035 | (I_WILL_FREE | I_FREEING))); |
From: Nick Piggin | 03e860b | 2009-08-21 10:09:44 +0200 | [diff] [blame] | 4036 | rb_erase(parent, &root->inode_tree); |
| 4037 | RB_CLEAR_NODE(parent); |
| 4038 | spin_unlock(&root->inode_lock); |
| 4039 | goto again; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 4040 | } |
| 4041 | } |
| 4042 | rb_link_node(&BTRFS_I(inode)->rb_node, parent, p); |
| 4043 | rb_insert_color(&BTRFS_I(inode)->rb_node, &root->inode_tree); |
| 4044 | spin_unlock(&root->inode_lock); |
| 4045 | } |
| 4046 | |
| 4047 | static void inode_tree_del(struct inode *inode) |
| 4048 | { |
| 4049 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 4050 | int empty = 0; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 4051 | |
From: Nick Piggin | 03e860b | 2009-08-21 10:09:44 +0200 | [diff] [blame] | 4052 | spin_lock(&root->inode_lock); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 4053 | if (!RB_EMPTY_NODE(&BTRFS_I(inode)->rb_node)) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 4054 | rb_erase(&BTRFS_I(inode)->rb_node, &root->inode_tree); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 4055 | RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node); |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 4056 | empty = RB_EMPTY_ROOT(&root->inode_tree); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 4057 | } |
From: Nick Piggin | 03e860b | 2009-08-21 10:09:44 +0200 | [diff] [blame] | 4058 | spin_unlock(&root->inode_lock); |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 4059 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 4060 | /* |
| 4061 | * Free space cache has inodes in the tree root, but the tree root has a |
| 4062 | * root_refs of 0, so this could end up dropping the tree root as a |
| 4063 | * snapshot, so we need the extra !root->fs_info->tree_root check to |
| 4064 | * make sure we don't drop it. |
| 4065 | */ |
| 4066 | if (empty && btrfs_root_refs(&root->root_item) == 0 && |
| 4067 | root != root->fs_info->tree_root) { |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 4068 | synchronize_srcu(&root->fs_info->subvol_srcu); |
| 4069 | spin_lock(&root->inode_lock); |
| 4070 | empty = RB_EMPTY_ROOT(&root->inode_tree); |
| 4071 | spin_unlock(&root->inode_lock); |
| 4072 | if (empty) |
| 4073 | btrfs_add_dead_root(root); |
| 4074 | } |
| 4075 | } |
| 4076 | |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 4077 | void btrfs_invalidate_inodes(struct btrfs_root *root) |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 4078 | { |
| 4079 | struct rb_node *node; |
| 4080 | struct rb_node *prev; |
| 4081 | struct btrfs_inode *entry; |
| 4082 | struct inode *inode; |
| 4083 | u64 objectid = 0; |
| 4084 | |
| 4085 | WARN_ON(btrfs_root_refs(&root->root_item) != 0); |
| 4086 | |
| 4087 | spin_lock(&root->inode_lock); |
| 4088 | again: |
| 4089 | node = root->inode_tree.rb_node; |
| 4090 | prev = NULL; |
| 4091 | while (node) { |
| 4092 | prev = node; |
| 4093 | entry = rb_entry(node, struct btrfs_inode, rb_node); |
| 4094 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 4095 | if (objectid < btrfs_ino(&entry->vfs_inode)) |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 4096 | node = node->rb_left; |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 4097 | else if (objectid > btrfs_ino(&entry->vfs_inode)) |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 4098 | node = node->rb_right; |
| 4099 | else |
| 4100 | break; |
| 4101 | } |
| 4102 | if (!node) { |
| 4103 | while (prev) { |
| 4104 | entry = rb_entry(prev, struct btrfs_inode, rb_node); |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 4105 | if (objectid <= btrfs_ino(&entry->vfs_inode)) { |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 4106 | node = prev; |
| 4107 | break; |
| 4108 | } |
| 4109 | prev = rb_next(prev); |
| 4110 | } |
| 4111 | } |
| 4112 | while (node) { |
| 4113 | entry = rb_entry(node, struct btrfs_inode, rb_node); |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 4114 | objectid = btrfs_ino(&entry->vfs_inode) + 1; |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 4115 | inode = igrab(&entry->vfs_inode); |
| 4116 | if (inode) { |
| 4117 | spin_unlock(&root->inode_lock); |
| 4118 | if (atomic_read(&inode->i_count) > 1) |
| 4119 | d_prune_aliases(inode); |
| 4120 | /* |
Al Viro | 45321ac | 2010-06-07 13:43:19 -0400 | [diff] [blame] | 4121 | * btrfs_drop_inode will have it removed from |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 4122 | * the inode cache when its usage count |
| 4123 | * hits zero. |
| 4124 | */ |
| 4125 | iput(inode); |
| 4126 | cond_resched(); |
| 4127 | spin_lock(&root->inode_lock); |
| 4128 | goto again; |
| 4129 | } |
| 4130 | |
| 4131 | if (cond_resched_lock(&root->inode_lock)) |
| 4132 | goto again; |
| 4133 | |
| 4134 | node = rb_next(node); |
| 4135 | } |
| 4136 | spin_unlock(&root->inode_lock); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 4137 | } |
| 4138 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4139 | static int btrfs_init_locked_inode(struct inode *inode, void *p) |
| 4140 | { |
| 4141 | struct btrfs_iget_args *args = p; |
| 4142 | inode->i_ino = args->ino; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4143 | BTRFS_I(inode)->root = args->root; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4144 | return 0; |
| 4145 | } |
| 4146 | |
| 4147 | static int btrfs_find_actor(struct inode *inode, void *opaque) |
| 4148 | { |
| 4149 | struct btrfs_iget_args *args = opaque; |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 4150 | return args->ino == btrfs_ino(inode) && |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 4151 | args->root == BTRFS_I(inode)->root; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4152 | } |
| 4153 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 4154 | static struct inode *btrfs_iget_locked(struct super_block *s, |
| 4155 | u64 objectid, |
| 4156 | struct btrfs_root *root) |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4157 | { |
| 4158 | struct inode *inode; |
| 4159 | struct btrfs_iget_args args; |
| 4160 | args.ino = objectid; |
| 4161 | args.root = root; |
| 4162 | |
| 4163 | inode = iget5_locked(s, objectid, btrfs_find_actor, |
| 4164 | btrfs_init_locked_inode, |
| 4165 | (void *)&args); |
| 4166 | return inode; |
| 4167 | } |
| 4168 | |
Balaji Rao | 1a54ef8 | 2008-07-21 02:01:04 +0530 | [diff] [blame] | 4169 | /* Get an inode object given its location and corresponding root. |
| 4170 | * Returns in *is_new if the inode was read from disk |
| 4171 | */ |
| 4172 | struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location, |
Josef Bacik | 73f7341 | 2009-12-04 17:38:27 +0000 | [diff] [blame] | 4173 | struct btrfs_root *root, int *new) |
Balaji Rao | 1a54ef8 | 2008-07-21 02:01:04 +0530 | [diff] [blame] | 4174 | { |
| 4175 | struct inode *inode; |
| 4176 | |
| 4177 | inode = btrfs_iget_locked(s, location->objectid, root); |
| 4178 | if (!inode) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 4179 | return ERR_PTR(-ENOMEM); |
Balaji Rao | 1a54ef8 | 2008-07-21 02:01:04 +0530 | [diff] [blame] | 4180 | |
| 4181 | if (inode->i_state & I_NEW) { |
| 4182 | BTRFS_I(inode)->root = root; |
| 4183 | memcpy(&BTRFS_I(inode)->location, location, sizeof(*location)); |
| 4184 | btrfs_read_locked_inode(inode); |
Mark Fasheh | 1748f84 | 2011-07-12 11:25:31 -0700 | [diff] [blame] | 4185 | if (!is_bad_inode(inode)) { |
| 4186 | inode_tree_add(inode); |
| 4187 | unlock_new_inode(inode); |
| 4188 | if (new) |
| 4189 | *new = 1; |
| 4190 | } else { |
Sergei Trofimovich | e0b6d65 | 2011-09-11 10:52:24 -0400 | [diff] [blame] | 4191 | unlock_new_inode(inode); |
| 4192 | iput(inode); |
| 4193 | inode = ERR_PTR(-ESTALE); |
Mark Fasheh | 1748f84 | 2011-07-12 11:25:31 -0700 | [diff] [blame] | 4194 | } |
| 4195 | } |
| 4196 | |
Balaji Rao | 1a54ef8 | 2008-07-21 02:01:04 +0530 | [diff] [blame] | 4197 | return inode; |
| 4198 | } |
| 4199 | |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 4200 | static struct inode *new_simple_dir(struct super_block *s, |
| 4201 | struct btrfs_key *key, |
| 4202 | struct btrfs_root *root) |
| 4203 | { |
| 4204 | struct inode *inode = new_inode(s); |
| 4205 | |
| 4206 | if (!inode) |
| 4207 | return ERR_PTR(-ENOMEM); |
| 4208 | |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 4209 | BTRFS_I(inode)->root = root; |
| 4210 | memcpy(&BTRFS_I(inode)->location, key, sizeof(*key)); |
Josef Bacik | 72ac3c0 | 2012-05-23 14:13:11 -0400 | [diff] [blame] | 4211 | set_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags); |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 4212 | |
| 4213 | inode->i_ino = BTRFS_EMPTY_SUBVOL_DIR_OBJECTID; |
Li Zefan | 848cce0 | 2012-02-21 17:04:28 +0800 | [diff] [blame] | 4214 | inode->i_op = &btrfs_dir_ro_inode_operations; |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 4215 | inode->i_fop = &simple_dir_operations; |
| 4216 | inode->i_mode = S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO; |
| 4217 | inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME; |
| 4218 | |
| 4219 | return inode; |
| 4220 | } |
| 4221 | |
Chris Mason | 3de4586 | 2008-11-17 21:02:50 -0500 | [diff] [blame] | 4222 | struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry) |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4223 | { |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 4224 | struct inode *inode; |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 4225 | struct btrfs_root *root = BTRFS_I(dir)->root; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4226 | struct btrfs_root *sub_root = root; |
| 4227 | struct btrfs_key location; |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 4228 | int index; |
Josef Bacik | b4aff1f | 2011-06-28 16:18:59 -0400 | [diff] [blame] | 4229 | int ret = 0; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4230 | |
| 4231 | if (dentry->d_name.len > BTRFS_NAME_LEN) |
| 4232 | return ERR_PTR(-ENAMETOOLONG); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4233 | |
Josef Bacik | b4aff1f | 2011-06-28 16:18:59 -0400 | [diff] [blame] | 4234 | if (unlikely(d_need_lookup(dentry))) { |
| 4235 | memcpy(&location, dentry->d_fsdata, sizeof(struct btrfs_key)); |
| 4236 | kfree(dentry->d_fsdata); |
| 4237 | dentry->d_fsdata = NULL; |
Josef Bacik | a66e7cc | 2011-09-18 10:34:03 -0400 | [diff] [blame] | 4238 | /* This thing is hashed, drop it for now */ |
| 4239 | d_drop(dentry); |
Josef Bacik | b4aff1f | 2011-06-28 16:18:59 -0400 | [diff] [blame] | 4240 | } else { |
| 4241 | ret = btrfs_inode_by_name(dir, dentry, &location); |
| 4242 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4243 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4244 | if (ret < 0) |
| 4245 | return ERR_PTR(ret); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4246 | |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 4247 | if (location.objectid == 0) |
| 4248 | return NULL; |
| 4249 | |
| 4250 | if (location.type == BTRFS_INODE_ITEM_KEY) { |
Josef Bacik | 73f7341 | 2009-12-04 17:38:27 +0000 | [diff] [blame] | 4251 | inode = btrfs_iget(dir->i_sb, &location, root, NULL); |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 4252 | return inode; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4253 | } |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 4254 | |
| 4255 | BUG_ON(location.type != BTRFS_ROOT_ITEM_KEY); |
| 4256 | |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 4257 | index = srcu_read_lock(&root->fs_info->subvol_srcu); |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 4258 | ret = fixup_tree_root_location(root, dir, dentry, |
| 4259 | &location, &sub_root); |
| 4260 | if (ret < 0) { |
| 4261 | if (ret != -ENOENT) |
| 4262 | inode = ERR_PTR(ret); |
| 4263 | else |
| 4264 | inode = new_simple_dir(dir->i_sb, &location, sub_root); |
| 4265 | } else { |
Josef Bacik | 73f7341 | 2009-12-04 17:38:27 +0000 | [diff] [blame] | 4266 | inode = btrfs_iget(dir->i_sb, &location, sub_root, NULL); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4267 | } |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 4268 | srcu_read_unlock(&root->fs_info->subvol_srcu, index); |
| 4269 | |
Julia Lawall | 34d19ba | 2011-01-24 19:55:19 +0000 | [diff] [blame] | 4270 | if (!IS_ERR(inode) && root != sub_root) { |
Yan, Zheng | c71bf09 | 2009-11-12 09:34:40 +0000 | [diff] [blame] | 4271 | down_read(&root->fs_info->cleanup_work_sem); |
| 4272 | if (!(inode->i_sb->s_flags & MS_RDONLY)) |
Josef Bacik | 66b4ffd | 2011-01-31 16:22:42 -0500 | [diff] [blame] | 4273 | ret = btrfs_orphan_cleanup(sub_root); |
Yan, Zheng | c71bf09 | 2009-11-12 09:34:40 +0000 | [diff] [blame] | 4274 | up_read(&root->fs_info->cleanup_work_sem); |
Josef Bacik | 66b4ffd | 2011-01-31 16:22:42 -0500 | [diff] [blame] | 4275 | if (ret) |
| 4276 | inode = ERR_PTR(ret); |
Yan, Zheng | c71bf09 | 2009-11-12 09:34:40 +0000 | [diff] [blame] | 4277 | } |
| 4278 | |
Chris Mason | 3de4586 | 2008-11-17 21:02:50 -0500 | [diff] [blame] | 4279 | return inode; |
| 4280 | } |
| 4281 | |
Nick Piggin | fe15ce4 | 2011-01-07 17:49:23 +1100 | [diff] [blame] | 4282 | static int btrfs_dentry_delete(const struct dentry *dentry) |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 4283 | { |
| 4284 | struct btrfs_root *root; |
Li Zefan | 848cce0 | 2012-02-21 17:04:28 +0800 | [diff] [blame] | 4285 | struct inode *inode = dentry->d_inode; |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 4286 | |
Li Zefan | 848cce0 | 2012-02-21 17:04:28 +0800 | [diff] [blame] | 4287 | if (!inode && !IS_ROOT(dentry)) |
| 4288 | inode = dentry->d_parent->d_inode; |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 4289 | |
Li Zefan | 848cce0 | 2012-02-21 17:04:28 +0800 | [diff] [blame] | 4290 | if (inode) { |
| 4291 | root = BTRFS_I(inode)->root; |
Yan, Zheng | efefb14 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 4292 | if (btrfs_root_refs(&root->root_item) == 0) |
| 4293 | return 1; |
Li Zefan | 848cce0 | 2012-02-21 17:04:28 +0800 | [diff] [blame] | 4294 | |
| 4295 | if (btrfs_ino(inode) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID) |
| 4296 | return 1; |
Yan, Zheng | efefb14 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 4297 | } |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 4298 | return 0; |
| 4299 | } |
| 4300 | |
Josef Bacik | b4aff1f | 2011-06-28 16:18:59 -0400 | [diff] [blame] | 4301 | static void btrfs_dentry_release(struct dentry *dentry) |
| 4302 | { |
| 4303 | if (dentry->d_fsdata) |
| 4304 | kfree(dentry->d_fsdata); |
| 4305 | } |
| 4306 | |
Chris Mason | 3de4586 | 2008-11-17 21:02:50 -0500 | [diff] [blame] | 4307 | static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry, |
Al Viro | 00cd8dd | 2012-06-10 17:13:09 -0400 | [diff] [blame] | 4308 | unsigned int flags) |
Chris Mason | 3de4586 | 2008-11-17 21:02:50 -0500 | [diff] [blame] | 4309 | { |
Josef Bacik | a66e7cc | 2011-09-18 10:34:03 -0400 | [diff] [blame] | 4310 | struct dentry *ret; |
| 4311 | |
| 4312 | ret = d_splice_alias(btrfs_lookup_dentry(dir, dentry), dentry); |
| 4313 | if (unlikely(d_need_lookup(dentry))) { |
| 4314 | spin_lock(&dentry->d_lock); |
| 4315 | dentry->d_flags &= ~DCACHE_NEED_LOOKUP; |
| 4316 | spin_unlock(&dentry->d_lock); |
| 4317 | } |
| 4318 | return ret; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4319 | } |
| 4320 | |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 4321 | unsigned char btrfs_filetype_table[] = { |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4322 | DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK |
| 4323 | }; |
| 4324 | |
David Woodhouse | cbdf5a2 | 2008-08-06 19:42:33 +0100 | [diff] [blame] | 4325 | static int btrfs_real_readdir(struct file *filp, void *dirent, |
| 4326 | filldir_t filldir) |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4327 | { |
Chris Mason | 6da6aba | 2007-12-18 16:15:09 -0500 | [diff] [blame] | 4328 | struct inode *inode = filp->f_dentry->d_inode; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4329 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 4330 | struct btrfs_item *item; |
| 4331 | struct btrfs_dir_item *di; |
| 4332 | struct btrfs_key key; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4333 | struct btrfs_key found_key; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4334 | struct btrfs_path *path; |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 4335 | struct list_head ins_list; |
| 4336 | struct list_head del_list; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4337 | int ret; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4338 | struct extent_buffer *leaf; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4339 | int slot; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4340 | unsigned char d_type; |
| 4341 | int over = 0; |
| 4342 | u32 di_cur; |
| 4343 | u32 di_total; |
| 4344 | u32 di_len; |
| 4345 | int key_type = BTRFS_DIR_INDEX_KEY; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4346 | char tmp_name[32]; |
| 4347 | char *name_ptr; |
| 4348 | int name_len; |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 4349 | int is_curr = 0; /* filp->f_pos points to the current index? */ |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4350 | |
| 4351 | /* FIXME, use a real flag for deciding about the key type */ |
| 4352 | if (root->fs_info->tree_root == root) |
| 4353 | key_type = BTRFS_DIR_ITEM_KEY; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4354 | |
Chris Mason | 3954401 | 2007-12-12 14:38:19 -0500 | [diff] [blame] | 4355 | /* special case for "." */ |
| 4356 | if (filp->f_pos == 0) { |
Hidetoshi Seto | 3765fef | 2011-09-18 10:20:46 -0400 | [diff] [blame] | 4357 | over = filldir(dirent, ".", 1, |
| 4358 | filp->f_pos, btrfs_ino(inode), DT_DIR); |
Chris Mason | 3954401 | 2007-12-12 14:38:19 -0500 | [diff] [blame] | 4359 | if (over) |
| 4360 | return 0; |
| 4361 | filp->f_pos = 1; |
| 4362 | } |
Chris Mason | 3954401 | 2007-12-12 14:38:19 -0500 | [diff] [blame] | 4363 | /* special case for .., just use the back ref */ |
| 4364 | if (filp->f_pos == 1) { |
David Woodhouse | 5ecc7e5 | 2008-08-17 15:14:48 +0100 | [diff] [blame] | 4365 | u64 pino = parent_ino(filp->f_path.dentry); |
Chris Mason | 3954401 | 2007-12-12 14:38:19 -0500 | [diff] [blame] | 4366 | over = filldir(dirent, "..", 2, |
Hidetoshi Seto | 3765fef | 2011-09-18 10:20:46 -0400 | [diff] [blame] | 4367 | filp->f_pos, pino, DT_DIR); |
Chris Mason | 3954401 | 2007-12-12 14:38:19 -0500 | [diff] [blame] | 4368 | if (over) |
David Woodhouse | 49593bf | 2008-08-17 17:08:36 +0100 | [diff] [blame] | 4369 | return 0; |
Chris Mason | 3954401 | 2007-12-12 14:38:19 -0500 | [diff] [blame] | 4370 | filp->f_pos = 2; |
| 4371 | } |
David Woodhouse | 49593bf | 2008-08-17 17:08:36 +0100 | [diff] [blame] | 4372 | path = btrfs_alloc_path(); |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 4373 | if (!path) |
| 4374 | return -ENOMEM; |
Chris Mason | ff5714c | 2011-05-28 07:00:39 -0400 | [diff] [blame] | 4375 | |
Josef Bacik | 026fd31 | 2011-05-13 10:32:11 -0400 | [diff] [blame] | 4376 | path->reada = 1; |
David Woodhouse | 49593bf | 2008-08-17 17:08:36 +0100 | [diff] [blame] | 4377 | |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 4378 | if (key_type == BTRFS_DIR_INDEX_KEY) { |
| 4379 | INIT_LIST_HEAD(&ins_list); |
| 4380 | INIT_LIST_HEAD(&del_list); |
| 4381 | btrfs_get_delayed_items(inode, &ins_list, &del_list); |
| 4382 | } |
| 4383 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4384 | btrfs_set_key_type(&key, key_type); |
| 4385 | key.offset = filp->f_pos; |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 4386 | key.objectid = btrfs_ino(inode); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4387 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4388 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 4389 | if (ret < 0) |
| 4390 | goto err; |
David Woodhouse | 49593bf | 2008-08-17 17:08:36 +0100 | [diff] [blame] | 4391 | |
| 4392 | while (1) { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4393 | leaf = path->nodes[0]; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4394 | slot = path->slots[0]; |
Li Zefan | b9e03af | 2011-03-23 10:43:58 +0800 | [diff] [blame] | 4395 | if (slot >= btrfs_header_nritems(leaf)) { |
| 4396 | ret = btrfs_next_leaf(root, path); |
| 4397 | if (ret < 0) |
| 4398 | goto err; |
| 4399 | else if (ret > 0) |
| 4400 | break; |
| 4401 | continue; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4402 | } |
Chris Mason | 3de4586 | 2008-11-17 21:02:50 -0500 | [diff] [blame] | 4403 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4404 | item = btrfs_item_nr(leaf, slot); |
| 4405 | btrfs_item_key_to_cpu(leaf, &found_key, slot); |
| 4406 | |
| 4407 | if (found_key.objectid != key.objectid) |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4408 | break; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4409 | if (btrfs_key_type(&found_key) != key_type) |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4410 | break; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4411 | if (found_key.offset < filp->f_pos) |
Li Zefan | b9e03af | 2011-03-23 10:43:58 +0800 | [diff] [blame] | 4412 | goto next; |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 4413 | if (key_type == BTRFS_DIR_INDEX_KEY && |
| 4414 | btrfs_should_delete_dir_index(&del_list, |
| 4415 | found_key.offset)) |
| 4416 | goto next; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4417 | |
| 4418 | filp->f_pos = found_key.offset; |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 4419 | is_curr = 1; |
David Woodhouse | 49593bf | 2008-08-17 17:08:36 +0100 | [diff] [blame] | 4420 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4421 | di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item); |
| 4422 | di_cur = 0; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4423 | di_total = btrfs_item_size(leaf, item); |
David Woodhouse | 49593bf | 2008-08-17 17:08:36 +0100 | [diff] [blame] | 4424 | |
| 4425 | while (di_cur < di_total) { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4426 | struct btrfs_key location; |
| 4427 | |
Josef Bacik | 22a94d4 | 2011-03-16 16:47:17 -0400 | [diff] [blame] | 4428 | if (verify_dir_item(root, leaf, di)) |
| 4429 | break; |
| 4430 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4431 | name_len = btrfs_dir_name_len(leaf, di); |
David Woodhouse | 49593bf | 2008-08-17 17:08:36 +0100 | [diff] [blame] | 4432 | if (name_len <= sizeof(tmp_name)) { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4433 | name_ptr = tmp_name; |
| 4434 | } else { |
| 4435 | name_ptr = kmalloc(name_len, GFP_NOFS); |
David Woodhouse | 49593bf | 2008-08-17 17:08:36 +0100 | [diff] [blame] | 4436 | if (!name_ptr) { |
| 4437 | ret = -ENOMEM; |
| 4438 | goto err; |
| 4439 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4440 | } |
| 4441 | read_extent_buffer(leaf, name_ptr, |
| 4442 | (unsigned long)(di + 1), name_len); |
| 4443 | |
| 4444 | d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)]; |
| 4445 | btrfs_dir_item_key_to_cpu(leaf, di, &location); |
Chris Mason | 3de4586 | 2008-11-17 21:02:50 -0500 | [diff] [blame] | 4446 | |
Josef Bacik | b4aff1f | 2011-06-28 16:18:59 -0400 | [diff] [blame] | 4447 | |
Chris Mason | 3de4586 | 2008-11-17 21:02:50 -0500 | [diff] [blame] | 4448 | /* is this a reference to our own snapshot? If so |
Arne Jansen | 8c9c2bf | 2012-02-25 09:09:30 +0100 | [diff] [blame] | 4449 | * skip it. |
| 4450 | * |
| 4451 | * In contrast to old kernels, we insert the snapshot's |
| 4452 | * dir item and dir index after it has been created, so |
| 4453 | * we won't find a reference to our own snapshot. We |
| 4454 | * still keep the following code for backward |
| 4455 | * compatibility. |
Chris Mason | 3de4586 | 2008-11-17 21:02:50 -0500 | [diff] [blame] | 4456 | */ |
| 4457 | if (location.type == BTRFS_ROOT_ITEM_KEY && |
| 4458 | location.objectid == root->root_key.objectid) { |
| 4459 | over = 0; |
| 4460 | goto skip; |
| 4461 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4462 | over = filldir(dirent, name_ptr, name_len, |
David Woodhouse | 49593bf | 2008-08-17 17:08:36 +0100 | [diff] [blame] | 4463 | found_key.offset, location.objectid, |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4464 | d_type); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4465 | |
Chris Mason | 3de4586 | 2008-11-17 21:02:50 -0500 | [diff] [blame] | 4466 | skip: |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4467 | if (name_ptr != tmp_name) |
| 4468 | kfree(name_ptr); |
| 4469 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4470 | if (over) |
| 4471 | goto nopos; |
Josef Bacik | 5103e94 | 2007-11-16 11:45:54 -0500 | [diff] [blame] | 4472 | di_len = btrfs_dir_name_len(leaf, di) + |
David Woodhouse | 49593bf | 2008-08-17 17:08:36 +0100 | [diff] [blame] | 4473 | btrfs_dir_data_len(leaf, di) + sizeof(*di); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4474 | di_cur += di_len; |
| 4475 | di = (struct btrfs_dir_item *)((char *)di + di_len); |
| 4476 | } |
Li Zefan | b9e03af | 2011-03-23 10:43:58 +0800 | [diff] [blame] | 4477 | next: |
| 4478 | path->slots[0]++; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4479 | } |
David Woodhouse | 49593bf | 2008-08-17 17:08:36 +0100 | [diff] [blame] | 4480 | |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 4481 | if (key_type == BTRFS_DIR_INDEX_KEY) { |
| 4482 | if (is_curr) |
| 4483 | filp->f_pos++; |
| 4484 | ret = btrfs_readdir_delayed_dir_index(filp, dirent, filldir, |
| 4485 | &ins_list); |
| 4486 | if (ret) |
| 4487 | goto nopos; |
| 4488 | } |
| 4489 | |
David Woodhouse | 49593bf | 2008-08-17 17:08:36 +0100 | [diff] [blame] | 4490 | /* Reached end of directory/root. Bump pos past the last item. */ |
Yan Zheng | 5e591a0 | 2008-02-19 11:41:02 -0500 | [diff] [blame] | 4491 | if (key_type == BTRFS_DIR_INDEX_KEY) |
Jan Engelhardt | 406266a | 2009-12-09 22:00:38 +0000 | [diff] [blame] | 4492 | /* |
| 4493 | * 32-bit glibc will use getdents64, but then strtol - |
| 4494 | * so the last number we can serve is this. |
| 4495 | */ |
| 4496 | filp->f_pos = 0x7fffffff; |
Yan Zheng | 5e591a0 | 2008-02-19 11:41:02 -0500 | [diff] [blame] | 4497 | else |
| 4498 | filp->f_pos++; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4499 | nopos: |
| 4500 | ret = 0; |
| 4501 | err: |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 4502 | if (key_type == BTRFS_DIR_INDEX_KEY) |
| 4503 | btrfs_put_delayed_items(&ins_list, &del_list); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4504 | btrfs_free_path(path); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4505 | return ret; |
| 4506 | } |
| 4507 | |
Christoph Hellwig | a9185b4 | 2010-03-05 09:21:37 +0100 | [diff] [blame] | 4508 | int btrfs_write_inode(struct inode *inode, struct writeback_control *wbc) |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4509 | { |
| 4510 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 4511 | struct btrfs_trans_handle *trans; |
| 4512 | int ret = 0; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 4513 | bool nolock = false; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4514 | |
Josef Bacik | 72ac3c0 | 2012-05-23 14:13:11 -0400 | [diff] [blame] | 4515 | if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags)) |
Chris Mason | 4ca8b41 | 2008-08-05 13:30:48 -0400 | [diff] [blame] | 4516 | return 0; |
| 4517 | |
Liu Bo | 83eea1f | 2012-07-10 05:28:39 -0600 | [diff] [blame] | 4518 | if (btrfs_fs_closing(root->fs_info) && btrfs_is_free_space_inode(inode)) |
Li Zefan | 82d5902 | 2011-04-20 10:33:24 +0800 | [diff] [blame] | 4519 | nolock = true; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 4520 | |
Christoph Hellwig | a9185b4 | 2010-03-05 09:21:37 +0100 | [diff] [blame] | 4521 | if (wbc->sync_mode == WB_SYNC_ALL) { |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 4522 | if (nolock) |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 4523 | trans = btrfs_join_transaction_nolock(root); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 4524 | else |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 4525 | trans = btrfs_join_transaction(root); |
Tsutomu Itoh | 3612b49 | 2011-01-25 02:51:38 +0000 | [diff] [blame] | 4526 | if (IS_ERR(trans)) |
| 4527 | return PTR_ERR(trans); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 4528 | if (nolock) |
| 4529 | ret = btrfs_end_transaction_nolock(trans, root); |
| 4530 | else |
| 4531 | ret = btrfs_commit_transaction(trans, root); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4532 | } |
| 4533 | return ret; |
| 4534 | } |
| 4535 | |
| 4536 | /* |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 4537 | * This is somewhat expensive, updating the tree every time the |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4538 | * inode changes. But, it is most likely to find the inode in cache. |
| 4539 | * FIXME, needs more benchmarking...there are no reasons other than performance |
| 4540 | * to keep or drop this code. |
| 4541 | */ |
Josef Bacik | 22c44fe | 2011-11-30 10:45:38 -0500 | [diff] [blame] | 4542 | int btrfs_dirty_inode(struct inode *inode) |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4543 | { |
| 4544 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 4545 | struct btrfs_trans_handle *trans; |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4546 | int ret; |
| 4547 | |
Josef Bacik | 72ac3c0 | 2012-05-23 14:13:11 -0400 | [diff] [blame] | 4548 | if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags)) |
Josef Bacik | 22c44fe | 2011-11-30 10:45:38 -0500 | [diff] [blame] | 4549 | return 0; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4550 | |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 4551 | trans = btrfs_join_transaction(root); |
Josef Bacik | 22c44fe | 2011-11-30 10:45:38 -0500 | [diff] [blame] | 4552 | if (IS_ERR(trans)) |
| 4553 | return PTR_ERR(trans); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4554 | |
| 4555 | ret = btrfs_update_inode(trans, root, inode); |
Chris Mason | 94b6044 | 2010-05-26 11:02:00 -0400 | [diff] [blame] | 4556 | if (ret && ret == -ENOSPC) { |
| 4557 | /* whoops, lets try again with the full transaction */ |
| 4558 | btrfs_end_transaction(trans, root); |
| 4559 | trans = btrfs_start_transaction(root, 1); |
Josef Bacik | 22c44fe | 2011-11-30 10:45:38 -0500 | [diff] [blame] | 4560 | if (IS_ERR(trans)) |
| 4561 | return PTR_ERR(trans); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4562 | |
Chris Mason | 94b6044 | 2010-05-26 11:02:00 -0400 | [diff] [blame] | 4563 | ret = btrfs_update_inode(trans, root, inode); |
Chris Mason | 94b6044 | 2010-05-26 11:02:00 -0400 | [diff] [blame] | 4564 | } |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4565 | btrfs_end_transaction(trans, root); |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 4566 | if (BTRFS_I(inode)->delayed_node) |
| 4567 | btrfs_balance_delayed_items(root); |
Josef Bacik | 22c44fe | 2011-11-30 10:45:38 -0500 | [diff] [blame] | 4568 | |
| 4569 | return ret; |
| 4570 | } |
| 4571 | |
| 4572 | /* |
| 4573 | * This is a copy of file_update_time. We need this so we can return error on |
| 4574 | * ENOSPC for updating the inode in the case of file write and mmap writes. |
| 4575 | */ |
Josef Bacik | e41f941 | 2012-03-26 09:46:47 -0400 | [diff] [blame] | 4576 | static int btrfs_update_time(struct inode *inode, struct timespec *now, |
| 4577 | int flags) |
Josef Bacik | 22c44fe | 2011-11-30 10:45:38 -0500 | [diff] [blame] | 4578 | { |
Alexander Block | 2bc556528 | 2012-06-15 09:49:33 +0200 | [diff] [blame] | 4579 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 4580 | |
| 4581 | if (btrfs_root_readonly(root)) |
| 4582 | return -EROFS; |
| 4583 | |
Josef Bacik | e41f941 | 2012-03-26 09:46:47 -0400 | [diff] [blame] | 4584 | if (flags & S_VERSION) |
Josef Bacik | 22c44fe | 2011-11-30 10:45:38 -0500 | [diff] [blame] | 4585 | inode_inc_iversion(inode); |
Josef Bacik | e41f941 | 2012-03-26 09:46:47 -0400 | [diff] [blame] | 4586 | if (flags & S_CTIME) |
| 4587 | inode->i_ctime = *now; |
| 4588 | if (flags & S_MTIME) |
| 4589 | inode->i_mtime = *now; |
| 4590 | if (flags & S_ATIME) |
| 4591 | inode->i_atime = *now; |
| 4592 | return btrfs_dirty_inode(inode); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4593 | } |
| 4594 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 4595 | /* |
| 4596 | * find the highest existing sequence number in a directory |
| 4597 | * and then set the in-memory index_cnt variable to reflect |
| 4598 | * free sequence numbers |
| 4599 | */ |
Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 4600 | static int btrfs_set_inode_index_count(struct inode *inode) |
| 4601 | { |
| 4602 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 4603 | struct btrfs_key key, found_key; |
| 4604 | struct btrfs_path *path; |
| 4605 | struct extent_buffer *leaf; |
| 4606 | int ret; |
| 4607 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 4608 | key.objectid = btrfs_ino(inode); |
Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 4609 | btrfs_set_key_type(&key, BTRFS_DIR_INDEX_KEY); |
| 4610 | key.offset = (u64)-1; |
| 4611 | |
| 4612 | path = btrfs_alloc_path(); |
| 4613 | if (!path) |
| 4614 | return -ENOMEM; |
| 4615 | |
| 4616 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 4617 | if (ret < 0) |
| 4618 | goto out; |
| 4619 | /* FIXME: we should be able to handle this */ |
| 4620 | if (ret == 0) |
| 4621 | goto out; |
| 4622 | ret = 0; |
| 4623 | |
| 4624 | /* |
| 4625 | * MAGIC NUMBER EXPLANATION: |
| 4626 | * since we search a directory based on f_pos we have to start at 2 |
| 4627 | * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody |
| 4628 | * else has to start at 2 |
| 4629 | */ |
| 4630 | if (path->slots[0] == 0) { |
| 4631 | BTRFS_I(inode)->index_cnt = 2; |
| 4632 | goto out; |
| 4633 | } |
| 4634 | |
| 4635 | path->slots[0]--; |
| 4636 | |
| 4637 | leaf = path->nodes[0]; |
| 4638 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
| 4639 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 4640 | if (found_key.objectid != btrfs_ino(inode) || |
Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 4641 | btrfs_key_type(&found_key) != BTRFS_DIR_INDEX_KEY) { |
| 4642 | BTRFS_I(inode)->index_cnt = 2; |
| 4643 | goto out; |
| 4644 | } |
| 4645 | |
| 4646 | BTRFS_I(inode)->index_cnt = found_key.offset + 1; |
| 4647 | out: |
| 4648 | btrfs_free_path(path); |
| 4649 | return ret; |
| 4650 | } |
| 4651 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 4652 | /* |
| 4653 | * helper to find a free sequence number in a given directory. This current |
| 4654 | * code is very simple, later versions will do smarter things in the btree |
| 4655 | */ |
Chris Mason | 3de4586 | 2008-11-17 21:02:50 -0500 | [diff] [blame] | 4656 | int btrfs_set_inode_index(struct inode *dir, u64 *index) |
Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 4657 | { |
| 4658 | int ret = 0; |
| 4659 | |
| 4660 | if (BTRFS_I(dir)->index_cnt == (u64)-1) { |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 4661 | ret = btrfs_inode_delayed_dir_index_count(dir); |
| 4662 | if (ret) { |
| 4663 | ret = btrfs_set_inode_index_count(dir); |
| 4664 | if (ret) |
| 4665 | return ret; |
| 4666 | } |
Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 4667 | } |
| 4668 | |
Chris Mason | 00e4e6b | 2008-08-05 11:18:09 -0400 | [diff] [blame] | 4669 | *index = BTRFS_I(dir)->index_cnt; |
Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 4670 | BTRFS_I(dir)->index_cnt++; |
| 4671 | |
| 4672 | return ret; |
| 4673 | } |
| 4674 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4675 | static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans, |
| 4676 | struct btrfs_root *root, |
Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 4677 | struct inode *dir, |
Chris Mason | 9c58309 | 2008-01-29 15:15:18 -0500 | [diff] [blame] | 4678 | const char *name, int name_len, |
Al Viro | 175a4eb | 2011-07-26 03:30:54 -0400 | [diff] [blame] | 4679 | u64 ref_objectid, u64 objectid, |
| 4680 | umode_t mode, u64 *index) |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4681 | { |
| 4682 | struct inode *inode; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4683 | struct btrfs_inode_item *inode_item; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4684 | struct btrfs_key *location; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4685 | struct btrfs_path *path; |
Chris Mason | 9c58309 | 2008-01-29 15:15:18 -0500 | [diff] [blame] | 4686 | struct btrfs_inode_ref *ref; |
| 4687 | struct btrfs_key key[2]; |
| 4688 | u32 sizes[2]; |
| 4689 | unsigned long ptr; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4690 | int ret; |
| 4691 | int owner; |
| 4692 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4693 | path = btrfs_alloc_path(); |
Mark Fasheh | d8926bb | 2011-07-13 10:38:47 -0700 | [diff] [blame] | 4694 | if (!path) |
| 4695 | return ERR_PTR(-ENOMEM); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4696 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4697 | inode = new_inode(root->fs_info->sb); |
Yoshinori Sano | 8fb2764 | 2011-04-09 02:30:07 +0000 | [diff] [blame] | 4698 | if (!inode) { |
| 4699 | btrfs_free_path(path); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4700 | return ERR_PTR(-ENOMEM); |
Yoshinori Sano | 8fb2764 | 2011-04-09 02:30:07 +0000 | [diff] [blame] | 4701 | } |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4702 | |
Li Zefan | 581bb05 | 2011-04-20 10:06:11 +0800 | [diff] [blame] | 4703 | /* |
| 4704 | * we have to initialize this early, so we can reclaim the inode |
| 4705 | * number if we fail afterwards in this function. |
| 4706 | */ |
| 4707 | inode->i_ino = objectid; |
| 4708 | |
Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 4709 | if (dir) { |
liubo | 1abe9b8 | 2011-03-24 11:18:59 +0000 | [diff] [blame] | 4710 | trace_btrfs_inode_request(dir); |
| 4711 | |
Chris Mason | 3de4586 | 2008-11-17 21:02:50 -0500 | [diff] [blame] | 4712 | ret = btrfs_set_inode_index(dir, index); |
Shen Feng | 0977143 | 2009-04-02 16:46:06 -0400 | [diff] [blame] | 4713 | if (ret) { |
Yoshinori Sano | 8fb2764 | 2011-04-09 02:30:07 +0000 | [diff] [blame] | 4714 | btrfs_free_path(path); |
Shen Feng | 0977143 | 2009-04-02 16:46:06 -0400 | [diff] [blame] | 4715 | iput(inode); |
Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 4716 | return ERR_PTR(ret); |
Shen Feng | 0977143 | 2009-04-02 16:46:06 -0400 | [diff] [blame] | 4717 | } |
Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 4718 | } |
| 4719 | /* |
| 4720 | * index_cnt is ignored for everything but a dir, |
| 4721 | * btrfs_get_inode_index_count has an explanation for the magic |
| 4722 | * number |
| 4723 | */ |
| 4724 | BTRFS_I(inode)->index_cnt = 2; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4725 | BTRFS_I(inode)->root = root; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4726 | BTRFS_I(inode)->generation = trans->transid; |
Josef Bacik | 7619585 | 2010-11-19 02:18:02 +0000 | [diff] [blame] | 4727 | inode->i_generation = BTRFS_I(inode)->generation; |
Chris Mason | b888db2b | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 4728 | |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4729 | /* |
| 4730 | * We could have gotten an inode number from somebody who was fsynced |
| 4731 | * and then removed in this same transaction, so let's just set full |
| 4732 | * sync since it will be a full sync anyway and this will blow away the |
| 4733 | * old info in the log. |
| 4734 | */ |
| 4735 | set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags); |
| 4736 | |
Al Viro | 569254b | 2011-07-24 17:08:40 -0400 | [diff] [blame] | 4737 | if (S_ISDIR(mode)) |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4738 | owner = 0; |
| 4739 | else |
| 4740 | owner = 1; |
Chris Mason | 9c58309 | 2008-01-29 15:15:18 -0500 | [diff] [blame] | 4741 | |
| 4742 | key[0].objectid = objectid; |
| 4743 | btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY); |
| 4744 | key[0].offset = 0; |
| 4745 | |
| 4746 | key[1].objectid = objectid; |
| 4747 | btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY); |
| 4748 | key[1].offset = ref_objectid; |
| 4749 | |
| 4750 | sizes[0] = sizeof(struct btrfs_inode_item); |
| 4751 | sizes[1] = name_len + sizeof(*ref); |
| 4752 | |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 4753 | path->leave_spinning = 1; |
Chris Mason | 9c58309 | 2008-01-29 15:15:18 -0500 | [diff] [blame] | 4754 | ret = btrfs_insert_empty_items(trans, root, path, key, sizes, 2); |
| 4755 | if (ret != 0) |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4756 | goto fail; |
| 4757 | |
Dmitry Monakhov | ecc11fab | 2010-03-04 17:31:47 +0300 | [diff] [blame] | 4758 | inode_init_owner(inode, dir, mode); |
Yan Zheng | a76a3cd | 2008-10-09 11:46:29 -0400 | [diff] [blame] | 4759 | inode_set_bytes(inode, 0); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4760 | inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4761 | inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0], |
| 4762 | struct btrfs_inode_item); |
Li Zefan | 293f7e0 | 2012-07-10 00:58:58 -0600 | [diff] [blame] | 4763 | memset_extent_buffer(path->nodes[0], 0, (unsigned long)inode_item, |
| 4764 | sizeof(*inode_item)); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4765 | fill_inode_item(trans, path->nodes[0], inode_item, inode); |
Chris Mason | 9c58309 | 2008-01-29 15:15:18 -0500 | [diff] [blame] | 4766 | |
| 4767 | ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1, |
| 4768 | struct btrfs_inode_ref); |
| 4769 | btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len); |
Chris Mason | 00e4e6b | 2008-08-05 11:18:09 -0400 | [diff] [blame] | 4770 | btrfs_set_inode_ref_index(path->nodes[0], ref, *index); |
Chris Mason | 9c58309 | 2008-01-29 15:15:18 -0500 | [diff] [blame] | 4771 | ptr = (unsigned long)(ref + 1); |
| 4772 | write_extent_buffer(path->nodes[0], name, ptr, name_len); |
| 4773 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4774 | btrfs_mark_buffer_dirty(path->nodes[0]); |
| 4775 | btrfs_free_path(path); |
| 4776 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4777 | location = &BTRFS_I(inode)->location; |
| 4778 | location->objectid = objectid; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4779 | location->offset = 0; |
| 4780 | btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY); |
| 4781 | |
Christoph Hellwig | 6cbff00 | 2009-04-17 10:37:41 +0200 | [diff] [blame] | 4782 | btrfs_inherit_iflags(inode, dir); |
| 4783 | |
Al Viro | 569254b | 2011-07-24 17:08:40 -0400 | [diff] [blame] | 4784 | if (S_ISREG(mode)) { |
Chris Mason | 9427216 | 2009-07-02 12:26:06 -0400 | [diff] [blame] | 4785 | if (btrfs_test_opt(root, NODATASUM)) |
| 4786 | BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM; |
Liu Bo | 75e7cb7 | 2011-03-22 10:12:20 +0000 | [diff] [blame] | 4787 | if (btrfs_test_opt(root, NODATACOW) || |
| 4788 | (BTRFS_I(dir)->flags & BTRFS_INODE_NODATACOW)) |
Chris Mason | 9427216 | 2009-07-02 12:26:06 -0400 | [diff] [blame] | 4789 | BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW; |
| 4790 | } |
| 4791 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4792 | insert_inode_hash(inode); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 4793 | inode_tree_add(inode); |
liubo | 1abe9b8 | 2011-03-24 11:18:59 +0000 | [diff] [blame] | 4794 | |
| 4795 | trace_btrfs_inode_new(inode); |
Chris Mason | 1973f0f | 2011-06-24 13:13:29 -0400 | [diff] [blame] | 4796 | btrfs_set_inode_last_trans(trans, inode); |
liubo | 1abe9b8 | 2011-03-24 11:18:59 +0000 | [diff] [blame] | 4797 | |
Alexander Block | 8ea05e3 | 2012-07-25 17:35:53 +0200 | [diff] [blame] | 4798 | btrfs_update_root_times(trans, root); |
| 4799 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4800 | return inode; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4801 | fail: |
Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 4802 | if (dir) |
| 4803 | BTRFS_I(dir)->index_cnt--; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4804 | btrfs_free_path(path); |
Shen Feng | 0977143 | 2009-04-02 16:46:06 -0400 | [diff] [blame] | 4805 | iput(inode); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4806 | return ERR_PTR(ret); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4807 | } |
| 4808 | |
| 4809 | static inline u8 btrfs_inode_type(struct inode *inode) |
| 4810 | { |
| 4811 | return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT]; |
| 4812 | } |
| 4813 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 4814 | /* |
| 4815 | * utility function to add 'inode' into 'parent_inode' with |
| 4816 | * a give name and a given sequence number. |
| 4817 | * if 'add_backref' is true, also insert a backref from the |
| 4818 | * inode to the parent directory. |
| 4819 | */ |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4820 | int btrfs_add_link(struct btrfs_trans_handle *trans, |
| 4821 | struct inode *parent_inode, struct inode *inode, |
| 4822 | const char *name, int name_len, int add_backref, u64 index) |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4823 | { |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 4824 | int ret = 0; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4825 | struct btrfs_key key; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4826 | struct btrfs_root *root = BTRFS_I(parent_inode)->root; |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 4827 | u64 ino = btrfs_ino(inode); |
| 4828 | u64 parent_ino = btrfs_ino(parent_inode); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4829 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 4830 | if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) { |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 4831 | memcpy(&key, &BTRFS_I(inode)->root->root_key, sizeof(key)); |
| 4832 | } else { |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 4833 | key.objectid = ino; |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 4834 | btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY); |
| 4835 | key.offset = 0; |
| 4836 | } |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4837 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 4838 | if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) { |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 4839 | ret = btrfs_add_root_ref(trans, root->fs_info->tree_root, |
| 4840 | key.objectid, root->root_key.objectid, |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 4841 | parent_ino, index, name, name_len); |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 4842 | } else if (add_backref) { |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 4843 | ret = btrfs_insert_inode_ref(trans, root, name, name_len, ino, |
| 4844 | parent_ino, index); |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 4845 | } |
| 4846 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 4847 | /* Nothing to clean up yet */ |
| 4848 | if (ret) |
| 4849 | return ret; |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 4850 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 4851 | ret = btrfs_insert_dir_item(trans, root, name, name_len, |
| 4852 | parent_inode, &key, |
| 4853 | btrfs_inode_type(inode), index); |
| 4854 | if (ret == -EEXIST) |
| 4855 | goto fail_dir_item; |
| 4856 | else if (ret) { |
| 4857 | btrfs_abort_transaction(trans, root, ret); |
| 4858 | return ret; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4859 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 4860 | |
| 4861 | btrfs_i_size_write(parent_inode, parent_inode->i_size + |
| 4862 | name_len * 2); |
Josef Bacik | 0c4d2d9 | 2012-04-05 15:03:02 -0400 | [diff] [blame] | 4863 | inode_inc_iversion(parent_inode); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 4864 | parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME; |
| 4865 | ret = btrfs_update_inode(trans, root, parent_inode); |
| 4866 | if (ret) |
| 4867 | btrfs_abort_transaction(trans, root, ret); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4868 | return ret; |
Chris Mason | fe66a05 | 2012-02-20 08:40:56 -0500 | [diff] [blame] | 4869 | |
| 4870 | fail_dir_item: |
| 4871 | if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) { |
| 4872 | u64 local_index; |
| 4873 | int err; |
| 4874 | err = btrfs_del_root_ref(trans, root->fs_info->tree_root, |
| 4875 | key.objectid, root->root_key.objectid, |
| 4876 | parent_ino, &local_index, name, name_len); |
| 4877 | |
| 4878 | } else if (add_backref) { |
| 4879 | u64 local_index; |
| 4880 | int err; |
| 4881 | |
| 4882 | err = btrfs_del_inode_ref(trans, root, name, name_len, |
| 4883 | ino, parent_ino, &local_index); |
| 4884 | } |
| 4885 | return ret; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4886 | } |
| 4887 | |
| 4888 | static int btrfs_add_nondir(struct btrfs_trans_handle *trans, |
Josef Bacik | a1b075d | 2010-11-19 20:36:11 +0000 | [diff] [blame] | 4889 | struct inode *dir, struct dentry *dentry, |
| 4890 | struct inode *inode, int backref, u64 index) |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4891 | { |
Josef Bacik | a1b075d | 2010-11-19 20:36:11 +0000 | [diff] [blame] | 4892 | int err = btrfs_add_link(trans, dir, inode, |
| 4893 | dentry->d_name.name, dentry->d_name.len, |
| 4894 | backref, index); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4895 | if (err > 0) |
| 4896 | err = -EEXIST; |
| 4897 | return err; |
| 4898 | } |
| 4899 | |
Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 4900 | static int btrfs_mknod(struct inode *dir, struct dentry *dentry, |
Al Viro | 1a67aaf | 2011-07-26 01:52:52 -0400 | [diff] [blame] | 4901 | umode_t mode, dev_t rdev) |
Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 4902 | { |
| 4903 | struct btrfs_trans_handle *trans; |
| 4904 | struct btrfs_root *root = BTRFS_I(dir)->root; |
Chris Mason | 1832a6d | 2007-12-21 16:27:21 -0500 | [diff] [blame] | 4905 | struct inode *inode = NULL; |
Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 4906 | int err; |
| 4907 | int drop_inode = 0; |
| 4908 | u64 objectid; |
Chris Mason | 1832a6d | 2007-12-21 16:27:21 -0500 | [diff] [blame] | 4909 | unsigned long nr = 0; |
Chris Mason | 00e4e6b | 2008-08-05 11:18:09 -0400 | [diff] [blame] | 4910 | u64 index = 0; |
Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 4911 | |
| 4912 | if (!new_valid_dev(rdev)) |
| 4913 | return -EINVAL; |
| 4914 | |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 4915 | /* |
| 4916 | * 2 for inode item and ref |
| 4917 | * 2 for dir items |
| 4918 | * 1 for xattr if selinux is on |
| 4919 | */ |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4920 | trans = btrfs_start_transaction(root, 5); |
| 4921 | if (IS_ERR(trans)) |
| 4922 | return PTR_ERR(trans); |
Chris Mason | 1832a6d | 2007-12-21 16:27:21 -0500 | [diff] [blame] | 4923 | |
Li Zefan | 581bb05 | 2011-04-20 10:06:11 +0800 | [diff] [blame] | 4924 | err = btrfs_find_free_ino(root, &objectid); |
| 4925 | if (err) |
| 4926 | goto out_unlock; |
| 4927 | |
Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 4928 | inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name, |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 4929 | dentry->d_name.len, btrfs_ino(dir), objectid, |
Josef Bacik | d82a6f1d | 2011-05-11 15:26:06 -0400 | [diff] [blame] | 4930 | mode, &index); |
Tsutomu Itoh | 7cf96da | 2011-04-25 19:43:53 -0400 | [diff] [blame] | 4931 | if (IS_ERR(inode)) { |
| 4932 | err = PTR_ERR(inode); |
Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 4933 | goto out_unlock; |
Tsutomu Itoh | 7cf96da | 2011-04-25 19:43:53 -0400 | [diff] [blame] | 4934 | } |
Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 4935 | |
Eric Paris | 2a7dba3 | 2011-02-01 11:05:39 -0500 | [diff] [blame] | 4936 | err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name); |
Josef Bacik | 33268ea | 2008-07-24 12:16:36 -0400 | [diff] [blame] | 4937 | if (err) { |
| 4938 | drop_inode = 1; |
| 4939 | goto out_unlock; |
| 4940 | } |
| 4941 | |
Casey Schaufler | ad19db7 | 2011-12-15 10:09:07 -0500 | [diff] [blame] | 4942 | /* |
| 4943 | * If the active LSM wants to access the inode during |
| 4944 | * d_instantiate it needs these. Smack checks to see |
| 4945 | * if the filesystem supports xattrs by looking at the |
| 4946 | * ops vector. |
| 4947 | */ |
| 4948 | |
| 4949 | inode->i_op = &btrfs_special_inode_operations; |
Josef Bacik | a1b075d | 2010-11-19 20:36:11 +0000 | [diff] [blame] | 4950 | err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index); |
Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 4951 | if (err) |
| 4952 | drop_inode = 1; |
| 4953 | else { |
Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 4954 | init_special_inode(inode, inode->i_mode, rdev); |
Yan | 1b4ab1b | 2007-08-29 09:11:44 -0400 | [diff] [blame] | 4955 | btrfs_update_inode(trans, root, inode); |
Al Viro | 08c422c | 2011-12-23 07:58:13 -0500 | [diff] [blame] | 4956 | d_instantiate(dentry, inode); |
Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 4957 | } |
Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 4958 | out_unlock: |
Chris Mason | d3c2fdcf | 2007-09-17 10:58:06 -0400 | [diff] [blame] | 4959 | nr = trans->blocks_used; |
Josef Bacik | 7ad85bb | 2012-01-12 19:10:12 -0500 | [diff] [blame] | 4960 | btrfs_end_transaction(trans, root); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4961 | btrfs_btree_balance_dirty(root, nr); |
Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 4962 | if (drop_inode) { |
| 4963 | inode_dec_link_count(inode); |
| 4964 | iput(inode); |
| 4965 | } |
Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 4966 | return err; |
| 4967 | } |
| 4968 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4969 | static int btrfs_create(struct inode *dir, struct dentry *dentry, |
Al Viro | ebfc3b4 | 2012-06-10 18:05:36 -0400 | [diff] [blame] | 4970 | umode_t mode, bool excl) |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4971 | { |
| 4972 | struct btrfs_trans_handle *trans; |
| 4973 | struct btrfs_root *root = BTRFS_I(dir)->root; |
Chris Mason | 1832a6d | 2007-12-21 16:27:21 -0500 | [diff] [blame] | 4974 | struct inode *inode = NULL; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4975 | int drop_inode = 0; |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4976 | int err; |
Chris Mason | 1832a6d | 2007-12-21 16:27:21 -0500 | [diff] [blame] | 4977 | unsigned long nr = 0; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4978 | u64 objectid; |
Chris Mason | 00e4e6b | 2008-08-05 11:18:09 -0400 | [diff] [blame] | 4979 | u64 index = 0; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4980 | |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 4981 | /* |
| 4982 | * 2 for inode item and ref |
| 4983 | * 2 for dir items |
| 4984 | * 1 for xattr if selinux is on |
| 4985 | */ |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4986 | trans = btrfs_start_transaction(root, 5); |
| 4987 | if (IS_ERR(trans)) |
| 4988 | return PTR_ERR(trans); |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 4989 | |
Li Zefan | 581bb05 | 2011-04-20 10:06:11 +0800 | [diff] [blame] | 4990 | err = btrfs_find_free_ino(root, &objectid); |
| 4991 | if (err) |
| 4992 | goto out_unlock; |
| 4993 | |
Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 4994 | inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name, |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 4995 | dentry->d_name.len, btrfs_ino(dir), objectid, |
Josef Bacik | d82a6f1d | 2011-05-11 15:26:06 -0400 | [diff] [blame] | 4996 | mode, &index); |
Tsutomu Itoh | 7cf96da | 2011-04-25 19:43:53 -0400 | [diff] [blame] | 4997 | if (IS_ERR(inode)) { |
| 4998 | err = PTR_ERR(inode); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4999 | goto out_unlock; |
Tsutomu Itoh | 7cf96da | 2011-04-25 19:43:53 -0400 | [diff] [blame] | 5000 | } |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5001 | |
Eric Paris | 2a7dba3 | 2011-02-01 11:05:39 -0500 | [diff] [blame] | 5002 | err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name); |
Josef Bacik | 33268ea | 2008-07-24 12:16:36 -0400 | [diff] [blame] | 5003 | if (err) { |
| 5004 | drop_inode = 1; |
| 5005 | goto out_unlock; |
| 5006 | } |
| 5007 | |
Casey Schaufler | ad19db7 | 2011-12-15 10:09:07 -0500 | [diff] [blame] | 5008 | /* |
| 5009 | * If the active LSM wants to access the inode during |
| 5010 | * d_instantiate it needs these. Smack checks to see |
| 5011 | * if the filesystem supports xattrs by looking at the |
| 5012 | * ops vector. |
| 5013 | */ |
| 5014 | inode->i_fop = &btrfs_file_operations; |
| 5015 | inode->i_op = &btrfs_file_inode_operations; |
| 5016 | |
Josef Bacik | a1b075d | 2010-11-19 20:36:11 +0000 | [diff] [blame] | 5017 | err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5018 | if (err) |
| 5019 | drop_inode = 1; |
| 5020 | else { |
| 5021 | inode->i_mapping->a_ops = &btrfs_aops; |
Chris Mason | 0416008 | 2008-03-26 10:28:07 -0400 | [diff] [blame] | 5022 | inode->i_mapping->backing_dev_info = &root->fs_info->bdi; |
Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 5023 | BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops; |
Al Viro | 08c422c | 2011-12-23 07:58:13 -0500 | [diff] [blame] | 5024 | d_instantiate(dentry, inode); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5025 | } |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5026 | out_unlock: |
Chris Mason | d3c2fdcf | 2007-09-17 10:58:06 -0400 | [diff] [blame] | 5027 | nr = trans->blocks_used; |
Josef Bacik | 7ad85bb | 2012-01-12 19:10:12 -0500 | [diff] [blame] | 5028 | btrfs_end_transaction(trans, root); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5029 | if (drop_inode) { |
| 5030 | inode_dec_link_count(inode); |
| 5031 | iput(inode); |
| 5032 | } |
Chris Mason | d3c2fdcf | 2007-09-17 10:58:06 -0400 | [diff] [blame] | 5033 | btrfs_btree_balance_dirty(root, nr); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5034 | return err; |
| 5035 | } |
| 5036 | |
| 5037 | static int btrfs_link(struct dentry *old_dentry, struct inode *dir, |
| 5038 | struct dentry *dentry) |
| 5039 | { |
| 5040 | struct btrfs_trans_handle *trans; |
| 5041 | struct btrfs_root *root = BTRFS_I(dir)->root; |
| 5042 | struct inode *inode = old_dentry->d_inode; |
Chris Mason | 00e4e6b | 2008-08-05 11:18:09 -0400 | [diff] [blame] | 5043 | u64 index; |
Chris Mason | 1832a6d | 2007-12-21 16:27:21 -0500 | [diff] [blame] | 5044 | unsigned long nr = 0; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5045 | int err; |
| 5046 | int drop_inode = 0; |
| 5047 | |
TARUISI Hiroaki | 4a8be42 | 2009-11-12 07:14:26 +0000 | [diff] [blame] | 5048 | /* do not allow sys_link's with other subvols of the same device */ |
| 5049 | if (root->objectid != BTRFS_I(inode)->root->objectid) |
Mark Fasheh | 3ab3564 | 2011-03-22 17:20:26 +0000 | [diff] [blame] | 5050 | return -EXDEV; |
TARUISI Hiroaki | 4a8be42 | 2009-11-12 07:14:26 +0000 | [diff] [blame] | 5051 | |
Al Viro | c055e99 | 2011-03-04 17:15:18 +0000 | [diff] [blame] | 5052 | if (inode->i_nlink == ~0U) |
| 5053 | return -EMLINK; |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 5054 | |
Chris Mason | 3de4586 | 2008-11-17 21:02:50 -0500 | [diff] [blame] | 5055 | err = btrfs_set_inode_index(dir, &index); |
Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 5056 | if (err) |
| 5057 | goto fail; |
| 5058 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 5059 | /* |
Miao Xie | 7e6b646 | 2011-02-18 09:21:17 +0000 | [diff] [blame] | 5060 | * 2 items for inode and inode ref |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 5061 | * 2 items for dir items |
Miao Xie | 7e6b646 | 2011-02-18 09:21:17 +0000 | [diff] [blame] | 5062 | * 1 item for parent inode |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 5063 | */ |
Miao Xie | 7e6b646 | 2011-02-18 09:21:17 +0000 | [diff] [blame] | 5064 | trans = btrfs_start_transaction(root, 5); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 5065 | if (IS_ERR(trans)) { |
| 5066 | err = PTR_ERR(trans); |
| 5067 | goto fail; |
| 5068 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5069 | |
Miao Xie | 3153495 | 2011-04-13 13:19:21 +0800 | [diff] [blame] | 5070 | btrfs_inc_nlink(inode); |
Josef Bacik | 0c4d2d9 | 2012-04-05 15:03:02 -0400 | [diff] [blame] | 5071 | inode_inc_iversion(inode); |
Miao Xie | 3153495 | 2011-04-13 13:19:21 +0800 | [diff] [blame] | 5072 | inode->i_ctime = CURRENT_TIME; |
Al Viro | 7de9c6ee | 2010-10-23 11:11:40 -0400 | [diff] [blame] | 5073 | ihold(inode); |
Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 5074 | |
Josef Bacik | a1b075d | 2010-11-19 20:36:11 +0000 | [diff] [blame] | 5075 | err = btrfs_add_nondir(trans, dir, dentry, inode, 1, index); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5076 | |
Yan, Zheng | a571952 | 2009-09-24 09:17:31 -0400 | [diff] [blame] | 5077 | if (err) { |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5078 | drop_inode = 1; |
Yan, Zheng | a571952 | 2009-09-24 09:17:31 -0400 | [diff] [blame] | 5079 | } else { |
Al Viro | 10d9f30 | 2011-07-16 23:09:10 -0400 | [diff] [blame] | 5080 | struct dentry *parent = dentry->d_parent; |
Yan, Zheng | a571952 | 2009-09-24 09:17:31 -0400 | [diff] [blame] | 5081 | err = btrfs_update_inode(trans, root, inode); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5082 | if (err) |
| 5083 | goto fail; |
Al Viro | 08c422c | 2011-12-23 07:58:13 -0500 | [diff] [blame] | 5084 | d_instantiate(dentry, inode); |
Josef Bacik | 6a91221 | 2010-11-20 09:48:00 +0000 | [diff] [blame] | 5085 | btrfs_log_new_name(trans, inode, NULL, parent); |
Yan, Zheng | a571952 | 2009-09-24 09:17:31 -0400 | [diff] [blame] | 5086 | } |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5087 | |
Chris Mason | d3c2fdcf | 2007-09-17 10:58:06 -0400 | [diff] [blame] | 5088 | nr = trans->blocks_used; |
Josef Bacik | 7ad85bb | 2012-01-12 19:10:12 -0500 | [diff] [blame] | 5089 | btrfs_end_transaction(trans, root); |
Chris Mason | 1832a6d | 2007-12-21 16:27:21 -0500 | [diff] [blame] | 5090 | fail: |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5091 | if (drop_inode) { |
| 5092 | inode_dec_link_count(inode); |
| 5093 | iput(inode); |
| 5094 | } |
Chris Mason | d3c2fdcf | 2007-09-17 10:58:06 -0400 | [diff] [blame] | 5095 | btrfs_btree_balance_dirty(root, nr); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5096 | return err; |
| 5097 | } |
| 5098 | |
Al Viro | 18bb1db | 2011-07-26 01:41:39 -0400 | [diff] [blame] | 5099 | 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] | 5100 | { |
Chris Mason | b9d8666 | 2008-05-02 16:13:49 -0400 | [diff] [blame] | 5101 | struct inode *inode = NULL; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5102 | struct btrfs_trans_handle *trans; |
| 5103 | struct btrfs_root *root = BTRFS_I(dir)->root; |
| 5104 | int err = 0; |
| 5105 | int drop_on_err = 0; |
Chris Mason | b9d8666 | 2008-05-02 16:13:49 -0400 | [diff] [blame] | 5106 | u64 objectid = 0; |
Chris Mason | 00e4e6b | 2008-08-05 11:18:09 -0400 | [diff] [blame] | 5107 | u64 index = 0; |
Chris Mason | d3c2fdcf | 2007-09-17 10:58:06 -0400 | [diff] [blame] | 5108 | unsigned long nr = 1; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5109 | |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 5110 | /* |
| 5111 | * 2 items for inode and ref |
| 5112 | * 2 items for dir items |
| 5113 | * 1 for xattr if selinux is on |
| 5114 | */ |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 5115 | trans = btrfs_start_transaction(root, 5); |
| 5116 | if (IS_ERR(trans)) |
| 5117 | return PTR_ERR(trans); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5118 | |
Li Zefan | 581bb05 | 2011-04-20 10:06:11 +0800 | [diff] [blame] | 5119 | err = btrfs_find_free_ino(root, &objectid); |
| 5120 | if (err) |
| 5121 | goto out_fail; |
| 5122 | |
Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 5123 | inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name, |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 5124 | dentry->d_name.len, btrfs_ino(dir), objectid, |
Josef Bacik | d82a6f1d | 2011-05-11 15:26:06 -0400 | [diff] [blame] | 5125 | S_IFDIR | mode, &index); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5126 | if (IS_ERR(inode)) { |
| 5127 | err = PTR_ERR(inode); |
| 5128 | goto out_fail; |
| 5129 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5130 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5131 | drop_on_err = 1; |
Josef Bacik | 33268ea | 2008-07-24 12:16:36 -0400 | [diff] [blame] | 5132 | |
Eric Paris | 2a7dba3 | 2011-02-01 11:05:39 -0500 | [diff] [blame] | 5133 | err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name); |
Josef Bacik | 33268ea | 2008-07-24 12:16:36 -0400 | [diff] [blame] | 5134 | if (err) |
| 5135 | goto out_fail; |
| 5136 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5137 | inode->i_op = &btrfs_dir_inode_operations; |
| 5138 | inode->i_fop = &btrfs_dir_file_operations; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5139 | |
Chris Mason | dbe674a | 2008-07-17 12:54:05 -0400 | [diff] [blame] | 5140 | btrfs_i_size_write(inode, 0); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5141 | err = btrfs_update_inode(trans, root, inode); |
| 5142 | if (err) |
| 5143 | goto out_fail; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5144 | |
Josef Bacik | a1b075d | 2010-11-19 20:36:11 +0000 | [diff] [blame] | 5145 | err = btrfs_add_link(trans, dir, inode, dentry->d_name.name, |
| 5146 | dentry->d_name.len, 0, index); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5147 | if (err) |
| 5148 | goto out_fail; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5149 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5150 | d_instantiate(dentry, inode); |
| 5151 | drop_on_err = 0; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5152 | |
| 5153 | out_fail: |
Chris Mason | d3c2fdcf | 2007-09-17 10:58:06 -0400 | [diff] [blame] | 5154 | nr = trans->blocks_used; |
Josef Bacik | 7ad85bb | 2012-01-12 19:10:12 -0500 | [diff] [blame] | 5155 | btrfs_end_transaction(trans, root); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5156 | if (drop_on_err) |
| 5157 | iput(inode); |
Chris Mason | d3c2fdcf | 2007-09-17 10:58:06 -0400 | [diff] [blame] | 5158 | btrfs_btree_balance_dirty(root, nr); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5159 | return err; |
| 5160 | } |
| 5161 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 5162 | /* helper for btfs_get_extent. Given an existing extent in the tree, |
| 5163 | * and an extent that you want to insert, deal with overlap and insert |
| 5164 | * the new extent into the tree. |
| 5165 | */ |
Chris Mason | 3b95151 | 2008-04-17 11:29:12 -0400 | [diff] [blame] | 5166 | static int merge_extent_mapping(struct extent_map_tree *em_tree, |
| 5167 | struct extent_map *existing, |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 5168 | struct extent_map *em, |
| 5169 | u64 map_start, u64 map_len) |
Chris Mason | 3b95151 | 2008-04-17 11:29:12 -0400 | [diff] [blame] | 5170 | { |
| 5171 | u64 start_diff; |
Chris Mason | 3b95151 | 2008-04-17 11:29:12 -0400 | [diff] [blame] | 5172 | |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 5173 | BUG_ON(map_start < em->start || map_start >= extent_map_end(em)); |
| 5174 | start_diff = map_start - em->start; |
| 5175 | em->start = map_start; |
| 5176 | em->len = map_len; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 5177 | if (em->block_start < EXTENT_MAP_LAST_BYTE && |
| 5178 | !test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) { |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 5179 | em->block_start += start_diff; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 5180 | em->block_len -= start_diff; |
| 5181 | } |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 5182 | return add_extent_mapping(em_tree, em); |
Chris Mason | 3b95151 | 2008-04-17 11:29:12 -0400 | [diff] [blame] | 5183 | } |
| 5184 | |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 5185 | static noinline int uncompress_inline(struct btrfs_path *path, |
| 5186 | struct inode *inode, struct page *page, |
| 5187 | size_t pg_offset, u64 extent_offset, |
| 5188 | struct btrfs_file_extent_item *item) |
| 5189 | { |
| 5190 | int ret; |
| 5191 | struct extent_buffer *leaf = path->nodes[0]; |
| 5192 | char *tmp; |
| 5193 | size_t max_size; |
| 5194 | unsigned long inline_size; |
| 5195 | unsigned long ptr; |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 5196 | int compress_type; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 5197 | |
| 5198 | WARN_ON(pg_offset != 0); |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 5199 | compress_type = btrfs_file_extent_compression(leaf, item); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 5200 | max_size = btrfs_file_extent_ram_bytes(leaf, item); |
| 5201 | inline_size = btrfs_file_extent_inline_item_len(leaf, |
| 5202 | btrfs_item_nr(leaf, path->slots[0])); |
| 5203 | tmp = kmalloc(inline_size, GFP_NOFS); |
Tsutomu Itoh | 8d41371 | 2011-04-25 19:43:52 -0400 | [diff] [blame] | 5204 | if (!tmp) |
| 5205 | return -ENOMEM; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 5206 | ptr = btrfs_file_extent_inline_start(item); |
| 5207 | |
| 5208 | read_extent_buffer(leaf, tmp, ptr, inline_size); |
| 5209 | |
Chris Mason | 5b050f0 | 2008-11-11 09:34:41 -0500 | [diff] [blame] | 5210 | max_size = min_t(unsigned long, PAGE_CACHE_SIZE, max_size); |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 5211 | ret = btrfs_decompress(compress_type, tmp, page, |
| 5212 | extent_offset, inline_size, max_size); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 5213 | if (ret) { |
Cong Wang | 7ac687d | 2011-11-25 23:14:28 +0800 | [diff] [blame] | 5214 | char *kaddr = kmap_atomic(page); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 5215 | unsigned long copy_size = min_t(u64, |
| 5216 | PAGE_CACHE_SIZE - pg_offset, |
| 5217 | max_size - extent_offset); |
| 5218 | memset(kaddr + pg_offset, 0, copy_size); |
Cong Wang | 7ac687d | 2011-11-25 23:14:28 +0800 | [diff] [blame] | 5219 | kunmap_atomic(kaddr); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 5220 | } |
| 5221 | kfree(tmp); |
| 5222 | return 0; |
| 5223 | } |
| 5224 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 5225 | /* |
| 5226 | * 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] | 5227 | * the ugly parts come from merging extents from the disk with the in-ram |
| 5228 | * representation. This gets more complex because of the data=ordered code, |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 5229 | * where the in-ram extents might be locked pending data=ordered completion. |
| 5230 | * |
| 5231 | * This also copies inline extents directly into the page. |
| 5232 | */ |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 5233 | |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5234 | struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page, |
Chris Mason | 70dec80 | 2008-01-29 09:59:12 -0500 | [diff] [blame] | 5235 | size_t pg_offset, u64 start, u64 len, |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5236 | int create) |
| 5237 | { |
| 5238 | int ret; |
| 5239 | int err = 0; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 5240 | u64 bytenr; |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5241 | u64 extent_start = 0; |
| 5242 | u64 extent_end = 0; |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 5243 | u64 objectid = btrfs_ino(inode); |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5244 | u32 found_type; |
Chris Mason | f421950 | 2008-07-22 11:18:09 -0400 | [diff] [blame] | 5245 | struct btrfs_path *path = NULL; |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5246 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 5247 | struct btrfs_file_extent_item *item; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5248 | struct extent_buffer *leaf; |
| 5249 | struct btrfs_key found_key; |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5250 | struct extent_map *em = NULL; |
| 5251 | struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree; |
Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 5252 | struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree; |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5253 | struct btrfs_trans_handle *trans = NULL; |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 5254 | int compress_type; |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5255 | |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5256 | again: |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 5257 | read_lock(&em_tree->lock); |
Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 5258 | em = lookup_extent_mapping(em_tree, start, len); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 5259 | if (em) |
| 5260 | em->bdev = root->fs_info->fs_devices->latest_bdev; |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 5261 | read_unlock(&em_tree->lock); |
Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 5262 | |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5263 | if (em) { |
Chris Mason | e1c4b74 | 2008-04-22 13:26:46 -0400 | [diff] [blame] | 5264 | if (em->start > start || em->start + em->len <= start) |
| 5265 | free_extent_map(em); |
| 5266 | else if (em->block_start == EXTENT_MAP_INLINE && page) |
Chris Mason | 70dec80 | 2008-01-29 09:59:12 -0500 | [diff] [blame] | 5267 | free_extent_map(em); |
| 5268 | else |
| 5269 | goto out; |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5270 | } |
David Sterba | 172ddd6 | 2011-04-21 00:48:27 +0200 | [diff] [blame] | 5271 | em = alloc_extent_map(); |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5272 | if (!em) { |
Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 5273 | err = -ENOMEM; |
| 5274 | goto out; |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5275 | } |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 5276 | em->bdev = root->fs_info->fs_devices->latest_bdev; |
Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 5277 | em->start = EXTENT_MAP_HOLE; |
Chris Mason | 445a694 | 2008-11-10 11:53:33 -0500 | [diff] [blame] | 5278 | em->orig_start = EXTENT_MAP_HOLE; |
Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 5279 | em->len = (u64)-1; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 5280 | em->block_len = (u64)-1; |
Chris Mason | f421950 | 2008-07-22 11:18:09 -0400 | [diff] [blame] | 5281 | |
| 5282 | if (!path) { |
| 5283 | path = btrfs_alloc_path(); |
Josef Bacik | 026fd31 | 2011-05-13 10:32:11 -0400 | [diff] [blame] | 5284 | if (!path) { |
| 5285 | err = -ENOMEM; |
| 5286 | goto out; |
| 5287 | } |
| 5288 | /* |
| 5289 | * Chances are we'll be called again, so go ahead and do |
| 5290 | * readahead |
| 5291 | */ |
| 5292 | path->reada = 1; |
Chris Mason | f421950 | 2008-07-22 11:18:09 -0400 | [diff] [blame] | 5293 | } |
| 5294 | |
Chris Mason | 179e29e | 2007-11-01 11:28:41 -0400 | [diff] [blame] | 5295 | ret = btrfs_lookup_file_extent(trans, root, path, |
| 5296 | objectid, start, trans != NULL); |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5297 | if (ret < 0) { |
| 5298 | err = ret; |
| 5299 | goto out; |
| 5300 | } |
| 5301 | |
| 5302 | if (ret != 0) { |
| 5303 | if (path->slots[0] == 0) |
| 5304 | goto not_found; |
| 5305 | path->slots[0]--; |
| 5306 | } |
| 5307 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5308 | leaf = path->nodes[0]; |
| 5309 | item = btrfs_item_ptr(leaf, path->slots[0], |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5310 | struct btrfs_file_extent_item); |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5311 | /* are we inside the extent that was found? */ |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5312 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
| 5313 | found_type = btrfs_key_type(&found_key); |
| 5314 | if (found_key.objectid != objectid || |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5315 | found_type != BTRFS_EXTENT_DATA_KEY) { |
| 5316 | goto not_found; |
| 5317 | } |
| 5318 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5319 | found_type = btrfs_file_extent_type(leaf, item); |
| 5320 | extent_start = found_key.offset; |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 5321 | compress_type = btrfs_file_extent_compression(leaf, item); |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 5322 | if (found_type == BTRFS_FILE_EXTENT_REG || |
| 5323 | found_type == BTRFS_FILE_EXTENT_PREALLOC) { |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5324 | extent_end = extent_start + |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 5325 | btrfs_file_extent_num_bytes(leaf, item); |
Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 5326 | } else if (found_type == BTRFS_FILE_EXTENT_INLINE) { |
| 5327 | size_t size; |
| 5328 | size = btrfs_file_extent_inline_len(leaf, item); |
| 5329 | extent_end = (extent_start + size + root->sectorsize - 1) & |
| 5330 | ~((u64)root->sectorsize - 1); |
| 5331 | } |
| 5332 | |
| 5333 | if (start >= extent_end) { |
| 5334 | path->slots[0]++; |
| 5335 | if (path->slots[0] >= btrfs_header_nritems(leaf)) { |
| 5336 | ret = btrfs_next_leaf(root, path); |
| 5337 | if (ret < 0) { |
| 5338 | err = ret; |
| 5339 | goto out; |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5340 | } |
Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 5341 | if (ret > 0) |
| 5342 | goto not_found; |
| 5343 | leaf = path->nodes[0]; |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5344 | } |
Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 5345 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
| 5346 | if (found_key.objectid != objectid || |
| 5347 | found_key.type != BTRFS_EXTENT_DATA_KEY) |
| 5348 | goto not_found; |
| 5349 | if (start + len <= found_key.offset) |
| 5350 | goto not_found; |
| 5351 | em->start = start; |
| 5352 | em->len = found_key.offset - start; |
| 5353 | goto not_found_em; |
| 5354 | } |
| 5355 | |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 5356 | if (found_type == BTRFS_FILE_EXTENT_REG || |
| 5357 | found_type == BTRFS_FILE_EXTENT_PREALLOC) { |
Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 5358 | em->start = extent_start; |
| 5359 | em->len = extent_end - extent_start; |
Yan Zheng | ff5b7ee | 2008-11-10 07:34:43 -0500 | [diff] [blame] | 5360 | em->orig_start = extent_start - |
| 5361 | btrfs_file_extent_offset(leaf, item); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 5362 | bytenr = btrfs_file_extent_disk_bytenr(leaf, item); |
| 5363 | if (bytenr == 0) { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5364 | em->block_start = EXTENT_MAP_HOLE; |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5365 | goto insert; |
| 5366 | } |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 5367 | if (compress_type != BTRFS_COMPRESS_NONE) { |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 5368 | set_bit(EXTENT_FLAG_COMPRESSED, &em->flags); |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 5369 | em->compress_type = compress_type; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 5370 | em->block_start = bytenr; |
| 5371 | em->block_len = btrfs_file_extent_disk_num_bytes(leaf, |
| 5372 | item); |
| 5373 | } else { |
| 5374 | bytenr += btrfs_file_extent_offset(leaf, item); |
| 5375 | em->block_start = bytenr; |
| 5376 | em->block_len = em->len; |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 5377 | if (found_type == BTRFS_FILE_EXTENT_PREALLOC) |
| 5378 | set_bit(EXTENT_FLAG_PREALLOC, &em->flags); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 5379 | } |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5380 | goto insert; |
| 5381 | } else if (found_type == BTRFS_FILE_EXTENT_INLINE) { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5382 | unsigned long ptr; |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5383 | char *map; |
Chris Mason | 3326d1b | 2007-10-15 16:18:25 -0400 | [diff] [blame] | 5384 | size_t size; |
| 5385 | size_t extent_offset; |
| 5386 | size_t copy_size; |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5387 | |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5388 | em->block_start = EXTENT_MAP_INLINE; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 5389 | if (!page || create) { |
Yan | 689f934 | 2007-10-29 11:41:07 -0400 | [diff] [blame] | 5390 | em->start = extent_start; |
Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 5391 | em->len = extent_end - extent_start; |
Yan | 689f934 | 2007-10-29 11:41:07 -0400 | [diff] [blame] | 5392 | goto out; |
| 5393 | } |
| 5394 | |
Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 5395 | size = btrfs_file_extent_inline_len(leaf, item); |
| 5396 | extent_offset = page_offset(page) + pg_offset - extent_start; |
Chris Mason | 70dec80 | 2008-01-29 09:59:12 -0500 | [diff] [blame] | 5397 | copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset, |
Yan | 689f934 | 2007-10-29 11:41:07 -0400 | [diff] [blame] | 5398 | size - extent_offset); |
Chris Mason | 3326d1b | 2007-10-15 16:18:25 -0400 | [diff] [blame] | 5399 | em->start = extent_start + extent_offset; |
Chris Mason | 70dec80 | 2008-01-29 09:59:12 -0500 | [diff] [blame] | 5400 | em->len = (copy_size + root->sectorsize - 1) & |
| 5401 | ~((u64)root->sectorsize - 1); |
Yan Zheng | ff5b7ee | 2008-11-10 07:34:43 -0500 | [diff] [blame] | 5402 | em->orig_start = EXTENT_MAP_INLINE; |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 5403 | if (compress_type) { |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 5404 | set_bit(EXTENT_FLAG_COMPRESSED, &em->flags); |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 5405 | em->compress_type = compress_type; |
| 5406 | } |
Yan | 689f934 | 2007-10-29 11:41:07 -0400 | [diff] [blame] | 5407 | ptr = btrfs_file_extent_inline_start(item) + extent_offset; |
Chris Mason | 179e29e | 2007-11-01 11:28:41 -0400 | [diff] [blame] | 5408 | if (create == 0 && !PageUptodate(page)) { |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 5409 | if (btrfs_file_extent_compression(leaf, item) != |
| 5410 | BTRFS_COMPRESS_NONE) { |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 5411 | ret = uncompress_inline(path, inode, page, |
| 5412 | pg_offset, |
| 5413 | extent_offset, item); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5414 | BUG_ON(ret); /* -ENOMEM */ |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 5415 | } else { |
| 5416 | map = kmap(page); |
| 5417 | read_extent_buffer(leaf, map + pg_offset, ptr, |
| 5418 | copy_size); |
Chris Mason | 93c82d5 | 2009-09-11 12:36:29 -0400 | [diff] [blame] | 5419 | if (pg_offset + copy_size < PAGE_CACHE_SIZE) { |
| 5420 | memset(map + pg_offset + copy_size, 0, |
| 5421 | PAGE_CACHE_SIZE - pg_offset - |
| 5422 | copy_size); |
| 5423 | } |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 5424 | kunmap(page); |
| 5425 | } |
Chris Mason | 179e29e | 2007-11-01 11:28:41 -0400 | [diff] [blame] | 5426 | flush_dcache_page(page); |
| 5427 | } else if (create && PageUptodate(page)) { |
Jan Schmidt | 6bf7e08 | 2011-12-01 14:35:19 +0100 | [diff] [blame] | 5428 | BUG(); |
Chris Mason | 179e29e | 2007-11-01 11:28:41 -0400 | [diff] [blame] | 5429 | if (!trans) { |
| 5430 | kunmap(page); |
| 5431 | free_extent_map(em); |
| 5432 | em = NULL; |
Chris Mason | ff5714c | 2011-05-28 07:00:39 -0400 | [diff] [blame] | 5433 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 5434 | btrfs_release_path(path); |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 5435 | trans = btrfs_join_transaction(root); |
Chris Mason | ff5714c | 2011-05-28 07:00:39 -0400 | [diff] [blame] | 5436 | |
Tsutomu Itoh | 3612b49 | 2011-01-25 02:51:38 +0000 | [diff] [blame] | 5437 | if (IS_ERR(trans)) |
| 5438 | return ERR_CAST(trans); |
Chris Mason | 179e29e | 2007-11-01 11:28:41 -0400 | [diff] [blame] | 5439 | goto again; |
| 5440 | } |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 5441 | map = kmap(page); |
Chris Mason | 70dec80 | 2008-01-29 09:59:12 -0500 | [diff] [blame] | 5442 | write_extent_buffer(leaf, map + pg_offset, ptr, |
Chris Mason | 179e29e | 2007-11-01 11:28:41 -0400 | [diff] [blame] | 5443 | copy_size); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 5444 | kunmap(page); |
Chris Mason | 179e29e | 2007-11-01 11:28:41 -0400 | [diff] [blame] | 5445 | btrfs_mark_buffer_dirty(leaf); |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5446 | } |
Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 5447 | set_extent_uptodate(io_tree, em->start, |
Arne Jansen | 507903b | 2011-04-06 10:02:20 +0000 | [diff] [blame] | 5448 | extent_map_end(em) - 1, NULL, GFP_NOFS); |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5449 | goto insert; |
| 5450 | } else { |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 5451 | printk(KERN_ERR "btrfs unknown found_type %d\n", found_type); |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5452 | WARN_ON(1); |
| 5453 | } |
| 5454 | not_found: |
| 5455 | em->start = start; |
Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 5456 | em->len = len; |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5457 | not_found_em: |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5458 | em->block_start = EXTENT_MAP_HOLE; |
Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 5459 | set_bit(EXTENT_FLAG_VACANCY, &em->flags); |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5460 | insert: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 5461 | btrfs_release_path(path); |
Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 5462 | if (em->start > start || extent_map_end(em) <= start) { |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 5463 | printk(KERN_ERR "Btrfs: bad extent! em: [%llu %llu] passed " |
| 5464 | "[%llu %llu]\n", (unsigned long long)em->start, |
| 5465 | (unsigned long long)em->len, |
| 5466 | (unsigned long long)start, |
| 5467 | (unsigned long long)len); |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5468 | err = -EIO; |
| 5469 | goto out; |
| 5470 | } |
Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 5471 | |
| 5472 | err = 0; |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 5473 | write_lock(&em_tree->lock); |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5474 | ret = add_extent_mapping(em_tree, em); |
Chris Mason | 3b95151 | 2008-04-17 11:29:12 -0400 | [diff] [blame] | 5475 | /* it is possible that someone inserted the extent into the tree |
| 5476 | * while we had the lock dropped. It is also possible that |
| 5477 | * an overlapping map exists in the tree |
| 5478 | */ |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5479 | if (ret == -EEXIST) { |
Chris Mason | 3b95151 | 2008-04-17 11:29:12 -0400 | [diff] [blame] | 5480 | struct extent_map *existing; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 5481 | |
| 5482 | ret = 0; |
| 5483 | |
Chris Mason | 3b95151 | 2008-04-17 11:29:12 -0400 | [diff] [blame] | 5484 | existing = lookup_extent_mapping(em_tree, start, len); |
Chris Mason | e1c4b74 | 2008-04-22 13:26:46 -0400 | [diff] [blame] | 5485 | if (existing && (existing->start > start || |
| 5486 | existing->start + existing->len <= start)) { |
| 5487 | free_extent_map(existing); |
| 5488 | existing = NULL; |
| 5489 | } |
Chris Mason | 3b95151 | 2008-04-17 11:29:12 -0400 | [diff] [blame] | 5490 | if (!existing) { |
| 5491 | existing = lookup_extent_mapping(em_tree, em->start, |
| 5492 | em->len); |
| 5493 | if (existing) { |
| 5494 | err = merge_extent_mapping(em_tree, existing, |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 5495 | em, start, |
| 5496 | root->sectorsize); |
Chris Mason | 3b95151 | 2008-04-17 11:29:12 -0400 | [diff] [blame] | 5497 | free_extent_map(existing); |
| 5498 | if (err) { |
| 5499 | free_extent_map(em); |
| 5500 | em = NULL; |
| 5501 | } |
| 5502 | } else { |
| 5503 | err = -EIO; |
Chris Mason | 3b95151 | 2008-04-17 11:29:12 -0400 | [diff] [blame] | 5504 | free_extent_map(em); |
| 5505 | em = NULL; |
| 5506 | } |
| 5507 | } else { |
| 5508 | free_extent_map(em); |
| 5509 | em = existing; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 5510 | err = 0; |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5511 | } |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5512 | } |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 5513 | write_unlock(&em_tree->lock); |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5514 | out: |
liubo | 1abe9b8 | 2011-03-24 11:18:59 +0000 | [diff] [blame] | 5515 | |
| 5516 | trace_btrfs_get_extent(root, em); |
| 5517 | |
Chris Mason | f421950 | 2008-07-22 11:18:09 -0400 | [diff] [blame] | 5518 | if (path) |
| 5519 | btrfs_free_path(path); |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5520 | if (trans) { |
| 5521 | ret = btrfs_end_transaction(trans, root); |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 5522 | if (!err) |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5523 | err = ret; |
| 5524 | } |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5525 | if (err) { |
| 5526 | free_extent_map(em); |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5527 | return ERR_PTR(err); |
| 5528 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5529 | BUG_ON(!em); /* Error is always set */ |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5530 | return em; |
| 5531 | } |
| 5532 | |
Chris Mason | ec29ed5 | 2011-02-23 16:23:20 -0500 | [diff] [blame] | 5533 | struct extent_map *btrfs_get_extent_fiemap(struct inode *inode, struct page *page, |
| 5534 | size_t pg_offset, u64 start, u64 len, |
| 5535 | int create) |
| 5536 | { |
| 5537 | struct extent_map *em; |
| 5538 | struct extent_map *hole_em = NULL; |
| 5539 | u64 range_start = start; |
| 5540 | u64 end; |
| 5541 | u64 found; |
| 5542 | u64 found_end; |
| 5543 | int err = 0; |
| 5544 | |
| 5545 | em = btrfs_get_extent(inode, page, pg_offset, start, len, create); |
| 5546 | if (IS_ERR(em)) |
| 5547 | return em; |
| 5548 | if (em) { |
| 5549 | /* |
| 5550 | * if our em maps to a hole, there might |
| 5551 | * actually be delalloc bytes behind it |
| 5552 | */ |
| 5553 | if (em->block_start != EXTENT_MAP_HOLE) |
| 5554 | return em; |
| 5555 | else |
| 5556 | hole_em = em; |
| 5557 | } |
| 5558 | |
| 5559 | /* check to see if we've wrapped (len == -1 or similar) */ |
| 5560 | end = start + len; |
| 5561 | if (end < start) |
| 5562 | end = (u64)-1; |
| 5563 | else |
| 5564 | end -= 1; |
| 5565 | |
| 5566 | em = NULL; |
| 5567 | |
| 5568 | /* ok, we didn't find anything, lets look for delalloc */ |
| 5569 | found = count_range_bits(&BTRFS_I(inode)->io_tree, &range_start, |
| 5570 | end, len, EXTENT_DELALLOC, 1); |
| 5571 | found_end = range_start + found; |
| 5572 | if (found_end < range_start) |
| 5573 | found_end = (u64)-1; |
| 5574 | |
| 5575 | /* |
| 5576 | * we didn't find anything useful, return |
| 5577 | * the original results from get_extent() |
| 5578 | */ |
| 5579 | if (range_start > end || found_end <= start) { |
| 5580 | em = hole_em; |
| 5581 | hole_em = NULL; |
| 5582 | goto out; |
| 5583 | } |
| 5584 | |
| 5585 | /* adjust the range_start to make sure it doesn't |
| 5586 | * go backwards from the start they passed in |
| 5587 | */ |
| 5588 | range_start = max(start,range_start); |
| 5589 | found = found_end - range_start; |
| 5590 | |
| 5591 | if (found > 0) { |
| 5592 | u64 hole_start = start; |
| 5593 | u64 hole_len = len; |
| 5594 | |
David Sterba | 172ddd6 | 2011-04-21 00:48:27 +0200 | [diff] [blame] | 5595 | em = alloc_extent_map(); |
Chris Mason | ec29ed5 | 2011-02-23 16:23:20 -0500 | [diff] [blame] | 5596 | if (!em) { |
| 5597 | err = -ENOMEM; |
| 5598 | goto out; |
| 5599 | } |
| 5600 | /* |
| 5601 | * when btrfs_get_extent can't find anything it |
| 5602 | * returns one huge hole |
| 5603 | * |
| 5604 | * make sure what it found really fits our range, and |
| 5605 | * adjust to make sure it is based on the start from |
| 5606 | * the caller |
| 5607 | */ |
| 5608 | if (hole_em) { |
| 5609 | u64 calc_end = extent_map_end(hole_em); |
| 5610 | |
| 5611 | if (calc_end <= start || (hole_em->start > end)) { |
| 5612 | free_extent_map(hole_em); |
| 5613 | hole_em = NULL; |
| 5614 | } else { |
| 5615 | hole_start = max(hole_em->start, start); |
| 5616 | hole_len = calc_end - hole_start; |
| 5617 | } |
| 5618 | } |
| 5619 | em->bdev = NULL; |
| 5620 | if (hole_em && range_start > hole_start) { |
| 5621 | /* our hole starts before our delalloc, so we |
| 5622 | * have to return just the parts of the hole |
| 5623 | * that go until the delalloc starts |
| 5624 | */ |
| 5625 | em->len = min(hole_len, |
| 5626 | range_start - hole_start); |
| 5627 | em->start = hole_start; |
| 5628 | em->orig_start = hole_start; |
| 5629 | /* |
| 5630 | * don't adjust block start at all, |
| 5631 | * it is fixed at EXTENT_MAP_HOLE |
| 5632 | */ |
| 5633 | em->block_start = hole_em->block_start; |
| 5634 | em->block_len = hole_len; |
| 5635 | } else { |
| 5636 | em->start = range_start; |
| 5637 | em->len = found; |
| 5638 | em->orig_start = range_start; |
| 5639 | em->block_start = EXTENT_MAP_DELALLOC; |
| 5640 | em->block_len = found; |
| 5641 | } |
| 5642 | } else if (hole_em) { |
| 5643 | return hole_em; |
| 5644 | } |
| 5645 | out: |
| 5646 | |
| 5647 | free_extent_map(hole_em); |
| 5648 | if (err) { |
| 5649 | free_extent_map(em); |
| 5650 | return ERR_PTR(err); |
| 5651 | } |
| 5652 | return em; |
| 5653 | } |
| 5654 | |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5655 | static struct extent_map *btrfs_new_extent_direct(struct inode *inode, |
Josef Bacik | 16d299a | 2011-04-06 14:53:07 -0400 | [diff] [blame] | 5656 | struct extent_map *em, |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5657 | u64 start, u64 len) |
| 5658 | { |
| 5659 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 5660 | struct btrfs_trans_handle *trans; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5661 | struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree; |
| 5662 | struct btrfs_key ins; |
| 5663 | u64 alloc_hint; |
| 5664 | int ret; |
Josef Bacik | 16d299a | 2011-04-06 14:53:07 -0400 | [diff] [blame] | 5665 | bool insert = false; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5666 | |
Josef Bacik | 16d299a | 2011-04-06 14:53:07 -0400 | [diff] [blame] | 5667 | /* |
| 5668 | * Ok if the extent map we looked up is a hole and is for the exact |
| 5669 | * range we want, there is no reason to allocate a new one, however if |
| 5670 | * it is not right then we need to free this one and drop the cache for |
| 5671 | * our range. |
| 5672 | */ |
| 5673 | if (em->block_start != EXTENT_MAP_HOLE || em->start != start || |
| 5674 | em->len != len) { |
| 5675 | free_extent_map(em); |
| 5676 | em = NULL; |
| 5677 | insert = true; |
| 5678 | btrfs_drop_extent_cache(inode, start, start + len - 1, 0); |
| 5679 | } |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5680 | |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 5681 | trans = btrfs_join_transaction(root); |
Tsutomu Itoh | 3612b49 | 2011-01-25 02:51:38 +0000 | [diff] [blame] | 5682 | if (IS_ERR(trans)) |
| 5683 | return ERR_CAST(trans); |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5684 | |
Chris Mason | 4cb5300 | 2011-05-24 15:35:30 -0400 | [diff] [blame] | 5685 | if (start <= BTRFS_I(inode)->disk_i_size && len < 64 * 1024) |
| 5686 | btrfs_add_inode_defrag(trans, inode); |
| 5687 | |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5688 | trans->block_rsv = &root->fs_info->delalloc_block_rsv; |
| 5689 | |
| 5690 | alloc_hint = get_extent_allocation_hint(inode, start, len); |
| 5691 | ret = btrfs_reserve_extent(trans, root, len, root->sectorsize, 0, |
Josef Bacik | 81c9ad2 | 2012-01-18 10:56:06 -0500 | [diff] [blame] | 5692 | alloc_hint, &ins, 1); |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5693 | if (ret) { |
| 5694 | em = ERR_PTR(ret); |
| 5695 | goto out; |
| 5696 | } |
| 5697 | |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5698 | if (!em) { |
David Sterba | 172ddd6 | 2011-04-21 00:48:27 +0200 | [diff] [blame] | 5699 | em = alloc_extent_map(); |
Josef Bacik | 16d299a | 2011-04-06 14:53:07 -0400 | [diff] [blame] | 5700 | if (!em) { |
| 5701 | em = ERR_PTR(-ENOMEM); |
| 5702 | goto out; |
| 5703 | } |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5704 | } |
| 5705 | |
| 5706 | em->start = start; |
| 5707 | em->orig_start = em->start; |
| 5708 | em->len = ins.offset; |
| 5709 | |
| 5710 | em->block_start = ins.objectid; |
| 5711 | em->block_len = ins.offset; |
| 5712 | em->bdev = root->fs_info->fs_devices->latest_bdev; |
Josef Bacik | 16d299a | 2011-04-06 14:53:07 -0400 | [diff] [blame] | 5713 | |
| 5714 | /* |
| 5715 | * We need to do this because if we're using the original em we searched |
| 5716 | * for, we could have EXTENT_FLAG_VACANCY set, and we don't want that. |
| 5717 | */ |
| 5718 | em->flags = 0; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5719 | set_bit(EXTENT_FLAG_PINNED, &em->flags); |
| 5720 | |
Josef Bacik | 16d299a | 2011-04-06 14:53:07 -0400 | [diff] [blame] | 5721 | while (insert) { |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5722 | write_lock(&em_tree->lock); |
| 5723 | ret = add_extent_mapping(em_tree, em); |
| 5724 | write_unlock(&em_tree->lock); |
| 5725 | if (ret != -EEXIST) |
| 5726 | break; |
| 5727 | btrfs_drop_extent_cache(inode, start, start + em->len - 1, 0); |
| 5728 | } |
| 5729 | |
| 5730 | ret = btrfs_add_ordered_extent_dio(inode, start, ins.objectid, |
| 5731 | ins.offset, ins.offset, 0); |
| 5732 | if (ret) { |
| 5733 | btrfs_free_reserved_extent(root, ins.objectid, ins.offset); |
| 5734 | em = ERR_PTR(ret); |
| 5735 | } |
| 5736 | out: |
| 5737 | btrfs_end_transaction(trans, root); |
| 5738 | return em; |
| 5739 | } |
| 5740 | |
Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 5741 | /* |
| 5742 | * returns 1 when the nocow is safe, < 1 on error, 0 if the |
| 5743 | * block must be cow'd |
| 5744 | */ |
| 5745 | static noinline int can_nocow_odirect(struct btrfs_trans_handle *trans, |
| 5746 | struct inode *inode, u64 offset, u64 len) |
| 5747 | { |
| 5748 | struct btrfs_path *path; |
| 5749 | int ret; |
| 5750 | struct extent_buffer *leaf; |
| 5751 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 5752 | struct btrfs_file_extent_item *fi; |
| 5753 | struct btrfs_key key; |
| 5754 | u64 disk_bytenr; |
| 5755 | u64 backref_offset; |
| 5756 | u64 extent_end; |
| 5757 | u64 num_bytes; |
| 5758 | int slot; |
| 5759 | int found_type; |
| 5760 | |
| 5761 | path = btrfs_alloc_path(); |
| 5762 | if (!path) |
| 5763 | return -ENOMEM; |
| 5764 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 5765 | ret = btrfs_lookup_file_extent(trans, root, path, btrfs_ino(inode), |
Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 5766 | offset, 0); |
| 5767 | if (ret < 0) |
| 5768 | goto out; |
| 5769 | |
| 5770 | slot = path->slots[0]; |
| 5771 | if (ret == 1) { |
| 5772 | if (slot == 0) { |
| 5773 | /* can't find the item, must cow */ |
| 5774 | ret = 0; |
| 5775 | goto out; |
| 5776 | } |
| 5777 | slot--; |
| 5778 | } |
| 5779 | ret = 0; |
| 5780 | leaf = path->nodes[0]; |
| 5781 | btrfs_item_key_to_cpu(leaf, &key, slot); |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 5782 | if (key.objectid != btrfs_ino(inode) || |
Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 5783 | key.type != BTRFS_EXTENT_DATA_KEY) { |
| 5784 | /* not our file or wrong item type, must cow */ |
| 5785 | goto out; |
| 5786 | } |
| 5787 | |
| 5788 | if (key.offset > offset) { |
| 5789 | /* Wrong offset, must cow */ |
| 5790 | goto out; |
| 5791 | } |
| 5792 | |
| 5793 | fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item); |
| 5794 | found_type = btrfs_file_extent_type(leaf, fi); |
| 5795 | if (found_type != BTRFS_FILE_EXTENT_REG && |
| 5796 | found_type != BTRFS_FILE_EXTENT_PREALLOC) { |
| 5797 | /* not a regular extent, must cow */ |
| 5798 | goto out; |
| 5799 | } |
| 5800 | disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi); |
| 5801 | backref_offset = btrfs_file_extent_offset(leaf, fi); |
| 5802 | |
| 5803 | extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi); |
| 5804 | if (extent_end < offset + len) { |
| 5805 | /* extent doesn't include our full range, must cow */ |
| 5806 | goto out; |
| 5807 | } |
| 5808 | |
| 5809 | if (btrfs_extent_readonly(root, disk_bytenr)) |
| 5810 | goto out; |
| 5811 | |
| 5812 | /* |
| 5813 | * look for other files referencing this extent, if we |
| 5814 | * find any we must cow |
| 5815 | */ |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 5816 | if (btrfs_cross_ref_exist(trans, root, btrfs_ino(inode), |
Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 5817 | key.offset - backref_offset, disk_bytenr)) |
| 5818 | goto out; |
| 5819 | |
| 5820 | /* |
| 5821 | * adjust disk_bytenr and num_bytes to cover just the bytes |
| 5822 | * in this extent we are about to write. If there |
| 5823 | * are any csums in that range we have to cow in order |
| 5824 | * to keep the csums correct |
| 5825 | */ |
| 5826 | disk_bytenr += backref_offset; |
| 5827 | disk_bytenr += offset - key.offset; |
| 5828 | num_bytes = min(offset + len, extent_end) - offset; |
| 5829 | if (csum_exist_in_range(root, disk_bytenr, num_bytes)) |
| 5830 | goto out; |
| 5831 | /* |
| 5832 | * all of the above have passed, it is safe to overwrite this extent |
| 5833 | * without cow |
| 5834 | */ |
| 5835 | ret = 1; |
| 5836 | out: |
| 5837 | btrfs_free_path(path); |
| 5838 | return ret; |
| 5839 | } |
| 5840 | |
Josef Bacik | eb838e7 | 2012-07-31 16:28:48 -0400 | [diff] [blame] | 5841 | static int lock_extent_direct(struct inode *inode, u64 lockstart, u64 lockend, |
| 5842 | struct extent_state **cached_state, int writing) |
| 5843 | { |
| 5844 | struct btrfs_ordered_extent *ordered; |
| 5845 | int ret = 0; |
| 5846 | |
| 5847 | while (1) { |
| 5848 | lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend, |
| 5849 | 0, cached_state); |
| 5850 | /* |
| 5851 | * We're concerned with the entire range that we're going to be |
| 5852 | * doing DIO to, so we need to make sure theres no ordered |
| 5853 | * extents in this range. |
| 5854 | */ |
| 5855 | ordered = btrfs_lookup_ordered_range(inode, lockstart, |
| 5856 | lockend - lockstart + 1); |
| 5857 | |
| 5858 | /* |
| 5859 | * We need to make sure there are no buffered pages in this |
| 5860 | * range either, we could have raced between the invalidate in |
| 5861 | * generic_file_direct_write and locking the extent. The |
| 5862 | * invalidate needs to happen so that reads after a write do not |
| 5863 | * get stale data. |
| 5864 | */ |
| 5865 | if (!ordered && (!writing || |
| 5866 | !test_range_bit(&BTRFS_I(inode)->io_tree, |
| 5867 | lockstart, lockend, EXTENT_UPTODATE, 0, |
| 5868 | *cached_state))) |
| 5869 | break; |
| 5870 | |
| 5871 | unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend, |
| 5872 | cached_state, GFP_NOFS); |
| 5873 | |
| 5874 | if (ordered) { |
| 5875 | btrfs_start_ordered_extent(inode, ordered, 1); |
| 5876 | btrfs_put_ordered_extent(ordered); |
| 5877 | } else { |
| 5878 | /* Screw you mmap */ |
| 5879 | ret = filemap_write_and_wait_range(inode->i_mapping, |
| 5880 | lockstart, |
| 5881 | lockend); |
| 5882 | if (ret) |
| 5883 | break; |
| 5884 | |
| 5885 | /* |
| 5886 | * If we found a page that couldn't be invalidated just |
| 5887 | * fall back to buffered. |
| 5888 | */ |
| 5889 | ret = invalidate_inode_pages2_range(inode->i_mapping, |
| 5890 | lockstart >> PAGE_CACHE_SHIFT, |
| 5891 | lockend >> PAGE_CACHE_SHIFT); |
| 5892 | if (ret) |
| 5893 | break; |
| 5894 | } |
| 5895 | |
| 5896 | cond_resched(); |
| 5897 | } |
| 5898 | |
| 5899 | return ret; |
| 5900 | } |
| 5901 | |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5902 | static int btrfs_get_blocks_direct(struct inode *inode, sector_t iblock, |
| 5903 | struct buffer_head *bh_result, int create) |
| 5904 | { |
| 5905 | struct extent_map *em; |
| 5906 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Josef Bacik | eb838e7 | 2012-07-31 16:28:48 -0400 | [diff] [blame] | 5907 | struct extent_state *cached_state = NULL; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5908 | u64 start = iblock << inode->i_blkbits; |
Josef Bacik | eb838e7 | 2012-07-31 16:28:48 -0400 | [diff] [blame] | 5909 | u64 lockstart, lockend; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5910 | u64 len = bh_result->b_size; |
Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 5911 | struct btrfs_trans_handle *trans; |
Josef Bacik | eb838e7 | 2012-07-31 16:28:48 -0400 | [diff] [blame] | 5912 | int unlock_bits = EXTENT_LOCKED; |
| 5913 | int ret; |
| 5914 | |
Josef Bacik | eb838e7 | 2012-07-31 16:28:48 -0400 | [diff] [blame] | 5915 | if (create) { |
| 5916 | ret = btrfs_delalloc_reserve_space(inode, len); |
| 5917 | if (ret) |
| 5918 | return ret; |
| 5919 | unlock_bits |= EXTENT_DELALLOC | EXTENT_DIRTY; |
Josef Bacik | c329861 | 2012-08-03 16:49:19 -0400 | [diff] [blame] | 5920 | } else { |
| 5921 | len = min_t(u64, len, root->sectorsize); |
Josef Bacik | eb838e7 | 2012-07-31 16:28:48 -0400 | [diff] [blame] | 5922 | } |
| 5923 | |
Josef Bacik | c329861 | 2012-08-03 16:49:19 -0400 | [diff] [blame] | 5924 | lockstart = start; |
| 5925 | lockend = start + len - 1; |
| 5926 | |
Josef Bacik | eb838e7 | 2012-07-31 16:28:48 -0400 | [diff] [blame] | 5927 | /* |
| 5928 | * If this errors out it's because we couldn't invalidate pagecache for |
| 5929 | * this range and we need to fallback to buffered. |
| 5930 | */ |
| 5931 | if (lock_extent_direct(inode, lockstart, lockend, &cached_state, create)) |
| 5932 | return -ENOTBLK; |
| 5933 | |
| 5934 | if (create) { |
| 5935 | ret = set_extent_bit(&BTRFS_I(inode)->io_tree, lockstart, |
| 5936 | lockend, EXTENT_DELALLOC, NULL, |
| 5937 | &cached_state, GFP_NOFS); |
| 5938 | if (ret) |
| 5939 | goto unlock_err; |
| 5940 | } |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5941 | |
| 5942 | em = btrfs_get_extent(inode, NULL, 0, start, len, 0); |
Josef Bacik | eb838e7 | 2012-07-31 16:28:48 -0400 | [diff] [blame] | 5943 | if (IS_ERR(em)) { |
| 5944 | ret = PTR_ERR(em); |
| 5945 | goto unlock_err; |
| 5946 | } |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5947 | |
| 5948 | /* |
| 5949 | * Ok for INLINE and COMPRESSED extents we need to fallback on buffered |
| 5950 | * io. INLINE is special, and we could probably kludge it in here, but |
| 5951 | * it's still buffered so for safety lets just fall back to the generic |
| 5952 | * buffered path. |
| 5953 | * |
| 5954 | * For COMPRESSED we _have_ to read the entire extent in so we can |
| 5955 | * decompress it, so there will be buffering required no matter what we |
| 5956 | * do, so go ahead and fallback to buffered. |
| 5957 | * |
| 5958 | * We return -ENOTBLK because thats what makes DIO go ahead and go back |
| 5959 | * to buffered IO. Don't blame me, this is the price we pay for using |
| 5960 | * the generic code. |
| 5961 | */ |
| 5962 | if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) || |
| 5963 | em->block_start == EXTENT_MAP_INLINE) { |
| 5964 | free_extent_map(em); |
Josef Bacik | eb838e7 | 2012-07-31 16:28:48 -0400 | [diff] [blame] | 5965 | ret = -ENOTBLK; |
| 5966 | goto unlock_err; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5967 | } |
| 5968 | |
| 5969 | /* Just a good old fashioned hole, return */ |
| 5970 | if (!create && (em->block_start == EXTENT_MAP_HOLE || |
| 5971 | test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) { |
| 5972 | free_extent_map(em); |
Josef Bacik | eb838e7 | 2012-07-31 16:28:48 -0400 | [diff] [blame] | 5973 | ret = 0; |
| 5974 | goto unlock_err; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5975 | } |
| 5976 | |
| 5977 | /* |
| 5978 | * We don't allocate a new extent in the following cases |
| 5979 | * |
| 5980 | * 1) The inode is marked as NODATACOW. In this case we'll just use the |
| 5981 | * existing extent. |
| 5982 | * 2) The extent is marked as PREALLOC. We're good to go here and can |
| 5983 | * just use the extent. |
| 5984 | * |
| 5985 | */ |
Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 5986 | if (!create) { |
Josef Bacik | eb838e7 | 2012-07-31 16:28:48 -0400 | [diff] [blame] | 5987 | len = min(len, em->len - (start - em->start)); |
| 5988 | lockstart = start + len; |
| 5989 | goto unlock; |
Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 5990 | } |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5991 | |
| 5992 | if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) || |
| 5993 | ((BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) && |
| 5994 | em->block_start != EXTENT_MAP_HOLE)) { |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5995 | int type; |
| 5996 | int ret; |
Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 5997 | u64 block_start; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 5998 | |
| 5999 | if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) |
| 6000 | type = BTRFS_ORDERED_PREALLOC; |
| 6001 | else |
| 6002 | type = BTRFS_ORDERED_NOCOW; |
Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 6003 | len = min(len, em->len - (start - em->start)); |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6004 | block_start = em->block_start + (start - em->start); |
Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 6005 | |
| 6006 | /* |
| 6007 | * we're not going to log anything, but we do need |
| 6008 | * to make sure the current transaction stays open |
| 6009 | * while we look for nocow cross refs |
| 6010 | */ |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 6011 | trans = btrfs_join_transaction(root); |
Tsutomu Itoh | 3612b49 | 2011-01-25 02:51:38 +0000 | [diff] [blame] | 6012 | if (IS_ERR(trans)) |
Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 6013 | goto must_cow; |
| 6014 | |
| 6015 | if (can_nocow_odirect(trans, inode, start, len) == 1) { |
| 6016 | ret = btrfs_add_ordered_extent_dio(inode, start, |
| 6017 | block_start, len, len, type); |
| 6018 | btrfs_end_transaction(trans, root); |
| 6019 | if (ret) { |
| 6020 | free_extent_map(em); |
Josef Bacik | eb838e7 | 2012-07-31 16:28:48 -0400 | [diff] [blame] | 6021 | goto unlock_err; |
Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 6022 | } |
| 6023 | goto unlock; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6024 | } |
Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 6025 | btrfs_end_transaction(trans, root); |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6026 | } |
Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 6027 | must_cow: |
| 6028 | /* |
| 6029 | * this will cow the extent, reset the len in case we changed |
| 6030 | * it above |
| 6031 | */ |
| 6032 | len = bh_result->b_size; |
Josef Bacik | 16d299a | 2011-04-06 14:53:07 -0400 | [diff] [blame] | 6033 | em = btrfs_new_extent_direct(inode, em, start, len); |
Josef Bacik | eb838e7 | 2012-07-31 16:28:48 -0400 | [diff] [blame] | 6034 | if (IS_ERR(em)) { |
| 6035 | ret = PTR_ERR(em); |
| 6036 | goto unlock_err; |
| 6037 | } |
Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 6038 | len = min(len, em->len - (start - em->start)); |
| 6039 | unlock: |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6040 | bh_result->b_blocknr = (em->block_start + (start - em->start)) >> |
| 6041 | inode->i_blkbits; |
Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 6042 | bh_result->b_size = len; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6043 | bh_result->b_bdev = em->bdev; |
| 6044 | set_buffer_mapped(bh_result); |
Josef Bacik | c3473e8 | 2012-06-19 10:59:00 -0400 | [diff] [blame] | 6045 | if (create) { |
| 6046 | if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) |
| 6047 | set_buffer_new(bh_result); |
| 6048 | |
| 6049 | /* |
| 6050 | * Need to update the i_size under the extent lock so buffered |
| 6051 | * readers will get the updated i_size when we unlock. |
| 6052 | */ |
| 6053 | if (start + len > i_size_read(inode)) |
| 6054 | i_size_write(inode, start + len); |
| 6055 | } |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6056 | |
Josef Bacik | eb838e7 | 2012-07-31 16:28:48 -0400 | [diff] [blame] | 6057 | /* |
| 6058 | * In the case of write we need to clear and unlock the entire range, |
| 6059 | * in the case of read we need to unlock only the end area that we |
| 6060 | * aren't using if there is any left over space. |
| 6061 | */ |
Liu Bo | 24c03fa | 2012-08-22 20:10:38 -0600 | [diff] [blame] | 6062 | if (lockstart < lockend) { |
| 6063 | if (create && len < lockend - lockstart) { |
| 6064 | clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart, |
Liu Bo | 9e8a4a8 | 2012-09-05 19:10:51 -0600 | [diff] [blame] | 6065 | lockstart + len - 1, |
| 6066 | unlock_bits | EXTENT_DEFRAG, 1, 0, |
Liu Bo | 24c03fa | 2012-08-22 20:10:38 -0600 | [diff] [blame] | 6067 | &cached_state, GFP_NOFS); |
| 6068 | /* |
| 6069 | * Beside unlock, we also need to cleanup reserved space |
| 6070 | * for the left range by attaching EXTENT_DO_ACCOUNTING. |
| 6071 | */ |
| 6072 | clear_extent_bit(&BTRFS_I(inode)->io_tree, |
| 6073 | lockstart + len, lockend, |
Liu Bo | 9e8a4a8 | 2012-09-05 19:10:51 -0600 | [diff] [blame] | 6074 | unlock_bits | EXTENT_DO_ACCOUNTING | |
| 6075 | EXTENT_DEFRAG, 1, 0, NULL, GFP_NOFS); |
Liu Bo | 24c03fa | 2012-08-22 20:10:38 -0600 | [diff] [blame] | 6076 | } else { |
| 6077 | clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart, |
| 6078 | lockend, unlock_bits, 1, 0, |
| 6079 | &cached_state, GFP_NOFS); |
| 6080 | } |
| 6081 | } else { |
Josef Bacik | eb838e7 | 2012-07-31 16:28:48 -0400 | [diff] [blame] | 6082 | free_extent_state(cached_state); |
Liu Bo | 24c03fa | 2012-08-22 20:10:38 -0600 | [diff] [blame] | 6083 | } |
Josef Bacik | eb838e7 | 2012-07-31 16:28:48 -0400 | [diff] [blame] | 6084 | |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6085 | free_extent_map(em); |
| 6086 | |
| 6087 | return 0; |
Josef Bacik | eb838e7 | 2012-07-31 16:28:48 -0400 | [diff] [blame] | 6088 | |
| 6089 | unlock_err: |
| 6090 | if (create) |
| 6091 | unlock_bits |= EXTENT_DO_ACCOUNTING; |
| 6092 | |
| 6093 | clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart, lockend, |
| 6094 | unlock_bits, 1, 0, &cached_state, GFP_NOFS); |
| 6095 | return ret; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6096 | } |
| 6097 | |
| 6098 | struct btrfs_dio_private { |
| 6099 | struct inode *inode; |
| 6100 | u64 logical_offset; |
| 6101 | u64 disk_bytenr; |
| 6102 | u64 bytes; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6103 | void *private; |
Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 6104 | |
| 6105 | /* number of bios pending for this dio */ |
| 6106 | atomic_t pending_bios; |
| 6107 | |
| 6108 | /* IO errors */ |
| 6109 | int errors; |
| 6110 | |
| 6111 | struct bio *orig_bio; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6112 | }; |
| 6113 | |
| 6114 | static void btrfs_endio_direct_read(struct bio *bio, int err) |
| 6115 | { |
Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 6116 | struct btrfs_dio_private *dip = bio->bi_private; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6117 | struct bio_vec *bvec_end = bio->bi_io_vec + bio->bi_vcnt - 1; |
| 6118 | struct bio_vec *bvec = bio->bi_io_vec; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6119 | struct inode *inode = dip->inode; |
| 6120 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 6121 | u64 start; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6122 | |
| 6123 | start = dip->logical_offset; |
| 6124 | do { |
| 6125 | if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)) { |
| 6126 | struct page *page = bvec->bv_page; |
| 6127 | char *kaddr; |
| 6128 | u32 csum = ~(u32)0; |
Josef Bacik | c329861 | 2012-08-03 16:49:19 -0400 | [diff] [blame] | 6129 | u64 private = ~(u32)0; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6130 | unsigned long flags; |
| 6131 | |
Josef Bacik | c329861 | 2012-08-03 16:49:19 -0400 | [diff] [blame] | 6132 | if (get_state_private(&BTRFS_I(inode)->io_tree, |
| 6133 | start, &private)) |
| 6134 | goto failed; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6135 | local_irq_save(flags); |
Cong Wang | 7ac687d | 2011-11-25 23:14:28 +0800 | [diff] [blame] | 6136 | kaddr = kmap_atomic(page); |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6137 | csum = btrfs_csum_data(root, kaddr + bvec->bv_offset, |
| 6138 | csum, bvec->bv_len); |
| 6139 | btrfs_csum_final(csum, (char *)&csum); |
Cong Wang | 7ac687d | 2011-11-25 23:14:28 +0800 | [diff] [blame] | 6140 | kunmap_atomic(kaddr); |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6141 | local_irq_restore(flags); |
| 6142 | |
| 6143 | flush_dcache_page(bvec->bv_page); |
Josef Bacik | c329861 | 2012-08-03 16:49:19 -0400 | [diff] [blame] | 6144 | if (csum != private) { |
| 6145 | failed: |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 6146 | printk(KERN_ERR "btrfs csum failed ino %llu off" |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6147 | " %llu csum %u private %u\n", |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 6148 | (unsigned long long)btrfs_ino(inode), |
| 6149 | (unsigned long long)start, |
Josef Bacik | c329861 | 2012-08-03 16:49:19 -0400 | [diff] [blame] | 6150 | csum, (unsigned)private); |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6151 | err = -EIO; |
| 6152 | } |
| 6153 | } |
| 6154 | |
| 6155 | start += bvec->bv_len; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6156 | bvec++; |
| 6157 | } while (bvec <= bvec_end); |
| 6158 | |
| 6159 | unlock_extent(&BTRFS_I(inode)->io_tree, dip->logical_offset, |
Jeff Mahoney | d008237 | 2012-03-01 14:57:19 +0100 | [diff] [blame] | 6160 | dip->logical_offset + dip->bytes - 1); |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6161 | bio->bi_private = dip->private; |
| 6162 | |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6163 | kfree(dip); |
Josef Bacik | c0da7aa | 2011-03-22 11:05:07 -0400 | [diff] [blame] | 6164 | |
| 6165 | /* If we had a csum failure make sure to clear the uptodate flag */ |
| 6166 | if (err) |
| 6167 | clear_bit(BIO_UPTODATE, &bio->bi_flags); |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6168 | dio_end_io(bio, err); |
| 6169 | } |
| 6170 | |
| 6171 | static void btrfs_endio_direct_write(struct bio *bio, int err) |
| 6172 | { |
| 6173 | struct btrfs_dio_private *dip = bio->bi_private; |
| 6174 | struct inode *inode = dip->inode; |
| 6175 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6176 | struct btrfs_ordered_extent *ordered = NULL; |
Chris Mason | 163cf09 | 2010-11-28 19:56:33 -0500 | [diff] [blame] | 6177 | u64 ordered_offset = dip->logical_offset; |
| 6178 | u64 ordered_bytes = dip->bytes; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6179 | int ret; |
| 6180 | |
| 6181 | if (err) |
| 6182 | goto out_done; |
Chris Mason | 163cf09 | 2010-11-28 19:56:33 -0500 | [diff] [blame] | 6183 | again: |
| 6184 | ret = btrfs_dec_test_first_ordered_pending(inode, &ordered, |
| 6185 | &ordered_offset, |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 6186 | ordered_bytes, !err); |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6187 | if (!ret) |
Chris Mason | 163cf09 | 2010-11-28 19:56:33 -0500 | [diff] [blame] | 6188 | goto out_test; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6189 | |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 6190 | ordered->work.func = finish_ordered_fn; |
| 6191 | ordered->work.flags = 0; |
| 6192 | btrfs_queue_worker(&root->fs_info->endio_write_workers, |
| 6193 | &ordered->work); |
Chris Mason | 163cf09 | 2010-11-28 19:56:33 -0500 | [diff] [blame] | 6194 | out_test: |
| 6195 | /* |
| 6196 | * our bio might span multiple ordered extents. If we haven't |
| 6197 | * completed the accounting for the whole dio, go back and try again |
| 6198 | */ |
| 6199 | if (ordered_offset < dip->logical_offset + dip->bytes) { |
| 6200 | ordered_bytes = dip->logical_offset + dip->bytes - |
| 6201 | ordered_offset; |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 6202 | ordered = NULL; |
Chris Mason | 163cf09 | 2010-11-28 19:56:33 -0500 | [diff] [blame] | 6203 | goto again; |
| 6204 | } |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6205 | out_done: |
| 6206 | bio->bi_private = dip->private; |
| 6207 | |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6208 | kfree(dip); |
Josef Bacik | c0da7aa | 2011-03-22 11:05:07 -0400 | [diff] [blame] | 6209 | |
| 6210 | /* If we had an error make sure to clear the uptodate flag */ |
| 6211 | if (err) |
| 6212 | clear_bit(BIO_UPTODATE, &bio->bi_flags); |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6213 | dio_end_io(bio, err); |
| 6214 | } |
| 6215 | |
Chris Mason | eaf25d9 | 2010-05-25 09:48:28 -0400 | [diff] [blame] | 6216 | static int __btrfs_submit_bio_start_direct_io(struct inode *inode, int rw, |
| 6217 | struct bio *bio, int mirror_num, |
| 6218 | unsigned long bio_flags, u64 offset) |
| 6219 | { |
| 6220 | int ret; |
| 6221 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 6222 | ret = btrfs_csum_one_bio(root, inode, bio, offset, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6223 | BUG_ON(ret); /* -ENOMEM */ |
Chris Mason | eaf25d9 | 2010-05-25 09:48:28 -0400 | [diff] [blame] | 6224 | return 0; |
| 6225 | } |
| 6226 | |
Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 6227 | static void btrfs_end_dio_bio(struct bio *bio, int err) |
| 6228 | { |
| 6229 | struct btrfs_dio_private *dip = bio->bi_private; |
| 6230 | |
| 6231 | if (err) { |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 6232 | printk(KERN_ERR "btrfs direct IO failed ino %llu rw %lu " |
Jan Beulich | 3dd1462 | 2010-12-07 14:54:09 +0000 | [diff] [blame] | 6233 | "sector %#Lx len %u err no %d\n", |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 6234 | (unsigned long long)btrfs_ino(dip->inode), bio->bi_rw, |
Jan Beulich | 3dd1462 | 2010-12-07 14:54:09 +0000 | [diff] [blame] | 6235 | (unsigned long long)bio->bi_sector, bio->bi_size, err); |
Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 6236 | dip->errors = 1; |
| 6237 | |
| 6238 | /* |
| 6239 | * before atomic variable goto zero, we must make sure |
| 6240 | * dip->errors is perceived to be set. |
| 6241 | */ |
| 6242 | smp_mb__before_atomic_dec(); |
| 6243 | } |
| 6244 | |
| 6245 | /* if there are more bios still pending for this dio, just exit */ |
| 6246 | if (!atomic_dec_and_test(&dip->pending_bios)) |
| 6247 | goto out; |
| 6248 | |
| 6249 | if (dip->errors) |
| 6250 | bio_io_error(dip->orig_bio); |
| 6251 | else { |
| 6252 | set_bit(BIO_UPTODATE, &dip->orig_bio->bi_flags); |
| 6253 | bio_endio(dip->orig_bio, 0); |
| 6254 | } |
| 6255 | out: |
| 6256 | bio_put(bio); |
| 6257 | } |
| 6258 | |
| 6259 | static struct bio *btrfs_dio_bio_alloc(struct block_device *bdev, |
| 6260 | u64 first_sector, gfp_t gfp_flags) |
| 6261 | { |
| 6262 | int nr_vecs = bio_get_nr_vecs(bdev); |
| 6263 | return btrfs_bio_alloc(bdev, first_sector, nr_vecs, gfp_flags); |
| 6264 | } |
| 6265 | |
| 6266 | static inline int __btrfs_submit_dio_bio(struct bio *bio, struct inode *inode, |
| 6267 | int rw, u64 file_offset, int skip_sum, |
Josef Bacik | c329861 | 2012-08-03 16:49:19 -0400 | [diff] [blame] | 6268 | int async_submit) |
Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 6269 | { |
| 6270 | int write = rw & REQ_WRITE; |
| 6271 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 6272 | int ret; |
| 6273 | |
| 6274 | bio_get(bio); |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 6275 | |
| 6276 | if (!write) { |
| 6277 | ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0); |
| 6278 | if (ret) |
| 6279 | goto err; |
| 6280 | } |
Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 6281 | |
Josef Bacik | 1ae3993 | 2011-04-06 14:41:34 -0400 | [diff] [blame] | 6282 | if (skip_sum) |
| 6283 | goto map; |
| 6284 | |
| 6285 | if (write && async_submit) { |
Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 6286 | ret = btrfs_wq_submit_bio(root->fs_info, |
| 6287 | inode, rw, bio, 0, 0, |
| 6288 | file_offset, |
| 6289 | __btrfs_submit_bio_start_direct_io, |
| 6290 | __btrfs_submit_bio_done); |
| 6291 | goto err; |
Josef Bacik | 1ae3993 | 2011-04-06 14:41:34 -0400 | [diff] [blame] | 6292 | } else if (write) { |
| 6293 | /* |
| 6294 | * If we aren't doing async submit, calculate the csum of the |
| 6295 | * bio now. |
| 6296 | */ |
| 6297 | ret = btrfs_csum_one_bio(root, inode, bio, file_offset, 1); |
| 6298 | if (ret) |
| 6299 | goto err; |
Tsutomu Itoh | c2db107 | 2011-03-01 06:48:31 +0000 | [diff] [blame] | 6300 | } else if (!skip_sum) { |
Josef Bacik | c329861 | 2012-08-03 16:49:19 -0400 | [diff] [blame] | 6301 | ret = btrfs_lookup_bio_sums_dio(root, inode, bio, file_offset); |
Tsutomu Itoh | c2db107 | 2011-03-01 06:48:31 +0000 | [diff] [blame] | 6302 | if (ret) |
| 6303 | goto err; |
| 6304 | } |
Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 6305 | |
Josef Bacik | 1ae3993 | 2011-04-06 14:41:34 -0400 | [diff] [blame] | 6306 | map: |
| 6307 | ret = btrfs_map_bio(root, rw, bio, 0, async_submit); |
Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 6308 | err: |
| 6309 | bio_put(bio); |
| 6310 | return ret; |
| 6311 | } |
| 6312 | |
| 6313 | static int btrfs_submit_direct_hook(int rw, struct btrfs_dio_private *dip, |
| 6314 | int skip_sum) |
| 6315 | { |
| 6316 | struct inode *inode = dip->inode; |
| 6317 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 6318 | struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree; |
| 6319 | struct bio *bio; |
| 6320 | struct bio *orig_bio = dip->orig_bio; |
| 6321 | struct bio_vec *bvec = orig_bio->bi_io_vec; |
| 6322 | u64 start_sector = orig_bio->bi_sector; |
| 6323 | u64 file_offset = dip->logical_offset; |
| 6324 | u64 submit_len = 0; |
| 6325 | u64 map_length; |
| 6326 | int nr_pages = 0; |
Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 6327 | int ret = 0; |
Josef Bacik | 1ae3993 | 2011-04-06 14:41:34 -0400 | [diff] [blame] | 6328 | int async_submit = 0; |
Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 6329 | |
Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 6330 | map_length = orig_bio->bi_size; |
| 6331 | ret = btrfs_map_block(map_tree, READ, start_sector << 9, |
| 6332 | &map_length, NULL, 0); |
| 6333 | if (ret) { |
Josef Bacik | 64728bb | 2011-04-25 19:43:52 -0400 | [diff] [blame] | 6334 | bio_put(orig_bio); |
Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 6335 | return -EIO; |
| 6336 | } |
| 6337 | |
Josef Bacik | 02f57c7 | 2011-04-06 14:25:44 -0400 | [diff] [blame] | 6338 | if (map_length >= orig_bio->bi_size) { |
| 6339 | bio = orig_bio; |
| 6340 | goto submit; |
| 6341 | } |
| 6342 | |
Josef Bacik | 1ae3993 | 2011-04-06 14:41:34 -0400 | [diff] [blame] | 6343 | async_submit = 1; |
Josef Bacik | 02f57c7 | 2011-04-06 14:25:44 -0400 | [diff] [blame] | 6344 | bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev, start_sector, GFP_NOFS); |
| 6345 | if (!bio) |
| 6346 | return -ENOMEM; |
| 6347 | bio->bi_private = dip; |
| 6348 | bio->bi_end_io = btrfs_end_dio_bio; |
| 6349 | atomic_inc(&dip->pending_bios); |
| 6350 | |
Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 6351 | while (bvec <= (orig_bio->bi_io_vec + orig_bio->bi_vcnt - 1)) { |
| 6352 | if (unlikely(map_length < submit_len + bvec->bv_len || |
| 6353 | bio_add_page(bio, bvec->bv_page, bvec->bv_len, |
| 6354 | bvec->bv_offset) < bvec->bv_len)) { |
| 6355 | /* |
| 6356 | * inc the count before we submit the bio so |
| 6357 | * we know the end IO handler won't happen before |
| 6358 | * we inc the count. Otherwise, the dip might get freed |
| 6359 | * before we're done setting it up |
| 6360 | */ |
| 6361 | atomic_inc(&dip->pending_bios); |
| 6362 | ret = __btrfs_submit_dio_bio(bio, inode, rw, |
| 6363 | file_offset, skip_sum, |
Josef Bacik | c329861 | 2012-08-03 16:49:19 -0400 | [diff] [blame] | 6364 | async_submit); |
Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 6365 | if (ret) { |
| 6366 | bio_put(bio); |
| 6367 | atomic_dec(&dip->pending_bios); |
| 6368 | goto out_err; |
| 6369 | } |
| 6370 | |
Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 6371 | start_sector += submit_len >> 9; |
| 6372 | file_offset += submit_len; |
| 6373 | |
| 6374 | submit_len = 0; |
| 6375 | nr_pages = 0; |
| 6376 | |
| 6377 | bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev, |
| 6378 | start_sector, GFP_NOFS); |
| 6379 | if (!bio) |
| 6380 | goto out_err; |
| 6381 | bio->bi_private = dip; |
| 6382 | bio->bi_end_io = btrfs_end_dio_bio; |
| 6383 | |
| 6384 | map_length = orig_bio->bi_size; |
| 6385 | ret = btrfs_map_block(map_tree, READ, start_sector << 9, |
| 6386 | &map_length, NULL, 0); |
| 6387 | if (ret) { |
| 6388 | bio_put(bio); |
| 6389 | goto out_err; |
| 6390 | } |
| 6391 | } else { |
| 6392 | submit_len += bvec->bv_len; |
| 6393 | nr_pages ++; |
| 6394 | bvec++; |
| 6395 | } |
| 6396 | } |
| 6397 | |
Josef Bacik | 02f57c7 | 2011-04-06 14:25:44 -0400 | [diff] [blame] | 6398 | submit: |
Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 6399 | ret = __btrfs_submit_dio_bio(bio, inode, rw, file_offset, skip_sum, |
Josef Bacik | c329861 | 2012-08-03 16:49:19 -0400 | [diff] [blame] | 6400 | async_submit); |
Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 6401 | if (!ret) |
| 6402 | return 0; |
| 6403 | |
| 6404 | bio_put(bio); |
| 6405 | out_err: |
| 6406 | dip->errors = 1; |
| 6407 | /* |
| 6408 | * before atomic variable goto zero, we must |
| 6409 | * make sure dip->errors is perceived to be set. |
| 6410 | */ |
| 6411 | smp_mb__before_atomic_dec(); |
| 6412 | if (atomic_dec_and_test(&dip->pending_bios)) |
| 6413 | bio_io_error(dip->orig_bio); |
| 6414 | |
| 6415 | /* bio_end_io() will handle error, so we needn't return it */ |
| 6416 | return 0; |
| 6417 | } |
| 6418 | |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6419 | static void btrfs_submit_direct(int rw, struct bio *bio, struct inode *inode, |
| 6420 | loff_t file_offset) |
| 6421 | { |
| 6422 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 6423 | struct btrfs_dio_private *dip; |
| 6424 | struct bio_vec *bvec = bio->bi_io_vec; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6425 | int skip_sum; |
Christoph Hellwig | 7b6d91d | 2010-08-07 18:20:39 +0200 | [diff] [blame] | 6426 | int write = rw & REQ_WRITE; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6427 | int ret = 0; |
| 6428 | |
| 6429 | skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM; |
| 6430 | |
| 6431 | dip = kmalloc(sizeof(*dip), GFP_NOFS); |
| 6432 | if (!dip) { |
| 6433 | ret = -ENOMEM; |
| 6434 | goto free_ordered; |
| 6435 | } |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6436 | |
| 6437 | dip->private = bio->bi_private; |
| 6438 | dip->inode = inode; |
| 6439 | dip->logical_offset = file_offset; |
| 6440 | |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6441 | dip->bytes = 0; |
| 6442 | do { |
| 6443 | dip->bytes += bvec->bv_len; |
| 6444 | bvec++; |
| 6445 | } while (bvec <= (bio->bi_io_vec + bio->bi_vcnt - 1)); |
| 6446 | |
Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 6447 | dip->disk_bytenr = (u64)bio->bi_sector << 9; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6448 | bio->bi_private = dip; |
Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 6449 | dip->errors = 0; |
| 6450 | dip->orig_bio = bio; |
| 6451 | atomic_set(&dip->pending_bios, 0); |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6452 | |
| 6453 | if (write) |
| 6454 | bio->bi_end_io = btrfs_endio_direct_write; |
| 6455 | else |
| 6456 | bio->bi_end_io = btrfs_endio_direct_read; |
| 6457 | |
Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 6458 | ret = btrfs_submit_direct_hook(rw, dip, skip_sum); |
| 6459 | if (!ret) |
Chris Mason | eaf25d9 | 2010-05-25 09:48:28 -0400 | [diff] [blame] | 6460 | return; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6461 | free_ordered: |
| 6462 | /* |
| 6463 | * If this is a write, we need to clean up the reserved space and kill |
| 6464 | * the ordered extent. |
| 6465 | */ |
| 6466 | if (write) { |
| 6467 | struct btrfs_ordered_extent *ordered; |
Josef Bacik | 955256f | 2010-11-19 09:41:10 -0500 | [diff] [blame] | 6468 | ordered = btrfs_lookup_ordered_extent(inode, file_offset); |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6469 | if (!test_bit(BTRFS_ORDERED_PREALLOC, &ordered->flags) && |
| 6470 | !test_bit(BTRFS_ORDERED_NOCOW, &ordered->flags)) |
| 6471 | btrfs_free_reserved_extent(root, ordered->start, |
| 6472 | ordered->disk_len); |
| 6473 | btrfs_put_ordered_extent(ordered); |
| 6474 | btrfs_put_ordered_extent(ordered); |
| 6475 | } |
| 6476 | bio_endio(bio, ret); |
| 6477 | } |
| 6478 | |
Chris Mason | 5a5f79b | 2010-05-26 21:33:37 -0400 | [diff] [blame] | 6479 | static ssize_t check_direct_IO(struct btrfs_root *root, int rw, struct kiocb *iocb, |
| 6480 | const struct iovec *iov, loff_t offset, |
| 6481 | unsigned long nr_segs) |
| 6482 | { |
| 6483 | int seg; |
Josef Bacik | a1b75f7 | 2011-04-08 15:51:18 +0000 | [diff] [blame] | 6484 | int i; |
Chris Mason | 5a5f79b | 2010-05-26 21:33:37 -0400 | [diff] [blame] | 6485 | size_t size; |
| 6486 | unsigned long addr; |
| 6487 | unsigned blocksize_mask = root->sectorsize - 1; |
| 6488 | ssize_t retval = -EINVAL; |
| 6489 | loff_t end = offset; |
| 6490 | |
| 6491 | if (offset & blocksize_mask) |
| 6492 | goto out; |
| 6493 | |
| 6494 | /* Check the memory alignment. Blocks cannot straddle pages */ |
| 6495 | for (seg = 0; seg < nr_segs; seg++) { |
| 6496 | addr = (unsigned long)iov[seg].iov_base; |
| 6497 | size = iov[seg].iov_len; |
| 6498 | end += size; |
Josef Bacik | a1b75f7 | 2011-04-08 15:51:18 +0000 | [diff] [blame] | 6499 | if ((addr & blocksize_mask) || (size & blocksize_mask)) |
Chris Mason | 5a5f79b | 2010-05-26 21:33:37 -0400 | [diff] [blame] | 6500 | goto out; |
Josef Bacik | a1b75f7 | 2011-04-08 15:51:18 +0000 | [diff] [blame] | 6501 | |
| 6502 | /* If this is a write we don't need to check anymore */ |
| 6503 | if (rw & WRITE) |
| 6504 | continue; |
| 6505 | |
| 6506 | /* |
| 6507 | * Check to make sure we don't have duplicate iov_base's in this |
| 6508 | * iovec, if so return EINVAL, otherwise we'll get csum errors |
| 6509 | * when reading back. |
| 6510 | */ |
| 6511 | for (i = seg + 1; i < nr_segs; i++) { |
| 6512 | if (iov[seg].iov_base == iov[i].iov_base) |
| 6513 | goto out; |
| 6514 | } |
Chris Mason | 5a5f79b | 2010-05-26 21:33:37 -0400 | [diff] [blame] | 6515 | } |
| 6516 | retval = 0; |
| 6517 | out: |
| 6518 | return retval; |
| 6519 | } |
Josef Bacik | eb838e7 | 2012-07-31 16:28:48 -0400 | [diff] [blame] | 6520 | |
Chris Mason | 1643298 | 2008-04-10 10:23:21 -0400 | [diff] [blame] | 6521 | static ssize_t btrfs_direct_IO(int rw, struct kiocb *iocb, |
| 6522 | const struct iovec *iov, loff_t offset, |
| 6523 | unsigned long nr_segs) |
| 6524 | { |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6525 | struct file *file = iocb->ki_filp; |
| 6526 | struct inode *inode = file->f_mapping->host; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6527 | |
Chris Mason | 5a5f79b | 2010-05-26 21:33:37 -0400 | [diff] [blame] | 6528 | if (check_direct_IO(BTRFS_I(inode)->root, rw, iocb, iov, |
Josef Bacik | eb838e7 | 2012-07-31 16:28:48 -0400 | [diff] [blame] | 6529 | offset, nr_segs)) |
Chris Mason | 5a5f79b | 2010-05-26 21:33:37 -0400 | [diff] [blame] | 6530 | return 0; |
Chris Mason | 5a5f79b | 2010-05-26 21:33:37 -0400 | [diff] [blame] | 6531 | |
Josef Bacik | eb838e7 | 2012-07-31 16:28:48 -0400 | [diff] [blame] | 6532 | return __blockdev_direct_IO(rw, iocb, inode, |
Chris Mason | 5a5f79b | 2010-05-26 21:33:37 -0400 | [diff] [blame] | 6533 | BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev, |
| 6534 | iov, offset, nr_segs, btrfs_get_blocks_direct, NULL, |
| 6535 | btrfs_submit_direct, 0); |
Chris Mason | 1643298 | 2008-04-10 10:23:21 -0400 | [diff] [blame] | 6536 | } |
| 6537 | |
Yehuda Sadeh | 1506fcc | 2009-01-21 14:39:14 -0500 | [diff] [blame] | 6538 | static int btrfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo, |
| 6539 | __u64 start, __u64 len) |
| 6540 | { |
Chris Mason | ec29ed5 | 2011-02-23 16:23:20 -0500 | [diff] [blame] | 6541 | return extent_fiemap(inode, fieinfo, start, len, btrfs_get_extent_fiemap); |
Yehuda Sadeh | 1506fcc | 2009-01-21 14:39:14 -0500 | [diff] [blame] | 6542 | } |
| 6543 | |
Chris Mason | 9ebefb18 | 2007-06-15 13:50:00 -0400 | [diff] [blame] | 6544 | int btrfs_readpage(struct file *file, struct page *page) |
| 6545 | { |
Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 6546 | struct extent_io_tree *tree; |
| 6547 | tree = &BTRFS_I(page->mapping->host)->io_tree; |
Jan Schmidt | 8ddc7d9 | 2011-06-13 20:02:58 +0200 | [diff] [blame] | 6548 | return extent_read_full_page(tree, page, btrfs_get_extent, 0); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6549 | } |
Chris Mason | 1832a6d | 2007-12-21 16:27:21 -0500 | [diff] [blame] | 6550 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6551 | static int btrfs_writepage(struct page *page, struct writeback_control *wbc) |
| 6552 | { |
Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 6553 | struct extent_io_tree *tree; |
Chris Mason | b888db2b | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6554 | |
| 6555 | |
| 6556 | if (current->flags & PF_MEMALLOC) { |
| 6557 | redirty_page_for_writepage(wbc, page); |
| 6558 | unlock_page(page); |
| 6559 | return 0; |
| 6560 | } |
Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 6561 | tree = &BTRFS_I(page->mapping->host)->io_tree; |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6562 | return extent_write_full_page(tree, page, btrfs_get_extent, wbc); |
| 6563 | } |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6564 | |
Chris Mason | f421950 | 2008-07-22 11:18:09 -0400 | [diff] [blame] | 6565 | int btrfs_writepages(struct address_space *mapping, |
| 6566 | struct writeback_control *wbc) |
Chris Mason | b293f02e | 2007-11-01 19:45:34 -0400 | [diff] [blame] | 6567 | { |
Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 6568 | struct extent_io_tree *tree; |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 6569 | |
Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 6570 | tree = &BTRFS_I(mapping->host)->io_tree; |
Chris Mason | b293f02e | 2007-11-01 19:45:34 -0400 | [diff] [blame] | 6571 | return extent_writepages(tree, mapping, btrfs_get_extent, wbc); |
| 6572 | } |
| 6573 | |
Chris Mason | 3ab2fb5 | 2007-11-08 10:59:22 -0500 | [diff] [blame] | 6574 | static int |
| 6575 | btrfs_readpages(struct file *file, struct address_space *mapping, |
| 6576 | struct list_head *pages, unsigned nr_pages) |
| 6577 | { |
Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 6578 | struct extent_io_tree *tree; |
| 6579 | tree = &BTRFS_I(mapping->host)->io_tree; |
Chris Mason | 3ab2fb5 | 2007-11-08 10:59:22 -0500 | [diff] [blame] | 6580 | return extent_readpages(tree, mapping, pages, nr_pages, |
| 6581 | btrfs_get_extent); |
| 6582 | } |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6583 | static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags) |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6584 | { |
Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 6585 | struct extent_io_tree *tree; |
| 6586 | struct extent_map_tree *map; |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6587 | int ret; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6588 | |
Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 6589 | tree = &BTRFS_I(page->mapping->host)->io_tree; |
| 6590 | map = &BTRFS_I(page->mapping->host)->extent_tree; |
Chris Mason | 70dec80 | 2008-01-29 09:59:12 -0500 | [diff] [blame] | 6591 | ret = try_release_extent_mapping(map, tree, page, gfp_flags); |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6592 | if (ret == 1) { |
| 6593 | ClearPagePrivate(page); |
| 6594 | set_page_private(page, 0); |
| 6595 | page_cache_release(page); |
| 6596 | } |
| 6597 | return ret; |
| 6598 | } |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6599 | |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6600 | static int btrfs_releasepage(struct page *page, gfp_t gfp_flags) |
| 6601 | { |
Chris Mason | 98509cf | 2008-09-11 15:51:43 -0400 | [diff] [blame] | 6602 | if (PageWriteback(page) || PageDirty(page)) |
| 6603 | return 0; |
Yan Zheng | b335b00 | 2009-02-12 10:06:04 -0500 | [diff] [blame] | 6604 | return __btrfs_releasepage(page, gfp_flags & GFP_NOFS); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6605 | } |
| 6606 | |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6607 | static void btrfs_invalidatepage(struct page *page, unsigned long offset) |
| 6608 | { |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 6609 | struct inode *inode = page->mapping->host; |
Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 6610 | struct extent_io_tree *tree; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6611 | struct btrfs_ordered_extent *ordered; |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 6612 | struct extent_state *cached_state = NULL; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6613 | u64 page_start = page_offset(page); |
| 6614 | u64 page_end = page_start + PAGE_CACHE_SIZE - 1; |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6615 | |
Chris Mason | 8b62b72 | 2009-09-02 16:53:46 -0400 | [diff] [blame] | 6616 | /* |
| 6617 | * we have the page locked, so new writeback can't start, |
| 6618 | * and the dirty bit won't be cleared while we are here. |
| 6619 | * |
| 6620 | * Wait for IO on this page so that we can safely clear |
| 6621 | * the PagePrivate2 bit and do ordered accounting |
| 6622 | */ |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6623 | wait_on_page_writeback(page); |
Chris Mason | 8b62b72 | 2009-09-02 16:53:46 -0400 | [diff] [blame] | 6624 | |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 6625 | tree = &BTRFS_I(inode)->io_tree; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6626 | if (offset) { |
| 6627 | btrfs_releasepage(page, GFP_NOFS); |
| 6628 | return; |
| 6629 | } |
Jeff Mahoney | d008237 | 2012-03-01 14:57:19 +0100 | [diff] [blame] | 6630 | lock_extent_bits(tree, page_start, page_end, 0, &cached_state); |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 6631 | ordered = btrfs_lookup_ordered_extent(inode, |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6632 | page_offset(page)); |
| 6633 | if (ordered) { |
Chris Mason | eb84ae0 | 2008-07-17 13:53:27 -0400 | [diff] [blame] | 6634 | /* |
| 6635 | * IO on this page will never be started, so we need |
| 6636 | * to account for any ordered extents now |
| 6637 | */ |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6638 | clear_extent_bit(tree, page_start, page_end, |
| 6639 | EXTENT_DIRTY | EXTENT_DELALLOC | |
Liu Bo | 9e8a4a8 | 2012-09-05 19:10:51 -0600 | [diff] [blame] | 6640 | EXTENT_LOCKED | EXTENT_DO_ACCOUNTING | |
| 6641 | EXTENT_DEFRAG, 1, 0, &cached_state, GFP_NOFS); |
Chris Mason | 8b62b72 | 2009-09-02 16:53:46 -0400 | [diff] [blame] | 6642 | /* |
| 6643 | * whoever cleared the private bit is responsible |
| 6644 | * for the finish_ordered_io |
| 6645 | */ |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 6646 | if (TestClearPagePrivate2(page) && |
| 6647 | btrfs_dec_test_ordered_pending(inode, &ordered, page_start, |
| 6648 | PAGE_CACHE_SIZE, 1)) { |
| 6649 | btrfs_finish_ordered_io(ordered); |
Chris Mason | 8b62b72 | 2009-09-02 16:53:46 -0400 | [diff] [blame] | 6650 | } |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6651 | btrfs_put_ordered_extent(ordered); |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 6652 | cached_state = NULL; |
Jeff Mahoney | d008237 | 2012-03-01 14:57:19 +0100 | [diff] [blame] | 6653 | lock_extent_bits(tree, page_start, page_end, 0, &cached_state); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6654 | } |
| 6655 | clear_extent_bit(tree, page_start, page_end, |
Josef Bacik | 32c00af | 2009-10-08 13:34:05 -0400 | [diff] [blame] | 6656 | EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC | |
Liu Bo | 9e8a4a8 | 2012-09-05 19:10:51 -0600 | [diff] [blame] | 6657 | EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, 1, 1, |
| 6658 | &cached_state, GFP_NOFS); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6659 | __btrfs_releasepage(page, GFP_NOFS); |
| 6660 | |
Chris Mason | 4a09675 | 2008-07-21 10:29:44 -0400 | [diff] [blame] | 6661 | ClearPageChecked(page); |
Chris Mason | 9ad6b7b | 2008-04-18 16:11:30 -0400 | [diff] [blame] | 6662 | if (PagePrivate(page)) { |
Chris Mason | 9ad6b7b | 2008-04-18 16:11:30 -0400 | [diff] [blame] | 6663 | ClearPagePrivate(page); |
| 6664 | set_page_private(page, 0); |
| 6665 | page_cache_release(page); |
| 6666 | } |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6667 | } |
| 6668 | |
Chris Mason | 9ebefb18 | 2007-06-15 13:50:00 -0400 | [diff] [blame] | 6669 | /* |
| 6670 | * btrfs_page_mkwrite() is not allowed to change the file size as it gets |
| 6671 | * called from a page fault handler when a page is first dirtied. Hence we must |
| 6672 | * be careful to check for EOF conditions here. We set the page up correctly |
| 6673 | * for a written page which means we get ENOSPC checking when writing into |
| 6674 | * holes and correct delalloc and unwritten extent mapping on filesystems that |
| 6675 | * support these features. |
| 6676 | * |
| 6677 | * We are not allowed to take the i_mutex here so we have to play games to |
| 6678 | * protect against truncate races as the page could now be beyond EOF. Because |
| 6679 | * vmtruncate() writes the inode size before removing pages, once we have the |
| 6680 | * page lock we can determine safely if the page is beyond EOF. If it is not |
| 6681 | * beyond EOF, then the page is guaranteed safe against truncation until we |
| 6682 | * unlock the page. |
| 6683 | */ |
Nick Piggin | c2ec175 | 2009-03-31 15:23:21 -0700 | [diff] [blame] | 6684 | 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] | 6685 | { |
Nick Piggin | c2ec175 | 2009-03-31 15:23:21 -0700 | [diff] [blame] | 6686 | struct page *page = vmf->page; |
Chris Mason | 6da6aba | 2007-12-18 16:15:09 -0500 | [diff] [blame] | 6687 | struct inode *inode = fdentry(vma->vm_file)->d_inode; |
Chris Mason | 1832a6d | 2007-12-21 16:27:21 -0500 | [diff] [blame] | 6688 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6689 | struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree; |
| 6690 | struct btrfs_ordered_extent *ordered; |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 6691 | struct extent_state *cached_state = NULL; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6692 | char *kaddr; |
| 6693 | unsigned long zero_start; |
Chris Mason | 9ebefb18 | 2007-06-15 13:50:00 -0400 | [diff] [blame] | 6694 | loff_t size; |
Chris Mason | 1832a6d | 2007-12-21 16:27:21 -0500 | [diff] [blame] | 6695 | int ret; |
Chris Mason | 9998eb7 | 2012-01-25 13:47:40 -0500 | [diff] [blame] | 6696 | int reserved = 0; |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6697 | u64 page_start; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6698 | u64 page_end; |
Chris Mason | 9ebefb18 | 2007-06-15 13:50:00 -0400 | [diff] [blame] | 6699 | |
Jan Kara | b2b5ef5 | 2012-06-12 16:20:45 +0200 | [diff] [blame] | 6700 | sb_start_pagefault(inode->i_sb); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6701 | ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE); |
Chris Mason | 9998eb7 | 2012-01-25 13:47:40 -0500 | [diff] [blame] | 6702 | if (!ret) { |
Josef Bacik | e41f941 | 2012-03-26 09:46:47 -0400 | [diff] [blame] | 6703 | ret = file_update_time(vma->vm_file); |
Chris Mason | 9998eb7 | 2012-01-25 13:47:40 -0500 | [diff] [blame] | 6704 | reserved = 1; |
| 6705 | } |
Nick Piggin | 56a76f8 | 2009-03-31 15:23:23 -0700 | [diff] [blame] | 6706 | if (ret) { |
| 6707 | if (ret == -ENOMEM) |
| 6708 | ret = VM_FAULT_OOM; |
| 6709 | else /* -ENOSPC, -EIO, etc */ |
| 6710 | ret = VM_FAULT_SIGBUS; |
Chris Mason | 9998eb7 | 2012-01-25 13:47:40 -0500 | [diff] [blame] | 6711 | if (reserved) |
| 6712 | goto out; |
| 6713 | goto out_noreserve; |
Nick Piggin | 56a76f8 | 2009-03-31 15:23:23 -0700 | [diff] [blame] | 6714 | } |
Chris Mason | 1832a6d | 2007-12-21 16:27:21 -0500 | [diff] [blame] | 6715 | |
Nick Piggin | 56a76f8 | 2009-03-31 15:23:23 -0700 | [diff] [blame] | 6716 | ret = VM_FAULT_NOPAGE; /* make the VM retry the fault */ |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6717 | again: |
Chris Mason | 9ebefb18 | 2007-06-15 13:50:00 -0400 | [diff] [blame] | 6718 | lock_page(page); |
Chris Mason | 9ebefb18 | 2007-06-15 13:50:00 -0400 | [diff] [blame] | 6719 | size = i_size_read(inode); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6720 | page_start = page_offset(page); |
| 6721 | page_end = page_start + PAGE_CACHE_SIZE - 1; |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6722 | |
Chris Mason | 9ebefb18 | 2007-06-15 13:50:00 -0400 | [diff] [blame] | 6723 | if ((page->mapping != inode->i_mapping) || |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6724 | (page_start >= size)) { |
Chris Mason | 9ebefb18 | 2007-06-15 13:50:00 -0400 | [diff] [blame] | 6725 | /* page got truncated out from underneath us */ |
| 6726 | goto out_unlock; |
| 6727 | } |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6728 | wait_on_page_writeback(page); |
| 6729 | |
Jeff Mahoney | d008237 | 2012-03-01 14:57:19 +0100 | [diff] [blame] | 6730 | lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6731 | set_page_extent_mapped(page); |
| 6732 | |
Chris Mason | eb84ae0 | 2008-07-17 13:53:27 -0400 | [diff] [blame] | 6733 | /* |
| 6734 | * we can't set the delalloc bits if there are pending ordered |
| 6735 | * extents. Drop our locks and wait for them to finish |
| 6736 | */ |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6737 | ordered = btrfs_lookup_ordered_extent(inode, page_start); |
| 6738 | if (ordered) { |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 6739 | unlock_extent_cached(io_tree, page_start, page_end, |
| 6740 | &cached_state, GFP_NOFS); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6741 | unlock_page(page); |
Chris Mason | eb84ae0 | 2008-07-17 13:53:27 -0400 | [diff] [blame] | 6742 | btrfs_start_ordered_extent(inode, ordered, 1); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6743 | btrfs_put_ordered_extent(ordered); |
| 6744 | goto again; |
| 6745 | } |
| 6746 | |
Josef Bacik | fbf1908 | 2009-10-01 17:10:23 -0400 | [diff] [blame] | 6747 | /* |
| 6748 | * XXX - page_mkwrite gets called every time the page is dirtied, even |
| 6749 | * if it was already dirty, so for space accounting reasons we need to |
| 6750 | * clear any delalloc bits for the range we are fixing to save. There |
| 6751 | * is probably a better way to do this, but for now keep consistent with |
| 6752 | * prepare_pages in the normal write path. |
| 6753 | */ |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 6754 | clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end, |
Liu Bo | 9e8a4a8 | 2012-09-05 19:10:51 -0600 | [diff] [blame] | 6755 | EXTENT_DIRTY | EXTENT_DELALLOC | |
| 6756 | EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 6757 | 0, 0, &cached_state, GFP_NOFS); |
Josef Bacik | fbf1908 | 2009-10-01 17:10:23 -0400 | [diff] [blame] | 6758 | |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 6759 | ret = btrfs_set_extent_delalloc(inode, page_start, page_end, |
| 6760 | &cached_state); |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 6761 | if (ret) { |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 6762 | unlock_extent_cached(io_tree, page_start, page_end, |
| 6763 | &cached_state, GFP_NOFS); |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 6764 | ret = VM_FAULT_SIGBUS; |
| 6765 | goto out_unlock; |
| 6766 | } |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6767 | ret = 0; |
Chris Mason | 9ebefb18 | 2007-06-15 13:50:00 -0400 | [diff] [blame] | 6768 | |
| 6769 | /* page is wholly or partially inside EOF */ |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6770 | if (page_start + PAGE_CACHE_SIZE > size) |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6771 | zero_start = size & ~PAGE_CACHE_MASK; |
Chris Mason | 9ebefb18 | 2007-06-15 13:50:00 -0400 | [diff] [blame] | 6772 | else |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6773 | zero_start = PAGE_CACHE_SIZE; |
Chris Mason | 9ebefb18 | 2007-06-15 13:50:00 -0400 | [diff] [blame] | 6774 | |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6775 | if (zero_start != PAGE_CACHE_SIZE) { |
| 6776 | kaddr = kmap(page); |
| 6777 | memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start); |
| 6778 | flush_dcache_page(page); |
| 6779 | kunmap(page); |
| 6780 | } |
Chris Mason | 247e743 | 2008-07-17 12:53:51 -0400 | [diff] [blame] | 6781 | ClearPageChecked(page); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6782 | set_page_dirty(page); |
Chris Mason | 50a9b21 | 2009-09-11 12:33:12 -0400 | [diff] [blame] | 6783 | SetPageUptodate(page); |
Chris Mason | 5a3f23d | 2009-03-31 13:27:11 -0400 | [diff] [blame] | 6784 | |
Chris Mason | 257c62e | 2009-10-13 13:21:08 -0400 | [diff] [blame] | 6785 | BTRFS_I(inode)->last_trans = root->fs_info->generation; |
| 6786 | BTRFS_I(inode)->last_sub_trans = BTRFS_I(inode)->root->log_transid; |
Liu Bo | 46d8bc3 | 2012-08-29 01:07:55 -0600 | [diff] [blame] | 6787 | BTRFS_I(inode)->last_log_commit = BTRFS_I(inode)->root->last_log_commit; |
Chris Mason | 257c62e | 2009-10-13 13:21:08 -0400 | [diff] [blame] | 6788 | |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 6789 | 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] | 6790 | |
| 6791 | out_unlock: |
Jan Kara | b2b5ef5 | 2012-06-12 16:20:45 +0200 | [diff] [blame] | 6792 | if (!ret) { |
| 6793 | sb_end_pagefault(inode->i_sb); |
Chris Mason | 50a9b21 | 2009-09-11 12:33:12 -0400 | [diff] [blame] | 6794 | return VM_FAULT_LOCKED; |
Jan Kara | b2b5ef5 | 2012-06-12 16:20:45 +0200 | [diff] [blame] | 6795 | } |
Chris Mason | 9ebefb18 | 2007-06-15 13:50:00 -0400 | [diff] [blame] | 6796 | unlock_page(page); |
Chris Mason | 1832a6d | 2007-12-21 16:27:21 -0500 | [diff] [blame] | 6797 | out: |
Josef Bacik | ec39e18 | 2012-01-12 19:10:12 -0500 | [diff] [blame] | 6798 | btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE); |
Chris Mason | 9998eb7 | 2012-01-25 13:47:40 -0500 | [diff] [blame] | 6799 | out_noreserve: |
Jan Kara | b2b5ef5 | 2012-06-12 16:20:45 +0200 | [diff] [blame] | 6800 | sb_end_pagefault(inode->i_sb); |
Chris Mason | 9ebefb18 | 2007-06-15 13:50:00 -0400 | [diff] [blame] | 6801 | return ret; |
| 6802 | } |
| 6803 | |
Josef Bacik | a41ad39 | 2011-01-31 15:30:16 -0500 | [diff] [blame] | 6804 | static int btrfs_truncate(struct inode *inode) |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6805 | { |
| 6806 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Josef Bacik | fcb80c2 | 2011-05-03 10:40:22 -0400 | [diff] [blame] | 6807 | struct btrfs_block_rsv *rsv; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6808 | int ret; |
Josef Bacik | 3893e33 | 2011-01-31 16:03:11 -0500 | [diff] [blame] | 6809 | int err = 0; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6810 | struct btrfs_trans_handle *trans; |
Chris Mason | d3c2fdcf | 2007-09-17 10:58:06 -0400 | [diff] [blame] | 6811 | unsigned long nr; |
Chris Mason | dbe674a | 2008-07-17 12:54:05 -0400 | [diff] [blame] | 6812 | u64 mask = root->sectorsize - 1; |
Josef Bacik | 0712718 | 2011-08-19 10:29:59 -0400 | [diff] [blame] | 6813 | u64 min_size = btrfs_calc_trunc_metadata_size(root, 1); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6814 | |
Josef Bacik | 2aaa665 | 2012-08-29 14:27:18 -0400 | [diff] [blame] | 6815 | ret = btrfs_truncate_page(inode, inode->i_size, 0, 0); |
Josef Bacik | 5d5e103 | 2009-10-13 16:46:49 -0400 | [diff] [blame] | 6816 | if (ret) |
Josef Bacik | a41ad39 | 2011-01-31 15:30:16 -0500 | [diff] [blame] | 6817 | return ret; |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 6818 | |
Chris Mason | 4a09675 | 2008-07-21 10:29:44 -0400 | [diff] [blame] | 6819 | btrfs_wait_ordered_range(inode, inode->i_size & (~mask), (u64)-1); |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 6820 | btrfs_ordered_update_i_size(inode, inode->i_size, NULL); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6821 | |
Josef Bacik | fcb80c2 | 2011-05-03 10:40:22 -0400 | [diff] [blame] | 6822 | /* |
| 6823 | * Yes ladies and gentelment, this is indeed ugly. The fact is we have |
| 6824 | * 3 things going on here |
| 6825 | * |
| 6826 | * 1) We need to reserve space for our orphan item and the space to |
| 6827 | * delete our orphan item. Lord knows we don't want to have a dangling |
| 6828 | * orphan item because we didn't reserve space to remove it. |
| 6829 | * |
| 6830 | * 2) We need to reserve space to update our inode. |
| 6831 | * |
| 6832 | * 3) We need to have something to cache all the space that is going to |
| 6833 | * be free'd up by the truncate operation, but also have some slack |
| 6834 | * space reserved in case it uses space during the truncate (thank you |
| 6835 | * very much snapshotting). |
| 6836 | * |
| 6837 | * And we need these to all be seperate. The fact is we can use alot of |
| 6838 | * space doing the truncate, and we have no earthly idea how much space |
| 6839 | * we will use, so we need the truncate reservation to be seperate so it |
| 6840 | * doesn't end up using space reserved for updating the inode or |
| 6841 | * removing the orphan item. We also need to be able to stop the |
| 6842 | * transaction and start a new one, which means we need to be able to |
| 6843 | * update the inode several times, and we have no idea of knowing how |
| 6844 | * many times that will be, so we can't just reserve 1 item for the |
| 6845 | * entirety of the opration, so that has to be done seperately as well. |
| 6846 | * Then there is the orphan item, which does indeed need to be held on |
| 6847 | * to for the whole operation, and we need nobody to touch this reserved |
| 6848 | * space except the orphan code. |
| 6849 | * |
| 6850 | * So that leaves us with |
| 6851 | * |
| 6852 | * 1) root->orphan_block_rsv - for the orphan deletion. |
| 6853 | * 2) rsv - for the truncate reservation, which we will steal from the |
| 6854 | * transaction reservation. |
| 6855 | * 3) fs_info->trans_block_rsv - this will have 1 items worth left for |
| 6856 | * updating the inode. |
| 6857 | */ |
Miao Xie | 66d8f3d | 2012-09-06 04:02:28 -0600 | [diff] [blame] | 6858 | rsv = btrfs_alloc_block_rsv(root, BTRFS_BLOCK_RSV_TEMP); |
Josef Bacik | fcb80c2 | 2011-05-03 10:40:22 -0400 | [diff] [blame] | 6859 | if (!rsv) |
| 6860 | return -ENOMEM; |
Josef Bacik | 4a33854 | 2011-08-29 11:01:31 -0400 | [diff] [blame] | 6861 | rsv->size = min_size; |
Josef Bacik | ca7e70f | 2012-08-27 17:48:15 -0400 | [diff] [blame] | 6862 | rsv->failfast = 1; |
Josef Bacik | f0cd846 | 2011-03-04 14:37:08 -0500 | [diff] [blame] | 6863 | |
Josef Bacik | 907cbce | 2011-08-08 13:46:15 -0400 | [diff] [blame] | 6864 | /* |
Josef Bacik | 0712718 | 2011-08-19 10:29:59 -0400 | [diff] [blame] | 6865 | * 1 for the truncate slack space |
Josef Bacik | 907cbce | 2011-08-08 13:46:15 -0400 | [diff] [blame] | 6866 | * 1 for the orphan item we're going to add |
| 6867 | * 1 for the orphan item deletion |
| 6868 | * 1 for updating the inode. |
| 6869 | */ |
Josef Bacik | fcb80c2 | 2011-05-03 10:40:22 -0400 | [diff] [blame] | 6870 | trans = btrfs_start_transaction(root, 4); |
| 6871 | if (IS_ERR(trans)) { |
| 6872 | err = PTR_ERR(trans); |
| 6873 | goto out; |
| 6874 | } |
Josef Bacik | f0cd846 | 2011-03-04 14:37:08 -0500 | [diff] [blame] | 6875 | |
Josef Bacik | 907cbce | 2011-08-08 13:46:15 -0400 | [diff] [blame] | 6876 | /* Migrate the slack space for the truncate to our reserve */ |
| 6877 | ret = btrfs_block_rsv_migrate(&root->fs_info->trans_block_rsv, rsv, |
| 6878 | min_size); |
Josef Bacik | fcb80c2 | 2011-05-03 10:40:22 -0400 | [diff] [blame] | 6879 | BUG_ON(ret); |
Josef Bacik | f0cd846 | 2011-03-04 14:37:08 -0500 | [diff] [blame] | 6880 | |
| 6881 | ret = btrfs_orphan_add(trans, inode); |
| 6882 | if (ret) { |
| 6883 | btrfs_end_transaction(trans, root); |
Josef Bacik | fcb80c2 | 2011-05-03 10:40:22 -0400 | [diff] [blame] | 6884 | goto out; |
Josef Bacik | f0cd846 | 2011-03-04 14:37:08 -0500 | [diff] [blame] | 6885 | } |
| 6886 | |
Chris Mason | 5a3f23d | 2009-03-31 13:27:11 -0400 | [diff] [blame] | 6887 | /* |
| 6888 | * setattr is responsible for setting the ordered_data_close flag, |
| 6889 | * but that is only tested during the last file release. That |
| 6890 | * could happen well after the next commit, leaving a great big |
| 6891 | * window where new writes may get lost if someone chooses to write |
| 6892 | * to this file after truncating to zero |
| 6893 | * |
| 6894 | * The inode doesn't have any dirty data here, and so if we commit |
| 6895 | * this is a noop. If someone immediately starts writing to the inode |
| 6896 | * it is very likely we'll catch some of their writes in this |
| 6897 | * transaction, and the commit will find this file on the ordered |
| 6898 | * data list with good things to send down. |
| 6899 | * |
| 6900 | * This is a best effort solution, there is still a window where |
| 6901 | * using truncate to replace the contents of the file will |
| 6902 | * end up with a zero length file after a crash. |
| 6903 | */ |
Josef Bacik | 72ac3c0 | 2012-05-23 14:13:11 -0400 | [diff] [blame] | 6904 | if (inode->i_size == 0 && test_bit(BTRFS_INODE_ORDERED_DATA_CLOSE, |
| 6905 | &BTRFS_I(inode)->runtime_flags)) |
Chris Mason | 5a3f23d | 2009-03-31 13:27:11 -0400 | [diff] [blame] | 6906 | btrfs_add_ordered_operation(trans, root, inode); |
| 6907 | |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 6908 | /* |
| 6909 | * So if we truncate and then write and fsync we normally would just |
| 6910 | * write the extents that changed, which is a problem if we need to |
| 6911 | * first truncate that entire inode. So set this flag so we write out |
| 6912 | * all of the extents in the inode to the sync log so we're completely |
| 6913 | * safe. |
| 6914 | */ |
| 6915 | set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags); |
Josef Bacik | ca7e70f | 2012-08-27 17:48:15 -0400 | [diff] [blame] | 6916 | trans->block_rsv = rsv; |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 6917 | |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 6918 | while (1) { |
| 6919 | ret = btrfs_truncate_inode_items(trans, root, inode, |
| 6920 | inode->i_size, |
| 6921 | BTRFS_EXTENT_DATA_KEY); |
Josef Bacik | ca7e70f | 2012-08-27 17:48:15 -0400 | [diff] [blame] | 6922 | if (ret != -ENOSPC) { |
Josef Bacik | 3893e33 | 2011-01-31 16:03:11 -0500 | [diff] [blame] | 6923 | err = ret; |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 6924 | break; |
Josef Bacik | 3893e33 | 2011-01-31 16:03:11 -0500 | [diff] [blame] | 6925 | } |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6926 | |
Josef Bacik | fcb80c2 | 2011-05-03 10:40:22 -0400 | [diff] [blame] | 6927 | trans->block_rsv = &root->fs_info->trans_block_rsv; |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 6928 | ret = btrfs_update_inode(trans, root, inode); |
Josef Bacik | 3893e33 | 2011-01-31 16:03:11 -0500 | [diff] [blame] | 6929 | if (ret) { |
| 6930 | err = ret; |
| 6931 | break; |
| 6932 | } |
Josef Bacik | ca7e70f | 2012-08-27 17:48:15 -0400 | [diff] [blame] | 6933 | |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 6934 | nr = trans->blocks_used; |
| 6935 | btrfs_end_transaction(trans, root); |
| 6936 | btrfs_btree_balance_dirty(root, nr); |
Josef Bacik | ca7e70f | 2012-08-27 17:48:15 -0400 | [diff] [blame] | 6937 | |
| 6938 | trans = btrfs_start_transaction(root, 2); |
| 6939 | if (IS_ERR(trans)) { |
| 6940 | ret = err = PTR_ERR(trans); |
| 6941 | trans = NULL; |
| 6942 | break; |
| 6943 | } |
| 6944 | |
| 6945 | ret = btrfs_block_rsv_migrate(&root->fs_info->trans_block_rsv, |
| 6946 | rsv, min_size); |
| 6947 | BUG_ON(ret); /* shouldn't happen */ |
| 6948 | trans->block_rsv = rsv; |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 6949 | } |
| 6950 | |
| 6951 | if (ret == 0 && inode->i_nlink > 0) { |
Josef Bacik | fcb80c2 | 2011-05-03 10:40:22 -0400 | [diff] [blame] | 6952 | trans->block_rsv = root->orphan_block_rsv; |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 6953 | ret = btrfs_orphan_del(trans, inode); |
Josef Bacik | 3893e33 | 2011-01-31 16:03:11 -0500 | [diff] [blame] | 6954 | if (ret) |
| 6955 | err = ret; |
Josef Bacik | ded5db9 | 2011-03-04 14:09:46 -0500 | [diff] [blame] | 6956 | } else if (ret && inode->i_nlink > 0) { |
| 6957 | /* |
| 6958 | * Failed to do the truncate, remove us from the in memory |
| 6959 | * orphan list. |
| 6960 | */ |
| 6961 | ret = btrfs_orphan_del(NULL, inode); |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 6962 | } |
| 6963 | |
Chris Mason | 917c16b | 2011-11-08 14:49:59 -0500 | [diff] [blame] | 6964 | if (trans) { |
| 6965 | trans->block_rsv = &root->fs_info->trans_block_rsv; |
| 6966 | ret = btrfs_update_inode(trans, root, inode); |
| 6967 | if (ret && !err) |
| 6968 | err = ret; |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 6969 | |
Chris Mason | 917c16b | 2011-11-08 14:49:59 -0500 | [diff] [blame] | 6970 | nr = trans->blocks_used; |
Josef Bacik | 7ad85bb | 2012-01-12 19:10:12 -0500 | [diff] [blame] | 6971 | ret = btrfs_end_transaction(trans, root); |
Chris Mason | 917c16b | 2011-11-08 14:49:59 -0500 | [diff] [blame] | 6972 | btrfs_btree_balance_dirty(root, nr); |
| 6973 | } |
Josef Bacik | fcb80c2 | 2011-05-03 10:40:22 -0400 | [diff] [blame] | 6974 | |
| 6975 | out: |
| 6976 | btrfs_free_block_rsv(root, rsv); |
| 6977 | |
Josef Bacik | 3893e33 | 2011-01-31 16:03:11 -0500 | [diff] [blame] | 6978 | if (ret && !err) |
| 6979 | err = ret; |
Josef Bacik | a41ad39 | 2011-01-31 15:30:16 -0500 | [diff] [blame] | 6980 | |
Josef Bacik | 3893e33 | 2011-01-31 16:03:11 -0500 | [diff] [blame] | 6981 | return err; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6982 | } |
| 6983 | |
Sven Wegener | 3b96362 | 2008-06-09 21:57:42 -0400 | [diff] [blame] | 6984 | /* |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 6985 | * create a new subvolume directory/inode (helper for the ioctl). |
| 6986 | */ |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 6987 | int btrfs_create_subvol_root(struct btrfs_trans_handle *trans, |
Josef Bacik | d82a6f1d | 2011-05-11 15:26:06 -0400 | [diff] [blame] | 6988 | struct btrfs_root *new_root, u64 new_dirid) |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6989 | { |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6990 | struct inode *inode; |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 6991 | int err; |
Chris Mason | 00e4e6b | 2008-08-05 11:18:09 -0400 | [diff] [blame] | 6992 | u64 index = 0; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6993 | |
Florian Albrechtskirchinger | 12fc9d0 | 2012-02-10 22:15:54 +0100 | [diff] [blame] | 6994 | inode = btrfs_new_inode(trans, new_root, NULL, "..", 2, |
| 6995 | new_dirid, new_dirid, |
| 6996 | S_IFDIR | (~current_umask() & S_IRWXUGO), |
| 6997 | &index); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 6998 | if (IS_ERR(inode)) |
Christoph Hellwig | f46b5a6 | 2008-06-11 21:53:53 -0400 | [diff] [blame] | 6999 | return PTR_ERR(inode); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7000 | inode->i_op = &btrfs_dir_inode_operations; |
| 7001 | inode->i_fop = &btrfs_dir_file_operations; |
| 7002 | |
Miklos Szeredi | bfe8684 | 2011-10-28 14:13:29 +0200 | [diff] [blame] | 7003 | set_nlink(inode, 1); |
Chris Mason | dbe674a | 2008-07-17 12:54:05 -0400 | [diff] [blame] | 7004 | btrfs_i_size_write(inode, 0); |
Sven Wegener | 3b96362 | 2008-06-09 21:57:42 -0400 | [diff] [blame] | 7005 | |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 7006 | err = btrfs_update_inode(trans, new_root, inode); |
Christoph Hellwig | cb8e709 | 2008-10-09 13:39:39 -0400 | [diff] [blame] | 7007 | |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 7008 | iput(inode); |
Mark Fasheh | ce59897 | 2011-07-26 11:32:23 -0700 | [diff] [blame] | 7009 | return err; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7010 | } |
| 7011 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7012 | struct inode *btrfs_alloc_inode(struct super_block *sb) |
| 7013 | { |
| 7014 | struct btrfs_inode *ei; |
Yan, Zheng | 2ead6ae | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7015 | struct inode *inode; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7016 | |
| 7017 | ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS); |
| 7018 | if (!ei) |
| 7019 | return NULL; |
Yan, Zheng | 2ead6ae | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7020 | |
| 7021 | ei->root = NULL; |
Yan, Zheng | 2ead6ae | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7022 | ei->generation = 0; |
Josef Bacik | 15ee9bc | 2007-08-10 16:22:09 -0400 | [diff] [blame] | 7023 | ei->last_trans = 0; |
Chris Mason | 257c62e | 2009-10-13 13:21:08 -0400 | [diff] [blame] | 7024 | ei->last_sub_trans = 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 7025 | ei->logged_trans = 0; |
Yan, Zheng | 2ead6ae | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7026 | ei->delalloc_bytes = 0; |
Yan, Zheng | 2ead6ae | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7027 | ei->disk_i_size = 0; |
| 7028 | ei->flags = 0; |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 7029 | ei->csum_bytes = 0; |
Yan, Zheng | 2ead6ae | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7030 | ei->index_cnt = (u64)-1; |
| 7031 | ei->last_unlink_trans = 0; |
Liu Bo | 46d8bc3 | 2012-08-29 01:07:55 -0600 | [diff] [blame] | 7032 | ei->last_log_commit = 0; |
Yan, Zheng | 2ead6ae | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7033 | |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 7034 | spin_lock_init(&ei->lock); |
| 7035 | ei->outstanding_extents = 0; |
| 7036 | ei->reserved_extents = 0; |
Yan, Zheng | 2ead6ae | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7037 | |
Josef Bacik | 72ac3c0 | 2012-05-23 14:13:11 -0400 | [diff] [blame] | 7038 | ei->runtime_flags = 0; |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 7039 | ei->force_compress = BTRFS_COMPRESS_NONE; |
Yan, Zheng | 2ead6ae | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7040 | |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 7041 | ei->delayed_node = NULL; |
| 7042 | |
Yan, Zheng | 2ead6ae | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7043 | inode = &ei->vfs_inode; |
David Sterba | a8067e0 | 2011-04-21 00:34:43 +0200 | [diff] [blame] | 7044 | extent_map_tree_init(&ei->extent_tree); |
David Sterba | f993c88 | 2011-04-20 23:35:57 +0200 | [diff] [blame] | 7045 | extent_io_tree_init(&ei->io_tree, &inode->i_data); |
| 7046 | extent_io_tree_init(&ei->io_failure_tree, &inode->i_data); |
Josef Bacik | 0b32f4b | 2012-03-13 09:38:00 -0400 | [diff] [blame] | 7047 | ei->io_tree.track_uptodate = 1; |
| 7048 | ei->io_failure_tree.track_uptodate = 1; |
Yan, Zheng | 2ead6ae | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7049 | mutex_init(&ei->log_mutex); |
Josef Bacik | f248679 | 2012-01-13 12:09:22 -0500 | [diff] [blame] | 7050 | mutex_init(&ei->delalloc_mutex); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7051 | btrfs_ordered_inode_tree_init(&ei->ordered_tree); |
Yan, Zheng | 2ead6ae | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7052 | INIT_LIST_HEAD(&ei->delalloc_inodes); |
Chris Mason | 5a3f23d | 2009-03-31 13:27:11 -0400 | [diff] [blame] | 7053 | INIT_LIST_HEAD(&ei->ordered_operations); |
Yan, Zheng | 2ead6ae | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7054 | RB_CLEAR_NODE(&ei->rb_node); |
| 7055 | |
| 7056 | return inode; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7057 | } |
| 7058 | |
Nick Piggin | fa0d7e3d | 2011-01-07 17:49:49 +1100 | [diff] [blame] | 7059 | static void btrfs_i_callback(struct rcu_head *head) |
| 7060 | { |
| 7061 | struct inode *inode = container_of(head, struct inode, i_rcu); |
Nick Piggin | fa0d7e3d | 2011-01-07 17:49:49 +1100 | [diff] [blame] | 7062 | kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode)); |
| 7063 | } |
| 7064 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7065 | void btrfs_destroy_inode(struct inode *inode) |
| 7066 | { |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7067 | struct btrfs_ordered_extent *ordered; |
Chris Mason | 5a3f23d | 2009-03-31 13:27:11 -0400 | [diff] [blame] | 7068 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 7069 | |
Al Viro | b3d9b7a | 2012-06-09 13:51:19 -0400 | [diff] [blame] | 7070 | WARN_ON(!hlist_empty(&inode->i_dentry)); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7071 | WARN_ON(inode->i_data.nrpages); |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 7072 | WARN_ON(BTRFS_I(inode)->outstanding_extents); |
| 7073 | WARN_ON(BTRFS_I(inode)->reserved_extents); |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 7074 | WARN_ON(BTRFS_I(inode)->delalloc_bytes); |
| 7075 | WARN_ON(BTRFS_I(inode)->csum_bytes); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7076 | |
Chris Mason | 5a3f23d | 2009-03-31 13:27:11 -0400 | [diff] [blame] | 7077 | /* |
Josef Bacik | a6dbd42 | 2009-11-11 15:53:34 -0500 | [diff] [blame] | 7078 | * This can happen where we create an inode, but somebody else also |
| 7079 | * created the same inode and we need to destroy the one we already |
| 7080 | * created. |
| 7081 | */ |
| 7082 | if (!root) |
| 7083 | goto free; |
| 7084 | |
| 7085 | /* |
Chris Mason | 5a3f23d | 2009-03-31 13:27:11 -0400 | [diff] [blame] | 7086 | * Make sure we're properly removed from the ordered operation |
| 7087 | * lists. |
| 7088 | */ |
| 7089 | smp_mb(); |
| 7090 | if (!list_empty(&BTRFS_I(inode)->ordered_operations)) { |
| 7091 | spin_lock(&root->fs_info->ordered_extent_lock); |
| 7092 | list_del_init(&BTRFS_I(inode)->ordered_operations); |
| 7093 | spin_unlock(&root->fs_info->ordered_extent_lock); |
| 7094 | } |
| 7095 | |
Josef Bacik | 8a35d95 | 2012-05-23 14:26:42 -0400 | [diff] [blame] | 7096 | if (test_bit(BTRFS_INODE_HAS_ORPHAN_ITEM, |
| 7097 | &BTRFS_I(inode)->runtime_flags)) { |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 7098 | printk(KERN_INFO "BTRFS: inode %llu still on the orphan list\n", |
| 7099 | (unsigned long long)btrfs_ino(inode)); |
Josef Bacik | 8a35d95 | 2012-05-23 14:26:42 -0400 | [diff] [blame] | 7100 | atomic_dec(&root->orphan_inodes); |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 7101 | } |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 7102 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 7103 | while (1) { |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7104 | ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1); |
| 7105 | if (!ordered) |
| 7106 | break; |
| 7107 | else { |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 7108 | printk(KERN_ERR "btrfs found ordered " |
| 7109 | "extent %llu %llu on inode cleanup\n", |
| 7110 | (unsigned long long)ordered->file_offset, |
| 7111 | (unsigned long long)ordered->len); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7112 | btrfs_remove_ordered_extent(inode, ordered); |
| 7113 | btrfs_put_ordered_extent(ordered); |
| 7114 | btrfs_put_ordered_extent(ordered); |
| 7115 | } |
| 7116 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7117 | inode_tree_del(inode); |
Zheng Yan | 5b21f2e | 2008-09-26 10:05:38 -0400 | [diff] [blame] | 7118 | btrfs_drop_extent_cache(inode, 0, (u64)-1, 0); |
Josef Bacik | a6dbd42 | 2009-11-11 15:53:34 -0500 | [diff] [blame] | 7119 | free: |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 7120 | btrfs_remove_delayed_node(inode); |
Nick Piggin | fa0d7e3d | 2011-01-07 17:49:49 +1100 | [diff] [blame] | 7121 | call_rcu(&inode->i_rcu, btrfs_i_callback); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7122 | } |
| 7123 | |
Al Viro | 45321ac | 2010-06-07 13:43:19 -0400 | [diff] [blame] | 7124 | int btrfs_drop_inode(struct inode *inode) |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 7125 | { |
| 7126 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Al Viro | 45321ac | 2010-06-07 13:43:19 -0400 | [diff] [blame] | 7127 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 7128 | if (btrfs_root_refs(&root->root_item) == 0 && |
Liu Bo | 83eea1f | 2012-07-10 05:28:39 -0600 | [diff] [blame] | 7129 | !btrfs_is_free_space_inode(inode)) |
Al Viro | 45321ac | 2010-06-07 13:43:19 -0400 | [diff] [blame] | 7130 | return 1; |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 7131 | else |
Al Viro | 45321ac | 2010-06-07 13:43:19 -0400 | [diff] [blame] | 7132 | return generic_drop_inode(inode); |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 7133 | } |
| 7134 | |
Sven Wegener | 0ee0fda | 2008-07-30 16:54:26 -0400 | [diff] [blame] | 7135 | static void init_once(void *foo) |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7136 | { |
| 7137 | struct btrfs_inode *ei = (struct btrfs_inode *) foo; |
| 7138 | |
| 7139 | inode_init_once(&ei->vfs_inode); |
| 7140 | } |
| 7141 | |
| 7142 | void btrfs_destroy_cachep(void) |
| 7143 | { |
| 7144 | if (btrfs_inode_cachep) |
| 7145 | kmem_cache_destroy(btrfs_inode_cachep); |
| 7146 | if (btrfs_trans_handle_cachep) |
| 7147 | kmem_cache_destroy(btrfs_trans_handle_cachep); |
| 7148 | if (btrfs_transaction_cachep) |
| 7149 | kmem_cache_destroy(btrfs_transaction_cachep); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7150 | if (btrfs_path_cachep) |
| 7151 | kmem_cache_destroy(btrfs_path_cachep); |
Josef Bacik | dc89e98 | 2011-01-28 17:05:48 -0500 | [diff] [blame] | 7152 | if (btrfs_free_space_cachep) |
| 7153 | kmem_cache_destroy(btrfs_free_space_cachep); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7154 | } |
| 7155 | |
| 7156 | int btrfs_init_cachep(void) |
| 7157 | { |
David Sterba | 837e197 | 2012-09-07 03:00:48 -0600 | [diff] [blame^] | 7158 | btrfs_inode_cachep = kmem_cache_create("btrfs_inode", |
Christoph Hellwig | 9601e3f | 2009-04-13 15:33:09 +0200 | [diff] [blame] | 7159 | sizeof(struct btrfs_inode), 0, |
| 7160 | SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, init_once); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7161 | if (!btrfs_inode_cachep) |
| 7162 | goto fail; |
Christoph Hellwig | 9601e3f | 2009-04-13 15:33:09 +0200 | [diff] [blame] | 7163 | |
David Sterba | 837e197 | 2012-09-07 03:00:48 -0600 | [diff] [blame^] | 7164 | btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle", |
Christoph Hellwig | 9601e3f | 2009-04-13 15:33:09 +0200 | [diff] [blame] | 7165 | sizeof(struct btrfs_trans_handle), 0, |
| 7166 | SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7167 | if (!btrfs_trans_handle_cachep) |
| 7168 | goto fail; |
Christoph Hellwig | 9601e3f | 2009-04-13 15:33:09 +0200 | [diff] [blame] | 7169 | |
David Sterba | 837e197 | 2012-09-07 03:00:48 -0600 | [diff] [blame^] | 7170 | btrfs_transaction_cachep = kmem_cache_create("btrfs_transaction", |
Christoph Hellwig | 9601e3f | 2009-04-13 15:33:09 +0200 | [diff] [blame] | 7171 | sizeof(struct btrfs_transaction), 0, |
| 7172 | SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7173 | if (!btrfs_transaction_cachep) |
| 7174 | goto fail; |
Christoph Hellwig | 9601e3f | 2009-04-13 15:33:09 +0200 | [diff] [blame] | 7175 | |
David Sterba | 837e197 | 2012-09-07 03:00:48 -0600 | [diff] [blame^] | 7176 | btrfs_path_cachep = kmem_cache_create("btrfs_path", |
Christoph Hellwig | 9601e3f | 2009-04-13 15:33:09 +0200 | [diff] [blame] | 7177 | sizeof(struct btrfs_path), 0, |
| 7178 | SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7179 | if (!btrfs_path_cachep) |
| 7180 | goto fail; |
Christoph Hellwig | 9601e3f | 2009-04-13 15:33:09 +0200 | [diff] [blame] | 7181 | |
David Sterba | 837e197 | 2012-09-07 03:00:48 -0600 | [diff] [blame^] | 7182 | btrfs_free_space_cachep = kmem_cache_create("btrfs_free_space", |
Josef Bacik | dc89e98 | 2011-01-28 17:05:48 -0500 | [diff] [blame] | 7183 | sizeof(struct btrfs_free_space), 0, |
| 7184 | SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL); |
| 7185 | if (!btrfs_free_space_cachep) |
| 7186 | goto fail; |
| 7187 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7188 | return 0; |
| 7189 | fail: |
| 7190 | btrfs_destroy_cachep(); |
| 7191 | return -ENOMEM; |
| 7192 | } |
| 7193 | |
| 7194 | static int btrfs_getattr(struct vfsmount *mnt, |
| 7195 | struct dentry *dentry, struct kstat *stat) |
| 7196 | { |
| 7197 | struct inode *inode = dentry->d_inode; |
David Sterba | fadc0d8 | 2011-11-20 07:33:38 -0500 | [diff] [blame] | 7198 | u32 blocksize = inode->i_sb->s_blocksize; |
| 7199 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7200 | generic_fillattr(inode, stat); |
Al Viro | 0ee5dc6 | 2011-07-07 15:44:25 -0400 | [diff] [blame] | 7201 | stat->dev = BTRFS_I(inode)->root->anon_dev; |
Chris Mason | d666746 | 2008-01-03 14:51:00 -0500 | [diff] [blame] | 7202 | stat->blksize = PAGE_CACHE_SIZE; |
David Sterba | fadc0d8 | 2011-11-20 07:33:38 -0500 | [diff] [blame] | 7203 | stat->blocks = (ALIGN(inode_get_bytes(inode), blocksize) + |
| 7204 | ALIGN(BTRFS_I(inode)->delalloc_bytes, blocksize)) >> 9; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7205 | return 0; |
| 7206 | } |
| 7207 | |
Liu Bo | 75e7cb7 | 2011-03-22 10:12:20 +0000 | [diff] [blame] | 7208 | /* |
| 7209 | * If a file is moved, it will inherit the cow and compression flags of the new |
| 7210 | * directory. |
| 7211 | */ |
| 7212 | static void fixup_inode_flags(struct inode *dir, struct inode *inode) |
| 7213 | { |
| 7214 | struct btrfs_inode *b_dir = BTRFS_I(dir); |
| 7215 | struct btrfs_inode *b_inode = BTRFS_I(inode); |
| 7216 | |
| 7217 | if (b_dir->flags & BTRFS_INODE_NODATACOW) |
| 7218 | b_inode->flags |= BTRFS_INODE_NODATACOW; |
| 7219 | else |
| 7220 | b_inode->flags &= ~BTRFS_INODE_NODATACOW; |
| 7221 | |
Liu Bo | bc17823 | 2012-06-14 02:23:18 -0600 | [diff] [blame] | 7222 | if (b_dir->flags & BTRFS_INODE_COMPRESS) { |
Liu Bo | 75e7cb7 | 2011-03-22 10:12:20 +0000 | [diff] [blame] | 7223 | b_inode->flags |= BTRFS_INODE_COMPRESS; |
Liu Bo | bc17823 | 2012-06-14 02:23:18 -0600 | [diff] [blame] | 7224 | b_inode->flags &= ~BTRFS_INODE_NOCOMPRESS; |
| 7225 | } else { |
| 7226 | b_inode->flags &= ~(BTRFS_INODE_COMPRESS | |
| 7227 | BTRFS_INODE_NOCOMPRESS); |
| 7228 | } |
Liu Bo | 75e7cb7 | 2011-03-22 10:12:20 +0000 | [diff] [blame] | 7229 | } |
| 7230 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 7231 | static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry, |
| 7232 | struct inode *new_dir, struct dentry *new_dentry) |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7233 | { |
| 7234 | struct btrfs_trans_handle *trans; |
| 7235 | struct btrfs_root *root = BTRFS_I(old_dir)->root; |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 7236 | struct btrfs_root *dest = BTRFS_I(new_dir)->root; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7237 | struct inode *new_inode = new_dentry->d_inode; |
| 7238 | struct inode *old_inode = old_dentry->d_inode; |
| 7239 | struct timespec ctime = CURRENT_TIME; |
Chris Mason | 00e4e6b | 2008-08-05 11:18:09 -0400 | [diff] [blame] | 7240 | u64 index = 0; |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 7241 | u64 root_objectid; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7242 | int ret; |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 7243 | u64 old_ino = btrfs_ino(old_inode); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7244 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 7245 | if (btrfs_ino(new_dir) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID) |
Yan, Zheng | f679a84 | 2009-09-24 09:17:31 -0400 | [diff] [blame] | 7246 | return -EPERM; |
| 7247 | |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 7248 | /* we only allow rename subvolume link between subvolumes */ |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 7249 | if (old_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest) |
Chris Mason | 3394e16 | 2008-11-17 20:42:26 -0500 | [diff] [blame] | 7250 | return -EXDEV; |
| 7251 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 7252 | if (old_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID || |
| 7253 | (new_inode && btrfs_ino(new_inode) == BTRFS_FIRST_FREE_OBJECTID)) |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 7254 | return -ENOTEMPTY; |
| 7255 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7256 | if (S_ISDIR(old_inode->i_mode) && new_inode && |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 7257 | new_inode->i_size > BTRFS_EMPTY_DIR_SIZE) |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7258 | return -ENOTEMPTY; |
Chris Mason | 5a3f23d | 2009-03-31 13:27:11 -0400 | [diff] [blame] | 7259 | /* |
| 7260 | * we're using rename to replace one file with another. |
| 7261 | * and the replacement file is large. Start IO on it now so |
| 7262 | * we don't add too much work to the end of the transaction |
| 7263 | */ |
Bartlomiej Zolnierkiewicz | 4baf8c9 | 2009-08-07 13:47:08 -0400 | [diff] [blame] | 7264 | 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] | 7265 | old_inode->i_size > BTRFS_ORDERED_OPERATIONS_FLUSH_LIMIT) |
| 7266 | filemap_flush(old_inode->i_mapping); |
| 7267 | |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 7268 | /* close the racy window with snapshot create/destroy ioctl */ |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 7269 | if (old_ino == BTRFS_FIRST_FREE_OBJECTID) |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 7270 | down_read(&root->fs_info->subvol_sem); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 7271 | /* |
| 7272 | * We want to reserve the absolute worst case amount of items. So if |
| 7273 | * both inodes are subvols and we need to unlink them then that would |
| 7274 | * require 4 item modifications, but if they are both normal inodes it |
| 7275 | * would require 5 item modifications, so we'll assume their normal |
| 7276 | * inodes. So 5 * 2 is 10, plus 1 for the new link, so 11 total items |
| 7277 | * should cover the worst case number of items we'll modify. |
| 7278 | */ |
| 7279 | trans = btrfs_start_transaction(root, 20); |
Johann Lombardi | b44c59a | 2011-03-31 13:23:47 +0000 | [diff] [blame] | 7280 | if (IS_ERR(trans)) { |
| 7281 | ret = PTR_ERR(trans); |
| 7282 | goto out_notrans; |
| 7283 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 7284 | |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 7285 | if (dest != root) |
| 7286 | btrfs_record_root_in_trans(trans, dest); |
| 7287 | |
Yan, Zheng | a571952 | 2009-09-24 09:17:31 -0400 | [diff] [blame] | 7288 | ret = btrfs_set_inode_index(new_dir, &index); |
| 7289 | if (ret) |
| 7290 | goto out_fail; |
Chris Mason | 5a3f23d | 2009-03-31 13:27:11 -0400 | [diff] [blame] | 7291 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 7292 | if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) { |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 7293 | /* force full log commit if subvolume involved. */ |
| 7294 | root->fs_info->last_trans_log_full_commit = trans->transid; |
| 7295 | } else { |
Yan, Zheng | a571952 | 2009-09-24 09:17:31 -0400 | [diff] [blame] | 7296 | ret = btrfs_insert_inode_ref(trans, dest, |
| 7297 | new_dentry->d_name.name, |
| 7298 | new_dentry->d_name.len, |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 7299 | old_ino, |
| 7300 | btrfs_ino(new_dir), index); |
Yan, Zheng | a571952 | 2009-09-24 09:17:31 -0400 | [diff] [blame] | 7301 | if (ret) |
| 7302 | goto out_fail; |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 7303 | /* |
| 7304 | * this is an ugly little race, but the rename is required |
| 7305 | * to make sure that if we crash, the inode is either at the |
| 7306 | * old name or the new one. pinning the log transaction lets |
| 7307 | * us make sure we don't allow a log commit to come in after |
| 7308 | * we unlink the name but before we add the new name back in. |
| 7309 | */ |
| 7310 | btrfs_pin_log_trans(root); |
| 7311 | } |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 7312 | /* |
Chris Mason | 5a3f23d | 2009-03-31 13:27:11 -0400 | [diff] [blame] | 7313 | * make sure the inode gets flushed if it is replacing |
| 7314 | * something. |
| 7315 | */ |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 7316 | 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] | 7317 | btrfs_add_ordered_operation(trans, root, old_inode); |
Chris Mason | 5a3f23d | 2009-03-31 13:27:11 -0400 | [diff] [blame] | 7318 | |
Josef Bacik | 0c4d2d9 | 2012-04-05 15:03:02 -0400 | [diff] [blame] | 7319 | inode_inc_iversion(old_dir); |
| 7320 | inode_inc_iversion(new_dir); |
| 7321 | inode_inc_iversion(old_inode); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7322 | old_dir->i_ctime = old_dir->i_mtime = ctime; |
| 7323 | new_dir->i_ctime = new_dir->i_mtime = ctime; |
| 7324 | old_inode->i_ctime = ctime; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 7325 | |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 7326 | if (old_dentry->d_parent != new_dentry->d_parent) |
| 7327 | btrfs_record_unlink_dir(trans, old_dir, old_inode, 1); |
| 7328 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 7329 | if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) { |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 7330 | root_objectid = BTRFS_I(old_inode)->root->root_key.objectid; |
| 7331 | ret = btrfs_unlink_subvol(trans, root, old_dir, root_objectid, |
| 7332 | old_dentry->d_name.name, |
| 7333 | old_dentry->d_name.len); |
| 7334 | } else { |
Al Viro | 9298679 | 2011-03-04 17:14:37 +0000 | [diff] [blame] | 7335 | ret = __btrfs_unlink_inode(trans, root, old_dir, |
| 7336 | old_dentry->d_inode, |
| 7337 | old_dentry->d_name.name, |
| 7338 | old_dentry->d_name.len); |
| 7339 | if (!ret) |
| 7340 | ret = btrfs_update_inode(trans, root, old_inode); |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 7341 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7342 | if (ret) { |
| 7343 | btrfs_abort_transaction(trans, root, ret); |
| 7344 | goto out_fail; |
| 7345 | } |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7346 | |
| 7347 | if (new_inode) { |
Josef Bacik | 0c4d2d9 | 2012-04-05 15:03:02 -0400 | [diff] [blame] | 7348 | inode_inc_iversion(new_inode); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7349 | new_inode->i_ctime = CURRENT_TIME; |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 7350 | if (unlikely(btrfs_ino(new_inode) == |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 7351 | BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) { |
| 7352 | root_objectid = BTRFS_I(new_inode)->location.objectid; |
| 7353 | ret = btrfs_unlink_subvol(trans, dest, new_dir, |
| 7354 | root_objectid, |
| 7355 | new_dentry->d_name.name, |
| 7356 | new_dentry->d_name.len); |
| 7357 | BUG_ON(new_inode->i_nlink == 0); |
| 7358 | } else { |
| 7359 | ret = btrfs_unlink_inode(trans, dest, new_dir, |
| 7360 | new_dentry->d_inode, |
| 7361 | new_dentry->d_name.name, |
| 7362 | new_dentry->d_name.len); |
| 7363 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7364 | if (!ret && new_inode->i_nlink == 0) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 7365 | ret = btrfs_orphan_add(trans, new_dentry->d_inode); |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 7366 | BUG_ON(ret); |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 7367 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7368 | if (ret) { |
| 7369 | btrfs_abort_transaction(trans, root, ret); |
| 7370 | goto out_fail; |
| 7371 | } |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7372 | } |
Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 7373 | |
Liu Bo | 75e7cb7 | 2011-03-22 10:12:20 +0000 | [diff] [blame] | 7374 | fixup_inode_flags(new_dir, old_inode); |
| 7375 | |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 7376 | ret = btrfs_add_link(trans, new_dir, old_inode, |
| 7377 | new_dentry->d_name.name, |
Yan, Zheng | a571952 | 2009-09-24 09:17:31 -0400 | [diff] [blame] | 7378 | new_dentry->d_name.len, 0, index); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7379 | if (ret) { |
| 7380 | btrfs_abort_transaction(trans, root, ret); |
| 7381 | goto out_fail; |
| 7382 | } |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7383 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 7384 | if (old_ino != BTRFS_FIRST_FREE_OBJECTID) { |
Al Viro | 10d9f30 | 2011-07-16 23:09:10 -0400 | [diff] [blame] | 7385 | struct dentry *parent = new_dentry->d_parent; |
Josef Bacik | 6a91221 | 2010-11-20 09:48:00 +0000 | [diff] [blame] | 7386 | btrfs_log_new_name(trans, old_inode, old_dir, parent); |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 7387 | btrfs_end_log_trans(root); |
| 7388 | } |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7389 | out_fail: |
Josef Bacik | 7ad85bb | 2012-01-12 19:10:12 -0500 | [diff] [blame] | 7390 | btrfs_end_transaction(trans, root); |
Johann Lombardi | b44c59a | 2011-03-31 13:23:47 +0000 | [diff] [blame] | 7391 | out_notrans: |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 7392 | if (old_ino == BTRFS_FIRST_FREE_OBJECTID) |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 7393 | up_read(&root->fs_info->subvol_sem); |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 7394 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7395 | return ret; |
| 7396 | } |
| 7397 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 7398 | /* |
| 7399 | * some fairly slow code that needs optimization. This walks the list |
| 7400 | * of all the inodes with pending delalloc and forces them to disk. |
| 7401 | */ |
Yan, Zheng | 24bbcf0 | 2009-11-12 09:36:34 +0000 | [diff] [blame] | 7402 | int btrfs_start_delalloc_inodes(struct btrfs_root *root, int delay_iput) |
Chris Mason | ea8c281 | 2008-08-04 23:17:27 -0400 | [diff] [blame] | 7403 | { |
| 7404 | struct list_head *head = &root->fs_info->delalloc_inodes; |
| 7405 | struct btrfs_inode *binode; |
Zheng Yan | 5b21f2e | 2008-09-26 10:05:38 -0400 | [diff] [blame] | 7406 | struct inode *inode; |
Chris Mason | ea8c281 | 2008-08-04 23:17:27 -0400 | [diff] [blame] | 7407 | |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 7408 | if (root->fs_info->sb->s_flags & MS_RDONLY) |
| 7409 | return -EROFS; |
| 7410 | |
Chris Mason | 75eff68 | 2008-12-15 15:54:40 -0500 | [diff] [blame] | 7411 | spin_lock(&root->fs_info->delalloc_lock); |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 7412 | while (!list_empty(head)) { |
Chris Mason | ea8c281 | 2008-08-04 23:17:27 -0400 | [diff] [blame] | 7413 | binode = list_entry(head->next, struct btrfs_inode, |
| 7414 | delalloc_inodes); |
Zheng Yan | 5b21f2e | 2008-09-26 10:05:38 -0400 | [diff] [blame] | 7415 | inode = igrab(&binode->vfs_inode); |
| 7416 | if (!inode) |
| 7417 | list_del_init(&binode->delalloc_inodes); |
Chris Mason | 75eff68 | 2008-12-15 15:54:40 -0500 | [diff] [blame] | 7418 | spin_unlock(&root->fs_info->delalloc_lock); |
Zheng Yan | 5b21f2e | 2008-09-26 10:05:38 -0400 | [diff] [blame] | 7419 | if (inode) { |
Chris Mason | 8c8bee1 | 2008-09-29 11:19:10 -0400 | [diff] [blame] | 7420 | filemap_flush(inode->i_mapping); |
Yan, Zheng | 24bbcf0 | 2009-11-12 09:36:34 +0000 | [diff] [blame] | 7421 | if (delay_iput) |
| 7422 | btrfs_add_delayed_iput(inode); |
| 7423 | else |
| 7424 | iput(inode); |
Zheng Yan | 5b21f2e | 2008-09-26 10:05:38 -0400 | [diff] [blame] | 7425 | } |
| 7426 | cond_resched(); |
Chris Mason | 75eff68 | 2008-12-15 15:54:40 -0500 | [diff] [blame] | 7427 | spin_lock(&root->fs_info->delalloc_lock); |
Chris Mason | ea8c281 | 2008-08-04 23:17:27 -0400 | [diff] [blame] | 7428 | } |
Chris Mason | 75eff68 | 2008-12-15 15:54:40 -0500 | [diff] [blame] | 7429 | spin_unlock(&root->fs_info->delalloc_lock); |
Chris Mason | 8c8bee1 | 2008-09-29 11:19:10 -0400 | [diff] [blame] | 7430 | |
| 7431 | /* the filemap_flush will queue IO into the worker threads, but |
| 7432 | * we have to make sure the IO is actually started and that |
| 7433 | * ordered extents get created before we return |
| 7434 | */ |
| 7435 | atomic_inc(&root->fs_info->async_submit_draining); |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 7436 | while (atomic_read(&root->fs_info->nr_async_submits) || |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 7437 | atomic_read(&root->fs_info->async_delalloc_pages)) { |
Chris Mason | 8c8bee1 | 2008-09-29 11:19:10 -0400 | [diff] [blame] | 7438 | wait_event(root->fs_info->async_submit_wait, |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 7439 | (atomic_read(&root->fs_info->nr_async_submits) == 0 && |
| 7440 | atomic_read(&root->fs_info->async_delalloc_pages) == 0)); |
Chris Mason | 8c8bee1 | 2008-09-29 11:19:10 -0400 | [diff] [blame] | 7441 | } |
| 7442 | atomic_dec(&root->fs_info->async_submit_draining); |
Chris Mason | ea8c281 | 2008-08-04 23:17:27 -0400 | [diff] [blame] | 7443 | return 0; |
| 7444 | } |
| 7445 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7446 | static int btrfs_symlink(struct inode *dir, struct dentry *dentry, |
| 7447 | const char *symname) |
| 7448 | { |
| 7449 | struct btrfs_trans_handle *trans; |
| 7450 | struct btrfs_root *root = BTRFS_I(dir)->root; |
| 7451 | struct btrfs_path *path; |
| 7452 | struct btrfs_key key; |
Chris Mason | 1832a6d | 2007-12-21 16:27:21 -0500 | [diff] [blame] | 7453 | struct inode *inode = NULL; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7454 | int err; |
| 7455 | int drop_inode = 0; |
| 7456 | u64 objectid; |
Chris Mason | 00e4e6b | 2008-08-05 11:18:09 -0400 | [diff] [blame] | 7457 | u64 index = 0 ; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7458 | int name_len; |
| 7459 | int datasize; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 7460 | unsigned long ptr; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7461 | struct btrfs_file_extent_item *ei; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 7462 | struct extent_buffer *leaf; |
Chris Mason | 1832a6d | 2007-12-21 16:27:21 -0500 | [diff] [blame] | 7463 | unsigned long nr = 0; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7464 | |
| 7465 | name_len = strlen(symname) + 1; |
| 7466 | if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root)) |
| 7467 | return -ENAMETOOLONG; |
Chris Mason | 1832a6d | 2007-12-21 16:27:21 -0500 | [diff] [blame] | 7468 | |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 7469 | /* |
| 7470 | * 2 items for inode item and ref |
| 7471 | * 2 items for dir items |
| 7472 | * 1 item for xattr if selinux is on |
| 7473 | */ |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 7474 | trans = btrfs_start_transaction(root, 5); |
| 7475 | if (IS_ERR(trans)) |
| 7476 | return PTR_ERR(trans); |
Chris Mason | 1832a6d | 2007-12-21 16:27:21 -0500 | [diff] [blame] | 7477 | |
Li Zefan | 581bb05 | 2011-04-20 10:06:11 +0800 | [diff] [blame] | 7478 | err = btrfs_find_free_ino(root, &objectid); |
| 7479 | if (err) |
| 7480 | goto out_unlock; |
| 7481 | |
Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 7482 | inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name, |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 7483 | dentry->d_name.len, btrfs_ino(dir), objectid, |
Josef Bacik | d82a6f1d | 2011-05-11 15:26:06 -0400 | [diff] [blame] | 7484 | S_IFLNK|S_IRWXUGO, &index); |
Tsutomu Itoh | 7cf96da | 2011-04-25 19:43:53 -0400 | [diff] [blame] | 7485 | if (IS_ERR(inode)) { |
| 7486 | err = PTR_ERR(inode); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7487 | goto out_unlock; |
Tsutomu Itoh | 7cf96da | 2011-04-25 19:43:53 -0400 | [diff] [blame] | 7488 | } |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7489 | |
Eric Paris | 2a7dba3 | 2011-02-01 11:05:39 -0500 | [diff] [blame] | 7490 | err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name); |
Josef Bacik | 33268ea | 2008-07-24 12:16:36 -0400 | [diff] [blame] | 7491 | if (err) { |
| 7492 | drop_inode = 1; |
| 7493 | goto out_unlock; |
| 7494 | } |
| 7495 | |
Casey Schaufler | ad19db7 | 2011-12-15 10:09:07 -0500 | [diff] [blame] | 7496 | /* |
| 7497 | * If the active LSM wants to access the inode during |
| 7498 | * d_instantiate it needs these. Smack checks to see |
| 7499 | * if the filesystem supports xattrs by looking at the |
| 7500 | * ops vector. |
| 7501 | */ |
| 7502 | inode->i_fop = &btrfs_file_operations; |
| 7503 | inode->i_op = &btrfs_file_inode_operations; |
| 7504 | |
Josef Bacik | a1b075d | 2010-11-19 20:36:11 +0000 | [diff] [blame] | 7505 | err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7506 | if (err) |
| 7507 | drop_inode = 1; |
| 7508 | else { |
| 7509 | inode->i_mapping->a_ops = &btrfs_aops; |
Chris Mason | 0416008 | 2008-03-26 10:28:07 -0400 | [diff] [blame] | 7510 | inode->i_mapping->backing_dev_info = &root->fs_info->bdi; |
Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 7511 | BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7512 | } |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7513 | if (drop_inode) |
| 7514 | goto out_unlock; |
| 7515 | |
| 7516 | path = btrfs_alloc_path(); |
Mark Fasheh | d8926bb | 2011-07-13 10:38:47 -0700 | [diff] [blame] | 7517 | if (!path) { |
| 7518 | err = -ENOMEM; |
| 7519 | drop_inode = 1; |
| 7520 | goto out_unlock; |
| 7521 | } |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 7522 | key.objectid = btrfs_ino(inode); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7523 | key.offset = 0; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7524 | btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY); |
| 7525 | datasize = btrfs_file_extent_calc_inline_size(name_len); |
| 7526 | err = btrfs_insert_empty_item(trans, root, path, &key, |
| 7527 | datasize); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 7528 | if (err) { |
| 7529 | drop_inode = 1; |
Julia Lawall | b083916 | 2011-05-14 07:10:51 +0000 | [diff] [blame] | 7530 | btrfs_free_path(path); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 7531 | goto out_unlock; |
| 7532 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 7533 | leaf = path->nodes[0]; |
| 7534 | ei = btrfs_item_ptr(leaf, path->slots[0], |
| 7535 | struct btrfs_file_extent_item); |
| 7536 | btrfs_set_file_extent_generation(leaf, ei, trans->transid); |
| 7537 | btrfs_set_file_extent_type(leaf, ei, |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7538 | BTRFS_FILE_EXTENT_INLINE); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 7539 | btrfs_set_file_extent_encryption(leaf, ei, 0); |
| 7540 | btrfs_set_file_extent_compression(leaf, ei, 0); |
| 7541 | btrfs_set_file_extent_other_encoding(leaf, ei, 0); |
| 7542 | btrfs_set_file_extent_ram_bytes(leaf, ei, name_len); |
| 7543 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7544 | ptr = btrfs_file_extent_inline_start(ei); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 7545 | write_extent_buffer(leaf, symname, ptr, name_len); |
| 7546 | btrfs_mark_buffer_dirty(leaf); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7547 | btrfs_free_path(path); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 7548 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7549 | inode->i_op = &btrfs_symlink_inode_operations; |
| 7550 | inode->i_mapping->a_ops = &btrfs_symlink_aops; |
Chris Mason | 0416008 | 2008-03-26 10:28:07 -0400 | [diff] [blame] | 7551 | inode->i_mapping->backing_dev_info = &root->fs_info->bdi; |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 7552 | inode_set_bytes(inode, name_len); |
Chris Mason | dbe674a | 2008-07-17 12:54:05 -0400 | [diff] [blame] | 7553 | btrfs_i_size_write(inode, name_len - 1); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 7554 | err = btrfs_update_inode(trans, root, inode); |
| 7555 | if (err) |
| 7556 | drop_inode = 1; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7557 | |
| 7558 | out_unlock: |
Al Viro | 08c422c | 2011-12-23 07:58:13 -0500 | [diff] [blame] | 7559 | if (!err) |
| 7560 | d_instantiate(dentry, inode); |
Chris Mason | d3c2fdcf | 2007-09-17 10:58:06 -0400 | [diff] [blame] | 7561 | nr = trans->blocks_used; |
Josef Bacik | 7ad85bb | 2012-01-12 19:10:12 -0500 | [diff] [blame] | 7562 | btrfs_end_transaction(trans, root); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7563 | if (drop_inode) { |
| 7564 | inode_dec_link_count(inode); |
| 7565 | iput(inode); |
| 7566 | } |
Chris Mason | d3c2fdcf | 2007-09-17 10:58:06 -0400 | [diff] [blame] | 7567 | btrfs_btree_balance_dirty(root, nr); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7568 | return err; |
| 7569 | } |
Chris Mason | 1643298 | 2008-04-10 10:23:21 -0400 | [diff] [blame] | 7570 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 7571 | static int __btrfs_prealloc_file_range(struct inode *inode, int mode, |
| 7572 | u64 start, u64 num_bytes, u64 min_size, |
| 7573 | loff_t actual_len, u64 *alloc_hint, |
| 7574 | struct btrfs_trans_handle *trans) |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 7575 | { |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 7576 | struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree; |
| 7577 | struct extent_map *em; |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 7578 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 7579 | struct btrfs_key ins; |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 7580 | u64 cur_offset = start; |
Josef Bacik | 55a61d1 | 2010-11-22 18:50:32 +0000 | [diff] [blame] | 7581 | u64 i_size; |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 7582 | int ret = 0; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 7583 | bool own_trans = true; |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 7584 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 7585 | if (trans) |
| 7586 | own_trans = false; |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 7587 | while (num_bytes > 0) { |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 7588 | if (own_trans) { |
| 7589 | trans = btrfs_start_transaction(root, 3); |
| 7590 | if (IS_ERR(trans)) { |
| 7591 | ret = PTR_ERR(trans); |
| 7592 | break; |
| 7593 | } |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 7594 | } |
Yan, Zheng | 5a303d5 | 2009-11-12 09:34:52 +0000 | [diff] [blame] | 7595 | |
Yan, Zheng | efa5646 | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 7596 | ret = btrfs_reserve_extent(trans, root, num_bytes, min_size, |
Josef Bacik | 81c9ad2 | 2012-01-18 10:56:06 -0500 | [diff] [blame] | 7597 | 0, *alloc_hint, &ins, 1); |
Yan, Zheng | 5a303d5 | 2009-11-12 09:34:52 +0000 | [diff] [blame] | 7598 | if (ret) { |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 7599 | if (own_trans) |
| 7600 | btrfs_end_transaction(trans, root); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 7601 | break; |
Yan, Zheng | 5a303d5 | 2009-11-12 09:34:52 +0000 | [diff] [blame] | 7602 | } |
| 7603 | |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 7604 | ret = insert_reserved_file_extent(trans, inode, |
| 7605 | cur_offset, ins.objectid, |
| 7606 | ins.offset, ins.offset, |
Yan, Zheng | 920bbbf | 2009-11-12 09:34:08 +0000 | [diff] [blame] | 7607 | ins.offset, 0, 0, 0, |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 7608 | BTRFS_FILE_EXTENT_PREALLOC); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7609 | if (ret) { |
| 7610 | btrfs_abort_transaction(trans, root, ret); |
| 7611 | if (own_trans) |
| 7612 | btrfs_end_transaction(trans, root); |
| 7613 | break; |
| 7614 | } |
Chris Mason | a1ed835 | 2009-09-11 12:27:37 -0400 | [diff] [blame] | 7615 | btrfs_drop_extent_cache(inode, cur_offset, |
| 7616 | cur_offset + ins.offset -1, 0); |
Yan, Zheng | 5a303d5 | 2009-11-12 09:34:52 +0000 | [diff] [blame] | 7617 | |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 7618 | em = alloc_extent_map(); |
| 7619 | if (!em) { |
| 7620 | set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, |
| 7621 | &BTRFS_I(inode)->runtime_flags); |
| 7622 | goto next; |
| 7623 | } |
| 7624 | |
| 7625 | em->start = cur_offset; |
| 7626 | em->orig_start = cur_offset; |
| 7627 | em->len = ins.offset; |
| 7628 | em->block_start = ins.objectid; |
| 7629 | em->block_len = ins.offset; |
| 7630 | em->bdev = root->fs_info->fs_devices->latest_bdev; |
| 7631 | set_bit(EXTENT_FLAG_PREALLOC, &em->flags); |
| 7632 | em->generation = trans->transid; |
| 7633 | |
| 7634 | while (1) { |
| 7635 | write_lock(&em_tree->lock); |
| 7636 | ret = add_extent_mapping(em_tree, em); |
| 7637 | if (!ret) |
| 7638 | list_move(&em->list, |
| 7639 | &em_tree->modified_extents); |
| 7640 | write_unlock(&em_tree->lock); |
| 7641 | if (ret != -EEXIST) |
| 7642 | break; |
| 7643 | btrfs_drop_extent_cache(inode, cur_offset, |
| 7644 | cur_offset + ins.offset - 1, |
| 7645 | 0); |
| 7646 | } |
| 7647 | free_extent_map(em); |
| 7648 | next: |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 7649 | num_bytes -= ins.offset; |
| 7650 | cur_offset += ins.offset; |
Yan, Zheng | efa5646 | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 7651 | *alloc_hint = ins.objectid + ins.offset; |
Yan, Zheng | 5a303d5 | 2009-11-12 09:34:52 +0000 | [diff] [blame] | 7652 | |
Josef Bacik | 0c4d2d9 | 2012-04-05 15:03:02 -0400 | [diff] [blame] | 7653 | inode_inc_iversion(inode); |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 7654 | inode->i_ctime = CURRENT_TIME; |
Christoph Hellwig | 6cbff00 | 2009-04-17 10:37:41 +0200 | [diff] [blame] | 7655 | BTRFS_I(inode)->flags |= BTRFS_INODE_PREALLOC; |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 7656 | if (!(mode & FALLOC_FL_KEEP_SIZE) && |
Yan, Zheng | efa5646 | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 7657 | (actual_len > inode->i_size) && |
| 7658 | (cur_offset > inode->i_size)) { |
Aneesh Kumar K.V | d1ea6a6 | 2010-01-20 07:28:54 +0000 | [diff] [blame] | 7659 | if (cur_offset > actual_len) |
Josef Bacik | 55a61d1 | 2010-11-22 18:50:32 +0000 | [diff] [blame] | 7660 | i_size = actual_len; |
Aneesh Kumar K.V | d1ea6a6 | 2010-01-20 07:28:54 +0000 | [diff] [blame] | 7661 | else |
Josef Bacik | 55a61d1 | 2010-11-22 18:50:32 +0000 | [diff] [blame] | 7662 | i_size = cur_offset; |
| 7663 | i_size_write(inode, i_size); |
| 7664 | btrfs_ordered_update_i_size(inode, i_size, NULL); |
Yan, Zheng | 5a303d5 | 2009-11-12 09:34:52 +0000 | [diff] [blame] | 7665 | } |
| 7666 | |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 7667 | ret = btrfs_update_inode(trans, root, inode); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7668 | |
| 7669 | if (ret) { |
| 7670 | btrfs_abort_transaction(trans, root, ret); |
| 7671 | if (own_trans) |
| 7672 | btrfs_end_transaction(trans, root); |
| 7673 | break; |
| 7674 | } |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 7675 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 7676 | if (own_trans) |
| 7677 | btrfs_end_transaction(trans, root); |
Yan, Zheng | 5a303d5 | 2009-11-12 09:34:52 +0000 | [diff] [blame] | 7678 | } |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 7679 | return ret; |
| 7680 | } |
| 7681 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 7682 | int btrfs_prealloc_file_range(struct inode *inode, int mode, |
| 7683 | u64 start, u64 num_bytes, u64 min_size, |
| 7684 | loff_t actual_len, u64 *alloc_hint) |
| 7685 | { |
| 7686 | return __btrfs_prealloc_file_range(inode, mode, start, num_bytes, |
| 7687 | min_size, actual_len, alloc_hint, |
| 7688 | NULL); |
| 7689 | } |
| 7690 | |
| 7691 | int btrfs_prealloc_file_range_trans(struct inode *inode, |
| 7692 | struct btrfs_trans_handle *trans, int mode, |
| 7693 | u64 start, u64 num_bytes, u64 min_size, |
| 7694 | loff_t actual_len, u64 *alloc_hint) |
| 7695 | { |
| 7696 | return __btrfs_prealloc_file_range(inode, mode, start, num_bytes, |
| 7697 | min_size, actual_len, alloc_hint, trans); |
| 7698 | } |
| 7699 | |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7700 | static int btrfs_set_page_dirty(struct page *page) |
| 7701 | { |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7702 | return __set_page_dirty_nobuffers(page); |
| 7703 | } |
| 7704 | |
Al Viro | 10556cb | 2011-06-20 19:28:19 -0400 | [diff] [blame] | 7705 | static int btrfs_permission(struct inode *inode, int mask) |
Yan | fdebe2b | 2008-01-14 13:26:08 -0500 | [diff] [blame] | 7706 | { |
Li Zefan | b83cc96 | 2010-12-20 16:04:08 +0800 | [diff] [blame] | 7707 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Jeff Mahoney | cb6db4e | 2011-08-15 17:27:21 +0000 | [diff] [blame] | 7708 | umode_t mode = inode->i_mode; |
Li Zefan | b83cc96 | 2010-12-20 16:04:08 +0800 | [diff] [blame] | 7709 | |
Jeff Mahoney | cb6db4e | 2011-08-15 17:27:21 +0000 | [diff] [blame] | 7710 | if (mask & MAY_WRITE && |
| 7711 | (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode))) { |
| 7712 | if (btrfs_root_readonly(root)) |
| 7713 | return -EROFS; |
| 7714 | if (BTRFS_I(inode)->flags & BTRFS_INODE_READONLY) |
| 7715 | return -EACCES; |
| 7716 | } |
Al Viro | 2830ba7 | 2011-06-20 19:16:29 -0400 | [diff] [blame] | 7717 | return generic_permission(inode, mask); |
Yan | fdebe2b | 2008-01-14 13:26:08 -0500 | [diff] [blame] | 7718 | } |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7719 | |
Alexey Dobriyan | 6e1d5dc | 2009-09-21 17:01:11 -0700 | [diff] [blame] | 7720 | static const struct inode_operations btrfs_dir_inode_operations = { |
Chris Mason | 3394e16 | 2008-11-17 20:42:26 -0500 | [diff] [blame] | 7721 | .getattr = btrfs_getattr, |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7722 | .lookup = btrfs_lookup, |
| 7723 | .create = btrfs_create, |
| 7724 | .unlink = btrfs_unlink, |
| 7725 | .link = btrfs_link, |
| 7726 | .mkdir = btrfs_mkdir, |
| 7727 | .rmdir = btrfs_rmdir, |
| 7728 | .rename = btrfs_rename, |
| 7729 | .symlink = btrfs_symlink, |
| 7730 | .setattr = btrfs_setattr, |
Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 7731 | .mknod = btrfs_mknod, |
Christoph Hellwig | 95819c0 | 2008-08-28 06:21:17 -0400 | [diff] [blame] | 7732 | .setxattr = btrfs_setxattr, |
| 7733 | .getxattr = btrfs_getxattr, |
Josef Bacik | 5103e94 | 2007-11-16 11:45:54 -0500 | [diff] [blame] | 7734 | .listxattr = btrfs_listxattr, |
Christoph Hellwig | 95819c0 | 2008-08-28 06:21:17 -0400 | [diff] [blame] | 7735 | .removexattr = btrfs_removexattr, |
Yan | fdebe2b | 2008-01-14 13:26:08 -0500 | [diff] [blame] | 7736 | .permission = btrfs_permission, |
Christoph Hellwig | 4e34e71 | 2011-07-23 17:37:31 +0200 | [diff] [blame] | 7737 | .get_acl = btrfs_get_acl, |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7738 | }; |
Alexey Dobriyan | 6e1d5dc | 2009-09-21 17:01:11 -0700 | [diff] [blame] | 7739 | static const struct inode_operations btrfs_dir_ro_inode_operations = { |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7740 | .lookup = btrfs_lookup, |
Yan | fdebe2b | 2008-01-14 13:26:08 -0500 | [diff] [blame] | 7741 | .permission = btrfs_permission, |
Christoph Hellwig | 4e34e71 | 2011-07-23 17:37:31 +0200 | [diff] [blame] | 7742 | .get_acl = btrfs_get_acl, |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7743 | }; |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 7744 | |
Alexey Dobriyan | 828c095 | 2009-10-01 15:43:56 -0700 | [diff] [blame] | 7745 | static const struct file_operations btrfs_dir_file_operations = { |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7746 | .llseek = generic_file_llseek, |
| 7747 | .read = generic_read_dir, |
David Woodhouse | cbdf5a2 | 2008-08-06 19:42:33 +0100 | [diff] [blame] | 7748 | .readdir = btrfs_real_readdir, |
Christoph Hellwig | 34287aa | 2007-09-14 10:22:47 -0400 | [diff] [blame] | 7749 | .unlocked_ioctl = btrfs_ioctl, |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7750 | #ifdef CONFIG_COMPAT |
Christoph Hellwig | 34287aa | 2007-09-14 10:22:47 -0400 | [diff] [blame] | 7751 | .compat_ioctl = btrfs_ioctl, |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7752 | #endif |
Sage Weil | 6bf13c0 | 2008-06-10 10:07:39 -0400 | [diff] [blame] | 7753 | .release = btrfs_release_file, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 7754 | .fsync = btrfs_sync_file, |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7755 | }; |
| 7756 | |
Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 7757 | static struct extent_io_ops btrfs_extent_io_ops = { |
Chris Mason | 07157aa | 2007-08-30 08:50:51 -0400 | [diff] [blame] | 7758 | .fill_delalloc = run_delalloc_range, |
Chris Mason | 065631f | 2008-02-20 12:07:25 -0500 | [diff] [blame] | 7759 | .submit_bio_hook = btrfs_submit_bio_hook, |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 7760 | .merge_bio_hook = btrfs_merge_bio_hook, |
Chris Mason | 07157aa | 2007-08-30 08:50:51 -0400 | [diff] [blame] | 7761 | .readpage_end_io_hook = btrfs_readpage_end_io_hook, |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7762 | .writepage_end_io_hook = btrfs_writepage_end_io_hook, |
Chris Mason | 247e743 | 2008-07-17 12:53:51 -0400 | [diff] [blame] | 7763 | .writepage_start_hook = btrfs_writepage_start_hook, |
Chris Mason | b0c68f8 | 2008-01-31 11:05:37 -0500 | [diff] [blame] | 7764 | .set_bit_hook = btrfs_set_bit_hook, |
| 7765 | .clear_bit_hook = btrfs_clear_bit_hook, |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 7766 | .merge_extent_hook = btrfs_merge_extent_hook, |
| 7767 | .split_extent_hook = btrfs_split_extent_hook, |
Chris Mason | 07157aa | 2007-08-30 08:50:51 -0400 | [diff] [blame] | 7768 | }; |
| 7769 | |
Chris Mason | 3505439 | 2009-01-21 13:11:13 -0500 | [diff] [blame] | 7770 | /* |
| 7771 | * btrfs doesn't support the bmap operation because swapfiles |
| 7772 | * use bmap to make a mapping of extents in the file. They assume |
| 7773 | * these extents won't change over the life of the file and they |
| 7774 | * use the bmap result to do IO directly to the drive. |
| 7775 | * |
| 7776 | * the btrfs bmap call would return logical addresses that aren't |
| 7777 | * suitable for IO and they also will change frequently as COW |
| 7778 | * operations happen. So, swapfile + btrfs == corruption. |
| 7779 | * |
| 7780 | * For now we're avoiding this by dropping bmap. |
| 7781 | */ |
Alexey Dobriyan | 7f09410 | 2009-09-21 17:01:10 -0700 | [diff] [blame] | 7782 | static const struct address_space_operations btrfs_aops = { |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7783 | .readpage = btrfs_readpage, |
| 7784 | .writepage = btrfs_writepage, |
Chris Mason | b293f02e | 2007-11-01 19:45:34 -0400 | [diff] [blame] | 7785 | .writepages = btrfs_writepages, |
Chris Mason | 3ab2fb5 | 2007-11-08 10:59:22 -0500 | [diff] [blame] | 7786 | .readpages = btrfs_readpages, |
Chris Mason | 1643298 | 2008-04-10 10:23:21 -0400 | [diff] [blame] | 7787 | .direct_IO = btrfs_direct_IO, |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 7788 | .invalidatepage = btrfs_invalidatepage, |
| 7789 | .releasepage = btrfs_releasepage, |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7790 | .set_page_dirty = btrfs_set_page_dirty, |
Andi Kleen | 465fdd9 | 2009-09-16 11:50:18 +0200 | [diff] [blame] | 7791 | .error_remove_page = generic_error_remove_page, |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7792 | }; |
| 7793 | |
Alexey Dobriyan | 7f09410 | 2009-09-21 17:01:10 -0700 | [diff] [blame] | 7794 | static const struct address_space_operations btrfs_symlink_aops = { |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7795 | .readpage = btrfs_readpage, |
| 7796 | .writepage = btrfs_writepage, |
Chris Mason | 2bf5a72 | 2007-08-30 11:54:02 -0400 | [diff] [blame] | 7797 | .invalidatepage = btrfs_invalidatepage, |
| 7798 | .releasepage = btrfs_releasepage, |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7799 | }; |
| 7800 | |
Alexey Dobriyan | 6e1d5dc | 2009-09-21 17:01:11 -0700 | [diff] [blame] | 7801 | static const struct inode_operations btrfs_file_inode_operations = { |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7802 | .getattr = btrfs_getattr, |
| 7803 | .setattr = btrfs_setattr, |
Christoph Hellwig | 95819c0 | 2008-08-28 06:21:17 -0400 | [diff] [blame] | 7804 | .setxattr = btrfs_setxattr, |
| 7805 | .getxattr = btrfs_getxattr, |
Josef Bacik | 5103e94 | 2007-11-16 11:45:54 -0500 | [diff] [blame] | 7806 | .listxattr = btrfs_listxattr, |
Christoph Hellwig | 95819c0 | 2008-08-28 06:21:17 -0400 | [diff] [blame] | 7807 | .removexattr = btrfs_removexattr, |
Yan | fdebe2b | 2008-01-14 13:26:08 -0500 | [diff] [blame] | 7808 | .permission = btrfs_permission, |
Yehuda Sadeh | 1506fcc | 2009-01-21 14:39:14 -0500 | [diff] [blame] | 7809 | .fiemap = btrfs_fiemap, |
Christoph Hellwig | 4e34e71 | 2011-07-23 17:37:31 +0200 | [diff] [blame] | 7810 | .get_acl = btrfs_get_acl, |
Josef Bacik | e41f941 | 2012-03-26 09:46:47 -0400 | [diff] [blame] | 7811 | .update_time = btrfs_update_time, |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7812 | }; |
Alexey Dobriyan | 6e1d5dc | 2009-09-21 17:01:11 -0700 | [diff] [blame] | 7813 | static const struct inode_operations btrfs_special_inode_operations = { |
Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 7814 | .getattr = btrfs_getattr, |
| 7815 | .setattr = btrfs_setattr, |
Yan | fdebe2b | 2008-01-14 13:26:08 -0500 | [diff] [blame] | 7816 | .permission = btrfs_permission, |
Christoph Hellwig | 95819c0 | 2008-08-28 06:21:17 -0400 | [diff] [blame] | 7817 | .setxattr = btrfs_setxattr, |
| 7818 | .getxattr = btrfs_getxattr, |
Josef Bacik | 33268ea | 2008-07-24 12:16:36 -0400 | [diff] [blame] | 7819 | .listxattr = btrfs_listxattr, |
Christoph Hellwig | 95819c0 | 2008-08-28 06:21:17 -0400 | [diff] [blame] | 7820 | .removexattr = btrfs_removexattr, |
Christoph Hellwig | 4e34e71 | 2011-07-23 17:37:31 +0200 | [diff] [blame] | 7821 | .get_acl = btrfs_get_acl, |
Josef Bacik | e41f941 | 2012-03-26 09:46:47 -0400 | [diff] [blame] | 7822 | .update_time = btrfs_update_time, |
Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 7823 | }; |
Alexey Dobriyan | 6e1d5dc | 2009-09-21 17:01:11 -0700 | [diff] [blame] | 7824 | static const struct inode_operations btrfs_symlink_inode_operations = { |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7825 | .readlink = generic_readlink, |
| 7826 | .follow_link = page_follow_link_light, |
| 7827 | .put_link = page_put_link, |
Li Zefan | f209561 | 2010-11-19 02:05:24 +0000 | [diff] [blame] | 7828 | .getattr = btrfs_getattr, |
Josef Bacik | 22c44fe | 2011-11-30 10:45:38 -0500 | [diff] [blame] | 7829 | .setattr = btrfs_setattr, |
Yan | fdebe2b | 2008-01-14 13:26:08 -0500 | [diff] [blame] | 7830 | .permission = btrfs_permission, |
Jim Owens | 0279b4c | 2009-02-04 09:29:13 -0500 | [diff] [blame] | 7831 | .setxattr = btrfs_setxattr, |
| 7832 | .getxattr = btrfs_getxattr, |
| 7833 | .listxattr = btrfs_listxattr, |
| 7834 | .removexattr = btrfs_removexattr, |
Christoph Hellwig | 4e34e71 | 2011-07-23 17:37:31 +0200 | [diff] [blame] | 7835 | .get_acl = btrfs_get_acl, |
Josef Bacik | e41f941 | 2012-03-26 09:46:47 -0400 | [diff] [blame] | 7836 | .update_time = btrfs_update_time, |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7837 | }; |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 7838 | |
Alexey Dobriyan | 82d339d | 2009-10-09 09:54:36 -0400 | [diff] [blame] | 7839 | const struct dentry_operations btrfs_dentry_operations = { |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 7840 | .d_delete = btrfs_dentry_delete, |
Josef Bacik | b4aff1f | 2011-06-28 16:18:59 -0400 | [diff] [blame] | 7841 | .d_release = btrfs_dentry_release, |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 7842 | }; |