blob: b7f5394c37a1fa460f0b79b682c24b2838a922e3 [file] [log] [blame]
David Sterbac1d7c512018-04-03 19:23:33 +02001// SPDX-License-Identifier: GPL-2.0
Chris Mason6cbd5572007-06-12 09:07:21 -04002/*
3 * Copyright (C) 2007 Oracle. All rights reserved.
Chris Mason6cbd5572007-06-12 09:07:21 -04004 */
5
Chris Mason065631f2008-02-20 12:07:25 -05006#include <linux/bio.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09007#include <linux/slab.h>
Chris Mason065631f2008-02-20 12:07:25 -05008#include <linux/pagemap.h>
9#include <linux/highmem.h>
Nikolay Borisova3d46ae2019-04-01 11:29:58 +030010#include <linux/sched/mm.h>
Johannes Thumshirnd5178572019-06-03 16:58:57 +020011#include <crypto/hash.h>
Chris Mason1e1d2702007-03-15 19:03:33 -040012#include "ctree.h"
Chris Masondee26a92007-03-26 16:00:06 -040013#include "disk-io.h"
Chris Mason9f5fae22007-03-20 14:38:32 -040014#include "transaction.h"
Miao Xiefacc8a222013-07-25 19:22:34 +080015#include "volumes.h"
Chris Mason1de037a2007-05-29 15:17:08 -040016#include "print-tree.h"
Anand Jainebb87652016-03-10 17:26:59 +080017#include "compression.h"
Chris Mason1e1d2702007-03-15 19:03:33 -040018
Chris Mason42049bf2016-08-03 14:05:46 -070019#define __MAX_CSUM_ITEMS(r, size) ((unsigned long)(((BTRFS_LEAF_DATA_SIZE(r) - \
20 sizeof(struct btrfs_item) * 2) / \
21 size) - 1))
Yan Zheng07d400a2009-01-06 11:42:00 -050022
Zach Brown221b8312012-09-20 14:33:00 -060023#define MAX_CSUM_ITEMS(r, size) (min_t(u32, __MAX_CSUM_ITEMS(r, size), \
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +030024 PAGE_SIZE))
Chris Mason7ca4be42012-01-31 20:19:02 -050025
Johannes Thumshirn1e25a2e2019-05-22 10:19:01 +020026static 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 Zheng07d400a2009-01-06 11:42:00 -050033
Chris Masonb18c6682007-04-17 13:26:50 -040034int btrfs_insert_file_extent(struct btrfs_trans_handle *trans,
Sage Weilf2eb0a22008-05-02 14:43:14 -040035 struct btrfs_root *root,
36 u64 objectid, u64 pos,
37 u64 disk_offset, u64 disk_num_bytes,
Chris Masonc8b97812008-10-29 14:49:59 -040038 u64 num_bytes, u64 offset, u64 ram_bytes,
39 u8 compression, u8 encryption, u16 other_encoding)
Chris Mason9f5fae22007-03-20 14:38:32 -040040{
Chris Masondee26a92007-03-26 16:00:06 -040041 int ret = 0;
42 struct btrfs_file_extent_item *item;
43 struct btrfs_key file_key;
Chris Mason5caf2a02007-04-02 11:20:42 -040044 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -040045 struct extent_buffer *leaf;
Chris Masondee26a92007-03-26 16:00:06 -040046
Chris Mason5caf2a02007-04-02 11:20:42 -040047 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +000048 if (!path)
49 return -ENOMEM;
Chris Masondee26a92007-03-26 16:00:06 -040050 file_key.objectid = objectid;
Chris Masonb18c6682007-04-17 13:26:50 -040051 file_key.offset = pos;
David Sterba962a2982014-06-04 18:41:45 +020052 file_key.type = BTRFS_EXTENT_DATA_KEY;
Chris Masondee26a92007-03-26 16:00:06 -040053
Chris Masonb9473432009-03-13 11:00:37 -040054 path->leave_spinning = 1;
Chris Mason5caf2a02007-04-02 11:20:42 -040055 ret = btrfs_insert_empty_item(trans, root, path, &file_key,
Chris Masondee26a92007-03-26 16:00:06 -040056 sizeof(*item));
Chris Mason54aa1f42007-06-22 14:16:25 -040057 if (ret < 0)
58 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +010059 BUG_ON(ret); /* Can't happen */
Chris Mason5f39d392007-10-15 16:14:19 -040060 leaf = path->nodes[0];
61 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masondee26a92007-03-26 16:00:06 -040062 struct btrfs_file_extent_item);
Sage Weilf2eb0a22008-05-02 14:43:14 -040063 btrfs_set_file_extent_disk_bytenr(leaf, item, disk_offset);
Chris Masondb945352007-10-15 16:15:53 -040064 btrfs_set_file_extent_disk_num_bytes(leaf, item, disk_num_bytes);
Sage Weilf2eb0a22008-05-02 14:43:14 -040065 btrfs_set_file_extent_offset(leaf, item, offset);
Chris Masondb945352007-10-15 16:15:53 -040066 btrfs_set_file_extent_num_bytes(leaf, item, num_bytes);
Chris Masonc8b97812008-10-29 14:49:59 -040067 btrfs_set_file_extent_ram_bytes(leaf, item, ram_bytes);
Chris Mason5f39d392007-10-15 16:14:19 -040068 btrfs_set_file_extent_generation(leaf, item, trans->transid);
69 btrfs_set_file_extent_type(leaf, item, BTRFS_FILE_EXTENT_REG);
Chris Masonc8b97812008-10-29 14:49:59 -040070 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 Mason5f39d392007-10-15 16:14:19 -040074 btrfs_mark_buffer_dirty(leaf);
Chris Mason54aa1f42007-06-22 14:16:25 -040075out:
Chris Mason5caf2a02007-04-02 11:20:42 -040076 btrfs_free_path(path);
Chris Mason54aa1f42007-06-22 14:16:25 -040077 return ret;
Chris Mason9f5fae22007-03-20 14:38:32 -040078}
Chris Masondee26a92007-03-26 16:00:06 -040079
Eric Sandeen48a3b632013-04-25 20:41:01 +000080static struct btrfs_csum_item *
81btrfs_lookup_csum(struct btrfs_trans_handle *trans,
82 struct btrfs_root *root,
83 struct btrfs_path *path,
84 u64 bytenr, int cow)
Chris Mason6567e832007-04-16 09:22:45 -040085{
Jeff Mahoney0b246af2016-06-22 18:54:23 -040086 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason6567e832007-04-16 09:22:45 -040087 int ret;
88 struct btrfs_key file_key;
89 struct btrfs_key found_key;
90 struct btrfs_csum_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -040091 struct extent_buffer *leaf;
Chris Mason6567e832007-04-16 09:22:45 -040092 u64 csum_offset = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040093 u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
Chris Masona429e512007-04-18 16:15:28 -040094 int csums_in_item;
Chris Mason6567e832007-04-16 09:22:45 -040095
Chris Masond20f7042008-12-08 16:58:54 -050096 file_key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
97 file_key.offset = bytenr;
David Sterba962a2982014-06-04 18:41:45 +020098 file_key.type = BTRFS_EXTENT_CSUM_KEY;
Chris Masonb18c6682007-04-17 13:26:50 -040099 ret = btrfs_search_slot(trans, root, &file_key, path, 0, cow);
Chris Mason6567e832007-04-16 09:22:45 -0400100 if (ret < 0)
101 goto fail;
Chris Mason5f39d392007-10-15 16:14:19 -0400102 leaf = path->nodes[0];
Chris Mason6567e832007-04-16 09:22:45 -0400103 if (ret > 0) {
104 ret = 1;
Chris Mason70b2bef2007-04-17 15:39:32 -0400105 if (path->slots[0] == 0)
Chris Mason6567e832007-04-16 09:22:45 -0400106 goto fail;
107 path->slots[0]--;
Chris Mason5f39d392007-10-15 16:14:19 -0400108 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
David Sterba962a2982014-06-04 18:41:45 +0200109 if (found_key.type != BTRFS_EXTENT_CSUM_KEY)
Chris Mason6567e832007-04-16 09:22:45 -0400110 goto fail;
Chris Masond20f7042008-12-08 16:58:54 -0500111
112 csum_offset = (bytenr - found_key.offset) >>
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400113 fs_info->sb->s_blocksize_bits;
Chris Mason5f39d392007-10-15 16:14:19 -0400114 csums_in_item = btrfs_item_size_nr(leaf, path->slots[0]);
Josef Bacik607d4322008-12-02 07:17:45 -0500115 csums_in_item /= csum_size;
Chris Masona429e512007-04-18 16:15:28 -0400116
Miao Xie82d130f2013-03-28 08:12:15 +0000117 if (csum_offset == csums_in_item) {
Chris Masona429e512007-04-18 16:15:28 -0400118 ret = -EFBIG;
Chris Mason6567e832007-04-16 09:22:45 -0400119 goto fail;
Miao Xie82d130f2013-03-28 08:12:15 +0000120 } else if (csum_offset > csums_in_item) {
121 goto fail;
Chris Mason6567e832007-04-16 09:22:45 -0400122 }
123 }
124 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_csum_item);
Chris Mason509659c2007-05-10 12:36:17 -0400125 item = (struct btrfs_csum_item *)((unsigned char *)item +
Josef Bacik607d4322008-12-02 07:17:45 -0500126 csum_offset * csum_size);
Chris Mason6567e832007-04-16 09:22:45 -0400127 return item;
128fail:
129 if (ret > 0)
Chris Masonb18c6682007-04-17 13:26:50 -0400130 ret = -ENOENT;
Chris Mason6567e832007-04-16 09:22:45 -0400131 return ERR_PTR(ret);
132}
133
Chris Masondee26a92007-03-26 16:00:06 -0400134int btrfs_lookup_file_extent(struct btrfs_trans_handle *trans,
135 struct btrfs_root *root,
136 struct btrfs_path *path, u64 objectid,
Chris Mason9773a782007-03-27 11:26:26 -0400137 u64 offset, int mod)
Chris Masondee26a92007-03-26 16:00:06 -0400138{
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 Mason70b2bef2007-04-17 15:39:32 -0400145 file_key.offset = offset;
David Sterba962a2982014-06-04 18:41:45 +0200146 file_key.type = BTRFS_EXTENT_DATA_KEY;
Chris Masondee26a92007-03-26 16:00:06 -0400147 ret = btrfs_search_slot(trans, root, &file_key, path, ins_len, cow);
148 return ret;
149}
Chris Masonf254e522007-03-29 15:15:27 -0400150
Omar Sandovale62958f2019-12-02 17:34:17 -0800151/**
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 */
164blk_status_t btrfs_lookup_bio_sums(struct inode *inode, struct bio *bio,
165 bool at_offset, u64 offset, u8 *dst)
Chris Mason61b49442008-07-31 15:42:53 -0400166{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400167 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Liu Bo17347ce2017-05-15 15:33:27 -0700168 struct bio_vec bvec;
169 struct bvec_iter iter;
Miao Xiefacc8a222013-07-25 19:22:34 +0800170 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 Mason61b49442008-07-31 15:42:53 -0400175 u64 item_start_offset = 0;
176 u64 item_last_offset = 0;
Chris Masond20f7042008-12-08 16:58:54 -0500177 u64 disk_bytenr;
Chandan Rajendrac40a3d32016-01-21 15:55:54 +0530178 u64 page_bytes_left;
Chris Mason61b49442008-07-31 15:42:53 -0400179 u32 diff;
Miao Xiefacc8a222013-07-25 19:22:34 +0800180 int nblocks;
Liu Bo17347ce2017-05-15 15:33:27 -0700181 int count = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400182 u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
Chris Mason61b49442008-07-31 15:42:53 -0400183
184 path = btrfs_alloc_path();
Tsutomu Itohc2db1072011-03-01 06:48:31 +0000185 if (!path)
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200186 return BLK_STS_RESOURCE;
Miao Xiefacc8a222013-07-25 19:22:34 +0800187
Kent Overstreet4f024f32013-10-11 15:44:27 -0700188 nblocks = bio->bi_iter.bi_size >> inode->i_sb->s_blocksize_bits;
Miao Xiefacc8a222013-07-25 19:22:34 +0800189 if (!dst) {
190 if (nblocks * csum_size > BTRFS_BIO_INLINE_CSUM_SIZE) {
David Sterba31feccc2018-11-22 17:16:46 +0100191 btrfs_bio->csum = kmalloc_array(nblocks, csum_size,
192 GFP_NOFS);
193 if (!btrfs_bio->csum) {
Miao Xiefacc8a222013-07-25 19:22:34 +0800194 btrfs_free_path(path);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200195 return BLK_STS_RESOURCE;
Miao Xiefacc8a222013-07-25 19:22:34 +0800196 }
Miao Xiefacc8a222013-07-25 19:22:34 +0800197 } else {
198 btrfs_bio->csum = btrfs_bio->csum_inline;
199 }
200 csum = btrfs_bio->csum;
201 } else {
Johannes Thumshirn10fe6ca2019-05-22 10:19:02 +0200202 csum = dst;
Miao Xiefacc8a222013-07-25 19:22:34 +0800203 }
204
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300205 if (bio->bi_iter.bi_size > PAGE_SIZE * 8)
David Sterbae4058b52015-11-27 16:31:35 +0100206 path->reada = READA_FORWARD;
Chris Mason61b49442008-07-31 15:42:53 -0400207
Chris Mason2cf85722011-07-26 15:35:09 -0400208 /*
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 Borisov70ddc552017-02-20 13:50:35 +0200214 if (btrfs_is_free_space_inode(BTRFS_I(inode))) {
Chris Mason2cf85722011-07-26 15:35:09 -0400215 path->search_commit_root = 1;
Josef Bacikddf23b32011-09-11 10:52:24 -0400216 path->skip_locking = 1;
217 }
Chris Mason2cf85722011-07-26 15:35:09 -0400218
Kent Overstreet4f024f32013-10-11 15:44:27 -0700219 disk_bytenr = (u64)bio->bi_iter.bi_sector << 9;
Chandan Rajendrac40a3d32016-01-21 15:55:54 +0530220
Liu Bo17347ce2017-05-15 15:33:27 -0700221 bio_for_each_segment(bvec, bio, iter) {
222 page_bytes_left = bvec.bv_len;
Christoph Hellwig4989d272016-11-25 09:07:52 +0100223 if (count)
224 goto next;
225
Omar Sandovale62958f2019-12-02 17:34:17 -0800226 if (!at_offset)
Liu Bo17347ce2017-05-15 15:33:27 -0700227 offset = page_offset(bvec.bv_page) + bvec.bv_offset;
Miao Xiefacc8a222013-07-25 19:22:34 +0800228 count = btrfs_find_ordered_sum(inode, offset, disk_bytenr,
Johannes Thumshirn1e25a2e2019-05-22 10:19:01 +0200229 csum, nblocks);
Miao Xiee4100d92013-04-05 07:20:56 +0000230 if (count)
Chris Mason61b49442008-07-31 15:42:53 -0400231 goto found;
232
Chris Masond20f7042008-12-08 16:58:54 -0500233 if (!item || disk_bytenr < item_start_offset ||
234 disk_bytenr >= item_last_offset) {
Chris Mason61b49442008-07-31 15:42:53 -0400235 struct btrfs_key found_key;
236 u32 item_size;
237
238 if (item)
David Sterbab3b4aa72011-04-21 01:20:15 +0200239 btrfs_release_path(path);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400240 item = btrfs_lookup_csum(NULL, fs_info->csum_root,
Chris Masond20f7042008-12-08 16:58:54 -0500241 path, disk_bytenr, 0);
Chris Mason61b49442008-07-31 15:42:53 -0400242 if (IS_ERR(item)) {
Miao Xiee4100d92013-04-05 07:20:56 +0000243 count = 1;
Miao Xiefacc8a222013-07-25 19:22:34 +0800244 memset(csum, 0, csum_size);
Yan Zheng17d217f2008-12-12 10:03:38 -0500245 if (BTRFS_I(inode)->root->root_key.objectid ==
246 BTRFS_DATA_RELOC_TREE_OBJECTID) {
247 set_extent_bits(io_tree, offset,
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400248 offset + fs_info->sectorsize - 1,
David Sterbaceeb0ae2016-04-26 23:54:39 +0200249 EXTENT_NODATASUM);
Yan Zheng17d217f2008-12-12 10:03:38 -0500250 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400251 btrfs_info_rl(fs_info,
Frank Holtonefe120a2013-12-20 11:37:06 -0500252 "no csum found for inode %llu start %llu",
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +0200253 btrfs_ino(BTRFS_I(inode)), offset);
Yan Zheng17d217f2008-12-12 10:03:38 -0500254 }
Chris Mason6dab8152008-08-04 08:35:53 -0400255 item = NULL;
David Sterbab3b4aa72011-04-21 01:20:15 +0200256 btrfs_release_path(path);
Chris Mason61b49442008-07-31 15:42:53 -0400257 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 Bacik607d4322008-12-02 07:17:45 -0500266 (item_size / csum_size) *
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400267 fs_info->sectorsize;
Chris Mason61b49442008-07-31 15:42:53 -0400268 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 Masond20f7042008-12-08 16:58:54 -0500275 diff = disk_bytenr - item_start_offset;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400276 diff = diff / fs_info->sectorsize;
Josef Bacik607d4322008-12-02 07:17:45 -0500277 diff = diff * csum_size;
Miao Xiefacc8a222013-07-25 19:22:34 +0800278 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 Mason3de9d6b2008-08-04 23:17:27 -0400281 ((unsigned long)item) + diff,
Miao Xiee4100d92013-04-05 07:20:56 +0000282 csum_size * count);
Chris Mason61b49442008-07-31 15:42:53 -0400283found:
Miao Xiefacc8a222013-07-25 19:22:34 +0800284 csum += count * csum_size;
285 nblocks -= count;
Christoph Hellwig4989d272016-11-25 09:07:52 +0100286next:
Miao Xiee4100d92013-04-05 07:20:56 +0000287 while (count--) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400288 disk_bytenr += fs_info->sectorsize;
289 offset += fs_info->sectorsize;
290 page_bytes_left -= fs_info->sectorsize;
Christoph Hellwig4989d272016-11-25 09:07:52 +0100291 if (!page_bytes_left)
292 break; /* move to next bio */
Miao Xiee4100d92013-04-05 07:20:56 +0000293 }
Chris Mason61b49442008-07-31 15:42:53 -0400294 }
Chris Mason389f2392016-03-21 06:59:09 -0700295
Christoph Hellwig4989d272016-11-25 09:07:52 +0100296 WARN_ON_ONCE(count);
Chris Mason61b49442008-07-31 15:42:53 -0400297 btrfs_free_path(path);
Omar Sandovale62958f2019-12-02 17:34:17 -0800298 return BLK_STS_OK;
Josef Bacik4b46fce2010-05-23 11:00:55 -0400299}
300
Yan Zheng17d217f2008-12-12 10:03:38 -0500301int btrfs_lookup_csums_range(struct btrfs_root *root, u64 start, u64 end,
Arne Jansena2de7332011-03-08 14:14:00 +0100302 struct list_head *list, int search_commit)
Yan Zheng17d217f2008-12-12 10:03:38 -0500303{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400304 struct btrfs_fs_info *fs_info = root->fs_info;
Yan Zheng17d217f2008-12-12 10:03:38 -0500305 struct btrfs_key key;
306 struct btrfs_path *path;
307 struct extent_buffer *leaf;
308 struct btrfs_ordered_sum *sums;
Yan Zheng17d217f2008-12-12 10:03:38 -0500309 struct btrfs_csum_item *item;
Mark Fasheh0678b612011-08-05 15:46:16 -0700310 LIST_HEAD(tmplist);
Yan Zheng17d217f2008-12-12 10:03:38 -0500311 unsigned long offset;
312 int ret;
313 size_t size;
314 u64 csum_end;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400315 u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
Yan Zheng17d217f2008-12-12 10:03:38 -0500316
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400317 ASSERT(IS_ALIGNED(start, fs_info->sectorsize) &&
318 IS_ALIGNED(end + 1, fs_info->sectorsize));
Josef Bacik4277a9c2013-10-15 09:36:40 -0400319
Yan Zheng17d217f2008-12-12 10:03:38 -0500320 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -0700321 if (!path)
322 return -ENOMEM;
Yan Zheng17d217f2008-12-12 10:03:38 -0500323
Arne Jansena2de7332011-03-08 14:14:00 +0100324 if (search_commit) {
325 path->skip_locking = 1;
David Sterbae4058b52015-11-27 16:31:35 +0100326 path->reada = READA_FORWARD;
Arne Jansena2de7332011-03-08 14:14:00 +0100327 path->search_commit_root = 1;
328 }
329
Yan Zheng17d217f2008-12-12 10:03:38 -0500330 key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
331 key.offset = start;
332 key.type = BTRFS_EXTENT_CSUM_KEY;
333
Yan Zheng07d400a2009-01-06 11:42:00 -0500334 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Yan Zheng17d217f2008-12-12 10:03:38 -0500335 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 Mahoney0b246af2016-06-22 18:54:23 -0400343 fs_info->sb->s_blocksize_bits;
Yan Zheng17d217f2008-12-12 10:03:38 -0500344 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 Zheng07d400a2009-01-06 11:42:00 -0500353 ret = btrfs_next_leaf(root, path);
Yan Zheng17d217f2008-12-12 10:03:38 -0500354 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 Wu628c8282013-03-18 09:18:09 +0000363 key.type != BTRFS_EXTENT_CSUM_KEY ||
364 key.offset > end)
Yan Zheng17d217f2008-12-12 10:03:38 -0500365 break;
366
367 if (key.offset > start)
368 start = key.offset;
369
370 size = btrfs_item_size_nr(leaf, path->slots[0]);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400371 csum_end = key.offset + (size / csum_size) * fs_info->sectorsize;
Yan Zheng87b29b22008-12-17 10:21:48 -0500372 if (csum_end <= start) {
373 path->slots[0]++;
374 continue;
375 }
Yan Zheng17d217f2008-12-12 10:03:38 -0500376
Yan Zheng07d400a2009-01-06 11:42:00 -0500377 csum_end = min(csum_end, end + 1);
Yan Zheng17d217f2008-12-12 10:03:38 -0500378 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
379 struct btrfs_csum_item);
Yan Zheng07d400a2009-01-06 11:42:00 -0500380 while (start < csum_end) {
381 size = min_t(size_t, csum_end - start,
Johannes Thumshirn1e25a2e2019-05-22 10:19:01 +0200382 max_ordered_sum_bytes(fs_info, csum_size));
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400383 sums = kzalloc(btrfs_ordered_sum_size(fs_info, size),
Miao Xief51a4a12013-06-19 10:36:09 +0800384 GFP_NOFS);
Mark Fasheh0678b612011-08-05 15:46:16 -0700385 if (!sums) {
386 ret = -ENOMEM;
387 goto fail;
388 }
Yan Zheng17d217f2008-12-12 10:03:38 -0500389
Yan Zheng07d400a2009-01-06 11:42:00 -0500390 sums->bytenr = start;
Miao Xief51a4a12013-06-19 10:36:09 +0800391 sums->len = (int)size;
Yan Zheng07d400a2009-01-06 11:42:00 -0500392
393 offset = (start - key.offset) >>
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400394 fs_info->sb->s_blocksize_bits;
Yan Zheng07d400a2009-01-06 11:42:00 -0500395 offset *= csum_size;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400396 size >>= fs_info->sb->s_blocksize_bits;
Yan Zheng07d400a2009-01-06 11:42:00 -0500397
Miao Xief51a4a12013-06-19 10:36:09 +0800398 read_extent_buffer(path->nodes[0],
399 sums->sums,
400 ((unsigned long)item) + offset,
401 csum_size * size);
Yan Zheng07d400a2009-01-06 11:42:00 -0500402
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400403 start += fs_info->sectorsize * size;
Mark Fasheh0678b612011-08-05 15:46:16 -0700404 list_add_tail(&sums->list, &tmplist);
Yan Zheng17d217f2008-12-12 10:03:38 -0500405 }
Yan Zheng17d217f2008-12-12 10:03:38 -0500406 path->slots[0]++;
407 }
408 ret = 0;
409fail:
Mark Fasheh0678b612011-08-05 15:46:16 -0700410 while (ret < 0 && !list_empty(&tmplist)) {
Chris Mason6e5aafb2014-11-04 06:59:04 -0800411 sums = list_entry(tmplist.next, struct btrfs_ordered_sum, list);
Mark Fasheh0678b612011-08-05 15:46:16 -0700412 list_del(&sums->list);
413 kfree(sums);
414 }
415 list_splice_tail(&tmplist, list);
416
Yan Zheng17d217f2008-12-12 10:03:38 -0500417 btrfs_free_path(path);
418 return ret;
419}
420
Nikolay Borisov51d470a2019-04-22 16:07:31 +0300421/*
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 Hellwig4e4cbee2017-06-03 09:38:06 +0200431blk_status_t btrfs_csum_one_bio(struct inode *inode, struct bio *bio,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400432 u64 file_start, int contig)
Chris Masone0156402008-04-16 11:15:20 -0400433{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400434 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Johannes Thumshirnd5178572019-06-03 16:58:57 +0200435 SHASH_DESC_ON_STACK(shash, fs_info->csum_shash);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400436 struct btrfs_ordered_sum *sums;
Christoph Hellwig6cd7ce42016-11-25 09:07:49 +0100437 struct btrfs_ordered_extent *ordered = NULL;
Chris Masone0156402008-04-16 11:15:20 -0400438 char *data;
Liu Bo17347ce2017-05-15 15:33:27 -0700439 struct bvec_iter iter;
440 struct bio_vec bvec;
Miao Xief51a4a12013-06-19 10:36:09 +0800441 int index;
Chandan Rajendrac40a3d32016-01-21 15:55:54 +0530442 int nr_sectors;
Chris Mason3edf7d32008-07-18 06:17:13 -0400443 unsigned long total_bytes = 0;
444 unsigned long this_sum_bytes = 0;
Liu Bo17347ce2017-05-15 15:33:27 -0700445 int i;
Chris Mason3edf7d32008-07-18 06:17:13 -0400446 u64 offset;
Nikolay Borisova3d46ae2019-04-01 11:29:58 +0300447 unsigned nofs_flag;
Johannes Thumshirn1e25a2e2019-05-22 10:19:01 +0200448 const u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
Chris Masone0156402008-04-16 11:15:20 -0400449
Nikolay Borisova3d46ae2019-04-01 11:29:58 +0300450 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 Masone0156402008-04-16 11:15:20 -0400455 if (!sums)
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200456 return BLK_STS_RESOURCE;
Chris Mason3edf7d32008-07-18 06:17:13 -0400457
Kent Overstreet4f024f32013-10-11 15:44:27 -0700458 sums->len = bio->bi_iter.bi_size;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400459 INIT_LIST_HEAD(&sums->list);
Chris Masond20f7042008-12-08 16:58:54 -0500460
461 if (contig)
462 offset = file_start;
463 else
Christoph Hellwig6cd7ce42016-11-25 09:07:49 +0100464 offset = 0; /* shut up gcc */
Chris Masond20f7042008-12-08 16:58:54 -0500465
Kent Overstreet4f024f32013-10-11 15:44:27 -0700466 sums->bytenr = (u64)bio->bi_iter.bi_sector << 9;
Miao Xief51a4a12013-06-19 10:36:09 +0800467 index = 0;
Chris Masone0156402008-04-16 11:15:20 -0400468
Johannes Thumshirnd5178572019-06-03 16:58:57 +0200469 shash->tfm = fs_info->csum_shash;
470
Liu Bo17347ce2017-05-15 15:33:27 -0700471 bio_for_each_segment(bvec, bio, iter) {
Chris Masond20f7042008-12-08 16:58:54 -0500472 if (!contig)
Liu Bo17347ce2017-05-15 15:33:27 -0700473 offset = page_offset(bvec.bv_page) + bvec.bv_offset;
Chris Masond20f7042008-12-08 16:58:54 -0500474
Christoph Hellwig6cd7ce42016-11-25 09:07:49 +0100475 if (!ordered) {
476 ordered = btrfs_lookup_ordered_extent(inode, offset);
477 BUG_ON(!ordered); /* Logic error */
478 }
479
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400480 nr_sectors = BTRFS_BYTES_TO_BLKS(fs_info,
Liu Bo17347ce2017-05-15 15:33:27 -0700481 bvec.bv_len + fs_info->sectorsize
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400482 - 1);
Chris Mason3edf7d32008-07-18 06:17:13 -0400483
Chandan Rajendrac40a3d32016-01-21 15:55:54 +0530484 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 Rajendrac40a3d32016-01-21 15:55:54 +0530489 sums->len = this_sum_bytes;
490 this_sum_bytes = 0;
Nikolay Borisovf9756262019-04-10 16:16:11 +0300491 btrfs_add_ordered_sum(ordered, sums);
Chandan Rajendrac40a3d32016-01-21 15:55:54 +0530492 btrfs_put_ordered_extent(ordered);
493
494 bytes_left = bio->bi_iter.bi_size - total_bytes;
495
Nikolay Borisova3d46ae2019-04-01 11:29:58 +0300496 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 Rajendrac40a3d32016-01-21 15:55:54 +0530500 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 Rajendrac40a3d32016-01-21 15:55:54 +0530508 }
509
Johannes Thumshirnd5178572019-06-03 16:58:57 +0200510 crypto_shash_init(shash);
Johannes Thumshirn443c8e22019-03-07 17:14:00 +0100511 data = kmap_atomic(bvec.bv_page);
Johannes Thumshirnd5178572019-06-03 16:58:57 +0200512 crypto_shash_update(shash, data + bvec.bv_offset
513 + (i * fs_info->sectorsize),
514 fs_info->sectorsize);
Johannes Thumshirn443c8e22019-03-07 17:14:00 +0100515 kunmap_atomic(data);
Johannes Thumshirnd5178572019-06-03 16:58:57 +0200516 crypto_shash_final(shash, (char *)(sums->sums + index));
Johannes Thumshirn1e25a2e2019-05-22 10:19:01 +0200517 index += csum_size;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400518 offset += fs_info->sectorsize;
519 this_sum_bytes += fs_info->sectorsize;
520 total_bytes += fs_info->sectorsize;
Chris Mason3edf7d32008-07-18 06:17:13 -0400521 }
522
Chris Masone0156402008-04-16 11:15:20 -0400523 }
Chris Masoned98b562008-07-22 23:06:42 -0400524 this_sum_bytes = 0;
Nikolay Borisovf9756262019-04-10 16:16:11 +0300525 btrfs_add_ordered_sum(ordered, sums);
Chris Mason3edf7d32008-07-18 06:17:13 -0400526 btrfs_put_ordered_extent(ordered);
Chris Masone0156402008-04-16 11:15:20 -0400527 return 0;
528}
529
Chris Mason459931e2008-12-10 09:10:46 -0500530/*
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 Mahoney2ff7e612016-06-22 18:54:24 -0400541static noinline void truncate_one_csum(struct btrfs_fs_info *fs_info,
Jeff Mahoney143bede2012-03-01 14:56:26 +0100542 struct btrfs_path *path,
543 struct btrfs_key *key,
544 u64 bytenr, u64 len)
Chris Mason459931e2008-12-10 09:10:46 -0500545{
546 struct extent_buffer *leaf;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400547 u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
Chris Mason459931e2008-12-10 09:10:46 -0500548 u64 csum_end;
549 u64 end_byte = bytenr + len;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400550 u32 blocksize_bits = fs_info->sb->s_blocksize_bits;
Chris Mason459931e2008-12-10 09:10:46 -0500551
552 leaf = path->nodes[0];
553 csum_end = btrfs_item_size_nr(leaf, path->slots[0]) / csum_size;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400554 csum_end <<= fs_info->sb->s_blocksize_bits;
Chris Mason459931e2008-12-10 09:10:46 -0500555 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 Sterba78ac4f92019-03-20 14:49:12 +0100566 btrfs_truncate_item(path, new_size, 1);
Chris Mason459931e2008-12-10 09:10:46 -0500567 } 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 Sterba78ac4f92019-03-20 14:49:12 +0100578 btrfs_truncate_item(path, new_size, 0);
Chris Mason459931e2008-12-10 09:10:46 -0500579
580 key->offset = end_byte;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400581 btrfs_set_item_key_safe(fs_info, path, key);
Chris Mason459931e2008-12-10 09:10:46 -0500582 } else {
583 BUG();
584 }
Chris Mason459931e2008-12-10 09:10:46 -0500585}
586
587/*
588 * deletes the csum items from the csum tree for a given
589 * range of bytes.
590 */
591int btrfs_del_csums(struct btrfs_trans_handle *trans,
Filipe Manana40e046a2019-12-05 16:58:30 +0000592 struct btrfs_root *root, u64 bytenr, u64 len)
Chris Mason459931e2008-12-10 09:10:46 -0500593{
Filipe Manana40e046a2019-12-05 16:58:30 +0000594 struct btrfs_fs_info *fs_info = trans->fs_info;
Chris Mason459931e2008-12-10 09:10:46 -0500595 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 Mahoney0b246af2016-06-22 18:54:23 -0400601 u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
602 int blocksize_bits = fs_info->sb->s_blocksize_bits;
Chris Mason459931e2008-12-10 09:10:46 -0500603
Filipe Manana40e046a2019-12-05 16:58:30 +0000604 ASSERT(root == fs_info->csum_root ||
605 root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID);
606
Chris Mason459931e2008-12-10 09:10:46 -0500607 path = btrfs_alloc_path();
liubo2a29edc2011-01-26 06:22:08 +0000608 if (!path)
609 return -ENOMEM;
Chris Mason459931e2008-12-10 09:10:46 -0500610
Chris Masond3977122009-01-05 21:25:51 -0500611 while (1) {
Chris Mason459931e2008-12-10 09:10:46 -0500612 key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
613 key.offset = end_byte - 1;
614 key.type = BTRFS_EXTENT_CSUM_KEY;
615
Chris Masonb9473432009-03-13 11:00:37 -0400616 path->leave_spinning = 1;
Chris Mason459931e2008-12-10 09:10:46 -0500617 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
618 if (ret > 0) {
619 if (path->slots[0] == 0)
Tsutomu Itoh65a246c2011-05-19 04:37:44 +0000620 break;
Chris Mason459931e2008-12-10 09:10:46 -0500621 path->slots[0]--;
Josef Bacikad0397a2011-01-28 18:44:44 +0000622 } else if (ret < 0) {
Tsutomu Itoh65a246c2011-05-19 04:37:44 +0000623 break;
Chris Mason459931e2008-12-10 09:10:46 -0500624 }
Josef Bacikad0397a2011-01-28 18:44:44 +0000625
Chris Mason459931e2008-12-10 09:10:46 -0500626 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 Manana6f546212017-01-28 01:47:56 +0000647 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 Itoh65a246c2011-05-19 04:37:44 +0000674 if (ret)
675 goto out;
Chris Masondcbdd4d2008-12-16 13:51:01 -0500676 if (key.offset == bytenr)
677 break;
Chris Mason459931e2008-12-10 09:10:46 -0500678 } 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 Sterbab159fa22016-11-08 18:09:03 +0100708 memzero_extent_buffer(leaf, item_offset + offset,
Chris Mason459931e2008-12-10 09:10:46 -0500709 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 Mahoney79787ea2012-03-12 16:03:00 +0100717 if (ret && ret != -EAGAIN) {
Jeff Mahoney66642832016-06-10 18:19:25 -0400718 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100719 goto out;
720 }
Chris Mason459931e2008-12-10 09:10:46 -0500721
722 key.offset = end_byte - 1;
723 } else {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400724 truncate_one_csum(fs_info, path, &key, bytenr, len);
Chris Masondcbdd4d2008-12-16 13:51:01 -0500725 if (key.offset < bytenr)
726 break;
Chris Mason459931e2008-12-10 09:10:46 -0500727 }
David Sterbab3b4aa72011-04-21 01:20:15 +0200728 btrfs_release_path(path);
Chris Mason459931e2008-12-10 09:10:46 -0500729 }
Tsutomu Itoh65a246c2011-05-19 04:37:44 +0000730 ret = 0;
Chris Mason459931e2008-12-10 09:10:46 -0500731out:
732 btrfs_free_path(path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +0000733 return ret;
Chris Mason459931e2008-12-10 09:10:46 -0500734}
735
Chris Mason065631f2008-02-20 12:07:25 -0500736int btrfs_csum_file_blocks(struct btrfs_trans_handle *trans,
Chris Masond20f7042008-12-08 16:58:54 -0500737 struct btrfs_root *root,
Chris Masone6dcd2d2008-07-17 12:53:50 -0400738 struct btrfs_ordered_sum *sums)
Chris Masonf254e522007-03-29 15:15:27 -0400739{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400740 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masonf254e522007-03-29 15:15:27 -0400741 struct btrfs_key file_key;
Chris Mason6567e832007-04-16 09:22:45 -0400742 struct btrfs_key found_key;
Chris Mason5caf2a02007-04-02 11:20:42 -0400743 struct btrfs_path *path;
Chris Masonf254e522007-03-29 15:15:27 -0400744 struct btrfs_csum_item *item;
Chris Mason065631f2008-02-20 12:07:25 -0500745 struct btrfs_csum_item *item_end;
Chris Masonff79f812007-10-15 16:22:25 -0400746 struct extent_buffer *leaf = NULL;
Miao Xief51a4a12013-06-19 10:36:09 +0800747 u64 next_offset;
748 u64 total_bytes = 0;
Chris Mason6567e832007-04-16 09:22:45 -0400749 u64 csum_offset;
Miao Xief51a4a12013-06-19 10:36:09 +0800750 u64 bytenr;
Chris Masonf578d4b2007-10-25 15:42:56 -0400751 u32 nritems;
752 u32 ins_size;
Miao Xief51a4a12013-06-19 10:36:09 +0800753 int index = 0;
754 int found_next;
755 int ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400756 u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
Chris Mason6e92f5e2008-02-20 12:07:25 -0500757
Chris Mason5caf2a02007-04-02 11:20:42 -0400758 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -0700759 if (!path)
760 return -ENOMEM;
Chris Mason065631f2008-02-20 12:07:25 -0500761again:
762 next_offset = (u64)-1;
763 found_next = 0;
Miao Xief51a4a12013-06-19 10:36:09 +0800764 bytenr = sums->bytenr + total_bytes;
Chris Masond20f7042008-12-08 16:58:54 -0500765 file_key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
Miao Xief51a4a12013-06-19 10:36:09 +0800766 file_key.offset = bytenr;
David Sterba962a2982014-06-04 18:41:45 +0200767 file_key.type = BTRFS_EXTENT_CSUM_KEY;
Chris Masona429e512007-04-18 16:15:28 -0400768
Miao Xief51a4a12013-06-19 10:36:09 +0800769 item = btrfs_lookup_csum(trans, root, path, bytenr, 1);
Chris Masonff79f812007-10-15 16:22:25 -0400770 if (!IS_ERR(item)) {
Chris Mason639cb582008-08-28 06:15:25 -0400771 ret = 0;
Miao Xief51a4a12013-06-19 10:36:09 +0800772 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 Masona429e512007-04-18 16:15:28 -0400777 goto found;
Chris Masonff79f812007-10-15 16:22:25 -0400778 }
Chris Masona429e512007-04-18 16:15:28 -0400779 ret = PTR_ERR(item);
Yan, Zheng4a500fd2010-05-16 10:49:59 -0400780 if (ret != -EFBIG && ret != -ENOENT)
781 goto fail_unlock;
782
Chris Masona429e512007-04-18 16:15:28 -0400783 if (ret == -EFBIG) {
784 u32 item_size;
785 /* we found one, but it isn't big enough yet */
Chris Mason5f39d392007-10-15 16:14:19 -0400786 leaf = path->nodes[0];
787 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
Josef Bacik607d4322008-12-02 07:17:45 -0500788 if ((item_size / csum_size) >=
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400789 MAX_CSUM_ITEMS(fs_info, csum_size)) {
Chris Masona429e512007-04-18 16:15:28 -0400790 /* already at max size, make a new one */
791 goto insert;
792 }
793 } else {
Chris Masonf578d4b2007-10-25 15:42:56 -0400794 int slot = path->slots[0] + 1;
Chris Masona429e512007-04-18 16:15:28 -0400795 /* we didn't find a csum item, insert one */
Chris Masonf578d4b2007-10-25 15:42:56 -0400796 nritems = btrfs_header_nritems(path->nodes[0]);
Filipe Manana35045bf2014-04-09 14:38:34 +0100797 if (!nritems || (path->slots[0] >= nritems - 1)) {
Chris Masonf578d4b2007-10-25 15:42:56 -0400798 ret = btrfs_next_leaf(root, path);
Yanb56baf52007-10-29 12:01:05 -0400799 if (ret == 1)
Chris Masonf578d4b2007-10-25 15:42:56 -0400800 found_next = 1;
Yanb56baf52007-10-29 12:01:05 -0400801 if (ret != 0)
Chris Masonf578d4b2007-10-25 15:42:56 -0400802 goto insert;
Filipe Manana27b9a812014-08-09 21:22:27 +0100803 slot = path->slots[0];
Chris Masonf578d4b2007-10-25 15:42:56 -0400804 }
805 btrfs_item_key_to_cpu(path->nodes[0], &found_key, slot);
Chris Masond20f7042008-12-08 16:58:54 -0500806 if (found_key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
807 found_key.type != BTRFS_EXTENT_CSUM_KEY) {
Chris Masonf578d4b2007-10-25 15:42:56 -0400808 found_next = 1;
809 goto insert;
810 }
811 next_offset = found_key.offset;
812 found_next = 1;
Chris Masona429e512007-04-18 16:15:28 -0400813 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 Sterbab3b4aa72011-04-21 01:20:15 +0200820 btrfs_release_path(path);
Chris Mason6567e832007-04-16 09:22:45 -0400821 ret = btrfs_search_slot(trans, root, &file_key, path,
Josef Bacik607d4322008-12-02 07:17:45 -0500822 csum_size, 1);
Chris Mason6567e832007-04-16 09:22:45 -0400823 if (ret < 0)
Chris Mason53863232008-08-15 15:34:18 -0400824 goto fail_unlock;
Chris Mason459931e2008-12-10 09:10:46 -0500825
826 if (ret > 0) {
827 if (path->slots[0] == 0)
828 goto insert;
829 path->slots[0]--;
Chris Mason6567e832007-04-16 09:22:45 -0400830 }
Chris Mason459931e2008-12-10 09:10:46 -0500831
Chris Mason5f39d392007-10-15 16:14:19 -0400832 leaf = path->nodes[0];
833 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masond20f7042008-12-08 16:58:54 -0500834 csum_offset = (bytenr - found_key.offset) >>
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400835 fs_info->sb->s_blocksize_bits;
Chris Mason459931e2008-12-10 09:10:46 -0500836
David Sterba962a2982014-06-04 18:41:45 +0200837 if (found_key.type != BTRFS_EXTENT_CSUM_KEY ||
Chris Masond20f7042008-12-08 16:58:54 -0500838 found_key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400839 csum_offset >= MAX_CSUM_ITEMS(fs_info, csum_size)) {
Chris Mason6567e832007-04-16 09:22:45 -0400840 goto insert;
841 }
Chris Mason459931e2008-12-10 09:10:46 -0500842
Liu Bo2f697dc2013-02-04 13:12:18 +0000843 if (csum_offset == btrfs_item_size_nr(leaf, path->slots[0]) /
Josef Bacik607d4322008-12-02 07:17:45 -0500844 csum_size) {
Liu Bo2f697dc2013-02-04 13:12:18 +0000845 int extend_nr;
846 u64 tmp;
847 u32 diff;
848 u32 free_space;
Chris Mason459931e2008-12-10 09:10:46 -0500849
David Sterbae902baa2019-03-20 14:36:46 +0100850 if (btrfs_leaf_free_space(leaf) <
Liu Bo2f697dc2013-02-04 13:12:18 +0000851 sizeof(struct btrfs_item) + csum_size * 2)
852 goto insert;
853
David Sterbae902baa2019-03-20 14:36:46 +0100854 free_space = btrfs_leaf_free_space(leaf) -
Liu Bo2f697dc2013-02-04 13:12:18 +0000855 sizeof(struct btrfs_item) - csum_size;
Miao Xief51a4a12013-06-19 10:36:09 +0800856 tmp = sums->len - total_bytes;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400857 tmp >>= fs_info->sb->s_blocksize_bits;
Liu Bo2f697dc2013-02-04 13:12:18 +0000858 WARN_ON(tmp < 1);
859
860 extend_nr = max_t(int, 1, (int)tmp);
861 diff = (csum_offset + extend_nr) * csum_size;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400862 diff = min(diff,
863 MAX_CSUM_ITEMS(fs_info, csum_size) * csum_size);
Chris Mason459931e2008-12-10 09:10:46 -0500864
Chris Mason5f39d392007-10-15 16:14:19 -0400865 diff = diff - btrfs_item_size_nr(leaf, path->slots[0]);
Liu Bo2f697dc2013-02-04 13:12:18 +0000866 diff = min(free_space, diff);
867 diff /= csum_size;
868 diff *= csum_size;
Chris Mason459931e2008-12-10 09:10:46 -0500869
David Sterbac71dd882019-03-20 14:51:10 +0100870 btrfs_extend_item(path, diff);
Miao Xief51a4a12013-06-19 10:36:09 +0800871 ret = 0;
Chris Mason6567e832007-04-16 09:22:45 -0400872 goto csum;
873 }
874
875insert:
David Sterbab3b4aa72011-04-21 01:20:15 +0200876 btrfs_release_path(path);
Chris Mason6567e832007-04-16 09:22:45 -0400877 csum_offset = 0;
Chris Masonf578d4b2007-10-25 15:42:56 -0400878 if (found_next) {
Liu Bo2f697dc2013-02-04 13:12:18 +0000879 u64 tmp;
Chris Masond20f7042008-12-08 16:58:54 -0500880
Miao Xief51a4a12013-06-19 10:36:09 +0800881 tmp = sums->len - total_bytes;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400882 tmp >>= fs_info->sb->s_blocksize_bits;
Liu Bo2f697dc2013-02-04 13:12:18 +0000883 tmp = min(tmp, (next_offset - file_key.offset) >>
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400884 fs_info->sb->s_blocksize_bits);
Liu Bo2f697dc2013-02-04 13:12:18 +0000885
Seraphime Kirkovski50d04462016-12-15 14:38:28 +0100886 tmp = max_t(u64, 1, tmp);
887 tmp = min_t(u64, tmp, MAX_CSUM_ITEMS(fs_info, csum_size));
Josef Bacik607d4322008-12-02 07:17:45 -0500888 ins_size = csum_size * tmp;
Chris Masonf578d4b2007-10-25 15:42:56 -0400889 } else {
Josef Bacik607d4322008-12-02 07:17:45 -0500890 ins_size = csum_size;
Chris Masonf578d4b2007-10-25 15:42:56 -0400891 }
Chris Masonb9473432009-03-13 11:00:37 -0400892 path->leave_spinning = 1;
Chris Mason5caf2a02007-04-02 11:20:42 -0400893 ret = btrfs_insert_empty_item(trans, root, path, &file_key,
Chris Masonf578d4b2007-10-25 15:42:56 -0400894 ins_size);
Chris Masonb9473432009-03-13 11:00:37 -0400895 path->leave_spinning = 0;
Chris Mason54aa1f42007-06-22 14:16:25 -0400896 if (ret < 0)
Chris Mason53863232008-08-15 15:34:18 -0400897 goto fail_unlock;
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +0530898 if (WARN_ON(ret != 0))
Chris Mason53863232008-08-15 15:34:18 -0400899 goto fail_unlock;
Chris Mason5f39d392007-10-15 16:14:19 -0400900 leaf = path->nodes[0];
Miao Xief51a4a12013-06-19 10:36:09 +0800901csum:
Chris Mason5f39d392007-10-15 16:14:19 -0400902 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_csum_item);
Miao Xief51a4a12013-06-19 10:36:09 +0800903 item_end = (struct btrfs_csum_item *)((unsigned char *)item +
904 btrfs_item_size_nr(leaf, path->slots[0]));
Chris Mason509659c2007-05-10 12:36:17 -0400905 item = (struct btrfs_csum_item *)((unsigned char *)item +
Josef Bacik607d4322008-12-02 07:17:45 -0500906 csum_offset * csum_size);
Chris Masonb18c6682007-04-17 13:26:50 -0400907found:
Miao Xief51a4a12013-06-19 10:36:09 +0800908 ins_size = (u32)(sums->len - total_bytes) >>
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400909 fs_info->sb->s_blocksize_bits;
Miao Xief51a4a12013-06-19 10:36:09 +0800910 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 Masonaadfeb62008-01-29 09:10:27 -0500915
Johannes Thumshirn1e25a2e2019-05-22 10:19:01 +0200916 index += ins_size;
Miao Xief51a4a12013-06-19 10:36:09 +0800917 ins_size /= csum_size;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400918 total_bytes += ins_size * fs_info->sectorsize;
Chris Masona6591712011-07-19 12:04:14 -0400919
Chris Mason5caf2a02007-04-02 11:20:42 -0400920 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400921 if (total_bytes < sums->len) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200922 btrfs_release_path(path);
Chris Masonb9473432009-03-13 11:00:37 -0400923 cond_resched();
Chris Mason065631f2008-02-20 12:07:25 -0500924 goto again;
925 }
Chris Mason53863232008-08-15 15:34:18 -0400926out:
Chris Mason5caf2a02007-04-02 11:20:42 -0400927 btrfs_free_path(path);
Chris Masonf254e522007-03-29 15:15:27 -0400928 return ret;
Chris Mason53863232008-08-15 15:34:18 -0400929
930fail_unlock:
Chris Mason53863232008-08-15 15:34:18 -0400931 goto out;
Chris Masonf254e522007-03-29 15:15:27 -0400932}
Filipe Manana7ffbb592014-06-09 03:48:05 +0100933
Nikolay Borisov9cdc5122017-02-20 13:51:02 +0200934void btrfs_extent_item_to_extent_map(struct btrfs_inode *inode,
Filipe Manana7ffbb592014-06-09 03:48:05 +0100935 const struct btrfs_path *path,
936 struct btrfs_file_extent_item *fi,
937 const bool new_inline,
938 struct extent_map *em)
939{
David Sterba3ffbd682018-06-29 10:56:42 +0200940 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Nikolay Borisov9cdc5122017-02-20 13:51:02 +0200941 struct btrfs_root *root = inode->root;
Filipe Manana7ffbb592014-06-09 03:48:05 +0100942 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 Manana7ffbb592014-06-09 03:48:05 +0100950 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 Wenruoe41ca582018-06-06 15:41:49 +0800959 size = btrfs_file_extent_ram_bytes(leaf, fi);
Jeff Mahoneyda170662016-06-15 09:22:56 -0400960 extent_end = ALIGN(extent_start + size,
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400961 fs_info->sectorsize);
Filipe Manana7ffbb592014-06-09 03:48:05 +0100962 }
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 Mahoney0b246af2016-06-22 18:54:23 -04001004 btrfs_err(fs_info,
Nikolay Borisov9cdc5122017-02-20 13:51:02 +02001005 "unknown file extent item type %d, inode %llu, offset %llu, "
1006 "root %llu", type, btrfs_ino(inode), extent_start,
Filipe Manana7ffbb592014-06-09 03:48:05 +01001007 root->root_key.objectid);
1008 }
1009}