blob: 8078a32d3b104b77dc14b7673ec8dcafecc2a175 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/kernel/itimer.c
3 *
4 * Copyright (C) 1992 Darren Senn
5 */
6
7/* These are all the functions necessary to implement itimers */
8
9#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/interrupt.h>
11#include <linux/syscalls.h>
12#include <linux/time.h>
13#include <linux/posix-timers.h>
Thomas Gleixner2ff678b2006-01-09 20:52:34 -080014#include <linux/hrtimer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
16#include <asm/uaccess.h>
17
Thomas Gleixner2ff678b2006-01-09 20:52:34 -080018/**
19 * itimer_get_remtime - get remaining time for the timer
20 *
21 * @timer: the timer to read
22 *
23 * Returns the delta between the expiry time and now, which can be
24 * less than zero or 1usec for an pending expired timer
25 */
26static struct timeval itimer_get_remtime(struct hrtimer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -070027{
Thomas Gleixner2ff678b2006-01-09 20:52:34 -080028 ktime_t rem = hrtimer_get_remaining(timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Thomas Gleixner2ff678b2006-01-09 20:52:34 -080030 /*
31 * Racy but safe: if the itimer expires after the above
32 * hrtimer_get_remtime() call but before this condition
33 * then we return 0 - which is correct.
34 */
35 if (hrtimer_active(timer)) {
36 if (rem.tv64 <= 0)
37 rem.tv64 = NSEC_PER_USEC;
38 } else
39 rem.tv64 = 0;
40
41 return ktime_to_timeval(rem);
Linus Torvalds1da177e2005-04-16 15:20:36 -070042}
43
Stanislaw Gruszka42c4ab42009-07-29 12:15:26 +020044static void get_cpu_itimer(struct task_struct *tsk, unsigned int clock_id,
Stanislaw Gruszka8356b5f2009-07-29 12:15:27 +020045 struct itimerval *const value)
Stanislaw Gruszka42c4ab42009-07-29 12:15:26 +020046{
47 cputime_t cval, cinterval;
48 struct cpu_itimer *it = &tsk->signal->it[clock_id];
49
50 spin_lock_irq(&tsk->sighand->siglock);
51
52 cval = it->expires;
53 cinterval = it->incr;
54 if (!cputime_eq(cval, cputime_zero)) {
55 struct task_cputime cputime;
56 cputime_t t;
57
58 thread_group_cputimer(tsk, &cputime);
59 if (clock_id == CPUCLOCK_PROF)
60 t = cputime_add(cputime.utime, cputime.stime);
61 else
62 /* CPUCLOCK_VIRT */
63 t = cputime.utime;
64
65 if (cputime_le(cval, t))
66 /* about to fire */
Stanislaw Gruszkaa42548a2009-07-29 12:15:29 +020067 cval = cputime_one_jiffy;
Stanislaw Gruszka42c4ab42009-07-29 12:15:26 +020068 else
69 cval = cputime_sub(cval, t);
70 }
71
72 spin_unlock_irq(&tsk->sighand->siglock);
73
74 cputime_to_timeval(cval, &value->it_value);
75 cputime_to_timeval(cinterval, &value->it_interval);
76}
77
Linus Torvalds1da177e2005-04-16 15:20:36 -070078int do_getitimer(int which, struct itimerval *value)
79{
80 struct task_struct *tsk = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82 switch (which) {
83 case ITIMER_REAL:
Thomas Gleixnerbc1978d2006-02-01 03:05:08 -080084 spin_lock_irq(&tsk->sighand->siglock);
Thomas Gleixner2ff678b2006-01-09 20:52:34 -080085 value->it_value = itimer_get_remtime(&tsk->signal->real_timer);
86 value->it_interval =
87 ktime_to_timeval(tsk->signal->it_real_incr);
Thomas Gleixnerbc1978d2006-02-01 03:05:08 -080088 spin_unlock_irq(&tsk->sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 break;
90 case ITIMER_VIRTUAL:
Stanislaw Gruszka42c4ab42009-07-29 12:15:26 +020091 get_cpu_itimer(tsk, CPUCLOCK_VIRT, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 break;
93 case ITIMER_PROF:
Stanislaw Gruszka42c4ab42009-07-29 12:15:26 +020094 get_cpu_itimer(tsk, CPUCLOCK_PROF, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 break;
96 default:
97 return(-EINVAL);
98 }
99 return 0;
100}
101
Heiko Carstensb290ebe2009-01-14 14:14:06 +0100102SYSCALL_DEFINE2(getitimer, int, which, struct itimerval __user *, value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103{
104 int error = -EFAULT;
105 struct itimerval get_buffer;
106
107 if (value) {
108 error = do_getitimer(which, &get_buffer);
109 if (!error &&
110 copy_to_user(value, &get_buffer, sizeof(get_buffer)))
111 error = -EFAULT;
112 }
113 return error;
114}
115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Thomas Gleixner2ff678b2006-01-09 20:52:34 -0800117/*
118 * The timer is automagically restarted, when interval != 0
119 */
Thomas Gleixnerc9cb2e32007-02-16 01:27:49 -0800120enum hrtimer_restart it_real_fn(struct hrtimer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
Roman Zippel05cfb612006-03-26 01:38:12 -0800122 struct signal_struct *sig =
Daniel Walker0719e372007-10-18 03:06:11 -0700123 container_of(timer, struct signal_struct, real_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Oleg Nesterovfea9d172008-02-08 04:19:19 -0800125 kill_pid_info(SIGALRM, SEND_SIG_PRIV, sig->leader_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Thomas Gleixner2ff678b2006-01-09 20:52:34 -0800127 return HRTIMER_NORESTART;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128}
129
Stanislaw Gruszka8356b5f2009-07-29 12:15:27 +0200130static inline u32 cputime_sub_ns(cputime_t ct, s64 real_ns)
Stanislaw Gruszka42c4ab42009-07-29 12:15:26 +0200131{
Stanislaw Gruszka8356b5f2009-07-29 12:15:27 +0200132 struct timespec ts;
133 s64 cpu_ns;
134
135 cputime_to_timespec(ct, &ts);
136 cpu_ns = timespec_to_ns(&ts);
137
138 return (cpu_ns <= real_ns) ? 0 : cpu_ns - real_ns;
139}
140
141static void set_cpu_itimer(struct task_struct *tsk, unsigned int clock_id,
142 const struct itimerval *const value,
143 struct itimerval *const ovalue)
144{
145 cputime_t cval, nval, cinterval, ninterval;
146 s64 ns_ninterval, ns_nval;
Stanislaw Gruszka42c4ab42009-07-29 12:15:26 +0200147 struct cpu_itimer *it = &tsk->signal->it[clock_id];
148
149 nval = timeval_to_cputime(&value->it_value);
Stanislaw Gruszka8356b5f2009-07-29 12:15:27 +0200150 ns_nval = timeval_to_ns(&value->it_value);
Stanislaw Gruszka42c4ab42009-07-29 12:15:26 +0200151 ninterval = timeval_to_cputime(&value->it_interval);
Stanislaw Gruszka8356b5f2009-07-29 12:15:27 +0200152 ns_ninterval = timeval_to_ns(&value->it_interval);
153
154 it->incr_error = cputime_sub_ns(ninterval, ns_ninterval);
155 it->error = cputime_sub_ns(nval, ns_nval);
Stanislaw Gruszka42c4ab42009-07-29 12:15:26 +0200156
157 spin_lock_irq(&tsk->sighand->siglock);
158
159 cval = it->expires;
160 cinterval = it->incr;
161 if (!cputime_eq(cval, cputime_zero) ||
162 !cputime_eq(nval, cputime_zero)) {
163 if (cputime_gt(nval, cputime_zero))
Stanislaw Gruszkaa42548a2009-07-29 12:15:29 +0200164 nval = cputime_add(nval, cputime_one_jiffy);
Stanislaw Gruszka42c4ab42009-07-29 12:15:26 +0200165 set_process_cpu_timer(tsk, clock_id, &nval, &cval);
166 }
167 it->expires = nval;
168 it->incr = ninterval;
169
170 spin_unlock_irq(&tsk->sighand->siglock);
171
172 if (ovalue) {
173 cputime_to_timeval(cval, &ovalue->it_value);
174 cputime_to_timeval(cinterval, &ovalue->it_interval);
175 }
176}
177
Thomas Gleixner7d99b7d2006-03-25 03:06:35 -0800178/*
Thomas Gleixner7d99b7d2006-03-25 03:06:35 -0800179 * Returns true if the timeval is in canonical form
180 */
181#define timeval_valid(t) \
182 (((t)->tv_sec >= 0) && (((unsigned long) (t)->tv_usec) < USEC_PER_SEC))
183
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184int do_setitimer(int which, struct itimerval *value, struct itimerval *ovalue)
185{
186 struct task_struct *tsk = current;
Thomas Gleixner2ff678b2006-01-09 20:52:34 -0800187 struct hrtimer *timer;
188 ktime_t expires;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Thomas Gleixner7d99b7d2006-03-25 03:06:35 -0800190 /*
191 * Validate the timevals in value.
Thomas Gleixner7d99b7d2006-03-25 03:06:35 -0800192 */
Adrian Bunk35bab752007-05-08 00:30:49 -0700193 if (!timeval_valid(&value->it_value) ||
194 !timeval_valid(&value->it_interval))
195 return -EINVAL;
Thomas Gleixner7d99b7d2006-03-25 03:06:35 -0800196
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 switch (which) {
198 case ITIMER_REAL:
Thomas Gleixnerbc1978d2006-02-01 03:05:08 -0800199again:
200 spin_lock_irq(&tsk->sighand->siglock);
Thomas Gleixner2ff678b2006-01-09 20:52:34 -0800201 timer = &tsk->signal->real_timer;
Thomas Gleixner2ff678b2006-01-09 20:52:34 -0800202 if (ovalue) {
203 ovalue->it_value = itimer_get_remtime(timer);
204 ovalue->it_interval
205 = ktime_to_timeval(tsk->signal->it_real_incr);
Oleg Nesterovf01b1b02005-06-28 20:44:47 -0700206 }
Thomas Gleixnera16a1c02006-02-01 03:05:09 -0800207 /* We are sharing ->siglock with it_real_fn() */
208 if (hrtimer_try_to_cancel(timer) < 0) {
209 spin_unlock_irq(&tsk->sighand->siglock);
210 goto again;
211 }
Thomas Gleixner2ff678b2006-01-09 20:52:34 -0800212 expires = timeval_to_ktime(value->it_value);
Thomas Gleixner8bfd9a72007-02-16 01:28:12 -0800213 if (expires.tv64 != 0) {
214 tsk->signal->it_real_incr =
215 timeval_to_ktime(value->it_interval);
Thomas Gleixnerc9cb2e32007-02-16 01:27:49 -0800216 hrtimer_start(timer, expires, HRTIMER_MODE_REL);
Thomas Gleixner8bfd9a72007-02-16 01:28:12 -0800217 } else
218 tsk->signal->it_real_incr.tv64 = 0;
219
Thomas Gleixnerbc1978d2006-02-01 03:05:08 -0800220 spin_unlock_irq(&tsk->sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 break;
222 case ITIMER_VIRTUAL:
Stanislaw Gruszka42c4ab42009-07-29 12:15:26 +0200223 set_cpu_itimer(tsk, CPUCLOCK_VIRT, value, ovalue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 break;
225 case ITIMER_PROF:
Stanislaw Gruszka42c4ab42009-07-29 12:15:26 +0200226 set_cpu_itimer(tsk, CPUCLOCK_PROF, value, ovalue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 break;
228 default:
229 return -EINVAL;
230 }
231 return 0;
232}
233
Thomas Gleixnerc08b8a42006-03-25 03:06:33 -0800234/**
235 * alarm_setitimer - set alarm in seconds
236 *
237 * @seconds: number of seconds until alarm
238 * 0 disables the alarm
239 *
240 * Returns the remaining time in seconds of a pending timer or 0 when
241 * the timer is not active.
242 *
243 * On 32 bit machines the seconds value is limited to (INT_MAX/2) to avoid
244 * negative timeval settings which would cause immediate expiry.
245 */
246unsigned int alarm_setitimer(unsigned int seconds)
247{
248 struct itimerval it_new, it_old;
249
250#if BITS_PER_LONG < 64
251 if (seconds > INT_MAX)
252 seconds = INT_MAX;
253#endif
254 it_new.it_value.tv_sec = seconds;
255 it_new.it_value.tv_usec = 0;
256 it_new.it_interval.tv_sec = it_new.it_interval.tv_usec = 0;
257
258 do_setitimer(ITIMER_REAL, &it_new, &it_old);
259
260 /*
261 * We can't return 0 if we have an alarm pending ... And we'd
262 * better return too much than too little anyway
263 */
264 if ((!it_old.it_value.tv_sec && it_old.it_value.tv_usec) ||
265 it_old.it_value.tv_usec >= 500000)
266 it_old.it_value.tv_sec++;
267
268 return it_old.it_value.tv_sec;
269}
270
Heiko Carstens362e9c02009-01-14 14:14:07 +0100271SYSCALL_DEFINE3(setitimer, int, which, struct itimerval __user *, value,
272 struct itimerval __user *, ovalue)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273{
274 struct itimerval set_buffer, get_buffer;
275 int error;
276
277 if (value) {
278 if(copy_from_user(&set_buffer, value, sizeof(set_buffer)))
279 return -EFAULT;
280 } else
281 memset((char *) &set_buffer, 0, sizeof(set_buffer));
282
283 error = do_setitimer(which, &set_buffer, ovalue ? &get_buffer : NULL);
284 if (error || !ovalue)
285 return error;
286
287 if (copy_to_user(ovalue, &get_buffer, sizeof(get_buffer)))
Daniel Walker0719e372007-10-18 03:06:11 -0700288 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 return 0;
290}