blob: c5509d2448e386f9869bf15169e211ee2744b703 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Davide Libenzib215e282007-05-10 22:23:16 -07002/*
3 * fs/timerfd.c
4 *
5 * Copyright (C) 2007 Davide Libenzi <davidel@xmailserver.org>
6 *
7 *
8 * Thanks to Thomas Gleixner for code reviews and useful comments.
9 *
10 */
11
Todd Poynor11ffa9d2013-05-15 14:38:12 -070012#include <linux/alarmtimer.h>
Davide Libenzib215e282007-05-10 22:23:16 -070013#include <linux/file.h>
14#include <linux/poll.h>
15#include <linux/init.h>
16#include <linux/fs.h>
17#include <linux/sched.h>
18#include <linux/kernel.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090019#include <linux/slab.h>
Davide Libenzib215e282007-05-10 22:23:16 -070020#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>
Adrian Bunk45cc2b92008-04-29 00:58:59 -070026#include <linux/syscalls.h>
Al Viro9d94b9e2012-12-27 16:52:33 -050027#include <linux/compat.h>
Thomas Gleixner9ec26902011-05-20 16:18:50 +020028#include <linux/rcupdate.h>
Andrei Vagin6cd889d2019-11-12 01:27:02 +000029#include <linux/time_namespace.h>
Davide Libenzib215e282007-05-10 22:23:16 -070030
31struct timerfd_ctx {
Todd Poynor11ffa9d2013-05-15 14:38:12 -070032 union {
33 struct hrtimer tmr;
34 struct alarm alarm;
35 } t;
Davide Libenzib215e282007-05-10 22:23:16 -070036 ktime_t tintv;
Thomas Gleixner99ee5312011-04-27 14:16:42 +020037 ktime_t moffs;
Davide Libenzib215e282007-05-10 22:23:16 -070038 wait_queue_head_t wqh;
Davide Libenzi4d672e72008-02-04 22:27:26 -080039 u64 ticks;
Davide Libenzi4d672e72008-02-04 22:27:26 -080040 int clockid;
Cyrill Gorcunovaf9c4952014-07-16 01:54:52 +040041 short unsigned expired;
42 short unsigned settime_flags; /* to show in fdinfo */
Thomas Gleixner9ec26902011-05-20 16:18:50 +020043 struct rcu_head rcu;
44 struct list_head clist;
Thomas Gleixner1e38da32017-01-31 15:24:03 +010045 spinlock_t cancel_lock;
Thomas Gleixner99ee5312011-04-27 14:16:42 +020046 bool might_cancel;
Davide Libenzib215e282007-05-10 22:23:16 -070047};
48
Thomas Gleixner9ec26902011-05-20 16:18:50 +020049static LIST_HEAD(cancel_list);
50static DEFINE_SPINLOCK(cancel_lock);
51
Todd Poynor11ffa9d2013-05-15 14:38:12 -070052static inline bool isalarm(struct timerfd_ctx *ctx)
53{
54 return ctx->clockid == CLOCK_REALTIME_ALARM ||
55 ctx->clockid == CLOCK_BOOTTIME_ALARM;
56}
57
Davide Libenzib215e282007-05-10 22:23:16 -070058/*
59 * This gets called when the timer event triggers. We set the "expired"
60 * flag, but we do not re-arm the timer (in case it's necessary,
Thomas Gleixner2456e852016-12-25 11:38:40 +010061 * tintv != 0) until the timer is accessed.
Davide Libenzib215e282007-05-10 22:23:16 -070062 */
Todd Poynor11ffa9d2013-05-15 14:38:12 -070063static void timerfd_triggered(struct timerfd_ctx *ctx)
Davide Libenzib215e282007-05-10 22:23:16 -070064{
Davide Libenzib215e282007-05-10 22:23:16 -070065 unsigned long flags;
66
Davide Libenzi18963c02007-05-18 12:02:33 -070067 spin_lock_irqsave(&ctx->wqh.lock, flags);
Davide Libenzib215e282007-05-10 22:23:16 -070068 ctx->expired = 1;
Davide Libenzi4d672e72008-02-04 22:27:26 -080069 ctx->ticks++;
Christoph Hellwig7dda7122018-07-16 12:25:50 +020070 wake_up_locked_poll(&ctx->wqh, EPOLLIN);
Davide Libenzi18963c02007-05-18 12:02:33 -070071 spin_unlock_irqrestore(&ctx->wqh.lock, flags);
Todd Poynor11ffa9d2013-05-15 14:38:12 -070072}
Davide Libenzib215e282007-05-10 22:23:16 -070073
Todd Poynor11ffa9d2013-05-15 14:38:12 -070074static enum hrtimer_restart timerfd_tmrproc(struct hrtimer *htmr)
75{
76 struct timerfd_ctx *ctx = container_of(htmr, struct timerfd_ctx,
77 t.tmr);
78 timerfd_triggered(ctx);
Davide Libenzib215e282007-05-10 22:23:16 -070079 return HRTIMER_NORESTART;
80}
81
Todd Poynor11ffa9d2013-05-15 14:38:12 -070082static enum alarmtimer_restart timerfd_alarmproc(struct alarm *alarm,
83 ktime_t now)
84{
85 struct timerfd_ctx *ctx = container_of(alarm, struct timerfd_ctx,
86 t.alarm);
87 timerfd_triggered(ctx);
88 return ALARMTIMER_NORESTART;
89}
90
Thomas Gleixner9ec26902011-05-20 16:18:50 +020091/*
92 * Called when the clock was set to cancel the timers in the cancel
Max Asbock1123d9392011-06-13 10:18:32 -070093 * list. This will wake up processes waiting on these timers. The
94 * wake-up requires ctx->ticks to be non zero, therefore we increment
95 * it before calling wake_up_locked().
Thomas Gleixner9ec26902011-05-20 16:18:50 +020096 */
97void timerfd_clock_was_set(void)
98{
Thomas Gleixner2456e852016-12-25 11:38:40 +010099 ktime_t moffs = ktime_mono_to_real(0);
Thomas Gleixner9ec26902011-05-20 16:18:50 +0200100 struct timerfd_ctx *ctx;
101 unsigned long flags;
102
103 rcu_read_lock();
104 list_for_each_entry_rcu(ctx, &cancel_list, clist) {
105 if (!ctx->might_cancel)
106 continue;
107 spin_lock_irqsave(&ctx->wqh.lock, flags);
Thomas Gleixner2456e852016-12-25 11:38:40 +0100108 if (ctx->moffs != moffs) {
109 ctx->moffs = KTIME_MAX;
Max Asbock1123d9392011-06-13 10:18:32 -0700110 ctx->ticks++;
Christoph Hellwig7dda7122018-07-16 12:25:50 +0200111 wake_up_locked_poll(&ctx->wqh, EPOLLIN);
Thomas Gleixner9ec26902011-05-20 16:18:50 +0200112 }
113 spin_unlock_irqrestore(&ctx->wqh.lock, flags);
114 }
115 rcu_read_unlock();
116}
117
Thomas Gleixner1e38da32017-01-31 15:24:03 +0100118static void __timerfd_remove_cancel(struct timerfd_ctx *ctx)
Thomas Gleixner9ec26902011-05-20 16:18:50 +0200119{
120 if (ctx->might_cancel) {
121 ctx->might_cancel = false;
122 spin_lock(&cancel_lock);
123 list_del_rcu(&ctx->clist);
124 spin_unlock(&cancel_lock);
125 }
126}
127
Thomas Gleixner1e38da32017-01-31 15:24:03 +0100128static void timerfd_remove_cancel(struct timerfd_ctx *ctx)
129{
130 spin_lock(&ctx->cancel_lock);
131 __timerfd_remove_cancel(ctx);
132 spin_unlock(&ctx->cancel_lock);
133}
134
Thomas Gleixner9ec26902011-05-20 16:18:50 +0200135static bool timerfd_canceled(struct timerfd_ctx *ctx)
136{
Thomas Gleixner2456e852016-12-25 11:38:40 +0100137 if (!ctx->might_cancel || ctx->moffs != KTIME_MAX)
Thomas Gleixner9ec26902011-05-20 16:18:50 +0200138 return false;
Thomas Gleixner2456e852016-12-25 11:38:40 +0100139 ctx->moffs = ktime_mono_to_real(0);
Thomas Gleixner9ec26902011-05-20 16:18:50 +0200140 return true;
141}
142
143static void timerfd_setup_cancel(struct timerfd_ctx *ctx, int flags)
144{
Thomas Gleixner1e38da32017-01-31 15:24:03 +0100145 spin_lock(&ctx->cancel_lock);
Todd Poynor11ffa9d2013-05-15 14:38:12 -0700146 if ((ctx->clockid == CLOCK_REALTIME ||
147 ctx->clockid == CLOCK_REALTIME_ALARM) &&
148 (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 Gleixner1e38da32017-01-31 15:24:03 +0100155 } else {
156 __timerfd_remove_cancel(ctx);
Thomas Gleixner9ec26902011-05-20 16:18:50 +0200157 }
Thomas Gleixner1e38da32017-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
Thomas Gleixner8b0e1952016-12-25 12:30:41 +0100170 return remaining < 0 ? 0: remaining;
Davide Libenzi4d672e72008-02-04 22:27:26 -0800171}
172
Thomas Gleixner99ee5312011-04-27 14:16:42 +0200173static int timerfd_setup(struct timerfd_ctx *ctx, int flags,
Deepa Dinamanibff41202017-06-24 11:45:07 -0700174 const struct itimerspec64 *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;
Davide Libenzib215e282007-05-10 22:23:16 -0700179
180 htmode = (flags & TFD_TIMER_ABSTIME) ?
181 HRTIMER_MODE_ABS: HRTIMER_MODE_REL;
182
Deepa Dinamanibff41202017-06-24 11:45:07 -0700183 texp = timespec64_to_ktime(ktmr->it_value);
Davide Libenzib215e282007-05-10 22:23:16 -0700184 ctx->expired = 0;
Davide Libenzi4d672e72008-02-04 22:27:26 -0800185 ctx->ticks = 0;
Deepa Dinamanibff41202017-06-24 11:45:07 -0700186 ctx->tintv = timespec64_to_ktime(ktmr->it_interval);
Todd Poynor11ffa9d2013-05-15 14:38:12 -0700187
188 if (isalarm(ctx)) {
189 alarm_init(&ctx->t.alarm,
190 ctx->clockid == CLOCK_REALTIME_ALARM ?
191 ALARM_REALTIME : ALARM_BOOTTIME,
192 timerfd_alarmproc);
193 } else {
194 hrtimer_init(&ctx->t.tmr, clockid, htmode);
195 hrtimer_set_expires(&ctx->t.tmr, texp);
196 ctx->t.tmr.function = timerfd_tmrproc;
197 }
198
Thomas Gleixner2456e852016-12-25 11:38:40 +0100199 if (texp != 0) {
Andrei Vagin6cd889d2019-11-12 01:27:02 +0000200 if (flags & TFD_TIMER_ABSTIME)
201 texp = timens_ktime_to_host(clockid, texp);
Todd Poynor11ffa9d2013-05-15 14:38:12 -0700202 if (isalarm(ctx)) {
203 if (flags & TFD_TIMER_ABSTIME)
204 alarm_start(&ctx->t.alarm, texp);
205 else
206 alarm_start_relative(&ctx->t.alarm, texp);
207 } else {
208 hrtimer_start(&ctx->t.tmr, texp, htmode);
209 }
210
Thomas Gleixner99ee5312011-04-27 14:16:42 +0200211 if (timerfd_canceled(ctx))
212 return -ECANCELED;
213 }
Cyrill Gorcunovaf9c4952014-07-16 01:54:52 +0400214
215 ctx->settime_flags = flags & TFD_SETTIME_FLAGS;
Thomas Gleixner99ee5312011-04-27 14:16:42 +0200216 return 0;
Davide Libenzib215e282007-05-10 22:23:16 -0700217}
218
219static int timerfd_release(struct inode *inode, struct file *file)
220{
221 struct timerfd_ctx *ctx = file->private_data;
222
Thomas Gleixner9ec26902011-05-20 16:18:50 +0200223 timerfd_remove_cancel(ctx);
Todd Poynor11ffa9d2013-05-15 14:38:12 -0700224
225 if (isalarm(ctx))
226 alarm_cancel(&ctx->t.alarm);
227 else
228 hrtimer_cancel(&ctx->t.tmr);
Thomas Gleixner9ec26902011-05-20 16:18:50 +0200229 kfree_rcu(ctx, rcu);
Davide Libenzib215e282007-05-10 22:23:16 -0700230 return 0;
231}
Linus Torvaldsa11e1d42018-06-28 09:43:44 -0700232
233static __poll_t timerfd_poll(struct file *file, poll_table *wait)
Davide Libenzib215e282007-05-10 22:23:16 -0700234{
235 struct timerfd_ctx *ctx = file->private_data;
Linus Torvaldsa11e1d42018-06-28 09:43:44 -0700236 __poll_t events = 0;
237 unsigned long flags;
Davide Libenzib215e282007-05-10 22:23:16 -0700238
Linus Torvaldsa11e1d42018-06-28 09:43:44 -0700239 poll_wait(file, &ctx->wqh, wait);
Davide Libenzib215e282007-05-10 22:23:16 -0700240
Linus Torvaldsa11e1d42018-06-28 09:43:44 -0700241 spin_lock_irqsave(&ctx->wqh.lock, flags);
242 if (ctx->ticks)
243 events |= EPOLLIN;
244 spin_unlock_irqrestore(&ctx->wqh.lock, flags);
Davide Libenzib215e282007-05-10 22:23:16 -0700245
Linus Torvaldsa11e1d42018-06-28 09:43:44 -0700246 return events;
Davide Libenzib215e282007-05-10 22:23:16 -0700247}
248
249static ssize_t timerfd_read(struct file *file, char __user *buf, size_t count,
250 loff_t *ppos)
251{
252 struct timerfd_ctx *ctx = file->private_data;
253 ssize_t res;
Davide Libenzi09828402007-07-26 10:41:07 -0700254 u64 ticks = 0;
Davide Libenzib215e282007-05-10 22:23:16 -0700255
256 if (count < sizeof(ticks))
257 return -EINVAL;
Davide Libenzi18963c02007-05-18 12:02:33 -0700258 spin_lock_irq(&ctx->wqh.lock);
Michal Nazarewicz8120a8a2010-05-05 12:53:12 +0200259 if (file->f_flags & O_NONBLOCK)
260 res = -EAGAIN;
261 else
262 res = wait_event_interruptible_locked_irq(ctx->wqh, ctx->ticks);
Thomas Gleixner99ee5312011-04-27 14:16:42 +0200263
Thomas Gleixner9ec26902011-05-20 16:18:50 +0200264 /*
265 * If clock has changed, we do not care about the
266 * ticks and we do not rearm the timer. Userspace must
267 * reevaluate anyway.
268 */
269 if (timerfd_canceled(ctx)) {
270 ctx->ticks = 0;
271 ctx->expired = 0;
272 res = -ECANCELED;
273 }
274
Davide Libenzi4d672e72008-02-04 22:27:26 -0800275 if (ctx->ticks) {
276 ticks = ctx->ticks;
Thomas Gleixner99ee5312011-04-27 14:16:42 +0200277
Thomas Gleixner2456e852016-12-25 11:38:40 +0100278 if (ctx->expired && ctx->tintv) {
Davide Libenzib215e282007-05-10 22:23:16 -0700279 /*
Thomas Gleixner2456e852016-12-25 11:38:40 +0100280 * If tintv != 0, this is a periodic timer that
Davide Libenzib215e282007-05-10 22:23:16 -0700281 * needs to be re-armed. We avoid doing it in the timer
282 * callback to avoid DoS attacks specifying a very
283 * short timer period.
284 */
Todd Poynor11ffa9d2013-05-15 14:38:12 -0700285 if (isalarm(ctx)) {
286 ticks += alarm_forward_now(
287 &ctx->t.alarm, ctx->tintv) - 1;
288 alarm_restart(&ctx->t.alarm);
289 } else {
290 ticks += hrtimer_forward_now(&ctx->t.tmr,
291 ctx->tintv) - 1;
292 hrtimer_restart(&ctx->t.tmr);
293 }
Davide Libenzi4d672e72008-02-04 22:27:26 -0800294 }
295 ctx->expired = 0;
296 ctx->ticks = 0;
Davide Libenzib215e282007-05-10 22:23:16 -0700297 }
Davide Libenzi18963c02007-05-18 12:02:33 -0700298 spin_unlock_irq(&ctx->wqh.lock);
Davide Libenzib215e282007-05-10 22:23:16 -0700299 if (ticks)
Davide Libenzi09828402007-07-26 10:41:07 -0700300 res = put_user(ticks, (u64 __user *) buf) ? -EFAULT: sizeof(ticks);
Davide Libenzib215e282007-05-10 22:23:16 -0700301 return res;
302}
303
Cyrill Gorcunovaf9c4952014-07-16 01:54:52 +0400304#ifdef CONFIG_PROC_FS
Joe Perchesa3816ab2014-09-29 16:08:25 -0700305static void timerfd_show(struct seq_file *m, struct file *file)
Cyrill Gorcunovaf9c4952014-07-16 01:54:52 +0400306{
307 struct timerfd_ctx *ctx = file->private_data;
Arnd Bergmannbde9e962018-04-20 22:03:38 +0200308 struct timespec64 value, interval;
Cyrill Gorcunovaf9c4952014-07-16 01:54:52 +0400309
310 spin_lock_irq(&ctx->wqh.lock);
Arnd Bergmannbde9e962018-04-20 22:03:38 +0200311 value = ktime_to_timespec64(timerfd_get_remaining(ctx));
312 interval = ktime_to_timespec64(ctx->tintv);
Cyrill Gorcunovaf9c4952014-07-16 01:54:52 +0400313 spin_unlock_irq(&ctx->wqh.lock);
314
Joe Perchesa3816ab2014-09-29 16:08:25 -0700315 seq_printf(m,
316 "clockid: %d\n"
317 "ticks: %llu\n"
318 "settime flags: 0%o\n"
319 "it_value: (%llu, %llu)\n"
320 "it_interval: (%llu, %llu)\n",
321 ctx->clockid,
322 (unsigned long long)ctx->ticks,
323 ctx->settime_flags,
Arnd Bergmannbde9e962018-04-20 22:03:38 +0200324 (unsigned long long)value.tv_sec,
325 (unsigned long long)value.tv_nsec,
326 (unsigned long long)interval.tv_sec,
327 (unsigned long long)interval.tv_nsec);
Cyrill Gorcunovaf9c4952014-07-16 01:54:52 +0400328}
329#else
330#define timerfd_show NULL
331#endif
332
Cyrill Gorcunov5442e9f2014-07-16 01:54:54 +0400333#ifdef CONFIG_CHECKPOINT_RESTORE
334static long timerfd_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
335{
336 struct timerfd_ctx *ctx = file->private_data;
337 int ret = 0;
338
339 switch (cmd) {
340 case TFD_IOC_SET_TICKS: {
341 u64 ticks;
342
343 if (copy_from_user(&ticks, (u64 __user *)arg, sizeof(ticks)))
344 return -EFAULT;
345 if (!ticks)
346 return -EINVAL;
347
348 spin_lock_irq(&ctx->wqh.lock);
349 if (!timerfd_canceled(ctx)) {
350 ctx->ticks = ticks;
Christoph Hellwig7dda7122018-07-16 12:25:50 +0200351 wake_up_locked_poll(&ctx->wqh, EPOLLIN);
Cyrill Gorcunov5442e9f2014-07-16 01:54:54 +0400352 } else
353 ret = -ECANCELED;
354 spin_unlock_irq(&ctx->wqh.lock);
355 break;
356 }
357 default:
358 ret = -ENOTTY;
359 break;
360 }
361
362 return ret;
363}
364#else
365#define timerfd_ioctl NULL
366#endif
367
Davide Libenzib215e282007-05-10 22:23:16 -0700368static const struct file_operations timerfd_fops = {
369 .release = timerfd_release,
Linus Torvaldsa11e1d42018-06-28 09:43:44 -0700370 .poll = timerfd_poll,
Davide Libenzib215e282007-05-10 22:23:16 -0700371 .read = timerfd_read,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200372 .llseek = noop_llseek,
Cyrill Gorcunovaf9c4952014-07-16 01:54:52 +0400373 .show_fdinfo = timerfd_show,
Cyrill Gorcunov5442e9f2014-07-16 01:54:54 +0400374 .unlocked_ioctl = timerfd_ioctl,
Davide Libenzib215e282007-05-10 22:23:16 -0700375};
376
Al Viro2903ff02012-08-28 12:52:22 -0400377static int timerfd_fget(int fd, struct fd *p)
Davide Libenzib215e282007-05-10 22:23:16 -0700378{
Al Viro2903ff02012-08-28 12:52:22 -0400379 struct fd f = fdget(fd);
380 if (!f.file)
381 return -EBADF;
382 if (f.file->f_op != &timerfd_fops) {
383 fdput(f);
384 return -EINVAL;
Davide Libenzi4d672e72008-02-04 22:27:26 -0800385 }
Al Viro2903ff02012-08-28 12:52:22 -0400386 *p = f;
387 return 0;
Davide Libenzi4d672e72008-02-04 22:27:26 -0800388}
389
Heiko Carstens836f92a2009-01-14 14:14:33 +0100390SYSCALL_DEFINE2(timerfd_create, int, clockid, int, flags)
Davide Libenzi4d672e72008-02-04 22:27:26 -0800391{
Al Viro2030a422008-02-23 06:46:49 -0500392 int ufd;
Davide Libenzib215e282007-05-10 22:23:16 -0700393 struct timerfd_ctx *ctx;
Davide Libenzi4d672e72008-02-04 22:27:26 -0800394
Ulrich Dreppere38b36f2008-07-23 21:29:42 -0700395 /* Check the TFD_* constants for consistency. */
396 BUILD_BUG_ON(TFD_CLOEXEC != O_CLOEXEC);
397 BUILD_BUG_ON(TFD_NONBLOCK != O_NONBLOCK);
398
Davide Libenzi610d18f2009-02-18 14:48:18 -0800399 if ((flags & ~TFD_CREATE_FLAGS) ||
400 (clockid != CLOCK_MONOTONIC &&
Todd Poynor11ffa9d2013-05-15 14:38:12 -0700401 clockid != CLOCK_REALTIME &&
402 clockid != CLOCK_REALTIME_ALARM &&
Greg Hackmann4a2378a2014-01-08 10:57:03 -0800403 clockid != CLOCK_BOOTTIME &&
Todd Poynor11ffa9d2013-05-15 14:38:12 -0700404 clockid != CLOCK_BOOTTIME_ALARM))
Davide Libenzi4d672e72008-02-04 22:27:26 -0800405 return -EINVAL;
406
Stephen Smalley25b68a82017-02-17 10:13:59 -0500407 if ((clockid == CLOCK_REALTIME_ALARM ||
408 clockid == CLOCK_BOOTTIME_ALARM) &&
409 !capable(CAP_WAKE_ALARM))
Eric Caruso2895a5e2016-06-08 16:08:59 -0700410 return -EPERM;
411
Davide Libenzi4d672e72008-02-04 22:27:26 -0800412 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
413 if (!ctx)
414 return -ENOMEM;
415
416 init_waitqueue_head(&ctx->wqh);
Thomas Gleixner1e38da32017-01-31 15:24:03 +0100417 spin_lock_init(&ctx->cancel_lock);
Davide Libenzi4d672e72008-02-04 22:27:26 -0800418 ctx->clockid = clockid;
Todd Poynor11ffa9d2013-05-15 14:38:12 -0700419
420 if (isalarm(ctx))
421 alarm_init(&ctx->t.alarm,
422 ctx->clockid == CLOCK_REALTIME_ALARM ?
423 ALARM_REALTIME : ALARM_BOOTTIME,
424 timerfd_alarmproc);
425 else
426 hrtimer_init(&ctx->t.tmr, clockid, HRTIMER_MODE_ABS);
427
Thomas Gleixner2456e852016-12-25 11:38:40 +0100428 ctx->moffs = ktime_mono_to_real(0);
Davide Libenzi4d672e72008-02-04 22:27:26 -0800429
Ulrich Drepper11fcb6c2008-07-23 21:29:26 -0700430 ufd = anon_inode_getfd("[timerfd]", &timerfd_fops, ctx,
Roland Dreier628ff7c2009-12-18 09:41:24 -0800431 O_RDWR | (flags & TFD_SHARED_FCNTL_FLAGS));
Al Viro2030a422008-02-23 06:46:49 -0500432 if (ufd < 0)
Davide Libenzi4d672e72008-02-04 22:27:26 -0800433 kfree(ctx);
Davide Libenzi4d672e72008-02-04 22:27:26 -0800434
435 return ufd;
436}
437
Al Viro9d94b9e2012-12-27 16:52:33 -0500438static int do_timerfd_settime(int ufd, int flags,
Deepa Dinamanibff41202017-06-24 11:45:07 -0700439 const struct itimerspec64 *new,
440 struct itimerspec64 *old)
Davide Libenzi4d672e72008-02-04 22:27:26 -0800441{
Al Viro2903ff02012-08-28 12:52:22 -0400442 struct fd f;
Davide Libenzi4d672e72008-02-04 22:27:26 -0800443 struct timerfd_ctx *ctx;
Al Viro2903ff02012-08-28 12:52:22 -0400444 int ret;
Davide Libenzib215e282007-05-10 22:23:16 -0700445
Davide Libenzi610d18f2009-02-18 14:48:18 -0800446 if ((flags & ~TFD_SETTIME_FLAGS) ||
Deepa Dinamanibff41202017-06-24 11:45:07 -0700447 !itimerspec64_valid(new))
Davide Libenzib215e282007-05-10 22:23:16 -0700448 return -EINVAL;
449
Al Viro2903ff02012-08-28 12:52:22 -0400450 ret = timerfd_fget(ufd, &f);
451 if (ret)
452 return ret;
453 ctx = f.file->private_data;
Davide Libenzib215e282007-05-10 22:23:16 -0700454
Stephen Smalley25b68a82017-02-17 10:13:59 -0500455 if (isalarm(ctx) && !capable(CAP_WAKE_ALARM)) {
Eric Caruso2895a5e2016-06-08 16:08:59 -0700456 fdput(f);
457 return -EPERM;
458 }
459
Thomas Gleixner9ec26902011-05-20 16:18:50 +0200460 timerfd_setup_cancel(ctx, flags);
461
Davide Libenzi4d672e72008-02-04 22:27:26 -0800462 /*
463 * We need to stop the existing timer before reprogramming
464 * it to the new values.
465 */
466 for (;;) {
467 spin_lock_irq(&ctx->wqh.lock);
Todd Poynor11ffa9d2013-05-15 14:38:12 -0700468
469 if (isalarm(ctx)) {
470 if (alarm_try_to_cancel(&ctx->t.alarm) >= 0)
471 break;
472 } else {
473 if (hrtimer_try_to_cancel(&ctx->t.tmr) >= 0)
474 break;
475 }
Davide Libenzi18963c02007-05-18 12:02:33 -0700476 spin_unlock_irq(&ctx->wqh.lock);
Anna-Maria Gleixnera125ecc2019-07-31 00:33:50 +0200477
478 if (isalarm(ctx))
479 hrtimer_cancel_wait_running(&ctx->t.alarm.timer);
480 else
481 hrtimer_cancel_wait_running(&ctx->t.tmr);
Davide Libenzib215e282007-05-10 22:23:16 -0700482 }
483
Davide Libenzi4d672e72008-02-04 22:27:26 -0800484 /*
485 * If the timer is expired and it's periodic, we need to advance it
486 * because the caller may want to know the previous expiration time.
487 * We do not update "ticks" and "expired" since the timer will be
488 * re-programmed again in the following timerfd_setup() call.
489 */
Thomas Gleixner2456e852016-12-25 11:38:40 +0100490 if (ctx->expired && ctx->tintv) {
Todd Poynor11ffa9d2013-05-15 14:38:12 -0700491 if (isalarm(ctx))
492 alarm_forward_now(&ctx->t.alarm, ctx->tintv);
493 else
494 hrtimer_forward_now(&ctx->t.tmr, ctx->tintv);
495 }
Davide Libenzib215e282007-05-10 22:23:16 -0700496
Deepa Dinamanibff41202017-06-24 11:45:07 -0700497 old->it_value = ktime_to_timespec64(timerfd_get_remaining(ctx));
498 old->it_interval = ktime_to_timespec64(ctx->tintv);
Davide Libenzi4d672e72008-02-04 22:27:26 -0800499
500 /*
501 * Re-program the timer to the new value ...
502 */
Al Viro9d94b9e2012-12-27 16:52:33 -0500503 ret = timerfd_setup(ctx, flags, new);
Davide Libenzi4d672e72008-02-04 22:27:26 -0800504
505 spin_unlock_irq(&ctx->wqh.lock);
Al Viro2903ff02012-08-28 12:52:22 -0400506 fdput(f);
Thomas Gleixner99ee5312011-04-27 14:16:42 +0200507 return ret;
Davide Libenzi4d672e72008-02-04 22:27:26 -0800508}
509
Deepa Dinamanibff41202017-06-24 11:45:07 -0700510static int do_timerfd_gettime(int ufd, struct itimerspec64 *t)
Davide Libenzi4d672e72008-02-04 22:27:26 -0800511{
Al Viro2903ff02012-08-28 12:52:22 -0400512 struct fd f;
Davide Libenzi4d672e72008-02-04 22:27:26 -0800513 struct timerfd_ctx *ctx;
Al Viro2903ff02012-08-28 12:52:22 -0400514 int ret = timerfd_fget(ufd, &f);
515 if (ret)
516 return ret;
517 ctx = f.file->private_data;
Davide Libenzi4d672e72008-02-04 22:27:26 -0800518
519 spin_lock_irq(&ctx->wqh.lock);
Thomas Gleixner2456e852016-12-25 11:38:40 +0100520 if (ctx->expired && ctx->tintv) {
Davide Libenzi4d672e72008-02-04 22:27:26 -0800521 ctx->expired = 0;
Todd Poynor11ffa9d2013-05-15 14:38:12 -0700522
523 if (isalarm(ctx)) {
524 ctx->ticks +=
525 alarm_forward_now(
526 &ctx->t.alarm, ctx->tintv) - 1;
527 alarm_restart(&ctx->t.alarm);
528 } else {
529 ctx->ticks +=
530 hrtimer_forward_now(&ctx->t.tmr, ctx->tintv)
531 - 1;
532 hrtimer_restart(&ctx->t.tmr);
533 }
Davide Libenzi4d672e72008-02-04 22:27:26 -0800534 }
Deepa Dinamanibff41202017-06-24 11:45:07 -0700535 t->it_value = ktime_to_timespec64(timerfd_get_remaining(ctx));
536 t->it_interval = ktime_to_timespec64(ctx->tintv);
Davide Libenzi4d672e72008-02-04 22:27:26 -0800537 spin_unlock_irq(&ctx->wqh.lock);
Al Viro2903ff02012-08-28 12:52:22 -0400538 fdput(f);
Al Viro9d94b9e2012-12-27 16:52:33 -0500539 return 0;
540}
Davide Libenzi4d672e72008-02-04 22:27:26 -0800541
Al Viro9d94b9e2012-12-27 16:52:33 -0500542SYSCALL_DEFINE4(timerfd_settime, int, ufd, int, flags,
Deepa Dinamani6ff84732018-06-16 22:11:44 -0700543 const struct __kernel_itimerspec __user *, utmr,
544 struct __kernel_itimerspec __user *, otmr)
Al Viro9d94b9e2012-12-27 16:52:33 -0500545{
Deepa Dinamanibff41202017-06-24 11:45:07 -0700546 struct itimerspec64 new, old;
Al Viro9d94b9e2012-12-27 16:52:33 -0500547 int ret;
548
Deepa Dinamanibff41202017-06-24 11:45:07 -0700549 if (get_itimerspec64(&new, utmr))
Al Viro9d94b9e2012-12-27 16:52:33 -0500550 return -EFAULT;
551 ret = do_timerfd_settime(ufd, flags, &new, &old);
552 if (ret)
553 return ret;
Deepa Dinamanibff41202017-06-24 11:45:07 -0700554 if (otmr && put_itimerspec64(&old, otmr))
Al Viro9d94b9e2012-12-27 16:52:33 -0500555 return -EFAULT;
556
557 return ret;
558}
559
Deepa Dinamani6ff84732018-06-16 22:11:44 -0700560SYSCALL_DEFINE2(timerfd_gettime, int, ufd, struct __kernel_itimerspec __user *, otmr)
Al Viro9d94b9e2012-12-27 16:52:33 -0500561{
Deepa Dinamanibff41202017-06-24 11:45:07 -0700562 struct itimerspec64 kotmr;
Al Viro9d94b9e2012-12-27 16:52:33 -0500563 int ret = do_timerfd_gettime(ufd, &kotmr);
564 if (ret)
565 return ret;
Deepa Dinamanibff41202017-06-24 11:45:07 -0700566 return put_itimerspec64(&kotmr, otmr) ? -EFAULT : 0;
Davide Libenzib215e282007-05-10 22:23:16 -0700567}
568
Deepa Dinamani6ff84732018-06-16 22:11:44 -0700569#ifdef CONFIG_COMPAT_32BIT_TIME
Arnd Bergmann8dabe722019-01-07 00:33:08 +0100570SYSCALL_DEFINE4(timerfd_settime32, int, ufd, int, flags,
Arnd Bergmann9afc5ee2018-07-13 12:52:28 +0200571 const struct old_itimerspec32 __user *, utmr,
572 struct old_itimerspec32 __user *, otmr)
Al Viro9d94b9e2012-12-27 16:52:33 -0500573{
Deepa Dinamanibff41202017-06-24 11:45:07 -0700574 struct itimerspec64 new, old;
Al Viro9d94b9e2012-12-27 16:52:33 -0500575 int ret;
576
Arnd Bergmann9afc5ee2018-07-13 12:52:28 +0200577 if (get_old_itimerspec32(&new, utmr))
Al Viro9d94b9e2012-12-27 16:52:33 -0500578 return -EFAULT;
579 ret = do_timerfd_settime(ufd, flags, &new, &old);
580 if (ret)
581 return ret;
Arnd Bergmann9afc5ee2018-07-13 12:52:28 +0200582 if (otmr && put_old_itimerspec32(&old, otmr))
Al Viro9d94b9e2012-12-27 16:52:33 -0500583 return -EFAULT;
584 return ret;
585}
586
Arnd Bergmann8dabe722019-01-07 00:33:08 +0100587SYSCALL_DEFINE2(timerfd_gettime32, int, ufd,
Arnd Bergmann9afc5ee2018-07-13 12:52:28 +0200588 struct old_itimerspec32 __user *, otmr)
Al Viro9d94b9e2012-12-27 16:52:33 -0500589{
Deepa Dinamanibff41202017-06-24 11:45:07 -0700590 struct itimerspec64 kotmr;
Al Viro9d94b9e2012-12-27 16:52:33 -0500591 int ret = do_timerfd_gettime(ufd, &kotmr);
592 if (ret)
593 return ret;
Arnd Bergmann9afc5ee2018-07-13 12:52:28 +0200594 return put_old_itimerspec32(&kotmr, otmr) ? -EFAULT : 0;
Al Viro9d94b9e2012-12-27 16:52:33 -0500595}
596#endif