1 // SPDX-License-Identifier: GPL-2.0
5 * Copyright (C) 2007 Davide Libenzi <davidel@xmailserver.org>
8 * Thanks to Thomas Gleixner for code reviews and useful comments.
12 #include <linux/alarmtimer.h>
13 #include <linux/file.h>
14 #include <linux/poll.h>
15 #include <linux/init.h>
17 #include <linux/sched.h>
18 #include <linux/kernel.h>
19 #include <linux/slab.h>
20 #include <linux/list.h>
21 #include <linux/spinlock.h>
22 #include <linux/time.h>
23 #include <linux/hrtimer.h>
24 #include <linux/anon_inodes.h>
25 #include <linux/timerfd.h>
26 #include <linux/syscalls.h>
27 #include <linux/compat.h>
28 #include <linux/rcupdate.h>
37 wait_queue_head_t wqh
;
40 short unsigned expired
;
41 short unsigned settime_flags
; /* to show in fdinfo */
43 struct list_head clist
;
44 spinlock_t cancel_lock
;
48 static LIST_HEAD(cancel_list
);
49 static DEFINE_SPINLOCK(cancel_lock
);
51 static inline bool isalarm(struct timerfd_ctx
*ctx
)
53 return ctx
->clockid
== CLOCK_REALTIME_ALARM
||
54 ctx
->clockid
== CLOCK_BOOTTIME_ALARM
;
58 * This gets called when the timer event triggers. We set the "expired"
59 * flag, but we do not re-arm the timer (in case it's necessary,
60 * tintv != 0) until the timer is accessed.
62 static void timerfd_triggered(struct timerfd_ctx
*ctx
)
66 spin_lock_irqsave(&ctx
->wqh
.lock
, flags
);
69 wake_up_locked(&ctx
->wqh
);
70 spin_unlock_irqrestore(&ctx
->wqh
.lock
, flags
);
73 static enum hrtimer_restart
timerfd_tmrproc(struct hrtimer
*htmr
)
75 struct timerfd_ctx
*ctx
= container_of(htmr
, struct timerfd_ctx
,
77 timerfd_triggered(ctx
);
78 return HRTIMER_NORESTART
;
81 static enum alarmtimer_restart
timerfd_alarmproc(struct alarm
*alarm
,
84 struct timerfd_ctx
*ctx
= container_of(alarm
, struct timerfd_ctx
,
86 timerfd_triggered(ctx
);
87 return ALARMTIMER_NORESTART
;
91 * Called when the clock was set to cancel the timers in the cancel
92 * list. This will wake up processes waiting on these timers. The
93 * wake-up requires ctx->ticks to be non zero, therefore we increment
94 * it before calling wake_up_locked().
96 void timerfd_clock_was_set(void)
98 ktime_t moffs
= ktime_mono_to_real(0);
99 struct timerfd_ctx
*ctx
;
103 list_for_each_entry_rcu(ctx
, &cancel_list
, clist
) {
104 if (!ctx
->might_cancel
)
106 spin_lock_irqsave(&ctx
->wqh
.lock
, flags
);
107 if (ctx
->moffs
!= moffs
) {
108 ctx
->moffs
= KTIME_MAX
;
110 wake_up_locked(&ctx
->wqh
);
112 spin_unlock_irqrestore(&ctx
->wqh
.lock
, flags
);
117 static void __timerfd_remove_cancel(struct timerfd_ctx
*ctx
)
119 if (ctx
->might_cancel
) {
120 ctx
->might_cancel
= false;
121 spin_lock(&cancel_lock
);
122 list_del_rcu(&ctx
->clist
);
123 spin_unlock(&cancel_lock
);
127 static void timerfd_remove_cancel(struct timerfd_ctx
*ctx
)
129 spin_lock(&ctx
->cancel_lock
);
130 __timerfd_remove_cancel(ctx
);
131 spin_unlock(&ctx
->cancel_lock
);
134 static bool timerfd_canceled(struct timerfd_ctx
*ctx
)
136 if (!ctx
->might_cancel
|| ctx
->moffs
!= KTIME_MAX
)
138 ctx
->moffs
= ktime_mono_to_real(0);
142 static void timerfd_setup_cancel(struct timerfd_ctx
*ctx
, int flags
)
144 spin_lock(&ctx
->cancel_lock
);
145 if ((ctx
->clockid
== CLOCK_REALTIME
||
146 ctx
->clockid
== CLOCK_REALTIME_ALARM
) &&
147 (flags
& TFD_TIMER_ABSTIME
) && (flags
& TFD_TIMER_CANCEL_ON_SET
)) {
148 if (!ctx
->might_cancel
) {
149 ctx
->might_cancel
= true;
150 spin_lock(&cancel_lock
);
151 list_add_rcu(&ctx
->clist
, &cancel_list
);
152 spin_unlock(&cancel_lock
);
155 __timerfd_remove_cancel(ctx
);
157 spin_unlock(&ctx
->cancel_lock
);
160 static ktime_t
timerfd_get_remaining(struct timerfd_ctx
*ctx
)
165 remaining
= alarm_expires_remaining(&ctx
->t
.alarm
);
167 remaining
= hrtimer_expires_remaining_adjusted(&ctx
->t
.tmr
);
169 return remaining
< 0 ? 0: remaining
;
172 static int timerfd_setup(struct timerfd_ctx
*ctx
, int flags
,
173 const struct itimerspec64
*ktmr
)
175 enum hrtimer_mode htmode
;
177 int clockid
= ctx
->clockid
;
179 htmode
= (flags
& TFD_TIMER_ABSTIME
) ?
180 HRTIMER_MODE_ABS
: HRTIMER_MODE_REL
;
182 texp
= timespec64_to_ktime(ktmr
->it_value
);
185 ctx
->tintv
= timespec64_to_ktime(ktmr
->it_interval
);
188 alarm_init(&ctx
->t
.alarm
,
189 ctx
->clockid
== CLOCK_REALTIME_ALARM
?
190 ALARM_REALTIME
: ALARM_BOOTTIME
,
193 hrtimer_init(&ctx
->t
.tmr
, clockid
, htmode
);
194 hrtimer_set_expires(&ctx
->t
.tmr
, texp
);
195 ctx
->t
.tmr
.function
= timerfd_tmrproc
;
200 if (flags
& TFD_TIMER_ABSTIME
)
201 alarm_start(&ctx
->t
.alarm
, texp
);
203 alarm_start_relative(&ctx
->t
.alarm
, texp
);
205 hrtimer_start(&ctx
->t
.tmr
, texp
, htmode
);
208 if (timerfd_canceled(ctx
))
212 ctx
->settime_flags
= flags
& TFD_SETTIME_FLAGS
;
216 static int timerfd_release(struct inode
*inode
, struct file
*file
)
218 struct timerfd_ctx
*ctx
= file
->private_data
;
220 timerfd_remove_cancel(ctx
);
223 alarm_cancel(&ctx
->t
.alarm
);
225 hrtimer_cancel(&ctx
->t
.tmr
);
230 static struct wait_queue_head
*timerfd_get_poll_head(struct file
*file
,
233 struct timerfd_ctx
*ctx
= file
->private_data
;
238 static __poll_t
timerfd_poll_mask(struct file
*file
, __poll_t eventmask
)
240 struct timerfd_ctx
*ctx
= file
->private_data
;
242 return ctx
->ticks
? EPOLLIN
: 0;
245 static ssize_t
timerfd_read(struct file
*file
, char __user
*buf
, size_t count
,
248 struct timerfd_ctx
*ctx
= file
->private_data
;
252 if (count
< sizeof(ticks
))
254 spin_lock_irq(&ctx
->wqh
.lock
);
255 if (file
->f_flags
& O_NONBLOCK
)
258 res
= wait_event_interruptible_locked_irq(ctx
->wqh
, ctx
->ticks
);
261 * If clock has changed, we do not care about the
262 * ticks and we do not rearm the timer. Userspace must
265 if (timerfd_canceled(ctx
)) {
274 if (ctx
->expired
&& ctx
->tintv
) {
276 * If tintv != 0, this is a periodic timer that
277 * needs to be re-armed. We avoid doing it in the timer
278 * callback to avoid DoS attacks specifying a very
279 * short timer period.
282 ticks
+= alarm_forward_now(
283 &ctx
->t
.alarm
, ctx
->tintv
) - 1;
284 alarm_restart(&ctx
->t
.alarm
);
286 ticks
+= hrtimer_forward_now(&ctx
->t
.tmr
,
288 hrtimer_restart(&ctx
->t
.tmr
);
294 spin_unlock_irq(&ctx
->wqh
.lock
);
296 res
= put_user(ticks
, (u64 __user
*) buf
) ? -EFAULT
: sizeof(ticks
);
300 #ifdef CONFIG_PROC_FS
301 static void timerfd_show(struct seq_file
*m
, struct file
*file
)
303 struct timerfd_ctx
*ctx
= file
->private_data
;
306 spin_lock_irq(&ctx
->wqh
.lock
);
307 t
.it_value
= ktime_to_timespec(timerfd_get_remaining(ctx
));
308 t
.it_interval
= ktime_to_timespec(ctx
->tintv
);
309 spin_unlock_irq(&ctx
->wqh
.lock
);
314 "settime flags: 0%o\n"
315 "it_value: (%llu, %llu)\n"
316 "it_interval: (%llu, %llu)\n",
318 (unsigned long long)ctx
->ticks
,
320 (unsigned long long)t
.it_value
.tv_sec
,
321 (unsigned long long)t
.it_value
.tv_nsec
,
322 (unsigned long long)t
.it_interval
.tv_sec
,
323 (unsigned long long)t
.it_interval
.tv_nsec
);
326 #define timerfd_show NULL
329 #ifdef CONFIG_CHECKPOINT_RESTORE
330 static long timerfd_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
332 struct timerfd_ctx
*ctx
= file
->private_data
;
336 case TFD_IOC_SET_TICKS
: {
339 if (copy_from_user(&ticks
, (u64 __user
*)arg
, sizeof(ticks
)))
344 spin_lock_irq(&ctx
->wqh
.lock
);
345 if (!timerfd_canceled(ctx
)) {
347 wake_up_locked(&ctx
->wqh
);
350 spin_unlock_irq(&ctx
->wqh
.lock
);
361 #define timerfd_ioctl NULL
364 static const struct file_operations timerfd_fops
= {
365 .release
= timerfd_release
,
366 .get_poll_head
= timerfd_get_poll_head
,
367 .poll_mask
= timerfd_poll_mask
,
368 .read
= timerfd_read
,
369 .llseek
= noop_llseek
,
370 .show_fdinfo
= timerfd_show
,
371 .unlocked_ioctl
= timerfd_ioctl
,
374 static int timerfd_fget(int fd
, struct fd
*p
)
376 struct fd f
= fdget(fd
);
379 if (f
.file
->f_op
!= &timerfd_fops
) {
387 SYSCALL_DEFINE2(timerfd_create
, int, clockid
, int, flags
)
390 struct timerfd_ctx
*ctx
;
392 /* Check the TFD_* constants for consistency. */
393 BUILD_BUG_ON(TFD_CLOEXEC
!= O_CLOEXEC
);
394 BUILD_BUG_ON(TFD_NONBLOCK
!= O_NONBLOCK
);
396 if ((flags
& ~TFD_CREATE_FLAGS
) ||
397 (clockid
!= CLOCK_MONOTONIC
&&
398 clockid
!= CLOCK_REALTIME
&&
399 clockid
!= CLOCK_REALTIME_ALARM
&&
400 clockid
!= CLOCK_BOOTTIME
&&
401 clockid
!= CLOCK_BOOTTIME_ALARM
))
404 if ((clockid
== CLOCK_REALTIME_ALARM
||
405 clockid
== CLOCK_BOOTTIME_ALARM
) &&
406 !capable(CAP_WAKE_ALARM
))
409 ctx
= kzalloc(sizeof(*ctx
), GFP_KERNEL
);
413 init_waitqueue_head(&ctx
->wqh
);
414 spin_lock_init(&ctx
->cancel_lock
);
415 ctx
->clockid
= clockid
;
418 alarm_init(&ctx
->t
.alarm
,
419 ctx
->clockid
== CLOCK_REALTIME_ALARM
?
420 ALARM_REALTIME
: ALARM_BOOTTIME
,
423 hrtimer_init(&ctx
->t
.tmr
, clockid
, HRTIMER_MODE_ABS
);
425 ctx
->moffs
= ktime_mono_to_real(0);
427 ufd
= anon_inode_getfd("[timerfd]", &timerfd_fops
, ctx
,
428 O_RDWR
| (flags
& TFD_SHARED_FCNTL_FLAGS
));
435 static int do_timerfd_settime(int ufd
, int flags
,
436 const struct itimerspec64
*new,
437 struct itimerspec64
*old
)
440 struct timerfd_ctx
*ctx
;
443 if ((flags
& ~TFD_SETTIME_FLAGS
) ||
444 !itimerspec64_valid(new))
447 ret
= timerfd_fget(ufd
, &f
);
450 ctx
= f
.file
->private_data
;
452 if (isalarm(ctx
) && !capable(CAP_WAKE_ALARM
)) {
457 timerfd_setup_cancel(ctx
, flags
);
460 * We need to stop the existing timer before reprogramming
461 * it to the new values.
464 spin_lock_irq(&ctx
->wqh
.lock
);
467 if (alarm_try_to_cancel(&ctx
->t
.alarm
) >= 0)
470 if (hrtimer_try_to_cancel(&ctx
->t
.tmr
) >= 0)
473 spin_unlock_irq(&ctx
->wqh
.lock
);
478 * If the timer is expired and it's periodic, we need to advance it
479 * because the caller may want to know the previous expiration time.
480 * We do not update "ticks" and "expired" since the timer will be
481 * re-programmed again in the following timerfd_setup() call.
483 if (ctx
->expired
&& ctx
->tintv
) {
485 alarm_forward_now(&ctx
->t
.alarm
, ctx
->tintv
);
487 hrtimer_forward_now(&ctx
->t
.tmr
, ctx
->tintv
);
490 old
->it_value
= ktime_to_timespec64(timerfd_get_remaining(ctx
));
491 old
->it_interval
= ktime_to_timespec64(ctx
->tintv
);
494 * Re-program the timer to the new value ...
496 ret
= timerfd_setup(ctx
, flags
, new);
498 spin_unlock_irq(&ctx
->wqh
.lock
);
503 static int do_timerfd_gettime(int ufd
, struct itimerspec64
*t
)
506 struct timerfd_ctx
*ctx
;
507 int ret
= timerfd_fget(ufd
, &f
);
510 ctx
= f
.file
->private_data
;
512 spin_lock_irq(&ctx
->wqh
.lock
);
513 if (ctx
->expired
&& ctx
->tintv
) {
519 &ctx
->t
.alarm
, ctx
->tintv
) - 1;
520 alarm_restart(&ctx
->t
.alarm
);
523 hrtimer_forward_now(&ctx
->t
.tmr
, ctx
->tintv
)
525 hrtimer_restart(&ctx
->t
.tmr
);
528 t
->it_value
= ktime_to_timespec64(timerfd_get_remaining(ctx
));
529 t
->it_interval
= ktime_to_timespec64(ctx
->tintv
);
530 spin_unlock_irq(&ctx
->wqh
.lock
);
535 SYSCALL_DEFINE4(timerfd_settime
, int, ufd
, int, flags
,
536 const struct itimerspec __user
*, utmr
,
537 struct itimerspec __user
*, otmr
)
539 struct itimerspec64
new, old
;
542 if (get_itimerspec64(&new, utmr
))
544 ret
= do_timerfd_settime(ufd
, flags
, &new, &old
);
547 if (otmr
&& put_itimerspec64(&old
, otmr
))
553 SYSCALL_DEFINE2(timerfd_gettime
, int, ufd
, struct itimerspec __user
*, otmr
)
555 struct itimerspec64 kotmr
;
556 int ret
= do_timerfd_gettime(ufd
, &kotmr
);
559 return put_itimerspec64(&kotmr
, otmr
) ? -EFAULT
: 0;
563 COMPAT_SYSCALL_DEFINE4(timerfd_settime
, int, ufd
, int, flags
,
564 const struct compat_itimerspec __user
*, utmr
,
565 struct compat_itimerspec __user
*, otmr
)
567 struct itimerspec64
new, old
;
570 if (get_compat_itimerspec64(&new, utmr
))
572 ret
= do_timerfd_settime(ufd
, flags
, &new, &old
);
575 if (otmr
&& put_compat_itimerspec64(&old
, otmr
))
580 COMPAT_SYSCALL_DEFINE2(timerfd_gettime
, int, ufd
,
581 struct compat_itimerspec __user
*, otmr
)
583 struct itimerspec64 kotmr
;
584 int ret
= do_timerfd_gettime(ufd
, &kotmr
);
587 return put_compat_itimerspec64(&kotmr
, otmr
) ? -EFAULT
: 0;