David Sterba | c1d7c51 | 2018-04-03 19:23:33 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Chris Mason | 6cbd557 | 2007-06-12 09:07:21 -0400 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2007 Oracle. All rights reserved. |
Chris Mason | 6cbd557 | 2007-06-12 09:07:21 -0400 | [diff] [blame] | 4 | */ |
| 5 | |
Chris Mason | 065631f | 2008-02-20 12:07:25 -0500 | [diff] [blame] | 6 | #include <linux/bio.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 7 | #include <linux/slab.h> |
Chris Mason | 065631f | 2008-02-20 12:07:25 -0500 | [diff] [blame] | 8 | #include <linux/pagemap.h> |
| 9 | #include <linux/highmem.h> |
Nikolay Borisov | a3d46ae | 2019-04-01 11:29:58 +0300 | [diff] [blame] | 10 | #include <linux/sched/mm.h> |
Johannes Thumshirn | d517857 | 2019-06-03 16:58:57 +0200 | [diff] [blame] | 11 | #include <crypto/hash.h> |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 12 | #include "ctree.h" |
Chris Mason | dee26a9 | 2007-03-26 16:00:06 -0400 | [diff] [blame] | 13 | #include "disk-io.h" |
Chris Mason | 9f5fae2 | 2007-03-20 14:38:32 -0400 | [diff] [blame] | 14 | #include "transaction.h" |
Miao Xie | facc8a22 | 2013-07-25 19:22:34 +0800 | [diff] [blame] | 15 | #include "volumes.h" |
Chris Mason | 1de037a | 2007-05-29 15:17:08 -0400 | [diff] [blame] | 16 | #include "print-tree.h" |
Anand Jain | ebb8765 | 2016-03-10 17:26:59 +0800 | [diff] [blame] | 17 | #include "compression.h" |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 18 | |
Chris Mason | 42049bf | 2016-08-03 14:05:46 -0700 | [diff] [blame] | 19 | #define __MAX_CSUM_ITEMS(r, size) ((unsigned long)(((BTRFS_LEAF_DATA_SIZE(r) - \ |
| 20 | sizeof(struct btrfs_item) * 2) / \ |
| 21 | size) - 1)) |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 22 | |
Zach Brown | 221b831 | 2012-09-20 14:33:00 -0600 | [diff] [blame] | 23 | #define MAX_CSUM_ITEMS(r, size) (min_t(u32, __MAX_CSUM_ITEMS(r, size), \ |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 24 | PAGE_SIZE)) |
Chris Mason | 7ca4be4 | 2012-01-31 20:19:02 -0500 | [diff] [blame] | 25 | |
Johannes Thumshirn | 1e25a2e | 2019-05-22 10:19:01 +0200 | [diff] [blame] | 26 | static inline u32 max_ordered_sum_bytes(struct btrfs_fs_info *fs_info, |
| 27 | u16 csum_size) |
| 28 | { |
| 29 | u32 ncsums = (PAGE_SIZE - sizeof(struct btrfs_ordered_sum)) / csum_size; |
| 30 | |
| 31 | return ncsums * fs_info->sectorsize; |
| 32 | } |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 33 | |
Chris Mason | b18c668 | 2007-04-17 13:26:50 -0400 | [diff] [blame] | 34 | int btrfs_insert_file_extent(struct btrfs_trans_handle *trans, |
Sage Weil | f2eb0a2 | 2008-05-02 14:43:14 -0400 | [diff] [blame] | 35 | struct btrfs_root *root, |
| 36 | u64 objectid, u64 pos, |
| 37 | u64 disk_offset, u64 disk_num_bytes, |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 38 | u64 num_bytes, u64 offset, u64 ram_bytes, |
| 39 | u8 compression, u8 encryption, u16 other_encoding) |
Chris Mason | 9f5fae2 | 2007-03-20 14:38:32 -0400 | [diff] [blame] | 40 | { |
Chris Mason | dee26a9 | 2007-03-26 16:00:06 -0400 | [diff] [blame] | 41 | int ret = 0; |
| 42 | struct btrfs_file_extent_item *item; |
| 43 | struct btrfs_key file_key; |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 44 | struct btrfs_path *path; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 45 | struct extent_buffer *leaf; |
Chris Mason | dee26a9 | 2007-03-26 16:00:06 -0400 | [diff] [blame] | 46 | |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 47 | path = btrfs_alloc_path(); |
Tsutomu Itoh | db5b493 | 2011-03-23 08:14:16 +0000 | [diff] [blame] | 48 | if (!path) |
| 49 | return -ENOMEM; |
Chris Mason | dee26a9 | 2007-03-26 16:00:06 -0400 | [diff] [blame] | 50 | file_key.objectid = objectid; |
Chris Mason | b18c668 | 2007-04-17 13:26:50 -0400 | [diff] [blame] | 51 | file_key.offset = pos; |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 52 | file_key.type = BTRFS_EXTENT_DATA_KEY; |
Chris Mason | dee26a9 | 2007-03-26 16:00:06 -0400 | [diff] [blame] | 53 | |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 54 | path->leave_spinning = 1; |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 55 | ret = btrfs_insert_empty_item(trans, root, path, &file_key, |
Chris Mason | dee26a9 | 2007-03-26 16:00:06 -0400 | [diff] [blame] | 56 | sizeof(*item)); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 57 | if (ret < 0) |
| 58 | goto out; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 59 | BUG_ON(ret); /* Can't happen */ |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 60 | leaf = path->nodes[0]; |
| 61 | item = btrfs_item_ptr(leaf, path->slots[0], |
Chris Mason | dee26a9 | 2007-03-26 16:00:06 -0400 | [diff] [blame] | 62 | struct btrfs_file_extent_item); |
Sage Weil | f2eb0a2 | 2008-05-02 14:43:14 -0400 | [diff] [blame] | 63 | btrfs_set_file_extent_disk_bytenr(leaf, item, disk_offset); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 64 | btrfs_set_file_extent_disk_num_bytes(leaf, item, disk_num_bytes); |
Sage Weil | f2eb0a2 | 2008-05-02 14:43:14 -0400 | [diff] [blame] | 65 | btrfs_set_file_extent_offset(leaf, item, offset); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 66 | btrfs_set_file_extent_num_bytes(leaf, item, num_bytes); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 67 | btrfs_set_file_extent_ram_bytes(leaf, item, ram_bytes); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 68 | btrfs_set_file_extent_generation(leaf, item, trans->transid); |
| 69 | btrfs_set_file_extent_type(leaf, item, BTRFS_FILE_EXTENT_REG); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 70 | btrfs_set_file_extent_compression(leaf, item, compression); |
| 71 | btrfs_set_file_extent_encryption(leaf, item, encryption); |
| 72 | btrfs_set_file_extent_other_encoding(leaf, item, other_encoding); |
| 73 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 74 | btrfs_mark_buffer_dirty(leaf); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 75 | out: |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 76 | btrfs_free_path(path); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 77 | return ret; |
Chris Mason | 9f5fae2 | 2007-03-20 14:38:32 -0400 | [diff] [blame] | 78 | } |
Chris Mason | dee26a9 | 2007-03-26 16:00:06 -0400 | [diff] [blame] | 79 | |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 80 | static struct btrfs_csum_item * |
| 81 | btrfs_lookup_csum(struct btrfs_trans_handle *trans, |
| 82 | struct btrfs_root *root, |
| 83 | struct btrfs_path *path, |
| 84 | u64 bytenr, int cow) |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 85 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 86 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 87 | int ret; |
| 88 | struct btrfs_key file_key; |
| 89 | struct btrfs_key found_key; |
| 90 | struct btrfs_csum_item *item; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 91 | struct extent_buffer *leaf; |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 92 | u64 csum_offset = 0; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 93 | u16 csum_size = btrfs_super_csum_size(fs_info->super_copy); |
Chris Mason | a429e51 | 2007-04-18 16:15:28 -0400 | [diff] [blame] | 94 | int csums_in_item; |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 95 | |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 96 | file_key.objectid = BTRFS_EXTENT_CSUM_OBJECTID; |
| 97 | file_key.offset = bytenr; |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 98 | file_key.type = BTRFS_EXTENT_CSUM_KEY; |
Chris Mason | b18c668 | 2007-04-17 13:26:50 -0400 | [diff] [blame] | 99 | ret = btrfs_search_slot(trans, root, &file_key, path, 0, cow); |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 100 | if (ret < 0) |
| 101 | goto fail; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 102 | leaf = path->nodes[0]; |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 103 | if (ret > 0) { |
| 104 | ret = 1; |
Chris Mason | 70b2bef | 2007-04-17 15:39:32 -0400 | [diff] [blame] | 105 | if (path->slots[0] == 0) |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 106 | goto fail; |
| 107 | path->slots[0]--; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 108 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 109 | if (found_key.type != BTRFS_EXTENT_CSUM_KEY) |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 110 | goto fail; |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 111 | |
| 112 | csum_offset = (bytenr - found_key.offset) >> |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 113 | fs_info->sb->s_blocksize_bits; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 114 | csums_in_item = btrfs_item_size_nr(leaf, path->slots[0]); |
Josef Bacik | 607d432 | 2008-12-02 07:17:45 -0500 | [diff] [blame] | 115 | csums_in_item /= csum_size; |
Chris Mason | a429e51 | 2007-04-18 16:15:28 -0400 | [diff] [blame] | 116 | |
Miao Xie | 82d130f | 2013-03-28 08:12:15 +0000 | [diff] [blame] | 117 | if (csum_offset == csums_in_item) { |
Chris Mason | a429e51 | 2007-04-18 16:15:28 -0400 | [diff] [blame] | 118 | ret = -EFBIG; |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 119 | goto fail; |
Miao Xie | 82d130f | 2013-03-28 08:12:15 +0000 | [diff] [blame] | 120 | } else if (csum_offset > csums_in_item) { |
| 121 | goto fail; |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 122 | } |
| 123 | } |
| 124 | item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_csum_item); |
Chris Mason | 509659c | 2007-05-10 12:36:17 -0400 | [diff] [blame] | 125 | item = (struct btrfs_csum_item *)((unsigned char *)item + |
Josef Bacik | 607d432 | 2008-12-02 07:17:45 -0500 | [diff] [blame] | 126 | csum_offset * csum_size); |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 127 | return item; |
| 128 | fail: |
| 129 | if (ret > 0) |
Chris Mason | b18c668 | 2007-04-17 13:26:50 -0400 | [diff] [blame] | 130 | ret = -ENOENT; |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 131 | return ERR_PTR(ret); |
| 132 | } |
| 133 | |
Chris Mason | dee26a9 | 2007-03-26 16:00:06 -0400 | [diff] [blame] | 134 | int btrfs_lookup_file_extent(struct btrfs_trans_handle *trans, |
| 135 | struct btrfs_root *root, |
| 136 | struct btrfs_path *path, u64 objectid, |
Chris Mason | 9773a78 | 2007-03-27 11:26:26 -0400 | [diff] [blame] | 137 | u64 offset, int mod) |
Chris Mason | dee26a9 | 2007-03-26 16:00:06 -0400 | [diff] [blame] | 138 | { |
| 139 | int ret; |
| 140 | struct btrfs_key file_key; |
| 141 | int ins_len = mod < 0 ? -1 : 0; |
| 142 | int cow = mod != 0; |
| 143 | |
| 144 | file_key.objectid = objectid; |
Chris Mason | 70b2bef | 2007-04-17 15:39:32 -0400 | [diff] [blame] | 145 | file_key.offset = offset; |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 146 | file_key.type = BTRFS_EXTENT_DATA_KEY; |
Chris Mason | dee26a9 | 2007-03-26 16:00:06 -0400 | [diff] [blame] | 147 | ret = btrfs_search_slot(trans, root, &file_key, path, ins_len, cow); |
| 148 | return ret; |
| 149 | } |
Chris Mason | f254e52 | 2007-03-29 15:15:27 -0400 | [diff] [blame] | 150 | |
Omar Sandoval | e62958f | 2019-12-02 17:34:17 -0800 | [diff] [blame^] | 151 | /** |
| 152 | * btrfs_lookup_bio_sums - Look up checksums for a bio. |
| 153 | * @inode: inode that the bio is for. |
| 154 | * @bio: bio embedded in btrfs_io_bio. |
| 155 | * @at_offset: If true, look up checksums for the extent at @offset. |
| 156 | * If false, use the page offsets from the bio. |
| 157 | * @offset: If @at_offset is true, offset in file to look up checksums for. |
| 158 | * Ignored otherwise. |
| 159 | * @dst: Buffer of size btrfs_super_csum_size() used to return checksum. If |
| 160 | * NULL, the checksum is returned in btrfs_io_bio(bio)->csum instead. |
| 161 | * |
| 162 | * Return: BLK_STS_RESOURCE if allocating memory fails, BLK_STS_OK otherwise. |
| 163 | */ |
| 164 | blk_status_t btrfs_lookup_bio_sums(struct inode *inode, struct bio *bio, |
| 165 | bool at_offset, u64 offset, u8 *dst) |
Chris Mason | 61b4944 | 2008-07-31 15:42:53 -0400 | [diff] [blame] | 166 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 167 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); |
Liu Bo | 17347ce | 2017-05-15 15:33:27 -0700 | [diff] [blame] | 168 | struct bio_vec bvec; |
| 169 | struct bvec_iter iter; |
Miao Xie | facc8a22 | 2013-07-25 19:22:34 +0800 | [diff] [blame] | 170 | struct btrfs_io_bio *btrfs_bio = btrfs_io_bio(bio); |
| 171 | struct btrfs_csum_item *item = NULL; |
| 172 | struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree; |
| 173 | struct btrfs_path *path; |
| 174 | u8 *csum; |
Chris Mason | 61b4944 | 2008-07-31 15:42:53 -0400 | [diff] [blame] | 175 | u64 item_start_offset = 0; |
| 176 | u64 item_last_offset = 0; |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 177 | u64 disk_bytenr; |
Chandan Rajendra | c40a3d3 | 2016-01-21 15:55:54 +0530 | [diff] [blame] | 178 | u64 page_bytes_left; |
Chris Mason | 61b4944 | 2008-07-31 15:42:53 -0400 | [diff] [blame] | 179 | u32 diff; |
Miao Xie | facc8a22 | 2013-07-25 19:22:34 +0800 | [diff] [blame] | 180 | int nblocks; |
Liu Bo | 17347ce | 2017-05-15 15:33:27 -0700 | [diff] [blame] | 181 | int count = 0; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 182 | u16 csum_size = btrfs_super_csum_size(fs_info->super_copy); |
Chris Mason | 61b4944 | 2008-07-31 15:42:53 -0400 | [diff] [blame] | 183 | |
| 184 | path = btrfs_alloc_path(); |
Tsutomu Itoh | c2db107 | 2011-03-01 06:48:31 +0000 | [diff] [blame] | 185 | if (!path) |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 186 | return BLK_STS_RESOURCE; |
Miao Xie | facc8a22 | 2013-07-25 19:22:34 +0800 | [diff] [blame] | 187 | |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 188 | nblocks = bio->bi_iter.bi_size >> inode->i_sb->s_blocksize_bits; |
Miao Xie | facc8a22 | 2013-07-25 19:22:34 +0800 | [diff] [blame] | 189 | if (!dst) { |
| 190 | if (nblocks * csum_size > BTRFS_BIO_INLINE_CSUM_SIZE) { |
David Sterba | 31feccc | 2018-11-22 17:16:46 +0100 | [diff] [blame] | 191 | btrfs_bio->csum = kmalloc_array(nblocks, csum_size, |
| 192 | GFP_NOFS); |
| 193 | if (!btrfs_bio->csum) { |
Miao Xie | facc8a22 | 2013-07-25 19:22:34 +0800 | [diff] [blame] | 194 | btrfs_free_path(path); |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 195 | return BLK_STS_RESOURCE; |
Miao Xie | facc8a22 | 2013-07-25 19:22:34 +0800 | [diff] [blame] | 196 | } |
Miao Xie | facc8a22 | 2013-07-25 19:22:34 +0800 | [diff] [blame] | 197 | } else { |
| 198 | btrfs_bio->csum = btrfs_bio->csum_inline; |
| 199 | } |
| 200 | csum = btrfs_bio->csum; |
| 201 | } else { |
Johannes Thumshirn | 10fe6ca | 2019-05-22 10:19:02 +0200 | [diff] [blame] | 202 | csum = dst; |
Miao Xie | facc8a22 | 2013-07-25 19:22:34 +0800 | [diff] [blame] | 203 | } |
| 204 | |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 205 | if (bio->bi_iter.bi_size > PAGE_SIZE * 8) |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 206 | path->reada = READA_FORWARD; |
Chris Mason | 61b4944 | 2008-07-31 15:42:53 -0400 | [diff] [blame] | 207 | |
Chris Mason | 2cf8572 | 2011-07-26 15:35:09 -0400 | [diff] [blame] | 208 | /* |
| 209 | * the free space stuff is only read when it hasn't been |
| 210 | * updated in the current transaction. So, we can safely |
| 211 | * read from the commit root and sidestep a nasty deadlock |
| 212 | * between reading the free space cache and updating the csum tree. |
| 213 | */ |
Nikolay Borisov | 70ddc55 | 2017-02-20 13:50:35 +0200 | [diff] [blame] | 214 | if (btrfs_is_free_space_inode(BTRFS_I(inode))) { |
Chris Mason | 2cf8572 | 2011-07-26 15:35:09 -0400 | [diff] [blame] | 215 | path->search_commit_root = 1; |
Josef Bacik | ddf23b3 | 2011-09-11 10:52:24 -0400 | [diff] [blame] | 216 | path->skip_locking = 1; |
| 217 | } |
Chris Mason | 2cf8572 | 2011-07-26 15:35:09 -0400 | [diff] [blame] | 218 | |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 219 | disk_bytenr = (u64)bio->bi_iter.bi_sector << 9; |
Chandan Rajendra | c40a3d3 | 2016-01-21 15:55:54 +0530 | [diff] [blame] | 220 | |
Liu Bo | 17347ce | 2017-05-15 15:33:27 -0700 | [diff] [blame] | 221 | bio_for_each_segment(bvec, bio, iter) { |
| 222 | page_bytes_left = bvec.bv_len; |
Christoph Hellwig | 4989d27 | 2016-11-25 09:07:52 +0100 | [diff] [blame] | 223 | if (count) |
| 224 | goto next; |
| 225 | |
Omar Sandoval | e62958f | 2019-12-02 17:34:17 -0800 | [diff] [blame^] | 226 | if (!at_offset) |
Liu Bo | 17347ce | 2017-05-15 15:33:27 -0700 | [diff] [blame] | 227 | offset = page_offset(bvec.bv_page) + bvec.bv_offset; |
Miao Xie | facc8a22 | 2013-07-25 19:22:34 +0800 | [diff] [blame] | 228 | count = btrfs_find_ordered_sum(inode, offset, disk_bytenr, |
Johannes Thumshirn | 1e25a2e | 2019-05-22 10:19:01 +0200 | [diff] [blame] | 229 | csum, nblocks); |
Miao Xie | e4100d9 | 2013-04-05 07:20:56 +0000 | [diff] [blame] | 230 | if (count) |
Chris Mason | 61b4944 | 2008-07-31 15:42:53 -0400 | [diff] [blame] | 231 | goto found; |
| 232 | |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 233 | if (!item || disk_bytenr < item_start_offset || |
| 234 | disk_bytenr >= item_last_offset) { |
Chris Mason | 61b4944 | 2008-07-31 15:42:53 -0400 | [diff] [blame] | 235 | struct btrfs_key found_key; |
| 236 | u32 item_size; |
| 237 | |
| 238 | if (item) |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 239 | btrfs_release_path(path); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 240 | item = btrfs_lookup_csum(NULL, fs_info->csum_root, |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 241 | path, disk_bytenr, 0); |
Chris Mason | 61b4944 | 2008-07-31 15:42:53 -0400 | [diff] [blame] | 242 | if (IS_ERR(item)) { |
Miao Xie | e4100d9 | 2013-04-05 07:20:56 +0000 | [diff] [blame] | 243 | count = 1; |
Miao Xie | facc8a22 | 2013-07-25 19:22:34 +0800 | [diff] [blame] | 244 | memset(csum, 0, csum_size); |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 245 | if (BTRFS_I(inode)->root->root_key.objectid == |
| 246 | BTRFS_DATA_RELOC_TREE_OBJECTID) { |
| 247 | set_extent_bits(io_tree, offset, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 248 | offset + fs_info->sectorsize - 1, |
David Sterba | ceeb0ae | 2016-04-26 23:54:39 +0200 | [diff] [blame] | 249 | EXTENT_NODATASUM); |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 250 | } else { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 251 | btrfs_info_rl(fs_info, |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 252 | "no csum found for inode %llu start %llu", |
Nikolay Borisov | 4a0cc7c | 2017-01-10 20:35:31 +0200 | [diff] [blame] | 253 | btrfs_ino(BTRFS_I(inode)), offset); |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 254 | } |
Chris Mason | 6dab815 | 2008-08-04 08:35:53 -0400 | [diff] [blame] | 255 | item = NULL; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 256 | btrfs_release_path(path); |
Chris Mason | 61b4944 | 2008-07-31 15:42:53 -0400 | [diff] [blame] | 257 | goto found; |
| 258 | } |
| 259 | btrfs_item_key_to_cpu(path->nodes[0], &found_key, |
| 260 | path->slots[0]); |
| 261 | |
| 262 | item_start_offset = found_key.offset; |
| 263 | item_size = btrfs_item_size_nr(path->nodes[0], |
| 264 | path->slots[0]); |
| 265 | item_last_offset = item_start_offset + |
Josef Bacik | 607d432 | 2008-12-02 07:17:45 -0500 | [diff] [blame] | 266 | (item_size / csum_size) * |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 267 | fs_info->sectorsize; |
Chris Mason | 61b4944 | 2008-07-31 15:42:53 -0400 | [diff] [blame] | 268 | item = btrfs_item_ptr(path->nodes[0], path->slots[0], |
| 269 | struct btrfs_csum_item); |
| 270 | } |
| 271 | /* |
| 272 | * this byte range must be able to fit inside |
| 273 | * a single leaf so it will also fit inside a u32 |
| 274 | */ |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 275 | diff = disk_bytenr - item_start_offset; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 276 | diff = diff / fs_info->sectorsize; |
Josef Bacik | 607d432 | 2008-12-02 07:17:45 -0500 | [diff] [blame] | 277 | diff = diff * csum_size; |
Miao Xie | facc8a22 | 2013-07-25 19:22:34 +0800 | [diff] [blame] | 278 | count = min_t(int, nblocks, (item_last_offset - disk_bytenr) >> |
| 279 | inode->i_sb->s_blocksize_bits); |
| 280 | read_extent_buffer(path->nodes[0], csum, |
Chris Mason | 3de9d6b | 2008-08-04 23:17:27 -0400 | [diff] [blame] | 281 | ((unsigned long)item) + diff, |
Miao Xie | e4100d9 | 2013-04-05 07:20:56 +0000 | [diff] [blame] | 282 | csum_size * count); |
Chris Mason | 61b4944 | 2008-07-31 15:42:53 -0400 | [diff] [blame] | 283 | found: |
Miao Xie | facc8a22 | 2013-07-25 19:22:34 +0800 | [diff] [blame] | 284 | csum += count * csum_size; |
| 285 | nblocks -= count; |
Christoph Hellwig | 4989d27 | 2016-11-25 09:07:52 +0100 | [diff] [blame] | 286 | next: |
Miao Xie | e4100d9 | 2013-04-05 07:20:56 +0000 | [diff] [blame] | 287 | while (count--) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 288 | disk_bytenr += fs_info->sectorsize; |
| 289 | offset += fs_info->sectorsize; |
| 290 | page_bytes_left -= fs_info->sectorsize; |
Christoph Hellwig | 4989d27 | 2016-11-25 09:07:52 +0100 | [diff] [blame] | 291 | if (!page_bytes_left) |
| 292 | break; /* move to next bio */ |
Miao Xie | e4100d9 | 2013-04-05 07:20:56 +0000 | [diff] [blame] | 293 | } |
Chris Mason | 61b4944 | 2008-07-31 15:42:53 -0400 | [diff] [blame] | 294 | } |
Chris Mason | 389f239 | 2016-03-21 06:59:09 -0700 | [diff] [blame] | 295 | |
Christoph Hellwig | 4989d27 | 2016-11-25 09:07:52 +0100 | [diff] [blame] | 296 | WARN_ON_ONCE(count); |
Chris Mason | 61b4944 | 2008-07-31 15:42:53 -0400 | [diff] [blame] | 297 | btrfs_free_path(path); |
Omar Sandoval | e62958f | 2019-12-02 17:34:17 -0800 | [diff] [blame^] | 298 | return BLK_STS_OK; |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 299 | } |
| 300 | |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 301 | 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] | 302 | struct list_head *list, int search_commit) |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 303 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 304 | struct btrfs_fs_info *fs_info = root->fs_info; |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 305 | struct btrfs_key key; |
| 306 | struct btrfs_path *path; |
| 307 | struct extent_buffer *leaf; |
| 308 | struct btrfs_ordered_sum *sums; |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 309 | struct btrfs_csum_item *item; |
Mark Fasheh | 0678b61 | 2011-08-05 15:46:16 -0700 | [diff] [blame] | 310 | LIST_HEAD(tmplist); |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 311 | unsigned long offset; |
| 312 | int ret; |
| 313 | size_t size; |
| 314 | u64 csum_end; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 315 | u16 csum_size = btrfs_super_csum_size(fs_info->super_copy); |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 316 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 317 | ASSERT(IS_ALIGNED(start, fs_info->sectorsize) && |
| 318 | IS_ALIGNED(end + 1, fs_info->sectorsize)); |
Josef Bacik | 4277a9c | 2013-10-15 09:36:40 -0400 | [diff] [blame] | 319 | |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 320 | path = btrfs_alloc_path(); |
Mark Fasheh | d8926bb | 2011-07-13 10:38:47 -0700 | [diff] [blame] | 321 | if (!path) |
| 322 | return -ENOMEM; |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 323 | |
Arne Jansen | a2de733 | 2011-03-08 14:14:00 +0100 | [diff] [blame] | 324 | if (search_commit) { |
| 325 | path->skip_locking = 1; |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 326 | path->reada = READA_FORWARD; |
Arne Jansen | a2de733 | 2011-03-08 14:14:00 +0100 | [diff] [blame] | 327 | path->search_commit_root = 1; |
| 328 | } |
| 329 | |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 330 | key.objectid = BTRFS_EXTENT_CSUM_OBJECTID; |
| 331 | key.offset = start; |
| 332 | key.type = BTRFS_EXTENT_CSUM_KEY; |
| 333 | |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 334 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 335 | if (ret < 0) |
| 336 | goto fail; |
| 337 | if (ret > 0 && path->slots[0] > 0) { |
| 338 | leaf = path->nodes[0]; |
| 339 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0] - 1); |
| 340 | if (key.objectid == BTRFS_EXTENT_CSUM_OBJECTID && |
| 341 | key.type == BTRFS_EXTENT_CSUM_KEY) { |
| 342 | offset = (start - key.offset) >> |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 343 | fs_info->sb->s_blocksize_bits; |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 344 | if (offset * csum_size < |
| 345 | btrfs_item_size_nr(leaf, path->slots[0] - 1)) |
| 346 | path->slots[0]--; |
| 347 | } |
| 348 | } |
| 349 | |
| 350 | while (start <= end) { |
| 351 | leaf = path->nodes[0]; |
| 352 | if (path->slots[0] >= btrfs_header_nritems(leaf)) { |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 353 | ret = btrfs_next_leaf(root, path); |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 354 | if (ret < 0) |
| 355 | goto fail; |
| 356 | if (ret > 0) |
| 357 | break; |
| 358 | leaf = path->nodes[0]; |
| 359 | } |
| 360 | |
| 361 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 362 | if (key.objectid != BTRFS_EXTENT_CSUM_OBJECTID || |
Zhi Yong Wu | 628c828 | 2013-03-18 09:18:09 +0000 | [diff] [blame] | 363 | key.type != BTRFS_EXTENT_CSUM_KEY || |
| 364 | key.offset > end) |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 365 | break; |
| 366 | |
| 367 | if (key.offset > start) |
| 368 | start = key.offset; |
| 369 | |
| 370 | size = btrfs_item_size_nr(leaf, path->slots[0]); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 371 | csum_end = key.offset + (size / csum_size) * fs_info->sectorsize; |
Yan Zheng | 87b29b2 | 2008-12-17 10:21:48 -0500 | [diff] [blame] | 372 | if (csum_end <= start) { |
| 373 | path->slots[0]++; |
| 374 | continue; |
| 375 | } |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 376 | |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 377 | csum_end = min(csum_end, end + 1); |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 378 | item = btrfs_item_ptr(path->nodes[0], path->slots[0], |
| 379 | struct btrfs_csum_item); |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 380 | while (start < csum_end) { |
| 381 | size = min_t(size_t, csum_end - start, |
Johannes Thumshirn | 1e25a2e | 2019-05-22 10:19:01 +0200 | [diff] [blame] | 382 | max_ordered_sum_bytes(fs_info, csum_size)); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 383 | sums = kzalloc(btrfs_ordered_sum_size(fs_info, size), |
Miao Xie | f51a4a1 | 2013-06-19 10:36:09 +0800 | [diff] [blame] | 384 | GFP_NOFS); |
Mark Fasheh | 0678b61 | 2011-08-05 15:46:16 -0700 | [diff] [blame] | 385 | if (!sums) { |
| 386 | ret = -ENOMEM; |
| 387 | goto fail; |
| 388 | } |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 389 | |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 390 | sums->bytenr = start; |
Miao Xie | f51a4a1 | 2013-06-19 10:36:09 +0800 | [diff] [blame] | 391 | sums->len = (int)size; |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 392 | |
| 393 | offset = (start - key.offset) >> |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 394 | fs_info->sb->s_blocksize_bits; |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 395 | offset *= csum_size; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 396 | size >>= fs_info->sb->s_blocksize_bits; |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 397 | |
Miao Xie | f51a4a1 | 2013-06-19 10:36:09 +0800 | [diff] [blame] | 398 | read_extent_buffer(path->nodes[0], |
| 399 | sums->sums, |
| 400 | ((unsigned long)item) + offset, |
| 401 | csum_size * size); |
Yan Zheng | 07d400a | 2009-01-06 11:42:00 -0500 | [diff] [blame] | 402 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 403 | start += fs_info->sectorsize * size; |
Mark Fasheh | 0678b61 | 2011-08-05 15:46:16 -0700 | [diff] [blame] | 404 | list_add_tail(&sums->list, &tmplist); |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 405 | } |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 406 | path->slots[0]++; |
| 407 | } |
| 408 | ret = 0; |
| 409 | fail: |
Mark Fasheh | 0678b61 | 2011-08-05 15:46:16 -0700 | [diff] [blame] | 410 | while (ret < 0 && !list_empty(&tmplist)) { |
Chris Mason | 6e5aafb | 2014-11-04 06:59:04 -0800 | [diff] [blame] | 411 | sums = list_entry(tmplist.next, struct btrfs_ordered_sum, list); |
Mark Fasheh | 0678b61 | 2011-08-05 15:46:16 -0700 | [diff] [blame] | 412 | list_del(&sums->list); |
| 413 | kfree(sums); |
| 414 | } |
| 415 | list_splice_tail(&tmplist, list); |
| 416 | |
Yan Zheng | 17d217f | 2008-12-12 10:03:38 -0500 | [diff] [blame] | 417 | btrfs_free_path(path); |
| 418 | return ret; |
| 419 | } |
| 420 | |
Nikolay Borisov | 51d470a | 2019-04-22 16:07:31 +0300 | [diff] [blame] | 421 | /* |
| 422 | * btrfs_csum_one_bio - Calculates checksums of the data contained inside a bio |
| 423 | * @inode: Owner of the data inside the bio |
| 424 | * @bio: Contains the data to be checksummed |
| 425 | * @file_start: offset in file this bio begins to describe |
| 426 | * @contig: Boolean. If true/1 means all bio vecs in this bio are |
| 427 | * contiguous and they begin at @file_start in the file. False/0 |
| 428 | * means this bio can contains potentially discontigous bio vecs |
| 429 | * so the logical offset of each should be calculated separately. |
| 430 | */ |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 431 | blk_status_t btrfs_csum_one_bio(struct inode *inode, struct bio *bio, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 432 | u64 file_start, int contig) |
Chris Mason | e015640 | 2008-04-16 11:15:20 -0400 | [diff] [blame] | 433 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 434 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); |
Johannes Thumshirn | d517857 | 2019-06-03 16:58:57 +0200 | [diff] [blame] | 435 | SHASH_DESC_ON_STACK(shash, fs_info->csum_shash); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 436 | struct btrfs_ordered_sum *sums; |
Christoph Hellwig | 6cd7ce4 | 2016-11-25 09:07:49 +0100 | [diff] [blame] | 437 | struct btrfs_ordered_extent *ordered = NULL; |
Chris Mason | e015640 | 2008-04-16 11:15:20 -0400 | [diff] [blame] | 438 | char *data; |
Liu Bo | 17347ce | 2017-05-15 15:33:27 -0700 | [diff] [blame] | 439 | struct bvec_iter iter; |
| 440 | struct bio_vec bvec; |
Miao Xie | f51a4a1 | 2013-06-19 10:36:09 +0800 | [diff] [blame] | 441 | int index; |
Chandan Rajendra | c40a3d3 | 2016-01-21 15:55:54 +0530 | [diff] [blame] | 442 | int nr_sectors; |
Chris Mason | 3edf7d3 | 2008-07-18 06:17:13 -0400 | [diff] [blame] | 443 | unsigned long total_bytes = 0; |
| 444 | unsigned long this_sum_bytes = 0; |
Liu Bo | 17347ce | 2017-05-15 15:33:27 -0700 | [diff] [blame] | 445 | int i; |
Chris Mason | 3edf7d3 | 2008-07-18 06:17:13 -0400 | [diff] [blame] | 446 | u64 offset; |
Nikolay Borisov | a3d46ae | 2019-04-01 11:29:58 +0300 | [diff] [blame] | 447 | unsigned nofs_flag; |
Johannes Thumshirn | 1e25a2e | 2019-05-22 10:19:01 +0200 | [diff] [blame] | 448 | const u16 csum_size = btrfs_super_csum_size(fs_info->super_copy); |
Chris Mason | e015640 | 2008-04-16 11:15:20 -0400 | [diff] [blame] | 449 | |
Nikolay Borisov | a3d46ae | 2019-04-01 11:29:58 +0300 | [diff] [blame] | 450 | nofs_flag = memalloc_nofs_save(); |
| 451 | sums = kvzalloc(btrfs_ordered_sum_size(fs_info, bio->bi_iter.bi_size), |
| 452 | GFP_KERNEL); |
| 453 | memalloc_nofs_restore(nofs_flag); |
| 454 | |
Chris Mason | e015640 | 2008-04-16 11:15:20 -0400 | [diff] [blame] | 455 | if (!sums) |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 456 | return BLK_STS_RESOURCE; |
Chris Mason | 3edf7d3 | 2008-07-18 06:17:13 -0400 | [diff] [blame] | 457 | |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 458 | sums->len = bio->bi_iter.bi_size; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 459 | INIT_LIST_HEAD(&sums->list); |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 460 | |
| 461 | if (contig) |
| 462 | offset = file_start; |
| 463 | else |
Christoph Hellwig | 6cd7ce4 | 2016-11-25 09:07:49 +0100 | [diff] [blame] | 464 | offset = 0; /* shut up gcc */ |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 465 | |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 466 | sums->bytenr = (u64)bio->bi_iter.bi_sector << 9; |
Miao Xie | f51a4a1 | 2013-06-19 10:36:09 +0800 | [diff] [blame] | 467 | index = 0; |
Chris Mason | e015640 | 2008-04-16 11:15:20 -0400 | [diff] [blame] | 468 | |
Johannes Thumshirn | d517857 | 2019-06-03 16:58:57 +0200 | [diff] [blame] | 469 | shash->tfm = fs_info->csum_shash; |
| 470 | |
Liu Bo | 17347ce | 2017-05-15 15:33:27 -0700 | [diff] [blame] | 471 | bio_for_each_segment(bvec, bio, iter) { |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 472 | if (!contig) |
Liu Bo | 17347ce | 2017-05-15 15:33:27 -0700 | [diff] [blame] | 473 | offset = page_offset(bvec.bv_page) + bvec.bv_offset; |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 474 | |
Christoph Hellwig | 6cd7ce4 | 2016-11-25 09:07:49 +0100 | [diff] [blame] | 475 | if (!ordered) { |
| 476 | ordered = btrfs_lookup_ordered_extent(inode, offset); |
| 477 | BUG_ON(!ordered); /* Logic error */ |
| 478 | } |
| 479 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 480 | nr_sectors = BTRFS_BYTES_TO_BLKS(fs_info, |
Liu Bo | 17347ce | 2017-05-15 15:33:27 -0700 | [diff] [blame] | 481 | bvec.bv_len + fs_info->sectorsize |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 482 | - 1); |
Chris Mason | 3edf7d3 | 2008-07-18 06:17:13 -0400 | [diff] [blame] | 483 | |
Chandan Rajendra | c40a3d3 | 2016-01-21 15:55:54 +0530 | [diff] [blame] | 484 | for (i = 0; i < nr_sectors; i++) { |
| 485 | if (offset >= ordered->file_offset + ordered->len || |
| 486 | offset < ordered->file_offset) { |
| 487 | unsigned long bytes_left; |
| 488 | |
Chandan Rajendra | c40a3d3 | 2016-01-21 15:55:54 +0530 | [diff] [blame] | 489 | sums->len = this_sum_bytes; |
| 490 | this_sum_bytes = 0; |
Nikolay Borisov | f975626 | 2019-04-10 16:16:11 +0300 | [diff] [blame] | 491 | btrfs_add_ordered_sum(ordered, sums); |
Chandan Rajendra | c40a3d3 | 2016-01-21 15:55:54 +0530 | [diff] [blame] | 492 | btrfs_put_ordered_extent(ordered); |
| 493 | |
| 494 | bytes_left = bio->bi_iter.bi_size - total_bytes; |
| 495 | |
Nikolay Borisov | a3d46ae | 2019-04-01 11:29:58 +0300 | [diff] [blame] | 496 | nofs_flag = memalloc_nofs_save(); |
| 497 | sums = kvzalloc(btrfs_ordered_sum_size(fs_info, |
| 498 | bytes_left), GFP_KERNEL); |
| 499 | memalloc_nofs_restore(nofs_flag); |
Chandan Rajendra | c40a3d3 | 2016-01-21 15:55:54 +0530 | [diff] [blame] | 500 | BUG_ON(!sums); /* -ENOMEM */ |
| 501 | sums->len = bytes_left; |
| 502 | ordered = btrfs_lookup_ordered_extent(inode, |
| 503 | offset); |
| 504 | ASSERT(ordered); /* Logic error */ |
| 505 | sums->bytenr = ((u64)bio->bi_iter.bi_sector << 9) |
| 506 | + total_bytes; |
| 507 | index = 0; |
Chandan Rajendra | c40a3d3 | 2016-01-21 15:55:54 +0530 | [diff] [blame] | 508 | } |
| 509 | |
Johannes Thumshirn | d517857 | 2019-06-03 16:58:57 +0200 | [diff] [blame] | 510 | crypto_shash_init(shash); |
Johannes Thumshirn | 443c8e2 | 2019-03-07 17:14:00 +0100 | [diff] [blame] | 511 | data = kmap_atomic(bvec.bv_page); |
Johannes Thumshirn | d517857 | 2019-06-03 16:58:57 +0200 | [diff] [blame] | 512 | crypto_shash_update(shash, data + bvec.bv_offset |
| 513 | + (i * fs_info->sectorsize), |
| 514 | fs_info->sectorsize); |
Johannes Thumshirn | 443c8e2 | 2019-03-07 17:14:00 +0100 | [diff] [blame] | 515 | kunmap_atomic(data); |
Johannes Thumshirn | d517857 | 2019-06-03 16:58:57 +0200 | [diff] [blame] | 516 | crypto_shash_final(shash, (char *)(sums->sums + index)); |
Johannes Thumshirn | 1e25a2e | 2019-05-22 10:19:01 +0200 | [diff] [blame] | 517 | index += csum_size; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 518 | offset += fs_info->sectorsize; |
| 519 | this_sum_bytes += fs_info->sectorsize; |
| 520 | total_bytes += fs_info->sectorsize; |
Chris Mason | 3edf7d3 | 2008-07-18 06:17:13 -0400 | [diff] [blame] | 521 | } |
| 522 | |
Chris Mason | e015640 | 2008-04-16 11:15:20 -0400 | [diff] [blame] | 523 | } |
Chris Mason | ed98b56 | 2008-07-22 23:06:42 -0400 | [diff] [blame] | 524 | this_sum_bytes = 0; |
Nikolay Borisov | f975626 | 2019-04-10 16:16:11 +0300 | [diff] [blame] | 525 | btrfs_add_ordered_sum(ordered, sums); |
Chris Mason | 3edf7d3 | 2008-07-18 06:17:13 -0400 | [diff] [blame] | 526 | btrfs_put_ordered_extent(ordered); |
Chris Mason | e015640 | 2008-04-16 11:15:20 -0400 | [diff] [blame] | 527 | return 0; |
| 528 | } |
| 529 | |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 530 | /* |
| 531 | * helper function for csum removal, this expects the |
| 532 | * key to describe the csum pointed to by the path, and it expects |
| 533 | * the csum to overlap the range [bytenr, len] |
| 534 | * |
| 535 | * The csum should not be entirely contained in the range and the |
| 536 | * range should not be entirely contained in the csum. |
| 537 | * |
| 538 | * This calls btrfs_truncate_item with the correct args based on the |
| 539 | * overlap, and fixes up the key as required. |
| 540 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 541 | static noinline void truncate_one_csum(struct btrfs_fs_info *fs_info, |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 542 | struct btrfs_path *path, |
| 543 | struct btrfs_key *key, |
| 544 | u64 bytenr, u64 len) |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 545 | { |
| 546 | struct extent_buffer *leaf; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 547 | u16 csum_size = btrfs_super_csum_size(fs_info->super_copy); |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 548 | u64 csum_end; |
| 549 | u64 end_byte = bytenr + len; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 550 | u32 blocksize_bits = fs_info->sb->s_blocksize_bits; |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 551 | |
| 552 | leaf = path->nodes[0]; |
| 553 | csum_end = btrfs_item_size_nr(leaf, path->slots[0]) / csum_size; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 554 | csum_end <<= fs_info->sb->s_blocksize_bits; |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 555 | csum_end += key->offset; |
| 556 | |
| 557 | if (key->offset < bytenr && csum_end <= end_byte) { |
| 558 | /* |
| 559 | * [ bytenr - len ] |
| 560 | * [ ] |
| 561 | * [csum ] |
| 562 | * A simple truncate off the end of the item |
| 563 | */ |
| 564 | u32 new_size = (bytenr - key->offset) >> blocksize_bits; |
| 565 | new_size *= csum_size; |
David Sterba | 78ac4f9 | 2019-03-20 14:49:12 +0100 | [diff] [blame] | 566 | btrfs_truncate_item(path, new_size, 1); |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 567 | } else if (key->offset >= bytenr && csum_end > end_byte && |
| 568 | end_byte > key->offset) { |
| 569 | /* |
| 570 | * [ bytenr - len ] |
| 571 | * [ ] |
| 572 | * [csum ] |
| 573 | * we need to truncate from the beginning of the csum |
| 574 | */ |
| 575 | u32 new_size = (csum_end - end_byte) >> blocksize_bits; |
| 576 | new_size *= csum_size; |
| 577 | |
David Sterba | 78ac4f9 | 2019-03-20 14:49:12 +0100 | [diff] [blame] | 578 | btrfs_truncate_item(path, new_size, 0); |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 579 | |
| 580 | key->offset = end_byte; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 581 | btrfs_set_item_key_safe(fs_info, path, key); |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 582 | } else { |
| 583 | BUG(); |
| 584 | } |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 585 | } |
| 586 | |
| 587 | /* |
| 588 | * deletes the csum items from the csum tree for a given |
| 589 | * range of bytes. |
| 590 | */ |
| 591 | int btrfs_del_csums(struct btrfs_trans_handle *trans, |
Filipe Manana | 40e046a | 2019-12-05 16:58:30 +0000 | [diff] [blame] | 592 | struct btrfs_root *root, u64 bytenr, u64 len) |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 593 | { |
Filipe Manana | 40e046a | 2019-12-05 16:58:30 +0000 | [diff] [blame] | 594 | struct btrfs_fs_info *fs_info = trans->fs_info; |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 595 | struct btrfs_path *path; |
| 596 | struct btrfs_key key; |
| 597 | u64 end_byte = bytenr + len; |
| 598 | u64 csum_end; |
| 599 | struct extent_buffer *leaf; |
| 600 | int ret; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 601 | u16 csum_size = btrfs_super_csum_size(fs_info->super_copy); |
| 602 | int blocksize_bits = fs_info->sb->s_blocksize_bits; |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 603 | |
Filipe Manana | 40e046a | 2019-12-05 16:58:30 +0000 | [diff] [blame] | 604 | ASSERT(root == fs_info->csum_root || |
| 605 | root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID); |
| 606 | |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 607 | path = btrfs_alloc_path(); |
liubo | 2a29edc | 2011-01-26 06:22:08 +0000 | [diff] [blame] | 608 | if (!path) |
| 609 | return -ENOMEM; |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 610 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 611 | while (1) { |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 612 | key.objectid = BTRFS_EXTENT_CSUM_OBJECTID; |
| 613 | key.offset = end_byte - 1; |
| 614 | key.type = BTRFS_EXTENT_CSUM_KEY; |
| 615 | |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 616 | path->leave_spinning = 1; |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 617 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 618 | if (ret > 0) { |
| 619 | if (path->slots[0] == 0) |
Tsutomu Itoh | 65a246c | 2011-05-19 04:37:44 +0000 | [diff] [blame] | 620 | break; |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 621 | path->slots[0]--; |
Josef Bacik | ad0397a | 2011-01-28 18:44:44 +0000 | [diff] [blame] | 622 | } else if (ret < 0) { |
Tsutomu Itoh | 65a246c | 2011-05-19 04:37:44 +0000 | [diff] [blame] | 623 | break; |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 624 | } |
Josef Bacik | ad0397a | 2011-01-28 18:44:44 +0000 | [diff] [blame] | 625 | |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 626 | leaf = path->nodes[0]; |
| 627 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 628 | |
| 629 | if (key.objectid != BTRFS_EXTENT_CSUM_OBJECTID || |
| 630 | key.type != BTRFS_EXTENT_CSUM_KEY) { |
| 631 | break; |
| 632 | } |
| 633 | |
| 634 | if (key.offset >= end_byte) |
| 635 | break; |
| 636 | |
| 637 | csum_end = btrfs_item_size_nr(leaf, path->slots[0]) / csum_size; |
| 638 | csum_end <<= blocksize_bits; |
| 639 | csum_end += key.offset; |
| 640 | |
| 641 | /* this csum ends before we start, we're done */ |
| 642 | if (csum_end <= bytenr) |
| 643 | break; |
| 644 | |
| 645 | /* delete the entire item, it is inside our range */ |
| 646 | if (key.offset >= bytenr && csum_end <= end_byte) { |
Filipe Manana | 6f54621 | 2017-01-28 01:47:56 +0000 | [diff] [blame] | 647 | int del_nr = 1; |
| 648 | |
| 649 | /* |
| 650 | * Check how many csum items preceding this one in this |
| 651 | * leaf correspond to our range and then delete them all |
| 652 | * at once. |
| 653 | */ |
| 654 | if (key.offset > bytenr && path->slots[0] > 0) { |
| 655 | int slot = path->slots[0] - 1; |
| 656 | |
| 657 | while (slot >= 0) { |
| 658 | struct btrfs_key pk; |
| 659 | |
| 660 | btrfs_item_key_to_cpu(leaf, &pk, slot); |
| 661 | if (pk.offset < bytenr || |
| 662 | pk.type != BTRFS_EXTENT_CSUM_KEY || |
| 663 | pk.objectid != |
| 664 | BTRFS_EXTENT_CSUM_OBJECTID) |
| 665 | break; |
| 666 | path->slots[0] = slot; |
| 667 | del_nr++; |
| 668 | key.offset = pk.offset; |
| 669 | slot--; |
| 670 | } |
| 671 | } |
| 672 | ret = btrfs_del_items(trans, root, path, |
| 673 | path->slots[0], del_nr); |
Tsutomu Itoh | 65a246c | 2011-05-19 04:37:44 +0000 | [diff] [blame] | 674 | if (ret) |
| 675 | goto out; |
Chris Mason | dcbdd4d | 2008-12-16 13:51:01 -0500 | [diff] [blame] | 676 | if (key.offset == bytenr) |
| 677 | break; |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 678 | } else if (key.offset < bytenr && csum_end > end_byte) { |
| 679 | unsigned long offset; |
| 680 | unsigned long shift_len; |
| 681 | unsigned long item_offset; |
| 682 | /* |
| 683 | * [ bytenr - len ] |
| 684 | * [csum ] |
| 685 | * |
| 686 | * Our bytes are in the middle of the csum, |
| 687 | * we need to split this item and insert a new one. |
| 688 | * |
| 689 | * But we can't drop the path because the |
| 690 | * csum could change, get removed, extended etc. |
| 691 | * |
| 692 | * The trick here is the max size of a csum item leaves |
| 693 | * enough room in the tree block for a single |
| 694 | * item header. So, we split the item in place, |
| 695 | * adding a new header pointing to the existing |
| 696 | * bytes. Then we loop around again and we have |
| 697 | * a nicely formed csum item that we can neatly |
| 698 | * truncate. |
| 699 | */ |
| 700 | offset = (bytenr - key.offset) >> blocksize_bits; |
| 701 | offset *= csum_size; |
| 702 | |
| 703 | shift_len = (len >> blocksize_bits) * csum_size; |
| 704 | |
| 705 | item_offset = btrfs_item_ptr_offset(leaf, |
| 706 | path->slots[0]); |
| 707 | |
David Sterba | b159fa2 | 2016-11-08 18:09:03 +0100 | [diff] [blame] | 708 | memzero_extent_buffer(leaf, item_offset + offset, |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 709 | shift_len); |
| 710 | key.offset = bytenr; |
| 711 | |
| 712 | /* |
| 713 | * btrfs_split_item returns -EAGAIN when the |
| 714 | * item changed size or key |
| 715 | */ |
| 716 | ret = btrfs_split_item(trans, root, path, &key, offset); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 717 | if (ret && ret != -EAGAIN) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 718 | btrfs_abort_transaction(trans, ret); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 719 | goto out; |
| 720 | } |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 721 | |
| 722 | key.offset = end_byte - 1; |
| 723 | } else { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 724 | truncate_one_csum(fs_info, path, &key, bytenr, len); |
Chris Mason | dcbdd4d | 2008-12-16 13:51:01 -0500 | [diff] [blame] | 725 | if (key.offset < bytenr) |
| 726 | break; |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 727 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 728 | btrfs_release_path(path); |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 729 | } |
Tsutomu Itoh | 65a246c | 2011-05-19 04:37:44 +0000 | [diff] [blame] | 730 | ret = 0; |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 731 | out: |
| 732 | btrfs_free_path(path); |
Tsutomu Itoh | 65a246c | 2011-05-19 04:37:44 +0000 | [diff] [blame] | 733 | return ret; |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 734 | } |
| 735 | |
Chris Mason | 065631f | 2008-02-20 12:07:25 -0500 | [diff] [blame] | 736 | int btrfs_csum_file_blocks(struct btrfs_trans_handle *trans, |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 737 | struct btrfs_root *root, |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 738 | struct btrfs_ordered_sum *sums) |
Chris Mason | f254e52 | 2007-03-29 15:15:27 -0400 | [diff] [blame] | 739 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 740 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | f254e52 | 2007-03-29 15:15:27 -0400 | [diff] [blame] | 741 | struct btrfs_key file_key; |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 742 | struct btrfs_key found_key; |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 743 | struct btrfs_path *path; |
Chris Mason | f254e52 | 2007-03-29 15:15:27 -0400 | [diff] [blame] | 744 | struct btrfs_csum_item *item; |
Chris Mason | 065631f | 2008-02-20 12:07:25 -0500 | [diff] [blame] | 745 | struct btrfs_csum_item *item_end; |
Chris Mason | ff79f81 | 2007-10-15 16:22:25 -0400 | [diff] [blame] | 746 | struct extent_buffer *leaf = NULL; |
Miao Xie | f51a4a1 | 2013-06-19 10:36:09 +0800 | [diff] [blame] | 747 | u64 next_offset; |
| 748 | u64 total_bytes = 0; |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 749 | u64 csum_offset; |
Miao Xie | f51a4a1 | 2013-06-19 10:36:09 +0800 | [diff] [blame] | 750 | u64 bytenr; |
Chris Mason | f578d4b | 2007-10-25 15:42:56 -0400 | [diff] [blame] | 751 | u32 nritems; |
| 752 | u32 ins_size; |
Miao Xie | f51a4a1 | 2013-06-19 10:36:09 +0800 | [diff] [blame] | 753 | int index = 0; |
| 754 | int found_next; |
| 755 | int ret; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 756 | u16 csum_size = btrfs_super_csum_size(fs_info->super_copy); |
Chris Mason | 6e92f5e | 2008-02-20 12:07:25 -0500 | [diff] [blame] | 757 | |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 758 | path = btrfs_alloc_path(); |
Mark Fasheh | d8926bb | 2011-07-13 10:38:47 -0700 | [diff] [blame] | 759 | if (!path) |
| 760 | return -ENOMEM; |
Chris Mason | 065631f | 2008-02-20 12:07:25 -0500 | [diff] [blame] | 761 | again: |
| 762 | next_offset = (u64)-1; |
| 763 | found_next = 0; |
Miao Xie | f51a4a1 | 2013-06-19 10:36:09 +0800 | [diff] [blame] | 764 | bytenr = sums->bytenr + total_bytes; |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 765 | file_key.objectid = BTRFS_EXTENT_CSUM_OBJECTID; |
Miao Xie | f51a4a1 | 2013-06-19 10:36:09 +0800 | [diff] [blame] | 766 | file_key.offset = bytenr; |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 767 | file_key.type = BTRFS_EXTENT_CSUM_KEY; |
Chris Mason | a429e51 | 2007-04-18 16:15:28 -0400 | [diff] [blame] | 768 | |
Miao Xie | f51a4a1 | 2013-06-19 10:36:09 +0800 | [diff] [blame] | 769 | item = btrfs_lookup_csum(trans, root, path, bytenr, 1); |
Chris Mason | ff79f81 | 2007-10-15 16:22:25 -0400 | [diff] [blame] | 770 | if (!IS_ERR(item)) { |
Chris Mason | 639cb58 | 2008-08-28 06:15:25 -0400 | [diff] [blame] | 771 | ret = 0; |
Miao Xie | f51a4a1 | 2013-06-19 10:36:09 +0800 | [diff] [blame] | 772 | leaf = path->nodes[0]; |
| 773 | item_end = btrfs_item_ptr(leaf, path->slots[0], |
| 774 | struct btrfs_csum_item); |
| 775 | item_end = (struct btrfs_csum_item *)((char *)item_end + |
| 776 | btrfs_item_size_nr(leaf, path->slots[0])); |
Chris Mason | a429e51 | 2007-04-18 16:15:28 -0400 | [diff] [blame] | 777 | goto found; |
Chris Mason | ff79f81 | 2007-10-15 16:22:25 -0400 | [diff] [blame] | 778 | } |
Chris Mason | a429e51 | 2007-04-18 16:15:28 -0400 | [diff] [blame] | 779 | ret = PTR_ERR(item); |
Yan, Zheng | 4a500fd | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 780 | if (ret != -EFBIG && ret != -ENOENT) |
| 781 | goto fail_unlock; |
| 782 | |
Chris Mason | a429e51 | 2007-04-18 16:15:28 -0400 | [diff] [blame] | 783 | if (ret == -EFBIG) { |
| 784 | u32 item_size; |
| 785 | /* we found one, but it isn't big enough yet */ |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 786 | leaf = path->nodes[0]; |
| 787 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
Josef Bacik | 607d432 | 2008-12-02 07:17:45 -0500 | [diff] [blame] | 788 | if ((item_size / csum_size) >= |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 789 | MAX_CSUM_ITEMS(fs_info, csum_size)) { |
Chris Mason | a429e51 | 2007-04-18 16:15:28 -0400 | [diff] [blame] | 790 | /* already at max size, make a new one */ |
| 791 | goto insert; |
| 792 | } |
| 793 | } else { |
Chris Mason | f578d4b | 2007-10-25 15:42:56 -0400 | [diff] [blame] | 794 | int slot = path->slots[0] + 1; |
Chris Mason | a429e51 | 2007-04-18 16:15:28 -0400 | [diff] [blame] | 795 | /* we didn't find a csum item, insert one */ |
Chris Mason | f578d4b | 2007-10-25 15:42:56 -0400 | [diff] [blame] | 796 | nritems = btrfs_header_nritems(path->nodes[0]); |
Filipe Manana | 35045bf | 2014-04-09 14:38:34 +0100 | [diff] [blame] | 797 | if (!nritems || (path->slots[0] >= nritems - 1)) { |
Chris Mason | f578d4b | 2007-10-25 15:42:56 -0400 | [diff] [blame] | 798 | ret = btrfs_next_leaf(root, path); |
Yan | b56baf5 | 2007-10-29 12:01:05 -0400 | [diff] [blame] | 799 | if (ret == 1) |
Chris Mason | f578d4b | 2007-10-25 15:42:56 -0400 | [diff] [blame] | 800 | found_next = 1; |
Yan | b56baf5 | 2007-10-29 12:01:05 -0400 | [diff] [blame] | 801 | if (ret != 0) |
Chris Mason | f578d4b | 2007-10-25 15:42:56 -0400 | [diff] [blame] | 802 | goto insert; |
Filipe Manana | 27b9a81 | 2014-08-09 21:22:27 +0100 | [diff] [blame] | 803 | slot = path->slots[0]; |
Chris Mason | f578d4b | 2007-10-25 15:42:56 -0400 | [diff] [blame] | 804 | } |
| 805 | btrfs_item_key_to_cpu(path->nodes[0], &found_key, slot); |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 806 | if (found_key.objectid != BTRFS_EXTENT_CSUM_OBJECTID || |
| 807 | found_key.type != BTRFS_EXTENT_CSUM_KEY) { |
Chris Mason | f578d4b | 2007-10-25 15:42:56 -0400 | [diff] [blame] | 808 | found_next = 1; |
| 809 | goto insert; |
| 810 | } |
| 811 | next_offset = found_key.offset; |
| 812 | found_next = 1; |
Chris Mason | a429e51 | 2007-04-18 16:15:28 -0400 | [diff] [blame] | 813 | goto insert; |
| 814 | } |
| 815 | |
| 816 | /* |
| 817 | * at this point, we know the tree has an item, but it isn't big |
| 818 | * enough yet to put our csum in. Grow it |
| 819 | */ |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 820 | btrfs_release_path(path); |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 821 | ret = btrfs_search_slot(trans, root, &file_key, path, |
Josef Bacik | 607d432 | 2008-12-02 07:17:45 -0500 | [diff] [blame] | 822 | csum_size, 1); |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 823 | if (ret < 0) |
Chris Mason | 5386323 | 2008-08-15 15:34:18 -0400 | [diff] [blame] | 824 | goto fail_unlock; |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 825 | |
| 826 | if (ret > 0) { |
| 827 | if (path->slots[0] == 0) |
| 828 | goto insert; |
| 829 | path->slots[0]--; |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 830 | } |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 831 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 832 | leaf = path->nodes[0]; |
| 833 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 834 | csum_offset = (bytenr - found_key.offset) >> |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 835 | fs_info->sb->s_blocksize_bits; |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 836 | |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 837 | if (found_key.type != BTRFS_EXTENT_CSUM_KEY || |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 838 | found_key.objectid != BTRFS_EXTENT_CSUM_OBJECTID || |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 839 | csum_offset >= MAX_CSUM_ITEMS(fs_info, csum_size)) { |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 840 | goto insert; |
| 841 | } |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 842 | |
Liu Bo | 2f697dc | 2013-02-04 13:12:18 +0000 | [diff] [blame] | 843 | if (csum_offset == btrfs_item_size_nr(leaf, path->slots[0]) / |
Josef Bacik | 607d432 | 2008-12-02 07:17:45 -0500 | [diff] [blame] | 844 | csum_size) { |
Liu Bo | 2f697dc | 2013-02-04 13:12:18 +0000 | [diff] [blame] | 845 | int extend_nr; |
| 846 | u64 tmp; |
| 847 | u32 diff; |
| 848 | u32 free_space; |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 849 | |
David Sterba | e902baa | 2019-03-20 14:36:46 +0100 | [diff] [blame] | 850 | if (btrfs_leaf_free_space(leaf) < |
Liu Bo | 2f697dc | 2013-02-04 13:12:18 +0000 | [diff] [blame] | 851 | sizeof(struct btrfs_item) + csum_size * 2) |
| 852 | goto insert; |
| 853 | |
David Sterba | e902baa | 2019-03-20 14:36:46 +0100 | [diff] [blame] | 854 | free_space = btrfs_leaf_free_space(leaf) - |
Liu Bo | 2f697dc | 2013-02-04 13:12:18 +0000 | [diff] [blame] | 855 | sizeof(struct btrfs_item) - csum_size; |
Miao Xie | f51a4a1 | 2013-06-19 10:36:09 +0800 | [diff] [blame] | 856 | tmp = sums->len - total_bytes; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 857 | tmp >>= fs_info->sb->s_blocksize_bits; |
Liu Bo | 2f697dc | 2013-02-04 13:12:18 +0000 | [diff] [blame] | 858 | WARN_ON(tmp < 1); |
| 859 | |
| 860 | extend_nr = max_t(int, 1, (int)tmp); |
| 861 | diff = (csum_offset + extend_nr) * csum_size; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 862 | diff = min(diff, |
| 863 | MAX_CSUM_ITEMS(fs_info, csum_size) * csum_size); |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 864 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 865 | diff = diff - btrfs_item_size_nr(leaf, path->slots[0]); |
Liu Bo | 2f697dc | 2013-02-04 13:12:18 +0000 | [diff] [blame] | 866 | diff = min(free_space, diff); |
| 867 | diff /= csum_size; |
| 868 | diff *= csum_size; |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 869 | |
David Sterba | c71dd88 | 2019-03-20 14:51:10 +0100 | [diff] [blame] | 870 | btrfs_extend_item(path, diff); |
Miao Xie | f51a4a1 | 2013-06-19 10:36:09 +0800 | [diff] [blame] | 871 | ret = 0; |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 872 | goto csum; |
| 873 | } |
| 874 | |
| 875 | insert: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 876 | btrfs_release_path(path); |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 877 | csum_offset = 0; |
Chris Mason | f578d4b | 2007-10-25 15:42:56 -0400 | [diff] [blame] | 878 | if (found_next) { |
Liu Bo | 2f697dc | 2013-02-04 13:12:18 +0000 | [diff] [blame] | 879 | u64 tmp; |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 880 | |
Miao Xie | f51a4a1 | 2013-06-19 10:36:09 +0800 | [diff] [blame] | 881 | tmp = sums->len - total_bytes; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 882 | tmp >>= fs_info->sb->s_blocksize_bits; |
Liu Bo | 2f697dc | 2013-02-04 13:12:18 +0000 | [diff] [blame] | 883 | tmp = min(tmp, (next_offset - file_key.offset) >> |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 884 | fs_info->sb->s_blocksize_bits); |
Liu Bo | 2f697dc | 2013-02-04 13:12:18 +0000 | [diff] [blame] | 885 | |
Seraphime Kirkovski | 50d0446 | 2016-12-15 14:38:28 +0100 | [diff] [blame] | 886 | tmp = max_t(u64, 1, tmp); |
| 887 | tmp = min_t(u64, tmp, MAX_CSUM_ITEMS(fs_info, csum_size)); |
Josef Bacik | 607d432 | 2008-12-02 07:17:45 -0500 | [diff] [blame] | 888 | ins_size = csum_size * tmp; |
Chris Mason | f578d4b | 2007-10-25 15:42:56 -0400 | [diff] [blame] | 889 | } else { |
Josef Bacik | 607d432 | 2008-12-02 07:17:45 -0500 | [diff] [blame] | 890 | ins_size = csum_size; |
Chris Mason | f578d4b | 2007-10-25 15:42:56 -0400 | [diff] [blame] | 891 | } |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 892 | path->leave_spinning = 1; |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 893 | ret = btrfs_insert_empty_item(trans, root, path, &file_key, |
Chris Mason | f578d4b | 2007-10-25 15:42:56 -0400 | [diff] [blame] | 894 | ins_size); |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 895 | path->leave_spinning = 0; |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 896 | if (ret < 0) |
Chris Mason | 5386323 | 2008-08-15 15:34:18 -0400 | [diff] [blame] | 897 | goto fail_unlock; |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 898 | if (WARN_ON(ret != 0)) |
Chris Mason | 5386323 | 2008-08-15 15:34:18 -0400 | [diff] [blame] | 899 | goto fail_unlock; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 900 | leaf = path->nodes[0]; |
Miao Xie | f51a4a1 | 2013-06-19 10:36:09 +0800 | [diff] [blame] | 901 | csum: |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 902 | item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_csum_item); |
Miao Xie | f51a4a1 | 2013-06-19 10:36:09 +0800 | [diff] [blame] | 903 | item_end = (struct btrfs_csum_item *)((unsigned char *)item + |
| 904 | btrfs_item_size_nr(leaf, path->slots[0])); |
Chris Mason | 509659c | 2007-05-10 12:36:17 -0400 | [diff] [blame] | 905 | item = (struct btrfs_csum_item *)((unsigned char *)item + |
Josef Bacik | 607d432 | 2008-12-02 07:17:45 -0500 | [diff] [blame] | 906 | csum_offset * csum_size); |
Chris Mason | b18c668 | 2007-04-17 13:26:50 -0400 | [diff] [blame] | 907 | found: |
Miao Xie | f51a4a1 | 2013-06-19 10:36:09 +0800 | [diff] [blame] | 908 | ins_size = (u32)(sums->len - total_bytes) >> |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 909 | fs_info->sb->s_blocksize_bits; |
Miao Xie | f51a4a1 | 2013-06-19 10:36:09 +0800 | [diff] [blame] | 910 | ins_size *= csum_size; |
| 911 | ins_size = min_t(u32, (unsigned long)item_end - (unsigned long)item, |
| 912 | ins_size); |
| 913 | write_extent_buffer(leaf, sums->sums + index, (unsigned long)item, |
| 914 | ins_size); |
Chris Mason | aadfeb6 | 2008-01-29 09:10:27 -0500 | [diff] [blame] | 915 | |
Johannes Thumshirn | 1e25a2e | 2019-05-22 10:19:01 +0200 | [diff] [blame] | 916 | index += ins_size; |
Miao Xie | f51a4a1 | 2013-06-19 10:36:09 +0800 | [diff] [blame] | 917 | ins_size /= csum_size; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 918 | total_bytes += ins_size * fs_info->sectorsize; |
Chris Mason | a659171 | 2011-07-19 12:04:14 -0400 | [diff] [blame] | 919 | |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 920 | btrfs_mark_buffer_dirty(path->nodes[0]); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 921 | if (total_bytes < sums->len) { |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 922 | btrfs_release_path(path); |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 923 | cond_resched(); |
Chris Mason | 065631f | 2008-02-20 12:07:25 -0500 | [diff] [blame] | 924 | goto again; |
| 925 | } |
Chris Mason | 5386323 | 2008-08-15 15:34:18 -0400 | [diff] [blame] | 926 | out: |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 927 | btrfs_free_path(path); |
Chris Mason | f254e52 | 2007-03-29 15:15:27 -0400 | [diff] [blame] | 928 | return ret; |
Chris Mason | 5386323 | 2008-08-15 15:34:18 -0400 | [diff] [blame] | 929 | |
| 930 | fail_unlock: |
Chris Mason | 5386323 | 2008-08-15 15:34:18 -0400 | [diff] [blame] | 931 | goto out; |
Chris Mason | f254e52 | 2007-03-29 15:15:27 -0400 | [diff] [blame] | 932 | } |
Filipe Manana | 7ffbb59 | 2014-06-09 03:48:05 +0100 | [diff] [blame] | 933 | |
Nikolay Borisov | 9cdc512 | 2017-02-20 13:51:02 +0200 | [diff] [blame] | 934 | void btrfs_extent_item_to_extent_map(struct btrfs_inode *inode, |
Filipe Manana | 7ffbb59 | 2014-06-09 03:48:05 +0100 | [diff] [blame] | 935 | const struct btrfs_path *path, |
| 936 | struct btrfs_file_extent_item *fi, |
| 937 | const bool new_inline, |
| 938 | struct extent_map *em) |
| 939 | { |
David Sterba | 3ffbd68 | 2018-06-29 10:56:42 +0200 | [diff] [blame] | 940 | struct btrfs_fs_info *fs_info = inode->root->fs_info; |
Nikolay Borisov | 9cdc512 | 2017-02-20 13:51:02 +0200 | [diff] [blame] | 941 | struct btrfs_root *root = inode->root; |
Filipe Manana | 7ffbb59 | 2014-06-09 03:48:05 +0100 | [diff] [blame] | 942 | struct extent_buffer *leaf = path->nodes[0]; |
| 943 | const int slot = path->slots[0]; |
| 944 | struct btrfs_key key; |
| 945 | u64 extent_start, extent_end; |
| 946 | u64 bytenr; |
| 947 | u8 type = btrfs_file_extent_type(leaf, fi); |
| 948 | int compress_type = btrfs_file_extent_compression(leaf, fi); |
| 949 | |
Filipe Manana | 7ffbb59 | 2014-06-09 03:48:05 +0100 | [diff] [blame] | 950 | btrfs_item_key_to_cpu(leaf, &key, slot); |
| 951 | extent_start = key.offset; |
| 952 | |
| 953 | if (type == BTRFS_FILE_EXTENT_REG || |
| 954 | type == BTRFS_FILE_EXTENT_PREALLOC) { |
| 955 | extent_end = extent_start + |
| 956 | btrfs_file_extent_num_bytes(leaf, fi); |
| 957 | } else if (type == BTRFS_FILE_EXTENT_INLINE) { |
| 958 | size_t size; |
Qu Wenruo | e41ca58 | 2018-06-06 15:41:49 +0800 | [diff] [blame] | 959 | size = btrfs_file_extent_ram_bytes(leaf, fi); |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 960 | extent_end = ALIGN(extent_start + size, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 961 | fs_info->sectorsize); |
Filipe Manana | 7ffbb59 | 2014-06-09 03:48:05 +0100 | [diff] [blame] | 962 | } |
| 963 | |
| 964 | em->ram_bytes = btrfs_file_extent_ram_bytes(leaf, fi); |
| 965 | if (type == BTRFS_FILE_EXTENT_REG || |
| 966 | type == BTRFS_FILE_EXTENT_PREALLOC) { |
| 967 | em->start = extent_start; |
| 968 | em->len = extent_end - extent_start; |
| 969 | em->orig_start = extent_start - |
| 970 | btrfs_file_extent_offset(leaf, fi); |
| 971 | em->orig_block_len = btrfs_file_extent_disk_num_bytes(leaf, fi); |
| 972 | bytenr = btrfs_file_extent_disk_bytenr(leaf, fi); |
| 973 | if (bytenr == 0) { |
| 974 | em->block_start = EXTENT_MAP_HOLE; |
| 975 | return; |
| 976 | } |
| 977 | if (compress_type != BTRFS_COMPRESS_NONE) { |
| 978 | set_bit(EXTENT_FLAG_COMPRESSED, &em->flags); |
| 979 | em->compress_type = compress_type; |
| 980 | em->block_start = bytenr; |
| 981 | em->block_len = em->orig_block_len; |
| 982 | } else { |
| 983 | bytenr += btrfs_file_extent_offset(leaf, fi); |
| 984 | em->block_start = bytenr; |
| 985 | em->block_len = em->len; |
| 986 | if (type == BTRFS_FILE_EXTENT_PREALLOC) |
| 987 | set_bit(EXTENT_FLAG_PREALLOC, &em->flags); |
| 988 | } |
| 989 | } else if (type == BTRFS_FILE_EXTENT_INLINE) { |
| 990 | em->block_start = EXTENT_MAP_INLINE; |
| 991 | em->start = extent_start; |
| 992 | em->len = extent_end - extent_start; |
| 993 | /* |
| 994 | * Initialize orig_start and block_len with the same values |
| 995 | * as in inode.c:btrfs_get_extent(). |
| 996 | */ |
| 997 | em->orig_start = EXTENT_MAP_HOLE; |
| 998 | em->block_len = (u64)-1; |
| 999 | if (!new_inline && compress_type != BTRFS_COMPRESS_NONE) { |
| 1000 | set_bit(EXTENT_FLAG_COMPRESSED, &em->flags); |
| 1001 | em->compress_type = compress_type; |
| 1002 | } |
| 1003 | } else { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1004 | btrfs_err(fs_info, |
Nikolay Borisov | 9cdc512 | 2017-02-20 13:51:02 +0200 | [diff] [blame] | 1005 | "unknown file extent item type %d, inode %llu, offset %llu, " |
| 1006 | "root %llu", type, btrfs_ino(inode), extent_start, |
Filipe Manana | 7ffbb59 | 2014-06-09 03:48:05 +0100 | [diff] [blame] | 1007 | root->root_key.objectid); |
| 1008 | } |
| 1009 | } |