blob: 4f53159bdb9d4fd9d4421cab7399abe562467bc8 [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
185 nblocks = bio->bi_size >> inode->i_sb->s_blocksize_bits;
186 if (!dst) {
187 if (nblocks * csum_size > BTRFS_BIO_INLINE_CSUM_SIZE) {
188 btrfs_bio->csum_allocated = kmalloc(nblocks * csum_size,
189 GFP_NOFS);
190 if (!btrfs_bio->csum_allocated) {
191 btrfs_free_path(path);
192 return -ENOMEM;
193 }
194 btrfs_bio->csum = btrfs_bio->csum_allocated;
195 btrfs_bio->end_io = btrfs_io_bio_endio_readpage;
196 } else {
197 btrfs_bio->csum = btrfs_bio->csum_inline;
198 }
199 csum = btrfs_bio->csum;
200 } else {
201 csum = (u8 *)dst;
202 }
203
Chris Mason4d1b5fb2008-08-20 09:44:52 -0400204 if (bio->bi_size > PAGE_CACHE_SIZE * 8)
205 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
Chris Masond20f7042008-12-08 16:58:54 -0500220 disk_bytenr = (u64)bio->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 {
Chris Masond3977122009-01-05 21:25:51 -0500249 printk(KERN_INFO "btrfs no csum found "
Li Zefan33345d012011-04-20 10:31:50 +0800250 "for inode %llu start %llu\n",
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;
Miao Xiee4100d92013-04-05 07:20:56 +0000284 while (count--) {
285 disk_bytenr += bvec->bv_len;
286 offset += bvec->bv_len;
287 bio_index++;
288 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{
Miao Xiefacc8a222013-07-25 19:22:34 +0800305 int len = (bio->bi_sector << 9) - dip->disk_bytenr;
306 u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy);
307 int ret;
308
309 len >>= inode->i_sb->s_blocksize_bits;
310 len *= csum_size;
311
312 ret = __btrfs_lookup_bio_sums(root, inode, bio, offset,
313 (u32 *)(dip->csum + len), 1);
314 return ret;
Josef 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
332 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -0700333 if (!path)
334 return -ENOMEM;
Yan Zheng17d217f2008-12-12 10:03:38 -0500335
Arne Jansena2de7332011-03-08 14:14:00 +0100336 if (search_commit) {
337 path->skip_locking = 1;
338 path->reada = 2;
339 path->search_commit_root = 1;
340 }
341
Yan Zheng17d217f2008-12-12 10:03:38 -0500342 key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
343 key.offset = start;
344 key.type = BTRFS_EXTENT_CSUM_KEY;
345
Yan Zheng07d400a2009-01-06 11:42:00 -0500346 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Yan Zheng17d217f2008-12-12 10:03:38 -0500347 if (ret < 0)
348 goto fail;
349 if (ret > 0 && path->slots[0] > 0) {
350 leaf = path->nodes[0];
351 btrfs_item_key_to_cpu(leaf, &key, path->slots[0] - 1);
352 if (key.objectid == BTRFS_EXTENT_CSUM_OBJECTID &&
353 key.type == BTRFS_EXTENT_CSUM_KEY) {
354 offset = (start - key.offset) >>
355 root->fs_info->sb->s_blocksize_bits;
356 if (offset * csum_size <
357 btrfs_item_size_nr(leaf, path->slots[0] - 1))
358 path->slots[0]--;
359 }
360 }
361
362 while (start <= end) {
363 leaf = path->nodes[0];
364 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
Yan Zheng07d400a2009-01-06 11:42:00 -0500365 ret = btrfs_next_leaf(root, path);
Yan Zheng17d217f2008-12-12 10:03:38 -0500366 if (ret < 0)
367 goto fail;
368 if (ret > 0)
369 break;
370 leaf = path->nodes[0];
371 }
372
373 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
374 if (key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
Zhi Yong Wu628c8282013-03-18 09:18:09 +0000375 key.type != BTRFS_EXTENT_CSUM_KEY ||
376 key.offset > end)
Yan Zheng17d217f2008-12-12 10:03:38 -0500377 break;
378
379 if (key.offset > start)
380 start = key.offset;
381
382 size = btrfs_item_size_nr(leaf, path->slots[0]);
383 csum_end = key.offset + (size / csum_size) * root->sectorsize;
Yan Zheng87b29b22008-12-17 10:21:48 -0500384 if (csum_end <= start) {
385 path->slots[0]++;
386 continue;
387 }
Yan Zheng17d217f2008-12-12 10:03:38 -0500388
Yan Zheng07d400a2009-01-06 11:42:00 -0500389 csum_end = min(csum_end, end + 1);
Yan Zheng17d217f2008-12-12 10:03:38 -0500390 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
391 struct btrfs_csum_item);
Yan Zheng07d400a2009-01-06 11:42:00 -0500392 while (start < csum_end) {
393 size = min_t(size_t, csum_end - start,
Miao Xief51a4a12013-06-19 10:36:09 +0800394 MAX_ORDERED_SUM_BYTES(root));
Yan Zheng07d400a2009-01-06 11:42:00 -0500395 sums = kzalloc(btrfs_ordered_sum_size(root, size),
Miao Xief51a4a12013-06-19 10:36:09 +0800396 GFP_NOFS);
Mark Fasheh0678b612011-08-05 15:46:16 -0700397 if (!sums) {
398 ret = -ENOMEM;
399 goto fail;
400 }
Yan Zheng17d217f2008-12-12 10:03:38 -0500401
Yan Zheng07d400a2009-01-06 11:42:00 -0500402 sums->bytenr = start;
Miao Xief51a4a12013-06-19 10:36:09 +0800403 sums->len = (int)size;
Yan Zheng07d400a2009-01-06 11:42:00 -0500404
405 offset = (start - key.offset) >>
406 root->fs_info->sb->s_blocksize_bits;
407 offset *= csum_size;
Miao Xief51a4a12013-06-19 10:36:09 +0800408 size >>= root->fs_info->sb->s_blocksize_bits;
Yan Zheng07d400a2009-01-06 11:42:00 -0500409
Miao Xief51a4a12013-06-19 10:36:09 +0800410 read_extent_buffer(path->nodes[0],
411 sums->sums,
412 ((unsigned long)item) + offset,
413 csum_size * size);
Yan Zheng07d400a2009-01-06 11:42:00 -0500414
Miao Xief51a4a12013-06-19 10:36:09 +0800415 start += root->sectorsize * size;
Mark Fasheh0678b612011-08-05 15:46:16 -0700416 list_add_tail(&sums->list, &tmplist);
Yan Zheng17d217f2008-12-12 10:03:38 -0500417 }
Yan Zheng17d217f2008-12-12 10:03:38 -0500418 path->slots[0]++;
419 }
420 ret = 0;
421fail:
Mark Fasheh0678b612011-08-05 15:46:16 -0700422 while (ret < 0 && !list_empty(&tmplist)) {
423 sums = list_entry(&tmplist, struct btrfs_ordered_sum, list);
424 list_del(&sums->list);
425 kfree(sums);
426 }
427 list_splice_tail(&tmplist, list);
428
Yan Zheng17d217f2008-12-12 10:03:38 -0500429 btrfs_free_path(path);
430 return ret;
431}
432
Chris Mason3edf7d32008-07-18 06:17:13 -0400433int btrfs_csum_one_bio(struct btrfs_root *root, struct inode *inode,
Chris Masond20f7042008-12-08 16:58:54 -0500434 struct bio *bio, u64 file_start, int contig)
Chris Masone0156402008-04-16 11:15:20 -0400435{
Chris Masone6dcd2d2008-07-17 12:53:50 -0400436 struct btrfs_ordered_sum *sums;
Chris Mason3edf7d32008-07-18 06:17:13 -0400437 struct btrfs_ordered_extent *ordered;
Chris Masone0156402008-04-16 11:15:20 -0400438 char *data;
439 struct bio_vec *bvec = bio->bi_io_vec;
440 int bio_index = 0;
Miao Xief51a4a12013-06-19 10:36:09 +0800441 int index;
Chris Mason3edf7d32008-07-18 06:17:13 -0400442 unsigned long total_bytes = 0;
443 unsigned long this_sum_bytes = 0;
444 u64 offset;
Chris Masone0156402008-04-16 11:15:20 -0400445
Chris Masone6dcd2d2008-07-17 12:53:50 -0400446 WARN_ON(bio->bi_vcnt <= 0);
447 sums = kzalloc(btrfs_ordered_sum_size(root, bio->bi_size), GFP_NOFS);
Chris Masone0156402008-04-16 11:15:20 -0400448 if (!sums)
449 return -ENOMEM;
Chris Mason3edf7d32008-07-18 06:17:13 -0400450
Chris Masone6dcd2d2008-07-17 12:53:50 -0400451 sums->len = bio->bi_size;
452 INIT_LIST_HEAD(&sums->list);
Chris Masond20f7042008-12-08 16:58:54 -0500453
454 if (contig)
455 offset = file_start;
456 else
457 offset = page_offset(bvec->bv_page) + bvec->bv_offset;
458
459 ordered = btrfs_lookup_ordered_extent(inode, offset);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100460 BUG_ON(!ordered); /* Logic error */
Miao Xief51a4a12013-06-19 10:36:09 +0800461 sums->bytenr = (u64)bio->bi_sector << 9;
462 index = 0;
Chris Masone0156402008-04-16 11:15:20 -0400463
Chris Masond3977122009-01-05 21:25:51 -0500464 while (bio_index < bio->bi_vcnt) {
Chris Masond20f7042008-12-08 16:58:54 -0500465 if (!contig)
466 offset = page_offset(bvec->bv_page) + bvec->bv_offset;
467
Josef Bacike58dd742013-01-22 15:43:09 -0500468 if (offset >= ordered->file_offset + ordered->len ||
469 offset < ordered->file_offset) {
Chris Mason3edf7d32008-07-18 06:17:13 -0400470 unsigned long bytes_left;
471 sums->len = this_sum_bytes;
472 this_sum_bytes = 0;
473 btrfs_add_ordered_sum(inode, ordered, sums);
474 btrfs_put_ordered_extent(ordered);
475
476 bytes_left = bio->bi_size - total_bytes;
477
478 sums = kzalloc(btrfs_ordered_sum_size(root, bytes_left),
479 GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100480 BUG_ON(!sums); /* -ENOMEM */
Chris Mason3edf7d32008-07-18 06:17:13 -0400481 sums->len = bytes_left;
Chris Masond20f7042008-12-08 16:58:54 -0500482 ordered = btrfs_lookup_ordered_extent(inode, offset);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100483 BUG_ON(!ordered); /* Logic error */
Miao Xief51a4a12013-06-19 10:36:09 +0800484 sums->bytenr = ((u64)bio->bi_sector << 9) +
485 total_bytes;
486 index = 0;
Chris Mason3edf7d32008-07-18 06:17:13 -0400487 }
488
Cong Wang7ac687d2011-11-25 23:14:28 +0800489 data = kmap_atomic(bvec->bv_page);
Miao Xief51a4a12013-06-19 10:36:09 +0800490 sums->sums[index] = ~(u32)0;
491 sums->sums[index] = btrfs_csum_data(data + bvec->bv_offset,
492 sums->sums[index],
493 bvec->bv_len);
Cong Wang7ac687d2011-11-25 23:14:28 +0800494 kunmap_atomic(data);
Miao Xief51a4a12013-06-19 10:36:09 +0800495 btrfs_csum_final(sums->sums[index],
496 (char *)(sums->sums + index));
Chris Masoned98b562008-07-22 23:06:42 -0400497
Chris Masone0156402008-04-16 11:15:20 -0400498 bio_index++;
Miao Xief51a4a12013-06-19 10:36:09 +0800499 index++;
Chris Mason3edf7d32008-07-18 06:17:13 -0400500 total_bytes += bvec->bv_len;
501 this_sum_bytes += bvec->bv_len;
Chris Masond20f7042008-12-08 16:58:54 -0500502 offset += bvec->bv_len;
Chris Masone0156402008-04-16 11:15:20 -0400503 bvec++;
504 }
Chris Masoned98b562008-07-22 23:06:42 -0400505 this_sum_bytes = 0;
Chris Mason3edf7d32008-07-18 06:17:13 -0400506 btrfs_add_ordered_sum(inode, ordered, sums);
507 btrfs_put_ordered_extent(ordered);
Chris Masone0156402008-04-16 11:15:20 -0400508 return 0;
509}
510
Chris Mason459931e2008-12-10 09:10:46 -0500511/*
512 * helper function for csum removal, this expects the
513 * key to describe the csum pointed to by the path, and it expects
514 * the csum to overlap the range [bytenr, len]
515 *
516 * The csum should not be entirely contained in the range and the
517 * range should not be entirely contained in the csum.
518 *
519 * This calls btrfs_truncate_item with the correct args based on the
520 * overlap, and fixes up the key as required.
521 */
Tsutomu Itohafe5fea2013-04-16 05:18:22 +0000522static noinline void truncate_one_csum(struct btrfs_root *root,
Jeff Mahoney143bede2012-03-01 14:56:26 +0100523 struct btrfs_path *path,
524 struct btrfs_key *key,
525 u64 bytenr, u64 len)
Chris Mason459931e2008-12-10 09:10:46 -0500526{
527 struct extent_buffer *leaf;
David Sterba6c417612011-04-13 15:41:04 +0200528 u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy);
Chris Mason459931e2008-12-10 09:10:46 -0500529 u64 csum_end;
530 u64 end_byte = bytenr + len;
531 u32 blocksize_bits = root->fs_info->sb->s_blocksize_bits;
Chris Mason459931e2008-12-10 09:10:46 -0500532
533 leaf = path->nodes[0];
534 csum_end = btrfs_item_size_nr(leaf, path->slots[0]) / csum_size;
535 csum_end <<= root->fs_info->sb->s_blocksize_bits;
536 csum_end += key->offset;
537
538 if (key->offset < bytenr && csum_end <= end_byte) {
539 /*
540 * [ bytenr - len ]
541 * [ ]
542 * [csum ]
543 * A simple truncate off the end of the item
544 */
545 u32 new_size = (bytenr - key->offset) >> blocksize_bits;
546 new_size *= csum_size;
Tsutomu Itohafe5fea2013-04-16 05:18:22 +0000547 btrfs_truncate_item(root, path, new_size, 1);
Chris Mason459931e2008-12-10 09:10:46 -0500548 } else if (key->offset >= bytenr && csum_end > end_byte &&
549 end_byte > key->offset) {
550 /*
551 * [ bytenr - len ]
552 * [ ]
553 * [csum ]
554 * we need to truncate from the beginning of the csum
555 */
556 u32 new_size = (csum_end - end_byte) >> blocksize_bits;
557 new_size *= csum_size;
558
Tsutomu Itohafe5fea2013-04-16 05:18:22 +0000559 btrfs_truncate_item(root, path, new_size, 0);
Chris Mason459931e2008-12-10 09:10:46 -0500560
561 key->offset = end_byte;
Tsutomu Itohafe5fea2013-04-16 05:18:22 +0000562 btrfs_set_item_key_safe(root, path, key);
Chris Mason459931e2008-12-10 09:10:46 -0500563 } else {
564 BUG();
565 }
Chris Mason459931e2008-12-10 09:10:46 -0500566}
567
568/*
569 * deletes the csum items from the csum tree for a given
570 * range of bytes.
571 */
572int btrfs_del_csums(struct btrfs_trans_handle *trans,
573 struct btrfs_root *root, u64 bytenr, u64 len)
574{
575 struct btrfs_path *path;
576 struct btrfs_key key;
577 u64 end_byte = bytenr + len;
578 u64 csum_end;
579 struct extent_buffer *leaf;
580 int ret;
David Sterba6c417612011-04-13 15:41:04 +0200581 u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy);
Chris Mason459931e2008-12-10 09:10:46 -0500582 int blocksize_bits = root->fs_info->sb->s_blocksize_bits;
583
584 root = root->fs_info->csum_root;
585
586 path = btrfs_alloc_path();
liubo2a29edc2011-01-26 06:22:08 +0000587 if (!path)
588 return -ENOMEM;
Chris Mason459931e2008-12-10 09:10:46 -0500589
Chris Masond3977122009-01-05 21:25:51 -0500590 while (1) {
Chris Mason459931e2008-12-10 09:10:46 -0500591 key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
592 key.offset = end_byte - 1;
593 key.type = BTRFS_EXTENT_CSUM_KEY;
594
Chris Masonb9473432009-03-13 11:00:37 -0400595 path->leave_spinning = 1;
Chris Mason459931e2008-12-10 09:10:46 -0500596 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
597 if (ret > 0) {
598 if (path->slots[0] == 0)
Tsutomu Itoh65a246c2011-05-19 04:37:44 +0000599 break;
Chris Mason459931e2008-12-10 09:10:46 -0500600 path->slots[0]--;
Josef Bacikad0397a2011-01-28 18:44:44 +0000601 } else if (ret < 0) {
Tsutomu Itoh65a246c2011-05-19 04:37:44 +0000602 break;
Chris Mason459931e2008-12-10 09:10:46 -0500603 }
Josef Bacikad0397a2011-01-28 18:44:44 +0000604
Chris Mason459931e2008-12-10 09:10:46 -0500605 leaf = path->nodes[0];
606 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
607
608 if (key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
609 key.type != BTRFS_EXTENT_CSUM_KEY) {
610 break;
611 }
612
613 if (key.offset >= end_byte)
614 break;
615
616 csum_end = btrfs_item_size_nr(leaf, path->slots[0]) / csum_size;
617 csum_end <<= blocksize_bits;
618 csum_end += key.offset;
619
620 /* this csum ends before we start, we're done */
621 if (csum_end <= bytenr)
622 break;
623
624 /* delete the entire item, it is inside our range */
625 if (key.offset >= bytenr && csum_end <= end_byte) {
626 ret = btrfs_del_item(trans, root, path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +0000627 if (ret)
628 goto out;
Chris Masondcbdd4d2008-12-16 13:51:01 -0500629 if (key.offset == bytenr)
630 break;
Chris Mason459931e2008-12-10 09:10:46 -0500631 } else if (key.offset < bytenr && csum_end > end_byte) {
632 unsigned long offset;
633 unsigned long shift_len;
634 unsigned long item_offset;
635 /*
636 * [ bytenr - len ]
637 * [csum ]
638 *
639 * Our bytes are in the middle of the csum,
640 * we need to split this item and insert a new one.
641 *
642 * But we can't drop the path because the
643 * csum could change, get removed, extended etc.
644 *
645 * The trick here is the max size of a csum item leaves
646 * enough room in the tree block for a single
647 * item header. So, we split the item in place,
648 * adding a new header pointing to the existing
649 * bytes. Then we loop around again and we have
650 * a nicely formed csum item that we can neatly
651 * truncate.
652 */
653 offset = (bytenr - key.offset) >> blocksize_bits;
654 offset *= csum_size;
655
656 shift_len = (len >> blocksize_bits) * csum_size;
657
658 item_offset = btrfs_item_ptr_offset(leaf,
659 path->slots[0]);
660
661 memset_extent_buffer(leaf, 0, item_offset + offset,
662 shift_len);
663 key.offset = bytenr;
664
665 /*
666 * btrfs_split_item returns -EAGAIN when the
667 * item changed size or key
668 */
669 ret = btrfs_split_item(trans, root, path, &key, offset);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100670 if (ret && ret != -EAGAIN) {
671 btrfs_abort_transaction(trans, root, ret);
672 goto out;
673 }
Chris Mason459931e2008-12-10 09:10:46 -0500674
675 key.offset = end_byte - 1;
676 } else {
Tsutomu Itohafe5fea2013-04-16 05:18:22 +0000677 truncate_one_csum(root, path, &key, bytenr, len);
Chris Masondcbdd4d2008-12-16 13:51:01 -0500678 if (key.offset < bytenr)
679 break;
Chris Mason459931e2008-12-10 09:10:46 -0500680 }
David Sterbab3b4aa72011-04-21 01:20:15 +0200681 btrfs_release_path(path);
Chris Mason459931e2008-12-10 09:10:46 -0500682 }
Tsutomu Itoh65a246c2011-05-19 04:37:44 +0000683 ret = 0;
Chris Mason459931e2008-12-10 09:10:46 -0500684out:
685 btrfs_free_path(path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +0000686 return ret;
Chris Mason459931e2008-12-10 09:10:46 -0500687}
688
Chris Mason065631f2008-02-20 12:07:25 -0500689int btrfs_csum_file_blocks(struct btrfs_trans_handle *trans,
Chris Masond20f7042008-12-08 16:58:54 -0500690 struct btrfs_root *root,
Chris Masone6dcd2d2008-07-17 12:53:50 -0400691 struct btrfs_ordered_sum *sums)
Chris Masonf254e522007-03-29 15:15:27 -0400692{
Chris Masonf254e522007-03-29 15:15:27 -0400693 struct btrfs_key file_key;
Chris Mason6567e832007-04-16 09:22:45 -0400694 struct btrfs_key found_key;
Chris Mason5caf2a02007-04-02 11:20:42 -0400695 struct btrfs_path *path;
Chris Masonf254e522007-03-29 15:15:27 -0400696 struct btrfs_csum_item *item;
Chris Mason065631f2008-02-20 12:07:25 -0500697 struct btrfs_csum_item *item_end;
Chris Masonff79f812007-10-15 16:22:25 -0400698 struct extent_buffer *leaf = NULL;
Miao Xief51a4a12013-06-19 10:36:09 +0800699 u64 next_offset;
700 u64 total_bytes = 0;
Chris Mason6567e832007-04-16 09:22:45 -0400701 u64 csum_offset;
Miao Xief51a4a12013-06-19 10:36:09 +0800702 u64 bytenr;
Chris Masonf578d4b2007-10-25 15:42:56 -0400703 u32 nritems;
704 u32 ins_size;
Miao Xief51a4a12013-06-19 10:36:09 +0800705 int index = 0;
706 int found_next;
707 int ret;
David Sterba6c417612011-04-13 15:41:04 +0200708 u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy);
Chris Mason6e92f5e2008-02-20 12:07:25 -0500709
Chris Mason5caf2a02007-04-02 11:20:42 -0400710 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -0700711 if (!path)
712 return -ENOMEM;
Chris Mason065631f2008-02-20 12:07:25 -0500713again:
714 next_offset = (u64)-1;
715 found_next = 0;
Miao Xief51a4a12013-06-19 10:36:09 +0800716 bytenr = sums->bytenr + total_bytes;
Chris Masond20f7042008-12-08 16:58:54 -0500717 file_key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
Miao Xief51a4a12013-06-19 10:36:09 +0800718 file_key.offset = bytenr;
Chris Masond20f7042008-12-08 16:58:54 -0500719 btrfs_set_key_type(&file_key, BTRFS_EXTENT_CSUM_KEY);
Chris Masona429e512007-04-18 16:15:28 -0400720
Miao Xief51a4a12013-06-19 10:36:09 +0800721 item = btrfs_lookup_csum(trans, root, path, bytenr, 1);
Chris Masonff79f812007-10-15 16:22:25 -0400722 if (!IS_ERR(item)) {
Chris Mason639cb582008-08-28 06:15:25 -0400723 ret = 0;
Miao Xief51a4a12013-06-19 10:36:09 +0800724 leaf = path->nodes[0];
725 item_end = btrfs_item_ptr(leaf, path->slots[0],
726 struct btrfs_csum_item);
727 item_end = (struct btrfs_csum_item *)((char *)item_end +
728 btrfs_item_size_nr(leaf, path->slots[0]));
Chris Masona429e512007-04-18 16:15:28 -0400729 goto found;
Chris Masonff79f812007-10-15 16:22:25 -0400730 }
Chris Masona429e512007-04-18 16:15:28 -0400731 ret = PTR_ERR(item);
Yan, Zheng4a500fd2010-05-16 10:49:59 -0400732 if (ret != -EFBIG && ret != -ENOENT)
733 goto fail_unlock;
734
Chris Masona429e512007-04-18 16:15:28 -0400735 if (ret == -EFBIG) {
736 u32 item_size;
737 /* we found one, but it isn't big enough yet */
Chris Mason5f39d392007-10-15 16:14:19 -0400738 leaf = path->nodes[0];
739 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
Josef Bacik607d4322008-12-02 07:17:45 -0500740 if ((item_size / csum_size) >=
741 MAX_CSUM_ITEMS(root, csum_size)) {
Chris Masona429e512007-04-18 16:15:28 -0400742 /* already at max size, make a new one */
743 goto insert;
744 }
745 } else {
Chris Masonf578d4b2007-10-25 15:42:56 -0400746 int slot = path->slots[0] + 1;
Chris Masona429e512007-04-18 16:15:28 -0400747 /* we didn't find a csum item, insert one */
Chris Masonf578d4b2007-10-25 15:42:56 -0400748 nritems = btrfs_header_nritems(path->nodes[0]);
749 if (path->slots[0] >= nritems - 1) {
750 ret = btrfs_next_leaf(root, path);
Yanb56baf52007-10-29 12:01:05 -0400751 if (ret == 1)
Chris Masonf578d4b2007-10-25 15:42:56 -0400752 found_next = 1;
Yanb56baf52007-10-29 12:01:05 -0400753 if (ret != 0)
Chris Masonf578d4b2007-10-25 15:42:56 -0400754 goto insert;
Yanb56baf52007-10-29 12:01:05 -0400755 slot = 0;
Chris Masonf578d4b2007-10-25 15:42:56 -0400756 }
757 btrfs_item_key_to_cpu(path->nodes[0], &found_key, slot);
Chris Masond20f7042008-12-08 16:58:54 -0500758 if (found_key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
759 found_key.type != BTRFS_EXTENT_CSUM_KEY) {
Chris Masonf578d4b2007-10-25 15:42:56 -0400760 found_next = 1;
761 goto insert;
762 }
763 next_offset = found_key.offset;
764 found_next = 1;
Chris Masona429e512007-04-18 16:15:28 -0400765 goto insert;
766 }
767
768 /*
769 * at this point, we know the tree has an item, but it isn't big
770 * enough yet to put our csum in. Grow it
771 */
David Sterbab3b4aa72011-04-21 01:20:15 +0200772 btrfs_release_path(path);
Chris Mason6567e832007-04-16 09:22:45 -0400773 ret = btrfs_search_slot(trans, root, &file_key, path,
Josef Bacik607d4322008-12-02 07:17:45 -0500774 csum_size, 1);
Chris Mason6567e832007-04-16 09:22:45 -0400775 if (ret < 0)
Chris Mason53863232008-08-15 15:34:18 -0400776 goto fail_unlock;
Chris Mason459931e2008-12-10 09:10:46 -0500777
778 if (ret > 0) {
779 if (path->slots[0] == 0)
780 goto insert;
781 path->slots[0]--;
Chris Mason6567e832007-04-16 09:22:45 -0400782 }
Chris Mason459931e2008-12-10 09:10:46 -0500783
Chris Mason5f39d392007-10-15 16:14:19 -0400784 leaf = path->nodes[0];
785 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masond20f7042008-12-08 16:58:54 -0500786 csum_offset = (bytenr - found_key.offset) >>
Chris Mason6567e832007-04-16 09:22:45 -0400787 root->fs_info->sb->s_blocksize_bits;
Chris Mason459931e2008-12-10 09:10:46 -0500788
Chris Masond20f7042008-12-08 16:58:54 -0500789 if (btrfs_key_type(&found_key) != BTRFS_EXTENT_CSUM_KEY ||
790 found_key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
Josef Bacik607d4322008-12-02 07:17:45 -0500791 csum_offset >= MAX_CSUM_ITEMS(root, csum_size)) {
Chris Mason6567e832007-04-16 09:22:45 -0400792 goto insert;
793 }
Chris Mason459931e2008-12-10 09:10:46 -0500794
Liu Bo2f697dc2013-02-04 13:12:18 +0000795 if (csum_offset == btrfs_item_size_nr(leaf, path->slots[0]) /
Josef Bacik607d4322008-12-02 07:17:45 -0500796 csum_size) {
Liu Bo2f697dc2013-02-04 13:12:18 +0000797 int extend_nr;
798 u64 tmp;
799 u32 diff;
800 u32 free_space;
Chris Mason459931e2008-12-10 09:10:46 -0500801
Liu Bo2f697dc2013-02-04 13:12:18 +0000802 if (btrfs_leaf_free_space(root, leaf) <
803 sizeof(struct btrfs_item) + csum_size * 2)
804 goto insert;
805
806 free_space = btrfs_leaf_free_space(root, leaf) -
807 sizeof(struct btrfs_item) - csum_size;
Miao Xief51a4a12013-06-19 10:36:09 +0800808 tmp = sums->len - total_bytes;
Liu Bo2f697dc2013-02-04 13:12:18 +0000809 tmp >>= root->fs_info->sb->s_blocksize_bits;
810 WARN_ON(tmp < 1);
811
812 extend_nr = max_t(int, 1, (int)tmp);
813 diff = (csum_offset + extend_nr) * csum_size;
814 diff = min(diff, MAX_CSUM_ITEMS(root, csum_size) * csum_size);
Chris Mason459931e2008-12-10 09:10:46 -0500815
Chris Mason5f39d392007-10-15 16:14:19 -0400816 diff = diff - btrfs_item_size_nr(leaf, path->slots[0]);
Liu Bo2f697dc2013-02-04 13:12:18 +0000817 diff = min(free_space, diff);
818 diff /= csum_size;
819 diff *= csum_size;
Chris Mason459931e2008-12-10 09:10:46 -0500820
Tsutomu Itoh4b90c682013-04-16 05:18:49 +0000821 btrfs_extend_item(root, path, diff);
Miao Xief51a4a12013-06-19 10:36:09 +0800822 ret = 0;
Chris Mason6567e832007-04-16 09:22:45 -0400823 goto csum;
824 }
825
826insert:
David Sterbab3b4aa72011-04-21 01:20:15 +0200827 btrfs_release_path(path);
Chris Mason6567e832007-04-16 09:22:45 -0400828 csum_offset = 0;
Chris Masonf578d4b2007-10-25 15:42:56 -0400829 if (found_next) {
Liu Bo2f697dc2013-02-04 13:12:18 +0000830 u64 tmp;
Chris Masond20f7042008-12-08 16:58:54 -0500831
Miao Xief51a4a12013-06-19 10:36:09 +0800832 tmp = sums->len - total_bytes;
Chris Masonf578d4b2007-10-25 15:42:56 -0400833 tmp >>= root->fs_info->sb->s_blocksize_bits;
Liu Bo2f697dc2013-02-04 13:12:18 +0000834 tmp = min(tmp, (next_offset - file_key.offset) >>
835 root->fs_info->sb->s_blocksize_bits);
836
Chris Masonf578d4b2007-10-25 15:42:56 -0400837 tmp = max((u64)1, tmp);
Josef Bacik607d4322008-12-02 07:17:45 -0500838 tmp = min(tmp, (u64)MAX_CSUM_ITEMS(root, csum_size));
839 ins_size = csum_size * tmp;
Chris Masonf578d4b2007-10-25 15:42:56 -0400840 } else {
Josef Bacik607d4322008-12-02 07:17:45 -0500841 ins_size = csum_size;
Chris Masonf578d4b2007-10-25 15:42:56 -0400842 }
Chris Masonb9473432009-03-13 11:00:37 -0400843 path->leave_spinning = 1;
Chris Mason5caf2a02007-04-02 11:20:42 -0400844 ret = btrfs_insert_empty_item(trans, root, path, &file_key,
Chris Masonf578d4b2007-10-25 15:42:56 -0400845 ins_size);
Chris Masonb9473432009-03-13 11:00:37 -0400846 path->leave_spinning = 0;
Chris Mason54aa1f42007-06-22 14:16:25 -0400847 if (ret < 0)
Chris Mason53863232008-08-15 15:34:18 -0400848 goto fail_unlock;
Chris Masona429e512007-04-18 16:15:28 -0400849 if (ret != 0) {
Chris Masona429e512007-04-18 16:15:28 -0400850 WARN_ON(1);
Chris Mason53863232008-08-15 15:34:18 -0400851 goto fail_unlock;
Chris Masona429e512007-04-18 16:15:28 -0400852 }
Chris Mason5f39d392007-10-15 16:14:19 -0400853 leaf = path->nodes[0];
Miao Xief51a4a12013-06-19 10:36:09 +0800854csum:
Chris Mason5f39d392007-10-15 16:14:19 -0400855 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_csum_item);
Miao Xief51a4a12013-06-19 10:36:09 +0800856 item_end = (struct btrfs_csum_item *)((unsigned char *)item +
857 btrfs_item_size_nr(leaf, path->slots[0]));
Chris Mason509659c2007-05-10 12:36:17 -0400858 item = (struct btrfs_csum_item *)((unsigned char *)item +
Josef Bacik607d4322008-12-02 07:17:45 -0500859 csum_offset * csum_size);
Chris Masonb18c6682007-04-17 13:26:50 -0400860found:
Miao Xief51a4a12013-06-19 10:36:09 +0800861 ins_size = (u32)(sums->len - total_bytes) >>
862 root->fs_info->sb->s_blocksize_bits;
863 ins_size *= csum_size;
864 ins_size = min_t(u32, (unsigned long)item_end - (unsigned long)item,
865 ins_size);
866 write_extent_buffer(leaf, sums->sums + index, (unsigned long)item,
867 ins_size);
Chris Masonaadfeb62008-01-29 09:10:27 -0500868
Miao Xief51a4a12013-06-19 10:36:09 +0800869 ins_size /= csum_size;
870 total_bytes += ins_size * root->sectorsize;
871 index += ins_size;
Chris Masona6591712011-07-19 12:04:14 -0400872
Chris Mason5caf2a02007-04-02 11:20:42 -0400873 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400874 if (total_bytes < sums->len) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200875 btrfs_release_path(path);
Chris Masonb9473432009-03-13 11:00:37 -0400876 cond_resched();
Chris Mason065631f2008-02-20 12:07:25 -0500877 goto again;
878 }
Chris Mason53863232008-08-15 15:34:18 -0400879out:
Chris Mason5caf2a02007-04-02 11:20:42 -0400880 btrfs_free_path(path);
Chris Masonf254e522007-03-29 15:15:27 -0400881 return ret;
Chris Mason53863232008-08-15 15:34:18 -0400882
883fail_unlock:
Chris Mason53863232008-08-15 15:34:18 -0400884 goto out;
Chris Masonf254e522007-03-29 15:15:27 -0400885}