blob: 943a3685905f52447e24c97140ed6ad60213f05f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/* SPDX-License-Identifier: GPL-2.0-only */
#ifndef SELFTEST_SHADOWSTACK_TEST_H
#define SELFTEST_SHADOWSTACK_TEST_H
#include <stddef.h>
#include <linux/prctl.h>
/*
* A CFI test returns true for success or false for fail.
* Takes a test number to index into array, and a void pointer.
*/
typedef bool (*shstk_test_func)(unsigned long test_num, void *);
struct shadow_stack_tests {
char *name;
shstk_test_func t_func;
};
bool shadow_stack_fork_test(unsigned long test_num, void *ctx);
bool shadow_stack_map_test(unsigned long test_num, void *ctx);
bool shadow_stack_protection_test(unsigned long test_num, void *ctx);
bool shadow_stack_gup_tests(unsigned long test_num, void *ctx);
bool shadow_stack_signal_test(unsigned long test_num, void *ctx);
int execute_shadow_stack_tests(void);
#endif
|