Line data Source code
1 : // SPDX-License-Identifier: GPL-2.0
2 : /*
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 :
12 : #include <linux/alarmtimer.h>
13 : #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>
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>
29 : #include <linux/time_namespace.h>
30 :
31 : struct timerfd_ctx {
32 : union {
33 : struct hrtimer tmr;
34 : struct alarm alarm;
35 : } t;
36 : ktime_t tintv;
37 : ktime_t moffs;
38 : wait_queue_head_t wqh;
39 : u64 ticks;
40 : int clockid;
41 : short unsigned expired;
42 : short unsigned settime_flags; /* to show in fdinfo */
43 : struct rcu_head rcu;
44 : struct list_head clist;
45 : spinlock_t cancel_lock;
46 : bool might_cancel;
47 : };
48 :
49 : static LIST_HEAD(cancel_list);
50 : static DEFINE_SPINLOCK(cancel_lock);
51 :
52 : static inline bool isalarm(struct timerfd_ctx *ctx)
53 : {
54 17763603 : return ctx->clockid == CLOCK_REALTIME_ALARM ||
55 : ctx->clockid == CLOCK_BOOTTIME_ALARM;
56 : }
57 :
58 : /*
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,
61 : * tintv != 0) until the timer is accessed.
62 : */
63 924283 : static void timerfd_triggered(struct timerfd_ctx *ctx)
64 : {
65 924283 : unsigned long flags;
66 :
67 924283 : spin_lock_irqsave(&ctx->wqh.lock, flags);
68 924513 : ctx->expired = 1;
69 924513 : ctx->ticks++;
70 924513 : wake_up_locked_poll(&ctx->wqh, EPOLLIN);
71 924522 : spin_unlock_irqrestore(&ctx->wqh.lock, flags);
72 924365 : }
73 :
74 924435 : static enum hrtimer_restart timerfd_tmrproc(struct hrtimer *htmr)
75 : {
76 924435 : struct timerfd_ctx *ctx = container_of(htmr, struct timerfd_ctx,
77 : t.tmr);
78 924435 : timerfd_triggered(ctx);
79 924451 : return HRTIMER_NORESTART;
80 : }
81 :
82 0 : static enum alarmtimer_restart timerfd_alarmproc(struct alarm *alarm,
83 : ktime_t now)
84 : {
85 0 : struct timerfd_ctx *ctx = container_of(alarm, struct timerfd_ctx,
86 : t.alarm);
87 0 : timerfd_triggered(ctx);
88 0 : return ALARMTIMER_NORESTART;
89 : }
90 :
91 : /*
92 : * Called when the clock was set to cancel the timers in the cancel
93 : * 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().
96 : */
97 0 : void timerfd_clock_was_set(void)
98 : {
99 0 : ktime_t moffs = ktime_mono_to_real(0);
100 0 : struct timerfd_ctx *ctx;
101 0 : unsigned long flags;
102 :
103 0 : rcu_read_lock();
104 0 : list_for_each_entry_rcu(ctx, &cancel_list, clist) {
105 0 : if (!ctx->might_cancel)
106 0 : continue;
107 0 : spin_lock_irqsave(&ctx->wqh.lock, flags);
108 0 : if (ctx->moffs != moffs) {
109 0 : ctx->moffs = KTIME_MAX;
110 0 : ctx->ticks++;
111 0 : wake_up_locked_poll(&ctx->wqh, EPOLLIN);
112 : }
113 0 : spin_unlock_irqrestore(&ctx->wqh.lock, flags);
114 : }
115 0 : rcu_read_unlock();
116 0 : }
117 :
118 0 : static void timerfd_resume_work(struct work_struct *work)
119 : {
120 0 : timerfd_clock_was_set();
121 0 : }
122 :
123 : static DECLARE_WORK(timerfd_work, timerfd_resume_work);
124 :
125 : /*
126 : * Invoked from timekeeping_resume(). Defer the actual update to work so
127 : * timerfd_clock_was_set() runs in task context.
128 : */
129 0 : void timerfd_resume(void)
130 : {
131 0 : schedule_work(&timerfd_work);
132 0 : }
133 :
134 3976058 : static void __timerfd_remove_cancel(struct timerfd_ctx *ctx)
135 : {
136 3976058 : if (ctx->might_cancel) {
137 2086 : ctx->might_cancel = false;
138 2086 : spin_lock(&cancel_lock);
139 2086 : list_del_rcu(&ctx->clist);
140 2086 : spin_unlock(&cancel_lock);
141 : }
142 3976058 : }
143 :
144 349491 : static void timerfd_remove_cancel(struct timerfd_ctx *ctx)
145 : {
146 349491 : spin_lock(&ctx->cancel_lock);
147 349492 : __timerfd_remove_cancel(ctx);
148 349493 : spin_unlock(&ctx->cancel_lock);
149 349493 : }
150 :
151 3823830 : static bool timerfd_canceled(struct timerfd_ctx *ctx)
152 : {
153 3823830 : if (!ctx->might_cancel || ctx->moffs != KTIME_MAX)
154 : return false;
155 0 : ctx->moffs = ktime_mono_to_real(0);
156 0 : return true;
157 : }
158 :
159 3628775 : static void timerfd_setup_cancel(struct timerfd_ctx *ctx, int flags)
160 : {
161 3628775 : spin_lock(&ctx->cancel_lock);
162 3628535 : if ((ctx->clockid == CLOCK_REALTIME ||
163 : ctx->clockid == CLOCK_REALTIME_ALARM) &&
164 3884 : (flags & TFD_TIMER_ABSTIME) && (flags & TFD_TIMER_CANCEL_ON_SET)) {
165 2082 : if (!ctx->might_cancel) {
166 2082 : ctx->might_cancel = true;
167 2082 : spin_lock(&cancel_lock);
168 2082 : list_add_rcu(&ctx->clist, &cancel_list);
169 2082 : spin_unlock(&cancel_lock);
170 : }
171 : } else {
172 3626453 : __timerfd_remove_cancel(ctx);
173 : }
174 3628161 : spin_unlock(&ctx->cancel_lock);
175 3629086 : }
176 :
177 3628583 : static ktime_t timerfd_get_remaining(struct timerfd_ctx *ctx)
178 : {
179 3628583 : ktime_t remaining;
180 :
181 3628583 : if (isalarm(ctx))
182 0 : remaining = alarm_expires_remaining(&ctx->t.alarm);
183 : else
184 3628583 : remaining = hrtimer_expires_remaining_adjusted(&ctx->t.tmr);
185 :
186 3628833 : return remaining < 0 ? 0: remaining;
187 : }
188 :
189 3628457 : static int timerfd_setup(struct timerfd_ctx *ctx, int flags,
190 : const struct itimerspec64 *ktmr)
191 : {
192 3628457 : enum hrtimer_mode htmode;
193 3628457 : ktime_t texp;
194 3628457 : int clockid = ctx->clockid;
195 :
196 3628457 : htmode = (flags & TFD_TIMER_ABSTIME) ?
197 : HRTIMER_MODE_ABS: HRTIMER_MODE_REL;
198 :
199 3628457 : texp = timespec64_to_ktime(ktmr->it_value);
200 3628457 : ctx->expired = 0;
201 3628457 : ctx->ticks = 0;
202 3628457 : ctx->tintv = timespec64_to_ktime(ktmr->it_interval);
203 :
204 3628457 : if (isalarm(ctx)) {
205 0 : alarm_init(&ctx->t.alarm,
206 : ctx->clockid == CLOCK_REALTIME_ALARM ?
207 : ALARM_REALTIME : ALARM_BOOTTIME,
208 : timerfd_alarmproc);
209 : } else {
210 3628457 : hrtimer_init(&ctx->t.tmr, clockid, htmode);
211 3628355 : hrtimer_set_expires(&ctx->t.tmr, texp);
212 3628355 : ctx->t.tmr.function = timerfd_tmrproc;
213 : }
214 :
215 3628355 : if (texp != 0) {
216 2899048 : if (flags & TFD_TIMER_ABSTIME)
217 2876339 : texp = timens_ktime_to_host(clockid, texp);
218 2899226 : if (isalarm(ctx)) {
219 0 : if (flags & TFD_TIMER_ABSTIME)
220 0 : alarm_start(&ctx->t.alarm, texp);
221 : else
222 0 : alarm_start_relative(&ctx->t.alarm, texp);
223 : } else {
224 2899226 : hrtimer_start(&ctx->t.tmr, texp, htmode);
225 : }
226 :
227 2899737 : if (timerfd_canceled(ctx))
228 : return -ECANCELED;
229 : }
230 :
231 3628947 : ctx->settime_flags = flags & TFD_SETTIME_FLAGS;
232 3628947 : return 0;
233 : }
234 :
235 349491 : static int timerfd_release(struct inode *inode, struct file *file)
236 : {
237 349491 : struct timerfd_ctx *ctx = file->private_data;
238 :
239 349491 : timerfd_remove_cancel(ctx);
240 :
241 349493 : if (isalarm(ctx))
242 0 : alarm_cancel(&ctx->t.alarm);
243 : else
244 349493 : hrtimer_cancel(&ctx->t.tmr);
245 349491 : kfree_rcu(ctx, rcu);
246 349491 : return 0;
247 : }
248 :
249 1605085 : static __poll_t timerfd_poll(struct file *file, poll_table *wait)
250 : {
251 1605085 : struct timerfd_ctx *ctx = file->private_data;
252 1605085 : __poll_t events = 0;
253 1605085 : unsigned long flags;
254 :
255 1605085 : poll_wait(file, &ctx->wqh, wait);
256 :
257 1604498 : spin_lock_irqsave(&ctx->wqh.lock, flags);
258 1604877 : if (ctx->ticks)
259 924253 : events |= EPOLLIN;
260 1604877 : spin_unlock_irqrestore(&ctx->wqh.lock, flags);
261 :
262 1604901 : return events;
263 : }
264 :
265 924219 : static ssize_t timerfd_read(struct file *file, char __user *buf, size_t count,
266 : loff_t *ppos)
267 : {
268 924219 : struct timerfd_ctx *ctx = file->private_data;
269 924219 : ssize_t res;
270 924219 : u64 ticks = 0;
271 :
272 924219 : if (count < sizeof(ticks))
273 : return -EINVAL;
274 924219 : spin_lock_irq(&ctx->wqh.lock);
275 924152 : if (file->f_flags & O_NONBLOCK)
276 : res = -EAGAIN;
277 : else
278 6 : res = wait_event_interruptible_locked_irq(ctx->wqh, ctx->ticks);
279 :
280 : /*
281 : * If clock has changed, we do not care about the
282 : * ticks and we do not rearm the timer. Userspace must
283 : * reevaluate anyway.
284 : */
285 924152 : if (timerfd_canceled(ctx)) {
286 0 : ctx->ticks = 0;
287 0 : ctx->expired = 0;
288 0 : res = -ECANCELED;
289 : }
290 :
291 923842 : if (ctx->ticks) {
292 923859 : ticks = ctx->ticks;
293 :
294 923859 : if (ctx->expired && ctx->tintv) {
295 : /*
296 : * If tintv != 0, this is a periodic timer that
297 : * needs to be re-armed. We avoid doing it in the timer
298 : * callback to avoid DoS attacks specifying a very
299 : * short timer period.
300 : */
301 0 : if (isalarm(ctx)) {
302 0 : ticks += alarm_forward_now(
303 0 : &ctx->t.alarm, ctx->tintv) - 1;
304 0 : alarm_restart(&ctx->t.alarm);
305 : } else {
306 0 : ticks += hrtimer_forward_now(&ctx->t.tmr,
307 0 : ctx->tintv) - 1;
308 0 : hrtimer_restart(&ctx->t.tmr);
309 : }
310 : }
311 923859 : ctx->expired = 0;
312 923859 : ctx->ticks = 0;
313 : }
314 923842 : spin_unlock_irq(&ctx->wqh.lock);
315 924236 : if (ticks)
316 924109 : res = put_user(ticks, (u64 __user *) buf) ? -EFAULT: sizeof(ticks);
317 : return res;
318 : }
319 :
320 : #ifdef CONFIG_PROC_FS
321 0 : static void timerfd_show(struct seq_file *m, struct file *file)
322 : {
323 0 : struct timerfd_ctx *ctx = file->private_data;
324 0 : struct timespec64 value, interval;
325 :
326 0 : spin_lock_irq(&ctx->wqh.lock);
327 0 : value = ktime_to_timespec64(timerfd_get_remaining(ctx));
328 0 : interval = ktime_to_timespec64(ctx->tintv);
329 0 : spin_unlock_irq(&ctx->wqh.lock);
330 :
331 0 : seq_printf(m,
332 : "clockid: %d\n"
333 : "ticks: %llu\n"
334 : "settime flags: 0%o\n"
335 : "it_value: (%llu, %llu)\n"
336 : "it_interval: (%llu, %llu)\n",
337 : ctx->clockid,
338 0 : (unsigned long long)ctx->ticks,
339 0 : ctx->settime_flags,
340 0 : (unsigned long long)value.tv_sec,
341 0 : (unsigned long long)value.tv_nsec,
342 0 : (unsigned long long)interval.tv_sec,
343 0 : (unsigned long long)interval.tv_nsec);
344 0 : }
345 : #else
346 : #define timerfd_show NULL
347 : #endif
348 :
349 : #ifdef CONFIG_CHECKPOINT_RESTORE
350 : static long timerfd_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
351 : {
352 : struct timerfd_ctx *ctx = file->private_data;
353 : int ret = 0;
354 :
355 : switch (cmd) {
356 : case TFD_IOC_SET_TICKS: {
357 : u64 ticks;
358 :
359 : if (copy_from_user(&ticks, (u64 __user *)arg, sizeof(ticks)))
360 : return -EFAULT;
361 : if (!ticks)
362 : return -EINVAL;
363 :
364 : spin_lock_irq(&ctx->wqh.lock);
365 : if (!timerfd_canceled(ctx)) {
366 : ctx->ticks = ticks;
367 : wake_up_locked_poll(&ctx->wqh, EPOLLIN);
368 : } else
369 : ret = -ECANCELED;
370 : spin_unlock_irq(&ctx->wqh.lock);
371 : break;
372 : }
373 : default:
374 : ret = -ENOTTY;
375 : break;
376 : }
377 :
378 : return ret;
379 : }
380 : #else
381 : #define timerfd_ioctl NULL
382 : #endif
383 :
384 : static const struct file_operations timerfd_fops = {
385 : .release = timerfd_release,
386 : .poll = timerfd_poll,
387 : .read = timerfd_read,
388 : .llseek = noop_llseek,
389 : .show_fdinfo = timerfd_show,
390 : .unlocked_ioctl = timerfd_ioctl,
391 : };
392 :
393 3628242 : static int timerfd_fget(int fd, struct fd *p)
394 : {
395 3628242 : struct fd f = fdget(fd);
396 3628889 : if (!f.file)
397 : return -EBADF;
398 3628889 : if (f.file->f_op != &timerfd_fops) {
399 0 : fdput(f);
400 0 : return -EINVAL;
401 : }
402 3628889 : *p = f;
403 3628889 : return 0;
404 : }
405 :
406 698966 : SYSCALL_DEFINE2(timerfd_create, int, clockid, int, flags)
407 : {
408 349483 : int ufd;
409 349483 : struct timerfd_ctx *ctx;
410 :
411 : /* Check the TFD_* constants for consistency. */
412 349483 : BUILD_BUG_ON(TFD_CLOEXEC != O_CLOEXEC);
413 349483 : BUILD_BUG_ON(TFD_NONBLOCK != O_NONBLOCK);
414 :
415 349483 : if ((flags & ~TFD_CREATE_FLAGS) ||
416 349483 : (clockid != CLOCK_MONOTONIC &&
417 349483 : clockid != CLOCK_REALTIME &&
418 349483 : clockid != CLOCK_REALTIME_ALARM &&
419 84418 : clockid != CLOCK_BOOTTIME &&
420 84418 : clockid != CLOCK_BOOTTIME_ALARM))
421 : return -EINVAL;
422 :
423 349483 : if ((clockid == CLOCK_REALTIME_ALARM ||
424 0 : clockid == CLOCK_BOOTTIME_ALARM) &&
425 0 : !capable(CAP_WAKE_ALARM))
426 : return -EPERM;
427 :
428 349483 : ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
429 349483 : if (!ctx)
430 : return -ENOMEM;
431 :
432 349483 : init_waitqueue_head(&ctx->wqh);
433 349488 : spin_lock_init(&ctx->cancel_lock);
434 349487 : ctx->clockid = clockid;
435 :
436 349487 : if (isalarm(ctx))
437 0 : alarm_init(&ctx->t.alarm,
438 : ctx->clockid == CLOCK_REALTIME_ALARM ?
439 : ALARM_REALTIME : ALARM_BOOTTIME,
440 : timerfd_alarmproc);
441 : else
442 349487 : hrtimer_init(&ctx->t.tmr, clockid, HRTIMER_MODE_ABS);
443 :
444 349481 : ctx->moffs = ktime_mono_to_real(0);
445 :
446 349483 : ufd = anon_inode_getfd("[timerfd]", &timerfd_fops, ctx,
447 349483 : O_RDWR | (flags & TFD_SHARED_FCNTL_FLAGS));
448 349490 : if (ufd < 0)
449 0 : kfree(ctx);
450 :
451 349490 : return ufd;
452 : }
453 :
454 3628123 : static int do_timerfd_settime(int ufd, int flags,
455 : const struct itimerspec64 *new,
456 : struct itimerspec64 *old)
457 : {
458 3628123 : struct fd f;
459 3628123 : struct timerfd_ctx *ctx;
460 3628123 : int ret;
461 :
462 3628123 : if ((flags & ~TFD_SETTIME_FLAGS) ||
463 3628123 : !itimerspec64_valid(new))
464 : return -EINVAL;
465 :
466 3628123 : ret = timerfd_fget(ufd, &f);
467 3628818 : if (ret)
468 : return ret;
469 3628818 : ctx = f.file->private_data;
470 :
471 3628818 : if (isalarm(ctx) && !capable(CAP_WAKE_ALARM)) {
472 0 : fdput(f);
473 0 : return -EPERM;
474 : }
475 :
476 3628818 : timerfd_setup_cancel(ctx, flags);
477 :
478 : /*
479 : * We need to stop the existing timer before reprogramming
480 : * it to the new values.
481 : */
482 3629019 : for (;;) {
483 3629019 : spin_lock_irq(&ctx->wqh.lock);
484 :
485 3629026 : if (isalarm(ctx)) {
486 0 : if (alarm_try_to_cancel(&ctx->t.alarm) >= 0)
487 : break;
488 : } else {
489 3629026 : if (hrtimer_try_to_cancel(&ctx->t.tmr) >= 0)
490 : break;
491 : }
492 0 : spin_unlock_irq(&ctx->wqh.lock);
493 :
494 0 : if (isalarm(ctx))
495 0 : hrtimer_cancel_wait_running(&ctx->t.alarm.timer);
496 : else
497 0 : hrtimer_cancel_wait_running(&ctx->t.tmr);
498 : }
499 :
500 : /*
501 : * If the timer is expired and it's periodic, we need to advance it
502 : * because the caller may want to know the previous expiration time.
503 : * We do not update "ticks" and "expired" since the timer will be
504 : * re-programmed again in the following timerfd_setup() call.
505 : */
506 3628775 : if (ctx->expired && ctx->tintv) {
507 0 : if (isalarm(ctx))
508 0 : alarm_forward_now(&ctx->t.alarm, ctx->tintv);
509 : else
510 0 : hrtimer_forward_now(&ctx->t.tmr, ctx->tintv);
511 : }
512 :
513 3628775 : old->it_value = ktime_to_timespec64(timerfd_get_remaining(ctx));
514 3628454 : old->it_interval = ktime_to_timespec64(ctx->tintv);
515 :
516 : /*
517 : * Re-program the timer to the new value ...
518 : */
519 3628387 : ret = timerfd_setup(ctx, flags, new);
520 :
521 3628951 : spin_unlock_irq(&ctx->wqh.lock);
522 3629101 : fdput(f);
523 3629101 : return ret;
524 : }
525 :
526 0 : static int do_timerfd_gettime(int ufd, struct itimerspec64 *t)
527 : {
528 0 : struct fd f;
529 0 : struct timerfd_ctx *ctx;
530 0 : int ret = timerfd_fget(ufd, &f);
531 0 : if (ret)
532 : return ret;
533 0 : ctx = f.file->private_data;
534 :
535 0 : spin_lock_irq(&ctx->wqh.lock);
536 0 : if (ctx->expired && ctx->tintv) {
537 0 : ctx->expired = 0;
538 :
539 0 : if (isalarm(ctx)) {
540 0 : ctx->ticks +=
541 0 : alarm_forward_now(
542 0 : &ctx->t.alarm, ctx->tintv) - 1;
543 0 : alarm_restart(&ctx->t.alarm);
544 : } else {
545 0 : ctx->ticks +=
546 0 : hrtimer_forward_now(&ctx->t.tmr, ctx->tintv)
547 0 : - 1;
548 0 : hrtimer_restart(&ctx->t.tmr);
549 : }
550 : }
551 0 : t->it_value = ktime_to_timespec64(timerfd_get_remaining(ctx));
552 0 : t->it_interval = ktime_to_timespec64(ctx->tintv);
553 0 : spin_unlock_irq(&ctx->wqh.lock);
554 0 : fdput(f);
555 0 : return 0;
556 : }
557 :
558 7257117 : SYSCALL_DEFINE4(timerfd_settime, int, ufd, int, flags,
559 : const struct __kernel_itimerspec __user *, utmr,
560 : struct __kernel_itimerspec __user *, otmr)
561 : {
562 3628423 : struct itimerspec64 new, old;
563 3628423 : int ret;
564 :
565 3628423 : if (get_itimerspec64(&new, utmr))
566 : return -EFAULT;
567 3628498 : ret = do_timerfd_settime(ufd, flags, &new, &old);
568 3629052 : if (ret)
569 0 : return ret;
570 3629052 : if (otmr && put_itimerspec64(&old, otmr))
571 0 : return -EFAULT;
572 :
573 : return ret;
574 : }
575 :
576 0 : SYSCALL_DEFINE2(timerfd_gettime, int, ufd, struct __kernel_itimerspec __user *, otmr)
577 : {
578 0 : struct itimerspec64 kotmr;
579 0 : int ret = do_timerfd_gettime(ufd, &kotmr);
580 0 : if (ret)
581 0 : return ret;
582 0 : return put_itimerspec64(&kotmr, otmr) ? -EFAULT : 0;
583 : }
584 :
585 : #ifdef CONFIG_COMPAT_32BIT_TIME
586 0 : SYSCALL_DEFINE4(timerfd_settime32, int, ufd, int, flags,
587 : const struct old_itimerspec32 __user *, utmr,
588 : struct old_itimerspec32 __user *, otmr)
589 : {
590 0 : struct itimerspec64 new, old;
591 0 : int ret;
592 :
593 0 : if (get_old_itimerspec32(&new, utmr))
594 : return -EFAULT;
595 0 : ret = do_timerfd_settime(ufd, flags, &new, &old);
596 0 : if (ret)
597 0 : return ret;
598 0 : if (otmr && put_old_itimerspec32(&old, otmr))
599 0 : return -EFAULT;
600 : return ret;
601 : }
602 :
603 0 : SYSCALL_DEFINE2(timerfd_gettime32, int, ufd,
604 : struct old_itimerspec32 __user *, otmr)
605 : {
606 0 : struct itimerspec64 kotmr;
607 0 : int ret = do_timerfd_gettime(ufd, &kotmr);
608 0 : if (ret)
609 0 : return ret;
610 0 : return put_old_itimerspec32(&kotmr, otmr) ? -EFAULT : 0;
611 : }
612 : #endif
|