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