]>
Commit | Line | Data |
---|---|---|
6cbd5570 CM |
1 | /* |
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 | ||
065631f6 | 19 | #include <linux/bio.h> |
5a0e3ad6 | 20 | #include <linux/slab.h> |
065631f6 CM |
21 | #include <linux/pagemap.h> |
22 | #include <linux/highmem.h> | |
1e1d2701 | 23 | #include "ctree.h" |
dee26a9f | 24 | #include "disk-io.h" |
9f5fae2f | 25 | #include "transaction.h" |
1de037a4 | 26 | #include "print-tree.h" |
1e1d2701 | 27 | |
7ca4be45 | 28 | #define __MAX_CSUM_ITEMS(r, size) ((((BTRFS_LEAF_DATA_SIZE(r) - \ |
607d432d JB |
29 | sizeof(struct btrfs_item) * 2) / \ |
30 | size) - 1)) | |
07d400a6 | 31 | |
7ca4be45 CM |
32 | #define MAX_CSUM_ITEMS(r, size) (min(__MAX_CSUM_ITEMS(r, size), PAGE_CACHE_SIZE)) |
33 | ||
07d400a6 YZ |
34 | #define MAX_ORDERED_SUM_BYTES(r) ((PAGE_SIZE - \ |
35 | sizeof(struct btrfs_ordered_sum)) / \ | |
36 | sizeof(struct btrfs_sector_sum) * \ | |
37 | (r)->sectorsize - (r)->sectorsize) | |
38 | ||
b18c6685 | 39 | int btrfs_insert_file_extent(struct btrfs_trans_handle *trans, |
f2eb0a24 SW |
40 | struct btrfs_root *root, |
41 | u64 objectid, u64 pos, | |
42 | u64 disk_offset, u64 disk_num_bytes, | |
c8b97818 CM |
43 | u64 num_bytes, u64 offset, u64 ram_bytes, |
44 | u8 compression, u8 encryption, u16 other_encoding) | |
9f5fae2f | 45 | { |
dee26a9f CM |
46 | int ret = 0; |
47 | struct btrfs_file_extent_item *item; | |
48 | struct btrfs_key file_key; | |
5caf2a00 | 49 | struct btrfs_path *path; |
5f39d397 | 50 | struct extent_buffer *leaf; |
dee26a9f | 51 | |
5caf2a00 | 52 | path = btrfs_alloc_path(); |
db5b493a TI |
53 | if (!path) |
54 | return -ENOMEM; | |
dee26a9f | 55 | file_key.objectid = objectid; |
b18c6685 | 56 | file_key.offset = pos; |
dee26a9f CM |
57 | btrfs_set_key_type(&file_key, BTRFS_EXTENT_DATA_KEY); |
58 | ||
b9473439 | 59 | path->leave_spinning = 1; |
5caf2a00 | 60 | ret = btrfs_insert_empty_item(trans, root, path, &file_key, |
dee26a9f | 61 | sizeof(*item)); |
54aa1f4d CM |
62 | if (ret < 0) |
63 | goto out; | |
79787eaa | 64 | BUG_ON(ret); /* Can't happen */ |
5f39d397 CM |
65 | leaf = path->nodes[0]; |
66 | item = btrfs_item_ptr(leaf, path->slots[0], | |
dee26a9f | 67 | struct btrfs_file_extent_item); |
f2eb0a24 | 68 | btrfs_set_file_extent_disk_bytenr(leaf, item, disk_offset); |
db94535d | 69 | btrfs_set_file_extent_disk_num_bytes(leaf, item, disk_num_bytes); |
f2eb0a24 | 70 | btrfs_set_file_extent_offset(leaf, item, offset); |
db94535d | 71 | btrfs_set_file_extent_num_bytes(leaf, item, num_bytes); |
c8b97818 | 72 | btrfs_set_file_extent_ram_bytes(leaf, item, ram_bytes); |
5f39d397 CM |
73 | btrfs_set_file_extent_generation(leaf, item, trans->transid); |
74 | btrfs_set_file_extent_type(leaf, item, BTRFS_FILE_EXTENT_REG); | |
c8b97818 CM |
75 | 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 | ||
5f39d397 | 79 | btrfs_mark_buffer_dirty(leaf); |
54aa1f4d | 80 | out: |
5caf2a00 | 81 | btrfs_free_path(path); |
54aa1f4d | 82 | return ret; |
9f5fae2f | 83 | } |
dee26a9f | 84 | |
b18c6685 CM |
85 | struct btrfs_csum_item *btrfs_lookup_csum(struct btrfs_trans_handle *trans, |
86 | struct btrfs_root *root, | |
87 | struct btrfs_path *path, | |
d20f7043 | 88 | u64 bytenr, int cow) |
6567e837 CM |
89 | { |
90 | int ret; | |
91 | struct btrfs_key file_key; | |
92 | struct btrfs_key found_key; | |
93 | struct btrfs_csum_item *item; | |
5f39d397 | 94 | struct extent_buffer *leaf; |
6567e837 | 95 | u64 csum_offset = 0; |
6c41761f | 96 | u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy); |
a429e513 | 97 | int csums_in_item; |
6567e837 | 98 | |
d20f7043 CM |
99 | file_key.objectid = BTRFS_EXTENT_CSUM_OBJECTID; |
100 | file_key.offset = bytenr; | |
101 | btrfs_set_key_type(&file_key, BTRFS_EXTENT_CSUM_KEY); | |
b18c6685 | 102 | ret = btrfs_search_slot(trans, root, &file_key, path, 0, cow); |
6567e837 CM |
103 | if (ret < 0) |
104 | goto fail; | |
5f39d397 | 105 | leaf = path->nodes[0]; |
6567e837 CM |
106 | if (ret > 0) { |
107 | ret = 1; | |
70b2befd | 108 | if (path->slots[0] == 0) |
6567e837 CM |
109 | goto fail; |
110 | path->slots[0]--; | |
5f39d397 | 111 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
d20f7043 | 112 | if (btrfs_key_type(&found_key) != BTRFS_EXTENT_CSUM_KEY) |
6567e837 | 113 | goto fail; |
d20f7043 CM |
114 | |
115 | csum_offset = (bytenr - found_key.offset) >> | |
6567e837 | 116 | root->fs_info->sb->s_blocksize_bits; |
5f39d397 | 117 | csums_in_item = btrfs_item_size_nr(leaf, path->slots[0]); |
607d432d | 118 | csums_in_item /= csum_size; |
a429e513 CM |
119 | |
120 | if (csum_offset >= csums_in_item) { | |
121 | ret = -EFBIG; | |
6567e837 CM |
122 | goto fail; |
123 | } | |
124 | } | |
125 | item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_csum_item); | |
509659cd | 126 | item = (struct btrfs_csum_item *)((unsigned char *)item + |
607d432d | 127 | csum_offset * csum_size); |
6567e837 CM |
128 | return item; |
129 | fail: | |
130 | if (ret > 0) | |
b18c6685 | 131 | ret = -ENOENT; |
6567e837 CM |
132 | return ERR_PTR(ret); |
133 | } | |
134 | ||
135 | ||
dee26a9f CM |
136 | int btrfs_lookup_file_extent(struct btrfs_trans_handle *trans, |
137 | struct btrfs_root *root, | |
138 | struct btrfs_path *path, u64 objectid, | |
9773a788 | 139 | u64 offset, int mod) |
dee26a9f CM |
140 | { |
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; | |
70b2befd | 147 | file_key.offset = offset; |
dee26a9f CM |
148 | 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 | } | |
f254e52c | 152 | |
17d217fe | 153 | |
4b46fce2 JB |
154 | static int __btrfs_lookup_bio_sums(struct btrfs_root *root, |
155 | struct inode *inode, struct bio *bio, | |
156 | u64 logical_offset, u32 *dst, int dio) | |
61b49440 CM |
157 | { |
158 | u32 sum; | |
159 | struct bio_vec *bvec = bio->bi_io_vec; | |
160 | int bio_index = 0; | |
4b46fce2 | 161 | u64 offset = 0; |
61b49440 CM |
162 | u64 item_start_offset = 0; |
163 | u64 item_last_offset = 0; | |
d20f7043 | 164 | u64 disk_bytenr; |
61b49440 | 165 | u32 diff; |
6c41761f | 166 | u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy); |
61b49440 CM |
167 | 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(); | |
c2db1073 TI |
173 | if (!path) |
174 | return -ENOMEM; | |
4d1b5fb4 CM |
175 | if (bio->bi_size > PAGE_CACHE_SIZE * 8) |
176 | path->reada = 2; | |
61b49440 CM |
177 | |
178 | WARN_ON(bio->bi_vcnt <= 0); | |
179 | ||
2cf8572d CM |
180 | /* |
181 | * the free space stuff is only read when it hasn't been | |
182 | * updated in the current transaction. So, we can safely | |
183 | * read from the commit root and sidestep a nasty deadlock | |
184 | * between reading the free space cache and updating the csum tree. | |
185 | */ | |
83eea1f1 | 186 | if (btrfs_is_free_space_inode(inode)) { |
2cf8572d | 187 | path->search_commit_root = 1; |
ddf23b3f JB |
188 | path->skip_locking = 1; |
189 | } | |
2cf8572d | 190 | |
d20f7043 | 191 | disk_bytenr = (u64)bio->bi_sector << 9; |
4b46fce2 JB |
192 | if (dio) |
193 | offset = logical_offset; | |
d397712b | 194 | while (bio_index < bio->bi_vcnt) { |
4b46fce2 JB |
195 | if (!dio) |
196 | offset = page_offset(bvec->bv_page) + bvec->bv_offset; | |
d20f7043 | 197 | ret = btrfs_find_ordered_sum(inode, offset, disk_bytenr, &sum); |
61b49440 CM |
198 | if (ret == 0) |
199 | goto found; | |
200 | ||
d20f7043 CM |
201 | if (!item || disk_bytenr < item_start_offset || |
202 | disk_bytenr >= item_last_offset) { | |
61b49440 CM |
203 | struct btrfs_key found_key; |
204 | u32 item_size; | |
205 | ||
206 | if (item) | |
b3b4aa74 | 207 | btrfs_release_path(path); |
d20f7043 CM |
208 | item = btrfs_lookup_csum(NULL, root->fs_info->csum_root, |
209 | path, disk_bytenr, 0); | |
61b49440 CM |
210 | if (IS_ERR(item)) { |
211 | ret = PTR_ERR(item); | |
212 | if (ret == -ENOENT || ret == -EFBIG) | |
213 | ret = 0; | |
214 | sum = 0; | |
17d217fe YZ |
215 | if (BTRFS_I(inode)->root->root_key.objectid == |
216 | BTRFS_DATA_RELOC_TREE_OBJECTID) { | |
217 | set_extent_bits(io_tree, offset, | |
218 | offset + bvec->bv_len - 1, | |
219 | EXTENT_NODATASUM, GFP_NOFS); | |
220 | } else { | |
d397712b | 221 | printk(KERN_INFO "btrfs no csum found " |
33345d01 LZ |
222 | "for inode %llu start %llu\n", |
223 | (unsigned long long) | |
224 | btrfs_ino(inode), | |
17d217fe YZ |
225 | (unsigned long long)offset); |
226 | } | |
6dab8157 | 227 | item = NULL; |
b3b4aa74 | 228 | btrfs_release_path(path); |
61b49440 CM |
229 | goto found; |
230 | } | |
231 | btrfs_item_key_to_cpu(path->nodes[0], &found_key, | |
232 | path->slots[0]); | |
233 | ||
234 | item_start_offset = found_key.offset; | |
235 | item_size = btrfs_item_size_nr(path->nodes[0], | |
236 | path->slots[0]); | |
237 | item_last_offset = item_start_offset + | |
607d432d | 238 | (item_size / csum_size) * |
61b49440 CM |
239 | root->sectorsize; |
240 | item = btrfs_item_ptr(path->nodes[0], path->slots[0], | |
241 | struct btrfs_csum_item); | |
242 | } | |
243 | /* | |
244 | * this byte range must be able to fit inside | |
245 | * a single leaf so it will also fit inside a u32 | |
246 | */ | |
d20f7043 | 247 | diff = disk_bytenr - item_start_offset; |
61b49440 | 248 | diff = diff / root->sectorsize; |
607d432d | 249 | diff = diff * csum_size; |
61b49440 CM |
250 | |
251 | read_extent_buffer(path->nodes[0], &sum, | |
3de9d6b6 | 252 | ((unsigned long)item) + diff, |
607d432d | 253 | csum_size); |
61b49440 | 254 | found: |
d20f7043 CM |
255 | if (dst) |
256 | *dst++ = sum; | |
257 | else | |
258 | set_state_private(io_tree, offset, sum); | |
259 | disk_bytenr += bvec->bv_len; | |
4b46fce2 | 260 | offset += bvec->bv_len; |
61b49440 CM |
261 | bio_index++; |
262 | bvec++; | |
263 | } | |
264 | btrfs_free_path(path); | |
265 | return 0; | |
266 | } | |
267 | ||
4b46fce2 JB |
268 | int btrfs_lookup_bio_sums(struct btrfs_root *root, struct inode *inode, |
269 | struct bio *bio, u32 *dst) | |
270 | { | |
271 | return __btrfs_lookup_bio_sums(root, inode, bio, 0, dst, 0); | |
272 | } | |
273 | ||
274 | int btrfs_lookup_bio_sums_dio(struct btrfs_root *root, struct inode *inode, | |
c329861d | 275 | struct bio *bio, u64 offset) |
4b46fce2 | 276 | { |
c329861d | 277 | return __btrfs_lookup_bio_sums(root, inode, bio, offset, NULL, 1); |
4b46fce2 JB |
278 | } |
279 | ||
17d217fe | 280 | int btrfs_lookup_csums_range(struct btrfs_root *root, u64 start, u64 end, |
a2de733c | 281 | struct list_head *list, int search_commit) |
17d217fe YZ |
282 | { |
283 | struct btrfs_key key; | |
284 | struct btrfs_path *path; | |
285 | struct extent_buffer *leaf; | |
286 | struct btrfs_ordered_sum *sums; | |
287 | struct btrfs_sector_sum *sector_sum; | |
288 | struct btrfs_csum_item *item; | |
0678b618 | 289 | LIST_HEAD(tmplist); |
17d217fe YZ |
290 | unsigned long offset; |
291 | int ret; | |
292 | size_t size; | |
293 | u64 csum_end; | |
6c41761f | 294 | u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy); |
17d217fe YZ |
295 | |
296 | path = btrfs_alloc_path(); | |
d8926bb3 MF |
297 | if (!path) |
298 | return -ENOMEM; | |
17d217fe | 299 | |
a2de733c AJ |
300 | if (search_commit) { |
301 | path->skip_locking = 1; | |
302 | path->reada = 2; | |
303 | path->search_commit_root = 1; | |
304 | } | |
305 | ||
17d217fe YZ |
306 | key.objectid = BTRFS_EXTENT_CSUM_OBJECTID; |
307 | key.offset = start; | |
308 | key.type = BTRFS_EXTENT_CSUM_KEY; | |
309 | ||
07d400a6 | 310 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
17d217fe YZ |
311 | if (ret < 0) |
312 | goto fail; | |
313 | if (ret > 0 && path->slots[0] > 0) { | |
314 | leaf = path->nodes[0]; | |
315 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0] - 1); | |
316 | if (key.objectid == BTRFS_EXTENT_CSUM_OBJECTID && | |
317 | key.type == BTRFS_EXTENT_CSUM_KEY) { | |
318 | offset = (start - key.offset) >> | |
319 | root->fs_info->sb->s_blocksize_bits; | |
320 | if (offset * csum_size < | |
321 | btrfs_item_size_nr(leaf, path->slots[0] - 1)) | |
322 | path->slots[0]--; | |
323 | } | |
324 | } | |
325 | ||
326 | while (start <= end) { | |
327 | leaf = path->nodes[0]; | |
328 | if (path->slots[0] >= btrfs_header_nritems(leaf)) { | |
07d400a6 | 329 | ret = btrfs_next_leaf(root, path); |
17d217fe YZ |
330 | if (ret < 0) |
331 | goto fail; | |
332 | if (ret > 0) | |
333 | break; | |
334 | leaf = path->nodes[0]; | |
335 | } | |
336 | ||
337 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); | |
338 | if (key.objectid != BTRFS_EXTENT_CSUM_OBJECTID || | |
339 | key.type != BTRFS_EXTENT_CSUM_KEY) | |
340 | break; | |
341 | ||
342 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); | |
343 | if (key.offset > end) | |
344 | break; | |
345 | ||
346 | if (key.offset > start) | |
347 | start = key.offset; | |
348 | ||
349 | size = btrfs_item_size_nr(leaf, path->slots[0]); | |
350 | csum_end = key.offset + (size / csum_size) * root->sectorsize; | |
87b29b20 YZ |
351 | if (csum_end <= start) { |
352 | path->slots[0]++; | |
353 | continue; | |
354 | } | |
17d217fe | 355 | |
07d400a6 | 356 | csum_end = min(csum_end, end + 1); |
17d217fe YZ |
357 | item = btrfs_item_ptr(path->nodes[0], path->slots[0], |
358 | struct btrfs_csum_item); | |
07d400a6 YZ |
359 | while (start < csum_end) { |
360 | size = min_t(size_t, csum_end - start, | |
361 | MAX_ORDERED_SUM_BYTES(root)); | |
362 | sums = kzalloc(btrfs_ordered_sum_size(root, size), | |
363 | GFP_NOFS); | |
0678b618 MF |
364 | if (!sums) { |
365 | ret = -ENOMEM; | |
366 | goto fail; | |
367 | } | |
17d217fe | 368 | |
07d400a6 YZ |
369 | sector_sum = sums->sums; |
370 | sums->bytenr = start; | |
371 | sums->len = size; | |
372 | ||
373 | offset = (start - key.offset) >> | |
374 | root->fs_info->sb->s_blocksize_bits; | |
375 | offset *= csum_size; | |
376 | ||
377 | while (size > 0) { | |
378 | read_extent_buffer(path->nodes[0], | |
379 | §or_sum->sum, | |
380 | ((unsigned long)item) + | |
381 | offset, csum_size); | |
382 | sector_sum->bytenr = start; | |
383 | ||
384 | size -= root->sectorsize; | |
385 | start += root->sectorsize; | |
386 | offset += csum_size; | |
387 | sector_sum++; | |
388 | } | |
0678b618 | 389 | list_add_tail(&sums->list, &tmplist); |
07d400a6 | 390 | } |
17d217fe YZ |
391 | path->slots[0]++; |
392 | } | |
393 | ret = 0; | |
394 | fail: | |
0678b618 MF |
395 | while (ret < 0 && !list_empty(&tmplist)) { |
396 | sums = list_entry(&tmplist, struct btrfs_ordered_sum, list); | |
397 | list_del(&sums->list); | |
398 | kfree(sums); | |
399 | } | |
400 | list_splice_tail(&tmplist, list); | |
401 | ||
17d217fe YZ |
402 | btrfs_free_path(path); |
403 | return ret; | |
404 | } | |
405 | ||
3edf7d33 | 406 | int btrfs_csum_one_bio(struct btrfs_root *root, struct inode *inode, |
d20f7043 | 407 | struct bio *bio, u64 file_start, int contig) |
e015640f | 408 | { |
e6dcd2dc CM |
409 | struct btrfs_ordered_sum *sums; |
410 | struct btrfs_sector_sum *sector_sum; | |
3edf7d33 | 411 | struct btrfs_ordered_extent *ordered; |
e015640f CM |
412 | char *data; |
413 | struct bio_vec *bvec = bio->bi_io_vec; | |
414 | int bio_index = 0; | |
3edf7d33 CM |
415 | unsigned long total_bytes = 0; |
416 | unsigned long this_sum_bytes = 0; | |
417 | u64 offset; | |
d20f7043 | 418 | u64 disk_bytenr; |
e015640f | 419 | |
e6dcd2dc CM |
420 | WARN_ON(bio->bi_vcnt <= 0); |
421 | sums = kzalloc(btrfs_ordered_sum_size(root, bio->bi_size), GFP_NOFS); | |
e015640f CM |
422 | if (!sums) |
423 | return -ENOMEM; | |
3edf7d33 | 424 | |
ed98b56a | 425 | sector_sum = sums->sums; |
d20f7043 | 426 | disk_bytenr = (u64)bio->bi_sector << 9; |
e6dcd2dc CM |
427 | sums->len = bio->bi_size; |
428 | INIT_LIST_HEAD(&sums->list); | |
d20f7043 CM |
429 | |
430 | if (contig) | |
431 | offset = file_start; | |
432 | else | |
433 | offset = page_offset(bvec->bv_page) + bvec->bv_offset; | |
434 | ||
435 | ordered = btrfs_lookup_ordered_extent(inode, offset); | |
79787eaa | 436 | BUG_ON(!ordered); /* Logic error */ |
d20f7043 | 437 | sums->bytenr = ordered->start; |
e015640f | 438 | |
d397712b | 439 | while (bio_index < bio->bi_vcnt) { |
d20f7043 CM |
440 | if (!contig) |
441 | offset = page_offset(bvec->bv_page) + bvec->bv_offset; | |
442 | ||
443 | if (!contig && (offset >= ordered->file_offset + ordered->len || | |
444 | offset < ordered->file_offset)) { | |
3edf7d33 CM |
445 | 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); | |
79787eaa | 455 | BUG_ON(!sums); /* -ENOMEM */ |
ed98b56a | 456 | sector_sum = sums->sums; |
3edf7d33 | 457 | sums->len = bytes_left; |
d20f7043 | 458 | ordered = btrfs_lookup_ordered_extent(inode, offset); |
79787eaa | 459 | BUG_ON(!ordered); /* Logic error */ |
d20f7043 | 460 | sums->bytenr = ordered->start; |
3edf7d33 CM |
461 | } |
462 | ||
7ac687d9 | 463 | data = kmap_atomic(bvec->bv_page); |
e6dcd2dc CM |
464 | sector_sum->sum = ~(u32)0; |
465 | sector_sum->sum = btrfs_csum_data(root, | |
466 | data + bvec->bv_offset, | |
467 | sector_sum->sum, | |
468 | bvec->bv_len); | |
7ac687d9 | 469 | kunmap_atomic(data); |
e6dcd2dc CM |
470 | btrfs_csum_final(sector_sum->sum, |
471 | (char *)§or_sum->sum); | |
d20f7043 | 472 | sector_sum->bytenr = disk_bytenr; |
ed98b56a | 473 | |
e6dcd2dc | 474 | sector_sum++; |
e015640f | 475 | bio_index++; |
3edf7d33 CM |
476 | total_bytes += bvec->bv_len; |
477 | this_sum_bytes += bvec->bv_len; | |
d20f7043 CM |
478 | disk_bytenr += bvec->bv_len; |
479 | offset += bvec->bv_len; | |
e015640f CM |
480 | bvec++; |
481 | } | |
ed98b56a | 482 | this_sum_bytes = 0; |
3edf7d33 CM |
483 | btrfs_add_ordered_sum(inode, ordered, sums); |
484 | btrfs_put_ordered_extent(ordered); | |
e015640f CM |
485 | return 0; |
486 | } | |
487 | ||
459931ec CM |
488 | /* |
489 | * helper function for csum removal, this expects the | |
490 | * key to describe the csum pointed to by the path, and it expects | |
491 | * the csum to overlap the range [bytenr, len] | |
492 | * | |
493 | * The csum should not be entirely contained in the range and the | |
494 | * range should not be entirely contained in the csum. | |
495 | * | |
496 | * This calls btrfs_truncate_item with the correct args based on the | |
497 | * overlap, and fixes up the key as required. | |
498 | */ | |
143bede5 JM |
499 | static noinline void truncate_one_csum(struct btrfs_trans_handle *trans, |
500 | struct btrfs_root *root, | |
501 | struct btrfs_path *path, | |
502 | struct btrfs_key *key, | |
503 | u64 bytenr, u64 len) | |
459931ec CM |
504 | { |
505 | struct extent_buffer *leaf; | |
6c41761f | 506 | u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy); |
459931ec CM |
507 | u64 csum_end; |
508 | u64 end_byte = bytenr + len; | |
509 | u32 blocksize_bits = root->fs_info->sb->s_blocksize_bits; | |
459931ec CM |
510 | |
511 | leaf = path->nodes[0]; | |
512 | csum_end = btrfs_item_size_nr(leaf, path->slots[0]) / csum_size; | |
513 | csum_end <<= root->fs_info->sb->s_blocksize_bits; | |
514 | csum_end += key->offset; | |
515 | ||
516 | if (key->offset < bytenr && csum_end <= end_byte) { | |
517 | /* | |
518 | * [ bytenr - len ] | |
519 | * [ ] | |
520 | * [csum ] | |
521 | * A simple truncate off the end of the item | |
522 | */ | |
523 | u32 new_size = (bytenr - key->offset) >> blocksize_bits; | |
524 | new_size *= csum_size; | |
143bede5 | 525 | btrfs_truncate_item(trans, root, path, new_size, 1); |
459931ec CM |
526 | } else if (key->offset >= bytenr && csum_end > end_byte && |
527 | end_byte > key->offset) { | |
528 | /* | |
529 | * [ bytenr - len ] | |
530 | * [ ] | |
531 | * [csum ] | |
532 | * we need to truncate from the beginning of the csum | |
533 | */ | |
534 | u32 new_size = (csum_end - end_byte) >> blocksize_bits; | |
535 | new_size *= csum_size; | |
536 | ||
143bede5 | 537 | btrfs_truncate_item(trans, root, path, new_size, 0); |
459931ec CM |
538 | |
539 | key->offset = end_byte; | |
143bede5 | 540 | btrfs_set_item_key_safe(trans, root, path, key); |
459931ec CM |
541 | } else { |
542 | BUG(); | |
543 | } | |
459931ec CM |
544 | } |
545 | ||
546 | /* | |
547 | * deletes the csum items from the csum tree for a given | |
548 | * range of bytes. | |
549 | */ | |
550 | int btrfs_del_csums(struct btrfs_trans_handle *trans, | |
551 | struct btrfs_root *root, u64 bytenr, u64 len) | |
552 | { | |
553 | struct btrfs_path *path; | |
554 | struct btrfs_key key; | |
555 | u64 end_byte = bytenr + len; | |
556 | u64 csum_end; | |
557 | struct extent_buffer *leaf; | |
558 | int ret; | |
6c41761f | 559 | u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy); |
459931ec CM |
560 | int blocksize_bits = root->fs_info->sb->s_blocksize_bits; |
561 | ||
562 | root = root->fs_info->csum_root; | |
563 | ||
564 | path = btrfs_alloc_path(); | |
2a29edc6 | 565 | if (!path) |
566 | return -ENOMEM; | |
459931ec | 567 | |
d397712b | 568 | while (1) { |
459931ec CM |
569 | key.objectid = BTRFS_EXTENT_CSUM_OBJECTID; |
570 | key.offset = end_byte - 1; | |
571 | key.type = BTRFS_EXTENT_CSUM_KEY; | |
572 | ||
b9473439 | 573 | path->leave_spinning = 1; |
459931ec CM |
574 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
575 | if (ret > 0) { | |
576 | if (path->slots[0] == 0) | |
65a246c5 | 577 | break; |
459931ec | 578 | path->slots[0]--; |
ad0397a7 | 579 | } else if (ret < 0) { |
65a246c5 | 580 | break; |
459931ec | 581 | } |
ad0397a7 | 582 | |
459931ec CM |
583 | leaf = path->nodes[0]; |
584 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); | |
585 | ||
586 | if (key.objectid != BTRFS_EXTENT_CSUM_OBJECTID || | |
587 | key.type != BTRFS_EXTENT_CSUM_KEY) { | |
588 | break; | |
589 | } | |
590 | ||
591 | if (key.offset >= end_byte) | |
592 | break; | |
593 | ||
594 | csum_end = btrfs_item_size_nr(leaf, path->slots[0]) / csum_size; | |
595 | csum_end <<= blocksize_bits; | |
596 | csum_end += key.offset; | |
597 | ||
598 | /* this csum ends before we start, we're done */ | |
599 | if (csum_end <= bytenr) | |
600 | break; | |
601 | ||
602 | /* delete the entire item, it is inside our range */ | |
603 | if (key.offset >= bytenr && csum_end <= end_byte) { | |
604 | ret = btrfs_del_item(trans, root, path); | |
65a246c5 TI |
605 | if (ret) |
606 | goto out; | |
dcbdd4dc CM |
607 | if (key.offset == bytenr) |
608 | break; | |
459931ec CM |
609 | } else if (key.offset < bytenr && csum_end > end_byte) { |
610 | unsigned long offset; | |
611 | unsigned long shift_len; | |
612 | unsigned long item_offset; | |
613 | /* | |
614 | * [ bytenr - len ] | |
615 | * [csum ] | |
616 | * | |
617 | * Our bytes are in the middle of the csum, | |
618 | * we need to split this item and insert a new one. | |
619 | * | |
620 | * But we can't drop the path because the | |
621 | * csum could change, get removed, extended etc. | |
622 | * | |
623 | * The trick here is the max size of a csum item leaves | |
624 | * enough room in the tree block for a single | |
625 | * item header. So, we split the item in place, | |
626 | * adding a new header pointing to the existing | |
627 | * bytes. Then we loop around again and we have | |
628 | * a nicely formed csum item that we can neatly | |
629 | * truncate. | |
630 | */ | |
631 | offset = (bytenr - key.offset) >> blocksize_bits; | |
632 | offset *= csum_size; | |
633 | ||
634 | shift_len = (len >> blocksize_bits) * csum_size; | |
635 | ||
636 | item_offset = btrfs_item_ptr_offset(leaf, | |
637 | path->slots[0]); | |
638 | ||
639 | memset_extent_buffer(leaf, 0, item_offset + offset, | |
640 | shift_len); | |
641 | key.offset = bytenr; | |
642 | ||
643 | /* | |
644 | * btrfs_split_item returns -EAGAIN when the | |
645 | * item changed size or key | |
646 | */ | |
647 | ret = btrfs_split_item(trans, root, path, &key, offset); | |
79787eaa JM |
648 | if (ret && ret != -EAGAIN) { |
649 | btrfs_abort_transaction(trans, root, ret); | |
650 | goto out; | |
651 | } | |
459931ec CM |
652 | |
653 | key.offset = end_byte - 1; | |
654 | } else { | |
143bede5 | 655 | truncate_one_csum(trans, root, path, &key, bytenr, len); |
dcbdd4dc CM |
656 | if (key.offset < bytenr) |
657 | break; | |
459931ec | 658 | } |
b3b4aa74 | 659 | btrfs_release_path(path); |
459931ec | 660 | } |
65a246c5 | 661 | ret = 0; |
459931ec CM |
662 | out: |
663 | btrfs_free_path(path); | |
65a246c5 | 664 | return ret; |
459931ec CM |
665 | } |
666 | ||
065631f6 | 667 | int btrfs_csum_file_blocks(struct btrfs_trans_handle *trans, |
d20f7043 | 668 | struct btrfs_root *root, |
e6dcd2dc | 669 | struct btrfs_ordered_sum *sums) |
f254e52c | 670 | { |
d20f7043 | 671 | u64 bytenr; |
f254e52c CM |
672 | int ret; |
673 | struct btrfs_key file_key; | |
6567e837 | 674 | struct btrfs_key found_key; |
065631f6 | 675 | u64 next_offset; |
e6dcd2dc | 676 | u64 total_bytes = 0; |
065631f6 | 677 | int found_next; |
5caf2a00 | 678 | struct btrfs_path *path; |
f254e52c | 679 | struct btrfs_csum_item *item; |
065631f6 | 680 | struct btrfs_csum_item *item_end; |
ff79f819 | 681 | struct extent_buffer *leaf = NULL; |
6567e837 | 682 | u64 csum_offset; |
e6dcd2dc | 683 | struct btrfs_sector_sum *sector_sum; |
f578d4bd CM |
684 | u32 nritems; |
685 | u32 ins_size; | |
6c41761f | 686 | u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy); |
6e92f5e6 | 687 | |
5caf2a00 | 688 | path = btrfs_alloc_path(); |
d8926bb3 MF |
689 | if (!path) |
690 | return -ENOMEM; | |
691 | ||
ed98b56a | 692 | sector_sum = sums->sums; |
0e721106 | 693 | trans->adding_csums = 1; |
065631f6 CM |
694 | again: |
695 | next_offset = (u64)-1; | |
696 | found_next = 0; | |
d20f7043 CM |
697 | file_key.objectid = BTRFS_EXTENT_CSUM_OBJECTID; |
698 | file_key.offset = sector_sum->bytenr; | |
699 | bytenr = sector_sum->bytenr; | |
700 | btrfs_set_key_type(&file_key, BTRFS_EXTENT_CSUM_KEY); | |
a429e513 | 701 | |
d20f7043 | 702 | item = btrfs_lookup_csum(trans, root, path, sector_sum->bytenr, 1); |
ff79f819 CM |
703 | if (!IS_ERR(item)) { |
704 | leaf = path->nodes[0]; | |
639cb586 | 705 | ret = 0; |
a429e513 | 706 | goto found; |
ff79f819 | 707 | } |
a429e513 | 708 | ret = PTR_ERR(item); |
4a500fd1 YZ |
709 | if (ret != -EFBIG && ret != -ENOENT) |
710 | goto fail_unlock; | |
711 | ||
a429e513 CM |
712 | if (ret == -EFBIG) { |
713 | u32 item_size; | |
714 | /* we found one, but it isn't big enough yet */ | |
5f39d397 CM |
715 | leaf = path->nodes[0]; |
716 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); | |
607d432d JB |
717 | if ((item_size / csum_size) >= |
718 | MAX_CSUM_ITEMS(root, csum_size)) { | |
a429e513 CM |
719 | /* already at max size, make a new one */ |
720 | goto insert; | |
721 | } | |
722 | } else { | |
f578d4bd | 723 | int slot = path->slots[0] + 1; |
a429e513 | 724 | /* we didn't find a csum item, insert one */ |
f578d4bd CM |
725 | nritems = btrfs_header_nritems(path->nodes[0]); |
726 | if (path->slots[0] >= nritems - 1) { | |
727 | ret = btrfs_next_leaf(root, path); | |
b56baf5b | 728 | if (ret == 1) |
f578d4bd | 729 | found_next = 1; |
b56baf5b | 730 | if (ret != 0) |
f578d4bd | 731 | goto insert; |
b56baf5b | 732 | slot = 0; |
f578d4bd CM |
733 | } |
734 | btrfs_item_key_to_cpu(path->nodes[0], &found_key, slot); | |
d20f7043 CM |
735 | if (found_key.objectid != BTRFS_EXTENT_CSUM_OBJECTID || |
736 | found_key.type != BTRFS_EXTENT_CSUM_KEY) { | |
f578d4bd CM |
737 | found_next = 1; |
738 | goto insert; | |
739 | } | |
740 | next_offset = found_key.offset; | |
741 | found_next = 1; | |
a429e513 CM |
742 | goto insert; |
743 | } | |
744 | ||
745 | /* | |
746 | * at this point, we know the tree has an item, but it isn't big | |
747 | * enough yet to put our csum in. Grow it | |
748 | */ | |
b3b4aa74 | 749 | btrfs_release_path(path); |
6567e837 | 750 | ret = btrfs_search_slot(trans, root, &file_key, path, |
607d432d | 751 | csum_size, 1); |
6567e837 | 752 | if (ret < 0) |
53863232 | 753 | goto fail_unlock; |
459931ec CM |
754 | |
755 | if (ret > 0) { | |
756 | if (path->slots[0] == 0) | |
757 | goto insert; | |
758 | path->slots[0]--; | |
6567e837 | 759 | } |
459931ec | 760 | |
5f39d397 CM |
761 | leaf = path->nodes[0]; |
762 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); | |
d20f7043 | 763 | csum_offset = (bytenr - found_key.offset) >> |
6567e837 | 764 | root->fs_info->sb->s_blocksize_bits; |
459931ec | 765 | |
d20f7043 CM |
766 | if (btrfs_key_type(&found_key) != BTRFS_EXTENT_CSUM_KEY || |
767 | found_key.objectid != BTRFS_EXTENT_CSUM_OBJECTID || | |
607d432d | 768 | csum_offset >= MAX_CSUM_ITEMS(root, csum_size)) { |
6567e837 CM |
769 | goto insert; |
770 | } | |
459931ec | 771 | |
5f39d397 | 772 | if (csum_offset >= btrfs_item_size_nr(leaf, path->slots[0]) / |
607d432d JB |
773 | csum_size) { |
774 | u32 diff = (csum_offset + 1) * csum_size; | |
459931ec CM |
775 | |
776 | /* | |
777 | * is the item big enough already? we dropped our lock | |
778 | * before and need to recheck | |
779 | */ | |
780 | if (diff < btrfs_item_size_nr(leaf, path->slots[0])) | |
781 | goto csum; | |
782 | ||
5f39d397 | 783 | diff = diff - btrfs_item_size_nr(leaf, path->slots[0]); |
d397712b | 784 | if (diff != csum_size) |
3a686375 | 785 | goto insert; |
459931ec | 786 | |
143bede5 | 787 | btrfs_extend_item(trans, root, path, diff); |
6567e837 CM |
788 | goto csum; |
789 | } | |
790 | ||
791 | insert: | |
b3b4aa74 | 792 | btrfs_release_path(path); |
6567e837 | 793 | csum_offset = 0; |
f578d4bd | 794 | if (found_next) { |
d20f7043 CM |
795 | u64 tmp = total_bytes + root->sectorsize; |
796 | u64 next_sector = sector_sum->bytenr; | |
797 | struct btrfs_sector_sum *next = sector_sum + 1; | |
798 | ||
d397712b | 799 | while (tmp < sums->len) { |
d20f7043 CM |
800 | if (next_sector + root->sectorsize != next->bytenr) |
801 | break; | |
802 | tmp += root->sectorsize; | |
803 | next_sector = next->bytenr; | |
804 | next++; | |
805 | } | |
806 | tmp = min(tmp, next_offset - file_key.offset); | |
f578d4bd CM |
807 | tmp >>= root->fs_info->sb->s_blocksize_bits; |
808 | tmp = max((u64)1, tmp); | |
607d432d JB |
809 | tmp = min(tmp, (u64)MAX_CSUM_ITEMS(root, csum_size)); |
810 | ins_size = csum_size * tmp; | |
f578d4bd | 811 | } else { |
607d432d | 812 | ins_size = csum_size; |
f578d4bd | 813 | } |
b9473439 | 814 | path->leave_spinning = 1; |
5caf2a00 | 815 | ret = btrfs_insert_empty_item(trans, root, path, &file_key, |
f578d4bd | 816 | ins_size); |
b9473439 | 817 | path->leave_spinning = 0; |
54aa1f4d | 818 | if (ret < 0) |
53863232 | 819 | goto fail_unlock; |
a429e513 | 820 | if (ret != 0) { |
a429e513 | 821 | WARN_ON(1); |
53863232 | 822 | goto fail_unlock; |
a429e513 | 823 | } |
6567e837 | 824 | csum: |
5f39d397 CM |
825 | leaf = path->nodes[0]; |
826 | item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_csum_item); | |
f254e52c | 827 | ret = 0; |
509659cd | 828 | item = (struct btrfs_csum_item *)((unsigned char *)item + |
607d432d | 829 | csum_offset * csum_size); |
b18c6685 | 830 | found: |
065631f6 CM |
831 | item_end = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_csum_item); |
832 | item_end = (struct btrfs_csum_item *)((unsigned char *)item_end + | |
833 | btrfs_item_size_nr(leaf, path->slots[0])); | |
e6dcd2dc | 834 | next_sector: |
aadfeb6e | 835 | |
a6591715 | 836 | write_extent_buffer(leaf, §or_sum->sum, (unsigned long)item, csum_size); |
7f3c74fb | 837 | |
e6dcd2dc CM |
838 | total_bytes += root->sectorsize; |
839 | sector_sum++; | |
840 | if (total_bytes < sums->len) { | |
6e92f5e6 | 841 | item = (struct btrfs_csum_item *)((char *)item + |
607d432d | 842 | csum_size); |
d20f7043 CM |
843 | if (item < item_end && bytenr + PAGE_CACHE_SIZE == |
844 | sector_sum->bytenr) { | |
845 | bytenr = sector_sum->bytenr; | |
e6dcd2dc | 846 | goto next_sector; |
2e1a992e | 847 | } |
065631f6 | 848 | } |
a6591715 | 849 | |
5caf2a00 | 850 | btrfs_mark_buffer_dirty(path->nodes[0]); |
e6dcd2dc | 851 | if (total_bytes < sums->len) { |
b3b4aa74 | 852 | btrfs_release_path(path); |
b9473439 | 853 | cond_resched(); |
065631f6 CM |
854 | goto again; |
855 | } | |
53863232 | 856 | out: |
0e721106 | 857 | trans->adding_csums = 0; |
5caf2a00 | 858 | btrfs_free_path(path); |
f254e52c | 859 | return ret; |
53863232 CM |
860 | |
861 | fail_unlock: | |
53863232 | 862 | goto out; |
f254e52c | 863 | } |