1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) 2013 Facebook. All rights reserved.
6 #include <linux/types.h>
7 #include "btrfs-tests.h"
9 #include "../transaction.h"
10 #include "../disk-io.h"
11 #include "../qgroup.h"
12 #include "../backref.h"
14 static int insert_normal_tree_ref(struct btrfs_root
*root
, u64 bytenr
,
15 u64 num_bytes
, u64 parent
, u64 root_objectid
)
17 struct btrfs_trans_handle trans
;
18 struct btrfs_extent_item
*item
;
19 struct btrfs_extent_inline_ref
*iref
;
20 struct btrfs_tree_block_info
*block_info
;
21 struct btrfs_path
*path
;
22 struct extent_buffer
*leaf
;
24 u32 size
= sizeof(*item
) + sizeof(*iref
) + sizeof(*block_info
);
27 btrfs_init_dummy_trans(&trans
, NULL
);
29 ins
.objectid
= bytenr
;
30 ins
.type
= BTRFS_EXTENT_ITEM_KEY
;
31 ins
.offset
= num_bytes
;
33 path
= btrfs_alloc_path();
35 test_std_err(TEST_ALLOC_ROOT
);
39 ret
= btrfs_insert_empty_item(&trans
, root
, path
, &ins
, size
);
41 test_err("couldn't insert ref %d", ret
);
42 btrfs_free_path(path
);
46 leaf
= path
->nodes
[0];
47 item
= btrfs_item_ptr(leaf
, path
->slots
[0], struct btrfs_extent_item
);
48 btrfs_set_extent_refs(leaf
, item
, 1);
49 btrfs_set_extent_generation(leaf
, item
, 1);
50 btrfs_set_extent_flags(leaf
, item
, BTRFS_EXTENT_FLAG_TREE_BLOCK
);
51 block_info
= (struct btrfs_tree_block_info
*)(item
+ 1);
52 btrfs_set_tree_block_level(leaf
, block_info
, 0);
53 iref
= (struct btrfs_extent_inline_ref
*)(block_info
+ 1);
55 btrfs_set_extent_inline_ref_type(leaf
, iref
,
56 BTRFS_SHARED_BLOCK_REF_KEY
);
57 btrfs_set_extent_inline_ref_offset(leaf
, iref
, parent
);
59 btrfs_set_extent_inline_ref_type(leaf
, iref
, BTRFS_TREE_BLOCK_REF_KEY
);
60 btrfs_set_extent_inline_ref_offset(leaf
, iref
, root_objectid
);
62 btrfs_free_path(path
);
66 static int add_tree_ref(struct btrfs_root
*root
, u64 bytenr
, u64 num_bytes
,
67 u64 parent
, u64 root_objectid
)
69 struct btrfs_trans_handle trans
;
70 struct btrfs_extent_item
*item
;
71 struct btrfs_path
*path
;
76 btrfs_init_dummy_trans(&trans
, NULL
);
78 key
.objectid
= bytenr
;
79 key
.type
= BTRFS_EXTENT_ITEM_KEY
;
80 key
.offset
= num_bytes
;
82 path
= btrfs_alloc_path();
84 test_std_err(TEST_ALLOC_ROOT
);
88 ret
= btrfs_search_slot(&trans
, root
, &key
, path
, 0, 1);
90 test_err("couldn't find extent ref");
91 btrfs_free_path(path
);
95 item
= btrfs_item_ptr(path
->nodes
[0], path
->slots
[0],
96 struct btrfs_extent_item
);
97 refs
= btrfs_extent_refs(path
->nodes
[0], item
);
98 btrfs_set_extent_refs(path
->nodes
[0], item
, refs
+ 1);
99 btrfs_release_path(path
);
101 key
.objectid
= bytenr
;
103 key
.type
= BTRFS_SHARED_BLOCK_REF_KEY
;
106 key
.type
= BTRFS_TREE_BLOCK_REF_KEY
;
107 key
.offset
= root_objectid
;
110 ret
= btrfs_insert_empty_item(&trans
, root
, path
, &key
, 0);
112 test_err("failed to insert backref");
113 btrfs_free_path(path
);
117 static int remove_extent_item(struct btrfs_root
*root
, u64 bytenr
,
120 struct btrfs_trans_handle trans
;
121 struct btrfs_key key
;
122 struct btrfs_path
*path
;
125 btrfs_init_dummy_trans(&trans
, NULL
);
127 key
.objectid
= bytenr
;
128 key
.type
= BTRFS_EXTENT_ITEM_KEY
;
129 key
.offset
= num_bytes
;
131 path
= btrfs_alloc_path();
133 test_std_err(TEST_ALLOC_ROOT
);
137 ret
= btrfs_search_slot(&trans
, root
, &key
, path
, -1, 1);
139 test_err("didn't find our key %d", ret
);
140 btrfs_free_path(path
);
143 btrfs_del_item(&trans
, root
, path
);
144 btrfs_free_path(path
);
148 static int remove_extent_ref(struct btrfs_root
*root
, u64 bytenr
,
149 u64 num_bytes
, u64 parent
, u64 root_objectid
)
151 struct btrfs_trans_handle trans
;
152 struct btrfs_extent_item
*item
;
153 struct btrfs_path
*path
;
154 struct btrfs_key key
;
158 btrfs_init_dummy_trans(&trans
, NULL
);
160 key
.objectid
= bytenr
;
161 key
.type
= BTRFS_EXTENT_ITEM_KEY
;
162 key
.offset
= num_bytes
;
164 path
= btrfs_alloc_path();
166 test_std_err(TEST_ALLOC_ROOT
);
170 ret
= btrfs_search_slot(&trans
, root
, &key
, path
, 0, 1);
172 test_err("couldn't find extent ref");
173 btrfs_free_path(path
);
177 item
= btrfs_item_ptr(path
->nodes
[0], path
->slots
[0],
178 struct btrfs_extent_item
);
179 refs
= btrfs_extent_refs(path
->nodes
[0], item
);
180 btrfs_set_extent_refs(path
->nodes
[0], item
, refs
- 1);
181 btrfs_release_path(path
);
183 key
.objectid
= bytenr
;
185 key
.type
= BTRFS_SHARED_BLOCK_REF_KEY
;
188 key
.type
= BTRFS_TREE_BLOCK_REF_KEY
;
189 key
.offset
= root_objectid
;
192 ret
= btrfs_search_slot(&trans
, root
, &key
, path
, -1, 1);
194 test_err("couldn't find backref %d", ret
);
195 btrfs_free_path(path
);
198 btrfs_del_item(&trans
, root
, path
);
199 btrfs_free_path(path
);
203 static int test_no_shared_qgroup(struct btrfs_root
*root
,
204 u32 sectorsize
, u32 nodesize
)
206 struct btrfs_trans_handle trans
;
207 struct btrfs_fs_info
*fs_info
= root
->fs_info
;
208 struct ulist
*old_roots
= NULL
;
209 struct ulist
*new_roots
= NULL
;
212 btrfs_init_dummy_trans(&trans
, fs_info
);
214 test_msg("running qgroup add/remove tests");
215 ret
= btrfs_create_qgroup(&trans
, BTRFS_FS_TREE_OBJECTID
);
217 test_err("couldn't create a qgroup %d", ret
);
222 * Since the test trans doesn't have the complicated delayed refs,
223 * we can only call btrfs_qgroup_account_extent() directly to test
226 ret
= btrfs_find_all_roots(&trans
, fs_info
, nodesize
, 0, &old_roots
,
229 ulist_free(old_roots
);
230 test_err("couldn't find old roots: %d", ret
);
234 ret
= insert_normal_tree_ref(root
, nodesize
, nodesize
, 0,
235 BTRFS_FS_TREE_OBJECTID
);
239 ret
= btrfs_find_all_roots(&trans
, fs_info
, nodesize
, 0, &new_roots
,
242 ulist_free(old_roots
);
243 ulist_free(new_roots
);
244 test_err("couldn't find old roots: %d", ret
);
248 ret
= btrfs_qgroup_account_extent(&trans
, nodesize
, nodesize
, old_roots
,
251 test_err("couldn't account space for a qgroup %d", ret
);
255 if (btrfs_verify_qgroup_counts(fs_info
, BTRFS_FS_TREE_OBJECTID
,
256 nodesize
, nodesize
)) {
257 test_err("qgroup counts didn't match expected values");
263 ret
= btrfs_find_all_roots(&trans
, fs_info
, nodesize
, 0, &old_roots
,
266 ulist_free(old_roots
);
267 test_err("couldn't find old roots: %d", ret
);
271 ret
= remove_extent_item(root
, nodesize
, nodesize
);
275 ret
= btrfs_find_all_roots(&trans
, fs_info
, nodesize
, 0, &new_roots
,
278 ulist_free(old_roots
);
279 ulist_free(new_roots
);
280 test_err("couldn't find old roots: %d", ret
);
284 ret
= btrfs_qgroup_account_extent(&trans
, nodesize
, nodesize
, old_roots
,
287 test_err("couldn't account space for a qgroup %d", ret
);
291 if (btrfs_verify_qgroup_counts(fs_info
, BTRFS_FS_TREE_OBJECTID
, 0, 0)) {
292 test_err("qgroup counts didn't match expected values");
300 * Add a ref for two different roots to make sure the shared value comes out
301 * right, also remove one of the roots and make sure the exclusive count is
304 static int test_multiple_refs(struct btrfs_root
*root
,
305 u32 sectorsize
, u32 nodesize
)
307 struct btrfs_trans_handle trans
;
308 struct btrfs_fs_info
*fs_info
= root
->fs_info
;
309 struct ulist
*old_roots
= NULL
;
310 struct ulist
*new_roots
= NULL
;
313 btrfs_init_dummy_trans(&trans
, fs_info
);
315 test_msg("running qgroup multiple refs test");
318 * We have BTRFS_FS_TREE_OBJECTID created already from the
321 ret
= btrfs_create_qgroup(&trans
, BTRFS_FIRST_FREE_OBJECTID
);
323 test_err("couldn't create a qgroup %d", ret
);
327 ret
= btrfs_find_all_roots(&trans
, fs_info
, nodesize
, 0, &old_roots
,
330 ulist_free(old_roots
);
331 test_err("couldn't find old roots: %d", ret
);
335 ret
= insert_normal_tree_ref(root
, nodesize
, nodesize
, 0,
336 BTRFS_FS_TREE_OBJECTID
);
340 ret
= btrfs_find_all_roots(&trans
, fs_info
, nodesize
, 0, &new_roots
,
343 ulist_free(old_roots
);
344 ulist_free(new_roots
);
345 test_err("couldn't find old roots: %d", ret
);
349 ret
= btrfs_qgroup_account_extent(&trans
, nodesize
, nodesize
, old_roots
,
352 test_err("couldn't account space for a qgroup %d", ret
);
356 if (btrfs_verify_qgroup_counts(fs_info
, BTRFS_FS_TREE_OBJECTID
,
357 nodesize
, nodesize
)) {
358 test_err("qgroup counts didn't match expected values");
362 ret
= btrfs_find_all_roots(&trans
, fs_info
, nodesize
, 0, &old_roots
,
365 ulist_free(old_roots
);
366 test_err("couldn't find old roots: %d", ret
);
370 ret
= add_tree_ref(root
, nodesize
, nodesize
, 0,
371 BTRFS_FIRST_FREE_OBJECTID
);
375 ret
= btrfs_find_all_roots(&trans
, fs_info
, nodesize
, 0, &new_roots
,
378 ulist_free(old_roots
);
379 ulist_free(new_roots
);
380 test_err("couldn't find old roots: %d", ret
);
384 ret
= btrfs_qgroup_account_extent(&trans
, nodesize
, nodesize
, old_roots
,
387 test_err("couldn't account space for a qgroup %d", ret
);
391 if (btrfs_verify_qgroup_counts(fs_info
, BTRFS_FS_TREE_OBJECTID
,
393 test_err("qgroup counts didn't match expected values");
397 if (btrfs_verify_qgroup_counts(fs_info
, BTRFS_FIRST_FREE_OBJECTID
,
399 test_err("qgroup counts didn't match expected values");
403 ret
= btrfs_find_all_roots(&trans
, fs_info
, nodesize
, 0, &old_roots
,
406 ulist_free(old_roots
);
407 test_err("couldn't find old roots: %d", ret
);
411 ret
= remove_extent_ref(root
, nodesize
, nodesize
, 0,
412 BTRFS_FIRST_FREE_OBJECTID
);
416 ret
= btrfs_find_all_roots(&trans
, fs_info
, nodesize
, 0, &new_roots
,
419 ulist_free(old_roots
);
420 ulist_free(new_roots
);
421 test_err("couldn't find old roots: %d", ret
);
425 ret
= btrfs_qgroup_account_extent(&trans
, nodesize
, nodesize
, old_roots
,
428 test_err("couldn't account space for a qgroup %d", ret
);
432 if (btrfs_verify_qgroup_counts(fs_info
, BTRFS_FIRST_FREE_OBJECTID
,
434 test_err("qgroup counts didn't match expected values");
438 if (btrfs_verify_qgroup_counts(fs_info
, BTRFS_FS_TREE_OBJECTID
,
439 nodesize
, nodesize
)) {
440 test_err("qgroup counts didn't match expected values");
447 int btrfs_test_qgroups(u32 sectorsize
, u32 nodesize
)
449 struct btrfs_fs_info
*fs_info
= NULL
;
450 struct btrfs_root
*root
;
451 struct btrfs_root
*tmp_root
;
454 fs_info
= btrfs_alloc_dummy_fs_info(nodesize
, sectorsize
);
456 test_std_err(TEST_ALLOC_FS_INFO
);
460 root
= btrfs_alloc_dummy_root(fs_info
);
462 test_std_err(TEST_ALLOC_ROOT
);
467 /* We are using this root as our extent root */
468 root
->fs_info
->extent_root
= root
;
471 * Some of the paths we test assume we have a filled out fs_info, so we
472 * just need to add the root in there so we don't panic.
474 root
->fs_info
->tree_root
= root
;
475 root
->fs_info
->quota_root
= root
;
476 set_bit(BTRFS_FS_QUOTA_ENABLED
, &fs_info
->flags
);
479 * Can't use bytenr 0, some things freak out
480 * *cough*backref walking code*cough*
482 root
->node
= alloc_test_extent_buffer(root
->fs_info
, nodesize
);
483 if (IS_ERR(root
->node
)) {
484 test_err("couldn't allocate dummy buffer");
485 ret
= PTR_ERR(root
->node
);
488 btrfs_set_header_level(root
->node
, 0);
489 btrfs_set_header_nritems(root
->node
, 0);
490 root
->alloc_bytenr
+= 2 * nodesize
;
492 tmp_root
= btrfs_alloc_dummy_root(fs_info
);
493 if (IS_ERR(tmp_root
)) {
494 test_std_err(TEST_ALLOC_ROOT
);
495 ret
= PTR_ERR(tmp_root
);
499 tmp_root
->root_key
.objectid
= BTRFS_FS_TREE_OBJECTID
;
500 root
->fs_info
->fs_root
= tmp_root
;
501 ret
= btrfs_insert_fs_root(root
->fs_info
, tmp_root
);
503 test_err("couldn't insert fs root %d", ret
);
506 btrfs_put_root(tmp_root
);
508 tmp_root
= btrfs_alloc_dummy_root(fs_info
);
509 if (IS_ERR(tmp_root
)) {
510 test_std_err(TEST_ALLOC_ROOT
);
511 ret
= PTR_ERR(tmp_root
);
515 tmp_root
->root_key
.objectid
= BTRFS_FIRST_FREE_OBJECTID
;
516 ret
= btrfs_insert_fs_root(root
->fs_info
, tmp_root
);
518 test_err("couldn't insert fs root %d", ret
);
521 btrfs_put_root(tmp_root
);
523 test_msg("running qgroup tests");
524 ret
= test_no_shared_qgroup(root
, sectorsize
, nodesize
);
527 ret
= test_multiple_refs(root
, sectorsize
, nodesize
);
529 btrfs_free_dummy_root(root
);
530 btrfs_free_dummy_fs_info(fs_info
);