blob: 609d56b9fd8eab8d89b45a35367f13f1cafa54be [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
Chris Mason065631f2008-02-20 12:07:25 -050019#include <linux/bio.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Chris Mason065631f2008-02-20 12:07:25 -050021#include <linux/pagemap.h>
22#include <linux/highmem.h>
Chris Mason1e1d2702007-03-15 19:03:33 -040023#include "ctree.h"
Chris Masondee26a92007-03-26 16:00:06 -040024#include "disk-io.h"
Chris Mason9f5fae22007-03-20 14:38:32 -040025#include "transaction.h"
Miao Xiefacc8a222013-07-25 19:22:34 +080026#include "volumes.h"
Chris Mason1de037a2007-05-29 15:17:08 -040027#include "print-tree.h"
Chris Mason1e1d2702007-03-15 19:03:33 -040028
Jan Schmidt995e01b2012-08-13 02:52:38 -060029#define __MAX_CSUM_ITEMS(r, size) ((unsigned long)(((BTRFS_LEAF_DATA_SIZE(r) - \
Josef Bacik607d4322008-12-02 07:17:45 -050030 sizeof(struct btrfs_item) * 2) / \
31 size) - 1))
Yan Zheng07d400a2009-01-06 11:42:00 -050032
Zach Brown221b8312012-09-20 14:33:00 -060033#define MAX_CSUM_ITEMS(r, size) (min_t(u32, __MAX_CSUM_ITEMS(r, size), \
34 PAGE_CACHE_SIZE))
Chris Mason7ca4be42012-01-31 20:19:02 -050035
Yan Zheng07d400a2009-01-06 11:42:00 -050036#define MAX_ORDERED_SUM_BYTES(r) ((PAGE_SIZE - \
37 sizeof(struct btrfs_ordered_sum)) / \
Miao Xief51a4a12013-06-19 10:36:09 +080038 sizeof(u32) * (r)->sectorsize)
Yan Zheng07d400a2009-01-06 11:42:00 -050039
Chris Masonb18c6682007-04-17 13:26:50 -040040int btrfs_insert_file_extent(struct btrfs_trans_handle *trans,
Sage Weilf2eb0a22008-05-02 14:43:14 -040041 struct btrfs_root *root,
42 u64 objectid, u64 pos,
43 u64 disk_offset, u64 disk_num_bytes,
Chris Masonc8b97812008-10-29 14:49:59 -040044 u64 num_bytes, u64 offset, u64 ram_bytes,
45 u8 compression, u8 encryption, u16 other_encoding)
Chris Mason9f5fae22007-03-20 14:38:32 -040046{
Chris Masondee26a92007-03-26 16:00:06 -040047 int ret = 0;
48 struct btrfs_file_extent_item *item;
49 struct btrfs_key file_key;
Chris Mason5caf2a02007-04-02 11:20:42 -040050 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -040051 struct extent_buffer *leaf;
Chris Masondee26a92007-03-26 16:00:06 -040052
Chris Mason5caf2a02007-04-02 11:20:42 -040053 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +000054 if (!path)
55 return -ENOMEM;
Chris Masondee26a92007-03-26 16:00:06 -040056 file_key.objectid = objectid;
Chris Masonb18c6682007-04-17 13:26:50 -040057 file_key.offset = pos;
Chris Masondee26a92007-03-26 16:00:06 -040058 btrfs_set_key_type(&file_key, BTRFS_EXTENT_DATA_KEY);
59
Chris Masonb9473432009-03-13 11:00:37 -040060 path->leave_spinning = 1;
Chris Mason5caf2a02007-04-02 11:20:42 -040061 ret = btrfs_insert_empty_item(trans, root, path, &file_key,
Chris Masondee26a92007-03-26 16:00:06 -040062 sizeof(*item));
Chris Mason54aa1f42007-06-22 14:16:25 -040063 if (ret < 0)
64 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +010065 BUG_ON(ret); /* Can't happen */
Chris Mason5f39d392007-10-15 16:14:19 -040066 leaf = path->nodes[0];
67 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masondee26a92007-03-26 16:00:06 -040068 struct btrfs_file_extent_item);
Sage Weilf2eb0a22008-05-02 14:43:14 -040069 btrfs_set_file_extent_disk_bytenr(leaf, item, disk_offset);
Chris Masondb945352007-10-15 16:15:53 -040070 btrfs_set_file_extent_disk_num_bytes(leaf, item, disk_num_bytes);
Sage Weilf2eb0a22008-05-02 14:43:14 -040071 btrfs_set_file_extent_offset(leaf, item, offset);
Chris Masondb945352007-10-15 16:15:53 -040072 btrfs_set_file_extent_num_bytes(leaf, item, num_bytes);
Chris Masonc8b97812008-10-29 14:49:59 -040073 btrfs_set_file_extent_ram_bytes(leaf, item, ram_bytes);
Chris Mason5f39d392007-10-15 16:14:19 -040074 btrfs_set_file_extent_generation(leaf, item, trans->transid);
75 btrfs_set_file_extent_type(leaf, item, BTRFS_FILE_EXTENT_REG);
Chris Masonc8b97812008-10-29 14:49:59 -040076 btrfs_set_file_extent_compression(leaf, item, compression);
77 btrfs_set_file_extent_encryption(leaf, item, encryption);
78 btrfs_set_file_extent_other_encoding(leaf, item, other_encoding);
79
Chris Mason5f39d392007-10-15 16:14:19 -040080 btrfs_mark_buffer_dirty(leaf);
Chris Mason54aa1f42007-06-22 14:16:25 -040081out:
Chris Mason5caf2a02007-04-02 11:20:42 -040082 btrfs_free_path(path);
Chris Mason54aa1f42007-06-22 14:16:25 -040083 return ret;
Chris Mason9f5fae22007-03-20 14:38:32 -040084}
Chris Masondee26a92007-03-26 16:00:06 -040085
Eric Sandeen48a3b632013-04-25 20:41:01 +000086static struct btrfs_csum_item *
87btrfs_lookup_csum(struct btrfs_trans_handle *trans,
88 struct btrfs_root *root,
89 struct btrfs_path *path,
90 u64 bytenr, int cow)
Chris Mason6567e832007-04-16 09:22:45 -040091{
92 int ret;
93 struct btrfs_key file_key;
94 struct btrfs_key found_key;
95 struct btrfs_csum_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -040096 struct extent_buffer *leaf;
Chris Mason6567e832007-04-16 09:22:45 -040097 u64 csum_offset = 0;
David Sterba6c417612011-04-13 15:41:04 +020098 u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy);
Chris Masona429e512007-04-18 16:15:28 -040099 int csums_in_item;
Chris Mason6567e832007-04-16 09:22:45 -0400100
Chris Masond20f7042008-12-08 16:58:54 -0500101 file_key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
102 file_key.offset = bytenr;
103 btrfs_set_key_type(&file_key, BTRFS_EXTENT_CSUM_KEY);
Chris Masonb18c6682007-04-17 13:26:50 -0400104 ret = btrfs_search_slot(trans, root, &file_key, path, 0, cow);
Chris Mason6567e832007-04-16 09:22:45 -0400105 if (ret < 0)
106 goto fail;
Chris Mason5f39d392007-10-15 16:14:19 -0400107 leaf = path->nodes[0];
Chris Mason6567e832007-04-16 09:22:45 -0400108 if (ret > 0) {
109 ret = 1;
Chris Mason70b2bef2007-04-17 15:39:32 -0400110 if (path->slots[0] == 0)
Chris Mason6567e832007-04-16 09:22:45 -0400111 goto fail;
112 path->slots[0]--;
Chris Mason5f39d392007-10-15 16:14:19 -0400113 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masond20f7042008-12-08 16:58:54 -0500114 if (btrfs_key_type(&found_key) != BTRFS_EXTENT_CSUM_KEY)
Chris Mason6567e832007-04-16 09:22:45 -0400115 goto fail;
Chris Masond20f7042008-12-08 16:58:54 -0500116
117 csum_offset = (bytenr - found_key.offset) >>
Chris Mason6567e832007-04-16 09:22:45 -0400118 root->fs_info->sb->s_blocksize_bits;
Chris Mason5f39d392007-10-15 16:14:19 -0400119 csums_in_item = btrfs_item_size_nr(leaf, path->slots[0]);
Josef Bacik607d4322008-12-02 07:17:45 -0500120 csums_in_item /= csum_size;
Chris Masona429e512007-04-18 16:15:28 -0400121
Miao Xie82d130f2013-03-28 08:12:15 +0000122 if (csum_offset == csums_in_item) {
Chris Masona429e512007-04-18 16:15:28 -0400123 ret = -EFBIG;
Chris Mason6567e832007-04-16 09:22:45 -0400124 goto fail;
Miao Xie82d130f2013-03-28 08:12:15 +0000125 } else if (csum_offset > csums_in_item) {
126 goto fail;
Chris Mason6567e832007-04-16 09:22:45 -0400127 }
128 }
129 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_csum_item);
Chris Mason509659c2007-05-10 12:36:17 -0400130 item = (struct btrfs_csum_item *)((unsigned char *)item +
Josef Bacik607d4322008-12-02 07:17:45 -0500131 csum_offset * csum_size);
Chris Mason6567e832007-04-16 09:22:45 -0400132 return item;
133fail:
134 if (ret > 0)
Chris Masonb18c6682007-04-17 13:26:50 -0400135 ret = -ENOENT;
Chris Mason6567e832007-04-16 09:22:45 -0400136 return ERR_PTR(ret);
137}
138
Chris Masondee26a92007-03-26 16:00:06 -0400139int btrfs_lookup_file_extent(struct btrfs_trans_handle *trans,
140 struct btrfs_root *root,
141 struct btrfs_path *path, u64 objectid,
Chris Mason9773a782007-03-27 11:26:26 -0400142 u64 offset, int mod)
Chris Masondee26a92007-03-26 16:00:06 -0400143{
144 int ret;
145 struct btrfs_key file_key;
146 int ins_len = mod < 0 ? -1 : 0;
147 int cow = mod != 0;
148
149 file_key.objectid = objectid;
Chris Mason70b2bef2007-04-17 15:39:32 -0400150 file_key.offset = offset;
Chris Masondee26a92007-03-26 16:00:06 -0400151 btrfs_set_key_type(&file_key, BTRFS_EXTENT_DATA_KEY);
152 ret = btrfs_search_slot(trans, root, &file_key, path, ins_len, cow);
153 return ret;
154}
Chris Masonf254e522007-03-29 15:15:27 -0400155
Miao Xiefacc8a222013-07-25 19:22:34 +0800156static void btrfs_io_bio_endio_readpage(struct btrfs_io_bio *bio, int err)
157{
158 kfree(bio->csum_allocated);
159}
160
Josef Bacik4b46fce2010-05-23 11:00:55 -0400161static int __btrfs_lookup_bio_sums(struct btrfs_root *root,
162 struct inode *inode, struct bio *bio,
163 u64 logical_offset, u32 *dst, int dio)
Chris Mason61b49442008-07-31 15:42:53 -0400164{
Chris Mason61b49442008-07-31 15:42:53 -0400165 struct bio_vec *bvec = bio->bi_io_vec;
Miao Xiefacc8a222013-07-25 19:22:34 +0800166 struct btrfs_io_bio *btrfs_bio = btrfs_io_bio(bio);
167 struct btrfs_csum_item *item = NULL;
168 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
169 struct btrfs_path *path;
170 u8 *csum;
Josef Bacik4b46fce2010-05-23 11:00:55 -0400171 u64 offset = 0;
Chris Mason61b49442008-07-31 15:42:53 -0400172 u64 item_start_offset = 0;
173 u64 item_last_offset = 0;
Chris Masond20f7042008-12-08 16:58:54 -0500174 u64 disk_bytenr;
Chris Mason61b49442008-07-31 15:42:53 -0400175 u32 diff;
Miao Xiefacc8a222013-07-25 19:22:34 +0800176 int nblocks;
177 int bio_index = 0;
Miao Xiee4100d92013-04-05 07:20:56 +0000178 int count;
Miao Xiefacc8a222013-07-25 19:22:34 +0800179 u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy);
Chris Mason61b49442008-07-31 15:42:53 -0400180
181 path = btrfs_alloc_path();
Tsutomu Itohc2db1072011-03-01 06:48:31 +0000182 if (!path)
183 return -ENOMEM;
Miao Xiefacc8a222013-07-25 19:22:34 +0800184
Kent Overstreet4f024f32013-10-11 15:44:27 -0700185 nblocks = bio->bi_iter.bi_size >> inode->i_sb->s_blocksize_bits;
Miao Xiefacc8a222013-07-25 19:22:34 +0800186 if (!dst) {
187 if (nblocks * csum_size > BTRFS_BIO_INLINE_CSUM_SIZE) {
188 btrfs_bio->csum_allocated = kmalloc(nblocks * csum_size,
189 GFP_NOFS);
190 if (!btrfs_bio->csum_allocated) {
191 btrfs_free_path(path);
192 return -ENOMEM;
193 }
194 btrfs_bio->csum = btrfs_bio->csum_allocated;
195 btrfs_bio->end_io = btrfs_io_bio_endio_readpage;
196 } else {
197 btrfs_bio->csum = btrfs_bio->csum_inline;
198 }
199 csum = btrfs_bio->csum;
200 } else {
201 csum = (u8 *)dst;
202 }
203
Kent Overstreet4f024f32013-10-11 15:44:27 -0700204 if (bio->bi_iter.bi_size > PAGE_CACHE_SIZE * 8)
Chris Mason4d1b5fb2008-08-20 09:44:52 -0400205 path->reada = 2;
Chris Mason61b49442008-07-31 15:42:53 -0400206
207 WARN_ON(bio->bi_vcnt <= 0);
208
Chris Mason2cf85722011-07-26 15:35:09 -0400209 /*
210 * the free space stuff is only read when it hasn't been
211 * updated in the current transaction. So, we can safely
212 * read from the commit root and sidestep a nasty deadlock
213 * between reading the free space cache and updating the csum tree.
214 */
Liu Bo83eea1f2012-07-10 05:28:39 -0600215 if (btrfs_is_free_space_inode(inode)) {
Chris Mason2cf85722011-07-26 15:35:09 -0400216 path->search_commit_root = 1;
Josef Bacikddf23b32011-09-11 10:52:24 -0400217 path->skip_locking = 1;
218 }
Chris Mason2cf85722011-07-26 15:35:09 -0400219
Kent Overstreet4f024f32013-10-11 15:44:27 -0700220 disk_bytenr = (u64)bio->bi_iter.bi_sector << 9;
Josef Bacik4b46fce2010-05-23 11:00:55 -0400221 if (dio)
222 offset = logical_offset;
Chris Masond3977122009-01-05 21:25:51 -0500223 while (bio_index < bio->bi_vcnt) {
Josef Bacik4b46fce2010-05-23 11:00:55 -0400224 if (!dio)
225 offset = page_offset(bvec->bv_page) + bvec->bv_offset;
Miao Xiefacc8a222013-07-25 19:22:34 +0800226 count = btrfs_find_ordered_sum(inode, offset, disk_bytenr,
227 (u32 *)csum, nblocks);
Miao Xiee4100d92013-04-05 07:20:56 +0000228 if (count)
Chris Mason61b49442008-07-31 15:42:53 -0400229 goto found;
230
Chris Masond20f7042008-12-08 16:58:54 -0500231 if (!item || disk_bytenr < item_start_offset ||
232 disk_bytenr >= item_last_offset) {
Chris Mason61b49442008-07-31 15:42:53 -0400233 struct btrfs_key found_key;
234 u32 item_size;
235
236 if (item)
David Sterbab3b4aa72011-04-21 01:20:15 +0200237 btrfs_release_path(path);
Chris Masond20f7042008-12-08 16:58:54 -0500238 item = btrfs_lookup_csum(NULL, root->fs_info->csum_root,
239 path, disk_bytenr, 0);
Chris Mason61b49442008-07-31 15:42:53 -0400240 if (IS_ERR(item)) {
Miao Xiee4100d92013-04-05 07:20:56 +0000241 count = 1;
Miao Xiefacc8a222013-07-25 19:22:34 +0800242 memset(csum, 0, csum_size);
Yan Zheng17d217f2008-12-12 10:03:38 -0500243 if (BTRFS_I(inode)->root->root_key.objectid ==
244 BTRFS_DATA_RELOC_TREE_OBJECTID) {
245 set_extent_bits(io_tree, offset,
246 offset + bvec->bv_len - 1,
247 EXTENT_NODATASUM, GFP_NOFS);
248 } else {
Frank Holtonefe120a2013-12-20 11:37:06 -0500249 btrfs_info(BTRFS_I(inode)->root->fs_info,
250 "no csum found for inode %llu start %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200251 btrfs_ino(inode), offset);
Yan Zheng17d217f2008-12-12 10:03:38 -0500252 }
Chris Mason6dab8152008-08-04 08:35:53 -0400253 item = NULL;
David Sterbab3b4aa72011-04-21 01:20:15 +0200254 btrfs_release_path(path);
Chris Mason61b49442008-07-31 15:42:53 -0400255 goto found;
256 }
257 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
258 path->slots[0]);
259
260 item_start_offset = found_key.offset;
261 item_size = btrfs_item_size_nr(path->nodes[0],
262 path->slots[0]);
263 item_last_offset = item_start_offset +
Josef Bacik607d4322008-12-02 07:17:45 -0500264 (item_size / csum_size) *
Chris Mason61b49442008-07-31 15:42:53 -0400265 root->sectorsize;
266 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
267 struct btrfs_csum_item);
268 }
269 /*
270 * this byte range must be able to fit inside
271 * a single leaf so it will also fit inside a u32
272 */
Chris Masond20f7042008-12-08 16:58:54 -0500273 diff = disk_bytenr - item_start_offset;
Chris Mason61b49442008-07-31 15:42:53 -0400274 diff = diff / root->sectorsize;
Josef Bacik607d4322008-12-02 07:17:45 -0500275 diff = diff * csum_size;
Miao Xiefacc8a222013-07-25 19:22:34 +0800276 count = min_t(int, nblocks, (item_last_offset - disk_bytenr) >>
277 inode->i_sb->s_blocksize_bits);
278 read_extent_buffer(path->nodes[0], csum,
Chris Mason3de9d6b2008-08-04 23:17:27 -0400279 ((unsigned long)item) + diff,
Miao Xiee4100d92013-04-05 07:20:56 +0000280 csum_size * count);
Chris Mason61b49442008-07-31 15:42:53 -0400281found:
Miao Xiefacc8a222013-07-25 19:22:34 +0800282 csum += count * csum_size;
283 nblocks -= count;
Liu Bod2cbf2a2014-04-29 13:07:58 +0800284 bio_index += count;
Miao Xiee4100d92013-04-05 07:20:56 +0000285 while (count--) {
286 disk_bytenr += bvec->bv_len;
287 offset += bvec->bv_len;
Miao Xiee4100d92013-04-05 07:20:56 +0000288 bvec++;
289 }
Chris Mason61b49442008-07-31 15:42:53 -0400290 }
291 btrfs_free_path(path);
292 return 0;
293}
294
Josef Bacik4b46fce2010-05-23 11:00:55 -0400295int btrfs_lookup_bio_sums(struct btrfs_root *root, struct inode *inode,
296 struct bio *bio, u32 *dst)
297{
298 return __btrfs_lookup_bio_sums(root, inode, bio, 0, dst, 0);
299}
300
301int btrfs_lookup_bio_sums_dio(struct btrfs_root *root, struct inode *inode,
Miao Xiefacc8a222013-07-25 19:22:34 +0800302 struct btrfs_dio_private *dip, struct bio *bio,
303 u64 offset)
Josef Bacik4b46fce2010-05-23 11:00:55 -0400304{
Kent Overstreet4f024f32013-10-11 15:44:27 -0700305 int len = (bio->bi_iter.bi_sector << 9) - dip->disk_bytenr;
Miao Xiefacc8a222013-07-25 19:22:34 +0800306 u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy);
307 int ret;
308
309 len >>= inode->i_sb->s_blocksize_bits;
310 len *= csum_size;
311
312 ret = __btrfs_lookup_bio_sums(root, inode, bio, offset,
313 (u32 *)(dip->csum + len), 1);
314 return ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -0400315}
316
Yan Zheng17d217f2008-12-12 10:03:38 -0500317int btrfs_lookup_csums_range(struct btrfs_root *root, u64 start, u64 end,
Arne Jansena2de7332011-03-08 14:14:00 +0100318 struct list_head *list, int search_commit)
Yan Zheng17d217f2008-12-12 10:03:38 -0500319{
320 struct btrfs_key key;
321 struct btrfs_path *path;
322 struct extent_buffer *leaf;
323 struct btrfs_ordered_sum *sums;
Yan Zheng17d217f2008-12-12 10:03:38 -0500324 struct btrfs_csum_item *item;
Mark Fasheh0678b612011-08-05 15:46:16 -0700325 LIST_HEAD(tmplist);
Yan Zheng17d217f2008-12-12 10:03:38 -0500326 unsigned long offset;
327 int ret;
328 size_t size;
329 u64 csum_end;
David Sterba6c417612011-04-13 15:41:04 +0200330 u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy);
Yan Zheng17d217f2008-12-12 10:03:38 -0500331
Josef Bacik4277a9c2013-10-15 09:36:40 -0400332 ASSERT(start == ALIGN(start, root->sectorsize) &&
333 (end + 1) == ALIGN(end + 1, root->sectorsize));
334
Yan Zheng17d217f2008-12-12 10:03:38 -0500335 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -0700336 if (!path)
337 return -ENOMEM;
Yan Zheng17d217f2008-12-12 10:03:38 -0500338
Arne Jansena2de7332011-03-08 14:14:00 +0100339 if (search_commit) {
340 path->skip_locking = 1;
341 path->reada = 2;
342 path->search_commit_root = 1;
343 }
344
Yan Zheng17d217f2008-12-12 10:03:38 -0500345 key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
346 key.offset = start;
347 key.type = BTRFS_EXTENT_CSUM_KEY;
348
Yan Zheng07d400a2009-01-06 11:42:00 -0500349 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Yan Zheng17d217f2008-12-12 10:03:38 -0500350 if (ret < 0)
351 goto fail;
352 if (ret > 0 && path->slots[0] > 0) {
353 leaf = path->nodes[0];
354 btrfs_item_key_to_cpu(leaf, &key, path->slots[0] - 1);
355 if (key.objectid == BTRFS_EXTENT_CSUM_OBJECTID &&
356 key.type == BTRFS_EXTENT_CSUM_KEY) {
357 offset = (start - key.offset) >>
358 root->fs_info->sb->s_blocksize_bits;
359 if (offset * csum_size <
360 btrfs_item_size_nr(leaf, path->slots[0] - 1))
361 path->slots[0]--;
362 }
363 }
364
365 while (start <= end) {
366 leaf = path->nodes[0];
367 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
Yan Zheng07d400a2009-01-06 11:42:00 -0500368 ret = btrfs_next_leaf(root, path);
Yan Zheng17d217f2008-12-12 10:03:38 -0500369 if (ret < 0)
370 goto fail;
371 if (ret > 0)
372 break;
373 leaf = path->nodes[0];
374 }
375
376 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
377 if (key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
Zhi Yong Wu628c8282013-03-18 09:18:09 +0000378 key.type != BTRFS_EXTENT_CSUM_KEY ||
379 key.offset > end)
Yan Zheng17d217f2008-12-12 10:03:38 -0500380 break;
381
382 if (key.offset > start)
383 start = key.offset;
384
385 size = btrfs_item_size_nr(leaf, path->slots[0]);
386 csum_end = key.offset + (size / csum_size) * root->sectorsize;
Yan Zheng87b29b22008-12-17 10:21:48 -0500387 if (csum_end <= start) {
388 path->slots[0]++;
389 continue;
390 }
Yan Zheng17d217f2008-12-12 10:03:38 -0500391
Yan Zheng07d400a2009-01-06 11:42:00 -0500392 csum_end = min(csum_end, end + 1);
Yan Zheng17d217f2008-12-12 10:03:38 -0500393 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
394 struct btrfs_csum_item);
Yan Zheng07d400a2009-01-06 11:42:00 -0500395 while (start < csum_end) {
396 size = min_t(size_t, csum_end - start,
Miao Xief51a4a12013-06-19 10:36:09 +0800397 MAX_ORDERED_SUM_BYTES(root));
Yan Zheng07d400a2009-01-06 11:42:00 -0500398 sums = kzalloc(btrfs_ordered_sum_size(root, size),
Miao Xief51a4a12013-06-19 10:36:09 +0800399 GFP_NOFS);
Mark Fasheh0678b612011-08-05 15:46:16 -0700400 if (!sums) {
401 ret = -ENOMEM;
402 goto fail;
403 }
Yan Zheng17d217f2008-12-12 10:03:38 -0500404
Yan Zheng07d400a2009-01-06 11:42:00 -0500405 sums->bytenr = start;
Miao Xief51a4a12013-06-19 10:36:09 +0800406 sums->len = (int)size;
Yan Zheng07d400a2009-01-06 11:42:00 -0500407
408 offset = (start - key.offset) >>
409 root->fs_info->sb->s_blocksize_bits;
410 offset *= csum_size;
Miao Xief51a4a12013-06-19 10:36:09 +0800411 size >>= root->fs_info->sb->s_blocksize_bits;
Yan Zheng07d400a2009-01-06 11:42:00 -0500412
Miao Xief51a4a12013-06-19 10:36:09 +0800413 read_extent_buffer(path->nodes[0],
414 sums->sums,
415 ((unsigned long)item) + offset,
416 csum_size * size);
Yan Zheng07d400a2009-01-06 11:42:00 -0500417
Miao Xief51a4a12013-06-19 10:36:09 +0800418 start += root->sectorsize * size;
Mark Fasheh0678b612011-08-05 15:46:16 -0700419 list_add_tail(&sums->list, &tmplist);
Yan Zheng17d217f2008-12-12 10:03:38 -0500420 }
Yan Zheng17d217f2008-12-12 10:03:38 -0500421 path->slots[0]++;
422 }
423 ret = 0;
424fail:
Mark Fasheh0678b612011-08-05 15:46:16 -0700425 while (ret < 0 && !list_empty(&tmplist)) {
426 sums = list_entry(&tmplist, struct btrfs_ordered_sum, list);
427 list_del(&sums->list);
428 kfree(sums);
429 }
430 list_splice_tail(&tmplist, list);
431
Yan Zheng17d217f2008-12-12 10:03:38 -0500432 btrfs_free_path(path);
433 return ret;
434}
435
Chris Mason3edf7d32008-07-18 06:17:13 -0400436int btrfs_csum_one_bio(struct btrfs_root *root, struct inode *inode,
Chris Masond20f7042008-12-08 16:58:54 -0500437 struct bio *bio, u64 file_start, int contig)
Chris Masone0156402008-04-16 11:15:20 -0400438{
Chris Masone6dcd2d2008-07-17 12:53:50 -0400439 struct btrfs_ordered_sum *sums;
Chris Mason3edf7d32008-07-18 06:17:13 -0400440 struct btrfs_ordered_extent *ordered;
Chris Masone0156402008-04-16 11:15:20 -0400441 char *data;
442 struct bio_vec *bvec = bio->bi_io_vec;
443 int bio_index = 0;
Miao Xief51a4a12013-06-19 10:36:09 +0800444 int index;
Chris Mason3edf7d32008-07-18 06:17:13 -0400445 unsigned long total_bytes = 0;
446 unsigned long this_sum_bytes = 0;
447 u64 offset;
Chris Masone0156402008-04-16 11:15:20 -0400448
Chris Masone6dcd2d2008-07-17 12:53:50 -0400449 WARN_ON(bio->bi_vcnt <= 0);
Kent Overstreet4f024f32013-10-11 15:44:27 -0700450 sums = kzalloc(btrfs_ordered_sum_size(root, bio->bi_iter.bi_size),
451 GFP_NOFS);
Chris Masone0156402008-04-16 11:15:20 -0400452 if (!sums)
453 return -ENOMEM;
Chris Mason3edf7d32008-07-18 06:17:13 -0400454
Kent Overstreet4f024f32013-10-11 15:44:27 -0700455 sums->len = bio->bi_iter.bi_size;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400456 INIT_LIST_HEAD(&sums->list);
Chris Masond20f7042008-12-08 16:58:54 -0500457
458 if (contig)
459 offset = file_start;
460 else
461 offset = page_offset(bvec->bv_page) + bvec->bv_offset;
462
463 ordered = btrfs_lookup_ordered_extent(inode, offset);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100464 BUG_ON(!ordered); /* Logic error */
Kent Overstreet4f024f32013-10-11 15:44:27 -0700465 sums->bytenr = (u64)bio->bi_iter.bi_sector << 9;
Miao Xief51a4a12013-06-19 10:36:09 +0800466 index = 0;
Chris Masone0156402008-04-16 11:15:20 -0400467
Chris Masond3977122009-01-05 21:25:51 -0500468 while (bio_index < bio->bi_vcnt) {
Chris Masond20f7042008-12-08 16:58:54 -0500469 if (!contig)
470 offset = page_offset(bvec->bv_page) + bvec->bv_offset;
471
Josef Bacike58dd742013-01-22 15:43:09 -0500472 if (offset >= ordered->file_offset + ordered->len ||
473 offset < ordered->file_offset) {
Chris Mason3edf7d32008-07-18 06:17:13 -0400474 unsigned long bytes_left;
475 sums->len = this_sum_bytes;
476 this_sum_bytes = 0;
477 btrfs_add_ordered_sum(inode, ordered, sums);
478 btrfs_put_ordered_extent(ordered);
479
Kent Overstreet4f024f32013-10-11 15:44:27 -0700480 bytes_left = bio->bi_iter.bi_size - total_bytes;
Chris Mason3edf7d32008-07-18 06:17:13 -0400481
482 sums = kzalloc(btrfs_ordered_sum_size(root, bytes_left),
483 GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100484 BUG_ON(!sums); /* -ENOMEM */
Chris Mason3edf7d32008-07-18 06:17:13 -0400485 sums->len = bytes_left;
Chris Masond20f7042008-12-08 16:58:54 -0500486 ordered = btrfs_lookup_ordered_extent(inode, offset);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100487 BUG_ON(!ordered); /* Logic error */
Kent Overstreet4f024f32013-10-11 15:44:27 -0700488 sums->bytenr = ((u64)bio->bi_iter.bi_sector << 9) +
Miao Xief51a4a12013-06-19 10:36:09 +0800489 total_bytes;
490 index = 0;
Chris Mason3edf7d32008-07-18 06:17:13 -0400491 }
492
Cong Wang7ac687d2011-11-25 23:14:28 +0800493 data = kmap_atomic(bvec->bv_page);
Miao Xief51a4a12013-06-19 10:36:09 +0800494 sums->sums[index] = ~(u32)0;
495 sums->sums[index] = btrfs_csum_data(data + bvec->bv_offset,
496 sums->sums[index],
497 bvec->bv_len);
Cong Wang7ac687d2011-11-25 23:14:28 +0800498 kunmap_atomic(data);
Miao Xief51a4a12013-06-19 10:36:09 +0800499 btrfs_csum_final(sums->sums[index],
500 (char *)(sums->sums + index));
Chris Masoned98b562008-07-22 23:06:42 -0400501
Chris Masone0156402008-04-16 11:15:20 -0400502 bio_index++;
Miao Xief51a4a12013-06-19 10:36:09 +0800503 index++;
Chris Mason3edf7d32008-07-18 06:17:13 -0400504 total_bytes += bvec->bv_len;
505 this_sum_bytes += bvec->bv_len;
Chris Masond20f7042008-12-08 16:58:54 -0500506 offset += bvec->bv_len;
Chris Masone0156402008-04-16 11:15:20 -0400507 bvec++;
508 }
Chris Masoned98b562008-07-22 23:06:42 -0400509 this_sum_bytes = 0;
Chris Mason3edf7d32008-07-18 06:17:13 -0400510 btrfs_add_ordered_sum(inode, ordered, sums);
511 btrfs_put_ordered_extent(ordered);
Chris Masone0156402008-04-16 11:15:20 -0400512 return 0;
513}
514
Chris Mason459931e2008-12-10 09:10:46 -0500515/*
516 * helper function for csum removal, this expects the
517 * key to describe the csum pointed to by the path, and it expects
518 * the csum to overlap the range [bytenr, len]
519 *
520 * The csum should not be entirely contained in the range and the
521 * range should not be entirely contained in the csum.
522 *
523 * This calls btrfs_truncate_item with the correct args based on the
524 * overlap, and fixes up the key as required.
525 */
Tsutomu Itohafe5fea2013-04-16 05:18:22 +0000526static noinline void truncate_one_csum(struct btrfs_root *root,
Jeff Mahoney143bede2012-03-01 14:56:26 +0100527 struct btrfs_path *path,
528 struct btrfs_key *key,
529 u64 bytenr, u64 len)
Chris Mason459931e2008-12-10 09:10:46 -0500530{
531 struct extent_buffer *leaf;
David Sterba6c417612011-04-13 15:41:04 +0200532 u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy);
Chris Mason459931e2008-12-10 09:10:46 -0500533 u64 csum_end;
534 u64 end_byte = bytenr + len;
535 u32 blocksize_bits = root->fs_info->sb->s_blocksize_bits;
Chris Mason459931e2008-12-10 09:10:46 -0500536
537 leaf = path->nodes[0];
538 csum_end = btrfs_item_size_nr(leaf, path->slots[0]) / csum_size;
539 csum_end <<= root->fs_info->sb->s_blocksize_bits;
540 csum_end += key->offset;
541
542 if (key->offset < bytenr && csum_end <= end_byte) {
543 /*
544 * [ bytenr - len ]
545 * [ ]
546 * [csum ]
547 * A simple truncate off the end of the item
548 */
549 u32 new_size = (bytenr - key->offset) >> blocksize_bits;
550 new_size *= csum_size;
Tsutomu Itohafe5fea2013-04-16 05:18:22 +0000551 btrfs_truncate_item(root, path, new_size, 1);
Chris Mason459931e2008-12-10 09:10:46 -0500552 } else if (key->offset >= bytenr && csum_end > end_byte &&
553 end_byte > key->offset) {
554 /*
555 * [ bytenr - len ]
556 * [ ]
557 * [csum ]
558 * we need to truncate from the beginning of the csum
559 */
560 u32 new_size = (csum_end - end_byte) >> blocksize_bits;
561 new_size *= csum_size;
562
Tsutomu Itohafe5fea2013-04-16 05:18:22 +0000563 btrfs_truncate_item(root, path, new_size, 0);
Chris Mason459931e2008-12-10 09:10:46 -0500564
565 key->offset = end_byte;
Tsutomu Itohafe5fea2013-04-16 05:18:22 +0000566 btrfs_set_item_key_safe(root, path, key);
Chris Mason459931e2008-12-10 09:10:46 -0500567 } else {
568 BUG();
569 }
Chris Mason459931e2008-12-10 09:10:46 -0500570}
571
572/*
573 * deletes the csum items from the csum tree for a given
574 * range of bytes.
575 */
576int btrfs_del_csums(struct btrfs_trans_handle *trans,
577 struct btrfs_root *root, u64 bytenr, u64 len)
578{
579 struct btrfs_path *path;
580 struct btrfs_key key;
581 u64 end_byte = bytenr + len;
582 u64 csum_end;
583 struct extent_buffer *leaf;
584 int ret;
David Sterba6c417612011-04-13 15:41:04 +0200585 u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy);
Chris Mason459931e2008-12-10 09:10:46 -0500586 int blocksize_bits = root->fs_info->sb->s_blocksize_bits;
587
588 root = root->fs_info->csum_root;
589
590 path = btrfs_alloc_path();
liubo2a29edc2011-01-26 06:22:08 +0000591 if (!path)
592 return -ENOMEM;
Chris Mason459931e2008-12-10 09:10:46 -0500593
Chris Masond3977122009-01-05 21:25:51 -0500594 while (1) {
Chris Mason459931e2008-12-10 09:10:46 -0500595 key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
596 key.offset = end_byte - 1;
597 key.type = BTRFS_EXTENT_CSUM_KEY;
598
Chris Masonb9473432009-03-13 11:00:37 -0400599 path->leave_spinning = 1;
Chris Mason459931e2008-12-10 09:10:46 -0500600 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
601 if (ret > 0) {
602 if (path->slots[0] == 0)
Tsutomu Itoh65a246c2011-05-19 04:37:44 +0000603 break;
Chris Mason459931e2008-12-10 09:10:46 -0500604 path->slots[0]--;
Josef Bacikad0397a2011-01-28 18:44:44 +0000605 } else if (ret < 0) {
Tsutomu Itoh65a246c2011-05-19 04:37:44 +0000606 break;
Chris Mason459931e2008-12-10 09:10:46 -0500607 }
Josef Bacikad0397a2011-01-28 18:44:44 +0000608
Chris Mason459931e2008-12-10 09:10:46 -0500609 leaf = path->nodes[0];
610 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
611
612 if (key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
613 key.type != BTRFS_EXTENT_CSUM_KEY) {
614 break;
615 }
616
617 if (key.offset >= end_byte)
618 break;
619
620 csum_end = btrfs_item_size_nr(leaf, path->slots[0]) / csum_size;
621 csum_end <<= blocksize_bits;
622 csum_end += key.offset;
623
624 /* this csum ends before we start, we're done */
625 if (csum_end <= bytenr)
626 break;
627
628 /* delete the entire item, it is inside our range */
629 if (key.offset >= bytenr && csum_end <= end_byte) {
630 ret = btrfs_del_item(trans, root, path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +0000631 if (ret)
632 goto out;
Chris Masondcbdd4d2008-12-16 13:51:01 -0500633 if (key.offset == bytenr)
634 break;
Chris Mason459931e2008-12-10 09:10:46 -0500635 } else if (key.offset < bytenr && csum_end > end_byte) {
636 unsigned long offset;
637 unsigned long shift_len;
638 unsigned long item_offset;
639 /*
640 * [ bytenr - len ]
641 * [csum ]
642 *
643 * Our bytes are in the middle of the csum,
644 * we need to split this item and insert a new one.
645 *
646 * But we can't drop the path because the
647 * csum could change, get removed, extended etc.
648 *
649 * The trick here is the max size of a csum item leaves
650 * enough room in the tree block for a single
651 * item header. So, we split the item in place,
652 * adding a new header pointing to the existing
653 * bytes. Then we loop around again and we have
654 * a nicely formed csum item that we can neatly
655 * truncate.
656 */
657 offset = (bytenr - key.offset) >> blocksize_bits;
658 offset *= csum_size;
659
660 shift_len = (len >> blocksize_bits) * csum_size;
661
662 item_offset = btrfs_item_ptr_offset(leaf,
663 path->slots[0]);
664
665 memset_extent_buffer(leaf, 0, item_offset + offset,
666 shift_len);
667 key.offset = bytenr;
668
669 /*
670 * btrfs_split_item returns -EAGAIN when the
671 * item changed size or key
672 */
673 ret = btrfs_split_item(trans, root, path, &key, offset);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100674 if (ret && ret != -EAGAIN) {
675 btrfs_abort_transaction(trans, root, ret);
676 goto out;
677 }
Chris Mason459931e2008-12-10 09:10:46 -0500678
679 key.offset = end_byte - 1;
680 } else {
Tsutomu Itohafe5fea2013-04-16 05:18:22 +0000681 truncate_one_csum(root, path, &key, bytenr, len);
Chris Masondcbdd4d2008-12-16 13:51:01 -0500682 if (key.offset < bytenr)
683 break;
Chris Mason459931e2008-12-10 09:10:46 -0500684 }
David Sterbab3b4aa72011-04-21 01:20:15 +0200685 btrfs_release_path(path);
Chris Mason459931e2008-12-10 09:10:46 -0500686 }
Tsutomu Itoh65a246c2011-05-19 04:37:44 +0000687 ret = 0;
Chris Mason459931e2008-12-10 09:10:46 -0500688out:
689 btrfs_free_path(path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +0000690 return ret;
Chris Mason459931e2008-12-10 09:10:46 -0500691}
692
Chris Mason065631f2008-02-20 12:07:25 -0500693int btrfs_csum_file_blocks(struct btrfs_trans_handle *trans,
Chris Masond20f7042008-12-08 16:58:54 -0500694 struct btrfs_root *root,
Chris Masone6dcd2d2008-07-17 12:53:50 -0400695 struct btrfs_ordered_sum *sums)
Chris Masonf254e522007-03-29 15:15:27 -0400696{
Chris Masonf254e522007-03-29 15:15:27 -0400697 struct btrfs_key file_key;
Chris Mason6567e832007-04-16 09:22:45 -0400698 struct btrfs_key found_key;
Chris Mason5caf2a02007-04-02 11:20:42 -0400699 struct btrfs_path *path;
Chris Masonf254e522007-03-29 15:15:27 -0400700 struct btrfs_csum_item *item;
Chris Mason065631f2008-02-20 12:07:25 -0500701 struct btrfs_csum_item *item_end;
Chris Masonff79f812007-10-15 16:22:25 -0400702 struct extent_buffer *leaf = NULL;
Miao Xief51a4a12013-06-19 10:36:09 +0800703 u64 next_offset;
704 u64 total_bytes = 0;
Chris Mason6567e832007-04-16 09:22:45 -0400705 u64 csum_offset;
Miao Xief51a4a12013-06-19 10:36:09 +0800706 u64 bytenr;
Chris Masonf578d4b2007-10-25 15:42:56 -0400707 u32 nritems;
708 u32 ins_size;
Miao Xief51a4a12013-06-19 10:36:09 +0800709 int index = 0;
710 int found_next;
711 int ret;
David Sterba6c417612011-04-13 15:41:04 +0200712 u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy);
Chris Mason6e92f5e2008-02-20 12:07:25 -0500713
Chris Mason5caf2a02007-04-02 11:20:42 -0400714 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -0700715 if (!path)
716 return -ENOMEM;
Chris Mason065631f2008-02-20 12:07:25 -0500717again:
718 next_offset = (u64)-1;
719 found_next = 0;
Miao Xief51a4a12013-06-19 10:36:09 +0800720 bytenr = sums->bytenr + total_bytes;
Chris Masond20f7042008-12-08 16:58:54 -0500721 file_key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
Miao Xief51a4a12013-06-19 10:36:09 +0800722 file_key.offset = bytenr;
Chris Masond20f7042008-12-08 16:58:54 -0500723 btrfs_set_key_type(&file_key, BTRFS_EXTENT_CSUM_KEY);
Chris Masona429e512007-04-18 16:15:28 -0400724
Miao Xief51a4a12013-06-19 10:36:09 +0800725 item = btrfs_lookup_csum(trans, root, path, bytenr, 1);
Chris Masonff79f812007-10-15 16:22:25 -0400726 if (!IS_ERR(item)) {
Chris Mason639cb582008-08-28 06:15:25 -0400727 ret = 0;
Miao Xief51a4a12013-06-19 10:36:09 +0800728 leaf = path->nodes[0];
729 item_end = btrfs_item_ptr(leaf, path->slots[0],
730 struct btrfs_csum_item);
731 item_end = (struct btrfs_csum_item *)((char *)item_end +
732 btrfs_item_size_nr(leaf, path->slots[0]));
Chris Masona429e512007-04-18 16:15:28 -0400733 goto found;
Chris Masonff79f812007-10-15 16:22:25 -0400734 }
Chris Masona429e512007-04-18 16:15:28 -0400735 ret = PTR_ERR(item);
Yan, Zheng4a500fd2010-05-16 10:49:59 -0400736 if (ret != -EFBIG && ret != -ENOENT)
737 goto fail_unlock;
738
Chris Masona429e512007-04-18 16:15:28 -0400739 if (ret == -EFBIG) {
740 u32 item_size;
741 /* we found one, but it isn't big enough yet */
Chris Mason5f39d392007-10-15 16:14:19 -0400742 leaf = path->nodes[0];
743 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
Josef Bacik607d4322008-12-02 07:17:45 -0500744 if ((item_size / csum_size) >=
745 MAX_CSUM_ITEMS(root, csum_size)) {
Chris Masona429e512007-04-18 16:15:28 -0400746 /* already at max size, make a new one */
747 goto insert;
748 }
749 } else {
Chris Masonf578d4b2007-10-25 15:42:56 -0400750 int slot = path->slots[0] + 1;
Chris Masona429e512007-04-18 16:15:28 -0400751 /* we didn't find a csum item, insert one */
Chris Masonf578d4b2007-10-25 15:42:56 -0400752 nritems = btrfs_header_nritems(path->nodes[0]);
Filipe Manana35045bf2014-04-09 14:38:34 +0100753 if (!nritems || (path->slots[0] >= nritems - 1)) {
Chris Masonf578d4b2007-10-25 15:42:56 -0400754 ret = btrfs_next_leaf(root, path);
Yanb56baf52007-10-29 12:01:05 -0400755 if (ret == 1)
Chris Masonf578d4b2007-10-25 15:42:56 -0400756 found_next = 1;
Yanb56baf52007-10-29 12:01:05 -0400757 if (ret != 0)
Chris Masonf578d4b2007-10-25 15:42:56 -0400758 goto insert;
Yanb56baf52007-10-29 12:01:05 -0400759 slot = 0;
Chris Masonf578d4b2007-10-25 15:42:56 -0400760 }
761 btrfs_item_key_to_cpu(path->nodes[0], &found_key, slot);
Chris Masond20f7042008-12-08 16:58:54 -0500762 if (found_key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
763 found_key.type != BTRFS_EXTENT_CSUM_KEY) {
Chris Masonf578d4b2007-10-25 15:42:56 -0400764 found_next = 1;
765 goto insert;
766 }
767 next_offset = found_key.offset;
768 found_next = 1;
Chris Masona429e512007-04-18 16:15:28 -0400769 goto insert;
770 }
771
772 /*
773 * at this point, we know the tree has an item, but it isn't big
774 * enough yet to put our csum in. Grow it
775 */
David Sterbab3b4aa72011-04-21 01:20:15 +0200776 btrfs_release_path(path);
Chris Mason6567e832007-04-16 09:22:45 -0400777 ret = btrfs_search_slot(trans, root, &file_key, path,
Josef Bacik607d4322008-12-02 07:17:45 -0500778 csum_size, 1);
Chris Mason6567e832007-04-16 09:22:45 -0400779 if (ret < 0)
Chris Mason53863232008-08-15 15:34:18 -0400780 goto fail_unlock;
Chris Mason459931e2008-12-10 09:10:46 -0500781
782 if (ret > 0) {
783 if (path->slots[0] == 0)
784 goto insert;
785 path->slots[0]--;
Chris Mason6567e832007-04-16 09:22:45 -0400786 }
Chris Mason459931e2008-12-10 09:10:46 -0500787
Chris Mason5f39d392007-10-15 16:14:19 -0400788 leaf = path->nodes[0];
789 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masond20f7042008-12-08 16:58:54 -0500790 csum_offset = (bytenr - found_key.offset) >>
Chris Mason6567e832007-04-16 09:22:45 -0400791 root->fs_info->sb->s_blocksize_bits;
Chris Mason459931e2008-12-10 09:10:46 -0500792
Chris Masond20f7042008-12-08 16:58:54 -0500793 if (btrfs_key_type(&found_key) != BTRFS_EXTENT_CSUM_KEY ||
794 found_key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
Josef Bacik607d4322008-12-02 07:17:45 -0500795 csum_offset >= MAX_CSUM_ITEMS(root, csum_size)) {
Chris Mason6567e832007-04-16 09:22:45 -0400796 goto insert;
797 }
Chris Mason459931e2008-12-10 09:10:46 -0500798
Liu Bo2f697dc2013-02-04 13:12:18 +0000799 if (csum_offset == btrfs_item_size_nr(leaf, path->slots[0]) /
Josef Bacik607d4322008-12-02 07:17:45 -0500800 csum_size) {
Liu Bo2f697dc2013-02-04 13:12:18 +0000801 int extend_nr;
802 u64 tmp;
803 u32 diff;
804 u32 free_space;
Chris Mason459931e2008-12-10 09:10:46 -0500805
Liu Bo2f697dc2013-02-04 13:12:18 +0000806 if (btrfs_leaf_free_space(root, leaf) <
807 sizeof(struct btrfs_item) + csum_size * 2)
808 goto insert;
809
810 free_space = btrfs_leaf_free_space(root, leaf) -
811 sizeof(struct btrfs_item) - csum_size;
Miao Xief51a4a12013-06-19 10:36:09 +0800812 tmp = sums->len - total_bytes;
Liu Bo2f697dc2013-02-04 13:12:18 +0000813 tmp >>= root->fs_info->sb->s_blocksize_bits;
814 WARN_ON(tmp < 1);
815
816 extend_nr = max_t(int, 1, (int)tmp);
817 diff = (csum_offset + extend_nr) * csum_size;
818 diff = min(diff, MAX_CSUM_ITEMS(root, csum_size) * csum_size);
Chris Mason459931e2008-12-10 09:10:46 -0500819
Chris Mason5f39d392007-10-15 16:14:19 -0400820 diff = diff - btrfs_item_size_nr(leaf, path->slots[0]);
Liu Bo2f697dc2013-02-04 13:12:18 +0000821 diff = min(free_space, diff);
822 diff /= csum_size;
823 diff *= csum_size;
Chris Mason459931e2008-12-10 09:10:46 -0500824
Tsutomu Itoh4b90c682013-04-16 05:18:49 +0000825 btrfs_extend_item(root, path, diff);
Miao Xief51a4a12013-06-19 10:36:09 +0800826 ret = 0;
Chris Mason6567e832007-04-16 09:22:45 -0400827 goto csum;
828 }
829
830insert:
David Sterbab3b4aa72011-04-21 01:20:15 +0200831 btrfs_release_path(path);
Chris Mason6567e832007-04-16 09:22:45 -0400832 csum_offset = 0;
Chris Masonf578d4b2007-10-25 15:42:56 -0400833 if (found_next) {
Liu Bo2f697dc2013-02-04 13:12:18 +0000834 u64 tmp;
Chris Masond20f7042008-12-08 16:58:54 -0500835
Miao Xief51a4a12013-06-19 10:36:09 +0800836 tmp = sums->len - total_bytes;
Chris Masonf578d4b2007-10-25 15:42:56 -0400837 tmp >>= root->fs_info->sb->s_blocksize_bits;
Liu Bo2f697dc2013-02-04 13:12:18 +0000838 tmp = min(tmp, (next_offset - file_key.offset) >>
839 root->fs_info->sb->s_blocksize_bits);
840
Chris Masonf578d4b2007-10-25 15:42:56 -0400841 tmp = max((u64)1, tmp);
Josef Bacik607d4322008-12-02 07:17:45 -0500842 tmp = min(tmp, (u64)MAX_CSUM_ITEMS(root, csum_size));
843 ins_size = csum_size * tmp;
Chris Masonf578d4b2007-10-25 15:42:56 -0400844 } else {
Josef Bacik607d4322008-12-02 07:17:45 -0500845 ins_size = csum_size;
Chris Masonf578d4b2007-10-25 15:42:56 -0400846 }
Chris Masonb9473432009-03-13 11:00:37 -0400847 path->leave_spinning = 1;
Chris Mason5caf2a02007-04-02 11:20:42 -0400848 ret = btrfs_insert_empty_item(trans, root, path, &file_key,
Chris Masonf578d4b2007-10-25 15:42:56 -0400849 ins_size);
Chris Masonb9473432009-03-13 11:00:37 -0400850 path->leave_spinning = 0;
Chris Mason54aa1f42007-06-22 14:16:25 -0400851 if (ret < 0)
Chris Mason53863232008-08-15 15:34:18 -0400852 goto fail_unlock;
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +0530853 if (WARN_ON(ret != 0))
Chris Mason53863232008-08-15 15:34:18 -0400854 goto fail_unlock;
Chris Mason5f39d392007-10-15 16:14:19 -0400855 leaf = path->nodes[0];
Miao Xief51a4a12013-06-19 10:36:09 +0800856csum:
Chris Mason5f39d392007-10-15 16:14:19 -0400857 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_csum_item);
Miao Xief51a4a12013-06-19 10:36:09 +0800858 item_end = (struct btrfs_csum_item *)((unsigned char *)item +
859 btrfs_item_size_nr(leaf, path->slots[0]));
Chris Mason509659c2007-05-10 12:36:17 -0400860 item = (struct btrfs_csum_item *)((unsigned char *)item +
Josef Bacik607d4322008-12-02 07:17:45 -0500861 csum_offset * csum_size);
Chris Masonb18c6682007-04-17 13:26:50 -0400862found:
Miao Xief51a4a12013-06-19 10:36:09 +0800863 ins_size = (u32)(sums->len - total_bytes) >>
864 root->fs_info->sb->s_blocksize_bits;
865 ins_size *= csum_size;
866 ins_size = min_t(u32, (unsigned long)item_end - (unsigned long)item,
867 ins_size);
868 write_extent_buffer(leaf, sums->sums + index, (unsigned long)item,
869 ins_size);
Chris Masonaadfeb62008-01-29 09:10:27 -0500870
Miao Xief51a4a12013-06-19 10:36:09 +0800871 ins_size /= csum_size;
872 total_bytes += ins_size * root->sectorsize;
873 index += ins_size;
Chris Masona6591712011-07-19 12:04:14 -0400874
Chris Mason5caf2a02007-04-02 11:20:42 -0400875 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400876 if (total_bytes < sums->len) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200877 btrfs_release_path(path);
Chris Masonb9473432009-03-13 11:00:37 -0400878 cond_resched();
Chris Mason065631f2008-02-20 12:07:25 -0500879 goto again;
880 }
Chris Mason53863232008-08-15 15:34:18 -0400881out:
Chris Mason5caf2a02007-04-02 11:20:42 -0400882 btrfs_free_path(path);
Chris Masonf254e522007-03-29 15:15:27 -0400883 return ret;
Chris Mason53863232008-08-15 15:34:18 -0400884
885fail_unlock:
Chris Mason53863232008-08-15 15:34:18 -0400886 goto out;
Chris Masonf254e522007-03-29 15:15:27 -0400887}