selftests/bpf: Uprobe tests should verify param/return values
authorAlan Maguire <alan.maguire@oracle.com>
Wed, 6 Apr 2022 11:43:51 +0000 (12:43 +0100)
committerAndrii Nakryiko <andrii@kernel.org>
Thu, 7 Apr 2022 18:42:51 +0000 (11:42 -0700)
commit1717e248014c33a81d7a1cdc048c6b3bed7bb3f8
tree19b8fcc5a57a399ac1b4510a1453a8e8ad29d7cd
parent90db26e6be01cea519d380c59db3491e75b96b7f
selftests/bpf: Uprobe tests should verify param/return values

uprobe/uretprobe tests don't do any validation of arguments/return values,
and without this we can't be sure we are attached to the right function,
or that we are indeed attached to a uprobe or uretprobe.  To fix this
record argument and return value for auto-attached functions and ensure
these match expectations.  Also need to filter by pid to ensure we do
not pick up stray malloc()s since auto-attach traces libc system-wide.

Suggested-by: Andrii Nakryiko <andrii@kernel.org>
Signed-off-by: Alan Maguire <alan.maguire@oracle.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/1649245431-29956-4-git-send-email-alan.maguire@oracle.com
tools/testing/selftests/bpf/prog_tests/uprobe_autoattach.c
tools/testing/selftests/bpf/progs/test_uprobe_autoattach.c