selftests/bpf: add sockopt clone/inheritance test
authorStanislav Fomichev <sdf@google.com>
Wed, 14 Aug 2019 17:37:51 +0000 (10:37 -0700)
committerDaniel Borkmann <daniel@iogearbox.net>
Sat, 17 Aug 2019 21:18:54 +0000 (23:18 +0200)
commitc3bbf176fbad5d7470f8a4f311f7c11126ad36c2
tree58bd99ef6f3fc2528b6e0d41801238af71e7374e
parent9e819ffcfe35c3779166d0fc0088215cf4924c33
selftests/bpf: add sockopt clone/inheritance test

Add a test that calls setsockopt on the listener socket which triggers
BPF program. This BPF program writes to the sk storage and sets
clone flag. Make sure that sk storage is cloned for a newly
accepted connection.

We have two cloned maps in the tests to make sure we hit both cases
in bpf_sk_storage_clone: first element (sk_storage_alloc) and
non-first element(s) (selem_link_map).

Cc: Martin KaFai Lau <kafai@fb.com>
Cc: Yonghong Song <yhs@fb.com>
Acked-by: Martin KaFai Lau <kafai@fb.com>
Acked-by: Yonghong Song <yhs@fb.com>
Signed-off-by: Stanislav Fomichev <sdf@google.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
tools/testing/selftests/bpf/.gitignore
tools/testing/selftests/bpf/Makefile
tools/testing/selftests/bpf/progs/sockopt_inherit.c [new file with mode: 0644]
tools/testing/selftests/bpf/test_sockopt_inherit.c [new file with mode: 0644]