posix_cpu_timer: consolidate expiry time type
[deliverable/linux.git] / kernel / posix-cpu-timers.c
CommitLineData
1da177e4
LT
1/*
2 * Implement CPU time clocks for the POSIX clock interface.
3 */
4
5#include <linux/sched.h>
6#include <linux/posix-timers.h>
1da177e4 7#include <linux/errno.h>
f8bd2258
RZ
8#include <linux/math64.h>
9#include <asm/uaccess.h>
bb34d92f 10#include <linux/kernel_stat.h>
3f0a525e 11#include <trace/events/timer.h>
61337054 12#include <linux/random.h>
a8572160
FW
13#include <linux/tick.h>
14#include <linux/workqueue.h>
1da177e4 15
f06febc9 16/*
f55db609
SG
17 * Called after updating RLIMIT_CPU to run cpu timer and update
18 * tsk->signal->cputime_expires expiration cache if necessary. Needs
19 * siglock protection since other code may update expiration cache as
20 * well.
f06febc9 21 */
5ab46b34 22void update_rlimit_cpu(struct task_struct *task, unsigned long rlim_new)
f06febc9 23{
42c4ab41 24 cputime_t cputime = secs_to_cputime(rlim_new);
f06febc9 25
5ab46b34
JS
26 spin_lock_irq(&task->sighand->siglock);
27 set_process_cpu_timer(task, CPUCLOCK_PROF, &cputime, NULL);
28 spin_unlock_irq(&task->sighand->siglock);
f06febc9
FM
29}
30
a924b04d 31static int check_clock(const clockid_t which_clock)
1da177e4
LT
32{
33 int error = 0;
34 struct task_struct *p;
35 const pid_t pid = CPUCLOCK_PID(which_clock);
36
37 if (CPUCLOCK_WHICH(which_clock) >= CPUCLOCK_MAX)
38 return -EINVAL;
39
40 if (pid == 0)
41 return 0;
42
c0deae8c 43 rcu_read_lock();
8dc86af0 44 p = find_task_by_vpid(pid);
bac0abd6 45 if (!p || !(CPUCLOCK_PERTHREAD(which_clock) ?
c0deae8c 46 same_thread_group(p, current) : has_group_leader_pid(p))) {
1da177e4
LT
47 error = -EINVAL;
48 }
c0deae8c 49 rcu_read_unlock();
1da177e4
LT
50
51 return error;
52}
53
55ccb616 54static inline unsigned long long
a924b04d 55timespec_to_sample(const clockid_t which_clock, const struct timespec *tp)
1da177e4 56{
55ccb616
FW
57 unsigned long long ret;
58
59 ret = 0; /* high half always zero when .cpu used */
1da177e4 60 if (CPUCLOCK_WHICH(which_clock) == CPUCLOCK_SCHED) {
55ccb616 61 ret = (unsigned long long)tp->tv_sec * NSEC_PER_SEC + tp->tv_nsec;
1da177e4 62 } else {
55ccb616 63 ret = cputime_to_expires(timespec_to_cputime(tp));
1da177e4
LT
64 }
65 return ret;
66}
67
a924b04d 68static void sample_to_timespec(const clockid_t which_clock,
55ccb616 69 unsigned long long expires,
1da177e4
LT
70 struct timespec *tp)
71{
f8bd2258 72 if (CPUCLOCK_WHICH(which_clock) == CPUCLOCK_SCHED)
55ccb616 73 *tp = ns_to_timespec(expires);
f8bd2258 74 else
55ccb616 75 cputime_to_timespec((__force cputime_t)expires, tp);
1da177e4
LT
76}
77
78/*
79 * Update expiry time from increment, and increase overrun count,
80 * given the current clock sample.
81 */
7a4ed937 82static void bump_cpu_timer(struct k_itimer *timer,
55ccb616 83 unsigned long long now)
1da177e4
LT
84{
85 int i;
55ccb616 86 unsigned long long delta, incr;
1da177e4 87
55ccb616 88 if (timer->it.cpu.incr == 0)
1da177e4
LT
89 return;
90
55ccb616
FW
91 if (now < timer->it.cpu.expires)
92 return;
1da177e4 93
55ccb616
FW
94 incr = timer->it.cpu.incr;
95 delta = now + incr - timer->it.cpu.expires;
1da177e4 96
55ccb616
FW
97 /* Don't use (incr*2 < delta), incr*2 might overflow. */
98 for (i = 0; incr < delta - incr; i++)
99 incr = incr << 1;
100
101 for (; i >= 0; incr >>= 1, i--) {
102 if (delta < incr)
103 continue;
104
105 timer->it.cpu.expires += incr;
106 timer->it_overrun += 1 << i;
107 delta -= incr;
1da177e4
LT
108 }
109}
110
555347f6
FW
111/**
112 * task_cputime_zero - Check a task_cputime struct for all zero fields.
113 *
114 * @cputime: The struct to compare.
115 *
116 * Checks @cputime to see if all fields are zero. Returns true if all fields
117 * are zero, false if any field is nonzero.
118 */
119static inline int task_cputime_zero(const struct task_cputime *cputime)
120{
121 if (!cputime->utime && !cputime->stime && !cputime->sum_exec_runtime)
122 return 1;
123 return 0;
124}
125
55ccb616 126static inline unsigned long long prof_ticks(struct task_struct *p)
1da177e4 127{
6fac4829
FW
128 cputime_t utime, stime;
129
130 task_cputime(p, &utime, &stime);
131
55ccb616 132 return cputime_to_expires(utime + stime);
1da177e4 133}
55ccb616 134static inline unsigned long long virt_ticks(struct task_struct *p)
1da177e4 135{
6fac4829
FW
136 cputime_t utime;
137
138 task_cputime(p, &utime, NULL);
139
55ccb616 140 return cputime_to_expires(utime);
1da177e4 141}
1da177e4 142
bc2c8ea4
TG
143static int
144posix_cpu_clock_getres(const clockid_t which_clock, struct timespec *tp)
1da177e4
LT
145{
146 int error = check_clock(which_clock);
147 if (!error) {
148 tp->tv_sec = 0;
149 tp->tv_nsec = ((NSEC_PER_SEC + HZ - 1) / HZ);
150 if (CPUCLOCK_WHICH(which_clock) == CPUCLOCK_SCHED) {
151 /*
152 * If sched_clock is using a cycle counter, we
153 * don't have any idea of its true resolution
154 * exported, but it is much more than 1s/HZ.
155 */
156 tp->tv_nsec = 1;
157 }
158 }
159 return error;
160}
161
bc2c8ea4
TG
162static int
163posix_cpu_clock_set(const clockid_t which_clock, const struct timespec *tp)
1da177e4
LT
164{
165 /*
166 * You can never reset a CPU clock, but we check for other errors
167 * in the call before failing with EPERM.
168 */
169 int error = check_clock(which_clock);
170 if (error == 0) {
171 error = -EPERM;
172 }
173 return error;
174}
175
176
177/*
178 * Sample a per-thread clock for the given task.
179 */
a924b04d 180static int cpu_clock_sample(const clockid_t which_clock, struct task_struct *p,
55ccb616 181 unsigned long long *sample)
1da177e4
LT
182{
183 switch (CPUCLOCK_WHICH(which_clock)) {
184 default:
185 return -EINVAL;
186 case CPUCLOCK_PROF:
55ccb616 187 *sample = prof_ticks(p);
1da177e4
LT
188 break;
189 case CPUCLOCK_VIRT:
55ccb616 190 *sample = virt_ticks(p);
1da177e4
LT
191 break;
192 case CPUCLOCK_SCHED:
55ccb616 193 *sample = task_sched_runtime(p);
1da177e4
LT
194 break;
195 }
196 return 0;
197}
198
4da94d49
PZ
199static void update_gt_cputime(struct task_cputime *a, struct task_cputime *b)
200{
64861634 201 if (b->utime > a->utime)
4da94d49
PZ
202 a->utime = b->utime;
203
64861634 204 if (b->stime > a->stime)
4da94d49
PZ
205 a->stime = b->stime;
206
207 if (b->sum_exec_runtime > a->sum_exec_runtime)
208 a->sum_exec_runtime = b->sum_exec_runtime;
209}
210
211void thread_group_cputimer(struct task_struct *tsk, struct task_cputime *times)
212{
213 struct thread_group_cputimer *cputimer = &tsk->signal->cputimer;
214 struct task_cputime sum;
215 unsigned long flags;
216
4da94d49 217 if (!cputimer->running) {
4da94d49
PZ
218 /*
219 * The POSIX timer interface allows for absolute time expiry
220 * values through the TIMER_ABSTIME flag, therefore we have
221 * to synchronize the timer to the clock every time we start
222 * it.
223 */
224 thread_group_cputime(tsk, &sum);
3cfef952 225 raw_spin_lock_irqsave(&cputimer->lock, flags);
bcd5cff7 226 cputimer->running = 1;
4da94d49 227 update_gt_cputime(&cputimer->cputime, &sum);
bcd5cff7 228 } else
3cfef952 229 raw_spin_lock_irqsave(&cputimer->lock, flags);
4da94d49 230 *times = cputimer->cputime;
ee30a7b2 231 raw_spin_unlock_irqrestore(&cputimer->lock, flags);
4da94d49
PZ
232}
233
1da177e4
LT
234/*
235 * Sample a process (thread group) clock for the given group_leader task.
236 * Must be called with tasklist_lock held for reading.
1da177e4 237 */
bb34d92f
FM
238static int cpu_clock_sample_group(const clockid_t which_clock,
239 struct task_struct *p,
55ccb616 240 unsigned long long *sample)
1da177e4 241{
f06febc9
FM
242 struct task_cputime cputime;
243
eccdaeaf 244 switch (CPUCLOCK_WHICH(which_clock)) {
1da177e4
LT
245 default:
246 return -EINVAL;
247 case CPUCLOCK_PROF:
c5f8d995 248 thread_group_cputime(p, &cputime);
55ccb616 249 *sample = cputime_to_expires(cputime.utime + cputime.stime);
1da177e4
LT
250 break;
251 case CPUCLOCK_VIRT:
c5f8d995 252 thread_group_cputime(p, &cputime);
55ccb616 253 *sample = cputime_to_expires(cputime.utime);
1da177e4
LT
254 break;
255 case CPUCLOCK_SCHED:
d670ec13 256 thread_group_cputime(p, &cputime);
55ccb616 257 *sample = cputime.sum_exec_runtime;
1da177e4
LT
258 break;
259 }
260 return 0;
261}
262
1da177e4 263
bc2c8ea4 264static int posix_cpu_clock_get(const clockid_t which_clock, struct timespec *tp)
1da177e4
LT
265{
266 const pid_t pid = CPUCLOCK_PID(which_clock);
267 int error = -EINVAL;
55ccb616 268 unsigned long long rtn;
1da177e4
LT
269
270 if (pid == 0) {
271 /*
272 * Special case constant value for our own clocks.
273 * We don't have to do any lookup to find ourselves.
274 */
275 if (CPUCLOCK_PERTHREAD(which_clock)) {
276 /*
277 * Sampling just ourselves we can do with no locking.
278 */
279 error = cpu_clock_sample(which_clock,
280 current, &rtn);
281 } else {
282 read_lock(&tasklist_lock);
283 error = cpu_clock_sample_group(which_clock,
284 current, &rtn);
285 read_unlock(&tasklist_lock);
286 }
287 } else {
288 /*
289 * Find the given PID, and validate that the caller
290 * should be able to see it.
291 */
292 struct task_struct *p;
1f2ea083 293 rcu_read_lock();
8dc86af0 294 p = find_task_by_vpid(pid);
1da177e4
LT
295 if (p) {
296 if (CPUCLOCK_PERTHREAD(which_clock)) {
bac0abd6 297 if (same_thread_group(p, current)) {
1da177e4
LT
298 error = cpu_clock_sample(which_clock,
299 p, &rtn);
300 }
1f2ea083
PM
301 } else {
302 read_lock(&tasklist_lock);
d30fda35 303 if (thread_group_leader(p) && p->sighand) {
1f2ea083
PM
304 error =
305 cpu_clock_sample_group(which_clock,
306 p, &rtn);
307 }
308 read_unlock(&tasklist_lock);
1da177e4
LT
309 }
310 }
1f2ea083 311 rcu_read_unlock();
1da177e4
LT
312 }
313
314 if (error)
315 return error;
316 sample_to_timespec(which_clock, rtn, tp);
317 return 0;
318}
319
320
321/*
322 * Validate the clockid_t for a new CPU-clock timer, and initialize the timer.
ba5ea951
SG
323 * This is called from sys_timer_create() and do_cpu_nanosleep() with the
324 * new timer already all-zeros initialized.
1da177e4 325 */
bc2c8ea4 326static int posix_cpu_timer_create(struct k_itimer *new_timer)
1da177e4
LT
327{
328 int ret = 0;
329 const pid_t pid = CPUCLOCK_PID(new_timer->it_clock);
330 struct task_struct *p;
331
332 if (CPUCLOCK_WHICH(new_timer->it_clock) >= CPUCLOCK_MAX)
333 return -EINVAL;
334
335 INIT_LIST_HEAD(&new_timer->it.cpu.entry);
1da177e4 336
c0deae8c 337 rcu_read_lock();
1da177e4
LT
338 if (CPUCLOCK_PERTHREAD(new_timer->it_clock)) {
339 if (pid == 0) {
340 p = current;
341 } else {
8dc86af0 342 p = find_task_by_vpid(pid);
bac0abd6 343 if (p && !same_thread_group(p, current))
1da177e4
LT
344 p = NULL;
345 }
346 } else {
347 if (pid == 0) {
348 p = current->group_leader;
349 } else {
8dc86af0 350 p = find_task_by_vpid(pid);
c0deae8c 351 if (p && !has_group_leader_pid(p))
1da177e4
LT
352 p = NULL;
353 }
354 }
355 new_timer->it.cpu.task = p;
356 if (p) {
357 get_task_struct(p);
358 } else {
359 ret = -EINVAL;
360 }
c0deae8c 361 rcu_read_unlock();
1da177e4
LT
362
363 return ret;
364}
365
366/*
367 * Clean up a CPU-clock timer that is about to be destroyed.
368 * This is called from timer deletion with the timer already locked.
369 * If we return TIMER_RETRY, it's necessary to release the timer's lock
370 * and try again. (This happens when the timer is in the middle of firing.)
371 */
bc2c8ea4 372static int posix_cpu_timer_del(struct k_itimer *timer)
1da177e4
LT
373{
374 struct task_struct *p = timer->it.cpu.task;
108150ea 375 int ret = 0;
1da177e4 376
108150ea 377 if (likely(p != NULL)) {
9465bee8 378 read_lock(&tasklist_lock);
d30fda35 379 if (unlikely(p->sighand == NULL)) {
9465bee8
LT
380 /*
381 * We raced with the reaping of the task.
382 * The deletion should have cleared us off the list.
383 */
384 BUG_ON(!list_empty(&timer->it.cpu.entry));
385 } else {
9465bee8 386 spin_lock(&p->sighand->siglock);
108150ea
ON
387 if (timer->it.cpu.firing)
388 ret = TIMER_RETRY;
389 else
390 list_del(&timer->it.cpu.entry);
9465bee8
LT
391 spin_unlock(&p->sighand->siglock);
392 }
393 read_unlock(&tasklist_lock);
108150ea
ON
394
395 if (!ret)
396 put_task_struct(p);
1da177e4 397 }
1da177e4 398
108150ea 399 return ret;
1da177e4
LT
400}
401
402/*
403 * Clean out CPU timers still ticking when a thread exited. The task
404 * pointer is cleared, and the expiry time is replaced with the residual
405 * time for later timer_gettime calls to return.
406 * This must be called with the siglock held.
407 */
408static void cleanup_timers(struct list_head *head,
409 cputime_t utime, cputime_t stime,
41b86e9c 410 unsigned long long sum_exec_runtime)
1da177e4
LT
411{
412 struct cpu_timer_list *timer, *next;
64861634 413 cputime_t ptime = utime + stime;
1da177e4
LT
414
415 list_for_each_entry_safe(timer, next, head, entry) {
1da177e4 416 list_del_init(&timer->entry);
55ccb616
FW
417 if (timer->expires < cputime_to_expires(ptime)) {
418 timer->expires = 0;
1da177e4 419 } else {
55ccb616 420 timer->expires -= cputime_to_expires(ptime);
1da177e4
LT
421 }
422 }
423
424 ++head;
425 list_for_each_entry_safe(timer, next, head, entry) {
1da177e4 426 list_del_init(&timer->entry);
55ccb616
FW
427 if (timer->expires < cputime_to_expires(utime)) {
428 timer->expires = 0;
1da177e4 429 } else {
55ccb616 430 timer->expires -= cputime_to_expires(utime);
1da177e4
LT
431 }
432 }
433
434 ++head;
435 list_for_each_entry_safe(timer, next, head, entry) {
1da177e4 436 list_del_init(&timer->entry);
55ccb616
FW
437 if (timer->expires < sum_exec_runtime) {
438 timer->expires = 0;
1da177e4 439 } else {
55ccb616 440 timer->expires -= sum_exec_runtime;
1da177e4
LT
441 }
442 }
443}
444
445/*
446 * These are both called with the siglock held, when the current thread
447 * is being reaped. When the final (leader) thread in the group is reaped,
448 * posix_cpu_timers_exit_group will be called after posix_cpu_timers_exit.
449 */
450void posix_cpu_timers_exit(struct task_struct *tsk)
451{
6fac4829
FW
452 cputime_t utime, stime;
453
61337054
NK
454 add_device_randomness((const void*) &tsk->se.sum_exec_runtime,
455 sizeof(unsigned long long));
6fac4829 456 task_cputime(tsk, &utime, &stime);
1da177e4 457 cleanup_timers(tsk->cpu_timers,
6fac4829 458 utime, stime, tsk->se.sum_exec_runtime);
1da177e4
LT
459
460}
461void posix_cpu_timers_exit_group(struct task_struct *tsk)
462{
17d42c1c 463 struct signal_struct *const sig = tsk->signal;
6fac4829 464 cputime_t utime, stime;
ca531a0a 465
6fac4829 466 task_cputime(tsk, &utime, &stime);
f06febc9 467 cleanup_timers(tsk->signal->cpu_timers,
6fac4829 468 utime + sig->utime, stime + sig->stime,
17d42c1c 469 tsk->se.sum_exec_runtime + sig->sum_sched_runtime);
1da177e4
LT
470}
471
55ccb616 472static void clear_dead_task(struct k_itimer *timer, unsigned long long now)
1da177e4
LT
473{
474 /*
475 * That's all for this thread or process.
476 * We leave our residual in expires to be reported.
477 */
478 put_task_struct(timer->it.cpu.task);
479 timer->it.cpu.task = NULL;
55ccb616 480 timer->it.cpu.expires -= now;
1da177e4
LT
481}
482
d1e3b6d1
SG
483static inline int expires_gt(cputime_t expires, cputime_t new_exp)
484{
64861634 485 return expires == 0 || expires > new_exp;
d1e3b6d1
SG
486}
487
1da177e4
LT
488/*
489 * Insert the timer on the appropriate list before any timers that
490 * expire later. This must be called with the tasklist_lock held
c2873937 491 * for reading, interrupts disabled and p->sighand->siglock taken.
1da177e4 492 */
5eb9aa64 493static void arm_timer(struct k_itimer *timer)
1da177e4
LT
494{
495 struct task_struct *p = timer->it.cpu.task;
496 struct list_head *head, *listpos;
5eb9aa64 497 struct task_cputime *cputime_expires;
1da177e4
LT
498 struct cpu_timer_list *const nt = &timer->it.cpu;
499 struct cpu_timer_list *next;
1da177e4 500
5eb9aa64
SG
501 if (CPUCLOCK_PERTHREAD(timer->it_clock)) {
502 head = p->cpu_timers;
503 cputime_expires = &p->cputime_expires;
504 } else {
505 head = p->signal->cpu_timers;
506 cputime_expires = &p->signal->cputime_expires;
507 }
1da177e4
LT
508 head += CPUCLOCK_WHICH(timer->it_clock);
509
1da177e4 510 listpos = head;
5eb9aa64 511 list_for_each_entry(next, head, entry) {
55ccb616 512 if (nt->expires < next->expires)
5eb9aa64
SG
513 break;
514 listpos = &next->entry;
1da177e4
LT
515 }
516 list_add(&nt->entry, listpos);
517
518 if (listpos == head) {
55ccb616 519 unsigned long long exp = nt->expires;
5eb9aa64 520
1da177e4 521 /*
5eb9aa64
SG
522 * We are the new earliest-expiring POSIX 1.b timer, hence
523 * need to update expiration cache. Take into account that
524 * for process timers we share expiration cache with itimers
525 * and RLIMIT_CPU and for thread timers with RLIMIT_RTTIME.
1da177e4
LT
526 */
527
5eb9aa64
SG
528 switch (CPUCLOCK_WHICH(timer->it_clock)) {
529 case CPUCLOCK_PROF:
55ccb616
FW
530 if (expires_gt(cputime_expires->prof_exp, expires_to_cputime(exp)))
531 cputime_expires->prof_exp = expires_to_cputime(exp);
5eb9aa64
SG
532 break;
533 case CPUCLOCK_VIRT:
55ccb616
FW
534 if (expires_gt(cputime_expires->virt_exp, expires_to_cputime(exp)))
535 cputime_expires->virt_exp = expires_to_cputime(exp);
5eb9aa64
SG
536 break;
537 case CPUCLOCK_SCHED:
538 if (cputime_expires->sched_exp == 0 ||
55ccb616
FW
539 cputime_expires->sched_exp > exp)
540 cputime_expires->sched_exp = exp;
5eb9aa64 541 break;
1da177e4
LT
542 }
543 }
1da177e4
LT
544}
545
546/*
547 * The timer is locked, fire it and arrange for its reload.
548 */
549static void cpu_timer_fire(struct k_itimer *timer)
550{
1f169f84
SG
551 if ((timer->it_sigev_notify & ~SIGEV_THREAD_ID) == SIGEV_NONE) {
552 /*
553 * User don't want any signal.
554 */
55ccb616 555 timer->it.cpu.expires = 0;
1f169f84 556 } else if (unlikely(timer->sigq == NULL)) {
1da177e4
LT
557 /*
558 * This a special case for clock_nanosleep,
559 * not a normal timer from sys_timer_create.
560 */
561 wake_up_process(timer->it_process);
55ccb616
FW
562 timer->it.cpu.expires = 0;
563 } else if (timer->it.cpu.incr == 0) {
1da177e4
LT
564 /*
565 * One-shot timer. Clear it as soon as it's fired.
566 */
567 posix_timer_event(timer, 0);
55ccb616 568 timer->it.cpu.expires = 0;
1da177e4
LT
569 } else if (posix_timer_event(timer, ++timer->it_requeue_pending)) {
570 /*
571 * The signal did not get queued because the signal
572 * was ignored, so we won't get any callback to
573 * reload the timer. But we need to keep it
574 * ticking in case the signal is deliverable next time.
575 */
576 posix_cpu_timer_schedule(timer);
577 }
578}
579
3997ad31
PZ
580/*
581 * Sample a process (thread group) timer for the given group_leader task.
582 * Must be called with tasklist_lock held for reading.
583 */
584static int cpu_timer_sample_group(const clockid_t which_clock,
585 struct task_struct *p,
55ccb616 586 unsigned long long *sample)
3997ad31
PZ
587{
588 struct task_cputime cputime;
589
590 thread_group_cputimer(p, &cputime);
591 switch (CPUCLOCK_WHICH(which_clock)) {
592 default:
593 return -EINVAL;
594 case CPUCLOCK_PROF:
55ccb616 595 *sample = cputime_to_expires(cputime.utime + cputime.stime);
3997ad31
PZ
596 break;
597 case CPUCLOCK_VIRT:
55ccb616 598 *sample = cputime_to_expires(cputime.utime);
3997ad31
PZ
599 break;
600 case CPUCLOCK_SCHED:
55ccb616 601 *sample = cputime.sum_exec_runtime + task_delta_exec(p);
3997ad31
PZ
602 break;
603 }
604 return 0;
605}
606
a8572160
FW
607#ifdef CONFIG_NO_HZ_FULL
608static void nohz_kick_work_fn(struct work_struct *work)
609{
610 tick_nohz_full_kick_all();
611}
612
613static DECLARE_WORK(nohz_kick_work, nohz_kick_work_fn);
614
615/*
616 * We need the IPIs to be sent from sane process context.
617 * The posix cpu timers are always set with irqs disabled.
618 */
619static void posix_cpu_timer_kick_nohz(void)
620{
621 schedule_work(&nohz_kick_work);
622}
555347f6
FW
623
624bool posix_cpu_timers_can_stop_tick(struct task_struct *tsk)
625{
626 if (!task_cputime_zero(&tsk->cputime_expires))
6ac29178 627 return false;
555347f6
FW
628
629 if (tsk->signal->cputimer.running)
6ac29178 630 return false;
555347f6 631
6ac29178 632 return true;
555347f6 633}
a8572160
FW
634#else
635static inline void posix_cpu_timer_kick_nohz(void) { }
636#endif
637
1da177e4
LT
638/*
639 * Guts of sys_timer_settime for CPU timers.
640 * This is called with the timer locked and interrupts disabled.
641 * If we return TIMER_RETRY, it's necessary to release the timer's lock
642 * and try again. (This happens when the timer is in the middle of firing.)
643 */
bc2c8ea4
TG
644static int posix_cpu_timer_set(struct k_itimer *timer, int flags,
645 struct itimerspec *new, struct itimerspec *old)
1da177e4
LT
646{
647 struct task_struct *p = timer->it.cpu.task;
55ccb616 648 unsigned long long old_expires, new_expires, old_incr, val;
1da177e4
LT
649 int ret;
650
651 if (unlikely(p == NULL)) {
652 /*
653 * Timer refers to a dead task's clock.
654 */
655 return -ESRCH;
656 }
657
658 new_expires = timespec_to_sample(timer->it_clock, &new->it_value);
659
660 read_lock(&tasklist_lock);
661 /*
662 * We need the tasklist_lock to protect against reaping that
d30fda35 663 * clears p->sighand. If p has just been reaped, we can no
1da177e4
LT
664 * longer get any information about it at all.
665 */
d30fda35 666 if (unlikely(p->sighand == NULL)) {
1da177e4
LT
667 read_unlock(&tasklist_lock);
668 put_task_struct(p);
669 timer->it.cpu.task = NULL;
670 return -ESRCH;
671 }
672
673 /*
674 * Disarm any old timer after extracting its expiry time.
675 */
676 BUG_ON(!irqs_disabled());
a69ac4a7
ON
677
678 ret = 0;
ae1a78ee 679 old_incr = timer->it.cpu.incr;
1da177e4
LT
680 spin_lock(&p->sighand->siglock);
681 old_expires = timer->it.cpu.expires;
a69ac4a7
ON
682 if (unlikely(timer->it.cpu.firing)) {
683 timer->it.cpu.firing = -1;
684 ret = TIMER_RETRY;
685 } else
686 list_del_init(&timer->it.cpu.entry);
1da177e4
LT
687
688 /*
689 * We need to sample the current value to convert the new
690 * value from to relative and absolute, and to convert the
691 * old value from absolute to relative. To set a process
692 * timer, we need a sample to balance the thread expiry
693 * times (in arm_timer). With an absolute time, we must
694 * check if it's already passed. In short, we need a sample.
695 */
696 if (CPUCLOCK_PERTHREAD(timer->it_clock)) {
697 cpu_clock_sample(timer->it_clock, p, &val);
698 } else {
3997ad31 699 cpu_timer_sample_group(timer->it_clock, p, &val);
1da177e4
LT
700 }
701
702 if (old) {
55ccb616 703 if (old_expires == 0) {
1da177e4
LT
704 old->it_value.tv_sec = 0;
705 old->it_value.tv_nsec = 0;
706 } else {
707 /*
708 * Update the timer in case it has
709 * overrun already. If it has,
710 * we'll report it as having overrun
711 * and with the next reloaded timer
712 * already ticking, though we are
713 * swallowing that pending
714 * notification here to install the
715 * new setting.
716 */
717 bump_cpu_timer(timer, val);
55ccb616
FW
718 if (val < timer->it.cpu.expires) {
719 old_expires = timer->it.cpu.expires - val;
1da177e4
LT
720 sample_to_timespec(timer->it_clock,
721 old_expires,
722 &old->it_value);
723 } else {
724 old->it_value.tv_nsec = 1;
725 old->it_value.tv_sec = 0;
726 }
727 }
728 }
729
a69ac4a7 730 if (unlikely(ret)) {
1da177e4
LT
731 /*
732 * We are colliding with the timer actually firing.
733 * Punt after filling in the timer's old value, and
734 * disable this firing since we are already reporting
735 * it as an overrun (thanks to bump_cpu_timer above).
736 */
c2873937 737 spin_unlock(&p->sighand->siglock);
1da177e4 738 read_unlock(&tasklist_lock);
1da177e4
LT
739 goto out;
740 }
741
55ccb616
FW
742 if (new_expires != 0 && !(flags & TIMER_ABSTIME)) {
743 new_expires += val;
1da177e4
LT
744 }
745
746 /*
747 * Install the new expiry time (or zero).
748 * For a timer with no notification action, we don't actually
749 * arm the timer (we'll just fake it for timer_gettime).
750 */
751 timer->it.cpu.expires = new_expires;
55ccb616 752 if (new_expires != 0 && val < new_expires) {
5eb9aa64 753 arm_timer(timer);
1da177e4
LT
754 }
755
c2873937 756 spin_unlock(&p->sighand->siglock);
1da177e4
LT
757 read_unlock(&tasklist_lock);
758
759 /*
760 * Install the new reload setting, and
761 * set up the signal and overrun bookkeeping.
762 */
763 timer->it.cpu.incr = timespec_to_sample(timer->it_clock,
764 &new->it_interval);
765
766 /*
767 * This acts as a modification timestamp for the timer,
768 * so any automatic reload attempt will punt on seeing
769 * that we have reset the timer manually.
770 */
771 timer->it_requeue_pending = (timer->it_requeue_pending + 2) &
772 ~REQUEUE_PENDING;
773 timer->it_overrun_last = 0;
774 timer->it_overrun = -1;
775
55ccb616 776 if (new_expires != 0 && !(val < new_expires)) {
1da177e4
LT
777 /*
778 * The designated time already passed, so we notify
779 * immediately, even if the thread never runs to
780 * accumulate more time on this clock.
781 */
782 cpu_timer_fire(timer);
783 }
784
785 ret = 0;
786 out:
787 if (old) {
788 sample_to_timespec(timer->it_clock,
ae1a78ee 789 old_incr, &old->it_interval);
1da177e4 790 }
a8572160
FW
791 if (!ret)
792 posix_cpu_timer_kick_nohz();
1da177e4
LT
793 return ret;
794}
795
bc2c8ea4 796static void posix_cpu_timer_get(struct k_itimer *timer, struct itimerspec *itp)
1da177e4 797{
55ccb616 798 unsigned long long now;
1da177e4
LT
799 struct task_struct *p = timer->it.cpu.task;
800 int clear_dead;
801
802 /*
803 * Easy part: convert the reload time.
804 */
805 sample_to_timespec(timer->it_clock,
806 timer->it.cpu.incr, &itp->it_interval);
807
55ccb616 808 if (timer->it.cpu.expires == 0) { /* Timer not armed at all. */
1da177e4
LT
809 itp->it_value.tv_sec = itp->it_value.tv_nsec = 0;
810 return;
811 }
812
813 if (unlikely(p == NULL)) {
814 /*
815 * This task already died and the timer will never fire.
816 * In this case, expires is actually the dead value.
817 */
818 dead:
819 sample_to_timespec(timer->it_clock, timer->it.cpu.expires,
820 &itp->it_value);
821 return;
822 }
823
824 /*
825 * Sample the clock to take the difference with the expiry time.
826 */
827 if (CPUCLOCK_PERTHREAD(timer->it_clock)) {
828 cpu_clock_sample(timer->it_clock, p, &now);
829 clear_dead = p->exit_state;
830 } else {
831 read_lock(&tasklist_lock);
d30fda35 832 if (unlikely(p->sighand == NULL)) {
1da177e4
LT
833 /*
834 * The process has been reaped.
835 * We can't even collect a sample any more.
836 * Call the timer disarmed, nothing else to do.
837 */
838 put_task_struct(p);
839 timer->it.cpu.task = NULL;
55ccb616 840 timer->it.cpu.expires = 0;
1da177e4
LT
841 read_unlock(&tasklist_lock);
842 goto dead;
843 } else {
3997ad31 844 cpu_timer_sample_group(timer->it_clock, p, &now);
1da177e4
LT
845 clear_dead = (unlikely(p->exit_state) &&
846 thread_group_empty(p));
847 }
848 read_unlock(&tasklist_lock);
849 }
850
1da177e4
LT
851 if (unlikely(clear_dead)) {
852 /*
853 * We've noticed that the thread is dead, but
854 * not yet reaped. Take this opportunity to
855 * drop our task ref.
856 */
857 clear_dead_task(timer, now);
858 goto dead;
859 }
860
55ccb616 861 if (now < timer->it.cpu.expires) {
1da177e4 862 sample_to_timespec(timer->it_clock,
55ccb616 863 timer->it.cpu.expires - now,
1da177e4
LT
864 &itp->it_value);
865 } else {
866 /*
867 * The timer should have expired already, but the firing
868 * hasn't taken place yet. Say it's just about to expire.
869 */
870 itp->it_value.tv_nsec = 1;
871 itp->it_value.tv_sec = 0;
872 }
873}
874
875/*
876 * Check for any per-thread CPU timers that have fired and move them off
877 * the tsk->cpu_timers[N] list onto the firing list. Here we update the
878 * tsk->it_*_expires values to reflect the remaining thread CPU timers.
879 */
880static void check_thread_timers(struct task_struct *tsk,
881 struct list_head *firing)
882{
e80eda94 883 int maxfire;
1da177e4 884 struct list_head *timers = tsk->cpu_timers;
78f2c7db 885 struct signal_struct *const sig = tsk->signal;
d4bb5274 886 unsigned long soft;
1da177e4 887
e80eda94 888 maxfire = 20;
64861634 889 tsk->cputime_expires.prof_exp = 0;
1da177e4 890 while (!list_empty(timers)) {
b5e61818 891 struct cpu_timer_list *t = list_first_entry(timers,
1da177e4
LT
892 struct cpu_timer_list,
893 entry);
55ccb616
FW
894 if (!--maxfire || prof_ticks(tsk) < t->expires) {
895 tsk->cputime_expires.prof_exp = expires_to_cputime(t->expires);
1da177e4
LT
896 break;
897 }
898 t->firing = 1;
899 list_move_tail(&t->entry, firing);
900 }
901
902 ++timers;
e80eda94 903 maxfire = 20;
64861634 904 tsk->cputime_expires.virt_exp = 0;
1da177e4 905 while (!list_empty(timers)) {
b5e61818 906 struct cpu_timer_list *t = list_first_entry(timers,
1da177e4
LT
907 struct cpu_timer_list,
908 entry);
55ccb616
FW
909 if (!--maxfire || virt_ticks(tsk) < t->expires) {
910 tsk->cputime_expires.virt_exp = expires_to_cputime(t->expires);
1da177e4
LT
911 break;
912 }
913 t->firing = 1;
914 list_move_tail(&t->entry, firing);
915 }
916
917 ++timers;
e80eda94 918 maxfire = 20;
f06febc9 919 tsk->cputime_expires.sched_exp = 0;
1da177e4 920 while (!list_empty(timers)) {
b5e61818 921 struct cpu_timer_list *t = list_first_entry(timers,
1da177e4
LT
922 struct cpu_timer_list,
923 entry);
55ccb616
FW
924 if (!--maxfire || tsk->se.sum_exec_runtime < t->expires) {
925 tsk->cputime_expires.sched_exp = t->expires;
1da177e4
LT
926 break;
927 }
928 t->firing = 1;
929 list_move_tail(&t->entry, firing);
930 }
78f2c7db
PZ
931
932 /*
933 * Check for the special case thread timers.
934 */
78d7d407 935 soft = ACCESS_ONCE(sig->rlim[RLIMIT_RTTIME].rlim_cur);
d4bb5274 936 if (soft != RLIM_INFINITY) {
78d7d407
JS
937 unsigned long hard =
938 ACCESS_ONCE(sig->rlim[RLIMIT_RTTIME].rlim_max);
78f2c7db 939
5a52dd50
PZ
940 if (hard != RLIM_INFINITY &&
941 tsk->rt.timeout > DIV_ROUND_UP(hard, USEC_PER_SEC/HZ)) {
78f2c7db
PZ
942 /*
943 * At the hard limit, we just die.
944 * No need to calculate anything else now.
945 */
946 __group_send_sig_info(SIGKILL, SEND_SIG_PRIV, tsk);
947 return;
948 }
d4bb5274 949 if (tsk->rt.timeout > DIV_ROUND_UP(soft, USEC_PER_SEC/HZ)) {
78f2c7db
PZ
950 /*
951 * At the soft limit, send a SIGXCPU every second.
952 */
d4bb5274
JS
953 if (soft < hard) {
954 soft += USEC_PER_SEC;
955 sig->rlim[RLIMIT_RTTIME].rlim_cur = soft;
78f2c7db 956 }
81d50bb2
HS
957 printk(KERN_INFO
958 "RT Watchdog Timeout: %s[%d]\n",
959 tsk->comm, task_pid_nr(tsk));
78f2c7db
PZ
960 __group_send_sig_info(SIGXCPU, SEND_SIG_PRIV, tsk);
961 }
962 }
1da177e4
LT
963}
964
15365c10 965static void stop_process_timers(struct signal_struct *sig)
3fccfd67 966{
15365c10 967 struct thread_group_cputimer *cputimer = &sig->cputimer;
3fccfd67
PZ
968 unsigned long flags;
969
ee30a7b2 970 raw_spin_lock_irqsave(&cputimer->lock, flags);
3fccfd67 971 cputimer->running = 0;
ee30a7b2 972 raw_spin_unlock_irqrestore(&cputimer->lock, flags);
3fccfd67
PZ
973}
974
8356b5f9
SG
975static u32 onecputick;
976
42c4ab41 977static void check_cpu_itimer(struct task_struct *tsk, struct cpu_itimer *it,
55ccb616
FW
978 unsigned long long *expires,
979 unsigned long long cur_time, int signo)
42c4ab41 980{
64861634 981 if (!it->expires)
42c4ab41
SG
982 return;
983
64861634
MS
984 if (cur_time >= it->expires) {
985 if (it->incr) {
986 it->expires += it->incr;
8356b5f9
SG
987 it->error += it->incr_error;
988 if (it->error >= onecputick) {
64861634 989 it->expires -= cputime_one_jiffy;
8356b5f9
SG
990 it->error -= onecputick;
991 }
3f0a525e 992 } else {
64861634 993 it->expires = 0;
3f0a525e 994 }
42c4ab41 995
3f0a525e
XG
996 trace_itimer_expire(signo == SIGPROF ?
997 ITIMER_PROF : ITIMER_VIRTUAL,
998 tsk->signal->leader_pid, cur_time);
42c4ab41
SG
999 __group_send_sig_info(signo, SEND_SIG_PRIV, tsk);
1000 }
1001
64861634 1002 if (it->expires && (!*expires || it->expires < *expires)) {
42c4ab41
SG
1003 *expires = it->expires;
1004 }
1005}
1006
1da177e4
LT
1007/*
1008 * Check for any per-thread CPU timers that have fired and move them
1009 * off the tsk->*_timers list onto the firing list. Per-thread timers
1010 * have already been taken off.
1011 */
1012static void check_process_timers(struct task_struct *tsk,
1013 struct list_head *firing)
1014{
e80eda94 1015 int maxfire;
1da177e4 1016 struct signal_struct *const sig = tsk->signal;
55ccb616 1017 unsigned long long utime, ptime, virt_expires, prof_expires;
41b86e9c 1018 unsigned long long sum_sched_runtime, sched_expires;
1da177e4 1019 struct list_head *timers = sig->cpu_timers;
f06febc9 1020 struct task_cputime cputime;
d4bb5274 1021 unsigned long soft;
1da177e4 1022
1da177e4
LT
1023 /*
1024 * Collect the current process totals.
1025 */
4cd4c1b4 1026 thread_group_cputimer(tsk, &cputime);
55ccb616
FW
1027 utime = cputime_to_expires(cputime.utime);
1028 ptime = utime + cputime_to_expires(cputime.stime);
f06febc9 1029 sum_sched_runtime = cputime.sum_exec_runtime;
e80eda94 1030 maxfire = 20;
64861634 1031 prof_expires = 0;
1da177e4 1032 while (!list_empty(timers)) {
ee7dd205 1033 struct cpu_timer_list *tl = list_first_entry(timers,
1da177e4
LT
1034 struct cpu_timer_list,
1035 entry);
55ccb616
FW
1036 if (!--maxfire || ptime < tl->expires) {
1037 prof_expires = tl->expires;
1da177e4
LT
1038 break;
1039 }
ee7dd205
WC
1040 tl->firing = 1;
1041 list_move_tail(&tl->entry, firing);
1da177e4
LT
1042 }
1043
1044 ++timers;
e80eda94 1045 maxfire = 20;
64861634 1046 virt_expires = 0;
1da177e4 1047 while (!list_empty(timers)) {
ee7dd205 1048 struct cpu_timer_list *tl = list_first_entry(timers,
1da177e4
LT
1049 struct cpu_timer_list,
1050 entry);
55ccb616
FW
1051 if (!--maxfire || utime < tl->expires) {
1052 virt_expires = tl->expires;
1da177e4
LT
1053 break;
1054 }
ee7dd205
WC
1055 tl->firing = 1;
1056 list_move_tail(&tl->entry, firing);
1da177e4
LT
1057 }
1058
1059 ++timers;
e80eda94 1060 maxfire = 20;
1da177e4
LT
1061 sched_expires = 0;
1062 while (!list_empty(timers)) {
ee7dd205 1063 struct cpu_timer_list *tl = list_first_entry(timers,
1da177e4
LT
1064 struct cpu_timer_list,
1065 entry);
55ccb616
FW
1066 if (!--maxfire || sum_sched_runtime < tl->expires) {
1067 sched_expires = tl->expires;
1da177e4
LT
1068 break;
1069 }
ee7dd205
WC
1070 tl->firing = 1;
1071 list_move_tail(&tl->entry, firing);
1da177e4
LT
1072 }
1073
1074 /*
1075 * Check for the special case process timers.
1076 */
42c4ab41
SG
1077 check_cpu_itimer(tsk, &sig->it[CPUCLOCK_PROF], &prof_expires, ptime,
1078 SIGPROF);
1079 check_cpu_itimer(tsk, &sig->it[CPUCLOCK_VIRT], &virt_expires, utime,
1080 SIGVTALRM);
78d7d407 1081 soft = ACCESS_ONCE(sig->rlim[RLIMIT_CPU].rlim_cur);
d4bb5274 1082 if (soft != RLIM_INFINITY) {
1da177e4 1083 unsigned long psecs = cputime_to_secs(ptime);
78d7d407
JS
1084 unsigned long hard =
1085 ACCESS_ONCE(sig->rlim[RLIMIT_CPU].rlim_max);
1da177e4 1086 cputime_t x;
d4bb5274 1087 if (psecs >= hard) {
1da177e4
LT
1088 /*
1089 * At the hard limit, we just die.
1090 * No need to calculate anything else now.
1091 */
1092 __group_send_sig_info(SIGKILL, SEND_SIG_PRIV, tsk);
1093 return;
1094 }
d4bb5274 1095 if (psecs >= soft) {
1da177e4
LT
1096 /*
1097 * At the soft limit, send a SIGXCPU every second.
1098 */
1099 __group_send_sig_info(SIGXCPU, SEND_SIG_PRIV, tsk);
d4bb5274
JS
1100 if (soft < hard) {
1101 soft++;
1102 sig->rlim[RLIMIT_CPU].rlim_cur = soft;
1da177e4
LT
1103 }
1104 }
d4bb5274 1105 x = secs_to_cputime(soft);
64861634 1106 if (!prof_expires || x < prof_expires) {
1da177e4
LT
1107 prof_expires = x;
1108 }
1109 }
1110
55ccb616
FW
1111 sig->cputime_expires.prof_exp = expires_to_cputime(prof_expires);
1112 sig->cputime_expires.virt_exp = expires_to_cputime(virt_expires);
29f87b79
SG
1113 sig->cputime_expires.sched_exp = sched_expires;
1114 if (task_cputime_zero(&sig->cputime_expires))
1115 stop_process_timers(sig);
1da177e4
LT
1116}
1117
1118/*
1119 * This is called from the signal code (via do_schedule_next_timer)
1120 * when the last timer signal was delivered and we have to reload the timer.
1121 */
1122void posix_cpu_timer_schedule(struct k_itimer *timer)
1123{
1124 struct task_struct *p = timer->it.cpu.task;
55ccb616 1125 unsigned long long now;
1da177e4
LT
1126
1127 if (unlikely(p == NULL))
1128 /*
1129 * The task was cleaned up already, no future firings.
1130 */
708f430d 1131 goto out;
1da177e4
LT
1132
1133 /*
1134 * Fetch the current sample and update the timer's expiry time.
1135 */
1136 if (CPUCLOCK_PERTHREAD(timer->it_clock)) {
1137 cpu_clock_sample(timer->it_clock, p, &now);
1138 bump_cpu_timer(timer, now);
1139 if (unlikely(p->exit_state)) {
1140 clear_dead_task(timer, now);
708f430d 1141 goto out;
1da177e4
LT
1142 }
1143 read_lock(&tasklist_lock); /* arm_timer needs it. */
c2873937 1144 spin_lock(&p->sighand->siglock);
1da177e4
LT
1145 } else {
1146 read_lock(&tasklist_lock);
d30fda35 1147 if (unlikely(p->sighand == NULL)) {
1da177e4
LT
1148 /*
1149 * The process has been reaped.
1150 * We can't even collect a sample any more.
1151 */
1152 put_task_struct(p);
1153 timer->it.cpu.task = p = NULL;
55ccb616 1154 timer->it.cpu.expires = 0;
708f430d 1155 goto out_unlock;
1da177e4
LT
1156 } else if (unlikely(p->exit_state) && thread_group_empty(p)) {
1157 /*
1158 * We've noticed that the thread is dead, but
1159 * not yet reaped. Take this opportunity to
1160 * drop our task ref.
1161 */
1162 clear_dead_task(timer, now);
708f430d 1163 goto out_unlock;
1da177e4 1164 }
c2873937 1165 spin_lock(&p->sighand->siglock);
3997ad31 1166 cpu_timer_sample_group(timer->it_clock, p, &now);
1da177e4
LT
1167 bump_cpu_timer(timer, now);
1168 /* Leave the tasklist_lock locked for the call below. */
1169 }
1170
1171 /*
1172 * Now re-arm for the new expiry time.
1173 */
c2873937 1174 BUG_ON(!irqs_disabled());
5eb9aa64 1175 arm_timer(timer);
c2873937 1176 spin_unlock(&p->sighand->siglock);
1da177e4 1177
708f430d 1178out_unlock:
1da177e4 1179 read_unlock(&tasklist_lock);
708f430d
RM
1180
1181out:
1182 timer->it_overrun_last = timer->it_overrun;
1183 timer->it_overrun = -1;
1184 ++timer->it_requeue_pending;
1da177e4
LT
1185}
1186
f06febc9
FM
1187/**
1188 * task_cputime_expired - Compare two task_cputime entities.
1189 *
1190 * @sample: The task_cputime structure to be checked for expiration.
1191 * @expires: Expiration times, against which @sample will be checked.
1192 *
1193 * Checks @sample against @expires to see if any field of @sample has expired.
1194 * Returns true if any field of the former is greater than the corresponding
1195 * field of the latter if the latter field is set. Otherwise returns false.
1196 */
1197static inline int task_cputime_expired(const struct task_cputime *sample,
1198 const struct task_cputime *expires)
1199{
64861634 1200 if (expires->utime && sample->utime >= expires->utime)
f06febc9 1201 return 1;
64861634 1202 if (expires->stime && sample->utime + sample->stime >= expires->stime)
f06febc9
FM
1203 return 1;
1204 if (expires->sum_exec_runtime != 0 &&
1205 sample->sum_exec_runtime >= expires->sum_exec_runtime)
1206 return 1;
1207 return 0;
1208}
1209
1210/**
1211 * fastpath_timer_check - POSIX CPU timers fast path.
1212 *
1213 * @tsk: The task (thread) being checked.
f06febc9 1214 *
bb34d92f
FM
1215 * Check the task and thread group timers. If both are zero (there are no
1216 * timers set) return false. Otherwise snapshot the task and thread group
1217 * timers and compare them with the corresponding expiration times. Return
1218 * true if a timer has expired, else return false.
f06febc9 1219 */
bb34d92f 1220static inline int fastpath_timer_check(struct task_struct *tsk)
f06febc9 1221{
ad133ba3 1222 struct signal_struct *sig;
6fac4829
FW
1223 cputime_t utime, stime;
1224
1225 task_cputime(tsk, &utime, &stime);
bb34d92f 1226
bb34d92f
FM
1227 if (!task_cputime_zero(&tsk->cputime_expires)) {
1228 struct task_cputime task_sample = {
6fac4829
FW
1229 .utime = utime,
1230 .stime = stime,
bb34d92f
FM
1231 .sum_exec_runtime = tsk->se.sum_exec_runtime
1232 };
1233
1234 if (task_cputime_expired(&task_sample, &tsk->cputime_expires))
1235 return 1;
1236 }
ad133ba3
ON
1237
1238 sig = tsk->signal;
29f87b79 1239 if (sig->cputimer.running) {
bb34d92f
FM
1240 struct task_cputime group_sample;
1241
ee30a7b2 1242 raw_spin_lock(&sig->cputimer.lock);
8d1f431c 1243 group_sample = sig->cputimer.cputime;
ee30a7b2 1244 raw_spin_unlock(&sig->cputimer.lock);
8d1f431c 1245
bb34d92f
FM
1246 if (task_cputime_expired(&group_sample, &sig->cputime_expires))
1247 return 1;
1248 }
37bebc70 1249
f55db609 1250 return 0;
f06febc9
FM
1251}
1252
1da177e4
LT
1253/*
1254 * This is called from the timer interrupt handler. The irq handler has
1255 * already updated our counts. We need to check if any timers fire now.
1256 * Interrupts are disabled.
1257 */
1258void run_posix_cpu_timers(struct task_struct *tsk)
1259{
1260 LIST_HEAD(firing);
1261 struct k_itimer *timer, *next;
0bdd2ed4 1262 unsigned long flags;
1da177e4
LT
1263
1264 BUG_ON(!irqs_disabled());
1265
1da177e4 1266 /*
f06febc9 1267 * The fast path checks that there are no expired thread or thread
bb34d92f 1268 * group timers. If that's so, just return.
1da177e4 1269 */
bb34d92f 1270 if (!fastpath_timer_check(tsk))
f06febc9 1271 return;
5ce73a4a 1272
0bdd2ed4
ON
1273 if (!lock_task_sighand(tsk, &flags))
1274 return;
bb34d92f
FM
1275 /*
1276 * Here we take off tsk->signal->cpu_timers[N] and
1277 * tsk->cpu_timers[N] all the timers that are firing, and
1278 * put them on the firing list.
1279 */
1280 check_thread_timers(tsk, &firing);
29f87b79
SG
1281 /*
1282 * If there are any active process wide timers (POSIX 1.b, itimers,
1283 * RLIMIT_CPU) cputimer must be running.
1284 */
1285 if (tsk->signal->cputimer.running)
1286 check_process_timers(tsk, &firing);
1da177e4 1287
bb34d92f
FM
1288 /*
1289 * We must release these locks before taking any timer's lock.
1290 * There is a potential race with timer deletion here, as the
1291 * siglock now protects our private firing list. We have set
1292 * the firing flag in each timer, so that a deletion attempt
1293 * that gets the timer lock before we do will give it up and
1294 * spin until we've taken care of that timer below.
1295 */
0bdd2ed4 1296 unlock_task_sighand(tsk, &flags);
1da177e4
LT
1297
1298 /*
1299 * Now that all the timers on our list have the firing flag,
25985edc 1300 * no one will touch their list entries but us. We'll take
1da177e4
LT
1301 * each timer's lock before clearing its firing flag, so no
1302 * timer call will interfere.
1303 */
1304 list_for_each_entry_safe(timer, next, &firing, it.cpu.entry) {
6e85c5ba
HS
1305 int cpu_firing;
1306
1da177e4
LT
1307 spin_lock(&timer->it_lock);
1308 list_del_init(&timer->it.cpu.entry);
6e85c5ba 1309 cpu_firing = timer->it.cpu.firing;
1da177e4
LT
1310 timer->it.cpu.firing = 0;
1311 /*
1312 * The firing flag is -1 if we collided with a reset
1313 * of the timer, which already reported this
1314 * almost-firing as an overrun. So don't generate an event.
1315 */
6e85c5ba 1316 if (likely(cpu_firing >= 0))
1da177e4 1317 cpu_timer_fire(timer);
1da177e4
LT
1318 spin_unlock(&timer->it_lock);
1319 }
a8572160
FW
1320
1321 /*
1322 * In case some timers were rescheduled after the queue got emptied,
1323 * wake up full dynticks CPUs.
1324 */
1325 if (tsk->signal->cputimer.running)
1326 posix_cpu_timer_kick_nohz();
1da177e4
LT
1327}
1328
1329/*
f55db609 1330 * Set one of the process-wide special case CPU timers or RLIMIT_CPU.
f06febc9 1331 * The tsk->sighand->siglock must be held by the caller.
1da177e4
LT
1332 */
1333void set_process_cpu_timer(struct task_struct *tsk, unsigned int clock_idx,
1334 cputime_t *newval, cputime_t *oldval)
1335{
55ccb616 1336 unsigned long long now;
1da177e4
LT
1337
1338 BUG_ON(clock_idx == CPUCLOCK_SCHED);
4cd4c1b4 1339 cpu_timer_sample_group(clock_idx, tsk, &now);
1da177e4
LT
1340
1341 if (oldval) {
f55db609
SG
1342 /*
1343 * We are setting itimer. The *oldval is absolute and we update
1344 * it to be relative, *newval argument is relative and we update
1345 * it to be absolute.
1346 */
64861634 1347 if (*oldval) {
55ccb616 1348 if (*oldval <= now) {
1da177e4 1349 /* Just about to fire. */
a42548a1 1350 *oldval = cputime_one_jiffy;
1da177e4 1351 } else {
55ccb616 1352 *oldval -= now;
1da177e4
LT
1353 }
1354 }
1355
64861634 1356 if (!*newval)
a8572160 1357 goto out;
55ccb616 1358 *newval += now;
1da177e4
LT
1359 }
1360
1361 /*
f55db609
SG
1362 * Update expiration cache if we are the earliest timer, or eventually
1363 * RLIMIT_CPU limit is earlier than prof_exp cpu timer expire.
1da177e4 1364 */
f55db609
SG
1365 switch (clock_idx) {
1366 case CPUCLOCK_PROF:
1367 if (expires_gt(tsk->signal->cputime_expires.prof_exp, *newval))
f06febc9 1368 tsk->signal->cputime_expires.prof_exp = *newval;
f55db609
SG
1369 break;
1370 case CPUCLOCK_VIRT:
1371 if (expires_gt(tsk->signal->cputime_expires.virt_exp, *newval))
f06febc9 1372 tsk->signal->cputime_expires.virt_exp = *newval;
f55db609 1373 break;
1da177e4 1374 }
a8572160
FW
1375out:
1376 posix_cpu_timer_kick_nohz();
1da177e4
LT
1377}
1378
e4b76555
TA
1379static int do_cpu_nanosleep(const clockid_t which_clock, int flags,
1380 struct timespec *rqtp, struct itimerspec *it)
1da177e4 1381{
1da177e4
LT
1382 struct k_itimer timer;
1383 int error;
1384
1da177e4
LT
1385 /*
1386 * Set up a temporary timer and then wait for it to go off.
1387 */
1388 memset(&timer, 0, sizeof timer);
1389 spin_lock_init(&timer.it_lock);
1390 timer.it_clock = which_clock;
1391 timer.it_overrun = -1;
1392 error = posix_cpu_timer_create(&timer);
1393 timer.it_process = current;
1394 if (!error) {
1da177e4 1395 static struct itimerspec zero_it;
e4b76555
TA
1396
1397 memset(it, 0, sizeof *it);
1398 it->it_value = *rqtp;
1da177e4
LT
1399
1400 spin_lock_irq(&timer.it_lock);
e4b76555 1401 error = posix_cpu_timer_set(&timer, flags, it, NULL);
1da177e4
LT
1402 if (error) {
1403 spin_unlock_irq(&timer.it_lock);
1404 return error;
1405 }
1406
1407 while (!signal_pending(current)) {
55ccb616 1408 if (timer.it.cpu.expires == 0) {
1da177e4 1409 /*
e6c42c29
SG
1410 * Our timer fired and was reset, below
1411 * deletion can not fail.
1da177e4 1412 */
e6c42c29 1413 posix_cpu_timer_del(&timer);
1da177e4
LT
1414 spin_unlock_irq(&timer.it_lock);
1415 return 0;
1416 }
1417
1418 /*
1419 * Block until cpu_timer_fire (or a signal) wakes us.
1420 */
1421 __set_current_state(TASK_INTERRUPTIBLE);
1422 spin_unlock_irq(&timer.it_lock);
1423 schedule();
1424 spin_lock_irq(&timer.it_lock);
1425 }
1426
1427 /*
1428 * We were interrupted by a signal.
1429 */
1430 sample_to_timespec(which_clock, timer.it.cpu.expires, rqtp);
e6c42c29
SG
1431 error = posix_cpu_timer_set(&timer, 0, &zero_it, it);
1432 if (!error) {
1433 /*
1434 * Timer is now unarmed, deletion can not fail.
1435 */
1436 posix_cpu_timer_del(&timer);
1437 }
1da177e4
LT
1438 spin_unlock_irq(&timer.it_lock);
1439
e6c42c29
SG
1440 while (error == TIMER_RETRY) {
1441 /*
1442 * We need to handle case when timer was or is in the
1443 * middle of firing. In other cases we already freed
1444 * resources.
1445 */
1446 spin_lock_irq(&timer.it_lock);
1447 error = posix_cpu_timer_del(&timer);
1448 spin_unlock_irq(&timer.it_lock);
1449 }
1450
e4b76555 1451 if ((it->it_value.tv_sec | it->it_value.tv_nsec) == 0) {
1da177e4
LT
1452 /*
1453 * It actually did fire already.
1454 */
1455 return 0;
1456 }
1457
e4b76555
TA
1458 error = -ERESTART_RESTARTBLOCK;
1459 }
1460
1461 return error;
1462}
1463
bc2c8ea4
TG
1464static long posix_cpu_nsleep_restart(struct restart_block *restart_block);
1465
1466static int posix_cpu_nsleep(const clockid_t which_clock, int flags,
1467 struct timespec *rqtp, struct timespec __user *rmtp)
e4b76555
TA
1468{
1469 struct restart_block *restart_block =
3751f9f2 1470 &current_thread_info()->restart_block;
e4b76555
TA
1471 struct itimerspec it;
1472 int error;
1473
1474 /*
1475 * Diagnose required errors first.
1476 */
1477 if (CPUCLOCK_PERTHREAD(which_clock) &&
1478 (CPUCLOCK_PID(which_clock) == 0 ||
1479 CPUCLOCK_PID(which_clock) == current->pid))
1480 return -EINVAL;
1481
1482 error = do_cpu_nanosleep(which_clock, flags, rqtp, &it);
1483
1484 if (error == -ERESTART_RESTARTBLOCK) {
1485
3751f9f2 1486 if (flags & TIMER_ABSTIME)
e4b76555 1487 return -ERESTARTNOHAND;
1da177e4 1488 /*
3751f9f2
TG
1489 * Report back to the user the time still remaining.
1490 */
1491 if (rmtp && copy_to_user(rmtp, &it.it_value, sizeof *rmtp))
1da177e4
LT
1492 return -EFAULT;
1493
1711ef38 1494 restart_block->fn = posix_cpu_nsleep_restart;
ab8177bc 1495 restart_block->nanosleep.clockid = which_clock;
3751f9f2
TG
1496 restart_block->nanosleep.rmtp = rmtp;
1497 restart_block->nanosleep.expires = timespec_to_ns(rqtp);
1da177e4 1498 }
1da177e4
LT
1499 return error;
1500}
1501
bc2c8ea4 1502static long posix_cpu_nsleep_restart(struct restart_block *restart_block)
1da177e4 1503{
ab8177bc 1504 clockid_t which_clock = restart_block->nanosleep.clockid;
97735f25 1505 struct timespec t;
e4b76555
TA
1506 struct itimerspec it;
1507 int error;
97735f25 1508
3751f9f2 1509 t = ns_to_timespec(restart_block->nanosleep.expires);
97735f25 1510
e4b76555
TA
1511 error = do_cpu_nanosleep(which_clock, TIMER_ABSTIME, &t, &it);
1512
1513 if (error == -ERESTART_RESTARTBLOCK) {
3751f9f2 1514 struct timespec __user *rmtp = restart_block->nanosleep.rmtp;
e4b76555 1515 /*
3751f9f2
TG
1516 * Report back to the user the time still remaining.
1517 */
1518 if (rmtp && copy_to_user(rmtp, &it.it_value, sizeof *rmtp))
e4b76555
TA
1519 return -EFAULT;
1520
3751f9f2 1521 restart_block->nanosleep.expires = timespec_to_ns(&t);
e4b76555
TA
1522 }
1523 return error;
1524
1da177e4
LT
1525}
1526
1da177e4
LT
1527#define PROCESS_CLOCK MAKE_PROCESS_CPUCLOCK(0, CPUCLOCK_SCHED)
1528#define THREAD_CLOCK MAKE_THREAD_CPUCLOCK(0, CPUCLOCK_SCHED)
1529
a924b04d
TG
1530static int process_cpu_clock_getres(const clockid_t which_clock,
1531 struct timespec *tp)
1da177e4
LT
1532{
1533 return posix_cpu_clock_getres(PROCESS_CLOCK, tp);
1534}
a924b04d
TG
1535static int process_cpu_clock_get(const clockid_t which_clock,
1536 struct timespec *tp)
1da177e4
LT
1537{
1538 return posix_cpu_clock_get(PROCESS_CLOCK, tp);
1539}
1540static int process_cpu_timer_create(struct k_itimer *timer)
1541{
1542 timer->it_clock = PROCESS_CLOCK;
1543 return posix_cpu_timer_create(timer);
1544}
a924b04d 1545static int process_cpu_nsleep(const clockid_t which_clock, int flags,
97735f25
TG
1546 struct timespec *rqtp,
1547 struct timespec __user *rmtp)
1da177e4 1548{
97735f25 1549 return posix_cpu_nsleep(PROCESS_CLOCK, flags, rqtp, rmtp);
1da177e4 1550}
1711ef38
TA
1551static long process_cpu_nsleep_restart(struct restart_block *restart_block)
1552{
1553 return -EINVAL;
1554}
a924b04d
TG
1555static int thread_cpu_clock_getres(const clockid_t which_clock,
1556 struct timespec *tp)
1da177e4
LT
1557{
1558 return posix_cpu_clock_getres(THREAD_CLOCK, tp);
1559}
a924b04d
TG
1560static int thread_cpu_clock_get(const clockid_t which_clock,
1561 struct timespec *tp)
1da177e4
LT
1562{
1563 return posix_cpu_clock_get(THREAD_CLOCK, tp);
1564}
1565static int thread_cpu_timer_create(struct k_itimer *timer)
1566{
1567 timer->it_clock = THREAD_CLOCK;
1568 return posix_cpu_timer_create(timer);
1569}
1da177e4 1570
1976945e
TG
1571struct k_clock clock_posix_cpu = {
1572 .clock_getres = posix_cpu_clock_getres,
1573 .clock_set = posix_cpu_clock_set,
1574 .clock_get = posix_cpu_clock_get,
1575 .timer_create = posix_cpu_timer_create,
1576 .nsleep = posix_cpu_nsleep,
1577 .nsleep_restart = posix_cpu_nsleep_restart,
1578 .timer_set = posix_cpu_timer_set,
1579 .timer_del = posix_cpu_timer_del,
1580 .timer_get = posix_cpu_timer_get,
1581};
1582
1da177e4
LT
1583static __init int init_posix_cpu_timers(void)
1584{
1585 struct k_clock process = {
2fd1f040
TG
1586 .clock_getres = process_cpu_clock_getres,
1587 .clock_get = process_cpu_clock_get,
2fd1f040
TG
1588 .timer_create = process_cpu_timer_create,
1589 .nsleep = process_cpu_nsleep,
1590 .nsleep_restart = process_cpu_nsleep_restart,
1da177e4
LT
1591 };
1592 struct k_clock thread = {
2fd1f040
TG
1593 .clock_getres = thread_cpu_clock_getres,
1594 .clock_get = thread_cpu_clock_get,
2fd1f040 1595 .timer_create = thread_cpu_timer_create,
1da177e4 1596 };
8356b5f9 1597 struct timespec ts;
1da177e4 1598
52708737
TG
1599 posix_timers_register_clock(CLOCK_PROCESS_CPUTIME_ID, &process);
1600 posix_timers_register_clock(CLOCK_THREAD_CPUTIME_ID, &thread);
1da177e4 1601
a42548a1 1602 cputime_to_timespec(cputime_one_jiffy, &ts);
8356b5f9
SG
1603 onecputick = ts.tv_nsec;
1604 WARN_ON(ts.tv_sec != 0);
1605
1da177e4
LT
1606 return 0;
1607}
1608__initcall(init_posix_cpu_timers);
This page took 0.69545 seconds and 5 git commands to generate.