WIP FPC-III support
[linux/fpc-iii.git] / tools / testing / selftests / powerpc / mm / pkey_siginfo.c
blob4f815d7c12145a61ba37ba83488b04c1f90e8ee2
1 // SPDX-License-Identifier: GPL-2.0
3 /*
4 * Copyright 2020, Sandipan Das, IBM Corp.
6 * Test if the signal information reports the correct memory protection
7 * key upon getting a key access violation fault for a page that was
8 * attempted to be protected by two different keys from two competing
9 * threads at the same time.
12 #define _GNU_SOURCE
13 #include <stdio.h>
14 #include <stdlib.h>
15 #include <string.h>
16 #include <signal.h>
18 #include <unistd.h>
19 #include <pthread.h>
20 #include <sys/mman.h>
22 #include "pkeys.h"
24 #define PPC_INST_NOP 0x60000000
25 #define PPC_INST_BLR 0x4e800020
26 #define PROT_RWX (PROT_READ | PROT_WRITE | PROT_EXEC)
28 #define NUM_ITERATIONS 1000000
30 static volatile sig_atomic_t perm_pkey, rest_pkey;
31 static volatile sig_atomic_t rights, fault_count;
32 static volatile unsigned int *volatile fault_addr;
33 static pthread_barrier_t iteration_barrier;
35 static void segv_handler(int signum, siginfo_t *sinfo, void *ctx)
37 void *pgstart;
38 size_t pgsize;
39 int pkey;
41 pkey = siginfo_pkey(sinfo);
43 /* Check if this fault originated from a pkey access violation */
44 if (sinfo->si_code != SEGV_PKUERR) {
45 sigsafe_err("got a fault for an unexpected reason\n");
46 _exit(1);
49 /* Check if this fault originated from the expected address */
50 if (sinfo->si_addr != (void *) fault_addr) {
51 sigsafe_err("got a fault for an unexpected address\n");
52 _exit(1);
55 /* Check if this fault originated from the restrictive pkey */
56 if (pkey != rest_pkey) {
57 sigsafe_err("got a fault for an unexpected pkey\n");
58 _exit(1);
61 /* Check if too many faults have occurred for the same iteration */
62 if (fault_count > 0) {
63 sigsafe_err("got too many faults for the same address\n");
64 _exit(1);
67 pgsize = getpagesize();
68 pgstart = (void *) ((unsigned long) fault_addr & ~(pgsize - 1));
71 * If the current fault occurred due to lack of execute rights,
72 * reassociate the page with the exec-only pkey since execute
73 * rights cannot be changed directly for the faulting pkey as
74 * IAMR is inaccessible from userspace.
76 * Otherwise, if the current fault occurred due to lack of
77 * read-write rights, change the AMR permission bits for the
78 * pkey.
80 * This will let the test continue.
82 if (rights == PKEY_DISABLE_EXECUTE &&
83 mprotect(pgstart, pgsize, PROT_EXEC))
84 _exit(1);
85 else
86 pkey_set_rights(pkey, 0);
88 fault_count++;
91 struct region {
92 unsigned long rights;
93 unsigned int *base;
94 size_t size;
97 static void *protect(void *p)
99 unsigned long rights;
100 unsigned int *base;
101 size_t size;
102 int tid, i;
104 tid = gettid();
105 base = ((struct region *) p)->base;
106 size = ((struct region *) p)->size;
107 FAIL_IF_EXIT(!base);
109 /* No read, write and execute restrictions */
110 rights = 0;
112 printf("tid %d, pkey permissions are %s\n", tid, pkey_rights(rights));
114 /* Allocate the permissive pkey */
115 perm_pkey = sys_pkey_alloc(0, rights);
116 FAIL_IF_EXIT(perm_pkey < 0);
119 * Repeatedly try to protect the common region with a permissive
120 * pkey
122 for (i = 0; i < NUM_ITERATIONS; i++) {
124 * Wait until the other thread has finished allocating the
125 * restrictive pkey or until the next iteration has begun
127 pthread_barrier_wait(&iteration_barrier);
129 /* Try to associate the permissive pkey with the region */
130 FAIL_IF_EXIT(sys_pkey_mprotect(base, size, PROT_RWX,
131 perm_pkey));
134 /* Free the permissive pkey */
135 sys_pkey_free(perm_pkey);
137 return NULL;
140 static void *protect_access(void *p)
142 size_t size, numinsns;
143 unsigned int *base;
144 int tid, i;
146 tid = gettid();
147 base = ((struct region *) p)->base;
148 size = ((struct region *) p)->size;
149 rights = ((struct region *) p)->rights;
150 numinsns = size / sizeof(base[0]);
151 FAIL_IF_EXIT(!base);
153 /* Allocate the restrictive pkey */
154 rest_pkey = sys_pkey_alloc(0, rights);
155 FAIL_IF_EXIT(rest_pkey < 0);
157 printf("tid %d, pkey permissions are %s\n", tid, pkey_rights(rights));
158 printf("tid %d, %s randomly in range [%p, %p]\n", tid,
159 (rights == PKEY_DISABLE_EXECUTE) ? "execute" :
160 (rights == PKEY_DISABLE_WRITE) ? "write" : "read",
161 base, base + numinsns);
164 * Repeatedly try to protect the common region with a restrictive
165 * pkey and read, write or execute from it
167 for (i = 0; i < NUM_ITERATIONS; i++) {
169 * Wait until the other thread has finished allocating the
170 * permissive pkey or until the next iteration has begun
172 pthread_barrier_wait(&iteration_barrier);
174 /* Try to associate the restrictive pkey with the region */
175 FAIL_IF_EXIT(sys_pkey_mprotect(base, size, PROT_RWX,
176 rest_pkey));
178 /* Choose a random instruction word address from the region */
179 fault_addr = base + (rand() % numinsns);
180 fault_count = 0;
182 switch (rights) {
183 /* Read protection test */
184 case PKEY_DISABLE_ACCESS:
186 * Read an instruction word from the region and
187 * verify if it has not been overwritten to
188 * something unexpected
190 FAIL_IF_EXIT(*fault_addr != PPC_INST_NOP &&
191 *fault_addr != PPC_INST_BLR);
192 break;
194 /* Write protection test */
195 case PKEY_DISABLE_WRITE:
197 * Write an instruction word to the region and
198 * verify if the overwrite has succeeded
200 *fault_addr = PPC_INST_BLR;
201 FAIL_IF_EXIT(*fault_addr != PPC_INST_BLR);
202 break;
204 /* Execute protection test */
205 case PKEY_DISABLE_EXECUTE:
206 /* Jump to the region and execute instructions */
207 asm volatile(
208 "mtctr %0; bctrl"
209 : : "r"(fault_addr) : "ctr", "lr");
210 break;
214 * Restore the restrictions originally imposed by the
215 * restrictive pkey as the signal handler would have
216 * cleared out the corresponding AMR bits
218 pkey_set_rights(rest_pkey, rights);
221 /* Free restrictive pkey */
222 sys_pkey_free(rest_pkey);
224 return NULL;
227 static void reset_pkeys(unsigned long rights)
229 int pkeys[NR_PKEYS], i;
231 /* Exhaustively allocate all available pkeys */
232 for (i = 0; i < NR_PKEYS; i++)
233 pkeys[i] = sys_pkey_alloc(0, rights);
235 /* Free all allocated pkeys */
236 for (i = 0; i < NR_PKEYS; i++)
237 sys_pkey_free(pkeys[i]);
240 static int test(void)
242 pthread_t prot_thread, pacc_thread;
243 struct sigaction act;
244 pthread_attr_t attr;
245 size_t numinsns;
246 struct region r;
247 int ret, i;
249 srand(time(NULL));
250 ret = pkeys_unsupported();
251 if (ret)
252 return ret;
254 /* Allocate the region */
255 r.size = getpagesize();
256 r.base = mmap(NULL, r.size, PROT_RWX,
257 MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
258 FAIL_IF(r.base == MAP_FAILED);
261 * Fill the region with no-ops with a branch at the end
262 * for returning to the caller
264 numinsns = r.size / sizeof(r.base[0]);
265 for (i = 0; i < numinsns - 1; i++)
266 r.base[i] = PPC_INST_NOP;
267 r.base[i] = PPC_INST_BLR;
269 /* Setup SIGSEGV handler */
270 act.sa_handler = 0;
271 act.sa_sigaction = segv_handler;
272 FAIL_IF(sigprocmask(SIG_SETMASK, 0, &act.sa_mask) != 0);
273 act.sa_flags = SA_SIGINFO;
274 act.sa_restorer = 0;
275 FAIL_IF(sigaction(SIGSEGV, &act, NULL) != 0);
278 * For these tests, the parent process should clear all bits of
279 * AMR and IAMR, i.e. impose no restrictions, for all available
280 * pkeys. This will be the base for the initial AMR and IAMR
281 * values for all the test thread pairs.
283 * If the AMR and IAMR bits of all available pkeys are cleared
284 * before running the tests and a fault is generated when
285 * attempting to read, write or execute instructions from a
286 * pkey protected region, the pkey responsible for this must be
287 * the one from the protect-and-access thread since the other
288 * one is fully permissive. Despite that, if the pkey reported
289 * by siginfo is not the restrictive pkey, then there must be a
290 * kernel bug.
292 reset_pkeys(0);
294 /* Setup barrier for protect and protect-and-access threads */
295 FAIL_IF(pthread_attr_init(&attr) != 0);
296 FAIL_IF(pthread_barrier_init(&iteration_barrier, NULL, 2) != 0);
298 /* Setup and start protect and protect-and-read threads */
299 puts("starting thread pair (protect, protect-and-read)");
300 r.rights = PKEY_DISABLE_ACCESS;
301 FAIL_IF(pthread_create(&prot_thread, &attr, &protect, &r) != 0);
302 FAIL_IF(pthread_create(&pacc_thread, &attr, &protect_access, &r) != 0);
303 FAIL_IF(pthread_join(prot_thread, NULL) != 0);
304 FAIL_IF(pthread_join(pacc_thread, NULL) != 0);
306 /* Setup and start protect and protect-and-write threads */
307 puts("starting thread pair (protect, protect-and-write)");
308 r.rights = PKEY_DISABLE_WRITE;
309 FAIL_IF(pthread_create(&prot_thread, &attr, &protect, &r) != 0);
310 FAIL_IF(pthread_create(&pacc_thread, &attr, &protect_access, &r) != 0);
311 FAIL_IF(pthread_join(prot_thread, NULL) != 0);
312 FAIL_IF(pthread_join(pacc_thread, NULL) != 0);
314 /* Setup and start protect and protect-and-execute threads */
315 puts("starting thread pair (protect, protect-and-execute)");
316 r.rights = PKEY_DISABLE_EXECUTE;
317 FAIL_IF(pthread_create(&prot_thread, &attr, &protect, &r) != 0);
318 FAIL_IF(pthread_create(&pacc_thread, &attr, &protect_access, &r) != 0);
319 FAIL_IF(pthread_join(prot_thread, NULL) != 0);
320 FAIL_IF(pthread_join(pacc_thread, NULL) != 0);
322 /* Cleanup */
323 FAIL_IF(pthread_attr_destroy(&attr) != 0);
324 FAIL_IF(pthread_barrier_destroy(&iteration_barrier) != 0);
325 munmap(r.base, r.size);
327 return 0;
330 int main(void)
332 test_harness(test, "pkey_siginfo");