1 // SPDX-License-Identifier: GPL-2.0
2 /* Copyright (c) 2021, Oracle and/or its affiliates. */
4 #include <test_progs.h>
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.
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.
16 #include "exhandler_kern.skel.h"
18 void test_exhandler(void)
20 int err = 0, duration = 0, status;
21 struct exhandler_kern *skel;
24 skel = exhandler_kern__open_and_load();
25 if (CHECK(!skel, "skel_load", "skeleton failed: %d\n", err))
28 skel->bss->test_pid = getpid();
30 err = exhandler_kern__attach(skel);
31 if (!ASSERT_OK(err, "attach"))
34 if (!ASSERT_GT(cpid, -1, "fork failed"))
38 waitpid(cpid, &status, 0);
40 ASSERT_NEQ(skel->bss->exception_triggered, 0, "verify exceptions occurred");
42 exhandler_kern__destroy(skel);