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 | 065631f | 2008-02-20 12:07:25 -0500 | [diff] [blame] | 19 | #include <linux/bio.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 20 | #include <linux/slab.h> |
Chris Mason | 065631f | 2008-02-20 12:07:25 -0500 | [diff] [blame] | 21 | #include <linux/pagemap.h> |
| 22 | #include <linux/highmem.h> |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 23 | #include "ctree.h" |
Chris Mason | dee26a9 | 2007-03-26 16:00:06 -0400 | [diff] [blame] | 24 | #include "disk-io.h" |
Chris Mason | 9f5fae2 | 2007-03-20 14:38:32 -0400 | [diff] [blame] | 25 | #include "transaction.h" |
Miao Xie | facc8a22 | 2013-07-25 19:22:34 +0800 | [diff] [blame] | 26 | #include "volumes.h" |
Chris Mason | 1de037a | 2007-05-29 15:17:08 -0400 | [diff] [blame] | 27 | #include "print-tree.h" |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 28 | |
Jan Schmidt | 995e01b | 2012-08-13 02:52:38 -0600 | [diff] [blame] | 29 | #define __MAX_CSUM_ITEMS(r, size) ((unsigned long)(((BTRFS_LEAF_DATA_SIZE(r) - \ |
Josef Bacik | 607d432 | 2008-12-02 07:17:45 -0500 | [diff] [blame] | 30 | sizeof(struct btrfs_item) * 2) / \ |
| 31 | size) - 1)) |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 32 | |
Zach Brown | 221b831 | 2012-09-20 14:33:00 -0600 | [diff] [blame] | 33 | #define MAX_CSUM_ITEMS(r, size) (min_t(u32, __MAX_CSUM_ITEMS(r, size), \ |
| 34 | PAGE_CACHE_SIZE)) |
Chris Mason | 7ca4be4 | 2012-01-31 20:19:02 -0500 | [diff] [blame] | 35 | |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 36 | #define MAX_ORDERED_SUM_BYTES(r) ((PAGE_SIZE - \ |
| 37 | sizeof(struct btrfs_ordered_sum)) / \ |
Miao Xie | f51a4a1 | 2013-06-19 10:36:09 +0800 | [diff] [blame] | 38 | sizeof(u32) * (r)->sectorsize) |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 39 | |
Chris Mason | b18c668 | 2007-04-17 13:26:50 -0400 | [diff] [blame] | 40 | int btrfs_insert_file_extent(struct btrfs_trans_handle *trans, |
Sage Weil | f2eb0a2 | 2008-05-02 14:43:14 -0400 | [diff] [blame] | 41 | struct btrfs_root *root, |
| 42 | u64 objectid, u64 pos, |
| 43 | u64 disk_offset, u64 disk_num_bytes, |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 44 | u64 num_bytes, u64 offset, u64 ram_bytes, |
| 45 | u8 compression, u8 encryption, u16 other_encoding) |
Chris Mason | 9f5fae2 | 2007-03-20 14:38:32 -0400 | [diff] [blame] | 46 | { |
Chris Mason | dee26a9 | 2007-03-26 16:00:06 -0400 | [diff] [blame] | 47 | int ret = 0; |
| 48 | struct btrfs_file_extent_item *item; |
| 49 | struct btrfs_key file_key; |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 50 | struct btrfs_path *path; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 51 | struct extent_buffer *leaf; |
Chris Mason | dee26a9 | 2007-03-26 16:00:06 -0400 | [diff] [blame] | 52 | |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 53 | path = btrfs_alloc_path(); |
Tsutomu Itoh | db5b493 | 2011-03-23 08:14:16 +0000 | [diff] [blame] | 54 | if (!path) |
| 55 | return -ENOMEM; |
Chris Mason | dee26a9 | 2007-03-26 16:00:06 -0400 | [diff] [blame] | 56 | file_key.objectid = objectid; |
Chris Mason | b18c668 | 2007-04-17 13:26:50 -0400 | [diff] [blame] | 57 | file_key.offset = pos; |
Chris Mason | dee26a9 | 2007-03-26 16:00:06 -0400 | [diff] [blame] | 58 | btrfs_set_key_type(&file_key, BTRFS_EXTENT_DATA_KEY); |
| 59 | |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 60 | path->leave_spinning = 1; |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 61 | ret = btrfs_insert_empty_item(trans, root, path, &file_key, |
Chris Mason | dee26a9 | 2007-03-26 16:00:06 -0400 | [diff] [blame] | 62 | sizeof(*item)); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 63 | if (ret < 0) |
| 64 | goto out; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 65 | BUG_ON(ret); /* Can't happen */ |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 66 | leaf = path->nodes[0]; |
| 67 | item = btrfs_item_ptr(leaf, path->slots[0], |
Chris Mason | dee26a9 | 2007-03-26 16:00:06 -0400 | [diff] [blame] | 68 | struct btrfs_file_extent_item); |
Sage Weil | f2eb0a2 | 2008-05-02 14:43:14 -0400 | [diff] [blame] | 69 | btrfs_set_file_extent_disk_bytenr(leaf, item, disk_offset); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 70 | btrfs_set_file_extent_disk_num_bytes(leaf, item, disk_num_bytes); |
Sage Weil | f2eb0a2 | 2008-05-02 14:43:14 -0400 | [diff] [blame] | 71 | btrfs_set_file_extent_offset(leaf, item, offset); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 72 | btrfs_set_file_extent_num_bytes(leaf, item, num_bytes); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 73 | btrfs_set_file_extent_ram_bytes(leaf, item, ram_bytes); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 74 | btrfs_set_file_extent_generation(leaf, item, trans->transid); |
| 75 | btrfs_set_file_extent_type(leaf, item, BTRFS_FILE_EXTENT_REG); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 76 | btrfs_set_file_extent_compression(leaf, item, compression); |
| 77 | btrfs_set_file_extent_encryption(leaf, item, encryption); |
| 78 | btrfs_set_file_extent_other_encoding(leaf, item, other_encoding); |
| 79 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 80 | btrfs_mark_buffer_dirty(leaf); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 81 | out: |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 82 | btrfs_free_path(path); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 83 | return ret; |
Chris Mason | 9f5fae2 | 2007-03-20 14:38:32 -0400 | [diff] [blame] | 84 | } |
Chris Mason | dee26a9 | 2007-03-26 16:00:06 -0400 | [diff] [blame] | 85 | |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 86 | static struct btrfs_csum_item * |
| 87 | btrfs_lookup_csum(struct btrfs_trans_handle *trans, |
| 88 | struct btrfs_root *root, |
| 89 | struct btrfs_path *path, |
| 90 | u64 bytenr, int cow) |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 91 | { |
| 92 | int ret; |
| 93 | struct btrfs_key file_key; |
| 94 | struct btrfs_key found_key; |
| 95 | struct btrfs_csum_item *item; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 96 | struct extent_buffer *leaf; |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 97 | u64 csum_offset = 0; |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 98 | u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy); |
Chris Mason | a429e51 | 2007-04-18 16:15:28 -0400 | [diff] [blame] | 99 | int csums_in_item; |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 100 | |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 101 | file_key.objectid = BTRFS_EXTENT_CSUM_OBJECTID; |
| 102 | file_key.offset = bytenr; |
| 103 | btrfs_set_key_type(&file_key, BTRFS_EXTENT_CSUM_KEY); |
Chris Mason | b18c668 | 2007-04-17 13:26:50 -0400 | [diff] [blame] | 104 | ret = btrfs_search_slot(trans, root, &file_key, path, 0, cow); |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 105 | if (ret < 0) |
| 106 | goto fail; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 107 | leaf = path->nodes[0]; |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 108 | if (ret > 0) { |
| 109 | ret = 1; |
Chris Mason | 70b2bef | 2007-04-17 15:39:32 -0400 | [diff] [blame] | 110 | if (path->slots[0] == 0) |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 111 | goto fail; |
| 112 | path->slots[0]--; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 113 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 114 | if (btrfs_key_type(&found_key) != BTRFS_EXTENT_CSUM_KEY) |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 115 | goto fail; |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 116 | |
| 117 | csum_offset = (bytenr - found_key.offset) >> |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 118 | root->fs_info->sb->s_blocksize_bits; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 119 | csums_in_item = btrfs_item_size_nr(leaf, path->slots[0]); |
Josef Bacik | 607d432 | 2008-12-02 07:17:45 -0500 | [diff] [blame] | 120 | csums_in_item /= csum_size; |
Chris Mason | a429e51 | 2007-04-18 16:15:28 -0400 | [diff] [blame] | 121 | |
Miao Xie | 82d130f | 2013-03-28 08:12:15 +0000 | [diff] [blame] | 122 | if (csum_offset == csums_in_item) { |
Chris Mason | a429e51 | 2007-04-18 16:15:28 -0400 | [diff] [blame] | 123 | ret = -EFBIG; |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 124 | goto fail; |
Miao Xie | 82d130f | 2013-03-28 08:12:15 +0000 | [diff] [blame] | 125 | } else if (csum_offset > csums_in_item) { |
| 126 | goto fail; |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 127 | } |
| 128 | } |
| 129 | item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_csum_item); |
Chris Mason | 509659c | 2007-05-10 12:36:17 -0400 | [diff] [blame] | 130 | item = (struct btrfs_csum_item *)((unsigned char *)item + |
Josef Bacik | 607d432 | 2008-12-02 07:17:45 -0500 | [diff] [blame] | 131 | csum_offset * csum_size); |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 132 | return item; |
| 133 | fail: |
| 134 | if (ret > 0) |
Chris Mason | b18c668 | 2007-04-17 13:26:50 -0400 | [diff] [blame] | 135 | ret = -ENOENT; |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 136 | return ERR_PTR(ret); |
| 137 | } |
| 138 | |
Chris Mason | dee26a9 | 2007-03-26 16:00:06 -0400 | [diff] [blame] | 139 | int btrfs_lookup_file_extent(struct btrfs_trans_handle *trans, |
| 140 | struct btrfs_root *root, |
| 141 | struct btrfs_path *path, u64 objectid, |
Chris Mason | 9773a78 | 2007-03-27 11:26:26 -0400 | [diff] [blame] | 142 | u64 offset, int mod) |
Chris Mason | dee26a9 | 2007-03-26 16:00:06 -0400 | [diff] [blame] | 143 | { |
| 144 | int ret; |
| 145 | struct btrfs_key file_key; |
| 146 | int ins_len = mod < 0 ? -1 : 0; |
| 147 | int cow = mod != 0; |
| 148 | |
| 149 | file_key.objectid = objectid; |
Chris Mason | 70b2bef | 2007-04-17 15:39:32 -0400 | [diff] [blame] | 150 | file_key.offset = offset; |
Chris Mason | dee26a9 | 2007-03-26 16:00:06 -0400 | [diff] [blame] | 151 | btrfs_set_key_type(&file_key, BTRFS_EXTENT_DATA_KEY); |
| 152 | ret = btrfs_search_slot(trans, root, &file_key, path, ins_len, cow); |
| 153 | return ret; |
| 154 | } |
Chris Mason | f254e52 | 2007-03-29 15:15:27 -0400 | [diff] [blame] | 155 | |
Miao Xie | facc8a22 | 2013-07-25 19:22:34 +0800 | [diff] [blame] | 156 | static void btrfs_io_bio_endio_readpage(struct btrfs_io_bio *bio, int err) |
| 157 | { |
| 158 | kfree(bio->csum_allocated); |
| 159 | } |
| 160 | |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 161 | static int __btrfs_lookup_bio_sums(struct btrfs_root *root, |
| 162 | struct inode *inode, struct bio *bio, |
| 163 | u64 logical_offset, u32 *dst, int dio) |
Chris Mason | 61b4944 | 2008-07-31 15:42:53 -0400 | [diff] [blame] | 164 | { |
Chris Mason | 61b4944 | 2008-07-31 15:42:53 -0400 | [diff] [blame] | 165 | struct bio_vec *bvec = bio->bi_io_vec; |
Miao Xie | facc8a22 | 2013-07-25 19:22:34 +0800 | [diff] [blame] | 166 | struct btrfs_io_bio *btrfs_bio = btrfs_io_bio(bio); |
| 167 | struct btrfs_csum_item *item = NULL; |
| 168 | struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree; |
| 169 | struct btrfs_path *path; |
| 170 | u8 *csum; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 171 | u64 offset = 0; |
Chris Mason | 61b4944 | 2008-07-31 15:42:53 -0400 | [diff] [blame] | 172 | u64 item_start_offset = 0; |
| 173 | u64 item_last_offset = 0; |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 174 | u64 disk_bytenr; |
Chris Mason | 61b4944 | 2008-07-31 15:42:53 -0400 | [diff] [blame] | 175 | u32 diff; |
Miao Xie | facc8a22 | 2013-07-25 19:22:34 +0800 | [diff] [blame] | 176 | int nblocks; |
| 177 | int bio_index = 0; |
Miao Xie | e4100d9 | 2013-04-05 07:20:56 +0000 | [diff] [blame] | 178 | int count; |
Miao Xie | facc8a22 | 2013-07-25 19:22:34 +0800 | [diff] [blame] | 179 | u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy); |
Chris Mason | 61b4944 | 2008-07-31 15:42:53 -0400 | [diff] [blame] | 180 | |
| 181 | path = btrfs_alloc_path(); |
Tsutomu Itoh | c2db107 | 2011-03-01 06:48:31 +0000 | [diff] [blame] | 182 | if (!path) |
| 183 | return -ENOMEM; |
Miao Xie | facc8a22 | 2013-07-25 19:22:34 +0800 | [diff] [blame] | 184 | |
| 185 | nblocks = bio->bi_size >> inode->i_sb->s_blocksize_bits; |
| 186 | if (!dst) { |
| 187 | if (nblocks * csum_size > BTRFS_BIO_INLINE_CSUM_SIZE) { |
| 188 | btrfs_bio->csum_allocated = kmalloc(nblocks * csum_size, |
| 189 | GFP_NOFS); |
| 190 | if (!btrfs_bio->csum_allocated) { |
| 191 | btrfs_free_path(path); |
| 192 | return -ENOMEM; |
| 193 | } |
| 194 | btrfs_bio->csum = btrfs_bio->csum_allocated; |
| 195 | btrfs_bio->end_io = btrfs_io_bio_endio_readpage; |
| 196 | } else { |
| 197 | btrfs_bio->csum = btrfs_bio->csum_inline; |
| 198 | } |
| 199 | csum = btrfs_bio->csum; |
| 200 | } else { |
| 201 | csum = (u8 *)dst; |
| 202 | } |
| 203 | |
Chris Mason | 4d1b5fb | 2008-08-20 09:44:52 -0400 | [diff] [blame] | 204 | if (bio->bi_size > PAGE_CACHE_SIZE * 8) |
| 205 | path->reada = 2; |
Chris Mason | 61b4944 | 2008-07-31 15:42:53 -0400 | [diff] [blame] | 206 | |
| 207 | WARN_ON(bio->bi_vcnt <= 0); |
| 208 | |
Chris Mason | 2cf8572 | 2011-07-26 15:35:09 -0400 | [diff] [blame] | 209 | /* |
| 210 | * the free space stuff is only read when it hasn't been |
| 211 | * updated in the current transaction. So, we can safely |
| 212 | * read from the commit root and sidestep a nasty deadlock |
| 213 | * between reading the free space cache and updating the csum tree. |
| 214 | */ |
Liu Bo | 83eea1f | 2012-07-10 05:28:39 -0600 | [diff] [blame] | 215 | if (btrfs_is_free_space_inode(inode)) { |
Chris Mason | 2cf8572 | 2011-07-26 15:35:09 -0400 | [diff] [blame] | 216 | path->search_commit_root = 1; |
Josef Bacik | ddf23b3 | 2011-09-11 10:52:24 -0400 | [diff] [blame] | 217 | path->skip_locking = 1; |
| 218 | } |
Chris Mason | 2cf8572 | 2011-07-26 15:35:09 -0400 | [diff] [blame] | 219 | |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 220 | disk_bytenr = (u64)bio->bi_sector << 9; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 221 | if (dio) |
| 222 | offset = logical_offset; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 223 | while (bio_index < bio->bi_vcnt) { |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 224 | if (!dio) |
| 225 | offset = page_offset(bvec->bv_page) + bvec->bv_offset; |
Miao Xie | facc8a22 | 2013-07-25 19:22:34 +0800 | [diff] [blame] | 226 | count = btrfs_find_ordered_sum(inode, offset, disk_bytenr, |
| 227 | (u32 *)csum, nblocks); |
Miao Xie | e4100d9 | 2013-04-05 07:20:56 +0000 | [diff] [blame] | 228 | if (count) |
Chris Mason | 61b4944 | 2008-07-31 15:42:53 -0400 | [diff] [blame] | 229 | goto found; |
| 230 | |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 231 | if (!item || disk_bytenr < item_start_offset || |
| 232 | disk_bytenr >= item_last_offset) { |
Chris Mason | 61b4944 | 2008-07-31 15:42:53 -0400 | [diff] [blame] | 233 | struct btrfs_key found_key; |
| 234 | u32 item_size; |
| 235 | |
| 236 | if (item) |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 237 | btrfs_release_path(path); |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 238 | item = btrfs_lookup_csum(NULL, root->fs_info->csum_root, |
| 239 | path, disk_bytenr, 0); |
Chris Mason | 61b4944 | 2008-07-31 15:42:53 -0400 | [diff] [blame] | 240 | if (IS_ERR(item)) { |
Miao Xie | e4100d9 | 2013-04-05 07:20:56 +0000 | [diff] [blame] | 241 | count = 1; |
Miao Xie | facc8a22 | 2013-07-25 19:22:34 +0800 | [diff] [blame] | 242 | memset(csum, 0, csum_size); |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 243 | if (BTRFS_I(inode)->root->root_key.objectid == |
| 244 | BTRFS_DATA_RELOC_TREE_OBJECTID) { |
| 245 | set_extent_bits(io_tree, offset, |
| 246 | offset + bvec->bv_len - 1, |
| 247 | EXTENT_NODATASUM, GFP_NOFS); |
| 248 | } else { |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 249 | printk(KERN_INFO "btrfs no csum found " |
Li Zefan | 33345d01 | 2011-04-20 10:31:50 +0800 | [diff] [blame] | 250 | "for inode %llu start %llu\n", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 251 | btrfs_ino(inode), offset); |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 252 | } |
Chris Mason | 6dab815 | 2008-08-04 08:35:53 -0400 | [diff] [blame] | 253 | item = NULL; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 254 | btrfs_release_path(path); |
Chris Mason | 61b4944 | 2008-07-31 15:42:53 -0400 | [diff] [blame] | 255 | goto found; |
| 256 | } |
| 257 | btrfs_item_key_to_cpu(path->nodes[0], &found_key, |
| 258 | path->slots[0]); |
| 259 | |
| 260 | item_start_offset = found_key.offset; |
| 261 | item_size = btrfs_item_size_nr(path->nodes[0], |
| 262 | path->slots[0]); |
| 263 | item_last_offset = item_start_offset + |
Josef Bacik | 607d432 | 2008-12-02 07:17:45 -0500 | [diff] [blame] | 264 | (item_size / csum_size) * |
Chris Mason | 61b4944 | 2008-07-31 15:42:53 -0400 | [diff] [blame] | 265 | root->sectorsize; |
| 266 | item = btrfs_item_ptr(path->nodes[0], path->slots[0], |
| 267 | struct btrfs_csum_item); |
| 268 | } |
| 269 | /* |
| 270 | * this byte range must be able to fit inside |
| 271 | * a single leaf so it will also fit inside a u32 |
| 272 | */ |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 273 | diff = disk_bytenr - item_start_offset; |
Chris Mason | 61b4944 | 2008-07-31 15:42:53 -0400 | [diff] [blame] | 274 | diff = diff / root->sectorsize; |
Josef Bacik | 607d432 | 2008-12-02 07:17:45 -0500 | [diff] [blame] | 275 | diff = diff * csum_size; |
Miao Xie | facc8a22 | 2013-07-25 19:22:34 +0800 | [diff] [blame] | 276 | count = min_t(int, nblocks, (item_last_offset - disk_bytenr) >> |
| 277 | inode->i_sb->s_blocksize_bits); |
| 278 | read_extent_buffer(path->nodes[0], csum, |
Chris Mason | 3de9d6b | 2008-08-04 23:17:27 -0400 | [diff] [blame] | 279 | ((unsigned long)item) + diff, |
Miao Xie | e4100d9 | 2013-04-05 07:20:56 +0000 | [diff] [blame] | 280 | csum_size * count); |
Chris Mason | 61b4944 | 2008-07-31 15:42:53 -0400 | [diff] [blame] | 281 | found: |
Miao Xie | facc8a22 | 2013-07-25 19:22:34 +0800 | [diff] [blame] | 282 | csum += count * csum_size; |
| 283 | nblocks -= count; |
Miao Xie | e4100d9 | 2013-04-05 07:20:56 +0000 | [diff] [blame] | 284 | while (count--) { |
| 285 | disk_bytenr += bvec->bv_len; |
| 286 | offset += bvec->bv_len; |
| 287 | bio_index++; |
| 288 | bvec++; |
| 289 | } |
Chris Mason | 61b4944 | 2008-07-31 15:42:53 -0400 | [diff] [blame] | 290 | } |
| 291 | btrfs_free_path(path); |
| 292 | return 0; |
| 293 | } |
| 294 | |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 295 | int btrfs_lookup_bio_sums(struct btrfs_root *root, struct inode *inode, |
| 296 | struct bio *bio, u32 *dst) |
| 297 | { |
| 298 | return __btrfs_lookup_bio_sums(root, inode, bio, 0, dst, 0); |
| 299 | } |
| 300 | |
| 301 | int btrfs_lookup_bio_sums_dio(struct btrfs_root *root, struct inode *inode, |
Miao Xie | facc8a22 | 2013-07-25 19:22:34 +0800 | [diff] [blame] | 302 | struct btrfs_dio_private *dip, struct bio *bio, |
| 303 | u64 offset) |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 304 | { |
Miao Xie | facc8a22 | 2013-07-25 19:22:34 +0800 | [diff] [blame] | 305 | int len = (bio->bi_sector << 9) - dip->disk_bytenr; |
| 306 | u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy); |
| 307 | int ret; |
| 308 | |
| 309 | len >>= inode->i_sb->s_blocksize_bits; |
| 310 | len *= csum_size; |
| 311 | |
| 312 | ret = __btrfs_lookup_bio_sums(root, inode, bio, offset, |
| 313 | (u32 *)(dip->csum + len), 1); |
| 314 | return ret; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 315 | } |
| 316 | |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 317 | int btrfs_lookup_csums_range(struct btrfs_root *root, u64 start, u64 end, |
Arne Jansen | a2de733 | 2011-03-08 14:14:00 +0100 | [diff] [blame] | 318 | struct list_head *list, int search_commit) |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 319 | { |
| 320 | struct btrfs_key key; |
| 321 | struct btrfs_path *path; |
| 322 | struct extent_buffer *leaf; |
| 323 | struct btrfs_ordered_sum *sums; |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 324 | struct btrfs_csum_item *item; |
Mark Fasheh | 0678b61 | 2011-08-05 15:46:16 -0700 | [diff] [blame] | 325 | LIST_HEAD(tmplist); |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 326 | unsigned long offset; |
| 327 | int ret; |
| 328 | size_t size; |
| 329 | u64 csum_end; |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 330 | u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy); |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 331 | |
Josef Bacik | 4277a9c | 2013-10-15 09:36:40 -0400 | [diff] [blame] | 332 | ASSERT(start == ALIGN(start, root->sectorsize) && |
| 333 | (end + 1) == ALIGN(end + 1, root->sectorsize)); |
| 334 | |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 335 | path = btrfs_alloc_path(); |
Mark Fasheh | d8926bb | 2011-07-13 10:38:47 -0700 | [diff] [blame] | 336 | if (!path) |
| 337 | return -ENOMEM; |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 338 | |
Arne Jansen | a2de733 | 2011-03-08 14:14:00 +0100 | [diff] [blame] | 339 | if (search_commit) { |
| 340 | path->skip_locking = 1; |
| 341 | path->reada = 2; |
| 342 | path->search_commit_root = 1; |
| 343 | } |
| 344 | |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 345 | key.objectid = BTRFS_EXTENT_CSUM_OBJECTID; |
| 346 | key.offset = start; |
| 347 | key.type = BTRFS_EXTENT_CSUM_KEY; |
| 348 | |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 349 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 350 | if (ret < 0) |
| 351 | goto fail; |
| 352 | if (ret > 0 && path->slots[0] > 0) { |
| 353 | leaf = path->nodes[0]; |
| 354 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0] - 1); |
| 355 | if (key.objectid == BTRFS_EXTENT_CSUM_OBJECTID && |
| 356 | key.type == BTRFS_EXTENT_CSUM_KEY) { |
| 357 | offset = (start - key.offset) >> |
| 358 | root->fs_info->sb->s_blocksize_bits; |
| 359 | if (offset * csum_size < |
| 360 | btrfs_item_size_nr(leaf, path->slots[0] - 1)) |
| 361 | path->slots[0]--; |
| 362 | } |
| 363 | } |
| 364 | |
| 365 | while (start <= end) { |
| 366 | leaf = path->nodes[0]; |
| 367 | if (path->slots[0] >= btrfs_header_nritems(leaf)) { |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 368 | ret = btrfs_next_leaf(root, path); |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 369 | if (ret < 0) |
| 370 | goto fail; |
| 371 | if (ret > 0) |
| 372 | break; |
| 373 | leaf = path->nodes[0]; |
| 374 | } |
| 375 | |
| 376 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 377 | if (key.objectid != BTRFS_EXTENT_CSUM_OBJECTID || |
Zhi Yong Wu | 628c828 | 2013-03-18 09:18:09 +0000 | [diff] [blame] | 378 | key.type != BTRFS_EXTENT_CSUM_KEY || |
| 379 | key.offset > end) |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 380 | break; |
| 381 | |
| 382 | if (key.offset > start) |
| 383 | start = key.offset; |
| 384 | |
| 385 | size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 386 | csum_end = key.offset + (size / csum_size) * root->sectorsize; |
Yan Zheng | 87b29b2 | 2008-12-17 10:21:48 -0500 | [diff] [blame] | 387 | if (csum_end <= start) { |
| 388 | path->slots[0]++; |
| 389 | continue; |
| 390 | } |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 391 | |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 392 | csum_end = min(csum_end, end + 1); |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 393 | item = btrfs_item_ptr(path->nodes[0], path->slots[0], |
| 394 | struct btrfs_csum_item); |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 395 | while (start < csum_end) { |
| 396 | size = min_t(size_t, csum_end - start, |
Miao Xie | f51a4a1 | 2013-06-19 10:36:09 +0800 | [diff] [blame] | 397 | MAX_ORDERED_SUM_BYTES(root)); |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 398 | sums = kzalloc(btrfs_ordered_sum_size(root, size), |
Miao Xie | f51a4a1 | 2013-06-19 10:36:09 +0800 | [diff] [blame] | 399 | GFP_NOFS); |
Mark Fasheh | 0678b61 | 2011-08-05 15:46:16 -0700 | [diff] [blame] | 400 | if (!sums) { |
| 401 | ret = -ENOMEM; |
| 402 | goto fail; |
| 403 | } |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 404 | |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 405 | sums->bytenr = start; |
Miao Xie | f51a4a1 | 2013-06-19 10:36:09 +0800 | [diff] [blame] | 406 | sums->len = (int)size; |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 407 | |
| 408 | offset = (start - key.offset) >> |
| 409 | root->fs_info->sb->s_blocksize_bits; |
| 410 | offset *= csum_size; |
Miao Xie | f51a4a1 | 2013-06-19 10:36:09 +0800 | [diff] [blame] | 411 | size >>= root->fs_info->sb->s_blocksize_bits; |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 412 | |
Miao Xie | f51a4a1 | 2013-06-19 10:36:09 +0800 | [diff] [blame] | 413 | read_extent_buffer(path->nodes[0], |
| 414 | sums->sums, |
| 415 | ((unsigned long)item) + offset, |
| 416 | csum_size * size); |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 417 | |
Miao Xie | f51a4a1 | 2013-06-19 10:36:09 +0800 | [diff] [blame] | 418 | start += root->sectorsize * size; |
Mark Fasheh | 0678b61 | 2011-08-05 15:46:16 -0700 | [diff] [blame] | 419 | list_add_tail(&sums->list, &tmplist); |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 420 | } |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 421 | path->slots[0]++; |
| 422 | } |
| 423 | ret = 0; |
| 424 | fail: |
Mark Fasheh | 0678b61 | 2011-08-05 15:46:16 -0700 | [diff] [blame] | 425 | while (ret < 0 && !list_empty(&tmplist)) { |
| 426 | sums = list_entry(&tmplist, struct btrfs_ordered_sum, list); |
| 427 | list_del(&sums->list); |
| 428 | kfree(sums); |
| 429 | } |
| 430 | list_splice_tail(&tmplist, list); |
| 431 | |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 432 | btrfs_free_path(path); |
| 433 | return ret; |
| 434 | } |
| 435 | |
Chris Mason | 3edf7d3 | 2008-07-18 06:17:13 -0400 | [diff] [blame] | 436 | int btrfs_csum_one_bio(struct btrfs_root *root, struct inode *inode, |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 437 | struct bio *bio, u64 file_start, int contig) |
Chris Mason | e015640 | 2008-04-16 11:15:20 -0400 | [diff] [blame] | 438 | { |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 439 | struct btrfs_ordered_sum *sums; |
Chris Mason | 3edf7d3 | 2008-07-18 06:17:13 -0400 | [diff] [blame] | 440 | struct btrfs_ordered_extent *ordered; |
Chris Mason | e015640 | 2008-04-16 11:15:20 -0400 | [diff] [blame] | 441 | char *data; |
| 442 | struct bio_vec *bvec = bio->bi_io_vec; |
| 443 | int bio_index = 0; |
Miao Xie | f51a4a1 | 2013-06-19 10:36:09 +0800 | [diff] [blame] | 444 | int index; |
Chris Mason | 3edf7d3 | 2008-07-18 06:17:13 -0400 | [diff] [blame] | 445 | unsigned long total_bytes = 0; |
| 446 | unsigned long this_sum_bytes = 0; |
| 447 | u64 offset; |
Chris Mason | e015640 | 2008-04-16 11:15:20 -0400 | [diff] [blame] | 448 | |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 449 | WARN_ON(bio->bi_vcnt <= 0); |
| 450 | sums = kzalloc(btrfs_ordered_sum_size(root, bio->bi_size), GFP_NOFS); |
Chris Mason | e015640 | 2008-04-16 11:15:20 -0400 | [diff] [blame] | 451 | if (!sums) |
| 452 | return -ENOMEM; |
Chris Mason | 3edf7d3 | 2008-07-18 06:17:13 -0400 | [diff] [blame] | 453 | |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 454 | sums->len = bio->bi_size; |
| 455 | INIT_LIST_HEAD(&sums->list); |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 456 | |
| 457 | if (contig) |
| 458 | offset = file_start; |
| 459 | else |
| 460 | offset = page_offset(bvec->bv_page) + bvec->bv_offset; |
| 461 | |
| 462 | ordered = btrfs_lookup_ordered_extent(inode, offset); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 463 | BUG_ON(!ordered); /* Logic error */ |
Miao Xie | f51a4a1 | 2013-06-19 10:36:09 +0800 | [diff] [blame] | 464 | sums->bytenr = (u64)bio->bi_sector << 9; |
| 465 | index = 0; |
Chris Mason | e015640 | 2008-04-16 11:15:20 -0400 | [diff] [blame] | 466 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 467 | while (bio_index < bio->bi_vcnt) { |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 468 | if (!contig) |
| 469 | offset = page_offset(bvec->bv_page) + bvec->bv_offset; |
| 470 | |
Josef Bacik | e58dd74 | 2013-01-22 15:43:09 -0500 | [diff] [blame] | 471 | if (offset >= ordered->file_offset + ordered->len || |
| 472 | offset < ordered->file_offset) { |
Chris Mason | 3edf7d3 | 2008-07-18 06:17:13 -0400 | [diff] [blame] | 473 | unsigned long bytes_left; |
| 474 | sums->len = this_sum_bytes; |
| 475 | this_sum_bytes = 0; |
| 476 | btrfs_add_ordered_sum(inode, ordered, sums); |
| 477 | btrfs_put_ordered_extent(ordered); |
| 478 | |
| 479 | bytes_left = bio->bi_size - total_bytes; |
| 480 | |
| 481 | sums = kzalloc(btrfs_ordered_sum_size(root, bytes_left), |
| 482 | GFP_NOFS); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 483 | BUG_ON(!sums); /* -ENOMEM */ |
Chris Mason | 3edf7d3 | 2008-07-18 06:17:13 -0400 | [diff] [blame] | 484 | sums->len = bytes_left; |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 485 | ordered = btrfs_lookup_ordered_extent(inode, offset); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 486 | BUG_ON(!ordered); /* Logic error */ |
Miao Xie | f51a4a1 | 2013-06-19 10:36:09 +0800 | [diff] [blame] | 487 | sums->bytenr = ((u64)bio->bi_sector << 9) + |
| 488 | total_bytes; |
| 489 | index = 0; |
Chris Mason | 3edf7d3 | 2008-07-18 06:17:13 -0400 | [diff] [blame] | 490 | } |
| 491 | |
Cong Wang | 7ac687d | 2011-11-25 23:14:28 +0800 | [diff] [blame] | 492 | data = kmap_atomic(bvec->bv_page); |
Miao Xie | f51a4a1 | 2013-06-19 10:36:09 +0800 | [diff] [blame] | 493 | sums->sums[index] = ~(u32)0; |
| 494 | sums->sums[index] = btrfs_csum_data(data + bvec->bv_offset, |
| 495 | sums->sums[index], |
| 496 | bvec->bv_len); |
Cong Wang | 7ac687d | 2011-11-25 23:14:28 +0800 | [diff] [blame] | 497 | kunmap_atomic(data); |
Miao Xie | f51a4a1 | 2013-06-19 10:36:09 +0800 | [diff] [blame] | 498 | btrfs_csum_final(sums->sums[index], |
| 499 | (char *)(sums->sums + index)); |
Chris Mason | ed98b56 | 2008-07-22 23:06:42 -0400 | [diff] [blame] | 500 | |
Chris Mason | e015640 | 2008-04-16 11:15:20 -0400 | [diff] [blame] | 501 | bio_index++; |
Miao Xie | f51a4a1 | 2013-06-19 10:36:09 +0800 | [diff] [blame] | 502 | index++; |
Chris Mason | 3edf7d3 | 2008-07-18 06:17:13 -0400 | [diff] [blame] | 503 | total_bytes += bvec->bv_len; |
| 504 | this_sum_bytes += bvec->bv_len; |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 505 | offset += bvec->bv_len; |
Chris Mason | e015640 | 2008-04-16 11:15:20 -0400 | [diff] [blame] | 506 | bvec++; |
| 507 | } |
Chris Mason | ed98b56 | 2008-07-22 23:06:42 -0400 | [diff] [blame] | 508 | this_sum_bytes = 0; |
Chris Mason | 3edf7d3 | 2008-07-18 06:17:13 -0400 | [diff] [blame] | 509 | btrfs_add_ordered_sum(inode, ordered, sums); |
| 510 | btrfs_put_ordered_extent(ordered); |
Chris Mason | e015640 | 2008-04-16 11:15:20 -0400 | [diff] [blame] | 511 | return 0; |
| 512 | } |
| 513 | |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 514 | /* |
| 515 | * helper function for csum removal, this expects the |
| 516 | * key to describe the csum pointed to by the path, and it expects |
| 517 | * the csum to overlap the range [bytenr, len] |
| 518 | * |
| 519 | * The csum should not be entirely contained in the range and the |
| 520 | * range should not be entirely contained in the csum. |
| 521 | * |
| 522 | * This calls btrfs_truncate_item with the correct args based on the |
| 523 | * overlap, and fixes up the key as required. |
| 524 | */ |
Tsutomu Itoh | afe5fea | 2013-04-16 05:18:22 +0000 | [diff] [blame] | 525 | static noinline void truncate_one_csum(struct btrfs_root *root, |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 526 | struct btrfs_path *path, |
| 527 | struct btrfs_key *key, |
| 528 | u64 bytenr, u64 len) |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 529 | { |
| 530 | struct extent_buffer *leaf; |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 531 | u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy); |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 532 | u64 csum_end; |
| 533 | u64 end_byte = bytenr + len; |
| 534 | u32 blocksize_bits = root->fs_info->sb->s_blocksize_bits; |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 535 | |
| 536 | leaf = path->nodes[0]; |
| 537 | csum_end = btrfs_item_size_nr(leaf, path->slots[0]) / csum_size; |
| 538 | csum_end <<= root->fs_info->sb->s_blocksize_bits; |
| 539 | csum_end += key->offset; |
| 540 | |
| 541 | if (key->offset < bytenr && csum_end <= end_byte) { |
| 542 | /* |
| 543 | * [ bytenr - len ] |
| 544 | * [ ] |
| 545 | * [csum ] |
| 546 | * A simple truncate off the end of the item |
| 547 | */ |
| 548 | u32 new_size = (bytenr - key->offset) >> blocksize_bits; |
| 549 | new_size *= csum_size; |
Tsutomu Itoh | afe5fea | 2013-04-16 05:18:22 +0000 | [diff] [blame] | 550 | btrfs_truncate_item(root, path, new_size, 1); |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 551 | } else if (key->offset >= bytenr && csum_end > end_byte && |
| 552 | end_byte > key->offset) { |
| 553 | /* |
| 554 | * [ bytenr - len ] |
| 555 | * [ ] |
| 556 | * [csum ] |
| 557 | * we need to truncate from the beginning of the csum |
| 558 | */ |
| 559 | u32 new_size = (csum_end - end_byte) >> blocksize_bits; |
| 560 | new_size *= csum_size; |
| 561 | |
Tsutomu Itoh | afe5fea | 2013-04-16 05:18:22 +0000 | [diff] [blame] | 562 | btrfs_truncate_item(root, path, new_size, 0); |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 563 | |
| 564 | key->offset = end_byte; |
Tsutomu Itoh | afe5fea | 2013-04-16 05:18:22 +0000 | [diff] [blame] | 565 | btrfs_set_item_key_safe(root, path, key); |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 566 | } else { |
| 567 | BUG(); |
| 568 | } |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 569 | } |
| 570 | |
| 571 | /* |
| 572 | * deletes the csum items from the csum tree for a given |
| 573 | * range of bytes. |
| 574 | */ |
| 575 | int btrfs_del_csums(struct btrfs_trans_handle *trans, |
| 576 | struct btrfs_root *root, u64 bytenr, u64 len) |
| 577 | { |
| 578 | struct btrfs_path *path; |
| 579 | struct btrfs_key key; |
| 580 | u64 end_byte = bytenr + len; |
| 581 | u64 csum_end; |
| 582 | struct extent_buffer *leaf; |
| 583 | int ret; |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 584 | u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy); |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 585 | int blocksize_bits = root->fs_info->sb->s_blocksize_bits; |
| 586 | |
| 587 | root = root->fs_info->csum_root; |
| 588 | |
| 589 | path = btrfs_alloc_path(); |
liubo | 2a29edc | 2011-01-26 06:22:08 +0000 | [diff] [blame] | 590 | if (!path) |
| 591 | return -ENOMEM; |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 592 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 593 | while (1) { |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 594 | key.objectid = BTRFS_EXTENT_CSUM_OBJECTID; |
| 595 | key.offset = end_byte - 1; |
| 596 | key.type = BTRFS_EXTENT_CSUM_KEY; |
| 597 | |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 598 | path->leave_spinning = 1; |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 599 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 600 | if (ret > 0) { |
| 601 | if (path->slots[0] == 0) |
Tsutomu Itoh | 65a246c | 2011-05-19 04:37:44 +0000 | [diff] [blame] | 602 | break; |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 603 | path->slots[0]--; |
Josef Bacik | ad0397a | 2011-01-28 18:44:44 +0000 | [diff] [blame] | 604 | } else if (ret < 0) { |
Tsutomu Itoh | 65a246c | 2011-05-19 04:37:44 +0000 | [diff] [blame] | 605 | break; |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 606 | } |
Josef Bacik | ad0397a | 2011-01-28 18:44:44 +0000 | [diff] [blame] | 607 | |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 608 | leaf = path->nodes[0]; |
| 609 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 610 | |
| 611 | if (key.objectid != BTRFS_EXTENT_CSUM_OBJECTID || |
| 612 | key.type != BTRFS_EXTENT_CSUM_KEY) { |
| 613 | break; |
| 614 | } |
| 615 | |
| 616 | if (key.offset >= end_byte) |
| 617 | break; |
| 618 | |
| 619 | csum_end = btrfs_item_size_nr(leaf, path->slots[0]) / csum_size; |
| 620 | csum_end <<= blocksize_bits; |
| 621 | csum_end += key.offset; |
| 622 | |
| 623 | /* this csum ends before we start, we're done */ |
| 624 | if (csum_end <= bytenr) |
| 625 | break; |
| 626 | |
| 627 | /* delete the entire item, it is inside our range */ |
| 628 | if (key.offset >= bytenr && csum_end <= end_byte) { |
| 629 | ret = btrfs_del_item(trans, root, path); |
Tsutomu Itoh | 65a246c | 2011-05-19 04:37:44 +0000 | [diff] [blame] | 630 | if (ret) |
| 631 | goto out; |
Chris Mason | dcbdd4d | 2008-12-16 13:51:01 -0500 | [diff] [blame] | 632 | if (key.offset == bytenr) |
| 633 | break; |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 634 | } else if (key.offset < bytenr && csum_end > end_byte) { |
| 635 | unsigned long offset; |
| 636 | unsigned long shift_len; |
| 637 | unsigned long item_offset; |
| 638 | /* |
| 639 | * [ bytenr - len ] |
| 640 | * [csum ] |
| 641 | * |
| 642 | * Our bytes are in the middle of the csum, |
| 643 | * we need to split this item and insert a new one. |
| 644 | * |
| 645 | * But we can't drop the path because the |
| 646 | * csum could change, get removed, extended etc. |
| 647 | * |
| 648 | * The trick here is the max size of a csum item leaves |
| 649 | * enough room in the tree block for a single |
| 650 | * item header. So, we split the item in place, |
| 651 | * adding a new header pointing to the existing |
| 652 | * bytes. Then we loop around again and we have |
| 653 | * a nicely formed csum item that we can neatly |
| 654 | * truncate. |
| 655 | */ |
| 656 | offset = (bytenr - key.offset) >> blocksize_bits; |
| 657 | offset *= csum_size; |
| 658 | |
| 659 | shift_len = (len >> blocksize_bits) * csum_size; |
| 660 | |
| 661 | item_offset = btrfs_item_ptr_offset(leaf, |
| 662 | path->slots[0]); |
| 663 | |
| 664 | memset_extent_buffer(leaf, 0, item_offset + offset, |
| 665 | shift_len); |
| 666 | key.offset = bytenr; |
| 667 | |
| 668 | /* |
| 669 | * btrfs_split_item returns -EAGAIN when the |
| 670 | * item changed size or key |
| 671 | */ |
| 672 | ret = btrfs_split_item(trans, root, path, &key, offset); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 673 | if (ret && ret != -EAGAIN) { |
| 674 | btrfs_abort_transaction(trans, root, ret); |
| 675 | goto out; |
| 676 | } |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 677 | |
| 678 | key.offset = end_byte - 1; |
| 679 | } else { |
Tsutomu Itoh | afe5fea | 2013-04-16 05:18:22 +0000 | [diff] [blame] | 680 | truncate_one_csum(root, path, &key, bytenr, len); |
Chris Mason | dcbdd4d | 2008-12-16 13:51:01 -0500 | [diff] [blame] | 681 | if (key.offset < bytenr) |
| 682 | break; |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 683 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 684 | btrfs_release_path(path); |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 685 | } |
Tsutomu Itoh | 65a246c | 2011-05-19 04:37:44 +0000 | [diff] [blame] | 686 | ret = 0; |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 687 | out: |
| 688 | btrfs_free_path(path); |
Tsutomu Itoh | 65a246c | 2011-05-19 04:37:44 +0000 | [diff] [blame] | 689 | return ret; |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 690 | } |
| 691 | |
Chris Mason | 065631f | 2008-02-20 12:07:25 -0500 | [diff] [blame] | 692 | int btrfs_csum_file_blocks(struct btrfs_trans_handle *trans, |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 693 | struct btrfs_root *root, |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 694 | struct btrfs_ordered_sum *sums) |
Chris Mason | f254e52 | 2007-03-29 15:15:27 -0400 | [diff] [blame] | 695 | { |
Chris Mason | f254e52 | 2007-03-29 15:15:27 -0400 | [diff] [blame] | 696 | struct btrfs_key file_key; |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 697 | struct btrfs_key found_key; |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 698 | struct btrfs_path *path; |
Chris Mason | f254e52 | 2007-03-29 15:15:27 -0400 | [diff] [blame] | 699 | struct btrfs_csum_item *item; |
Chris Mason | 065631f | 2008-02-20 12:07:25 -0500 | [diff] [blame] | 700 | struct btrfs_csum_item *item_end; |
Chris Mason | ff79f81 | 2007-10-15 16:22:25 -0400 | [diff] [blame] | 701 | struct extent_buffer *leaf = NULL; |
Miao Xie | f51a4a1 | 2013-06-19 10:36:09 +0800 | [diff] [blame] | 702 | u64 next_offset; |
| 703 | u64 total_bytes = 0; |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 704 | u64 csum_offset; |
Miao Xie | f51a4a1 | 2013-06-19 10:36:09 +0800 | [diff] [blame] | 705 | u64 bytenr; |
Chris Mason | f578d4b | 2007-10-25 15:42:56 -0400 | [diff] [blame] | 706 | u32 nritems; |
| 707 | u32 ins_size; |
Miao Xie | f51a4a1 | 2013-06-19 10:36:09 +0800 | [diff] [blame] | 708 | int index = 0; |
| 709 | int found_next; |
| 710 | int ret; |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 711 | u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy); |
Chris Mason | 6e92f5e | 2008-02-20 12:07:25 -0500 | [diff] [blame] | 712 | |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 713 | path = btrfs_alloc_path(); |
Mark Fasheh | d8926bb | 2011-07-13 10:38:47 -0700 | [diff] [blame] | 714 | if (!path) |
| 715 | return -ENOMEM; |
Chris Mason | 065631f | 2008-02-20 12:07:25 -0500 | [diff] [blame] | 716 | again: |
| 717 | next_offset = (u64)-1; |
| 718 | found_next = 0; |
Miao Xie | f51a4a1 | 2013-06-19 10:36:09 +0800 | [diff] [blame] | 719 | bytenr = sums->bytenr + total_bytes; |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 720 | file_key.objectid = BTRFS_EXTENT_CSUM_OBJECTID; |
Miao Xie | f51a4a1 | 2013-06-19 10:36:09 +0800 | [diff] [blame] | 721 | file_key.offset = bytenr; |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 722 | btrfs_set_key_type(&file_key, BTRFS_EXTENT_CSUM_KEY); |
Chris Mason | a429e51 | 2007-04-18 16:15:28 -0400 | [diff] [blame] | 723 | |
Miao Xie | f51a4a1 | 2013-06-19 10:36:09 +0800 | [diff] [blame] | 724 | item = btrfs_lookup_csum(trans, root, path, bytenr, 1); |
Chris Mason | ff79f81 | 2007-10-15 16:22:25 -0400 | [diff] [blame] | 725 | if (!IS_ERR(item)) { |
Chris Mason | 639cb58 | 2008-08-28 06:15:25 -0400 | [diff] [blame] | 726 | ret = 0; |
Miao Xie | f51a4a1 | 2013-06-19 10:36:09 +0800 | [diff] [blame] | 727 | leaf = path->nodes[0]; |
| 728 | item_end = btrfs_item_ptr(leaf, path->slots[0], |
| 729 | struct btrfs_csum_item); |
| 730 | item_end = (struct btrfs_csum_item *)((char *)item_end + |
| 731 | btrfs_item_size_nr(leaf, path->slots[0])); |
Chris Mason | a429e51 | 2007-04-18 16:15:28 -0400 | [diff] [blame] | 732 | goto found; |
Chris Mason | ff79f81 | 2007-10-15 16:22:25 -0400 | [diff] [blame] | 733 | } |
Chris Mason | a429e51 | 2007-04-18 16:15:28 -0400 | [diff] [blame] | 734 | ret = PTR_ERR(item); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 735 | if (ret != -EFBIG && ret != -ENOENT) |
| 736 | goto fail_unlock; |
| 737 | |
Chris Mason | a429e51 | 2007-04-18 16:15:28 -0400 | [diff] [blame] | 738 | if (ret == -EFBIG) { |
| 739 | u32 item_size; |
| 740 | /* we found one, but it isn't big enough yet */ |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 741 | leaf = path->nodes[0]; |
| 742 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
Josef Bacik | 607d432 | 2008-12-02 07:17:45 -0500 | [diff] [blame] | 743 | if ((item_size / csum_size) >= |
| 744 | MAX_CSUM_ITEMS(root, csum_size)) { |
Chris Mason | a429e51 | 2007-04-18 16:15:28 -0400 | [diff] [blame] | 745 | /* already at max size, make a new one */ |
| 746 | goto insert; |
| 747 | } |
| 748 | } else { |
Chris Mason | f578d4b | 2007-10-25 15:42:56 -0400 | [diff] [blame] | 749 | int slot = path->slots[0] + 1; |
Chris Mason | a429e51 | 2007-04-18 16:15:28 -0400 | [diff] [blame] | 750 | /* we didn't find a csum item, insert one */ |
Chris Mason | f578d4b | 2007-10-25 15:42:56 -0400 | [diff] [blame] | 751 | nritems = btrfs_header_nritems(path->nodes[0]); |
| 752 | if (path->slots[0] >= nritems - 1) { |
| 753 | ret = btrfs_next_leaf(root, path); |
Yan | b56baf5 | 2007-10-29 12:01:05 -0400 | [diff] [blame] | 754 | if (ret == 1) |
Chris Mason | f578d4b | 2007-10-25 15:42:56 -0400 | [diff] [blame] | 755 | found_next = 1; |
Yan | b56baf5 | 2007-10-29 12:01:05 -0400 | [diff] [blame] | 756 | if (ret != 0) |
Chris Mason | f578d4b | 2007-10-25 15:42:56 -0400 | [diff] [blame] | 757 | goto insert; |
Yan | b56baf5 | 2007-10-29 12:01:05 -0400 | [diff] [blame] | 758 | slot = 0; |
Chris Mason | f578d4b | 2007-10-25 15:42:56 -0400 | [diff] [blame] | 759 | } |
| 760 | btrfs_item_key_to_cpu(path->nodes[0], &found_key, slot); |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 761 | if (found_key.objectid != BTRFS_EXTENT_CSUM_OBJECTID || |
| 762 | found_key.type != BTRFS_EXTENT_CSUM_KEY) { |
Chris Mason | f578d4b | 2007-10-25 15:42:56 -0400 | [diff] [blame] | 763 | found_next = 1; |
| 764 | goto insert; |
| 765 | } |
| 766 | next_offset = found_key.offset; |
| 767 | found_next = 1; |
Chris Mason | a429e51 | 2007-04-18 16:15:28 -0400 | [diff] [blame] | 768 | goto insert; |
| 769 | } |
| 770 | |
| 771 | /* |
| 772 | * at this point, we know the tree has an item, but it isn't big |
| 773 | * enough yet to put our csum in. Grow it |
| 774 | */ |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 775 | btrfs_release_path(path); |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 776 | ret = btrfs_search_slot(trans, root, &file_key, path, |
Josef Bacik | 607d432 | 2008-12-02 07:17:45 -0500 | [diff] [blame] | 777 | csum_size, 1); |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 778 | if (ret < 0) |
Chris Mason | 5386323 | 2008-08-15 15:34:18 -0400 | [diff] [blame] | 779 | goto fail_unlock; |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 780 | |
| 781 | if (ret > 0) { |
| 782 | if (path->slots[0] == 0) |
| 783 | goto insert; |
| 784 | path->slots[0]--; |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 785 | } |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 786 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 787 | leaf = path->nodes[0]; |
| 788 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 789 | csum_offset = (bytenr - found_key.offset) >> |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 790 | root->fs_info->sb->s_blocksize_bits; |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 791 | |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 792 | if (btrfs_key_type(&found_key) != BTRFS_EXTENT_CSUM_KEY || |
| 793 | found_key.objectid != BTRFS_EXTENT_CSUM_OBJECTID || |
Josef Bacik | 607d432 | 2008-12-02 07:17:45 -0500 | [diff] [blame] | 794 | csum_offset >= MAX_CSUM_ITEMS(root, csum_size)) { |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 795 | goto insert; |
| 796 | } |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 797 | |
Liu Bo | 2f697dc | 2013-02-04 13:12:18 +0000 | [diff] [blame] | 798 | if (csum_offset == btrfs_item_size_nr(leaf, path->slots[0]) / |
Josef Bacik | 607d432 | 2008-12-02 07:17:45 -0500 | [diff] [blame] | 799 | csum_size) { |
Liu Bo | 2f697dc | 2013-02-04 13:12:18 +0000 | [diff] [blame] | 800 | int extend_nr; |
| 801 | u64 tmp; |
| 802 | u32 diff; |
| 803 | u32 free_space; |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 804 | |
Liu Bo | 2f697dc | 2013-02-04 13:12:18 +0000 | [diff] [blame] | 805 | if (btrfs_leaf_free_space(root, leaf) < |
| 806 | sizeof(struct btrfs_item) + csum_size * 2) |
| 807 | goto insert; |
| 808 | |
| 809 | free_space = btrfs_leaf_free_space(root, leaf) - |
| 810 | sizeof(struct btrfs_item) - csum_size; |
Miao Xie | f51a4a1 | 2013-06-19 10:36:09 +0800 | [diff] [blame] | 811 | tmp = sums->len - total_bytes; |
Liu Bo | 2f697dc | 2013-02-04 13:12:18 +0000 | [diff] [blame] | 812 | tmp >>= root->fs_info->sb->s_blocksize_bits; |
| 813 | WARN_ON(tmp < 1); |
| 814 | |
| 815 | extend_nr = max_t(int, 1, (int)tmp); |
| 816 | diff = (csum_offset + extend_nr) * csum_size; |
| 817 | diff = min(diff, MAX_CSUM_ITEMS(root, csum_size) * csum_size); |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 818 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 819 | diff = diff - btrfs_item_size_nr(leaf, path->slots[0]); |
Liu Bo | 2f697dc | 2013-02-04 13:12:18 +0000 | [diff] [blame] | 820 | diff = min(free_space, diff); |
| 821 | diff /= csum_size; |
| 822 | diff *= csum_size; |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 823 | |
Tsutomu Itoh | 4b90c68 | 2013-04-16 05:18:49 +0000 | [diff] [blame] | 824 | btrfs_extend_item(root, path, diff); |
Miao Xie | f51a4a1 | 2013-06-19 10:36:09 +0800 | [diff] [blame] | 825 | ret = 0; |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 826 | goto csum; |
| 827 | } |
| 828 | |
| 829 | insert: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 830 | btrfs_release_path(path); |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 831 | csum_offset = 0; |
Chris Mason | f578d4b | 2007-10-25 15:42:56 -0400 | [diff] [blame] | 832 | if (found_next) { |
Liu Bo | 2f697dc | 2013-02-04 13:12:18 +0000 | [diff] [blame] | 833 | u64 tmp; |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 834 | |
Miao Xie | f51a4a1 | 2013-06-19 10:36:09 +0800 | [diff] [blame] | 835 | tmp = sums->len - total_bytes; |
Chris Mason | f578d4b | 2007-10-25 15:42:56 -0400 | [diff] [blame] | 836 | tmp >>= root->fs_info->sb->s_blocksize_bits; |
Liu Bo | 2f697dc | 2013-02-04 13:12:18 +0000 | [diff] [blame] | 837 | tmp = min(tmp, (next_offset - file_key.offset) >> |
| 838 | root->fs_info->sb->s_blocksize_bits); |
| 839 | |
Chris Mason | f578d4b | 2007-10-25 15:42:56 -0400 | [diff] [blame] | 840 | tmp = max((u64)1, tmp); |
Josef Bacik | 607d432 | 2008-12-02 07:17:45 -0500 | [diff] [blame] | 841 | tmp = min(tmp, (u64)MAX_CSUM_ITEMS(root, csum_size)); |
| 842 | ins_size = csum_size * tmp; |
Chris Mason | f578d4b | 2007-10-25 15:42:56 -0400 | [diff] [blame] | 843 | } else { |
Josef Bacik | 607d432 | 2008-12-02 07:17:45 -0500 | [diff] [blame] | 844 | ins_size = csum_size; |
Chris Mason | f578d4b | 2007-10-25 15:42:56 -0400 | [diff] [blame] | 845 | } |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 846 | path->leave_spinning = 1; |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 847 | ret = btrfs_insert_empty_item(trans, root, path, &file_key, |
Chris Mason | f578d4b | 2007-10-25 15:42:56 -0400 | [diff] [blame] | 848 | ins_size); |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 849 | path->leave_spinning = 0; |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 850 | if (ret < 0) |
Chris Mason | 5386323 | 2008-08-15 15:34:18 -0400 | [diff] [blame] | 851 | goto fail_unlock; |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 852 | if (WARN_ON(ret != 0)) |
Chris Mason | 5386323 | 2008-08-15 15:34:18 -0400 | [diff] [blame] | 853 | goto fail_unlock; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 854 | leaf = path->nodes[0]; |
Miao Xie | f51a4a1 | 2013-06-19 10:36:09 +0800 | [diff] [blame] | 855 | csum: |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 856 | item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_csum_item); |
Miao Xie | f51a4a1 | 2013-06-19 10:36:09 +0800 | [diff] [blame] | 857 | item_end = (struct btrfs_csum_item *)((unsigned char *)item + |
| 858 | btrfs_item_size_nr(leaf, path->slots[0])); |
Chris Mason | 509659c | 2007-05-10 12:36:17 -0400 | [diff] [blame] | 859 | item = (struct btrfs_csum_item *)((unsigned char *)item + |
Josef Bacik | 607d432 | 2008-12-02 07:17:45 -0500 | [diff] [blame] | 860 | csum_offset * csum_size); |
Chris Mason | b18c668 | 2007-04-17 13:26:50 -0400 | [diff] [blame] | 861 | found: |
Miao Xie | f51a4a1 | 2013-06-19 10:36:09 +0800 | [diff] [blame] | 862 | ins_size = (u32)(sums->len - total_bytes) >> |
| 863 | root->fs_info->sb->s_blocksize_bits; |
| 864 | ins_size *= csum_size; |
| 865 | ins_size = min_t(u32, (unsigned long)item_end - (unsigned long)item, |
| 866 | ins_size); |
| 867 | write_extent_buffer(leaf, sums->sums + index, (unsigned long)item, |
| 868 | ins_size); |
Chris Mason | aadfeb6 | 2008-01-29 09:10:27 -0500 | [diff] [blame] | 869 | |
Miao Xie | f51a4a1 | 2013-06-19 10:36:09 +0800 | [diff] [blame] | 870 | ins_size /= csum_size; |
| 871 | total_bytes += ins_size * root->sectorsize; |
| 872 | index += ins_size; |
Chris Mason | a659171 | 2011-07-19 12:04:14 -0400 | [diff] [blame] | 873 | |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 874 | btrfs_mark_buffer_dirty(path->nodes[0]); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 875 | if (total_bytes < sums->len) { |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 876 | btrfs_release_path(path); |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 877 | cond_resched(); |
Chris Mason | 065631f | 2008-02-20 12:07:25 -0500 | [diff] [blame] | 878 | goto again; |
| 879 | } |
Chris Mason | 5386323 | 2008-08-15 15:34:18 -0400 | [diff] [blame] | 880 | out: |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 881 | btrfs_free_path(path); |
Chris Mason | f254e52 | 2007-03-29 15:15:27 -0400 | [diff] [blame] | 882 | return ret; |
Chris Mason | 5386323 | 2008-08-15 15:34:18 -0400 | [diff] [blame] | 883 | |
| 884 | fail_unlock: |
Chris Mason | 5386323 | 2008-08-15 15:34:18 -0400 | [diff] [blame] | 885 | goto out; |
Chris Mason | f254e52 | 2007-03-29 15:15:27 -0400 | [diff] [blame] | 886 | } |