blob: 7ec77f8cc443f3c4c558b032ea4c0d6dc09ecb0a [file] [log] [blame]
Davide Libenzib215e282007-05-10 22:23:16 -07001/*
2 * fs/timerfd.c
3 *
4 * Copyright (C) 2007 Davide Libenzi <davidel@xmailserver.org>
5 *
6 *
7 * Thanks to Thomas Gleixner for code reviews and useful comments.
8 *
9 */
10
Todd Poynor11ffa9d2013-05-15 14:38:12 -070011#include <linux/alarmtimer.h>
Davide Libenzib215e282007-05-10 22:23:16 -070012#include <linux/file.h>
13#include <linux/poll.h>
14#include <linux/init.h>
15#include <linux/fs.h>
16#include <linux/sched.h>
17#include <linux/kernel.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/slab.h>
Davide Libenzib215e282007-05-10 22:23:16 -070019#include <linux/list.h>
20#include <linux/spinlock.h>
21#include <linux/time.h>
22#include <linux/hrtimer.h>
23#include <linux/anon_inodes.h>
24#include <linux/timerfd.h>
Adrian Bunk45cc2b92008-04-29 00:58:59 -070025#include <linux/syscalls.h>
Al Viro9d94b9e2012-12-27 16:52:33 -050026#include <linux/compat.h>
Thomas Gleixner9ec26902011-05-20 16:18:50 +020027#include <linux/rcupdate.h>
Davide Libenzib215e282007-05-10 22:23:16 -070028
29struct timerfd_ctx {
Todd Poynor11ffa9d2013-05-15 14:38:12 -070030 union {
31 struct hrtimer tmr;
32 struct alarm alarm;
33 } t;
Davide Libenzib215e282007-05-10 22:23:16 -070034 ktime_t tintv;
Thomas Gleixner99ee5312011-04-27 14:16:42 +020035 ktime_t moffs;
Davide Libenzib215e282007-05-10 22:23:16 -070036 wait_queue_head_t wqh;
Davide Libenzi4d672e72008-02-04 22:27:26 -080037 u64 ticks;
Davide Libenzi4d672e72008-02-04 22:27:26 -080038 int clockid;
Cyrill Gorcunovaf9c4952014-07-16 01:54:52 +040039 short unsigned expired;
40 short unsigned settime_flags; /* to show in fdinfo */
Thomas Gleixner9ec26902011-05-20 16:18:50 +020041 struct rcu_head rcu;
42 struct list_head clist;
Thomas Gleixner00cca972017-01-31 15:24:03 +010043 spinlock_t cancel_lock;
Thomas Gleixner99ee5312011-04-27 14:16:42 +020044 bool might_cancel;
Davide Libenzib215e282007-05-10 22:23:16 -070045};
46
Thomas Gleixner9ec26902011-05-20 16:18:50 +020047static LIST_HEAD(cancel_list);
48static DEFINE_SPINLOCK(cancel_lock);
49
Todd Poynor11ffa9d2013-05-15 14:38:12 -070050static inline bool isalarm(struct timerfd_ctx *ctx)
51{
52 return ctx->clockid == CLOCK_REALTIME_ALARM ||
Mao Jinlong2e1a4ae2016-02-17 15:21:49 +080053 ctx->clockid == CLOCK_BOOTTIME_ALARM ||
54 ctx->clockid == CLOCK_POWEROFF_ALARM;
Todd Poynor11ffa9d2013-05-15 14:38:12 -070055}
56
Davide Libenzib215e282007-05-10 22:23:16 -070057/*
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,
Davide Libenzi4d672e72008-02-04 22:27:26 -080060 * tintv.tv64 != 0) until the timer is accessed.
Davide Libenzib215e282007-05-10 22:23:16 -070061 */
Todd Poynor11ffa9d2013-05-15 14:38:12 -070062static void timerfd_triggered(struct timerfd_ctx *ctx)
Davide Libenzib215e282007-05-10 22:23:16 -070063{
Davide Libenzib215e282007-05-10 22:23:16 -070064 unsigned long flags;
65
Davide Libenzi18963c02007-05-18 12:02:33 -070066 spin_lock_irqsave(&ctx->wqh.lock, flags);
Davide Libenzib215e282007-05-10 22:23:16 -070067 ctx->expired = 1;
Davide Libenzi4d672e72008-02-04 22:27:26 -080068 ctx->ticks++;
Davide Libenzib215e282007-05-10 22:23:16 -070069 wake_up_locked(&ctx->wqh);
Davide Libenzi18963c02007-05-18 12:02:33 -070070 spin_unlock_irqrestore(&ctx->wqh.lock, flags);
Todd Poynor11ffa9d2013-05-15 14:38:12 -070071}
Davide Libenzib215e282007-05-10 22:23:16 -070072
Todd Poynor11ffa9d2013-05-15 14:38:12 -070073static enum hrtimer_restart timerfd_tmrproc(struct hrtimer *htmr)
74{
75 struct timerfd_ctx *ctx = container_of(htmr, struct timerfd_ctx,
76 t.tmr);
77 timerfd_triggered(ctx);
Davide Libenzib215e282007-05-10 22:23:16 -070078 return HRTIMER_NORESTART;
79}
80
Todd Poynor11ffa9d2013-05-15 14:38:12 -070081static enum alarmtimer_restart timerfd_alarmproc(struct alarm *alarm,
82 ktime_t now)
83{
84 struct timerfd_ctx *ctx = container_of(alarm, struct timerfd_ctx,
85 t.alarm);
86 timerfd_triggered(ctx);
87 return ALARMTIMER_NORESTART;
88}
89
Thomas Gleixner9ec26902011-05-20 16:18:50 +020090/*
91 * Called when the clock was set to cancel the timers in the cancel
Max Asbock1123d9392011-06-13 10:18:32 -070092 * 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().
Thomas Gleixner9ec26902011-05-20 16:18:50 +020095 */
96void timerfd_clock_was_set(void)
97{
Thomas Gleixner53cc7ba2014-07-16 21:04:23 +000098 ktime_t moffs = ktime_mono_to_real((ktime_t){ .tv64 = 0 });
Thomas Gleixner9ec26902011-05-20 16:18:50 +020099 struct timerfd_ctx *ctx;
100 unsigned long flags;
101
102 rcu_read_lock();
103 list_for_each_entry_rcu(ctx, &cancel_list, clist) {
104 if (!ctx->might_cancel)
105 continue;
106 spin_lock_irqsave(&ctx->wqh.lock, flags);
107 if (ctx->moffs.tv64 != moffs.tv64) {
108 ctx->moffs.tv64 = KTIME_MAX;
Max Asbock1123d9392011-06-13 10:18:32 -0700109 ctx->ticks++;
Thomas Gleixner9ec26902011-05-20 16:18:50 +0200110 wake_up_locked(&ctx->wqh);
111 }
112 spin_unlock_irqrestore(&ctx->wqh.lock, flags);
113 }
114 rcu_read_unlock();
115}
116
Thomas Gleixner00cca972017-01-31 15:24:03 +0100117static void __timerfd_remove_cancel(struct timerfd_ctx *ctx)
Thomas Gleixner9ec26902011-05-20 16:18:50 +0200118{
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);
124 }
125}
126
Thomas Gleixner00cca972017-01-31 15:24:03 +0100127static void timerfd_remove_cancel(struct timerfd_ctx *ctx)
128{
129 spin_lock(&ctx->cancel_lock);
130 __timerfd_remove_cancel(ctx);
131 spin_unlock(&ctx->cancel_lock);
132}
133
Thomas Gleixner9ec26902011-05-20 16:18:50 +0200134static bool timerfd_canceled(struct timerfd_ctx *ctx)
135{
136 if (!ctx->might_cancel || ctx->moffs.tv64 != KTIME_MAX)
137 return false;
Thomas Gleixner53cc7ba2014-07-16 21:04:23 +0000138 ctx->moffs = ktime_mono_to_real((ktime_t){ .tv64 = 0 });
Thomas Gleixner9ec26902011-05-20 16:18:50 +0200139 return true;
140}
141
142static void timerfd_setup_cancel(struct timerfd_ctx *ctx, int flags)
143{
Thomas Gleixner00cca972017-01-31 15:24:03 +0100144 spin_lock(&ctx->cancel_lock);
Todd Poynor11ffa9d2013-05-15 14:38:12 -0700145 if ((ctx->clockid == CLOCK_REALTIME ||
Mao Jinlong2e1a4ae2016-02-17 15:21:49 +0800146 ctx->clockid == CLOCK_REALTIME_ALARM ||
147 ctx->clockid == CLOCK_POWEROFF_ALARM) &&
Todd Poynor11ffa9d2013-05-15 14:38:12 -0700148 (flags & TFD_TIMER_ABSTIME) && (flags & TFD_TIMER_CANCEL_ON_SET)) {
Thomas Gleixner9ec26902011-05-20 16:18:50 +0200149 if (!ctx->might_cancel) {
150 ctx->might_cancel = true;
151 spin_lock(&cancel_lock);
152 list_add_rcu(&ctx->clist, &cancel_list);
153 spin_unlock(&cancel_lock);
154 }
Thomas Gleixner00cca972017-01-31 15:24:03 +0100155 } else {
156 __timerfd_remove_cancel(ctx);
Thomas Gleixner9ec26902011-05-20 16:18:50 +0200157 }
Thomas Gleixner00cca972017-01-31 15:24:03 +0100158 spin_unlock(&ctx->cancel_lock);
Thomas Gleixner9ec26902011-05-20 16:18:50 +0200159}
160
Davide Libenzi4d672e72008-02-04 22:27:26 -0800161static ktime_t timerfd_get_remaining(struct timerfd_ctx *ctx)
162{
Arjan van de Ven76369472008-09-01 15:00:14 -0700163 ktime_t remaining;
Davide Libenzi4d672e72008-02-04 22:27:26 -0800164
Todd Poynor11ffa9d2013-05-15 14:38:12 -0700165 if (isalarm(ctx))
166 remaining = alarm_expires_remaining(&ctx->t.alarm);
167 else
Thomas Gleixnerb62526e2016-01-14 16:54:46 +0000168 remaining = hrtimer_expires_remaining_adjusted(&ctx->t.tmr);
Todd Poynor11ffa9d2013-05-15 14:38:12 -0700169
Davide Libenzi4d672e72008-02-04 22:27:26 -0800170 return remaining.tv64 < 0 ? ktime_set(0, 0): remaining;
171}
172
Thomas Gleixner99ee5312011-04-27 14:16:42 +0200173static int timerfd_setup(struct timerfd_ctx *ctx, int flags,
174 const struct itimerspec *ktmr)
Davide Libenzib215e282007-05-10 22:23:16 -0700175{
176 enum hrtimer_mode htmode;
177 ktime_t texp;
Thomas Gleixner99ee5312011-04-27 14:16:42 +0200178 int clockid = ctx->clockid;
Mao Jinlong2e1a4ae2016-02-17 15:21:49 +0800179 enum alarmtimer_type type;
Davide Libenzib215e282007-05-10 22:23:16 -0700180
181 htmode = (flags & TFD_TIMER_ABSTIME) ?
182 HRTIMER_MODE_ABS: HRTIMER_MODE_REL;
183
184 texp = timespec_to_ktime(ktmr->it_value);
185 ctx->expired = 0;
Davide Libenzi4d672e72008-02-04 22:27:26 -0800186 ctx->ticks = 0;
Davide Libenzib215e282007-05-10 22:23:16 -0700187 ctx->tintv = timespec_to_ktime(ktmr->it_interval);
Todd Poynor11ffa9d2013-05-15 14:38:12 -0700188
189 if (isalarm(ctx)) {
Mao Jinlong2e1a4ae2016-02-17 15:21:49 +0800190 type = clock2alarm(ctx->clockid);
191 alarm_init(&ctx->t.alarm, type, timerfd_alarmproc);
Todd Poynor11ffa9d2013-05-15 14:38:12 -0700192 } else {
193 hrtimer_init(&ctx->t.tmr, clockid, htmode);
194 hrtimer_set_expires(&ctx->t.tmr, texp);
195 ctx->t.tmr.function = timerfd_tmrproc;
196 }
197
Thomas Gleixner99ee5312011-04-27 14:16:42 +0200198 if (texp.tv64 != 0) {
Todd Poynor11ffa9d2013-05-15 14:38:12 -0700199 if (isalarm(ctx)) {
200 if (flags & TFD_TIMER_ABSTIME)
201 alarm_start(&ctx->t.alarm, texp);
202 else
203 alarm_start_relative(&ctx->t.alarm, texp);
204 } else {
205 hrtimer_start(&ctx->t.tmr, texp, htmode);
206 }
207
Thomas Gleixner99ee5312011-04-27 14:16:42 +0200208 if (timerfd_canceled(ctx))
209 return -ECANCELED;
210 }
Cyrill Gorcunovaf9c4952014-07-16 01:54:52 +0400211
212 ctx->settime_flags = flags & TFD_SETTIME_FLAGS;
Thomas Gleixner99ee5312011-04-27 14:16:42 +0200213 return 0;
Davide Libenzib215e282007-05-10 22:23:16 -0700214}
215
216static int timerfd_release(struct inode *inode, struct file *file)
217{
218 struct timerfd_ctx *ctx = file->private_data;
219
Thomas Gleixner9ec26902011-05-20 16:18:50 +0200220 timerfd_remove_cancel(ctx);
Todd Poynor11ffa9d2013-05-15 14:38:12 -0700221
222 if (isalarm(ctx))
223 alarm_cancel(&ctx->t.alarm);
224 else
225 hrtimer_cancel(&ctx->t.tmr);
Thomas Gleixner9ec26902011-05-20 16:18:50 +0200226 kfree_rcu(ctx, rcu);
Davide Libenzib215e282007-05-10 22:23:16 -0700227 return 0;
228}
229
230static unsigned int timerfd_poll(struct file *file, poll_table *wait)
231{
232 struct timerfd_ctx *ctx = file->private_data;
233 unsigned int events = 0;
234 unsigned long flags;
235
236 poll_wait(file, &ctx->wqh, wait);
237
Davide Libenzi18963c02007-05-18 12:02:33 -0700238 spin_lock_irqsave(&ctx->wqh.lock, flags);
Davide Libenzi4d672e72008-02-04 22:27:26 -0800239 if (ctx->ticks)
Davide Libenzib215e282007-05-10 22:23:16 -0700240 events |= POLLIN;
Davide Libenzi18963c02007-05-18 12:02:33 -0700241 spin_unlock_irqrestore(&ctx->wqh.lock, flags);
Davide Libenzib215e282007-05-10 22:23:16 -0700242
243 return events;
244}
245
246static ssize_t timerfd_read(struct file *file, char __user *buf, size_t count,
247 loff_t *ppos)
248{
249 struct timerfd_ctx *ctx = file->private_data;
250 ssize_t res;
Davide Libenzi09828402007-07-26 10:41:07 -0700251 u64 ticks = 0;
Davide Libenzib215e282007-05-10 22:23:16 -0700252
253 if (count < sizeof(ticks))
254 return -EINVAL;
Davide Libenzi18963c02007-05-18 12:02:33 -0700255 spin_lock_irq(&ctx->wqh.lock);
Michal Nazarewicz8120a8a2010-05-05 12:53:12 +0200256 if (file->f_flags & O_NONBLOCK)
257 res = -EAGAIN;
258 else
259 res = wait_event_interruptible_locked_irq(ctx->wqh, ctx->ticks);
Thomas Gleixner99ee5312011-04-27 14:16:42 +0200260
Thomas Gleixner9ec26902011-05-20 16:18:50 +0200261 /*
262 * If clock has changed, we do not care about the
263 * ticks and we do not rearm the timer. Userspace must
264 * reevaluate anyway.
265 */
266 if (timerfd_canceled(ctx)) {
267 ctx->ticks = 0;
268 ctx->expired = 0;
269 res = -ECANCELED;
270 }
271
Davide Libenzi4d672e72008-02-04 22:27:26 -0800272 if (ctx->ticks) {
273 ticks = ctx->ticks;
Thomas Gleixner99ee5312011-04-27 14:16:42 +0200274
Davide Libenzi4d672e72008-02-04 22:27:26 -0800275 if (ctx->expired && ctx->tintv.tv64) {
Davide Libenzib215e282007-05-10 22:23:16 -0700276 /*
277 * If tintv.tv64 != 0, this is a periodic timer that
278 * needs to be re-armed. We avoid doing it in the timer
279 * callback to avoid DoS attacks specifying a very
280 * short timer period.
281 */
Todd Poynor11ffa9d2013-05-15 14:38:12 -0700282 if (isalarm(ctx)) {
283 ticks += alarm_forward_now(
284 &ctx->t.alarm, ctx->tintv) - 1;
285 alarm_restart(&ctx->t.alarm);
286 } else {
287 ticks += hrtimer_forward_now(&ctx->t.tmr,
288 ctx->tintv) - 1;
289 hrtimer_restart(&ctx->t.tmr);
290 }
Davide Libenzi4d672e72008-02-04 22:27:26 -0800291 }
292 ctx->expired = 0;
293 ctx->ticks = 0;
Davide Libenzib215e282007-05-10 22:23:16 -0700294 }
Davide Libenzi18963c02007-05-18 12:02:33 -0700295 spin_unlock_irq(&ctx->wqh.lock);
Davide Libenzib215e282007-05-10 22:23:16 -0700296 if (ticks)
Davide Libenzi09828402007-07-26 10:41:07 -0700297 res = put_user(ticks, (u64 __user *) buf) ? -EFAULT: sizeof(ticks);
Davide Libenzib215e282007-05-10 22:23:16 -0700298 return res;
299}
300
Cyrill Gorcunovaf9c4952014-07-16 01:54:52 +0400301#ifdef CONFIG_PROC_FS
Joe Perchesa3816ab2014-09-29 16:08:25 -0700302static void timerfd_show(struct seq_file *m, struct file *file)
Cyrill Gorcunovaf9c4952014-07-16 01:54:52 +0400303{
304 struct timerfd_ctx *ctx = file->private_data;
305 struct itimerspec t;
306
307 spin_lock_irq(&ctx->wqh.lock);
308 t.it_value = ktime_to_timespec(timerfd_get_remaining(ctx));
309 t.it_interval = ktime_to_timespec(ctx->tintv);
310 spin_unlock_irq(&ctx->wqh.lock);
311
Joe Perchesa3816ab2014-09-29 16:08:25 -0700312 seq_printf(m,
313 "clockid: %d\n"
314 "ticks: %llu\n"
315 "settime flags: 0%o\n"
316 "it_value: (%llu, %llu)\n"
317 "it_interval: (%llu, %llu)\n",
318 ctx->clockid,
319 (unsigned long long)ctx->ticks,
320 ctx->settime_flags,
321 (unsigned long long)t.it_value.tv_sec,
322 (unsigned long long)t.it_value.tv_nsec,
323 (unsigned long long)t.it_interval.tv_sec,
324 (unsigned long long)t.it_interval.tv_nsec);
Cyrill Gorcunovaf9c4952014-07-16 01:54:52 +0400325}
326#else
327#define timerfd_show NULL
328#endif
329
Cyrill Gorcunov5442e9f2014-07-16 01:54:54 +0400330#ifdef CONFIG_CHECKPOINT_RESTORE
331static long timerfd_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
332{
333 struct timerfd_ctx *ctx = file->private_data;
334 int ret = 0;
335
336 switch (cmd) {
337 case TFD_IOC_SET_TICKS: {
338 u64 ticks;
339
340 if (copy_from_user(&ticks, (u64 __user *)arg, sizeof(ticks)))
341 return -EFAULT;
342 if (!ticks)
343 return -EINVAL;
344
345 spin_lock_irq(&ctx->wqh.lock);
346 if (!timerfd_canceled(ctx)) {
347 ctx->ticks = ticks;
Dan Carpenter88299c92014-08-01 11:28:48 +0300348 wake_up_locked(&ctx->wqh);
Cyrill Gorcunov5442e9f2014-07-16 01:54:54 +0400349 } else
350 ret = -ECANCELED;
351 spin_unlock_irq(&ctx->wqh.lock);
352 break;
353 }
354 default:
355 ret = -ENOTTY;
356 break;
357 }
358
359 return ret;
360}
361#else
362#define timerfd_ioctl NULL
363#endif
364
Davide Libenzib215e282007-05-10 22:23:16 -0700365static const struct file_operations timerfd_fops = {
366 .release = timerfd_release,
367 .poll = timerfd_poll,
368 .read = timerfd_read,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200369 .llseek = noop_llseek,
Cyrill Gorcunovaf9c4952014-07-16 01:54:52 +0400370 .show_fdinfo = timerfd_show,
Cyrill Gorcunov5442e9f2014-07-16 01:54:54 +0400371 .unlocked_ioctl = timerfd_ioctl,
Davide Libenzib215e282007-05-10 22:23:16 -0700372};
373
Al Viro2903ff02012-08-28 12:52:22 -0400374static int timerfd_fget(int fd, struct fd *p)
Davide Libenzib215e282007-05-10 22:23:16 -0700375{
Al Viro2903ff02012-08-28 12:52:22 -0400376 struct fd f = fdget(fd);
377 if (!f.file)
378 return -EBADF;
379 if (f.file->f_op != &timerfd_fops) {
380 fdput(f);
381 return -EINVAL;
Davide Libenzi4d672e72008-02-04 22:27:26 -0800382 }
Al Viro2903ff02012-08-28 12:52:22 -0400383 *p = f;
384 return 0;
Davide Libenzi4d672e72008-02-04 22:27:26 -0800385}
386
Heiko Carstens836f92a2009-01-14 14:14:33 +0100387SYSCALL_DEFINE2(timerfd_create, int, clockid, int, flags)
Davide Libenzi4d672e72008-02-04 22:27:26 -0800388{
Al Viro2030a422008-02-23 06:46:49 -0500389 int ufd;
Davide Libenzib215e282007-05-10 22:23:16 -0700390 struct timerfd_ctx *ctx;
Mao Jinlong2e1a4ae2016-02-17 15:21:49 +0800391 enum alarmtimer_type type;
Davide Libenzi4d672e72008-02-04 22:27:26 -0800392
Ulrich Dreppere38b36f2008-07-23 21:29:42 -0700393 /* Check the TFD_* constants for consistency. */
394 BUILD_BUG_ON(TFD_CLOEXEC != O_CLOEXEC);
395 BUILD_BUG_ON(TFD_NONBLOCK != O_NONBLOCK);
396
Davide Libenzi610d18f2009-02-18 14:48:18 -0800397 if ((flags & ~TFD_CREATE_FLAGS) ||
398 (clockid != CLOCK_MONOTONIC &&
Todd Poynor11ffa9d2013-05-15 14:38:12 -0700399 clockid != CLOCK_REALTIME &&
400 clockid != CLOCK_REALTIME_ALARM &&
Greg Hackmann4a2378a2014-01-08 10:57:03 -0800401 clockid != CLOCK_BOOTTIME &&
Mao Jinlong2e1a4ae2016-02-17 15:21:49 +0800402 clockid != CLOCK_BOOTTIME_ALARM &&
403 clockid != CLOCK_POWEROFF_ALARM))
Davide Libenzi4d672e72008-02-04 22:27:26 -0800404 return -EINVAL;
405
Eric Caruso2895a5e2016-06-08 16:08:59 -0700406 if (!capable(CAP_WAKE_ALARM) &&
407 (clockid == CLOCK_REALTIME_ALARM ||
408 clockid == CLOCK_BOOTTIME_ALARM))
409 return -EPERM;
410
Davide Libenzi4d672e72008-02-04 22:27:26 -0800411 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
412 if (!ctx)
413 return -ENOMEM;
414
415 init_waitqueue_head(&ctx->wqh);
Thomas Gleixner00cca972017-01-31 15:24:03 +0100416 spin_lock_init(&ctx->cancel_lock);
Davide Libenzi4d672e72008-02-04 22:27:26 -0800417 ctx->clockid = clockid;
Todd Poynor11ffa9d2013-05-15 14:38:12 -0700418
Mao Jinlong2e1a4ae2016-02-17 15:21:49 +0800419 if (isalarm(ctx)) {
420 type = clock2alarm(ctx->clockid);
421 alarm_init(&ctx->t.alarm, type, timerfd_alarmproc);
422 } else {
Todd Poynor11ffa9d2013-05-15 14:38:12 -0700423 hrtimer_init(&ctx->t.tmr, clockid, HRTIMER_MODE_ABS);
Mao Jinlong2e1a4ae2016-02-17 15:21:49 +0800424 }
Todd Poynor11ffa9d2013-05-15 14:38:12 -0700425
Thomas Gleixner53cc7ba2014-07-16 21:04:23 +0000426 ctx->moffs = ktime_mono_to_real((ktime_t){ .tv64 = 0 });
Davide Libenzi4d672e72008-02-04 22:27:26 -0800427
Ulrich Drepper11fcb6c2008-07-23 21:29:26 -0700428 ufd = anon_inode_getfd("[timerfd]", &timerfd_fops, ctx,
Roland Dreier628ff7c2009-12-18 09:41:24 -0800429 O_RDWR | (flags & TFD_SHARED_FCNTL_FLAGS));
Al Viro2030a422008-02-23 06:46:49 -0500430 if (ufd < 0)
Davide Libenzi4d672e72008-02-04 22:27:26 -0800431 kfree(ctx);
Davide Libenzi4d672e72008-02-04 22:27:26 -0800432
433 return ufd;
434}
435
Al Viro9d94b9e2012-12-27 16:52:33 -0500436static int do_timerfd_settime(int ufd, int flags,
437 const struct itimerspec *new,
438 struct itimerspec *old)
Davide Libenzi4d672e72008-02-04 22:27:26 -0800439{
Al Viro2903ff02012-08-28 12:52:22 -0400440 struct fd f;
Davide Libenzi4d672e72008-02-04 22:27:26 -0800441 struct timerfd_ctx *ctx;
Al Viro2903ff02012-08-28 12:52:22 -0400442 int ret;
Davide Libenzib215e282007-05-10 22:23:16 -0700443
Davide Libenzi610d18f2009-02-18 14:48:18 -0800444 if ((flags & ~TFD_SETTIME_FLAGS) ||
Al Viro9d94b9e2012-12-27 16:52:33 -0500445 !timespec_valid(&new->it_value) ||
446 !timespec_valid(&new->it_interval))
Davide Libenzib215e282007-05-10 22:23:16 -0700447 return -EINVAL;
448
Al Viro2903ff02012-08-28 12:52:22 -0400449 ret = timerfd_fget(ufd, &f);
450 if (ret)
451 return ret;
452 ctx = f.file->private_data;
Davide Libenzib215e282007-05-10 22:23:16 -0700453
Eric Caruso2895a5e2016-06-08 16:08:59 -0700454 if (!capable(CAP_WAKE_ALARM) && isalarm(ctx)) {
455 fdput(f);
456 return -EPERM;
457 }
458
Thomas Gleixner9ec26902011-05-20 16:18:50 +0200459 timerfd_setup_cancel(ctx, flags);
460
Davide Libenzi4d672e72008-02-04 22:27:26 -0800461 /*
462 * We need to stop the existing timer before reprogramming
463 * it to the new values.
464 */
465 for (;;) {
466 spin_lock_irq(&ctx->wqh.lock);
Todd Poynor11ffa9d2013-05-15 14:38:12 -0700467
468 if (isalarm(ctx)) {
469 if (alarm_try_to_cancel(&ctx->t.alarm) >= 0)
470 break;
471 } else {
472 if (hrtimer_try_to_cancel(&ctx->t.tmr) >= 0)
473 break;
474 }
Davide Libenzi18963c02007-05-18 12:02:33 -0700475 spin_unlock_irq(&ctx->wqh.lock);
Davide Libenzi4d672e72008-02-04 22:27:26 -0800476 cpu_relax();
Davide Libenzib215e282007-05-10 22:23:16 -0700477 }
478
Davide Libenzi4d672e72008-02-04 22:27:26 -0800479 /*
480 * If the timer is expired and it's periodic, we need to advance it
481 * because the caller may want to know the previous expiration time.
482 * We do not update "ticks" and "expired" since the timer will be
483 * re-programmed again in the following timerfd_setup() call.
484 */
Todd Poynor11ffa9d2013-05-15 14:38:12 -0700485 if (ctx->expired && ctx->tintv.tv64) {
486 if (isalarm(ctx))
487 alarm_forward_now(&ctx->t.alarm, ctx->tintv);
488 else
489 hrtimer_forward_now(&ctx->t.tmr, ctx->tintv);
490 }
Davide Libenzib215e282007-05-10 22:23:16 -0700491
Al Viro9d94b9e2012-12-27 16:52:33 -0500492 old->it_value = ktime_to_timespec(timerfd_get_remaining(ctx));
493 old->it_interval = ktime_to_timespec(ctx->tintv);
Davide Libenzi4d672e72008-02-04 22:27:26 -0800494
495 /*
496 * Re-program the timer to the new value ...
497 */
Al Viro9d94b9e2012-12-27 16:52:33 -0500498 ret = timerfd_setup(ctx, flags, new);
Davide Libenzi4d672e72008-02-04 22:27:26 -0800499
500 spin_unlock_irq(&ctx->wqh.lock);
Mao Jinlong2e1a4ae2016-02-17 15:21:49 +0800501
502 if (ctx->clockid == CLOCK_POWEROFF_ALARM)
503 set_power_on_alarm();
504
Al Viro2903ff02012-08-28 12:52:22 -0400505 fdput(f);
Thomas Gleixner99ee5312011-04-27 14:16:42 +0200506 return ret;
Davide Libenzi4d672e72008-02-04 22:27:26 -0800507}
508
Al Viro9d94b9e2012-12-27 16:52:33 -0500509static int do_timerfd_gettime(int ufd, struct itimerspec *t)
Davide Libenzi4d672e72008-02-04 22:27:26 -0800510{
Al Viro2903ff02012-08-28 12:52:22 -0400511 struct fd f;
Davide Libenzi4d672e72008-02-04 22:27:26 -0800512 struct timerfd_ctx *ctx;
Al Viro2903ff02012-08-28 12:52:22 -0400513 int ret = timerfd_fget(ufd, &f);
514 if (ret)
515 return ret;
516 ctx = f.file->private_data;
Davide Libenzi4d672e72008-02-04 22:27:26 -0800517
518 spin_lock_irq(&ctx->wqh.lock);
519 if (ctx->expired && ctx->tintv.tv64) {
520 ctx->expired = 0;
Todd Poynor11ffa9d2013-05-15 14:38:12 -0700521
522 if (isalarm(ctx)) {
523 ctx->ticks +=
524 alarm_forward_now(
525 &ctx->t.alarm, ctx->tintv) - 1;
526 alarm_restart(&ctx->t.alarm);
527 } else {
528 ctx->ticks +=
529 hrtimer_forward_now(&ctx->t.tmr, ctx->tintv)
530 - 1;
531 hrtimer_restart(&ctx->t.tmr);
532 }
Davide Libenzi4d672e72008-02-04 22:27:26 -0800533 }
Al Viro9d94b9e2012-12-27 16:52:33 -0500534 t->it_value = ktime_to_timespec(timerfd_get_remaining(ctx));
535 t->it_interval = ktime_to_timespec(ctx->tintv);
Davide Libenzi4d672e72008-02-04 22:27:26 -0800536 spin_unlock_irq(&ctx->wqh.lock);
Al Viro2903ff02012-08-28 12:52:22 -0400537 fdput(f);
Al Viro9d94b9e2012-12-27 16:52:33 -0500538 return 0;
539}
Davide Libenzi4d672e72008-02-04 22:27:26 -0800540
Al Viro9d94b9e2012-12-27 16:52:33 -0500541SYSCALL_DEFINE4(timerfd_settime, int, ufd, int, flags,
542 const struct itimerspec __user *, utmr,
543 struct itimerspec __user *, otmr)
544{
545 struct itimerspec new, old;
546 int ret;
547
548 if (copy_from_user(&new, utmr, sizeof(new)))
549 return -EFAULT;
550 ret = do_timerfd_settime(ufd, flags, &new, &old);
551 if (ret)
552 return ret;
553 if (otmr && copy_to_user(otmr, &old, sizeof(old)))
554 return -EFAULT;
555
556 return ret;
557}
558
559SYSCALL_DEFINE2(timerfd_gettime, int, ufd, struct itimerspec __user *, otmr)
560{
561 struct itimerspec kotmr;
562 int ret = do_timerfd_gettime(ufd, &kotmr);
563 if (ret)
564 return ret;
Davide Libenzi4d672e72008-02-04 22:27:26 -0800565 return copy_to_user(otmr, &kotmr, sizeof(kotmr)) ? -EFAULT: 0;
Davide Libenzib215e282007-05-10 22:23:16 -0700566}
567
Heiko Carstens0e803ba2013-03-02 12:26:30 +0100568#ifdef CONFIG_COMPAT
Al Viro9d94b9e2012-12-27 16:52:33 -0500569COMPAT_SYSCALL_DEFINE4(timerfd_settime, int, ufd, int, flags,
Heiko Carstens0e803ba2013-03-02 12:26:30 +0100570 const struct compat_itimerspec __user *, utmr,
571 struct compat_itimerspec __user *, otmr)
Al Viro9d94b9e2012-12-27 16:52:33 -0500572{
573 struct itimerspec new, old;
574 int ret;
575
576 if (get_compat_itimerspec(&new, utmr))
577 return -EFAULT;
578 ret = do_timerfd_settime(ufd, flags, &new, &old);
579 if (ret)
580 return ret;
581 if (otmr && put_compat_itimerspec(otmr, &old))
582 return -EFAULT;
583 return ret;
584}
585
586COMPAT_SYSCALL_DEFINE2(timerfd_gettime, int, ufd,
Heiko Carstens0e803ba2013-03-02 12:26:30 +0100587 struct compat_itimerspec __user *, otmr)
Al Viro9d94b9e2012-12-27 16:52:33 -0500588{
589 struct itimerspec kotmr;
590 int ret = do_timerfd_gettime(ufd, &kotmr);
591 if (ret)
592 return ret;
Heiko Carstens0e803ba2013-03-02 12:26:30 +0100593 return put_compat_itimerspec(otmr, &kotmr) ? -EFAULT: 0;
Al Viro9d94b9e2012-12-27 16:52:33 -0500594}
595#endif