android13/external/ltp/testcases/kernel/syscalls/iopl/iopl02.c

80 lines
1.7 KiB
C

// SPDX-License-Identifier: GPL-2.0-or-later
/*
* Copyright (c) Linux Test Project, 2020
* Copyright (c) Wipro Technologies Ltd, 2002
*/
/*
* This is an error test for iopl(2) system call.
*
* Verify that
* 1) iopl(2) returns -1 and sets errno to EINVAL for privilege
* level greater than 3.
* 2) iopl(2) returns -1 and sets errno to EPERM if the current
* user is not the super-user.
*
* Author: Subhab Biswas <subhabrata.biswas@wipro.com>
*/
#include <errno.h>
#include <unistd.h>
#include <pwd.h>
#include "tst_test.h"
#include "tst_safe_macros.h"
#if defined __i386__ || defined(__x86_64__)
#include <sys/io.h>
static struct tcase {
int level;
char *desc;
int exp_errno;
} tcases[] = {
{4, "Invalid privilege level", EINVAL},
{1, "Non super-user", EPERM}
};
static void verify_iopl(unsigned int i)
{
TEST(iopl(tcases[i].level));
if ((TST_RET == -1) && (TST_ERR == tcases[i].exp_errno)) {
tst_res(TPASS | TTERRNO,
"Expected failure for %s, errno: %d",
tcases[i].desc, TST_ERR);
} else {
tst_res(TFAIL | TTERRNO,
"%s returned %ld expected -1, expected %s got ",
tcases[i].desc, TST_RET, tst_strerrno(tcases[i].exp_errno));
}
}
static void setup(void)
{
struct passwd *pw;
/* iopl() is restricted under kernel lockdown. */
if (tst_lockdown_enabled())
tst_brk(TCONF, "Kernel is locked down, skip this test");
pw = SAFE_GETPWNAM("nobody");
SAFE_SETEUID(pw->pw_uid);
}
static void cleanup(void)
{
SAFE_SETEUID(0);
}
static struct tst_test test = {
.tcnt = ARRAY_SIZE(tcases),
.test = verify_iopl,
.needs_root = 1,
.setup = setup,
.cleanup = cleanup,
};
#else
TST_TEST_TCONF("LSB v1.3 does not specify iopl() for this architecture. (only for i386 or x86_64)");
#endif /* __i386_, __x86_64__*/