2 * Copyright (C) 2007 Oracle. All rights reserved.
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.
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.
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.
21 #include "kerncompat.h"
22 #include "radix-tree.h"
25 #include "transaction.h"
26 #include "print-tree.h"
30 #define MAX_CSUM_ITEMS(r,size) ((((BTRFS_LEAF_DATA_SIZE(r) - \
31 sizeof(struct btrfs_item) * 2) / \
33 int btrfs_insert_file_extent(struct btrfs_trans_handle *trans,
34 struct btrfs_root *root,
35 u64 objectid, u64 pos, u64 offset,
36 u64 disk_num_bytes, u64 num_bytes)
40 struct btrfs_file_extent_item *item;
41 struct btrfs_key file_key;
42 struct btrfs_path *path;
43 struct extent_buffer *leaf;
47 /* For NO_HOLES, we don't insert hole file extent */
48 if (btrfs_fs_incompat(root->fs_info, NO_HOLES) && is_hole)
51 /* For hole, its disk_bytenr and disk_num_bytes must be 0 */
55 path = btrfs_alloc_path();
59 file_key.objectid = objectid;
60 file_key.offset = pos;
61 file_key.type = BTRFS_EXTENT_DATA_KEY;
63 ret = btrfs_insert_empty_item(trans, root, path, &file_key,
68 leaf = path->nodes[0];
69 item = btrfs_item_ptr(leaf, path->slots[0],
70 struct btrfs_file_extent_item);
71 btrfs_set_file_extent_disk_bytenr(leaf, item, offset);
72 btrfs_set_file_extent_disk_num_bytes(leaf, item, disk_num_bytes);
73 btrfs_set_file_extent_offset(leaf, item, 0);
74 btrfs_set_file_extent_num_bytes(leaf, item, num_bytes);
75 btrfs_set_file_extent_ram_bytes(leaf, item, num_bytes);
76 btrfs_set_file_extent_generation(leaf, item, trans->transid);
77 btrfs_set_file_extent_type(leaf, item, BTRFS_FILE_EXTENT_REG);
78 btrfs_set_file_extent_compression(leaf, item, 0);
79 btrfs_set_file_extent_encryption(leaf, item, 0);
80 btrfs_set_file_extent_other_encoding(leaf, item, 0);
81 btrfs_mark_buffer_dirty(leaf);
83 btrfs_free_path(path);
87 int btrfs_insert_inline_extent(struct btrfs_trans_handle *trans,
88 struct btrfs_root *root, u64 objectid,
89 u64 offset, char *buffer, size_t size)
92 struct btrfs_path *path;
93 struct extent_buffer *leaf;
95 struct btrfs_file_extent_item *ei;
100 path = btrfs_alloc_path();
104 key.objectid = objectid;
106 key.type = BTRFS_EXTENT_DATA_KEY;
108 datasize = btrfs_file_extent_calc_inline_size(size);
109 ret = btrfs_insert_empty_item(trans, root, path, &key, datasize);
115 leaf = path->nodes[0];
116 ei = btrfs_item_ptr(leaf, path->slots[0],
117 struct btrfs_file_extent_item);
118 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
119 btrfs_set_file_extent_type(leaf, ei, BTRFS_FILE_EXTENT_INLINE);
120 btrfs_set_file_extent_ram_bytes(leaf, ei, size);
121 btrfs_set_file_extent_compression(leaf, ei, 0);
122 btrfs_set_file_extent_encryption(leaf, ei, 0);
123 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
125 ptr = btrfs_file_extent_inline_start(ei) + offset - key.offset;
126 write_extent_buffer(leaf, buffer, ptr, size);
127 btrfs_mark_buffer_dirty(leaf);
129 btrfs_free_path(path);
133 static struct btrfs_csum_item *
134 btrfs_lookup_csum(struct btrfs_trans_handle *trans,
135 struct btrfs_root *root,
136 struct btrfs_path *path,
140 struct btrfs_key file_key;
141 struct btrfs_key found_key;
142 struct btrfs_csum_item *item;
143 struct extent_buffer *leaf;
146 btrfs_super_csum_size(root->fs_info->super_copy);
149 file_key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
150 file_key.offset = bytenr;
151 file_key.type = BTRFS_EXTENT_CSUM_KEY;
152 ret = btrfs_search_slot(trans, root, &file_key, path, 0, cow);
155 leaf = path->nodes[0];
158 if (path->slots[0] == 0)
161 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
162 if (found_key.type != BTRFS_EXTENT_CSUM_KEY)
165 csum_offset = (bytenr - found_key.offset) /
166 root->fs_info->sectorsize;
167 csums_in_item = btrfs_item_size_nr(leaf, path->slots[0]);
168 csums_in_item /= csum_size;
170 if (csum_offset >= csums_in_item) {
175 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_csum_item);
176 item = (struct btrfs_csum_item *)((unsigned char *)item +
177 csum_offset * csum_size);
185 int btrfs_csum_file_block(struct btrfs_trans_handle *trans,
186 struct btrfs_root *root, u64 alloc_end,
187 u64 bytenr, char *data, size_t len)
190 struct btrfs_key file_key;
191 struct btrfs_key found_key;
192 u64 next_offset = (u64)-1;
194 struct btrfs_path *path;
195 struct btrfs_csum_item *item;
196 struct extent_buffer *leaf = NULL;
198 u32 csum_result = ~(u32)0;
199 u32 sectorsize = root->fs_info->sectorsize;
203 btrfs_super_csum_size(root->fs_info->super_copy);
205 path = btrfs_alloc_path();
209 file_key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
210 file_key.offset = bytenr;
211 file_key.type = BTRFS_EXTENT_CSUM_KEY;
213 item = btrfs_lookup_csum(trans, root, path, bytenr, 1);
215 leaf = path->nodes[0];
222 /* we found one, but it isn't big enough yet */
223 leaf = path->nodes[0];
224 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
225 if ((item_size / csum_size) >= MAX_CSUM_ITEMS(root, csum_size)) {
226 /* already at max size, make a new one */
230 int slot = path->slots[0] + 1;
231 /* we didn't find a csum item, insert one */
232 nritems = btrfs_header_nritems(path->nodes[0]);
233 if (path->slots[0] >= nritems - 1) {
234 ret = btrfs_next_leaf(root, path);
241 btrfs_item_key_to_cpu(path->nodes[0], &found_key, slot);
242 if (found_key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
243 found_key.type != BTRFS_EXTENT_CSUM_KEY) {
247 next_offset = found_key.offset;
253 * at this point, we know the tree has an item, but it isn't big
254 * enough yet to put our csum in. Grow it
256 btrfs_release_path(path);
257 ret = btrfs_search_slot(trans, root, &file_key, path,
264 if (path->slots[0] == 0) {
268 leaf = path->nodes[0];
269 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
270 csum_offset = (file_key.offset - found_key.offset) / sectorsize;
271 if (found_key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
272 found_key.type != BTRFS_EXTENT_CSUM_KEY ||
273 csum_offset >= MAX_CSUM_ITEMS(root, csum_size)) {
276 if (csum_offset >= btrfs_item_size_nr(leaf, path->slots[0]) /
278 u32 diff = (csum_offset + 1) * csum_size;
279 diff = diff - btrfs_item_size_nr(leaf, path->slots[0]);
280 if (diff != csum_size)
282 ret = btrfs_extend_item(root, path, diff);
288 btrfs_release_path(path);
291 u64 tmp = min(alloc_end, next_offset);
292 tmp -= file_key.offset;
294 tmp = max((u64)1, tmp);
295 tmp = min(tmp, (u64)MAX_CSUM_ITEMS(root, csum_size));
296 ins_size = csum_size * tmp;
298 ins_size = csum_size;
300 ret = btrfs_insert_empty_item(trans, root, path, &file_key,
309 leaf = path->nodes[0];
310 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_csum_item);
312 item = (struct btrfs_csum_item *)((unsigned char *)item +
313 csum_offset * csum_size);
315 csum_result = btrfs_csum_data(data, csum_result, len);
316 btrfs_csum_final(csum_result, (u8 *)&csum_result);
317 if (csum_result == 0) {
318 printk("csum result is 0 for block %llu\n",
319 (unsigned long long)bytenr);
322 write_extent_buffer(leaf, &csum_result, (unsigned long)item,
324 btrfs_mark_buffer_dirty(path->nodes[0]);
326 btrfs_free_path(path);
331 * helper function for csum removal, this expects the
332 * key to describe the csum pointed to by the path, and it expects
333 * the csum to overlap the range [bytenr, len]
335 * The csum should not be entirely contained in the range and the
336 * range should not be entirely contained in the csum.
338 * This calls btrfs_truncate_item with the correct args based on the
339 * overlap, and fixes up the key as required.
341 static noinline int truncate_one_csum(struct btrfs_root *root,
342 struct btrfs_path *path,
343 struct btrfs_key *key,
346 struct extent_buffer *leaf;
348 btrfs_super_csum_size(root->fs_info->super_copy);
350 u64 end_byte = bytenr + len;
351 u32 blocksize = root->fs_info->sectorsize;
354 leaf = path->nodes[0];
355 csum_end = btrfs_item_size_nr(leaf, path->slots[0]) / csum_size;
356 csum_end *= root->fs_info->sectorsize;
357 csum_end += key->offset;
359 if (key->offset < bytenr && csum_end <= end_byte) {
364 * A simple truncate off the end of the item
366 u32 new_size = (bytenr - key->offset) / blocksize;
367 new_size *= csum_size;
368 ret = btrfs_truncate_item(root, path, new_size, 1);
370 } else if (key->offset >= bytenr && csum_end > end_byte &&
371 end_byte > key->offset) {
376 * we need to truncate from the beginning of the csum
378 u32 new_size = (csum_end - end_byte) / blocksize;
379 new_size *= csum_size;
381 ret = btrfs_truncate_item(root, path, new_size, 0);
384 key->offset = end_byte;
385 ret = btrfs_set_item_key_safe(root, path, key);
394 * deletes the csum items from the csum tree for a given
397 int btrfs_del_csums(struct btrfs_trans_handle *trans,
398 struct btrfs_root *root, u64 bytenr, u64 len)
400 struct btrfs_path *path;
401 struct btrfs_key key;
402 u64 end_byte = bytenr + len;
404 struct extent_buffer *leaf;
407 btrfs_super_csum_size(root->fs_info->super_copy);
408 int blocksize = root->fs_info->sectorsize;
410 root = root->fs_info->csum_root;
412 path = btrfs_alloc_path();
417 key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
418 key.offset = end_byte - 1;
419 key.type = BTRFS_EXTENT_CSUM_KEY;
421 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
423 if (path->slots[0] == 0)
427 leaf = path->nodes[0];
428 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
430 if (key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
431 key.type != BTRFS_EXTENT_CSUM_KEY) {
435 if (key.offset >= end_byte)
438 csum_end = btrfs_item_size_nr(leaf, path->slots[0]) / csum_size;
439 csum_end *= blocksize;
440 csum_end += key.offset;
442 /* this csum ends before we start, we're done */
443 if (csum_end <= bytenr)
446 /* delete the entire item, it is inside our range */
447 if (key.offset >= bytenr && csum_end <= end_byte) {
448 ret = btrfs_del_item(trans, root, path);
450 } else if (key.offset < bytenr && csum_end > end_byte) {
451 unsigned long offset;
452 unsigned long shift_len;
453 unsigned long item_offset;
458 * Our bytes are in the middle of the csum,
459 * we need to split this item and insert a new one.
461 * But we can't drop the path because the
462 * csum could change, get removed, extended etc.
464 * The trick here is the max size of a csum item leaves
465 * enough room in the tree block for a single
466 * item header. So, we split the item in place,
467 * adding a new header pointing to the existing
468 * bytes. Then we loop around again and we have
469 * a nicely formed csum item that we can neatly
472 offset = (bytenr - key.offset) / blocksize;
475 shift_len = (len / blocksize) * csum_size;
477 item_offset = btrfs_item_ptr_offset(leaf,
480 memset_extent_buffer(leaf, 0, item_offset + offset,
485 * btrfs_split_item returns -EAGAIN when the
486 * item changed size or key
488 ret = btrfs_split_item(trans, root, path, &key, offset);
489 BUG_ON(ret && ret != -EAGAIN);
491 key.offset = end_byte - 1;
493 ret = truncate_one_csum(root, path, &key, bytenr, len);
496 btrfs_release_path(path);
499 btrfs_free_path(path);