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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
/*
* Check decoding of setreuid/setregid/setreuid32/setregid32 syscalls.
*
* Copyright (c) 2016-2023 Dmitry V. Levin <ldv@strace.io>
* All rights reserved.
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include <errno.h>
#include <stdio.h>
#include <unistd.h>
static int
ugid2int(const unsigned UGID_TYPE ugid)
{
if ((unsigned UGID_TYPE) -1U == ugid)
return -1;
else
return ugid;
}
static void
print_int(const unsigned int num)
{
if (num == -1U)
printf("-1");
else
printf("%u", num);
}
static int
num_matches_id(const unsigned int num, const unsigned int ugid)
{
return num == ugid || num == -1U;
}
#define PAIR(val) { val, ugid }, { ugid, val }
int
main(void)
{
unsigned int ugid = GETUGID;
CHECK_OVERFLOWUGID(ugid);
const struct {
const long r, e;
} tests[] = {
{ ugid, ugid },
PAIR((unsigned long) 0xffffffff00000000ULL | ugid),
PAIR(-1U),
PAIR(-1L),
PAIR(0xffff0000U | ugid),
PAIR(0xffff),
PAIR(0xc0deffffU)
};
for (unsigned int i = 0; i < ARRAY_SIZE(tests); ++i) {
const unsigned int rn = ugid2int(tests[i].r);
const unsigned int en = ugid2int(tests[i].e);
if (!num_matches_id(rn, ugid) || !num_matches_id(en, ugid))
continue;
if (syscall(SYSCALL_NR, tests[i].r, tests[i].e)) {
if (!i && ENOSYS == errno) {
printf("%s(%u, %u)" RVAL_ENOSYS,
SYSCALL_NAME, ugid, ugid);
break;
}
perror_msg_and_fail("%s(%#lx, %#lx)", SYSCALL_NAME,
tests[i].r, tests[i].e);
}
printf("%s(", SYSCALL_NAME);
print_int(rn);
printf(", ");
print_int(en);
printf(") = 0\n");
}
puts("+++ exited with 0 +++");
return 0;
}
|