2005-04-17 00:20:36 +02:00
|
|
|
/*
|
|
|
|
* linux/kernel/itimer.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 1992 Darren Senn
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* These are all the functions necessary to implement itimers */
|
|
|
|
|
|
|
|
#include <linux/mm.h>
|
|
|
|
#include <linux/interrupt.h>
|
|
|
|
#include <linux/syscalls.h>
|
|
|
|
#include <linux/time.h>
|
2017-02-08 18:51:30 +01:00
|
|
|
#include <linux/sched/signal.h>
|
2017-02-05 11:48:36 +01:00
|
|
|
#include <linux/sched/cputime.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
#include <linux/posix-timers.h>
|
2006-01-10 05:52:34 +01:00
|
|
|
#include <linux/hrtimer.h>
|
2009-08-10 04:52:30 +02:00
|
|
|
#include <trace/events/timer.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2016-12-24 20:46:01 +01:00
|
|
|
#include <linux/uaccess.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2006-01-10 05:52:34 +01:00
|
|
|
/**
|
|
|
|
* itimer_get_remtime - get remaining time for the timer
|
|
|
|
*
|
|
|
|
* @timer: the timer to read
|
|
|
|
*
|
|
|
|
* Returns the delta between the expiry time and now, which can be
|
|
|
|
* less than zero or 1usec for an pending expired timer
|
|
|
|
*/
|
|
|
|
static struct timeval itimer_get_remtime(struct hrtimer *timer)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2016-01-14 17:54:48 +01:00
|
|
|
ktime_t rem = __hrtimer_get_remaining(timer, true);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2006-01-10 05:52:34 +01:00
|
|
|
/*
|
|
|
|
* Racy but safe: if the itimer expires after the above
|
|
|
|
* hrtimer_get_remtime() call but before this condition
|
|
|
|
* then we return 0 - which is correct.
|
|
|
|
*/
|
|
|
|
if (hrtimer_active(timer)) {
|
2016-12-25 11:38:40 +01:00
|
|
|
if (rem <= 0)
|
|
|
|
rem = NSEC_PER_USEC;
|
2006-01-10 05:52:34 +01:00
|
|
|
} else
|
2016-12-25 11:38:40 +01:00
|
|
|
rem = 0;
|
2006-01-10 05:52:34 +01:00
|
|
|
|
|
|
|
return ktime_to_timeval(rem);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2009-07-29 12:15:26 +02:00
|
|
|
static void get_cpu_itimer(struct task_struct *tsk, unsigned int clock_id,
|
2009-07-29 12:15:27 +02:00
|
|
|
struct itimerval *const value)
|
2009-07-29 12:15:26 +02:00
|
|
|
{
|
2017-01-31 04:09:35 +01:00
|
|
|
u64 val, interval;
|
2009-07-29 12:15:26 +02:00
|
|
|
struct cpu_itimer *it = &tsk->signal->it[clock_id];
|
|
|
|
|
|
|
|
spin_lock_irq(&tsk->sighand->siglock);
|
|
|
|
|
2017-01-31 04:09:35 +01:00
|
|
|
val = it->expires;
|
|
|
|
interval = it->incr;
|
|
|
|
if (val) {
|
2017-01-31 04:09:34 +01:00
|
|
|
struct task_cputime cputime;
|
2017-01-31 04:09:35 +01:00
|
|
|
u64 t;
|
2009-07-29 12:15:26 +02:00
|
|
|
|
|
|
|
thread_group_cputimer(tsk, &cputime);
|
|
|
|
if (clock_id == CPUCLOCK_PROF)
|
2017-01-31 04:09:35 +01:00
|
|
|
t = cputime.utime + cputime.stime;
|
2009-07-29 12:15:26 +02:00
|
|
|
else
|
|
|
|
/* CPUCLOCK_VIRT */
|
2017-01-31 04:09:35 +01:00
|
|
|
t = cputime.utime;
|
2009-07-29 12:15:26 +02:00
|
|
|
|
2017-01-31 04:09:35 +01:00
|
|
|
if (val < t)
|
2009-07-29 12:15:26 +02:00
|
|
|
/* about to fire */
|
2017-01-31 04:09:35 +01:00
|
|
|
val = TICK_NSEC;
|
2009-07-29 12:15:26 +02:00
|
|
|
else
|
2017-01-31 04:09:35 +01:00
|
|
|
val -= t;
|
2009-07-29 12:15:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
spin_unlock_irq(&tsk->sighand->siglock);
|
|
|
|
|
2017-01-31 04:09:35 +01:00
|
|
|
value->it_value = ns_to_timeval(val);
|
|
|
|
value->it_interval = ns_to_timeval(interval);
|
2009-07-29 12:15:26 +02:00
|
|
|
}
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
int do_getitimer(int which, struct itimerval *value)
|
|
|
|
{
|
|
|
|
struct task_struct *tsk = current;
|
|
|
|
|
|
|
|
switch (which) {
|
|
|
|
case ITIMER_REAL:
|
2006-02-01 12:05:08 +01:00
|
|
|
spin_lock_irq(&tsk->sighand->siglock);
|
2006-01-10 05:52:34 +01:00
|
|
|
value->it_value = itimer_get_remtime(&tsk->signal->real_timer);
|
|
|
|
value->it_interval =
|
|
|
|
ktime_to_timeval(tsk->signal->it_real_incr);
|
2006-02-01 12:05:08 +01:00
|
|
|
spin_unlock_irq(&tsk->sighand->siglock);
|
2005-04-17 00:20:36 +02:00
|
|
|
break;
|
|
|
|
case ITIMER_VIRTUAL:
|
2009-07-29 12:15:26 +02:00
|
|
|
get_cpu_itimer(tsk, CPUCLOCK_VIRT, value);
|
2005-04-17 00:20:36 +02:00
|
|
|
break;
|
|
|
|
case ITIMER_PROF:
|
2009-07-29 12:15:26 +02:00
|
|
|
get_cpu_itimer(tsk, CPUCLOCK_PROF, value);
|
2005-04-17 00:20:36 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return(-EINVAL);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-01-14 14:14:06 +01:00
|
|
|
SYSCALL_DEFINE2(getitimer, int, which, struct itimerval __user *, value)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
int error = -EFAULT;
|
|
|
|
struct itimerval get_buffer;
|
|
|
|
|
|
|
|
if (value) {
|
|
|
|
error = do_getitimer(which, &get_buffer);
|
|
|
|
if (!error &&
|
|
|
|
copy_to_user(value, &get_buffer, sizeof(get_buffer)))
|
|
|
|
error = -EFAULT;
|
|
|
|
}
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-01-10 05:52:34 +01:00
|
|
|
/*
|
|
|
|
* The timer is automagically restarted, when interval != 0
|
|
|
|
*/
|
2007-02-16 10:27:49 +01:00
|
|
|
enum hrtimer_restart it_real_fn(struct hrtimer *timer)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2006-03-26 11:38:12 +02:00
|
|
|
struct signal_struct *sig =
|
2007-10-18 12:06:11 +02:00
|
|
|
container_of(timer, struct signal_struct, real_timer);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2009-08-10 04:52:30 +02:00
|
|
|
trace_itimer_expire(ITIMER_REAL, sig->leader_pid, 0);
|
2008-02-08 13:19:19 +01:00
|
|
|
kill_pid_info(SIGALRM, SEND_SIG_PRIV, sig->leader_pid);
|
2006-01-10 05:52:34 +01:00
|
|
|
|
|
|
|
return HRTIMER_NORESTART;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2009-07-29 12:15:26 +02:00
|
|
|
static void set_cpu_itimer(struct task_struct *tsk, unsigned int clock_id,
|
2009-07-29 12:15:27 +02:00
|
|
|
const struct itimerval *const value,
|
|
|
|
struct itimerval *const ovalue)
|
2009-07-29 12:15:26 +02:00
|
|
|
{
|
2017-01-31 04:09:35 +01:00
|
|
|
u64 oval, nval, ointerval, ninterval;
|
2009-07-29 12:15:26 +02:00
|
|
|
struct cpu_itimer *it = &tsk->signal->it[clock_id];
|
|
|
|
|
2017-01-31 04:09:35 +01:00
|
|
|
nval = timeval_to_ns(&value->it_value);
|
|
|
|
ninterval = timeval_to_ns(&value->it_interval);
|
2009-07-29 12:15:26 +02:00
|
|
|
|
|
|
|
spin_lock_irq(&tsk->sighand->siglock);
|
|
|
|
|
2017-01-31 04:09:35 +01:00
|
|
|
oval = it->expires;
|
|
|
|
ointerval = it->incr;
|
|
|
|
if (oval || nval) {
|
2011-12-15 14:56:09 +01:00
|
|
|
if (nval > 0)
|
2017-01-31 04:09:35 +01:00
|
|
|
nval += TICK_NSEC;
|
|
|
|
set_process_cpu_timer(tsk, clock_id, &nval, &oval);
|
2009-07-29 12:15:26 +02:00
|
|
|
}
|
|
|
|
it->expires = nval;
|
|
|
|
it->incr = ninterval;
|
2009-08-10 04:52:30 +02:00
|
|
|
trace_itimer_state(clock_id == CPUCLOCK_VIRT ?
|
|
|
|
ITIMER_VIRTUAL : ITIMER_PROF, value, nval);
|
2009-07-29 12:15:26 +02:00
|
|
|
|
|
|
|
spin_unlock_irq(&tsk->sighand->siglock);
|
|
|
|
|
|
|
|
if (ovalue) {
|
2017-01-31 04:09:35 +01:00
|
|
|
ovalue->it_value = ns_to_timeval(oval);
|
|
|
|
ovalue->it_interval = ns_to_timeval(ointerval);
|
2009-07-29 12:15:26 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-03-25 12:06:35 +01:00
|
|
|
/*
|
|
|
|
* Returns true if the timeval is in canonical form
|
|
|
|
*/
|
|
|
|
#define timeval_valid(t) \
|
|
|
|
(((t)->tv_sec >= 0) && (((unsigned long) (t)->tv_usec) < USEC_PER_SEC))
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
int do_setitimer(int which, struct itimerval *value, struct itimerval *ovalue)
|
|
|
|
{
|
|
|
|
struct task_struct *tsk = current;
|
2006-01-10 05:52:34 +01:00
|
|
|
struct hrtimer *timer;
|
|
|
|
ktime_t expires;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2006-03-25 12:06:35 +01:00
|
|
|
/*
|
|
|
|
* Validate the timevals in value.
|
|
|
|
*/
|
2007-05-08 09:30:49 +02:00
|
|
|
if (!timeval_valid(&value->it_value) ||
|
|
|
|
!timeval_valid(&value->it_interval))
|
|
|
|
return -EINVAL;
|
2006-03-25 12:06:35 +01:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
switch (which) {
|
|
|
|
case ITIMER_REAL:
|
2006-02-01 12:05:08 +01:00
|
|
|
again:
|
|
|
|
spin_lock_irq(&tsk->sighand->siglock);
|
2006-01-10 05:52:34 +01:00
|
|
|
timer = &tsk->signal->real_timer;
|
2005-04-17 00:20:36 +02:00
|
|
|
if (ovalue) {
|
2006-01-10 05:52:34 +01:00
|
|
|
ovalue->it_value = itimer_get_remtime(timer);
|
|
|
|
ovalue->it_interval
|
|
|
|
= ktime_to_timeval(tsk->signal->it_real_incr);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
2006-02-01 12:05:09 +01:00
|
|
|
/* We are sharing ->siglock with it_real_fn() */
|
|
|
|
if (hrtimer_try_to_cancel(timer) < 0) {
|
|
|
|
spin_unlock_irq(&tsk->sighand->siglock);
|
|
|
|
goto again;
|
|
|
|
}
|
2006-01-10 05:52:34 +01:00
|
|
|
expires = timeval_to_ktime(value->it_value);
|
2016-12-25 11:38:40 +01:00
|
|
|
if (expires != 0) {
|
2007-02-16 10:28:12 +01:00
|
|
|
tsk->signal->it_real_incr =
|
|
|
|
timeval_to_ktime(value->it_interval);
|
2007-02-16 10:27:49 +01:00
|
|
|
hrtimer_start(timer, expires, HRTIMER_MODE_REL);
|
2007-02-16 10:28:12 +01:00
|
|
|
} else
|
2016-12-25 11:38:40 +01:00
|
|
|
tsk->signal->it_real_incr = 0;
|
2007-02-16 10:28:12 +01:00
|
|
|
|
2009-08-10 04:52:30 +02:00
|
|
|
trace_itimer_state(ITIMER_REAL, value, 0);
|
2006-02-01 12:05:08 +01:00
|
|
|
spin_unlock_irq(&tsk->sighand->siglock);
|
2005-04-17 00:20:36 +02:00
|
|
|
break;
|
|
|
|
case ITIMER_VIRTUAL:
|
2009-07-29 12:15:26 +02:00
|
|
|
set_cpu_itimer(tsk, CPUCLOCK_VIRT, value, ovalue);
|
2005-04-17 00:20:36 +02:00
|
|
|
break;
|
|
|
|
case ITIMER_PROF:
|
2009-07-29 12:15:26 +02:00
|
|
|
set_cpu_itimer(tsk, CPUCLOCK_PROF, value, ovalue);
|
2005-04-17 00:20:36 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-11-11 06:10:08 +01:00
|
|
|
#ifdef __ARCH_WANT_SYS_ALARM
|
|
|
|
|
2006-03-25 12:06:33 +01:00
|
|
|
/**
|
|
|
|
* alarm_setitimer - set alarm in seconds
|
|
|
|
*
|
|
|
|
* @seconds: number of seconds until alarm
|
|
|
|
* 0 disables the alarm
|
|
|
|
*
|
|
|
|
* Returns the remaining time in seconds of a pending timer or 0 when
|
|
|
|
* the timer is not active.
|
|
|
|
*
|
|
|
|
* On 32 bit machines the seconds value is limited to (INT_MAX/2) to avoid
|
|
|
|
* negative timeval settings which would cause immediate expiry.
|
|
|
|
*/
|
2016-11-11 06:10:08 +01:00
|
|
|
static unsigned int alarm_setitimer(unsigned int seconds)
|
2006-03-25 12:06:33 +01:00
|
|
|
{
|
|
|
|
struct itimerval it_new, it_old;
|
|
|
|
|
|
|
|
#if BITS_PER_LONG < 64
|
|
|
|
if (seconds > INT_MAX)
|
|
|
|
seconds = INT_MAX;
|
|
|
|
#endif
|
|
|
|
it_new.it_value.tv_sec = seconds;
|
|
|
|
it_new.it_value.tv_usec = 0;
|
|
|
|
it_new.it_interval.tv_sec = it_new.it_interval.tv_usec = 0;
|
|
|
|
|
|
|
|
do_setitimer(ITIMER_REAL, &it_new, &it_old);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We can't return 0 if we have an alarm pending ... And we'd
|
|
|
|
* better return too much than too little anyway
|
|
|
|
*/
|
|
|
|
if ((!it_old.it_value.tv_sec && it_old.it_value.tv_usec) ||
|
|
|
|
it_old.it_value.tv_usec >= 500000)
|
|
|
|
it_old.it_value.tv_sec++;
|
|
|
|
|
|
|
|
return it_old.it_value.tv_sec;
|
|
|
|
}
|
|
|
|
|
2016-11-11 06:10:08 +01:00
|
|
|
/*
|
|
|
|
* For backwards compatibility? This can be done in libc so Alpha
|
|
|
|
* and all newer ports shouldn't need it.
|
|
|
|
*/
|
|
|
|
SYSCALL_DEFINE1(alarm, unsigned int, seconds)
|
|
|
|
{
|
|
|
|
return alarm_setitimer(seconds);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2009-01-14 14:14:07 +01:00
|
|
|
SYSCALL_DEFINE3(setitimer, int, which, struct itimerval __user *, value,
|
|
|
|
struct itimerval __user *, ovalue)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
struct itimerval set_buffer, get_buffer;
|
|
|
|
int error;
|
|
|
|
|
|
|
|
if (value) {
|
|
|
|
if(copy_from_user(&set_buffer, value, sizeof(set_buffer)))
|
|
|
|
return -EFAULT;
|
2012-03-21 15:40:54 +01:00
|
|
|
} else {
|
2012-04-10 10:50:55 +02:00
|
|
|
memset(&set_buffer, 0, sizeof(set_buffer));
|
|
|
|
printk_once(KERN_WARNING "%s calls setitimer() with new_value NULL pointer."
|
|
|
|
" Misfeature support will be removed\n",
|
|
|
|
current->comm);
|
2012-03-21 15:40:54 +01:00
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
error = do_setitimer(which, &set_buffer, ovalue ? &get_buffer : NULL);
|
|
|
|
if (error || !ovalue)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
if (copy_to_user(ovalue, &get_buffer, sizeof(get_buffer)))
|
2007-10-18 12:06:11 +02:00
|
|
|
return -EFAULT;
|
2005-04-17 00:20:36 +02:00
|
|
|
return 0;
|
|
|
|
}
|