tests/uid16: skip if real uid is larger than 16bit
* tests/uid16.c (main): Skip if the uid returned by getuid matches /proc/sys/kernel/overflowuid.
This commit is contained in:
parent
3a15bc8adf
commit
77e0d2dccc
@ -4,6 +4,7 @@
|
||||
#include <assert.h>
|
||||
#include <stdlib.h>
|
||||
#include <unistd.h>
|
||||
#include <fcntl.h>
|
||||
#include <sys/syscall.h>
|
||||
|
||||
int
|
||||
@ -38,6 +39,21 @@ main(void)
|
||||
int *list = 0;
|
||||
|
||||
uid = syscall(__NR_getuid);
|
||||
|
||||
(void) close(0);
|
||||
if (open("/proc/sys/kernel/overflowuid", O_RDONLY) == 0) {
|
||||
/* we trust the kernel */
|
||||
char buf[sizeof(int)*3];
|
||||
int n = read(0, buf, sizeof(buf) - 1);
|
||||
if (n) {
|
||||
buf[n] = '\0';
|
||||
n = atoi(buf);
|
||||
if (uid == n)
|
||||
return 77;
|
||||
}
|
||||
close(0);
|
||||
}
|
||||
|
||||
assert(syscall(__NR_setuid, uid) == 0);
|
||||
{
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user