]> www.infradead.org Git - users/jedix/linux-maple.git/commit
bpftool: Align output skeleton ELF code
authorIan Rogers <irogers@google.com>
Sat, 7 Oct 2023 04:44:38 +0000 (21:44 -0700)
committerAndrii Nakryiko <andrii@kernel.org>
Mon, 9 Oct 2023 16:36:51 +0000 (09:36 -0700)
commit23671f4dfd10b48b4a2fee4768886f0d8ec55b7e
treef7ceaabf5fa48283752f94b512f06ca24e5ff282
parent0d7ae06860753bb30b3731302b994da071120d00
bpftool: Align output skeleton ELF code

libbpf accesses the ELF data requiring at least 8 byte alignment,
however, the data is generated into a C string that doesn't guarantee
alignment. Fix this by assigning to an aligned char array. Use sizeof
on the array, less one for the \0 terminator, rather than generating a
constant.

Fixes: a6cc6b34b93e ("bpftool: Provide a helper method for accessing skeleton's embedded ELF data")
Signed-off-by: Ian Rogers <irogers@google.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Reviewed-by: Alan Maguire <alan.maguire@oracle.com>
Acked-by: Quentin Monnet <quentin@isovalent.com>
Link: https://lore.kernel.org/bpf/20231007044439.25171-1-irogers@google.com
tools/bpf/bpftool/gen.c