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

TOMOYO Linux Cross Reference
Linux/tools/testing/selftests/powerpc/mm/segv_errors.c

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ 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 
  3 /*
  4  * Copyright 2017 John Sperbeck
  5  *
  6  * Test that an access to a mapped but inaccessible area causes a SEGV and
  7  * reports si_code == SEGV_ACCERR.
  8  */
  9 
 10 #include <stdbool.h>
 11 #include <stdio.h>
 12 #include <stdlib.h>
 13 #include <string.h>
 14 #include <unistd.h>
 15 #include <signal.h>
 16 #include <sys/mman.h>
 17 #include <assert.h>
 18 #include <ucontext.h>
 19 
 20 #include "utils.h"
 21 
 22 static bool faulted;
 23 static int si_code;
 24 
 25 static void segv_handler(int n, siginfo_t *info, void *ctxt_v)
 26 {
 27         ucontext_t *ctxt = (ucontext_t *)ctxt_v;
 28         struct pt_regs *regs = ctxt->uc_mcontext.regs;
 29 
 30         faulted = true;
 31         si_code = info->si_code;
 32         regs->nip += 4;
 33 }
 34 
 35 int test_segv_errors(void)
 36 {
 37         struct sigaction act = {
 38                 .sa_sigaction = segv_handler,
 39                 .sa_flags = SA_SIGINFO,
 40         };
 41         char c, *p = NULL;
 42 
 43         p = mmap(NULL, getpagesize(), 0, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0);
 44         FAIL_IF(p == MAP_FAILED);
 45 
 46         FAIL_IF(sigaction(SIGSEGV, &act, NULL) != 0);
 47 
 48         faulted = false;
 49         si_code = 0;
 50 
 51         /*
 52          * We just need a compiler barrier, but mb() works and has the nice
 53          * property of being easy to spot in the disassembly.
 54          */
 55         mb();
 56         c = *p;
 57         mb();
 58 
 59         FAIL_IF(!faulted);
 60         FAIL_IF(si_code != SEGV_ACCERR);
 61 
 62         faulted = false;
 63         si_code = 0;
 64 
 65         mb();
 66         *p = c;
 67         mb();
 68 
 69         FAIL_IF(!faulted);
 70         FAIL_IF(si_code != SEGV_ACCERR);
 71 
 72         return 0;
 73 }
 74 
 75 int main(void)
 76 {
 77         return test_harness(test_segv_errors, "segv_errors");
 78 }
 79 

~ [ 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