You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
509 B
25 lines
509 B
#include "tests.h" |
|
#include <asm/unistd.h> |
|
|
|
#ifdef __NR_setresuid |
|
|
|
# define SYSCALL_NR __NR_setresuid |
|
# define SYSCALL_NAME "setresuid" |
|
|
|
# if defined __NR_setresuid32 && __NR_setresuid != __NR_setresuid32 |
|
# define UGID_TYPE short |
|
# define GETUGID syscall(__NR_geteuid) |
|
# define CHECK_OVERFLOWUGID(arg) check_overflowuid(arg) |
|
# else |
|
# define UGID_TYPE int |
|
# define GETUGID geteuid() |
|
# define CHECK_OVERFLOWUGID(arg) |
|
# endif |
|
|
|
# include "setresugid.c" |
|
|
|
#else |
|
|
|
SKIP_MAIN_UNDEFINED("__NR_setresuid") |
|
|
|
#endif
|
|
|