63 lines
1.3 KiB
C
63 lines
1.3 KiB
C
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
|
/*
|
||
|
|
* Copyright (c) International Business Machines Corp., 2001
|
||
|
|
* 03/2001 - Written by Wayne Boyer
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
/*\
|
||
|
|
* [Description]
|
||
|
|
*
|
||
|
|
* Check that setitimer() call fails:
|
||
|
|
*
|
||
|
|
* 1. EFAULT with invalid itimerval pointer
|
||
|
|
* 2. EINVAL when called with an invalid first argument
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include <errno.h>
|
||
|
|
#include <sys/time.h>
|
||
|
|
#include <stdlib.h>
|
||
|
|
#include "tst_test.h"
|
||
|
|
#include "lapi/syscalls.h"
|
||
|
|
|
||
|
|
static struct itimerval *value, *ovalue;
|
||
|
|
|
||
|
|
static int sys_setitimer(int which, void *new_value, void *old_value)
|
||
|
|
{
|
||
|
|
return tst_syscall(__NR_setitimer, which, new_value, old_value);
|
||
|
|
}
|
||
|
|
|
||
|
|
static void verify_setitimer(unsigned int i)
|
||
|
|
{
|
||
|
|
switch (i) {
|
||
|
|
case 0:
|
||
|
|
TST_EXP_FAIL(sys_setitimer(ITIMER_REAL, value, (void *)-1), EFAULT);
|
||
|
|
break;
|
||
|
|
case 1:
|
||
|
|
TST_EXP_FAIL(sys_setitimer(ITIMER_VIRTUAL, value, (void *)-1), EFAULT);
|
||
|
|
break;
|
||
|
|
case 2:
|
||
|
|
TST_EXP_FAIL(sys_setitimer(-ITIMER_PROF, value, ovalue), EINVAL);
|
||
|
|
break;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
static void setup(void)
|
||
|
|
{
|
||
|
|
value->it_value.tv_sec = 30;
|
||
|
|
value->it_value.tv_usec = 0;
|
||
|
|
value->it_interval.tv_sec = 0;
|
||
|
|
value->it_interval.tv_usec = 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
static struct tst_test test = {
|
||
|
|
.tcnt = 3,
|
||
|
|
.test = verify_setitimer,
|
||
|
|
.setup = setup,
|
||
|
|
.bufs = (struct tst_buffers[]) {
|
||
|
|
{&value, .size = sizeof(struct itimerval)},
|
||
|
|
{&ovalue, .size = sizeof(struct itimerval)},
|
||
|
|
{}
|
||
|
|
}
|
||
|
|
};
|