diff mbox series

[bpf] libbpf: fix BTF header parsing checks

Message ID 20211021054623.3871933-1-andrii@kernel.org (mailing list archive)
State Superseded
Delegated to: BPF
Headers show
Series [bpf] libbpf: fix BTF header parsing checks | expand

Checks

Context Check Description
netdev/cover_letter success Single patches do not need cover letters
netdev/fixes_present success Fixes tag present in non-next series
netdev/patch_count success Link
netdev/tree_selection success Clearly marked for bpf
netdev/subject_prefix success Link
netdev/cc_maintainers warning 6 maintainers not CCed: john.fastabend@gmail.com yhs@fb.com netdev@vger.kernel.org songliubraving@fb.com kafai@fb.com kpsingh@kernel.org
netdev/source_inline success Was 0 now: 0
netdev/verify_signedoff success Signed-off-by tag matches author and committer
netdev/module_param success Was 0 now: 0
netdev/build_32bit success Errors and warnings before: 0 this patch: 0
netdev/kdoc success Errors and warnings before: 0 this patch: 0
netdev/verify_fixes fail Problems with Fixes tag: 1
netdev/checkpatch warning WARNING: Unknown commit id 'a138aed4a80', maybe rebased or not pulled?
netdev/build_allmodconfig_warn success Errors and warnings before: 0 this patch: 0
netdev/header_inline success No static functions without inline keyword in header files
bpf/vmtest-bpf-PR success PR summary
bpf/vmtest-bpf success VM_Test

Commit Message

Andrii Nakryiko Oct. 21, 2021, 5:46 a.m. UTC
Original code assumed fixed and correct BTF header length. That's not
always the case, though, so fix this bug with a proper additional check.
And use actual header length instead of sizeof(struct btf_header) in
sanity checks.

Reported-by: Evgeny Vereshchagin <evvers@ya.ru>
Fixes: a138aed4a80 ("bpf: btf: Add BTF support to libbpf")
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
---
 tools/lib/bpf/btf.c | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

Comments

Alexei Starovoitov Oct. 21, 2021, 10:15 p.m. UTC | #1
On Wed, Oct 20, 2021 at 10:46 PM Andrii Nakryiko <andrii@kernel.org> wrote:
>
> Original code assumed fixed and correct BTF header length. That's not
> always the case, though, so fix this bug with a proper additional check.
> And use actual header length instead of sizeof(struct btf_header) in
> sanity checks.
>
> Reported-by: Evgeny Vereshchagin <evvers@ya.ru>
> Fixes: a138aed4a80 ("bpf: btf: Add BTF support to libbpf")

there is no such commit sha.
Andrii Nakryiko Oct. 21, 2021, 10:28 p.m. UTC | #2
On Thu, Oct 21, 2021 at 3:16 PM Alexei Starovoitov
<alexei.starovoitov@gmail.com> wrote:
>
> On Wed, Oct 20, 2021 at 10:46 PM Andrii Nakryiko <andrii@kernel.org> wrote:
> >
> > Original code assumed fixed and correct BTF header length. That's not
> > always the case, though, so fix this bug with a proper additional check.
> > And use actual header length instead of sizeof(struct btf_header) in
> > sanity checks.
> >
> > Reported-by: Evgeny Vereshchagin <evvers@ya.ru>
> > Fixes: a138aed4a80 ("bpf: btf: Add BTF support to libbpf")
>
> there is no such commit sha.

Oops, seems like I lost the first digit, it should be:

8a138aed4a80 ("bpf: btf: Add BTF support to libbpf")
diff mbox series

Patch

diff --git a/tools/lib/bpf/btf.c b/tools/lib/bpf/btf.c
index 1ced31ecaf7f..aab7e4ece0a0 100644
--- a/tools/lib/bpf/btf.c
+++ b/tools/lib/bpf/btf.c
@@ -231,13 +231,19 @@  static int btf_parse_hdr(struct btf *btf)
 		}
 		btf_bswap_hdr(hdr);
 	} else if (hdr->magic != BTF_MAGIC) {
-		pr_debug("Invalid BTF magic:%x\n", hdr->magic);
+		pr_debug("Invalid BTF magic: %x\n", hdr->magic);
 		return -EINVAL;
 	}
 
-	meta_left = btf->raw_size - sizeof(*hdr);
+	if (btf->raw_size < hdr->hdr_len) {
+		pr_debug("BTF header len %u larger than data size %u\n",
+			 hdr->hdr_len, btf->raw_size);
+		return -EINVAL;
+	}
+
+	meta_left = btf->raw_size - hdr->hdr_len;
 	if (meta_left < (long long)hdr->str_off + hdr->str_len) {
-		pr_debug("Invalid BTF total size:%u\n", btf->raw_size);
+		pr_debug("Invalid BTF total size: %u\n", btf->raw_size);
 		return -EINVAL;
 	}