~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/tools/testing/selftests/bpf/prog_tests/exhandler.c

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  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 }
 44 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php