Skip to content

Commit 81f88f6

Browse files
alan-maguireanakryiko
authored andcommitted
libbpf: Add debug messaging in dedup equivalence/identity matching
We have seen a number of issues like [1]; failures to deduplicate key kernel data structures like task_struct. These are often hard to debug from pahole even with verbose output, especially when identity/equivalence checks fail deep in a nested struct comparison. Here we add debug messages of the form libbpf: STRUCT 'task_struct' size=2560 vlen=194 cand_id[54222] canon_id[102820] shallow-equal but not equiv for field#23 'sched_class': 0 These will be emitted during dedup from pahole when --verbose/-V is specified. This greatly helps identify exactly where dedup failures are experienced. [1] https://lore.kernel.org/bpf/[email protected]/ Changes since v1: - updated debug messages to refer to shallow-equal, added ids (Andrii) Signed-off-by: Alan Maguire <[email protected]> Signed-off-by: Andrii Nakryiko <[email protected]> Link: https://lore.kernel.org/bpf/[email protected]
1 parent 835a507 commit 81f88f6

File tree

1 file changed

+24
-5
lines changed

1 file changed

+24
-5
lines changed

tools/lib/bpf/btf.c

Lines changed: 24 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4431,11 +4431,14 @@ static bool btf_dedup_identical_types(struct btf_dedup *d, __u32 id1, __u32 id2,
44314431
struct btf_type *t1, *t2;
44324432
int k1, k2;
44334433
recur:
4434-
if (depth <= 0)
4435-
return false;
4436-
44374434
t1 = btf_type_by_id(d->btf, id1);
44384435
t2 = btf_type_by_id(d->btf, id2);
4436+
if (depth <= 0) {
4437+
pr_debug("Reached depth limit for identical type comparison for '%s'/'%s'\n",
4438+
btf__name_by_offset(d->btf, t1->name_off),
4439+
btf__name_by_offset(d->btf, t2->name_off));
4440+
return false;
4441+
}
44394442

44404443
k1 = btf_kind(t1);
44414444
k2 = btf_kind(t2);
@@ -4497,8 +4500,16 @@ static bool btf_dedup_identical_types(struct btf_dedup *d, __u32 id1, __u32 id2,
44974500
for (i = 0, n = btf_vlen(t1); i < n; i++, m1++, m2++) {
44984501
if (m1->type == m2->type)
44994502
continue;
4500-
if (!btf_dedup_identical_types(d, m1->type, m2->type, depth - 1))
4503+
if (!btf_dedup_identical_types(d, m1->type, m2->type, depth - 1)) {
4504+
if (t1->name_off) {
4505+
pr_debug("%s '%s' size=%d vlen=%d id1[%u] id2[%u] shallow-equal but not identical for field#%d '%s'\n",
4506+
k1 == BTF_KIND_STRUCT ? "STRUCT" : "UNION",
4507+
btf__name_by_offset(d->btf, t1->name_off),
4508+
t1->size, btf_vlen(t1), id1, id2, i,
4509+
btf__name_by_offset(d->btf, m1->name_off));
4510+
}
45014511
return false;
4512+
}
45024513
}
45034514
return true;
45044515
}
@@ -4739,8 +4750,16 @@ static int btf_dedup_is_equiv(struct btf_dedup *d, __u32 cand_id,
47394750
canon_m = btf_members(canon_type);
47404751
for (i = 0; i < vlen; i++) {
47414752
eq = btf_dedup_is_equiv(d, cand_m->type, canon_m->type);
4742-
if (eq <= 0)
4753+
if (eq <= 0) {
4754+
if (cand_type->name_off) {
4755+
pr_debug("%s '%s' size=%d vlen=%d cand_id[%u] canon_id[%u] shallow-equal but not equiv for field#%d '%s': %d\n",
4756+
cand_kind == BTF_KIND_STRUCT ? "STRUCT" : "UNION",
4757+
btf__name_by_offset(d->btf, cand_type->name_off),
4758+
cand_type->size, vlen, cand_id, canon_id, i,
4759+
btf__name_by_offset(d->btf, cand_m->name_off), eq);
4760+
}
47434761
return eq;
4762+
}
47444763
cand_m++;
47454764
canon_m++;
47464765
}

0 commit comments

Comments
 (0)