blob: 61b82c69eed50f6eccec90146d5ccad82e13a6ff [file] [log] [blame]
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright (C) 2007 Oracle. All rights reserved.
4 */
5
6#include <linux/bio.h>
7#include <linux/slab.h>
8#include <linux/pagemap.h>
9#include <linux/highmem.h>
David Brazdil0f672f62019-12-10 10:32:29 +000010#include <linux/sched/mm.h>
11#include <crypto/hash.h>
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000012#include "ctree.h"
13#include "disk-io.h"
14#include "transaction.h"
15#include "volumes.h"
16#include "print-tree.h"
17#include "compression.h"
18
19#define __MAX_CSUM_ITEMS(r, size) ((unsigned long)(((BTRFS_LEAF_DATA_SIZE(r) - \
20 sizeof(struct btrfs_item) * 2) / \
21 size) - 1))
22
23#define MAX_CSUM_ITEMS(r, size) (min_t(u32, __MAX_CSUM_ITEMS(r, size), \
24 PAGE_SIZE))
25
David Brazdil0f672f62019-12-10 10:32:29 +000026static inline u32 max_ordered_sum_bytes(struct btrfs_fs_info *fs_info,
27 u16 csum_size)
28{
29 u32 ncsums = (PAGE_SIZE - sizeof(struct btrfs_ordered_sum)) / csum_size;
30
31 return ncsums * fs_info->sectorsize;
32}
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000033
34int btrfs_insert_file_extent(struct btrfs_trans_handle *trans,
35 struct btrfs_root *root,
36 u64 objectid, u64 pos,
37 u64 disk_offset, u64 disk_num_bytes,
38 u64 num_bytes, u64 offset, u64 ram_bytes,
39 u8 compression, u8 encryption, u16 other_encoding)
40{
41 int ret = 0;
42 struct btrfs_file_extent_item *item;
43 struct btrfs_key file_key;
44 struct btrfs_path *path;
45 struct extent_buffer *leaf;
46
47 path = btrfs_alloc_path();
48 if (!path)
49 return -ENOMEM;
50 file_key.objectid = objectid;
51 file_key.offset = pos;
52 file_key.type = BTRFS_EXTENT_DATA_KEY;
53
54 path->leave_spinning = 1;
55 ret = btrfs_insert_empty_item(trans, root, path, &file_key,
56 sizeof(*item));
57 if (ret < 0)
58 goto out;
59 BUG_ON(ret); /* Can't happen */
60 leaf = path->nodes[0];
61 item = btrfs_item_ptr(leaf, path->slots[0],
62 struct btrfs_file_extent_item);
63 btrfs_set_file_extent_disk_bytenr(leaf, item, disk_offset);
64 btrfs_set_file_extent_disk_num_bytes(leaf, item, disk_num_bytes);
65 btrfs_set_file_extent_offset(leaf, item, offset);
66 btrfs_set_file_extent_num_bytes(leaf, item, num_bytes);
67 btrfs_set_file_extent_ram_bytes(leaf, item, ram_bytes);
68 btrfs_set_file_extent_generation(leaf, item, trans->transid);
69 btrfs_set_file_extent_type(leaf, item, BTRFS_FILE_EXTENT_REG);
70 btrfs_set_file_extent_compression(leaf, item, compression);
71 btrfs_set_file_extent_encryption(leaf, item, encryption);
72 btrfs_set_file_extent_other_encoding(leaf, item, other_encoding);
73
74 btrfs_mark_buffer_dirty(leaf);
75out:
76 btrfs_free_path(path);
77 return ret;
78}
79
80static struct btrfs_csum_item *
81btrfs_lookup_csum(struct btrfs_trans_handle *trans,
82 struct btrfs_root *root,
83 struct btrfs_path *path,
84 u64 bytenr, int cow)
85{
86 struct btrfs_fs_info *fs_info = root->fs_info;
87 int ret;
88 struct btrfs_key file_key;
89 struct btrfs_key found_key;
90 struct btrfs_csum_item *item;
91 struct extent_buffer *leaf;
92 u64 csum_offset = 0;
93 u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
94 int csums_in_item;
95
96 file_key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
97 file_key.offset = bytenr;
98 file_key.type = BTRFS_EXTENT_CSUM_KEY;
99 ret = btrfs_search_slot(trans, root, &file_key, path, 0, cow);
100 if (ret < 0)
101 goto fail;
102 leaf = path->nodes[0];
103 if (ret > 0) {
104 ret = 1;
105 if (path->slots[0] == 0)
106 goto fail;
107 path->slots[0]--;
108 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
109 if (found_key.type != BTRFS_EXTENT_CSUM_KEY)
110 goto fail;
111
112 csum_offset = (bytenr - found_key.offset) >>
113 fs_info->sb->s_blocksize_bits;
114 csums_in_item = btrfs_item_size_nr(leaf, path->slots[0]);
115 csums_in_item /= csum_size;
116
117 if (csum_offset == csums_in_item) {
118 ret = -EFBIG;
119 goto fail;
120 } else if (csum_offset > csums_in_item) {
121 goto fail;
122 }
123 }
124 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_csum_item);
125 item = (struct btrfs_csum_item *)((unsigned char *)item +
126 csum_offset * csum_size);
127 return item;
128fail:
129 if (ret > 0)
130 ret = -ENOENT;
131 return ERR_PTR(ret);
132}
133
134int btrfs_lookup_file_extent(struct btrfs_trans_handle *trans,
135 struct btrfs_root *root,
136 struct btrfs_path *path, u64 objectid,
137 u64 offset, int mod)
138{
139 int ret;
140 struct btrfs_key file_key;
141 int ins_len = mod < 0 ? -1 : 0;
142 int cow = mod != 0;
143
144 file_key.objectid = objectid;
145 file_key.offset = offset;
146 file_key.type = BTRFS_EXTENT_DATA_KEY;
147 ret = btrfs_search_slot(trans, root, &file_key, path, ins_len, cow);
148 return ret;
149}
150
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000151static blk_status_t __btrfs_lookup_bio_sums(struct inode *inode, struct bio *bio,
David Brazdil0f672f62019-12-10 10:32:29 +0000152 u64 logical_offset, u8 *dst, int dio)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000153{
154 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
155 struct bio_vec bvec;
156 struct bvec_iter iter;
157 struct btrfs_io_bio *btrfs_bio = btrfs_io_bio(bio);
158 struct btrfs_csum_item *item = NULL;
159 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
160 struct btrfs_path *path;
161 u8 *csum;
162 u64 offset = 0;
163 u64 item_start_offset = 0;
164 u64 item_last_offset = 0;
165 u64 disk_bytenr;
166 u64 page_bytes_left;
167 u32 diff;
168 int nblocks;
169 int count = 0;
170 u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
171
172 path = btrfs_alloc_path();
173 if (!path)
174 return BLK_STS_RESOURCE;
175
176 nblocks = bio->bi_iter.bi_size >> inode->i_sb->s_blocksize_bits;
177 if (!dst) {
178 if (nblocks * csum_size > BTRFS_BIO_INLINE_CSUM_SIZE) {
David Brazdil0f672f62019-12-10 10:32:29 +0000179 btrfs_bio->csum = kmalloc_array(nblocks, csum_size,
180 GFP_NOFS);
181 if (!btrfs_bio->csum) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000182 btrfs_free_path(path);
183 return BLK_STS_RESOURCE;
184 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000185 } else {
186 btrfs_bio->csum = btrfs_bio->csum_inline;
187 }
188 csum = btrfs_bio->csum;
189 } else {
David Brazdil0f672f62019-12-10 10:32:29 +0000190 csum = dst;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000191 }
192
193 if (bio->bi_iter.bi_size > PAGE_SIZE * 8)
194 path->reada = READA_FORWARD;
195
196 /*
197 * the free space stuff is only read when it hasn't been
198 * updated in the current transaction. So, we can safely
199 * read from the commit root and sidestep a nasty deadlock
200 * between reading the free space cache and updating the csum tree.
201 */
202 if (btrfs_is_free_space_inode(BTRFS_I(inode))) {
203 path->search_commit_root = 1;
204 path->skip_locking = 1;
205 }
206
207 disk_bytenr = (u64)bio->bi_iter.bi_sector << 9;
208 if (dio)
209 offset = logical_offset;
210
211 bio_for_each_segment(bvec, bio, iter) {
212 page_bytes_left = bvec.bv_len;
213 if (count)
214 goto next;
215
216 if (!dio)
217 offset = page_offset(bvec.bv_page) + bvec.bv_offset;
218 count = btrfs_find_ordered_sum(inode, offset, disk_bytenr,
David Brazdil0f672f62019-12-10 10:32:29 +0000219 csum, nblocks);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000220 if (count)
221 goto found;
222
223 if (!item || disk_bytenr < item_start_offset ||
224 disk_bytenr >= item_last_offset) {
225 struct btrfs_key found_key;
226 u32 item_size;
227
228 if (item)
229 btrfs_release_path(path);
230 item = btrfs_lookup_csum(NULL, fs_info->csum_root,
231 path, disk_bytenr, 0);
232 if (IS_ERR(item)) {
233 count = 1;
234 memset(csum, 0, csum_size);
235 if (BTRFS_I(inode)->root->root_key.objectid ==
236 BTRFS_DATA_RELOC_TREE_OBJECTID) {
237 set_extent_bits(io_tree, offset,
238 offset + fs_info->sectorsize - 1,
239 EXTENT_NODATASUM);
240 } else {
241 btrfs_info_rl(fs_info,
242 "no csum found for inode %llu start %llu",
243 btrfs_ino(BTRFS_I(inode)), offset);
244 }
245 item = NULL;
246 btrfs_release_path(path);
247 goto found;
248 }
249 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
250 path->slots[0]);
251
252 item_start_offset = found_key.offset;
253 item_size = btrfs_item_size_nr(path->nodes[0],
254 path->slots[0]);
255 item_last_offset = item_start_offset +
256 (item_size / csum_size) *
257 fs_info->sectorsize;
258 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
259 struct btrfs_csum_item);
260 }
261 /*
262 * this byte range must be able to fit inside
263 * a single leaf so it will also fit inside a u32
264 */
265 diff = disk_bytenr - item_start_offset;
266 diff = diff / fs_info->sectorsize;
267 diff = diff * csum_size;
268 count = min_t(int, nblocks, (item_last_offset - disk_bytenr) >>
269 inode->i_sb->s_blocksize_bits);
270 read_extent_buffer(path->nodes[0], csum,
271 ((unsigned long)item) + diff,
272 csum_size * count);
273found:
274 csum += count * csum_size;
275 nblocks -= count;
276next:
Olivier Deprez0e641232021-09-23 10:07:05 +0200277 while (count > 0) {
278 count--;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000279 disk_bytenr += fs_info->sectorsize;
280 offset += fs_info->sectorsize;
281 page_bytes_left -= fs_info->sectorsize;
282 if (!page_bytes_left)
283 break; /* move to next bio */
284 }
285 }
286
287 WARN_ON_ONCE(count);
288 btrfs_free_path(path);
289 return 0;
290}
291
David Brazdil0f672f62019-12-10 10:32:29 +0000292blk_status_t btrfs_lookup_bio_sums(struct inode *inode, struct bio *bio,
293 u8 *dst)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000294{
295 return __btrfs_lookup_bio_sums(inode, bio, 0, dst, 0);
296}
297
298blk_status_t btrfs_lookup_bio_sums_dio(struct inode *inode, struct bio *bio, u64 offset)
299{
300 return __btrfs_lookup_bio_sums(inode, bio, offset, NULL, 1);
301}
302
303int btrfs_lookup_csums_range(struct btrfs_root *root, u64 start, u64 end,
304 struct list_head *list, int search_commit)
305{
306 struct btrfs_fs_info *fs_info = root->fs_info;
307 struct btrfs_key key;
308 struct btrfs_path *path;
309 struct extent_buffer *leaf;
310 struct btrfs_ordered_sum *sums;
311 struct btrfs_csum_item *item;
312 LIST_HEAD(tmplist);
313 unsigned long offset;
314 int ret;
315 size_t size;
316 u64 csum_end;
317 u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
318
319 ASSERT(IS_ALIGNED(start, fs_info->sectorsize) &&
320 IS_ALIGNED(end + 1, fs_info->sectorsize));
321
322 path = btrfs_alloc_path();
323 if (!path)
324 return -ENOMEM;
325
326 if (search_commit) {
327 path->skip_locking = 1;
328 path->reada = READA_FORWARD;
329 path->search_commit_root = 1;
330 }
331
332 key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
333 key.offset = start;
334 key.type = BTRFS_EXTENT_CSUM_KEY;
335
336 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
337 if (ret < 0)
338 goto fail;
339 if (ret > 0 && path->slots[0] > 0) {
340 leaf = path->nodes[0];
341 btrfs_item_key_to_cpu(leaf, &key, path->slots[0] - 1);
342 if (key.objectid == BTRFS_EXTENT_CSUM_OBJECTID &&
343 key.type == BTRFS_EXTENT_CSUM_KEY) {
344 offset = (start - key.offset) >>
345 fs_info->sb->s_blocksize_bits;
346 if (offset * csum_size <
347 btrfs_item_size_nr(leaf, path->slots[0] - 1))
348 path->slots[0]--;
349 }
350 }
351
352 while (start <= end) {
353 leaf = path->nodes[0];
354 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
355 ret = btrfs_next_leaf(root, path);
356 if (ret < 0)
357 goto fail;
358 if (ret > 0)
359 break;
360 leaf = path->nodes[0];
361 }
362
363 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
364 if (key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
365 key.type != BTRFS_EXTENT_CSUM_KEY ||
366 key.offset > end)
367 break;
368
369 if (key.offset > start)
370 start = key.offset;
371
372 size = btrfs_item_size_nr(leaf, path->slots[0]);
373 csum_end = key.offset + (size / csum_size) * fs_info->sectorsize;
374 if (csum_end <= start) {
375 path->slots[0]++;
376 continue;
377 }
378
379 csum_end = min(csum_end, end + 1);
380 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
381 struct btrfs_csum_item);
382 while (start < csum_end) {
383 size = min_t(size_t, csum_end - start,
David Brazdil0f672f62019-12-10 10:32:29 +0000384 max_ordered_sum_bytes(fs_info, csum_size));
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000385 sums = kzalloc(btrfs_ordered_sum_size(fs_info, size),
386 GFP_NOFS);
387 if (!sums) {
388 ret = -ENOMEM;
389 goto fail;
390 }
391
392 sums->bytenr = start;
393 sums->len = (int)size;
394
395 offset = (start - key.offset) >>
396 fs_info->sb->s_blocksize_bits;
397 offset *= csum_size;
398 size >>= fs_info->sb->s_blocksize_bits;
399
400 read_extent_buffer(path->nodes[0],
401 sums->sums,
402 ((unsigned long)item) + offset,
403 csum_size * size);
404
405 start += fs_info->sectorsize * size;
406 list_add_tail(&sums->list, &tmplist);
407 }
408 path->slots[0]++;
409 }
410 ret = 0;
411fail:
412 while (ret < 0 && !list_empty(&tmplist)) {
413 sums = list_entry(tmplist.next, struct btrfs_ordered_sum, list);
414 list_del(&sums->list);
415 kfree(sums);
416 }
417 list_splice_tail(&tmplist, list);
418
419 btrfs_free_path(path);
420 return ret;
421}
422
David Brazdil0f672f62019-12-10 10:32:29 +0000423/*
424 * btrfs_csum_one_bio - Calculates checksums of the data contained inside a bio
425 * @inode: Owner of the data inside the bio
426 * @bio: Contains the data to be checksummed
427 * @file_start: offset in file this bio begins to describe
428 * @contig: Boolean. If true/1 means all bio vecs in this bio are
429 * contiguous and they begin at @file_start in the file. False/0
430 * means this bio can contains potentially discontigous bio vecs
431 * so the logical offset of each should be calculated separately.
432 */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000433blk_status_t btrfs_csum_one_bio(struct inode *inode, struct bio *bio,
434 u64 file_start, int contig)
435{
436 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
David Brazdil0f672f62019-12-10 10:32:29 +0000437 SHASH_DESC_ON_STACK(shash, fs_info->csum_shash);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000438 struct btrfs_ordered_sum *sums;
439 struct btrfs_ordered_extent *ordered = NULL;
440 char *data;
441 struct bvec_iter iter;
442 struct bio_vec bvec;
443 int index;
444 int nr_sectors;
445 unsigned long total_bytes = 0;
446 unsigned long this_sum_bytes = 0;
447 int i;
448 u64 offset;
David Brazdil0f672f62019-12-10 10:32:29 +0000449 unsigned nofs_flag;
450 const u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000451
David Brazdil0f672f62019-12-10 10:32:29 +0000452 nofs_flag = memalloc_nofs_save();
453 sums = kvzalloc(btrfs_ordered_sum_size(fs_info, bio->bi_iter.bi_size),
454 GFP_KERNEL);
455 memalloc_nofs_restore(nofs_flag);
456
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000457 if (!sums)
458 return BLK_STS_RESOURCE;
459
460 sums->len = bio->bi_iter.bi_size;
461 INIT_LIST_HEAD(&sums->list);
462
463 if (contig)
464 offset = file_start;
465 else
466 offset = 0; /* shut up gcc */
467
468 sums->bytenr = (u64)bio->bi_iter.bi_sector << 9;
469 index = 0;
470
David Brazdil0f672f62019-12-10 10:32:29 +0000471 shash->tfm = fs_info->csum_shash;
472
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000473 bio_for_each_segment(bvec, bio, iter) {
474 if (!contig)
475 offset = page_offset(bvec.bv_page) + bvec.bv_offset;
476
477 if (!ordered) {
478 ordered = btrfs_lookup_ordered_extent(inode, offset);
479 BUG_ON(!ordered); /* Logic error */
480 }
481
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000482 nr_sectors = BTRFS_BYTES_TO_BLKS(fs_info,
483 bvec.bv_len + fs_info->sectorsize
484 - 1);
485
486 for (i = 0; i < nr_sectors; i++) {
487 if (offset >= ordered->file_offset + ordered->len ||
488 offset < ordered->file_offset) {
489 unsigned long bytes_left;
490
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000491 sums->len = this_sum_bytes;
492 this_sum_bytes = 0;
David Brazdil0f672f62019-12-10 10:32:29 +0000493 btrfs_add_ordered_sum(ordered, sums);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000494 btrfs_put_ordered_extent(ordered);
495
496 bytes_left = bio->bi_iter.bi_size - total_bytes;
497
David Brazdil0f672f62019-12-10 10:32:29 +0000498 nofs_flag = memalloc_nofs_save();
499 sums = kvzalloc(btrfs_ordered_sum_size(fs_info,
500 bytes_left), GFP_KERNEL);
501 memalloc_nofs_restore(nofs_flag);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000502 BUG_ON(!sums); /* -ENOMEM */
503 sums->len = bytes_left;
504 ordered = btrfs_lookup_ordered_extent(inode,
505 offset);
506 ASSERT(ordered); /* Logic error */
507 sums->bytenr = ((u64)bio->bi_iter.bi_sector << 9)
508 + total_bytes;
509 index = 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000510 }
511
David Brazdil0f672f62019-12-10 10:32:29 +0000512 crypto_shash_init(shash);
513 data = kmap_atomic(bvec.bv_page);
514 crypto_shash_update(shash, data + bvec.bv_offset
515 + (i * fs_info->sectorsize),
516 fs_info->sectorsize);
517 kunmap_atomic(data);
518 crypto_shash_final(shash, (char *)(sums->sums + index));
519 index += csum_size;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000520 offset += fs_info->sectorsize;
521 this_sum_bytes += fs_info->sectorsize;
522 total_bytes += fs_info->sectorsize;
523 }
524
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000525 }
526 this_sum_bytes = 0;
David Brazdil0f672f62019-12-10 10:32:29 +0000527 btrfs_add_ordered_sum(ordered, sums);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000528 btrfs_put_ordered_extent(ordered);
529 return 0;
530}
531
532/*
533 * helper function for csum removal, this expects the
534 * key to describe the csum pointed to by the path, and it expects
535 * the csum to overlap the range [bytenr, len]
536 *
537 * The csum should not be entirely contained in the range and the
538 * range should not be entirely contained in the csum.
539 *
540 * This calls btrfs_truncate_item with the correct args based on the
541 * overlap, and fixes up the key as required.
542 */
543static noinline void truncate_one_csum(struct btrfs_fs_info *fs_info,
544 struct btrfs_path *path,
545 struct btrfs_key *key,
546 u64 bytenr, u64 len)
547{
548 struct extent_buffer *leaf;
549 u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
550 u64 csum_end;
551 u64 end_byte = bytenr + len;
552 u32 blocksize_bits = fs_info->sb->s_blocksize_bits;
553
554 leaf = path->nodes[0];
555 csum_end = btrfs_item_size_nr(leaf, path->slots[0]) / csum_size;
556 csum_end <<= fs_info->sb->s_blocksize_bits;
557 csum_end += key->offset;
558
559 if (key->offset < bytenr && csum_end <= end_byte) {
560 /*
561 * [ bytenr - len ]
562 * [ ]
563 * [csum ]
564 * A simple truncate off the end of the item
565 */
566 u32 new_size = (bytenr - key->offset) >> blocksize_bits;
567 new_size *= csum_size;
David Brazdil0f672f62019-12-10 10:32:29 +0000568 btrfs_truncate_item(path, new_size, 1);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000569 } else if (key->offset >= bytenr && csum_end > end_byte &&
570 end_byte > key->offset) {
571 /*
572 * [ bytenr - len ]
573 * [ ]
574 * [csum ]
575 * we need to truncate from the beginning of the csum
576 */
577 u32 new_size = (csum_end - end_byte) >> blocksize_bits;
578 new_size *= csum_size;
579
David Brazdil0f672f62019-12-10 10:32:29 +0000580 btrfs_truncate_item(path, new_size, 0);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000581
582 key->offset = end_byte;
583 btrfs_set_item_key_safe(fs_info, path, key);
584 } else {
585 BUG();
586 }
587}
588
589/*
590 * deletes the csum items from the csum tree for a given
591 * range of bytes.
592 */
593int btrfs_del_csums(struct btrfs_trans_handle *trans,
Olivier Deprez0e641232021-09-23 10:07:05 +0200594 struct btrfs_root *root, u64 bytenr, u64 len)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000595{
Olivier Deprez0e641232021-09-23 10:07:05 +0200596 struct btrfs_fs_info *fs_info = trans->fs_info;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000597 struct btrfs_path *path;
598 struct btrfs_key key;
599 u64 end_byte = bytenr + len;
600 u64 csum_end;
601 struct extent_buffer *leaf;
Olivier Deprez0e641232021-09-23 10:07:05 +0200602 int ret = 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000603 u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
604 int blocksize_bits = fs_info->sb->s_blocksize_bits;
605
Olivier Deprez0e641232021-09-23 10:07:05 +0200606 ASSERT(root == fs_info->csum_root ||
607 root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID);
608
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000609 path = btrfs_alloc_path();
610 if (!path)
611 return -ENOMEM;
612
613 while (1) {
614 key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
615 key.offset = end_byte - 1;
616 key.type = BTRFS_EXTENT_CSUM_KEY;
617
618 path->leave_spinning = 1;
619 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
620 if (ret > 0) {
Olivier Deprez0e641232021-09-23 10:07:05 +0200621 ret = 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000622 if (path->slots[0] == 0)
623 break;
624 path->slots[0]--;
625 } else if (ret < 0) {
626 break;
627 }
628
629 leaf = path->nodes[0];
630 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
631
632 if (key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
633 key.type != BTRFS_EXTENT_CSUM_KEY) {
634 break;
635 }
636
637 if (key.offset >= end_byte)
638 break;
639
640 csum_end = btrfs_item_size_nr(leaf, path->slots[0]) / csum_size;
641 csum_end <<= blocksize_bits;
642 csum_end += key.offset;
643
644 /* this csum ends before we start, we're done */
645 if (csum_end <= bytenr)
646 break;
647
648 /* delete the entire item, it is inside our range */
649 if (key.offset >= bytenr && csum_end <= end_byte) {
650 int del_nr = 1;
651
652 /*
653 * Check how many csum items preceding this one in this
654 * leaf correspond to our range and then delete them all
655 * at once.
656 */
657 if (key.offset > bytenr && path->slots[0] > 0) {
658 int slot = path->slots[0] - 1;
659
660 while (slot >= 0) {
661 struct btrfs_key pk;
662
663 btrfs_item_key_to_cpu(leaf, &pk, slot);
664 if (pk.offset < bytenr ||
665 pk.type != BTRFS_EXTENT_CSUM_KEY ||
666 pk.objectid !=
667 BTRFS_EXTENT_CSUM_OBJECTID)
668 break;
669 path->slots[0] = slot;
670 del_nr++;
671 key.offset = pk.offset;
672 slot--;
673 }
674 }
675 ret = btrfs_del_items(trans, root, path,
676 path->slots[0], del_nr);
677 if (ret)
Olivier Deprez0e641232021-09-23 10:07:05 +0200678 break;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000679 if (key.offset == bytenr)
680 break;
681 } else if (key.offset < bytenr && csum_end > end_byte) {
682 unsigned long offset;
683 unsigned long shift_len;
684 unsigned long item_offset;
685 /*
686 * [ bytenr - len ]
687 * [csum ]
688 *
689 * Our bytes are in the middle of the csum,
690 * we need to split this item and insert a new one.
691 *
692 * But we can't drop the path because the
693 * csum could change, get removed, extended etc.
694 *
695 * The trick here is the max size of a csum item leaves
696 * enough room in the tree block for a single
697 * item header. So, we split the item in place,
698 * adding a new header pointing to the existing
699 * bytes. Then we loop around again and we have
700 * a nicely formed csum item that we can neatly
701 * truncate.
702 */
703 offset = (bytenr - key.offset) >> blocksize_bits;
704 offset *= csum_size;
705
706 shift_len = (len >> blocksize_bits) * csum_size;
707
708 item_offset = btrfs_item_ptr_offset(leaf,
709 path->slots[0]);
710
711 memzero_extent_buffer(leaf, item_offset + offset,
712 shift_len);
713 key.offset = bytenr;
714
715 /*
716 * btrfs_split_item returns -EAGAIN when the
717 * item changed size or key
718 */
719 ret = btrfs_split_item(trans, root, path, &key, offset);
720 if (ret && ret != -EAGAIN) {
721 btrfs_abort_transaction(trans, ret);
Olivier Deprez0e641232021-09-23 10:07:05 +0200722 break;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000723 }
Olivier Deprez0e641232021-09-23 10:07:05 +0200724 ret = 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000725
726 key.offset = end_byte - 1;
727 } else {
728 truncate_one_csum(fs_info, path, &key, bytenr, len);
729 if (key.offset < bytenr)
730 break;
731 }
732 btrfs_release_path(path);
733 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000734 btrfs_free_path(path);
735 return ret;
736}
737
738int btrfs_csum_file_blocks(struct btrfs_trans_handle *trans,
739 struct btrfs_root *root,
740 struct btrfs_ordered_sum *sums)
741{
742 struct btrfs_fs_info *fs_info = root->fs_info;
743 struct btrfs_key file_key;
744 struct btrfs_key found_key;
745 struct btrfs_path *path;
746 struct btrfs_csum_item *item;
747 struct btrfs_csum_item *item_end;
748 struct extent_buffer *leaf = NULL;
749 u64 next_offset;
750 u64 total_bytes = 0;
751 u64 csum_offset;
752 u64 bytenr;
753 u32 nritems;
754 u32 ins_size;
755 int index = 0;
756 int found_next;
757 int ret;
758 u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
759
760 path = btrfs_alloc_path();
761 if (!path)
762 return -ENOMEM;
763again:
764 next_offset = (u64)-1;
765 found_next = 0;
766 bytenr = sums->bytenr + total_bytes;
767 file_key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
768 file_key.offset = bytenr;
769 file_key.type = BTRFS_EXTENT_CSUM_KEY;
770
771 item = btrfs_lookup_csum(trans, root, path, bytenr, 1);
772 if (!IS_ERR(item)) {
773 ret = 0;
774 leaf = path->nodes[0];
775 item_end = btrfs_item_ptr(leaf, path->slots[0],
776 struct btrfs_csum_item);
777 item_end = (struct btrfs_csum_item *)((char *)item_end +
778 btrfs_item_size_nr(leaf, path->slots[0]));
779 goto found;
780 }
781 ret = PTR_ERR(item);
782 if (ret != -EFBIG && ret != -ENOENT)
783 goto fail_unlock;
784
785 if (ret == -EFBIG) {
786 u32 item_size;
787 /* we found one, but it isn't big enough yet */
788 leaf = path->nodes[0];
789 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
790 if ((item_size / csum_size) >=
791 MAX_CSUM_ITEMS(fs_info, csum_size)) {
792 /* already at max size, make a new one */
793 goto insert;
794 }
795 } else {
796 int slot = path->slots[0] + 1;
797 /* we didn't find a csum item, insert one */
798 nritems = btrfs_header_nritems(path->nodes[0]);
799 if (!nritems || (path->slots[0] >= nritems - 1)) {
800 ret = btrfs_next_leaf(root, path);
Olivier Deprez0e641232021-09-23 10:07:05 +0200801 if (ret < 0) {
802 goto out;
803 } else if (ret > 0) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000804 found_next = 1;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000805 goto insert;
Olivier Deprez0e641232021-09-23 10:07:05 +0200806 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000807 slot = path->slots[0];
808 }
809 btrfs_item_key_to_cpu(path->nodes[0], &found_key, slot);
810 if (found_key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
811 found_key.type != BTRFS_EXTENT_CSUM_KEY) {
812 found_next = 1;
813 goto insert;
814 }
815 next_offset = found_key.offset;
816 found_next = 1;
817 goto insert;
818 }
819
820 /*
821 * at this point, we know the tree has an item, but it isn't big
822 * enough yet to put our csum in. Grow it
823 */
824 btrfs_release_path(path);
825 ret = btrfs_search_slot(trans, root, &file_key, path,
826 csum_size, 1);
827 if (ret < 0)
828 goto fail_unlock;
829
830 if (ret > 0) {
831 if (path->slots[0] == 0)
832 goto insert;
833 path->slots[0]--;
834 }
835
836 leaf = path->nodes[0];
837 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
838 csum_offset = (bytenr - found_key.offset) >>
839 fs_info->sb->s_blocksize_bits;
840
841 if (found_key.type != BTRFS_EXTENT_CSUM_KEY ||
842 found_key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
843 csum_offset >= MAX_CSUM_ITEMS(fs_info, csum_size)) {
844 goto insert;
845 }
846
847 if (csum_offset == btrfs_item_size_nr(leaf, path->slots[0]) /
848 csum_size) {
849 int extend_nr;
850 u64 tmp;
851 u32 diff;
852 u32 free_space;
853
David Brazdil0f672f62019-12-10 10:32:29 +0000854 if (btrfs_leaf_free_space(leaf) <
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000855 sizeof(struct btrfs_item) + csum_size * 2)
856 goto insert;
857
David Brazdil0f672f62019-12-10 10:32:29 +0000858 free_space = btrfs_leaf_free_space(leaf) -
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000859 sizeof(struct btrfs_item) - csum_size;
860 tmp = sums->len - total_bytes;
861 tmp >>= fs_info->sb->s_blocksize_bits;
862 WARN_ON(tmp < 1);
863
864 extend_nr = max_t(int, 1, (int)tmp);
865 diff = (csum_offset + extend_nr) * csum_size;
866 diff = min(diff,
867 MAX_CSUM_ITEMS(fs_info, csum_size) * csum_size);
868
869 diff = diff - btrfs_item_size_nr(leaf, path->slots[0]);
870 diff = min(free_space, diff);
871 diff /= csum_size;
872 diff *= csum_size;
873
David Brazdil0f672f62019-12-10 10:32:29 +0000874 btrfs_extend_item(path, diff);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000875 ret = 0;
876 goto csum;
877 }
878
879insert:
880 btrfs_release_path(path);
881 csum_offset = 0;
882 if (found_next) {
883 u64 tmp;
884
885 tmp = sums->len - total_bytes;
886 tmp >>= fs_info->sb->s_blocksize_bits;
887 tmp = min(tmp, (next_offset - file_key.offset) >>
888 fs_info->sb->s_blocksize_bits);
889
890 tmp = max_t(u64, 1, tmp);
891 tmp = min_t(u64, tmp, MAX_CSUM_ITEMS(fs_info, csum_size));
892 ins_size = csum_size * tmp;
893 } else {
894 ins_size = csum_size;
895 }
896 path->leave_spinning = 1;
897 ret = btrfs_insert_empty_item(trans, root, path, &file_key,
898 ins_size);
899 path->leave_spinning = 0;
900 if (ret < 0)
901 goto fail_unlock;
902 if (WARN_ON(ret != 0))
903 goto fail_unlock;
904 leaf = path->nodes[0];
905csum:
906 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_csum_item);
907 item_end = (struct btrfs_csum_item *)((unsigned char *)item +
908 btrfs_item_size_nr(leaf, path->slots[0]));
909 item = (struct btrfs_csum_item *)((unsigned char *)item +
910 csum_offset * csum_size);
911found:
912 ins_size = (u32)(sums->len - total_bytes) >>
913 fs_info->sb->s_blocksize_bits;
914 ins_size *= csum_size;
915 ins_size = min_t(u32, (unsigned long)item_end - (unsigned long)item,
916 ins_size);
917 write_extent_buffer(leaf, sums->sums + index, (unsigned long)item,
918 ins_size);
919
David Brazdil0f672f62019-12-10 10:32:29 +0000920 index += ins_size;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000921 ins_size /= csum_size;
922 total_bytes += ins_size * fs_info->sectorsize;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000923
924 btrfs_mark_buffer_dirty(path->nodes[0]);
925 if (total_bytes < sums->len) {
926 btrfs_release_path(path);
927 cond_resched();
928 goto again;
929 }
930out:
931 btrfs_free_path(path);
932 return ret;
933
934fail_unlock:
935 goto out;
936}
937
938void btrfs_extent_item_to_extent_map(struct btrfs_inode *inode,
939 const struct btrfs_path *path,
940 struct btrfs_file_extent_item *fi,
941 const bool new_inline,
942 struct extent_map *em)
943{
944 struct btrfs_fs_info *fs_info = inode->root->fs_info;
945 struct btrfs_root *root = inode->root;
946 struct extent_buffer *leaf = path->nodes[0];
947 const int slot = path->slots[0];
948 struct btrfs_key key;
949 u64 extent_start, extent_end;
950 u64 bytenr;
951 u8 type = btrfs_file_extent_type(leaf, fi);
952 int compress_type = btrfs_file_extent_compression(leaf, fi);
953
954 em->bdev = fs_info->fs_devices->latest_bdev;
955 btrfs_item_key_to_cpu(leaf, &key, slot);
956 extent_start = key.offset;
957
958 if (type == BTRFS_FILE_EXTENT_REG ||
959 type == BTRFS_FILE_EXTENT_PREALLOC) {
960 extent_end = extent_start +
961 btrfs_file_extent_num_bytes(leaf, fi);
962 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
963 size_t size;
964 size = btrfs_file_extent_ram_bytes(leaf, fi);
965 extent_end = ALIGN(extent_start + size,
966 fs_info->sectorsize);
967 }
968
969 em->ram_bytes = btrfs_file_extent_ram_bytes(leaf, fi);
970 if (type == BTRFS_FILE_EXTENT_REG ||
971 type == BTRFS_FILE_EXTENT_PREALLOC) {
972 em->start = extent_start;
973 em->len = extent_end - extent_start;
974 em->orig_start = extent_start -
975 btrfs_file_extent_offset(leaf, fi);
976 em->orig_block_len = btrfs_file_extent_disk_num_bytes(leaf, fi);
977 bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
978 if (bytenr == 0) {
979 em->block_start = EXTENT_MAP_HOLE;
980 return;
981 }
982 if (compress_type != BTRFS_COMPRESS_NONE) {
983 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
984 em->compress_type = compress_type;
985 em->block_start = bytenr;
986 em->block_len = em->orig_block_len;
987 } else {
988 bytenr += btrfs_file_extent_offset(leaf, fi);
989 em->block_start = bytenr;
990 em->block_len = em->len;
991 if (type == BTRFS_FILE_EXTENT_PREALLOC)
992 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
993 }
994 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
995 em->block_start = EXTENT_MAP_INLINE;
996 em->start = extent_start;
997 em->len = extent_end - extent_start;
998 /*
999 * Initialize orig_start and block_len with the same values
1000 * as in inode.c:btrfs_get_extent().
1001 */
1002 em->orig_start = EXTENT_MAP_HOLE;
1003 em->block_len = (u64)-1;
1004 if (!new_inline && compress_type != BTRFS_COMPRESS_NONE) {
1005 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
1006 em->compress_type = compress_type;
1007 }
1008 } else {
1009 btrfs_err(fs_info,
1010 "unknown file extent item type %d, inode %llu, offset %llu, "
1011 "root %llu", type, btrfs_ino(inode), extent_start,
1012 root->root_key.objectid);
1013 }
1014}