selftests/bpf: Add netlink helper library
authorDaniel Borkmann <daniel@iogearbox.net>
Tue, 24 Oct 2023 21:49:03 +0000 (23:49 +0200)
committerMartin KaFai Lau <martin.lau@kernel.org>
Tue, 24 Oct 2023 23:07:39 +0000 (16:07 -0700)
commit51f1892b5289f0c09745d3bedb36493555d6d90c
tree57d2cc0251bbd51cbfbbeb1a234bcf34eb9c951e
parentbec981a4add6dd6a63065e54e2b2e67c2af6c3fa
selftests/bpf: Add netlink helper library

Add a minimal netlink helper library for the BPF selftests. This has been
taken and cut down and cleaned up from iproute2. This covers basics such
as netdevice creation which we need for BPF selftests / BPF CI given
iproute2 package cannot cover it yet.

Stanislav Fomichev suggested that this could be replaced in future by ynl
tool generated C code once it has RTNL support to create devices. Once we
get to this point the BPF CI would also need to add libmnl. If no further
extensions are needed, a second option could be that we remove this code
again once iproute2 package has support.

Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Acked-by: Martin KaFai Lau <martin.lau@kernel.org>
Link: https://lore.kernel.org/r/20231024214904.29825-7-daniel@iogearbox.net
Signed-off-by: Martin KaFai Lau <martin.lau@kernel.org>
tools/testing/selftests/bpf/Makefile
tools/testing/selftests/bpf/netlink_helpers.c [new file with mode: 0644]
tools/testing/selftests/bpf/netlink_helpers.h [new file with mode: 0644]