blob: 90d4ee52cd458ac9f7bf87dfe4a34c99be27bc30 [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
Chris Masond3977122009-01-05 21:25:51 -050028#define MAX_CSUM_ITEMS(r, size) ((((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
32#define MAX_ORDERED_SUM_BYTES(r) ((PAGE_SIZE - \
33 sizeof(struct btrfs_ordered_sum)) / \
34 sizeof(struct btrfs_sector_sum) * \
35 (r)->sectorsize - (r)->sectorsize)
36
Chris Masonb18c6682007-04-17 13:26:50 -040037int btrfs_insert_file_extent(struct btrfs_trans_handle *trans,
Sage Weilf2eb0a22008-05-02 14:43:14 -040038 struct btrfs_root *root,
39 u64 objectid, u64 pos,
40 u64 disk_offset, u64 disk_num_bytes,
Chris Masonc8b97812008-10-29 14:49:59 -040041 u64 num_bytes, u64 offset, u64 ram_bytes,
42 u8 compression, u8 encryption, u16 other_encoding)
Chris Mason9f5fae22007-03-20 14:38:32 -040043{
Chris Masondee26a92007-03-26 16:00:06 -040044 int ret = 0;
45 struct btrfs_file_extent_item *item;
46 struct btrfs_key file_key;
Chris Mason5caf2a02007-04-02 11:20:42 -040047 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -040048 struct extent_buffer *leaf;
Chris Masondee26a92007-03-26 16:00:06 -040049
Chris Mason5caf2a02007-04-02 11:20:42 -040050 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +000051 if (!path)
52 return -ENOMEM;
Chris Masondee26a92007-03-26 16:00:06 -040053 file_key.objectid = objectid;
Chris Masonb18c6682007-04-17 13:26:50 -040054 file_key.offset = pos;
Chris Masondee26a92007-03-26 16:00:06 -040055 btrfs_set_key_type(&file_key, BTRFS_EXTENT_DATA_KEY);
56
Chris Masonb9473432009-03-13 11:00:37 -040057 path->leave_spinning = 1;
Chris Mason5caf2a02007-04-02 11:20:42 -040058 ret = btrfs_insert_empty_item(trans, root, path, &file_key,
Chris Masondee26a92007-03-26 16:00:06 -040059 sizeof(*item));
Chris Mason54aa1f42007-06-22 14:16:25 -040060 if (ret < 0)
61 goto out;
Chris Mason9773a782007-03-27 11:26:26 -040062 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -040063 leaf = path->nodes[0];
64 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masondee26a92007-03-26 16:00:06 -040065 struct btrfs_file_extent_item);
Sage Weilf2eb0a22008-05-02 14:43:14 -040066 btrfs_set_file_extent_disk_bytenr(leaf, item, disk_offset);
Chris Masondb945352007-10-15 16:15:53 -040067 btrfs_set_file_extent_disk_num_bytes(leaf, item, disk_num_bytes);
Sage Weilf2eb0a22008-05-02 14:43:14 -040068 btrfs_set_file_extent_offset(leaf, item, offset);
Chris Masondb945352007-10-15 16:15:53 -040069 btrfs_set_file_extent_num_bytes(leaf, item, num_bytes);
Chris Masonc8b97812008-10-29 14:49:59 -040070 btrfs_set_file_extent_ram_bytes(leaf, item, ram_bytes);
Chris Mason5f39d392007-10-15 16:14:19 -040071 btrfs_set_file_extent_generation(leaf, item, trans->transid);
72 btrfs_set_file_extent_type(leaf, item, BTRFS_FILE_EXTENT_REG);
Chris Masonc8b97812008-10-29 14:49:59 -040073 btrfs_set_file_extent_compression(leaf, item, compression);
74 btrfs_set_file_extent_encryption(leaf, item, encryption);
75 btrfs_set_file_extent_other_encoding(leaf, item, other_encoding);
76
Chris Mason5f39d392007-10-15 16:14:19 -040077 btrfs_mark_buffer_dirty(leaf);
Chris Mason54aa1f42007-06-22 14:16:25 -040078out:
Chris Mason5caf2a02007-04-02 11:20:42 -040079 btrfs_free_path(path);
Chris Mason54aa1f42007-06-22 14:16:25 -040080 return ret;
Chris Mason9f5fae22007-03-20 14:38:32 -040081}
Chris Masondee26a92007-03-26 16:00:06 -040082
Chris Masonb18c6682007-04-17 13:26:50 -040083struct btrfs_csum_item *btrfs_lookup_csum(struct btrfs_trans_handle *trans,
84 struct btrfs_root *root,
85 struct btrfs_path *path,
Chris Masond20f7042008-12-08 16:58:54 -050086 u64 bytenr, int cow)
Chris Mason6567e832007-04-16 09:22:45 -040087{
88 int ret;
89 struct btrfs_key file_key;
90 struct btrfs_key found_key;
91 struct btrfs_csum_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -040092 struct extent_buffer *leaf;
Chris Mason6567e832007-04-16 09:22:45 -040093 u64 csum_offset = 0;
Josef Bacik607d4322008-12-02 07:17:45 -050094 u16 csum_size =
95 btrfs_super_csum_size(&root->fs_info->super_copy);
Chris Masona429e512007-04-18 16:15:28 -040096 int csums_in_item;
Chris Mason6567e832007-04-16 09:22:45 -040097
Chris Masond20f7042008-12-08 16:58:54 -050098 file_key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
99 file_key.offset = bytenr;
100 btrfs_set_key_type(&file_key, BTRFS_EXTENT_CSUM_KEY);
Chris Masonb18c6682007-04-17 13:26:50 -0400101 ret = btrfs_search_slot(trans, root, &file_key, path, 0, cow);
Chris Mason6567e832007-04-16 09:22:45 -0400102 if (ret < 0)
103 goto fail;
Chris Mason5f39d392007-10-15 16:14:19 -0400104 leaf = path->nodes[0];
Chris Mason6567e832007-04-16 09:22:45 -0400105 if (ret > 0) {
106 ret = 1;
Chris Mason70b2bef2007-04-17 15:39:32 -0400107 if (path->slots[0] == 0)
Chris Mason6567e832007-04-16 09:22:45 -0400108 goto fail;
109 path->slots[0]--;
Chris Mason5f39d392007-10-15 16:14:19 -0400110 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masond20f7042008-12-08 16:58:54 -0500111 if (btrfs_key_type(&found_key) != BTRFS_EXTENT_CSUM_KEY)
Chris Mason6567e832007-04-16 09:22:45 -0400112 goto fail;
Chris Masond20f7042008-12-08 16:58:54 -0500113
114 csum_offset = (bytenr - found_key.offset) >>
Chris Mason6567e832007-04-16 09:22:45 -0400115 root->fs_info->sb->s_blocksize_bits;
Chris Mason5f39d392007-10-15 16:14:19 -0400116 csums_in_item = btrfs_item_size_nr(leaf, path->slots[0]);
Josef Bacik607d4322008-12-02 07:17:45 -0500117 csums_in_item /= csum_size;
Chris Masona429e512007-04-18 16:15:28 -0400118
119 if (csum_offset >= csums_in_item) {
120 ret = -EFBIG;
Chris Mason6567e832007-04-16 09:22:45 -0400121 goto fail;
122 }
123 }
124 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_csum_item);
Chris Mason509659c2007-05-10 12:36:17 -0400125 item = (struct btrfs_csum_item *)((unsigned char *)item +
Josef Bacik607d4322008-12-02 07:17:45 -0500126 csum_offset * csum_size);
Chris Mason6567e832007-04-16 09:22:45 -0400127 return item;
128fail:
129 if (ret > 0)
Chris Masonb18c6682007-04-17 13:26:50 -0400130 ret = -ENOENT;
Chris Mason6567e832007-04-16 09:22:45 -0400131 return ERR_PTR(ret);
132}
133
134
Chris Masondee26a92007-03-26 16:00:06 -0400135int btrfs_lookup_file_extent(struct btrfs_trans_handle *trans,
136 struct btrfs_root *root,
137 struct btrfs_path *path, u64 objectid,
Chris Mason9773a782007-03-27 11:26:26 -0400138 u64 offset, int mod)
Chris Masondee26a92007-03-26 16:00:06 -0400139{
140 int ret;
141 struct btrfs_key file_key;
142 int ins_len = mod < 0 ? -1 : 0;
143 int cow = mod != 0;
144
145 file_key.objectid = objectid;
Chris Mason70b2bef2007-04-17 15:39:32 -0400146 file_key.offset = offset;
Chris Masondee26a92007-03-26 16:00:06 -0400147 btrfs_set_key_type(&file_key, BTRFS_EXTENT_DATA_KEY);
148 ret = btrfs_search_slot(trans, root, &file_key, path, ins_len, cow);
149 return ret;
150}
Chris Masonf254e522007-03-29 15:15:27 -0400151
Yan Zheng17d217f2008-12-12 10:03:38 -0500152
Josef Bacik4b46fce2010-05-23 11:00:55 -0400153static int __btrfs_lookup_bio_sums(struct btrfs_root *root,
154 struct inode *inode, struct bio *bio,
155 u64 logical_offset, u32 *dst, int dio)
Chris Mason61b49442008-07-31 15:42:53 -0400156{
157 u32 sum;
158 struct bio_vec *bvec = bio->bi_io_vec;
159 int bio_index = 0;
Josef Bacik4b46fce2010-05-23 11:00:55 -0400160 u64 offset = 0;
Chris Mason61b49442008-07-31 15:42:53 -0400161 u64 item_start_offset = 0;
162 u64 item_last_offset = 0;
Chris Masond20f7042008-12-08 16:58:54 -0500163 u64 disk_bytenr;
Chris Mason61b49442008-07-31 15:42:53 -0400164 u32 diff;
Josef Bacik607d4322008-12-02 07:17:45 -0500165 u16 csum_size =
166 btrfs_super_csum_size(&root->fs_info->super_copy);
Chris Mason61b49442008-07-31 15:42:53 -0400167 int ret;
168 struct btrfs_path *path;
169 struct btrfs_csum_item *item = NULL;
170 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
171
172 path = btrfs_alloc_path();
Tsutomu Itohc2db1072011-03-01 06:48:31 +0000173 if (!path)
174 return -ENOMEM;
Chris Mason4d1b5fb2008-08-20 09:44:52 -0400175 if (bio->bi_size > PAGE_CACHE_SIZE * 8)
176 path->reada = 2;
Chris Mason61b49442008-07-31 15:42:53 -0400177
178 WARN_ON(bio->bi_vcnt <= 0);
179
Chris Masond20f7042008-12-08 16:58:54 -0500180 disk_bytenr = (u64)bio->bi_sector << 9;
Josef Bacik4b46fce2010-05-23 11:00:55 -0400181 if (dio)
182 offset = logical_offset;
Chris Masond3977122009-01-05 21:25:51 -0500183 while (bio_index < bio->bi_vcnt) {
Josef Bacik4b46fce2010-05-23 11:00:55 -0400184 if (!dio)
185 offset = page_offset(bvec->bv_page) + bvec->bv_offset;
Chris Masond20f7042008-12-08 16:58:54 -0500186 ret = btrfs_find_ordered_sum(inode, offset, disk_bytenr, &sum);
Chris Mason61b49442008-07-31 15:42:53 -0400187 if (ret == 0)
188 goto found;
189
Chris Masond20f7042008-12-08 16:58:54 -0500190 if (!item || disk_bytenr < item_start_offset ||
191 disk_bytenr >= item_last_offset) {
Chris Mason61b49442008-07-31 15:42:53 -0400192 struct btrfs_key found_key;
193 u32 item_size;
194
195 if (item)
David Sterbab3b4aa72011-04-21 01:20:15 +0200196 btrfs_release_path(path);
Chris Masond20f7042008-12-08 16:58:54 -0500197 item = btrfs_lookup_csum(NULL, root->fs_info->csum_root,
198 path, disk_bytenr, 0);
Chris Mason61b49442008-07-31 15:42:53 -0400199 if (IS_ERR(item)) {
200 ret = PTR_ERR(item);
201 if (ret == -ENOENT || ret == -EFBIG)
202 ret = 0;
203 sum = 0;
Yan Zheng17d217f2008-12-12 10:03:38 -0500204 if (BTRFS_I(inode)->root->root_key.objectid ==
205 BTRFS_DATA_RELOC_TREE_OBJECTID) {
206 set_extent_bits(io_tree, offset,
207 offset + bvec->bv_len - 1,
208 EXTENT_NODATASUM, GFP_NOFS);
209 } else {
Chris Masond3977122009-01-05 21:25:51 -0500210 printk(KERN_INFO "btrfs no csum found "
Li Zefan33345d012011-04-20 10:31:50 +0800211 "for inode %llu start %llu\n",
212 (unsigned long long)
213 btrfs_ino(inode),
Yan Zheng17d217f2008-12-12 10:03:38 -0500214 (unsigned long long)offset);
215 }
Chris Mason6dab8152008-08-04 08:35:53 -0400216 item = NULL;
David Sterbab3b4aa72011-04-21 01:20:15 +0200217 btrfs_release_path(path);
Chris Mason61b49442008-07-31 15:42:53 -0400218 goto found;
219 }
220 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
221 path->slots[0]);
222
223 item_start_offset = found_key.offset;
224 item_size = btrfs_item_size_nr(path->nodes[0],
225 path->slots[0]);
226 item_last_offset = item_start_offset +
Josef Bacik607d4322008-12-02 07:17:45 -0500227 (item_size / csum_size) *
Chris Mason61b49442008-07-31 15:42:53 -0400228 root->sectorsize;
229 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
230 struct btrfs_csum_item);
231 }
232 /*
233 * this byte range must be able to fit inside
234 * a single leaf so it will also fit inside a u32
235 */
Chris Masond20f7042008-12-08 16:58:54 -0500236 diff = disk_bytenr - item_start_offset;
Chris Mason61b49442008-07-31 15:42:53 -0400237 diff = diff / root->sectorsize;
Josef Bacik607d4322008-12-02 07:17:45 -0500238 diff = diff * csum_size;
Chris Mason61b49442008-07-31 15:42:53 -0400239
240 read_extent_buffer(path->nodes[0], &sum,
Chris Mason3de9d6b2008-08-04 23:17:27 -0400241 ((unsigned long)item) + diff,
Josef Bacik607d4322008-12-02 07:17:45 -0500242 csum_size);
Chris Mason61b49442008-07-31 15:42:53 -0400243found:
Chris Masond20f7042008-12-08 16:58:54 -0500244 if (dst)
245 *dst++ = sum;
246 else
247 set_state_private(io_tree, offset, sum);
248 disk_bytenr += bvec->bv_len;
Josef Bacik4b46fce2010-05-23 11:00:55 -0400249 offset += bvec->bv_len;
Chris Mason61b49442008-07-31 15:42:53 -0400250 bio_index++;
251 bvec++;
252 }
253 btrfs_free_path(path);
254 return 0;
255}
256
Josef Bacik4b46fce2010-05-23 11:00:55 -0400257int btrfs_lookup_bio_sums(struct btrfs_root *root, struct inode *inode,
258 struct bio *bio, u32 *dst)
259{
260 return __btrfs_lookup_bio_sums(root, inode, bio, 0, dst, 0);
261}
262
263int btrfs_lookup_bio_sums_dio(struct btrfs_root *root, struct inode *inode,
264 struct bio *bio, u64 offset, u32 *dst)
265{
266 return __btrfs_lookup_bio_sums(root, inode, bio, offset, dst, 1);
267}
268
Yan Zheng17d217f2008-12-12 10:03:38 -0500269int btrfs_lookup_csums_range(struct btrfs_root *root, u64 start, u64 end,
Arne Jansena2de7332011-03-08 14:14:00 +0100270 struct list_head *list, int search_commit)
Yan Zheng17d217f2008-12-12 10:03:38 -0500271{
272 struct btrfs_key key;
273 struct btrfs_path *path;
274 struct extent_buffer *leaf;
275 struct btrfs_ordered_sum *sums;
276 struct btrfs_sector_sum *sector_sum;
277 struct btrfs_csum_item *item;
278 unsigned long offset;
279 int ret;
280 size_t size;
281 u64 csum_end;
282 u16 csum_size = btrfs_super_csum_size(&root->fs_info->super_copy);
283
284 path = btrfs_alloc_path();
285 BUG_ON(!path);
286
Arne Jansena2de7332011-03-08 14:14:00 +0100287 if (search_commit) {
288 path->skip_locking = 1;
289 path->reada = 2;
290 path->search_commit_root = 1;
291 }
292
Yan Zheng17d217f2008-12-12 10:03:38 -0500293 key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
294 key.offset = start;
295 key.type = BTRFS_EXTENT_CSUM_KEY;
296
Yan Zheng07d400a2009-01-06 11:42:00 -0500297 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Yan Zheng17d217f2008-12-12 10:03:38 -0500298 if (ret < 0)
299 goto fail;
300 if (ret > 0 && path->slots[0] > 0) {
301 leaf = path->nodes[0];
302 btrfs_item_key_to_cpu(leaf, &key, path->slots[0] - 1);
303 if (key.objectid == BTRFS_EXTENT_CSUM_OBJECTID &&
304 key.type == BTRFS_EXTENT_CSUM_KEY) {
305 offset = (start - key.offset) >>
306 root->fs_info->sb->s_blocksize_bits;
307 if (offset * csum_size <
308 btrfs_item_size_nr(leaf, path->slots[0] - 1))
309 path->slots[0]--;
310 }
311 }
312
313 while (start <= end) {
314 leaf = path->nodes[0];
315 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
Yan Zheng07d400a2009-01-06 11:42:00 -0500316 ret = btrfs_next_leaf(root, path);
Yan Zheng17d217f2008-12-12 10:03:38 -0500317 if (ret < 0)
318 goto fail;
319 if (ret > 0)
320 break;
321 leaf = path->nodes[0];
322 }
323
324 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
325 if (key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
326 key.type != BTRFS_EXTENT_CSUM_KEY)
327 break;
328
329 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
330 if (key.offset > end)
331 break;
332
333 if (key.offset > start)
334 start = key.offset;
335
336 size = btrfs_item_size_nr(leaf, path->slots[0]);
337 csum_end = key.offset + (size / csum_size) * root->sectorsize;
Yan Zheng87b29b22008-12-17 10:21:48 -0500338 if (csum_end <= start) {
339 path->slots[0]++;
340 continue;
341 }
Yan Zheng17d217f2008-12-12 10:03:38 -0500342
Yan Zheng07d400a2009-01-06 11:42:00 -0500343 csum_end = min(csum_end, end + 1);
Yan Zheng17d217f2008-12-12 10:03:38 -0500344 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
345 struct btrfs_csum_item);
Yan Zheng07d400a2009-01-06 11:42:00 -0500346 while (start < csum_end) {
347 size = min_t(size_t, csum_end - start,
348 MAX_ORDERED_SUM_BYTES(root));
349 sums = kzalloc(btrfs_ordered_sum_size(root, size),
350 GFP_NOFS);
351 BUG_ON(!sums);
Yan Zheng17d217f2008-12-12 10:03:38 -0500352
Yan Zheng07d400a2009-01-06 11:42:00 -0500353 sector_sum = sums->sums;
354 sums->bytenr = start;
355 sums->len = size;
356
357 offset = (start - key.offset) >>
358 root->fs_info->sb->s_blocksize_bits;
359 offset *= csum_size;
360
361 while (size > 0) {
362 read_extent_buffer(path->nodes[0],
363 &sector_sum->sum,
364 ((unsigned long)item) +
365 offset, csum_size);
366 sector_sum->bytenr = start;
367
368 size -= root->sectorsize;
369 start += root->sectorsize;
370 offset += csum_size;
371 sector_sum++;
372 }
373 list_add_tail(&sums->list, list);
Yan Zheng17d217f2008-12-12 10:03:38 -0500374 }
Yan Zheng17d217f2008-12-12 10:03:38 -0500375 path->slots[0]++;
376 }
377 ret = 0;
378fail:
379 btrfs_free_path(path);
380 return ret;
381}
382
Chris Mason3edf7d32008-07-18 06:17:13 -0400383int btrfs_csum_one_bio(struct btrfs_root *root, struct inode *inode,
Chris Masond20f7042008-12-08 16:58:54 -0500384 struct bio *bio, u64 file_start, int contig)
Chris Masone0156402008-04-16 11:15:20 -0400385{
Chris Masone6dcd2d2008-07-17 12:53:50 -0400386 struct btrfs_ordered_sum *sums;
387 struct btrfs_sector_sum *sector_sum;
Chris Mason3edf7d32008-07-18 06:17:13 -0400388 struct btrfs_ordered_extent *ordered;
Chris Masone0156402008-04-16 11:15:20 -0400389 char *data;
390 struct bio_vec *bvec = bio->bi_io_vec;
391 int bio_index = 0;
Chris Mason3edf7d32008-07-18 06:17:13 -0400392 unsigned long total_bytes = 0;
393 unsigned long this_sum_bytes = 0;
394 u64 offset;
Chris Masond20f7042008-12-08 16:58:54 -0500395 u64 disk_bytenr;
Chris Masone0156402008-04-16 11:15:20 -0400396
Chris Masone6dcd2d2008-07-17 12:53:50 -0400397 WARN_ON(bio->bi_vcnt <= 0);
398 sums = kzalloc(btrfs_ordered_sum_size(root, bio->bi_size), GFP_NOFS);
Chris Masone0156402008-04-16 11:15:20 -0400399 if (!sums)
400 return -ENOMEM;
Chris Mason3edf7d32008-07-18 06:17:13 -0400401
Chris Masoned98b562008-07-22 23:06:42 -0400402 sector_sum = sums->sums;
Chris Masond20f7042008-12-08 16:58:54 -0500403 disk_bytenr = (u64)bio->bi_sector << 9;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400404 sums->len = bio->bi_size;
405 INIT_LIST_HEAD(&sums->list);
Chris Masond20f7042008-12-08 16:58:54 -0500406
407 if (contig)
408 offset = file_start;
409 else
410 offset = page_offset(bvec->bv_page) + bvec->bv_offset;
411
412 ordered = btrfs_lookup_ordered_extent(inode, offset);
Chris Mason3edf7d32008-07-18 06:17:13 -0400413 BUG_ON(!ordered);
Chris Masond20f7042008-12-08 16:58:54 -0500414 sums->bytenr = ordered->start;
Chris Masone0156402008-04-16 11:15:20 -0400415
Chris Masond3977122009-01-05 21:25:51 -0500416 while (bio_index < bio->bi_vcnt) {
Chris Masond20f7042008-12-08 16:58:54 -0500417 if (!contig)
418 offset = page_offset(bvec->bv_page) + bvec->bv_offset;
419
420 if (!contig && (offset >= ordered->file_offset + ordered->len ||
421 offset < ordered->file_offset)) {
Chris Mason3edf7d32008-07-18 06:17:13 -0400422 unsigned long bytes_left;
423 sums->len = this_sum_bytes;
424 this_sum_bytes = 0;
425 btrfs_add_ordered_sum(inode, ordered, sums);
426 btrfs_put_ordered_extent(ordered);
427
428 bytes_left = bio->bi_size - total_bytes;
429
430 sums = kzalloc(btrfs_ordered_sum_size(root, bytes_left),
431 GFP_NOFS);
432 BUG_ON(!sums);
Chris Masoned98b562008-07-22 23:06:42 -0400433 sector_sum = sums->sums;
Chris Mason3edf7d32008-07-18 06:17:13 -0400434 sums->len = bytes_left;
Chris Masond20f7042008-12-08 16:58:54 -0500435 ordered = btrfs_lookup_ordered_extent(inode, offset);
Chris Mason3edf7d32008-07-18 06:17:13 -0400436 BUG_ON(!ordered);
Chris Masond20f7042008-12-08 16:58:54 -0500437 sums->bytenr = ordered->start;
Chris Mason3edf7d32008-07-18 06:17:13 -0400438 }
439
Chris Masone0156402008-04-16 11:15:20 -0400440 data = kmap_atomic(bvec->bv_page, KM_USER0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400441 sector_sum->sum = ~(u32)0;
442 sector_sum->sum = btrfs_csum_data(root,
443 data + bvec->bv_offset,
444 sector_sum->sum,
445 bvec->bv_len);
Chris Masone0156402008-04-16 11:15:20 -0400446 kunmap_atomic(data, KM_USER0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400447 btrfs_csum_final(sector_sum->sum,
448 (char *)&sector_sum->sum);
Chris Masond20f7042008-12-08 16:58:54 -0500449 sector_sum->bytenr = disk_bytenr;
Chris Masoned98b562008-07-22 23:06:42 -0400450
Chris Masone6dcd2d2008-07-17 12:53:50 -0400451 sector_sum++;
Chris Masone0156402008-04-16 11:15:20 -0400452 bio_index++;
Chris Mason3edf7d32008-07-18 06:17:13 -0400453 total_bytes += bvec->bv_len;
454 this_sum_bytes += bvec->bv_len;
Chris Masond20f7042008-12-08 16:58:54 -0500455 disk_bytenr += bvec->bv_len;
456 offset += bvec->bv_len;
Chris Masone0156402008-04-16 11:15:20 -0400457 bvec++;
458 }
Chris Masoned98b562008-07-22 23:06:42 -0400459 this_sum_bytes = 0;
Chris Mason3edf7d32008-07-18 06:17:13 -0400460 btrfs_add_ordered_sum(inode, ordered, sums);
461 btrfs_put_ordered_extent(ordered);
Chris Masone0156402008-04-16 11:15:20 -0400462 return 0;
463}
464
Chris Mason459931e2008-12-10 09:10:46 -0500465/*
466 * helper function for csum removal, this expects the
467 * key to describe the csum pointed to by the path, and it expects
468 * the csum to overlap the range [bytenr, len]
469 *
470 * The csum should not be entirely contained in the range and the
471 * range should not be entirely contained in the csum.
472 *
473 * This calls btrfs_truncate_item with the correct args based on the
474 * overlap, and fixes up the key as required.
475 */
476static noinline int truncate_one_csum(struct btrfs_trans_handle *trans,
477 struct btrfs_root *root,
478 struct btrfs_path *path,
479 struct btrfs_key *key,
480 u64 bytenr, u64 len)
481{
482 struct extent_buffer *leaf;
483 u16 csum_size =
484 btrfs_super_csum_size(&root->fs_info->super_copy);
485 u64 csum_end;
486 u64 end_byte = bytenr + len;
487 u32 blocksize_bits = root->fs_info->sb->s_blocksize_bits;
488 int ret;
489
490 leaf = path->nodes[0];
491 csum_end = btrfs_item_size_nr(leaf, path->slots[0]) / csum_size;
492 csum_end <<= root->fs_info->sb->s_blocksize_bits;
493 csum_end += key->offset;
494
495 if (key->offset < bytenr && csum_end <= end_byte) {
496 /*
497 * [ bytenr - len ]
498 * [ ]
499 * [csum ]
500 * A simple truncate off the end of the item
501 */
502 u32 new_size = (bytenr - key->offset) >> blocksize_bits;
503 new_size *= csum_size;
504 ret = btrfs_truncate_item(trans, root, path, new_size, 1);
Chris Mason459931e2008-12-10 09:10:46 -0500505 } else if (key->offset >= bytenr && csum_end > end_byte &&
506 end_byte > key->offset) {
507 /*
508 * [ bytenr - len ]
509 * [ ]
510 * [csum ]
511 * we need to truncate from the beginning of the csum
512 */
513 u32 new_size = (csum_end - end_byte) >> blocksize_bits;
514 new_size *= csum_size;
515
516 ret = btrfs_truncate_item(trans, root, path, new_size, 0);
Chris Mason459931e2008-12-10 09:10:46 -0500517
518 key->offset = end_byte;
519 ret = btrfs_set_item_key_safe(trans, root, path, key);
520 BUG_ON(ret);
521 } else {
522 BUG();
523 }
524 return 0;
525}
526
527/*
528 * deletes the csum items from the csum tree for a given
529 * range of bytes.
530 */
531int btrfs_del_csums(struct btrfs_trans_handle *trans,
532 struct btrfs_root *root, u64 bytenr, u64 len)
533{
534 struct btrfs_path *path;
535 struct btrfs_key key;
536 u64 end_byte = bytenr + len;
537 u64 csum_end;
538 struct extent_buffer *leaf;
539 int ret;
540 u16 csum_size =
541 btrfs_super_csum_size(&root->fs_info->super_copy);
542 int blocksize_bits = root->fs_info->sb->s_blocksize_bits;
543
544 root = root->fs_info->csum_root;
545
546 path = btrfs_alloc_path();
liubo2a29edc2011-01-26 06:22:08 +0000547 if (!path)
548 return -ENOMEM;
Chris Mason459931e2008-12-10 09:10:46 -0500549
Chris Masond3977122009-01-05 21:25:51 -0500550 while (1) {
Chris Mason459931e2008-12-10 09:10:46 -0500551 key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
552 key.offset = end_byte - 1;
553 key.type = BTRFS_EXTENT_CSUM_KEY;
554
Chris Masonb9473432009-03-13 11:00:37 -0400555 path->leave_spinning = 1;
Chris Mason459931e2008-12-10 09:10:46 -0500556 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
557 if (ret > 0) {
558 if (path->slots[0] == 0)
Tsutomu Itoh65a246c2011-05-19 04:37:44 +0000559 break;
Chris Mason459931e2008-12-10 09:10:46 -0500560 path->slots[0]--;
Josef Bacikad0397a2011-01-28 18:44:44 +0000561 } else if (ret < 0) {
Tsutomu Itoh65a246c2011-05-19 04:37:44 +0000562 break;
Chris Mason459931e2008-12-10 09:10:46 -0500563 }
Josef Bacikad0397a2011-01-28 18:44:44 +0000564
Chris Mason459931e2008-12-10 09:10:46 -0500565 leaf = path->nodes[0];
566 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
567
568 if (key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
569 key.type != BTRFS_EXTENT_CSUM_KEY) {
570 break;
571 }
572
573 if (key.offset >= end_byte)
574 break;
575
576 csum_end = btrfs_item_size_nr(leaf, path->slots[0]) / csum_size;
577 csum_end <<= blocksize_bits;
578 csum_end += key.offset;
579
580 /* this csum ends before we start, we're done */
581 if (csum_end <= bytenr)
582 break;
583
584 /* delete the entire item, it is inside our range */
585 if (key.offset >= bytenr && csum_end <= end_byte) {
586 ret = btrfs_del_item(trans, root, path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +0000587 if (ret)
588 goto out;
Chris Masondcbdd4d2008-12-16 13:51:01 -0500589 if (key.offset == bytenr)
590 break;
Chris Mason459931e2008-12-10 09:10:46 -0500591 } else if (key.offset < bytenr && csum_end > end_byte) {
592 unsigned long offset;
593 unsigned long shift_len;
594 unsigned long item_offset;
595 /*
596 * [ bytenr - len ]
597 * [csum ]
598 *
599 * Our bytes are in the middle of the csum,
600 * we need to split this item and insert a new one.
601 *
602 * But we can't drop the path because the
603 * csum could change, get removed, extended etc.
604 *
605 * The trick here is the max size of a csum item leaves
606 * enough room in the tree block for a single
607 * item header. So, we split the item in place,
608 * adding a new header pointing to the existing
609 * bytes. Then we loop around again and we have
610 * a nicely formed csum item that we can neatly
611 * truncate.
612 */
613 offset = (bytenr - key.offset) >> blocksize_bits;
614 offset *= csum_size;
615
616 shift_len = (len >> blocksize_bits) * csum_size;
617
618 item_offset = btrfs_item_ptr_offset(leaf,
619 path->slots[0]);
620
621 memset_extent_buffer(leaf, 0, item_offset + offset,
622 shift_len);
623 key.offset = bytenr;
624
625 /*
626 * btrfs_split_item returns -EAGAIN when the
627 * item changed size or key
628 */
629 ret = btrfs_split_item(trans, root, path, &key, offset);
630 BUG_ON(ret && ret != -EAGAIN);
631
632 key.offset = end_byte - 1;
633 } else {
634 ret = truncate_one_csum(trans, root, path,
635 &key, bytenr, len);
636 BUG_ON(ret);
Chris Masondcbdd4d2008-12-16 13:51:01 -0500637 if (key.offset < bytenr)
638 break;
Chris Mason459931e2008-12-10 09:10:46 -0500639 }
David Sterbab3b4aa72011-04-21 01:20:15 +0200640 btrfs_release_path(path);
Chris Mason459931e2008-12-10 09:10:46 -0500641 }
Tsutomu Itoh65a246c2011-05-19 04:37:44 +0000642 ret = 0;
Chris Mason459931e2008-12-10 09:10:46 -0500643out:
644 btrfs_free_path(path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +0000645 return ret;
Chris Mason459931e2008-12-10 09:10:46 -0500646}
647
Chris Mason065631f2008-02-20 12:07:25 -0500648int btrfs_csum_file_blocks(struct btrfs_trans_handle *trans,
Chris Masond20f7042008-12-08 16:58:54 -0500649 struct btrfs_root *root,
Chris Masone6dcd2d2008-07-17 12:53:50 -0400650 struct btrfs_ordered_sum *sums)
Chris Masonf254e522007-03-29 15:15:27 -0400651{
Chris Masond20f7042008-12-08 16:58:54 -0500652 u64 bytenr;
Chris Masonf254e522007-03-29 15:15:27 -0400653 int ret;
654 struct btrfs_key file_key;
Chris Mason6567e832007-04-16 09:22:45 -0400655 struct btrfs_key found_key;
Chris Mason065631f2008-02-20 12:07:25 -0500656 u64 next_offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400657 u64 total_bytes = 0;
Chris Mason065631f2008-02-20 12:07:25 -0500658 int found_next;
Chris Mason5caf2a02007-04-02 11:20:42 -0400659 struct btrfs_path *path;
Chris Masonf254e522007-03-29 15:15:27 -0400660 struct btrfs_csum_item *item;
Chris Mason065631f2008-02-20 12:07:25 -0500661 struct btrfs_csum_item *item_end;
Chris Masonff79f812007-10-15 16:22:25 -0400662 struct extent_buffer *leaf = NULL;
Chris Mason6567e832007-04-16 09:22:45 -0400663 u64 csum_offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400664 struct btrfs_sector_sum *sector_sum;
Chris Masonf578d4b2007-10-25 15:42:56 -0400665 u32 nritems;
666 u32 ins_size;
Chris Mason6e92f5e2008-02-20 12:07:25 -0500667 char *eb_map;
668 char *eb_token;
669 unsigned long map_len;
670 unsigned long map_start;
Josef Bacik607d4322008-12-02 07:17:45 -0500671 u16 csum_size =
672 btrfs_super_csum_size(&root->fs_info->super_copy);
Chris Mason6e92f5e2008-02-20 12:07:25 -0500673
Chris Mason5caf2a02007-04-02 11:20:42 -0400674 path = btrfs_alloc_path();
675 BUG_ON(!path);
Chris Masoned98b562008-07-22 23:06:42 -0400676 sector_sum = sums->sums;
Chris Mason065631f2008-02-20 12:07:25 -0500677again:
678 next_offset = (u64)-1;
679 found_next = 0;
Chris Masond20f7042008-12-08 16:58:54 -0500680 file_key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
681 file_key.offset = sector_sum->bytenr;
682 bytenr = sector_sum->bytenr;
683 btrfs_set_key_type(&file_key, BTRFS_EXTENT_CSUM_KEY);
Chris Masona429e512007-04-18 16:15:28 -0400684
Chris Masond20f7042008-12-08 16:58:54 -0500685 item = btrfs_lookup_csum(trans, root, path, sector_sum->bytenr, 1);
Chris Masonff79f812007-10-15 16:22:25 -0400686 if (!IS_ERR(item)) {
687 leaf = path->nodes[0];
Chris Mason639cb582008-08-28 06:15:25 -0400688 ret = 0;
Chris Masona429e512007-04-18 16:15:28 -0400689 goto found;
Chris Masonff79f812007-10-15 16:22:25 -0400690 }
Chris Masona429e512007-04-18 16:15:28 -0400691 ret = PTR_ERR(item);
Yan, Zheng4a500fd2010-05-16 10:49:59 -0400692 if (ret != -EFBIG && ret != -ENOENT)
693 goto fail_unlock;
694
Chris Masona429e512007-04-18 16:15:28 -0400695 if (ret == -EFBIG) {
696 u32 item_size;
697 /* we found one, but it isn't big enough yet */
Chris Mason5f39d392007-10-15 16:14:19 -0400698 leaf = path->nodes[0];
699 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
Josef Bacik607d4322008-12-02 07:17:45 -0500700 if ((item_size / csum_size) >=
701 MAX_CSUM_ITEMS(root, csum_size)) {
Chris Masona429e512007-04-18 16:15:28 -0400702 /* already at max size, make a new one */
703 goto insert;
704 }
705 } else {
Chris Masonf578d4b2007-10-25 15:42:56 -0400706 int slot = path->slots[0] + 1;
Chris Masona429e512007-04-18 16:15:28 -0400707 /* we didn't find a csum item, insert one */
Chris Masonf578d4b2007-10-25 15:42:56 -0400708 nritems = btrfs_header_nritems(path->nodes[0]);
709 if (path->slots[0] >= nritems - 1) {
710 ret = btrfs_next_leaf(root, path);
Yanb56baf52007-10-29 12:01:05 -0400711 if (ret == 1)
Chris Masonf578d4b2007-10-25 15:42:56 -0400712 found_next = 1;
Yanb56baf52007-10-29 12:01:05 -0400713 if (ret != 0)
Chris Masonf578d4b2007-10-25 15:42:56 -0400714 goto insert;
Yanb56baf52007-10-29 12:01:05 -0400715 slot = 0;
Chris Masonf578d4b2007-10-25 15:42:56 -0400716 }
717 btrfs_item_key_to_cpu(path->nodes[0], &found_key, slot);
Chris Masond20f7042008-12-08 16:58:54 -0500718 if (found_key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
719 found_key.type != BTRFS_EXTENT_CSUM_KEY) {
Chris Masonf578d4b2007-10-25 15:42:56 -0400720 found_next = 1;
721 goto insert;
722 }
723 next_offset = found_key.offset;
724 found_next = 1;
Chris Masona429e512007-04-18 16:15:28 -0400725 goto insert;
726 }
727
728 /*
729 * at this point, we know the tree has an item, but it isn't big
730 * enough yet to put our csum in. Grow it
731 */
David Sterbab3b4aa72011-04-21 01:20:15 +0200732 btrfs_release_path(path);
Chris Mason6567e832007-04-16 09:22:45 -0400733 ret = btrfs_search_slot(trans, root, &file_key, path,
Josef Bacik607d4322008-12-02 07:17:45 -0500734 csum_size, 1);
Chris Mason6567e832007-04-16 09:22:45 -0400735 if (ret < 0)
Chris Mason53863232008-08-15 15:34:18 -0400736 goto fail_unlock;
Chris Mason459931e2008-12-10 09:10:46 -0500737
738 if (ret > 0) {
739 if (path->slots[0] == 0)
740 goto insert;
741 path->slots[0]--;
Chris Mason6567e832007-04-16 09:22:45 -0400742 }
Chris Mason459931e2008-12-10 09:10:46 -0500743
Chris Mason5f39d392007-10-15 16:14:19 -0400744 leaf = path->nodes[0];
745 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masond20f7042008-12-08 16:58:54 -0500746 csum_offset = (bytenr - found_key.offset) >>
Chris Mason6567e832007-04-16 09:22:45 -0400747 root->fs_info->sb->s_blocksize_bits;
Chris Mason459931e2008-12-10 09:10:46 -0500748
Chris Masond20f7042008-12-08 16:58:54 -0500749 if (btrfs_key_type(&found_key) != BTRFS_EXTENT_CSUM_KEY ||
750 found_key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
Josef Bacik607d4322008-12-02 07:17:45 -0500751 csum_offset >= MAX_CSUM_ITEMS(root, csum_size)) {
Chris Mason6567e832007-04-16 09:22:45 -0400752 goto insert;
753 }
Chris Mason459931e2008-12-10 09:10:46 -0500754
Chris Mason5f39d392007-10-15 16:14:19 -0400755 if (csum_offset >= btrfs_item_size_nr(leaf, path->slots[0]) /
Josef Bacik607d4322008-12-02 07:17:45 -0500756 csum_size) {
757 u32 diff = (csum_offset + 1) * csum_size;
Chris Mason459931e2008-12-10 09:10:46 -0500758
759 /*
760 * is the item big enough already? we dropped our lock
761 * before and need to recheck
762 */
763 if (diff < btrfs_item_size_nr(leaf, path->slots[0]))
764 goto csum;
765
Chris Mason5f39d392007-10-15 16:14:19 -0400766 diff = diff - btrfs_item_size_nr(leaf, path->slots[0]);
Chris Masond3977122009-01-05 21:25:51 -0500767 if (diff != csum_size)
Chris Mason3a686372007-05-24 13:35:57 -0400768 goto insert;
Chris Mason459931e2008-12-10 09:10:46 -0500769
Chris Masona429e512007-04-18 16:15:28 -0400770 ret = btrfs_extend_item(trans, root, path, diff);
Chris Mason6567e832007-04-16 09:22:45 -0400771 goto csum;
772 }
773
774insert:
David Sterbab3b4aa72011-04-21 01:20:15 +0200775 btrfs_release_path(path);
Chris Mason6567e832007-04-16 09:22:45 -0400776 csum_offset = 0;
Chris Masonf578d4b2007-10-25 15:42:56 -0400777 if (found_next) {
Chris Masond20f7042008-12-08 16:58:54 -0500778 u64 tmp = total_bytes + root->sectorsize;
779 u64 next_sector = sector_sum->bytenr;
780 struct btrfs_sector_sum *next = sector_sum + 1;
781
Chris Masond3977122009-01-05 21:25:51 -0500782 while (tmp < sums->len) {
Chris Masond20f7042008-12-08 16:58:54 -0500783 if (next_sector + root->sectorsize != next->bytenr)
784 break;
785 tmp += root->sectorsize;
786 next_sector = next->bytenr;
787 next++;
788 }
789 tmp = min(tmp, next_offset - file_key.offset);
Chris Masonf578d4b2007-10-25 15:42:56 -0400790 tmp >>= root->fs_info->sb->s_blocksize_bits;
791 tmp = max((u64)1, tmp);
Josef Bacik607d4322008-12-02 07:17:45 -0500792 tmp = min(tmp, (u64)MAX_CSUM_ITEMS(root, csum_size));
793 ins_size = csum_size * tmp;
Chris Masonf578d4b2007-10-25 15:42:56 -0400794 } else {
Josef Bacik607d4322008-12-02 07:17:45 -0500795 ins_size = csum_size;
Chris Masonf578d4b2007-10-25 15:42:56 -0400796 }
Chris Masonb9473432009-03-13 11:00:37 -0400797 path->leave_spinning = 1;
Chris Mason5caf2a02007-04-02 11:20:42 -0400798 ret = btrfs_insert_empty_item(trans, root, path, &file_key,
Chris Masonf578d4b2007-10-25 15:42:56 -0400799 ins_size);
Chris Masonb9473432009-03-13 11:00:37 -0400800 path->leave_spinning = 0;
Chris Mason54aa1f42007-06-22 14:16:25 -0400801 if (ret < 0)
Chris Mason53863232008-08-15 15:34:18 -0400802 goto fail_unlock;
Chris Masona429e512007-04-18 16:15:28 -0400803 if (ret != 0) {
Chris Masona429e512007-04-18 16:15:28 -0400804 WARN_ON(1);
Chris Mason53863232008-08-15 15:34:18 -0400805 goto fail_unlock;
Chris Masona429e512007-04-18 16:15:28 -0400806 }
Chris Mason6567e832007-04-16 09:22:45 -0400807csum:
Chris Mason5f39d392007-10-15 16:14:19 -0400808 leaf = path->nodes[0];
809 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_csum_item);
Chris Masonf254e522007-03-29 15:15:27 -0400810 ret = 0;
Chris Mason509659c2007-05-10 12:36:17 -0400811 item = (struct btrfs_csum_item *)((unsigned char *)item +
Josef Bacik607d4322008-12-02 07:17:45 -0500812 csum_offset * csum_size);
Chris Masonb18c6682007-04-17 13:26:50 -0400813found:
Chris Mason065631f2008-02-20 12:07:25 -0500814 item_end = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_csum_item);
815 item_end = (struct btrfs_csum_item *)((unsigned char *)item_end +
816 btrfs_item_size_nr(leaf, path->slots[0]));
Chris Mason6e92f5e2008-02-20 12:07:25 -0500817 eb_token = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400818next_sector:
Chris Masonaadfeb62008-01-29 09:10:27 -0500819
Chris Mason6e92f5e2008-02-20 12:07:25 -0500820 if (!eb_token ||
Josef Bacik607d4322008-12-02 07:17:45 -0500821 (unsigned long)item + csum_size >= map_start + map_len) {
Chris Mason6e92f5e2008-02-20 12:07:25 -0500822 int err;
823
824 if (eb_token)
Chris Masoneb209782008-02-21 09:30:08 -0500825 unmap_extent_buffer(leaf, eb_token, KM_USER1);
Chris Mason6e92f5e2008-02-20 12:07:25 -0500826 eb_token = NULL;
827 err = map_private_extent_buffer(leaf, (unsigned long)item,
Josef Bacik607d4322008-12-02 07:17:45 -0500828 csum_size,
Chris Mason6e92f5e2008-02-20 12:07:25 -0500829 &eb_token, &eb_map,
Chris Masoneb209782008-02-21 09:30:08 -0500830 &map_start, &map_len, KM_USER1);
Chris Mason6e92f5e2008-02-20 12:07:25 -0500831 if (err)
832 eb_token = NULL;
833 }
834 if (eb_token) {
835 memcpy(eb_token + ((unsigned long)item & (PAGE_CACHE_SIZE - 1)),
Josef Bacik607d4322008-12-02 07:17:45 -0500836 &sector_sum->sum, csum_size);
Chris Mason6e92f5e2008-02-20 12:07:25 -0500837 } else {
Chris Masone6dcd2d2008-07-17 12:53:50 -0400838 write_extent_buffer(leaf, &sector_sum->sum,
Josef Bacik607d4322008-12-02 07:17:45 -0500839 (unsigned long)item, csum_size);
Chris Mason6e92f5e2008-02-20 12:07:25 -0500840 }
Chris Mason7f3c74f2008-07-18 12:01:11 -0400841
Chris Masone6dcd2d2008-07-17 12:53:50 -0400842 total_bytes += root->sectorsize;
843 sector_sum++;
844 if (total_bytes < sums->len) {
Chris Mason6e92f5e2008-02-20 12:07:25 -0500845 item = (struct btrfs_csum_item *)((char *)item +
Josef Bacik607d4322008-12-02 07:17:45 -0500846 csum_size);
Chris Masond20f7042008-12-08 16:58:54 -0500847 if (item < item_end && bytenr + PAGE_CACHE_SIZE ==
848 sector_sum->bytenr) {
849 bytenr = sector_sum->bytenr;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400850 goto next_sector;
Chris Mason2e1a9922008-02-20 15:44:32 -0500851 }
Chris Mason065631f2008-02-20 12:07:25 -0500852 }
Chris Mason6e92f5e2008-02-20 12:07:25 -0500853 if (eb_token) {
Chris Masoneb209782008-02-21 09:30:08 -0500854 unmap_extent_buffer(leaf, eb_token, KM_USER1);
Chris Mason6e92f5e2008-02-20 12:07:25 -0500855 eb_token = NULL;
856 }
Chris Mason5caf2a02007-04-02 11:20:42 -0400857 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400858 if (total_bytes < sums->len) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200859 btrfs_release_path(path);
Chris Masonb9473432009-03-13 11:00:37 -0400860 cond_resched();
Chris Mason065631f2008-02-20 12:07:25 -0500861 goto again;
862 }
Chris Mason53863232008-08-15 15:34:18 -0400863out:
Chris Mason5caf2a02007-04-02 11:20:42 -0400864 btrfs_free_path(path);
Chris Masonf254e522007-03-29 15:15:27 -0400865 return ret;
Chris Mason53863232008-08-15 15:34:18 -0400866
867fail_unlock:
Chris Mason53863232008-08-15 15:34:18 -0400868 goto out;
Chris Masonf254e522007-03-29 15:15:27 -0400869}