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> |
Kent Overstreet | a27bb33 | 2013-05-07 16:19:08 -0700 | [diff] [blame] | 35 | #include <linux/aio.h> |
Chris Mason | 9ebefb18 | 2007-06-15 13:50:00 -0400 | [diff] [blame] | 36 | #include <linux/bit_spinlock.h> |
Josef Bacik | 5103e94 | 2007-11-16 11:45:54 -0500 | [diff] [blame] | 37 | #include <linux/xattr.h> |
Josef Bacik | 33268ea | 2008-07-24 12:16:36 -0400 | [diff] [blame] | 38 | #include <linux/posix_acl.h> |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 39 | #include <linux/falloc.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 40 | #include <linux/slab.h> |
David Sterba | 7a36dde | 2011-05-06 15:33:15 +0200 | [diff] [blame] | 41 | #include <linux/ratelimit.h> |
Josef Bacik | 22c44fe | 2011-11-30 10:45:38 -0500 | [diff] [blame] | 42 | #include <linux/mount.h> |
Filipe Brandenburger | 55e301f | 2013-01-29 06:04:50 +0000 | [diff] [blame] | 43 | #include <linux/btrfs.h> |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 44 | #include <linux/blkdev.h> |
Josef Bacik | f23b5a5 | 2013-06-19 10:16:26 -0400 | [diff] [blame] | 45 | #include <linux/posix_acl_xattr.h> |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 46 | #include "ctree.h" |
| 47 | #include "disk-io.h" |
| 48 | #include "transaction.h" |
| 49 | #include "btrfs_inode.h" |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 50 | #include "print-tree.h" |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 51 | #include "ordered-data.h" |
Christoph Hellwig | 95819c0 | 2008-08-28 06:21:17 -0400 | [diff] [blame] | 52 | #include "xattr.h" |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 53 | #include "tree-log.h" |
Jan Schmidt | 4a54c8c | 2011-07-22 15:41:52 +0200 | [diff] [blame] | 54 | #include "volumes.h" |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 55 | #include "compression.h" |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 56 | #include "locking.h" |
Josef Bacik | dc89e98 | 2011-01-28 17:05:48 -0500 | [diff] [blame] | 57 | #include "free-space-cache.h" |
Li Zefan | 581bb05 | 2011-04-20 10:06:11 +0800 | [diff] [blame] | 58 | #include "inode-map.h" |
Liu Bo | 38c227d | 2013-01-29 03:18:40 +0000 | [diff] [blame] | 59 | #include "backref.h" |
Josef Bacik | f23b5a5 | 2013-06-19 10:16:26 -0400 | [diff] [blame] | 60 | #include "hash.h" |
Filipe David Borba Manana | 6354192 | 2014-01-07 11:47:46 +0000 | [diff] [blame] | 61 | #include "props.h" |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 62 | |
| 63 | struct btrfs_iget_args { |
Chris Mason | 90d3e59 | 2014-01-09 17:28:00 -0800 | [diff] [blame] | 64 | struct btrfs_key *location; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 65 | struct btrfs_root *root; |
| 66 | }; |
| 67 | |
Alexey Dobriyan | 6e1d5dc | 2009-09-21 17:01:11 -0700 | [diff] [blame] | 68 | static const struct inode_operations btrfs_dir_inode_operations; |
| 69 | static const struct inode_operations btrfs_symlink_inode_operations; |
| 70 | static const struct inode_operations btrfs_dir_ro_inode_operations; |
| 71 | static const struct inode_operations btrfs_special_inode_operations; |
| 72 | static const struct inode_operations btrfs_file_inode_operations; |
Alexey Dobriyan | 7f09410 | 2009-09-21 17:01:10 -0700 | [diff] [blame] | 73 | static const struct address_space_operations btrfs_aops; |
| 74 | static const struct address_space_operations btrfs_symlink_aops; |
Alexey Dobriyan | 828c095 | 2009-10-01 15:43:56 -0700 | [diff] [blame] | 75 | static const struct file_operations btrfs_dir_file_operations; |
Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 76 | static struct extent_io_ops btrfs_extent_io_ops; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 77 | |
| 78 | static struct kmem_cache *btrfs_inode_cachep; |
Miao Xie | 8ccf6f19 | 2012-10-25 09:28:04 +0000 | [diff] [blame] | 79 | static struct kmem_cache *btrfs_delalloc_work_cachep; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 80 | struct kmem_cache *btrfs_trans_handle_cachep; |
| 81 | struct kmem_cache *btrfs_transaction_cachep; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 82 | struct kmem_cache *btrfs_path_cachep; |
Josef Bacik | dc89e98 | 2011-01-28 17:05:48 -0500 | [diff] [blame] | 83 | struct kmem_cache *btrfs_free_space_cachep; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 84 | |
| 85 | #define S_SHIFT 12 |
| 86 | static unsigned char btrfs_type_by_mode[S_IFMT >> S_SHIFT] = { |
| 87 | [S_IFREG >> S_SHIFT] = BTRFS_FT_REG_FILE, |
| 88 | [S_IFDIR >> S_SHIFT] = BTRFS_FT_DIR, |
| 89 | [S_IFCHR >> S_SHIFT] = BTRFS_FT_CHRDEV, |
| 90 | [S_IFBLK >> S_SHIFT] = BTRFS_FT_BLKDEV, |
| 91 | [S_IFIFO >> S_SHIFT] = BTRFS_FT_FIFO, |
| 92 | [S_IFSOCK >> S_SHIFT] = BTRFS_FT_SOCK, |
| 93 | [S_IFLNK >> S_SHIFT] = BTRFS_FT_SYMLINK, |
| 94 | }; |
| 95 | |
Eric Sandeen | 3972f26 | 2013-01-12 02:57:22 +0000 | [diff] [blame] | 96 | static int btrfs_setsize(struct inode *inode, struct iattr *attr); |
Josef Bacik | a41ad39 | 2011-01-31 15:30:16 -0500 | [diff] [blame] | 97 | static int btrfs_truncate(struct inode *inode); |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 98 | static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent); |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 99 | static noinline int cow_file_range(struct inode *inode, |
| 100 | struct page *locked_page, |
| 101 | u64 start, u64 end, int *page_started, |
| 102 | unsigned long *nr_written, int unlock); |
Josef Bacik | 70c8a91 | 2012-10-11 16:54:30 -0400 | [diff] [blame] | 103 | static struct extent_map *create_pinned_em(struct inode *inode, u64 start, |
| 104 | u64 len, u64 orig_start, |
| 105 | u64 block_start, u64 block_len, |
Josef Bacik | cc95bef | 2013-04-04 14:31:27 -0400 | [diff] [blame] | 106 | u64 orig_block_len, u64 ram_bytes, |
| 107 | int type); |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 108 | |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 109 | static int btrfs_dirty_inode(struct inode *inode); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 110 | |
Yan, Zheng | f34f57a | 2009-11-12 09:35:27 +0000 | [diff] [blame] | 111 | static int btrfs_init_inode_security(struct btrfs_trans_handle *trans, |
Eric Paris | 2a7dba3 | 2011-02-01 11:05:39 -0500 | [diff] [blame] | 112 | struct inode *inode, struct inode *dir, |
| 113 | const struct qstr *qstr) |
Jim Owens | 0279b4c | 2009-02-04 09:29:13 -0500 | [diff] [blame] | 114 | { |
| 115 | int err; |
| 116 | |
Yan, Zheng | f34f57a | 2009-11-12 09:35:27 +0000 | [diff] [blame] | 117 | err = btrfs_init_acl(trans, inode, dir); |
Jim Owens | 0279b4c | 2009-02-04 09:29:13 -0500 | [diff] [blame] | 118 | if (!err) |
Eric Paris | 2a7dba3 | 2011-02-01 11:05:39 -0500 | [diff] [blame] | 119 | err = btrfs_xattr_security_init(trans, inode, dir, qstr); |
Jim Owens | 0279b4c | 2009-02-04 09:29:13 -0500 | [diff] [blame] | 120 | return err; |
| 121 | } |
| 122 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 123 | /* |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 124 | * this does all the hard work for inserting an inline extent into |
| 125 | * the btree. The caller should have done a btrfs_drop_extents so that |
| 126 | * no overlapping inline items exist in the btree |
| 127 | */ |
Chris Mason | 40f7658 | 2014-05-21 13:35:51 -0700 | [diff] [blame] | 128 | static int insert_inline_extent(struct btrfs_trans_handle *trans, |
Filipe David Borba Manana | 1acae57 | 2014-01-07 11:42:27 +0000 | [diff] [blame] | 129 | struct btrfs_path *path, int extent_inserted, |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 130 | struct btrfs_root *root, struct inode *inode, |
| 131 | u64 start, size_t size, size_t compressed_size, |
Li Zefan | fe3f566 | 2011-03-28 08:30:38 +0000 | [diff] [blame] | 132 | int compress_type, |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 133 | struct page **compressed_pages) |
| 134 | { |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 135 | struct extent_buffer *leaf; |
| 136 | struct page *page = NULL; |
| 137 | char *kaddr; |
| 138 | unsigned long ptr; |
| 139 | struct btrfs_file_extent_item *ei; |
| 140 | int err = 0; |
| 141 | int ret; |
| 142 | size_t cur_size = size; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 143 | unsigned long offset; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 144 | |
Li Zefan | fe3f566 | 2011-03-28 08:30:38 +0000 | [diff] [blame] | 145 | if (compressed_size && compressed_pages) |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 146 | cur_size = compressed_size; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 147 | |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 148 | inode_add_bytes(inode, size); |
Filipe David Borba Manana | 1acae57 | 2014-01-07 11:42:27 +0000 | [diff] [blame] | 149 | |
| 150 | if (!extent_inserted) { |
| 151 | struct btrfs_key key; |
| 152 | size_t datasize; |
| 153 | |
| 154 | key.objectid = btrfs_ino(inode); |
| 155 | key.offset = start; |
| 156 | btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY); |
| 157 | |
| 158 | datasize = btrfs_file_extent_calc_inline_size(cur_size); |
| 159 | path->leave_spinning = 1; |
| 160 | ret = btrfs_insert_empty_item(trans, root, path, &key, |
| 161 | datasize); |
| 162 | if (ret) { |
| 163 | err = ret; |
| 164 | goto fail; |
| 165 | } |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 166 | } |
| 167 | leaf = path->nodes[0]; |
| 168 | ei = btrfs_item_ptr(leaf, path->slots[0], |
| 169 | struct btrfs_file_extent_item); |
| 170 | btrfs_set_file_extent_generation(leaf, ei, trans->transid); |
| 171 | btrfs_set_file_extent_type(leaf, ei, BTRFS_FILE_EXTENT_INLINE); |
| 172 | btrfs_set_file_extent_encryption(leaf, ei, 0); |
| 173 | btrfs_set_file_extent_other_encoding(leaf, ei, 0); |
| 174 | btrfs_set_file_extent_ram_bytes(leaf, ei, size); |
| 175 | ptr = btrfs_file_extent_inline_start(ei); |
| 176 | |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 177 | if (compress_type != BTRFS_COMPRESS_NONE) { |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 178 | struct page *cpage; |
| 179 | int i = 0; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 180 | while (compressed_size > 0) { |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 181 | cpage = compressed_pages[i]; |
Chris Mason | 5b050f0 | 2008-11-11 09:34:41 -0500 | [diff] [blame] | 182 | cur_size = min_t(unsigned long, compressed_size, |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 183 | PAGE_CACHE_SIZE); |
| 184 | |
Cong Wang | 7ac687d | 2011-11-25 23:14:28 +0800 | [diff] [blame] | 185 | kaddr = kmap_atomic(cpage); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 186 | write_extent_buffer(leaf, kaddr, ptr, cur_size); |
Cong Wang | 7ac687d | 2011-11-25 23:14:28 +0800 | [diff] [blame] | 187 | kunmap_atomic(kaddr); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 188 | |
| 189 | i++; |
| 190 | ptr += cur_size; |
| 191 | compressed_size -= cur_size; |
| 192 | } |
| 193 | btrfs_set_file_extent_compression(leaf, ei, |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 194 | compress_type); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 195 | } else { |
| 196 | page = find_get_page(inode->i_mapping, |
| 197 | start >> PAGE_CACHE_SHIFT); |
| 198 | btrfs_set_file_extent_compression(leaf, ei, 0); |
Cong Wang | 7ac687d | 2011-11-25 23:14:28 +0800 | [diff] [blame] | 199 | kaddr = kmap_atomic(page); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 200 | offset = start & (PAGE_CACHE_SIZE - 1); |
| 201 | write_extent_buffer(leaf, kaddr + offset, ptr, size); |
Cong Wang | 7ac687d | 2011-11-25 23:14:28 +0800 | [diff] [blame] | 202 | kunmap_atomic(kaddr); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 203 | page_cache_release(page); |
| 204 | } |
| 205 | btrfs_mark_buffer_dirty(leaf); |
Filipe David Borba Manana | 1acae57 | 2014-01-07 11:42:27 +0000 | [diff] [blame] | 206 | btrfs_release_path(path); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 207 | |
Yan, Zheng | c216775 | 2009-11-12 09:34:21 +0000 | [diff] [blame] | 208 | /* |
| 209 | * we're an inline extent, so nobody can |
| 210 | * extend the file past i_size without locking |
| 211 | * a page we already have locked. |
| 212 | * |
| 213 | * We must do any isize and inode updates |
| 214 | * before we unlock the pages. Otherwise we |
| 215 | * could end up racing with unlink. |
| 216 | */ |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 217 | BTRFS_I(inode)->disk_i_size = inode->i_size; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 218 | ret = btrfs_update_inode(trans, root, inode); |
Yan, Zheng | c216775 | 2009-11-12 09:34:21 +0000 | [diff] [blame] | 219 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 220 | return ret; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 221 | fail: |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 222 | return err; |
| 223 | } |
| 224 | |
| 225 | |
| 226 | /* |
| 227 | * conditionally insert an inline extent into the file. This |
| 228 | * does the checks required to make sure the data is small enough |
| 229 | * to fit as an inline extent. |
| 230 | */ |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 231 | static noinline int cow_file_range_inline(struct btrfs_root *root, |
| 232 | struct inode *inode, u64 start, |
| 233 | u64 end, size_t compressed_size, |
| 234 | int compress_type, |
| 235 | struct page **compressed_pages) |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 236 | { |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 237 | struct btrfs_trans_handle *trans; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 238 | u64 isize = i_size_read(inode); |
| 239 | u64 actual_end = min(end + 1, isize); |
| 240 | u64 inline_len = actual_end - start; |
Qu Wenruo | fda2832 | 2013-02-26 08:10:22 +0000 | [diff] [blame] | 241 | u64 aligned_end = ALIGN(end, root->sectorsize); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 242 | u64 data_len = inline_len; |
| 243 | int ret; |
Filipe David Borba Manana | 1acae57 | 2014-01-07 11:42:27 +0000 | [diff] [blame] | 244 | struct btrfs_path *path; |
| 245 | int extent_inserted = 0; |
| 246 | u32 extent_item_size; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 247 | |
| 248 | if (compressed_size) |
| 249 | data_len = compressed_size; |
| 250 | |
| 251 | if (start > 0 || |
Chris Mason | 70b99e6 | 2008-10-31 12:46:39 -0400 | [diff] [blame] | 252 | actual_end >= PAGE_CACHE_SIZE || |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 253 | data_len >= BTRFS_MAX_INLINE_DATA_SIZE(root) || |
| 254 | (!compressed_size && |
| 255 | (actual_end & (root->sectorsize - 1)) == 0) || |
| 256 | end + 1 < isize || |
| 257 | data_len > root->fs_info->max_inline) { |
| 258 | return 1; |
| 259 | } |
| 260 | |
Filipe David Borba Manana | 1acae57 | 2014-01-07 11:42:27 +0000 | [diff] [blame] | 261 | path = btrfs_alloc_path(); |
| 262 | if (!path) |
| 263 | return -ENOMEM; |
| 264 | |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 265 | trans = btrfs_join_transaction(root); |
Filipe David Borba Manana | 1acae57 | 2014-01-07 11:42:27 +0000 | [diff] [blame] | 266 | if (IS_ERR(trans)) { |
| 267 | btrfs_free_path(path); |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 268 | return PTR_ERR(trans); |
Filipe David Borba Manana | 1acae57 | 2014-01-07 11:42:27 +0000 | [diff] [blame] | 269 | } |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 270 | trans->block_rsv = &root->fs_info->delalloc_block_rsv; |
| 271 | |
Filipe David Borba Manana | 1acae57 | 2014-01-07 11:42:27 +0000 | [diff] [blame] | 272 | if (compressed_size && compressed_pages) |
| 273 | extent_item_size = btrfs_file_extent_calc_inline_size( |
| 274 | compressed_size); |
| 275 | else |
| 276 | extent_item_size = btrfs_file_extent_calc_inline_size( |
| 277 | inline_len); |
| 278 | |
| 279 | ret = __btrfs_drop_extents(trans, root, inode, path, |
| 280 | start, aligned_end, NULL, |
| 281 | 1, 1, extent_item_size, &extent_inserted); |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 282 | if (ret) { |
| 283 | btrfs_abort_transaction(trans, root, ret); |
| 284 | goto out; |
| 285 | } |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 286 | |
| 287 | if (isize > actual_end) |
| 288 | inline_len = min_t(u64, isize, actual_end); |
Filipe David Borba Manana | 1acae57 | 2014-01-07 11:42:27 +0000 | [diff] [blame] | 289 | ret = insert_inline_extent(trans, path, extent_inserted, |
| 290 | root, inode, start, |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 291 | inline_len, compressed_size, |
Li Zefan | fe3f566 | 2011-03-28 08:30:38 +0000 | [diff] [blame] | 292 | compress_type, compressed_pages); |
Josef Bacik | 2adcac1 | 2012-05-23 16:10:14 -0400 | [diff] [blame] | 293 | if (ret && ret != -ENOSPC) { |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 294 | btrfs_abort_transaction(trans, root, ret); |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 295 | goto out; |
Josef Bacik | 2adcac1 | 2012-05-23 16:10:14 -0400 | [diff] [blame] | 296 | } else if (ret == -ENOSPC) { |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 297 | ret = 1; |
| 298 | goto out; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 299 | } |
Josef Bacik | 2adcac1 | 2012-05-23 16:10:14 -0400 | [diff] [blame] | 300 | |
Josef Bacik | bdc20e6 | 2013-02-28 13:23:38 -0500 | [diff] [blame] | 301 | set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 302 | btrfs_delalloc_release_metadata(inode, end + 1 - start); |
Chris Mason | a1ed835 | 2009-09-11 12:27:37 -0400 | [diff] [blame] | 303 | btrfs_drop_extent_cache(inode, start, aligned_end - 1, 0); |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 304 | out: |
Filipe David Borba Manana | 1acae57 | 2014-01-07 11:42:27 +0000 | [diff] [blame] | 305 | btrfs_free_path(path); |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 306 | btrfs_end_transaction(trans, root); |
| 307 | return ret; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 308 | } |
| 309 | |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 310 | struct async_extent { |
| 311 | u64 start; |
| 312 | u64 ram_size; |
| 313 | u64 compressed_size; |
| 314 | struct page **pages; |
| 315 | unsigned long nr_pages; |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 316 | int compress_type; |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 317 | struct list_head list; |
| 318 | }; |
| 319 | |
| 320 | struct async_cow { |
| 321 | struct inode *inode; |
| 322 | struct btrfs_root *root; |
| 323 | struct page *locked_page; |
| 324 | u64 start; |
| 325 | u64 end; |
| 326 | struct list_head extents; |
| 327 | struct btrfs_work work; |
| 328 | }; |
| 329 | |
| 330 | static noinline int add_async_extent(struct async_cow *cow, |
| 331 | u64 start, u64 ram_size, |
| 332 | u64 compressed_size, |
| 333 | struct page **pages, |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 334 | unsigned long nr_pages, |
| 335 | int compress_type) |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 336 | { |
| 337 | struct async_extent *async_extent; |
| 338 | |
| 339 | async_extent = kmalloc(sizeof(*async_extent), GFP_NOFS); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 340 | BUG_ON(!async_extent); /* -ENOMEM */ |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 341 | async_extent->start = start; |
| 342 | async_extent->ram_size = ram_size; |
| 343 | async_extent->compressed_size = compressed_size; |
| 344 | async_extent->pages = pages; |
| 345 | async_extent->nr_pages = nr_pages; |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 346 | async_extent->compress_type = compress_type; |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 347 | list_add_tail(&async_extent->list, &cow->extents); |
| 348 | return 0; |
| 349 | } |
| 350 | |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 351 | /* |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 352 | * we create compressed extents in two phases. The first |
| 353 | * phase compresses a range of pages that have already been |
| 354 | * locked (both pages and state bits are locked). |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 355 | * |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 356 | * This is done inside an ordered work queue, and the compression |
| 357 | * is spread across many cpus. The actual IO submission is step |
| 358 | * two, and the ordered work queue takes care of making sure that |
| 359 | * happens in the same order things were put onto the queue by |
| 360 | * writepages and friends. |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 361 | * |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 362 | * If this code finds it can't get good compression, it puts an |
| 363 | * entry onto the work queue to write the uncompressed bytes. This |
| 364 | * makes sure that both compressed inodes and uncompressed inodes |
Artem Bityutskiy | b257031 | 2012-07-25 18:12:06 +0300 | [diff] [blame] | 365 | * are written in the same order that the flusher thread sent them |
| 366 | * down. |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 367 | */ |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 368 | static noinline int compress_file_range(struct inode *inode, |
| 369 | struct page *locked_page, |
| 370 | u64 start, u64 end, |
| 371 | struct async_cow *async_cow, |
| 372 | int *num_added) |
Chris Mason | b888db2 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 373 | { |
| 374 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 375 | u64 num_bytes; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 376 | u64 blocksize = root->sectorsize; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 377 | u64 actual_end; |
Chris Mason | 42dc7ba | 2008-12-15 11:44:56 -0500 | [diff] [blame] | 378 | u64 isize = i_size_read(inode); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 379 | int ret = 0; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 380 | struct page **pages = NULL; |
| 381 | unsigned long nr_pages; |
| 382 | unsigned long nr_pages_ret = 0; |
| 383 | unsigned long total_compressed = 0; |
| 384 | unsigned long total_in = 0; |
| 385 | unsigned long max_compressed = 128 * 1024; |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 386 | unsigned long max_uncompressed = 128 * 1024; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 387 | int i; |
| 388 | int will_compress; |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 389 | int compress_type = root->fs_info->compress_type; |
Chris Mason | 4adaa61 | 2013-03-26 13:07:00 -0400 | [diff] [blame] | 390 | int redirty = 0; |
Chris Mason | b888db2 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 391 | |
Liu Bo | 4cb13e5 | 2012-03-29 09:57:45 -0400 | [diff] [blame] | 392 | /* if this is a small write inside eof, kick off a defrag */ |
| 393 | if ((end - start + 1) < 16 * 1024 && |
| 394 | (start > 0 || end + 1 < BTRFS_I(inode)->disk_i_size)) |
Chris Mason | 4cb5300 | 2011-05-24 15:35:30 -0400 | [diff] [blame] | 395 | btrfs_add_inode_defrag(NULL, inode); |
| 396 | |
Wang Shilong | 68bb462 | 2014-04-01 18:01:42 +0800 | [diff] [blame] | 397 | /* |
| 398 | * skip compression for a small file range(<=blocksize) that |
| 399 | * isn't an inline extent, since it dosen't save disk space at all. |
| 400 | */ |
| 401 | if ((end - start + 1) <= blocksize && |
| 402 | (start > 0 || end + 1 < BTRFS_I(inode)->disk_i_size)) |
| 403 | goto cleanup_and_bail_uncompressed; |
| 404 | |
Chris Mason | 42dc7ba | 2008-12-15 11:44:56 -0500 | [diff] [blame] | 405 | actual_end = min_t(u64, isize, end + 1); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 406 | again: |
| 407 | will_compress = 0; |
| 408 | nr_pages = (end >> PAGE_CACHE_SHIFT) - (start >> PAGE_CACHE_SHIFT) + 1; |
| 409 | nr_pages = min(nr_pages, (128 * 1024UL) / PAGE_CACHE_SIZE); |
| 410 | |
Chris Mason | f03d930 | 2009-02-04 09:31:06 -0500 | [diff] [blame] | 411 | /* |
| 412 | * we don't want to send crud past the end of i_size through |
| 413 | * compression, that's just a waste of CPU time. So, if the |
| 414 | * end of the file is before the start of our current |
| 415 | * requested range of bytes, we bail out to the uncompressed |
| 416 | * cleanup code that can deal with all of this. |
| 417 | * |
| 418 | * It isn't really the fastest way to fix things, but this is a |
| 419 | * very uncommon corner. |
| 420 | */ |
| 421 | if (actual_end <= start) |
| 422 | goto cleanup_and_bail_uncompressed; |
| 423 | |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 424 | total_compressed = actual_end - start; |
| 425 | |
| 426 | /* we want to make sure that amount of ram required to uncompress |
| 427 | * an extent is reasonable, so we limit the total size in ram |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 428 | * of a compressed extent to 128k. This is a crucial number |
| 429 | * because it also controls how easily we can spread reads across |
| 430 | * cpus for decompression. |
| 431 | * |
| 432 | * We also want to make sure the amount of IO required to do |
| 433 | * a random read is reasonably small, so we limit the size of |
| 434 | * a compressed extent to 128k. |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 435 | */ |
| 436 | total_compressed = min(total_compressed, max_uncompressed); |
Qu Wenruo | fda2832 | 2013-02-26 08:10:22 +0000 | [diff] [blame] | 437 | num_bytes = ALIGN(end - start + 1, blocksize); |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 438 | num_bytes = max(blocksize, num_bytes); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 439 | total_in = 0; |
| 440 | ret = 0; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 441 | |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 442 | /* |
| 443 | * we do compression for mount -o compress and when the |
| 444 | * inode has not been flagged as nocompress. This flag can |
| 445 | * change at any time if we discover bad compression ratios. |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 446 | */ |
Christoph Hellwig | 6cbff00 | 2009-04-17 10:37:41 +0200 | [diff] [blame] | 447 | if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS) && |
Chris Mason | 1e701a3 | 2010-03-11 09:42:04 -0500 | [diff] [blame] | 448 | (btrfs_test_opt(root, COMPRESS) || |
Liu Bo | 75e7cb7 | 2011-03-22 10:12:20 +0000 | [diff] [blame] | 449 | (BTRFS_I(inode)->force_compress) || |
| 450 | (BTRFS_I(inode)->flags & BTRFS_INODE_COMPRESS))) { |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 451 | WARN_ON(pages); |
Chris Mason | cfbc246 | 2008-10-30 13:22:14 -0400 | [diff] [blame] | 452 | pages = kzalloc(sizeof(struct page *) * nr_pages, GFP_NOFS); |
Li Zefan | 560f7d7 | 2011-09-08 10:22:01 +0800 | [diff] [blame] | 453 | if (!pages) { |
| 454 | /* just bail out to the uncompressed code */ |
| 455 | goto cont; |
| 456 | } |
Chris Mason | 179e29e | 2007-11-01 11:28:41 -0400 | [diff] [blame] | 457 | |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 458 | if (BTRFS_I(inode)->force_compress) |
| 459 | compress_type = BTRFS_I(inode)->force_compress; |
| 460 | |
Chris Mason | 4adaa61 | 2013-03-26 13:07:00 -0400 | [diff] [blame] | 461 | /* |
| 462 | * we need to call clear_page_dirty_for_io on each |
| 463 | * page in the range. Otherwise applications with the file |
| 464 | * mmap'd can wander in and change the page contents while |
| 465 | * we are compressing them. |
| 466 | * |
| 467 | * If the compression fails for any reason, we set the pages |
| 468 | * dirty again later on. |
| 469 | */ |
| 470 | extent_range_clear_dirty_for_io(inode, start, end); |
| 471 | redirty = 1; |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 472 | ret = btrfs_compress_pages(compress_type, |
| 473 | inode->i_mapping, start, |
| 474 | total_compressed, pages, |
| 475 | nr_pages, &nr_pages_ret, |
| 476 | &total_in, |
| 477 | &total_compressed, |
| 478 | max_compressed); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 479 | |
| 480 | if (!ret) { |
| 481 | unsigned long offset = total_compressed & |
| 482 | (PAGE_CACHE_SIZE - 1); |
| 483 | struct page *page = pages[nr_pages_ret - 1]; |
| 484 | char *kaddr; |
| 485 | |
| 486 | /* zero the tail end of the last page, we might be |
| 487 | * sending it down to disk |
| 488 | */ |
| 489 | if (offset) { |
Cong Wang | 7ac687d | 2011-11-25 23:14:28 +0800 | [diff] [blame] | 490 | kaddr = kmap_atomic(page); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 491 | memset(kaddr + offset, 0, |
| 492 | PAGE_CACHE_SIZE - offset); |
Cong Wang | 7ac687d | 2011-11-25 23:14:28 +0800 | [diff] [blame] | 493 | kunmap_atomic(kaddr); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 494 | } |
| 495 | will_compress = 1; |
| 496 | } |
| 497 | } |
Li Zefan | 560f7d7 | 2011-09-08 10:22:01 +0800 | [diff] [blame] | 498 | cont: |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 499 | if (start == 0) { |
| 500 | /* lets try to make an inline extent */ |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 501 | if (ret || total_in < (actual_end - start)) { |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 502 | /* we didn't compress the entire range, try |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 503 | * to make an uncompressed inline extent. |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 504 | */ |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 505 | ret = cow_file_range_inline(root, inode, start, end, |
| 506 | 0, 0, NULL); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 507 | } else { |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 508 | /* try making a compressed inline extent */ |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 509 | ret = cow_file_range_inline(root, inode, start, end, |
Li Zefan | fe3f566 | 2011-03-28 08:30:38 +0000 | [diff] [blame] | 510 | total_compressed, |
| 511 | compress_type, pages); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 512 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 513 | if (ret <= 0) { |
Josef Bacik | 151a41b | 2013-07-29 13:22:24 -0400 | [diff] [blame] | 514 | unsigned long clear_flags = EXTENT_DELALLOC | |
| 515 | EXTENT_DEFRAG; |
| 516 | clear_flags |= (ret < 0) ? EXTENT_DO_ACCOUNTING : 0; |
| 517 | |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 518 | /* |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 519 | * inline extent creation worked or returned error, |
| 520 | * we don't need to create any more async work items. |
| 521 | * Unlock and free up our temp pages. |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 522 | */ |
Josef Bacik | c2790a2 | 2013-07-29 11:20:47 -0400 | [diff] [blame] | 523 | extent_clear_unlock_delalloc(inode, start, end, NULL, |
Josef Bacik | 151a41b | 2013-07-29 13:22:24 -0400 | [diff] [blame] | 524 | clear_flags, PAGE_UNLOCK | |
Josef Bacik | c2790a2 | 2013-07-29 11:20:47 -0400 | [diff] [blame] | 525 | PAGE_CLEAR_DIRTY | |
| 526 | PAGE_SET_WRITEBACK | |
| 527 | PAGE_END_WRITEBACK); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 528 | goto free_pages_out; |
| 529 | } |
| 530 | } |
| 531 | |
| 532 | if (will_compress) { |
| 533 | /* |
| 534 | * we aren't doing an inline extent round the compressed size |
| 535 | * up to a block size boundary so the allocator does sane |
| 536 | * things |
| 537 | */ |
Qu Wenruo | fda2832 | 2013-02-26 08:10:22 +0000 | [diff] [blame] | 538 | total_compressed = ALIGN(total_compressed, blocksize); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 539 | |
| 540 | /* |
| 541 | * one last check to make sure the compression is really a |
| 542 | * win, compare the page count read with the blocks on disk |
| 543 | */ |
Qu Wenruo | fda2832 | 2013-02-26 08:10:22 +0000 | [diff] [blame] | 544 | total_in = ALIGN(total_in, PAGE_CACHE_SIZE); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 545 | if (total_compressed >= total_in) { |
| 546 | will_compress = 0; |
| 547 | } else { |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 548 | num_bytes = total_in; |
| 549 | } |
| 550 | } |
| 551 | if (!will_compress && pages) { |
| 552 | /* |
| 553 | * the compression code ran but failed to make things smaller, |
| 554 | * free any pages it allocated and our page pointer array |
| 555 | */ |
| 556 | for (i = 0; i < nr_pages_ret; i++) { |
Chris Mason | 70b99e6 | 2008-10-31 12:46:39 -0400 | [diff] [blame] | 557 | WARN_ON(pages[i]->mapping); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 558 | page_cache_release(pages[i]); |
| 559 | } |
| 560 | kfree(pages); |
| 561 | pages = NULL; |
| 562 | total_compressed = 0; |
| 563 | nr_pages_ret = 0; |
| 564 | |
| 565 | /* flag the file so we don't compress in the future */ |
Chris Mason | 1e701a3 | 2010-03-11 09:42:04 -0500 | [diff] [blame] | 566 | if (!btrfs_test_opt(root, FORCE_COMPRESS) && |
| 567 | !(BTRFS_I(inode)->force_compress)) { |
Chris Mason | a555f81 | 2010-01-28 16:18:15 -0500 | [diff] [blame] | 568 | BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS; |
Chris Mason | 1e701a3 | 2010-03-11 09:42:04 -0500 | [diff] [blame] | 569 | } |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 570 | } |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 571 | if (will_compress) { |
| 572 | *num_added += 1; |
| 573 | |
| 574 | /* the async work queues will take care of doing actual |
| 575 | * allocation on disk for these compressed pages, |
| 576 | * and will submit them to the elevator. |
| 577 | */ |
| 578 | add_async_extent(async_cow, start, num_bytes, |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 579 | total_compressed, pages, nr_pages_ret, |
| 580 | compress_type); |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 581 | |
Yan, Zheng | 24ae636 | 2010-12-06 07:02:36 +0000 | [diff] [blame] | 582 | if (start + num_bytes < end) { |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 583 | start += num_bytes; |
| 584 | pages = NULL; |
| 585 | cond_resched(); |
| 586 | goto again; |
| 587 | } |
| 588 | } else { |
Chris Mason | f03d930 | 2009-02-04 09:31:06 -0500 | [diff] [blame] | 589 | cleanup_and_bail_uncompressed: |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 590 | /* |
| 591 | * No compression, but we still need to write the pages in |
| 592 | * the file we've been given so far. redirty the locked |
| 593 | * page if it corresponds to our extent and set things up |
| 594 | * for the async work queue to run cow_file_range to do |
| 595 | * the normal delalloc dance |
| 596 | */ |
| 597 | if (page_offset(locked_page) >= start && |
| 598 | page_offset(locked_page) <= end) { |
| 599 | __set_page_dirty_nobuffers(locked_page); |
| 600 | /* unlocked later on in the async handlers */ |
| 601 | } |
Chris Mason | 4adaa61 | 2013-03-26 13:07:00 -0400 | [diff] [blame] | 602 | if (redirty) |
| 603 | extent_range_redirty_for_io(inode, start, end); |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 604 | add_async_extent(async_cow, start, end - start + 1, |
| 605 | 0, NULL, 0, BTRFS_COMPRESS_NONE); |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 606 | *num_added += 1; |
| 607 | } |
| 608 | |
| 609 | out: |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 610 | return ret; |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 611 | |
| 612 | free_pages_out: |
| 613 | for (i = 0; i < nr_pages_ret; i++) { |
| 614 | WARN_ON(pages[i]->mapping); |
| 615 | page_cache_release(pages[i]); |
| 616 | } |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 617 | kfree(pages); |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 618 | |
| 619 | goto out; |
| 620 | } |
| 621 | |
| 622 | /* |
| 623 | * phase two of compressed writeback. This is the ordered portion |
| 624 | * of the code, which only gets called in the order the work was |
| 625 | * queued. We walk all the async extents created by compress_file_range |
| 626 | * and send them down to the disk. |
| 627 | */ |
| 628 | static noinline int submit_compressed_extents(struct inode *inode, |
| 629 | struct async_cow *async_cow) |
| 630 | { |
| 631 | struct async_extent *async_extent; |
| 632 | u64 alloc_hint = 0; |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 633 | struct btrfs_key ins; |
| 634 | struct extent_map *em; |
| 635 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 636 | struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree; |
| 637 | struct extent_io_tree *io_tree; |
Josef Bacik | f5a84ee3 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 638 | int ret = 0; |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 639 | |
| 640 | if (list_empty(&async_cow->extents)) |
| 641 | return 0; |
| 642 | |
Josef Bacik | 3e04e7f | 2013-02-06 16:49:15 -0500 | [diff] [blame] | 643 | again: |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 644 | while (!list_empty(&async_cow->extents)) { |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 645 | async_extent = list_entry(async_cow->extents.next, |
| 646 | struct async_extent, list); |
| 647 | list_del(&async_extent->list); |
| 648 | |
| 649 | io_tree = &BTRFS_I(inode)->io_tree; |
| 650 | |
Josef Bacik | f5a84ee3 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 651 | retry: |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 652 | /* did the compression code fall back to uncompressed IO? */ |
| 653 | if (!async_extent->pages) { |
| 654 | int page_started = 0; |
| 655 | unsigned long nr_written = 0; |
| 656 | |
| 657 | lock_extent(io_tree, async_extent->start, |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 658 | async_extent->start + |
Jeff Mahoney | d008237 | 2012-03-01 14:57:19 +0100 | [diff] [blame] | 659 | async_extent->ram_size - 1); |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 660 | |
| 661 | /* allocate blocks */ |
Josef Bacik | f5a84ee3 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 662 | ret = cow_file_range(inode, async_cow->locked_page, |
| 663 | async_extent->start, |
| 664 | async_extent->start + |
| 665 | async_extent->ram_size - 1, |
| 666 | &page_started, &nr_written, 0); |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 667 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 668 | /* JDM XXX */ |
| 669 | |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 670 | /* |
| 671 | * if page_started, cow_file_range inserted an |
| 672 | * inline extent and took care of all the unlocking |
| 673 | * and IO for us. Otherwise, we need to submit |
| 674 | * all those pages down to the drive. |
| 675 | */ |
Josef Bacik | f5a84ee3 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 676 | if (!page_started && !ret) |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 677 | extent_write_locked_range(io_tree, |
| 678 | inode, async_extent->start, |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 679 | async_extent->start + |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 680 | async_extent->ram_size - 1, |
| 681 | btrfs_get_extent, |
| 682 | WB_SYNC_ALL); |
Josef Bacik | 3e04e7f | 2013-02-06 16:49:15 -0500 | [diff] [blame] | 683 | else if (ret) |
| 684 | unlock_page(async_cow->locked_page); |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 685 | kfree(async_extent); |
| 686 | cond_resched(); |
| 687 | continue; |
| 688 | } |
| 689 | |
| 690 | lock_extent(io_tree, async_extent->start, |
Jeff Mahoney | d008237 | 2012-03-01 14:57:19 +0100 | [diff] [blame] | 691 | async_extent->start + async_extent->ram_size - 1); |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 692 | |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 693 | ret = btrfs_reserve_extent(root, |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 694 | async_extent->compressed_size, |
| 695 | async_extent->compressed_size, |
Josef Bacik | 81c9ad2 | 2012-01-18 10:56:06 -0500 | [diff] [blame] | 696 | 0, alloc_hint, &ins, 1); |
Josef Bacik | f5a84ee3 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 697 | if (ret) { |
| 698 | int i; |
Josef Bacik | 3e04e7f | 2013-02-06 16:49:15 -0500 | [diff] [blame] | 699 | |
Josef Bacik | f5a84ee3 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 700 | for (i = 0; i < async_extent->nr_pages; i++) { |
| 701 | WARN_ON(async_extent->pages[i]->mapping); |
| 702 | page_cache_release(async_extent->pages[i]); |
| 703 | } |
| 704 | kfree(async_extent->pages); |
| 705 | async_extent->nr_pages = 0; |
| 706 | async_extent->pages = NULL; |
Josef Bacik | 3e04e7f | 2013-02-06 16:49:15 -0500 | [diff] [blame] | 707 | |
Josef Bacik | fdf8e2e | 2013-06-14 16:58:23 -0400 | [diff] [blame] | 708 | if (ret == -ENOSPC) { |
| 709 | unlock_extent(io_tree, async_extent->start, |
| 710 | async_extent->start + |
| 711 | async_extent->ram_size - 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 712 | goto retry; |
Josef Bacik | fdf8e2e | 2013-06-14 16:58:23 -0400 | [diff] [blame] | 713 | } |
Josef Bacik | 3e04e7f | 2013-02-06 16:49:15 -0500 | [diff] [blame] | 714 | goto out_free; |
Josef Bacik | f5a84ee3 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 715 | } |
| 716 | |
Yan, Zheng | c216775 | 2009-11-12 09:34:21 +0000 | [diff] [blame] | 717 | /* |
| 718 | * here we're doing allocation and writeback of the |
| 719 | * compressed pages |
| 720 | */ |
| 721 | btrfs_drop_extent_cache(inode, async_extent->start, |
| 722 | async_extent->start + |
| 723 | async_extent->ram_size - 1, 0); |
| 724 | |
David Sterba | 172ddd6 | 2011-04-21 00:48:27 +0200 | [diff] [blame] | 725 | em = alloc_extent_map(); |
Liu Bo | b9aa55b | 2013-05-14 02:12:15 +0000 | [diff] [blame] | 726 | if (!em) { |
| 727 | ret = -ENOMEM; |
Josef Bacik | 3e04e7f | 2013-02-06 16:49:15 -0500 | [diff] [blame] | 728 | goto out_free_reserve; |
Liu Bo | b9aa55b | 2013-05-14 02:12:15 +0000 | [diff] [blame] | 729 | } |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 730 | em->start = async_extent->start; |
| 731 | em->len = async_extent->ram_size; |
Chris Mason | 445a694 | 2008-11-10 11:53:33 -0500 | [diff] [blame] | 732 | em->orig_start = em->start; |
Josef Bacik | 2ab28f3 | 2012-10-12 15:27:49 -0400 | [diff] [blame] | 733 | em->mod_start = em->start; |
| 734 | em->mod_len = em->len; |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 735 | |
| 736 | em->block_start = ins.objectid; |
| 737 | em->block_len = ins.offset; |
Josef Bacik | b493968 | 2012-12-03 10:31:19 -0500 | [diff] [blame] | 738 | em->orig_block_len = ins.offset; |
Josef Bacik | cc95bef | 2013-04-04 14:31:27 -0400 | [diff] [blame] | 739 | em->ram_bytes = async_extent->ram_size; |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 740 | em->bdev = root->fs_info->fs_devices->latest_bdev; |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 741 | em->compress_type = async_extent->compress_type; |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 742 | set_bit(EXTENT_FLAG_PINNED, &em->flags); |
| 743 | set_bit(EXTENT_FLAG_COMPRESSED, &em->flags); |
Josef Bacik | 70c8a91 | 2012-10-11 16:54:30 -0400 | [diff] [blame] | 744 | em->generation = -1; |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 745 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 746 | while (1) { |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 747 | write_lock(&em_tree->lock); |
Josef Bacik | 09a2a8f9 | 2013-04-05 16:51:15 -0400 | [diff] [blame] | 748 | ret = add_extent_mapping(em_tree, em, 1); |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 749 | write_unlock(&em_tree->lock); |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 750 | if (ret != -EEXIST) { |
| 751 | free_extent_map(em); |
| 752 | break; |
| 753 | } |
| 754 | btrfs_drop_extent_cache(inode, async_extent->start, |
| 755 | async_extent->start + |
| 756 | async_extent->ram_size - 1, 0); |
| 757 | } |
| 758 | |
Josef Bacik | 3e04e7f | 2013-02-06 16:49:15 -0500 | [diff] [blame] | 759 | if (ret) |
| 760 | goto out_free_reserve; |
| 761 | |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 762 | ret = btrfs_add_ordered_extent_compress(inode, |
| 763 | async_extent->start, |
| 764 | ins.objectid, |
| 765 | async_extent->ram_size, |
| 766 | ins.offset, |
| 767 | BTRFS_ORDERED_COMPRESSED, |
| 768 | async_extent->compress_type); |
Josef Bacik | 3e04e7f | 2013-02-06 16:49:15 -0500 | [diff] [blame] | 769 | if (ret) |
| 770 | goto out_free_reserve; |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 771 | |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 772 | /* |
| 773 | * clear dirty, set writeback and unlock the pages. |
| 774 | */ |
Josef Bacik | c2790a2 | 2013-07-29 11:20:47 -0400 | [diff] [blame] | 775 | extent_clear_unlock_delalloc(inode, async_extent->start, |
Chris Mason | a791e35 | 2009-10-08 11:27:10 -0400 | [diff] [blame] | 776 | async_extent->start + |
| 777 | async_extent->ram_size - 1, |
Josef Bacik | 151a41b | 2013-07-29 13:22:24 -0400 | [diff] [blame] | 778 | NULL, EXTENT_LOCKED | EXTENT_DELALLOC, |
| 779 | PAGE_UNLOCK | PAGE_CLEAR_DIRTY | |
Josef Bacik | c2790a2 | 2013-07-29 11:20:47 -0400 | [diff] [blame] | 780 | PAGE_SET_WRITEBACK); |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 781 | ret = btrfs_submit_compressed_write(inode, |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 782 | async_extent->start, |
| 783 | async_extent->ram_size, |
| 784 | ins.objectid, |
| 785 | ins.offset, async_extent->pages, |
| 786 | async_extent->nr_pages); |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 787 | alloc_hint = ins.objectid + ins.offset; |
| 788 | kfree(async_extent); |
Josef Bacik | 3e04e7f | 2013-02-06 16:49:15 -0500 | [diff] [blame] | 789 | if (ret) |
| 790 | goto out; |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 791 | cond_resched(); |
| 792 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 793 | ret = 0; |
| 794 | out: |
| 795 | return ret; |
Josef Bacik | 3e04e7f | 2013-02-06 16:49:15 -0500 | [diff] [blame] | 796 | out_free_reserve: |
| 797 | btrfs_free_reserved_extent(root, ins.objectid, ins.offset); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 798 | out_free: |
Josef Bacik | c2790a2 | 2013-07-29 11:20:47 -0400 | [diff] [blame] | 799 | extent_clear_unlock_delalloc(inode, async_extent->start, |
Josef Bacik | 3e04e7f | 2013-02-06 16:49:15 -0500 | [diff] [blame] | 800 | async_extent->start + |
| 801 | async_extent->ram_size - 1, |
Josef Bacik | c2790a2 | 2013-07-29 11:20:47 -0400 | [diff] [blame] | 802 | NULL, EXTENT_LOCKED | EXTENT_DELALLOC | |
Josef Bacik | 151a41b | 2013-07-29 13:22:24 -0400 | [diff] [blame] | 803 | EXTENT_DEFRAG | EXTENT_DO_ACCOUNTING, |
| 804 | PAGE_UNLOCK | PAGE_CLEAR_DIRTY | |
| 805 | PAGE_SET_WRITEBACK | PAGE_END_WRITEBACK); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 806 | kfree(async_extent); |
Josef Bacik | 3e04e7f | 2013-02-06 16:49:15 -0500 | [diff] [blame] | 807 | goto again; |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 808 | } |
| 809 | |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 810 | static u64 get_extent_allocation_hint(struct inode *inode, u64 start, |
| 811 | u64 num_bytes) |
| 812 | { |
| 813 | struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree; |
| 814 | struct extent_map *em; |
| 815 | u64 alloc_hint = 0; |
| 816 | |
| 817 | read_lock(&em_tree->lock); |
| 818 | em = search_extent_mapping(em_tree, start, num_bytes); |
| 819 | if (em) { |
| 820 | /* |
| 821 | * if block start isn't an actual block number then find the |
| 822 | * first block in this inode and use that as a hint. If that |
| 823 | * block is also bogus then just don't worry about it. |
| 824 | */ |
| 825 | if (em->block_start >= EXTENT_MAP_LAST_BYTE) { |
| 826 | free_extent_map(em); |
| 827 | em = search_extent_mapping(em_tree, 0, 0); |
| 828 | if (em && em->block_start < EXTENT_MAP_LAST_BYTE) |
| 829 | alloc_hint = em->block_start; |
| 830 | if (em) |
| 831 | free_extent_map(em); |
| 832 | } else { |
| 833 | alloc_hint = em->block_start; |
| 834 | free_extent_map(em); |
| 835 | } |
| 836 | } |
| 837 | read_unlock(&em_tree->lock); |
| 838 | |
| 839 | return alloc_hint; |
| 840 | } |
| 841 | |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 842 | /* |
| 843 | * when extent_io.c finds a delayed allocation range in the file, |
| 844 | * the call backs end up in this code. The basic idea is to |
| 845 | * allocate extents on disk for the range, and create ordered data structs |
| 846 | * in ram to track those extents. |
| 847 | * |
| 848 | * locked_page is the page that writepage had locked already. We use |
| 849 | * it to make sure we don't do extra locks or unlocks. |
| 850 | * |
| 851 | * *page_started is set to one if we unlock locked_page and do everything |
| 852 | * required to start IO on it. It may be clean and already done with |
| 853 | * IO when we return. |
| 854 | */ |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 855 | static noinline int cow_file_range(struct inode *inode, |
| 856 | struct page *locked_page, |
| 857 | u64 start, u64 end, int *page_started, |
| 858 | unsigned long *nr_written, |
| 859 | int unlock) |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 860 | { |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 861 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 862 | u64 alloc_hint = 0; |
| 863 | u64 num_bytes; |
| 864 | unsigned long ram_size; |
| 865 | u64 disk_num_bytes; |
| 866 | u64 cur_alloc_size; |
| 867 | u64 blocksize = root->sectorsize; |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 868 | struct btrfs_key ins; |
| 869 | struct extent_map *em; |
| 870 | struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree; |
| 871 | int ret = 0; |
| 872 | |
Josef Bacik | 02ecd2c | 2013-10-25 16:19:08 -0400 | [diff] [blame] | 873 | if (btrfs_is_free_space_inode(inode)) { |
| 874 | WARN_ON_ONCE(1); |
Josef Bacik | 29bce2f | 2014-02-07 12:21:23 -0500 | [diff] [blame] | 875 | ret = -EINVAL; |
| 876 | goto out_unlock; |
Josef Bacik | 02ecd2c | 2013-10-25 16:19:08 -0400 | [diff] [blame] | 877 | } |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 878 | |
Qu Wenruo | fda2832 | 2013-02-26 08:10:22 +0000 | [diff] [blame] | 879 | num_bytes = ALIGN(end - start + 1, blocksize); |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 880 | num_bytes = max(blocksize, num_bytes); |
| 881 | disk_num_bytes = num_bytes; |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 882 | |
Chris Mason | 4cb5300 | 2011-05-24 15:35:30 -0400 | [diff] [blame] | 883 | /* if this is a small write inside eof, kick off defrag */ |
Liu Bo | 4cb13e5 | 2012-03-29 09:57:45 -0400 | [diff] [blame] | 884 | if (num_bytes < 64 * 1024 && |
| 885 | (start > 0 || end + 1 < BTRFS_I(inode)->disk_i_size)) |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 886 | btrfs_add_inode_defrag(NULL, inode); |
Chris Mason | 4cb5300 | 2011-05-24 15:35:30 -0400 | [diff] [blame] | 887 | |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 888 | if (start == 0) { |
| 889 | /* lets try to make an inline extent */ |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 890 | ret = cow_file_range_inline(root, inode, start, end, 0, 0, |
| 891 | NULL); |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 892 | if (ret == 0) { |
Josef Bacik | c2790a2 | 2013-07-29 11:20:47 -0400 | [diff] [blame] | 893 | extent_clear_unlock_delalloc(inode, start, end, NULL, |
| 894 | EXTENT_LOCKED | EXTENT_DELALLOC | |
Josef Bacik | 151a41b | 2013-07-29 13:22:24 -0400 | [diff] [blame] | 895 | EXTENT_DEFRAG, PAGE_UNLOCK | |
Josef Bacik | c2790a2 | 2013-07-29 11:20:47 -0400 | [diff] [blame] | 896 | PAGE_CLEAR_DIRTY | PAGE_SET_WRITEBACK | |
| 897 | PAGE_END_WRITEBACK); |
Yan, Zheng | c216775 | 2009-11-12 09:34:21 +0000 | [diff] [blame] | 898 | |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 899 | *nr_written = *nr_written + |
| 900 | (end - start + PAGE_CACHE_SIZE) / PAGE_CACHE_SIZE; |
| 901 | *page_started = 1; |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 902 | goto out; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 903 | } else if (ret < 0) { |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 904 | goto out_unlock; |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 905 | } |
| 906 | } |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 907 | |
| 908 | BUG_ON(disk_num_bytes > |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 909 | btrfs_super_total_bytes(root->fs_info->super_copy)); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 910 | |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 911 | alloc_hint = get_extent_allocation_hint(inode, start, num_bytes); |
Zheng Yan | 5b21f2e | 2008-09-26 10:05:38 -0400 | [diff] [blame] | 912 | btrfs_drop_extent_cache(inode, start, start + num_bytes - 1, 0); |
Chris Mason | 3b95151 | 2008-04-17 11:29:12 -0400 | [diff] [blame] | 913 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 914 | while (disk_num_bytes > 0) { |
Chris Mason | a791e35 | 2009-10-08 11:27:10 -0400 | [diff] [blame] | 915 | unsigned long op; |
| 916 | |
Josef Bacik | 287a0ab | 2010-03-19 18:07:23 +0000 | [diff] [blame] | 917 | cur_alloc_size = disk_num_bytes; |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 918 | ret = btrfs_reserve_extent(root, cur_alloc_size, |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 919 | root->sectorsize, 0, alloc_hint, |
Josef Bacik | 81c9ad2 | 2012-01-18 10:56:06 -0500 | [diff] [blame] | 920 | &ins, 1); |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 921 | if (ret < 0) |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 922 | goto out_unlock; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 923 | |
David Sterba | 172ddd6 | 2011-04-21 00:48:27 +0200 | [diff] [blame] | 924 | em = alloc_extent_map(); |
Liu Bo | b9aa55b | 2013-05-14 02:12:15 +0000 | [diff] [blame] | 925 | if (!em) { |
| 926 | ret = -ENOMEM; |
Liu Bo | ace68ba | 2013-04-22 10:53:47 +0000 | [diff] [blame] | 927 | goto out_reserve; |
Liu Bo | b9aa55b | 2013-05-14 02:12:15 +0000 | [diff] [blame] | 928 | } |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 929 | em->start = start; |
Chris Mason | 445a694 | 2008-11-10 11:53:33 -0500 | [diff] [blame] | 930 | em->orig_start = em->start; |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 931 | ram_size = ins.offset; |
| 932 | em->len = ins.offset; |
Josef Bacik | 2ab28f3 | 2012-10-12 15:27:49 -0400 | [diff] [blame] | 933 | em->mod_start = em->start; |
| 934 | em->mod_len = em->len; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 935 | |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 936 | em->block_start = ins.objectid; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 937 | em->block_len = ins.offset; |
Josef Bacik | b493968 | 2012-12-03 10:31:19 -0500 | [diff] [blame] | 938 | em->orig_block_len = ins.offset; |
Josef Bacik | cc95bef | 2013-04-04 14:31:27 -0400 | [diff] [blame] | 939 | em->ram_bytes = ram_size; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 940 | em->bdev = root->fs_info->fs_devices->latest_bdev; |
Chris Mason | 7f3c74f | 2008-07-18 12:01:11 -0400 | [diff] [blame] | 941 | set_bit(EXTENT_FLAG_PINNED, &em->flags); |
Josef Bacik | 70c8a91 | 2012-10-11 16:54:30 -0400 | [diff] [blame] | 942 | em->generation = -1; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 943 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 944 | while (1) { |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 945 | write_lock(&em_tree->lock); |
Josef Bacik | 09a2a8f9 | 2013-04-05 16:51:15 -0400 | [diff] [blame] | 946 | ret = add_extent_mapping(em_tree, em, 1); |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 947 | write_unlock(&em_tree->lock); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 948 | if (ret != -EEXIST) { |
| 949 | free_extent_map(em); |
| 950 | break; |
| 951 | } |
| 952 | btrfs_drop_extent_cache(inode, start, |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 953 | start + ram_size - 1, 0); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 954 | } |
Liu Bo | ace68ba | 2013-04-22 10:53:47 +0000 | [diff] [blame] | 955 | if (ret) |
| 956 | goto out_reserve; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 957 | |
Chris Mason | 98d20f6 | 2008-04-14 09:46:10 -0400 | [diff] [blame] | 958 | cur_alloc_size = ins.offset; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 959 | ret = btrfs_add_ordered_extent(inode, start, ins.objectid, |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 960 | ram_size, cur_alloc_size, 0); |
Liu Bo | ace68ba | 2013-04-22 10:53:47 +0000 | [diff] [blame] | 961 | if (ret) |
| 962 | goto out_reserve; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 963 | |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 964 | if (root->root_key.objectid == |
| 965 | BTRFS_DATA_RELOC_TREE_OBJECTID) { |
| 966 | ret = btrfs_reloc_clone_csums(inode, start, |
| 967 | cur_alloc_size); |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 968 | if (ret) |
Liu Bo | ace68ba | 2013-04-22 10:53:47 +0000 | [diff] [blame] | 969 | goto out_reserve; |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 970 | } |
| 971 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 972 | if (disk_num_bytes < cur_alloc_size) |
Chris Mason | 3b95151 | 2008-04-17 11:29:12 -0400 | [diff] [blame] | 973 | break; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 974 | |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 975 | /* we're not doing compressed IO, don't unlock the first |
| 976 | * page (which the caller expects to stay locked), don't |
| 977 | * clear any dirty bits and don't set any writeback bits |
Chris Mason | 8b62b72 | 2009-09-02 16:53:46 -0400 | [diff] [blame] | 978 | * |
| 979 | * Do set the Private2 bit so we know this page was properly |
| 980 | * setup for writepage |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 981 | */ |
Josef Bacik | c2790a2 | 2013-07-29 11:20:47 -0400 | [diff] [blame] | 982 | op = unlock ? PAGE_UNLOCK : 0; |
| 983 | op |= PAGE_SET_PRIVATE2; |
Chris Mason | a791e35 | 2009-10-08 11:27:10 -0400 | [diff] [blame] | 984 | |
Josef Bacik | c2790a2 | 2013-07-29 11:20:47 -0400 | [diff] [blame] | 985 | extent_clear_unlock_delalloc(inode, start, |
| 986 | start + ram_size - 1, locked_page, |
| 987 | EXTENT_LOCKED | EXTENT_DELALLOC, |
| 988 | op); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 989 | disk_num_bytes -= cur_alloc_size; |
Chris Mason | c59f895 | 2007-12-17 20:14:04 -0500 | [diff] [blame] | 990 | num_bytes -= cur_alloc_size; |
| 991 | alloc_hint = ins.objectid + ins.offset; |
| 992 | start += cur_alloc_size; |
Chris Mason | b888db2 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 993 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 994 | out: |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 995 | return ret; |
Miao Xie | b7d5b0a | 2012-11-01 07:32:18 +0000 | [diff] [blame] | 996 | |
Liu Bo | ace68ba | 2013-04-22 10:53:47 +0000 | [diff] [blame] | 997 | out_reserve: |
| 998 | btrfs_free_reserved_extent(root, ins.objectid, ins.offset); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 999 | out_unlock: |
Josef Bacik | c2790a2 | 2013-07-29 11:20:47 -0400 | [diff] [blame] | 1000 | extent_clear_unlock_delalloc(inode, start, end, locked_page, |
Josef Bacik | 151a41b | 2013-07-29 13:22:24 -0400 | [diff] [blame] | 1001 | EXTENT_LOCKED | EXTENT_DO_ACCOUNTING | |
| 1002 | EXTENT_DELALLOC | EXTENT_DEFRAG, |
| 1003 | PAGE_UNLOCK | PAGE_CLEAR_DIRTY | |
| 1004 | PAGE_SET_WRITEBACK | PAGE_END_WRITEBACK); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1005 | goto out; |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 1006 | } |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 1007 | |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 1008 | /* |
| 1009 | * work queue call back to started compression on a file and pages |
| 1010 | */ |
| 1011 | static noinline void async_cow_start(struct btrfs_work *work) |
| 1012 | { |
| 1013 | struct async_cow *async_cow; |
| 1014 | int num_added = 0; |
| 1015 | async_cow = container_of(work, struct async_cow, work); |
| 1016 | |
| 1017 | compress_file_range(async_cow->inode, async_cow->locked_page, |
| 1018 | async_cow->start, async_cow->end, async_cow, |
| 1019 | &num_added); |
Josef Bacik | 8180ef8 | 2012-06-08 15:16:12 -0400 | [diff] [blame] | 1020 | if (num_added == 0) { |
Josef Bacik | cb77fcd | 2012-06-15 12:19:48 -0600 | [diff] [blame] | 1021 | btrfs_add_delayed_iput(async_cow->inode); |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 1022 | async_cow->inode = NULL; |
Josef Bacik | 8180ef8 | 2012-06-08 15:16:12 -0400 | [diff] [blame] | 1023 | } |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 1024 | } |
| 1025 | |
| 1026 | /* |
| 1027 | * work queue call back to submit previously compressed pages |
| 1028 | */ |
| 1029 | static noinline void async_cow_submit(struct btrfs_work *work) |
| 1030 | { |
| 1031 | struct async_cow *async_cow; |
| 1032 | struct btrfs_root *root; |
| 1033 | unsigned long nr_pages; |
| 1034 | |
| 1035 | async_cow = container_of(work, struct async_cow, work); |
| 1036 | |
| 1037 | root = async_cow->root; |
| 1038 | nr_pages = (async_cow->end - async_cow->start + PAGE_CACHE_SIZE) >> |
| 1039 | PAGE_CACHE_SHIFT; |
| 1040 | |
Josef Bacik | 66657b3 | 2012-08-01 15:36:24 -0400 | [diff] [blame] | 1041 | if (atomic_sub_return(nr_pages, &root->fs_info->async_delalloc_pages) < |
Liu Bo | 287082b | 2012-06-28 04:02:24 -0600 | [diff] [blame] | 1042 | 5 * 1024 * 1024 && |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 1043 | waitqueue_active(&root->fs_info->async_submit_wait)) |
| 1044 | wake_up(&root->fs_info->async_submit_wait); |
| 1045 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1046 | if (async_cow->inode) |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 1047 | submit_compressed_extents(async_cow->inode, async_cow); |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 1048 | } |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 1049 | |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 1050 | static noinline void async_cow_free(struct btrfs_work *work) |
| 1051 | { |
| 1052 | struct async_cow *async_cow; |
| 1053 | async_cow = container_of(work, struct async_cow, work); |
Josef Bacik | 8180ef8 | 2012-06-08 15:16:12 -0400 | [diff] [blame] | 1054 | if (async_cow->inode) |
Josef Bacik | cb77fcd | 2012-06-15 12:19:48 -0600 | [diff] [blame] | 1055 | btrfs_add_delayed_iput(async_cow->inode); |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 1056 | kfree(async_cow); |
| 1057 | } |
| 1058 | |
| 1059 | static int cow_file_range_async(struct inode *inode, struct page *locked_page, |
| 1060 | u64 start, u64 end, int *page_started, |
| 1061 | unsigned long *nr_written) |
| 1062 | { |
| 1063 | struct async_cow *async_cow; |
| 1064 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 1065 | unsigned long nr_pages; |
| 1066 | u64 cur_end; |
Liu Bo | 287082b | 2012-06-28 04:02:24 -0600 | [diff] [blame] | 1067 | int limit = 10 * 1024 * 1024; |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 1068 | |
Chris Mason | a3429ab | 2009-10-08 12:30:20 -0400 | [diff] [blame] | 1069 | clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, EXTENT_LOCKED, |
| 1070 | 1, 0, NULL, GFP_NOFS); |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1071 | while (start < end) { |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 1072 | async_cow = kmalloc(sizeof(*async_cow), GFP_NOFS); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1073 | BUG_ON(!async_cow); /* -ENOMEM */ |
Josef Bacik | 8180ef8 | 2012-06-08 15:16:12 -0400 | [diff] [blame] | 1074 | async_cow->inode = igrab(inode); |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 1075 | async_cow->root = root; |
| 1076 | async_cow->locked_page = locked_page; |
| 1077 | async_cow->start = start; |
| 1078 | |
Christoph Hellwig | 6cbff00 | 2009-04-17 10:37:41 +0200 | [diff] [blame] | 1079 | if (BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS) |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 1080 | cur_end = end; |
| 1081 | else |
| 1082 | cur_end = min(end, start + 512 * 1024 - 1); |
| 1083 | |
| 1084 | async_cow->end = cur_end; |
| 1085 | INIT_LIST_HEAD(&async_cow->extents); |
| 1086 | |
Qu Wenruo | afe3d24 | 2014-02-28 10:46:07 +0800 | [diff] [blame] | 1087 | btrfs_init_work(&async_cow->work, async_cow_start, |
| 1088 | async_cow_submit, async_cow_free); |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 1089 | |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 1090 | nr_pages = (cur_end - start + PAGE_CACHE_SIZE) >> |
| 1091 | PAGE_CACHE_SHIFT; |
| 1092 | atomic_add(nr_pages, &root->fs_info->async_delalloc_pages); |
| 1093 | |
Qu Wenruo | afe3d24 | 2014-02-28 10:46:07 +0800 | [diff] [blame] | 1094 | btrfs_queue_work(root->fs_info->delalloc_workers, |
| 1095 | &async_cow->work); |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 1096 | |
| 1097 | if (atomic_read(&root->fs_info->async_delalloc_pages) > limit) { |
| 1098 | wait_event(root->fs_info->async_submit_wait, |
| 1099 | (atomic_read(&root->fs_info->async_delalloc_pages) < |
| 1100 | limit)); |
| 1101 | } |
| 1102 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1103 | while (atomic_read(&root->fs_info->async_submit_draining) && |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 1104 | atomic_read(&root->fs_info->async_delalloc_pages)) { |
| 1105 | wait_event(root->fs_info->async_submit_wait, |
| 1106 | (atomic_read(&root->fs_info->async_delalloc_pages) == |
| 1107 | 0)); |
| 1108 | } |
| 1109 | |
| 1110 | *nr_written += nr_pages; |
| 1111 | start = cur_end + 1; |
| 1112 | } |
| 1113 | *page_started = 1; |
| 1114 | return 0; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 1115 | } |
| 1116 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1117 | static noinline int csum_exist_in_range(struct btrfs_root *root, |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 1118 | u64 bytenr, u64 num_bytes) |
| 1119 | { |
| 1120 | int ret; |
| 1121 | struct btrfs_ordered_sum *sums; |
| 1122 | LIST_HEAD(list); |
| 1123 | |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 1124 | ret = btrfs_lookup_csums_range(root->fs_info->csum_root, bytenr, |
Arne Jansen | a2de733 | 2011-03-08 14:14:00 +0100 | [diff] [blame] | 1125 | bytenr + num_bytes - 1, &list, 0); |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 1126 | if (ret == 0 && list_empty(&list)) |
| 1127 | return 0; |
| 1128 | |
| 1129 | while (!list_empty(&list)) { |
| 1130 | sums = list_entry(list.next, struct btrfs_ordered_sum, list); |
| 1131 | list_del(&sums->list); |
| 1132 | kfree(sums); |
| 1133 | } |
| 1134 | return 1; |
| 1135 | } |
| 1136 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 1137 | /* |
| 1138 | * when nowcow writeback call back. This checks for snapshots or COW copies |
| 1139 | * of the extents that exist in the file, and COWs the file as required. |
| 1140 | * |
| 1141 | * If no cow copies or snapshots exist, we write directly to the existing |
| 1142 | * blocks on disk |
| 1143 | */ |
Chris Mason | 7f366cf | 2009-03-12 20:12:45 -0400 | [diff] [blame] | 1144 | static noinline int run_delalloc_nocow(struct inode *inode, |
| 1145 | struct page *locked_page, |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 1146 | u64 start, u64 end, int *page_started, int force, |
| 1147 | unsigned long *nr_written) |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 1148 | { |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 1149 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Yan Zheng | 7ea394f | 2008-08-05 13:05:02 -0400 | [diff] [blame] | 1150 | struct btrfs_trans_handle *trans; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 1151 | struct extent_buffer *leaf; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 1152 | struct btrfs_path *path; |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1153 | struct btrfs_file_extent_item *fi; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 1154 | struct btrfs_key found_key; |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1155 | u64 cow_start; |
| 1156 | u64 cur_offset; |
| 1157 | u64 extent_end; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1158 | u64 extent_offset; |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1159 | u64 disk_bytenr; |
| 1160 | u64 num_bytes; |
Josef Bacik | b493968 | 2012-12-03 10:31:19 -0500 | [diff] [blame] | 1161 | u64 disk_num_bytes; |
Josef Bacik | cc95bef | 2013-04-04 14:31:27 -0400 | [diff] [blame] | 1162 | u64 ram_bytes; |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1163 | int extent_type; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1164 | int ret, err; |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1165 | int type; |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1166 | int nocow; |
| 1167 | int check_prev = 1; |
Li Zefan | 82d5902 | 2011-04-20 10:33:24 +0800 | [diff] [blame] | 1168 | bool nolock; |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 1169 | u64 ino = btrfs_ino(inode); |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 1170 | |
| 1171 | path = btrfs_alloc_path(); |
Josef Bacik | 17ca04a | 2012-05-31 15:58:55 -0400 | [diff] [blame] | 1172 | if (!path) { |
Josef Bacik | c2790a2 | 2013-07-29 11:20:47 -0400 | [diff] [blame] | 1173 | extent_clear_unlock_delalloc(inode, start, end, locked_page, |
| 1174 | EXTENT_LOCKED | EXTENT_DELALLOC | |
Josef Bacik | 151a41b | 2013-07-29 13:22:24 -0400 | [diff] [blame] | 1175 | EXTENT_DO_ACCOUNTING | |
| 1176 | EXTENT_DEFRAG, PAGE_UNLOCK | |
Josef Bacik | c2790a2 | 2013-07-29 11:20:47 -0400 | [diff] [blame] | 1177 | PAGE_CLEAR_DIRTY | |
| 1178 | PAGE_SET_WRITEBACK | |
| 1179 | PAGE_END_WRITEBACK); |
Mark Fasheh | d8926bb | 2011-07-13 10:38:47 -0700 | [diff] [blame] | 1180 | return -ENOMEM; |
Josef Bacik | 17ca04a | 2012-05-31 15:58:55 -0400 | [diff] [blame] | 1181 | } |
Li Zefan | 82d5902 | 2011-04-20 10:33:24 +0800 | [diff] [blame] | 1182 | |
Liu Bo | 83eea1f | 2012-07-10 05:28:39 -0600 | [diff] [blame] | 1183 | nolock = btrfs_is_free_space_inode(inode); |
Li Zefan | 82d5902 | 2011-04-20 10:33:24 +0800 | [diff] [blame] | 1184 | |
| 1185 | if (nolock) |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 1186 | trans = btrfs_join_transaction_nolock(root); |
Li Zefan | 82d5902 | 2011-04-20 10:33:24 +0800 | [diff] [blame] | 1187 | else |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 1188 | trans = btrfs_join_transaction(root); |
Chris Mason | ff5714c | 2011-05-28 07:00:39 -0400 | [diff] [blame] | 1189 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1190 | if (IS_ERR(trans)) { |
Josef Bacik | c2790a2 | 2013-07-29 11:20:47 -0400 | [diff] [blame] | 1191 | extent_clear_unlock_delalloc(inode, start, end, locked_page, |
| 1192 | EXTENT_LOCKED | EXTENT_DELALLOC | |
Josef Bacik | 151a41b | 2013-07-29 13:22:24 -0400 | [diff] [blame] | 1193 | EXTENT_DO_ACCOUNTING | |
| 1194 | EXTENT_DEFRAG, PAGE_UNLOCK | |
Josef Bacik | c2790a2 | 2013-07-29 11:20:47 -0400 | [diff] [blame] | 1195 | PAGE_CLEAR_DIRTY | |
| 1196 | PAGE_SET_WRITEBACK | |
| 1197 | PAGE_END_WRITEBACK); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1198 | btrfs_free_path(path); |
| 1199 | return PTR_ERR(trans); |
| 1200 | } |
| 1201 | |
Josef Bacik | 74b2107 | 2011-04-13 12:02:53 -0400 | [diff] [blame] | 1202 | trans->block_rsv = &root->fs_info->delalloc_block_rsv; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 1203 | |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1204 | cow_start = (u64)-1; |
| 1205 | cur_offset = start; |
| 1206 | while (1) { |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 1207 | ret = btrfs_lookup_file_extent(trans, root, path, ino, |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1208 | cur_offset, 0); |
Josef Bacik | d788a34 | 2013-10-25 16:55:08 -0400 | [diff] [blame] | 1209 | if (ret < 0) |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1210 | goto error; |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1211 | if (ret > 0 && path->slots[0] > 0 && check_prev) { |
| 1212 | leaf = path->nodes[0]; |
| 1213 | btrfs_item_key_to_cpu(leaf, &found_key, |
| 1214 | path->slots[0] - 1); |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 1215 | if (found_key.objectid == ino && |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1216 | found_key.type == BTRFS_EXTENT_DATA_KEY) |
| 1217 | path->slots[0]--; |
| 1218 | } |
| 1219 | check_prev = 0; |
| 1220 | next_slot: |
| 1221 | leaf = path->nodes[0]; |
| 1222 | if (path->slots[0] >= btrfs_header_nritems(leaf)) { |
| 1223 | ret = btrfs_next_leaf(root, path); |
Josef Bacik | d788a34 | 2013-10-25 16:55:08 -0400 | [diff] [blame] | 1224 | if (ret < 0) |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1225 | goto error; |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1226 | if (ret > 0) |
| 1227 | break; |
| 1228 | leaf = path->nodes[0]; |
| 1229 | } |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 1230 | |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1231 | nocow = 0; |
| 1232 | disk_bytenr = 0; |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 1233 | num_bytes = 0; |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1234 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 1235 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 1236 | if (found_key.objectid > ino || |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1237 | found_key.type > BTRFS_EXTENT_DATA_KEY || |
| 1238 | found_key.offset > end) |
| 1239 | break; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 1240 | |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1241 | if (found_key.offset > cur_offset) { |
| 1242 | extent_end = found_key.offset; |
Chris Mason | e9061e2 | 2009-10-09 09:57:45 -0400 | [diff] [blame] | 1243 | extent_type = 0; |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1244 | goto out_check; |
| 1245 | } |
Chris Mason | c31f883 | 2008-01-08 15:46:31 -0500 | [diff] [blame] | 1246 | |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1247 | fi = btrfs_item_ptr(leaf, path->slots[0], |
| 1248 | struct btrfs_file_extent_item); |
| 1249 | extent_type = btrfs_file_extent_type(leaf, fi); |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 1250 | |
Josef Bacik | cc95bef | 2013-04-04 14:31:27 -0400 | [diff] [blame] | 1251 | ram_bytes = btrfs_file_extent_ram_bytes(leaf, fi); |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1252 | if (extent_type == BTRFS_FILE_EXTENT_REG || |
| 1253 | extent_type == BTRFS_FILE_EXTENT_PREALLOC) { |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1254 | disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1255 | extent_offset = btrfs_file_extent_offset(leaf, fi); |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1256 | extent_end = found_key.offset + |
| 1257 | btrfs_file_extent_num_bytes(leaf, fi); |
Josef Bacik | b493968 | 2012-12-03 10:31:19 -0500 | [diff] [blame] | 1258 | disk_num_bytes = |
| 1259 | btrfs_file_extent_disk_num_bytes(leaf, fi); |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1260 | if (extent_end <= start) { |
| 1261 | path->slots[0]++; |
| 1262 | goto next_slot; |
| 1263 | } |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 1264 | if (disk_bytenr == 0) |
| 1265 | goto out_check; |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1266 | if (btrfs_file_extent_compression(leaf, fi) || |
| 1267 | btrfs_file_extent_encryption(leaf, fi) || |
| 1268 | btrfs_file_extent_other_encoding(leaf, fi)) |
| 1269 | goto out_check; |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1270 | if (extent_type == BTRFS_FILE_EXTENT_REG && !force) |
| 1271 | goto out_check; |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 1272 | if (btrfs_extent_readonly(root, disk_bytenr)) |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1273 | goto out_check; |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 1274 | if (btrfs_cross_ref_exist(trans, root, ino, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1275 | found_key.offset - |
| 1276 | extent_offset, disk_bytenr)) |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 1277 | goto out_check; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1278 | disk_bytenr += extent_offset; |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 1279 | disk_bytenr += cur_offset - found_key.offset; |
| 1280 | num_bytes = min(end + 1, extent_end) - cur_offset; |
| 1281 | /* |
Wang Shilong | e9894fd | 2014-03-27 11:12:25 +0800 | [diff] [blame] | 1282 | * if there are pending snapshots for this root, |
| 1283 | * we fall into common COW way. |
| 1284 | */ |
| 1285 | if (!nolock) { |
| 1286 | err = btrfs_start_nocow_write(root); |
| 1287 | if (!err) |
| 1288 | goto out_check; |
| 1289 | } |
| 1290 | /* |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 1291 | * force cow if csum exists in the range. |
| 1292 | * this ensure that csum for a given extent are |
| 1293 | * either valid or do not exist. |
| 1294 | */ |
| 1295 | if (csum_exist_in_range(root, disk_bytenr, num_bytes)) |
| 1296 | goto out_check; |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1297 | nocow = 1; |
| 1298 | } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) { |
| 1299 | extent_end = found_key.offset + |
Chris Mason | 514ac8a | 2014-01-03 21:07:00 -0800 | [diff] [blame] | 1300 | btrfs_file_extent_inline_len(leaf, |
| 1301 | path->slots[0], fi); |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1302 | extent_end = ALIGN(extent_end, root->sectorsize); |
| 1303 | } else { |
| 1304 | BUG_ON(1); |
| 1305 | } |
| 1306 | out_check: |
| 1307 | if (extent_end <= start) { |
| 1308 | path->slots[0]++; |
Wang Shilong | e9894fd | 2014-03-27 11:12:25 +0800 | [diff] [blame] | 1309 | if (!nolock && nocow) |
| 1310 | btrfs_end_nocow_write(root); |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1311 | goto next_slot; |
| 1312 | } |
| 1313 | if (!nocow) { |
| 1314 | if (cow_start == (u64)-1) |
| 1315 | cow_start = cur_offset; |
| 1316 | cur_offset = extent_end; |
| 1317 | if (cur_offset > end) |
| 1318 | break; |
| 1319 | path->slots[0]++; |
| 1320 | goto next_slot; |
Yan Zheng | 7ea394f | 2008-08-05 13:05:02 -0400 | [diff] [blame] | 1321 | } |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 1322 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1323 | btrfs_release_path(path); |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1324 | if (cow_start != (u64)-1) { |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 1325 | ret = cow_file_range(inode, locked_page, |
| 1326 | cow_start, found_key.offset - 1, |
| 1327 | page_started, nr_written, 1); |
Wang Shilong | e9894fd | 2014-03-27 11:12:25 +0800 | [diff] [blame] | 1328 | if (ret) { |
| 1329 | if (!nolock && nocow) |
| 1330 | btrfs_end_nocow_write(root); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1331 | goto error; |
Wang Shilong | e9894fd | 2014-03-27 11:12:25 +0800 | [diff] [blame] | 1332 | } |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1333 | cow_start = (u64)-1; |
Yan Zheng | 7ea394f | 2008-08-05 13:05:02 -0400 | [diff] [blame] | 1334 | } |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1335 | |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1336 | if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) { |
| 1337 | struct extent_map *em; |
| 1338 | struct extent_map_tree *em_tree; |
| 1339 | em_tree = &BTRFS_I(inode)->extent_tree; |
David Sterba | 172ddd6 | 2011-04-21 00:48:27 +0200 | [diff] [blame] | 1340 | em = alloc_extent_map(); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1341 | BUG_ON(!em); /* -ENOMEM */ |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1342 | em->start = cur_offset; |
Josef Bacik | 70c8a91 | 2012-10-11 16:54:30 -0400 | [diff] [blame] | 1343 | em->orig_start = found_key.offset - extent_offset; |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1344 | em->len = num_bytes; |
| 1345 | em->block_len = num_bytes; |
| 1346 | em->block_start = disk_bytenr; |
Josef Bacik | b493968 | 2012-12-03 10:31:19 -0500 | [diff] [blame] | 1347 | em->orig_block_len = disk_num_bytes; |
Josef Bacik | cc95bef | 2013-04-04 14:31:27 -0400 | [diff] [blame] | 1348 | em->ram_bytes = ram_bytes; |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1349 | em->bdev = root->fs_info->fs_devices->latest_bdev; |
Josef Bacik | 2ab28f3 | 2012-10-12 15:27:49 -0400 | [diff] [blame] | 1350 | em->mod_start = em->start; |
| 1351 | em->mod_len = em->len; |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1352 | set_bit(EXTENT_FLAG_PINNED, &em->flags); |
Josef Bacik | b11e234 | 2012-12-03 10:58:15 -0500 | [diff] [blame] | 1353 | set_bit(EXTENT_FLAG_FILLING, &em->flags); |
Josef Bacik | 70c8a91 | 2012-10-11 16:54:30 -0400 | [diff] [blame] | 1354 | em->generation = -1; |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1355 | while (1) { |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 1356 | write_lock(&em_tree->lock); |
Josef Bacik | 09a2a8f9 | 2013-04-05 16:51:15 -0400 | [diff] [blame] | 1357 | ret = add_extent_mapping(em_tree, em, 1); |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 1358 | write_unlock(&em_tree->lock); |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1359 | if (ret != -EEXIST) { |
| 1360 | free_extent_map(em); |
| 1361 | break; |
| 1362 | } |
| 1363 | btrfs_drop_extent_cache(inode, em->start, |
| 1364 | em->start + em->len - 1, 0); |
| 1365 | } |
| 1366 | type = BTRFS_ORDERED_PREALLOC; |
| 1367 | } else { |
| 1368 | type = BTRFS_ORDERED_NOCOW; |
| 1369 | } |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1370 | |
| 1371 | ret = btrfs_add_ordered_extent(inode, cur_offset, disk_bytenr, |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1372 | num_bytes, num_bytes, type); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1373 | BUG_ON(ret); /* -ENOMEM */ |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 1374 | |
Yan, Zheng | efa5646 | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 1375 | if (root->root_key.objectid == |
| 1376 | BTRFS_DATA_RELOC_TREE_OBJECTID) { |
| 1377 | ret = btrfs_reloc_clone_csums(inode, cur_offset, |
| 1378 | num_bytes); |
Wang Shilong | e9894fd | 2014-03-27 11:12:25 +0800 | [diff] [blame] | 1379 | if (ret) { |
| 1380 | if (!nolock && nocow) |
| 1381 | btrfs_end_nocow_write(root); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1382 | goto error; |
Wang Shilong | e9894fd | 2014-03-27 11:12:25 +0800 | [diff] [blame] | 1383 | } |
Yan, Zheng | efa5646 | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 1384 | } |
| 1385 | |
Josef Bacik | c2790a2 | 2013-07-29 11:20:47 -0400 | [diff] [blame] | 1386 | extent_clear_unlock_delalloc(inode, cur_offset, |
| 1387 | cur_offset + num_bytes - 1, |
| 1388 | locked_page, EXTENT_LOCKED | |
| 1389 | EXTENT_DELALLOC, PAGE_UNLOCK | |
| 1390 | PAGE_SET_PRIVATE2); |
Wang Shilong | e9894fd | 2014-03-27 11:12:25 +0800 | [diff] [blame] | 1391 | if (!nolock && nocow) |
| 1392 | btrfs_end_nocow_write(root); |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1393 | cur_offset = extent_end; |
| 1394 | if (cur_offset > end) |
| 1395 | break; |
Yan Zheng | 7ea394f | 2008-08-05 13:05:02 -0400 | [diff] [blame] | 1396 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1397 | btrfs_release_path(path); |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1398 | |
Josef Bacik | 17ca04a | 2012-05-31 15:58:55 -0400 | [diff] [blame] | 1399 | if (cur_offset <= end && cow_start == (u64)-1) { |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1400 | cow_start = cur_offset; |
Josef Bacik | 17ca04a | 2012-05-31 15:58:55 -0400 | [diff] [blame] | 1401 | cur_offset = end; |
| 1402 | } |
| 1403 | |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1404 | if (cow_start != (u64)-1) { |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 1405 | ret = cow_file_range(inode, locked_page, cow_start, end, |
| 1406 | page_started, nr_written, 1); |
Josef Bacik | d788a34 | 2013-10-25 16:55:08 -0400 | [diff] [blame] | 1407 | if (ret) |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1408 | goto error; |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 1409 | } |
| 1410 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1411 | error: |
Miao Xie | a698d075 | 2012-09-20 01:51:59 -0600 | [diff] [blame] | 1412 | err = btrfs_end_transaction(trans, root); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1413 | if (!ret) |
| 1414 | ret = err; |
| 1415 | |
Josef Bacik | 17ca04a | 2012-05-31 15:58:55 -0400 | [diff] [blame] | 1416 | if (ret && cur_offset < end) |
Josef Bacik | c2790a2 | 2013-07-29 11:20:47 -0400 | [diff] [blame] | 1417 | extent_clear_unlock_delalloc(inode, cur_offset, end, |
| 1418 | locked_page, EXTENT_LOCKED | |
Josef Bacik | 151a41b | 2013-07-29 13:22:24 -0400 | [diff] [blame] | 1419 | EXTENT_DELALLOC | EXTENT_DEFRAG | |
| 1420 | EXTENT_DO_ACCOUNTING, PAGE_UNLOCK | |
| 1421 | PAGE_CLEAR_DIRTY | |
Josef Bacik | c2790a2 | 2013-07-29 11:20:47 -0400 | [diff] [blame] | 1422 | PAGE_SET_WRITEBACK | |
| 1423 | PAGE_END_WRITEBACK); |
Yan Zheng | 7ea394f | 2008-08-05 13:05:02 -0400 | [diff] [blame] | 1424 | btrfs_free_path(path); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1425 | return ret; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 1426 | } |
| 1427 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 1428 | /* |
| 1429 | * extent_io.c call back to do delayed allocation processing |
| 1430 | */ |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 1431 | static int run_delalloc_range(struct inode *inode, struct page *locked_page, |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 1432 | u64 start, u64 end, int *page_started, |
| 1433 | unsigned long *nr_written) |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 1434 | { |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 1435 | int ret; |
Chris Mason | 7f366cf | 2009-03-12 20:12:45 -0400 | [diff] [blame] | 1436 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Chris Mason | a213501 | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 1437 | |
Josef Bacik | 7ddf5a4 | 2012-06-08 15:26:47 -0400 | [diff] [blame] | 1438 | if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) { |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 1439 | ret = run_delalloc_nocow(inode, locked_page, start, end, |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1440 | page_started, 1, nr_written); |
Josef Bacik | 7ddf5a4 | 2012-06-08 15:26:47 -0400 | [diff] [blame] | 1441 | } else if (BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC) { |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1442 | ret = run_delalloc_nocow(inode, locked_page, start, end, |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1443 | page_started, 0, nr_written); |
Josef Bacik | 7ddf5a4 | 2012-06-08 15:26:47 -0400 | [diff] [blame] | 1444 | } else if (!btrfs_test_opt(root, COMPRESS) && |
| 1445 | !(BTRFS_I(inode)->force_compress) && |
| 1446 | !(BTRFS_I(inode)->flags & BTRFS_INODE_COMPRESS)) { |
Chris Mason | 7f366cf | 2009-03-12 20:12:45 -0400 | [diff] [blame] | 1447 | ret = cow_file_range(inode, locked_page, start, end, |
| 1448 | page_started, nr_written, 1); |
Josef Bacik | 7ddf5a4 | 2012-06-08 15:26:47 -0400 | [diff] [blame] | 1449 | } else { |
| 1450 | set_bit(BTRFS_INODE_HAS_ASYNC_EXTENT, |
| 1451 | &BTRFS_I(inode)->runtime_flags); |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 1452 | ret = cow_file_range_async(inode, locked_page, start, end, |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1453 | page_started, nr_written); |
Josef Bacik | 7ddf5a4 | 2012-06-08 15:26:47 -0400 | [diff] [blame] | 1454 | } |
Chris Mason | b888db2 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 1455 | return ret; |
| 1456 | } |
| 1457 | |
Jeff Mahoney | 1bf8504 | 2011-07-21 16:56:09 +0000 | [diff] [blame] | 1458 | static void btrfs_split_extent_hook(struct inode *inode, |
| 1459 | struct extent_state *orig, u64 split) |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 1460 | { |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 1461 | /* not delalloc, ignore it */ |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 1462 | if (!(orig->state & EXTENT_DELALLOC)) |
Jeff Mahoney | 1bf8504 | 2011-07-21 16:56:09 +0000 | [diff] [blame] | 1463 | return; |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 1464 | |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 1465 | spin_lock(&BTRFS_I(inode)->lock); |
| 1466 | BTRFS_I(inode)->outstanding_extents++; |
| 1467 | spin_unlock(&BTRFS_I(inode)->lock); |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 1468 | } |
| 1469 | |
| 1470 | /* |
| 1471 | * extent_io.c merge_extent_hook, used to track merged delayed allocation |
| 1472 | * extents so we can keep track of new extents that are just merged onto old |
| 1473 | * extents, such as when we are doing sequential writes, so we can properly |
| 1474 | * account for the metadata space we'll need. |
| 1475 | */ |
Jeff Mahoney | 1bf8504 | 2011-07-21 16:56:09 +0000 | [diff] [blame] | 1476 | static void btrfs_merge_extent_hook(struct inode *inode, |
| 1477 | struct extent_state *new, |
| 1478 | struct extent_state *other) |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 1479 | { |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 1480 | /* not delalloc, ignore it */ |
| 1481 | if (!(other->state & EXTENT_DELALLOC)) |
Jeff Mahoney | 1bf8504 | 2011-07-21 16:56:09 +0000 | [diff] [blame] | 1482 | return; |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 1483 | |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 1484 | spin_lock(&BTRFS_I(inode)->lock); |
| 1485 | BTRFS_I(inode)->outstanding_extents--; |
| 1486 | spin_unlock(&BTRFS_I(inode)->lock); |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 1487 | } |
| 1488 | |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 1489 | static void btrfs_add_delalloc_inodes(struct btrfs_root *root, |
| 1490 | struct inode *inode) |
| 1491 | { |
| 1492 | spin_lock(&root->delalloc_lock); |
| 1493 | if (list_empty(&BTRFS_I(inode)->delalloc_inodes)) { |
| 1494 | list_add_tail(&BTRFS_I(inode)->delalloc_inodes, |
| 1495 | &root->delalloc_inodes); |
| 1496 | set_bit(BTRFS_INODE_IN_DELALLOC_LIST, |
| 1497 | &BTRFS_I(inode)->runtime_flags); |
| 1498 | root->nr_delalloc_inodes++; |
| 1499 | if (root->nr_delalloc_inodes == 1) { |
| 1500 | spin_lock(&root->fs_info->delalloc_root_lock); |
| 1501 | BUG_ON(!list_empty(&root->delalloc_root)); |
| 1502 | list_add_tail(&root->delalloc_root, |
| 1503 | &root->fs_info->delalloc_roots); |
| 1504 | spin_unlock(&root->fs_info->delalloc_root_lock); |
| 1505 | } |
| 1506 | } |
| 1507 | spin_unlock(&root->delalloc_lock); |
| 1508 | } |
| 1509 | |
| 1510 | static void btrfs_del_delalloc_inode(struct btrfs_root *root, |
| 1511 | struct inode *inode) |
| 1512 | { |
| 1513 | spin_lock(&root->delalloc_lock); |
| 1514 | if (!list_empty(&BTRFS_I(inode)->delalloc_inodes)) { |
| 1515 | list_del_init(&BTRFS_I(inode)->delalloc_inodes); |
| 1516 | clear_bit(BTRFS_INODE_IN_DELALLOC_LIST, |
| 1517 | &BTRFS_I(inode)->runtime_flags); |
| 1518 | root->nr_delalloc_inodes--; |
| 1519 | if (!root->nr_delalloc_inodes) { |
| 1520 | spin_lock(&root->fs_info->delalloc_root_lock); |
| 1521 | BUG_ON(list_empty(&root->delalloc_root)); |
| 1522 | list_del_init(&root->delalloc_root); |
| 1523 | spin_unlock(&root->fs_info->delalloc_root_lock); |
| 1524 | } |
| 1525 | } |
| 1526 | spin_unlock(&root->delalloc_lock); |
| 1527 | } |
| 1528 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 1529 | /* |
| 1530 | * extent_io.c set_bit_hook, used to track delayed allocation |
| 1531 | * bytes in this file, and to maintain the list of inodes that |
| 1532 | * have pending delalloc work to be done. |
| 1533 | */ |
Jeff Mahoney | 1bf8504 | 2011-07-21 16:56:09 +0000 | [diff] [blame] | 1534 | static void btrfs_set_bit_hook(struct inode *inode, |
David Sterba | 4107488 | 2013-04-29 13:38:46 +0000 | [diff] [blame] | 1535 | struct extent_state *state, unsigned long *bits) |
Chris Mason | 291d673 | 2008-01-29 15:55:23 -0500 | [diff] [blame] | 1536 | { |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 1537 | |
Chris Mason | 75eff68 | 2008-12-15 15:54:40 -0500 | [diff] [blame] | 1538 | /* |
| 1539 | * set_bit and clear bit hooks normally require _irqsave/restore |
Sergei Trofimovich | 27160b6 | 2011-05-20 20:20:32 +0000 | [diff] [blame] | 1540 | * but in this case, we are only testing for the DELALLOC |
Chris Mason | 75eff68 | 2008-12-15 15:54:40 -0500 | [diff] [blame] | 1541 | * bit, which is only set or cleared with irqs on |
| 1542 | */ |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 1543 | if (!(state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) { |
Chris Mason | 291d673 | 2008-01-29 15:55:23 -0500 | [diff] [blame] | 1544 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 1545 | u64 len = state->end + 1 - state->start; |
Liu Bo | 83eea1f | 2012-07-10 05:28:39 -0600 | [diff] [blame] | 1546 | bool do_list = !btrfs_is_free_space_inode(inode); |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 1547 | |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 1548 | if (*bits & EXTENT_FIRST_DELALLOC) { |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 1549 | *bits &= ~EXTENT_FIRST_DELALLOC; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 1550 | } else { |
| 1551 | spin_lock(&BTRFS_I(inode)->lock); |
| 1552 | BTRFS_I(inode)->outstanding_extents++; |
| 1553 | spin_unlock(&BTRFS_I(inode)->lock); |
| 1554 | } |
Josef Bacik | 287a0ab | 2010-03-19 18:07:23 +0000 | [diff] [blame] | 1555 | |
Miao Xie | 963d678 | 2013-01-29 10:10:51 +0000 | [diff] [blame] | 1556 | __percpu_counter_add(&root->fs_info->delalloc_bytes, len, |
| 1557 | root->fs_info->delalloc_batch); |
Miao Xie | df0af1a | 2013-01-29 10:11:59 +0000 | [diff] [blame] | 1558 | spin_lock(&BTRFS_I(inode)->lock); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 1559 | BTRFS_I(inode)->delalloc_bytes += len; |
Miao Xie | df0af1a | 2013-01-29 10:11:59 +0000 | [diff] [blame] | 1560 | if (do_list && !test_bit(BTRFS_INODE_IN_DELALLOC_LIST, |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 1561 | &BTRFS_I(inode)->runtime_flags)) |
| 1562 | btrfs_add_delalloc_inodes(root, inode); |
Miao Xie | df0af1a | 2013-01-29 10:11:59 +0000 | [diff] [blame] | 1563 | spin_unlock(&BTRFS_I(inode)->lock); |
Chris Mason | 291d673 | 2008-01-29 15:55:23 -0500 | [diff] [blame] | 1564 | } |
Chris Mason | 291d673 | 2008-01-29 15:55:23 -0500 | [diff] [blame] | 1565 | } |
| 1566 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 1567 | /* |
| 1568 | * extent_io.c clear_bit_hook, see set_bit_hook for why |
| 1569 | */ |
Jeff Mahoney | 1bf8504 | 2011-07-21 16:56:09 +0000 | [diff] [blame] | 1570 | static void btrfs_clear_bit_hook(struct inode *inode, |
David Sterba | 4107488 | 2013-04-29 13:38:46 +0000 | [diff] [blame] | 1571 | struct extent_state *state, |
| 1572 | unsigned long *bits) |
Chris Mason | 291d673 | 2008-01-29 15:55:23 -0500 | [diff] [blame] | 1573 | { |
Chris Mason | 75eff68 | 2008-12-15 15:54:40 -0500 | [diff] [blame] | 1574 | /* |
| 1575 | * set_bit and clear bit hooks normally require _irqsave/restore |
Sergei Trofimovich | 27160b6 | 2011-05-20 20:20:32 +0000 | [diff] [blame] | 1576 | * but in this case, we are only testing for the DELALLOC |
Chris Mason | 75eff68 | 2008-12-15 15:54:40 -0500 | [diff] [blame] | 1577 | * bit, which is only set or cleared with irqs on |
| 1578 | */ |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 1579 | if ((state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) { |
Chris Mason | 291d673 | 2008-01-29 15:55:23 -0500 | [diff] [blame] | 1580 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 1581 | u64 len = state->end + 1 - state->start; |
Liu Bo | 83eea1f | 2012-07-10 05:28:39 -0600 | [diff] [blame] | 1582 | bool do_list = !btrfs_is_free_space_inode(inode); |
Chris Mason | bcbfce8 | 2008-04-22 13:26:47 -0400 | [diff] [blame] | 1583 | |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 1584 | if (*bits & EXTENT_FIRST_DELALLOC) { |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 1585 | *bits &= ~EXTENT_FIRST_DELALLOC; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 1586 | } else if (!(*bits & EXTENT_DO_ACCOUNTING)) { |
| 1587 | spin_lock(&BTRFS_I(inode)->lock); |
| 1588 | BTRFS_I(inode)->outstanding_extents--; |
| 1589 | spin_unlock(&BTRFS_I(inode)->lock); |
| 1590 | } |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 1591 | |
Josef Bacik | b6d08f0 | 2013-09-27 14:57:43 -0400 | [diff] [blame] | 1592 | /* |
| 1593 | * We don't reserve metadata space for space cache inodes so we |
| 1594 | * don't need to call dellalloc_release_metadata if there is an |
| 1595 | * error. |
| 1596 | */ |
| 1597 | if (*bits & EXTENT_DO_ACCOUNTING && |
| 1598 | root != root->fs_info->tree_root) |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 1599 | btrfs_delalloc_release_metadata(inode, len); |
| 1600 | |
Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 1601 | if (root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID |
Josef Bacik | 7ee9e44 | 2013-06-21 16:37:03 -0400 | [diff] [blame] | 1602 | && do_list && !(state->state & EXTENT_NORESERVE)) |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 1603 | btrfs_free_reserved_data_space(inode, len); |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 1604 | |
Miao Xie | 963d678 | 2013-01-29 10:10:51 +0000 | [diff] [blame] | 1605 | __percpu_counter_add(&root->fs_info->delalloc_bytes, -len, |
| 1606 | root->fs_info->delalloc_batch); |
Miao Xie | df0af1a | 2013-01-29 10:11:59 +0000 | [diff] [blame] | 1607 | spin_lock(&BTRFS_I(inode)->lock); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 1608 | BTRFS_I(inode)->delalloc_bytes -= len; |
Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 1609 | if (do_list && BTRFS_I(inode)->delalloc_bytes == 0 && |
Miao Xie | df0af1a | 2013-01-29 10:11:59 +0000 | [diff] [blame] | 1610 | test_bit(BTRFS_INODE_IN_DELALLOC_LIST, |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 1611 | &BTRFS_I(inode)->runtime_flags)) |
| 1612 | btrfs_del_delalloc_inode(root, inode); |
Miao Xie | df0af1a | 2013-01-29 10:11:59 +0000 | [diff] [blame] | 1613 | spin_unlock(&BTRFS_I(inode)->lock); |
Chris Mason | 291d673 | 2008-01-29 15:55:23 -0500 | [diff] [blame] | 1614 | } |
Chris Mason | 291d673 | 2008-01-29 15:55:23 -0500 | [diff] [blame] | 1615 | } |
| 1616 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 1617 | /* |
| 1618 | * extent_io.c merge_bio_hook, this must check the chunk tree to make sure |
| 1619 | * we don't create bios that span stripes or chunks |
| 1620 | */ |
David Woodhouse | 64a1670 | 2009-07-15 23:29:37 +0100 | [diff] [blame] | 1621 | int btrfs_merge_bio_hook(int rw, struct page *page, unsigned long offset, |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 1622 | size_t size, struct bio *bio, |
| 1623 | unsigned long bio_flags) |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1624 | { |
| 1625 | struct btrfs_root *root = BTRFS_I(page->mapping->host)->root; |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 1626 | u64 logical = (u64)bio->bi_iter.bi_sector << 9; |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1627 | u64 length = 0; |
| 1628 | u64 map_length; |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1629 | int ret; |
| 1630 | |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 1631 | if (bio_flags & EXTENT_BIO_COMPRESSED) |
| 1632 | return 0; |
| 1633 | |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 1634 | length = bio->bi_iter.bi_size; |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1635 | map_length = length; |
David Woodhouse | 64a1670 | 2009-07-15 23:29:37 +0100 | [diff] [blame] | 1636 | ret = btrfs_map_block(root->fs_info, rw, logical, |
Chris Mason | f188591 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 1637 | &map_length, NULL, 0); |
Stefan Behrens | 3ec706c | 2012-11-05 15:46:42 +0100 | [diff] [blame] | 1638 | /* Will always return 0 with map_multi == NULL */ |
Jeff Mahoney | 3444a97 | 2011-10-03 23:23:13 -0400 | [diff] [blame] | 1639 | BUG_ON(ret < 0); |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1640 | if (map_length < length + size) |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1641 | return 1; |
Jeff Mahoney | 3444a97 | 2011-10-03 23:23:13 -0400 | [diff] [blame] | 1642 | return 0; |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 1643 | } |
| 1644 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 1645 | /* |
| 1646 | * in order to insert checksums into the metadata in large chunks, |
| 1647 | * we wait until bio submission time. All the pages in the bio are |
| 1648 | * checksummed and sums are attached onto the ordered extent record. |
| 1649 | * |
| 1650 | * At IO completion time the cums attached on the ordered extent record |
| 1651 | * are inserted into the btree |
| 1652 | */ |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1653 | static int __btrfs_submit_bio_start(struct inode *inode, int rw, |
| 1654 | struct bio *bio, int mirror_num, |
Chris Mason | eaf25d9 | 2010-05-25 09:48:28 -0400 | [diff] [blame] | 1655 | unsigned long bio_flags, |
| 1656 | u64 bio_offset) |
Chris Mason | 065631f | 2008-02-20 12:07:25 -0500 | [diff] [blame] | 1657 | { |
Chris Mason | 065631f | 2008-02-20 12:07:25 -0500 | [diff] [blame] | 1658 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Chris Mason | 065631f | 2008-02-20 12:07:25 -0500 | [diff] [blame] | 1659 | int ret = 0; |
Chris Mason | e015640 | 2008-04-16 11:15:20 -0400 | [diff] [blame] | 1660 | |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 1661 | ret = btrfs_csum_one_bio(root, inode, bio, 0, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1662 | BUG_ON(ret); /* -ENOMEM */ |
Chris Mason | 4a69a41 | 2008-11-06 22:03:00 -0500 | [diff] [blame] | 1663 | return 0; |
| 1664 | } |
Chris Mason | e015640 | 2008-04-16 11:15:20 -0400 | [diff] [blame] | 1665 | |
Chris Mason | 4a69a41 | 2008-11-06 22:03:00 -0500 | [diff] [blame] | 1666 | /* |
| 1667 | * in order to insert checksums into the metadata in large chunks, |
| 1668 | * we wait until bio submission time. All the pages in the bio are |
| 1669 | * checksummed and sums are attached onto the ordered extent record. |
| 1670 | * |
| 1671 | * At IO completion time the cums attached on the ordered extent record |
| 1672 | * are inserted into the btree |
| 1673 | */ |
Christoph Hellwig | b295086 | 2008-12-02 09:54:17 -0500 | [diff] [blame] | 1674 | 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] | 1675 | int mirror_num, unsigned long bio_flags, |
| 1676 | u64 bio_offset) |
Chris Mason | 4a69a41 | 2008-11-06 22:03:00 -0500 | [diff] [blame] | 1677 | { |
| 1678 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Stefan Behrens | 6189192 | 2012-11-05 18:51:52 +0100 | [diff] [blame] | 1679 | int ret; |
| 1680 | |
| 1681 | ret = btrfs_map_bio(root, rw, bio, mirror_num, 1); |
| 1682 | if (ret) |
| 1683 | bio_endio(bio, ret); |
| 1684 | return ret; |
Chris Mason | 44b8bd7 | 2008-04-16 11:14:51 -0400 | [diff] [blame] | 1685 | } |
| 1686 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 1687 | /* |
Chris Mason | cad321a | 2008-12-17 14:51:42 -0500 | [diff] [blame] | 1688 | * extent_io.c submission hook. This does the right thing for csum calculation |
| 1689 | * on write, or reading the csums from the tree before a read |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 1690 | */ |
Christoph Hellwig | b295086 | 2008-12-02 09:54:17 -0500 | [diff] [blame] | 1691 | 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] | 1692 | int mirror_num, unsigned long bio_flags, |
| 1693 | u64 bio_offset) |
Chris Mason | 44b8bd7 | 2008-04-16 11:14:51 -0400 | [diff] [blame] | 1694 | { |
| 1695 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 1696 | int ret = 0; |
Chris Mason | 19b9bdb | 2008-10-30 14:23:13 -0400 | [diff] [blame] | 1697 | int skip_sum; |
Jeff Mahoney | 0417341 | 2011-10-03 23:23:12 -0400 | [diff] [blame] | 1698 | int metadata = 0; |
Josef Bacik | b812ce2 | 2012-11-16 13:56:32 -0500 | [diff] [blame] | 1699 | int async = !atomic_read(&BTRFS_I(inode)->sync_writers); |
Chris Mason | 44b8bd7 | 2008-04-16 11:14:51 -0400 | [diff] [blame] | 1700 | |
Christoph Hellwig | 6cbff00 | 2009-04-17 10:37:41 +0200 | [diff] [blame] | 1701 | skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM; |
Chris Mason | cad321a | 2008-12-17 14:51:42 -0500 | [diff] [blame] | 1702 | |
Liu Bo | 83eea1f | 2012-07-10 05:28:39 -0600 | [diff] [blame] | 1703 | if (btrfs_is_free_space_inode(inode)) |
Jeff Mahoney | 0417341 | 2011-10-03 23:23:12 -0400 | [diff] [blame] | 1704 | metadata = 2; |
| 1705 | |
Christoph Hellwig | 7b6d91d | 2010-08-07 18:20:39 +0200 | [diff] [blame] | 1706 | if (!(rw & REQ_WRITE)) { |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 1707 | ret = btrfs_bio_wq_end_io(root->fs_info, bio, metadata); |
| 1708 | if (ret) |
Stefan Behrens | 6189192 | 2012-11-05 18:51:52 +0100 | [diff] [blame] | 1709 | goto out; |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 1710 | |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 1711 | if (bio_flags & EXTENT_BIO_COMPRESSED) { |
Stefan Behrens | 6189192 | 2012-11-05 18:51:52 +0100 | [diff] [blame] | 1712 | ret = btrfs_submit_compressed_read(inode, bio, |
| 1713 | mirror_num, |
| 1714 | bio_flags); |
| 1715 | goto out; |
Tsutomu Itoh | c2db107 | 2011-03-01 06:48:31 +0000 | [diff] [blame] | 1716 | } else if (!skip_sum) { |
| 1717 | ret = btrfs_lookup_bio_sums(root, inode, bio, NULL); |
| 1718 | if (ret) |
Stefan Behrens | 6189192 | 2012-11-05 18:51:52 +0100 | [diff] [blame] | 1719 | goto out; |
Tsutomu Itoh | c2db107 | 2011-03-01 06:48:31 +0000 | [diff] [blame] | 1720 | } |
Chris Mason | 4d1b5fb | 2008-08-20 09:44:52 -0400 | [diff] [blame] | 1721 | goto mapit; |
Josef Bacik | b812ce2 | 2012-11-16 13:56:32 -0500 | [diff] [blame] | 1722 | } else if (async && !skip_sum) { |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 1723 | /* csum items have already been cloned */ |
| 1724 | if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID) |
| 1725 | goto mapit; |
Chris Mason | 19b9bdb | 2008-10-30 14:23:13 -0400 | [diff] [blame] | 1726 | /* we're doing a write, do the async checksumming */ |
Stefan Behrens | 6189192 | 2012-11-05 18:51:52 +0100 | [diff] [blame] | 1727 | ret = btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info, |
Chris Mason | 44b8bd7 | 2008-04-16 11:14:51 -0400 | [diff] [blame] | 1728 | inode, rw, bio, mirror_num, |
Chris Mason | eaf25d9 | 2010-05-25 09:48:28 -0400 | [diff] [blame] | 1729 | bio_flags, bio_offset, |
| 1730 | __btrfs_submit_bio_start, |
Chris Mason | 4a69a41 | 2008-11-06 22:03:00 -0500 | [diff] [blame] | 1731 | __btrfs_submit_bio_done); |
Stefan Behrens | 6189192 | 2012-11-05 18:51:52 +0100 | [diff] [blame] | 1732 | goto out; |
Josef Bacik | b812ce2 | 2012-11-16 13:56:32 -0500 | [diff] [blame] | 1733 | } else if (!skip_sum) { |
| 1734 | ret = btrfs_csum_one_bio(root, inode, bio, 0, 0); |
| 1735 | if (ret) |
| 1736 | goto out; |
Chris Mason | 19b9bdb | 2008-10-30 14:23:13 -0400 | [diff] [blame] | 1737 | } |
| 1738 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 1739 | mapit: |
Stefan Behrens | 6189192 | 2012-11-05 18:51:52 +0100 | [diff] [blame] | 1740 | ret = btrfs_map_bio(root, rw, bio, mirror_num, 0); |
| 1741 | |
| 1742 | out: |
| 1743 | if (ret < 0) |
| 1744 | bio_endio(bio, ret); |
| 1745 | return ret; |
Chris Mason | 065631f | 2008-02-20 12:07:25 -0500 | [diff] [blame] | 1746 | } |
Chris Mason | 6885f30 | 2008-02-20 16:11:05 -0500 | [diff] [blame] | 1747 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 1748 | /* |
| 1749 | * given a list of ordered sums record them in the inode. This happens |
| 1750 | * at IO completion time based on sums calculated at bio submission time. |
| 1751 | */ |
Chris Mason | ba1da2f | 2008-07-17 12:54:15 -0400 | [diff] [blame] | 1752 | static noinline int add_pending_csums(struct btrfs_trans_handle *trans, |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 1753 | struct inode *inode, u64 file_offset, |
| 1754 | struct list_head *list) |
| 1755 | { |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 1756 | struct btrfs_ordered_sum *sum; |
| 1757 | |
Qinghuang Feng | c6e3087 | 2009-01-21 10:59:08 -0500 | [diff] [blame] | 1758 | list_for_each_entry(sum, list, list) { |
Miao Xie | 39847c4 | 2013-03-28 08:08:20 +0000 | [diff] [blame] | 1759 | trans->adding_csums = 1; |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 1760 | btrfs_csum_file_blocks(trans, |
| 1761 | BTRFS_I(inode)->root->fs_info->csum_root, sum); |
Miao Xie | 39847c4 | 2013-03-28 08:08:20 +0000 | [diff] [blame] | 1762 | trans->adding_csums = 0; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 1763 | } |
| 1764 | return 0; |
| 1765 | } |
| 1766 | |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 1767 | int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end, |
| 1768 | struct extent_state **cached_state) |
Chris Mason | ea8c281 | 2008-08-04 23:17:27 -0400 | [diff] [blame] | 1769 | { |
Julia Lawall | 6c1500f | 2012-11-03 20:30:18 +0000 | [diff] [blame] | 1770 | WARN_ON((end & (PAGE_CACHE_SIZE - 1)) == 0); |
Chris Mason | ea8c281 | 2008-08-04 23:17:27 -0400 | [diff] [blame] | 1771 | return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end, |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 1772 | cached_state, GFP_NOFS); |
Chris Mason | ea8c281 | 2008-08-04 23:17:27 -0400 | [diff] [blame] | 1773 | } |
| 1774 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 1775 | /* see btrfs_writepage_start_hook for details on why this is required */ |
Chris Mason | 247e743 | 2008-07-17 12:53:51 -0400 | [diff] [blame] | 1776 | struct btrfs_writepage_fixup { |
| 1777 | struct page *page; |
| 1778 | struct btrfs_work work; |
| 1779 | }; |
| 1780 | |
Christoph Hellwig | b295086 | 2008-12-02 09:54:17 -0500 | [diff] [blame] | 1781 | static void btrfs_writepage_fixup_worker(struct btrfs_work *work) |
Chris Mason | 247e743 | 2008-07-17 12:53:51 -0400 | [diff] [blame] | 1782 | { |
| 1783 | struct btrfs_writepage_fixup *fixup; |
| 1784 | struct btrfs_ordered_extent *ordered; |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 1785 | struct extent_state *cached_state = NULL; |
Chris Mason | 247e743 | 2008-07-17 12:53:51 -0400 | [diff] [blame] | 1786 | struct page *page; |
| 1787 | struct inode *inode; |
| 1788 | u64 page_start; |
| 1789 | u64 page_end; |
Jeff Mahoney | 87826df | 2012-02-15 16:23:57 +0100 | [diff] [blame] | 1790 | int ret; |
Chris Mason | 247e743 | 2008-07-17 12:53:51 -0400 | [diff] [blame] | 1791 | |
| 1792 | fixup = container_of(work, struct btrfs_writepage_fixup, work); |
| 1793 | page = fixup->page; |
Chris Mason | 4a09675 | 2008-07-21 10:29:44 -0400 | [diff] [blame] | 1794 | again: |
Chris Mason | 247e743 | 2008-07-17 12:53:51 -0400 | [diff] [blame] | 1795 | lock_page(page); |
| 1796 | if (!page->mapping || !PageDirty(page) || !PageChecked(page)) { |
| 1797 | ClearPageChecked(page); |
| 1798 | goto out_page; |
| 1799 | } |
| 1800 | |
| 1801 | inode = page->mapping->host; |
| 1802 | page_start = page_offset(page); |
| 1803 | page_end = page_offset(page) + PAGE_CACHE_SIZE - 1; |
| 1804 | |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 1805 | 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] | 1806 | &cached_state); |
Chris Mason | 4a09675 | 2008-07-21 10:29:44 -0400 | [diff] [blame] | 1807 | |
| 1808 | /* already ordered? We're done */ |
Chris Mason | 8b62b72 | 2009-09-02 16:53:46 -0400 | [diff] [blame] | 1809 | if (PagePrivate2(page)) |
Chris Mason | 247e743 | 2008-07-17 12:53:51 -0400 | [diff] [blame] | 1810 | goto out; |
Chris Mason | 4a09675 | 2008-07-21 10:29:44 -0400 | [diff] [blame] | 1811 | |
| 1812 | ordered = btrfs_lookup_ordered_extent(inode, page_start); |
| 1813 | if (ordered) { |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 1814 | unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start, |
| 1815 | page_end, &cached_state, GFP_NOFS); |
Chris Mason | 4a09675 | 2008-07-21 10:29:44 -0400 | [diff] [blame] | 1816 | unlock_page(page); |
| 1817 | btrfs_start_ordered_extent(inode, ordered, 1); |
Jeff Mahoney | 87826df | 2012-02-15 16:23:57 +0100 | [diff] [blame] | 1818 | btrfs_put_ordered_extent(ordered); |
Chris Mason | 4a09675 | 2008-07-21 10:29:44 -0400 | [diff] [blame] | 1819 | goto again; |
| 1820 | } |
Chris Mason | 247e743 | 2008-07-17 12:53:51 -0400 | [diff] [blame] | 1821 | |
Jeff Mahoney | 87826df | 2012-02-15 16:23:57 +0100 | [diff] [blame] | 1822 | ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE); |
| 1823 | if (ret) { |
| 1824 | mapping_set_error(page->mapping, ret); |
| 1825 | end_extent_writepage(page, ret, page_start, page_end); |
| 1826 | ClearPageChecked(page); |
| 1827 | goto out; |
| 1828 | } |
| 1829 | |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 1830 | btrfs_set_extent_delalloc(inode, page_start, page_end, &cached_state); |
Chris Mason | 247e743 | 2008-07-17 12:53:51 -0400 | [diff] [blame] | 1831 | ClearPageChecked(page); |
Jeff Mahoney | 87826df | 2012-02-15 16:23:57 +0100 | [diff] [blame] | 1832 | set_page_dirty(page); |
Chris Mason | 247e743 | 2008-07-17 12:53:51 -0400 | [diff] [blame] | 1833 | out: |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 1834 | unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start, page_end, |
| 1835 | &cached_state, GFP_NOFS); |
Chris Mason | 247e743 | 2008-07-17 12:53:51 -0400 | [diff] [blame] | 1836 | out_page: |
| 1837 | unlock_page(page); |
| 1838 | page_cache_release(page); |
Miao Xie | b897abe | 2011-01-26 16:19:22 +0800 | [diff] [blame] | 1839 | kfree(fixup); |
Chris Mason | 247e743 | 2008-07-17 12:53:51 -0400 | [diff] [blame] | 1840 | } |
| 1841 | |
| 1842 | /* |
| 1843 | * There are a few paths in the higher layers of the kernel that directly |
| 1844 | * set the page dirty bit without asking the filesystem if it is a |
| 1845 | * good idea. This causes problems because we want to make sure COW |
| 1846 | * properly happens and the data=ordered rules are followed. |
| 1847 | * |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 1848 | * 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] | 1849 | * hasn't been properly setup for IO. We kick off an async process |
| 1850 | * to fix it up. The async helper will wait for ordered extents, set |
| 1851 | * the delalloc bit and make it safe to write the page. |
| 1852 | */ |
Christoph Hellwig | b295086 | 2008-12-02 09:54:17 -0500 | [diff] [blame] | 1853 | 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] | 1854 | { |
| 1855 | struct inode *inode = page->mapping->host; |
| 1856 | struct btrfs_writepage_fixup *fixup; |
| 1857 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Chris Mason | 247e743 | 2008-07-17 12:53:51 -0400 | [diff] [blame] | 1858 | |
Chris Mason | 8b62b72 | 2009-09-02 16:53:46 -0400 | [diff] [blame] | 1859 | /* this page is properly in the ordered list */ |
| 1860 | if (TestClearPagePrivate2(page)) |
Chris Mason | 247e743 | 2008-07-17 12:53:51 -0400 | [diff] [blame] | 1861 | return 0; |
| 1862 | |
| 1863 | if (PageChecked(page)) |
| 1864 | return -EAGAIN; |
| 1865 | |
| 1866 | fixup = kzalloc(sizeof(*fixup), GFP_NOFS); |
| 1867 | if (!fixup) |
| 1868 | return -EAGAIN; |
Chris Mason | f421950 | 2008-07-22 11:18:09 -0400 | [diff] [blame] | 1869 | |
Chris Mason | 247e743 | 2008-07-17 12:53:51 -0400 | [diff] [blame] | 1870 | SetPageChecked(page); |
| 1871 | page_cache_get(page); |
Qu Wenruo | dc6e320 | 2014-02-28 10:46:14 +0800 | [diff] [blame] | 1872 | btrfs_init_work(&fixup->work, btrfs_writepage_fixup_worker, NULL, NULL); |
Chris Mason | 247e743 | 2008-07-17 12:53:51 -0400 | [diff] [blame] | 1873 | fixup->page = page; |
Qu Wenruo | dc6e320 | 2014-02-28 10:46:14 +0800 | [diff] [blame] | 1874 | btrfs_queue_work(root->fs_info->fixup_workers, &fixup->work); |
Jeff Mahoney | 87826df | 2012-02-15 16:23:57 +0100 | [diff] [blame] | 1875 | return -EBUSY; |
Chris Mason | 247e743 | 2008-07-17 12:53:51 -0400 | [diff] [blame] | 1876 | } |
| 1877 | |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1878 | static int insert_reserved_file_extent(struct btrfs_trans_handle *trans, |
| 1879 | struct inode *inode, u64 file_pos, |
| 1880 | u64 disk_bytenr, u64 disk_num_bytes, |
| 1881 | u64 num_bytes, u64 ram_bytes, |
| 1882 | u8 compression, u8 encryption, |
| 1883 | u16 other_encoding, int extent_type) |
| 1884 | { |
| 1885 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 1886 | struct btrfs_file_extent_item *fi; |
| 1887 | struct btrfs_path *path; |
| 1888 | struct extent_buffer *leaf; |
| 1889 | struct btrfs_key ins; |
Filipe David Borba Manana | 1acae57 | 2014-01-07 11:42:27 +0000 | [diff] [blame] | 1890 | int extent_inserted = 0; |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1891 | int ret; |
| 1892 | |
| 1893 | path = btrfs_alloc_path(); |
Mark Fasheh | d8926bb | 2011-07-13 10:38:47 -0700 | [diff] [blame] | 1894 | if (!path) |
| 1895 | return -ENOMEM; |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1896 | |
Chris Mason | a1ed835 | 2009-09-11 12:27:37 -0400 | [diff] [blame] | 1897 | /* |
| 1898 | * we may be replacing one extent in the tree with another. |
| 1899 | * The new extent is pinned in the extent map, and we don't want |
| 1900 | * to drop it from the cache until it is completely in the btree. |
| 1901 | * |
| 1902 | * So, tell btrfs_drop_extents to leave this extent in the cache. |
| 1903 | * the caller is expected to unpin it and allow it to be merged |
| 1904 | * with the others. |
| 1905 | */ |
Filipe David Borba Manana | 1acae57 | 2014-01-07 11:42:27 +0000 | [diff] [blame] | 1906 | ret = __btrfs_drop_extents(trans, root, inode, path, file_pos, |
| 1907 | file_pos + num_bytes, NULL, 0, |
| 1908 | 1, sizeof(*fi), &extent_inserted); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1909 | if (ret) |
| 1910 | goto out; |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1911 | |
Filipe David Borba Manana | 1acae57 | 2014-01-07 11:42:27 +0000 | [diff] [blame] | 1912 | if (!extent_inserted) { |
| 1913 | ins.objectid = btrfs_ino(inode); |
| 1914 | ins.offset = file_pos; |
| 1915 | ins.type = BTRFS_EXTENT_DATA_KEY; |
| 1916 | |
| 1917 | path->leave_spinning = 1; |
| 1918 | ret = btrfs_insert_empty_item(trans, root, path, &ins, |
| 1919 | sizeof(*fi)); |
| 1920 | if (ret) |
| 1921 | goto out; |
| 1922 | } |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1923 | leaf = path->nodes[0]; |
| 1924 | fi = btrfs_item_ptr(leaf, path->slots[0], |
| 1925 | struct btrfs_file_extent_item); |
| 1926 | btrfs_set_file_extent_generation(leaf, fi, trans->transid); |
| 1927 | btrfs_set_file_extent_type(leaf, fi, extent_type); |
| 1928 | btrfs_set_file_extent_disk_bytenr(leaf, fi, disk_bytenr); |
| 1929 | btrfs_set_file_extent_disk_num_bytes(leaf, fi, disk_num_bytes); |
| 1930 | btrfs_set_file_extent_offset(leaf, fi, 0); |
| 1931 | btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes); |
| 1932 | btrfs_set_file_extent_ram_bytes(leaf, fi, ram_bytes); |
| 1933 | btrfs_set_file_extent_compression(leaf, fi, compression); |
| 1934 | btrfs_set_file_extent_encryption(leaf, fi, encryption); |
| 1935 | btrfs_set_file_extent_other_encoding(leaf, fi, other_encoding); |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 1936 | |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1937 | btrfs_mark_buffer_dirty(leaf); |
Josef Bacik | ce19533 | 2012-09-25 15:26:16 -0400 | [diff] [blame] | 1938 | btrfs_release_path(path); |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1939 | |
| 1940 | inode_add_bytes(inode, num_bytes); |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1941 | |
| 1942 | ins.objectid = disk_bytenr; |
| 1943 | ins.offset = disk_num_bytes; |
| 1944 | ins.type = BTRFS_EXTENT_ITEM_KEY; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1945 | ret = btrfs_alloc_reserved_file_extent(trans, root, |
| 1946 | root->root_key.objectid, |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 1947 | btrfs_ino(inode), file_pos, &ins); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1948 | out: |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1949 | btrfs_free_path(path); |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 1950 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1951 | return ret; |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 1952 | } |
| 1953 | |
Liu Bo | 38c227d | 2013-01-29 03:18:40 +0000 | [diff] [blame] | 1954 | /* snapshot-aware defrag */ |
| 1955 | struct sa_defrag_extent_backref { |
| 1956 | struct rb_node node; |
| 1957 | struct old_sa_defrag_extent *old; |
| 1958 | u64 root_id; |
| 1959 | u64 inum; |
| 1960 | u64 file_pos; |
| 1961 | u64 extent_offset; |
| 1962 | u64 num_bytes; |
| 1963 | u64 generation; |
| 1964 | }; |
| 1965 | |
| 1966 | struct old_sa_defrag_extent { |
| 1967 | struct list_head list; |
| 1968 | struct new_sa_defrag_extent *new; |
| 1969 | |
| 1970 | u64 extent_offset; |
| 1971 | u64 bytenr; |
| 1972 | u64 offset; |
| 1973 | u64 len; |
| 1974 | int count; |
| 1975 | }; |
| 1976 | |
| 1977 | struct new_sa_defrag_extent { |
| 1978 | struct rb_root root; |
| 1979 | struct list_head head; |
| 1980 | struct btrfs_path *path; |
| 1981 | struct inode *inode; |
| 1982 | u64 file_pos; |
| 1983 | u64 len; |
| 1984 | u64 bytenr; |
| 1985 | u64 disk_len; |
| 1986 | u8 compress_type; |
| 1987 | }; |
| 1988 | |
| 1989 | static int backref_comp(struct sa_defrag_extent_backref *b1, |
| 1990 | struct sa_defrag_extent_backref *b2) |
| 1991 | { |
| 1992 | if (b1->root_id < b2->root_id) |
| 1993 | return -1; |
| 1994 | else if (b1->root_id > b2->root_id) |
| 1995 | return 1; |
| 1996 | |
| 1997 | if (b1->inum < b2->inum) |
| 1998 | return -1; |
| 1999 | else if (b1->inum > b2->inum) |
| 2000 | return 1; |
| 2001 | |
| 2002 | if (b1->file_pos < b2->file_pos) |
| 2003 | return -1; |
| 2004 | else if (b1->file_pos > b2->file_pos) |
| 2005 | return 1; |
| 2006 | |
| 2007 | /* |
| 2008 | * [------------------------------] ===> (a range of space) |
| 2009 | * |<--->| |<---->| =============> (fs/file tree A) |
| 2010 | * |<---------------------------->| ===> (fs/file tree B) |
| 2011 | * |
| 2012 | * A range of space can refer to two file extents in one tree while |
| 2013 | * refer to only one file extent in another tree. |
| 2014 | * |
| 2015 | * So we may process a disk offset more than one time(two extents in A) |
| 2016 | * and locate at the same extent(one extent in B), then insert two same |
| 2017 | * backrefs(both refer to the extent in B). |
| 2018 | */ |
| 2019 | return 0; |
| 2020 | } |
| 2021 | |
| 2022 | static void backref_insert(struct rb_root *root, |
| 2023 | struct sa_defrag_extent_backref *backref) |
| 2024 | { |
| 2025 | struct rb_node **p = &root->rb_node; |
| 2026 | struct rb_node *parent = NULL; |
| 2027 | struct sa_defrag_extent_backref *entry; |
| 2028 | int ret; |
| 2029 | |
| 2030 | while (*p) { |
| 2031 | parent = *p; |
| 2032 | entry = rb_entry(parent, struct sa_defrag_extent_backref, node); |
| 2033 | |
| 2034 | ret = backref_comp(backref, entry); |
| 2035 | if (ret < 0) |
| 2036 | p = &(*p)->rb_left; |
| 2037 | else |
| 2038 | p = &(*p)->rb_right; |
| 2039 | } |
| 2040 | |
| 2041 | rb_link_node(&backref->node, parent, p); |
| 2042 | rb_insert_color(&backref->node, root); |
| 2043 | } |
| 2044 | |
| 2045 | /* |
| 2046 | * Note the backref might has changed, and in this case we just return 0. |
| 2047 | */ |
| 2048 | static noinline int record_one_backref(u64 inum, u64 offset, u64 root_id, |
| 2049 | void *ctx) |
| 2050 | { |
| 2051 | struct btrfs_file_extent_item *extent; |
| 2052 | struct btrfs_fs_info *fs_info; |
| 2053 | struct old_sa_defrag_extent *old = ctx; |
| 2054 | struct new_sa_defrag_extent *new = old->new; |
| 2055 | struct btrfs_path *path = new->path; |
| 2056 | struct btrfs_key key; |
| 2057 | struct btrfs_root *root; |
| 2058 | struct sa_defrag_extent_backref *backref; |
| 2059 | struct extent_buffer *leaf; |
| 2060 | struct inode *inode = new->inode; |
| 2061 | int slot; |
| 2062 | int ret; |
| 2063 | u64 extent_offset; |
| 2064 | u64 num_bytes; |
| 2065 | |
| 2066 | if (BTRFS_I(inode)->root->root_key.objectid == root_id && |
| 2067 | inum == btrfs_ino(inode)) |
| 2068 | return 0; |
| 2069 | |
| 2070 | key.objectid = root_id; |
| 2071 | key.type = BTRFS_ROOT_ITEM_KEY; |
| 2072 | key.offset = (u64)-1; |
| 2073 | |
| 2074 | fs_info = BTRFS_I(inode)->root->fs_info; |
| 2075 | root = btrfs_read_fs_root_no_name(fs_info, &key); |
| 2076 | if (IS_ERR(root)) { |
| 2077 | if (PTR_ERR(root) == -ENOENT) |
| 2078 | return 0; |
| 2079 | WARN_ON(1); |
| 2080 | pr_debug("inum=%llu, offset=%llu, root_id=%llu\n", |
| 2081 | inum, offset, root_id); |
| 2082 | return PTR_ERR(root); |
| 2083 | } |
| 2084 | |
| 2085 | key.objectid = inum; |
| 2086 | key.type = BTRFS_EXTENT_DATA_KEY; |
| 2087 | if (offset > (u64)-1 << 32) |
| 2088 | key.offset = 0; |
| 2089 | else |
| 2090 | key.offset = offset; |
| 2091 | |
| 2092 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 2093 | if (WARN_ON(ret < 0)) |
Liu Bo | 38c227d | 2013-01-29 03:18:40 +0000 | [diff] [blame] | 2094 | return ret; |
Josef Bacik | 50f1319 | 2013-07-22 12:50:37 -0400 | [diff] [blame] | 2095 | ret = 0; |
Liu Bo | 38c227d | 2013-01-29 03:18:40 +0000 | [diff] [blame] | 2096 | |
| 2097 | while (1) { |
| 2098 | cond_resched(); |
| 2099 | |
| 2100 | leaf = path->nodes[0]; |
| 2101 | slot = path->slots[0]; |
| 2102 | |
| 2103 | if (slot >= btrfs_header_nritems(leaf)) { |
| 2104 | ret = btrfs_next_leaf(root, path); |
| 2105 | if (ret < 0) { |
| 2106 | goto out; |
| 2107 | } else if (ret > 0) { |
| 2108 | ret = 0; |
| 2109 | goto out; |
| 2110 | } |
| 2111 | continue; |
| 2112 | } |
| 2113 | |
| 2114 | path->slots[0]++; |
| 2115 | |
| 2116 | btrfs_item_key_to_cpu(leaf, &key, slot); |
| 2117 | |
| 2118 | if (key.objectid > inum) |
| 2119 | goto out; |
| 2120 | |
| 2121 | if (key.objectid < inum || key.type != BTRFS_EXTENT_DATA_KEY) |
| 2122 | continue; |
| 2123 | |
| 2124 | extent = btrfs_item_ptr(leaf, slot, |
| 2125 | struct btrfs_file_extent_item); |
| 2126 | |
| 2127 | if (btrfs_file_extent_disk_bytenr(leaf, extent) != old->bytenr) |
| 2128 | continue; |
| 2129 | |
Liu Bo | e68afa4 | 2013-07-01 22:13:26 +0800 | [diff] [blame] | 2130 | /* |
| 2131 | * 'offset' refers to the exact key.offset, |
| 2132 | * NOT the 'offset' field in btrfs_extent_data_ref, ie. |
| 2133 | * (key.offset - extent_offset). |
| 2134 | */ |
| 2135 | if (key.offset != offset) |
Liu Bo | 38c227d | 2013-01-29 03:18:40 +0000 | [diff] [blame] | 2136 | continue; |
| 2137 | |
Liu Bo | e68afa4 | 2013-07-01 22:13:26 +0800 | [diff] [blame] | 2138 | extent_offset = btrfs_file_extent_offset(leaf, extent); |
Liu Bo | 38c227d | 2013-01-29 03:18:40 +0000 | [diff] [blame] | 2139 | num_bytes = btrfs_file_extent_num_bytes(leaf, extent); |
Liu Bo | e68afa4 | 2013-07-01 22:13:26 +0800 | [diff] [blame] | 2140 | |
Liu Bo | 38c227d | 2013-01-29 03:18:40 +0000 | [diff] [blame] | 2141 | if (extent_offset >= old->extent_offset + old->offset + |
| 2142 | old->len || extent_offset + num_bytes <= |
| 2143 | old->extent_offset + old->offset) |
| 2144 | continue; |
Liu Bo | 38c227d | 2013-01-29 03:18:40 +0000 | [diff] [blame] | 2145 | break; |
| 2146 | } |
| 2147 | |
| 2148 | backref = kmalloc(sizeof(*backref), GFP_NOFS); |
| 2149 | if (!backref) { |
| 2150 | ret = -ENOENT; |
| 2151 | goto out; |
| 2152 | } |
| 2153 | |
| 2154 | backref->root_id = root_id; |
| 2155 | backref->inum = inum; |
Liu Bo | e68afa4 | 2013-07-01 22:13:26 +0800 | [diff] [blame] | 2156 | backref->file_pos = offset; |
Liu Bo | 38c227d | 2013-01-29 03:18:40 +0000 | [diff] [blame] | 2157 | backref->num_bytes = num_bytes; |
| 2158 | backref->extent_offset = extent_offset; |
| 2159 | backref->generation = btrfs_file_extent_generation(leaf, extent); |
| 2160 | backref->old = old; |
| 2161 | backref_insert(&new->root, backref); |
| 2162 | old->count++; |
| 2163 | out: |
| 2164 | btrfs_release_path(path); |
| 2165 | WARN_ON(ret); |
| 2166 | return ret; |
| 2167 | } |
| 2168 | |
| 2169 | static noinline bool record_extent_backrefs(struct btrfs_path *path, |
| 2170 | struct new_sa_defrag_extent *new) |
| 2171 | { |
| 2172 | struct btrfs_fs_info *fs_info = BTRFS_I(new->inode)->root->fs_info; |
| 2173 | struct old_sa_defrag_extent *old, *tmp; |
| 2174 | int ret; |
| 2175 | |
| 2176 | new->path = path; |
| 2177 | |
| 2178 | list_for_each_entry_safe(old, tmp, &new->head, list) { |
Liu Bo | e68afa4 | 2013-07-01 22:13:26 +0800 | [diff] [blame] | 2179 | ret = iterate_inodes_from_logical(old->bytenr + |
| 2180 | old->extent_offset, fs_info, |
Liu Bo | 38c227d | 2013-01-29 03:18:40 +0000 | [diff] [blame] | 2181 | path, record_one_backref, |
| 2182 | old); |
Josef Bacik | 4724b10 | 2013-11-05 11:11:40 -0500 | [diff] [blame] | 2183 | if (ret < 0 && ret != -ENOENT) |
| 2184 | return false; |
Liu Bo | 38c227d | 2013-01-29 03:18:40 +0000 | [diff] [blame] | 2185 | |
| 2186 | /* no backref to be processed for this extent */ |
| 2187 | if (!old->count) { |
| 2188 | list_del(&old->list); |
| 2189 | kfree(old); |
| 2190 | } |
| 2191 | } |
| 2192 | |
| 2193 | if (list_empty(&new->head)) |
| 2194 | return false; |
| 2195 | |
| 2196 | return true; |
| 2197 | } |
| 2198 | |
| 2199 | static int relink_is_mergable(struct extent_buffer *leaf, |
| 2200 | struct btrfs_file_extent_item *fi, |
Liu Bo | 116e002 | 2013-08-02 16:30:40 +0800 | [diff] [blame] | 2201 | struct new_sa_defrag_extent *new) |
Liu Bo | 38c227d | 2013-01-29 03:18:40 +0000 | [diff] [blame] | 2202 | { |
Liu Bo | 116e002 | 2013-08-02 16:30:40 +0800 | [diff] [blame] | 2203 | if (btrfs_file_extent_disk_bytenr(leaf, fi) != new->bytenr) |
Liu Bo | 38c227d | 2013-01-29 03:18:40 +0000 | [diff] [blame] | 2204 | return 0; |
| 2205 | |
| 2206 | if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG) |
| 2207 | return 0; |
| 2208 | |
Liu Bo | 116e002 | 2013-08-02 16:30:40 +0800 | [diff] [blame] | 2209 | if (btrfs_file_extent_compression(leaf, fi) != new->compress_type) |
| 2210 | return 0; |
| 2211 | |
| 2212 | if (btrfs_file_extent_encryption(leaf, fi) || |
Liu Bo | 38c227d | 2013-01-29 03:18:40 +0000 | [diff] [blame] | 2213 | btrfs_file_extent_other_encoding(leaf, fi)) |
| 2214 | return 0; |
| 2215 | |
| 2216 | return 1; |
| 2217 | } |
| 2218 | |
| 2219 | /* |
| 2220 | * Note the backref might has changed, and in this case we just return 0. |
| 2221 | */ |
| 2222 | static noinline int relink_extent_backref(struct btrfs_path *path, |
| 2223 | struct sa_defrag_extent_backref *prev, |
| 2224 | struct sa_defrag_extent_backref *backref) |
| 2225 | { |
| 2226 | struct btrfs_file_extent_item *extent; |
| 2227 | struct btrfs_file_extent_item *item; |
| 2228 | struct btrfs_ordered_extent *ordered; |
| 2229 | struct btrfs_trans_handle *trans; |
| 2230 | struct btrfs_fs_info *fs_info; |
| 2231 | struct btrfs_root *root; |
| 2232 | struct btrfs_key key; |
| 2233 | struct extent_buffer *leaf; |
| 2234 | struct old_sa_defrag_extent *old = backref->old; |
| 2235 | struct new_sa_defrag_extent *new = old->new; |
| 2236 | struct inode *src_inode = new->inode; |
| 2237 | struct inode *inode; |
| 2238 | struct extent_state *cached = NULL; |
| 2239 | int ret = 0; |
| 2240 | u64 start; |
| 2241 | u64 len; |
| 2242 | u64 lock_start; |
| 2243 | u64 lock_end; |
| 2244 | bool merge = false; |
| 2245 | int index; |
| 2246 | |
| 2247 | if (prev && prev->root_id == backref->root_id && |
| 2248 | prev->inum == backref->inum && |
| 2249 | prev->file_pos + prev->num_bytes == backref->file_pos) |
| 2250 | merge = true; |
| 2251 | |
| 2252 | /* step 1: get root */ |
| 2253 | key.objectid = backref->root_id; |
| 2254 | key.type = BTRFS_ROOT_ITEM_KEY; |
| 2255 | key.offset = (u64)-1; |
| 2256 | |
| 2257 | fs_info = BTRFS_I(src_inode)->root->fs_info; |
| 2258 | index = srcu_read_lock(&fs_info->subvol_srcu); |
| 2259 | |
| 2260 | root = btrfs_read_fs_root_no_name(fs_info, &key); |
| 2261 | if (IS_ERR(root)) { |
| 2262 | srcu_read_unlock(&fs_info->subvol_srcu, index); |
| 2263 | if (PTR_ERR(root) == -ENOENT) |
| 2264 | return 0; |
| 2265 | return PTR_ERR(root); |
| 2266 | } |
Liu Bo | 38c227d | 2013-01-29 03:18:40 +0000 | [diff] [blame] | 2267 | |
Wang Shilong | bcbba5e | 2014-02-08 23:46:35 +0800 | [diff] [blame] | 2268 | if (btrfs_root_readonly(root)) { |
| 2269 | srcu_read_unlock(&fs_info->subvol_srcu, index); |
| 2270 | return 0; |
| 2271 | } |
| 2272 | |
Liu Bo | 38c227d | 2013-01-29 03:18:40 +0000 | [diff] [blame] | 2273 | /* step 2: get inode */ |
| 2274 | key.objectid = backref->inum; |
| 2275 | key.type = BTRFS_INODE_ITEM_KEY; |
| 2276 | key.offset = 0; |
| 2277 | |
| 2278 | inode = btrfs_iget(fs_info->sb, &key, root, NULL); |
| 2279 | if (IS_ERR(inode)) { |
| 2280 | srcu_read_unlock(&fs_info->subvol_srcu, index); |
| 2281 | return 0; |
| 2282 | } |
| 2283 | |
| 2284 | srcu_read_unlock(&fs_info->subvol_srcu, index); |
| 2285 | |
| 2286 | /* step 3: relink backref */ |
| 2287 | lock_start = backref->file_pos; |
| 2288 | lock_end = backref->file_pos + backref->num_bytes - 1; |
| 2289 | lock_extent_bits(&BTRFS_I(inode)->io_tree, lock_start, lock_end, |
| 2290 | 0, &cached); |
| 2291 | |
| 2292 | ordered = btrfs_lookup_first_ordered_extent(inode, lock_end); |
| 2293 | if (ordered) { |
| 2294 | btrfs_put_ordered_extent(ordered); |
| 2295 | goto out_unlock; |
| 2296 | } |
| 2297 | |
| 2298 | trans = btrfs_join_transaction(root); |
| 2299 | if (IS_ERR(trans)) { |
| 2300 | ret = PTR_ERR(trans); |
| 2301 | goto out_unlock; |
| 2302 | } |
| 2303 | |
| 2304 | key.objectid = backref->inum; |
| 2305 | key.type = BTRFS_EXTENT_DATA_KEY; |
| 2306 | key.offset = backref->file_pos; |
| 2307 | |
| 2308 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 2309 | if (ret < 0) { |
| 2310 | goto out_free_path; |
| 2311 | } else if (ret > 0) { |
| 2312 | ret = 0; |
| 2313 | goto out_free_path; |
| 2314 | } |
| 2315 | |
| 2316 | extent = btrfs_item_ptr(path->nodes[0], path->slots[0], |
| 2317 | struct btrfs_file_extent_item); |
| 2318 | |
| 2319 | if (btrfs_file_extent_generation(path->nodes[0], extent) != |
| 2320 | backref->generation) |
| 2321 | goto out_free_path; |
| 2322 | |
| 2323 | btrfs_release_path(path); |
| 2324 | |
| 2325 | start = backref->file_pos; |
| 2326 | if (backref->extent_offset < old->extent_offset + old->offset) |
| 2327 | start += old->extent_offset + old->offset - |
| 2328 | backref->extent_offset; |
| 2329 | |
| 2330 | len = min(backref->extent_offset + backref->num_bytes, |
| 2331 | old->extent_offset + old->offset + old->len); |
| 2332 | len -= max(backref->extent_offset, old->extent_offset + old->offset); |
| 2333 | |
| 2334 | ret = btrfs_drop_extents(trans, root, inode, start, |
| 2335 | start + len, 1); |
| 2336 | if (ret) |
| 2337 | goto out_free_path; |
| 2338 | again: |
| 2339 | key.objectid = btrfs_ino(inode); |
| 2340 | key.type = BTRFS_EXTENT_DATA_KEY; |
| 2341 | key.offset = start; |
| 2342 | |
Liu Bo | a09a0a7 | 2013-03-11 09:20:58 +0000 | [diff] [blame] | 2343 | path->leave_spinning = 1; |
Liu Bo | 38c227d | 2013-01-29 03:18:40 +0000 | [diff] [blame] | 2344 | if (merge) { |
| 2345 | struct btrfs_file_extent_item *fi; |
| 2346 | u64 extent_len; |
| 2347 | struct btrfs_key found_key; |
| 2348 | |
Gui Hecheng | 3c9665d | 2014-01-23 13:41:09 +0800 | [diff] [blame] | 2349 | ret = btrfs_search_slot(trans, root, &key, path, 0, 1); |
Liu Bo | 38c227d | 2013-01-29 03:18:40 +0000 | [diff] [blame] | 2350 | if (ret < 0) |
| 2351 | goto out_free_path; |
| 2352 | |
| 2353 | path->slots[0]--; |
| 2354 | leaf = path->nodes[0]; |
| 2355 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
| 2356 | |
| 2357 | fi = btrfs_item_ptr(leaf, path->slots[0], |
| 2358 | struct btrfs_file_extent_item); |
| 2359 | extent_len = btrfs_file_extent_num_bytes(leaf, fi); |
| 2360 | |
Liu Bo | 116e002 | 2013-08-02 16:30:40 +0800 | [diff] [blame] | 2361 | if (extent_len + found_key.offset == start && |
| 2362 | relink_is_mergable(leaf, fi, new)) { |
Liu Bo | 38c227d | 2013-01-29 03:18:40 +0000 | [diff] [blame] | 2363 | btrfs_set_file_extent_num_bytes(leaf, fi, |
| 2364 | extent_len + len); |
| 2365 | btrfs_mark_buffer_dirty(leaf); |
| 2366 | inode_add_bytes(inode, len); |
| 2367 | |
| 2368 | ret = 1; |
| 2369 | goto out_free_path; |
| 2370 | } else { |
| 2371 | merge = false; |
| 2372 | btrfs_release_path(path); |
| 2373 | goto again; |
| 2374 | } |
| 2375 | } |
| 2376 | |
| 2377 | ret = btrfs_insert_empty_item(trans, root, path, &key, |
| 2378 | sizeof(*extent)); |
| 2379 | if (ret) { |
| 2380 | btrfs_abort_transaction(trans, root, ret); |
| 2381 | goto out_free_path; |
| 2382 | } |
| 2383 | |
| 2384 | leaf = path->nodes[0]; |
| 2385 | item = btrfs_item_ptr(leaf, path->slots[0], |
| 2386 | struct btrfs_file_extent_item); |
| 2387 | btrfs_set_file_extent_disk_bytenr(leaf, item, new->bytenr); |
| 2388 | btrfs_set_file_extent_disk_num_bytes(leaf, item, new->disk_len); |
| 2389 | btrfs_set_file_extent_offset(leaf, item, start - new->file_pos); |
| 2390 | btrfs_set_file_extent_num_bytes(leaf, item, len); |
| 2391 | btrfs_set_file_extent_ram_bytes(leaf, item, new->len); |
| 2392 | btrfs_set_file_extent_generation(leaf, item, trans->transid); |
| 2393 | btrfs_set_file_extent_type(leaf, item, BTRFS_FILE_EXTENT_REG); |
| 2394 | btrfs_set_file_extent_compression(leaf, item, new->compress_type); |
| 2395 | btrfs_set_file_extent_encryption(leaf, item, 0); |
| 2396 | btrfs_set_file_extent_other_encoding(leaf, item, 0); |
| 2397 | |
| 2398 | btrfs_mark_buffer_dirty(leaf); |
| 2399 | inode_add_bytes(inode, len); |
Liu Bo | a09a0a7 | 2013-03-11 09:20:58 +0000 | [diff] [blame] | 2400 | btrfs_release_path(path); |
Liu Bo | 38c227d | 2013-01-29 03:18:40 +0000 | [diff] [blame] | 2401 | |
| 2402 | ret = btrfs_inc_extent_ref(trans, root, new->bytenr, |
| 2403 | new->disk_len, 0, |
| 2404 | backref->root_id, backref->inum, |
| 2405 | new->file_pos, 0); /* start - extent_offset */ |
| 2406 | if (ret) { |
| 2407 | btrfs_abort_transaction(trans, root, ret); |
| 2408 | goto out_free_path; |
| 2409 | } |
| 2410 | |
| 2411 | ret = 1; |
| 2412 | out_free_path: |
| 2413 | btrfs_release_path(path); |
Liu Bo | a09a0a7 | 2013-03-11 09:20:58 +0000 | [diff] [blame] | 2414 | path->leave_spinning = 0; |
Liu Bo | 38c227d | 2013-01-29 03:18:40 +0000 | [diff] [blame] | 2415 | btrfs_end_transaction(trans, root); |
| 2416 | out_unlock: |
| 2417 | unlock_extent_cached(&BTRFS_I(inode)->io_tree, lock_start, lock_end, |
| 2418 | &cached, GFP_NOFS); |
| 2419 | iput(inode); |
| 2420 | return ret; |
| 2421 | } |
| 2422 | |
Liu Bo | 6f51956 | 2013-10-29 10:45:05 +0800 | [diff] [blame] | 2423 | static void free_sa_defrag_extent(struct new_sa_defrag_extent *new) |
| 2424 | { |
| 2425 | struct old_sa_defrag_extent *old, *tmp; |
| 2426 | |
| 2427 | if (!new) |
| 2428 | return; |
| 2429 | |
| 2430 | list_for_each_entry_safe(old, tmp, &new->head, list) { |
| 2431 | list_del(&old->list); |
| 2432 | kfree(old); |
| 2433 | } |
| 2434 | kfree(new); |
| 2435 | } |
| 2436 | |
Liu Bo | 38c227d | 2013-01-29 03:18:40 +0000 | [diff] [blame] | 2437 | static void relink_file_extents(struct new_sa_defrag_extent *new) |
| 2438 | { |
| 2439 | struct btrfs_path *path; |
Liu Bo | 38c227d | 2013-01-29 03:18:40 +0000 | [diff] [blame] | 2440 | struct sa_defrag_extent_backref *backref; |
| 2441 | struct sa_defrag_extent_backref *prev = NULL; |
| 2442 | struct inode *inode; |
| 2443 | struct btrfs_root *root; |
| 2444 | struct rb_node *node; |
| 2445 | int ret; |
| 2446 | |
| 2447 | inode = new->inode; |
| 2448 | root = BTRFS_I(inode)->root; |
| 2449 | |
| 2450 | path = btrfs_alloc_path(); |
| 2451 | if (!path) |
| 2452 | return; |
| 2453 | |
| 2454 | if (!record_extent_backrefs(path, new)) { |
| 2455 | btrfs_free_path(path); |
| 2456 | goto out; |
| 2457 | } |
| 2458 | btrfs_release_path(path); |
| 2459 | |
| 2460 | while (1) { |
| 2461 | node = rb_first(&new->root); |
| 2462 | if (!node) |
| 2463 | break; |
| 2464 | rb_erase(node, &new->root); |
| 2465 | |
| 2466 | backref = rb_entry(node, struct sa_defrag_extent_backref, node); |
| 2467 | |
| 2468 | ret = relink_extent_backref(path, prev, backref); |
| 2469 | WARN_ON(ret < 0); |
| 2470 | |
| 2471 | kfree(prev); |
| 2472 | |
| 2473 | if (ret == 1) |
| 2474 | prev = backref; |
| 2475 | else |
| 2476 | prev = NULL; |
| 2477 | cond_resched(); |
| 2478 | } |
| 2479 | kfree(prev); |
| 2480 | |
| 2481 | btrfs_free_path(path); |
Liu Bo | 38c227d | 2013-01-29 03:18:40 +0000 | [diff] [blame] | 2482 | out: |
Liu Bo | 6f51956 | 2013-10-29 10:45:05 +0800 | [diff] [blame] | 2483 | free_sa_defrag_extent(new); |
| 2484 | |
Liu Bo | 38c227d | 2013-01-29 03:18:40 +0000 | [diff] [blame] | 2485 | atomic_dec(&root->fs_info->defrag_running); |
| 2486 | wake_up(&root->fs_info->transaction_wait); |
Liu Bo | 38c227d | 2013-01-29 03:18:40 +0000 | [diff] [blame] | 2487 | } |
| 2488 | |
| 2489 | static struct new_sa_defrag_extent * |
| 2490 | record_old_file_extents(struct inode *inode, |
| 2491 | struct btrfs_ordered_extent *ordered) |
| 2492 | { |
| 2493 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 2494 | struct btrfs_path *path; |
| 2495 | struct btrfs_key key; |
Liu Bo | 6f51956 | 2013-10-29 10:45:05 +0800 | [diff] [blame] | 2496 | struct old_sa_defrag_extent *old; |
Liu Bo | 38c227d | 2013-01-29 03:18:40 +0000 | [diff] [blame] | 2497 | struct new_sa_defrag_extent *new; |
| 2498 | int ret; |
| 2499 | |
| 2500 | new = kmalloc(sizeof(*new), GFP_NOFS); |
| 2501 | if (!new) |
| 2502 | return NULL; |
| 2503 | |
| 2504 | new->inode = inode; |
| 2505 | new->file_pos = ordered->file_offset; |
| 2506 | new->len = ordered->len; |
| 2507 | new->bytenr = ordered->start; |
| 2508 | new->disk_len = ordered->disk_len; |
| 2509 | new->compress_type = ordered->compress_type; |
| 2510 | new->root = RB_ROOT; |
| 2511 | INIT_LIST_HEAD(&new->head); |
| 2512 | |
| 2513 | path = btrfs_alloc_path(); |
| 2514 | if (!path) |
| 2515 | goto out_kfree; |
| 2516 | |
| 2517 | key.objectid = btrfs_ino(inode); |
| 2518 | key.type = BTRFS_EXTENT_DATA_KEY; |
| 2519 | key.offset = new->file_pos; |
| 2520 | |
| 2521 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 2522 | if (ret < 0) |
| 2523 | goto out_free_path; |
| 2524 | if (ret > 0 && path->slots[0] > 0) |
| 2525 | path->slots[0]--; |
| 2526 | |
| 2527 | /* find out all the old extents for the file range */ |
| 2528 | while (1) { |
| 2529 | struct btrfs_file_extent_item *extent; |
| 2530 | struct extent_buffer *l; |
| 2531 | int slot; |
| 2532 | u64 num_bytes; |
| 2533 | u64 offset; |
| 2534 | u64 end; |
| 2535 | u64 disk_bytenr; |
| 2536 | u64 extent_offset; |
| 2537 | |
| 2538 | l = path->nodes[0]; |
| 2539 | slot = path->slots[0]; |
| 2540 | |
| 2541 | if (slot >= btrfs_header_nritems(l)) { |
| 2542 | ret = btrfs_next_leaf(root, path); |
| 2543 | if (ret < 0) |
Liu Bo | 6f51956 | 2013-10-29 10:45:05 +0800 | [diff] [blame] | 2544 | goto out_free_path; |
Liu Bo | 38c227d | 2013-01-29 03:18:40 +0000 | [diff] [blame] | 2545 | else if (ret > 0) |
| 2546 | break; |
| 2547 | continue; |
| 2548 | } |
| 2549 | |
| 2550 | btrfs_item_key_to_cpu(l, &key, slot); |
| 2551 | |
| 2552 | if (key.objectid != btrfs_ino(inode)) |
| 2553 | break; |
| 2554 | if (key.type != BTRFS_EXTENT_DATA_KEY) |
| 2555 | break; |
| 2556 | if (key.offset >= new->file_pos + new->len) |
| 2557 | break; |
| 2558 | |
| 2559 | extent = btrfs_item_ptr(l, slot, struct btrfs_file_extent_item); |
| 2560 | |
| 2561 | num_bytes = btrfs_file_extent_num_bytes(l, extent); |
| 2562 | if (key.offset + num_bytes < new->file_pos) |
| 2563 | goto next; |
| 2564 | |
| 2565 | disk_bytenr = btrfs_file_extent_disk_bytenr(l, extent); |
| 2566 | if (!disk_bytenr) |
| 2567 | goto next; |
| 2568 | |
| 2569 | extent_offset = btrfs_file_extent_offset(l, extent); |
| 2570 | |
| 2571 | old = kmalloc(sizeof(*old), GFP_NOFS); |
| 2572 | if (!old) |
Liu Bo | 6f51956 | 2013-10-29 10:45:05 +0800 | [diff] [blame] | 2573 | goto out_free_path; |
Liu Bo | 38c227d | 2013-01-29 03:18:40 +0000 | [diff] [blame] | 2574 | |
| 2575 | offset = max(new->file_pos, key.offset); |
| 2576 | end = min(new->file_pos + new->len, key.offset + num_bytes); |
| 2577 | |
| 2578 | old->bytenr = disk_bytenr; |
| 2579 | old->extent_offset = extent_offset; |
| 2580 | old->offset = offset - key.offset; |
| 2581 | old->len = end - offset; |
| 2582 | old->new = new; |
| 2583 | old->count = 0; |
| 2584 | list_add_tail(&old->list, &new->head); |
| 2585 | next: |
| 2586 | path->slots[0]++; |
| 2587 | cond_resched(); |
| 2588 | } |
| 2589 | |
| 2590 | btrfs_free_path(path); |
| 2591 | atomic_inc(&root->fs_info->defrag_running); |
| 2592 | |
| 2593 | return new; |
| 2594 | |
Liu Bo | 38c227d | 2013-01-29 03:18:40 +0000 | [diff] [blame] | 2595 | out_free_path: |
| 2596 | btrfs_free_path(path); |
| 2597 | out_kfree: |
Liu Bo | 6f51956 | 2013-10-29 10:45:05 +0800 | [diff] [blame] | 2598 | free_sa_defrag_extent(new); |
Liu Bo | 38c227d | 2013-01-29 03:18:40 +0000 | [diff] [blame] | 2599 | return NULL; |
| 2600 | } |
| 2601 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 2602 | /* as ordered data IO finishes, this gets called so we can finish |
| 2603 | * an ordered extent if the range of bytes in the file it covers are |
| 2604 | * fully written. |
| 2605 | */ |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 2606 | static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent) |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 2607 | { |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 2608 | struct inode *inode = ordered_extent->inode; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 2609 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 2610 | struct btrfs_trans_handle *trans = NULL; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 2611 | struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree; |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 2612 | struct extent_state *cached_state = NULL; |
Liu Bo | 38c227d | 2013-01-29 03:18:40 +0000 | [diff] [blame] | 2613 | struct new_sa_defrag_extent *new = NULL; |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 2614 | int compress_type = 0; |
Josef Bacik | 77cef2e | 2013-08-29 13:57:21 -0400 | [diff] [blame] | 2615 | int ret = 0; |
| 2616 | u64 logical_len = ordered_extent->len; |
Li Zefan | 82d5902 | 2011-04-20 10:33:24 +0800 | [diff] [blame] | 2617 | bool nolock; |
Josef Bacik | 77cef2e | 2013-08-29 13:57:21 -0400 | [diff] [blame] | 2618 | bool truncated = false; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 2619 | |
Liu Bo | 83eea1f | 2012-07-10 05:28:39 -0600 | [diff] [blame] | 2620 | nolock = btrfs_is_free_space_inode(inode); |
Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 2621 | |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 2622 | if (test_bit(BTRFS_ORDERED_IOERR, &ordered_extent->flags)) { |
| 2623 | ret = -EIO; |
| 2624 | goto out; |
| 2625 | } |
| 2626 | |
Josef Bacik | 77cef2e | 2013-08-29 13:57:21 -0400 | [diff] [blame] | 2627 | if (test_bit(BTRFS_ORDERED_TRUNCATED, &ordered_extent->flags)) { |
| 2628 | truncated = true; |
| 2629 | logical_len = ordered_extent->truncated_len; |
| 2630 | /* Truncated the entire extent, don't bother adding */ |
| 2631 | if (!logical_len) |
| 2632 | goto out; |
| 2633 | } |
| 2634 | |
Yan, Zheng | c216775 | 2009-11-12 09:34:21 +0000 | [diff] [blame] | 2635 | if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags)) { |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2636 | BUG_ON(!list_empty(&ordered_extent->list)); /* Logic error */ |
Josef Bacik | 6c760c0 | 2012-11-09 10:53:21 -0500 | [diff] [blame] | 2637 | btrfs_ordered_update_i_size(inode, 0, ordered_extent); |
| 2638 | if (nolock) |
| 2639 | trans = btrfs_join_transaction_nolock(root); |
| 2640 | else |
| 2641 | trans = btrfs_join_transaction(root); |
| 2642 | if (IS_ERR(trans)) { |
| 2643 | ret = PTR_ERR(trans); |
| 2644 | trans = NULL; |
| 2645 | goto out; |
Yan, Zheng | c216775 | 2009-11-12 09:34:21 +0000 | [diff] [blame] | 2646 | } |
Josef Bacik | 6c760c0 | 2012-11-09 10:53:21 -0500 | [diff] [blame] | 2647 | trans->block_rsv = &root->fs_info->delalloc_block_rsv; |
| 2648 | ret = btrfs_update_inode_fallback(trans, root, inode); |
| 2649 | if (ret) /* -ENOMEM or corruption */ |
| 2650 | btrfs_abort_transaction(trans, root, ret); |
Yan, Zheng | c216775 | 2009-11-12 09:34:21 +0000 | [diff] [blame] | 2651 | goto out; |
| 2652 | } |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 2653 | |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 2654 | lock_extent_bits(io_tree, ordered_extent->file_offset, |
| 2655 | ordered_extent->file_offset + ordered_extent->len - 1, |
Jeff Mahoney | d008237 | 2012-03-01 14:57:19 +0100 | [diff] [blame] | 2656 | 0, &cached_state); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 2657 | |
Liu Bo | 38c227d | 2013-01-29 03:18:40 +0000 | [diff] [blame] | 2658 | ret = test_range_bit(io_tree, ordered_extent->file_offset, |
| 2659 | ordered_extent->file_offset + ordered_extent->len - 1, |
| 2660 | EXTENT_DEFRAG, 1, cached_state); |
| 2661 | if (ret) { |
| 2662 | u64 last_snapshot = btrfs_root_last_snapshot(&root->root_item); |
Josef Bacik | 8101c8d | 2014-01-29 16:05:30 -0500 | [diff] [blame] | 2663 | if (0 && last_snapshot >= BTRFS_I(inode)->generation) |
Liu Bo | 38c227d | 2013-01-29 03:18:40 +0000 | [diff] [blame] | 2664 | /* the inode is shared */ |
| 2665 | new = record_old_file_extents(inode, ordered_extent); |
| 2666 | |
| 2667 | clear_extent_bit(io_tree, ordered_extent->file_offset, |
| 2668 | ordered_extent->file_offset + ordered_extent->len - 1, |
| 2669 | EXTENT_DEFRAG, 0, 0, &cached_state, GFP_NOFS); |
| 2670 | } |
| 2671 | |
Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 2672 | if (nolock) |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 2673 | trans = btrfs_join_transaction_nolock(root); |
Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 2674 | else |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 2675 | trans = btrfs_join_transaction(root); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2676 | if (IS_ERR(trans)) { |
| 2677 | ret = PTR_ERR(trans); |
| 2678 | trans = NULL; |
| 2679 | goto out_unlock; |
| 2680 | } |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame^] | 2681 | |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 2682 | trans->block_rsv = &root->fs_info->delalloc_block_rsv; |
Yan, Zheng | c216775 | 2009-11-12 09:34:21 +0000 | [diff] [blame] | 2683 | |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 2684 | if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags)) |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 2685 | compress_type = ordered_extent->compress_type; |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 2686 | if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) { |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 2687 | BUG_ON(compress_type); |
Yan, Zheng | 920bbbf | 2009-11-12 09:34:08 +0000 | [diff] [blame] | 2688 | ret = btrfs_mark_extent_written(trans, inode, |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 2689 | ordered_extent->file_offset, |
| 2690 | ordered_extent->file_offset + |
Josef Bacik | 77cef2e | 2013-08-29 13:57:21 -0400 | [diff] [blame] | 2691 | logical_len); |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 2692 | } else { |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 2693 | BUG_ON(root == root->fs_info->tree_root); |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 2694 | ret = insert_reserved_file_extent(trans, inode, |
| 2695 | ordered_extent->file_offset, |
| 2696 | ordered_extent->start, |
| 2697 | ordered_extent->disk_len, |
Josef Bacik | 77cef2e | 2013-08-29 13:57:21 -0400 | [diff] [blame] | 2698 | logical_len, logical_len, |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 2699 | compress_type, 0, 0, |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 2700 | BTRFS_FILE_EXTENT_REG); |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 2701 | } |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 2702 | unpin_extent_cache(&BTRFS_I(inode)->extent_tree, |
| 2703 | ordered_extent->file_offset, ordered_extent->len, |
| 2704 | trans->transid); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2705 | if (ret < 0) { |
| 2706 | btrfs_abort_transaction(trans, root, ret); |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 2707 | goto out_unlock; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2708 | } |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 2709 | |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 2710 | add_pending_csums(trans, inode, ordered_extent->file_offset, |
| 2711 | &ordered_extent->list); |
| 2712 | |
Josef Bacik | 6c760c0 | 2012-11-09 10:53:21 -0500 | [diff] [blame] | 2713 | btrfs_ordered_update_i_size(inode, 0, ordered_extent); |
| 2714 | ret = btrfs_update_inode_fallback(trans, root, inode); |
| 2715 | if (ret) { /* -ENOMEM or corruption */ |
| 2716 | btrfs_abort_transaction(trans, root, ret); |
| 2717 | goto out_unlock; |
Josef Bacik | 1ef30be | 2011-04-05 19:25:36 -0400 | [diff] [blame] | 2718 | } |
| 2719 | ret = 0; |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 2720 | out_unlock: |
| 2721 | unlock_extent_cached(io_tree, ordered_extent->file_offset, |
| 2722 | ordered_extent->file_offset + |
| 2723 | ordered_extent->len - 1, &cached_state, GFP_NOFS); |
Yan, Zheng | c216775 | 2009-11-12 09:34:21 +0000 | [diff] [blame] | 2724 | out: |
Josef Bacik | 5b0e95b | 2011-10-06 08:58:24 -0400 | [diff] [blame] | 2725 | if (root != root->fs_info->tree_root) |
Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 2726 | btrfs_delalloc_release_metadata(inode, ordered_extent->len); |
Miao Xie | a698d075 | 2012-09-20 01:51:59 -0600 | [diff] [blame] | 2727 | if (trans) |
| 2728 | btrfs_end_transaction(trans, root); |
Josef Bacik | 0cb59c9 | 2010-07-02 12:14:14 -0400 | [diff] [blame] | 2729 | |
Josef Bacik | 77cef2e | 2013-08-29 13:57:21 -0400 | [diff] [blame] | 2730 | if (ret || truncated) { |
| 2731 | u64 start, end; |
| 2732 | |
| 2733 | if (truncated) |
| 2734 | start = ordered_extent->file_offset + logical_len; |
| 2735 | else |
| 2736 | start = ordered_extent->file_offset; |
| 2737 | end = ordered_extent->file_offset + ordered_extent->len - 1; |
| 2738 | clear_extent_uptodate(io_tree, start, end, NULL, GFP_NOFS); |
| 2739 | |
| 2740 | /* Drop the cache for the part of the extent we didn't write. */ |
| 2741 | btrfs_drop_extent_cache(inode, start, end, 0); |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 2742 | |
Josef Bacik | 0bec9ef | 2013-01-31 14:58:00 -0500 | [diff] [blame] | 2743 | /* |
| 2744 | * If the ordered extent had an IOERR or something else went |
| 2745 | * wrong we need to return the space for this ordered extent |
Josef Bacik | 77cef2e | 2013-08-29 13:57:21 -0400 | [diff] [blame] | 2746 | * back to the allocator. We only free the extent in the |
| 2747 | * truncated case if we didn't write out the extent at all. |
Josef Bacik | 0bec9ef | 2013-01-31 14:58:00 -0500 | [diff] [blame] | 2748 | */ |
Josef Bacik | 77cef2e | 2013-08-29 13:57:21 -0400 | [diff] [blame] | 2749 | if ((ret || !logical_len) && |
| 2750 | !test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags) && |
Josef Bacik | 0bec9ef | 2013-01-31 14:58:00 -0500 | [diff] [blame] | 2751 | !test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) |
| 2752 | btrfs_free_reserved_extent(root, ordered_extent->start, |
| 2753 | ordered_extent->disk_len); |
| 2754 | } |
| 2755 | |
| 2756 | |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 2757 | /* |
Liu Bo | 8bad3c0 | 2012-06-18 12:14:23 +0800 | [diff] [blame] | 2758 | * This needs to be done to make sure anybody waiting knows we are done |
| 2759 | * updating everything for this ordered extent. |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 2760 | */ |
| 2761 | btrfs_remove_ordered_extent(inode, ordered_extent); |
| 2762 | |
Liu Bo | 38c227d | 2013-01-29 03:18:40 +0000 | [diff] [blame] | 2763 | /* for snapshot-aware defrag */ |
Liu Bo | 6f51956 | 2013-10-29 10:45:05 +0800 | [diff] [blame] | 2764 | if (new) { |
| 2765 | if (ret) { |
| 2766 | free_sa_defrag_extent(new); |
| 2767 | atomic_dec(&root->fs_info->defrag_running); |
| 2768 | } else { |
| 2769 | relink_file_extents(new); |
| 2770 | } |
| 2771 | } |
Liu Bo | 38c227d | 2013-01-29 03:18:40 +0000 | [diff] [blame] | 2772 | |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 2773 | /* once for us */ |
| 2774 | btrfs_put_ordered_extent(ordered_extent); |
| 2775 | /* once for the tree */ |
| 2776 | btrfs_put_ordered_extent(ordered_extent); |
| 2777 | |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 2778 | return ret; |
| 2779 | } |
| 2780 | |
| 2781 | static void finish_ordered_fn(struct btrfs_work *work) |
| 2782 | { |
| 2783 | struct btrfs_ordered_extent *ordered_extent; |
| 2784 | ordered_extent = container_of(work, struct btrfs_ordered_extent, work); |
| 2785 | btrfs_finish_ordered_io(ordered_extent); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 2786 | } |
| 2787 | |
Christoph Hellwig | b295086 | 2008-12-02 09:54:17 -0500 | [diff] [blame] | 2788 | 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] | 2789 | struct extent_state *state, int uptodate) |
| 2790 | { |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 2791 | struct inode *inode = page->mapping->host; |
| 2792 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 2793 | struct btrfs_ordered_extent *ordered_extent = NULL; |
Qu Wenruo | d458b05 | 2014-02-28 10:46:19 +0800 | [diff] [blame] | 2794 | struct btrfs_workqueue *workers; |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 2795 | |
liubo | 1abe9b8 | 2011-03-24 11:18:59 +0000 | [diff] [blame] | 2796 | trace_btrfs_writepage_end_io_hook(page, start, end, uptodate); |
| 2797 | |
Chris Mason | 8b62b72 | 2009-09-02 16:53:46 -0400 | [diff] [blame] | 2798 | ClearPagePrivate2(page); |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 2799 | if (!btrfs_dec_test_ordered_pending(inode, &ordered_extent, start, |
| 2800 | end - start + 1, uptodate)) |
| 2801 | return 0; |
| 2802 | |
Qu Wenruo | fccb5d8 | 2014-02-28 10:46:10 +0800 | [diff] [blame] | 2803 | btrfs_init_work(&ordered_extent->work, finish_ordered_fn, NULL, NULL); |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 2804 | |
Liu Bo | 83eea1f | 2012-07-10 05:28:39 -0600 | [diff] [blame] | 2805 | if (btrfs_is_free_space_inode(inode)) |
Qu Wenruo | fccb5d8 | 2014-02-28 10:46:10 +0800 | [diff] [blame] | 2806 | workers = root->fs_info->endio_freespace_worker; |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 2807 | else |
Qu Wenruo | fccb5d8 | 2014-02-28 10:46:10 +0800 | [diff] [blame] | 2808 | workers = root->fs_info->endio_write_workers; |
| 2809 | btrfs_queue_work(workers, &ordered_extent->work); |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 2810 | |
| 2811 | return 0; |
Chris Mason | 211f90e | 2008-07-18 11:56:15 -0400 | [diff] [blame] | 2812 | } |
| 2813 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 2814 | /* |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 2815 | * 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] | 2816 | * if there's a match, we allow the bio to finish. If not, the code in |
| 2817 | * extent_io.c will try to find good copies for us. |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 2818 | */ |
Miao Xie | facc8a22 | 2013-07-25 19:22:34 +0800 | [diff] [blame] | 2819 | static int btrfs_readpage_end_io_hook(struct btrfs_io_bio *io_bio, |
| 2820 | u64 phy_offset, struct page *page, |
| 2821 | u64 start, u64 end, int mirror) |
Chris Mason | 07157aa | 2007-08-30 08:50:51 -0400 | [diff] [blame] | 2822 | { |
Miao Xie | 4eee4fa | 2012-12-21 09:17:45 +0000 | [diff] [blame] | 2823 | size_t offset = start - page_offset(page); |
Chris Mason | 07157aa | 2007-08-30 08:50:51 -0400 | [diff] [blame] | 2824 | struct inode *inode = page->mapping->host; |
Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 2825 | struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree; |
Chris Mason | 07157aa | 2007-08-30 08:50:51 -0400 | [diff] [blame] | 2826 | char *kaddr; |
Chris Mason | ff79f81 | 2007-10-15 16:22:25 -0400 | [diff] [blame] | 2827 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Miao Xie | facc8a22 | 2013-07-25 19:22:34 +0800 | [diff] [blame] | 2828 | u32 csum_expected; |
Chris Mason | ff79f81 | 2007-10-15 16:22:25 -0400 | [diff] [blame] | 2829 | u32 csum = ~(u32)0; |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 2830 | static DEFINE_RATELIMIT_STATE(_rs, DEFAULT_RATELIMIT_INTERVAL, |
| 2831 | DEFAULT_RATELIMIT_BURST); |
Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 2832 | |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 2833 | if (PageChecked(page)) { |
| 2834 | ClearPageChecked(page); |
| 2835 | goto good; |
| 2836 | } |
Christoph Hellwig | 6cbff00 | 2009-04-17 10:37:41 +0200 | [diff] [blame] | 2837 | |
| 2838 | if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM) |
Jan Schmidt | 08d2f34 | 2011-05-04 16:18:50 +0200 | [diff] [blame] | 2839 | goto good; |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 2840 | |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 2841 | if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID && |
Chris Mason | 9655d29 | 2009-09-02 15:22:30 -0400 | [diff] [blame] | 2842 | test_range_bit(io_tree, start, end, EXTENT_NODATASUM, 1, NULL)) { |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 2843 | clear_extent_bits(io_tree, start, end, EXTENT_NODATASUM, |
| 2844 | GFP_NOFS); |
| 2845 | return 0; |
| 2846 | } |
| 2847 | |
Miao Xie | facc8a22 | 2013-07-25 19:22:34 +0800 | [diff] [blame] | 2848 | phy_offset >>= inode->i_sb->s_blocksize_bits; |
| 2849 | csum_expected = *(((u32 *)io_bio->csum) + phy_offset); |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2850 | |
Miao Xie | facc8a22 | 2013-07-25 19:22:34 +0800 | [diff] [blame] | 2851 | kaddr = kmap_atomic(page); |
Liu Bo | b049668 | 2013-03-14 14:57:45 +0000 | [diff] [blame] | 2852 | csum = btrfs_csum_data(kaddr + offset, csum, end - start + 1); |
Chris Mason | ff79f81 | 2007-10-15 16:22:25 -0400 | [diff] [blame] | 2853 | btrfs_csum_final(csum, (char *)&csum); |
Miao Xie | facc8a22 | 2013-07-25 19:22:34 +0800 | [diff] [blame] | 2854 | if (csum != csum_expected) |
Chris Mason | 07157aa | 2007-08-30 08:50:51 -0400 | [diff] [blame] | 2855 | goto zeroit; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2856 | |
Cong Wang | 7ac687d | 2011-11-25 23:14:28 +0800 | [diff] [blame] | 2857 | kunmap_atomic(kaddr); |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 2858 | good: |
Chris Mason | 07157aa | 2007-08-30 08:50:51 -0400 | [diff] [blame] | 2859 | return 0; |
| 2860 | |
| 2861 | zeroit: |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 2862 | if (__ratelimit(&_rs)) |
Miao Xie | facc8a22 | 2013-07-25 19:22:34 +0800 | [diff] [blame] | 2863 | btrfs_info(root->fs_info, "csum failed ino %llu off %llu csum %u expected csum %u", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 2864 | btrfs_ino(page->mapping->host), start, csum, csum_expected); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 2865 | memset(kaddr + offset, 1, end - start + 1); |
| 2866 | flush_dcache_page(page); |
Cong Wang | 7ac687d | 2011-11-25 23:14:28 +0800 | [diff] [blame] | 2867 | kunmap_atomic(kaddr); |
Miao Xie | facc8a22 | 2013-07-25 19:22:34 +0800 | [diff] [blame] | 2868 | if (csum_expected == 0) |
Chris Mason | 3b95151 | 2008-04-17 11:29:12 -0400 | [diff] [blame] | 2869 | return 0; |
Chris Mason | 7e38326 | 2008-04-09 16:28:12 -0400 | [diff] [blame] | 2870 | return -EIO; |
Chris Mason | 07157aa | 2007-08-30 08:50:51 -0400 | [diff] [blame] | 2871 | } |
Chris Mason | b888db2 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 2872 | |
Yan, Zheng | 24bbcf0 | 2009-11-12 09:36:34 +0000 | [diff] [blame] | 2873 | struct delayed_iput { |
| 2874 | struct list_head list; |
| 2875 | struct inode *inode; |
| 2876 | }; |
| 2877 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2878 | /* JDM: If this is fs-wide, why can't we add a pointer to |
| 2879 | * btrfs_inode instead and avoid the allocation? */ |
Yan, Zheng | 24bbcf0 | 2009-11-12 09:36:34 +0000 | [diff] [blame] | 2880 | void btrfs_add_delayed_iput(struct inode *inode) |
| 2881 | { |
| 2882 | struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info; |
| 2883 | struct delayed_iput *delayed; |
| 2884 | |
| 2885 | if (atomic_add_unless(&inode->i_count, -1, 1)) |
| 2886 | return; |
| 2887 | |
| 2888 | delayed = kmalloc(sizeof(*delayed), GFP_NOFS | __GFP_NOFAIL); |
| 2889 | delayed->inode = inode; |
| 2890 | |
| 2891 | spin_lock(&fs_info->delayed_iput_lock); |
| 2892 | list_add_tail(&delayed->list, &fs_info->delayed_iputs); |
| 2893 | spin_unlock(&fs_info->delayed_iput_lock); |
| 2894 | } |
| 2895 | |
| 2896 | void btrfs_run_delayed_iputs(struct btrfs_root *root) |
| 2897 | { |
| 2898 | LIST_HEAD(list); |
| 2899 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 2900 | struct delayed_iput *delayed; |
| 2901 | int empty; |
| 2902 | |
| 2903 | spin_lock(&fs_info->delayed_iput_lock); |
| 2904 | empty = list_empty(&fs_info->delayed_iputs); |
| 2905 | spin_unlock(&fs_info->delayed_iput_lock); |
| 2906 | if (empty) |
| 2907 | return; |
| 2908 | |
Yan, Zheng | 24bbcf0 | 2009-11-12 09:36:34 +0000 | [diff] [blame] | 2909 | spin_lock(&fs_info->delayed_iput_lock); |
| 2910 | list_splice_init(&fs_info->delayed_iputs, &list); |
| 2911 | spin_unlock(&fs_info->delayed_iput_lock); |
| 2912 | |
| 2913 | while (!list_empty(&list)) { |
| 2914 | delayed = list_entry(list.next, struct delayed_iput, list); |
| 2915 | list_del(&delayed->list); |
| 2916 | iput(delayed->inode); |
| 2917 | kfree(delayed); |
| 2918 | } |
Yan, Zheng | 24bbcf0 | 2009-11-12 09:36:34 +0000 | [diff] [blame] | 2919 | } |
| 2920 | |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2921 | /* |
Justin P. Mattock | 42b2aa8 | 2011-11-28 20:31:00 -0800 | [diff] [blame] | 2922 | * This is called in transaction commit time. If there are no orphan |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2923 | * files in the subvolume, it removes orphan item and frees block_rsv |
| 2924 | * structure. |
| 2925 | */ |
| 2926 | void btrfs_orphan_commit_root(struct btrfs_trans_handle *trans, |
| 2927 | struct btrfs_root *root) |
| 2928 | { |
Josef Bacik | 90290e1 | 2011-12-02 15:44:12 -0500 | [diff] [blame] | 2929 | struct btrfs_block_rsv *block_rsv; |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2930 | int ret; |
| 2931 | |
Josef Bacik | 8a35d95 | 2012-05-23 14:26:42 -0400 | [diff] [blame] | 2932 | if (atomic_read(&root->orphan_inodes) || |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2933 | root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE) |
| 2934 | return; |
| 2935 | |
Josef Bacik | 90290e1 | 2011-12-02 15:44:12 -0500 | [diff] [blame] | 2936 | spin_lock(&root->orphan_lock); |
Josef Bacik | 8a35d95 | 2012-05-23 14:26:42 -0400 | [diff] [blame] | 2937 | if (atomic_read(&root->orphan_inodes)) { |
Josef Bacik | 90290e1 | 2011-12-02 15:44:12 -0500 | [diff] [blame] | 2938 | spin_unlock(&root->orphan_lock); |
| 2939 | return; |
| 2940 | } |
| 2941 | |
| 2942 | if (root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE) { |
| 2943 | spin_unlock(&root->orphan_lock); |
| 2944 | return; |
| 2945 | } |
| 2946 | |
| 2947 | block_rsv = root->orphan_block_rsv; |
| 2948 | root->orphan_block_rsv = NULL; |
| 2949 | spin_unlock(&root->orphan_lock); |
| 2950 | |
Miao Xie | 27cdeb7 | 2014-04-02 19:51:05 +0800 | [diff] [blame] | 2951 | if (test_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &root->state) && |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2952 | btrfs_root_refs(&root->root_item) > 0) { |
| 2953 | ret = btrfs_del_orphan_item(trans, root->fs_info->tree_root, |
| 2954 | root->root_key.objectid); |
Josef Bacik | 4ef31a4 | 2013-08-13 14:10:08 -0400 | [diff] [blame] | 2955 | if (ret) |
| 2956 | btrfs_abort_transaction(trans, root, ret); |
| 2957 | else |
Miao Xie | 27cdeb7 | 2014-04-02 19:51:05 +0800 | [diff] [blame] | 2958 | clear_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, |
| 2959 | &root->state); |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2960 | } |
| 2961 | |
Josef Bacik | 90290e1 | 2011-12-02 15:44:12 -0500 | [diff] [blame] | 2962 | if (block_rsv) { |
| 2963 | WARN_ON(block_rsv->size > 0); |
| 2964 | btrfs_free_block_rsv(root, block_rsv); |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2965 | } |
| 2966 | } |
| 2967 | |
| 2968 | /* |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2969 | * This creates an orphan entry for the given inode in case something goes |
| 2970 | * wrong in the middle of an unlink/truncate. |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2971 | * |
| 2972 | * NOTE: caller of this function should reserve 5 units of metadata for |
| 2973 | * this function. |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2974 | */ |
| 2975 | int btrfs_orphan_add(struct btrfs_trans_handle *trans, struct inode *inode) |
| 2976 | { |
| 2977 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2978 | struct btrfs_block_rsv *block_rsv = NULL; |
| 2979 | int reserve = 0; |
| 2980 | int insert = 0; |
| 2981 | int ret; |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2982 | |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2983 | if (!root->orphan_block_rsv) { |
Miao Xie | 66d8f3d | 2012-09-06 04:02:28 -0600 | [diff] [blame] | 2984 | block_rsv = btrfs_alloc_block_rsv(root, BTRFS_BLOCK_RSV_TEMP); |
Tsutomu Itoh | b532402 | 2011-07-19 07:27:20 +0000 | [diff] [blame] | 2985 | if (!block_rsv) |
| 2986 | return -ENOMEM; |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2987 | } |
| 2988 | |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2989 | spin_lock(&root->orphan_lock); |
| 2990 | if (!root->orphan_block_rsv) { |
| 2991 | root->orphan_block_rsv = block_rsv; |
| 2992 | } else if (block_rsv) { |
| 2993 | btrfs_free_block_rsv(root, block_rsv); |
| 2994 | block_rsv = NULL; |
| 2995 | } |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 2996 | |
Josef Bacik | 8a35d95 | 2012-05-23 14:26:42 -0400 | [diff] [blame] | 2997 | if (!test_and_set_bit(BTRFS_INODE_HAS_ORPHAN_ITEM, |
| 2998 | &BTRFS_I(inode)->runtime_flags)) { |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 2999 | #if 0 |
| 3000 | /* |
| 3001 | * For proper ENOSPC handling, we should do orphan |
| 3002 | * cleanup when mounting. But this introduces backward |
| 3003 | * compatibility issue. |
| 3004 | */ |
| 3005 | if (!xchg(&root->orphan_item_inserted, 1)) |
| 3006 | insert = 2; |
| 3007 | else |
| 3008 | insert = 1; |
| 3009 | #endif |
| 3010 | insert = 1; |
Miao Xie | 321f0e7 | 2012-08-28 22:13:02 -0600 | [diff] [blame] | 3011 | atomic_inc(&root->orphan_inodes); |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 3012 | } |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 3013 | |
Josef Bacik | 72ac3c0 | 2012-05-23 14:13:11 -0400 | [diff] [blame] | 3014 | if (!test_and_set_bit(BTRFS_INODE_ORPHAN_META_RESERVED, |
| 3015 | &BTRFS_I(inode)->runtime_flags)) |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 3016 | reserve = 1; |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 3017 | spin_unlock(&root->orphan_lock); |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 3018 | |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 3019 | /* grab metadata reservation from transaction handle */ |
| 3020 | if (reserve) { |
| 3021 | ret = btrfs_orphan_reserve_metadata(trans, inode); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3022 | BUG_ON(ret); /* -ENOSPC in reservation; Logic error? JDM */ |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 3023 | } |
| 3024 | |
| 3025 | /* insert an orphan item to track this unlinked/truncated file */ |
| 3026 | if (insert >= 1) { |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3027 | ret = btrfs_insert_orphan_item(trans, root, btrfs_ino(inode)); |
Josef Bacik | 4ef31a4 | 2013-08-13 14:10:08 -0400 | [diff] [blame] | 3028 | if (ret) { |
Filipe David Borba Manana | 703c88e | 2013-09-22 21:54:55 +0100 | [diff] [blame] | 3029 | atomic_dec(&root->orphan_inodes); |
Josef Bacik | 4ef31a4 | 2013-08-13 14:10:08 -0400 | [diff] [blame] | 3030 | if (reserve) { |
| 3031 | clear_bit(BTRFS_INODE_ORPHAN_META_RESERVED, |
| 3032 | &BTRFS_I(inode)->runtime_flags); |
| 3033 | btrfs_orphan_release_metadata(inode); |
| 3034 | } |
| 3035 | if (ret != -EEXIST) { |
Josef Bacik | e8e7cff | 2013-08-21 15:54:00 -0400 | [diff] [blame] | 3036 | clear_bit(BTRFS_INODE_HAS_ORPHAN_ITEM, |
| 3037 | &BTRFS_I(inode)->runtime_flags); |
Josef Bacik | 4ef31a4 | 2013-08-13 14:10:08 -0400 | [diff] [blame] | 3038 | btrfs_abort_transaction(trans, root, ret); |
| 3039 | return ret; |
| 3040 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3041 | } |
| 3042 | ret = 0; |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 3043 | } |
| 3044 | |
| 3045 | /* insert an orphan item to track subvolume contains orphan files */ |
| 3046 | if (insert >= 2) { |
| 3047 | ret = btrfs_insert_orphan_item(trans, root->fs_info->tree_root, |
| 3048 | root->root_key.objectid); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3049 | if (ret && ret != -EEXIST) { |
| 3050 | btrfs_abort_transaction(trans, root, ret); |
| 3051 | return ret; |
| 3052 | } |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 3053 | } |
| 3054 | return 0; |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 3055 | } |
| 3056 | |
| 3057 | /* |
| 3058 | * We have done the truncate/delete so we can go ahead and remove the orphan |
| 3059 | * item for this particular inode. |
| 3060 | */ |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 3061 | static int btrfs_orphan_del(struct btrfs_trans_handle *trans, |
| 3062 | struct inode *inode) |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 3063 | { |
| 3064 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 3065 | int delete_item = 0; |
| 3066 | int release_rsv = 0; |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 3067 | int ret = 0; |
| 3068 | |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 3069 | spin_lock(&root->orphan_lock); |
Josef Bacik | 8a35d95 | 2012-05-23 14:26:42 -0400 | [diff] [blame] | 3070 | if (test_and_clear_bit(BTRFS_INODE_HAS_ORPHAN_ITEM, |
| 3071 | &BTRFS_I(inode)->runtime_flags)) |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 3072 | delete_item = 1; |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 3073 | |
Josef Bacik | 72ac3c0 | 2012-05-23 14:13:11 -0400 | [diff] [blame] | 3074 | if (test_and_clear_bit(BTRFS_INODE_ORPHAN_META_RESERVED, |
| 3075 | &BTRFS_I(inode)->runtime_flags)) |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 3076 | release_rsv = 1; |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 3077 | spin_unlock(&root->orphan_lock); |
| 3078 | |
Filipe David Borba Manana | 703c88e | 2013-09-22 21:54:55 +0100 | [diff] [blame] | 3079 | if (delete_item) { |
Josef Bacik | 8a35d95 | 2012-05-23 14:26:42 -0400 | [diff] [blame] | 3080 | atomic_dec(&root->orphan_inodes); |
Filipe David Borba Manana | 703c88e | 2013-09-22 21:54:55 +0100 | [diff] [blame] | 3081 | if (trans) |
| 3082 | ret = btrfs_del_orphan_item(trans, root, |
| 3083 | btrfs_ino(inode)); |
Josef Bacik | 8a35d95 | 2012-05-23 14:26:42 -0400 | [diff] [blame] | 3084 | } |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 3085 | |
Filipe David Borba Manana | 703c88e | 2013-09-22 21:54:55 +0100 | [diff] [blame] | 3086 | if (release_rsv) |
| 3087 | btrfs_orphan_release_metadata(inode); |
| 3088 | |
Josef Bacik | 4ef31a4 | 2013-08-13 14:10:08 -0400 | [diff] [blame] | 3089 | return ret; |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 3090 | } |
| 3091 | |
| 3092 | /* |
| 3093 | * this cleans up any orphans that may be left on the list from the last use |
| 3094 | * of this root. |
| 3095 | */ |
Josef Bacik | 66b4ffd | 2011-01-31 16:22:42 -0500 | [diff] [blame] | 3096 | int btrfs_orphan_cleanup(struct btrfs_root *root) |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 3097 | { |
| 3098 | struct btrfs_path *path; |
| 3099 | struct extent_buffer *leaf; |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 3100 | struct btrfs_key key, found_key; |
| 3101 | struct btrfs_trans_handle *trans; |
| 3102 | struct inode *inode; |
Josef Bacik | 8f6d7f4 | 2011-09-26 15:55:20 -0400 | [diff] [blame] | 3103 | u64 last_objectid = 0; |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 3104 | int ret = 0, nr_unlink = 0, nr_truncate = 0; |
| 3105 | |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 3106 | if (cmpxchg(&root->orphan_cleanup_state, 0, ORPHAN_CLEANUP_STARTED)) |
Josef Bacik | 66b4ffd | 2011-01-31 16:22:42 -0500 | [diff] [blame] | 3107 | return 0; |
Yan, Zheng | c71bf09 | 2009-11-12 09:34:40 +0000 | [diff] [blame] | 3108 | |
| 3109 | path = btrfs_alloc_path(); |
Josef Bacik | 66b4ffd | 2011-01-31 16:22:42 -0500 | [diff] [blame] | 3110 | if (!path) { |
| 3111 | ret = -ENOMEM; |
| 3112 | goto out; |
| 3113 | } |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 3114 | path->reada = -1; |
| 3115 | |
| 3116 | key.objectid = BTRFS_ORPHAN_OBJECTID; |
| 3117 | btrfs_set_key_type(&key, BTRFS_ORPHAN_ITEM_KEY); |
| 3118 | key.offset = (u64)-1; |
| 3119 | |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 3120 | while (1) { |
| 3121 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
Josef Bacik | 66b4ffd | 2011-01-31 16:22:42 -0500 | [diff] [blame] | 3122 | if (ret < 0) |
| 3123 | goto out; |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 3124 | |
| 3125 | /* |
| 3126 | * 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] | 3127 | * 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] | 3128 | * find the key and see if we have stuff that matches |
| 3129 | */ |
| 3130 | if (ret > 0) { |
Josef Bacik | 66b4ffd | 2011-01-31 16:22:42 -0500 | [diff] [blame] | 3131 | ret = 0; |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 3132 | if (path->slots[0] == 0) |
| 3133 | break; |
| 3134 | path->slots[0]--; |
| 3135 | } |
| 3136 | |
| 3137 | /* pull out the item */ |
| 3138 | leaf = path->nodes[0]; |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 3139 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
| 3140 | |
| 3141 | /* make sure the item matches what we want */ |
| 3142 | if (found_key.objectid != BTRFS_ORPHAN_OBJECTID) |
| 3143 | break; |
| 3144 | if (btrfs_key_type(&found_key) != BTRFS_ORPHAN_ITEM_KEY) |
| 3145 | break; |
| 3146 | |
| 3147 | /* release the path since we're done with it */ |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3148 | btrfs_release_path(path); |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 3149 | |
| 3150 | /* |
| 3151 | * this is where we are basically btrfs_lookup, without the |
| 3152 | * crossing root thing. we store the inode number in the |
| 3153 | * offset of the orphan item. |
| 3154 | */ |
Josef Bacik | 8f6d7f4 | 2011-09-26 15:55:20 -0400 | [diff] [blame] | 3155 | |
| 3156 | if (found_key.offset == last_objectid) { |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 3157 | btrfs_err(root->fs_info, |
| 3158 | "Error removing orphan entry, stopping orphan cleanup"); |
Josef Bacik | 8f6d7f4 | 2011-09-26 15:55:20 -0400 | [diff] [blame] | 3159 | ret = -EINVAL; |
| 3160 | goto out; |
| 3161 | } |
| 3162 | |
| 3163 | last_objectid = found_key.offset; |
| 3164 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3165 | found_key.objectid = found_key.offset; |
| 3166 | found_key.type = BTRFS_INODE_ITEM_KEY; |
| 3167 | found_key.offset = 0; |
Josef Bacik | 73f7341 | 2009-12-04 17:38:27 +0000 | [diff] [blame] | 3168 | inode = btrfs_iget(root->fs_info->sb, &found_key, root, NULL); |
Rusty Russell | 8c6ffba | 2013-07-15 11:20:32 +0930 | [diff] [blame] | 3169 | ret = PTR_ERR_OR_ZERO(inode); |
Josef Bacik | a8c9e57 | 2011-09-21 16:55:59 -0400 | [diff] [blame] | 3170 | if (ret && ret != -ESTALE) |
Josef Bacik | 66b4ffd | 2011-01-31 16:22:42 -0500 | [diff] [blame] | 3171 | goto out; |
Josef Bacik | a8c9e57 | 2011-09-21 16:55:59 -0400 | [diff] [blame] | 3172 | |
Arne Jansen | f8e9e0b | 2011-12-14 20:12:02 -0500 | [diff] [blame] | 3173 | if (ret == -ESTALE && root == root->fs_info->tree_root) { |
| 3174 | struct btrfs_root *dead_root; |
| 3175 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 3176 | int is_dead_root = 0; |
| 3177 | |
| 3178 | /* |
| 3179 | * this is an orphan in the tree root. Currently these |
| 3180 | * could come from 2 sources: |
| 3181 | * a) a snapshot deletion in progress |
| 3182 | * b) a free space cache inode |
| 3183 | * We need to distinguish those two, as the snapshot |
| 3184 | * orphan must not get deleted. |
| 3185 | * find_dead_roots already ran before us, so if this |
| 3186 | * is a snapshot deletion, we should find the root |
| 3187 | * in the dead_roots list |
| 3188 | */ |
| 3189 | spin_lock(&fs_info->trans_lock); |
| 3190 | list_for_each_entry(dead_root, &fs_info->dead_roots, |
| 3191 | root_list) { |
| 3192 | if (dead_root->root_key.objectid == |
| 3193 | found_key.objectid) { |
| 3194 | is_dead_root = 1; |
| 3195 | break; |
| 3196 | } |
| 3197 | } |
| 3198 | spin_unlock(&fs_info->trans_lock); |
| 3199 | if (is_dead_root) { |
| 3200 | /* prevent this orphan from being found again */ |
| 3201 | key.offset = found_key.objectid - 1; |
| 3202 | continue; |
| 3203 | } |
| 3204 | } |
Josef Bacik | a8c9e57 | 2011-09-21 16:55:59 -0400 | [diff] [blame] | 3205 | /* |
| 3206 | * Inode is already gone but the orphan item is still there, |
| 3207 | * kill the orphan item. |
| 3208 | */ |
| 3209 | if (ret == -ESTALE) { |
| 3210 | trans = btrfs_start_transaction(root, 1); |
| 3211 | if (IS_ERR(trans)) { |
| 3212 | ret = PTR_ERR(trans); |
| 3213 | goto out; |
| 3214 | } |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 3215 | btrfs_debug(root->fs_info, "auto deleting %Lu", |
| 3216 | found_key.objectid); |
Josef Bacik | a8c9e57 | 2011-09-21 16:55:59 -0400 | [diff] [blame] | 3217 | ret = btrfs_del_orphan_item(trans, root, |
| 3218 | found_key.objectid); |
Josef Bacik | a8c9e57 | 2011-09-21 16:55:59 -0400 | [diff] [blame] | 3219 | btrfs_end_transaction(trans, root); |
Josef Bacik | 4ef31a4 | 2013-08-13 14:10:08 -0400 | [diff] [blame] | 3220 | if (ret) |
| 3221 | goto out; |
Josef Bacik | a8c9e57 | 2011-09-21 16:55:59 -0400 | [diff] [blame] | 3222 | continue; |
Josef Bacik | 66b4ffd | 2011-01-31 16:22:42 -0500 | [diff] [blame] | 3223 | } |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 3224 | |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 3225 | /* |
| 3226 | * add this inode to the orphan list so btrfs_orphan_del does |
| 3227 | * the proper thing when we hit it |
| 3228 | */ |
Josef Bacik | 8a35d95 | 2012-05-23 14:26:42 -0400 | [diff] [blame] | 3229 | set_bit(BTRFS_INODE_HAS_ORPHAN_ITEM, |
| 3230 | &BTRFS_I(inode)->runtime_flags); |
Josef Bacik | 925396e | 2013-02-01 15:57:47 -0500 | [diff] [blame] | 3231 | atomic_inc(&root->orphan_inodes); |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 3232 | |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 3233 | /* if we have links, this was a truncate, lets do that */ |
| 3234 | if (inode->i_nlink) { |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 3235 | if (WARN_ON(!S_ISREG(inode->i_mode))) { |
Josef Bacik | a41ad39 | 2011-01-31 15:30:16 -0500 | [diff] [blame] | 3236 | iput(inode); |
| 3237 | continue; |
| 3238 | } |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 3239 | nr_truncate++; |
Josef Bacik | f3fe820 | 2013-01-07 17:03:21 -0500 | [diff] [blame] | 3240 | |
| 3241 | /* 1 for the orphan item deletion. */ |
| 3242 | trans = btrfs_start_transaction(root, 1); |
| 3243 | if (IS_ERR(trans)) { |
Josef Bacik | c69b26b | 2013-06-03 16:51:23 -0400 | [diff] [blame] | 3244 | iput(inode); |
Josef Bacik | f3fe820 | 2013-01-07 17:03:21 -0500 | [diff] [blame] | 3245 | ret = PTR_ERR(trans); |
| 3246 | goto out; |
| 3247 | } |
| 3248 | ret = btrfs_orphan_add(trans, inode); |
| 3249 | btrfs_end_transaction(trans, root); |
Josef Bacik | c69b26b | 2013-06-03 16:51:23 -0400 | [diff] [blame] | 3250 | if (ret) { |
| 3251 | iput(inode); |
Josef Bacik | f3fe820 | 2013-01-07 17:03:21 -0500 | [diff] [blame] | 3252 | goto out; |
Josef Bacik | c69b26b | 2013-06-03 16:51:23 -0400 | [diff] [blame] | 3253 | } |
Josef Bacik | f3fe820 | 2013-01-07 17:03:21 -0500 | [diff] [blame] | 3254 | |
Josef Bacik | 66b4ffd | 2011-01-31 16:22:42 -0500 | [diff] [blame] | 3255 | ret = btrfs_truncate(inode); |
Josef Bacik | 4a7d0f6 | 2013-02-07 16:27:28 -0500 | [diff] [blame] | 3256 | if (ret) |
| 3257 | btrfs_orphan_del(NULL, inode); |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 3258 | } else { |
| 3259 | nr_unlink++; |
| 3260 | } |
| 3261 | |
| 3262 | /* this will do delete_inode and everything for us */ |
| 3263 | iput(inode); |
Josef Bacik | 66b4ffd | 2011-01-31 16:22:42 -0500 | [diff] [blame] | 3264 | if (ret) |
| 3265 | goto out; |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 3266 | } |
Miao Xie | 3254c87 | 2011-11-10 20:45:05 -0500 | [diff] [blame] | 3267 | /* release the path since we're done with it */ |
| 3268 | btrfs_release_path(path); |
| 3269 | |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 3270 | root->orphan_cleanup_state = ORPHAN_CLEANUP_DONE; |
| 3271 | |
| 3272 | if (root->orphan_block_rsv) |
| 3273 | btrfs_block_rsv_release(root, root->orphan_block_rsv, |
| 3274 | (u64)-1); |
| 3275 | |
Miao Xie | 27cdeb7 | 2014-04-02 19:51:05 +0800 | [diff] [blame] | 3276 | if (root->orphan_block_rsv || |
| 3277 | test_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &root->state)) { |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 3278 | trans = btrfs_join_transaction(root); |
Josef Bacik | 66b4ffd | 2011-01-31 16:22:42 -0500 | [diff] [blame] | 3279 | if (!IS_ERR(trans)) |
| 3280 | btrfs_end_transaction(trans, root); |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 3281 | } |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 3282 | |
| 3283 | if (nr_unlink) |
David Sterba | 4884b47 | 2013-03-20 13:31:27 +0000 | [diff] [blame] | 3284 | btrfs_debug(root->fs_info, "unlinked %d orphans", nr_unlink); |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 3285 | if (nr_truncate) |
David Sterba | 4884b47 | 2013-03-20 13:31:27 +0000 | [diff] [blame] | 3286 | btrfs_debug(root->fs_info, "truncated %d orphans", nr_truncate); |
Josef Bacik | 66b4ffd | 2011-01-31 16:22:42 -0500 | [diff] [blame] | 3287 | |
| 3288 | out: |
| 3289 | if (ret) |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 3290 | btrfs_crit(root->fs_info, |
| 3291 | "could not do orphan cleanup %d", ret); |
Josef Bacik | 66b4ffd | 2011-01-31 16:22:42 -0500 | [diff] [blame] | 3292 | btrfs_free_path(path); |
| 3293 | return ret; |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 3294 | } |
| 3295 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 3296 | /* |
Chris Mason | 46a53cc | 2009-04-27 11:47:50 -0400 | [diff] [blame] | 3297 | * very simple check to peek ahead in the leaf looking for xattrs. If we |
| 3298 | * don't find any xattrs, we know there can't be any acls. |
| 3299 | * |
| 3300 | * slot is the slot the inode is in, objectid is the objectid of the inode |
| 3301 | */ |
| 3302 | static noinline int acls_after_inode_item(struct extent_buffer *leaf, |
Filipe David Borba Manana | 6354192 | 2014-01-07 11:47:46 +0000 | [diff] [blame] | 3303 | int slot, u64 objectid, |
| 3304 | int *first_xattr_slot) |
Chris Mason | 46a53cc | 2009-04-27 11:47:50 -0400 | [diff] [blame] | 3305 | { |
| 3306 | u32 nritems = btrfs_header_nritems(leaf); |
| 3307 | struct btrfs_key found_key; |
Josef Bacik | f23b5a5 | 2013-06-19 10:16:26 -0400 | [diff] [blame] | 3308 | static u64 xattr_access = 0; |
| 3309 | static u64 xattr_default = 0; |
Chris Mason | 46a53cc | 2009-04-27 11:47:50 -0400 | [diff] [blame] | 3310 | int scanned = 0; |
| 3311 | |
Josef Bacik | f23b5a5 | 2013-06-19 10:16:26 -0400 | [diff] [blame] | 3312 | if (!xattr_access) { |
| 3313 | xattr_access = btrfs_name_hash(POSIX_ACL_XATTR_ACCESS, |
| 3314 | strlen(POSIX_ACL_XATTR_ACCESS)); |
| 3315 | xattr_default = btrfs_name_hash(POSIX_ACL_XATTR_DEFAULT, |
| 3316 | strlen(POSIX_ACL_XATTR_DEFAULT)); |
| 3317 | } |
| 3318 | |
Chris Mason | 46a53cc | 2009-04-27 11:47:50 -0400 | [diff] [blame] | 3319 | slot++; |
Filipe David Borba Manana | 6354192 | 2014-01-07 11:47:46 +0000 | [diff] [blame] | 3320 | *first_xattr_slot = -1; |
Chris Mason | 46a53cc | 2009-04-27 11:47:50 -0400 | [diff] [blame] | 3321 | while (slot < nritems) { |
| 3322 | btrfs_item_key_to_cpu(leaf, &found_key, slot); |
| 3323 | |
| 3324 | /* we found a different objectid, there must not be acls */ |
| 3325 | if (found_key.objectid != objectid) |
| 3326 | return 0; |
| 3327 | |
| 3328 | /* we found an xattr, assume we've got an acl */ |
Josef Bacik | f23b5a5 | 2013-06-19 10:16:26 -0400 | [diff] [blame] | 3329 | if (found_key.type == BTRFS_XATTR_ITEM_KEY) { |
Filipe David Borba Manana | 6354192 | 2014-01-07 11:47:46 +0000 | [diff] [blame] | 3330 | if (*first_xattr_slot == -1) |
| 3331 | *first_xattr_slot = slot; |
Josef Bacik | f23b5a5 | 2013-06-19 10:16:26 -0400 | [diff] [blame] | 3332 | if (found_key.offset == xattr_access || |
| 3333 | found_key.offset == xattr_default) |
| 3334 | return 1; |
| 3335 | } |
Chris Mason | 46a53cc | 2009-04-27 11:47:50 -0400 | [diff] [blame] | 3336 | |
| 3337 | /* |
| 3338 | * we found a key greater than an xattr key, there can't |
| 3339 | * be any acls later on |
| 3340 | */ |
| 3341 | if (found_key.type > BTRFS_XATTR_ITEM_KEY) |
| 3342 | return 0; |
| 3343 | |
| 3344 | slot++; |
| 3345 | scanned++; |
| 3346 | |
| 3347 | /* |
| 3348 | * it goes inode, inode backrefs, xattrs, extents, |
| 3349 | * so if there are a ton of hard links to an inode there can |
| 3350 | * be a lot of backrefs. Don't waste time searching too hard, |
| 3351 | * this is just an optimization |
| 3352 | */ |
| 3353 | if (scanned >= 8) |
| 3354 | break; |
| 3355 | } |
| 3356 | /* we hit the end of the leaf before we found an xattr or |
| 3357 | * something larger than an xattr. We have to assume the inode |
| 3358 | * has acls |
| 3359 | */ |
Filipe David Borba Manana | 6354192 | 2014-01-07 11:47:46 +0000 | [diff] [blame] | 3360 | if (*first_xattr_slot == -1) |
| 3361 | *first_xattr_slot = slot; |
Chris Mason | 46a53cc | 2009-04-27 11:47:50 -0400 | [diff] [blame] | 3362 | return 1; |
| 3363 | } |
| 3364 | |
| 3365 | /* |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 3366 | * read an inode from the btree into the in-memory inode |
| 3367 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3368 | static void btrfs_read_locked_inode(struct inode *inode) |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3369 | { |
| 3370 | struct btrfs_path *path; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3371 | struct extent_buffer *leaf; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3372 | struct btrfs_inode_item *inode_item; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 3373 | struct btrfs_timespec *tspec; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3374 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 3375 | struct btrfs_key location; |
Miao Xie | 67de117 | 2013-12-26 13:07:06 +0800 | [diff] [blame] | 3376 | unsigned long ptr; |
Chris Mason | 46a53cc | 2009-04-27 11:47:50 -0400 | [diff] [blame] | 3377 | int maybe_acls; |
Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 3378 | u32 rdev; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3379 | int ret; |
Miao Xie | 2f7e33d | 2011-06-23 07:27:13 +0000 | [diff] [blame] | 3380 | bool filled = false; |
Filipe David Borba Manana | 6354192 | 2014-01-07 11:47:46 +0000 | [diff] [blame] | 3381 | int first_xattr_slot; |
Miao Xie | 2f7e33d | 2011-06-23 07:27:13 +0000 | [diff] [blame] | 3382 | |
| 3383 | ret = btrfs_fill_inode(inode, &rdev); |
| 3384 | if (!ret) |
| 3385 | filled = true; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3386 | |
| 3387 | path = btrfs_alloc_path(); |
Mark Fasheh | 1748f84 | 2011-07-12 11:25:31 -0700 | [diff] [blame] | 3388 | if (!path) |
| 3389 | goto make_bad; |
| 3390 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3391 | memcpy(&location, &BTRFS_I(inode)->location, sizeof(location)); |
Chris Mason | dc17ff8 | 2008-01-08 15:46:30 -0500 | [diff] [blame] | 3392 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3393 | ret = btrfs_lookup_inode(NULL, root, path, &location, 0); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3394 | if (ret) |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3395 | goto make_bad; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3396 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3397 | leaf = path->nodes[0]; |
Miao Xie | 2f7e33d | 2011-06-23 07:27:13 +0000 | [diff] [blame] | 3398 | |
| 3399 | if (filled) |
Miao Xie | 67de117 | 2013-12-26 13:07:06 +0800 | [diff] [blame] | 3400 | goto cache_index; |
Miao Xie | 2f7e33d | 2011-06-23 07:27:13 +0000 | [diff] [blame] | 3401 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3402 | inode_item = btrfs_item_ptr(leaf, path->slots[0], |
| 3403 | struct btrfs_inode_item); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3404 | inode->i_mode = btrfs_inode_mode(leaf, inode_item); |
Miklos Szeredi | bfe8684 | 2011-10-28 14:13:29 +0200 | [diff] [blame] | 3405 | set_nlink(inode, btrfs_inode_nlink(leaf, inode_item)); |
Eric W. Biederman | 2f2f43d | 2012-02-10 11:05:07 -0800 | [diff] [blame] | 3406 | i_uid_write(inode, btrfs_inode_uid(leaf, inode_item)); |
| 3407 | i_gid_write(inode, btrfs_inode_gid(leaf, inode_item)); |
Chris Mason | dbe674a | 2008-07-17 12:54:05 -0400 | [diff] [blame] | 3408 | btrfs_i_size_write(inode, btrfs_inode_size(leaf, inode_item)); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3409 | |
| 3410 | tspec = btrfs_inode_atime(inode_item); |
| 3411 | inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec); |
| 3412 | inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec); |
| 3413 | |
| 3414 | tspec = btrfs_inode_mtime(inode_item); |
| 3415 | inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec); |
| 3416 | inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec); |
| 3417 | |
| 3418 | tspec = btrfs_inode_ctime(inode_item); |
| 3419 | inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec); |
| 3420 | inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec); |
| 3421 | |
Yan Zheng | a76a3cd | 2008-10-09 11:46:29 -0400 | [diff] [blame] | 3422 | inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item)); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3423 | BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item); |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 3424 | BTRFS_I(inode)->last_trans = btrfs_inode_transid(leaf, inode_item); |
| 3425 | |
| 3426 | /* |
| 3427 | * If we were modified in the current generation and evicted from memory |
| 3428 | * and then re-read we need to do a full sync since we don't have any |
| 3429 | * idea about which extents were modified before we were evicted from |
| 3430 | * cache. |
| 3431 | */ |
| 3432 | if (BTRFS_I(inode)->last_trans == root->fs_info->generation) |
| 3433 | set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, |
| 3434 | &BTRFS_I(inode)->runtime_flags); |
| 3435 | |
Josef Bacik | 0c4d2d9 | 2012-04-05 15:03:02 -0400 | [diff] [blame] | 3436 | inode->i_version = btrfs_inode_sequence(leaf, inode_item); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3437 | inode->i_generation = BTRFS_I(inode)->generation; |
Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 3438 | inode->i_rdev = 0; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3439 | rdev = btrfs_inode_rdev(leaf, inode_item); |
| 3440 | |
Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 3441 | BTRFS_I(inode)->index_cnt = (u64)-1; |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 3442 | BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item); |
Miao Xie | 67de117 | 2013-12-26 13:07:06 +0800 | [diff] [blame] | 3443 | |
| 3444 | cache_index: |
| 3445 | path->slots[0]++; |
| 3446 | if (inode->i_nlink != 1 || |
| 3447 | path->slots[0] >= btrfs_header_nritems(leaf)) |
| 3448 | goto cache_acl; |
| 3449 | |
| 3450 | btrfs_item_key_to_cpu(leaf, &location, path->slots[0]); |
| 3451 | if (location.objectid != btrfs_ino(inode)) |
| 3452 | goto cache_acl; |
| 3453 | |
| 3454 | ptr = btrfs_item_ptr_offset(leaf, path->slots[0]); |
| 3455 | if (location.type == BTRFS_INODE_REF_KEY) { |
| 3456 | struct btrfs_inode_ref *ref; |
| 3457 | |
| 3458 | ref = (struct btrfs_inode_ref *)ptr; |
| 3459 | BTRFS_I(inode)->dir_index = btrfs_inode_ref_index(leaf, ref); |
| 3460 | } else if (location.type == BTRFS_INODE_EXTREF_KEY) { |
| 3461 | struct btrfs_inode_extref *extref; |
| 3462 | |
| 3463 | extref = (struct btrfs_inode_extref *)ptr; |
| 3464 | BTRFS_I(inode)->dir_index = btrfs_inode_extref_index(leaf, |
| 3465 | extref); |
| 3466 | } |
Miao Xie | 2f7e33d | 2011-06-23 07:27:13 +0000 | [diff] [blame] | 3467 | cache_acl: |
Chris Mason | 46a53cc | 2009-04-27 11:47:50 -0400 | [diff] [blame] | 3468 | /* |
| 3469 | * try to precache a NULL acl entry for files that don't have |
| 3470 | * any xattrs or acls |
| 3471 | */ |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3472 | maybe_acls = acls_after_inode_item(leaf, path->slots[0], |
Filipe David Borba Manana | 6354192 | 2014-01-07 11:47:46 +0000 | [diff] [blame] | 3473 | btrfs_ino(inode), &first_xattr_slot); |
| 3474 | if (first_xattr_slot != -1) { |
| 3475 | path->slots[0] = first_xattr_slot; |
| 3476 | ret = btrfs_load_inode_props(inode, path); |
| 3477 | if (ret) |
| 3478 | btrfs_err(root->fs_info, |
David Sterba | 351fd35 | 2014-05-15 16:48:20 +0200 | [diff] [blame] | 3479 | "error loading props for ino %llu (root %llu): %d", |
Filipe David Borba Manana | 6354192 | 2014-01-07 11:47:46 +0000 | [diff] [blame] | 3480 | btrfs_ino(inode), |
| 3481 | root->root_key.objectid, ret); |
| 3482 | } |
| 3483 | btrfs_free_path(path); |
| 3484 | |
Al Viro | 72c0490 | 2009-06-24 16:58:48 -0400 | [diff] [blame] | 3485 | if (!maybe_acls) |
| 3486 | cache_no_acl(inode); |
Chris Mason | 46a53cc | 2009-04-27 11:47:50 -0400 | [diff] [blame] | 3487 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3488 | switch (inode->i_mode & S_IFMT) { |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3489 | case S_IFREG: |
| 3490 | inode->i_mapping->a_ops = &btrfs_aops; |
Chris Mason | 0416008 | 2008-03-26 10:28:07 -0400 | [diff] [blame] | 3491 | inode->i_mapping->backing_dev_info = &root->fs_info->bdi; |
Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 3492 | BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3493 | inode->i_fop = &btrfs_file_operations; |
| 3494 | inode->i_op = &btrfs_file_inode_operations; |
| 3495 | break; |
| 3496 | case S_IFDIR: |
| 3497 | inode->i_fop = &btrfs_dir_file_operations; |
| 3498 | if (root == root->fs_info->tree_root) |
| 3499 | inode->i_op = &btrfs_dir_ro_inode_operations; |
| 3500 | else |
| 3501 | inode->i_op = &btrfs_dir_inode_operations; |
| 3502 | break; |
| 3503 | case S_IFLNK: |
| 3504 | inode->i_op = &btrfs_symlink_inode_operations; |
| 3505 | inode->i_mapping->a_ops = &btrfs_symlink_aops; |
Chris Mason | 0416008 | 2008-03-26 10:28:07 -0400 | [diff] [blame] | 3506 | inode->i_mapping->backing_dev_info = &root->fs_info->bdi; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3507 | break; |
Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 3508 | default: |
Jim Owens | 0279b4c | 2009-02-04 09:29:13 -0500 | [diff] [blame] | 3509 | inode->i_op = &btrfs_special_inode_operations; |
Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 3510 | init_special_inode(inode, inode->i_mode, rdev); |
| 3511 | break; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3512 | } |
Christoph Hellwig | 6cbff00 | 2009-04-17 10:37:41 +0200 | [diff] [blame] | 3513 | |
| 3514 | btrfs_update_iflags(inode); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3515 | return; |
| 3516 | |
| 3517 | make_bad: |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3518 | btrfs_free_path(path); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3519 | make_bad_inode(inode); |
| 3520 | } |
| 3521 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 3522 | /* |
| 3523 | * given a leaf and an inode, copy the inode fields into the leaf |
| 3524 | */ |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3525 | static void fill_inode_item(struct btrfs_trans_handle *trans, |
| 3526 | struct extent_buffer *leaf, |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3527 | struct btrfs_inode_item *item, |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3528 | struct inode *inode) |
| 3529 | { |
Liu Bo | 51fab69 | 2012-12-27 09:01:21 +0000 | [diff] [blame] | 3530 | struct btrfs_map_token token; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3531 | |
Liu Bo | 51fab69 | 2012-12-27 09:01:21 +0000 | [diff] [blame] | 3532 | btrfs_init_map_token(&token); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3533 | |
Liu Bo | 51fab69 | 2012-12-27 09:01:21 +0000 | [diff] [blame] | 3534 | btrfs_set_token_inode_uid(leaf, item, i_uid_read(inode), &token); |
| 3535 | btrfs_set_token_inode_gid(leaf, item, i_gid_read(inode), &token); |
| 3536 | btrfs_set_token_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size, |
| 3537 | &token); |
| 3538 | btrfs_set_token_inode_mode(leaf, item, inode->i_mode, &token); |
| 3539 | btrfs_set_token_inode_nlink(leaf, item, inode->i_nlink, &token); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3540 | |
Liu Bo | 51fab69 | 2012-12-27 09:01:21 +0000 | [diff] [blame] | 3541 | btrfs_set_token_timespec_sec(leaf, btrfs_inode_atime(item), |
| 3542 | inode->i_atime.tv_sec, &token); |
| 3543 | btrfs_set_token_timespec_nsec(leaf, btrfs_inode_atime(item), |
| 3544 | inode->i_atime.tv_nsec, &token); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3545 | |
Liu Bo | 51fab69 | 2012-12-27 09:01:21 +0000 | [diff] [blame] | 3546 | btrfs_set_token_timespec_sec(leaf, btrfs_inode_mtime(item), |
| 3547 | inode->i_mtime.tv_sec, &token); |
| 3548 | btrfs_set_token_timespec_nsec(leaf, btrfs_inode_mtime(item), |
| 3549 | inode->i_mtime.tv_nsec, &token); |
| 3550 | |
| 3551 | btrfs_set_token_timespec_sec(leaf, btrfs_inode_ctime(item), |
| 3552 | inode->i_ctime.tv_sec, &token); |
| 3553 | btrfs_set_token_timespec_nsec(leaf, btrfs_inode_ctime(item), |
| 3554 | inode->i_ctime.tv_nsec, &token); |
| 3555 | |
| 3556 | btrfs_set_token_inode_nbytes(leaf, item, inode_get_bytes(inode), |
| 3557 | &token); |
| 3558 | btrfs_set_token_inode_generation(leaf, item, BTRFS_I(inode)->generation, |
| 3559 | &token); |
| 3560 | btrfs_set_token_inode_sequence(leaf, item, inode->i_version, &token); |
| 3561 | btrfs_set_token_inode_transid(leaf, item, trans->transid, &token); |
| 3562 | btrfs_set_token_inode_rdev(leaf, item, inode->i_rdev, &token); |
| 3563 | btrfs_set_token_inode_flags(leaf, item, BTRFS_I(inode)->flags, &token); |
| 3564 | btrfs_set_token_inode_block_group(leaf, item, 0, &token); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3565 | } |
| 3566 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 3567 | /* |
| 3568 | * copy everything in the in-memory inode into the btree. |
| 3569 | */ |
Chris Mason | 2115133 | 2011-11-10 20:39:08 -0500 | [diff] [blame] | 3570 | static noinline int btrfs_update_inode_item(struct btrfs_trans_handle *trans, |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3571 | struct btrfs_root *root, struct inode *inode) |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3572 | { |
| 3573 | struct btrfs_inode_item *inode_item; |
| 3574 | struct btrfs_path *path; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3575 | struct extent_buffer *leaf; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3576 | int ret; |
| 3577 | |
| 3578 | path = btrfs_alloc_path(); |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 3579 | if (!path) |
| 3580 | return -ENOMEM; |
| 3581 | |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 3582 | path->leave_spinning = 1; |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 3583 | ret = btrfs_lookup_inode(trans, root, path, &BTRFS_I(inode)->location, |
| 3584 | 1); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3585 | if (ret) { |
| 3586 | if (ret > 0) |
| 3587 | ret = -ENOENT; |
| 3588 | goto failed; |
| 3589 | } |
| 3590 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3591 | leaf = path->nodes[0]; |
| 3592 | inode_item = btrfs_item_ptr(leaf, path->slots[0], |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 3593 | struct btrfs_inode_item); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3594 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3595 | fill_inode_item(trans, leaf, inode_item, inode); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3596 | btrfs_mark_buffer_dirty(leaf); |
Josef Bacik | 15ee9bc | 2007-08-10 16:22:09 -0400 | [diff] [blame] | 3597 | btrfs_set_inode_last_trans(trans, inode); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3598 | ret = 0; |
| 3599 | failed: |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3600 | btrfs_free_path(path); |
| 3601 | return ret; |
| 3602 | } |
| 3603 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 3604 | /* |
Chris Mason | 2115133 | 2011-11-10 20:39:08 -0500 | [diff] [blame] | 3605 | * copy everything in the in-memory inode into the btree. |
| 3606 | */ |
| 3607 | noinline int btrfs_update_inode(struct btrfs_trans_handle *trans, |
| 3608 | struct btrfs_root *root, struct inode *inode) |
| 3609 | { |
| 3610 | int ret; |
| 3611 | |
| 3612 | /* |
| 3613 | * If the inode is a free space inode, we can deadlock during commit |
| 3614 | * if we put it into the delayed code. |
| 3615 | * |
| 3616 | * The data relocation inode should also be directly updated |
| 3617 | * without delay |
| 3618 | */ |
Liu Bo | 83eea1f | 2012-07-10 05:28:39 -0600 | [diff] [blame] | 3619 | if (!btrfs_is_free_space_inode(inode) |
Chris Mason | 2115133 | 2011-11-10 20:39:08 -0500 | [diff] [blame] | 3620 | && root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID) { |
Alexander Block | 8ea05e3 | 2012-07-25 17:35:53 +0200 | [diff] [blame] | 3621 | btrfs_update_root_times(trans, root); |
| 3622 | |
Chris Mason | 2115133 | 2011-11-10 20:39:08 -0500 | [diff] [blame] | 3623 | ret = btrfs_delayed_update_inode(trans, root, inode); |
| 3624 | if (!ret) |
| 3625 | btrfs_set_inode_last_trans(trans, inode); |
| 3626 | return ret; |
| 3627 | } |
| 3628 | |
| 3629 | return btrfs_update_inode_item(trans, root, inode); |
| 3630 | } |
| 3631 | |
Josef Bacik | be6aef6 | 2012-10-22 15:43:12 -0400 | [diff] [blame] | 3632 | noinline int btrfs_update_inode_fallback(struct btrfs_trans_handle *trans, |
| 3633 | struct btrfs_root *root, |
| 3634 | struct inode *inode) |
Chris Mason | 2115133 | 2011-11-10 20:39:08 -0500 | [diff] [blame] | 3635 | { |
| 3636 | int ret; |
| 3637 | |
| 3638 | ret = btrfs_update_inode(trans, root, inode); |
| 3639 | if (ret == -ENOSPC) |
| 3640 | return btrfs_update_inode_item(trans, root, inode); |
| 3641 | return ret; |
| 3642 | } |
| 3643 | |
| 3644 | /* |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 3645 | * unlink helper that gets used here in inode.c and in the tree logging |
| 3646 | * recovery code. It remove a link in a directory with a given name, and |
| 3647 | * also drops the back refs in the inode to the directory |
| 3648 | */ |
Al Viro | 9298679 | 2011-03-04 17:14:37 +0000 | [diff] [blame] | 3649 | static int __btrfs_unlink_inode(struct btrfs_trans_handle *trans, |
| 3650 | struct btrfs_root *root, |
| 3651 | struct inode *dir, struct inode *inode, |
| 3652 | const char *name, int name_len) |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3653 | { |
| 3654 | struct btrfs_path *path; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3655 | int ret = 0; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3656 | struct extent_buffer *leaf; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3657 | struct btrfs_dir_item *di; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3658 | struct btrfs_key key; |
Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 3659 | u64 index; |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3660 | u64 ino = btrfs_ino(inode); |
| 3661 | u64 dir_ino = btrfs_ino(dir); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3662 | |
| 3663 | path = btrfs_alloc_path(); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3664 | if (!path) { |
| 3665 | ret = -ENOMEM; |
Tsutomu Itoh | 554233a | 2011-02-03 03:16:25 +0000 | [diff] [blame] | 3666 | goto out; |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3667 | } |
| 3668 | |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 3669 | path->leave_spinning = 1; |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3670 | di = btrfs_lookup_dir_item(trans, root, path, dir_ino, |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3671 | name, name_len, -1); |
| 3672 | if (IS_ERR(di)) { |
| 3673 | ret = PTR_ERR(di); |
| 3674 | goto err; |
| 3675 | } |
| 3676 | if (!di) { |
| 3677 | ret = -ENOENT; |
| 3678 | goto err; |
| 3679 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3680 | leaf = path->nodes[0]; |
| 3681 | btrfs_dir_item_key_to_cpu(leaf, di, &key); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3682 | ret = btrfs_delete_one_dir_name(trans, root, path, di); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3683 | if (ret) |
| 3684 | goto err; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3685 | btrfs_release_path(path); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3686 | |
Miao Xie | 67de117 | 2013-12-26 13:07:06 +0800 | [diff] [blame] | 3687 | /* |
| 3688 | * If we don't have dir index, we have to get it by looking up |
| 3689 | * the inode ref, since we get the inode ref, remove it directly, |
| 3690 | * it is unnecessary to do delayed deletion. |
| 3691 | * |
| 3692 | * But if we have dir index, needn't search inode ref to get it. |
| 3693 | * Since the inode ref is close to the inode item, it is better |
| 3694 | * that we delay to delete it, and just do this deletion when |
| 3695 | * we update the inode item. |
| 3696 | */ |
| 3697 | if (BTRFS_I(inode)->dir_index) { |
| 3698 | ret = btrfs_delayed_delete_inode_ref(inode); |
| 3699 | if (!ret) { |
| 3700 | index = BTRFS_I(inode)->dir_index; |
| 3701 | goto skip_backref; |
| 3702 | } |
| 3703 | } |
| 3704 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3705 | ret = btrfs_del_inode_ref(trans, root, name, name_len, ino, |
| 3706 | dir_ino, &index); |
Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 3707 | if (ret) { |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 3708 | btrfs_info(root->fs_info, |
| 3709 | "failed to delete reference to %.*s, inode %llu parent %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 3710 | name_len, name, ino, dir_ino); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3711 | btrfs_abort_transaction(trans, root, ret); |
Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 3712 | goto err; |
| 3713 | } |
Miao Xie | 67de117 | 2013-12-26 13:07:06 +0800 | [diff] [blame] | 3714 | skip_backref: |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 3715 | ret = btrfs_delete_delayed_dir_index(trans, root, dir, index); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3716 | if (ret) { |
| 3717 | btrfs_abort_transaction(trans, root, ret); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3718 | goto err; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3719 | } |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3720 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3721 | ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len, |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3722 | inode, dir_ino); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3723 | if (ret != 0 && ret != -ENOENT) { |
| 3724 | btrfs_abort_transaction(trans, root, ret); |
| 3725 | goto err; |
| 3726 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3727 | |
| 3728 | ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len, |
| 3729 | dir, index); |
Chris Mason | 6418c96 | 2010-10-30 07:34:24 -0400 | [diff] [blame] | 3730 | if (ret == -ENOENT) |
| 3731 | ret = 0; |
Zach Brown | d4e3991 | 2013-04-02 21:02:16 +0000 | [diff] [blame] | 3732 | else if (ret) |
| 3733 | btrfs_abort_transaction(trans, root, ret); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3734 | err: |
| 3735 | btrfs_free_path(path); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3736 | if (ret) |
| 3737 | goto out; |
| 3738 | |
| 3739 | btrfs_i_size_write(dir, dir->i_size - name_len * 2); |
Josef Bacik | 0c4d2d9 | 2012-04-05 15:03:02 -0400 | [diff] [blame] | 3740 | inode_inc_iversion(inode); |
| 3741 | inode_inc_iversion(dir); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3742 | inode->i_ctime = dir->i_mtime = dir->i_ctime = CURRENT_TIME; |
Tsutomu Itoh | b995929 | 2012-06-25 21:25:22 -0600 | [diff] [blame] | 3743 | ret = btrfs_update_inode(trans, root, dir); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3744 | out: |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3745 | return ret; |
| 3746 | } |
| 3747 | |
Al Viro | 9298679 | 2011-03-04 17:14:37 +0000 | [diff] [blame] | 3748 | int btrfs_unlink_inode(struct btrfs_trans_handle *trans, |
| 3749 | struct btrfs_root *root, |
| 3750 | struct inode *dir, struct inode *inode, |
| 3751 | const char *name, int name_len) |
| 3752 | { |
| 3753 | int ret; |
| 3754 | ret = __btrfs_unlink_inode(trans, root, dir, inode, name, name_len); |
| 3755 | if (!ret) { |
Zach Brown | 8b558c5 | 2013-10-16 12:10:34 -0700 | [diff] [blame] | 3756 | drop_nlink(inode); |
Al Viro | 9298679 | 2011-03-04 17:14:37 +0000 | [diff] [blame] | 3757 | ret = btrfs_update_inode(trans, root, inode); |
| 3758 | } |
| 3759 | return ret; |
| 3760 | } |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3761 | |
| 3762 | /* |
| 3763 | * helper to start transaction for unlink and rmdir. |
| 3764 | * |
Josef Bacik | d52be81 | 2013-05-29 14:54:47 -0400 | [diff] [blame] | 3765 | * unlink and rmdir are special in btrfs, they do not always free space, so |
| 3766 | * if we cannot make our reservations the normal way try and see if there is |
| 3767 | * plenty of slack room in the global reserve to migrate, otherwise we cannot |
| 3768 | * allow the unlink to occur. |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3769 | */ |
Josef Bacik | d52be81 | 2013-05-29 14:54:47 -0400 | [diff] [blame] | 3770 | static struct btrfs_trans_handle *__unlink_start_trans(struct inode *dir) |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3771 | { |
| 3772 | struct btrfs_trans_handle *trans; |
| 3773 | struct btrfs_root *root = BTRFS_I(dir)->root; |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3774 | int ret; |
| 3775 | |
Josef Bacik | e70bea5 | 2011-10-11 14:18:24 -0400 | [diff] [blame] | 3776 | /* |
| 3777 | * 1 for the possible orphan item |
| 3778 | * 1 for the dir item |
| 3779 | * 1 for the dir index |
| 3780 | * 1 for the inode ref |
Josef Bacik | e70bea5 | 2011-10-11 14:18:24 -0400 | [diff] [blame] | 3781 | * 1 for the inode |
| 3782 | */ |
Josef Bacik | 6e137ed | 2013-03-26 15:26:55 -0400 | [diff] [blame] | 3783 | trans = btrfs_start_transaction(root, 5); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3784 | if (!IS_ERR(trans) || PTR_ERR(trans) != -ENOSPC) |
| 3785 | return trans; |
| 3786 | |
Josef Bacik | d52be81 | 2013-05-29 14:54:47 -0400 | [diff] [blame] | 3787 | if (PTR_ERR(trans) == -ENOSPC) { |
| 3788 | u64 num_bytes = btrfs_calc_trans_metadata_size(root, 5); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3789 | |
Josef Bacik | d52be81 | 2013-05-29 14:54:47 -0400 | [diff] [blame] | 3790 | trans = btrfs_start_transaction(root, 0); |
| 3791 | if (IS_ERR(trans)) |
| 3792 | return trans; |
| 3793 | ret = btrfs_cond_migrate_bytes(root->fs_info, |
| 3794 | &root->fs_info->trans_block_rsv, |
| 3795 | num_bytes, 5); |
| 3796 | if (ret) { |
| 3797 | btrfs_end_transaction(trans, root); |
| 3798 | return ERR_PTR(ret); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3799 | } |
Josef Bacik | 5a77d76 | 2011-11-01 14:32:23 -0400 | [diff] [blame] | 3800 | trans->block_rsv = &root->fs_info->trans_block_rsv; |
Josef Bacik | d52be81 | 2013-05-29 14:54:47 -0400 | [diff] [blame] | 3801 | trans->bytes_reserved = num_bytes; |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3802 | } |
Josef Bacik | d52be81 | 2013-05-29 14:54:47 -0400 | [diff] [blame] | 3803 | return trans; |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3804 | } |
| 3805 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3806 | static int btrfs_unlink(struct inode *dir, struct dentry *dentry) |
| 3807 | { |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3808 | struct btrfs_root *root = BTRFS_I(dir)->root; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3809 | struct btrfs_trans_handle *trans; |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 3810 | struct inode *inode = dentry->d_inode; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3811 | int ret; |
| 3812 | |
Josef Bacik | d52be81 | 2013-05-29 14:54:47 -0400 | [diff] [blame] | 3813 | trans = __unlink_start_trans(dir); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3814 | if (IS_ERR(trans)) |
Josef Bacik | 5df6a9f | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 3815 | return PTR_ERR(trans); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3816 | |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 3817 | btrfs_record_unlink_dir(trans, dir, dentry->d_inode, 0); |
| 3818 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3819 | ret = btrfs_unlink_inode(trans, root, dir, dentry->d_inode, |
| 3820 | dentry->d_name.name, dentry->d_name.len); |
Tsutomu Itoh | b532402 | 2011-07-19 07:27:20 +0000 | [diff] [blame] | 3821 | if (ret) |
| 3822 | goto out; |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 3823 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3824 | if (inode->i_nlink == 0) { |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 3825 | ret = btrfs_orphan_add(trans, inode); |
Tsutomu Itoh | b532402 | 2011-07-19 07:27:20 +0000 | [diff] [blame] | 3826 | if (ret) |
| 3827 | goto out; |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3828 | } |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 3829 | |
Tsutomu Itoh | b532402 | 2011-07-19 07:27:20 +0000 | [diff] [blame] | 3830 | out: |
Josef Bacik | d52be81 | 2013-05-29 14:54:47 -0400 | [diff] [blame] | 3831 | btrfs_end_transaction(trans, root); |
Liu Bo | b53d3f5 | 2012-11-14 14:34:34 +0000 | [diff] [blame] | 3832 | btrfs_btree_balance_dirty(root); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3833 | return ret; |
| 3834 | } |
| 3835 | |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3836 | int btrfs_unlink_subvol(struct btrfs_trans_handle *trans, |
| 3837 | struct btrfs_root *root, |
| 3838 | struct inode *dir, u64 objectid, |
| 3839 | const char *name, int name_len) |
| 3840 | { |
| 3841 | struct btrfs_path *path; |
| 3842 | struct extent_buffer *leaf; |
| 3843 | struct btrfs_dir_item *di; |
| 3844 | struct btrfs_key key; |
| 3845 | u64 index; |
| 3846 | int ret; |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3847 | u64 dir_ino = btrfs_ino(dir); |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3848 | |
| 3849 | path = btrfs_alloc_path(); |
| 3850 | if (!path) |
| 3851 | return -ENOMEM; |
| 3852 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3853 | di = btrfs_lookup_dir_item(trans, root, path, dir_ino, |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3854 | name, name_len, -1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3855 | if (IS_ERR_OR_NULL(di)) { |
| 3856 | if (!di) |
| 3857 | ret = -ENOENT; |
| 3858 | else |
| 3859 | ret = PTR_ERR(di); |
| 3860 | goto out; |
| 3861 | } |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3862 | |
| 3863 | leaf = path->nodes[0]; |
| 3864 | btrfs_dir_item_key_to_cpu(leaf, di, &key); |
| 3865 | WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid); |
| 3866 | ret = btrfs_delete_one_dir_name(trans, root, path, di); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3867 | if (ret) { |
| 3868 | btrfs_abort_transaction(trans, root, ret); |
| 3869 | goto out; |
| 3870 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3871 | btrfs_release_path(path); |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3872 | |
| 3873 | ret = btrfs_del_root_ref(trans, root->fs_info->tree_root, |
| 3874 | objectid, root->root_key.objectid, |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3875 | dir_ino, &index, name, name_len); |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3876 | if (ret < 0) { |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3877 | if (ret != -ENOENT) { |
| 3878 | btrfs_abort_transaction(trans, root, ret); |
| 3879 | goto out; |
| 3880 | } |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3881 | di = btrfs_search_dir_index_item(root, path, dir_ino, |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3882 | name, name_len); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3883 | if (IS_ERR_OR_NULL(di)) { |
| 3884 | if (!di) |
| 3885 | ret = -ENOENT; |
| 3886 | else |
| 3887 | ret = PTR_ERR(di); |
| 3888 | btrfs_abort_transaction(trans, root, ret); |
| 3889 | goto out; |
| 3890 | } |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3891 | |
| 3892 | leaf = path->nodes[0]; |
| 3893 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3894 | btrfs_release_path(path); |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3895 | index = key.offset; |
| 3896 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3897 | btrfs_release_path(path); |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3898 | |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 3899 | ret = btrfs_delete_delayed_dir_index(trans, root, dir, index); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3900 | if (ret) { |
| 3901 | btrfs_abort_transaction(trans, root, ret); |
| 3902 | goto out; |
| 3903 | } |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 3904 | |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3905 | btrfs_i_size_write(dir, dir->i_size - name_len * 2); |
Josef Bacik | 0c4d2d9 | 2012-04-05 15:03:02 -0400 | [diff] [blame] | 3906 | inode_inc_iversion(dir); |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3907 | dir->i_mtime = dir->i_ctime = CURRENT_TIME; |
Josef Bacik | 5a24e84 | 2012-08-08 10:12:59 -0600 | [diff] [blame] | 3908 | ret = btrfs_update_inode_fallback(trans, root, dir); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3909 | if (ret) |
| 3910 | btrfs_abort_transaction(trans, root, ret); |
| 3911 | out: |
Josef Bacik | 71d7aed | 2011-06-14 14:24:32 -0400 | [diff] [blame] | 3912 | btrfs_free_path(path); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3913 | return ret; |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3914 | } |
| 3915 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3916 | static int btrfs_rmdir(struct inode *dir, struct dentry *dentry) |
| 3917 | { |
| 3918 | struct inode *inode = dentry->d_inode; |
Chris Mason | 1832a6d | 2007-12-21 16:27:21 -0500 | [diff] [blame] | 3919 | int err = 0; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3920 | struct btrfs_root *root = BTRFS_I(dir)->root; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3921 | struct btrfs_trans_handle *trans; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3922 | |
David Sterba | b3ae244 | 2012-09-13 16:04:34 -0600 | [diff] [blame] | 3923 | if (inode->i_size > BTRFS_EMPTY_DIR_SIZE) |
Yan | 134d451 | 2007-10-25 15:49:25 -0400 | [diff] [blame] | 3924 | return -ENOTEMPTY; |
David Sterba | b3ae244 | 2012-09-13 16:04:34 -0600 | [diff] [blame] | 3925 | if (btrfs_ino(inode) == BTRFS_FIRST_FREE_OBJECTID) |
| 3926 | return -EPERM; |
Yan | 134d451 | 2007-10-25 15:49:25 -0400 | [diff] [blame] | 3927 | |
Josef Bacik | d52be81 | 2013-05-29 14:54:47 -0400 | [diff] [blame] | 3928 | trans = __unlink_start_trans(dir); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 3929 | if (IS_ERR(trans)) |
Josef Bacik | 5df6a9f | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 3930 | return PTR_ERR(trans); |
Josef Bacik | 5df6a9f | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 3931 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3932 | if (unlikely(btrfs_ino(inode) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) { |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3933 | err = btrfs_unlink_subvol(trans, root, dir, |
| 3934 | BTRFS_I(inode)->location.objectid, |
| 3935 | dentry->d_name.name, |
| 3936 | dentry->d_name.len); |
| 3937 | goto out; |
| 3938 | } |
| 3939 | |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 3940 | err = btrfs_orphan_add(trans, inode); |
| 3941 | if (err) |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3942 | goto out; |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 3943 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3944 | /* now the directory is empty */ |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 3945 | err = btrfs_unlink_inode(trans, root, dir, dentry->d_inode, |
| 3946 | dentry->d_name.name, dentry->d_name.len); |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3947 | if (!err) |
Chris Mason | dbe674a | 2008-07-17 12:54:05 -0400 | [diff] [blame] | 3948 | btrfs_i_size_write(inode, 0); |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 3949 | out: |
Josef Bacik | d52be81 | 2013-05-29 14:54:47 -0400 | [diff] [blame] | 3950 | btrfs_end_transaction(trans, root); |
Liu Bo | b53d3f5 | 2012-11-14 14:34:34 +0000 | [diff] [blame] | 3951 | btrfs_btree_balance_dirty(root); |
Chris Mason | 3954401 | 2007-12-12 14:38:19 -0500 | [diff] [blame] | 3952 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3953 | return err; |
| 3954 | } |
| 3955 | |
Chris Mason | 323ac95 | 2008-10-01 19:05:46 -0400 | [diff] [blame] | 3956 | /* |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3957 | * this can truncate away extent items, csum items and directory items. |
| 3958 | * 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] | 3959 | * any higher than new_size |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3960 | * |
| 3961 | * csum items that cross the new i_size are truncated to the new size |
| 3962 | * as well. |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 3963 | * |
| 3964 | * min_type is the minimum key type to truncate down to. If set to 0, this |
| 3965 | * 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] | 3966 | */ |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3967 | int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans, |
| 3968 | struct btrfs_root *root, |
| 3969 | struct inode *inode, |
| 3970 | u64 new_size, u32 min_type) |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3971 | { |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3972 | struct btrfs_path *path; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3973 | struct extent_buffer *leaf; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3974 | struct btrfs_file_extent_item *fi; |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3975 | struct btrfs_key key; |
| 3976 | struct btrfs_key found_key; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3977 | u64 extent_start = 0; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 3978 | u64 extent_num_bytes = 0; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3979 | u64 extent_offset = 0; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3980 | u64 item_end = 0; |
Josef Bacik | 7f4f6e0 | 2013-08-29 16:43:28 -0400 | [diff] [blame] | 3981 | u64 last_size = (u64)-1; |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3982 | u32 found_type = (u8)-1; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3983 | int found_extent; |
| 3984 | int del_item; |
Chris Mason | 85e21ba | 2008-01-29 15:11:36 -0500 | [diff] [blame] | 3985 | int pending_del_nr = 0; |
| 3986 | int pending_del_slot = 0; |
Chris Mason | 179e29e | 2007-11-01 11:28:41 -0400 | [diff] [blame] | 3987 | int extent_type = -1; |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3988 | int ret; |
| 3989 | int err = 0; |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 3990 | u64 ino = btrfs_ino(inode); |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 3991 | |
| 3992 | BUG_ON(new_size > 0 && min_type != BTRFS_EXTENT_DATA_KEY); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 3993 | |
Mark Fasheh | 0eb0e19 | 2011-07-12 16:44:10 -0700 | [diff] [blame] | 3994 | path = btrfs_alloc_path(); |
| 3995 | if (!path) |
| 3996 | return -ENOMEM; |
| 3997 | path->reada = -1; |
| 3998 | |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 3999 | /* |
| 4000 | * We want to drop from the next block forward in case this new size is |
| 4001 | * not block aligned since we will be keeping the last block of the |
| 4002 | * extent just the way it is. |
| 4003 | */ |
Miao Xie | 27cdeb7 | 2014-04-02 19:51:05 +0800 | [diff] [blame] | 4004 | if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) || |
| 4005 | root == root->fs_info->tree_root) |
Qu Wenruo | fda2832 | 2013-02-26 08:10:22 +0000 | [diff] [blame] | 4006 | btrfs_drop_extent_cache(inode, ALIGN(new_size, |
| 4007 | root->sectorsize), (u64)-1, 0); |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 4008 | |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 4009 | /* |
| 4010 | * This function is also used to drop the items in the log tree before |
| 4011 | * we relog the inode, so if root != BTRFS_I(inode)->root, it means |
| 4012 | * it is used to drop the loged items. So we shouldn't kill the delayed |
| 4013 | * items. |
| 4014 | */ |
| 4015 | if (min_type == 0 && root == BTRFS_I(inode)->root) |
| 4016 | btrfs_kill_delayed_inode_items(inode); |
| 4017 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 4018 | key.objectid = ino; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4019 | key.offset = (u64)-1; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4020 | key.type = (u8)-1; |
| 4021 | |
Chris Mason | 85e21ba | 2008-01-29 15:11:36 -0500 | [diff] [blame] | 4022 | search_again: |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 4023 | path->leave_spinning = 1; |
Chris Mason | 85e21ba | 2008-01-29 15:11:36 -0500 | [diff] [blame] | 4024 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 4025 | if (ret < 0) { |
| 4026 | err = ret; |
| 4027 | goto out; |
| 4028 | } |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 4029 | |
Chris Mason | 85e21ba | 2008-01-29 15:11:36 -0500 | [diff] [blame] | 4030 | if (ret > 0) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4031 | /* there are no items in the tree for us to truncate, we're |
| 4032 | * done |
| 4033 | */ |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 4034 | if (path->slots[0] == 0) |
| 4035 | goto out; |
Chris Mason | 85e21ba | 2008-01-29 15:11:36 -0500 | [diff] [blame] | 4036 | path->slots[0]--; |
| 4037 | } |
| 4038 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 4039 | while (1) { |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4040 | fi = NULL; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4041 | leaf = path->nodes[0]; |
| 4042 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
| 4043 | found_type = btrfs_key_type(&found_key); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4044 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 4045 | if (found_key.objectid != ino) |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4046 | break; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4047 | |
Chris Mason | 85e21ba | 2008-01-29 15:11:36 -0500 | [diff] [blame] | 4048 | if (found_type < min_type) |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4049 | break; |
| 4050 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4051 | item_end = found_key.offset; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4052 | if (found_type == BTRFS_EXTENT_DATA_KEY) { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4053 | fi = btrfs_item_ptr(leaf, path->slots[0], |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4054 | struct btrfs_file_extent_item); |
Chris Mason | 179e29e | 2007-11-01 11:28:41 -0400 | [diff] [blame] | 4055 | extent_type = btrfs_file_extent_type(leaf, fi); |
| 4056 | if (extent_type != BTRFS_FILE_EXTENT_INLINE) { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4057 | item_end += |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 4058 | btrfs_file_extent_num_bytes(leaf, fi); |
Chris Mason | 179e29e | 2007-11-01 11:28:41 -0400 | [diff] [blame] | 4059 | } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) { |
Chris Mason | 179e29e | 2007-11-01 11:28:41 -0400 | [diff] [blame] | 4060 | item_end += btrfs_file_extent_inline_len(leaf, |
Chris Mason | 514ac8a | 2014-01-03 21:07:00 -0800 | [diff] [blame] | 4061 | path->slots[0], fi); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4062 | } |
Yan | 008630c | 2007-11-07 13:31:09 -0500 | [diff] [blame] | 4063 | item_end--; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4064 | } |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 4065 | if (found_type > min_type) { |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4066 | del_item = 1; |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 4067 | } else { |
| 4068 | if (item_end < new_size) |
| 4069 | break; |
| 4070 | if (found_key.offset >= new_size) |
| 4071 | del_item = 1; |
| 4072 | else |
| 4073 | del_item = 0; |
| 4074 | } |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4075 | found_extent = 0; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4076 | /* FIXME, shrink the extent if the ref count is only 1 */ |
Chris Mason | 179e29e | 2007-11-01 11:28:41 -0400 | [diff] [blame] | 4077 | if (found_type != BTRFS_EXTENT_DATA_KEY) |
| 4078 | goto delete; |
| 4079 | |
Josef Bacik | 7f4f6e0 | 2013-08-29 16:43:28 -0400 | [diff] [blame] | 4080 | if (del_item) |
| 4081 | last_size = found_key.offset; |
| 4082 | else |
| 4083 | last_size = new_size; |
| 4084 | |
Chris Mason | 179e29e | 2007-11-01 11:28:41 -0400 | [diff] [blame] | 4085 | if (extent_type != BTRFS_FILE_EXTENT_INLINE) { |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4086 | u64 num_dec; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 4087 | extent_start = btrfs_file_extent_disk_bytenr(leaf, fi); |
Miao Xie | f70a9a6b | 2012-01-12 19:10:12 -0500 | [diff] [blame] | 4088 | if (!del_item) { |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 4089 | u64 orig_num_bytes = |
| 4090 | btrfs_file_extent_num_bytes(leaf, fi); |
Qu Wenruo | fda2832 | 2013-02-26 08:10:22 +0000 | [diff] [blame] | 4091 | extent_num_bytes = ALIGN(new_size - |
| 4092 | found_key.offset, |
| 4093 | root->sectorsize); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 4094 | btrfs_set_file_extent_num_bytes(leaf, fi, |
| 4095 | extent_num_bytes); |
| 4096 | num_dec = (orig_num_bytes - |
Chris Mason | 9069218 | 2008-02-08 13:49:28 -0500 | [diff] [blame] | 4097 | extent_num_bytes); |
Miao Xie | 27cdeb7 | 2014-04-02 19:51:05 +0800 | [diff] [blame] | 4098 | if (test_bit(BTRFS_ROOT_REF_COWS, |
| 4099 | &root->state) && |
| 4100 | extent_start != 0) |
Yan Zheng | a76a3cd | 2008-10-09 11:46:29 -0400 | [diff] [blame] | 4101 | inode_sub_bytes(inode, num_dec); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4102 | btrfs_mark_buffer_dirty(leaf); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4103 | } else { |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 4104 | extent_num_bytes = |
| 4105 | btrfs_file_extent_disk_num_bytes(leaf, |
| 4106 | fi); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 4107 | extent_offset = found_key.offset - |
| 4108 | btrfs_file_extent_offset(leaf, fi); |
| 4109 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4110 | /* FIXME blocksize != 4096 */ |
Chris Mason | 9069218 | 2008-02-08 13:49:28 -0500 | [diff] [blame] | 4111 | num_dec = btrfs_file_extent_num_bytes(leaf, fi); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4112 | if (extent_start != 0) { |
| 4113 | found_extent = 1; |
Miao Xie | 27cdeb7 | 2014-04-02 19:51:05 +0800 | [diff] [blame] | 4114 | if (test_bit(BTRFS_ROOT_REF_COWS, |
| 4115 | &root->state)) |
Yan Zheng | a76a3cd | 2008-10-09 11:46:29 -0400 | [diff] [blame] | 4116 | inode_sub_bytes(inode, num_dec); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4117 | } |
| 4118 | } |
Chris Mason | 9069218 | 2008-02-08 13:49:28 -0500 | [diff] [blame] | 4119 | } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) { |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 4120 | /* |
| 4121 | * we can't truncate inline items that have had |
| 4122 | * special encodings |
| 4123 | */ |
| 4124 | if (!del_item && |
| 4125 | btrfs_file_extent_compression(leaf, fi) == 0 && |
| 4126 | btrfs_file_extent_encryption(leaf, fi) == 0 && |
| 4127 | btrfs_file_extent_other_encoding(leaf, fi) == 0) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4128 | u32 size = new_size - found_key.offset; |
| 4129 | |
Miao Xie | 27cdeb7 | 2014-04-02 19:51:05 +0800 | [diff] [blame] | 4130 | if (test_bit(BTRFS_ROOT_REF_COWS, &root->state)) |
Yan Zheng | a76a3cd | 2008-10-09 11:46:29 -0400 | [diff] [blame] | 4131 | inode_sub_bytes(inode, item_end + 1 - |
| 4132 | new_size); |
Chris Mason | 514ac8a | 2014-01-03 21:07:00 -0800 | [diff] [blame] | 4133 | |
| 4134 | /* |
| 4135 | * update the ram bytes to properly reflect |
| 4136 | * the new size of our item |
| 4137 | */ |
| 4138 | btrfs_set_file_extent_ram_bytes(leaf, fi, size); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4139 | size = |
| 4140 | btrfs_file_extent_calc_inline_size(size); |
Tsutomu Itoh | afe5fea | 2013-04-16 05:18:22 +0000 | [diff] [blame] | 4141 | btrfs_truncate_item(root, path, size, 1); |
Miao Xie | 27cdeb7 | 2014-04-02 19:51:05 +0800 | [diff] [blame] | 4142 | } else if (test_bit(BTRFS_ROOT_REF_COWS, |
| 4143 | &root->state)) { |
Yan Zheng | a76a3cd | 2008-10-09 11:46:29 -0400 | [diff] [blame] | 4144 | inode_sub_bytes(inode, item_end + 1 - |
| 4145 | found_key.offset); |
Chris Mason | 9069218 | 2008-02-08 13:49:28 -0500 | [diff] [blame] | 4146 | } |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4147 | } |
Chris Mason | 179e29e | 2007-11-01 11:28:41 -0400 | [diff] [blame] | 4148 | delete: |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4149 | if (del_item) { |
Chris Mason | 85e21ba | 2008-01-29 15:11:36 -0500 | [diff] [blame] | 4150 | if (!pending_del_nr) { |
| 4151 | /* no pending yet, add ourselves */ |
| 4152 | pending_del_slot = path->slots[0]; |
| 4153 | pending_del_nr = 1; |
| 4154 | } else if (pending_del_nr && |
| 4155 | path->slots[0] + 1 == pending_del_slot) { |
| 4156 | /* hop on the pending chunk */ |
| 4157 | pending_del_nr++; |
| 4158 | pending_del_slot = path->slots[0]; |
| 4159 | } else { |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 4160 | BUG(); |
Chris Mason | 85e21ba | 2008-01-29 15:11:36 -0500 | [diff] [blame] | 4161 | } |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4162 | } else { |
| 4163 | break; |
| 4164 | } |
Miao Xie | 27cdeb7 | 2014-04-02 19:51:05 +0800 | [diff] [blame] | 4165 | if (found_extent && |
| 4166 | (test_bit(BTRFS_ROOT_REF_COWS, &root->state) || |
| 4167 | root == root->fs_info->tree_root)) { |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 4168 | btrfs_set_path_blocking(path); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4169 | ret = btrfs_free_extent(trans, root, extent_start, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 4170 | extent_num_bytes, 0, |
| 4171 | btrfs_header_owner(leaf), |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 4172 | ino, extent_offset, 0); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4173 | BUG_ON(ret); |
| 4174 | } |
Chris Mason | 85e21ba | 2008-01-29 15:11:36 -0500 | [diff] [blame] | 4175 | |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 4176 | if (found_type == BTRFS_INODE_ITEM_KEY) |
| 4177 | break; |
| 4178 | |
| 4179 | if (path->slots[0] == 0 || |
| 4180 | path->slots[0] != pending_del_slot) { |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 4181 | if (pending_del_nr) { |
| 4182 | ret = btrfs_del_items(trans, root, path, |
| 4183 | pending_del_slot, |
| 4184 | pending_del_nr); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 4185 | if (ret) { |
| 4186 | btrfs_abort_transaction(trans, |
| 4187 | root, ret); |
| 4188 | goto error; |
| 4189 | } |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 4190 | pending_del_nr = 0; |
| 4191 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 4192 | btrfs_release_path(path); |
Chris Mason | 85e21ba | 2008-01-29 15:11:36 -0500 | [diff] [blame] | 4193 | goto search_again; |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 4194 | } else { |
| 4195 | path->slots[0]--; |
Chris Mason | 85e21ba | 2008-01-29 15:11:36 -0500 | [diff] [blame] | 4196 | } |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4197 | } |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 4198 | out: |
Chris Mason | 85e21ba | 2008-01-29 15:11:36 -0500 | [diff] [blame] | 4199 | if (pending_del_nr) { |
| 4200 | ret = btrfs_del_items(trans, root, path, pending_del_slot, |
| 4201 | pending_del_nr); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 4202 | if (ret) |
| 4203 | btrfs_abort_transaction(trans, root, ret); |
Chris Mason | 85e21ba | 2008-01-29 15:11:36 -0500 | [diff] [blame] | 4204 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 4205 | error: |
Josef Bacik | 7f4f6e0 | 2013-08-29 16:43:28 -0400 | [diff] [blame] | 4206 | if (last_size != (u64)-1) |
| 4207 | btrfs_ordered_update_i_size(inode, last_size, NULL); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4208 | btrfs_free_path(path); |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 4209 | return err; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4210 | } |
| 4211 | |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 4212 | /* |
Josef Bacik | 2aaa665 | 2012-08-29 14:27:18 -0400 | [diff] [blame] | 4213 | * btrfs_truncate_page - read, zero a chunk and write a page |
| 4214 | * @inode - inode that we're zeroing |
| 4215 | * @from - the offset to start zeroing |
| 4216 | * @len - the length to zero, 0 to zero the entire range respective to the |
| 4217 | * offset |
| 4218 | * @front - zero up to the offset instead of from the offset on |
| 4219 | * |
| 4220 | * This will find the page for the "from" offset and cow the page and zero the |
| 4221 | * 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] | 4222 | */ |
Josef Bacik | 2aaa665 | 2012-08-29 14:27:18 -0400 | [diff] [blame] | 4223 | int btrfs_truncate_page(struct inode *inode, loff_t from, loff_t len, |
| 4224 | int front) |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 4225 | { |
Josef Bacik | 2aaa665 | 2012-08-29 14:27:18 -0400 | [diff] [blame] | 4226 | struct address_space *mapping = inode->i_mapping; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 4227 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 4228 | struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree; |
| 4229 | struct btrfs_ordered_extent *ordered; |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 4230 | struct extent_state *cached_state = NULL; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 4231 | char *kaddr; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 4232 | u32 blocksize = root->sectorsize; |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 4233 | pgoff_t index = from >> PAGE_CACHE_SHIFT; |
| 4234 | unsigned offset = from & (PAGE_CACHE_SIZE-1); |
| 4235 | struct page *page; |
Josef Bacik | 3b16a4e | 2011-09-21 15:05:58 -0400 | [diff] [blame] | 4236 | gfp_t mask = btrfs_alloc_write_mask(mapping); |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 4237 | int ret = 0; |
| 4238 | u64 page_start; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 4239 | u64 page_end; |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 4240 | |
Josef Bacik | 2aaa665 | 2012-08-29 14:27:18 -0400 | [diff] [blame] | 4241 | if ((offset & (blocksize - 1)) == 0 && |
| 4242 | (!len || ((len & (blocksize - 1)) == 0))) |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 4243 | goto out; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 4244 | ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE); |
Josef Bacik | 5d5e103 | 2009-10-13 16:46:49 -0400 | [diff] [blame] | 4245 | if (ret) |
| 4246 | goto out; |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 4247 | |
Chris Mason | 211c17f | 2008-05-15 09:13:45 -0400 | [diff] [blame] | 4248 | again: |
Josef Bacik | 3b16a4e | 2011-09-21 15:05:58 -0400 | [diff] [blame] | 4249 | page = find_or_create_page(mapping, index, mask); |
Josef Bacik | 5d5e103 | 2009-10-13 16:46:49 -0400 | [diff] [blame] | 4250 | if (!page) { |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 4251 | btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE); |
Miao Xie | ac6a2b3 | 2012-12-05 10:56:13 +0000 | [diff] [blame] | 4252 | ret = -ENOMEM; |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 4253 | goto out; |
Josef Bacik | 5d5e103 | 2009-10-13 16:46:49 -0400 | [diff] [blame] | 4254 | } |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 4255 | |
| 4256 | page_start = page_offset(page); |
| 4257 | page_end = page_start + PAGE_CACHE_SIZE - 1; |
| 4258 | |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 4259 | if (!PageUptodate(page)) { |
| 4260 | ret = btrfs_readpage(NULL, page); |
| 4261 | lock_page(page); |
Chris Mason | 211c17f | 2008-05-15 09:13:45 -0400 | [diff] [blame] | 4262 | if (page->mapping != mapping) { |
| 4263 | unlock_page(page); |
| 4264 | page_cache_release(page); |
| 4265 | goto again; |
| 4266 | } |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 4267 | if (!PageUptodate(page)) { |
| 4268 | ret = -EIO; |
Chris Mason | 8964222 | 2008-07-24 09:41:53 -0400 | [diff] [blame] | 4269 | goto out_unlock; |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 4270 | } |
| 4271 | } |
Chris Mason | 211c17f | 2008-05-15 09:13:45 -0400 | [diff] [blame] | 4272 | wait_on_page_writeback(page); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 4273 | |
Jeff Mahoney | d008237 | 2012-03-01 14:57:19 +0100 | [diff] [blame] | 4274 | lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 4275 | set_page_extent_mapped(page); |
| 4276 | |
| 4277 | ordered = btrfs_lookup_ordered_extent(inode, page_start); |
| 4278 | if (ordered) { |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 4279 | unlock_extent_cached(io_tree, page_start, page_end, |
| 4280 | &cached_state, GFP_NOFS); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 4281 | unlock_page(page); |
| 4282 | page_cache_release(page); |
Chris Mason | eb84ae0 | 2008-07-17 13:53:27 -0400 | [diff] [blame] | 4283 | btrfs_start_ordered_extent(inode, ordered, 1); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 4284 | btrfs_put_ordered_extent(ordered); |
| 4285 | goto again; |
| 4286 | } |
| 4287 | |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 4288 | clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end, |
Liu Bo | 9e8a4a8 | 2012-09-05 19:10:51 -0600 | [diff] [blame] | 4289 | EXTENT_DIRTY | EXTENT_DELALLOC | |
| 4290 | EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 4291 | 0, 0, &cached_state, GFP_NOFS); |
Josef Bacik | 5d5e103 | 2009-10-13 16:46:49 -0400 | [diff] [blame] | 4292 | |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 4293 | ret = btrfs_set_extent_delalloc(inode, page_start, page_end, |
| 4294 | &cached_state); |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 4295 | if (ret) { |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 4296 | unlock_extent_cached(io_tree, page_start, page_end, |
| 4297 | &cached_state, GFP_NOFS); |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 4298 | goto out_unlock; |
| 4299 | } |
| 4300 | |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 4301 | if (offset != PAGE_CACHE_SIZE) { |
Josef Bacik | 2aaa665 | 2012-08-29 14:27:18 -0400 | [diff] [blame] | 4302 | if (!len) |
| 4303 | len = PAGE_CACHE_SIZE - offset; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 4304 | kaddr = kmap(page); |
Josef Bacik | 2aaa665 | 2012-08-29 14:27:18 -0400 | [diff] [blame] | 4305 | if (front) |
| 4306 | memset(kaddr, 0, offset); |
| 4307 | else |
| 4308 | memset(kaddr + offset, 0, len); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 4309 | flush_dcache_page(page); |
| 4310 | kunmap(page); |
| 4311 | } |
Chris Mason | 247e743 | 2008-07-17 12:53:51 -0400 | [diff] [blame] | 4312 | ClearPageChecked(page); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 4313 | set_page_dirty(page); |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 4314 | unlock_extent_cached(io_tree, page_start, page_end, &cached_state, |
| 4315 | GFP_NOFS); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4316 | |
Chris Mason | 8964222 | 2008-07-24 09:41:53 -0400 | [diff] [blame] | 4317 | out_unlock: |
Josef Bacik | 5d5e103 | 2009-10-13 16:46:49 -0400 | [diff] [blame] | 4318 | if (ret) |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 4319 | btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4320 | unlock_page(page); |
| 4321 | page_cache_release(page); |
| 4322 | out: |
| 4323 | return ret; |
| 4324 | } |
| 4325 | |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 4326 | static int maybe_insert_hole(struct btrfs_root *root, struct inode *inode, |
| 4327 | u64 offset, u64 len) |
| 4328 | { |
| 4329 | struct btrfs_trans_handle *trans; |
| 4330 | int ret; |
| 4331 | |
| 4332 | /* |
| 4333 | * Still need to make sure the inode looks like it's been updated so |
| 4334 | * that any holes get logged if we fsync. |
| 4335 | */ |
| 4336 | if (btrfs_fs_incompat(root->fs_info, NO_HOLES)) { |
| 4337 | BTRFS_I(inode)->last_trans = root->fs_info->generation; |
| 4338 | BTRFS_I(inode)->last_sub_trans = root->log_transid; |
| 4339 | BTRFS_I(inode)->last_log_commit = root->last_log_commit; |
| 4340 | return 0; |
| 4341 | } |
| 4342 | |
| 4343 | /* |
| 4344 | * 1 - for the one we're dropping |
| 4345 | * 1 - for the one we're adding |
| 4346 | * 1 - for updating the inode. |
| 4347 | */ |
| 4348 | trans = btrfs_start_transaction(root, 3); |
| 4349 | if (IS_ERR(trans)) |
| 4350 | return PTR_ERR(trans); |
| 4351 | |
| 4352 | ret = btrfs_drop_extents(trans, root, inode, offset, offset + len, 1); |
| 4353 | if (ret) { |
| 4354 | btrfs_abort_transaction(trans, root, ret); |
| 4355 | btrfs_end_transaction(trans, root); |
| 4356 | return ret; |
| 4357 | } |
| 4358 | |
| 4359 | ret = btrfs_insert_file_extent(trans, root, btrfs_ino(inode), offset, |
| 4360 | 0, 0, len, 0, len, 0, 0, 0); |
| 4361 | if (ret) |
| 4362 | btrfs_abort_transaction(trans, root, ret); |
| 4363 | else |
| 4364 | btrfs_update_inode(trans, root, inode); |
| 4365 | btrfs_end_transaction(trans, root); |
| 4366 | return ret; |
| 4367 | } |
| 4368 | |
Josef Bacik | 695a0d0 | 2011-03-04 15:46:53 -0500 | [diff] [blame] | 4369 | /* |
| 4370 | * This function puts in dummy file extents for the area we're creating a hole |
| 4371 | * for. So if we are truncating this file to a larger size we need to insert |
| 4372 | * these file extents so that btrfs_get_extent will return a EXTENT_MAP_HOLE for |
| 4373 | * the range between oldsize and size |
| 4374 | */ |
Josef Bacik | a41ad39 | 2011-01-31 15:30:16 -0500 | [diff] [blame] | 4375 | 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] | 4376 | { |
Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 4377 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 4378 | struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree; |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4379 | struct extent_map *em = NULL; |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 4380 | struct extent_state *cached_state = NULL; |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4381 | struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree; |
Qu Wenruo | fda2832 | 2013-02-26 08:10:22 +0000 | [diff] [blame] | 4382 | u64 hole_start = ALIGN(oldsize, root->sectorsize); |
| 4383 | u64 block_end = ALIGN(size, root->sectorsize); |
Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 4384 | u64 last_byte; |
| 4385 | u64 cur_offset; |
| 4386 | u64 hole_size; |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 4387 | int err = 0; |
Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 4388 | |
Josef Bacik | a71754f | 2013-06-17 17:14:39 -0400 | [diff] [blame] | 4389 | /* |
| 4390 | * If our size started in the middle of a page we need to zero out the |
| 4391 | * rest of the page before we expand the i_size, otherwise we could |
| 4392 | * expose stale data. |
| 4393 | */ |
| 4394 | err = btrfs_truncate_page(inode, oldsize, 0, 0); |
| 4395 | if (err) |
| 4396 | return err; |
| 4397 | |
Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 4398 | if (size <= hole_start) |
| 4399 | return 0; |
| 4400 | |
Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 4401 | while (1) { |
| 4402 | struct btrfs_ordered_extent *ordered; |
Miao Xie | fa7c149 | 2013-09-26 13:15:27 +0800 | [diff] [blame] | 4403 | |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 4404 | lock_extent_bits(io_tree, hole_start, block_end - 1, 0, |
Jeff Mahoney | d008237 | 2012-03-01 14:57:19 +0100 | [diff] [blame] | 4405 | &cached_state); |
Miao Xie | fa7c149 | 2013-09-26 13:15:27 +0800 | [diff] [blame] | 4406 | ordered = btrfs_lookup_ordered_range(inode, hole_start, |
| 4407 | block_end - hole_start); |
Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 4408 | if (!ordered) |
| 4409 | break; |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 4410 | unlock_extent_cached(io_tree, hole_start, block_end - 1, |
| 4411 | &cached_state, GFP_NOFS); |
Miao Xie | fa7c149 | 2013-09-26 13:15:27 +0800 | [diff] [blame] | 4412 | btrfs_start_ordered_extent(inode, ordered, 1); |
Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 4413 | btrfs_put_ordered_extent(ordered); |
| 4414 | } |
| 4415 | |
Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 4416 | cur_offset = hole_start; |
| 4417 | while (1) { |
| 4418 | em = btrfs_get_extent(inode, NULL, 0, cur_offset, |
| 4419 | block_end - cur_offset, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 4420 | if (IS_ERR(em)) { |
| 4421 | err = PTR_ERR(em); |
Zach Brown | f276795 | 2013-01-08 19:37:58 +0000 | [diff] [blame] | 4422 | em = NULL; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 4423 | break; |
| 4424 | } |
Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 4425 | last_byte = min(extent_map_end(em), block_end); |
Qu Wenruo | fda2832 | 2013-02-26 08:10:22 +0000 | [diff] [blame] | 4426 | last_byte = ALIGN(last_byte , root->sectorsize); |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 4427 | if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) { |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4428 | struct extent_map *hole_em; |
Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 4429 | hole_size = last_byte - cur_offset; |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 4430 | |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 4431 | err = maybe_insert_hole(root, inode, cur_offset, |
| 4432 | hole_size); |
| 4433 | if (err) |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 4434 | break; |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4435 | btrfs_drop_extent_cache(inode, cur_offset, |
| 4436 | cur_offset + hole_size - 1, 0); |
| 4437 | hole_em = alloc_extent_map(); |
| 4438 | if (!hole_em) { |
| 4439 | set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, |
| 4440 | &BTRFS_I(inode)->runtime_flags); |
| 4441 | goto next; |
| 4442 | } |
| 4443 | hole_em->start = cur_offset; |
| 4444 | hole_em->len = hole_size; |
| 4445 | hole_em->orig_start = cur_offset; |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 4446 | |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4447 | hole_em->block_start = EXTENT_MAP_HOLE; |
| 4448 | hole_em->block_len = 0; |
Josef Bacik | b493968 | 2012-12-03 10:31:19 -0500 | [diff] [blame] | 4449 | hole_em->orig_block_len = 0; |
Josef Bacik | cc95bef | 2013-04-04 14:31:27 -0400 | [diff] [blame] | 4450 | hole_em->ram_bytes = hole_size; |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4451 | hole_em->bdev = root->fs_info->fs_devices->latest_bdev; |
| 4452 | hole_em->compress_type = BTRFS_COMPRESS_NONE; |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 4453 | hole_em->generation = root->fs_info->generation; |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4454 | |
| 4455 | while (1) { |
| 4456 | write_lock(&em_tree->lock); |
Josef Bacik | 09a2a8f9 | 2013-04-05 16:51:15 -0400 | [diff] [blame] | 4457 | err = add_extent_mapping(em_tree, hole_em, 1); |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 4458 | write_unlock(&em_tree->lock); |
| 4459 | if (err != -EEXIST) |
| 4460 | break; |
| 4461 | btrfs_drop_extent_cache(inode, cur_offset, |
| 4462 | cur_offset + |
| 4463 | hole_size - 1, 0); |
| 4464 | } |
| 4465 | free_extent_map(hole_em); |
Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 4466 | } |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 4467 | next: |
Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 4468 | free_extent_map(em); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4469 | em = NULL; |
Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 4470 | cur_offset = last_byte; |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 4471 | if (cur_offset >= block_end) |
Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 4472 | break; |
| 4473 | } |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4474 | free_extent_map(em); |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 4475 | unlock_extent_cached(io_tree, hole_start, block_end - 1, &cached_state, |
| 4476 | GFP_NOFS); |
Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 4477 | return err; |
| 4478 | } |
| 4479 | |
Eric Sandeen | 3972f26 | 2013-01-12 02:57:22 +0000 | [diff] [blame] | 4480 | static int btrfs_setsize(struct inode *inode, struct iattr *attr) |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 4481 | { |
Miao Xie | f4a2f4c | 2011-12-14 20:12:01 -0500 | [diff] [blame] | 4482 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 4483 | struct btrfs_trans_handle *trans; |
Josef Bacik | a41ad39 | 2011-01-31 15:30:16 -0500 | [diff] [blame] | 4484 | loff_t oldsize = i_size_read(inode); |
Eric Sandeen | 3972f26 | 2013-01-12 02:57:22 +0000 | [diff] [blame] | 4485 | loff_t newsize = attr->ia_size; |
| 4486 | int mask = attr->ia_valid; |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 4487 | int ret; |
| 4488 | |
Eric Sandeen | 3972f26 | 2013-01-12 02:57:22 +0000 | [diff] [blame] | 4489 | /* |
| 4490 | * The regular truncate() case without ATTR_CTIME and ATTR_MTIME is a |
| 4491 | * special case where we need to update the times despite not having |
| 4492 | * these flags set. For all other operations the VFS set these flags |
| 4493 | * explicitly if it wants a timestamp update. |
| 4494 | */ |
Christoph Hellwig | dff6efc | 2013-11-19 07:17:07 -0800 | [diff] [blame] | 4495 | if (newsize != oldsize) { |
| 4496 | inode_inc_iversion(inode); |
| 4497 | if (!(mask & (ATTR_CTIME | ATTR_MTIME))) |
| 4498 | inode->i_ctime = inode->i_mtime = |
| 4499 | current_fs_time(inode->i_sb); |
| 4500 | } |
Eric Sandeen | 3972f26 | 2013-01-12 02:57:22 +0000 | [diff] [blame] | 4501 | |
Josef Bacik | a41ad39 | 2011-01-31 15:30:16 -0500 | [diff] [blame] | 4502 | if (newsize > oldsize) { |
Kirill A. Shutemov | 7caef26 | 2013-09-12 15:13:56 -0700 | [diff] [blame] | 4503 | truncate_pagecache(inode, newsize); |
Josef Bacik | a41ad39 | 2011-01-31 15:30:16 -0500 | [diff] [blame] | 4504 | ret = btrfs_cont_expand(inode, oldsize, newsize); |
Miao Xie | f4a2f4c | 2011-12-14 20:12:01 -0500 | [diff] [blame] | 4505 | if (ret) |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 4506 | return ret; |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 4507 | |
Miao Xie | f4a2f4c | 2011-12-14 20:12:01 -0500 | [diff] [blame] | 4508 | trans = btrfs_start_transaction(root, 1); |
| 4509 | if (IS_ERR(trans)) |
| 4510 | return PTR_ERR(trans); |
| 4511 | |
| 4512 | i_size_write(inode, newsize); |
| 4513 | btrfs_ordered_update_i_size(inode, i_size_read(inode), NULL); |
| 4514 | ret = btrfs_update_inode(trans, root, inode); |
Josef Bacik | 7ad85bb | 2012-01-12 19:10:12 -0500 | [diff] [blame] | 4515 | btrfs_end_transaction(trans, root); |
Josef Bacik | a41ad39 | 2011-01-31 15:30:16 -0500 | [diff] [blame] | 4516 | } else { |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 4517 | |
Josef Bacik | a41ad39 | 2011-01-31 15:30:16 -0500 | [diff] [blame] | 4518 | /* |
| 4519 | * We're truncating a file that used to have good data down to |
| 4520 | * zero. Make sure it gets into the ordered flush list so that |
| 4521 | * any new writes get down to disk quickly. |
| 4522 | */ |
| 4523 | if (newsize == 0) |
Josef Bacik | 72ac3c0 | 2012-05-23 14:13:11 -0400 | [diff] [blame] | 4524 | set_bit(BTRFS_INODE_ORDERED_DATA_CLOSE, |
| 4525 | &BTRFS_I(inode)->runtime_flags); |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 4526 | |
Josef Bacik | f3fe820 | 2013-01-07 17:03:21 -0500 | [diff] [blame] | 4527 | /* |
| 4528 | * 1 for the orphan item we're going to add |
| 4529 | * 1 for the orphan item deletion. |
| 4530 | */ |
| 4531 | trans = btrfs_start_transaction(root, 2); |
| 4532 | if (IS_ERR(trans)) |
| 4533 | return PTR_ERR(trans); |
| 4534 | |
| 4535 | /* |
| 4536 | * We need to do this in case we fail at _any_ point during the |
| 4537 | * actual truncate. Once we do the truncate_setsize we could |
| 4538 | * invalidate pages which forces any outstanding ordered io to |
| 4539 | * be instantly completed which will give us extents that need |
| 4540 | * to be truncated. If we fail to get an orphan inode down we |
| 4541 | * could have left over extents that were never meant to live, |
| 4542 | * so we need to garuntee from this point on that everything |
| 4543 | * will be consistent. |
| 4544 | */ |
| 4545 | ret = btrfs_orphan_add(trans, inode); |
| 4546 | btrfs_end_transaction(trans, root); |
| 4547 | if (ret) |
| 4548 | return ret; |
| 4549 | |
Josef Bacik | a41ad39 | 2011-01-31 15:30:16 -0500 | [diff] [blame] | 4550 | /* we don't support swapfiles, so vmtruncate shouldn't fail */ |
| 4551 | truncate_setsize(inode, newsize); |
Miao Xie | 2e60a51 | 2013-02-08 07:01:08 +0000 | [diff] [blame] | 4552 | |
| 4553 | /* Disable nonlocked read DIO to avoid the end less truncate */ |
| 4554 | btrfs_inode_block_unlocked_dio(inode); |
| 4555 | inode_dio_wait(inode); |
| 4556 | btrfs_inode_resume_unlocked_dio(inode); |
| 4557 | |
Josef Bacik | a41ad39 | 2011-01-31 15:30:16 -0500 | [diff] [blame] | 4558 | ret = btrfs_truncate(inode); |
Josef Bacik | 7f4f6e0 | 2013-08-29 16:43:28 -0400 | [diff] [blame] | 4559 | if (ret && inode->i_nlink) { |
| 4560 | int err; |
| 4561 | |
| 4562 | /* |
| 4563 | * failed to truncate, disk_i_size is only adjusted down |
| 4564 | * as we remove extents, so it should represent the true |
| 4565 | * size of the inode, so reset the in memory size and |
| 4566 | * delete our orphan entry. |
| 4567 | */ |
| 4568 | trans = btrfs_join_transaction(root); |
| 4569 | if (IS_ERR(trans)) { |
| 4570 | btrfs_orphan_del(NULL, inode); |
| 4571 | return ret; |
| 4572 | } |
| 4573 | i_size_write(inode, BTRFS_I(inode)->disk_i_size); |
| 4574 | err = btrfs_orphan_del(trans, inode); |
| 4575 | if (err) |
| 4576 | btrfs_abort_transaction(trans, root, err); |
| 4577 | btrfs_end_transaction(trans, root); |
| 4578 | } |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 4579 | } |
| 4580 | |
Josef Bacik | a41ad39 | 2011-01-31 15:30:16 -0500 | [diff] [blame] | 4581 | return ret; |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 4582 | } |
| 4583 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4584 | static int btrfs_setattr(struct dentry *dentry, struct iattr *attr) |
| 4585 | { |
| 4586 | struct inode *inode = dentry->d_inode; |
Li Zefan | b83cc96 | 2010-12-20 16:04:08 +0800 | [diff] [blame] | 4587 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4588 | int err; |
| 4589 | |
Li Zefan | b83cc96 | 2010-12-20 16:04:08 +0800 | [diff] [blame] | 4590 | if (btrfs_root_readonly(root)) |
| 4591 | return -EROFS; |
| 4592 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4593 | err = inode_change_ok(inode, attr); |
| 4594 | if (err) |
| 4595 | return err; |
| 4596 | |
Chris Mason | 5a3f23d | 2009-03-31 13:27:11 -0400 | [diff] [blame] | 4597 | if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) { |
Eric Sandeen | 3972f26 | 2013-01-12 02:57:22 +0000 | [diff] [blame] | 4598 | err = btrfs_setsize(inode, attr); |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 4599 | if (err) |
| 4600 | return err; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4601 | } |
Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 4602 | |
Christoph Hellwig | 1025774 | 2010-06-04 11:30:02 +0200 | [diff] [blame] | 4603 | if (attr->ia_valid) { |
| 4604 | setattr_copy(inode, attr); |
Josef Bacik | 0c4d2d9 | 2012-04-05 15:03:02 -0400 | [diff] [blame] | 4605 | inode_inc_iversion(inode); |
Josef Bacik | 22c44fe | 2011-11-30 10:45:38 -0500 | [diff] [blame] | 4606 | err = btrfs_dirty_inode(inode); |
Josef Bacik | 33268ea | 2008-07-24 12:16:36 -0400 | [diff] [blame] | 4607 | |
Josef Bacik | 22c44fe | 2011-11-30 10:45:38 -0500 | [diff] [blame] | 4608 | if (!err && attr->ia_valid & ATTR_MODE) |
Christoph Hellwig | 996a710 | 2013-12-20 05:16:43 -0800 | [diff] [blame] | 4609 | err = posix_acl_chmod(inode, inode->i_mode); |
Christoph Hellwig | 1025774 | 2010-06-04 11:30:02 +0200 | [diff] [blame] | 4610 | } |
| 4611 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4612 | return err; |
| 4613 | } |
Chris Mason | 61295eb | 2008-01-14 16:24:38 -0500 | [diff] [blame] | 4614 | |
Filipe David Borba Manana | 131e404 | 2013-11-19 22:29:35 +0000 | [diff] [blame] | 4615 | /* |
| 4616 | * While truncating the inode pages during eviction, we get the VFS calling |
| 4617 | * btrfs_invalidatepage() against each page of the inode. This is slow because |
| 4618 | * the calls to btrfs_invalidatepage() result in a huge amount of calls to |
| 4619 | * lock_extent_bits() and clear_extent_bit(), which keep merging and splitting |
| 4620 | * extent_state structures over and over, wasting lots of time. |
| 4621 | * |
| 4622 | * Therefore if the inode is being evicted, let btrfs_invalidatepage() skip all |
| 4623 | * those expensive operations on a per page basis and do only the ordered io |
| 4624 | * finishing, while we release here the extent_map and extent_state structures, |
| 4625 | * without the excessive merging and splitting. |
| 4626 | */ |
| 4627 | static void evict_inode_truncate_pages(struct inode *inode) |
| 4628 | { |
| 4629 | struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree; |
| 4630 | struct extent_map_tree *map_tree = &BTRFS_I(inode)->extent_tree; |
| 4631 | struct rb_node *node; |
| 4632 | |
| 4633 | ASSERT(inode->i_state & I_FREEING); |
Johannes Weiner | 91b0abe | 2014-04-03 14:47:49 -0700 | [diff] [blame] | 4634 | truncate_inode_pages_final(&inode->i_data); |
Filipe David Borba Manana | 131e404 | 2013-11-19 22:29:35 +0000 | [diff] [blame] | 4635 | |
| 4636 | write_lock(&map_tree->lock); |
| 4637 | while (!RB_EMPTY_ROOT(&map_tree->map)) { |
| 4638 | struct extent_map *em; |
| 4639 | |
| 4640 | node = rb_first(&map_tree->map); |
| 4641 | em = rb_entry(node, struct extent_map, rb_node); |
Wang Shilong | 180589e | 2013-12-14 15:27:31 +0800 | [diff] [blame] | 4642 | clear_bit(EXTENT_FLAG_PINNED, &em->flags); |
| 4643 | clear_bit(EXTENT_FLAG_LOGGING, &em->flags); |
Filipe David Borba Manana | 131e404 | 2013-11-19 22:29:35 +0000 | [diff] [blame] | 4644 | remove_extent_mapping(map_tree, em); |
| 4645 | free_extent_map(em); |
| 4646 | } |
| 4647 | write_unlock(&map_tree->lock); |
| 4648 | |
| 4649 | spin_lock(&io_tree->lock); |
| 4650 | while (!RB_EMPTY_ROOT(&io_tree->state)) { |
| 4651 | struct extent_state *state; |
| 4652 | struct extent_state *cached_state = NULL; |
| 4653 | |
| 4654 | node = rb_first(&io_tree->state); |
| 4655 | state = rb_entry(node, struct extent_state, rb_node); |
| 4656 | atomic_inc(&state->refs); |
| 4657 | spin_unlock(&io_tree->lock); |
| 4658 | |
| 4659 | lock_extent_bits(io_tree, state->start, state->end, |
| 4660 | 0, &cached_state); |
| 4661 | clear_extent_bit(io_tree, state->start, state->end, |
| 4662 | EXTENT_LOCKED | EXTENT_DIRTY | |
| 4663 | EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING | |
| 4664 | EXTENT_DEFRAG, 1, 1, |
| 4665 | &cached_state, GFP_NOFS); |
| 4666 | free_extent_state(state); |
| 4667 | |
| 4668 | spin_lock(&io_tree->lock); |
| 4669 | } |
| 4670 | spin_unlock(&io_tree->lock); |
| 4671 | } |
| 4672 | |
Al Viro | bd55597 | 2010-06-07 11:35:40 -0400 | [diff] [blame] | 4673 | void btrfs_evict_inode(struct inode *inode) |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4674 | { |
| 4675 | struct btrfs_trans_handle *trans; |
| 4676 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Josef Bacik | 726c35f | 2011-09-26 15:46:06 -0400 | [diff] [blame] | 4677 | struct btrfs_block_rsv *rsv, *global_rsv; |
Josef Bacik | 0712718 | 2011-08-19 10:29:59 -0400 | [diff] [blame] | 4678 | u64 min_size = btrfs_calc_trunc_metadata_size(root, 1); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4679 | int ret; |
| 4680 | |
liubo | 1abe9b8 | 2011-03-24 11:18:59 +0000 | [diff] [blame] | 4681 | trace_btrfs_inode_evict(inode); |
| 4682 | |
Filipe David Borba Manana | 131e404 | 2013-11-19 22:29:35 +0000 | [diff] [blame] | 4683 | evict_inode_truncate_pages(inode); |
| 4684 | |
Stefan Behrens | 69e9c6c | 2013-09-05 16:58:43 +0200 | [diff] [blame] | 4685 | if (inode->i_nlink && |
| 4686 | ((btrfs_root_refs(&root->root_item) != 0 && |
| 4687 | root->root_key.objectid != BTRFS_ROOT_TREE_OBJECTID) || |
| 4688 | btrfs_is_free_space_inode(inode))) |
Al Viro | bd55597 | 2010-06-07 11:35:40 -0400 | [diff] [blame] | 4689 | goto no_delete; |
| 4690 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4691 | if (is_bad_inode(inode)) { |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 4692 | btrfs_orphan_del(NULL, inode); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4693 | goto no_delete; |
| 4694 | } |
Al Viro | bd55597 | 2010-06-07 11:35:40 -0400 | [diff] [blame] | 4695 | /* 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] | 4696 | btrfs_wait_ordered_range(inode, 0, (u64)-1); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4697 | |
Yan, Zheng | c71bf09 | 2009-11-12 09:34:40 +0000 | [diff] [blame] | 4698 | if (root->fs_info->log_root_recovering) { |
Liu Bo | 6bf0231 | 2012-06-25 21:59:09 -0600 | [diff] [blame] | 4699 | BUG_ON(test_bit(BTRFS_INODE_HAS_ORPHAN_ITEM, |
Josef Bacik | 8a35d95 | 2012-05-23 14:26:42 -0400 | [diff] [blame] | 4700 | &BTRFS_I(inode)->runtime_flags)); |
Yan, Zheng | c71bf09 | 2009-11-12 09:34:40 +0000 | [diff] [blame] | 4701 | goto no_delete; |
| 4702 | } |
| 4703 | |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 4704 | if (inode->i_nlink > 0) { |
Stefan Behrens | 69e9c6c | 2013-09-05 16:58:43 +0200 | [diff] [blame] | 4705 | BUG_ON(btrfs_root_refs(&root->root_item) != 0 && |
| 4706 | root->root_key.objectid != BTRFS_ROOT_TREE_OBJECTID); |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 4707 | goto no_delete; |
| 4708 | } |
| 4709 | |
Miao Xie | 0e8c36a | 2012-12-19 06:59:51 +0000 | [diff] [blame] | 4710 | ret = btrfs_commit_inode_delayed_inode(inode); |
| 4711 | if (ret) { |
| 4712 | btrfs_orphan_del(NULL, inode); |
| 4713 | goto no_delete; |
| 4714 | } |
| 4715 | |
Miao Xie | 66d8f3d | 2012-09-06 04:02:28 -0600 | [diff] [blame] | 4716 | rsv = btrfs_alloc_block_rsv(root, BTRFS_BLOCK_RSV_TEMP); |
Josef Bacik | 4289a66 | 2011-08-05 13:22:24 -0400 | [diff] [blame] | 4717 | if (!rsv) { |
| 4718 | btrfs_orphan_del(NULL, inode); |
| 4719 | goto no_delete; |
| 4720 | } |
Josef Bacik | 4a33854 | 2011-08-29 11:01:31 -0400 | [diff] [blame] | 4721 | rsv->size = min_size; |
Josef Bacik | ca7e70f | 2012-08-27 17:48:15 -0400 | [diff] [blame] | 4722 | rsv->failfast = 1; |
Josef Bacik | 726c35f | 2011-09-26 15:46:06 -0400 | [diff] [blame] | 4723 | global_rsv = &root->fs_info->global_block_rsv; |
Josef Bacik | 4289a66 | 2011-08-05 13:22:24 -0400 | [diff] [blame] | 4724 | |
Chris Mason | dbe674a | 2008-07-17 12:54:05 -0400 | [diff] [blame] | 4725 | btrfs_i_size_write(inode, 0); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4726 | |
Josef Bacik | 4289a66 | 2011-08-05 13:22:24 -0400 | [diff] [blame] | 4727 | /* |
Miao Xie | 8407aa4 | 2012-09-07 01:43:32 -0600 | [diff] [blame] | 4728 | * This is a bit simpler than btrfs_truncate since we've already |
| 4729 | * reserved our space for our orphan item in the unlink, so we just |
| 4730 | * need to reserve some slack space in case we add bytes and update |
| 4731 | * inode item when doing the truncate. |
Josef Bacik | 4289a66 | 2011-08-05 13:22:24 -0400 | [diff] [blame] | 4732 | */ |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 4733 | while (1) { |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4734 | ret = btrfs_block_rsv_refill(root, rsv, min_size, |
| 4735 | BTRFS_RESERVE_FLUSH_LIMIT); |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 4736 | |
Josef Bacik | 726c35f | 2011-09-26 15:46:06 -0400 | [diff] [blame] | 4737 | /* |
| 4738 | * Try and steal from the global reserve since we will |
| 4739 | * likely not use this space anyway, we want to try as |
| 4740 | * hard as possible to get this to work. |
| 4741 | */ |
| 4742 | if (ret) |
| 4743 | ret = btrfs_block_rsv_migrate(global_rsv, rsv, min_size); |
| 4744 | |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4745 | if (ret) { |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 4746 | btrfs_warn(root->fs_info, |
| 4747 | "Could not get space for a delete, will truncate on mount %d", |
| 4748 | ret); |
Josef Bacik | 4289a66 | 2011-08-05 13:22:24 -0400 | [diff] [blame] | 4749 | btrfs_orphan_del(NULL, inode); |
| 4750 | btrfs_free_block_rsv(root, rsv); |
| 4751 | goto no_delete; |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4752 | } |
| 4753 | |
Miao Xie | 0e8c36a | 2012-12-19 06:59:51 +0000 | [diff] [blame] | 4754 | trans = btrfs_join_transaction(root); |
Josef Bacik | 4289a66 | 2011-08-05 13:22:24 -0400 | [diff] [blame] | 4755 | if (IS_ERR(trans)) { |
| 4756 | btrfs_orphan_del(NULL, inode); |
| 4757 | btrfs_free_block_rsv(root, rsv); |
| 4758 | goto no_delete; |
| 4759 | } |
| 4760 | |
| 4761 | trans->block_rsv = rsv; |
| 4762 | |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4763 | ret = btrfs_truncate_inode_items(trans, root, inode, 0, 0); |
Josef Bacik | ca7e70f | 2012-08-27 17:48:15 -0400 | [diff] [blame] | 4764 | if (ret != -ENOSPC) |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 4765 | break; |
| 4766 | |
Miao Xie | 8407aa4 | 2012-09-07 01:43:32 -0600 | [diff] [blame] | 4767 | trans->block_rsv = &root->fs_info->trans_block_rsv; |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 4768 | btrfs_end_transaction(trans, root); |
| 4769 | trans = NULL; |
Liu Bo | b53d3f5 | 2012-11-14 14:34:34 +0000 | [diff] [blame] | 4770 | btrfs_btree_balance_dirty(root); |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 4771 | } |
| 4772 | |
Josef Bacik | 4289a66 | 2011-08-05 13:22:24 -0400 | [diff] [blame] | 4773 | btrfs_free_block_rsv(root, rsv); |
| 4774 | |
Josef Bacik | 4ef31a4 | 2013-08-13 14:10:08 -0400 | [diff] [blame] | 4775 | /* |
| 4776 | * Errors here aren't a big deal, it just means we leave orphan items |
| 4777 | * in the tree. They will be cleaned up on the next mount. |
| 4778 | */ |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 4779 | if (ret == 0) { |
Josef Bacik | 4289a66 | 2011-08-05 13:22:24 -0400 | [diff] [blame] | 4780 | trans->block_rsv = root->orphan_block_rsv; |
Josef Bacik | 4ef31a4 | 2013-08-13 14:10:08 -0400 | [diff] [blame] | 4781 | btrfs_orphan_del(trans, inode); |
| 4782 | } else { |
| 4783 | btrfs_orphan_del(NULL, inode); |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 4784 | } |
Chris Mason | 85e21ba | 2008-01-29 15:11:36 -0500 | [diff] [blame] | 4785 | |
Josef Bacik | 4289a66 | 2011-08-05 13:22:24 -0400 | [diff] [blame] | 4786 | trans->block_rsv = &root->fs_info->trans_block_rsv; |
Li Zefan | 581bb05 | 2011-04-20 10:06:11 +0800 | [diff] [blame] | 4787 | if (!(root == root->fs_info->tree_root || |
| 4788 | root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID)) |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 4789 | btrfs_return_ino(root, btrfs_ino(inode)); |
Li Zefan | 581bb05 | 2011-04-20 10:06:11 +0800 | [diff] [blame] | 4790 | |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 4791 | btrfs_end_transaction(trans, root); |
Liu Bo | b53d3f5 | 2012-11-14 14:34:34 +0000 | [diff] [blame] | 4792 | btrfs_btree_balance_dirty(root); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4793 | no_delete: |
Miao Xie | 89042e5 | 2013-05-15 07:48:15 +0000 | [diff] [blame] | 4794 | btrfs_remove_delayed_node(inode); |
Jan Kara | dbd5768 | 2012-05-03 14:48:02 +0200 | [diff] [blame] | 4795 | clear_inode(inode); |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 4796 | return; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4797 | } |
| 4798 | |
| 4799 | /* |
| 4800 | * this returns the key found in the dir entry in the location pointer. |
| 4801 | * If no dir entries were found, location->objectid is 0. |
| 4802 | */ |
| 4803 | static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry, |
| 4804 | struct btrfs_key *location) |
| 4805 | { |
| 4806 | const char *name = dentry->d_name.name; |
| 4807 | int namelen = dentry->d_name.len; |
| 4808 | struct btrfs_dir_item *di; |
| 4809 | struct btrfs_path *path; |
| 4810 | struct btrfs_root *root = BTRFS_I(dir)->root; |
Yan | 0d9f7f3 | 2007-10-25 15:48:28 -0400 | [diff] [blame] | 4811 | int ret = 0; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4812 | |
| 4813 | path = btrfs_alloc_path(); |
Mark Fasheh | d8926bb | 2011-07-13 10:38:47 -0700 | [diff] [blame] | 4814 | if (!path) |
| 4815 | return -ENOMEM; |
Chris Mason | 3954401 | 2007-12-12 14:38:19 -0500 | [diff] [blame] | 4816 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 4817 | di = btrfs_lookup_dir_item(NULL, root, path, btrfs_ino(dir), name, |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4818 | namelen, 0); |
Yan | 0d9f7f3 | 2007-10-25 15:48:28 -0400 | [diff] [blame] | 4819 | if (IS_ERR(di)) |
| 4820 | ret = PTR_ERR(di); |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 4821 | |
David Sterba | c704005 | 2011-04-19 18:00:01 +0200 | [diff] [blame] | 4822 | if (IS_ERR_OR_NULL(di)) |
Chris Mason | 3954401 | 2007-12-12 14:38:19 -0500 | [diff] [blame] | 4823 | goto out_err; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 4824 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4825 | btrfs_dir_item_key_to_cpu(path->nodes[0], di, location); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4826 | out: |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4827 | btrfs_free_path(path); |
| 4828 | return ret; |
Chris Mason | 3954401 | 2007-12-12 14:38:19 -0500 | [diff] [blame] | 4829 | out_err: |
| 4830 | location->objectid = 0; |
| 4831 | goto out; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4832 | } |
| 4833 | |
| 4834 | /* |
| 4835 | * when we hit a tree root in a directory, the btrfs part of the inode |
| 4836 | * needs to be changed to reflect the root directory of the tree root. This |
| 4837 | * is kind of like crossing a mount point. |
| 4838 | */ |
| 4839 | static int fixup_tree_root_location(struct btrfs_root *root, |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 4840 | struct inode *dir, |
| 4841 | struct dentry *dentry, |
| 4842 | struct btrfs_key *location, |
| 4843 | struct btrfs_root **sub_root) |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4844 | { |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 4845 | struct btrfs_path *path; |
| 4846 | struct btrfs_root *new_root; |
| 4847 | struct btrfs_root_ref *ref; |
| 4848 | struct extent_buffer *leaf; |
| 4849 | int ret; |
| 4850 | int err = 0; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4851 | |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 4852 | path = btrfs_alloc_path(); |
| 4853 | if (!path) { |
| 4854 | err = -ENOMEM; |
| 4855 | goto out; |
| 4856 | } |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4857 | |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 4858 | err = -ENOENT; |
Kelley Nielsen | 75ac2dd | 2013-11-04 19:35:58 -0800 | [diff] [blame] | 4859 | ret = btrfs_find_item(root->fs_info->tree_root, path, |
| 4860 | BTRFS_I(dir)->root->root_key.objectid, |
| 4861 | location->objectid, BTRFS_ROOT_REF_KEY, NULL); |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 4862 | if (ret) { |
| 4863 | if (ret < 0) |
| 4864 | err = ret; |
| 4865 | goto out; |
| 4866 | } |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4867 | |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 4868 | leaf = path->nodes[0]; |
| 4869 | ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref); |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 4870 | if (btrfs_root_ref_dirid(leaf, ref) != btrfs_ino(dir) || |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 4871 | btrfs_root_ref_name_len(leaf, ref) != dentry->d_name.len) |
| 4872 | goto out; |
| 4873 | |
| 4874 | ret = memcmp_extent_buffer(leaf, dentry->d_name.name, |
| 4875 | (unsigned long)(ref + 1), |
| 4876 | dentry->d_name.len); |
| 4877 | if (ret) |
| 4878 | goto out; |
| 4879 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 4880 | btrfs_release_path(path); |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 4881 | |
| 4882 | new_root = btrfs_read_fs_root_no_name(root->fs_info, location); |
| 4883 | if (IS_ERR(new_root)) { |
| 4884 | err = PTR_ERR(new_root); |
| 4885 | goto out; |
| 4886 | } |
| 4887 | |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 4888 | *sub_root = new_root; |
| 4889 | location->objectid = btrfs_root_dirid(&new_root->root_item); |
| 4890 | location->type = BTRFS_INODE_ITEM_KEY; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4891 | location->offset = 0; |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 4892 | err = 0; |
| 4893 | out: |
| 4894 | btrfs_free_path(path); |
| 4895 | return err; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 4896 | } |
| 4897 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 4898 | static void inode_tree_add(struct inode *inode) |
| 4899 | { |
| 4900 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 4901 | struct btrfs_inode *entry; |
From: Nick Piggin | 03e860b | 2009-08-21 10:09:44 +0200 | [diff] [blame] | 4902 | struct rb_node **p; |
| 4903 | struct rb_node *parent; |
Filipe David Borba Manana | cef2193 | 2013-09-02 12:19:13 +0100 | [diff] [blame] | 4904 | struct rb_node *new = &BTRFS_I(inode)->rb_node; |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 4905 | u64 ino = btrfs_ino(inode); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 4906 | |
Al Viro | 1d3382cb | 2010-10-23 15:19:20 -0400 | [diff] [blame] | 4907 | if (inode_unhashed(inode)) |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 4908 | return; |
Miao Xie | e1409ce | 2013-05-15 07:48:16 +0000 | [diff] [blame] | 4909 | parent = NULL; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 4910 | spin_lock(&root->inode_lock); |
Miao Xie | e1409ce | 2013-05-15 07:48:16 +0000 | [diff] [blame] | 4911 | p = &root->inode_tree.rb_node; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 4912 | while (*p) { |
| 4913 | parent = *p; |
| 4914 | entry = rb_entry(parent, struct btrfs_inode, rb_node); |
| 4915 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 4916 | if (ino < btrfs_ino(&entry->vfs_inode)) |
From: Nick Piggin | 03e860b | 2009-08-21 10:09:44 +0200 | [diff] [blame] | 4917 | p = &parent->rb_left; |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 4918 | else if (ino > btrfs_ino(&entry->vfs_inode)) |
From: Nick Piggin | 03e860b | 2009-08-21 10:09:44 +0200 | [diff] [blame] | 4919 | p = &parent->rb_right; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 4920 | else { |
| 4921 | WARN_ON(!(entry->vfs_inode.i_state & |
Al Viro | a4ffdde | 2010-06-02 17:38:30 -0400 | [diff] [blame] | 4922 | (I_WILL_FREE | I_FREEING))); |
Filipe David Borba Manana | cef2193 | 2013-09-02 12:19:13 +0100 | [diff] [blame] | 4923 | rb_replace_node(parent, new, &root->inode_tree); |
From: Nick Piggin | 03e860b | 2009-08-21 10:09:44 +0200 | [diff] [blame] | 4924 | RB_CLEAR_NODE(parent); |
| 4925 | spin_unlock(&root->inode_lock); |
Filipe David Borba Manana | cef2193 | 2013-09-02 12:19:13 +0100 | [diff] [blame] | 4926 | return; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 4927 | } |
| 4928 | } |
Filipe David Borba Manana | cef2193 | 2013-09-02 12:19:13 +0100 | [diff] [blame] | 4929 | rb_link_node(new, parent, p); |
| 4930 | rb_insert_color(new, &root->inode_tree); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 4931 | spin_unlock(&root->inode_lock); |
| 4932 | } |
| 4933 | |
| 4934 | static void inode_tree_del(struct inode *inode) |
| 4935 | { |
| 4936 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 4937 | int empty = 0; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 4938 | |
From: Nick Piggin | 03e860b | 2009-08-21 10:09:44 +0200 | [diff] [blame] | 4939 | spin_lock(&root->inode_lock); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 4940 | if (!RB_EMPTY_NODE(&BTRFS_I(inode)->rb_node)) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 4941 | rb_erase(&BTRFS_I(inode)->rb_node, &root->inode_tree); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 4942 | RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node); |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 4943 | empty = RB_EMPTY_ROOT(&root->inode_tree); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 4944 | } |
From: Nick Piggin | 03e860b | 2009-08-21 10:09:44 +0200 | [diff] [blame] | 4945 | spin_unlock(&root->inode_lock); |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 4946 | |
Stefan Behrens | 69e9c6c | 2013-09-05 16:58:43 +0200 | [diff] [blame] | 4947 | if (empty && btrfs_root_refs(&root->root_item) == 0) { |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 4948 | synchronize_srcu(&root->fs_info->subvol_srcu); |
| 4949 | spin_lock(&root->inode_lock); |
| 4950 | empty = RB_EMPTY_ROOT(&root->inode_tree); |
| 4951 | spin_unlock(&root->inode_lock); |
| 4952 | if (empty) |
| 4953 | btrfs_add_dead_root(root); |
| 4954 | } |
| 4955 | } |
| 4956 | |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 4957 | void btrfs_invalidate_inodes(struct btrfs_root *root) |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 4958 | { |
| 4959 | struct rb_node *node; |
| 4960 | struct rb_node *prev; |
| 4961 | struct btrfs_inode *entry; |
| 4962 | struct inode *inode; |
| 4963 | u64 objectid = 0; |
| 4964 | |
Liu Bo | 7813b3d | 2014-02-10 17:37:25 +0800 | [diff] [blame] | 4965 | if (!test_bit(BTRFS_FS_STATE_ERROR, &root->fs_info->fs_state)) |
| 4966 | WARN_ON(btrfs_root_refs(&root->root_item) != 0); |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 4967 | |
| 4968 | spin_lock(&root->inode_lock); |
| 4969 | again: |
| 4970 | node = root->inode_tree.rb_node; |
| 4971 | prev = NULL; |
| 4972 | while (node) { |
| 4973 | prev = node; |
| 4974 | entry = rb_entry(node, struct btrfs_inode, rb_node); |
| 4975 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 4976 | if (objectid < btrfs_ino(&entry->vfs_inode)) |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 4977 | node = node->rb_left; |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 4978 | else if (objectid > btrfs_ino(&entry->vfs_inode)) |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 4979 | node = node->rb_right; |
| 4980 | else |
| 4981 | break; |
| 4982 | } |
| 4983 | if (!node) { |
| 4984 | while (prev) { |
| 4985 | entry = rb_entry(prev, struct btrfs_inode, rb_node); |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 4986 | if (objectid <= btrfs_ino(&entry->vfs_inode)) { |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 4987 | node = prev; |
| 4988 | break; |
| 4989 | } |
| 4990 | prev = rb_next(prev); |
| 4991 | } |
| 4992 | } |
| 4993 | while (node) { |
| 4994 | entry = rb_entry(node, struct btrfs_inode, rb_node); |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 4995 | objectid = btrfs_ino(&entry->vfs_inode) + 1; |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 4996 | inode = igrab(&entry->vfs_inode); |
| 4997 | if (inode) { |
| 4998 | spin_unlock(&root->inode_lock); |
| 4999 | if (atomic_read(&inode->i_count) > 1) |
| 5000 | d_prune_aliases(inode); |
| 5001 | /* |
Al Viro | 45321ac | 2010-06-07 13:43:19 -0400 | [diff] [blame] | 5002 | * btrfs_drop_inode will have it removed from |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 5003 | * the inode cache when its usage count |
| 5004 | * hits zero. |
| 5005 | */ |
| 5006 | iput(inode); |
| 5007 | cond_resched(); |
| 5008 | spin_lock(&root->inode_lock); |
| 5009 | goto again; |
| 5010 | } |
| 5011 | |
| 5012 | if (cond_resched_lock(&root->inode_lock)) |
| 5013 | goto again; |
| 5014 | |
| 5015 | node = rb_next(node); |
| 5016 | } |
| 5017 | spin_unlock(&root->inode_lock); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5018 | } |
| 5019 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5020 | static int btrfs_init_locked_inode(struct inode *inode, void *p) |
| 5021 | { |
| 5022 | struct btrfs_iget_args *args = p; |
Chris Mason | 90d3e59 | 2014-01-09 17:28:00 -0800 | [diff] [blame] | 5023 | inode->i_ino = args->location->objectid; |
| 5024 | memcpy(&BTRFS_I(inode)->location, args->location, |
| 5025 | sizeof(*args->location)); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5026 | BTRFS_I(inode)->root = args->root; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5027 | return 0; |
| 5028 | } |
| 5029 | |
| 5030 | static int btrfs_find_actor(struct inode *inode, void *opaque) |
| 5031 | { |
| 5032 | struct btrfs_iget_args *args = opaque; |
Chris Mason | 90d3e59 | 2014-01-09 17:28:00 -0800 | [diff] [blame] | 5033 | return args->location->objectid == BTRFS_I(inode)->location.objectid && |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 5034 | args->root == BTRFS_I(inode)->root; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5035 | } |
| 5036 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5037 | static struct inode *btrfs_iget_locked(struct super_block *s, |
Chris Mason | 90d3e59 | 2014-01-09 17:28:00 -0800 | [diff] [blame] | 5038 | struct btrfs_key *location, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5039 | struct btrfs_root *root) |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5040 | { |
| 5041 | struct inode *inode; |
| 5042 | struct btrfs_iget_args args; |
Chris Mason | 90d3e59 | 2014-01-09 17:28:00 -0800 | [diff] [blame] | 5043 | unsigned long hashval = btrfs_inode_hash(location->objectid, root); |
Filipe David Borba Manana | 778ba82 | 2013-10-06 22:22:33 +0100 | [diff] [blame] | 5044 | |
Chris Mason | 90d3e59 | 2014-01-09 17:28:00 -0800 | [diff] [blame] | 5045 | args.location = location; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5046 | args.root = root; |
| 5047 | |
Filipe David Borba Manana | 778ba82 | 2013-10-06 22:22:33 +0100 | [diff] [blame] | 5048 | inode = iget5_locked(s, hashval, btrfs_find_actor, |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5049 | btrfs_init_locked_inode, |
| 5050 | (void *)&args); |
| 5051 | return inode; |
| 5052 | } |
| 5053 | |
Balaji Rao | 1a54ef8 | 2008-07-21 02:01:04 +0530 | [diff] [blame] | 5054 | /* Get an inode object given its location and corresponding root. |
| 5055 | * Returns in *is_new if the inode was read from disk |
| 5056 | */ |
| 5057 | struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location, |
Josef Bacik | 73f7341 | 2009-12-04 17:38:27 +0000 | [diff] [blame] | 5058 | struct btrfs_root *root, int *new) |
Balaji Rao | 1a54ef8 | 2008-07-21 02:01:04 +0530 | [diff] [blame] | 5059 | { |
| 5060 | struct inode *inode; |
| 5061 | |
Chris Mason | 90d3e59 | 2014-01-09 17:28:00 -0800 | [diff] [blame] | 5062 | inode = btrfs_iget_locked(s, location, root); |
Balaji Rao | 1a54ef8 | 2008-07-21 02:01:04 +0530 | [diff] [blame] | 5063 | if (!inode) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5064 | return ERR_PTR(-ENOMEM); |
Balaji Rao | 1a54ef8 | 2008-07-21 02:01:04 +0530 | [diff] [blame] | 5065 | |
| 5066 | if (inode->i_state & I_NEW) { |
Balaji Rao | 1a54ef8 | 2008-07-21 02:01:04 +0530 | [diff] [blame] | 5067 | btrfs_read_locked_inode(inode); |
Mark Fasheh | 1748f84 | 2011-07-12 11:25:31 -0700 | [diff] [blame] | 5068 | if (!is_bad_inode(inode)) { |
| 5069 | inode_tree_add(inode); |
| 5070 | unlock_new_inode(inode); |
| 5071 | if (new) |
| 5072 | *new = 1; |
| 5073 | } else { |
Sergei Trofimovich | e0b6d65 | 2011-09-11 10:52:24 -0400 | [diff] [blame] | 5074 | unlock_new_inode(inode); |
| 5075 | iput(inode); |
| 5076 | inode = ERR_PTR(-ESTALE); |
Mark Fasheh | 1748f84 | 2011-07-12 11:25:31 -0700 | [diff] [blame] | 5077 | } |
| 5078 | } |
| 5079 | |
Balaji Rao | 1a54ef8 | 2008-07-21 02:01:04 +0530 | [diff] [blame] | 5080 | return inode; |
| 5081 | } |
| 5082 | |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 5083 | static struct inode *new_simple_dir(struct super_block *s, |
| 5084 | struct btrfs_key *key, |
| 5085 | struct btrfs_root *root) |
| 5086 | { |
| 5087 | struct inode *inode = new_inode(s); |
| 5088 | |
| 5089 | if (!inode) |
| 5090 | return ERR_PTR(-ENOMEM); |
| 5091 | |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 5092 | BTRFS_I(inode)->root = root; |
| 5093 | memcpy(&BTRFS_I(inode)->location, key, sizeof(*key)); |
Josef Bacik | 72ac3c0 | 2012-05-23 14:13:11 -0400 | [diff] [blame] | 5094 | set_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags); |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 5095 | |
| 5096 | inode->i_ino = BTRFS_EMPTY_SUBVOL_DIR_OBJECTID; |
Li Zefan | 848cce0 | 2012-02-21 17:04:28 +0800 | [diff] [blame] | 5097 | inode->i_op = &btrfs_dir_ro_inode_operations; |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 5098 | inode->i_fop = &simple_dir_operations; |
| 5099 | inode->i_mode = S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO; |
| 5100 | inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME; |
| 5101 | |
| 5102 | return inode; |
| 5103 | } |
| 5104 | |
Chris Mason | 3de4586 | 2008-11-17 21:02:50 -0500 | [diff] [blame] | 5105 | struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry) |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5106 | { |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 5107 | struct inode *inode; |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 5108 | struct btrfs_root *root = BTRFS_I(dir)->root; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5109 | struct btrfs_root *sub_root = root; |
| 5110 | struct btrfs_key location; |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 5111 | int index; |
Josef Bacik | b4aff1f | 2011-06-28 16:18:59 -0400 | [diff] [blame] | 5112 | int ret = 0; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5113 | |
| 5114 | if (dentry->d_name.len > BTRFS_NAME_LEN) |
| 5115 | return ERR_PTR(-ENAMETOOLONG); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5116 | |
Jeff Layton | 39e3c95 | 2012-11-28 11:30:53 -0500 | [diff] [blame] | 5117 | ret = btrfs_inode_by_name(dir, dentry, &location); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5118 | if (ret < 0) |
| 5119 | return ERR_PTR(ret); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5120 | |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 5121 | if (location.objectid == 0) |
Tsutomu Itoh | 5662344b3 | 2013-12-13 09:51:42 +0900 | [diff] [blame] | 5122 | return ERR_PTR(-ENOENT); |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 5123 | |
| 5124 | if (location.type == BTRFS_INODE_ITEM_KEY) { |
Josef Bacik | 73f7341 | 2009-12-04 17:38:27 +0000 | [diff] [blame] | 5125 | inode = btrfs_iget(dir->i_sb, &location, root, NULL); |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 5126 | return inode; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5127 | } |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 5128 | |
| 5129 | BUG_ON(location.type != BTRFS_ROOT_ITEM_KEY); |
| 5130 | |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 5131 | index = srcu_read_lock(&root->fs_info->subvol_srcu); |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 5132 | ret = fixup_tree_root_location(root, dir, dentry, |
| 5133 | &location, &sub_root); |
| 5134 | if (ret < 0) { |
| 5135 | if (ret != -ENOENT) |
| 5136 | inode = ERR_PTR(ret); |
| 5137 | else |
| 5138 | inode = new_simple_dir(dir->i_sb, &location, sub_root); |
| 5139 | } else { |
Josef Bacik | 73f7341 | 2009-12-04 17:38:27 +0000 | [diff] [blame] | 5140 | inode = btrfs_iget(dir->i_sb, &location, sub_root, NULL); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5141 | } |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 5142 | srcu_read_unlock(&root->fs_info->subvol_srcu, index); |
| 5143 | |
Julia Lawall | 34d19ba | 2011-01-24 19:55:19 +0000 | [diff] [blame] | 5144 | if (!IS_ERR(inode) && root != sub_root) { |
Yan, Zheng | c71bf09 | 2009-11-12 09:34:40 +0000 | [diff] [blame] | 5145 | down_read(&root->fs_info->cleanup_work_sem); |
| 5146 | if (!(inode->i_sb->s_flags & MS_RDONLY)) |
Josef Bacik | 66b4ffd | 2011-01-31 16:22:42 -0500 | [diff] [blame] | 5147 | ret = btrfs_orphan_cleanup(sub_root); |
Yan, Zheng | c71bf09 | 2009-11-12 09:34:40 +0000 | [diff] [blame] | 5148 | up_read(&root->fs_info->cleanup_work_sem); |
Josef Bacik | 01cd336 | 2013-06-03 21:39:49 -0400 | [diff] [blame] | 5149 | if (ret) { |
| 5150 | iput(inode); |
Josef Bacik | 66b4ffd | 2011-01-31 16:22:42 -0500 | [diff] [blame] | 5151 | inode = ERR_PTR(ret); |
Josef Bacik | 01cd336 | 2013-06-03 21:39:49 -0400 | [diff] [blame] | 5152 | } |
Yan, Zheng | c71bf09 | 2009-11-12 09:34:40 +0000 | [diff] [blame] | 5153 | } |
| 5154 | |
Chris Mason | 3de4586 | 2008-11-17 21:02:50 -0500 | [diff] [blame] | 5155 | return inode; |
| 5156 | } |
| 5157 | |
Nick Piggin | fe15ce4 | 2011-01-07 17:49:23 +1100 | [diff] [blame] | 5158 | static int btrfs_dentry_delete(const struct dentry *dentry) |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 5159 | { |
| 5160 | struct btrfs_root *root; |
Li Zefan | 848cce0 | 2012-02-21 17:04:28 +0800 | [diff] [blame] | 5161 | struct inode *inode = dentry->d_inode; |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 5162 | |
Li Zefan | 848cce0 | 2012-02-21 17:04:28 +0800 | [diff] [blame] | 5163 | if (!inode && !IS_ROOT(dentry)) |
| 5164 | inode = dentry->d_parent->d_inode; |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 5165 | |
Li Zefan | 848cce0 | 2012-02-21 17:04:28 +0800 | [diff] [blame] | 5166 | if (inode) { |
| 5167 | root = BTRFS_I(inode)->root; |
Yan, Zheng | efefb14 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 5168 | if (btrfs_root_refs(&root->root_item) == 0) |
| 5169 | return 1; |
Li Zefan | 848cce0 | 2012-02-21 17:04:28 +0800 | [diff] [blame] | 5170 | |
| 5171 | if (btrfs_ino(inode) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID) |
| 5172 | return 1; |
Yan, Zheng | efefb14 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 5173 | } |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 5174 | return 0; |
| 5175 | } |
| 5176 | |
Josef Bacik | b4aff1f | 2011-06-28 16:18:59 -0400 | [diff] [blame] | 5177 | static void btrfs_dentry_release(struct dentry *dentry) |
| 5178 | { |
Daeseok Youn | 944a451 | 2014-04-14 15:37:02 +0900 | [diff] [blame] | 5179 | kfree(dentry->d_fsdata); |
Josef Bacik | b4aff1f | 2011-06-28 16:18:59 -0400 | [diff] [blame] | 5180 | } |
| 5181 | |
Chris Mason | 3de4586 | 2008-11-17 21:02:50 -0500 | [diff] [blame] | 5182 | static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry, |
Al Viro | 00cd8dd | 2012-06-10 17:13:09 -0400 | [diff] [blame] | 5183 | unsigned int flags) |
Chris Mason | 3de4586 | 2008-11-17 21:02:50 -0500 | [diff] [blame] | 5184 | { |
Tsutomu Itoh | 5662344b3 | 2013-12-13 09:51:42 +0900 | [diff] [blame] | 5185 | struct inode *inode; |
Josef Bacik | a66e7cc | 2011-09-18 10:34:03 -0400 | [diff] [blame] | 5186 | |
Tsutomu Itoh | 5662344b3 | 2013-12-13 09:51:42 +0900 | [diff] [blame] | 5187 | inode = btrfs_lookup_dentry(dir, dentry); |
| 5188 | if (IS_ERR(inode)) { |
| 5189 | if (PTR_ERR(inode) == -ENOENT) |
| 5190 | inode = NULL; |
| 5191 | else |
| 5192 | return ERR_CAST(inode); |
| 5193 | } |
| 5194 | |
Josef Bacik | 3a0dfa6 | 2014-02-14 13:43:48 -0500 | [diff] [blame] | 5195 | return d_materialise_unique(dentry, inode); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5196 | } |
| 5197 | |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 5198 | unsigned char btrfs_filetype_table[] = { |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5199 | DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK |
| 5200 | }; |
| 5201 | |
Al Viro | 9cdda8d | 2013-05-22 16:48:09 -0400 | [diff] [blame] | 5202 | static int btrfs_real_readdir(struct file *file, struct dir_context *ctx) |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5203 | { |
Al Viro | 9cdda8d | 2013-05-22 16:48:09 -0400 | [diff] [blame] | 5204 | struct inode *inode = file_inode(file); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5205 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 5206 | struct btrfs_item *item; |
| 5207 | struct btrfs_dir_item *di; |
| 5208 | struct btrfs_key key; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5209 | struct btrfs_key found_key; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5210 | struct btrfs_path *path; |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 5211 | struct list_head ins_list; |
| 5212 | struct list_head del_list; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5213 | int ret; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5214 | struct extent_buffer *leaf; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5215 | int slot; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5216 | unsigned char d_type; |
| 5217 | int over = 0; |
| 5218 | u32 di_cur; |
| 5219 | u32 di_total; |
| 5220 | u32 di_len; |
| 5221 | int key_type = BTRFS_DIR_INDEX_KEY; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5222 | char tmp_name[32]; |
| 5223 | char *name_ptr; |
| 5224 | int name_len; |
Al Viro | 9cdda8d | 2013-05-22 16:48:09 -0400 | [diff] [blame] | 5225 | int is_curr = 0; /* ctx->pos points to the current index? */ |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5226 | |
| 5227 | /* FIXME, use a real flag for deciding about the key type */ |
| 5228 | if (root->fs_info->tree_root == root) |
| 5229 | key_type = BTRFS_DIR_ITEM_KEY; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5230 | |
Al Viro | 9cdda8d | 2013-05-22 16:48:09 -0400 | [diff] [blame] | 5231 | if (!dir_emit_dots(file, ctx)) |
| 5232 | return 0; |
| 5233 | |
David Woodhouse | 49593bf | 2008-08-17 17:08:36 +0100 | [diff] [blame] | 5234 | path = btrfs_alloc_path(); |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 5235 | if (!path) |
| 5236 | return -ENOMEM; |
Chris Mason | ff5714c | 2011-05-28 07:00:39 -0400 | [diff] [blame] | 5237 | |
Josef Bacik | 026fd31 | 2011-05-13 10:32:11 -0400 | [diff] [blame] | 5238 | path->reada = 1; |
David Woodhouse | 49593bf | 2008-08-17 17:08:36 +0100 | [diff] [blame] | 5239 | |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 5240 | if (key_type == BTRFS_DIR_INDEX_KEY) { |
| 5241 | INIT_LIST_HEAD(&ins_list); |
| 5242 | INIT_LIST_HEAD(&del_list); |
| 5243 | btrfs_get_delayed_items(inode, &ins_list, &del_list); |
| 5244 | } |
| 5245 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5246 | btrfs_set_key_type(&key, key_type); |
Al Viro | 9cdda8d | 2013-05-22 16:48:09 -0400 | [diff] [blame] | 5247 | key.offset = ctx->pos; |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 5248 | key.objectid = btrfs_ino(inode); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5249 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5250 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 5251 | if (ret < 0) |
| 5252 | goto err; |
David Woodhouse | 49593bf | 2008-08-17 17:08:36 +0100 | [diff] [blame] | 5253 | |
| 5254 | while (1) { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5255 | leaf = path->nodes[0]; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5256 | slot = path->slots[0]; |
Li Zefan | b9e03af | 2011-03-23 10:43:58 +0800 | [diff] [blame] | 5257 | if (slot >= btrfs_header_nritems(leaf)) { |
| 5258 | ret = btrfs_next_leaf(root, path); |
| 5259 | if (ret < 0) |
| 5260 | goto err; |
| 5261 | else if (ret > 0) |
| 5262 | break; |
| 5263 | continue; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5264 | } |
Chris Mason | 3de4586 | 2008-11-17 21:02:50 -0500 | [diff] [blame] | 5265 | |
Ross Kirk | dd3cc16 | 2013-09-16 15:58:09 +0100 | [diff] [blame] | 5266 | item = btrfs_item_nr(slot); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5267 | btrfs_item_key_to_cpu(leaf, &found_key, slot); |
| 5268 | |
| 5269 | if (found_key.objectid != key.objectid) |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5270 | break; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5271 | if (btrfs_key_type(&found_key) != key_type) |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5272 | break; |
Al Viro | 9cdda8d | 2013-05-22 16:48:09 -0400 | [diff] [blame] | 5273 | if (found_key.offset < ctx->pos) |
Li Zefan | b9e03af | 2011-03-23 10:43:58 +0800 | [diff] [blame] | 5274 | goto next; |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 5275 | if (key_type == BTRFS_DIR_INDEX_KEY && |
| 5276 | btrfs_should_delete_dir_index(&del_list, |
| 5277 | found_key.offset)) |
| 5278 | goto next; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5279 | |
Al Viro | 9cdda8d | 2013-05-22 16:48:09 -0400 | [diff] [blame] | 5280 | ctx->pos = found_key.offset; |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 5281 | is_curr = 1; |
David Woodhouse | 49593bf | 2008-08-17 17:08:36 +0100 | [diff] [blame] | 5282 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5283 | di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item); |
| 5284 | di_cur = 0; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5285 | di_total = btrfs_item_size(leaf, item); |
David Woodhouse | 49593bf | 2008-08-17 17:08:36 +0100 | [diff] [blame] | 5286 | |
| 5287 | while (di_cur < di_total) { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5288 | struct btrfs_key location; |
| 5289 | |
Josef Bacik | 22a94d4 | 2011-03-16 16:47:17 -0400 | [diff] [blame] | 5290 | if (verify_dir_item(root, leaf, di)) |
| 5291 | break; |
| 5292 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5293 | name_len = btrfs_dir_name_len(leaf, di); |
David Woodhouse | 49593bf | 2008-08-17 17:08:36 +0100 | [diff] [blame] | 5294 | if (name_len <= sizeof(tmp_name)) { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5295 | name_ptr = tmp_name; |
| 5296 | } else { |
| 5297 | name_ptr = kmalloc(name_len, GFP_NOFS); |
David Woodhouse | 49593bf | 2008-08-17 17:08:36 +0100 | [diff] [blame] | 5298 | if (!name_ptr) { |
| 5299 | ret = -ENOMEM; |
| 5300 | goto err; |
| 5301 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5302 | } |
| 5303 | read_extent_buffer(leaf, name_ptr, |
| 5304 | (unsigned long)(di + 1), name_len); |
| 5305 | |
| 5306 | d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)]; |
| 5307 | btrfs_dir_item_key_to_cpu(leaf, di, &location); |
Chris Mason | 3de4586 | 2008-11-17 21:02:50 -0500 | [diff] [blame] | 5308 | |
Josef Bacik | b4aff1f | 2011-06-28 16:18:59 -0400 | [diff] [blame] | 5309 | |
Chris Mason | 3de4586 | 2008-11-17 21:02:50 -0500 | [diff] [blame] | 5310 | /* is this a reference to our own snapshot? If so |
Arne Jansen | 8c9c2bf | 2012-02-25 09:09:30 +0100 | [diff] [blame] | 5311 | * skip it. |
| 5312 | * |
| 5313 | * In contrast to old kernels, we insert the snapshot's |
| 5314 | * dir item and dir index after it has been created, so |
| 5315 | * we won't find a reference to our own snapshot. We |
| 5316 | * still keep the following code for backward |
| 5317 | * compatibility. |
Chris Mason | 3de4586 | 2008-11-17 21:02:50 -0500 | [diff] [blame] | 5318 | */ |
| 5319 | if (location.type == BTRFS_ROOT_ITEM_KEY && |
| 5320 | location.objectid == root->root_key.objectid) { |
| 5321 | over = 0; |
| 5322 | goto skip; |
| 5323 | } |
Al Viro | 9cdda8d | 2013-05-22 16:48:09 -0400 | [diff] [blame] | 5324 | over = !dir_emit(ctx, name_ptr, name_len, |
| 5325 | location.objectid, d_type); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5326 | |
Chris Mason | 3de4586 | 2008-11-17 21:02:50 -0500 | [diff] [blame] | 5327 | skip: |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5328 | if (name_ptr != tmp_name) |
| 5329 | kfree(name_ptr); |
| 5330 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5331 | if (over) |
| 5332 | goto nopos; |
Josef Bacik | 5103e94 | 2007-11-16 11:45:54 -0500 | [diff] [blame] | 5333 | di_len = btrfs_dir_name_len(leaf, di) + |
David Woodhouse | 49593bf | 2008-08-17 17:08:36 +0100 | [diff] [blame] | 5334 | btrfs_dir_data_len(leaf, di) + sizeof(*di); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5335 | di_cur += di_len; |
| 5336 | di = (struct btrfs_dir_item *)((char *)di + di_len); |
| 5337 | } |
Li Zefan | b9e03af | 2011-03-23 10:43:58 +0800 | [diff] [blame] | 5338 | next: |
| 5339 | path->slots[0]++; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5340 | } |
David Woodhouse | 49593bf | 2008-08-17 17:08:36 +0100 | [diff] [blame] | 5341 | |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 5342 | if (key_type == BTRFS_DIR_INDEX_KEY) { |
| 5343 | if (is_curr) |
Al Viro | 9cdda8d | 2013-05-22 16:48:09 -0400 | [diff] [blame] | 5344 | ctx->pos++; |
| 5345 | ret = btrfs_readdir_delayed_dir_index(ctx, &ins_list); |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 5346 | if (ret) |
| 5347 | goto nopos; |
| 5348 | } |
| 5349 | |
David Woodhouse | 49593bf | 2008-08-17 17:08:36 +0100 | [diff] [blame] | 5350 | /* Reached end of directory/root. Bump pos past the last item. */ |
Zach Brown | db62efb | 2013-07-11 16:19:42 -0700 | [diff] [blame] | 5351 | ctx->pos++; |
| 5352 | |
| 5353 | /* |
| 5354 | * Stop new entries from being returned after we return the last |
| 5355 | * entry. |
| 5356 | * |
| 5357 | * New directory entries are assigned a strictly increasing |
| 5358 | * offset. This means that new entries created during readdir |
| 5359 | * are *guaranteed* to be seen in the future by that readdir. |
| 5360 | * This has broken buggy programs which operate on names as |
| 5361 | * they're returned by readdir. Until we re-use freed offsets |
| 5362 | * we have this hack to stop new entries from being returned |
| 5363 | * under the assumption that they'll never reach this huge |
| 5364 | * offset. |
| 5365 | * |
| 5366 | * This is being careful not to overflow 32bit loff_t unless the |
| 5367 | * last entry requires it because doing so has broken 32bit apps |
| 5368 | * in the past. |
| 5369 | */ |
| 5370 | if (key_type == BTRFS_DIR_INDEX_KEY) { |
| 5371 | if (ctx->pos >= INT_MAX) |
| 5372 | ctx->pos = LLONG_MAX; |
| 5373 | else |
| 5374 | ctx->pos = INT_MAX; |
| 5375 | } |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5376 | nopos: |
| 5377 | ret = 0; |
| 5378 | err: |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 5379 | if (key_type == BTRFS_DIR_INDEX_KEY) |
| 5380 | btrfs_put_delayed_items(&ins_list, &del_list); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5381 | btrfs_free_path(path); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5382 | return ret; |
| 5383 | } |
| 5384 | |
Christoph Hellwig | a9185b4 | 2010-03-05 09:21:37 +0100 | [diff] [blame] | 5385 | int btrfs_write_inode(struct inode *inode, struct writeback_control *wbc) |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5386 | { |
| 5387 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 5388 | struct btrfs_trans_handle *trans; |
| 5389 | int ret = 0; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 5390 | bool nolock = false; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5391 | |
Josef Bacik | 72ac3c0 | 2012-05-23 14:13:11 -0400 | [diff] [blame] | 5392 | if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags)) |
Chris Mason | 4ca8b41 | 2008-08-05 13:30:48 -0400 | [diff] [blame] | 5393 | return 0; |
| 5394 | |
Liu Bo | 83eea1f | 2012-07-10 05:28:39 -0600 | [diff] [blame] | 5395 | 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] | 5396 | nolock = true; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 5397 | |
Christoph Hellwig | a9185b4 | 2010-03-05 09:21:37 +0100 | [diff] [blame] | 5398 | if (wbc->sync_mode == WB_SYNC_ALL) { |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 5399 | if (nolock) |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 5400 | trans = btrfs_join_transaction_nolock(root); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 5401 | else |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 5402 | trans = btrfs_join_transaction(root); |
Tsutomu Itoh | 3612b49 | 2011-01-25 02:51:38 +0000 | [diff] [blame] | 5403 | if (IS_ERR(trans)) |
| 5404 | return PTR_ERR(trans); |
Miao Xie | a698d075 | 2012-09-20 01:51:59 -0600 | [diff] [blame] | 5405 | ret = btrfs_commit_transaction(trans, root); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5406 | } |
| 5407 | return ret; |
| 5408 | } |
| 5409 | |
| 5410 | /* |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 5411 | * This is somewhat expensive, updating the tree every time the |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5412 | * inode changes. But, it is most likely to find the inode in cache. |
| 5413 | * FIXME, needs more benchmarking...there are no reasons other than performance |
| 5414 | * to keep or drop this code. |
| 5415 | */ |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 5416 | static int btrfs_dirty_inode(struct inode *inode) |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5417 | { |
| 5418 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 5419 | struct btrfs_trans_handle *trans; |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5420 | int ret; |
| 5421 | |
Josef Bacik | 72ac3c0 | 2012-05-23 14:13:11 -0400 | [diff] [blame] | 5422 | if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags)) |
Josef Bacik | 22c44fe | 2011-11-30 10:45:38 -0500 | [diff] [blame] | 5423 | return 0; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5424 | |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 5425 | trans = btrfs_join_transaction(root); |
Josef Bacik | 22c44fe | 2011-11-30 10:45:38 -0500 | [diff] [blame] | 5426 | if (IS_ERR(trans)) |
| 5427 | return PTR_ERR(trans); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5428 | |
| 5429 | ret = btrfs_update_inode(trans, root, inode); |
Chris Mason | 94b6044 | 2010-05-26 11:02:00 -0400 | [diff] [blame] | 5430 | if (ret && ret == -ENOSPC) { |
| 5431 | /* whoops, lets try again with the full transaction */ |
| 5432 | btrfs_end_transaction(trans, root); |
| 5433 | trans = btrfs_start_transaction(root, 1); |
Josef Bacik | 22c44fe | 2011-11-30 10:45:38 -0500 | [diff] [blame] | 5434 | if (IS_ERR(trans)) |
| 5435 | return PTR_ERR(trans); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5436 | |
Chris Mason | 94b6044 | 2010-05-26 11:02:00 -0400 | [diff] [blame] | 5437 | ret = btrfs_update_inode(trans, root, inode); |
Chris Mason | 94b6044 | 2010-05-26 11:02:00 -0400 | [diff] [blame] | 5438 | } |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5439 | btrfs_end_transaction(trans, root); |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 5440 | if (BTRFS_I(inode)->delayed_node) |
| 5441 | btrfs_balance_delayed_items(root); |
Josef Bacik | 22c44fe | 2011-11-30 10:45:38 -0500 | [diff] [blame] | 5442 | |
| 5443 | return ret; |
| 5444 | } |
| 5445 | |
| 5446 | /* |
| 5447 | * This is a copy of file_update_time. We need this so we can return error on |
| 5448 | * ENOSPC for updating the inode in the case of file write and mmap writes. |
| 5449 | */ |
Josef Bacik | e41f941 | 2012-03-26 09:46:47 -0400 | [diff] [blame] | 5450 | static int btrfs_update_time(struct inode *inode, struct timespec *now, |
| 5451 | int flags) |
Josef Bacik | 22c44fe | 2011-11-30 10:45:38 -0500 | [diff] [blame] | 5452 | { |
Alexander Block | 2bc556528 | 2012-06-15 09:49:33 +0200 | [diff] [blame] | 5453 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 5454 | |
| 5455 | if (btrfs_root_readonly(root)) |
| 5456 | return -EROFS; |
| 5457 | |
Josef Bacik | e41f941 | 2012-03-26 09:46:47 -0400 | [diff] [blame] | 5458 | if (flags & S_VERSION) |
Josef Bacik | 22c44fe | 2011-11-30 10:45:38 -0500 | [diff] [blame] | 5459 | inode_inc_iversion(inode); |
Josef Bacik | e41f941 | 2012-03-26 09:46:47 -0400 | [diff] [blame] | 5460 | if (flags & S_CTIME) |
| 5461 | inode->i_ctime = *now; |
| 5462 | if (flags & S_MTIME) |
| 5463 | inode->i_mtime = *now; |
| 5464 | if (flags & S_ATIME) |
| 5465 | inode->i_atime = *now; |
| 5466 | return btrfs_dirty_inode(inode); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5467 | } |
| 5468 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 5469 | /* |
| 5470 | * find the highest existing sequence number in a directory |
| 5471 | * and then set the in-memory index_cnt variable to reflect |
| 5472 | * free sequence numbers |
| 5473 | */ |
Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 5474 | static int btrfs_set_inode_index_count(struct inode *inode) |
| 5475 | { |
| 5476 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 5477 | struct btrfs_key key, found_key; |
| 5478 | struct btrfs_path *path; |
| 5479 | struct extent_buffer *leaf; |
| 5480 | int ret; |
| 5481 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 5482 | key.objectid = btrfs_ino(inode); |
Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 5483 | btrfs_set_key_type(&key, BTRFS_DIR_INDEX_KEY); |
| 5484 | key.offset = (u64)-1; |
| 5485 | |
| 5486 | path = btrfs_alloc_path(); |
| 5487 | if (!path) |
| 5488 | return -ENOMEM; |
| 5489 | |
| 5490 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 5491 | if (ret < 0) |
| 5492 | goto out; |
| 5493 | /* FIXME: we should be able to handle this */ |
| 5494 | if (ret == 0) |
| 5495 | goto out; |
| 5496 | ret = 0; |
| 5497 | |
| 5498 | /* |
| 5499 | * MAGIC NUMBER EXPLANATION: |
| 5500 | * since we search a directory based on f_pos we have to start at 2 |
| 5501 | * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody |
| 5502 | * else has to start at 2 |
| 5503 | */ |
| 5504 | if (path->slots[0] == 0) { |
| 5505 | BTRFS_I(inode)->index_cnt = 2; |
| 5506 | goto out; |
| 5507 | } |
| 5508 | |
| 5509 | path->slots[0]--; |
| 5510 | |
| 5511 | leaf = path->nodes[0]; |
| 5512 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
| 5513 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 5514 | if (found_key.objectid != btrfs_ino(inode) || |
Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 5515 | btrfs_key_type(&found_key) != BTRFS_DIR_INDEX_KEY) { |
| 5516 | BTRFS_I(inode)->index_cnt = 2; |
| 5517 | goto out; |
| 5518 | } |
| 5519 | |
| 5520 | BTRFS_I(inode)->index_cnt = found_key.offset + 1; |
| 5521 | out: |
| 5522 | btrfs_free_path(path); |
| 5523 | return ret; |
| 5524 | } |
| 5525 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 5526 | /* |
| 5527 | * helper to find a free sequence number in a given directory. This current |
| 5528 | * code is very simple, later versions will do smarter things in the btree |
| 5529 | */ |
Chris Mason | 3de4586 | 2008-11-17 21:02:50 -0500 | [diff] [blame] | 5530 | int btrfs_set_inode_index(struct inode *dir, u64 *index) |
Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 5531 | { |
| 5532 | int ret = 0; |
| 5533 | |
| 5534 | if (BTRFS_I(dir)->index_cnt == (u64)-1) { |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 5535 | ret = btrfs_inode_delayed_dir_index_count(dir); |
| 5536 | if (ret) { |
| 5537 | ret = btrfs_set_inode_index_count(dir); |
| 5538 | if (ret) |
| 5539 | return ret; |
| 5540 | } |
Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 5541 | } |
| 5542 | |
Chris Mason | 00e4e6b | 2008-08-05 11:18:09 -0400 | [diff] [blame] | 5543 | *index = BTRFS_I(dir)->index_cnt; |
Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 5544 | BTRFS_I(dir)->index_cnt++; |
| 5545 | |
| 5546 | return ret; |
| 5547 | } |
| 5548 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5549 | static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans, |
| 5550 | struct btrfs_root *root, |
Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 5551 | struct inode *dir, |
Chris Mason | 9c58309 | 2008-01-29 15:15:18 -0500 | [diff] [blame] | 5552 | const char *name, int name_len, |
Al Viro | 175a4eb | 2011-07-26 03:30:54 -0400 | [diff] [blame] | 5553 | u64 ref_objectid, u64 objectid, |
| 5554 | umode_t mode, u64 *index) |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5555 | { |
| 5556 | struct inode *inode; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5557 | struct btrfs_inode_item *inode_item; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5558 | struct btrfs_key *location; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5559 | struct btrfs_path *path; |
Chris Mason | 9c58309 | 2008-01-29 15:15:18 -0500 | [diff] [blame] | 5560 | struct btrfs_inode_ref *ref; |
| 5561 | struct btrfs_key key[2]; |
| 5562 | u32 sizes[2]; |
Filipe Manana | ef3b9af | 2014-04-27 20:40:45 +0100 | [diff] [blame] | 5563 | int nitems = name ? 2 : 1; |
Chris Mason | 9c58309 | 2008-01-29 15:15:18 -0500 | [diff] [blame] | 5564 | unsigned long ptr; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5565 | int ret; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5566 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5567 | path = btrfs_alloc_path(); |
Mark Fasheh | d8926bb | 2011-07-13 10:38:47 -0700 | [diff] [blame] | 5568 | if (!path) |
| 5569 | return ERR_PTR(-ENOMEM); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5570 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5571 | inode = new_inode(root->fs_info->sb); |
Yoshinori Sano | 8fb2764 | 2011-04-09 02:30:07 +0000 | [diff] [blame] | 5572 | if (!inode) { |
| 5573 | btrfs_free_path(path); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5574 | return ERR_PTR(-ENOMEM); |
Yoshinori Sano | 8fb2764 | 2011-04-09 02:30:07 +0000 | [diff] [blame] | 5575 | } |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5576 | |
Li Zefan | 581bb05 | 2011-04-20 10:06:11 +0800 | [diff] [blame] | 5577 | /* |
| 5578 | * we have to initialize this early, so we can reclaim the inode |
| 5579 | * number if we fail afterwards in this function. |
| 5580 | */ |
| 5581 | inode->i_ino = objectid; |
| 5582 | |
Filipe Manana | ef3b9af | 2014-04-27 20:40:45 +0100 | [diff] [blame] | 5583 | if (dir && name) { |
liubo | 1abe9b8 | 2011-03-24 11:18:59 +0000 | [diff] [blame] | 5584 | trace_btrfs_inode_request(dir); |
| 5585 | |
Chris Mason | 3de4586 | 2008-11-17 21:02:50 -0500 | [diff] [blame] | 5586 | ret = btrfs_set_inode_index(dir, index); |
Shen Feng | 0977143 | 2009-04-02 16:46:06 -0400 | [diff] [blame] | 5587 | if (ret) { |
Yoshinori Sano | 8fb2764 | 2011-04-09 02:30:07 +0000 | [diff] [blame] | 5588 | btrfs_free_path(path); |
Shen Feng | 0977143 | 2009-04-02 16:46:06 -0400 | [diff] [blame] | 5589 | iput(inode); |
Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 5590 | return ERR_PTR(ret); |
Shen Feng | 0977143 | 2009-04-02 16:46:06 -0400 | [diff] [blame] | 5591 | } |
Filipe Manana | ef3b9af | 2014-04-27 20:40:45 +0100 | [diff] [blame] | 5592 | } else if (dir) { |
| 5593 | *index = 0; |
Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 5594 | } |
| 5595 | /* |
| 5596 | * index_cnt is ignored for everything but a dir, |
| 5597 | * btrfs_get_inode_index_count has an explanation for the magic |
| 5598 | * number |
| 5599 | */ |
| 5600 | BTRFS_I(inode)->index_cnt = 2; |
Miao Xie | 67de117 | 2013-12-26 13:07:06 +0800 | [diff] [blame] | 5601 | BTRFS_I(inode)->dir_index = *index; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5602 | BTRFS_I(inode)->root = root; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5603 | BTRFS_I(inode)->generation = trans->transid; |
Josef Bacik | 7619585 | 2010-11-19 02:18:02 +0000 | [diff] [blame] | 5604 | inode->i_generation = BTRFS_I(inode)->generation; |
Chris Mason | b888db2 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 5605 | |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 5606 | /* |
| 5607 | * We could have gotten an inode number from somebody who was fsynced |
| 5608 | * and then removed in this same transaction, so let's just set full |
| 5609 | * sync since it will be a full sync anyway and this will blow away the |
| 5610 | * old info in the log. |
| 5611 | */ |
| 5612 | set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags); |
| 5613 | |
Chris Mason | 9c58309 | 2008-01-29 15:15:18 -0500 | [diff] [blame] | 5614 | key[0].objectid = objectid; |
| 5615 | btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY); |
| 5616 | key[0].offset = 0; |
| 5617 | |
Chris Mason | 9c58309 | 2008-01-29 15:15:18 -0500 | [diff] [blame] | 5618 | sizes[0] = sizeof(struct btrfs_inode_item); |
Filipe Manana | ef3b9af | 2014-04-27 20:40:45 +0100 | [diff] [blame] | 5619 | |
| 5620 | if (name) { |
| 5621 | /* |
| 5622 | * Start new inodes with an inode_ref. This is slightly more |
| 5623 | * efficient for small numbers of hard links since they will |
| 5624 | * be packed into one item. Extended refs will kick in if we |
| 5625 | * add more hard links than can fit in the ref item. |
| 5626 | */ |
| 5627 | key[1].objectid = objectid; |
| 5628 | btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY); |
| 5629 | key[1].offset = ref_objectid; |
| 5630 | |
| 5631 | sizes[1] = name_len + sizeof(*ref); |
| 5632 | } |
Chris Mason | 9c58309 | 2008-01-29 15:15:18 -0500 | [diff] [blame] | 5633 | |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 5634 | path->leave_spinning = 1; |
Filipe Manana | ef3b9af | 2014-04-27 20:40:45 +0100 | [diff] [blame] | 5635 | ret = btrfs_insert_empty_items(trans, root, path, key, sizes, nitems); |
Chris Mason | 9c58309 | 2008-01-29 15:15:18 -0500 | [diff] [blame] | 5636 | if (ret != 0) |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5637 | goto fail; |
| 5638 | |
Dmitry Monakhov | ecc11fab | 2010-03-04 17:31:47 +0300 | [diff] [blame] | 5639 | inode_init_owner(inode, dir, mode); |
Yan Zheng | a76a3cd | 2008-10-09 11:46:29 -0400 | [diff] [blame] | 5640 | inode_set_bytes(inode, 0); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5641 | inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5642 | inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0], |
| 5643 | struct btrfs_inode_item); |
Li Zefan | 293f7e0 | 2012-07-10 00:58:58 -0600 | [diff] [blame] | 5644 | memset_extent_buffer(path->nodes[0], 0, (unsigned long)inode_item, |
| 5645 | sizeof(*inode_item)); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5646 | fill_inode_item(trans, path->nodes[0], inode_item, inode); |
Chris Mason | 9c58309 | 2008-01-29 15:15:18 -0500 | [diff] [blame] | 5647 | |
Filipe Manana | ef3b9af | 2014-04-27 20:40:45 +0100 | [diff] [blame] | 5648 | if (name) { |
| 5649 | ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1, |
| 5650 | struct btrfs_inode_ref); |
| 5651 | btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len); |
| 5652 | btrfs_set_inode_ref_index(path->nodes[0], ref, *index); |
| 5653 | ptr = (unsigned long)(ref + 1); |
| 5654 | write_extent_buffer(path->nodes[0], name, ptr, name_len); |
| 5655 | } |
Chris Mason | 9c58309 | 2008-01-29 15:15:18 -0500 | [diff] [blame] | 5656 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5657 | btrfs_mark_buffer_dirty(path->nodes[0]); |
| 5658 | btrfs_free_path(path); |
| 5659 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5660 | location = &BTRFS_I(inode)->location; |
| 5661 | location->objectid = objectid; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5662 | location->offset = 0; |
| 5663 | btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY); |
| 5664 | |
Christoph Hellwig | 6cbff00 | 2009-04-17 10:37:41 +0200 | [diff] [blame] | 5665 | btrfs_inherit_iflags(inode, dir); |
| 5666 | |
Al Viro | 569254b | 2011-07-24 17:08:40 -0400 | [diff] [blame] | 5667 | if (S_ISREG(mode)) { |
Chris Mason | 9427216 | 2009-07-02 12:26:06 -0400 | [diff] [blame] | 5668 | if (btrfs_test_opt(root, NODATASUM)) |
| 5669 | BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM; |
Liu Bo | 213490b | 2012-09-11 08:33:50 -0600 | [diff] [blame] | 5670 | if (btrfs_test_opt(root, NODATACOW)) |
Josef Bacik | f2bdf9a | 2013-02-21 15:28:28 -0500 | [diff] [blame] | 5671 | BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW | |
| 5672 | BTRFS_INODE_NODATASUM; |
Chris Mason | 9427216 | 2009-07-02 12:26:06 -0400 | [diff] [blame] | 5673 | } |
| 5674 | |
Filipe David Borba Manana | 778ba82 | 2013-10-06 22:22:33 +0100 | [diff] [blame] | 5675 | btrfs_insert_inode_hash(inode); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 5676 | inode_tree_add(inode); |
liubo | 1abe9b8 | 2011-03-24 11:18:59 +0000 | [diff] [blame] | 5677 | |
| 5678 | trace_btrfs_inode_new(inode); |
Chris Mason | 1973f0f | 2011-06-24 13:13:29 -0400 | [diff] [blame] | 5679 | btrfs_set_inode_last_trans(trans, inode); |
liubo | 1abe9b8 | 2011-03-24 11:18:59 +0000 | [diff] [blame] | 5680 | |
Alexander Block | 8ea05e3 | 2012-07-25 17:35:53 +0200 | [diff] [blame] | 5681 | btrfs_update_root_times(trans, root); |
| 5682 | |
Filipe David Borba Manana | 6354192 | 2014-01-07 11:47:46 +0000 | [diff] [blame] | 5683 | ret = btrfs_inode_inherit_props(trans, inode, dir); |
| 5684 | if (ret) |
| 5685 | btrfs_err(root->fs_info, |
| 5686 | "error inheriting props for ino %llu (root %llu): %d", |
| 5687 | btrfs_ino(inode), root->root_key.objectid, ret); |
| 5688 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5689 | return inode; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5690 | fail: |
Filipe Manana | ef3b9af | 2014-04-27 20:40:45 +0100 | [diff] [blame] | 5691 | if (dir && name) |
Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 5692 | BTRFS_I(dir)->index_cnt--; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5693 | btrfs_free_path(path); |
Shen Feng | 0977143 | 2009-04-02 16:46:06 -0400 | [diff] [blame] | 5694 | iput(inode); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5695 | return ERR_PTR(ret); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5696 | } |
| 5697 | |
| 5698 | static inline u8 btrfs_inode_type(struct inode *inode) |
| 5699 | { |
| 5700 | return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT]; |
| 5701 | } |
| 5702 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 5703 | /* |
| 5704 | * utility function to add 'inode' into 'parent_inode' with |
| 5705 | * a give name and a given sequence number. |
| 5706 | * if 'add_backref' is true, also insert a backref from the |
| 5707 | * inode to the parent directory. |
| 5708 | */ |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5709 | int btrfs_add_link(struct btrfs_trans_handle *trans, |
| 5710 | struct inode *parent_inode, struct inode *inode, |
| 5711 | const char *name, int name_len, int add_backref, u64 index) |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5712 | { |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 5713 | int ret = 0; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5714 | struct btrfs_key key; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 5715 | struct btrfs_root *root = BTRFS_I(parent_inode)->root; |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 5716 | u64 ino = btrfs_ino(inode); |
| 5717 | u64 parent_ino = btrfs_ino(parent_inode); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5718 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 5719 | if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) { |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 5720 | memcpy(&key, &BTRFS_I(inode)->root->root_key, sizeof(key)); |
| 5721 | } else { |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 5722 | key.objectid = ino; |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 5723 | btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY); |
| 5724 | key.offset = 0; |
| 5725 | } |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5726 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 5727 | if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) { |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 5728 | ret = btrfs_add_root_ref(trans, root->fs_info->tree_root, |
| 5729 | key.objectid, root->root_key.objectid, |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 5730 | parent_ino, index, name, name_len); |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 5731 | } else if (add_backref) { |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 5732 | ret = btrfs_insert_inode_ref(trans, root, name, name_len, ino, |
| 5733 | parent_ino, index); |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 5734 | } |
| 5735 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5736 | /* Nothing to clean up yet */ |
| 5737 | if (ret) |
| 5738 | return ret; |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 5739 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5740 | ret = btrfs_insert_dir_item(trans, root, name, name_len, |
| 5741 | parent_inode, &key, |
| 5742 | btrfs_inode_type(inode), index); |
Chris Mason | 9c52057 | 2012-12-17 14:26:57 -0500 | [diff] [blame] | 5743 | if (ret == -EEXIST || ret == -EOVERFLOW) |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5744 | goto fail_dir_item; |
| 5745 | else if (ret) { |
| 5746 | btrfs_abort_transaction(trans, root, ret); |
| 5747 | return ret; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5748 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5749 | |
| 5750 | btrfs_i_size_write(parent_inode, parent_inode->i_size + |
| 5751 | name_len * 2); |
Josef Bacik | 0c4d2d9 | 2012-04-05 15:03:02 -0400 | [diff] [blame] | 5752 | inode_inc_iversion(parent_inode); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5753 | parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME; |
| 5754 | ret = btrfs_update_inode(trans, root, parent_inode); |
| 5755 | if (ret) |
| 5756 | btrfs_abort_transaction(trans, root, ret); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5757 | return ret; |
Chris Mason | fe66a05 | 2012-02-20 08:40:56 -0500 | [diff] [blame] | 5758 | |
| 5759 | fail_dir_item: |
| 5760 | if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) { |
| 5761 | u64 local_index; |
| 5762 | int err; |
| 5763 | err = btrfs_del_root_ref(trans, root->fs_info->tree_root, |
| 5764 | key.objectid, root->root_key.objectid, |
| 5765 | parent_ino, &local_index, name, name_len); |
| 5766 | |
| 5767 | } else if (add_backref) { |
| 5768 | u64 local_index; |
| 5769 | int err; |
| 5770 | |
| 5771 | err = btrfs_del_inode_ref(trans, root, name, name_len, |
| 5772 | ino, parent_ino, &local_index); |
| 5773 | } |
| 5774 | return ret; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5775 | } |
| 5776 | |
| 5777 | static int btrfs_add_nondir(struct btrfs_trans_handle *trans, |
Josef Bacik | a1b075d | 2010-11-19 20:36:11 +0000 | [diff] [blame] | 5778 | struct inode *dir, struct dentry *dentry, |
| 5779 | struct inode *inode, int backref, u64 index) |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5780 | { |
Josef Bacik | a1b075d | 2010-11-19 20:36:11 +0000 | [diff] [blame] | 5781 | int err = btrfs_add_link(trans, dir, inode, |
| 5782 | dentry->d_name.name, dentry->d_name.len, |
| 5783 | backref, index); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5784 | if (err > 0) |
| 5785 | err = -EEXIST; |
| 5786 | return err; |
| 5787 | } |
| 5788 | |
Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 5789 | static int btrfs_mknod(struct inode *dir, struct dentry *dentry, |
Al Viro | 1a67aaf | 2011-07-26 01:52:52 -0400 | [diff] [blame] | 5790 | umode_t mode, dev_t rdev) |
Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 5791 | { |
| 5792 | struct btrfs_trans_handle *trans; |
| 5793 | struct btrfs_root *root = BTRFS_I(dir)->root; |
Chris Mason | 1832a6d | 2007-12-21 16:27:21 -0500 | [diff] [blame] | 5794 | struct inode *inode = NULL; |
Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 5795 | int err; |
| 5796 | int drop_inode = 0; |
| 5797 | u64 objectid; |
Chris Mason | 00e4e6b | 2008-08-05 11:18:09 -0400 | [diff] [blame] | 5798 | u64 index = 0; |
Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 5799 | |
| 5800 | if (!new_valid_dev(rdev)) |
| 5801 | return -EINVAL; |
| 5802 | |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 5803 | /* |
| 5804 | * 2 for inode item and ref |
| 5805 | * 2 for dir items |
| 5806 | * 1 for xattr if selinux is on |
| 5807 | */ |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 5808 | trans = btrfs_start_transaction(root, 5); |
| 5809 | if (IS_ERR(trans)) |
| 5810 | return PTR_ERR(trans); |
Chris Mason | 1832a6d | 2007-12-21 16:27:21 -0500 | [diff] [blame] | 5811 | |
Li Zefan | 581bb05 | 2011-04-20 10:06:11 +0800 | [diff] [blame] | 5812 | err = btrfs_find_free_ino(root, &objectid); |
| 5813 | if (err) |
| 5814 | goto out_unlock; |
| 5815 | |
Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 5816 | inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name, |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 5817 | dentry->d_name.len, btrfs_ino(dir), objectid, |
Josef Bacik | d82a6f1 | 2011-05-11 15:26:06 -0400 | [diff] [blame] | 5818 | mode, &index); |
Tsutomu Itoh | 7cf96da | 2011-04-25 19:43:53 -0400 | [diff] [blame] | 5819 | if (IS_ERR(inode)) { |
| 5820 | err = PTR_ERR(inode); |
Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 5821 | goto out_unlock; |
Tsutomu Itoh | 7cf96da | 2011-04-25 19:43:53 -0400 | [diff] [blame] | 5822 | } |
Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 5823 | |
Eric Paris | 2a7dba3 | 2011-02-01 11:05:39 -0500 | [diff] [blame] | 5824 | err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name); |
Josef Bacik | 33268ea | 2008-07-24 12:16:36 -0400 | [diff] [blame] | 5825 | if (err) { |
| 5826 | drop_inode = 1; |
| 5827 | goto out_unlock; |
| 5828 | } |
| 5829 | |
Casey Schaufler | ad19db7 | 2011-12-15 10:09:07 -0500 | [diff] [blame] | 5830 | /* |
| 5831 | * If the active LSM wants to access the inode during |
| 5832 | * d_instantiate it needs these. Smack checks to see |
| 5833 | * if the filesystem supports xattrs by looking at the |
| 5834 | * ops vector. |
| 5835 | */ |
| 5836 | |
| 5837 | inode->i_op = &btrfs_special_inode_operations; |
Josef Bacik | a1b075d | 2010-11-19 20:36:11 +0000 | [diff] [blame] | 5838 | err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index); |
Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 5839 | if (err) |
| 5840 | drop_inode = 1; |
| 5841 | else { |
Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 5842 | init_special_inode(inode, inode->i_mode, rdev); |
Yan | 1b4ab1b | 2007-08-29 09:11:44 -0400 | [diff] [blame] | 5843 | btrfs_update_inode(trans, root, inode); |
Al Viro | 08c422c | 2011-12-23 07:58:13 -0500 | [diff] [blame] | 5844 | d_instantiate(dentry, inode); |
Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 5845 | } |
Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 5846 | out_unlock: |
Josef Bacik | 7ad85bb | 2012-01-12 19:10:12 -0500 | [diff] [blame] | 5847 | btrfs_end_transaction(trans, root); |
Josef Bacik | c581afc | 2014-02-06 16:06:06 -0500 | [diff] [blame] | 5848 | btrfs_balance_delayed_items(root); |
Liu Bo | b53d3f5 | 2012-11-14 14:34:34 +0000 | [diff] [blame] | 5849 | btrfs_btree_balance_dirty(root); |
Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 5850 | if (drop_inode) { |
| 5851 | inode_dec_link_count(inode); |
| 5852 | iput(inode); |
| 5853 | } |
Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 5854 | return err; |
| 5855 | } |
| 5856 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5857 | static int btrfs_create(struct inode *dir, struct dentry *dentry, |
Al Viro | ebfc3b4 | 2012-06-10 18:05:36 -0400 | [diff] [blame] | 5858 | umode_t mode, bool excl) |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5859 | { |
| 5860 | struct btrfs_trans_handle *trans; |
| 5861 | struct btrfs_root *root = BTRFS_I(dir)->root; |
Chris Mason | 1832a6d | 2007-12-21 16:27:21 -0500 | [diff] [blame] | 5862 | struct inode *inode = NULL; |
Filipe Brandenburger | 43baa57 | 2012-11-30 03:40:09 +0000 | [diff] [blame] | 5863 | int drop_inode_on_err = 0; |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 5864 | int err; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5865 | u64 objectid; |
Chris Mason | 00e4e6b | 2008-08-05 11:18:09 -0400 | [diff] [blame] | 5866 | u64 index = 0; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5867 | |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 5868 | /* |
| 5869 | * 2 for inode item and ref |
| 5870 | * 2 for dir items |
| 5871 | * 1 for xattr if selinux is on |
| 5872 | */ |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 5873 | trans = btrfs_start_transaction(root, 5); |
| 5874 | if (IS_ERR(trans)) |
| 5875 | return PTR_ERR(trans); |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 5876 | |
Li Zefan | 581bb05 | 2011-04-20 10:06:11 +0800 | [diff] [blame] | 5877 | err = btrfs_find_free_ino(root, &objectid); |
| 5878 | if (err) |
| 5879 | goto out_unlock; |
| 5880 | |
Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 5881 | inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name, |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 5882 | dentry->d_name.len, btrfs_ino(dir), objectid, |
Josef Bacik | d82a6f1 | 2011-05-11 15:26:06 -0400 | [diff] [blame] | 5883 | mode, &index); |
Tsutomu Itoh | 7cf96da | 2011-04-25 19:43:53 -0400 | [diff] [blame] | 5884 | if (IS_ERR(inode)) { |
| 5885 | err = PTR_ERR(inode); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5886 | goto out_unlock; |
Tsutomu Itoh | 7cf96da | 2011-04-25 19:43:53 -0400 | [diff] [blame] | 5887 | } |
Filipe Brandenburger | 43baa57 | 2012-11-30 03:40:09 +0000 | [diff] [blame] | 5888 | drop_inode_on_err = 1; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5889 | |
Eric Paris | 2a7dba3 | 2011-02-01 11:05:39 -0500 | [diff] [blame] | 5890 | err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name); |
Filipe Brandenburger | 43baa57 | 2012-11-30 03:40:09 +0000 | [diff] [blame] | 5891 | if (err) |
Josef Bacik | 33268ea | 2008-07-24 12:16:36 -0400 | [diff] [blame] | 5892 | goto out_unlock; |
Josef Bacik | 33268ea | 2008-07-24 12:16:36 -0400 | [diff] [blame] | 5893 | |
Filipe Brandenburger | 9185aa5 | 2012-11-30 03:40:08 +0000 | [diff] [blame] | 5894 | err = btrfs_update_inode(trans, root, inode); |
| 5895 | if (err) |
| 5896 | goto out_unlock; |
| 5897 | |
Casey Schaufler | ad19db7 | 2011-12-15 10:09:07 -0500 | [diff] [blame] | 5898 | /* |
| 5899 | * If the active LSM wants to access the inode during |
| 5900 | * d_instantiate it needs these. Smack checks to see |
| 5901 | * if the filesystem supports xattrs by looking at the |
| 5902 | * ops vector. |
| 5903 | */ |
| 5904 | inode->i_fop = &btrfs_file_operations; |
| 5905 | inode->i_op = &btrfs_file_inode_operations; |
| 5906 | |
Josef Bacik | a1b075d | 2010-11-19 20:36:11 +0000 | [diff] [blame] | 5907 | err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5908 | if (err) |
Filipe Brandenburger | 43baa57 | 2012-11-30 03:40:09 +0000 | [diff] [blame] | 5909 | goto out_unlock; |
| 5910 | |
| 5911 | inode->i_mapping->a_ops = &btrfs_aops; |
| 5912 | inode->i_mapping->backing_dev_info = &root->fs_info->bdi; |
| 5913 | BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops; |
| 5914 | d_instantiate(dentry, inode); |
| 5915 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5916 | out_unlock: |
Josef Bacik | 7ad85bb | 2012-01-12 19:10:12 -0500 | [diff] [blame] | 5917 | btrfs_end_transaction(trans, root); |
Filipe Brandenburger | 43baa57 | 2012-11-30 03:40:09 +0000 | [diff] [blame] | 5918 | if (err && drop_inode_on_err) { |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5919 | inode_dec_link_count(inode); |
| 5920 | iput(inode); |
| 5921 | } |
Josef Bacik | c581afc | 2014-02-06 16:06:06 -0500 | [diff] [blame] | 5922 | btrfs_balance_delayed_items(root); |
Liu Bo | b53d3f5 | 2012-11-14 14:34:34 +0000 | [diff] [blame] | 5923 | btrfs_btree_balance_dirty(root); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5924 | return err; |
| 5925 | } |
| 5926 | |
| 5927 | static int btrfs_link(struct dentry *old_dentry, struct inode *dir, |
| 5928 | struct dentry *dentry) |
| 5929 | { |
| 5930 | struct btrfs_trans_handle *trans; |
| 5931 | struct btrfs_root *root = BTRFS_I(dir)->root; |
| 5932 | struct inode *inode = old_dentry->d_inode; |
Chris Mason | 00e4e6b | 2008-08-05 11:18:09 -0400 | [diff] [blame] | 5933 | u64 index; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5934 | int err; |
| 5935 | int drop_inode = 0; |
| 5936 | |
TARUISI Hiroaki | 4a8be42 | 2009-11-12 07:14:26 +0000 | [diff] [blame] | 5937 | /* do not allow sys_link's with other subvols of the same device */ |
| 5938 | if (root->objectid != BTRFS_I(inode)->root->objectid) |
Mark Fasheh | 3ab3564 | 2011-03-22 17:20:26 +0000 | [diff] [blame] | 5939 | return -EXDEV; |
TARUISI Hiroaki | 4a8be42 | 2009-11-12 07:14:26 +0000 | [diff] [blame] | 5940 | |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 5941 | if (inode->i_nlink >= BTRFS_LINK_MAX) |
Al Viro | c055e99 | 2011-03-04 17:15:18 +0000 | [diff] [blame] | 5942 | return -EMLINK; |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 5943 | |
Chris Mason | 3de4586 | 2008-11-17 21:02:50 -0500 | [diff] [blame] | 5944 | err = btrfs_set_inode_index(dir, &index); |
Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 5945 | if (err) |
| 5946 | goto fail; |
| 5947 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 5948 | /* |
Miao Xie | 7e6b646 | 2011-02-18 09:21:17 +0000 | [diff] [blame] | 5949 | * 2 items for inode and inode ref |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 5950 | * 2 items for dir items |
Miao Xie | 7e6b646 | 2011-02-18 09:21:17 +0000 | [diff] [blame] | 5951 | * 1 item for parent inode |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 5952 | */ |
Miao Xie | 7e6b646 | 2011-02-18 09:21:17 +0000 | [diff] [blame] | 5953 | trans = btrfs_start_transaction(root, 5); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 5954 | if (IS_ERR(trans)) { |
| 5955 | err = PTR_ERR(trans); |
| 5956 | goto fail; |
| 5957 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5958 | |
Miao Xie | 67de117 | 2013-12-26 13:07:06 +0800 | [diff] [blame] | 5959 | /* There are several dir indexes for this inode, clear the cache. */ |
| 5960 | BTRFS_I(inode)->dir_index = 0ULL; |
Zach Brown | 8b558c5 | 2013-10-16 12:10:34 -0700 | [diff] [blame] | 5961 | inc_nlink(inode); |
Josef Bacik | 0c4d2d9 | 2012-04-05 15:03:02 -0400 | [diff] [blame] | 5962 | inode_inc_iversion(inode); |
Miao Xie | 3153495 | 2011-04-13 13:19:21 +0800 | [diff] [blame] | 5963 | inode->i_ctime = CURRENT_TIME; |
Al Viro | 7de9c6ee | 2010-10-23 11:11:40 -0400 | [diff] [blame] | 5964 | ihold(inode); |
Josef Bacik | e997615 | 2012-10-11 15:53:56 -0400 | [diff] [blame] | 5965 | set_bit(BTRFS_INODE_COPY_EVERYTHING, &BTRFS_I(inode)->runtime_flags); |
Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 5966 | |
Josef Bacik | a1b075d | 2010-11-19 20:36:11 +0000 | [diff] [blame] | 5967 | err = btrfs_add_nondir(trans, dir, dentry, inode, 1, index); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 5968 | |
Yan, Zheng | a571952 | 2009-09-24 09:17:31 -0400 | [diff] [blame] | 5969 | if (err) { |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5970 | drop_inode = 1; |
Yan, Zheng | a571952 | 2009-09-24 09:17:31 -0400 | [diff] [blame] | 5971 | } else { |
Al Viro | 10d9f30 | 2011-07-16 23:09:10 -0400 | [diff] [blame] | 5972 | struct dentry *parent = dentry->d_parent; |
Yan, Zheng | a571952 | 2009-09-24 09:17:31 -0400 | [diff] [blame] | 5973 | err = btrfs_update_inode(trans, root, inode); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5974 | if (err) |
| 5975 | goto fail; |
Filipe Manana | ef3b9af | 2014-04-27 20:40:45 +0100 | [diff] [blame] | 5976 | if (inode->i_nlink == 1) { |
| 5977 | /* |
| 5978 | * If new hard link count is 1, it's a file created |
| 5979 | * with open(2) O_TMPFILE flag. |
| 5980 | */ |
| 5981 | err = btrfs_orphan_del(trans, inode); |
| 5982 | if (err) |
| 5983 | goto fail; |
| 5984 | } |
Al Viro | 08c422c | 2011-12-23 07:58:13 -0500 | [diff] [blame] | 5985 | d_instantiate(dentry, inode); |
Josef Bacik | 6a91221 | 2010-11-20 09:48:00 +0000 | [diff] [blame] | 5986 | btrfs_log_new_name(trans, inode, NULL, parent); |
Yan, Zheng | a571952 | 2009-09-24 09:17:31 -0400 | [diff] [blame] | 5987 | } |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5988 | |
Josef Bacik | 7ad85bb | 2012-01-12 19:10:12 -0500 | [diff] [blame] | 5989 | btrfs_end_transaction(trans, root); |
Josef Bacik | c581afc | 2014-02-06 16:06:06 -0500 | [diff] [blame] | 5990 | btrfs_balance_delayed_items(root); |
Chris Mason | 1832a6d | 2007-12-21 16:27:21 -0500 | [diff] [blame] | 5991 | fail: |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5992 | if (drop_inode) { |
| 5993 | inode_dec_link_count(inode); |
| 5994 | iput(inode); |
| 5995 | } |
Liu Bo | b53d3f5 | 2012-11-14 14:34:34 +0000 | [diff] [blame] | 5996 | btrfs_btree_balance_dirty(root); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 5997 | return err; |
| 5998 | } |
| 5999 | |
Al Viro | 18bb1db | 2011-07-26 01:41:39 -0400 | [diff] [blame] | 6000 | 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] | 6001 | { |
Chris Mason | b9d8666 | 2008-05-02 16:13:49 -0400 | [diff] [blame] | 6002 | struct inode *inode = NULL; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6003 | struct btrfs_trans_handle *trans; |
| 6004 | struct btrfs_root *root = BTRFS_I(dir)->root; |
| 6005 | int err = 0; |
| 6006 | int drop_on_err = 0; |
Chris Mason | b9d8666 | 2008-05-02 16:13:49 -0400 | [diff] [blame] | 6007 | u64 objectid = 0; |
Chris Mason | 00e4e6b | 2008-08-05 11:18:09 -0400 | [diff] [blame] | 6008 | u64 index = 0; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6009 | |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 6010 | /* |
| 6011 | * 2 items for inode and ref |
| 6012 | * 2 items for dir items |
| 6013 | * 1 for xattr if selinux is on |
| 6014 | */ |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 6015 | trans = btrfs_start_transaction(root, 5); |
| 6016 | if (IS_ERR(trans)) |
| 6017 | return PTR_ERR(trans); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6018 | |
Li Zefan | 581bb05 | 2011-04-20 10:06:11 +0800 | [diff] [blame] | 6019 | err = btrfs_find_free_ino(root, &objectid); |
| 6020 | if (err) |
| 6021 | goto out_fail; |
| 6022 | |
Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 6023 | inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name, |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 6024 | dentry->d_name.len, btrfs_ino(dir), objectid, |
Josef Bacik | d82a6f1 | 2011-05-11 15:26:06 -0400 | [diff] [blame] | 6025 | S_IFDIR | mode, &index); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6026 | if (IS_ERR(inode)) { |
| 6027 | err = PTR_ERR(inode); |
| 6028 | goto out_fail; |
| 6029 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 6030 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6031 | drop_on_err = 1; |
Josef Bacik | 33268ea | 2008-07-24 12:16:36 -0400 | [diff] [blame] | 6032 | |
Eric Paris | 2a7dba3 | 2011-02-01 11:05:39 -0500 | [diff] [blame] | 6033 | err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name); |
Josef Bacik | 33268ea | 2008-07-24 12:16:36 -0400 | [diff] [blame] | 6034 | if (err) |
| 6035 | goto out_fail; |
| 6036 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6037 | inode->i_op = &btrfs_dir_inode_operations; |
| 6038 | inode->i_fop = &btrfs_dir_file_operations; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6039 | |
Chris Mason | dbe674a | 2008-07-17 12:54:05 -0400 | [diff] [blame] | 6040 | btrfs_i_size_write(inode, 0); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6041 | err = btrfs_update_inode(trans, root, inode); |
| 6042 | if (err) |
| 6043 | goto out_fail; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 6044 | |
Josef Bacik | a1b075d | 2010-11-19 20:36:11 +0000 | [diff] [blame] | 6045 | err = btrfs_add_link(trans, dir, inode, dentry->d_name.name, |
| 6046 | dentry->d_name.len, 0, index); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6047 | if (err) |
| 6048 | goto out_fail; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 6049 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6050 | d_instantiate(dentry, inode); |
| 6051 | drop_on_err = 0; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6052 | |
| 6053 | out_fail: |
Josef Bacik | 7ad85bb | 2012-01-12 19:10:12 -0500 | [diff] [blame] | 6054 | btrfs_end_transaction(trans, root); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6055 | if (drop_on_err) |
| 6056 | iput(inode); |
Josef Bacik | c581afc | 2014-02-06 16:06:06 -0500 | [diff] [blame] | 6057 | btrfs_balance_delayed_items(root); |
Liu Bo | b53d3f5 | 2012-11-14 14:34:34 +0000 | [diff] [blame] | 6058 | btrfs_btree_balance_dirty(root); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 6059 | return err; |
| 6060 | } |
| 6061 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 6062 | /* helper for btfs_get_extent. Given an existing extent in the tree, |
| 6063 | * and an extent that you want to insert, deal with overlap and insert |
| 6064 | * the new extent into the tree. |
| 6065 | */ |
Chris Mason | 3b95151 | 2008-04-17 11:29:12 -0400 | [diff] [blame] | 6066 | static int merge_extent_mapping(struct extent_map_tree *em_tree, |
| 6067 | struct extent_map *existing, |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6068 | struct extent_map *em, |
| 6069 | u64 map_start, u64 map_len) |
Chris Mason | 3b95151 | 2008-04-17 11:29:12 -0400 | [diff] [blame] | 6070 | { |
| 6071 | u64 start_diff; |
Chris Mason | 3b95151 | 2008-04-17 11:29:12 -0400 | [diff] [blame] | 6072 | |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6073 | BUG_ON(map_start < em->start || map_start >= extent_map_end(em)); |
| 6074 | start_diff = map_start - em->start; |
| 6075 | em->start = map_start; |
| 6076 | em->len = map_len; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 6077 | if (em->block_start < EXTENT_MAP_LAST_BYTE && |
| 6078 | !test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) { |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6079 | em->block_start += start_diff; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 6080 | em->block_len -= start_diff; |
| 6081 | } |
Josef Bacik | 09a2a8f9 | 2013-04-05 16:51:15 -0400 | [diff] [blame] | 6082 | return add_extent_mapping(em_tree, em, 0); |
Chris Mason | 3b95151 | 2008-04-17 11:29:12 -0400 | [diff] [blame] | 6083 | } |
| 6084 | |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 6085 | static noinline int uncompress_inline(struct btrfs_path *path, |
| 6086 | struct inode *inode, struct page *page, |
| 6087 | size_t pg_offset, u64 extent_offset, |
| 6088 | struct btrfs_file_extent_item *item) |
| 6089 | { |
| 6090 | int ret; |
| 6091 | struct extent_buffer *leaf = path->nodes[0]; |
| 6092 | char *tmp; |
| 6093 | size_t max_size; |
| 6094 | unsigned long inline_size; |
| 6095 | unsigned long ptr; |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 6096 | int compress_type; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 6097 | |
| 6098 | WARN_ON(pg_offset != 0); |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 6099 | compress_type = btrfs_file_extent_compression(leaf, item); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 6100 | max_size = btrfs_file_extent_ram_bytes(leaf, item); |
| 6101 | inline_size = btrfs_file_extent_inline_item_len(leaf, |
Ross Kirk | dd3cc16 | 2013-09-16 15:58:09 +0100 | [diff] [blame] | 6102 | btrfs_item_nr(path->slots[0])); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 6103 | tmp = kmalloc(inline_size, GFP_NOFS); |
Tsutomu Itoh | 8d41371 | 2011-04-25 19:43:52 -0400 | [diff] [blame] | 6104 | if (!tmp) |
| 6105 | return -ENOMEM; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 6106 | ptr = btrfs_file_extent_inline_start(item); |
| 6107 | |
| 6108 | read_extent_buffer(leaf, tmp, ptr, inline_size); |
| 6109 | |
Chris Mason | 5b050f0 | 2008-11-11 09:34:41 -0500 | [diff] [blame] | 6110 | max_size = min_t(unsigned long, PAGE_CACHE_SIZE, max_size); |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 6111 | ret = btrfs_decompress(compress_type, tmp, page, |
| 6112 | extent_offset, inline_size, max_size); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 6113 | kfree(tmp); |
Zach Brown | 166ae5a | 2014-05-09 17:15:10 -0400 | [diff] [blame] | 6114 | return ret; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 6115 | } |
| 6116 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 6117 | /* |
| 6118 | * 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] | 6119 | * the ugly parts come from merging extents from the disk with the in-ram |
| 6120 | * representation. This gets more complex because of the data=ordered code, |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 6121 | * where the in-ram extents might be locked pending data=ordered completion. |
| 6122 | * |
| 6123 | * This also copies inline extents directly into the page. |
| 6124 | */ |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 6125 | |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6126 | struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page, |
Chris Mason | 70dec80 | 2008-01-29 09:59:12 -0500 | [diff] [blame] | 6127 | size_t pg_offset, u64 start, u64 len, |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6128 | int create) |
| 6129 | { |
| 6130 | int ret; |
| 6131 | int err = 0; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6132 | u64 bytenr; |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6133 | u64 extent_start = 0; |
| 6134 | u64 extent_end = 0; |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 6135 | u64 objectid = btrfs_ino(inode); |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6136 | u32 found_type; |
Chris Mason | f421950 | 2008-07-22 11:18:09 -0400 | [diff] [blame] | 6137 | struct btrfs_path *path = NULL; |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6138 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 6139 | struct btrfs_file_extent_item *item; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 6140 | struct extent_buffer *leaf; |
| 6141 | struct btrfs_key found_key; |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6142 | struct extent_map *em = NULL; |
| 6143 | struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree; |
Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 6144 | struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree; |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6145 | struct btrfs_trans_handle *trans = NULL; |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 6146 | int compress_type; |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6147 | |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6148 | again: |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 6149 | read_lock(&em_tree->lock); |
Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 6150 | em = lookup_extent_mapping(em_tree, start, len); |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 6151 | if (em) |
| 6152 | em->bdev = root->fs_info->fs_devices->latest_bdev; |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 6153 | read_unlock(&em_tree->lock); |
Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 6154 | |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6155 | if (em) { |
Chris Mason | e1c4b74 | 2008-04-22 13:26:46 -0400 | [diff] [blame] | 6156 | if (em->start > start || em->start + em->len <= start) |
| 6157 | free_extent_map(em); |
| 6158 | else if (em->block_start == EXTENT_MAP_INLINE && page) |
Chris Mason | 70dec80 | 2008-01-29 09:59:12 -0500 | [diff] [blame] | 6159 | free_extent_map(em); |
| 6160 | else |
| 6161 | goto out; |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6162 | } |
David Sterba | 172ddd6 | 2011-04-21 00:48:27 +0200 | [diff] [blame] | 6163 | em = alloc_extent_map(); |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6164 | if (!em) { |
Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 6165 | err = -ENOMEM; |
| 6166 | goto out; |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6167 | } |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6168 | em->bdev = root->fs_info->fs_devices->latest_bdev; |
Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 6169 | em->start = EXTENT_MAP_HOLE; |
Chris Mason | 445a694 | 2008-11-10 11:53:33 -0500 | [diff] [blame] | 6170 | em->orig_start = EXTENT_MAP_HOLE; |
Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 6171 | em->len = (u64)-1; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 6172 | em->block_len = (u64)-1; |
Chris Mason | f421950 | 2008-07-22 11:18:09 -0400 | [diff] [blame] | 6173 | |
| 6174 | if (!path) { |
| 6175 | path = btrfs_alloc_path(); |
Josef Bacik | 026fd31 | 2011-05-13 10:32:11 -0400 | [diff] [blame] | 6176 | if (!path) { |
| 6177 | err = -ENOMEM; |
| 6178 | goto out; |
| 6179 | } |
| 6180 | /* |
| 6181 | * Chances are we'll be called again, so go ahead and do |
| 6182 | * readahead |
| 6183 | */ |
| 6184 | path->reada = 1; |
Chris Mason | f421950 | 2008-07-22 11:18:09 -0400 | [diff] [blame] | 6185 | } |
| 6186 | |
Chris Mason | 179e29e | 2007-11-01 11:28:41 -0400 | [diff] [blame] | 6187 | ret = btrfs_lookup_file_extent(trans, root, path, |
| 6188 | objectid, start, trans != NULL); |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6189 | if (ret < 0) { |
| 6190 | err = ret; |
| 6191 | goto out; |
| 6192 | } |
| 6193 | |
| 6194 | if (ret != 0) { |
| 6195 | if (path->slots[0] == 0) |
| 6196 | goto not_found; |
| 6197 | path->slots[0]--; |
| 6198 | } |
| 6199 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 6200 | leaf = path->nodes[0]; |
| 6201 | item = btrfs_item_ptr(leaf, path->slots[0], |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6202 | struct btrfs_file_extent_item); |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6203 | /* are we inside the extent that was found? */ |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 6204 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
| 6205 | found_type = btrfs_key_type(&found_key); |
| 6206 | if (found_key.objectid != objectid || |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6207 | found_type != BTRFS_EXTENT_DATA_KEY) { |
Josef Bacik | 25a5034 | 2013-10-14 12:08:38 -0400 | [diff] [blame] | 6208 | /* |
| 6209 | * If we backup past the first extent we want to move forward |
| 6210 | * and see if there is an extent in front of us, otherwise we'll |
| 6211 | * say there is a hole for our whole search range which can |
| 6212 | * cause problems. |
| 6213 | */ |
| 6214 | extent_end = start; |
| 6215 | goto next; |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6216 | } |
| 6217 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 6218 | found_type = btrfs_file_extent_type(leaf, item); |
| 6219 | extent_start = found_key.offset; |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 6220 | compress_type = btrfs_file_extent_compression(leaf, item); |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 6221 | if (found_type == BTRFS_FILE_EXTENT_REG || |
| 6222 | found_type == BTRFS_FILE_EXTENT_PREALLOC) { |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6223 | extent_end = extent_start + |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6224 | btrfs_file_extent_num_bytes(leaf, item); |
Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 6225 | } else if (found_type == BTRFS_FILE_EXTENT_INLINE) { |
| 6226 | size_t size; |
Chris Mason | 514ac8a | 2014-01-03 21:07:00 -0800 | [diff] [blame] | 6227 | size = btrfs_file_extent_inline_len(leaf, path->slots[0], item); |
Qu Wenruo | fda2832 | 2013-02-26 08:10:22 +0000 | [diff] [blame] | 6228 | extent_end = ALIGN(extent_start + size, root->sectorsize); |
Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 6229 | } |
Josef Bacik | 25a5034 | 2013-10-14 12:08:38 -0400 | [diff] [blame] | 6230 | next: |
Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 6231 | if (start >= extent_end) { |
| 6232 | path->slots[0]++; |
| 6233 | if (path->slots[0] >= btrfs_header_nritems(leaf)) { |
| 6234 | ret = btrfs_next_leaf(root, path); |
| 6235 | if (ret < 0) { |
| 6236 | err = ret; |
| 6237 | goto out; |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6238 | } |
Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 6239 | if (ret > 0) |
| 6240 | goto not_found; |
| 6241 | leaf = path->nodes[0]; |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6242 | } |
Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 6243 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
| 6244 | if (found_key.objectid != objectid || |
| 6245 | found_key.type != BTRFS_EXTENT_DATA_KEY) |
| 6246 | goto not_found; |
| 6247 | if (start + len <= found_key.offset) |
| 6248 | goto not_found; |
| 6249 | em->start = start; |
Josef Bacik | 70c8a91 | 2012-10-11 16:54:30 -0400 | [diff] [blame] | 6250 | em->orig_start = start; |
Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 6251 | em->len = found_key.offset - start; |
| 6252 | goto not_found_em; |
| 6253 | } |
| 6254 | |
Josef Bacik | cc95bef | 2013-04-04 14:31:27 -0400 | [diff] [blame] | 6255 | em->ram_bytes = btrfs_file_extent_ram_bytes(leaf, item); |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 6256 | if (found_type == BTRFS_FILE_EXTENT_REG || |
| 6257 | found_type == BTRFS_FILE_EXTENT_PREALLOC) { |
Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 6258 | em->start = extent_start; |
| 6259 | em->len = extent_end - extent_start; |
Yan Zheng | ff5b7ee | 2008-11-10 07:34:43 -0500 | [diff] [blame] | 6260 | em->orig_start = extent_start - |
| 6261 | btrfs_file_extent_offset(leaf, item); |
Josef Bacik | b493968 | 2012-12-03 10:31:19 -0500 | [diff] [blame] | 6262 | em->orig_block_len = btrfs_file_extent_disk_num_bytes(leaf, |
| 6263 | item); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6264 | bytenr = btrfs_file_extent_disk_bytenr(leaf, item); |
| 6265 | if (bytenr == 0) { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 6266 | em->block_start = EXTENT_MAP_HOLE; |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6267 | goto insert; |
| 6268 | } |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 6269 | if (compress_type != BTRFS_COMPRESS_NONE) { |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 6270 | set_bit(EXTENT_FLAG_COMPRESSED, &em->flags); |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 6271 | em->compress_type = compress_type; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 6272 | em->block_start = bytenr; |
Josef Bacik | b493968 | 2012-12-03 10:31:19 -0500 | [diff] [blame] | 6273 | em->block_len = em->orig_block_len; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 6274 | } else { |
| 6275 | bytenr += btrfs_file_extent_offset(leaf, item); |
| 6276 | em->block_start = bytenr; |
| 6277 | em->block_len = em->len; |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 6278 | if (found_type == BTRFS_FILE_EXTENT_PREALLOC) |
| 6279 | set_bit(EXTENT_FLAG_PREALLOC, &em->flags); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 6280 | } |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6281 | goto insert; |
| 6282 | } else if (found_type == BTRFS_FILE_EXTENT_INLINE) { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 6283 | unsigned long ptr; |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6284 | char *map; |
Chris Mason | 3326d1b | 2007-10-15 16:18:25 -0400 | [diff] [blame] | 6285 | size_t size; |
| 6286 | size_t extent_offset; |
| 6287 | size_t copy_size; |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6288 | |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6289 | em->block_start = EXTENT_MAP_INLINE; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 6290 | if (!page || create) { |
Yan | 689f934 | 2007-10-29 11:41:07 -0400 | [diff] [blame] | 6291 | em->start = extent_start; |
Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 6292 | em->len = extent_end - extent_start; |
Yan | 689f934 | 2007-10-29 11:41:07 -0400 | [diff] [blame] | 6293 | goto out; |
| 6294 | } |
| 6295 | |
Chris Mason | 514ac8a | 2014-01-03 21:07:00 -0800 | [diff] [blame] | 6296 | size = btrfs_file_extent_inline_len(leaf, path->slots[0], item); |
Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 6297 | extent_offset = page_offset(page) + pg_offset - extent_start; |
Chris Mason | 70dec80 | 2008-01-29 09:59:12 -0500 | [diff] [blame] | 6298 | copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset, |
Yan | 689f934 | 2007-10-29 11:41:07 -0400 | [diff] [blame] | 6299 | size - extent_offset); |
Chris Mason | 3326d1b | 2007-10-15 16:18:25 -0400 | [diff] [blame] | 6300 | em->start = extent_start + extent_offset; |
Qu Wenruo | fda2832 | 2013-02-26 08:10:22 +0000 | [diff] [blame] | 6301 | em->len = ALIGN(copy_size, root->sectorsize); |
Josef Bacik | b493968 | 2012-12-03 10:31:19 -0500 | [diff] [blame] | 6302 | em->orig_block_len = em->len; |
Josef Bacik | 70c8a91 | 2012-10-11 16:54:30 -0400 | [diff] [blame] | 6303 | em->orig_start = em->start; |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 6304 | if (compress_type) { |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 6305 | set_bit(EXTENT_FLAG_COMPRESSED, &em->flags); |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 6306 | em->compress_type = compress_type; |
| 6307 | } |
Yan | 689f934 | 2007-10-29 11:41:07 -0400 | [diff] [blame] | 6308 | ptr = btrfs_file_extent_inline_start(item) + extent_offset; |
Chris Mason | 179e29e | 2007-11-01 11:28:41 -0400 | [diff] [blame] | 6309 | if (create == 0 && !PageUptodate(page)) { |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 6310 | if (btrfs_file_extent_compression(leaf, item) != |
| 6311 | BTRFS_COMPRESS_NONE) { |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 6312 | ret = uncompress_inline(path, inode, page, |
| 6313 | pg_offset, |
| 6314 | extent_offset, item); |
Zach Brown | 166ae5a | 2014-05-09 17:15:10 -0400 | [diff] [blame] | 6315 | if (ret) { |
| 6316 | err = ret; |
| 6317 | goto out; |
| 6318 | } |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 6319 | } else { |
| 6320 | map = kmap(page); |
| 6321 | read_extent_buffer(leaf, map + pg_offset, ptr, |
| 6322 | copy_size); |
Chris Mason | 93c82d5 | 2009-09-11 12:36:29 -0400 | [diff] [blame] | 6323 | if (pg_offset + copy_size < PAGE_CACHE_SIZE) { |
| 6324 | memset(map + pg_offset + copy_size, 0, |
| 6325 | PAGE_CACHE_SIZE - pg_offset - |
| 6326 | copy_size); |
| 6327 | } |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 6328 | kunmap(page); |
| 6329 | } |
Chris Mason | 179e29e | 2007-11-01 11:28:41 -0400 | [diff] [blame] | 6330 | flush_dcache_page(page); |
| 6331 | } else if (create && PageUptodate(page)) { |
Jan Schmidt | 6bf7e08 | 2011-12-01 14:35:19 +0100 | [diff] [blame] | 6332 | BUG(); |
Chris Mason | 179e29e | 2007-11-01 11:28:41 -0400 | [diff] [blame] | 6333 | if (!trans) { |
| 6334 | kunmap(page); |
| 6335 | free_extent_map(em); |
| 6336 | em = NULL; |
Chris Mason | ff5714c | 2011-05-28 07:00:39 -0400 | [diff] [blame] | 6337 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 6338 | btrfs_release_path(path); |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 6339 | trans = btrfs_join_transaction(root); |
Chris Mason | ff5714c | 2011-05-28 07:00:39 -0400 | [diff] [blame] | 6340 | |
Tsutomu Itoh | 3612b49 | 2011-01-25 02:51:38 +0000 | [diff] [blame] | 6341 | if (IS_ERR(trans)) |
| 6342 | return ERR_CAST(trans); |
Chris Mason | 179e29e | 2007-11-01 11:28:41 -0400 | [diff] [blame] | 6343 | goto again; |
| 6344 | } |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 6345 | map = kmap(page); |
Chris Mason | 70dec80 | 2008-01-29 09:59:12 -0500 | [diff] [blame] | 6346 | write_extent_buffer(leaf, map + pg_offset, ptr, |
Chris Mason | 179e29e | 2007-11-01 11:28:41 -0400 | [diff] [blame] | 6347 | copy_size); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 6348 | kunmap(page); |
Chris Mason | 179e29e | 2007-11-01 11:28:41 -0400 | [diff] [blame] | 6349 | btrfs_mark_buffer_dirty(leaf); |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6350 | } |
Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 6351 | set_extent_uptodate(io_tree, em->start, |
Arne Jansen | 507903b | 2011-04-06 10:02:20 +0000 | [diff] [blame] | 6352 | extent_map_end(em) - 1, NULL, GFP_NOFS); |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6353 | goto insert; |
| 6354 | } else { |
Julia Lawall | 31b1a2b | 2012-11-03 10:58:34 +0000 | [diff] [blame] | 6355 | WARN(1, KERN_ERR "btrfs unknown found_type %d\n", found_type); |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6356 | } |
| 6357 | not_found: |
| 6358 | em->start = start; |
Josef Bacik | 70c8a91 | 2012-10-11 16:54:30 -0400 | [diff] [blame] | 6359 | em->orig_start = start; |
Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 6360 | em->len = len; |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6361 | not_found_em: |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 6362 | em->block_start = EXTENT_MAP_HOLE; |
Yan Zheng | 9036c10 | 2008-10-30 14:19:41 -0400 | [diff] [blame] | 6363 | set_bit(EXTENT_FLAG_VACANCY, &em->flags); |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6364 | insert: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 6365 | btrfs_release_path(path); |
Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 6366 | if (em->start > start || extent_map_end(em) <= start) { |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 6367 | btrfs_err(root->fs_info, "bad extent! em: [%llu %llu] passed [%llu %llu]", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 6368 | em->start, em->len, start, len); |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6369 | err = -EIO; |
| 6370 | goto out; |
| 6371 | } |
Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 6372 | |
| 6373 | err = 0; |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 6374 | write_lock(&em_tree->lock); |
Josef Bacik | 09a2a8f9 | 2013-04-05 16:51:15 -0400 | [diff] [blame] | 6375 | ret = add_extent_mapping(em_tree, em, 0); |
Chris Mason | 3b95151 | 2008-04-17 11:29:12 -0400 | [diff] [blame] | 6376 | /* it is possible that someone inserted the extent into the tree |
| 6377 | * while we had the lock dropped. It is also possible that |
| 6378 | * an overlapping map exists in the tree |
| 6379 | */ |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6380 | if (ret == -EEXIST) { |
Chris Mason | 3b95151 | 2008-04-17 11:29:12 -0400 | [diff] [blame] | 6381 | struct extent_map *existing; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6382 | |
| 6383 | ret = 0; |
| 6384 | |
Chris Mason | 3b95151 | 2008-04-17 11:29:12 -0400 | [diff] [blame] | 6385 | existing = lookup_extent_mapping(em_tree, start, len); |
Chris Mason | e1c4b74 | 2008-04-22 13:26:46 -0400 | [diff] [blame] | 6386 | if (existing && (existing->start > start || |
| 6387 | existing->start + existing->len <= start)) { |
| 6388 | free_extent_map(existing); |
| 6389 | existing = NULL; |
| 6390 | } |
Chris Mason | 3b95151 | 2008-04-17 11:29:12 -0400 | [diff] [blame] | 6391 | if (!existing) { |
| 6392 | existing = lookup_extent_mapping(em_tree, em->start, |
| 6393 | em->len); |
| 6394 | if (existing) { |
| 6395 | err = merge_extent_mapping(em_tree, existing, |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6396 | em, start, |
| 6397 | root->sectorsize); |
Chris Mason | 3b95151 | 2008-04-17 11:29:12 -0400 | [diff] [blame] | 6398 | free_extent_map(existing); |
| 6399 | if (err) { |
| 6400 | free_extent_map(em); |
| 6401 | em = NULL; |
| 6402 | } |
| 6403 | } else { |
| 6404 | err = -EIO; |
Chris Mason | 3b95151 | 2008-04-17 11:29:12 -0400 | [diff] [blame] | 6405 | free_extent_map(em); |
| 6406 | em = NULL; |
| 6407 | } |
| 6408 | } else { |
| 6409 | free_extent_map(em); |
| 6410 | em = existing; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 6411 | err = 0; |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6412 | } |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6413 | } |
Chris Mason | 890871b | 2009-09-02 16:24:52 -0400 | [diff] [blame] | 6414 | write_unlock(&em_tree->lock); |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6415 | out: |
liubo | 1abe9b8 | 2011-03-24 11:18:59 +0000 | [diff] [blame] | 6416 | |
Steven Rostedt | 4cd8587c | 2013-11-14 22:57:29 -0500 | [diff] [blame] | 6417 | trace_btrfs_get_extent(root, em); |
liubo | 1abe9b8 | 2011-03-24 11:18:59 +0000 | [diff] [blame] | 6418 | |
Chris Mason | f421950 | 2008-07-22 11:18:09 -0400 | [diff] [blame] | 6419 | if (path) |
| 6420 | btrfs_free_path(path); |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6421 | if (trans) { |
| 6422 | ret = btrfs_end_transaction(trans, root); |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 6423 | if (!err) |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6424 | err = ret; |
| 6425 | } |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6426 | if (err) { |
| 6427 | free_extent_map(em); |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6428 | return ERR_PTR(err); |
| 6429 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6430 | BUG_ON(!em); /* Error is always set */ |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 6431 | return em; |
| 6432 | } |
| 6433 | |
Chris Mason | ec29ed5 | 2011-02-23 16:23:20 -0500 | [diff] [blame] | 6434 | struct extent_map *btrfs_get_extent_fiemap(struct inode *inode, struct page *page, |
| 6435 | size_t pg_offset, u64 start, u64 len, |
| 6436 | int create) |
| 6437 | { |
| 6438 | struct extent_map *em; |
| 6439 | struct extent_map *hole_em = NULL; |
| 6440 | u64 range_start = start; |
| 6441 | u64 end; |
| 6442 | u64 found; |
| 6443 | u64 found_end; |
| 6444 | int err = 0; |
| 6445 | |
| 6446 | em = btrfs_get_extent(inode, page, pg_offset, start, len, create); |
| 6447 | if (IS_ERR(em)) |
| 6448 | return em; |
| 6449 | if (em) { |
| 6450 | /* |
Liu Bo | f9e4fb5 | 2013-01-07 10:10:12 +0000 | [diff] [blame] | 6451 | * if our em maps to |
| 6452 | * - a hole or |
| 6453 | * - a pre-alloc extent, |
| 6454 | * there might actually be delalloc bytes behind it. |
Chris Mason | ec29ed5 | 2011-02-23 16:23:20 -0500 | [diff] [blame] | 6455 | */ |
Liu Bo | f9e4fb5 | 2013-01-07 10:10:12 +0000 | [diff] [blame] | 6456 | if (em->block_start != EXTENT_MAP_HOLE && |
| 6457 | !test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) |
Chris Mason | ec29ed5 | 2011-02-23 16:23:20 -0500 | [diff] [blame] | 6458 | return em; |
| 6459 | else |
| 6460 | hole_em = em; |
| 6461 | } |
| 6462 | |
| 6463 | /* check to see if we've wrapped (len == -1 or similar) */ |
| 6464 | end = start + len; |
| 6465 | if (end < start) |
| 6466 | end = (u64)-1; |
| 6467 | else |
| 6468 | end -= 1; |
| 6469 | |
| 6470 | em = NULL; |
| 6471 | |
| 6472 | /* ok, we didn't find anything, lets look for delalloc */ |
| 6473 | found = count_range_bits(&BTRFS_I(inode)->io_tree, &range_start, |
| 6474 | end, len, EXTENT_DELALLOC, 1); |
| 6475 | found_end = range_start + found; |
| 6476 | if (found_end < range_start) |
| 6477 | found_end = (u64)-1; |
| 6478 | |
| 6479 | /* |
| 6480 | * we didn't find anything useful, return |
| 6481 | * the original results from get_extent() |
| 6482 | */ |
| 6483 | if (range_start > end || found_end <= start) { |
| 6484 | em = hole_em; |
| 6485 | hole_em = NULL; |
| 6486 | goto out; |
| 6487 | } |
| 6488 | |
| 6489 | /* adjust the range_start to make sure it doesn't |
| 6490 | * go backwards from the start they passed in |
| 6491 | */ |
Dulshani Gunawardhana | 6787125 | 2013-10-31 10:33:04 +0530 | [diff] [blame] | 6492 | range_start = max(start, range_start); |
Chris Mason | ec29ed5 | 2011-02-23 16:23:20 -0500 | [diff] [blame] | 6493 | found = found_end - range_start; |
| 6494 | |
| 6495 | if (found > 0) { |
| 6496 | u64 hole_start = start; |
| 6497 | u64 hole_len = len; |
| 6498 | |
David Sterba | 172ddd6 | 2011-04-21 00:48:27 +0200 | [diff] [blame] | 6499 | em = alloc_extent_map(); |
Chris Mason | ec29ed5 | 2011-02-23 16:23:20 -0500 | [diff] [blame] | 6500 | if (!em) { |
| 6501 | err = -ENOMEM; |
| 6502 | goto out; |
| 6503 | } |
| 6504 | /* |
| 6505 | * when btrfs_get_extent can't find anything it |
| 6506 | * returns one huge hole |
| 6507 | * |
| 6508 | * make sure what it found really fits our range, and |
| 6509 | * adjust to make sure it is based on the start from |
| 6510 | * the caller |
| 6511 | */ |
| 6512 | if (hole_em) { |
| 6513 | u64 calc_end = extent_map_end(hole_em); |
| 6514 | |
| 6515 | if (calc_end <= start || (hole_em->start > end)) { |
| 6516 | free_extent_map(hole_em); |
| 6517 | hole_em = NULL; |
| 6518 | } else { |
| 6519 | hole_start = max(hole_em->start, start); |
| 6520 | hole_len = calc_end - hole_start; |
| 6521 | } |
| 6522 | } |
| 6523 | em->bdev = NULL; |
| 6524 | if (hole_em && range_start > hole_start) { |
| 6525 | /* our hole starts before our delalloc, so we |
| 6526 | * have to return just the parts of the hole |
| 6527 | * that go until the delalloc starts |
| 6528 | */ |
| 6529 | em->len = min(hole_len, |
| 6530 | range_start - hole_start); |
| 6531 | em->start = hole_start; |
| 6532 | em->orig_start = hole_start; |
| 6533 | /* |
| 6534 | * don't adjust block start at all, |
| 6535 | * it is fixed at EXTENT_MAP_HOLE |
| 6536 | */ |
| 6537 | em->block_start = hole_em->block_start; |
| 6538 | em->block_len = hole_len; |
Liu Bo | f9e4fb5 | 2013-01-07 10:10:12 +0000 | [diff] [blame] | 6539 | if (test_bit(EXTENT_FLAG_PREALLOC, &hole_em->flags)) |
| 6540 | set_bit(EXTENT_FLAG_PREALLOC, &em->flags); |
Chris Mason | ec29ed5 | 2011-02-23 16:23:20 -0500 | [diff] [blame] | 6541 | } else { |
| 6542 | em->start = range_start; |
| 6543 | em->len = found; |
| 6544 | em->orig_start = range_start; |
| 6545 | em->block_start = EXTENT_MAP_DELALLOC; |
| 6546 | em->block_len = found; |
| 6547 | } |
| 6548 | } else if (hole_em) { |
| 6549 | return hole_em; |
| 6550 | } |
| 6551 | out: |
| 6552 | |
| 6553 | free_extent_map(hole_em); |
| 6554 | if (err) { |
| 6555 | free_extent_map(em); |
| 6556 | return ERR_PTR(err); |
| 6557 | } |
| 6558 | return em; |
| 6559 | } |
| 6560 | |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6561 | static struct extent_map *btrfs_new_extent_direct(struct inode *inode, |
| 6562 | u64 start, u64 len) |
| 6563 | { |
| 6564 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Josef Bacik | 70c8a91 | 2012-10-11 16:54:30 -0400 | [diff] [blame] | 6565 | struct extent_map *em; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6566 | struct btrfs_key ins; |
| 6567 | u64 alloc_hint; |
| 6568 | int ret; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6569 | |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6570 | alloc_hint = get_extent_allocation_hint(inode, start, len); |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 6571 | ret = btrfs_reserve_extent(root, len, root->sectorsize, 0, |
Josef Bacik | 81c9ad2 | 2012-01-18 10:56:06 -0500 | [diff] [blame] | 6572 | alloc_hint, &ins, 1); |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 6573 | if (ret) |
| 6574 | return ERR_PTR(ret); |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6575 | |
Josef Bacik | 70c8a91 | 2012-10-11 16:54:30 -0400 | [diff] [blame] | 6576 | em = create_pinned_em(inode, start, ins.offset, start, ins.objectid, |
Josef Bacik | cc95bef | 2013-04-04 14:31:27 -0400 | [diff] [blame] | 6577 | ins.offset, ins.offset, ins.offset, 0); |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 6578 | if (IS_ERR(em)) { |
| 6579 | btrfs_free_reserved_extent(root, ins.objectid, ins.offset); |
| 6580 | return em; |
| 6581 | } |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6582 | |
| 6583 | ret = btrfs_add_ordered_extent_dio(inode, start, ins.objectid, |
| 6584 | ins.offset, ins.offset, 0); |
| 6585 | if (ret) { |
| 6586 | btrfs_free_reserved_extent(root, ins.objectid, ins.offset); |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 6587 | free_extent_map(em); |
| 6588 | return ERR_PTR(ret); |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6589 | } |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 6590 | |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6591 | return em; |
| 6592 | } |
| 6593 | |
Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 6594 | /* |
| 6595 | * returns 1 when the nocow is safe, < 1 on error, 0 if the |
| 6596 | * block must be cow'd |
| 6597 | */ |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 6598 | noinline int can_nocow_extent(struct inode *inode, u64 offset, u64 *len, |
Josef Bacik | 7ee9e44 | 2013-06-21 16:37:03 -0400 | [diff] [blame] | 6599 | u64 *orig_start, u64 *orig_block_len, |
| 6600 | u64 *ram_bytes) |
Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 6601 | { |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 6602 | struct btrfs_trans_handle *trans; |
Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 6603 | struct btrfs_path *path; |
| 6604 | int ret; |
| 6605 | struct extent_buffer *leaf; |
| 6606 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Miao Xie | 7b2b708 | 2014-02-27 13:58:05 +0800 | [diff] [blame] | 6607 | struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree; |
Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 6608 | struct btrfs_file_extent_item *fi; |
| 6609 | struct btrfs_key key; |
| 6610 | u64 disk_bytenr; |
| 6611 | u64 backref_offset; |
| 6612 | u64 extent_end; |
| 6613 | u64 num_bytes; |
| 6614 | int slot; |
| 6615 | int found_type; |
Josef Bacik | 7ee9e44 | 2013-06-21 16:37:03 -0400 | [diff] [blame] | 6616 | bool nocow = (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW); |
Miao Xie | e77751a | 2013-12-27 21:11:50 +0800 | [diff] [blame] | 6617 | |
Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 6618 | path = btrfs_alloc_path(); |
| 6619 | if (!path) |
| 6620 | return -ENOMEM; |
| 6621 | |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 6622 | ret = btrfs_lookup_file_extent(NULL, root, path, btrfs_ino(inode), |
Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 6623 | offset, 0); |
| 6624 | if (ret < 0) |
| 6625 | goto out; |
| 6626 | |
| 6627 | slot = path->slots[0]; |
| 6628 | if (ret == 1) { |
| 6629 | if (slot == 0) { |
| 6630 | /* can't find the item, must cow */ |
| 6631 | ret = 0; |
| 6632 | goto out; |
| 6633 | } |
| 6634 | slot--; |
| 6635 | } |
| 6636 | ret = 0; |
| 6637 | leaf = path->nodes[0]; |
| 6638 | btrfs_item_key_to_cpu(leaf, &key, slot); |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 6639 | if (key.objectid != btrfs_ino(inode) || |
Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 6640 | key.type != BTRFS_EXTENT_DATA_KEY) { |
| 6641 | /* not our file or wrong item type, must cow */ |
| 6642 | goto out; |
| 6643 | } |
| 6644 | |
| 6645 | if (key.offset > offset) { |
| 6646 | /* Wrong offset, must cow */ |
| 6647 | goto out; |
| 6648 | } |
| 6649 | |
| 6650 | fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item); |
| 6651 | found_type = btrfs_file_extent_type(leaf, fi); |
| 6652 | if (found_type != BTRFS_FILE_EXTENT_REG && |
| 6653 | found_type != BTRFS_FILE_EXTENT_PREALLOC) { |
| 6654 | /* not a regular extent, must cow */ |
| 6655 | goto out; |
| 6656 | } |
Josef Bacik | 7ee9e44 | 2013-06-21 16:37:03 -0400 | [diff] [blame] | 6657 | |
| 6658 | if (!nocow && found_type == BTRFS_FILE_EXTENT_REG) |
| 6659 | goto out; |
| 6660 | |
Miao Xie | e77751a | 2013-12-27 21:11:50 +0800 | [diff] [blame] | 6661 | extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi); |
| 6662 | if (extent_end <= offset) |
| 6663 | goto out; |
| 6664 | |
Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 6665 | disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi); |
Josef Bacik | 7ee9e44 | 2013-06-21 16:37:03 -0400 | [diff] [blame] | 6666 | if (disk_bytenr == 0) |
| 6667 | goto out; |
| 6668 | |
| 6669 | if (btrfs_file_extent_compression(leaf, fi) || |
| 6670 | btrfs_file_extent_encryption(leaf, fi) || |
| 6671 | btrfs_file_extent_other_encoding(leaf, fi)) |
| 6672 | goto out; |
| 6673 | |
Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 6674 | backref_offset = btrfs_file_extent_offset(leaf, fi); |
| 6675 | |
Josef Bacik | 7ee9e44 | 2013-06-21 16:37:03 -0400 | [diff] [blame] | 6676 | if (orig_start) { |
| 6677 | *orig_start = key.offset - backref_offset; |
| 6678 | *orig_block_len = btrfs_file_extent_disk_num_bytes(leaf, fi); |
| 6679 | *ram_bytes = btrfs_file_extent_ram_bytes(leaf, fi); |
| 6680 | } |
Josef Bacik | eb384b5 | 2013-04-24 16:32:55 -0400 | [diff] [blame] | 6681 | |
Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 6682 | if (btrfs_extent_readonly(root, disk_bytenr)) |
| 6683 | goto out; |
Miao Xie | 7b2b708 | 2014-02-27 13:58:05 +0800 | [diff] [blame] | 6684 | |
| 6685 | num_bytes = min(offset + *len, extent_end) - offset; |
| 6686 | if (!nocow && found_type == BTRFS_FILE_EXTENT_PREALLOC) { |
| 6687 | u64 range_end; |
| 6688 | |
| 6689 | range_end = round_up(offset + num_bytes, root->sectorsize) - 1; |
| 6690 | ret = test_range_bit(io_tree, offset, range_end, |
| 6691 | EXTENT_DELALLOC, 0, NULL); |
| 6692 | if (ret) { |
| 6693 | ret = -EAGAIN; |
| 6694 | goto out; |
| 6695 | } |
| 6696 | } |
| 6697 | |
Josef Bacik | 1bda19e | 2013-10-18 12:10:36 -0400 | [diff] [blame] | 6698 | btrfs_release_path(path); |
Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 6699 | |
| 6700 | /* |
| 6701 | * look for other files referencing this extent, if we |
| 6702 | * find any we must cow |
| 6703 | */ |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 6704 | trans = btrfs_join_transaction(root); |
| 6705 | if (IS_ERR(trans)) { |
| 6706 | ret = 0; |
Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 6707 | goto out; |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 6708 | } |
| 6709 | |
| 6710 | ret = btrfs_cross_ref_exist(trans, root, btrfs_ino(inode), |
| 6711 | key.offset - backref_offset, disk_bytenr); |
| 6712 | btrfs_end_transaction(trans, root); |
| 6713 | if (ret) { |
| 6714 | ret = 0; |
| 6715 | goto out; |
| 6716 | } |
Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 6717 | |
| 6718 | /* |
| 6719 | * adjust disk_bytenr and num_bytes to cover just the bytes |
| 6720 | * in this extent we are about to write. If there |
| 6721 | * are any csums in that range we have to cow in order |
| 6722 | * to keep the csums correct |
| 6723 | */ |
| 6724 | disk_bytenr += backref_offset; |
| 6725 | disk_bytenr += offset - key.offset; |
Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 6726 | if (csum_exist_in_range(root, disk_bytenr, num_bytes)) |
| 6727 | goto out; |
| 6728 | /* |
| 6729 | * all of the above have passed, it is safe to overwrite this extent |
| 6730 | * without cow |
| 6731 | */ |
Josef Bacik | eb384b5 | 2013-04-24 16:32:55 -0400 | [diff] [blame] | 6732 | *len = num_bytes; |
Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 6733 | ret = 1; |
| 6734 | out: |
| 6735 | btrfs_free_path(path); |
| 6736 | return ret; |
| 6737 | } |
| 6738 | |
Alex Gartrell | fc4adbf | 2014-05-20 13:07:56 -0700 | [diff] [blame] | 6739 | bool btrfs_page_exists_in_range(struct inode *inode, loff_t start, loff_t end) |
| 6740 | { |
| 6741 | struct radix_tree_root *root = &inode->i_mapping->page_tree; |
| 6742 | int found = false; |
| 6743 | void **pagep = NULL; |
| 6744 | struct page *page = NULL; |
| 6745 | int start_idx; |
| 6746 | int end_idx; |
| 6747 | |
| 6748 | start_idx = start >> PAGE_CACHE_SHIFT; |
| 6749 | |
| 6750 | /* |
| 6751 | * end is the last byte in the last page. end == start is legal |
| 6752 | */ |
| 6753 | end_idx = end >> PAGE_CACHE_SHIFT; |
| 6754 | |
| 6755 | rcu_read_lock(); |
| 6756 | |
| 6757 | /* Most of the code in this while loop is lifted from |
| 6758 | * find_get_page. It's been modified to begin searching from a |
| 6759 | * page and return just the first page found in that range. If the |
| 6760 | * found idx is less than or equal to the end idx then we know that |
| 6761 | * a page exists. If no pages are found or if those pages are |
| 6762 | * outside of the range then we're fine (yay!) */ |
| 6763 | while (page == NULL && |
| 6764 | radix_tree_gang_lookup_slot(root, &pagep, NULL, start_idx, 1)) { |
| 6765 | page = radix_tree_deref_slot(pagep); |
| 6766 | if (unlikely(!page)) |
| 6767 | break; |
| 6768 | |
| 6769 | if (radix_tree_exception(page)) { |
| 6770 | if (radix_tree_deref_retry(page)) |
| 6771 | continue; |
| 6772 | /* |
| 6773 | * Otherwise, shmem/tmpfs must be storing a swap entry |
| 6774 | * here as an exceptional entry: so return it without |
| 6775 | * attempting to raise page count. |
| 6776 | */ |
| 6777 | break; /* TODO: Is this relevant for this use case? */ |
| 6778 | } |
| 6779 | |
| 6780 | if (!page_cache_get_speculative(page)) |
| 6781 | continue; |
| 6782 | |
| 6783 | /* |
| 6784 | * Has the page moved? |
| 6785 | * This is part of the lockless pagecache protocol. See |
| 6786 | * include/linux/pagemap.h for details. |
| 6787 | */ |
| 6788 | if (unlikely(page != *pagep)) { |
| 6789 | page_cache_release(page); |
| 6790 | page = NULL; |
| 6791 | } |
| 6792 | } |
| 6793 | |
| 6794 | if (page) { |
| 6795 | if (page->index <= end_idx) |
| 6796 | found = true; |
| 6797 | page_cache_release(page); |
| 6798 | } |
| 6799 | |
| 6800 | rcu_read_unlock(); |
| 6801 | return found; |
| 6802 | } |
| 6803 | |
Josef Bacik | eb838e7 | 2012-07-31 16:28:48 -0400 | [diff] [blame] | 6804 | static int lock_extent_direct(struct inode *inode, u64 lockstart, u64 lockend, |
| 6805 | struct extent_state **cached_state, int writing) |
| 6806 | { |
| 6807 | struct btrfs_ordered_extent *ordered; |
| 6808 | int ret = 0; |
| 6809 | |
| 6810 | while (1) { |
| 6811 | lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend, |
| 6812 | 0, cached_state); |
| 6813 | /* |
| 6814 | * We're concerned with the entire range that we're going to be |
| 6815 | * doing DIO to, so we need to make sure theres no ordered |
| 6816 | * extents in this range. |
| 6817 | */ |
| 6818 | ordered = btrfs_lookup_ordered_range(inode, lockstart, |
| 6819 | lockend - lockstart + 1); |
| 6820 | |
| 6821 | /* |
| 6822 | * We need to make sure there are no buffered pages in this |
| 6823 | * range either, we could have raced between the invalidate in |
| 6824 | * generic_file_direct_write and locking the extent. The |
| 6825 | * invalidate needs to happen so that reads after a write do not |
| 6826 | * get stale data. |
| 6827 | */ |
Alex Gartrell | fc4adbf | 2014-05-20 13:07:56 -0700 | [diff] [blame] | 6828 | if (!ordered && |
| 6829 | (!writing || |
| 6830 | !btrfs_page_exists_in_range(inode, lockstart, lockend))) |
Josef Bacik | eb838e7 | 2012-07-31 16:28:48 -0400 | [diff] [blame] | 6831 | break; |
| 6832 | |
| 6833 | unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend, |
| 6834 | cached_state, GFP_NOFS); |
| 6835 | |
| 6836 | if (ordered) { |
| 6837 | btrfs_start_ordered_extent(inode, ordered, 1); |
| 6838 | btrfs_put_ordered_extent(ordered); |
| 6839 | } else { |
| 6840 | /* Screw you mmap */ |
| 6841 | ret = filemap_write_and_wait_range(inode->i_mapping, |
| 6842 | lockstart, |
| 6843 | lockend); |
| 6844 | if (ret) |
| 6845 | break; |
| 6846 | |
| 6847 | /* |
| 6848 | * If we found a page that couldn't be invalidated just |
| 6849 | * fall back to buffered. |
| 6850 | */ |
| 6851 | ret = invalidate_inode_pages2_range(inode->i_mapping, |
| 6852 | lockstart >> PAGE_CACHE_SHIFT, |
| 6853 | lockend >> PAGE_CACHE_SHIFT); |
| 6854 | if (ret) |
| 6855 | break; |
| 6856 | } |
| 6857 | |
| 6858 | cond_resched(); |
| 6859 | } |
| 6860 | |
| 6861 | return ret; |
| 6862 | } |
| 6863 | |
Josef Bacik | 69ffb54 | 2012-09-11 15:40:07 -0400 | [diff] [blame] | 6864 | static struct extent_map *create_pinned_em(struct inode *inode, u64 start, |
| 6865 | u64 len, u64 orig_start, |
| 6866 | u64 block_start, u64 block_len, |
Josef Bacik | cc95bef | 2013-04-04 14:31:27 -0400 | [diff] [blame] | 6867 | u64 orig_block_len, u64 ram_bytes, |
| 6868 | int type) |
Josef Bacik | 69ffb54 | 2012-09-11 15:40:07 -0400 | [diff] [blame] | 6869 | { |
| 6870 | struct extent_map_tree *em_tree; |
| 6871 | struct extent_map *em; |
| 6872 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 6873 | int ret; |
| 6874 | |
| 6875 | em_tree = &BTRFS_I(inode)->extent_tree; |
| 6876 | em = alloc_extent_map(); |
| 6877 | if (!em) |
| 6878 | return ERR_PTR(-ENOMEM); |
| 6879 | |
| 6880 | em->start = start; |
| 6881 | em->orig_start = orig_start; |
Josef Bacik | 2ab28f3 | 2012-10-12 15:27:49 -0400 | [diff] [blame] | 6882 | em->mod_start = start; |
| 6883 | em->mod_len = len; |
Josef Bacik | 69ffb54 | 2012-09-11 15:40:07 -0400 | [diff] [blame] | 6884 | em->len = len; |
| 6885 | em->block_len = block_len; |
| 6886 | em->block_start = block_start; |
| 6887 | em->bdev = root->fs_info->fs_devices->latest_bdev; |
Josef Bacik | b493968 | 2012-12-03 10:31:19 -0500 | [diff] [blame] | 6888 | em->orig_block_len = orig_block_len; |
Josef Bacik | cc95bef | 2013-04-04 14:31:27 -0400 | [diff] [blame] | 6889 | em->ram_bytes = ram_bytes; |
Josef Bacik | 70c8a91 | 2012-10-11 16:54:30 -0400 | [diff] [blame] | 6890 | em->generation = -1; |
Josef Bacik | 69ffb54 | 2012-09-11 15:40:07 -0400 | [diff] [blame] | 6891 | set_bit(EXTENT_FLAG_PINNED, &em->flags); |
| 6892 | if (type == BTRFS_ORDERED_PREALLOC) |
Josef Bacik | b11e234 | 2012-12-03 10:58:15 -0500 | [diff] [blame] | 6893 | set_bit(EXTENT_FLAG_FILLING, &em->flags); |
Josef Bacik | 69ffb54 | 2012-09-11 15:40:07 -0400 | [diff] [blame] | 6894 | |
| 6895 | do { |
| 6896 | btrfs_drop_extent_cache(inode, em->start, |
| 6897 | em->start + em->len - 1, 0); |
| 6898 | write_lock(&em_tree->lock); |
Josef Bacik | 09a2a8f9 | 2013-04-05 16:51:15 -0400 | [diff] [blame] | 6899 | ret = add_extent_mapping(em_tree, em, 1); |
Josef Bacik | 69ffb54 | 2012-09-11 15:40:07 -0400 | [diff] [blame] | 6900 | write_unlock(&em_tree->lock); |
| 6901 | } while (ret == -EEXIST); |
| 6902 | |
| 6903 | if (ret) { |
| 6904 | free_extent_map(em); |
| 6905 | return ERR_PTR(ret); |
| 6906 | } |
| 6907 | |
| 6908 | return em; |
| 6909 | } |
| 6910 | |
| 6911 | |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6912 | static int btrfs_get_blocks_direct(struct inode *inode, sector_t iblock, |
| 6913 | struct buffer_head *bh_result, int create) |
| 6914 | { |
| 6915 | struct extent_map *em; |
| 6916 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Josef Bacik | eb838e7 | 2012-07-31 16:28:48 -0400 | [diff] [blame] | 6917 | struct extent_state *cached_state = NULL; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6918 | u64 start = iblock << inode->i_blkbits; |
Josef Bacik | eb838e7 | 2012-07-31 16:28:48 -0400 | [diff] [blame] | 6919 | u64 lockstart, lockend; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6920 | u64 len = bh_result->b_size; |
Josef Bacik | eb838e7 | 2012-07-31 16:28:48 -0400 | [diff] [blame] | 6921 | int unlock_bits = EXTENT_LOCKED; |
Miao Xie | 0934856 | 2013-02-07 10:12:07 +0000 | [diff] [blame] | 6922 | int ret = 0; |
Josef Bacik | eb838e7 | 2012-07-31 16:28:48 -0400 | [diff] [blame] | 6923 | |
Miao Xie | 172a504 | 2013-02-21 02:48:22 -0700 | [diff] [blame] | 6924 | if (create) |
Josef Bacik | eb838e7 | 2012-07-31 16:28:48 -0400 | [diff] [blame] | 6925 | unlock_bits |= EXTENT_DELALLOC | EXTENT_DIRTY; |
Miao Xie | 172a504 | 2013-02-21 02:48:22 -0700 | [diff] [blame] | 6926 | else |
Josef Bacik | c329861 | 2012-08-03 16:49:19 -0400 | [diff] [blame] | 6927 | len = min_t(u64, len, root->sectorsize); |
Josef Bacik | eb838e7 | 2012-07-31 16:28:48 -0400 | [diff] [blame] | 6928 | |
Josef Bacik | c329861 | 2012-08-03 16:49:19 -0400 | [diff] [blame] | 6929 | lockstart = start; |
| 6930 | lockend = start + len - 1; |
| 6931 | |
Josef Bacik | eb838e7 | 2012-07-31 16:28:48 -0400 | [diff] [blame] | 6932 | /* |
| 6933 | * If this errors out it's because we couldn't invalidate pagecache for |
| 6934 | * this range and we need to fallback to buffered. |
| 6935 | */ |
| 6936 | if (lock_extent_direct(inode, lockstart, lockend, &cached_state, create)) |
| 6937 | return -ENOTBLK; |
| 6938 | |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6939 | em = btrfs_get_extent(inode, NULL, 0, start, len, 0); |
Josef Bacik | eb838e7 | 2012-07-31 16:28:48 -0400 | [diff] [blame] | 6940 | if (IS_ERR(em)) { |
| 6941 | ret = PTR_ERR(em); |
| 6942 | goto unlock_err; |
| 6943 | } |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6944 | |
| 6945 | /* |
| 6946 | * Ok for INLINE and COMPRESSED extents we need to fallback on buffered |
| 6947 | * io. INLINE is special, and we could probably kludge it in here, but |
| 6948 | * it's still buffered so for safety lets just fall back to the generic |
| 6949 | * buffered path. |
| 6950 | * |
| 6951 | * For COMPRESSED we _have_ to read the entire extent in so we can |
| 6952 | * decompress it, so there will be buffering required no matter what we |
| 6953 | * do, so go ahead and fallback to buffered. |
| 6954 | * |
| 6955 | * We return -ENOTBLK because thats what makes DIO go ahead and go back |
| 6956 | * to buffered IO. Don't blame me, this is the price we pay for using |
| 6957 | * the generic code. |
| 6958 | */ |
| 6959 | if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) || |
| 6960 | em->block_start == EXTENT_MAP_INLINE) { |
| 6961 | free_extent_map(em); |
Josef Bacik | eb838e7 | 2012-07-31 16:28:48 -0400 | [diff] [blame] | 6962 | ret = -ENOTBLK; |
| 6963 | goto unlock_err; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6964 | } |
| 6965 | |
| 6966 | /* Just a good old fashioned hole, return */ |
| 6967 | if (!create && (em->block_start == EXTENT_MAP_HOLE || |
| 6968 | test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) { |
| 6969 | free_extent_map(em); |
Josef Bacik | eb838e7 | 2012-07-31 16:28:48 -0400 | [diff] [blame] | 6970 | goto unlock_err; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6971 | } |
| 6972 | |
| 6973 | /* |
| 6974 | * We don't allocate a new extent in the following cases |
| 6975 | * |
| 6976 | * 1) The inode is marked as NODATACOW. In this case we'll just use the |
| 6977 | * existing extent. |
| 6978 | * 2) The extent is marked as PREALLOC. We're good to go here and can |
| 6979 | * just use the extent. |
| 6980 | * |
| 6981 | */ |
Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 6982 | if (!create) { |
Josef Bacik | eb838e7 | 2012-07-31 16:28:48 -0400 | [diff] [blame] | 6983 | len = min(len, em->len - (start - em->start)); |
| 6984 | lockstart = start + len; |
| 6985 | goto unlock; |
Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 6986 | } |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6987 | |
| 6988 | if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) || |
| 6989 | ((BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) && |
| 6990 | em->block_start != EXTENT_MAP_HOLE)) { |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6991 | int type; |
| 6992 | int ret; |
Josef Bacik | eb384b5 | 2013-04-24 16:32:55 -0400 | [diff] [blame] | 6993 | u64 block_start, orig_start, orig_block_len, ram_bytes; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 6994 | |
| 6995 | if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) |
| 6996 | type = BTRFS_ORDERED_PREALLOC; |
| 6997 | else |
| 6998 | type = BTRFS_ORDERED_NOCOW; |
Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 6999 | len = min(len, em->len - (start - em->start)); |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 7000 | block_start = em->block_start + (start - em->start); |
Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 7001 | |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7002 | if (can_nocow_extent(inode, start, &len, &orig_start, |
Josef Bacik | 7ee9e44 | 2013-06-21 16:37:03 -0400 | [diff] [blame] | 7003 | &orig_block_len, &ram_bytes) == 1) { |
Josef Bacik | 69ffb54 | 2012-09-11 15:40:07 -0400 | [diff] [blame] | 7004 | if (type == BTRFS_ORDERED_PREALLOC) { |
| 7005 | free_extent_map(em); |
| 7006 | em = create_pinned_em(inode, start, len, |
| 7007 | orig_start, |
Josef Bacik | b493968 | 2012-12-03 10:31:19 -0500 | [diff] [blame] | 7008 | block_start, len, |
Josef Bacik | cc95bef | 2013-04-04 14:31:27 -0400 | [diff] [blame] | 7009 | orig_block_len, |
| 7010 | ram_bytes, type); |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7011 | if (IS_ERR(em)) |
Josef Bacik | 69ffb54 | 2012-09-11 15:40:07 -0400 | [diff] [blame] | 7012 | goto unlock_err; |
Josef Bacik | 69ffb54 | 2012-09-11 15:40:07 -0400 | [diff] [blame] | 7013 | } |
| 7014 | |
Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 7015 | ret = btrfs_add_ordered_extent_dio(inode, start, |
| 7016 | block_start, len, len, type); |
Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 7017 | if (ret) { |
| 7018 | free_extent_map(em); |
Josef Bacik | eb838e7 | 2012-07-31 16:28:48 -0400 | [diff] [blame] | 7019 | goto unlock_err; |
Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 7020 | } |
| 7021 | goto unlock; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 7022 | } |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 7023 | } |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7024 | |
Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 7025 | /* |
| 7026 | * this will cow the extent, reset the len in case we changed |
| 7027 | * it above |
| 7028 | */ |
| 7029 | len = bh_result->b_size; |
Josef Bacik | 70c8a91 | 2012-10-11 16:54:30 -0400 | [diff] [blame] | 7030 | free_extent_map(em); |
| 7031 | em = btrfs_new_extent_direct(inode, start, len); |
Josef Bacik | eb838e7 | 2012-07-31 16:28:48 -0400 | [diff] [blame] | 7032 | if (IS_ERR(em)) { |
| 7033 | ret = PTR_ERR(em); |
| 7034 | goto unlock_err; |
| 7035 | } |
Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 7036 | len = min(len, em->len - (start - em->start)); |
| 7037 | unlock: |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 7038 | bh_result->b_blocknr = (em->block_start + (start - em->start)) >> |
| 7039 | inode->i_blkbits; |
Chris Mason | 46bfbb5 | 2010-05-26 11:04:10 -0400 | [diff] [blame] | 7040 | bh_result->b_size = len; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 7041 | bh_result->b_bdev = em->bdev; |
| 7042 | set_buffer_mapped(bh_result); |
Josef Bacik | c3473e8 | 2012-06-19 10:59:00 -0400 | [diff] [blame] | 7043 | if (create) { |
| 7044 | if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) |
| 7045 | set_buffer_new(bh_result); |
| 7046 | |
| 7047 | /* |
| 7048 | * Need to update the i_size under the extent lock so buffered |
| 7049 | * readers will get the updated i_size when we unlock. |
| 7050 | */ |
| 7051 | if (start + len > i_size_read(inode)) |
| 7052 | i_size_write(inode, start + len); |
Miao Xie | 0934856 | 2013-02-07 10:12:07 +0000 | [diff] [blame] | 7053 | |
Miao Xie | 172a504 | 2013-02-21 02:48:22 -0700 | [diff] [blame] | 7054 | spin_lock(&BTRFS_I(inode)->lock); |
| 7055 | BTRFS_I(inode)->outstanding_extents++; |
| 7056 | spin_unlock(&BTRFS_I(inode)->lock); |
| 7057 | |
Miao Xie | 0934856 | 2013-02-07 10:12:07 +0000 | [diff] [blame] | 7058 | ret = set_extent_bit(&BTRFS_I(inode)->io_tree, lockstart, |
| 7059 | lockstart + len - 1, EXTENT_DELALLOC, NULL, |
| 7060 | &cached_state, GFP_NOFS); |
| 7061 | BUG_ON(ret); |
Josef Bacik | c3473e8 | 2012-06-19 10:59:00 -0400 | [diff] [blame] | 7062 | } |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 7063 | |
Josef Bacik | eb838e7 | 2012-07-31 16:28:48 -0400 | [diff] [blame] | 7064 | /* |
| 7065 | * In the case of write we need to clear and unlock the entire range, |
| 7066 | * in the case of read we need to unlock only the end area that we |
| 7067 | * aren't using if there is any left over space. |
| 7068 | */ |
Liu Bo | 24c03fa | 2012-08-22 20:10:38 -0600 | [diff] [blame] | 7069 | if (lockstart < lockend) { |
Miao Xie | 0934856 | 2013-02-07 10:12:07 +0000 | [diff] [blame] | 7070 | clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart, |
| 7071 | lockend, unlock_bits, 1, 0, |
| 7072 | &cached_state, GFP_NOFS); |
Liu Bo | 24c03fa | 2012-08-22 20:10:38 -0600 | [diff] [blame] | 7073 | } else { |
Josef Bacik | eb838e7 | 2012-07-31 16:28:48 -0400 | [diff] [blame] | 7074 | free_extent_state(cached_state); |
Liu Bo | 24c03fa | 2012-08-22 20:10:38 -0600 | [diff] [blame] | 7075 | } |
Josef Bacik | eb838e7 | 2012-07-31 16:28:48 -0400 | [diff] [blame] | 7076 | |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 7077 | free_extent_map(em); |
| 7078 | |
| 7079 | return 0; |
Josef Bacik | eb838e7 | 2012-07-31 16:28:48 -0400 | [diff] [blame] | 7080 | |
| 7081 | unlock_err: |
Josef Bacik | eb838e7 | 2012-07-31 16:28:48 -0400 | [diff] [blame] | 7082 | clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart, lockend, |
| 7083 | unlock_bits, 1, 0, &cached_state, GFP_NOFS); |
| 7084 | return ret; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 7085 | } |
| 7086 | |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 7087 | static void btrfs_endio_direct_read(struct bio *bio, int err) |
| 7088 | { |
Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 7089 | struct btrfs_dio_private *dip = bio->bi_private; |
Kent Overstreet | 2c30c71 | 2013-11-07 12:20:26 -0800 | [diff] [blame] | 7090 | struct bio_vec *bvec; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 7091 | struct inode *inode = dip->inode; |
| 7092 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 7093 | struct bio *dio_bio; |
Miao Xie | facc8a22 | 2013-07-25 19:22:34 +0800 | [diff] [blame] | 7094 | u32 *csums = (u32 *)dip->csum; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 7095 | u64 start; |
Kent Overstreet | 2c30c71 | 2013-11-07 12:20:26 -0800 | [diff] [blame] | 7096 | int i; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 7097 | |
| 7098 | start = dip->logical_offset; |
Kent Overstreet | 2c30c71 | 2013-11-07 12:20:26 -0800 | [diff] [blame] | 7099 | bio_for_each_segment_all(bvec, bio, i) { |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 7100 | if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)) { |
| 7101 | struct page *page = bvec->bv_page; |
| 7102 | char *kaddr; |
| 7103 | u32 csum = ~(u32)0; |
| 7104 | unsigned long flags; |
| 7105 | |
| 7106 | local_irq_save(flags); |
Cong Wang | 7ac687d | 2011-11-25 23:14:28 +0800 | [diff] [blame] | 7107 | kaddr = kmap_atomic(page); |
Liu Bo | b049668 | 2013-03-14 14:57:45 +0000 | [diff] [blame] | 7108 | csum = btrfs_csum_data(kaddr + bvec->bv_offset, |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 7109 | csum, bvec->bv_len); |
| 7110 | btrfs_csum_final(csum, (char *)&csum); |
Cong Wang | 7ac687d | 2011-11-25 23:14:28 +0800 | [diff] [blame] | 7111 | kunmap_atomic(kaddr); |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 7112 | local_irq_restore(flags); |
| 7113 | |
| 7114 | flush_dcache_page(bvec->bv_page); |
Kent Overstreet | 2c30c71 | 2013-11-07 12:20:26 -0800 | [diff] [blame] | 7115 | if (csum != csums[i]) { |
Miao Xie | facc8a22 | 2013-07-25 19:22:34 +0800 | [diff] [blame] | 7116 | btrfs_err(root->fs_info, "csum failed ino %llu off %llu csum %u expected csum %u", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 7117 | btrfs_ino(inode), start, csum, |
Kent Overstreet | 2c30c71 | 2013-11-07 12:20:26 -0800 | [diff] [blame] | 7118 | csums[i]); |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 7119 | err = -EIO; |
| 7120 | } |
| 7121 | } |
| 7122 | |
| 7123 | start += bvec->bv_len; |
Kent Overstreet | 2c30c71 | 2013-11-07 12:20:26 -0800 | [diff] [blame] | 7124 | } |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 7125 | |
| 7126 | unlock_extent(&BTRFS_I(inode)->io_tree, dip->logical_offset, |
Jeff Mahoney | d008237 | 2012-03-01 14:57:19 +0100 | [diff] [blame] | 7127 | dip->logical_offset + dip->bytes - 1); |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 7128 | dio_bio = dip->dio_bio; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 7129 | |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 7130 | kfree(dip); |
Josef Bacik | c0da7aa | 2011-03-22 11:05:07 -0400 | [diff] [blame] | 7131 | |
| 7132 | /* If we had a csum failure make sure to clear the uptodate flag */ |
| 7133 | if (err) |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 7134 | clear_bit(BIO_UPTODATE, &dio_bio->bi_flags); |
| 7135 | dio_end_io(dio_bio, err); |
| 7136 | bio_put(bio); |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 7137 | } |
| 7138 | |
| 7139 | static void btrfs_endio_direct_write(struct bio *bio, int err) |
| 7140 | { |
| 7141 | struct btrfs_dio_private *dip = bio->bi_private; |
| 7142 | struct inode *inode = dip->inode; |
| 7143 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 7144 | struct btrfs_ordered_extent *ordered = NULL; |
Chris Mason | 163cf09 | 2010-11-28 19:56:33 -0500 | [diff] [blame] | 7145 | u64 ordered_offset = dip->logical_offset; |
| 7146 | u64 ordered_bytes = dip->bytes; |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 7147 | struct bio *dio_bio; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 7148 | int ret; |
| 7149 | |
| 7150 | if (err) |
| 7151 | goto out_done; |
Chris Mason | 163cf09 | 2010-11-28 19:56:33 -0500 | [diff] [blame] | 7152 | again: |
| 7153 | ret = btrfs_dec_test_first_ordered_pending(inode, &ordered, |
| 7154 | &ordered_offset, |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 7155 | ordered_bytes, !err); |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 7156 | if (!ret) |
Chris Mason | 163cf09 | 2010-11-28 19:56:33 -0500 | [diff] [blame] | 7157 | goto out_test; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 7158 | |
Qu Wenruo | fccb5d8 | 2014-02-28 10:46:10 +0800 | [diff] [blame] | 7159 | btrfs_init_work(&ordered->work, finish_ordered_fn, NULL, NULL); |
| 7160 | btrfs_queue_work(root->fs_info->endio_write_workers, |
| 7161 | &ordered->work); |
Chris Mason | 163cf09 | 2010-11-28 19:56:33 -0500 | [diff] [blame] | 7162 | out_test: |
| 7163 | /* |
| 7164 | * our bio might span multiple ordered extents. If we haven't |
| 7165 | * completed the accounting for the whole dio, go back and try again |
| 7166 | */ |
| 7167 | if (ordered_offset < dip->logical_offset + dip->bytes) { |
| 7168 | ordered_bytes = dip->logical_offset + dip->bytes - |
| 7169 | ordered_offset; |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 7170 | ordered = NULL; |
Chris Mason | 163cf09 | 2010-11-28 19:56:33 -0500 | [diff] [blame] | 7171 | goto again; |
| 7172 | } |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 7173 | out_done: |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 7174 | dio_bio = dip->dio_bio; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 7175 | |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 7176 | kfree(dip); |
Josef Bacik | c0da7aa | 2011-03-22 11:05:07 -0400 | [diff] [blame] | 7177 | |
| 7178 | /* If we had an error make sure to clear the uptodate flag */ |
| 7179 | if (err) |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 7180 | clear_bit(BIO_UPTODATE, &dio_bio->bi_flags); |
| 7181 | dio_end_io(dio_bio, err); |
| 7182 | bio_put(bio); |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 7183 | } |
| 7184 | |
Chris Mason | eaf25d9 | 2010-05-25 09:48:28 -0400 | [diff] [blame] | 7185 | static int __btrfs_submit_bio_start_direct_io(struct inode *inode, int rw, |
| 7186 | struct bio *bio, int mirror_num, |
| 7187 | unsigned long bio_flags, u64 offset) |
| 7188 | { |
| 7189 | int ret; |
| 7190 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 7191 | ret = btrfs_csum_one_bio(root, inode, bio, offset, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7192 | BUG_ON(ret); /* -ENOMEM */ |
Chris Mason | eaf25d9 | 2010-05-25 09:48:28 -0400 | [diff] [blame] | 7193 | return 0; |
| 7194 | } |
| 7195 | |
Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 7196 | static void btrfs_end_dio_bio(struct bio *bio, int err) |
| 7197 | { |
| 7198 | struct btrfs_dio_private *dip = bio->bi_private; |
| 7199 | |
| 7200 | if (err) { |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 7201 | btrfs_err(BTRFS_I(dip->inode)->root->fs_info, |
| 7202 | "direct IO failed ino %llu rw %lu sector %#Lx len %u err no %d", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 7203 | btrfs_ino(dip->inode), bio->bi_rw, |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 7204 | (unsigned long long)bio->bi_iter.bi_sector, |
| 7205 | bio->bi_iter.bi_size, err); |
Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 7206 | dip->errors = 1; |
| 7207 | |
| 7208 | /* |
| 7209 | * before atomic variable goto zero, we must make sure |
| 7210 | * dip->errors is perceived to be set. |
| 7211 | */ |
| 7212 | smp_mb__before_atomic_dec(); |
| 7213 | } |
| 7214 | |
| 7215 | /* if there are more bios still pending for this dio, just exit */ |
| 7216 | if (!atomic_dec_and_test(&dip->pending_bios)) |
| 7217 | goto out; |
| 7218 | |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 7219 | if (dip->errors) { |
Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 7220 | bio_io_error(dip->orig_bio); |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 7221 | } else { |
| 7222 | set_bit(BIO_UPTODATE, &dip->dio_bio->bi_flags); |
Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 7223 | bio_endio(dip->orig_bio, 0); |
| 7224 | } |
| 7225 | out: |
| 7226 | bio_put(bio); |
| 7227 | } |
| 7228 | |
| 7229 | static struct bio *btrfs_dio_bio_alloc(struct block_device *bdev, |
| 7230 | u64 first_sector, gfp_t gfp_flags) |
| 7231 | { |
| 7232 | int nr_vecs = bio_get_nr_vecs(bdev); |
| 7233 | return btrfs_bio_alloc(bdev, first_sector, nr_vecs, gfp_flags); |
| 7234 | } |
| 7235 | |
| 7236 | static inline int __btrfs_submit_dio_bio(struct bio *bio, struct inode *inode, |
| 7237 | int rw, u64 file_offset, int skip_sum, |
Josef Bacik | c329861 | 2012-08-03 16:49:19 -0400 | [diff] [blame] | 7238 | int async_submit) |
Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 7239 | { |
Miao Xie | facc8a22 | 2013-07-25 19:22:34 +0800 | [diff] [blame] | 7240 | struct btrfs_dio_private *dip = bio->bi_private; |
Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 7241 | int write = rw & REQ_WRITE; |
| 7242 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 7243 | int ret; |
| 7244 | |
Josef Bacik | b812ce2 | 2012-11-16 13:56:32 -0500 | [diff] [blame] | 7245 | if (async_submit) |
| 7246 | async_submit = !atomic_read(&BTRFS_I(inode)->sync_writers); |
| 7247 | |
Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 7248 | bio_get(bio); |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 7249 | |
| 7250 | if (!write) { |
| 7251 | ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0); |
| 7252 | if (ret) |
| 7253 | goto err; |
| 7254 | } |
Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 7255 | |
Josef Bacik | 1ae3993 | 2011-04-06 14:41:34 -0400 | [diff] [blame] | 7256 | if (skip_sum) |
| 7257 | goto map; |
| 7258 | |
| 7259 | if (write && async_submit) { |
Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 7260 | ret = btrfs_wq_submit_bio(root->fs_info, |
| 7261 | inode, rw, bio, 0, 0, |
| 7262 | file_offset, |
| 7263 | __btrfs_submit_bio_start_direct_io, |
| 7264 | __btrfs_submit_bio_done); |
| 7265 | goto err; |
Josef Bacik | 1ae3993 | 2011-04-06 14:41:34 -0400 | [diff] [blame] | 7266 | } else if (write) { |
| 7267 | /* |
| 7268 | * If we aren't doing async submit, calculate the csum of the |
| 7269 | * bio now. |
| 7270 | */ |
| 7271 | ret = btrfs_csum_one_bio(root, inode, bio, file_offset, 1); |
| 7272 | if (ret) |
| 7273 | goto err; |
Tsutomu Itoh | c2db107 | 2011-03-01 06:48:31 +0000 | [diff] [blame] | 7274 | } else if (!skip_sum) { |
Miao Xie | facc8a22 | 2013-07-25 19:22:34 +0800 | [diff] [blame] | 7275 | ret = btrfs_lookup_bio_sums_dio(root, inode, dip, bio, |
| 7276 | file_offset); |
Tsutomu Itoh | c2db107 | 2011-03-01 06:48:31 +0000 | [diff] [blame] | 7277 | if (ret) |
| 7278 | goto err; |
| 7279 | } |
Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 7280 | |
Josef Bacik | 1ae3993 | 2011-04-06 14:41:34 -0400 | [diff] [blame] | 7281 | map: |
| 7282 | ret = btrfs_map_bio(root, rw, bio, 0, async_submit); |
Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 7283 | err: |
| 7284 | bio_put(bio); |
| 7285 | return ret; |
| 7286 | } |
| 7287 | |
| 7288 | static int btrfs_submit_direct_hook(int rw, struct btrfs_dio_private *dip, |
| 7289 | int skip_sum) |
| 7290 | { |
| 7291 | struct inode *inode = dip->inode; |
| 7292 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 7293 | struct bio *bio; |
| 7294 | struct bio *orig_bio = dip->orig_bio; |
| 7295 | struct bio_vec *bvec = orig_bio->bi_io_vec; |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 7296 | u64 start_sector = orig_bio->bi_iter.bi_sector; |
Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 7297 | u64 file_offset = dip->logical_offset; |
| 7298 | u64 submit_len = 0; |
| 7299 | u64 map_length; |
| 7300 | int nr_pages = 0; |
Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 7301 | int ret = 0; |
Josef Bacik | 1ae3993 | 2011-04-06 14:41:34 -0400 | [diff] [blame] | 7302 | int async_submit = 0; |
Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 7303 | |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 7304 | map_length = orig_bio->bi_iter.bi_size; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 7305 | ret = btrfs_map_block(root->fs_info, rw, start_sector << 9, |
Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 7306 | &map_length, NULL, 0); |
| 7307 | if (ret) { |
Josef Bacik | 64728bb | 2011-04-25 19:43:52 -0400 | [diff] [blame] | 7308 | bio_put(orig_bio); |
Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 7309 | return -EIO; |
| 7310 | } |
Miao Xie | facc8a22 | 2013-07-25 19:22:34 +0800 | [diff] [blame] | 7311 | |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 7312 | if (map_length >= orig_bio->bi_iter.bi_size) { |
Josef Bacik | 02f57c7 | 2011-04-06 14:25:44 -0400 | [diff] [blame] | 7313 | bio = orig_bio; |
| 7314 | goto submit; |
| 7315 | } |
| 7316 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 7317 | /* async crcs make it difficult to collect full stripe writes. */ |
| 7318 | if (btrfs_get_alloc_profile(root, 1) & |
| 7319 | (BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6)) |
| 7320 | async_submit = 0; |
| 7321 | else |
| 7322 | async_submit = 1; |
| 7323 | |
Josef Bacik | 02f57c7 | 2011-04-06 14:25:44 -0400 | [diff] [blame] | 7324 | bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev, start_sector, GFP_NOFS); |
| 7325 | if (!bio) |
| 7326 | return -ENOMEM; |
| 7327 | bio->bi_private = dip; |
| 7328 | bio->bi_end_io = btrfs_end_dio_bio; |
| 7329 | atomic_inc(&dip->pending_bios); |
| 7330 | |
Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 7331 | while (bvec <= (orig_bio->bi_io_vec + orig_bio->bi_vcnt - 1)) { |
| 7332 | if (unlikely(map_length < submit_len + bvec->bv_len || |
| 7333 | bio_add_page(bio, bvec->bv_page, bvec->bv_len, |
| 7334 | bvec->bv_offset) < bvec->bv_len)) { |
| 7335 | /* |
| 7336 | * inc the count before we submit the bio so |
| 7337 | * we know the end IO handler won't happen before |
| 7338 | * we inc the count. Otherwise, the dip might get freed |
| 7339 | * before we're done setting it up |
| 7340 | */ |
| 7341 | atomic_inc(&dip->pending_bios); |
| 7342 | ret = __btrfs_submit_dio_bio(bio, inode, rw, |
| 7343 | file_offset, skip_sum, |
Josef Bacik | c329861 | 2012-08-03 16:49:19 -0400 | [diff] [blame] | 7344 | async_submit); |
Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 7345 | if (ret) { |
| 7346 | bio_put(bio); |
| 7347 | atomic_dec(&dip->pending_bios); |
| 7348 | goto out_err; |
| 7349 | } |
| 7350 | |
Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 7351 | start_sector += submit_len >> 9; |
| 7352 | file_offset += submit_len; |
| 7353 | |
| 7354 | submit_len = 0; |
| 7355 | nr_pages = 0; |
| 7356 | |
| 7357 | bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev, |
| 7358 | start_sector, GFP_NOFS); |
| 7359 | if (!bio) |
| 7360 | goto out_err; |
| 7361 | bio->bi_private = dip; |
| 7362 | bio->bi_end_io = btrfs_end_dio_bio; |
| 7363 | |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 7364 | map_length = orig_bio->bi_iter.bi_size; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 7365 | ret = btrfs_map_block(root->fs_info, rw, |
Stefan Behrens | 3ec706c | 2012-11-05 15:46:42 +0100 | [diff] [blame] | 7366 | start_sector << 9, |
Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 7367 | &map_length, NULL, 0); |
| 7368 | if (ret) { |
| 7369 | bio_put(bio); |
| 7370 | goto out_err; |
| 7371 | } |
| 7372 | } else { |
| 7373 | submit_len += bvec->bv_len; |
Dulshani Gunawardhana | 6787125 | 2013-10-31 10:33:04 +0530 | [diff] [blame] | 7374 | nr_pages++; |
Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 7375 | bvec++; |
| 7376 | } |
| 7377 | } |
| 7378 | |
Josef Bacik | 02f57c7 | 2011-04-06 14:25:44 -0400 | [diff] [blame] | 7379 | submit: |
Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 7380 | ret = __btrfs_submit_dio_bio(bio, inode, rw, file_offset, skip_sum, |
Josef Bacik | c329861 | 2012-08-03 16:49:19 -0400 | [diff] [blame] | 7381 | async_submit); |
Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 7382 | if (!ret) |
| 7383 | return 0; |
| 7384 | |
| 7385 | bio_put(bio); |
| 7386 | out_err: |
| 7387 | dip->errors = 1; |
| 7388 | /* |
| 7389 | * before atomic variable goto zero, we must |
| 7390 | * make sure dip->errors is perceived to be set. |
| 7391 | */ |
| 7392 | smp_mb__before_atomic_dec(); |
| 7393 | if (atomic_dec_and_test(&dip->pending_bios)) |
| 7394 | bio_io_error(dip->orig_bio); |
| 7395 | |
| 7396 | /* bio_end_io() will handle error, so we needn't return it */ |
| 7397 | return 0; |
| 7398 | } |
| 7399 | |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 7400 | static void btrfs_submit_direct(int rw, struct bio *dio_bio, |
| 7401 | struct inode *inode, loff_t file_offset) |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 7402 | { |
| 7403 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 7404 | struct btrfs_dio_private *dip; |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 7405 | struct bio *io_bio; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 7406 | int skip_sum; |
Miao Xie | facc8a22 | 2013-07-25 19:22:34 +0800 | [diff] [blame] | 7407 | int sum_len; |
Christoph Hellwig | 7b6d91d | 2010-08-07 18:20:39 +0200 | [diff] [blame] | 7408 | int write = rw & REQ_WRITE; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 7409 | int ret = 0; |
Miao Xie | facc8a22 | 2013-07-25 19:22:34 +0800 | [diff] [blame] | 7410 | u16 csum_size; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 7411 | |
| 7412 | skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM; |
| 7413 | |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 7414 | io_bio = btrfs_bio_clone(dio_bio, GFP_NOFS); |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 7415 | if (!io_bio) { |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 7416 | ret = -ENOMEM; |
| 7417 | goto free_ordered; |
| 7418 | } |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 7419 | |
Miao Xie | facc8a22 | 2013-07-25 19:22:34 +0800 | [diff] [blame] | 7420 | if (!skip_sum && !write) { |
| 7421 | csum_size = btrfs_super_csum_size(root->fs_info->super_copy); |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 7422 | sum_len = dio_bio->bi_iter.bi_size >> |
| 7423 | inode->i_sb->s_blocksize_bits; |
Miao Xie | facc8a22 | 2013-07-25 19:22:34 +0800 | [diff] [blame] | 7424 | sum_len *= csum_size; |
| 7425 | } else { |
| 7426 | sum_len = 0; |
| 7427 | } |
| 7428 | |
| 7429 | dip = kmalloc(sizeof(*dip) + sum_len, GFP_NOFS); |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 7430 | if (!dip) { |
| 7431 | ret = -ENOMEM; |
| 7432 | goto free_io_bio; |
| 7433 | } |
| 7434 | |
| 7435 | dip->private = dio_bio->bi_private; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 7436 | dip->inode = inode; |
| 7437 | dip->logical_offset = file_offset; |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 7438 | dip->bytes = dio_bio->bi_iter.bi_size; |
| 7439 | dip->disk_bytenr = (u64)dio_bio->bi_iter.bi_sector << 9; |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 7440 | io_bio->bi_private = dip; |
Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 7441 | dip->errors = 0; |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 7442 | dip->orig_bio = io_bio; |
| 7443 | dip->dio_bio = dio_bio; |
Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 7444 | atomic_set(&dip->pending_bios, 0); |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 7445 | |
| 7446 | if (write) |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 7447 | io_bio->bi_end_io = btrfs_endio_direct_write; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 7448 | else |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 7449 | io_bio->bi_end_io = btrfs_endio_direct_read; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 7450 | |
Miao Xie | e65e153 | 2010-11-22 03:04:43 +0000 | [diff] [blame] | 7451 | ret = btrfs_submit_direct_hook(rw, dip, skip_sum); |
| 7452 | if (!ret) |
Chris Mason | eaf25d9 | 2010-05-25 09:48:28 -0400 | [diff] [blame] | 7453 | return; |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 7454 | |
| 7455 | free_io_bio: |
| 7456 | bio_put(io_bio); |
| 7457 | |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 7458 | free_ordered: |
| 7459 | /* |
| 7460 | * If this is a write, we need to clean up the reserved space and kill |
| 7461 | * the ordered extent. |
| 7462 | */ |
| 7463 | if (write) { |
| 7464 | struct btrfs_ordered_extent *ordered; |
Josef Bacik | 955256f | 2010-11-19 09:41:10 -0500 | [diff] [blame] | 7465 | ordered = btrfs_lookup_ordered_extent(inode, file_offset); |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 7466 | if (!test_bit(BTRFS_ORDERED_PREALLOC, &ordered->flags) && |
| 7467 | !test_bit(BTRFS_ORDERED_NOCOW, &ordered->flags)) |
| 7468 | btrfs_free_reserved_extent(root, ordered->start, |
| 7469 | ordered->disk_len); |
| 7470 | btrfs_put_ordered_extent(ordered); |
| 7471 | btrfs_put_ordered_extent(ordered); |
| 7472 | } |
Chris Mason | 9be3395 | 2013-05-17 18:30:14 -0400 | [diff] [blame] | 7473 | bio_endio(dio_bio, ret); |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 7474 | } |
| 7475 | |
Chris Mason | 5a5f79b | 2010-05-26 21:33:37 -0400 | [diff] [blame] | 7476 | static ssize_t check_direct_IO(struct btrfs_root *root, int rw, struct kiocb *iocb, |
| 7477 | const struct iovec *iov, loff_t offset, |
| 7478 | unsigned long nr_segs) |
| 7479 | { |
| 7480 | int seg; |
Josef Bacik | a1b75f7 | 2011-04-08 15:51:18 +0000 | [diff] [blame] | 7481 | int i; |
Chris Mason | 5a5f79b | 2010-05-26 21:33:37 -0400 | [diff] [blame] | 7482 | size_t size; |
| 7483 | unsigned long addr; |
| 7484 | unsigned blocksize_mask = root->sectorsize - 1; |
| 7485 | ssize_t retval = -EINVAL; |
| 7486 | loff_t end = offset; |
| 7487 | |
| 7488 | if (offset & blocksize_mask) |
| 7489 | goto out; |
| 7490 | |
| 7491 | /* Check the memory alignment. Blocks cannot straddle pages */ |
| 7492 | for (seg = 0; seg < nr_segs; seg++) { |
| 7493 | addr = (unsigned long)iov[seg].iov_base; |
| 7494 | size = iov[seg].iov_len; |
| 7495 | end += size; |
Josef Bacik | a1b75f7 | 2011-04-08 15:51:18 +0000 | [diff] [blame] | 7496 | if ((addr & blocksize_mask) || (size & blocksize_mask)) |
Chris Mason | 5a5f79b | 2010-05-26 21:33:37 -0400 | [diff] [blame] | 7497 | goto out; |
Josef Bacik | a1b75f7 | 2011-04-08 15:51:18 +0000 | [diff] [blame] | 7498 | |
| 7499 | /* If this is a write we don't need to check anymore */ |
| 7500 | if (rw & WRITE) |
| 7501 | continue; |
| 7502 | |
| 7503 | /* |
| 7504 | * Check to make sure we don't have duplicate iov_base's in this |
| 7505 | * iovec, if so return EINVAL, otherwise we'll get csum errors |
| 7506 | * when reading back. |
| 7507 | */ |
| 7508 | for (i = seg + 1; i < nr_segs; i++) { |
| 7509 | if (iov[seg].iov_base == iov[i].iov_base) |
| 7510 | goto out; |
| 7511 | } |
Chris Mason | 5a5f79b | 2010-05-26 21:33:37 -0400 | [diff] [blame] | 7512 | } |
| 7513 | retval = 0; |
| 7514 | out: |
| 7515 | return retval; |
| 7516 | } |
Josef Bacik | eb838e7 | 2012-07-31 16:28:48 -0400 | [diff] [blame] | 7517 | |
Chris Mason | 1643298 | 2008-04-10 10:23:21 -0400 | [diff] [blame] | 7518 | static ssize_t btrfs_direct_IO(int rw, struct kiocb *iocb, |
| 7519 | const struct iovec *iov, loff_t offset, |
| 7520 | unsigned long nr_segs) |
| 7521 | { |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 7522 | struct file *file = iocb->ki_filp; |
| 7523 | struct inode *inode = file->f_mapping->host; |
Miao Xie | 0934856 | 2013-02-07 10:12:07 +0000 | [diff] [blame] | 7524 | size_t count = 0; |
Miao Xie | 2e60a51 | 2013-02-08 07:01:08 +0000 | [diff] [blame] | 7525 | int flags = 0; |
Miao Xie | 38851cc | 2013-02-08 07:04:11 +0000 | [diff] [blame] | 7526 | bool wakeup = true; |
| 7527 | bool relock = false; |
Miao Xie | 0934856 | 2013-02-07 10:12:07 +0000 | [diff] [blame] | 7528 | ssize_t ret; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 7529 | |
Chris Mason | 5a5f79b | 2010-05-26 21:33:37 -0400 | [diff] [blame] | 7530 | if (check_direct_IO(BTRFS_I(inode)->root, rw, iocb, iov, |
Josef Bacik | eb838e7 | 2012-07-31 16:28:48 -0400 | [diff] [blame] | 7531 | offset, nr_segs)) |
Chris Mason | 5a5f79b | 2010-05-26 21:33:37 -0400 | [diff] [blame] | 7532 | return 0; |
Chris Mason | 5a5f79b | 2010-05-26 21:33:37 -0400 | [diff] [blame] | 7533 | |
Miao Xie | 38851cc | 2013-02-08 07:04:11 +0000 | [diff] [blame] | 7534 | atomic_inc(&inode->i_dio_count); |
| 7535 | smp_mb__after_atomic_inc(); |
| 7536 | |
Josef Bacik | 0e267c4 | 2013-07-02 10:38:02 -0400 | [diff] [blame] | 7537 | /* |
Miao Xie | 41bd9ca | 2014-03-06 13:54:57 +0800 | [diff] [blame] | 7538 | * The generic stuff only does filemap_write_and_wait_range, which |
| 7539 | * isn't enough if we've written compressed pages to this area, so |
| 7540 | * we need to flush the dirty pages again to make absolutely sure |
| 7541 | * that any outstanding dirty pages are on disk. |
Josef Bacik | 0e267c4 | 2013-07-02 10:38:02 -0400 | [diff] [blame] | 7542 | */ |
| 7543 | count = iov_length(iov, nr_segs); |
Miao Xie | 41bd9ca | 2014-03-06 13:54:57 +0800 | [diff] [blame] | 7544 | if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT, |
| 7545 | &BTRFS_I(inode)->runtime_flags)) |
| 7546 | filemap_fdatawrite_range(inode->i_mapping, offset, count); |
Josef Bacik | 0e267c4 | 2013-07-02 10:38:02 -0400 | [diff] [blame] | 7547 | |
Miao Xie | 0934856 | 2013-02-07 10:12:07 +0000 | [diff] [blame] | 7548 | if (rw & WRITE) { |
Miao Xie | 38851cc | 2013-02-08 07:04:11 +0000 | [diff] [blame] | 7549 | /* |
| 7550 | * If the write DIO is beyond the EOF, we need update |
| 7551 | * the isize, but it is protected by i_mutex. So we can |
| 7552 | * not unlock the i_mutex at this case. |
| 7553 | */ |
| 7554 | if (offset + count <= inode->i_size) { |
| 7555 | mutex_unlock(&inode->i_mutex); |
| 7556 | relock = true; |
| 7557 | } |
Miao Xie | 0934856 | 2013-02-07 10:12:07 +0000 | [diff] [blame] | 7558 | ret = btrfs_delalloc_reserve_space(inode, count); |
| 7559 | if (ret) |
Miao Xie | 38851cc | 2013-02-08 07:04:11 +0000 | [diff] [blame] | 7560 | goto out; |
| 7561 | } else if (unlikely(test_bit(BTRFS_INODE_READDIO_NEED_LOCK, |
| 7562 | &BTRFS_I(inode)->runtime_flags))) { |
| 7563 | inode_dio_done(inode); |
| 7564 | flags = DIO_LOCKING | DIO_SKIP_HOLES; |
| 7565 | wakeup = false; |
Miao Xie | 0934856 | 2013-02-07 10:12:07 +0000 | [diff] [blame] | 7566 | } |
| 7567 | |
| 7568 | ret = __blockdev_direct_IO(rw, iocb, inode, |
| 7569 | BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev, |
| 7570 | iov, offset, nr_segs, btrfs_get_blocks_direct, NULL, |
Miao Xie | 2e60a51 | 2013-02-08 07:01:08 +0000 | [diff] [blame] | 7571 | btrfs_submit_direct, flags); |
Miao Xie | 0934856 | 2013-02-07 10:12:07 +0000 | [diff] [blame] | 7572 | if (rw & WRITE) { |
| 7573 | if (ret < 0 && ret != -EIOCBQUEUED) |
| 7574 | btrfs_delalloc_release_space(inode, count); |
Miao Xie | 172a504 | 2013-02-21 02:48:22 -0700 | [diff] [blame] | 7575 | else if (ret >= 0 && (size_t)ret < count) |
Miao Xie | 0934856 | 2013-02-07 10:12:07 +0000 | [diff] [blame] | 7576 | btrfs_delalloc_release_space(inode, |
| 7577 | count - (size_t)ret); |
Miao Xie | 172a504 | 2013-02-21 02:48:22 -0700 | [diff] [blame] | 7578 | else |
| 7579 | btrfs_delalloc_release_metadata(inode, 0); |
Miao Xie | 0934856 | 2013-02-07 10:12:07 +0000 | [diff] [blame] | 7580 | } |
Miao Xie | 38851cc | 2013-02-08 07:04:11 +0000 | [diff] [blame] | 7581 | out: |
Miao Xie | 2e60a51 | 2013-02-08 07:01:08 +0000 | [diff] [blame] | 7582 | if (wakeup) |
| 7583 | inode_dio_done(inode); |
Miao Xie | 38851cc | 2013-02-08 07:04:11 +0000 | [diff] [blame] | 7584 | if (relock) |
| 7585 | mutex_lock(&inode->i_mutex); |
Miao Xie | 0934856 | 2013-02-07 10:12:07 +0000 | [diff] [blame] | 7586 | |
| 7587 | return ret; |
Chris Mason | 1643298 | 2008-04-10 10:23:21 -0400 | [diff] [blame] | 7588 | } |
| 7589 | |
Tsutomu Itoh | 05dadc0 | 2012-11-29 05:08:26 +0000 | [diff] [blame] | 7590 | #define BTRFS_FIEMAP_FLAGS (FIEMAP_FLAG_SYNC) |
| 7591 | |
Yehuda Sadeh | 1506fcc | 2009-01-21 14:39:14 -0500 | [diff] [blame] | 7592 | static int btrfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo, |
| 7593 | __u64 start, __u64 len) |
| 7594 | { |
Tsutomu Itoh | 05dadc0 | 2012-11-29 05:08:26 +0000 | [diff] [blame] | 7595 | int ret; |
| 7596 | |
| 7597 | ret = fiemap_check_flags(fieinfo, BTRFS_FIEMAP_FLAGS); |
| 7598 | if (ret) |
| 7599 | return ret; |
| 7600 | |
Chris Mason | ec29ed5 | 2011-02-23 16:23:20 -0500 | [diff] [blame] | 7601 | return extent_fiemap(inode, fieinfo, start, len, btrfs_get_extent_fiemap); |
Yehuda Sadeh | 1506fcc | 2009-01-21 14:39:14 -0500 | [diff] [blame] | 7602 | } |
| 7603 | |
Chris Mason | 9ebefb18 | 2007-06-15 13:50:00 -0400 | [diff] [blame] | 7604 | int btrfs_readpage(struct file *file, struct page *page) |
| 7605 | { |
Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 7606 | struct extent_io_tree *tree; |
| 7607 | tree = &BTRFS_I(page->mapping->host)->io_tree; |
Jan Schmidt | 8ddc7d9 | 2011-06-13 20:02:58 +0200 | [diff] [blame] | 7608 | return extent_read_full_page(tree, page, btrfs_get_extent, 0); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7609 | } |
Chris Mason | 1832a6d | 2007-12-21 16:27:21 -0500 | [diff] [blame] | 7610 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7611 | static int btrfs_writepage(struct page *page, struct writeback_control *wbc) |
| 7612 | { |
Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 7613 | struct extent_io_tree *tree; |
Chris Mason | b888db2 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 7614 | |
| 7615 | |
| 7616 | if (current->flags & PF_MEMALLOC) { |
| 7617 | redirty_page_for_writepage(wbc, page); |
| 7618 | unlock_page(page); |
| 7619 | return 0; |
| 7620 | } |
Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 7621 | tree = &BTRFS_I(page->mapping->host)->io_tree; |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 7622 | return extent_write_full_page(tree, page, btrfs_get_extent, wbc); |
| 7623 | } |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7624 | |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 7625 | static int btrfs_writepages(struct address_space *mapping, |
| 7626 | struct writeback_control *wbc) |
Chris Mason | b293f02 | 2007-11-01 19:45:34 -0400 | [diff] [blame] | 7627 | { |
Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 7628 | struct extent_io_tree *tree; |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 7629 | |
Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 7630 | tree = &BTRFS_I(mapping->host)->io_tree; |
Chris Mason | b293f02 | 2007-11-01 19:45:34 -0400 | [diff] [blame] | 7631 | return extent_writepages(tree, mapping, btrfs_get_extent, wbc); |
| 7632 | } |
| 7633 | |
Chris Mason | 3ab2fb5 | 2007-11-08 10:59:22 -0500 | [diff] [blame] | 7634 | static int |
| 7635 | btrfs_readpages(struct file *file, struct address_space *mapping, |
| 7636 | struct list_head *pages, unsigned nr_pages) |
| 7637 | { |
Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 7638 | struct extent_io_tree *tree; |
| 7639 | tree = &BTRFS_I(mapping->host)->io_tree; |
Chris Mason | 3ab2fb5 | 2007-11-08 10:59:22 -0500 | [diff] [blame] | 7640 | return extent_readpages(tree, mapping, pages, nr_pages, |
| 7641 | btrfs_get_extent); |
| 7642 | } |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7643 | static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags) |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 7644 | { |
Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 7645 | struct extent_io_tree *tree; |
| 7646 | struct extent_map_tree *map; |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 7647 | int ret; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7648 | |
Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 7649 | tree = &BTRFS_I(page->mapping->host)->io_tree; |
| 7650 | map = &BTRFS_I(page->mapping->host)->extent_tree; |
Chris Mason | 70dec80 | 2008-01-29 09:59:12 -0500 | [diff] [blame] | 7651 | ret = try_release_extent_mapping(map, tree, page, gfp_flags); |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 7652 | if (ret == 1) { |
| 7653 | ClearPagePrivate(page); |
| 7654 | set_page_private(page, 0); |
| 7655 | page_cache_release(page); |
| 7656 | } |
| 7657 | return ret; |
| 7658 | } |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7659 | |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7660 | static int btrfs_releasepage(struct page *page, gfp_t gfp_flags) |
| 7661 | { |
Chris Mason | 98509cf | 2008-09-11 15:51:43 -0400 | [diff] [blame] | 7662 | if (PageWriteback(page) || PageDirty(page)) |
| 7663 | return 0; |
Yan Zheng | b335b00 | 2009-02-12 10:06:04 -0500 | [diff] [blame] | 7664 | return __btrfs_releasepage(page, gfp_flags & GFP_NOFS); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7665 | } |
| 7666 | |
Lukas Czerner | d47992f | 2013-05-21 23:17:23 -0400 | [diff] [blame] | 7667 | static void btrfs_invalidatepage(struct page *page, unsigned int offset, |
| 7668 | unsigned int length) |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 7669 | { |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 7670 | struct inode *inode = page->mapping->host; |
Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 7671 | struct extent_io_tree *tree; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7672 | struct btrfs_ordered_extent *ordered; |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 7673 | struct extent_state *cached_state = NULL; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7674 | u64 page_start = page_offset(page); |
| 7675 | u64 page_end = page_start + PAGE_CACHE_SIZE - 1; |
Filipe David Borba Manana | 131e404 | 2013-11-19 22:29:35 +0000 | [diff] [blame] | 7676 | int inode_evicting = inode->i_state & I_FREEING; |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 7677 | |
Chris Mason | 8b62b72 | 2009-09-02 16:53:46 -0400 | [diff] [blame] | 7678 | /* |
| 7679 | * we have the page locked, so new writeback can't start, |
| 7680 | * and the dirty bit won't be cleared while we are here. |
| 7681 | * |
| 7682 | * Wait for IO on this page so that we can safely clear |
| 7683 | * the PagePrivate2 bit and do ordered accounting |
| 7684 | */ |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7685 | wait_on_page_writeback(page); |
Chris Mason | 8b62b72 | 2009-09-02 16:53:46 -0400 | [diff] [blame] | 7686 | |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 7687 | tree = &BTRFS_I(inode)->io_tree; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7688 | if (offset) { |
| 7689 | btrfs_releasepage(page, GFP_NOFS); |
| 7690 | return; |
| 7691 | } |
Filipe David Borba Manana | 131e404 | 2013-11-19 22:29:35 +0000 | [diff] [blame] | 7692 | |
| 7693 | if (!inode_evicting) |
| 7694 | lock_extent_bits(tree, page_start, page_end, 0, &cached_state); |
| 7695 | ordered = btrfs_lookup_ordered_extent(inode, page_start); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7696 | if (ordered) { |
Chris Mason | eb84ae0 | 2008-07-17 13:53:27 -0400 | [diff] [blame] | 7697 | /* |
| 7698 | * IO on this page will never be started, so we need |
| 7699 | * to account for any ordered extents now |
| 7700 | */ |
Filipe David Borba Manana | 131e404 | 2013-11-19 22:29:35 +0000 | [diff] [blame] | 7701 | if (!inode_evicting) |
| 7702 | clear_extent_bit(tree, page_start, page_end, |
| 7703 | EXTENT_DIRTY | EXTENT_DELALLOC | |
| 7704 | EXTENT_LOCKED | EXTENT_DO_ACCOUNTING | |
| 7705 | EXTENT_DEFRAG, 1, 0, &cached_state, |
| 7706 | GFP_NOFS); |
Chris Mason | 8b62b72 | 2009-09-02 16:53:46 -0400 | [diff] [blame] | 7707 | /* |
| 7708 | * whoever cleared the private bit is responsible |
| 7709 | * for the finish_ordered_io |
| 7710 | */ |
Josef Bacik | 77cef2e | 2013-08-29 13:57:21 -0400 | [diff] [blame] | 7711 | if (TestClearPagePrivate2(page)) { |
| 7712 | struct btrfs_ordered_inode_tree *tree; |
| 7713 | u64 new_len; |
| 7714 | |
| 7715 | tree = &BTRFS_I(inode)->ordered_tree; |
| 7716 | |
| 7717 | spin_lock_irq(&tree->lock); |
| 7718 | set_bit(BTRFS_ORDERED_TRUNCATED, &ordered->flags); |
| 7719 | new_len = page_start - ordered->file_offset; |
| 7720 | if (new_len < ordered->truncated_len) |
| 7721 | ordered->truncated_len = new_len; |
| 7722 | spin_unlock_irq(&tree->lock); |
| 7723 | |
| 7724 | if (btrfs_dec_test_ordered_pending(inode, &ordered, |
| 7725 | page_start, |
| 7726 | PAGE_CACHE_SIZE, 1)) |
| 7727 | btrfs_finish_ordered_io(ordered); |
Chris Mason | 8b62b72 | 2009-09-02 16:53:46 -0400 | [diff] [blame] | 7728 | } |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7729 | btrfs_put_ordered_extent(ordered); |
Filipe David Borba Manana | 131e404 | 2013-11-19 22:29:35 +0000 | [diff] [blame] | 7730 | if (!inode_evicting) { |
| 7731 | cached_state = NULL; |
| 7732 | lock_extent_bits(tree, page_start, page_end, 0, |
| 7733 | &cached_state); |
| 7734 | } |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7735 | } |
Filipe David Borba Manana | 131e404 | 2013-11-19 22:29:35 +0000 | [diff] [blame] | 7736 | |
| 7737 | if (!inode_evicting) { |
| 7738 | clear_extent_bit(tree, page_start, page_end, |
| 7739 | EXTENT_LOCKED | EXTENT_DIRTY | |
| 7740 | EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING | |
| 7741 | EXTENT_DEFRAG, 1, 1, |
| 7742 | &cached_state, GFP_NOFS); |
| 7743 | |
| 7744 | __btrfs_releasepage(page, GFP_NOFS); |
| 7745 | } |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7746 | |
Chris Mason | 4a09675 | 2008-07-21 10:29:44 -0400 | [diff] [blame] | 7747 | ClearPageChecked(page); |
Chris Mason | 9ad6b7b | 2008-04-18 16:11:30 -0400 | [diff] [blame] | 7748 | if (PagePrivate(page)) { |
Chris Mason | 9ad6b7b | 2008-04-18 16:11:30 -0400 | [diff] [blame] | 7749 | ClearPagePrivate(page); |
| 7750 | set_page_private(page, 0); |
| 7751 | page_cache_release(page); |
| 7752 | } |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7753 | } |
| 7754 | |
Chris Mason | 9ebefb18 | 2007-06-15 13:50:00 -0400 | [diff] [blame] | 7755 | /* |
| 7756 | * btrfs_page_mkwrite() is not allowed to change the file size as it gets |
| 7757 | * called from a page fault handler when a page is first dirtied. Hence we must |
| 7758 | * be careful to check for EOF conditions here. We set the page up correctly |
| 7759 | * for a written page which means we get ENOSPC checking when writing into |
| 7760 | * holes and correct delalloc and unwritten extent mapping on filesystems that |
| 7761 | * support these features. |
| 7762 | * |
| 7763 | * We are not allowed to take the i_mutex here so we have to play games to |
| 7764 | * protect against truncate races as the page could now be beyond EOF. Because |
| 7765 | * vmtruncate() writes the inode size before removing pages, once we have the |
| 7766 | * page lock we can determine safely if the page is beyond EOF. If it is not |
| 7767 | * beyond EOF, then the page is guaranteed safe against truncation until we |
| 7768 | * unlock the page. |
| 7769 | */ |
Nick Piggin | c2ec175 | 2009-03-31 15:23:21 -0700 | [diff] [blame] | 7770 | 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] | 7771 | { |
Nick Piggin | c2ec175 | 2009-03-31 15:23:21 -0700 | [diff] [blame] | 7772 | struct page *page = vmf->page; |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 7773 | struct inode *inode = file_inode(vma->vm_file); |
Chris Mason | 1832a6d | 2007-12-21 16:27:21 -0500 | [diff] [blame] | 7774 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7775 | struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree; |
| 7776 | struct btrfs_ordered_extent *ordered; |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 7777 | struct extent_state *cached_state = NULL; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7778 | char *kaddr; |
| 7779 | unsigned long zero_start; |
Chris Mason | 9ebefb18 | 2007-06-15 13:50:00 -0400 | [diff] [blame] | 7780 | loff_t size; |
Chris Mason | 1832a6d | 2007-12-21 16:27:21 -0500 | [diff] [blame] | 7781 | int ret; |
Chris Mason | 9998eb7 | 2012-01-25 13:47:40 -0500 | [diff] [blame] | 7782 | int reserved = 0; |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 7783 | u64 page_start; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7784 | u64 page_end; |
Chris Mason | 9ebefb18 | 2007-06-15 13:50:00 -0400 | [diff] [blame] | 7785 | |
Jan Kara | b2b5ef5 | 2012-06-12 16:20:45 +0200 | [diff] [blame] | 7786 | sb_start_pagefault(inode->i_sb); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 7787 | ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE); |
Chris Mason | 9998eb7 | 2012-01-25 13:47:40 -0500 | [diff] [blame] | 7788 | if (!ret) { |
Josef Bacik | e41f941 | 2012-03-26 09:46:47 -0400 | [diff] [blame] | 7789 | ret = file_update_time(vma->vm_file); |
Chris Mason | 9998eb7 | 2012-01-25 13:47:40 -0500 | [diff] [blame] | 7790 | reserved = 1; |
| 7791 | } |
Nick Piggin | 56a76f8 | 2009-03-31 15:23:23 -0700 | [diff] [blame] | 7792 | if (ret) { |
| 7793 | if (ret == -ENOMEM) |
| 7794 | ret = VM_FAULT_OOM; |
| 7795 | else /* -ENOSPC, -EIO, etc */ |
| 7796 | ret = VM_FAULT_SIGBUS; |
Chris Mason | 9998eb7 | 2012-01-25 13:47:40 -0500 | [diff] [blame] | 7797 | if (reserved) |
| 7798 | goto out; |
| 7799 | goto out_noreserve; |
Nick Piggin | 56a76f8 | 2009-03-31 15:23:23 -0700 | [diff] [blame] | 7800 | } |
Chris Mason | 1832a6d | 2007-12-21 16:27:21 -0500 | [diff] [blame] | 7801 | |
Nick Piggin | 56a76f8 | 2009-03-31 15:23:23 -0700 | [diff] [blame] | 7802 | ret = VM_FAULT_NOPAGE; /* make the VM retry the fault */ |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7803 | again: |
Chris Mason | 9ebefb18 | 2007-06-15 13:50:00 -0400 | [diff] [blame] | 7804 | lock_page(page); |
Chris Mason | 9ebefb18 | 2007-06-15 13:50:00 -0400 | [diff] [blame] | 7805 | size = i_size_read(inode); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7806 | page_start = page_offset(page); |
| 7807 | page_end = page_start + PAGE_CACHE_SIZE - 1; |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 7808 | |
Chris Mason | 9ebefb18 | 2007-06-15 13:50:00 -0400 | [diff] [blame] | 7809 | if ((page->mapping != inode->i_mapping) || |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7810 | (page_start >= size)) { |
Chris Mason | 9ebefb18 | 2007-06-15 13:50:00 -0400 | [diff] [blame] | 7811 | /* page got truncated out from underneath us */ |
| 7812 | goto out_unlock; |
| 7813 | } |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7814 | wait_on_page_writeback(page); |
| 7815 | |
Jeff Mahoney | d008237 | 2012-03-01 14:57:19 +0100 | [diff] [blame] | 7816 | lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7817 | set_page_extent_mapped(page); |
| 7818 | |
Chris Mason | eb84ae0 | 2008-07-17 13:53:27 -0400 | [diff] [blame] | 7819 | /* |
| 7820 | * we can't set the delalloc bits if there are pending ordered |
| 7821 | * extents. Drop our locks and wait for them to finish |
| 7822 | */ |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7823 | ordered = btrfs_lookup_ordered_extent(inode, page_start); |
| 7824 | if (ordered) { |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 7825 | unlock_extent_cached(io_tree, page_start, page_end, |
| 7826 | &cached_state, GFP_NOFS); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7827 | unlock_page(page); |
Chris Mason | eb84ae0 | 2008-07-17 13:53:27 -0400 | [diff] [blame] | 7828 | btrfs_start_ordered_extent(inode, ordered, 1); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7829 | btrfs_put_ordered_extent(ordered); |
| 7830 | goto again; |
| 7831 | } |
| 7832 | |
Josef Bacik | fbf1908 | 2009-10-01 17:10:23 -0400 | [diff] [blame] | 7833 | /* |
| 7834 | * XXX - page_mkwrite gets called every time the page is dirtied, even |
| 7835 | * if it was already dirty, so for space accounting reasons we need to |
| 7836 | * clear any delalloc bits for the range we are fixing to save. There |
| 7837 | * is probably a better way to do this, but for now keep consistent with |
| 7838 | * prepare_pages in the normal write path. |
| 7839 | */ |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 7840 | clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end, |
Liu Bo | 9e8a4a8 | 2012-09-05 19:10:51 -0600 | [diff] [blame] | 7841 | EXTENT_DIRTY | EXTENT_DELALLOC | |
| 7842 | EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 7843 | 0, 0, &cached_state, GFP_NOFS); |
Josef Bacik | fbf1908 | 2009-10-01 17:10:23 -0400 | [diff] [blame] | 7844 | |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 7845 | ret = btrfs_set_extent_delalloc(inode, page_start, page_end, |
| 7846 | &cached_state); |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 7847 | if (ret) { |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 7848 | unlock_extent_cached(io_tree, page_start, page_end, |
| 7849 | &cached_state, GFP_NOFS); |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 7850 | ret = VM_FAULT_SIGBUS; |
| 7851 | goto out_unlock; |
| 7852 | } |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7853 | ret = 0; |
Chris Mason | 9ebefb18 | 2007-06-15 13:50:00 -0400 | [diff] [blame] | 7854 | |
| 7855 | /* page is wholly or partially inside EOF */ |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 7856 | if (page_start + PAGE_CACHE_SIZE > size) |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7857 | zero_start = size & ~PAGE_CACHE_MASK; |
Chris Mason | 9ebefb18 | 2007-06-15 13:50:00 -0400 | [diff] [blame] | 7858 | else |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7859 | zero_start = PAGE_CACHE_SIZE; |
Chris Mason | 9ebefb18 | 2007-06-15 13:50:00 -0400 | [diff] [blame] | 7860 | |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7861 | if (zero_start != PAGE_CACHE_SIZE) { |
| 7862 | kaddr = kmap(page); |
| 7863 | memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start); |
| 7864 | flush_dcache_page(page); |
| 7865 | kunmap(page); |
| 7866 | } |
Chris Mason | 247e743 | 2008-07-17 12:53:51 -0400 | [diff] [blame] | 7867 | ClearPageChecked(page); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7868 | set_page_dirty(page); |
Chris Mason | 50a9b21 | 2009-09-11 12:33:12 -0400 | [diff] [blame] | 7869 | SetPageUptodate(page); |
Chris Mason | 5a3f23d | 2009-03-31 13:27:11 -0400 | [diff] [blame] | 7870 | |
Chris Mason | 257c62e | 2009-10-13 13:21:08 -0400 | [diff] [blame] | 7871 | BTRFS_I(inode)->last_trans = root->fs_info->generation; |
| 7872 | BTRFS_I(inode)->last_sub_trans = BTRFS_I(inode)->root->log_transid; |
Liu Bo | 46d8bc3 | 2012-08-29 01:07:55 -0600 | [diff] [blame] | 7873 | 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] | 7874 | |
Josef Bacik | 2ac55d4 | 2010-02-03 19:33:23 +0000 | [diff] [blame] | 7875 | 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] | 7876 | |
| 7877 | out_unlock: |
Jan Kara | b2b5ef5 | 2012-06-12 16:20:45 +0200 | [diff] [blame] | 7878 | if (!ret) { |
| 7879 | sb_end_pagefault(inode->i_sb); |
Chris Mason | 50a9b21 | 2009-09-11 12:33:12 -0400 | [diff] [blame] | 7880 | return VM_FAULT_LOCKED; |
Jan Kara | b2b5ef5 | 2012-06-12 16:20:45 +0200 | [diff] [blame] | 7881 | } |
Chris Mason | 9ebefb18 | 2007-06-15 13:50:00 -0400 | [diff] [blame] | 7882 | unlock_page(page); |
Chris Mason | 1832a6d | 2007-12-21 16:27:21 -0500 | [diff] [blame] | 7883 | out: |
Josef Bacik | ec39e18 | 2012-01-12 19:10:12 -0500 | [diff] [blame] | 7884 | btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE); |
Chris Mason | 9998eb7 | 2012-01-25 13:47:40 -0500 | [diff] [blame] | 7885 | out_noreserve: |
Jan Kara | b2b5ef5 | 2012-06-12 16:20:45 +0200 | [diff] [blame] | 7886 | sb_end_pagefault(inode->i_sb); |
Chris Mason | 9ebefb18 | 2007-06-15 13:50:00 -0400 | [diff] [blame] | 7887 | return ret; |
| 7888 | } |
| 7889 | |
Josef Bacik | a41ad39 | 2011-01-31 15:30:16 -0500 | [diff] [blame] | 7890 | static int btrfs_truncate(struct inode *inode) |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7891 | { |
| 7892 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Josef Bacik | fcb80c2 | 2011-05-03 10:40:22 -0400 | [diff] [blame] | 7893 | struct btrfs_block_rsv *rsv; |
Josef Bacik | a71754f | 2013-06-17 17:14:39 -0400 | [diff] [blame] | 7894 | int ret = 0; |
Josef Bacik | 3893e33 | 2011-01-31 16:03:11 -0500 | [diff] [blame] | 7895 | int err = 0; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7896 | struct btrfs_trans_handle *trans; |
Chris Mason | dbe674a | 2008-07-17 12:54:05 -0400 | [diff] [blame] | 7897 | u64 mask = root->sectorsize - 1; |
Josef Bacik | 0712718 | 2011-08-19 10:29:59 -0400 | [diff] [blame] | 7898 | u64 min_size = btrfs_calc_trunc_metadata_size(root, 1); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7899 | |
Josef Bacik | 0ef8b72 | 2013-10-25 16:13:35 -0400 | [diff] [blame] | 7900 | ret = btrfs_wait_ordered_range(inode, inode->i_size & (~mask), |
| 7901 | (u64)-1); |
| 7902 | if (ret) |
| 7903 | return ret; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 7904 | |
Josef Bacik | fcb80c2 | 2011-05-03 10:40:22 -0400 | [diff] [blame] | 7905 | /* |
| 7906 | * Yes ladies and gentelment, this is indeed ugly. The fact is we have |
| 7907 | * 3 things going on here |
| 7908 | * |
| 7909 | * 1) We need to reserve space for our orphan item and the space to |
| 7910 | * delete our orphan item. Lord knows we don't want to have a dangling |
| 7911 | * orphan item because we didn't reserve space to remove it. |
| 7912 | * |
| 7913 | * 2) We need to reserve space to update our inode. |
| 7914 | * |
| 7915 | * 3) We need to have something to cache all the space that is going to |
| 7916 | * be free'd up by the truncate operation, but also have some slack |
| 7917 | * space reserved in case it uses space during the truncate (thank you |
| 7918 | * very much snapshotting). |
| 7919 | * |
| 7920 | * And we need these to all be seperate. The fact is we can use alot of |
| 7921 | * space doing the truncate, and we have no earthly idea how much space |
| 7922 | * we will use, so we need the truncate reservation to be seperate so it |
| 7923 | * doesn't end up using space reserved for updating the inode or |
| 7924 | * removing the orphan item. We also need to be able to stop the |
| 7925 | * transaction and start a new one, which means we need to be able to |
| 7926 | * update the inode several times, and we have no idea of knowing how |
| 7927 | * many times that will be, so we can't just reserve 1 item for the |
| 7928 | * entirety of the opration, so that has to be done seperately as well. |
| 7929 | * Then there is the orphan item, which does indeed need to be held on |
| 7930 | * to for the whole operation, and we need nobody to touch this reserved |
| 7931 | * space except the orphan code. |
| 7932 | * |
| 7933 | * So that leaves us with |
| 7934 | * |
| 7935 | * 1) root->orphan_block_rsv - for the orphan deletion. |
| 7936 | * 2) rsv - for the truncate reservation, which we will steal from the |
| 7937 | * transaction reservation. |
| 7938 | * 3) fs_info->trans_block_rsv - this will have 1 items worth left for |
| 7939 | * updating the inode. |
| 7940 | */ |
Miao Xie | 66d8f3d | 2012-09-06 04:02:28 -0600 | [diff] [blame] | 7941 | rsv = btrfs_alloc_block_rsv(root, BTRFS_BLOCK_RSV_TEMP); |
Josef Bacik | fcb80c2 | 2011-05-03 10:40:22 -0400 | [diff] [blame] | 7942 | if (!rsv) |
| 7943 | return -ENOMEM; |
Josef Bacik | 4a33854 | 2011-08-29 11:01:31 -0400 | [diff] [blame] | 7944 | rsv->size = min_size; |
Josef Bacik | ca7e70f | 2012-08-27 17:48:15 -0400 | [diff] [blame] | 7945 | rsv->failfast = 1; |
Josef Bacik | f0cd846 | 2011-03-04 14:37:08 -0500 | [diff] [blame] | 7946 | |
Josef Bacik | 907cbce | 2011-08-08 13:46:15 -0400 | [diff] [blame] | 7947 | /* |
Josef Bacik | 0712718 | 2011-08-19 10:29:59 -0400 | [diff] [blame] | 7948 | * 1 for the truncate slack space |
Josef Bacik | 907cbce | 2011-08-08 13:46:15 -0400 | [diff] [blame] | 7949 | * 1 for updating the inode. |
| 7950 | */ |
Josef Bacik | f3fe820 | 2013-01-07 17:03:21 -0500 | [diff] [blame] | 7951 | trans = btrfs_start_transaction(root, 2); |
Josef Bacik | fcb80c2 | 2011-05-03 10:40:22 -0400 | [diff] [blame] | 7952 | if (IS_ERR(trans)) { |
| 7953 | err = PTR_ERR(trans); |
| 7954 | goto out; |
| 7955 | } |
Josef Bacik | f0cd846 | 2011-03-04 14:37:08 -0500 | [diff] [blame] | 7956 | |
Josef Bacik | 907cbce | 2011-08-08 13:46:15 -0400 | [diff] [blame] | 7957 | /* Migrate the slack space for the truncate to our reserve */ |
| 7958 | ret = btrfs_block_rsv_migrate(&root->fs_info->trans_block_rsv, rsv, |
| 7959 | min_size); |
Josef Bacik | fcb80c2 | 2011-05-03 10:40:22 -0400 | [diff] [blame] | 7960 | BUG_ON(ret); |
Josef Bacik | f0cd846 | 2011-03-04 14:37:08 -0500 | [diff] [blame] | 7961 | |
Chris Mason | 5a3f23d | 2009-03-31 13:27:11 -0400 | [diff] [blame] | 7962 | /* |
| 7963 | * setattr is responsible for setting the ordered_data_close flag, |
| 7964 | * but that is only tested during the last file release. That |
| 7965 | * could happen well after the next commit, leaving a great big |
| 7966 | * window where new writes may get lost if someone chooses to write |
| 7967 | * to this file after truncating to zero |
| 7968 | * |
| 7969 | * The inode doesn't have any dirty data here, and so if we commit |
| 7970 | * this is a noop. If someone immediately starts writing to the inode |
| 7971 | * it is very likely we'll catch some of their writes in this |
| 7972 | * transaction, and the commit will find this file on the ordered |
| 7973 | * data list with good things to send down. |
| 7974 | * |
| 7975 | * This is a best effort solution, there is still a window where |
| 7976 | * using truncate to replace the contents of the file will |
| 7977 | * end up with a zero length file after a crash. |
| 7978 | */ |
Josef Bacik | 72ac3c0 | 2012-05-23 14:13:11 -0400 | [diff] [blame] | 7979 | if (inode->i_size == 0 && test_bit(BTRFS_INODE_ORDERED_DATA_CLOSE, |
| 7980 | &BTRFS_I(inode)->runtime_flags)) |
Chris Mason | 5a3f23d | 2009-03-31 13:27:11 -0400 | [diff] [blame] | 7981 | btrfs_add_ordered_operation(trans, root, inode); |
| 7982 | |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 7983 | /* |
| 7984 | * So if we truncate and then write and fsync we normally would just |
| 7985 | * write the extents that changed, which is a problem if we need to |
| 7986 | * first truncate that entire inode. So set this flag so we write out |
| 7987 | * all of the extents in the inode to the sync log so we're completely |
| 7988 | * safe. |
| 7989 | */ |
| 7990 | set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags); |
Josef Bacik | ca7e70f | 2012-08-27 17:48:15 -0400 | [diff] [blame] | 7991 | trans->block_rsv = rsv; |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 7992 | |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 7993 | while (1) { |
| 7994 | ret = btrfs_truncate_inode_items(trans, root, inode, |
| 7995 | inode->i_size, |
| 7996 | BTRFS_EXTENT_DATA_KEY); |
Josef Bacik | ca7e70f | 2012-08-27 17:48:15 -0400 | [diff] [blame] | 7997 | if (ret != -ENOSPC) { |
Josef Bacik | 3893e33 | 2011-01-31 16:03:11 -0500 | [diff] [blame] | 7998 | err = ret; |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 7999 | break; |
Josef Bacik | 3893e33 | 2011-01-31 16:03:11 -0500 | [diff] [blame] | 8000 | } |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8001 | |
Josef Bacik | fcb80c2 | 2011-05-03 10:40:22 -0400 | [diff] [blame] | 8002 | trans->block_rsv = &root->fs_info->trans_block_rsv; |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 8003 | ret = btrfs_update_inode(trans, root, inode); |
Josef Bacik | 3893e33 | 2011-01-31 16:03:11 -0500 | [diff] [blame] | 8004 | if (ret) { |
| 8005 | err = ret; |
| 8006 | break; |
| 8007 | } |
Josef Bacik | ca7e70f | 2012-08-27 17:48:15 -0400 | [diff] [blame] | 8008 | |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 8009 | btrfs_end_transaction(trans, root); |
Liu Bo | b53d3f5 | 2012-11-14 14:34:34 +0000 | [diff] [blame] | 8010 | btrfs_btree_balance_dirty(root); |
Josef Bacik | ca7e70f | 2012-08-27 17:48:15 -0400 | [diff] [blame] | 8011 | |
| 8012 | trans = btrfs_start_transaction(root, 2); |
| 8013 | if (IS_ERR(trans)) { |
| 8014 | ret = err = PTR_ERR(trans); |
| 8015 | trans = NULL; |
| 8016 | break; |
| 8017 | } |
| 8018 | |
| 8019 | ret = btrfs_block_rsv_migrate(&root->fs_info->trans_block_rsv, |
| 8020 | rsv, min_size); |
| 8021 | BUG_ON(ret); /* shouldn't happen */ |
| 8022 | trans->block_rsv = rsv; |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 8023 | } |
| 8024 | |
| 8025 | if (ret == 0 && inode->i_nlink > 0) { |
Josef Bacik | fcb80c2 | 2011-05-03 10:40:22 -0400 | [diff] [blame] | 8026 | trans->block_rsv = root->orphan_block_rsv; |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 8027 | ret = btrfs_orphan_del(trans, inode); |
Josef Bacik | 3893e33 | 2011-01-31 16:03:11 -0500 | [diff] [blame] | 8028 | if (ret) |
| 8029 | err = ret; |
Yan, Zheng | 8082510 | 2009-11-12 09:35:36 +0000 | [diff] [blame] | 8030 | } |
| 8031 | |
Chris Mason | 917c16b | 2011-11-08 14:49:59 -0500 | [diff] [blame] | 8032 | if (trans) { |
| 8033 | trans->block_rsv = &root->fs_info->trans_block_rsv; |
| 8034 | ret = btrfs_update_inode(trans, root, inode); |
| 8035 | if (ret && !err) |
| 8036 | err = ret; |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 8037 | |
Josef Bacik | 7ad85bb | 2012-01-12 19:10:12 -0500 | [diff] [blame] | 8038 | ret = btrfs_end_transaction(trans, root); |
Liu Bo | b53d3f5 | 2012-11-14 14:34:34 +0000 | [diff] [blame] | 8039 | btrfs_btree_balance_dirty(root); |
Chris Mason | 917c16b | 2011-11-08 14:49:59 -0500 | [diff] [blame] | 8040 | } |
Josef Bacik | fcb80c2 | 2011-05-03 10:40:22 -0400 | [diff] [blame] | 8041 | |
| 8042 | out: |
| 8043 | btrfs_free_block_rsv(root, rsv); |
| 8044 | |
Josef Bacik | 3893e33 | 2011-01-31 16:03:11 -0500 | [diff] [blame] | 8045 | if (ret && !err) |
| 8046 | err = ret; |
Josef Bacik | a41ad39 | 2011-01-31 15:30:16 -0500 | [diff] [blame] | 8047 | |
Josef Bacik | 3893e33 | 2011-01-31 16:03:11 -0500 | [diff] [blame] | 8048 | return err; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8049 | } |
| 8050 | |
Sven Wegener | 3b96362 | 2008-06-09 21:57:42 -0400 | [diff] [blame] | 8051 | /* |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 8052 | * create a new subvolume directory/inode (helper for the ioctl). |
| 8053 | */ |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 8054 | int btrfs_create_subvol_root(struct btrfs_trans_handle *trans, |
Filipe David Borba Manana | 6354192 | 2014-01-07 11:47:46 +0000 | [diff] [blame] | 8055 | struct btrfs_root *new_root, |
| 8056 | struct btrfs_root *parent_root, |
| 8057 | u64 new_dirid) |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8058 | { |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8059 | struct inode *inode; |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 8060 | int err; |
Chris Mason | 00e4e6b | 2008-08-05 11:18:09 -0400 | [diff] [blame] | 8061 | u64 index = 0; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8062 | |
Florian Albrechtskirchinger | 12fc9d0 | 2012-02-10 22:15:54 +0100 | [diff] [blame] | 8063 | inode = btrfs_new_inode(trans, new_root, NULL, "..", 2, |
| 8064 | new_dirid, new_dirid, |
| 8065 | S_IFDIR | (~current_umask() & S_IRWXUGO), |
| 8066 | &index); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 8067 | if (IS_ERR(inode)) |
Christoph Hellwig | f46b5a6 | 2008-06-11 21:53:53 -0400 | [diff] [blame] | 8068 | return PTR_ERR(inode); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8069 | inode->i_op = &btrfs_dir_inode_operations; |
| 8070 | inode->i_fop = &btrfs_dir_file_operations; |
| 8071 | |
Miklos Szeredi | bfe8684 | 2011-10-28 14:13:29 +0200 | [diff] [blame] | 8072 | set_nlink(inode, 1); |
Chris Mason | dbe674a | 2008-07-17 12:54:05 -0400 | [diff] [blame] | 8073 | btrfs_i_size_write(inode, 0); |
Sven Wegener | 3b96362 | 2008-06-09 21:57:42 -0400 | [diff] [blame] | 8074 | |
Filipe David Borba Manana | 6354192 | 2014-01-07 11:47:46 +0000 | [diff] [blame] | 8075 | err = btrfs_subvol_inherit_props(trans, new_root, parent_root); |
| 8076 | if (err) |
| 8077 | btrfs_err(new_root->fs_info, |
David Sterba | 351fd35 | 2014-05-15 16:48:20 +0200 | [diff] [blame] | 8078 | "error inheriting subvolume %llu properties: %d", |
Filipe David Borba Manana | 6354192 | 2014-01-07 11:47:46 +0000 | [diff] [blame] | 8079 | new_root->root_key.objectid, err); |
| 8080 | |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 8081 | err = btrfs_update_inode(trans, new_root, inode); |
Christoph Hellwig | cb8e709 | 2008-10-09 13:39:39 -0400 | [diff] [blame] | 8082 | |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 8083 | iput(inode); |
Mark Fasheh | ce59897 | 2011-07-26 11:32:23 -0700 | [diff] [blame] | 8084 | return err; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8085 | } |
| 8086 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8087 | struct inode *btrfs_alloc_inode(struct super_block *sb) |
| 8088 | { |
| 8089 | struct btrfs_inode *ei; |
Yan, Zheng | 2ead6ae | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8090 | struct inode *inode; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8091 | |
| 8092 | ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS); |
| 8093 | if (!ei) |
| 8094 | return NULL; |
Yan, Zheng | 2ead6ae | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8095 | |
| 8096 | ei->root = NULL; |
Yan, Zheng | 2ead6ae | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8097 | ei->generation = 0; |
Josef Bacik | 15ee9bc | 2007-08-10 16:22:09 -0400 | [diff] [blame] | 8098 | ei->last_trans = 0; |
Chris Mason | 257c62e | 2009-10-13 13:21:08 -0400 | [diff] [blame] | 8099 | ei->last_sub_trans = 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 8100 | ei->logged_trans = 0; |
Yan, Zheng | 2ead6ae | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8101 | ei->delalloc_bytes = 0; |
Yan, Zheng | 2ead6ae | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8102 | ei->disk_i_size = 0; |
| 8103 | ei->flags = 0; |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 8104 | ei->csum_bytes = 0; |
Yan, Zheng | 2ead6ae | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8105 | ei->index_cnt = (u64)-1; |
Miao Xie | 67de117 | 2013-12-26 13:07:06 +0800 | [diff] [blame] | 8106 | ei->dir_index = 0; |
Yan, Zheng | 2ead6ae | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8107 | ei->last_unlink_trans = 0; |
Liu Bo | 46d8bc3 | 2012-08-29 01:07:55 -0600 | [diff] [blame] | 8108 | ei->last_log_commit = 0; |
Yan, Zheng | 2ead6ae | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8109 | |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 8110 | spin_lock_init(&ei->lock); |
| 8111 | ei->outstanding_extents = 0; |
| 8112 | ei->reserved_extents = 0; |
Yan, Zheng | 2ead6ae | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8113 | |
Josef Bacik | 72ac3c0 | 2012-05-23 14:13:11 -0400 | [diff] [blame] | 8114 | ei->runtime_flags = 0; |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 8115 | ei->force_compress = BTRFS_COMPRESS_NONE; |
Yan, Zheng | 2ead6ae | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8116 | |
Miao Xie | 16cdcec | 2011-04-22 18:12:22 +0800 | [diff] [blame] | 8117 | ei->delayed_node = NULL; |
| 8118 | |
Yan, Zheng | 2ead6ae | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8119 | inode = &ei->vfs_inode; |
David Sterba | a8067e0 | 2011-04-21 00:34:43 +0200 | [diff] [blame] | 8120 | extent_map_tree_init(&ei->extent_tree); |
David Sterba | f993c88 | 2011-04-20 23:35:57 +0200 | [diff] [blame] | 8121 | extent_io_tree_init(&ei->io_tree, &inode->i_data); |
| 8122 | extent_io_tree_init(&ei->io_failure_tree, &inode->i_data); |
Josef Bacik | 0b32f4b | 2012-03-13 09:38:00 -0400 | [diff] [blame] | 8123 | ei->io_tree.track_uptodate = 1; |
| 8124 | ei->io_failure_tree.track_uptodate = 1; |
Josef Bacik | b812ce2 | 2012-11-16 13:56:32 -0500 | [diff] [blame] | 8125 | atomic_set(&ei->sync_writers, 0); |
Yan, Zheng | 2ead6ae | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8126 | mutex_init(&ei->log_mutex); |
Josef Bacik | f248679 | 2012-01-13 12:09:22 -0500 | [diff] [blame] | 8127 | mutex_init(&ei->delalloc_mutex); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8128 | btrfs_ordered_inode_tree_init(&ei->ordered_tree); |
Yan, Zheng | 2ead6ae | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8129 | INIT_LIST_HEAD(&ei->delalloc_inodes); |
Chris Mason | 5a3f23d | 2009-03-31 13:27:11 -0400 | [diff] [blame] | 8130 | INIT_LIST_HEAD(&ei->ordered_operations); |
Yan, Zheng | 2ead6ae | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8131 | RB_CLEAR_NODE(&ei->rb_node); |
| 8132 | |
| 8133 | return inode; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8134 | } |
| 8135 | |
Josef Bacik | aaedb55 | 2013-10-11 14:44:09 -0400 | [diff] [blame] | 8136 | #ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS |
| 8137 | void btrfs_test_destroy_inode(struct inode *inode) |
| 8138 | { |
| 8139 | btrfs_drop_extent_cache(inode, 0, (u64)-1, 0); |
| 8140 | kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode)); |
| 8141 | } |
| 8142 | #endif |
| 8143 | |
Nick Piggin | fa0d7e3d | 2011-01-07 17:49:49 +1100 | [diff] [blame] | 8144 | static void btrfs_i_callback(struct rcu_head *head) |
| 8145 | { |
| 8146 | struct inode *inode = container_of(head, struct inode, i_rcu); |
Nick Piggin | fa0d7e3d | 2011-01-07 17:49:49 +1100 | [diff] [blame] | 8147 | kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode)); |
| 8148 | } |
| 8149 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8150 | void btrfs_destroy_inode(struct inode *inode) |
| 8151 | { |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8152 | struct btrfs_ordered_extent *ordered; |
Chris Mason | 5a3f23d | 2009-03-31 13:27:11 -0400 | [diff] [blame] | 8153 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 8154 | |
Al Viro | b3d9b7a | 2012-06-09 13:51:19 -0400 | [diff] [blame] | 8155 | WARN_ON(!hlist_empty(&inode->i_dentry)); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8156 | WARN_ON(inode->i_data.nrpages); |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 8157 | WARN_ON(BTRFS_I(inode)->outstanding_extents); |
| 8158 | WARN_ON(BTRFS_I(inode)->reserved_extents); |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 8159 | WARN_ON(BTRFS_I(inode)->delalloc_bytes); |
| 8160 | WARN_ON(BTRFS_I(inode)->csum_bytes); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8161 | |
Chris Mason | 5a3f23d | 2009-03-31 13:27:11 -0400 | [diff] [blame] | 8162 | /* |
Josef Bacik | a6dbd42 | 2009-11-11 15:53:34 -0500 | [diff] [blame] | 8163 | * This can happen where we create an inode, but somebody else also |
| 8164 | * created the same inode and we need to destroy the one we already |
| 8165 | * created. |
| 8166 | */ |
| 8167 | if (!root) |
| 8168 | goto free; |
| 8169 | |
| 8170 | /* |
Chris Mason | 5a3f23d | 2009-03-31 13:27:11 -0400 | [diff] [blame] | 8171 | * Make sure we're properly removed from the ordered operation |
| 8172 | * lists. |
| 8173 | */ |
| 8174 | smp_mb(); |
| 8175 | if (!list_empty(&BTRFS_I(inode)->ordered_operations)) { |
Miao Xie | 199c2a9 | 2013-05-15 07:48:23 +0000 | [diff] [blame] | 8176 | spin_lock(&root->fs_info->ordered_root_lock); |
Chris Mason | 5a3f23d | 2009-03-31 13:27:11 -0400 | [diff] [blame] | 8177 | list_del_init(&BTRFS_I(inode)->ordered_operations); |
Miao Xie | 199c2a9 | 2013-05-15 07:48:23 +0000 | [diff] [blame] | 8178 | spin_unlock(&root->fs_info->ordered_root_lock); |
Chris Mason | 5a3f23d | 2009-03-31 13:27:11 -0400 | [diff] [blame] | 8179 | } |
| 8180 | |
Josef Bacik | 8a35d95 | 2012-05-23 14:26:42 -0400 | [diff] [blame] | 8181 | if (test_bit(BTRFS_INODE_HAS_ORPHAN_ITEM, |
| 8182 | &BTRFS_I(inode)->runtime_flags)) { |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 8183 | btrfs_info(root->fs_info, "inode %llu still on the orphan list", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 8184 | btrfs_ino(inode)); |
Josef Bacik | 8a35d95 | 2012-05-23 14:26:42 -0400 | [diff] [blame] | 8185 | atomic_dec(&root->orphan_inodes); |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 8186 | } |
Josef Bacik | 7b12876 | 2008-07-24 12:17:14 -0400 | [diff] [blame] | 8187 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 8188 | while (1) { |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8189 | ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1); |
| 8190 | if (!ordered) |
| 8191 | break; |
| 8192 | else { |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 8193 | btrfs_err(root->fs_info, "found ordered extent %llu %llu on inode cleanup", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 8194 | ordered->file_offset, ordered->len); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8195 | btrfs_remove_ordered_extent(inode, ordered); |
| 8196 | btrfs_put_ordered_extent(ordered); |
| 8197 | btrfs_put_ordered_extent(ordered); |
| 8198 | } |
| 8199 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8200 | inode_tree_del(inode); |
Zheng Yan | 5b21f2e | 2008-09-26 10:05:38 -0400 | [diff] [blame] | 8201 | btrfs_drop_extent_cache(inode, 0, (u64)-1, 0); |
Josef Bacik | a6dbd42 | 2009-11-11 15:53:34 -0500 | [diff] [blame] | 8202 | free: |
Nick Piggin | fa0d7e3d | 2011-01-07 17:49:49 +1100 | [diff] [blame] | 8203 | call_rcu(&inode->i_rcu, btrfs_i_callback); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8204 | } |
| 8205 | |
Al Viro | 45321ac | 2010-06-07 13:43:19 -0400 | [diff] [blame] | 8206 | int btrfs_drop_inode(struct inode *inode) |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 8207 | { |
| 8208 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Al Viro | 45321ac | 2010-06-07 13:43:19 -0400 | [diff] [blame] | 8209 | |
Naohiro Aota | 6379ef9 | 2013-06-06 09:56:34 +0000 | [diff] [blame] | 8210 | if (root == NULL) |
| 8211 | return 1; |
| 8212 | |
Liu Bo | fa6ac87 | 2013-02-20 14:10:23 +0000 | [diff] [blame] | 8213 | /* the snap/subvol tree is on deleting */ |
Stefan Behrens | 69e9c6c | 2013-09-05 16:58:43 +0200 | [diff] [blame] | 8214 | if (btrfs_root_refs(&root->root_item) == 0) |
Al Viro | 45321ac | 2010-06-07 13:43:19 -0400 | [diff] [blame] | 8215 | return 1; |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 8216 | else |
Al Viro | 45321ac | 2010-06-07 13:43:19 -0400 | [diff] [blame] | 8217 | return generic_drop_inode(inode); |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 8218 | } |
| 8219 | |
Sven Wegener | 0ee0fda | 2008-07-30 16:54:26 -0400 | [diff] [blame] | 8220 | static void init_once(void *foo) |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8221 | { |
| 8222 | struct btrfs_inode *ei = (struct btrfs_inode *) foo; |
| 8223 | |
| 8224 | inode_init_once(&ei->vfs_inode); |
| 8225 | } |
| 8226 | |
| 8227 | void btrfs_destroy_cachep(void) |
| 8228 | { |
Kirill A. Shutemov | 8c0a853 | 2012-09-26 11:33:07 +1000 | [diff] [blame] | 8229 | /* |
| 8230 | * Make sure all delayed rcu free inodes are flushed before we |
| 8231 | * destroy cache. |
| 8232 | */ |
| 8233 | rcu_barrier(); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8234 | if (btrfs_inode_cachep) |
| 8235 | kmem_cache_destroy(btrfs_inode_cachep); |
| 8236 | if (btrfs_trans_handle_cachep) |
| 8237 | kmem_cache_destroy(btrfs_trans_handle_cachep); |
| 8238 | if (btrfs_transaction_cachep) |
| 8239 | kmem_cache_destroy(btrfs_transaction_cachep); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8240 | if (btrfs_path_cachep) |
| 8241 | kmem_cache_destroy(btrfs_path_cachep); |
Josef Bacik | dc89e98 | 2011-01-28 17:05:48 -0500 | [diff] [blame] | 8242 | if (btrfs_free_space_cachep) |
| 8243 | kmem_cache_destroy(btrfs_free_space_cachep); |
Miao Xie | 8ccf6f19 | 2012-10-25 09:28:04 +0000 | [diff] [blame] | 8244 | if (btrfs_delalloc_work_cachep) |
| 8245 | kmem_cache_destroy(btrfs_delalloc_work_cachep); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8246 | } |
| 8247 | |
| 8248 | int btrfs_init_cachep(void) |
| 8249 | { |
David Sterba | 837e197 | 2012-09-07 03:00:48 -0600 | [diff] [blame] | 8250 | btrfs_inode_cachep = kmem_cache_create("btrfs_inode", |
Christoph Hellwig | 9601e3f | 2009-04-13 15:33:09 +0200 | [diff] [blame] | 8251 | sizeof(struct btrfs_inode), 0, |
| 8252 | SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, init_once); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8253 | if (!btrfs_inode_cachep) |
| 8254 | goto fail; |
Christoph Hellwig | 9601e3f | 2009-04-13 15:33:09 +0200 | [diff] [blame] | 8255 | |
David Sterba | 837e197 | 2012-09-07 03:00:48 -0600 | [diff] [blame] | 8256 | btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle", |
Christoph Hellwig | 9601e3f | 2009-04-13 15:33:09 +0200 | [diff] [blame] | 8257 | sizeof(struct btrfs_trans_handle), 0, |
| 8258 | SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8259 | if (!btrfs_trans_handle_cachep) |
| 8260 | goto fail; |
Christoph Hellwig | 9601e3f | 2009-04-13 15:33:09 +0200 | [diff] [blame] | 8261 | |
David Sterba | 837e197 | 2012-09-07 03:00:48 -0600 | [diff] [blame] | 8262 | btrfs_transaction_cachep = kmem_cache_create("btrfs_transaction", |
Christoph Hellwig | 9601e3f | 2009-04-13 15:33:09 +0200 | [diff] [blame] | 8263 | sizeof(struct btrfs_transaction), 0, |
| 8264 | SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8265 | if (!btrfs_transaction_cachep) |
| 8266 | goto fail; |
Christoph Hellwig | 9601e3f | 2009-04-13 15:33:09 +0200 | [diff] [blame] | 8267 | |
David Sterba | 837e197 | 2012-09-07 03:00:48 -0600 | [diff] [blame] | 8268 | btrfs_path_cachep = kmem_cache_create("btrfs_path", |
Christoph Hellwig | 9601e3f | 2009-04-13 15:33:09 +0200 | [diff] [blame] | 8269 | sizeof(struct btrfs_path), 0, |
| 8270 | SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8271 | if (!btrfs_path_cachep) |
| 8272 | goto fail; |
Christoph Hellwig | 9601e3f | 2009-04-13 15:33:09 +0200 | [diff] [blame] | 8273 | |
David Sterba | 837e197 | 2012-09-07 03:00:48 -0600 | [diff] [blame] | 8274 | btrfs_free_space_cachep = kmem_cache_create("btrfs_free_space", |
Josef Bacik | dc89e98 | 2011-01-28 17:05:48 -0500 | [diff] [blame] | 8275 | sizeof(struct btrfs_free_space), 0, |
| 8276 | SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL); |
| 8277 | if (!btrfs_free_space_cachep) |
| 8278 | goto fail; |
| 8279 | |
Miao Xie | 8ccf6f19 | 2012-10-25 09:28:04 +0000 | [diff] [blame] | 8280 | btrfs_delalloc_work_cachep = kmem_cache_create("btrfs_delalloc_work", |
| 8281 | sizeof(struct btrfs_delalloc_work), 0, |
| 8282 | SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, |
| 8283 | NULL); |
| 8284 | if (!btrfs_delalloc_work_cachep) |
| 8285 | goto fail; |
| 8286 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8287 | return 0; |
| 8288 | fail: |
| 8289 | btrfs_destroy_cachep(); |
| 8290 | return -ENOMEM; |
| 8291 | } |
| 8292 | |
| 8293 | static int btrfs_getattr(struct vfsmount *mnt, |
| 8294 | struct dentry *dentry, struct kstat *stat) |
| 8295 | { |
Miao Xie | df0af1a | 2013-01-29 10:11:59 +0000 | [diff] [blame] | 8296 | u64 delalloc_bytes; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8297 | struct inode *inode = dentry->d_inode; |
David Sterba | fadc0d8 | 2011-11-20 07:33:38 -0500 | [diff] [blame] | 8298 | u32 blocksize = inode->i_sb->s_blocksize; |
| 8299 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8300 | generic_fillattr(inode, stat); |
Al Viro | 0ee5dc6 | 2011-07-07 15:44:25 -0400 | [diff] [blame] | 8301 | stat->dev = BTRFS_I(inode)->root->anon_dev; |
Chris Mason | d666746 | 2008-01-03 14:51:00 -0500 | [diff] [blame] | 8302 | stat->blksize = PAGE_CACHE_SIZE; |
Miao Xie | df0af1a | 2013-01-29 10:11:59 +0000 | [diff] [blame] | 8303 | |
| 8304 | spin_lock(&BTRFS_I(inode)->lock); |
| 8305 | delalloc_bytes = BTRFS_I(inode)->delalloc_bytes; |
| 8306 | spin_unlock(&BTRFS_I(inode)->lock); |
David Sterba | fadc0d8 | 2011-11-20 07:33:38 -0500 | [diff] [blame] | 8307 | stat->blocks = (ALIGN(inode_get_bytes(inode), blocksize) + |
Miao Xie | df0af1a | 2013-01-29 10:11:59 +0000 | [diff] [blame] | 8308 | ALIGN(delalloc_bytes, blocksize)) >> 9; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8309 | return 0; |
| 8310 | } |
| 8311 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 8312 | static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry, |
| 8313 | struct inode *new_dir, struct dentry *new_dentry) |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8314 | { |
| 8315 | struct btrfs_trans_handle *trans; |
| 8316 | struct btrfs_root *root = BTRFS_I(old_dir)->root; |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 8317 | struct btrfs_root *dest = BTRFS_I(new_dir)->root; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8318 | struct inode *new_inode = new_dentry->d_inode; |
| 8319 | struct inode *old_inode = old_dentry->d_inode; |
| 8320 | struct timespec ctime = CURRENT_TIME; |
Chris Mason | 00e4e6b | 2008-08-05 11:18:09 -0400 | [diff] [blame] | 8321 | u64 index = 0; |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 8322 | u64 root_objectid; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8323 | int ret; |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 8324 | u64 old_ino = btrfs_ino(old_inode); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8325 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 8326 | if (btrfs_ino(new_dir) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID) |
Yan, Zheng | f679a84 | 2009-09-24 09:17:31 -0400 | [diff] [blame] | 8327 | return -EPERM; |
| 8328 | |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 8329 | /* we only allow rename subvolume link between subvolumes */ |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 8330 | if (old_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest) |
Chris Mason | 3394e16 | 2008-11-17 20:42:26 -0500 | [diff] [blame] | 8331 | return -EXDEV; |
| 8332 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 8333 | if (old_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID || |
| 8334 | (new_inode && btrfs_ino(new_inode) == BTRFS_FIRST_FREE_OBJECTID)) |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 8335 | return -ENOTEMPTY; |
| 8336 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8337 | if (S_ISDIR(old_inode->i_mode) && new_inode && |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 8338 | new_inode->i_size > BTRFS_EMPTY_DIR_SIZE) |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8339 | return -ENOTEMPTY; |
Chris Mason | 9c52057 | 2012-12-17 14:26:57 -0500 | [diff] [blame] | 8340 | |
| 8341 | |
| 8342 | /* check for collisions, even if the name isn't there */ |
Josef Bacik | 4871c15 | 2013-10-09 12:24:04 -0400 | [diff] [blame] | 8343 | ret = btrfs_check_dir_item_collision(dest, new_dir->i_ino, |
Chris Mason | 9c52057 | 2012-12-17 14:26:57 -0500 | [diff] [blame] | 8344 | new_dentry->d_name.name, |
| 8345 | new_dentry->d_name.len); |
| 8346 | |
| 8347 | if (ret) { |
| 8348 | if (ret == -EEXIST) { |
| 8349 | /* we shouldn't get |
| 8350 | * eexist without a new_inode */ |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 8351 | if (WARN_ON(!new_inode)) { |
Chris Mason | 9c52057 | 2012-12-17 14:26:57 -0500 | [diff] [blame] | 8352 | return ret; |
| 8353 | } |
| 8354 | } else { |
| 8355 | /* maybe -EOVERFLOW */ |
| 8356 | return ret; |
| 8357 | } |
| 8358 | } |
| 8359 | ret = 0; |
| 8360 | |
Chris Mason | 5a3f23d | 2009-03-31 13:27:11 -0400 | [diff] [blame] | 8361 | /* |
| 8362 | * we're using rename to replace one file with another. |
| 8363 | * and the replacement file is large. Start IO on it now so |
| 8364 | * we don't add too much work to the end of the transaction |
| 8365 | */ |
Bartlomiej Zolnierkiewicz | 4baf8c9 | 2009-08-07 13:47:08 -0400 | [diff] [blame] | 8366 | 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] | 8367 | old_inode->i_size > BTRFS_ORDERED_OPERATIONS_FLUSH_LIMIT) |
| 8368 | filemap_flush(old_inode->i_mapping); |
| 8369 | |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 8370 | /* close the racy window with snapshot create/destroy ioctl */ |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 8371 | if (old_ino == BTRFS_FIRST_FREE_OBJECTID) |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 8372 | down_read(&root->fs_info->subvol_sem); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 8373 | /* |
| 8374 | * We want to reserve the absolute worst case amount of items. So if |
| 8375 | * both inodes are subvols and we need to unlink them then that would |
| 8376 | * require 4 item modifications, but if they are both normal inodes it |
| 8377 | * would require 5 item modifications, so we'll assume their normal |
| 8378 | * inodes. So 5 * 2 is 10, plus 1 for the new link, so 11 total items |
| 8379 | * should cover the worst case number of items we'll modify. |
| 8380 | */ |
Josef Bacik | 6e137ed | 2013-03-26 15:26:55 -0400 | [diff] [blame] | 8381 | trans = btrfs_start_transaction(root, 11); |
Johann Lombardi | b44c59a | 2011-03-31 13:23:47 +0000 | [diff] [blame] | 8382 | if (IS_ERR(trans)) { |
| 8383 | ret = PTR_ERR(trans); |
| 8384 | goto out_notrans; |
| 8385 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 8386 | |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 8387 | if (dest != root) |
| 8388 | btrfs_record_root_in_trans(trans, dest); |
| 8389 | |
Yan, Zheng | a571952 | 2009-09-24 09:17:31 -0400 | [diff] [blame] | 8390 | ret = btrfs_set_inode_index(new_dir, &index); |
| 8391 | if (ret) |
| 8392 | goto out_fail; |
Chris Mason | 5a3f23d | 2009-03-31 13:27:11 -0400 | [diff] [blame] | 8393 | |
Miao Xie | 67de117 | 2013-12-26 13:07:06 +0800 | [diff] [blame] | 8394 | BTRFS_I(old_inode)->dir_index = 0ULL; |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 8395 | if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) { |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 8396 | /* force full log commit if subvolume involved. */ |
Miao Xie | 995946d | 2014-04-02 19:51:06 +0800 | [diff] [blame] | 8397 | btrfs_set_log_full_commit(root->fs_info, trans); |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 8398 | } else { |
Yan, Zheng | a571952 | 2009-09-24 09:17:31 -0400 | [diff] [blame] | 8399 | ret = btrfs_insert_inode_ref(trans, dest, |
| 8400 | new_dentry->d_name.name, |
| 8401 | new_dentry->d_name.len, |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 8402 | old_ino, |
| 8403 | btrfs_ino(new_dir), index); |
Yan, Zheng | a571952 | 2009-09-24 09:17:31 -0400 | [diff] [blame] | 8404 | if (ret) |
| 8405 | goto out_fail; |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 8406 | /* |
| 8407 | * this is an ugly little race, but the rename is required |
| 8408 | * to make sure that if we crash, the inode is either at the |
| 8409 | * old name or the new one. pinning the log transaction lets |
| 8410 | * us make sure we don't allow a log commit to come in after |
| 8411 | * we unlink the name but before we add the new name back in. |
| 8412 | */ |
| 8413 | btrfs_pin_log_trans(root); |
| 8414 | } |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 8415 | /* |
Chris Mason | 5a3f23d | 2009-03-31 13:27:11 -0400 | [diff] [blame] | 8416 | * make sure the inode gets flushed if it is replacing |
| 8417 | * something. |
| 8418 | */ |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 8419 | 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] | 8420 | btrfs_add_ordered_operation(trans, root, old_inode); |
Chris Mason | 5a3f23d | 2009-03-31 13:27:11 -0400 | [diff] [blame] | 8421 | |
Josef Bacik | 0c4d2d9 | 2012-04-05 15:03:02 -0400 | [diff] [blame] | 8422 | inode_inc_iversion(old_dir); |
| 8423 | inode_inc_iversion(new_dir); |
| 8424 | inode_inc_iversion(old_inode); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8425 | old_dir->i_ctime = old_dir->i_mtime = ctime; |
| 8426 | new_dir->i_ctime = new_dir->i_mtime = ctime; |
| 8427 | old_inode->i_ctime = ctime; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 8428 | |
Chris Mason | 12fcfd2 | 2009-03-24 10:24:20 -0400 | [diff] [blame] | 8429 | if (old_dentry->d_parent != new_dentry->d_parent) |
| 8430 | btrfs_record_unlink_dir(trans, old_dir, old_inode, 1); |
| 8431 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 8432 | if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) { |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 8433 | root_objectid = BTRFS_I(old_inode)->root->root_key.objectid; |
| 8434 | ret = btrfs_unlink_subvol(trans, root, old_dir, root_objectid, |
| 8435 | old_dentry->d_name.name, |
| 8436 | old_dentry->d_name.len); |
| 8437 | } else { |
Al Viro | 9298679 | 2011-03-04 17:14:37 +0000 | [diff] [blame] | 8438 | ret = __btrfs_unlink_inode(trans, root, old_dir, |
| 8439 | old_dentry->d_inode, |
| 8440 | old_dentry->d_name.name, |
| 8441 | old_dentry->d_name.len); |
| 8442 | if (!ret) |
| 8443 | ret = btrfs_update_inode(trans, root, old_inode); |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 8444 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8445 | if (ret) { |
| 8446 | btrfs_abort_transaction(trans, root, ret); |
| 8447 | goto out_fail; |
| 8448 | } |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8449 | |
| 8450 | if (new_inode) { |
Josef Bacik | 0c4d2d9 | 2012-04-05 15:03:02 -0400 | [diff] [blame] | 8451 | inode_inc_iversion(new_inode); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8452 | new_inode->i_ctime = CURRENT_TIME; |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 8453 | if (unlikely(btrfs_ino(new_inode) == |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 8454 | BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) { |
| 8455 | root_objectid = BTRFS_I(new_inode)->location.objectid; |
| 8456 | ret = btrfs_unlink_subvol(trans, dest, new_dir, |
| 8457 | root_objectid, |
| 8458 | new_dentry->d_name.name, |
| 8459 | new_dentry->d_name.len); |
| 8460 | BUG_ON(new_inode->i_nlink == 0); |
| 8461 | } else { |
| 8462 | ret = btrfs_unlink_inode(trans, dest, new_dir, |
| 8463 | new_dentry->d_inode, |
| 8464 | new_dentry->d_name.name, |
| 8465 | new_dentry->d_name.len); |
| 8466 | } |
Josef Bacik | 4ef31a4 | 2013-08-13 14:10:08 -0400 | [diff] [blame] | 8467 | if (!ret && new_inode->i_nlink == 0) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 8468 | ret = btrfs_orphan_add(trans, new_dentry->d_inode); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8469 | if (ret) { |
| 8470 | btrfs_abort_transaction(trans, root, ret); |
| 8471 | goto out_fail; |
| 8472 | } |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8473 | } |
Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 8474 | |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 8475 | ret = btrfs_add_link(trans, new_dir, old_inode, |
| 8476 | new_dentry->d_name.name, |
Yan, Zheng | a571952 | 2009-09-24 09:17:31 -0400 | [diff] [blame] | 8477 | new_dentry->d_name.len, 0, index); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8478 | if (ret) { |
| 8479 | btrfs_abort_transaction(trans, root, ret); |
| 8480 | goto out_fail; |
| 8481 | } |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8482 | |
Miao Xie | 67de117 | 2013-12-26 13:07:06 +0800 | [diff] [blame] | 8483 | if (old_inode->i_nlink == 1) |
| 8484 | BTRFS_I(old_inode)->dir_index = index; |
| 8485 | |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 8486 | if (old_ino != BTRFS_FIRST_FREE_OBJECTID) { |
Al Viro | 10d9f30 | 2011-07-16 23:09:10 -0400 | [diff] [blame] | 8487 | struct dentry *parent = new_dentry->d_parent; |
Josef Bacik | 6a91221 | 2010-11-20 09:48:00 +0000 | [diff] [blame] | 8488 | btrfs_log_new_name(trans, old_inode, old_dir, parent); |
Yan, Zheng | 4df27c4d | 2009-09-21 15:56:00 -0400 | [diff] [blame] | 8489 | btrfs_end_log_trans(root); |
| 8490 | } |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8491 | out_fail: |
Josef Bacik | 7ad85bb | 2012-01-12 19:10:12 -0500 | [diff] [blame] | 8492 | btrfs_end_transaction(trans, root); |
Johann Lombardi | b44c59a | 2011-03-31 13:23:47 +0000 | [diff] [blame] | 8493 | out_notrans: |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 8494 | if (old_ino == BTRFS_FIRST_FREE_OBJECTID) |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 8495 | up_read(&root->fs_info->subvol_sem); |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 8496 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8497 | return ret; |
| 8498 | } |
| 8499 | |
Miao Xie | 8ccf6f19 | 2012-10-25 09:28:04 +0000 | [diff] [blame] | 8500 | static void btrfs_run_delalloc_work(struct btrfs_work *work) |
| 8501 | { |
| 8502 | struct btrfs_delalloc_work *delalloc_work; |
Josef Bacik | 9f23e28 | 2013-10-28 15:03:41 -0400 | [diff] [blame] | 8503 | struct inode *inode; |
Miao Xie | 8ccf6f19 | 2012-10-25 09:28:04 +0000 | [diff] [blame] | 8504 | |
| 8505 | delalloc_work = container_of(work, struct btrfs_delalloc_work, |
| 8506 | work); |
Josef Bacik | 9f23e28 | 2013-10-28 15:03:41 -0400 | [diff] [blame] | 8507 | inode = delalloc_work->inode; |
| 8508 | if (delalloc_work->wait) { |
| 8509 | btrfs_wait_ordered_range(inode, 0, (u64)-1); |
| 8510 | } else { |
| 8511 | filemap_flush(inode->i_mapping); |
| 8512 | if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT, |
| 8513 | &BTRFS_I(inode)->runtime_flags)) |
| 8514 | filemap_flush(inode->i_mapping); |
| 8515 | } |
Miao Xie | 8ccf6f19 | 2012-10-25 09:28:04 +0000 | [diff] [blame] | 8516 | |
| 8517 | if (delalloc_work->delay_iput) |
Josef Bacik | 9f23e28 | 2013-10-28 15:03:41 -0400 | [diff] [blame] | 8518 | btrfs_add_delayed_iput(inode); |
Miao Xie | 8ccf6f19 | 2012-10-25 09:28:04 +0000 | [diff] [blame] | 8519 | else |
Josef Bacik | 9f23e28 | 2013-10-28 15:03:41 -0400 | [diff] [blame] | 8520 | iput(inode); |
Miao Xie | 8ccf6f19 | 2012-10-25 09:28:04 +0000 | [diff] [blame] | 8521 | complete(&delalloc_work->completion); |
| 8522 | } |
| 8523 | |
| 8524 | struct btrfs_delalloc_work *btrfs_alloc_delalloc_work(struct inode *inode, |
| 8525 | int wait, int delay_iput) |
| 8526 | { |
| 8527 | struct btrfs_delalloc_work *work; |
| 8528 | |
| 8529 | work = kmem_cache_zalloc(btrfs_delalloc_work_cachep, GFP_NOFS); |
| 8530 | if (!work) |
| 8531 | return NULL; |
| 8532 | |
| 8533 | init_completion(&work->completion); |
| 8534 | INIT_LIST_HEAD(&work->list); |
| 8535 | work->inode = inode; |
| 8536 | work->wait = wait; |
| 8537 | work->delay_iput = delay_iput; |
Qu Wenruo | a44903a | 2014-02-28 10:46:09 +0800 | [diff] [blame] | 8538 | btrfs_init_work(&work->work, btrfs_run_delalloc_work, NULL, NULL); |
Miao Xie | 8ccf6f19 | 2012-10-25 09:28:04 +0000 | [diff] [blame] | 8539 | |
| 8540 | return work; |
| 8541 | } |
| 8542 | |
| 8543 | void btrfs_wait_and_free_delalloc_work(struct btrfs_delalloc_work *work) |
| 8544 | { |
| 8545 | wait_for_completion(&work->completion); |
| 8546 | kmem_cache_free(btrfs_delalloc_work_cachep, work); |
| 8547 | } |
| 8548 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 8549 | /* |
| 8550 | * some fairly slow code that needs optimization. This walks the list |
| 8551 | * of all the inodes with pending delalloc and forces them to disk. |
| 8552 | */ |
Miao Xie | 6c255e6 | 2014-03-06 13:55:01 +0800 | [diff] [blame] | 8553 | static int __start_delalloc_inodes(struct btrfs_root *root, int delay_iput, |
| 8554 | int nr) |
Chris Mason | ea8c281 | 2008-08-04 23:17:27 -0400 | [diff] [blame] | 8555 | { |
Chris Mason | ea8c281 | 2008-08-04 23:17:27 -0400 | [diff] [blame] | 8556 | struct btrfs_inode *binode; |
Zheng Yan | 5b21f2e | 2008-09-26 10:05:38 -0400 | [diff] [blame] | 8557 | struct inode *inode; |
Miao Xie | 8ccf6f19 | 2012-10-25 09:28:04 +0000 | [diff] [blame] | 8558 | struct btrfs_delalloc_work *work, *next; |
| 8559 | struct list_head works; |
Miao Xie | 1eafa6c | 2013-01-22 10:49:00 +0000 | [diff] [blame] | 8560 | struct list_head splice; |
Miao Xie | 8ccf6f19 | 2012-10-25 09:28:04 +0000 | [diff] [blame] | 8561 | int ret = 0; |
Chris Mason | ea8c281 | 2008-08-04 23:17:27 -0400 | [diff] [blame] | 8562 | |
Miao Xie | 8ccf6f19 | 2012-10-25 09:28:04 +0000 | [diff] [blame] | 8563 | INIT_LIST_HEAD(&works); |
Miao Xie | 1eafa6c | 2013-01-22 10:49:00 +0000 | [diff] [blame] | 8564 | INIT_LIST_HEAD(&splice); |
Miao Xie | 63607cc | 2013-01-22 10:50:35 +0000 | [diff] [blame] | 8565 | |
Miao Xie | 573bfb7 | 2014-03-06 13:55:03 +0800 | [diff] [blame] | 8566 | mutex_lock(&root->delalloc_mutex); |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 8567 | spin_lock(&root->delalloc_lock); |
| 8568 | list_splice_init(&root->delalloc_inodes, &splice); |
Miao Xie | 1eafa6c | 2013-01-22 10:49:00 +0000 | [diff] [blame] | 8569 | while (!list_empty(&splice)) { |
| 8570 | binode = list_entry(splice.next, struct btrfs_inode, |
Chris Mason | ea8c281 | 2008-08-04 23:17:27 -0400 | [diff] [blame] | 8571 | delalloc_inodes); |
Miao Xie | 1eafa6c | 2013-01-22 10:49:00 +0000 | [diff] [blame] | 8572 | |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 8573 | list_move_tail(&binode->delalloc_inodes, |
| 8574 | &root->delalloc_inodes); |
Zheng Yan | 5b21f2e | 2008-09-26 10:05:38 -0400 | [diff] [blame] | 8575 | inode = igrab(&binode->vfs_inode); |
Miao Xie | df0af1a | 2013-01-29 10:11:59 +0000 | [diff] [blame] | 8576 | if (!inode) { |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 8577 | cond_resched_lock(&root->delalloc_lock); |
Miao Xie | 1eafa6c | 2013-01-22 10:49:00 +0000 | [diff] [blame] | 8578 | continue; |
Miao Xie | df0af1a | 2013-01-29 10:11:59 +0000 | [diff] [blame] | 8579 | } |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 8580 | spin_unlock(&root->delalloc_lock); |
Miao Xie | 1eafa6c | 2013-01-22 10:49:00 +0000 | [diff] [blame] | 8581 | |
| 8582 | work = btrfs_alloc_delalloc_work(inode, 0, delay_iput); |
| 8583 | if (unlikely(!work)) { |
Josef Bacik | f4ab9ea | 2013-09-17 11:25:44 -0400 | [diff] [blame] | 8584 | if (delay_iput) |
| 8585 | btrfs_add_delayed_iput(inode); |
| 8586 | else |
| 8587 | iput(inode); |
Miao Xie | 1eafa6c | 2013-01-22 10:49:00 +0000 | [diff] [blame] | 8588 | ret = -ENOMEM; |
Wang Shilong | a1ecaab | 2014-04-02 19:53:32 +0800 | [diff] [blame] | 8589 | goto out; |
Zheng Yan | 5b21f2e | 2008-09-26 10:05:38 -0400 | [diff] [blame] | 8590 | } |
Miao Xie | 1eafa6c | 2013-01-22 10:49:00 +0000 | [diff] [blame] | 8591 | list_add_tail(&work->list, &works); |
Qu Wenruo | a44903a | 2014-02-28 10:46:09 +0800 | [diff] [blame] | 8592 | btrfs_queue_work(root->fs_info->flush_workers, |
| 8593 | &work->work); |
Miao Xie | 6c255e6 | 2014-03-06 13:55:01 +0800 | [diff] [blame] | 8594 | ret++; |
| 8595 | if (nr != -1 && ret >= nr) |
Wang Shilong | a1ecaab | 2014-04-02 19:53:32 +0800 | [diff] [blame] | 8596 | goto out; |
Zheng Yan | 5b21f2e | 2008-09-26 10:05:38 -0400 | [diff] [blame] | 8597 | cond_resched(); |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 8598 | spin_lock(&root->delalloc_lock); |
Chris Mason | ea8c281 | 2008-08-04 23:17:27 -0400 | [diff] [blame] | 8599 | } |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 8600 | spin_unlock(&root->delalloc_lock); |
Chris Mason | 8c8bee1 | 2008-09-29 11:19:10 -0400 | [diff] [blame] | 8601 | |
Wang Shilong | a1ecaab | 2014-04-02 19:53:32 +0800 | [diff] [blame] | 8602 | out: |
Miao Xie | 1eafa6c | 2013-01-22 10:49:00 +0000 | [diff] [blame] | 8603 | list_for_each_entry_safe(work, next, &works, list) { |
| 8604 | list_del_init(&work->list); |
| 8605 | btrfs_wait_and_free_delalloc_work(work); |
| 8606 | } |
| 8607 | |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 8608 | if (!list_empty_careful(&splice)) { |
| 8609 | spin_lock(&root->delalloc_lock); |
| 8610 | list_splice_tail(&splice, &root->delalloc_inodes); |
| 8611 | spin_unlock(&root->delalloc_lock); |
| 8612 | } |
Miao Xie | 573bfb7 | 2014-03-06 13:55:03 +0800 | [diff] [blame] | 8613 | mutex_unlock(&root->delalloc_mutex); |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 8614 | return ret; |
| 8615 | } |
| 8616 | |
| 8617 | int btrfs_start_delalloc_inodes(struct btrfs_root *root, int delay_iput) |
| 8618 | { |
| 8619 | int ret; |
| 8620 | |
Wang Shilong | 2c21b4d | 2014-01-14 19:42:20 +0800 | [diff] [blame] | 8621 | if (test_bit(BTRFS_FS_STATE_ERROR, &root->fs_info->fs_state)) |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 8622 | return -EROFS; |
| 8623 | |
Miao Xie | 6c255e6 | 2014-03-06 13:55:01 +0800 | [diff] [blame] | 8624 | ret = __start_delalloc_inodes(root, delay_iput, -1); |
| 8625 | if (ret > 0) |
| 8626 | ret = 0; |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 8627 | /* |
| 8628 | * the filemap_flush will queue IO into the worker threads, but |
Chris Mason | 8c8bee1 | 2008-09-29 11:19:10 -0400 | [diff] [blame] | 8629 | * we have to make sure the IO is actually started and that |
| 8630 | * ordered extents get created before we return |
| 8631 | */ |
| 8632 | atomic_inc(&root->fs_info->async_submit_draining); |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 8633 | while (atomic_read(&root->fs_info->nr_async_submits) || |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 8634 | atomic_read(&root->fs_info->async_delalloc_pages)) { |
Chris Mason | 8c8bee1 | 2008-09-29 11:19:10 -0400 | [diff] [blame] | 8635 | wait_event(root->fs_info->async_submit_wait, |
Chris Mason | 771ed68 | 2008-11-06 22:02:51 -0500 | [diff] [blame] | 8636 | (atomic_read(&root->fs_info->nr_async_submits) == 0 && |
| 8637 | atomic_read(&root->fs_info->async_delalloc_pages) == 0)); |
Chris Mason | 8c8bee1 | 2008-09-29 11:19:10 -0400 | [diff] [blame] | 8638 | } |
| 8639 | atomic_dec(&root->fs_info->async_submit_draining); |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 8640 | return ret; |
| 8641 | } |
| 8642 | |
Miao Xie | 6c255e6 | 2014-03-06 13:55:01 +0800 | [diff] [blame] | 8643 | int btrfs_start_delalloc_roots(struct btrfs_fs_info *fs_info, int delay_iput, |
| 8644 | int nr) |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 8645 | { |
| 8646 | struct btrfs_root *root; |
| 8647 | struct list_head splice; |
| 8648 | int ret; |
| 8649 | |
Wang Shilong | 2c21b4d | 2014-01-14 19:42:20 +0800 | [diff] [blame] | 8650 | if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state)) |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 8651 | return -EROFS; |
| 8652 | |
| 8653 | INIT_LIST_HEAD(&splice); |
| 8654 | |
Miao Xie | 573bfb7 | 2014-03-06 13:55:03 +0800 | [diff] [blame] | 8655 | mutex_lock(&fs_info->delalloc_root_mutex); |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 8656 | spin_lock(&fs_info->delalloc_root_lock); |
| 8657 | list_splice_init(&fs_info->delalloc_roots, &splice); |
Miao Xie | 6c255e6 | 2014-03-06 13:55:01 +0800 | [diff] [blame] | 8658 | while (!list_empty(&splice) && nr) { |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 8659 | root = list_first_entry(&splice, struct btrfs_root, |
| 8660 | delalloc_root); |
| 8661 | root = btrfs_grab_fs_root(root); |
| 8662 | BUG_ON(!root); |
| 8663 | list_move_tail(&root->delalloc_root, |
| 8664 | &fs_info->delalloc_roots); |
| 8665 | spin_unlock(&fs_info->delalloc_root_lock); |
| 8666 | |
Miao Xie | 6c255e6 | 2014-03-06 13:55:01 +0800 | [diff] [blame] | 8667 | ret = __start_delalloc_inodes(root, delay_iput, nr); |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 8668 | btrfs_put_fs_root(root); |
Miao Xie | 6c255e6 | 2014-03-06 13:55:01 +0800 | [diff] [blame] | 8669 | if (ret < 0) |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 8670 | goto out; |
| 8671 | |
Miao Xie | 6c255e6 | 2014-03-06 13:55:01 +0800 | [diff] [blame] | 8672 | if (nr != -1) { |
| 8673 | nr -= ret; |
| 8674 | WARN_ON(nr < 0); |
| 8675 | } |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 8676 | spin_lock(&fs_info->delalloc_root_lock); |
| 8677 | } |
| 8678 | spin_unlock(&fs_info->delalloc_root_lock); |
| 8679 | |
Miao Xie | 6c255e6 | 2014-03-06 13:55:01 +0800 | [diff] [blame] | 8680 | ret = 0; |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 8681 | atomic_inc(&fs_info->async_submit_draining); |
| 8682 | while (atomic_read(&fs_info->nr_async_submits) || |
| 8683 | atomic_read(&fs_info->async_delalloc_pages)) { |
| 8684 | wait_event(fs_info->async_submit_wait, |
| 8685 | (atomic_read(&fs_info->nr_async_submits) == 0 && |
| 8686 | atomic_read(&fs_info->async_delalloc_pages) == 0)); |
| 8687 | } |
| 8688 | atomic_dec(&fs_info->async_submit_draining); |
Miao Xie | 8ccf6f19 | 2012-10-25 09:28:04 +0000 | [diff] [blame] | 8689 | out: |
Miao Xie | 1eafa6c | 2013-01-22 10:49:00 +0000 | [diff] [blame] | 8690 | if (!list_empty_careful(&splice)) { |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 8691 | spin_lock(&fs_info->delalloc_root_lock); |
| 8692 | list_splice_tail(&splice, &fs_info->delalloc_roots); |
| 8693 | spin_unlock(&fs_info->delalloc_root_lock); |
Miao Xie | 1eafa6c | 2013-01-22 10:49:00 +0000 | [diff] [blame] | 8694 | } |
Miao Xie | 573bfb7 | 2014-03-06 13:55:03 +0800 | [diff] [blame] | 8695 | mutex_unlock(&fs_info->delalloc_root_mutex); |
Miao Xie | 8ccf6f19 | 2012-10-25 09:28:04 +0000 | [diff] [blame] | 8696 | return ret; |
Chris Mason | ea8c281 | 2008-08-04 23:17:27 -0400 | [diff] [blame] | 8697 | } |
| 8698 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8699 | static int btrfs_symlink(struct inode *dir, struct dentry *dentry, |
| 8700 | const char *symname) |
| 8701 | { |
| 8702 | struct btrfs_trans_handle *trans; |
| 8703 | struct btrfs_root *root = BTRFS_I(dir)->root; |
| 8704 | struct btrfs_path *path; |
| 8705 | struct btrfs_key key; |
Chris Mason | 1832a6d | 2007-12-21 16:27:21 -0500 | [diff] [blame] | 8706 | struct inode *inode = NULL; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8707 | int err; |
| 8708 | int drop_inode = 0; |
| 8709 | u64 objectid; |
Dulshani Gunawardhana | 6787125 | 2013-10-31 10:33:04 +0530 | [diff] [blame] | 8710 | u64 index = 0; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8711 | int name_len; |
| 8712 | int datasize; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 8713 | unsigned long ptr; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8714 | struct btrfs_file_extent_item *ei; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 8715 | struct extent_buffer *leaf; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8716 | |
Filipe David Borba Manana | f06becc | 2013-09-16 09:53:28 +0100 | [diff] [blame] | 8717 | name_len = strlen(symname); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8718 | if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root)) |
| 8719 | return -ENAMETOOLONG; |
Chris Mason | 1832a6d | 2007-12-21 16:27:21 -0500 | [diff] [blame] | 8720 | |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 8721 | /* |
| 8722 | * 2 items for inode item and ref |
| 8723 | * 2 items for dir items |
| 8724 | * 1 item for xattr if selinux is on |
| 8725 | */ |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 8726 | trans = btrfs_start_transaction(root, 5); |
| 8727 | if (IS_ERR(trans)) |
| 8728 | return PTR_ERR(trans); |
Chris Mason | 1832a6d | 2007-12-21 16:27:21 -0500 | [diff] [blame] | 8729 | |
Li Zefan | 581bb05 | 2011-04-20 10:06:11 +0800 | [diff] [blame] | 8730 | err = btrfs_find_free_ino(root, &objectid); |
| 8731 | if (err) |
| 8732 | goto out_unlock; |
| 8733 | |
Josef Bacik | aec7477 | 2008-07-24 12:12:38 -0400 | [diff] [blame] | 8734 | inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name, |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 8735 | dentry->d_name.len, btrfs_ino(dir), objectid, |
Josef Bacik | d82a6f1 | 2011-05-11 15:26:06 -0400 | [diff] [blame] | 8736 | S_IFLNK|S_IRWXUGO, &index); |
Tsutomu Itoh | 7cf96da | 2011-04-25 19:43:53 -0400 | [diff] [blame] | 8737 | if (IS_ERR(inode)) { |
| 8738 | err = PTR_ERR(inode); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8739 | goto out_unlock; |
Tsutomu Itoh | 7cf96da | 2011-04-25 19:43:53 -0400 | [diff] [blame] | 8740 | } |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8741 | |
Eric Paris | 2a7dba3 | 2011-02-01 11:05:39 -0500 | [diff] [blame] | 8742 | err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name); |
Josef Bacik | 33268ea | 2008-07-24 12:16:36 -0400 | [diff] [blame] | 8743 | if (err) { |
| 8744 | drop_inode = 1; |
| 8745 | goto out_unlock; |
| 8746 | } |
| 8747 | |
Casey Schaufler | ad19db7 | 2011-12-15 10:09:07 -0500 | [diff] [blame] | 8748 | /* |
| 8749 | * If the active LSM wants to access the inode during |
| 8750 | * d_instantiate it needs these. Smack checks to see |
| 8751 | * if the filesystem supports xattrs by looking at the |
| 8752 | * ops vector. |
| 8753 | */ |
| 8754 | inode->i_fop = &btrfs_file_operations; |
| 8755 | inode->i_op = &btrfs_file_inode_operations; |
| 8756 | |
Josef Bacik | a1b075d | 2010-11-19 20:36:11 +0000 | [diff] [blame] | 8757 | err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8758 | if (err) |
| 8759 | drop_inode = 1; |
| 8760 | else { |
| 8761 | inode->i_mapping->a_ops = &btrfs_aops; |
Chris Mason | 0416008 | 2008-03-26 10:28:07 -0400 | [diff] [blame] | 8762 | inode->i_mapping->backing_dev_info = &root->fs_info->bdi; |
Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 8763 | BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8764 | } |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8765 | if (drop_inode) |
| 8766 | goto out_unlock; |
| 8767 | |
| 8768 | path = btrfs_alloc_path(); |
Mark Fasheh | d8926bb | 2011-07-13 10:38:47 -0700 | [diff] [blame] | 8769 | if (!path) { |
| 8770 | err = -ENOMEM; |
| 8771 | drop_inode = 1; |
| 8772 | goto out_unlock; |
| 8773 | } |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 8774 | key.objectid = btrfs_ino(inode); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8775 | key.offset = 0; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8776 | btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY); |
| 8777 | datasize = btrfs_file_extent_calc_inline_size(name_len); |
| 8778 | err = btrfs_insert_empty_item(trans, root, path, &key, |
| 8779 | datasize); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 8780 | if (err) { |
| 8781 | drop_inode = 1; |
Julia Lawall | b083916 | 2011-05-14 07:10:51 +0000 | [diff] [blame] | 8782 | btrfs_free_path(path); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 8783 | goto out_unlock; |
| 8784 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 8785 | leaf = path->nodes[0]; |
| 8786 | ei = btrfs_item_ptr(leaf, path->slots[0], |
| 8787 | struct btrfs_file_extent_item); |
| 8788 | btrfs_set_file_extent_generation(leaf, ei, trans->transid); |
| 8789 | btrfs_set_file_extent_type(leaf, ei, |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8790 | BTRFS_FILE_EXTENT_INLINE); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 8791 | btrfs_set_file_extent_encryption(leaf, ei, 0); |
| 8792 | btrfs_set_file_extent_compression(leaf, ei, 0); |
| 8793 | btrfs_set_file_extent_other_encoding(leaf, ei, 0); |
| 8794 | btrfs_set_file_extent_ram_bytes(leaf, ei, name_len); |
| 8795 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8796 | ptr = btrfs_file_extent_inline_start(ei); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 8797 | write_extent_buffer(leaf, symname, ptr, name_len); |
| 8798 | btrfs_mark_buffer_dirty(leaf); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8799 | btrfs_free_path(path); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 8800 | |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8801 | inode->i_op = &btrfs_symlink_inode_operations; |
| 8802 | inode->i_mapping->a_ops = &btrfs_symlink_aops; |
Chris Mason | 0416008 | 2008-03-26 10:28:07 -0400 | [diff] [blame] | 8803 | inode->i_mapping->backing_dev_info = &root->fs_info->bdi; |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 8804 | inode_set_bytes(inode, name_len); |
Filipe David Borba Manana | f06becc | 2013-09-16 09:53:28 +0100 | [diff] [blame] | 8805 | btrfs_i_size_write(inode, name_len); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 8806 | err = btrfs_update_inode(trans, root, inode); |
| 8807 | if (err) |
| 8808 | drop_inode = 1; |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8809 | |
| 8810 | out_unlock: |
Al Viro | 08c422c | 2011-12-23 07:58:13 -0500 | [diff] [blame] | 8811 | if (!err) |
| 8812 | d_instantiate(dentry, inode); |
Josef Bacik | 7ad85bb | 2012-01-12 19:10:12 -0500 | [diff] [blame] | 8813 | btrfs_end_transaction(trans, root); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8814 | if (drop_inode) { |
| 8815 | inode_dec_link_count(inode); |
| 8816 | iput(inode); |
| 8817 | } |
Liu Bo | b53d3f5 | 2012-11-14 14:34:34 +0000 | [diff] [blame] | 8818 | btrfs_btree_balance_dirty(root); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8819 | return err; |
| 8820 | } |
Chris Mason | 1643298 | 2008-04-10 10:23:21 -0400 | [diff] [blame] | 8821 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 8822 | static int __btrfs_prealloc_file_range(struct inode *inode, int mode, |
| 8823 | u64 start, u64 num_bytes, u64 min_size, |
| 8824 | loff_t actual_len, u64 *alloc_hint, |
| 8825 | struct btrfs_trans_handle *trans) |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 8826 | { |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 8827 | struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree; |
| 8828 | struct extent_map *em; |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 8829 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 8830 | struct btrfs_key ins; |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 8831 | u64 cur_offset = start; |
Josef Bacik | 55a61d1 | 2010-11-22 18:50:32 +0000 | [diff] [blame] | 8832 | u64 i_size; |
Chris Mason | 154ea28 | 2013-03-05 11:11:26 -0500 | [diff] [blame] | 8833 | u64 cur_bytes; |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 8834 | int ret = 0; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 8835 | bool own_trans = true; |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 8836 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 8837 | if (trans) |
| 8838 | own_trans = false; |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 8839 | while (num_bytes > 0) { |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 8840 | if (own_trans) { |
| 8841 | trans = btrfs_start_transaction(root, 3); |
| 8842 | if (IS_ERR(trans)) { |
| 8843 | ret = PTR_ERR(trans); |
| 8844 | break; |
| 8845 | } |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 8846 | } |
Yan, Zheng | 5a303d5 | 2009-11-12 09:34:52 +0000 | [diff] [blame] | 8847 | |
Chris Mason | 154ea28 | 2013-03-05 11:11:26 -0500 | [diff] [blame] | 8848 | cur_bytes = min(num_bytes, 256ULL * 1024 * 1024); |
| 8849 | cur_bytes = max(cur_bytes, min_size); |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 8850 | ret = btrfs_reserve_extent(root, cur_bytes, min_size, 0, |
| 8851 | *alloc_hint, &ins, 1); |
Yan, Zheng | 5a303d5 | 2009-11-12 09:34:52 +0000 | [diff] [blame] | 8852 | if (ret) { |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 8853 | if (own_trans) |
| 8854 | btrfs_end_transaction(trans, root); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 8855 | break; |
Yan, Zheng | 5a303d5 | 2009-11-12 09:34:52 +0000 | [diff] [blame] | 8856 | } |
| 8857 | |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 8858 | ret = insert_reserved_file_extent(trans, inode, |
| 8859 | cur_offset, ins.objectid, |
| 8860 | ins.offset, ins.offset, |
Yan, Zheng | 920bbbf | 2009-11-12 09:34:08 +0000 | [diff] [blame] | 8861 | ins.offset, 0, 0, 0, |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 8862 | BTRFS_FILE_EXTENT_PREALLOC); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8863 | if (ret) { |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 8864 | btrfs_free_reserved_extent(root, ins.objectid, |
| 8865 | ins.offset); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8866 | btrfs_abort_transaction(trans, root, ret); |
| 8867 | if (own_trans) |
| 8868 | btrfs_end_transaction(trans, root); |
| 8869 | break; |
| 8870 | } |
Chris Mason | a1ed835 | 2009-09-11 12:27:37 -0400 | [diff] [blame] | 8871 | btrfs_drop_extent_cache(inode, cur_offset, |
| 8872 | cur_offset + ins.offset -1, 0); |
Yan, Zheng | 5a303d5 | 2009-11-12 09:34:52 +0000 | [diff] [blame] | 8873 | |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 8874 | em = alloc_extent_map(); |
| 8875 | if (!em) { |
| 8876 | set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, |
| 8877 | &BTRFS_I(inode)->runtime_flags); |
| 8878 | goto next; |
| 8879 | } |
| 8880 | |
| 8881 | em->start = cur_offset; |
| 8882 | em->orig_start = cur_offset; |
| 8883 | em->len = ins.offset; |
| 8884 | em->block_start = ins.objectid; |
| 8885 | em->block_len = ins.offset; |
Josef Bacik | b493968 | 2012-12-03 10:31:19 -0500 | [diff] [blame] | 8886 | em->orig_block_len = ins.offset; |
Josef Bacik | cc95bef | 2013-04-04 14:31:27 -0400 | [diff] [blame] | 8887 | em->ram_bytes = ins.offset; |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 8888 | em->bdev = root->fs_info->fs_devices->latest_bdev; |
| 8889 | set_bit(EXTENT_FLAG_PREALLOC, &em->flags); |
| 8890 | em->generation = trans->transid; |
| 8891 | |
| 8892 | while (1) { |
| 8893 | write_lock(&em_tree->lock); |
Josef Bacik | 09a2a8f9 | 2013-04-05 16:51:15 -0400 | [diff] [blame] | 8894 | ret = add_extent_mapping(em_tree, em, 1); |
Josef Bacik | 5dc562c | 2012-08-17 13:14:17 -0400 | [diff] [blame] | 8895 | write_unlock(&em_tree->lock); |
| 8896 | if (ret != -EEXIST) |
| 8897 | break; |
| 8898 | btrfs_drop_extent_cache(inode, cur_offset, |
| 8899 | cur_offset + ins.offset - 1, |
| 8900 | 0); |
| 8901 | } |
| 8902 | free_extent_map(em); |
| 8903 | next: |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 8904 | num_bytes -= ins.offset; |
| 8905 | cur_offset += ins.offset; |
Yan, Zheng | efa5646 | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 8906 | *alloc_hint = ins.objectid + ins.offset; |
Yan, Zheng | 5a303d5 | 2009-11-12 09:34:52 +0000 | [diff] [blame] | 8907 | |
Josef Bacik | 0c4d2d9 | 2012-04-05 15:03:02 -0400 | [diff] [blame] | 8908 | inode_inc_iversion(inode); |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 8909 | inode->i_ctime = CURRENT_TIME; |
Christoph Hellwig | 6cbff00 | 2009-04-17 10:37:41 +0200 | [diff] [blame] | 8910 | BTRFS_I(inode)->flags |= BTRFS_INODE_PREALLOC; |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 8911 | if (!(mode & FALLOC_FL_KEEP_SIZE) && |
Yan, Zheng | efa5646 | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 8912 | (actual_len > inode->i_size) && |
| 8913 | (cur_offset > inode->i_size)) { |
Aneesh Kumar K.V | d1ea6a6 | 2010-01-20 07:28:54 +0000 | [diff] [blame] | 8914 | if (cur_offset > actual_len) |
Josef Bacik | 55a61d1 | 2010-11-22 18:50:32 +0000 | [diff] [blame] | 8915 | i_size = actual_len; |
Aneesh Kumar K.V | d1ea6a6 | 2010-01-20 07:28:54 +0000 | [diff] [blame] | 8916 | else |
Josef Bacik | 55a61d1 | 2010-11-22 18:50:32 +0000 | [diff] [blame] | 8917 | i_size = cur_offset; |
| 8918 | i_size_write(inode, i_size); |
| 8919 | btrfs_ordered_update_i_size(inode, i_size, NULL); |
Yan, Zheng | 5a303d5 | 2009-11-12 09:34:52 +0000 | [diff] [blame] | 8920 | } |
| 8921 | |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 8922 | ret = btrfs_update_inode(trans, root, inode); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8923 | |
| 8924 | if (ret) { |
| 8925 | btrfs_abort_transaction(trans, root, ret); |
| 8926 | if (own_trans) |
| 8927 | btrfs_end_transaction(trans, root); |
| 8928 | break; |
| 8929 | } |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 8930 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 8931 | if (own_trans) |
| 8932 | btrfs_end_transaction(trans, root); |
Yan, Zheng | 5a303d5 | 2009-11-12 09:34:52 +0000 | [diff] [blame] | 8933 | } |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 8934 | return ret; |
| 8935 | } |
| 8936 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 8937 | int btrfs_prealloc_file_range(struct inode *inode, int mode, |
| 8938 | u64 start, u64 num_bytes, u64 min_size, |
| 8939 | loff_t actual_len, u64 *alloc_hint) |
| 8940 | { |
| 8941 | return __btrfs_prealloc_file_range(inode, mode, start, num_bytes, |
| 8942 | min_size, actual_len, alloc_hint, |
| 8943 | NULL); |
| 8944 | } |
| 8945 | |
| 8946 | int btrfs_prealloc_file_range_trans(struct inode *inode, |
| 8947 | struct btrfs_trans_handle *trans, int mode, |
| 8948 | u64 start, u64 num_bytes, u64 min_size, |
| 8949 | loff_t actual_len, u64 *alloc_hint) |
| 8950 | { |
| 8951 | return __btrfs_prealloc_file_range(inode, mode, start, num_bytes, |
| 8952 | min_size, actual_len, alloc_hint, trans); |
| 8953 | } |
| 8954 | |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8955 | static int btrfs_set_page_dirty(struct page *page) |
| 8956 | { |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8957 | return __set_page_dirty_nobuffers(page); |
| 8958 | } |
| 8959 | |
Al Viro | 10556cb | 2011-06-20 19:28:19 -0400 | [diff] [blame] | 8960 | static int btrfs_permission(struct inode *inode, int mask) |
Yan | fdebe2b | 2008-01-14 13:26:08 -0500 | [diff] [blame] | 8961 | { |
Li Zefan | b83cc96 | 2010-12-20 16:04:08 +0800 | [diff] [blame] | 8962 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Jeff Mahoney | cb6db4e | 2011-08-15 17:27:21 +0000 | [diff] [blame] | 8963 | umode_t mode = inode->i_mode; |
Li Zefan | b83cc96 | 2010-12-20 16:04:08 +0800 | [diff] [blame] | 8964 | |
Jeff Mahoney | cb6db4e | 2011-08-15 17:27:21 +0000 | [diff] [blame] | 8965 | if (mask & MAY_WRITE && |
| 8966 | (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode))) { |
| 8967 | if (btrfs_root_readonly(root)) |
| 8968 | return -EROFS; |
| 8969 | if (BTRFS_I(inode)->flags & BTRFS_INODE_READONLY) |
| 8970 | return -EACCES; |
| 8971 | } |
Al Viro | 2830ba7 | 2011-06-20 19:16:29 -0400 | [diff] [blame] | 8972 | return generic_permission(inode, mask); |
Yan | fdebe2b | 2008-01-14 13:26:08 -0500 | [diff] [blame] | 8973 | } |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 8974 | |
Filipe Manana | ef3b9af | 2014-04-27 20:40:45 +0100 | [diff] [blame] | 8975 | static int btrfs_tmpfile(struct inode *dir, struct dentry *dentry, umode_t mode) |
| 8976 | { |
| 8977 | struct btrfs_trans_handle *trans; |
| 8978 | struct btrfs_root *root = BTRFS_I(dir)->root; |
| 8979 | struct inode *inode = NULL; |
| 8980 | u64 objectid; |
| 8981 | u64 index; |
| 8982 | int ret = 0; |
| 8983 | |
| 8984 | /* |
| 8985 | * 5 units required for adding orphan entry |
| 8986 | */ |
| 8987 | trans = btrfs_start_transaction(root, 5); |
| 8988 | if (IS_ERR(trans)) |
| 8989 | return PTR_ERR(trans); |
| 8990 | |
| 8991 | ret = btrfs_find_free_ino(root, &objectid); |
| 8992 | if (ret) |
| 8993 | goto out; |
| 8994 | |
| 8995 | inode = btrfs_new_inode(trans, root, dir, NULL, 0, |
| 8996 | btrfs_ino(dir), objectid, mode, &index); |
| 8997 | if (IS_ERR(inode)) { |
| 8998 | ret = PTR_ERR(inode); |
| 8999 | inode = NULL; |
| 9000 | goto out; |
| 9001 | } |
| 9002 | |
| 9003 | ret = btrfs_init_inode_security(trans, inode, dir, NULL); |
| 9004 | if (ret) |
| 9005 | goto out; |
| 9006 | |
| 9007 | ret = btrfs_update_inode(trans, root, inode); |
| 9008 | if (ret) |
| 9009 | goto out; |
| 9010 | |
| 9011 | inode->i_fop = &btrfs_file_operations; |
| 9012 | inode->i_op = &btrfs_file_inode_operations; |
| 9013 | |
| 9014 | inode->i_mapping->a_ops = &btrfs_aops; |
| 9015 | inode->i_mapping->backing_dev_info = &root->fs_info->bdi; |
| 9016 | BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops; |
| 9017 | |
| 9018 | ret = btrfs_orphan_add(trans, inode); |
| 9019 | if (ret) |
| 9020 | goto out; |
| 9021 | |
| 9022 | d_tmpfile(dentry, inode); |
| 9023 | mark_inode_dirty(inode); |
| 9024 | |
| 9025 | out: |
| 9026 | btrfs_end_transaction(trans, root); |
| 9027 | if (ret) |
| 9028 | iput(inode); |
| 9029 | btrfs_balance_delayed_items(root); |
| 9030 | btrfs_btree_balance_dirty(root); |
| 9031 | |
| 9032 | return ret; |
| 9033 | } |
| 9034 | |
Alexey Dobriyan | 6e1d5dc | 2009-09-21 17:01:11 -0700 | [diff] [blame] | 9035 | static const struct inode_operations btrfs_dir_inode_operations = { |
Chris Mason | 3394e16 | 2008-11-17 20:42:26 -0500 | [diff] [blame] | 9036 | .getattr = btrfs_getattr, |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 9037 | .lookup = btrfs_lookup, |
| 9038 | .create = btrfs_create, |
| 9039 | .unlink = btrfs_unlink, |
| 9040 | .link = btrfs_link, |
| 9041 | .mkdir = btrfs_mkdir, |
| 9042 | .rmdir = btrfs_rmdir, |
| 9043 | .rename = btrfs_rename, |
| 9044 | .symlink = btrfs_symlink, |
| 9045 | .setattr = btrfs_setattr, |
Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 9046 | .mknod = btrfs_mknod, |
Christoph Hellwig | 95819c0 | 2008-08-28 06:21:17 -0400 | [diff] [blame] | 9047 | .setxattr = btrfs_setxattr, |
| 9048 | .getxattr = btrfs_getxattr, |
Josef Bacik | 5103e94 | 2007-11-16 11:45:54 -0500 | [diff] [blame] | 9049 | .listxattr = btrfs_listxattr, |
Christoph Hellwig | 95819c0 | 2008-08-28 06:21:17 -0400 | [diff] [blame] | 9050 | .removexattr = btrfs_removexattr, |
Yan | fdebe2b | 2008-01-14 13:26:08 -0500 | [diff] [blame] | 9051 | .permission = btrfs_permission, |
Christoph Hellwig | 4e34e71 | 2011-07-23 17:37:31 +0200 | [diff] [blame] | 9052 | .get_acl = btrfs_get_acl, |
Christoph Hellwig | 996a710 | 2013-12-20 05:16:43 -0800 | [diff] [blame] | 9053 | .set_acl = btrfs_set_acl, |
Guangyu Sun | 93fd63c | 2013-09-16 10:42:03 -0700 | [diff] [blame] | 9054 | .update_time = btrfs_update_time, |
Filipe Manana | ef3b9af | 2014-04-27 20:40:45 +0100 | [diff] [blame] | 9055 | .tmpfile = btrfs_tmpfile, |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 9056 | }; |
Alexey Dobriyan | 6e1d5dc | 2009-09-21 17:01:11 -0700 | [diff] [blame] | 9057 | static const struct inode_operations btrfs_dir_ro_inode_operations = { |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 9058 | .lookup = btrfs_lookup, |
Yan | fdebe2b | 2008-01-14 13:26:08 -0500 | [diff] [blame] | 9059 | .permission = btrfs_permission, |
Christoph Hellwig | 4e34e71 | 2011-07-23 17:37:31 +0200 | [diff] [blame] | 9060 | .get_acl = btrfs_get_acl, |
Christoph Hellwig | 996a710 | 2013-12-20 05:16:43 -0800 | [diff] [blame] | 9061 | .set_acl = btrfs_set_acl, |
Guangyu Sun | 93fd63c | 2013-09-16 10:42:03 -0700 | [diff] [blame] | 9062 | .update_time = btrfs_update_time, |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 9063 | }; |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 9064 | |
Alexey Dobriyan | 828c095 | 2009-10-01 15:43:56 -0700 | [diff] [blame] | 9065 | static const struct file_operations btrfs_dir_file_operations = { |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 9066 | .llseek = generic_file_llseek, |
| 9067 | .read = generic_read_dir, |
Al Viro | 9cdda8d | 2013-05-22 16:48:09 -0400 | [diff] [blame] | 9068 | .iterate = btrfs_real_readdir, |
Christoph Hellwig | 34287aa | 2007-09-14 10:22:47 -0400 | [diff] [blame] | 9069 | .unlocked_ioctl = btrfs_ioctl, |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 9070 | #ifdef CONFIG_COMPAT |
Christoph Hellwig | 34287aa | 2007-09-14 10:22:47 -0400 | [diff] [blame] | 9071 | .compat_ioctl = btrfs_ioctl, |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 9072 | #endif |
Sage Weil | 6bf13c0 | 2008-06-10 10:07:39 -0400 | [diff] [blame] | 9073 | .release = btrfs_release_file, |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 9074 | .fsync = btrfs_sync_file, |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 9075 | }; |
| 9076 | |
Chris Mason | d1310b2 | 2008-01-24 16:13:08 -0500 | [diff] [blame] | 9077 | static struct extent_io_ops btrfs_extent_io_ops = { |
Chris Mason | 07157aa | 2007-08-30 08:50:51 -0400 | [diff] [blame] | 9078 | .fill_delalloc = run_delalloc_range, |
Chris Mason | 065631f | 2008-02-20 12:07:25 -0500 | [diff] [blame] | 9079 | .submit_bio_hook = btrfs_submit_bio_hook, |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 9080 | .merge_bio_hook = btrfs_merge_bio_hook, |
Chris Mason | 07157aa | 2007-08-30 08:50:51 -0400 | [diff] [blame] | 9081 | .readpage_end_io_hook = btrfs_readpage_end_io_hook, |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 9082 | .writepage_end_io_hook = btrfs_writepage_end_io_hook, |
Chris Mason | 247e743 | 2008-07-17 12:53:51 -0400 | [diff] [blame] | 9083 | .writepage_start_hook = btrfs_writepage_start_hook, |
Chris Mason | b0c68f8 | 2008-01-31 11:05:37 -0500 | [diff] [blame] | 9084 | .set_bit_hook = btrfs_set_bit_hook, |
| 9085 | .clear_bit_hook = btrfs_clear_bit_hook, |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 9086 | .merge_extent_hook = btrfs_merge_extent_hook, |
| 9087 | .split_extent_hook = btrfs_split_extent_hook, |
Chris Mason | 07157aa | 2007-08-30 08:50:51 -0400 | [diff] [blame] | 9088 | }; |
| 9089 | |
Chris Mason | 3505439 | 2009-01-21 13:11:13 -0500 | [diff] [blame] | 9090 | /* |
| 9091 | * btrfs doesn't support the bmap operation because swapfiles |
| 9092 | * use bmap to make a mapping of extents in the file. They assume |
| 9093 | * these extents won't change over the life of the file and they |
| 9094 | * use the bmap result to do IO directly to the drive. |
| 9095 | * |
| 9096 | * the btrfs bmap call would return logical addresses that aren't |
| 9097 | * suitable for IO and they also will change frequently as COW |
| 9098 | * operations happen. So, swapfile + btrfs == corruption. |
| 9099 | * |
| 9100 | * For now we're avoiding this by dropping bmap. |
| 9101 | */ |
Alexey Dobriyan | 7f09410 | 2009-09-21 17:01:10 -0700 | [diff] [blame] | 9102 | static const struct address_space_operations btrfs_aops = { |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 9103 | .readpage = btrfs_readpage, |
| 9104 | .writepage = btrfs_writepage, |
Chris Mason | b293f02 | 2007-11-01 19:45:34 -0400 | [diff] [blame] | 9105 | .writepages = btrfs_writepages, |
Chris Mason | 3ab2fb5 | 2007-11-08 10:59:22 -0500 | [diff] [blame] | 9106 | .readpages = btrfs_readpages, |
Chris Mason | 1643298 | 2008-04-10 10:23:21 -0400 | [diff] [blame] | 9107 | .direct_IO = btrfs_direct_IO, |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 9108 | .invalidatepage = btrfs_invalidatepage, |
| 9109 | .releasepage = btrfs_releasepage, |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 9110 | .set_page_dirty = btrfs_set_page_dirty, |
Andi Kleen | 465fdd9 | 2009-09-16 11:50:18 +0200 | [diff] [blame] | 9111 | .error_remove_page = generic_error_remove_page, |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 9112 | }; |
| 9113 | |
Alexey Dobriyan | 7f09410 | 2009-09-21 17:01:10 -0700 | [diff] [blame] | 9114 | static const struct address_space_operations btrfs_symlink_aops = { |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 9115 | .readpage = btrfs_readpage, |
| 9116 | .writepage = btrfs_writepage, |
Chris Mason | 2bf5a72 | 2007-08-30 11:54:02 -0400 | [diff] [blame] | 9117 | .invalidatepage = btrfs_invalidatepage, |
| 9118 | .releasepage = btrfs_releasepage, |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 9119 | }; |
| 9120 | |
Alexey Dobriyan | 6e1d5dc | 2009-09-21 17:01:11 -0700 | [diff] [blame] | 9121 | static const struct inode_operations btrfs_file_inode_operations = { |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 9122 | .getattr = btrfs_getattr, |
| 9123 | .setattr = btrfs_setattr, |
Christoph Hellwig | 95819c0 | 2008-08-28 06:21:17 -0400 | [diff] [blame] | 9124 | .setxattr = btrfs_setxattr, |
| 9125 | .getxattr = btrfs_getxattr, |
Josef Bacik | 5103e94 | 2007-11-16 11:45:54 -0500 | [diff] [blame] | 9126 | .listxattr = btrfs_listxattr, |
Christoph Hellwig | 95819c0 | 2008-08-28 06:21:17 -0400 | [diff] [blame] | 9127 | .removexattr = btrfs_removexattr, |
Yan | fdebe2b | 2008-01-14 13:26:08 -0500 | [diff] [blame] | 9128 | .permission = btrfs_permission, |
Yehuda Sadeh | 1506fcc | 2009-01-21 14:39:14 -0500 | [diff] [blame] | 9129 | .fiemap = btrfs_fiemap, |
Christoph Hellwig | 4e34e71 | 2011-07-23 17:37:31 +0200 | [diff] [blame] | 9130 | .get_acl = btrfs_get_acl, |
Christoph Hellwig | 996a710 | 2013-12-20 05:16:43 -0800 | [diff] [blame] | 9131 | .set_acl = btrfs_set_acl, |
Josef Bacik | e41f941 | 2012-03-26 09:46:47 -0400 | [diff] [blame] | 9132 | .update_time = btrfs_update_time, |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 9133 | }; |
Alexey Dobriyan | 6e1d5dc | 2009-09-21 17:01:11 -0700 | [diff] [blame] | 9134 | static const struct inode_operations btrfs_special_inode_operations = { |
Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 9135 | .getattr = btrfs_getattr, |
| 9136 | .setattr = btrfs_setattr, |
Yan | fdebe2b | 2008-01-14 13:26:08 -0500 | [diff] [blame] | 9137 | .permission = btrfs_permission, |
Christoph Hellwig | 95819c0 | 2008-08-28 06:21:17 -0400 | [diff] [blame] | 9138 | .setxattr = btrfs_setxattr, |
| 9139 | .getxattr = btrfs_getxattr, |
Josef Bacik | 33268ea | 2008-07-24 12:16:36 -0400 | [diff] [blame] | 9140 | .listxattr = btrfs_listxattr, |
Christoph Hellwig | 95819c0 | 2008-08-28 06:21:17 -0400 | [diff] [blame] | 9141 | .removexattr = btrfs_removexattr, |
Christoph Hellwig | 4e34e71 | 2011-07-23 17:37:31 +0200 | [diff] [blame] | 9142 | .get_acl = btrfs_get_acl, |
Christoph Hellwig | 996a710 | 2013-12-20 05:16:43 -0800 | [diff] [blame] | 9143 | .set_acl = btrfs_set_acl, |
Josef Bacik | e41f941 | 2012-03-26 09:46:47 -0400 | [diff] [blame] | 9144 | .update_time = btrfs_update_time, |
Josef Bacik | 618e21d | 2007-07-11 10:18:17 -0400 | [diff] [blame] | 9145 | }; |
Alexey Dobriyan | 6e1d5dc | 2009-09-21 17:01:11 -0700 | [diff] [blame] | 9146 | static const struct inode_operations btrfs_symlink_inode_operations = { |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 9147 | .readlink = generic_readlink, |
| 9148 | .follow_link = page_follow_link_light, |
| 9149 | .put_link = page_put_link, |
Li Zefan | f209561 | 2010-11-19 02:05:24 +0000 | [diff] [blame] | 9150 | .getattr = btrfs_getattr, |
Josef Bacik | 22c44fe | 2011-11-30 10:45:38 -0500 | [diff] [blame] | 9151 | .setattr = btrfs_setattr, |
Yan | fdebe2b | 2008-01-14 13:26:08 -0500 | [diff] [blame] | 9152 | .permission = btrfs_permission, |
Jim Owens | 0279b4c | 2009-02-04 09:29:13 -0500 | [diff] [blame] | 9153 | .setxattr = btrfs_setxattr, |
| 9154 | .getxattr = btrfs_getxattr, |
| 9155 | .listxattr = btrfs_listxattr, |
| 9156 | .removexattr = btrfs_removexattr, |
Josef Bacik | e41f941 | 2012-03-26 09:46:47 -0400 | [diff] [blame] | 9157 | .update_time = btrfs_update_time, |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 9158 | }; |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 9159 | |
Alexey Dobriyan | 82d339d | 2009-10-09 09:54:36 -0400 | [diff] [blame] | 9160 | const struct dentry_operations btrfs_dentry_operations = { |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 9161 | .d_delete = btrfs_dentry_delete, |
Josef Bacik | b4aff1f | 2011-06-28 16:18:59 -0400 | [diff] [blame] | 9162 | .d_release = btrfs_dentry_release, |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 9163 | }; |