blob: a7bfc954180336348273f8e8f0f145b40581012e [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"
Chris Mason1de037a2007-05-29 15:17:08 -040026#include "print-tree.h"
Chris Mason1e1d2702007-03-15 19:03:33 -040027
Jan Schmidt995e01b2012-08-13 02:52:38 -060028#define __MAX_CSUM_ITEMS(r, size) ((unsigned long)(((BTRFS_LEAF_DATA_SIZE(r) - \
Josef Bacik607d4322008-12-02 07:17:45 -050029 sizeof(struct btrfs_item) * 2) / \
30 size) - 1))
Yan Zheng07d400a2009-01-06 11:42:00 -050031
Zach Brown221b8312012-09-20 14:33:00 -060032#define MAX_CSUM_ITEMS(r, size) (min_t(u32, __MAX_CSUM_ITEMS(r, size), \
33 PAGE_CACHE_SIZE))
Chris Mason7ca4be42012-01-31 20:19:02 -050034
Yan Zheng07d400a2009-01-06 11:42:00 -050035#define MAX_ORDERED_SUM_BYTES(r) ((PAGE_SIZE - \
36 sizeof(struct btrfs_ordered_sum)) / \
Miao Xief51a4a12013-06-19 10:36:09 +080037 sizeof(u32) * (r)->sectorsize)
Yan Zheng07d400a2009-01-06 11:42:00 -050038
Chris Masonb18c6682007-04-17 13:26:50 -040039int btrfs_insert_file_extent(struct btrfs_trans_handle *trans,
Sage Weilf2eb0a22008-05-02 14:43:14 -040040 struct btrfs_root *root,
41 u64 objectid, u64 pos,
42 u64 disk_offset, u64 disk_num_bytes,
Chris Masonc8b97812008-10-29 14:49:59 -040043 u64 num_bytes, u64 offset, u64 ram_bytes,
44 u8 compression, u8 encryption, u16 other_encoding)
Chris Mason9f5fae22007-03-20 14:38:32 -040045{
Chris Masondee26a92007-03-26 16:00:06 -040046 int ret = 0;
47 struct btrfs_file_extent_item *item;
48 struct btrfs_key file_key;
Chris Mason5caf2a02007-04-02 11:20:42 -040049 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -040050 struct extent_buffer *leaf;
Chris Masondee26a92007-03-26 16:00:06 -040051
Chris Mason5caf2a02007-04-02 11:20:42 -040052 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +000053 if (!path)
54 return -ENOMEM;
Chris Masondee26a92007-03-26 16:00:06 -040055 file_key.objectid = objectid;
Chris Masonb18c6682007-04-17 13:26:50 -040056 file_key.offset = pos;
Chris Masondee26a92007-03-26 16:00:06 -040057 btrfs_set_key_type(&file_key, BTRFS_EXTENT_DATA_KEY);
58
Chris Masonb9473432009-03-13 11:00:37 -040059 path->leave_spinning = 1;
Chris Mason5caf2a02007-04-02 11:20:42 -040060 ret = btrfs_insert_empty_item(trans, root, path, &file_key,
Chris Masondee26a92007-03-26 16:00:06 -040061 sizeof(*item));
Chris Mason54aa1f42007-06-22 14:16:25 -040062 if (ret < 0)
63 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +010064 BUG_ON(ret); /* Can't happen */
Chris Mason5f39d392007-10-15 16:14:19 -040065 leaf = path->nodes[0];
66 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masondee26a92007-03-26 16:00:06 -040067 struct btrfs_file_extent_item);
Sage Weilf2eb0a22008-05-02 14:43:14 -040068 btrfs_set_file_extent_disk_bytenr(leaf, item, disk_offset);
Chris Masondb945352007-10-15 16:15:53 -040069 btrfs_set_file_extent_disk_num_bytes(leaf, item, disk_num_bytes);
Sage Weilf2eb0a22008-05-02 14:43:14 -040070 btrfs_set_file_extent_offset(leaf, item, offset);
Chris Masondb945352007-10-15 16:15:53 -040071 btrfs_set_file_extent_num_bytes(leaf, item, num_bytes);
Chris Masonc8b97812008-10-29 14:49:59 -040072 btrfs_set_file_extent_ram_bytes(leaf, item, ram_bytes);
Chris Mason5f39d392007-10-15 16:14:19 -040073 btrfs_set_file_extent_generation(leaf, item, trans->transid);
74 btrfs_set_file_extent_type(leaf, item, BTRFS_FILE_EXTENT_REG);
Chris Masonc8b97812008-10-29 14:49:59 -040075 btrfs_set_file_extent_compression(leaf, item, compression);
76 btrfs_set_file_extent_encryption(leaf, item, encryption);
77 btrfs_set_file_extent_other_encoding(leaf, item, other_encoding);
78
Chris Mason5f39d392007-10-15 16:14:19 -040079 btrfs_mark_buffer_dirty(leaf);
Chris Mason54aa1f42007-06-22 14:16:25 -040080out:
Chris Mason5caf2a02007-04-02 11:20:42 -040081 btrfs_free_path(path);
Chris Mason54aa1f42007-06-22 14:16:25 -040082 return ret;
Chris Mason9f5fae22007-03-20 14:38:32 -040083}
Chris Masondee26a92007-03-26 16:00:06 -040084
Eric Sandeen48a3b632013-04-25 20:41:01 +000085static struct btrfs_csum_item *
86btrfs_lookup_csum(struct btrfs_trans_handle *trans,
87 struct btrfs_root *root,
88 struct btrfs_path *path,
89 u64 bytenr, int cow)
Chris Mason6567e832007-04-16 09:22:45 -040090{
91 int ret;
92 struct btrfs_key file_key;
93 struct btrfs_key found_key;
94 struct btrfs_csum_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -040095 struct extent_buffer *leaf;
Chris Mason6567e832007-04-16 09:22:45 -040096 u64 csum_offset = 0;
David Sterba6c417612011-04-13 15:41:04 +020097 u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy);
Chris Masona429e512007-04-18 16:15:28 -040098 int csums_in_item;
Chris Mason6567e832007-04-16 09:22:45 -040099
Chris Masond20f7042008-12-08 16:58:54 -0500100 file_key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
101 file_key.offset = bytenr;
102 btrfs_set_key_type(&file_key, BTRFS_EXTENT_CSUM_KEY);
Chris Masonb18c6682007-04-17 13:26:50 -0400103 ret = btrfs_search_slot(trans, root, &file_key, path, 0, cow);
Chris Mason6567e832007-04-16 09:22:45 -0400104 if (ret < 0)
105 goto fail;
Chris Mason5f39d392007-10-15 16:14:19 -0400106 leaf = path->nodes[0];
Chris Mason6567e832007-04-16 09:22:45 -0400107 if (ret > 0) {
108 ret = 1;
Chris Mason70b2bef2007-04-17 15:39:32 -0400109 if (path->slots[0] == 0)
Chris Mason6567e832007-04-16 09:22:45 -0400110 goto fail;
111 path->slots[0]--;
Chris Mason5f39d392007-10-15 16:14:19 -0400112 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masond20f7042008-12-08 16:58:54 -0500113 if (btrfs_key_type(&found_key) != BTRFS_EXTENT_CSUM_KEY)
Chris Mason6567e832007-04-16 09:22:45 -0400114 goto fail;
Chris Masond20f7042008-12-08 16:58:54 -0500115
116 csum_offset = (bytenr - found_key.offset) >>
Chris Mason6567e832007-04-16 09:22:45 -0400117 root->fs_info->sb->s_blocksize_bits;
Chris Mason5f39d392007-10-15 16:14:19 -0400118 csums_in_item = btrfs_item_size_nr(leaf, path->slots[0]);
Josef Bacik607d4322008-12-02 07:17:45 -0500119 csums_in_item /= csum_size;
Chris Masona429e512007-04-18 16:15:28 -0400120
Miao Xie82d130f2013-03-28 08:12:15 +0000121 if (csum_offset == csums_in_item) {
Chris Masona429e512007-04-18 16:15:28 -0400122 ret = -EFBIG;
Chris Mason6567e832007-04-16 09:22:45 -0400123 goto fail;
Miao Xie82d130f2013-03-28 08:12:15 +0000124 } else if (csum_offset > csums_in_item) {
125 goto fail;
Chris Mason6567e832007-04-16 09:22:45 -0400126 }
127 }
128 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_csum_item);
Chris Mason509659c2007-05-10 12:36:17 -0400129 item = (struct btrfs_csum_item *)((unsigned char *)item +
Josef Bacik607d4322008-12-02 07:17:45 -0500130 csum_offset * csum_size);
Chris Mason6567e832007-04-16 09:22:45 -0400131 return item;
132fail:
133 if (ret > 0)
Chris Masonb18c6682007-04-17 13:26:50 -0400134 ret = -ENOENT;
Chris Mason6567e832007-04-16 09:22:45 -0400135 return ERR_PTR(ret);
136}
137
Chris Masondee26a92007-03-26 16:00:06 -0400138int btrfs_lookup_file_extent(struct btrfs_trans_handle *trans,
139 struct btrfs_root *root,
140 struct btrfs_path *path, u64 objectid,
Chris Mason9773a782007-03-27 11:26:26 -0400141 u64 offset, int mod)
Chris Masondee26a92007-03-26 16:00:06 -0400142{
143 int ret;
144 struct btrfs_key file_key;
145 int ins_len = mod < 0 ? -1 : 0;
146 int cow = mod != 0;
147
148 file_key.objectid = objectid;
Chris Mason70b2bef2007-04-17 15:39:32 -0400149 file_key.offset = offset;
Chris Masondee26a92007-03-26 16:00:06 -0400150 btrfs_set_key_type(&file_key, BTRFS_EXTENT_DATA_KEY);
151 ret = btrfs_search_slot(trans, root, &file_key, path, ins_len, cow);
152 return ret;
153}
Chris Masonf254e522007-03-29 15:15:27 -0400154
Josef Bacik4b46fce2010-05-23 11:00:55 -0400155static int __btrfs_lookup_bio_sums(struct btrfs_root *root,
156 struct inode *inode, struct bio *bio,
157 u64 logical_offset, u32 *dst, int dio)
Chris Mason61b49442008-07-31 15:42:53 -0400158{
Miao Xiee4100d92013-04-05 07:20:56 +0000159 u32 sum[16];
160 int len;
Chris Mason61b49442008-07-31 15:42:53 -0400161 struct bio_vec *bvec = bio->bi_io_vec;
162 int bio_index = 0;
Josef Bacik4b46fce2010-05-23 11:00:55 -0400163 u64 offset = 0;
Chris Mason61b49442008-07-31 15:42:53 -0400164 u64 item_start_offset = 0;
165 u64 item_last_offset = 0;
Chris Masond20f7042008-12-08 16:58:54 -0500166 u64 disk_bytenr;
Chris Mason61b49442008-07-31 15:42:53 -0400167 u32 diff;
David Sterba6c417612011-04-13 15:41:04 +0200168 u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy);
Miao Xiee4100d92013-04-05 07:20:56 +0000169 int count;
Chris Mason61b49442008-07-31 15:42:53 -0400170 struct btrfs_path *path;
171 struct btrfs_csum_item *item = NULL;
172 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
173
174 path = btrfs_alloc_path();
Tsutomu Itohc2db1072011-03-01 06:48:31 +0000175 if (!path)
176 return -ENOMEM;
Chris Mason4d1b5fb2008-08-20 09:44:52 -0400177 if (bio->bi_size > PAGE_CACHE_SIZE * 8)
178 path->reada = 2;
Chris Mason61b49442008-07-31 15:42:53 -0400179
180 WARN_ON(bio->bi_vcnt <= 0);
181
Chris Mason2cf85722011-07-26 15:35:09 -0400182 /*
183 * the free space stuff is only read when it hasn't been
184 * updated in the current transaction. So, we can safely
185 * read from the commit root and sidestep a nasty deadlock
186 * between reading the free space cache and updating the csum tree.
187 */
Liu Bo83eea1f2012-07-10 05:28:39 -0600188 if (btrfs_is_free_space_inode(inode)) {
Chris Mason2cf85722011-07-26 15:35:09 -0400189 path->search_commit_root = 1;
Josef Bacikddf23b32011-09-11 10:52:24 -0400190 path->skip_locking = 1;
191 }
Chris Mason2cf85722011-07-26 15:35:09 -0400192
Chris Masond20f7042008-12-08 16:58:54 -0500193 disk_bytenr = (u64)bio->bi_sector << 9;
Josef Bacik4b46fce2010-05-23 11:00:55 -0400194 if (dio)
195 offset = logical_offset;
Chris Masond3977122009-01-05 21:25:51 -0500196 while (bio_index < bio->bi_vcnt) {
Miao Xiee4100d92013-04-05 07:20:56 +0000197 len = min_t(int, ARRAY_SIZE(sum), bio->bi_vcnt - bio_index);
Josef Bacik4b46fce2010-05-23 11:00:55 -0400198 if (!dio)
199 offset = page_offset(bvec->bv_page) + bvec->bv_offset;
Miao Xiee4100d92013-04-05 07:20:56 +0000200 count = btrfs_find_ordered_sum(inode, offset, disk_bytenr, sum,
201 len);
202 if (count)
Chris Mason61b49442008-07-31 15:42:53 -0400203 goto found;
204
Chris Masond20f7042008-12-08 16:58:54 -0500205 if (!item || disk_bytenr < item_start_offset ||
206 disk_bytenr >= item_last_offset) {
Chris Mason61b49442008-07-31 15:42:53 -0400207 struct btrfs_key found_key;
208 u32 item_size;
209
210 if (item)
David Sterbab3b4aa72011-04-21 01:20:15 +0200211 btrfs_release_path(path);
Chris Masond20f7042008-12-08 16:58:54 -0500212 item = btrfs_lookup_csum(NULL, root->fs_info->csum_root,
213 path, disk_bytenr, 0);
Chris Mason61b49442008-07-31 15:42:53 -0400214 if (IS_ERR(item)) {
Miao Xiee4100d92013-04-05 07:20:56 +0000215 count = 1;
216 sum[0] = 0;
Yan Zheng17d217f2008-12-12 10:03:38 -0500217 if (BTRFS_I(inode)->root->root_key.objectid ==
218 BTRFS_DATA_RELOC_TREE_OBJECTID) {
219 set_extent_bits(io_tree, offset,
220 offset + bvec->bv_len - 1,
221 EXTENT_NODATASUM, GFP_NOFS);
222 } else {
Chris Masond3977122009-01-05 21:25:51 -0500223 printk(KERN_INFO "btrfs no csum found "
Li Zefan33345d012011-04-20 10:31:50 +0800224 "for inode %llu start %llu\n",
225 (unsigned long long)
226 btrfs_ino(inode),
Yan Zheng17d217f2008-12-12 10:03:38 -0500227 (unsigned long long)offset);
228 }
Chris Mason6dab8152008-08-04 08:35:53 -0400229 item = NULL;
David Sterbab3b4aa72011-04-21 01:20:15 +0200230 btrfs_release_path(path);
Chris Mason61b49442008-07-31 15:42:53 -0400231 goto found;
232 }
233 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
234 path->slots[0]);
235
236 item_start_offset = found_key.offset;
237 item_size = btrfs_item_size_nr(path->nodes[0],
238 path->slots[0]);
239 item_last_offset = item_start_offset +
Josef Bacik607d4322008-12-02 07:17:45 -0500240 (item_size / csum_size) *
Chris Mason61b49442008-07-31 15:42:53 -0400241 root->sectorsize;
242 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
243 struct btrfs_csum_item);
244 }
245 /*
246 * this byte range must be able to fit inside
247 * a single leaf so it will also fit inside a u32
248 */
Chris Masond20f7042008-12-08 16:58:54 -0500249 diff = disk_bytenr - item_start_offset;
Chris Mason61b49442008-07-31 15:42:53 -0400250 diff = diff / root->sectorsize;
Josef Bacik607d4322008-12-02 07:17:45 -0500251 diff = diff * csum_size;
Miao Xiee4100d92013-04-05 07:20:56 +0000252 count = min_t(int, len, (item_last_offset - disk_bytenr) >>
253 inode->i_sb->s_blocksize_bits);
254 read_extent_buffer(path->nodes[0], sum,
Chris Mason3de9d6b2008-08-04 23:17:27 -0400255 ((unsigned long)item) + diff,
Miao Xiee4100d92013-04-05 07:20:56 +0000256 csum_size * count);
Chris Mason61b49442008-07-31 15:42:53 -0400257found:
Miao Xiee4100d92013-04-05 07:20:56 +0000258 if (dst) {
259 memcpy(dst, sum, count * csum_size);
260 dst += count;
261 } else {
262 if (dio)
263 extent_cache_csums_dio(io_tree, offset, sum,
264 count);
265 else
266 extent_cache_csums(io_tree, bio, bio_index, sum,
267 count);
268 }
269 while (count--) {
270 disk_bytenr += bvec->bv_len;
271 offset += bvec->bv_len;
272 bio_index++;
273 bvec++;
274 }
Chris Mason61b49442008-07-31 15:42:53 -0400275 }
276 btrfs_free_path(path);
277 return 0;
278}
279
Josef Bacik4b46fce2010-05-23 11:00:55 -0400280int btrfs_lookup_bio_sums(struct btrfs_root *root, struct inode *inode,
281 struct bio *bio, u32 *dst)
282{
283 return __btrfs_lookup_bio_sums(root, inode, bio, 0, dst, 0);
284}
285
286int btrfs_lookup_bio_sums_dio(struct btrfs_root *root, struct inode *inode,
Josef Bacikc3298612012-08-03 16:49:19 -0400287 struct bio *bio, u64 offset)
Josef Bacik4b46fce2010-05-23 11:00:55 -0400288{
Josef Bacikc3298612012-08-03 16:49:19 -0400289 return __btrfs_lookup_bio_sums(root, inode, bio, offset, NULL, 1);
Josef Bacik4b46fce2010-05-23 11:00:55 -0400290}
291
Yan Zheng17d217f2008-12-12 10:03:38 -0500292int btrfs_lookup_csums_range(struct btrfs_root *root, u64 start, u64 end,
Arne Jansena2de7332011-03-08 14:14:00 +0100293 struct list_head *list, int search_commit)
Yan Zheng17d217f2008-12-12 10:03:38 -0500294{
295 struct btrfs_key key;
296 struct btrfs_path *path;
297 struct extent_buffer *leaf;
298 struct btrfs_ordered_sum *sums;
Yan Zheng17d217f2008-12-12 10:03:38 -0500299 struct btrfs_csum_item *item;
Mark Fasheh0678b612011-08-05 15:46:16 -0700300 LIST_HEAD(tmplist);
Yan Zheng17d217f2008-12-12 10:03:38 -0500301 unsigned long offset;
302 int ret;
303 size_t size;
304 u64 csum_end;
David Sterba6c417612011-04-13 15:41:04 +0200305 u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy);
Yan Zheng17d217f2008-12-12 10:03:38 -0500306
307 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -0700308 if (!path)
309 return -ENOMEM;
Yan Zheng17d217f2008-12-12 10:03:38 -0500310
Arne Jansena2de7332011-03-08 14:14:00 +0100311 if (search_commit) {
312 path->skip_locking = 1;
313 path->reada = 2;
314 path->search_commit_root = 1;
315 }
316
Yan Zheng17d217f2008-12-12 10:03:38 -0500317 key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
318 key.offset = start;
319 key.type = BTRFS_EXTENT_CSUM_KEY;
320
Yan Zheng07d400a2009-01-06 11:42:00 -0500321 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Yan Zheng17d217f2008-12-12 10:03:38 -0500322 if (ret < 0)
323 goto fail;
324 if (ret > 0 && path->slots[0] > 0) {
325 leaf = path->nodes[0];
326 btrfs_item_key_to_cpu(leaf, &key, path->slots[0] - 1);
327 if (key.objectid == BTRFS_EXTENT_CSUM_OBJECTID &&
328 key.type == BTRFS_EXTENT_CSUM_KEY) {
329 offset = (start - key.offset) >>
330 root->fs_info->sb->s_blocksize_bits;
331 if (offset * csum_size <
332 btrfs_item_size_nr(leaf, path->slots[0] - 1))
333 path->slots[0]--;
334 }
335 }
336
337 while (start <= end) {
338 leaf = path->nodes[0];
339 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
Yan Zheng07d400a2009-01-06 11:42:00 -0500340 ret = btrfs_next_leaf(root, path);
Yan Zheng17d217f2008-12-12 10:03:38 -0500341 if (ret < 0)
342 goto fail;
343 if (ret > 0)
344 break;
345 leaf = path->nodes[0];
346 }
347
348 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
349 if (key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
Zhi Yong Wu628c8282013-03-18 09:18:09 +0000350 key.type != BTRFS_EXTENT_CSUM_KEY ||
351 key.offset > end)
Yan Zheng17d217f2008-12-12 10:03:38 -0500352 break;
353
354 if (key.offset > start)
355 start = key.offset;
356
357 size = btrfs_item_size_nr(leaf, path->slots[0]);
358 csum_end = key.offset + (size / csum_size) * root->sectorsize;
Yan Zheng87b29b22008-12-17 10:21:48 -0500359 if (csum_end <= start) {
360 path->slots[0]++;
361 continue;
362 }
Yan Zheng17d217f2008-12-12 10:03:38 -0500363
Yan Zheng07d400a2009-01-06 11:42:00 -0500364 csum_end = min(csum_end, end + 1);
Yan Zheng17d217f2008-12-12 10:03:38 -0500365 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
366 struct btrfs_csum_item);
Yan Zheng07d400a2009-01-06 11:42:00 -0500367 while (start < csum_end) {
368 size = min_t(size_t, csum_end - start,
Miao Xief51a4a12013-06-19 10:36:09 +0800369 MAX_ORDERED_SUM_BYTES(root));
Yan Zheng07d400a2009-01-06 11:42:00 -0500370 sums = kzalloc(btrfs_ordered_sum_size(root, size),
Miao Xief51a4a12013-06-19 10:36:09 +0800371 GFP_NOFS);
Mark Fasheh0678b612011-08-05 15:46:16 -0700372 if (!sums) {
373 ret = -ENOMEM;
374 goto fail;
375 }
Yan Zheng17d217f2008-12-12 10:03:38 -0500376
Yan Zheng07d400a2009-01-06 11:42:00 -0500377 sums->bytenr = start;
Miao Xief51a4a12013-06-19 10:36:09 +0800378 sums->len = (int)size;
Yan Zheng07d400a2009-01-06 11:42:00 -0500379
380 offset = (start - key.offset) >>
381 root->fs_info->sb->s_blocksize_bits;
382 offset *= csum_size;
Miao Xief51a4a12013-06-19 10:36:09 +0800383 size >>= root->fs_info->sb->s_blocksize_bits;
Yan Zheng07d400a2009-01-06 11:42:00 -0500384
Miao Xief51a4a12013-06-19 10:36:09 +0800385 read_extent_buffer(path->nodes[0],
386 sums->sums,
387 ((unsigned long)item) + offset,
388 csum_size * size);
Yan Zheng07d400a2009-01-06 11:42:00 -0500389
Miao Xief51a4a12013-06-19 10:36:09 +0800390 start += root->sectorsize * size;
Mark Fasheh0678b612011-08-05 15:46:16 -0700391 list_add_tail(&sums->list, &tmplist);
Yan Zheng17d217f2008-12-12 10:03:38 -0500392 }
Yan Zheng17d217f2008-12-12 10:03:38 -0500393 path->slots[0]++;
394 }
395 ret = 0;
396fail:
Mark Fasheh0678b612011-08-05 15:46:16 -0700397 while (ret < 0 && !list_empty(&tmplist)) {
398 sums = list_entry(&tmplist, struct btrfs_ordered_sum, list);
399 list_del(&sums->list);
400 kfree(sums);
401 }
402 list_splice_tail(&tmplist, list);
403
Yan Zheng17d217f2008-12-12 10:03:38 -0500404 btrfs_free_path(path);
405 return ret;
406}
407
Chris Mason3edf7d32008-07-18 06:17:13 -0400408int btrfs_csum_one_bio(struct btrfs_root *root, struct inode *inode,
Chris Masond20f7042008-12-08 16:58:54 -0500409 struct bio *bio, u64 file_start, int contig)
Chris Masone0156402008-04-16 11:15:20 -0400410{
Chris Masone6dcd2d2008-07-17 12:53:50 -0400411 struct btrfs_ordered_sum *sums;
Chris Mason3edf7d32008-07-18 06:17:13 -0400412 struct btrfs_ordered_extent *ordered;
Chris Masone0156402008-04-16 11:15:20 -0400413 char *data;
414 struct bio_vec *bvec = bio->bi_io_vec;
415 int bio_index = 0;
Miao Xief51a4a12013-06-19 10:36:09 +0800416 int index;
Chris Mason3edf7d32008-07-18 06:17:13 -0400417 unsigned long total_bytes = 0;
418 unsigned long this_sum_bytes = 0;
419 u64 offset;
Chris Masone0156402008-04-16 11:15:20 -0400420
Chris Masone6dcd2d2008-07-17 12:53:50 -0400421 WARN_ON(bio->bi_vcnt <= 0);
422 sums = kzalloc(btrfs_ordered_sum_size(root, bio->bi_size), GFP_NOFS);
Chris Masone0156402008-04-16 11:15:20 -0400423 if (!sums)
424 return -ENOMEM;
Chris Mason3edf7d32008-07-18 06:17:13 -0400425
Chris Masone6dcd2d2008-07-17 12:53:50 -0400426 sums->len = bio->bi_size;
427 INIT_LIST_HEAD(&sums->list);
Chris Masond20f7042008-12-08 16:58:54 -0500428
429 if (contig)
430 offset = file_start;
431 else
432 offset = page_offset(bvec->bv_page) + bvec->bv_offset;
433
434 ordered = btrfs_lookup_ordered_extent(inode, offset);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100435 BUG_ON(!ordered); /* Logic error */
Miao Xief51a4a12013-06-19 10:36:09 +0800436 sums->bytenr = (u64)bio->bi_sector << 9;
437 index = 0;
Chris Masone0156402008-04-16 11:15:20 -0400438
Chris Masond3977122009-01-05 21:25:51 -0500439 while (bio_index < bio->bi_vcnt) {
Chris Masond20f7042008-12-08 16:58:54 -0500440 if (!contig)
441 offset = page_offset(bvec->bv_page) + bvec->bv_offset;
442
Josef Bacike58dd742013-01-22 15:43:09 -0500443 if (offset >= ordered->file_offset + ordered->len ||
444 offset < ordered->file_offset) {
Chris Mason3edf7d32008-07-18 06:17:13 -0400445 unsigned long bytes_left;
446 sums->len = this_sum_bytes;
447 this_sum_bytes = 0;
448 btrfs_add_ordered_sum(inode, ordered, sums);
449 btrfs_put_ordered_extent(ordered);
450
451 bytes_left = bio->bi_size - total_bytes;
452
453 sums = kzalloc(btrfs_ordered_sum_size(root, bytes_left),
454 GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100455 BUG_ON(!sums); /* -ENOMEM */
Chris Mason3edf7d32008-07-18 06:17:13 -0400456 sums->len = bytes_left;
Chris Masond20f7042008-12-08 16:58:54 -0500457 ordered = btrfs_lookup_ordered_extent(inode, offset);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100458 BUG_ON(!ordered); /* Logic error */
Miao Xief51a4a12013-06-19 10:36:09 +0800459 sums->bytenr = ((u64)bio->bi_sector << 9) +
460 total_bytes;
461 index = 0;
Chris Mason3edf7d32008-07-18 06:17:13 -0400462 }
463
Cong Wang7ac687d2011-11-25 23:14:28 +0800464 data = kmap_atomic(bvec->bv_page);
Miao Xief51a4a12013-06-19 10:36:09 +0800465 sums->sums[index] = ~(u32)0;
466 sums->sums[index] = btrfs_csum_data(data + bvec->bv_offset,
467 sums->sums[index],
468 bvec->bv_len);
Cong Wang7ac687d2011-11-25 23:14:28 +0800469 kunmap_atomic(data);
Miao Xief51a4a12013-06-19 10:36:09 +0800470 btrfs_csum_final(sums->sums[index],
471 (char *)(sums->sums + index));
Chris Masoned98b562008-07-22 23:06:42 -0400472
Chris Masone0156402008-04-16 11:15:20 -0400473 bio_index++;
Miao Xief51a4a12013-06-19 10:36:09 +0800474 index++;
Chris Mason3edf7d32008-07-18 06:17:13 -0400475 total_bytes += bvec->bv_len;
476 this_sum_bytes += bvec->bv_len;
Chris Masond20f7042008-12-08 16:58:54 -0500477 offset += bvec->bv_len;
Chris Masone0156402008-04-16 11:15:20 -0400478 bvec++;
479 }
Chris Masoned98b562008-07-22 23:06:42 -0400480 this_sum_bytes = 0;
Chris Mason3edf7d32008-07-18 06:17:13 -0400481 btrfs_add_ordered_sum(inode, ordered, sums);
482 btrfs_put_ordered_extent(ordered);
Chris Masone0156402008-04-16 11:15:20 -0400483 return 0;
484}
485
Chris Mason459931e2008-12-10 09:10:46 -0500486/*
487 * helper function for csum removal, this expects the
488 * key to describe the csum pointed to by the path, and it expects
489 * the csum to overlap the range [bytenr, len]
490 *
491 * The csum should not be entirely contained in the range and the
492 * range should not be entirely contained in the csum.
493 *
494 * This calls btrfs_truncate_item with the correct args based on the
495 * overlap, and fixes up the key as required.
496 */
Tsutomu Itohafe5fea2013-04-16 05:18:22 +0000497static noinline void truncate_one_csum(struct btrfs_root *root,
Jeff Mahoney143bede2012-03-01 14:56:26 +0100498 struct btrfs_path *path,
499 struct btrfs_key *key,
500 u64 bytenr, u64 len)
Chris Mason459931e2008-12-10 09:10:46 -0500501{
502 struct extent_buffer *leaf;
David Sterba6c417612011-04-13 15:41:04 +0200503 u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy);
Chris Mason459931e2008-12-10 09:10:46 -0500504 u64 csum_end;
505 u64 end_byte = bytenr + len;
506 u32 blocksize_bits = root->fs_info->sb->s_blocksize_bits;
Chris Mason459931e2008-12-10 09:10:46 -0500507
508 leaf = path->nodes[0];
509 csum_end = btrfs_item_size_nr(leaf, path->slots[0]) / csum_size;
510 csum_end <<= root->fs_info->sb->s_blocksize_bits;
511 csum_end += key->offset;
512
513 if (key->offset < bytenr && csum_end <= end_byte) {
514 /*
515 * [ bytenr - len ]
516 * [ ]
517 * [csum ]
518 * A simple truncate off the end of the item
519 */
520 u32 new_size = (bytenr - key->offset) >> blocksize_bits;
521 new_size *= csum_size;
Tsutomu Itohafe5fea2013-04-16 05:18:22 +0000522 btrfs_truncate_item(root, path, new_size, 1);
Chris Mason459931e2008-12-10 09:10:46 -0500523 } else if (key->offset >= bytenr && csum_end > end_byte &&
524 end_byte > key->offset) {
525 /*
526 * [ bytenr - len ]
527 * [ ]
528 * [csum ]
529 * we need to truncate from the beginning of the csum
530 */
531 u32 new_size = (csum_end - end_byte) >> blocksize_bits;
532 new_size *= csum_size;
533
Tsutomu Itohafe5fea2013-04-16 05:18:22 +0000534 btrfs_truncate_item(root, path, new_size, 0);
Chris Mason459931e2008-12-10 09:10:46 -0500535
536 key->offset = end_byte;
Tsutomu Itohafe5fea2013-04-16 05:18:22 +0000537 btrfs_set_item_key_safe(root, path, key);
Chris Mason459931e2008-12-10 09:10:46 -0500538 } else {
539 BUG();
540 }
Chris Mason459931e2008-12-10 09:10:46 -0500541}
542
543/*
544 * deletes the csum items from the csum tree for a given
545 * range of bytes.
546 */
547int btrfs_del_csums(struct btrfs_trans_handle *trans,
548 struct btrfs_root *root, u64 bytenr, u64 len)
549{
550 struct btrfs_path *path;
551 struct btrfs_key key;
552 u64 end_byte = bytenr + len;
553 u64 csum_end;
554 struct extent_buffer *leaf;
555 int ret;
David Sterba6c417612011-04-13 15:41:04 +0200556 u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy);
Chris Mason459931e2008-12-10 09:10:46 -0500557 int blocksize_bits = root->fs_info->sb->s_blocksize_bits;
558
559 root = root->fs_info->csum_root;
560
561 path = btrfs_alloc_path();
liubo2a29edc2011-01-26 06:22:08 +0000562 if (!path)
563 return -ENOMEM;
Chris Mason459931e2008-12-10 09:10:46 -0500564
Chris Masond3977122009-01-05 21:25:51 -0500565 while (1) {
Chris Mason459931e2008-12-10 09:10:46 -0500566 key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
567 key.offset = end_byte - 1;
568 key.type = BTRFS_EXTENT_CSUM_KEY;
569
Chris Masonb9473432009-03-13 11:00:37 -0400570 path->leave_spinning = 1;
Chris Mason459931e2008-12-10 09:10:46 -0500571 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
572 if (ret > 0) {
573 if (path->slots[0] == 0)
Tsutomu Itoh65a246c2011-05-19 04:37:44 +0000574 break;
Chris Mason459931e2008-12-10 09:10:46 -0500575 path->slots[0]--;
Josef Bacikad0397a2011-01-28 18:44:44 +0000576 } else if (ret < 0) {
Tsutomu Itoh65a246c2011-05-19 04:37:44 +0000577 break;
Chris Mason459931e2008-12-10 09:10:46 -0500578 }
Josef Bacikad0397a2011-01-28 18:44:44 +0000579
Chris Mason459931e2008-12-10 09:10:46 -0500580 leaf = path->nodes[0];
581 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
582
583 if (key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
584 key.type != BTRFS_EXTENT_CSUM_KEY) {
585 break;
586 }
587
588 if (key.offset >= end_byte)
589 break;
590
591 csum_end = btrfs_item_size_nr(leaf, path->slots[0]) / csum_size;
592 csum_end <<= blocksize_bits;
593 csum_end += key.offset;
594
595 /* this csum ends before we start, we're done */
596 if (csum_end <= bytenr)
597 break;
598
599 /* delete the entire item, it is inside our range */
600 if (key.offset >= bytenr && csum_end <= end_byte) {
601 ret = btrfs_del_item(trans, root, path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +0000602 if (ret)
603 goto out;
Chris Masondcbdd4d2008-12-16 13:51:01 -0500604 if (key.offset == bytenr)
605 break;
Chris Mason459931e2008-12-10 09:10:46 -0500606 } else if (key.offset < bytenr && csum_end > end_byte) {
607 unsigned long offset;
608 unsigned long shift_len;
609 unsigned long item_offset;
610 /*
611 * [ bytenr - len ]
612 * [csum ]
613 *
614 * Our bytes are in the middle of the csum,
615 * we need to split this item and insert a new one.
616 *
617 * But we can't drop the path because the
618 * csum could change, get removed, extended etc.
619 *
620 * The trick here is the max size of a csum item leaves
621 * enough room in the tree block for a single
622 * item header. So, we split the item in place,
623 * adding a new header pointing to the existing
624 * bytes. Then we loop around again and we have
625 * a nicely formed csum item that we can neatly
626 * truncate.
627 */
628 offset = (bytenr - key.offset) >> blocksize_bits;
629 offset *= csum_size;
630
631 shift_len = (len >> blocksize_bits) * csum_size;
632
633 item_offset = btrfs_item_ptr_offset(leaf,
634 path->slots[0]);
635
636 memset_extent_buffer(leaf, 0, item_offset + offset,
637 shift_len);
638 key.offset = bytenr;
639
640 /*
641 * btrfs_split_item returns -EAGAIN when the
642 * item changed size or key
643 */
644 ret = btrfs_split_item(trans, root, path, &key, offset);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100645 if (ret && ret != -EAGAIN) {
646 btrfs_abort_transaction(trans, root, ret);
647 goto out;
648 }
Chris Mason459931e2008-12-10 09:10:46 -0500649
650 key.offset = end_byte - 1;
651 } else {
Tsutomu Itohafe5fea2013-04-16 05:18:22 +0000652 truncate_one_csum(root, path, &key, bytenr, len);
Chris Masondcbdd4d2008-12-16 13:51:01 -0500653 if (key.offset < bytenr)
654 break;
Chris Mason459931e2008-12-10 09:10:46 -0500655 }
David Sterbab3b4aa72011-04-21 01:20:15 +0200656 btrfs_release_path(path);
Chris Mason459931e2008-12-10 09:10:46 -0500657 }
Tsutomu Itoh65a246c2011-05-19 04:37:44 +0000658 ret = 0;
Chris Mason459931e2008-12-10 09:10:46 -0500659out:
660 btrfs_free_path(path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +0000661 return ret;
Chris Mason459931e2008-12-10 09:10:46 -0500662}
663
Chris Mason065631f2008-02-20 12:07:25 -0500664int btrfs_csum_file_blocks(struct btrfs_trans_handle *trans,
Chris Masond20f7042008-12-08 16:58:54 -0500665 struct btrfs_root *root,
Chris Masone6dcd2d2008-07-17 12:53:50 -0400666 struct btrfs_ordered_sum *sums)
Chris Masonf254e522007-03-29 15:15:27 -0400667{
Chris Masonf254e522007-03-29 15:15:27 -0400668 struct btrfs_key file_key;
Chris Mason6567e832007-04-16 09:22:45 -0400669 struct btrfs_key found_key;
Chris Mason5caf2a02007-04-02 11:20:42 -0400670 struct btrfs_path *path;
Chris Masonf254e522007-03-29 15:15:27 -0400671 struct btrfs_csum_item *item;
Chris Mason065631f2008-02-20 12:07:25 -0500672 struct btrfs_csum_item *item_end;
Chris Masonff79f812007-10-15 16:22:25 -0400673 struct extent_buffer *leaf = NULL;
Miao Xief51a4a12013-06-19 10:36:09 +0800674 u64 next_offset;
675 u64 total_bytes = 0;
Chris Mason6567e832007-04-16 09:22:45 -0400676 u64 csum_offset;
Miao Xief51a4a12013-06-19 10:36:09 +0800677 u64 bytenr;
Chris Masonf578d4b2007-10-25 15:42:56 -0400678 u32 nritems;
679 u32 ins_size;
Miao Xief51a4a12013-06-19 10:36:09 +0800680 int index = 0;
681 int found_next;
682 int ret;
David Sterba6c417612011-04-13 15:41:04 +0200683 u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy);
Chris Mason6e92f5e2008-02-20 12:07:25 -0500684
Chris Mason5caf2a02007-04-02 11:20:42 -0400685 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -0700686 if (!path)
687 return -ENOMEM;
Chris Mason065631f2008-02-20 12:07:25 -0500688again:
689 next_offset = (u64)-1;
690 found_next = 0;
Miao Xief51a4a12013-06-19 10:36:09 +0800691 bytenr = sums->bytenr + total_bytes;
Chris Masond20f7042008-12-08 16:58:54 -0500692 file_key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
Miao Xief51a4a12013-06-19 10:36:09 +0800693 file_key.offset = bytenr;
Chris Masond20f7042008-12-08 16:58:54 -0500694 btrfs_set_key_type(&file_key, BTRFS_EXTENT_CSUM_KEY);
Chris Masona429e512007-04-18 16:15:28 -0400695
Miao Xief51a4a12013-06-19 10:36:09 +0800696 item = btrfs_lookup_csum(trans, root, path, bytenr, 1);
Chris Masonff79f812007-10-15 16:22:25 -0400697 if (!IS_ERR(item)) {
Chris Mason639cb582008-08-28 06:15:25 -0400698 ret = 0;
Miao Xief51a4a12013-06-19 10:36:09 +0800699 leaf = path->nodes[0];
700 item_end = btrfs_item_ptr(leaf, path->slots[0],
701 struct btrfs_csum_item);
702 item_end = (struct btrfs_csum_item *)((char *)item_end +
703 btrfs_item_size_nr(leaf, path->slots[0]));
Chris Masona429e512007-04-18 16:15:28 -0400704 goto found;
Chris Masonff79f812007-10-15 16:22:25 -0400705 }
Chris Masona429e512007-04-18 16:15:28 -0400706 ret = PTR_ERR(item);
Yan, Zheng4a500fd2010-05-16 10:49:59 -0400707 if (ret != -EFBIG && ret != -ENOENT)
708 goto fail_unlock;
709
Chris Masona429e512007-04-18 16:15:28 -0400710 if (ret == -EFBIG) {
711 u32 item_size;
712 /* we found one, but it isn't big enough yet */
Chris Mason5f39d392007-10-15 16:14:19 -0400713 leaf = path->nodes[0];
714 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
Josef Bacik607d4322008-12-02 07:17:45 -0500715 if ((item_size / csum_size) >=
716 MAX_CSUM_ITEMS(root, csum_size)) {
Chris Masona429e512007-04-18 16:15:28 -0400717 /* already at max size, make a new one */
718 goto insert;
719 }
720 } else {
Chris Masonf578d4b2007-10-25 15:42:56 -0400721 int slot = path->slots[0] + 1;
Chris Masona429e512007-04-18 16:15:28 -0400722 /* we didn't find a csum item, insert one */
Chris Masonf578d4b2007-10-25 15:42:56 -0400723 nritems = btrfs_header_nritems(path->nodes[0]);
724 if (path->slots[0] >= nritems - 1) {
725 ret = btrfs_next_leaf(root, path);
Yanb56baf52007-10-29 12:01:05 -0400726 if (ret == 1)
Chris Masonf578d4b2007-10-25 15:42:56 -0400727 found_next = 1;
Yanb56baf52007-10-29 12:01:05 -0400728 if (ret != 0)
Chris Masonf578d4b2007-10-25 15:42:56 -0400729 goto insert;
Yanb56baf52007-10-29 12:01:05 -0400730 slot = 0;
Chris Masonf578d4b2007-10-25 15:42:56 -0400731 }
732 btrfs_item_key_to_cpu(path->nodes[0], &found_key, slot);
Chris Masond20f7042008-12-08 16:58:54 -0500733 if (found_key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
734 found_key.type != BTRFS_EXTENT_CSUM_KEY) {
Chris Masonf578d4b2007-10-25 15:42:56 -0400735 found_next = 1;
736 goto insert;
737 }
738 next_offset = found_key.offset;
739 found_next = 1;
Chris Masona429e512007-04-18 16:15:28 -0400740 goto insert;
741 }
742
743 /*
744 * at this point, we know the tree has an item, but it isn't big
745 * enough yet to put our csum in. Grow it
746 */
David Sterbab3b4aa72011-04-21 01:20:15 +0200747 btrfs_release_path(path);
Chris Mason6567e832007-04-16 09:22:45 -0400748 ret = btrfs_search_slot(trans, root, &file_key, path,
Josef Bacik607d4322008-12-02 07:17:45 -0500749 csum_size, 1);
Chris Mason6567e832007-04-16 09:22:45 -0400750 if (ret < 0)
Chris Mason53863232008-08-15 15:34:18 -0400751 goto fail_unlock;
Chris Mason459931e2008-12-10 09:10:46 -0500752
753 if (ret > 0) {
754 if (path->slots[0] == 0)
755 goto insert;
756 path->slots[0]--;
Chris Mason6567e832007-04-16 09:22:45 -0400757 }
Chris Mason459931e2008-12-10 09:10:46 -0500758
Chris Mason5f39d392007-10-15 16:14:19 -0400759 leaf = path->nodes[0];
760 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masond20f7042008-12-08 16:58:54 -0500761 csum_offset = (bytenr - found_key.offset) >>
Chris Mason6567e832007-04-16 09:22:45 -0400762 root->fs_info->sb->s_blocksize_bits;
Chris Mason459931e2008-12-10 09:10:46 -0500763
Chris Masond20f7042008-12-08 16:58:54 -0500764 if (btrfs_key_type(&found_key) != BTRFS_EXTENT_CSUM_KEY ||
765 found_key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
Josef Bacik607d4322008-12-02 07:17:45 -0500766 csum_offset >= MAX_CSUM_ITEMS(root, csum_size)) {
Chris Mason6567e832007-04-16 09:22:45 -0400767 goto insert;
768 }
Chris Mason459931e2008-12-10 09:10:46 -0500769
Liu Bo2f697dc2013-02-04 13:12:18 +0000770 if (csum_offset == btrfs_item_size_nr(leaf, path->slots[0]) /
Josef Bacik607d4322008-12-02 07:17:45 -0500771 csum_size) {
Liu Bo2f697dc2013-02-04 13:12:18 +0000772 int extend_nr;
773 u64 tmp;
774 u32 diff;
775 u32 free_space;
Chris Mason459931e2008-12-10 09:10:46 -0500776
Liu Bo2f697dc2013-02-04 13:12:18 +0000777 if (btrfs_leaf_free_space(root, leaf) <
778 sizeof(struct btrfs_item) + csum_size * 2)
779 goto insert;
780
781 free_space = btrfs_leaf_free_space(root, leaf) -
782 sizeof(struct btrfs_item) - csum_size;
Miao Xief51a4a12013-06-19 10:36:09 +0800783 tmp = sums->len - total_bytes;
Liu Bo2f697dc2013-02-04 13:12:18 +0000784 tmp >>= root->fs_info->sb->s_blocksize_bits;
785 WARN_ON(tmp < 1);
786
787 extend_nr = max_t(int, 1, (int)tmp);
788 diff = (csum_offset + extend_nr) * csum_size;
789 diff = min(diff, MAX_CSUM_ITEMS(root, csum_size) * csum_size);
Chris Mason459931e2008-12-10 09:10:46 -0500790
Chris Mason5f39d392007-10-15 16:14:19 -0400791 diff = diff - btrfs_item_size_nr(leaf, path->slots[0]);
Liu Bo2f697dc2013-02-04 13:12:18 +0000792 diff = min(free_space, diff);
793 diff /= csum_size;
794 diff *= csum_size;
Chris Mason459931e2008-12-10 09:10:46 -0500795
Tsutomu Itoh4b90c682013-04-16 05:18:49 +0000796 btrfs_extend_item(root, path, diff);
Miao Xief51a4a12013-06-19 10:36:09 +0800797 ret = 0;
Chris Mason6567e832007-04-16 09:22:45 -0400798 goto csum;
799 }
800
801insert:
David Sterbab3b4aa72011-04-21 01:20:15 +0200802 btrfs_release_path(path);
Chris Mason6567e832007-04-16 09:22:45 -0400803 csum_offset = 0;
Chris Masonf578d4b2007-10-25 15:42:56 -0400804 if (found_next) {
Liu Bo2f697dc2013-02-04 13:12:18 +0000805 u64 tmp;
Chris Masond20f7042008-12-08 16:58:54 -0500806
Miao Xief51a4a12013-06-19 10:36:09 +0800807 tmp = sums->len - total_bytes;
Chris Masonf578d4b2007-10-25 15:42:56 -0400808 tmp >>= root->fs_info->sb->s_blocksize_bits;
Liu Bo2f697dc2013-02-04 13:12:18 +0000809 tmp = min(tmp, (next_offset - file_key.offset) >>
810 root->fs_info->sb->s_blocksize_bits);
811
Chris Masonf578d4b2007-10-25 15:42:56 -0400812 tmp = max((u64)1, tmp);
Josef Bacik607d4322008-12-02 07:17:45 -0500813 tmp = min(tmp, (u64)MAX_CSUM_ITEMS(root, csum_size));
814 ins_size = csum_size * tmp;
Chris Masonf578d4b2007-10-25 15:42:56 -0400815 } else {
Josef Bacik607d4322008-12-02 07:17:45 -0500816 ins_size = csum_size;
Chris Masonf578d4b2007-10-25 15:42:56 -0400817 }
Chris Masonb9473432009-03-13 11:00:37 -0400818 path->leave_spinning = 1;
Chris Mason5caf2a02007-04-02 11:20:42 -0400819 ret = btrfs_insert_empty_item(trans, root, path, &file_key,
Chris Masonf578d4b2007-10-25 15:42:56 -0400820 ins_size);
Chris Masonb9473432009-03-13 11:00:37 -0400821 path->leave_spinning = 0;
Chris Mason54aa1f42007-06-22 14:16:25 -0400822 if (ret < 0)
Chris Mason53863232008-08-15 15:34:18 -0400823 goto fail_unlock;
Chris Masona429e512007-04-18 16:15:28 -0400824 if (ret != 0) {
Chris Masona429e512007-04-18 16:15:28 -0400825 WARN_ON(1);
Chris Mason53863232008-08-15 15:34:18 -0400826 goto fail_unlock;
Chris Masona429e512007-04-18 16:15:28 -0400827 }
Chris Mason5f39d392007-10-15 16:14:19 -0400828 leaf = path->nodes[0];
Miao Xief51a4a12013-06-19 10:36:09 +0800829csum:
Chris Mason5f39d392007-10-15 16:14:19 -0400830 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_csum_item);
Miao Xief51a4a12013-06-19 10:36:09 +0800831 item_end = (struct btrfs_csum_item *)((unsigned char *)item +
832 btrfs_item_size_nr(leaf, path->slots[0]));
Chris Mason509659c2007-05-10 12:36:17 -0400833 item = (struct btrfs_csum_item *)((unsigned char *)item +
Josef Bacik607d4322008-12-02 07:17:45 -0500834 csum_offset * csum_size);
Chris Masonb18c6682007-04-17 13:26:50 -0400835found:
Miao Xief51a4a12013-06-19 10:36:09 +0800836 ins_size = (u32)(sums->len - total_bytes) >>
837 root->fs_info->sb->s_blocksize_bits;
838 ins_size *= csum_size;
839 ins_size = min_t(u32, (unsigned long)item_end - (unsigned long)item,
840 ins_size);
841 write_extent_buffer(leaf, sums->sums + index, (unsigned long)item,
842 ins_size);
Chris Masonaadfeb62008-01-29 09:10:27 -0500843
Miao Xief51a4a12013-06-19 10:36:09 +0800844 ins_size /= csum_size;
845 total_bytes += ins_size * root->sectorsize;
846 index += ins_size;
Chris Masona6591712011-07-19 12:04:14 -0400847
Chris Mason5caf2a02007-04-02 11:20:42 -0400848 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400849 if (total_bytes < sums->len) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200850 btrfs_release_path(path);
Chris Masonb9473432009-03-13 11:00:37 -0400851 cond_resched();
Chris Mason065631f2008-02-20 12:07:25 -0500852 goto again;
853 }
Chris Mason53863232008-08-15 15:34:18 -0400854out:
Chris Mason5caf2a02007-04-02 11:20:42 -0400855 btrfs_free_path(path);
Chris Masonf254e522007-03-29 15:15:27 -0400856 return ret;
Chris Mason53863232008-08-15 15:34:18 -0400857
858fail_unlock:
Chris Mason53863232008-08-15 15:34:18 -0400859 goto out;
Chris Masonf254e522007-03-29 15:15:27 -0400860}