blob: 9e59c9ea92aa69b06e098c323d76c81f5f0f2200 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Copyright (C) 1992 Darren Senn
4 */
5
6/* These are all the functions necessary to implement itimers */
7
8#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/interrupt.h>
10#include <linux/syscalls.h>
11#include <linux/time.h>
Ingo Molnar3f07c012017-02-08 18:51:30 +010012#include <linux/sched/signal.h>
Ingo Molnar32ef5512017-02-05 11:48:36 +010013#include <linux/sched/cputime.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/posix-timers.h>
Thomas Gleixner2ff678b2006-01-09 20:52:34 -080015#include <linux/hrtimer.h>
Xiao Guangrong3f0a5252009-08-10 10:52:30 +080016#include <trace/events/timer.h>
Al Viro54ad9c42017-06-07 09:42:37 +010017#include <linux/compat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080019#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
Thomas Gleixner2ff678b2006-01-09 20:52:34 -080021/**
22 * itimer_get_remtime - get remaining time for the timer
23 *
24 * @timer: the timer to read
25 *
26 * Returns the delta between the expiry time and now, which can be
27 * less than zero or 1usec for an pending expired timer
28 */
Arnd Bergmannbd40a172019-11-07 15:27:39 +010029static struct timespec64 itimer_get_remtime(struct hrtimer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -070030{
Thomas Gleixner51cbb522016-01-14 16:54:48 +000031 ktime_t rem = __hrtimer_get_remaining(timer, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Thomas Gleixner2ff678b2006-01-09 20:52:34 -080033 /*
34 * Racy but safe: if the itimer expires after the above
35 * hrtimer_get_remtime() call but before this condition
36 * then we return 0 - which is correct.
37 */
38 if (hrtimer_active(timer)) {
Thomas Gleixner2456e852016-12-25 11:38:40 +010039 if (rem <= 0)
40 rem = NSEC_PER_USEC;
Thomas Gleixner2ff678b2006-01-09 20:52:34 -080041 } else
Thomas Gleixner2456e852016-12-25 11:38:40 +010042 rem = 0;
Thomas Gleixner2ff678b2006-01-09 20:52:34 -080043
Arnd Bergmannbd40a172019-11-07 15:27:39 +010044 return ktime_to_timespec64(rem);
Linus Torvalds1da177e2005-04-16 15:20:36 -070045}
46
Stanislaw Gruszka42c4ab42009-07-29 12:15:26 +020047static void get_cpu_itimer(struct task_struct *tsk, unsigned int clock_id,
Arnd Bergmannbd40a172019-11-07 15:27:39 +010048 struct itimerspec64 *const value)
Stanislaw Gruszka42c4ab42009-07-29 12:15:26 +020049{
Frederic Weisbecker858cf3a2017-01-31 04:09:35 +010050 u64 val, interval;
Stanislaw Gruszka42c4ab42009-07-29 12:15:26 +020051 struct cpu_itimer *it = &tsk->signal->it[clock_id];
52
53 spin_lock_irq(&tsk->sighand->siglock);
54
Frederic Weisbecker858cf3a2017-01-31 04:09:35 +010055 val = it->expires;
56 interval = it->incr;
57 if (val) {
Thomas Gleixnerb7be4ef2019-08-21 21:09:16 +020058 u64 t, samples[CPUCLOCK_MAX];
Stanislaw Gruszka42c4ab42009-07-29 12:15:26 +020059
Thomas Gleixnerb7be4ef2019-08-21 21:09:16 +020060 thread_group_sample_cputime(tsk, samples);
61 t = samples[clock_id];
Stanislaw Gruszka42c4ab42009-07-29 12:15:26 +020062
Frederic Weisbecker858cf3a2017-01-31 04:09:35 +010063 if (val < t)
Stanislaw Gruszka42c4ab42009-07-29 12:15:26 +020064 /* about to fire */
Frederic Weisbecker858cf3a2017-01-31 04:09:35 +010065 val = TICK_NSEC;
Stanislaw Gruszka42c4ab42009-07-29 12:15:26 +020066 else
Frederic Weisbecker858cf3a2017-01-31 04:09:35 +010067 val -= t;
Stanislaw Gruszka42c4ab42009-07-29 12:15:26 +020068 }
69
70 spin_unlock_irq(&tsk->sighand->siglock);
71
Arnd Bergmannbd40a172019-11-07 15:27:39 +010072 value->it_value = ns_to_timespec64(val);
73 value->it_interval = ns_to_timespec64(interval);
Stanislaw Gruszka42c4ab42009-07-29 12:15:26 +020074}
75
Arnd Bergmannbd40a172019-11-07 15:27:39 +010076static int do_getitimer(int which, struct itimerspec64 *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077{
78 struct task_struct *tsk = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80 switch (which) {
81 case ITIMER_REAL:
Thomas Gleixnerbc1978d2006-02-01 03:05:08 -080082 spin_lock_irq(&tsk->sighand->siglock);
Thomas Gleixner2ff678b2006-01-09 20:52:34 -080083 value->it_value = itimer_get_remtime(&tsk->signal->real_timer);
84 value->it_interval =
Arnd Bergmannbd40a172019-11-07 15:27:39 +010085 ktime_to_timespec64(tsk->signal->it_real_incr);
Thomas Gleixnerbc1978d2006-02-01 03:05:08 -080086 spin_unlock_irq(&tsk->sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 break;
88 case ITIMER_VIRTUAL:
Stanislaw Gruszka42c4ab42009-07-29 12:15:26 +020089 get_cpu_itimer(tsk, CPUCLOCK_VIRT, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 break;
91 case ITIMER_PROF:
Stanislaw Gruszka42c4ab42009-07-29 12:15:26 +020092 get_cpu_itimer(tsk, CPUCLOCK_PROF, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 break;
94 default:
95 return(-EINVAL);
96 }
97 return 0;
98}
99
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100100static int put_itimerval(struct itimerval __user *o,
101 const struct itimerspec64 *i)
102{
103 struct itimerval v;
104
105 v.it_interval.tv_sec = i->it_interval.tv_sec;
106 v.it_interval.tv_usec = i->it_interval.tv_nsec / NSEC_PER_USEC;
107 v.it_value.tv_sec = i->it_value.tv_sec;
108 v.it_value.tv_usec = i->it_value.tv_nsec / NSEC_PER_USEC;
109 return copy_to_user(o, &v, sizeof(struct itimerval)) ? -EFAULT : 0;
110}
111
112
Heiko Carstensb290ebe2009-01-14 14:14:06 +0100113SYSCALL_DEFINE2(getitimer, int, which, struct itimerval __user *, value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114{
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100115 struct itimerspec64 get_buffer;
116 int error = do_getitimer(which, &get_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100118 if (!error && put_itimerval(value, &get_buffer))
119 error = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 return error;
121}
122
Arnd Bergmann4c22ea22019-10-25 16:59:39 +0200123#if defined(CONFIG_COMPAT) || defined(CONFIG_ALPHA)
Arnd Bergmannc1745f82019-10-25 10:46:22 +0200124struct old_itimerval32 {
125 struct old_timeval32 it_interval;
126 struct old_timeval32 it_value;
127};
128
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100129static int put_old_itimerval32(struct old_itimerval32 __user *o,
130 const struct itimerspec64 *i)
Arnd Bergmannc1745f82019-10-25 10:46:22 +0200131{
132 struct old_itimerval32 v32;
133
134 v32.it_interval.tv_sec = i->it_interval.tv_sec;
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100135 v32.it_interval.tv_usec = i->it_interval.tv_nsec / NSEC_PER_USEC;
Arnd Bergmannc1745f82019-10-25 10:46:22 +0200136 v32.it_value.tv_sec = i->it_value.tv_sec;
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100137 v32.it_value.tv_usec = i->it_value.tv_nsec / NSEC_PER_USEC;
Arnd Bergmannc1745f82019-10-25 10:46:22 +0200138 return copy_to_user(o, &v32, sizeof(struct old_itimerval32)) ? -EFAULT : 0;
139}
140
Al Viro54ad9c42017-06-07 09:42:37 +0100141COMPAT_SYSCALL_DEFINE2(getitimer, int, which,
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100142 struct old_itimerval32 __user *, value)
Al Viro54ad9c42017-06-07 09:42:37 +0100143{
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100144 struct itimerspec64 get_buffer;
145 int error = do_getitimer(which, &get_buffer);
Al Viro54ad9c42017-06-07 09:42:37 +0100146
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100147 if (!error && put_old_itimerval32(value, &get_buffer))
Al Viro54ad9c42017-06-07 09:42:37 +0100148 error = -EFAULT;
149 return error;
150}
151#endif
152
Thomas Gleixner2ff678b2006-01-09 20:52:34 -0800153/*
154 * The timer is automagically restarted, when interval != 0
155 */
Thomas Gleixnerc9cb2e32007-02-16 01:27:49 -0800156enum hrtimer_restart it_real_fn(struct hrtimer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157{
Roman Zippel05cfb612006-03-26 01:38:12 -0800158 struct signal_struct *sig =
Daniel Walker0719e372007-10-18 03:06:11 -0700159 container_of(timer, struct signal_struct, real_timer);
Eric W. Biederman6883f812017-06-04 04:32:13 -0500160 struct pid *leader_pid = sig->pids[PIDTYPE_TGID];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Eric W. Biederman6883f812017-06-04 04:32:13 -0500162 trace_itimer_expire(ITIMER_REAL, leader_pid, 0);
163 kill_pid_info(SIGALRM, SEND_SIG_PRIV, leader_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Thomas Gleixner2ff678b2006-01-09 20:52:34 -0800165 return HRTIMER_NORESTART;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166}
167
Stanislaw Gruszka8356b5f2009-07-29 12:15:27 +0200168static void set_cpu_itimer(struct task_struct *tsk, unsigned int clock_id,
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100169 const struct itimerspec64 *const value,
170 struct itimerspec64 *const ovalue)
Stanislaw Gruszka8356b5f2009-07-29 12:15:27 +0200171{
Frederic Weisbecker858cf3a2017-01-31 04:09:35 +0100172 u64 oval, nval, ointerval, ninterval;
Stanislaw Gruszka42c4ab42009-07-29 12:15:26 +0200173 struct cpu_itimer *it = &tsk->signal->it[clock_id];
174
Thomas Gleixner35eb7252017-06-20 17:37:35 +0200175 /*
176 * Use the to_ktime conversion because that clamps the maximum
177 * value to KTIME_MAX and avoid multiplication overflows.
178 */
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100179 nval = timespec64_to_ns(&value->it_value);
180 ninterval = timespec64_to_ns(&value->it_interval);
Stanislaw Gruszka42c4ab42009-07-29 12:15:26 +0200181
182 spin_lock_irq(&tsk->sighand->siglock);
183
Frederic Weisbecker858cf3a2017-01-31 04:09:35 +0100184 oval = it->expires;
185 ointerval = it->incr;
186 if (oval || nval) {
Martin Schwidefsky64861632011-12-15 14:56:09 +0100187 if (nval > 0)
Frederic Weisbecker858cf3a2017-01-31 04:09:35 +0100188 nval += TICK_NSEC;
189 set_process_cpu_timer(tsk, clock_id, &nval, &oval);
Stanislaw Gruszka42c4ab42009-07-29 12:15:26 +0200190 }
191 it->expires = nval;
192 it->incr = ninterval;
Xiao Guangrong3f0a5252009-08-10 10:52:30 +0800193 trace_itimer_state(clock_id == CPUCLOCK_VIRT ?
194 ITIMER_VIRTUAL : ITIMER_PROF, value, nval);
Stanislaw Gruszka42c4ab42009-07-29 12:15:26 +0200195
196 spin_unlock_irq(&tsk->sighand->siglock);
197
198 if (ovalue) {
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100199 ovalue->it_value = ns_to_timespec64(oval);
200 ovalue->it_interval = ns_to_timespec64(ointerval);
Stanislaw Gruszka42c4ab42009-07-29 12:15:26 +0200201 }
202}
203
Thomas Gleixner7d99b7d2006-03-25 03:06:35 -0800204/*
Thomas Gleixner7d99b7d2006-03-25 03:06:35 -0800205 * Returns true if the timeval is in canonical form
206 */
207#define timeval_valid(t) \
208 (((t)->tv_sec >= 0) && (((unsigned long) (t)->tv_usec) < USEC_PER_SEC))
209
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100210static int do_setitimer(int which, struct itimerspec64 *value,
211 struct itimerspec64 *ovalue)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212{
213 struct task_struct *tsk = current;
Thomas Gleixner2ff678b2006-01-09 20:52:34 -0800214 struct hrtimer *timer;
215 ktime_t expires;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217 switch (which) {
218 case ITIMER_REAL:
Thomas Gleixnerbc1978d2006-02-01 03:05:08 -0800219again:
220 spin_lock_irq(&tsk->sighand->siglock);
Thomas Gleixner2ff678b2006-01-09 20:52:34 -0800221 timer = &tsk->signal->real_timer;
Thomas Gleixner2ff678b2006-01-09 20:52:34 -0800222 if (ovalue) {
223 ovalue->it_value = itimer_get_remtime(timer);
224 ovalue->it_interval
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100225 = ktime_to_timespec64(tsk->signal->it_real_incr);
Oleg Nesterovf01b1b02005-06-28 20:44:47 -0700226 }
Thomas Gleixnera16a1c02006-02-01 03:05:09 -0800227 /* We are sharing ->siglock with it_real_fn() */
228 if (hrtimer_try_to_cancel(timer) < 0) {
229 spin_unlock_irq(&tsk->sighand->siglock);
Anna-Maria Gleixnerc7e6d702019-07-31 00:33:51 +0200230 hrtimer_cancel_wait_running(timer);
Thomas Gleixnera16a1c02006-02-01 03:05:09 -0800231 goto again;
232 }
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100233 expires = timespec64_to_ktime(value->it_value);
Thomas Gleixner2456e852016-12-25 11:38:40 +0100234 if (expires != 0) {
Thomas Gleixner8bfd9a72007-02-16 01:28:12 -0800235 tsk->signal->it_real_incr =
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100236 timespec64_to_ktime(value->it_interval);
Thomas Gleixnerc9cb2e32007-02-16 01:27:49 -0800237 hrtimer_start(timer, expires, HRTIMER_MODE_REL);
Thomas Gleixner8bfd9a72007-02-16 01:28:12 -0800238 } else
Thomas Gleixner2456e852016-12-25 11:38:40 +0100239 tsk->signal->it_real_incr = 0;
Thomas Gleixner8bfd9a72007-02-16 01:28:12 -0800240
Xiao Guangrong3f0a5252009-08-10 10:52:30 +0800241 trace_itimer_state(ITIMER_REAL, value, 0);
Thomas Gleixnerbc1978d2006-02-01 03:05:08 -0800242 spin_unlock_irq(&tsk->sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 break;
244 case ITIMER_VIRTUAL:
Stanislaw Gruszka42c4ab42009-07-29 12:15:26 +0200245 set_cpu_itimer(tsk, CPUCLOCK_VIRT, value, ovalue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 break;
247 case ITIMER_PROF:
Stanislaw Gruszka42c4ab42009-07-29 12:15:26 +0200248 set_cpu_itimer(tsk, CPUCLOCK_PROF, value, ovalue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 break;
250 default:
251 return -EINVAL;
252 }
253 return 0;
254}
255
Arnd Bergmannddbc7d02019-10-25 21:37:43 +0200256#ifdef CONFIG_SECURITY_SELINUX
257void clear_itimer(void)
258{
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100259 struct itimerspec64 v = {};
Arnd Bergmannddbc7d02019-10-25 21:37:43 +0200260 int i;
261
262 for (i = 0; i < 3; i++)
263 do_setitimer(i, &v, NULL);
264}
265#endif
266
Nicolas Pitre74ba1812016-11-11 00:10:08 -0500267#ifdef __ARCH_WANT_SYS_ALARM
268
Thomas Gleixnerc08b8a42006-03-25 03:06:33 -0800269/**
270 * alarm_setitimer - set alarm in seconds
271 *
272 * @seconds: number of seconds until alarm
273 * 0 disables the alarm
274 *
275 * Returns the remaining time in seconds of a pending timer or 0 when
276 * the timer is not active.
277 *
278 * On 32 bit machines the seconds value is limited to (INT_MAX/2) to avoid
279 * negative timeval settings which would cause immediate expiry.
280 */
Nicolas Pitre74ba1812016-11-11 00:10:08 -0500281static unsigned int alarm_setitimer(unsigned int seconds)
Thomas Gleixnerc08b8a42006-03-25 03:06:33 -0800282{
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100283 struct itimerspec64 it_new, it_old;
Thomas Gleixnerc08b8a42006-03-25 03:06:33 -0800284
285#if BITS_PER_LONG < 64
286 if (seconds > INT_MAX)
287 seconds = INT_MAX;
288#endif
289 it_new.it_value.tv_sec = seconds;
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100290 it_new.it_value.tv_nsec = 0;
291 it_new.it_interval.tv_sec = it_new.it_interval.tv_nsec = 0;
Thomas Gleixnerc08b8a42006-03-25 03:06:33 -0800292
293 do_setitimer(ITIMER_REAL, &it_new, &it_old);
294
295 /*
296 * We can't return 0 if we have an alarm pending ... And we'd
297 * better return too much than too little anyway
298 */
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100299 if ((!it_old.it_value.tv_sec && it_old.it_value.tv_nsec) ||
Arnd Bergmannb111df82019-11-25 21:25:46 +0100300 it_old.it_value.tv_nsec >= (NSEC_PER_SEC / 2))
Thomas Gleixnerc08b8a42006-03-25 03:06:33 -0800301 it_old.it_value.tv_sec++;
302
303 return it_old.it_value.tv_sec;
304}
305
Nicolas Pitre74ba1812016-11-11 00:10:08 -0500306/*
307 * For backwards compatibility? This can be done in libc so Alpha
308 * and all newer ports shouldn't need it.
309 */
310SYSCALL_DEFINE1(alarm, unsigned int, seconds)
311{
312 return alarm_setitimer(seconds);
313}
314
315#endif
316
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100317static int get_itimerval(struct itimerspec64 *o, const struct itimerval __user *i)
318{
319 struct itimerval v;
320
321 if (copy_from_user(&v, i, sizeof(struct itimerval)))
322 return -EFAULT;
323
324 /* Validate the timevals in value. */
325 if (!timeval_valid(&v.it_value) ||
326 !timeval_valid(&v.it_interval))
327 return -EINVAL;
328
329 o->it_interval.tv_sec = v.it_interval.tv_sec;
330 o->it_interval.tv_nsec = v.it_interval.tv_usec * NSEC_PER_USEC;
331 o->it_value.tv_sec = v.it_value.tv_sec;
332 o->it_value.tv_nsec = v.it_value.tv_usec * NSEC_PER_USEC;
333 return 0;
334}
335
Heiko Carstens362e9c02009-01-14 14:14:07 +0100336SYSCALL_DEFINE3(setitimer, int, which, struct itimerval __user *, value,
337 struct itimerval __user *, ovalue)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338{
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100339 struct itimerspec64 set_buffer, get_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 int error;
341
342 if (value) {
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100343 error = get_itimerval(&set_buffer, value);
344 if (error)
345 return error;
Sasikantha babuaa2bf9b2012-03-21 20:10:54 +0530346 } else {
Thomas Gleixner9886f442012-04-10 10:50:55 +0200347 memset(&set_buffer, 0, sizeof(set_buffer));
348 printk_once(KERN_WARNING "%s calls setitimer() with new_value NULL pointer."
349 " Misfeature support will be removed\n",
350 current->comm);
Sasikantha babuaa2bf9b2012-03-21 20:10:54 +0530351 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
353 error = do_setitimer(which, &set_buffer, ovalue ? &get_buffer : NULL);
354 if (error || !ovalue)
355 return error;
356
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100357 if (put_itimerval(ovalue, &get_buffer))
Daniel Walker0719e372007-10-18 03:06:11 -0700358 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 return 0;
360}
Al Viro54ad9c42017-06-07 09:42:37 +0100361
Arnd Bergmann4c22ea22019-10-25 16:59:39 +0200362#if defined(CONFIG_COMPAT) || defined(CONFIG_ALPHA)
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100363static int get_old_itimerval32(struct itimerspec64 *o, const struct old_itimerval32 __user *i)
Arnd Bergmannc1745f82019-10-25 10:46:22 +0200364{
365 struct old_itimerval32 v32;
366
367 if (copy_from_user(&v32, i, sizeof(struct old_itimerval32)))
368 return -EFAULT;
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100369
370 /* Validate the timevals in value. */
371 if (!timeval_valid(&v32.it_value) ||
372 !timeval_valid(&v32.it_interval))
373 return -EINVAL;
374
Arnd Bergmannc1745f82019-10-25 10:46:22 +0200375 o->it_interval.tv_sec = v32.it_interval.tv_sec;
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100376 o->it_interval.tv_nsec = v32.it_interval.tv_usec * NSEC_PER_USEC;
Arnd Bergmannc1745f82019-10-25 10:46:22 +0200377 o->it_value.tv_sec = v32.it_value.tv_sec;
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100378 o->it_value.tv_nsec = v32.it_value.tv_usec * NSEC_PER_USEC;
Arnd Bergmannc1745f82019-10-25 10:46:22 +0200379 return 0;
380}
381
Al Viro54ad9c42017-06-07 09:42:37 +0100382COMPAT_SYSCALL_DEFINE3(setitimer, int, which,
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100383 struct old_itimerval32 __user *, value,
384 struct old_itimerval32 __user *, ovalue)
Al Viro54ad9c42017-06-07 09:42:37 +0100385{
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100386 struct itimerspec64 set_buffer, get_buffer;
Al Viro54ad9c42017-06-07 09:42:37 +0100387 int error;
388
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100389 if (value) {
390 error = get_old_itimerval32(&set_buffer, value);
391 if (error)
392 return error;
Al Viro54ad9c42017-06-07 09:42:37 +0100393 } else {
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100394 memset(&set_buffer, 0, sizeof(set_buffer));
395 printk_once(KERN_WARNING "%s calls setitimer() with new_value NULL pointer."
396 " Misfeature support will be removed\n",
397 current->comm);
Al Viro54ad9c42017-06-07 09:42:37 +0100398 }
399
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100400 error = do_setitimer(which, &set_buffer, ovalue ? &get_buffer : NULL);
401 if (error || !ovalue)
Al Viro54ad9c42017-06-07 09:42:37 +0100402 return error;
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100403 if (put_old_itimerval32(ovalue, &get_buffer))
Al Viro54ad9c42017-06-07 09:42:37 +0100404 return -EFAULT;
405 return 0;
406}
407#endif