Skip to content

Commit 4cbf57b

Browse files
alan-maguireKernel Patches Daemon
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]>
1 parent 03e2ed2 commit 4cbf57b

File tree

1 file changed

+29
-5
lines changed

1 file changed

+29
-5
lines changed

tools/lib/bpf/btf.c

Lines changed: 29 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,17 @@ 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+
/* Provide debug message for named types. */
4505+
if (t1->name_off) {
4506+
pr_debug("%s '%s' size=%d vlen=%d id1[%u] id2[%u] shallow-equal but not identical for field#%d '%s'\n",
4507+
k1 == BTF_KIND_STRUCT ? "STRUCT" : "UNION",
4508+
btf__name_by_offset(d->btf, t1->name_off),
4509+
t1->size, btf_vlen(t1), id1, id2, i,
4510+
btf__name_by_offset(d->btf, m1->name_off));
4511+
}
45014512
return false;
4513+
}
45024514
}
45034515
return true;
45044516
}
@@ -4739,8 +4751,20 @@ static int btf_dedup_is_equiv(struct btf_dedup *d, __u32 cand_id,
47394751
canon_m = btf_members(canon_type);
47404752
for (i = 0; i < vlen; i++) {
47414753
eq = btf_dedup_is_equiv(d, cand_m->type, canon_m->type);
4742-
if (eq <= 0)
4754+
if (eq <= 0) {
4755+
/*
4756+
* Provide debug message for named types only;
4757+
* too many anon struct/unions match.
4758+
*/
4759+
if (cand_type->name_off) {
4760+
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",
4761+
cand_kind == BTF_KIND_STRUCT ? "STRUCT" : "UNION",
4762+
btf__name_by_offset(d->btf, cand_type->name_off),
4763+
cand_type->size, vlen, cand_id, canon_id, i,
4764+
btf__name_by_offset(d->btf, cand_m->name_off), eq);
4765+
}
47434766
return eq;
4767+
}
47444768
cand_m++;
47454769
canon_m++;
47464770
}

0 commit comments

Comments
 (0)