#include <sys/types.h>
#include <sys/resource.h>
#include <sys/wait.h>
#include <err.h>
#include <errno.h>
#include <signal.h>
#include <stdlib.h>
#include <unistd.h>
#include "main.h"
static int childproc_running;
static pid_t childproc;
int
priv_sched_setpriority_setup(int asroot, int injail, struct test *test)
{
int another_uid, need_child;
need_child = 0;
if (test->t_test_func == priv_sched_setpriority_aproc) {
need_child = 1;
another_uid = 1;
}
if (test->t_test_func == priv_sched_setpriority_myproc)
need_child = 1;
if (need_child) {
childproc = fork();
if (childproc < 0) {
warn("priv_sched_setup: fork");
return (-1);
}
if (childproc == 0) {
if (another_uid) {
if (setresuid(UID_THIRD, UID_THIRD,
UID_THIRD) < 0)
err(-1, "setresuid(%d)", UID_THIRD);
}
while (1)
sleep(1);
}
childproc_running = 1;
sleep(1);
}
return (0);
}
void
priv_sched_setpriority_curproc(int asroot, int injail, struct test *test)
{
int error;
error = setpriority(PRIO_PROCESS, 0, -1);
if (asroot && injail)
expect("priv_sched_setpriority_curproc(asroot, injail)",
error, -1, EACCES);
if (asroot && !injail)
expect("priv_sched_setpriority_curproc(asroot, !injail)",
error, 0, 0);
if (!asroot && injail)
expect("priv_sched_setpriority_curproc(!asroot, injail)",
error, -1, EACCES);
if (!asroot && !injail)
expect("priv_sched_setpriority_curproc(!asroot, !injail)",
error, -1, EACCES);
}
void
priv_sched_setpriority_myproc(int asroot, int injail, struct test *test)
{
int error;
error = setpriority(PRIO_PROCESS, 0, -1);
if (asroot && injail)
expect("priv_sched_setpriority_myproc(asroot, injail)",
error, -1, EACCES);
if (asroot && !injail)
expect("priv_sched_setpriority_myproc(asroot, !injail)",
error, 0, 0);
if (!asroot && injail)
expect("priv_sched_setpriority_myproc(!asroot, injail)",
error, -1, EACCES);
if (!asroot && !injail)
expect("priv_sched_setpriority_myproc(!asroot, !injail)",
error, -1, EACCES);
}
void
priv_sched_setpriority_aproc(int asroot, int injail, struct test *test)
{
int error;
error = setpriority(PRIO_PROCESS, 0, -1);
if (asroot && injail)
expect("priv_sched_setpriority_aproc(asroot, injail)",
error, -1, EACCES);
if (asroot && !injail)
expect("priv_sched_setpriority_aproc(asroot, !injail)",
error, 0, 0);
if (!asroot && injail)
expect("priv_sched_setpriority_aproc(!asroot, injail)",
error, -1, EACCES);
if (!asroot && !injail)
expect("priv_sched_setpriority_aproc(!asroot, !injail)",
error, -1, EACCES);
}
void
priv_sched_setpriority_cleanup(int asroot, int injail, struct test *test)
{
pid_t pid;
if (childproc_running) {
(void)kill(childproc, SIGKILL);
while (1) {
pid = waitpid(childproc, NULL, 0);
if (pid == -1)
warn("waitpid(%d (test), NULL, 0)",
childproc);
if (pid == childproc)
break;
}
childproc_running = 0;
childproc = -1;
}
}