Skip to content

Commit c23551c

Browse files
alan-maguireborkmann
authored andcommitted
selftests/bpf: Add exception handling selftests for tp_bpf program
Exception handling is triggered in BPF tracing programs when a NULL pointer is dereferenced; the exception handler zeroes the target register and execution of the BPF program progresses. To test exception handling then, we need to trigger a NULL pointer dereference for a field which should never be zero; if it is, the only explanation is the exception handler ran. task->task_works is the NULL pointer chosen (for a new task from fork() no work is associated), and the task_works->func field should not be zero if task_works is non-NULL. The test verifies that task_works and task_works->func are 0. Signed-off-by: Alan Maguire <[email protected]> Signed-off-by: Daniel Borkmann <[email protected]> Acked-by: Andrii Nakryiko <[email protected]> Link: https://lore.kernel.org/bpf/[email protected]
1 parent b89ddf4 commit c23551c

File tree

2 files changed

+86
-0
lines changed

2 files changed

+86
-0
lines changed
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
// SPDX-License-Identifier: GPL-2.0
2+
/* Copyright (c) 2021, Oracle and/or its affiliates. */
3+
4+
#include <test_progs.h>
5+
6+
/* Test that verifies exception handling is working. fork()
7+
* triggers task_newtask tracepoint; that new task will have a
8+
* NULL pointer task_works, and the associated task->task_works->func
9+
* should not be NULL if task_works itself is non-NULL.
10+
*
11+
* So to verify exception handling we want to see a NULL task_works
12+
* and task_works->func; if we see this we can conclude that the
13+
* exception handler ran when we attempted to dereference task->task_works
14+
* and zeroed the destination register.
15+
*/
16+
#include "exhandler_kern.skel.h"
17+
18+
void test_exhandler(void)
19+
{
20+
int err = 0, duration = 0, status;
21+
struct exhandler_kern *skel;
22+
pid_t cpid;
23+
24+
skel = exhandler_kern__open_and_load();
25+
if (CHECK(!skel, "skel_load", "skeleton failed: %d\n", err))
26+
goto cleanup;
27+
28+
skel->bss->test_pid = getpid();
29+
30+
err = exhandler_kern__attach(skel);
31+
if (!ASSERT_OK(err, "attach"))
32+
goto cleanup;
33+
cpid = fork();
34+
if (!ASSERT_GT(cpid, -1, "fork failed"))
35+
goto cleanup;
36+
if (cpid == 0)
37+
_exit(0);
38+
waitpid(cpid, &status, 0);
39+
40+
ASSERT_NEQ(skel->bss->exception_triggered, 0, "verify exceptions occurred");
41+
cleanup:
42+
exhandler_kern__destroy(skel);
43+
}
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
// SPDX-License-Identifier: GPL-2.0
2+
/* Copyright (c) 2021, Oracle and/or its affiliates. */
3+
4+
#include "vmlinux.h"
5+
6+
#include <bpf/bpf_helpers.h>
7+
#include <bpf/bpf_tracing.h>
8+
#include <bpf/bpf_core_read.h>
9+
10+
char _license[] SEC("license") = "GPL";
11+
12+
unsigned int exception_triggered;
13+
int test_pid;
14+
15+
/* TRACE_EVENT(task_newtask,
16+
* TP_PROTO(struct task_struct *p, u64 clone_flags)
17+
*/
18+
SEC("tp_btf/task_newtask")
19+
int BPF_PROG(trace_task_newtask, struct task_struct *task, u64 clone_flags)
20+
{
21+
int pid = bpf_get_current_pid_tgid() >> 32;
22+
struct callback_head *work;
23+
void *func;
24+
25+
if (test_pid != pid)
26+
return 0;
27+
28+
/* To verify we hit an exception we dereference task->task_works->func.
29+
* If task work has been added,
30+
* - task->task_works is non-NULL; and
31+
* - task->task_works->func is non-NULL also (the callback function
32+
* must be specified for the task work.
33+
*
34+
* However, for a newly-created task, task->task_works is NULLed,
35+
* so we know the exception handler triggered if task_works is
36+
* NULL and func is NULL.
37+
*/
38+
work = task->task_works;
39+
func = work->func;
40+
if (!work && !func)
41+
exception_triggered++;
42+
return 0;
43+
}

0 commit comments

Comments
 (0)