]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
libbpf: Skip base btf sanity checks
authorAntoine Tenart <atenart@kernel.org>
Mon, 24 Jun 2024 09:09:07 +0000 (11:09 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 3 Aug 2024 06:59:40 +0000 (08:59 +0200)
[ Upstream commit c73a9683cb21012b6c0f14217974837151c527a8 ]

When upgrading to libbpf 1.3 we noticed a big performance hit while
loading programs using CORE on non base-BTF symbols. This was tracked
down to the new BTF sanity check logic. The issue is the base BTF
definitions are checked first for the base BTF and then again for every
module BTF.

Loading 5 dummy programs (using libbpf-rs) that are using CORE on a
non-base BTF symbol on my system:
- Before this fix: 3s.
- With this fix: 0.1s.

Fix this by only checking the types starting at the BTF start id. This
should ensure the base BTF is still checked as expected but only once
(btf->start_id == 1 when creating the base BTF), and then only
additional types are checked for each module BTF.

Fixes: 3903802bb99a ("libbpf: Add basic BTF sanity validation")
Signed-off-by: Antoine Tenart <atenart@kernel.org>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Reviewed-by: Alan Maguire <alan.maguire@oracle.com>
Link: https://lore.kernel.org/bpf/20240624090908.171231-1-atenart@kernel.org
Signed-off-by: Sasha Levin <sashal@kernel.org>
tools/lib/bpf/btf.c

index 2d0840ef599aff7d54a1efab818e88e6dca2af2e..142060bbce0a0be39e3927a176860bd3fc2da7c1 100644 (file)
@@ -598,7 +598,7 @@ static int btf_sanity_check(const struct btf *btf)
        __u32 i, n = btf__type_cnt(btf);
        int err;
 
-       for (i = 1; i < n; i++) {
+       for (i = btf->start_id; i < n; i++) {
                t = btf_type_by_id(btf, i);
                err = btf_validate_type(btf, t, i);
                if (err)