blob: bd38cef4235882425c08eb6a5d10306736a14237 [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)) / \
37 sizeof(struct btrfs_sector_sum) * \
38 (r)->sectorsize - (r)->sectorsize)
39
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
Chris Masonb18c6682007-04-17 13:26:50 -040086struct btrfs_csum_item *btrfs_lookup_csum(struct btrfs_trans_handle *trans,
87 struct btrfs_root *root,
88 struct btrfs_path *path,
Chris Masond20f7042008-12-08 16:58:54 -050089 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
121 if (csum_offset >= csums_in_item) {
122 ret = -EFBIG;
Chris Mason6567e832007-04-16 09:22:45 -0400123 goto fail;
124 }
125 }
126 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_csum_item);
Chris Mason509659c2007-05-10 12:36:17 -0400127 item = (struct btrfs_csum_item *)((unsigned char *)item +
Josef Bacik607d4322008-12-02 07:17:45 -0500128 csum_offset * csum_size);
Chris Mason6567e832007-04-16 09:22:45 -0400129 return item;
130fail:
131 if (ret > 0)
Chris Masonb18c6682007-04-17 13:26:50 -0400132 ret = -ENOENT;
Chris Mason6567e832007-04-16 09:22:45 -0400133 return ERR_PTR(ret);
134}
135
Chris Masondee26a92007-03-26 16:00:06 -0400136int btrfs_lookup_file_extent(struct btrfs_trans_handle *trans,
137 struct btrfs_root *root,
138 struct btrfs_path *path, u64 objectid,
Chris Mason9773a782007-03-27 11:26:26 -0400139 u64 offset, int mod)
Chris Masondee26a92007-03-26 16:00:06 -0400140{
141 int ret;
142 struct btrfs_key file_key;
143 int ins_len = mod < 0 ? -1 : 0;
144 int cow = mod != 0;
145
146 file_key.objectid = objectid;
Chris Mason70b2bef2007-04-17 15:39:32 -0400147 file_key.offset = offset;
Chris Masondee26a92007-03-26 16:00:06 -0400148 btrfs_set_key_type(&file_key, BTRFS_EXTENT_DATA_KEY);
149 ret = btrfs_search_slot(trans, root, &file_key, path, ins_len, cow);
150 return ret;
151}
Chris Masonf254e522007-03-29 15:15:27 -0400152
Miao Xie315a9852012-11-01 07:33:59 +0000153u64 btrfs_file_extent_length(struct btrfs_path *path)
154{
155 int extent_type;
156 struct btrfs_file_extent_item *fi;
157 u64 len;
158
159 fi = btrfs_item_ptr(path->nodes[0], path->slots[0],
160 struct btrfs_file_extent_item);
161 extent_type = btrfs_file_extent_type(path->nodes[0], fi);
162
163 if (extent_type == BTRFS_FILE_EXTENT_REG ||
164 extent_type == BTRFS_FILE_EXTENT_PREALLOC)
165 len = btrfs_file_extent_num_bytes(path->nodes[0], fi);
166 else if (extent_type == BTRFS_FILE_EXTENT_INLINE)
167 len = btrfs_file_extent_inline_len(path->nodes[0], fi);
168 else
169 BUG();
170
171 return len;
172}
Yan Zheng17d217f2008-12-12 10:03:38 -0500173
Josef Bacik4b46fce2010-05-23 11:00:55 -0400174static int __btrfs_lookup_bio_sums(struct btrfs_root *root,
175 struct inode *inode, struct bio *bio,
176 u64 logical_offset, u32 *dst, int dio)
Chris Mason61b49442008-07-31 15:42:53 -0400177{
178 u32 sum;
179 struct bio_vec *bvec = bio->bi_io_vec;
180 int bio_index = 0;
Josef Bacik4b46fce2010-05-23 11:00:55 -0400181 u64 offset = 0;
Chris Mason61b49442008-07-31 15:42:53 -0400182 u64 item_start_offset = 0;
183 u64 item_last_offset = 0;
Chris Masond20f7042008-12-08 16:58:54 -0500184 u64 disk_bytenr;
Chris Mason61b49442008-07-31 15:42:53 -0400185 u32 diff;
David Sterba6c417612011-04-13 15:41:04 +0200186 u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy);
Chris Mason61b49442008-07-31 15:42:53 -0400187 int ret;
188 struct btrfs_path *path;
189 struct btrfs_csum_item *item = NULL;
190 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
191
192 path = btrfs_alloc_path();
Tsutomu Itohc2db1072011-03-01 06:48:31 +0000193 if (!path)
194 return -ENOMEM;
Chris Mason4d1b5fb2008-08-20 09:44:52 -0400195 if (bio->bi_size > PAGE_CACHE_SIZE * 8)
196 path->reada = 2;
Chris Mason61b49442008-07-31 15:42:53 -0400197
198 WARN_ON(bio->bi_vcnt <= 0);
199
Chris Mason2cf85722011-07-26 15:35:09 -0400200 /*
201 * the free space stuff is only read when it hasn't been
202 * updated in the current transaction. So, we can safely
203 * read from the commit root and sidestep a nasty deadlock
204 * between reading the free space cache and updating the csum tree.
205 */
Liu Bo83eea1f2012-07-10 05:28:39 -0600206 if (btrfs_is_free_space_inode(inode)) {
Chris Mason2cf85722011-07-26 15:35:09 -0400207 path->search_commit_root = 1;
Josef Bacikddf23b32011-09-11 10:52:24 -0400208 path->skip_locking = 1;
209 }
Chris Mason2cf85722011-07-26 15:35:09 -0400210
Chris Masond20f7042008-12-08 16:58:54 -0500211 disk_bytenr = (u64)bio->bi_sector << 9;
Josef Bacik4b46fce2010-05-23 11:00:55 -0400212 if (dio)
213 offset = logical_offset;
Chris Masond3977122009-01-05 21:25:51 -0500214 while (bio_index < bio->bi_vcnt) {
Josef Bacik4b46fce2010-05-23 11:00:55 -0400215 if (!dio)
216 offset = page_offset(bvec->bv_page) + bvec->bv_offset;
Chris Masond20f7042008-12-08 16:58:54 -0500217 ret = btrfs_find_ordered_sum(inode, offset, disk_bytenr, &sum);
Chris Mason61b49442008-07-31 15:42:53 -0400218 if (ret == 0)
219 goto found;
220
Chris Masond20f7042008-12-08 16:58:54 -0500221 if (!item || disk_bytenr < item_start_offset ||
222 disk_bytenr >= item_last_offset) {
Chris Mason61b49442008-07-31 15:42:53 -0400223 struct btrfs_key found_key;
224 u32 item_size;
225
226 if (item)
David Sterbab3b4aa72011-04-21 01:20:15 +0200227 btrfs_release_path(path);
Chris Masond20f7042008-12-08 16:58:54 -0500228 item = btrfs_lookup_csum(NULL, root->fs_info->csum_root,
229 path, disk_bytenr, 0);
Chris Mason61b49442008-07-31 15:42:53 -0400230 if (IS_ERR(item)) {
231 ret = PTR_ERR(item);
232 if (ret == -ENOENT || ret == -EFBIG)
233 ret = 0;
234 sum = 0;
Yan Zheng17d217f2008-12-12 10:03:38 -0500235 if (BTRFS_I(inode)->root->root_key.objectid ==
236 BTRFS_DATA_RELOC_TREE_OBJECTID) {
237 set_extent_bits(io_tree, offset,
238 offset + bvec->bv_len - 1,
239 EXTENT_NODATASUM, GFP_NOFS);
240 } else {
Chris Masond3977122009-01-05 21:25:51 -0500241 printk(KERN_INFO "btrfs no csum found "
Li Zefan33345d012011-04-20 10:31:50 +0800242 "for inode %llu start %llu\n",
243 (unsigned long long)
244 btrfs_ino(inode),
Yan Zheng17d217f2008-12-12 10:03:38 -0500245 (unsigned long long)offset);
246 }
Chris Mason6dab8152008-08-04 08:35:53 -0400247 item = NULL;
David Sterbab3b4aa72011-04-21 01:20:15 +0200248 btrfs_release_path(path);
Chris Mason61b49442008-07-31 15:42:53 -0400249 goto found;
250 }
251 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
252 path->slots[0]);
253
254 item_start_offset = found_key.offset;
255 item_size = btrfs_item_size_nr(path->nodes[0],
256 path->slots[0]);
257 item_last_offset = item_start_offset +
Josef Bacik607d4322008-12-02 07:17:45 -0500258 (item_size / csum_size) *
Chris Mason61b49442008-07-31 15:42:53 -0400259 root->sectorsize;
260 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
261 struct btrfs_csum_item);
262 }
263 /*
264 * this byte range must be able to fit inside
265 * a single leaf so it will also fit inside a u32
266 */
Chris Masond20f7042008-12-08 16:58:54 -0500267 diff = disk_bytenr - item_start_offset;
Chris Mason61b49442008-07-31 15:42:53 -0400268 diff = diff / root->sectorsize;
Josef Bacik607d4322008-12-02 07:17:45 -0500269 diff = diff * csum_size;
Chris Mason61b49442008-07-31 15:42:53 -0400270
271 read_extent_buffer(path->nodes[0], &sum,
Chris Mason3de9d6b2008-08-04 23:17:27 -0400272 ((unsigned long)item) + diff,
Josef Bacik607d4322008-12-02 07:17:45 -0500273 csum_size);
Chris Mason61b49442008-07-31 15:42:53 -0400274found:
Chris Masond20f7042008-12-08 16:58:54 -0500275 if (dst)
276 *dst++ = sum;
277 else
278 set_state_private(io_tree, offset, sum);
279 disk_bytenr += bvec->bv_len;
Josef Bacik4b46fce2010-05-23 11:00:55 -0400280 offset += bvec->bv_len;
Chris Mason61b49442008-07-31 15:42:53 -0400281 bio_index++;
282 bvec++;
283 }
284 btrfs_free_path(path);
285 return 0;
286}
287
Josef Bacik4b46fce2010-05-23 11:00:55 -0400288int btrfs_lookup_bio_sums(struct btrfs_root *root, struct inode *inode,
289 struct bio *bio, u32 *dst)
290{
291 return __btrfs_lookup_bio_sums(root, inode, bio, 0, dst, 0);
292}
293
294int btrfs_lookup_bio_sums_dio(struct btrfs_root *root, struct inode *inode,
Josef Bacikc3298612012-08-03 16:49:19 -0400295 struct bio *bio, u64 offset)
Josef Bacik4b46fce2010-05-23 11:00:55 -0400296{
Josef Bacikc3298612012-08-03 16:49:19 -0400297 return __btrfs_lookup_bio_sums(root, inode, bio, offset, NULL, 1);
Josef Bacik4b46fce2010-05-23 11:00:55 -0400298}
299
Yan Zheng17d217f2008-12-12 10:03:38 -0500300int btrfs_lookup_csums_range(struct btrfs_root *root, u64 start, u64 end,
Arne Jansena2de7332011-03-08 14:14:00 +0100301 struct list_head *list, int search_commit)
Yan Zheng17d217f2008-12-12 10:03:38 -0500302{
303 struct btrfs_key key;
304 struct btrfs_path *path;
305 struct extent_buffer *leaf;
306 struct btrfs_ordered_sum *sums;
307 struct btrfs_sector_sum *sector_sum;
308 struct btrfs_csum_item *item;
Mark Fasheh0678b612011-08-05 15:46:16 -0700309 LIST_HEAD(tmplist);
Yan Zheng17d217f2008-12-12 10:03:38 -0500310 unsigned long offset;
311 int ret;
312 size_t size;
313 u64 csum_end;
David Sterba6c417612011-04-13 15:41:04 +0200314 u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy);
Yan Zheng17d217f2008-12-12 10:03:38 -0500315
316 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -0700317 if (!path)
318 return -ENOMEM;
Yan Zheng17d217f2008-12-12 10:03:38 -0500319
Arne Jansena2de7332011-03-08 14:14:00 +0100320 if (search_commit) {
321 path->skip_locking = 1;
322 path->reada = 2;
323 path->search_commit_root = 1;
324 }
325
Yan Zheng17d217f2008-12-12 10:03:38 -0500326 key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
327 key.offset = start;
328 key.type = BTRFS_EXTENT_CSUM_KEY;
329
Yan Zheng07d400a2009-01-06 11:42:00 -0500330 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Yan Zheng17d217f2008-12-12 10:03:38 -0500331 if (ret < 0)
332 goto fail;
333 if (ret > 0 && path->slots[0] > 0) {
334 leaf = path->nodes[0];
335 btrfs_item_key_to_cpu(leaf, &key, path->slots[0] - 1);
336 if (key.objectid == BTRFS_EXTENT_CSUM_OBJECTID &&
337 key.type == BTRFS_EXTENT_CSUM_KEY) {
338 offset = (start - key.offset) >>
339 root->fs_info->sb->s_blocksize_bits;
340 if (offset * csum_size <
341 btrfs_item_size_nr(leaf, path->slots[0] - 1))
342 path->slots[0]--;
343 }
344 }
345
346 while (start <= end) {
347 leaf = path->nodes[0];
348 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
Yan Zheng07d400a2009-01-06 11:42:00 -0500349 ret = btrfs_next_leaf(root, path);
Yan Zheng17d217f2008-12-12 10:03:38 -0500350 if (ret < 0)
351 goto fail;
352 if (ret > 0)
353 break;
354 leaf = path->nodes[0];
355 }
356
357 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
358 if (key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
359 key.type != BTRFS_EXTENT_CSUM_KEY)
360 break;
361
362 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
363 if (key.offset > end)
364 break;
365
366 if (key.offset > start)
367 start = key.offset;
368
369 size = btrfs_item_size_nr(leaf, path->slots[0]);
370 csum_end = key.offset + (size / csum_size) * root->sectorsize;
Yan Zheng87b29b22008-12-17 10:21:48 -0500371 if (csum_end <= start) {
372 path->slots[0]++;
373 continue;
374 }
Yan Zheng17d217f2008-12-12 10:03:38 -0500375
Yan Zheng07d400a2009-01-06 11:42:00 -0500376 csum_end = min(csum_end, end + 1);
Yan Zheng17d217f2008-12-12 10:03:38 -0500377 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
378 struct btrfs_csum_item);
Yan Zheng07d400a2009-01-06 11:42:00 -0500379 while (start < csum_end) {
380 size = min_t(size_t, csum_end - start,
381 MAX_ORDERED_SUM_BYTES(root));
382 sums = kzalloc(btrfs_ordered_sum_size(root, size),
383 GFP_NOFS);
Mark Fasheh0678b612011-08-05 15:46:16 -0700384 if (!sums) {
385 ret = -ENOMEM;
386 goto fail;
387 }
Yan Zheng17d217f2008-12-12 10:03:38 -0500388
Yan Zheng07d400a2009-01-06 11:42:00 -0500389 sector_sum = sums->sums;
390 sums->bytenr = start;
391 sums->len = size;
392
393 offset = (start - key.offset) >>
394 root->fs_info->sb->s_blocksize_bits;
395 offset *= csum_size;
396
397 while (size > 0) {
398 read_extent_buffer(path->nodes[0],
399 &sector_sum->sum,
400 ((unsigned long)item) +
401 offset, csum_size);
402 sector_sum->bytenr = start;
403
404 size -= root->sectorsize;
405 start += root->sectorsize;
406 offset += csum_size;
407 sector_sum++;
408 }
Mark Fasheh0678b612011-08-05 15:46:16 -0700409 list_add_tail(&sums->list, &tmplist);
Yan Zheng17d217f2008-12-12 10:03:38 -0500410 }
Yan Zheng17d217f2008-12-12 10:03:38 -0500411 path->slots[0]++;
412 }
413 ret = 0;
414fail:
Mark Fasheh0678b612011-08-05 15:46:16 -0700415 while (ret < 0 && !list_empty(&tmplist)) {
416 sums = list_entry(&tmplist, struct btrfs_ordered_sum, list);
417 list_del(&sums->list);
418 kfree(sums);
419 }
420 list_splice_tail(&tmplist, list);
421
Yan Zheng17d217f2008-12-12 10:03:38 -0500422 btrfs_free_path(path);
423 return ret;
424}
425
Chris Mason3edf7d32008-07-18 06:17:13 -0400426int btrfs_csum_one_bio(struct btrfs_root *root, struct inode *inode,
Chris Masond20f7042008-12-08 16:58:54 -0500427 struct bio *bio, u64 file_start, int contig)
Chris Masone0156402008-04-16 11:15:20 -0400428{
Chris Masone6dcd2d2008-07-17 12:53:50 -0400429 struct btrfs_ordered_sum *sums;
430 struct btrfs_sector_sum *sector_sum;
Chris Mason3edf7d32008-07-18 06:17:13 -0400431 struct btrfs_ordered_extent *ordered;
Chris Masone0156402008-04-16 11:15:20 -0400432 char *data;
433 struct bio_vec *bvec = bio->bi_io_vec;
434 int bio_index = 0;
Chris Mason3edf7d32008-07-18 06:17:13 -0400435 unsigned long total_bytes = 0;
436 unsigned long this_sum_bytes = 0;
437 u64 offset;
Chris Masond20f7042008-12-08 16:58:54 -0500438 u64 disk_bytenr;
Chris Masone0156402008-04-16 11:15:20 -0400439
Chris Masone6dcd2d2008-07-17 12:53:50 -0400440 WARN_ON(bio->bi_vcnt <= 0);
441 sums = kzalloc(btrfs_ordered_sum_size(root, bio->bi_size), GFP_NOFS);
Chris Masone0156402008-04-16 11:15:20 -0400442 if (!sums)
443 return -ENOMEM;
Chris Mason3edf7d32008-07-18 06:17:13 -0400444
Chris Masoned98b562008-07-22 23:06:42 -0400445 sector_sum = sums->sums;
Chris Masond20f7042008-12-08 16:58:54 -0500446 disk_bytenr = (u64)bio->bi_sector << 9;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400447 sums->len = bio->bi_size;
448 INIT_LIST_HEAD(&sums->list);
Chris Masond20f7042008-12-08 16:58:54 -0500449
450 if (contig)
451 offset = file_start;
452 else
453 offset = page_offset(bvec->bv_page) + bvec->bv_offset;
454
455 ordered = btrfs_lookup_ordered_extent(inode, offset);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100456 BUG_ON(!ordered); /* Logic error */
Chris Masond20f7042008-12-08 16:58:54 -0500457 sums->bytenr = ordered->start;
Chris Masone0156402008-04-16 11:15:20 -0400458
Chris Masond3977122009-01-05 21:25:51 -0500459 while (bio_index < bio->bi_vcnt) {
Chris Masond20f7042008-12-08 16:58:54 -0500460 if (!contig)
461 offset = page_offset(bvec->bv_page) + bvec->bv_offset;
462
463 if (!contig && (offset >= ordered->file_offset + ordered->len ||
464 offset < ordered->file_offset)) {
Chris Mason3edf7d32008-07-18 06:17:13 -0400465 unsigned long bytes_left;
466 sums->len = this_sum_bytes;
467 this_sum_bytes = 0;
468 btrfs_add_ordered_sum(inode, ordered, sums);
469 btrfs_put_ordered_extent(ordered);
470
471 bytes_left = bio->bi_size - total_bytes;
472
473 sums = kzalloc(btrfs_ordered_sum_size(root, bytes_left),
474 GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100475 BUG_ON(!sums); /* -ENOMEM */
Chris Masoned98b562008-07-22 23:06:42 -0400476 sector_sum = sums->sums;
Chris Mason3edf7d32008-07-18 06:17:13 -0400477 sums->len = bytes_left;
Chris Masond20f7042008-12-08 16:58:54 -0500478 ordered = btrfs_lookup_ordered_extent(inode, offset);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100479 BUG_ON(!ordered); /* Logic error */
Chris Masond20f7042008-12-08 16:58:54 -0500480 sums->bytenr = ordered->start;
Chris Mason3edf7d32008-07-18 06:17:13 -0400481 }
482
Cong Wang7ac687d2011-11-25 23:14:28 +0800483 data = kmap_atomic(bvec->bv_page);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400484 sector_sum->sum = ~(u32)0;
485 sector_sum->sum = btrfs_csum_data(root,
486 data + bvec->bv_offset,
487 sector_sum->sum,
488 bvec->bv_len);
Cong Wang7ac687d2011-11-25 23:14:28 +0800489 kunmap_atomic(data);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400490 btrfs_csum_final(sector_sum->sum,
491 (char *)&sector_sum->sum);
Chris Masond20f7042008-12-08 16:58:54 -0500492 sector_sum->bytenr = disk_bytenr;
Chris Masoned98b562008-07-22 23:06:42 -0400493
Chris Masone6dcd2d2008-07-17 12:53:50 -0400494 sector_sum++;
Chris Masone0156402008-04-16 11:15:20 -0400495 bio_index++;
Chris Mason3edf7d32008-07-18 06:17:13 -0400496 total_bytes += bvec->bv_len;
497 this_sum_bytes += bvec->bv_len;
Chris Masond20f7042008-12-08 16:58:54 -0500498 disk_bytenr += bvec->bv_len;
499 offset += bvec->bv_len;
Chris Masone0156402008-04-16 11:15:20 -0400500 bvec++;
501 }
Chris Masoned98b562008-07-22 23:06:42 -0400502 this_sum_bytes = 0;
Chris Mason3edf7d32008-07-18 06:17:13 -0400503 btrfs_add_ordered_sum(inode, ordered, sums);
504 btrfs_put_ordered_extent(ordered);
Chris Masone0156402008-04-16 11:15:20 -0400505 return 0;
506}
507
Chris Mason459931e2008-12-10 09:10:46 -0500508/*
509 * helper function for csum removal, this expects the
510 * key to describe the csum pointed to by the path, and it expects
511 * the csum to overlap the range [bytenr, len]
512 *
513 * The csum should not be entirely contained in the range and the
514 * range should not be entirely contained in the csum.
515 *
516 * This calls btrfs_truncate_item with the correct args based on the
517 * overlap, and fixes up the key as required.
518 */
Jeff Mahoney143bede2012-03-01 14:56:26 +0100519static noinline void truncate_one_csum(struct btrfs_trans_handle *trans,
520 struct btrfs_root *root,
521 struct btrfs_path *path,
522 struct btrfs_key *key,
523 u64 bytenr, u64 len)
Chris Mason459931e2008-12-10 09:10:46 -0500524{
525 struct extent_buffer *leaf;
David Sterba6c417612011-04-13 15:41:04 +0200526 u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy);
Chris Mason459931e2008-12-10 09:10:46 -0500527 u64 csum_end;
528 u64 end_byte = bytenr + len;
529 u32 blocksize_bits = root->fs_info->sb->s_blocksize_bits;
Chris Mason459931e2008-12-10 09:10:46 -0500530
531 leaf = path->nodes[0];
532 csum_end = btrfs_item_size_nr(leaf, path->slots[0]) / csum_size;
533 csum_end <<= root->fs_info->sb->s_blocksize_bits;
534 csum_end += key->offset;
535
536 if (key->offset < bytenr && csum_end <= end_byte) {
537 /*
538 * [ bytenr - len ]
539 * [ ]
540 * [csum ]
541 * A simple truncate off the end of the item
542 */
543 u32 new_size = (bytenr - key->offset) >> blocksize_bits;
544 new_size *= csum_size;
Jeff Mahoney143bede2012-03-01 14:56:26 +0100545 btrfs_truncate_item(trans, root, path, new_size, 1);
Chris Mason459931e2008-12-10 09:10:46 -0500546 } else if (key->offset >= bytenr && csum_end > end_byte &&
547 end_byte > key->offset) {
548 /*
549 * [ bytenr - len ]
550 * [ ]
551 * [csum ]
552 * we need to truncate from the beginning of the csum
553 */
554 u32 new_size = (csum_end - end_byte) >> blocksize_bits;
555 new_size *= csum_size;
556
Jeff Mahoney143bede2012-03-01 14:56:26 +0100557 btrfs_truncate_item(trans, root, path, new_size, 0);
Chris Mason459931e2008-12-10 09:10:46 -0500558
559 key->offset = end_byte;
Jeff Mahoney143bede2012-03-01 14:56:26 +0100560 btrfs_set_item_key_safe(trans, root, path, key);
Chris Mason459931e2008-12-10 09:10:46 -0500561 } else {
562 BUG();
563 }
Chris Mason459931e2008-12-10 09:10:46 -0500564}
565
566/*
567 * deletes the csum items from the csum tree for a given
568 * range of bytes.
569 */
570int btrfs_del_csums(struct btrfs_trans_handle *trans,
571 struct btrfs_root *root, u64 bytenr, u64 len)
572{
573 struct btrfs_path *path;
574 struct btrfs_key key;
575 u64 end_byte = bytenr + len;
576 u64 csum_end;
577 struct extent_buffer *leaf;
578 int ret;
David Sterba6c417612011-04-13 15:41:04 +0200579 u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy);
Chris Mason459931e2008-12-10 09:10:46 -0500580 int blocksize_bits = root->fs_info->sb->s_blocksize_bits;
581
582 root = root->fs_info->csum_root;
583
584 path = btrfs_alloc_path();
liubo2a29edc2011-01-26 06:22:08 +0000585 if (!path)
586 return -ENOMEM;
Chris Mason459931e2008-12-10 09:10:46 -0500587
Chris Masond3977122009-01-05 21:25:51 -0500588 while (1) {
Chris Mason459931e2008-12-10 09:10:46 -0500589 key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
590 key.offset = end_byte - 1;
591 key.type = BTRFS_EXTENT_CSUM_KEY;
592
Chris Masonb9473432009-03-13 11:00:37 -0400593 path->leave_spinning = 1;
Chris Mason459931e2008-12-10 09:10:46 -0500594 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
595 if (ret > 0) {
596 if (path->slots[0] == 0)
Tsutomu Itoh65a246c2011-05-19 04:37:44 +0000597 break;
Chris Mason459931e2008-12-10 09:10:46 -0500598 path->slots[0]--;
Josef Bacikad0397a2011-01-28 18:44:44 +0000599 } else if (ret < 0) {
Tsutomu Itoh65a246c2011-05-19 04:37:44 +0000600 break;
Chris Mason459931e2008-12-10 09:10:46 -0500601 }
Josef Bacikad0397a2011-01-28 18:44:44 +0000602
Chris Mason459931e2008-12-10 09:10:46 -0500603 leaf = path->nodes[0];
604 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
605
606 if (key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
607 key.type != BTRFS_EXTENT_CSUM_KEY) {
608 break;
609 }
610
611 if (key.offset >= end_byte)
612 break;
613
614 csum_end = btrfs_item_size_nr(leaf, path->slots[0]) / csum_size;
615 csum_end <<= blocksize_bits;
616 csum_end += key.offset;
617
618 /* this csum ends before we start, we're done */
619 if (csum_end <= bytenr)
620 break;
621
622 /* delete the entire item, it is inside our range */
623 if (key.offset >= bytenr && csum_end <= end_byte) {
624 ret = btrfs_del_item(trans, root, path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +0000625 if (ret)
626 goto out;
Chris Masondcbdd4d2008-12-16 13:51:01 -0500627 if (key.offset == bytenr)
628 break;
Chris Mason459931e2008-12-10 09:10:46 -0500629 } else if (key.offset < bytenr && csum_end > end_byte) {
630 unsigned long offset;
631 unsigned long shift_len;
632 unsigned long item_offset;
633 /*
634 * [ bytenr - len ]
635 * [csum ]
636 *
637 * Our bytes are in the middle of the csum,
638 * we need to split this item and insert a new one.
639 *
640 * But we can't drop the path because the
641 * csum could change, get removed, extended etc.
642 *
643 * The trick here is the max size of a csum item leaves
644 * enough room in the tree block for a single
645 * item header. So, we split the item in place,
646 * adding a new header pointing to the existing
647 * bytes. Then we loop around again and we have
648 * a nicely formed csum item that we can neatly
649 * truncate.
650 */
651 offset = (bytenr - key.offset) >> blocksize_bits;
652 offset *= csum_size;
653
654 shift_len = (len >> blocksize_bits) * csum_size;
655
656 item_offset = btrfs_item_ptr_offset(leaf,
657 path->slots[0]);
658
659 memset_extent_buffer(leaf, 0, item_offset + offset,
660 shift_len);
661 key.offset = bytenr;
662
663 /*
664 * btrfs_split_item returns -EAGAIN when the
665 * item changed size or key
666 */
667 ret = btrfs_split_item(trans, root, path, &key, offset);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100668 if (ret && ret != -EAGAIN) {
669 btrfs_abort_transaction(trans, root, ret);
670 goto out;
671 }
Chris Mason459931e2008-12-10 09:10:46 -0500672
673 key.offset = end_byte - 1;
674 } else {
Jeff Mahoney143bede2012-03-01 14:56:26 +0100675 truncate_one_csum(trans, root, path, &key, bytenr, len);
Chris Masondcbdd4d2008-12-16 13:51:01 -0500676 if (key.offset < bytenr)
677 break;
Chris Mason459931e2008-12-10 09:10:46 -0500678 }
David Sterbab3b4aa72011-04-21 01:20:15 +0200679 btrfs_release_path(path);
Chris Mason459931e2008-12-10 09:10:46 -0500680 }
Tsutomu Itoh65a246c2011-05-19 04:37:44 +0000681 ret = 0;
Chris Mason459931e2008-12-10 09:10:46 -0500682out:
683 btrfs_free_path(path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +0000684 return ret;
Chris Mason459931e2008-12-10 09:10:46 -0500685}
686
Chris Mason065631f2008-02-20 12:07:25 -0500687int btrfs_csum_file_blocks(struct btrfs_trans_handle *trans,
Chris Masond20f7042008-12-08 16:58:54 -0500688 struct btrfs_root *root,
Chris Masone6dcd2d2008-07-17 12:53:50 -0400689 struct btrfs_ordered_sum *sums)
Chris Masonf254e522007-03-29 15:15:27 -0400690{
Chris Masond20f7042008-12-08 16:58:54 -0500691 u64 bytenr;
Chris Masonf254e522007-03-29 15:15:27 -0400692 int ret;
693 struct btrfs_key file_key;
Chris Mason6567e832007-04-16 09:22:45 -0400694 struct btrfs_key found_key;
Chris Mason065631f2008-02-20 12:07:25 -0500695 u64 next_offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400696 u64 total_bytes = 0;
Chris Mason065631f2008-02-20 12:07:25 -0500697 int found_next;
Chris Mason5caf2a02007-04-02 11:20:42 -0400698 struct btrfs_path *path;
Chris Masonf254e522007-03-29 15:15:27 -0400699 struct btrfs_csum_item *item;
Chris Mason065631f2008-02-20 12:07:25 -0500700 struct btrfs_csum_item *item_end;
Chris Masonff79f812007-10-15 16:22:25 -0400701 struct extent_buffer *leaf = NULL;
Chris Mason6567e832007-04-16 09:22:45 -0400702 u64 csum_offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400703 struct btrfs_sector_sum *sector_sum;
Chris Masonf578d4b2007-10-25 15:42:56 -0400704 u32 nritems;
705 u32 ins_size;
David Sterba6c417612011-04-13 15:41:04 +0200706 u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy);
Chris Mason6e92f5e2008-02-20 12:07:25 -0500707
Chris Mason5caf2a02007-04-02 11:20:42 -0400708 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -0700709 if (!path)
710 return -ENOMEM;
711
Chris Masoned98b562008-07-22 23:06:42 -0400712 sector_sum = sums->sums;
Josef Bacik0e721102012-06-26 16:13:18 -0400713 trans->adding_csums = 1;
Chris Mason065631f2008-02-20 12:07:25 -0500714again:
715 next_offset = (u64)-1;
716 found_next = 0;
Chris Masond20f7042008-12-08 16:58:54 -0500717 file_key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
718 file_key.offset = sector_sum->bytenr;
719 bytenr = sector_sum->bytenr;
720 btrfs_set_key_type(&file_key, BTRFS_EXTENT_CSUM_KEY);
Chris Masona429e512007-04-18 16:15:28 -0400721
Chris Masond20f7042008-12-08 16:58:54 -0500722 item = btrfs_lookup_csum(trans, root, path, sector_sum->bytenr, 1);
Chris Masonff79f812007-10-15 16:22:25 -0400723 if (!IS_ERR(item)) {
724 leaf = path->nodes[0];
Chris Mason639cb582008-08-28 06:15:25 -0400725 ret = 0;
Chris Masona429e512007-04-18 16:15:28 -0400726 goto found;
Chris Masonff79f812007-10-15 16:22:25 -0400727 }
Chris Masona429e512007-04-18 16:15:28 -0400728 ret = PTR_ERR(item);
Yan, Zheng4a500fd2010-05-16 10:49:59 -0400729 if (ret != -EFBIG && ret != -ENOENT)
730 goto fail_unlock;
731
Chris Masona429e512007-04-18 16:15:28 -0400732 if (ret == -EFBIG) {
733 u32 item_size;
734 /* we found one, but it isn't big enough yet */
Chris Mason5f39d392007-10-15 16:14:19 -0400735 leaf = path->nodes[0];
736 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
Josef Bacik607d4322008-12-02 07:17:45 -0500737 if ((item_size / csum_size) >=
738 MAX_CSUM_ITEMS(root, csum_size)) {
Chris Masona429e512007-04-18 16:15:28 -0400739 /* already at max size, make a new one */
740 goto insert;
741 }
742 } else {
Chris Masonf578d4b2007-10-25 15:42:56 -0400743 int slot = path->slots[0] + 1;
Chris Masona429e512007-04-18 16:15:28 -0400744 /* we didn't find a csum item, insert one */
Chris Masonf578d4b2007-10-25 15:42:56 -0400745 nritems = btrfs_header_nritems(path->nodes[0]);
746 if (path->slots[0] >= nritems - 1) {
747 ret = btrfs_next_leaf(root, path);
Yanb56baf52007-10-29 12:01:05 -0400748 if (ret == 1)
Chris Masonf578d4b2007-10-25 15:42:56 -0400749 found_next = 1;
Yanb56baf52007-10-29 12:01:05 -0400750 if (ret != 0)
Chris Masonf578d4b2007-10-25 15:42:56 -0400751 goto insert;
Yanb56baf52007-10-29 12:01:05 -0400752 slot = 0;
Chris Masonf578d4b2007-10-25 15:42:56 -0400753 }
754 btrfs_item_key_to_cpu(path->nodes[0], &found_key, slot);
Chris Masond20f7042008-12-08 16:58:54 -0500755 if (found_key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
756 found_key.type != BTRFS_EXTENT_CSUM_KEY) {
Chris Masonf578d4b2007-10-25 15:42:56 -0400757 found_next = 1;
758 goto insert;
759 }
760 next_offset = found_key.offset;
761 found_next = 1;
Chris Masona429e512007-04-18 16:15:28 -0400762 goto insert;
763 }
764
765 /*
766 * at this point, we know the tree has an item, but it isn't big
767 * enough yet to put our csum in. Grow it
768 */
David Sterbab3b4aa72011-04-21 01:20:15 +0200769 btrfs_release_path(path);
Chris Mason6567e832007-04-16 09:22:45 -0400770 ret = btrfs_search_slot(trans, root, &file_key, path,
Josef Bacik607d4322008-12-02 07:17:45 -0500771 csum_size, 1);
Chris Mason6567e832007-04-16 09:22:45 -0400772 if (ret < 0)
Chris Mason53863232008-08-15 15:34:18 -0400773 goto fail_unlock;
Chris Mason459931e2008-12-10 09:10:46 -0500774
775 if (ret > 0) {
776 if (path->slots[0] == 0)
777 goto insert;
778 path->slots[0]--;
Chris Mason6567e832007-04-16 09:22:45 -0400779 }
Chris Mason459931e2008-12-10 09:10:46 -0500780
Chris Mason5f39d392007-10-15 16:14:19 -0400781 leaf = path->nodes[0];
782 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masond20f7042008-12-08 16:58:54 -0500783 csum_offset = (bytenr - found_key.offset) >>
Chris Mason6567e832007-04-16 09:22:45 -0400784 root->fs_info->sb->s_blocksize_bits;
Chris Mason459931e2008-12-10 09:10:46 -0500785
Chris Masond20f7042008-12-08 16:58:54 -0500786 if (btrfs_key_type(&found_key) != BTRFS_EXTENT_CSUM_KEY ||
787 found_key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
Josef Bacik607d4322008-12-02 07:17:45 -0500788 csum_offset >= MAX_CSUM_ITEMS(root, csum_size)) {
Chris Mason6567e832007-04-16 09:22:45 -0400789 goto insert;
790 }
Chris Mason459931e2008-12-10 09:10:46 -0500791
Chris Mason5f39d392007-10-15 16:14:19 -0400792 if (csum_offset >= btrfs_item_size_nr(leaf, path->slots[0]) /
Josef Bacik607d4322008-12-02 07:17:45 -0500793 csum_size) {
794 u32 diff = (csum_offset + 1) * csum_size;
Chris Mason459931e2008-12-10 09:10:46 -0500795
796 /*
797 * is the item big enough already? we dropped our lock
798 * before and need to recheck
799 */
800 if (diff < btrfs_item_size_nr(leaf, path->slots[0]))
801 goto csum;
802
Chris Mason5f39d392007-10-15 16:14:19 -0400803 diff = diff - btrfs_item_size_nr(leaf, path->slots[0]);
Chris Masond3977122009-01-05 21:25:51 -0500804 if (diff != csum_size)
Chris Mason3a686372007-05-24 13:35:57 -0400805 goto insert;
Chris Mason459931e2008-12-10 09:10:46 -0500806
Jeff Mahoney143bede2012-03-01 14:56:26 +0100807 btrfs_extend_item(trans, root, path, diff);
Chris Mason6567e832007-04-16 09:22:45 -0400808 goto csum;
809 }
810
811insert:
David Sterbab3b4aa72011-04-21 01:20:15 +0200812 btrfs_release_path(path);
Chris Mason6567e832007-04-16 09:22:45 -0400813 csum_offset = 0;
Chris Masonf578d4b2007-10-25 15:42:56 -0400814 if (found_next) {
Chris Masond20f7042008-12-08 16:58:54 -0500815 u64 tmp = total_bytes + root->sectorsize;
816 u64 next_sector = sector_sum->bytenr;
817 struct btrfs_sector_sum *next = sector_sum + 1;
818
Chris Masond3977122009-01-05 21:25:51 -0500819 while (tmp < sums->len) {
Chris Masond20f7042008-12-08 16:58:54 -0500820 if (next_sector + root->sectorsize != next->bytenr)
821 break;
822 tmp += root->sectorsize;
823 next_sector = next->bytenr;
824 next++;
825 }
826 tmp = min(tmp, next_offset - file_key.offset);
Chris Masonf578d4b2007-10-25 15:42:56 -0400827 tmp >>= root->fs_info->sb->s_blocksize_bits;
828 tmp = max((u64)1, tmp);
Josef Bacik607d4322008-12-02 07:17:45 -0500829 tmp = min(tmp, (u64)MAX_CSUM_ITEMS(root, csum_size));
830 ins_size = csum_size * tmp;
Chris Masonf578d4b2007-10-25 15:42:56 -0400831 } else {
Josef Bacik607d4322008-12-02 07:17:45 -0500832 ins_size = csum_size;
Chris Masonf578d4b2007-10-25 15:42:56 -0400833 }
Chris Masonb9473432009-03-13 11:00:37 -0400834 path->leave_spinning = 1;
Chris Mason5caf2a02007-04-02 11:20:42 -0400835 ret = btrfs_insert_empty_item(trans, root, path, &file_key,
Chris Masonf578d4b2007-10-25 15:42:56 -0400836 ins_size);
Chris Masonb9473432009-03-13 11:00:37 -0400837 path->leave_spinning = 0;
Chris Mason54aa1f42007-06-22 14:16:25 -0400838 if (ret < 0)
Chris Mason53863232008-08-15 15:34:18 -0400839 goto fail_unlock;
Chris Masona429e512007-04-18 16:15:28 -0400840 if (ret != 0) {
Chris Masona429e512007-04-18 16:15:28 -0400841 WARN_ON(1);
Chris Mason53863232008-08-15 15:34:18 -0400842 goto fail_unlock;
Chris Masona429e512007-04-18 16:15:28 -0400843 }
Chris Mason6567e832007-04-16 09:22:45 -0400844csum:
Chris Mason5f39d392007-10-15 16:14:19 -0400845 leaf = path->nodes[0];
846 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_csum_item);
Chris Masonf254e522007-03-29 15:15:27 -0400847 ret = 0;
Chris Mason509659c2007-05-10 12:36:17 -0400848 item = (struct btrfs_csum_item *)((unsigned char *)item +
Josef Bacik607d4322008-12-02 07:17:45 -0500849 csum_offset * csum_size);
Chris Masonb18c6682007-04-17 13:26:50 -0400850found:
Chris Mason065631f2008-02-20 12:07:25 -0500851 item_end = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_csum_item);
852 item_end = (struct btrfs_csum_item *)((unsigned char *)item_end +
853 btrfs_item_size_nr(leaf, path->slots[0]));
Chris Masone6dcd2d2008-07-17 12:53:50 -0400854next_sector:
Chris Masonaadfeb62008-01-29 09:10:27 -0500855
Chris Masona6591712011-07-19 12:04:14 -0400856 write_extent_buffer(leaf, &sector_sum->sum, (unsigned long)item, csum_size);
Chris Mason7f3c74f2008-07-18 12:01:11 -0400857
Chris Masone6dcd2d2008-07-17 12:53:50 -0400858 total_bytes += root->sectorsize;
859 sector_sum++;
860 if (total_bytes < sums->len) {
Chris Mason6e92f5e2008-02-20 12:07:25 -0500861 item = (struct btrfs_csum_item *)((char *)item +
Josef Bacik607d4322008-12-02 07:17:45 -0500862 csum_size);
Chris Masond20f7042008-12-08 16:58:54 -0500863 if (item < item_end && bytenr + PAGE_CACHE_SIZE ==
864 sector_sum->bytenr) {
865 bytenr = sector_sum->bytenr;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400866 goto next_sector;
Chris Mason2e1a9922008-02-20 15:44:32 -0500867 }
Chris Mason065631f2008-02-20 12:07:25 -0500868 }
Chris Masona6591712011-07-19 12:04:14 -0400869
Chris Mason5caf2a02007-04-02 11:20:42 -0400870 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400871 if (total_bytes < sums->len) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200872 btrfs_release_path(path);
Chris Masonb9473432009-03-13 11:00:37 -0400873 cond_resched();
Chris Mason065631f2008-02-20 12:07:25 -0500874 goto again;
875 }
Chris Mason53863232008-08-15 15:34:18 -0400876out:
Josef Bacik0e721102012-06-26 16:13:18 -0400877 trans->adding_csums = 0;
Chris Mason5caf2a02007-04-02 11:20:42 -0400878 btrfs_free_path(path);
Chris Masonf254e522007-03-29 15:15:27 -0400879 return ret;
Chris Mason53863232008-08-15 15:34:18 -0400880
881fail_unlock:
Chris Mason53863232008-08-15 15:34:18 -0400882 goto out;
Chris Masonf254e522007-03-29 15:15:27 -0400883}