blob: 00629e658ca196ec1b2c06c4d15fd7e700903ac2 [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 Bergmann4f9fbd82019-11-15 15:53:29 +0100100static int put_itimerval(struct __kernel_old_itimerval __user *o,
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100101 const struct itimerspec64 *i)
102{
Arnd Bergmann4f9fbd82019-11-15 15:53:29 +0100103 struct __kernel_old_itimerval v;
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100104
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;
Arnd Bergmann4f9fbd82019-11-15 15:53:29 +0100109 return copy_to_user(o, &v, sizeof(struct __kernel_old_itimerval)) ? -EFAULT : 0;
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100110}
111
112
Arnd Bergmann4f9fbd82019-11-15 15:53:29 +0100113SYSCALL_DEFINE2(getitimer, int, which, struct __kernel_old_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
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100175 nval = timespec64_to_ns(&value->it_value);
176 ninterval = timespec64_to_ns(&value->it_interval);
Stanislaw Gruszka42c4ab42009-07-29 12:15:26 +0200177
178 spin_lock_irq(&tsk->sighand->siglock);
179
Frederic Weisbecker858cf3a2017-01-31 04:09:35 +0100180 oval = it->expires;
181 ointerval = it->incr;
182 if (oval || nval) {
Martin Schwidefsky64861632011-12-15 14:56:09 +0100183 if (nval > 0)
Frederic Weisbecker858cf3a2017-01-31 04:09:35 +0100184 nval += TICK_NSEC;
185 set_process_cpu_timer(tsk, clock_id, &nval, &oval);
Stanislaw Gruszka42c4ab42009-07-29 12:15:26 +0200186 }
187 it->expires = nval;
188 it->incr = ninterval;
Xiao Guangrong3f0a5252009-08-10 10:52:30 +0800189 trace_itimer_state(clock_id == CPUCLOCK_VIRT ?
190 ITIMER_VIRTUAL : ITIMER_PROF, value, nval);
Stanislaw Gruszka42c4ab42009-07-29 12:15:26 +0200191
192 spin_unlock_irq(&tsk->sighand->siglock);
193
194 if (ovalue) {
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100195 ovalue->it_value = ns_to_timespec64(oval);
196 ovalue->it_interval = ns_to_timespec64(ointerval);
Stanislaw Gruszka42c4ab42009-07-29 12:15:26 +0200197 }
198}
199
Thomas Gleixner7d99b7d2006-03-25 03:06:35 -0800200/*
Thomas Gleixner7d99b7d2006-03-25 03:06:35 -0800201 * Returns true if the timeval is in canonical form
202 */
203#define timeval_valid(t) \
204 (((t)->tv_sec >= 0) && (((unsigned long) (t)->tv_usec) < USEC_PER_SEC))
205
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100206static int do_setitimer(int which, struct itimerspec64 *value,
207 struct itimerspec64 *ovalue)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208{
209 struct task_struct *tsk = current;
Thomas Gleixner2ff678b2006-01-09 20:52:34 -0800210 struct hrtimer *timer;
211 ktime_t expires;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
213 switch (which) {
214 case ITIMER_REAL:
Thomas Gleixnerbc1978d2006-02-01 03:05:08 -0800215again:
216 spin_lock_irq(&tsk->sighand->siglock);
Thomas Gleixner2ff678b2006-01-09 20:52:34 -0800217 timer = &tsk->signal->real_timer;
Thomas Gleixner2ff678b2006-01-09 20:52:34 -0800218 if (ovalue) {
219 ovalue->it_value = itimer_get_remtime(timer);
220 ovalue->it_interval
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100221 = ktime_to_timespec64(tsk->signal->it_real_incr);
Oleg Nesterovf01b1b02005-06-28 20:44:47 -0700222 }
Thomas Gleixnera16a1c02006-02-01 03:05:09 -0800223 /* We are sharing ->siglock with it_real_fn() */
224 if (hrtimer_try_to_cancel(timer) < 0) {
225 spin_unlock_irq(&tsk->sighand->siglock);
Anna-Maria Gleixnerc7e6d702019-07-31 00:33:51 +0200226 hrtimer_cancel_wait_running(timer);
Thomas Gleixnera16a1c02006-02-01 03:05:09 -0800227 goto again;
228 }
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100229 expires = timespec64_to_ktime(value->it_value);
Thomas Gleixner2456e852016-12-25 11:38:40 +0100230 if (expires != 0) {
Thomas Gleixner8bfd9a72007-02-16 01:28:12 -0800231 tsk->signal->it_real_incr =
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100232 timespec64_to_ktime(value->it_interval);
Thomas Gleixnerc9cb2e32007-02-16 01:27:49 -0800233 hrtimer_start(timer, expires, HRTIMER_MODE_REL);
Thomas Gleixner8bfd9a72007-02-16 01:28:12 -0800234 } else
Thomas Gleixner2456e852016-12-25 11:38:40 +0100235 tsk->signal->it_real_incr = 0;
Thomas Gleixner8bfd9a72007-02-16 01:28:12 -0800236
Xiao Guangrong3f0a5252009-08-10 10:52:30 +0800237 trace_itimer_state(ITIMER_REAL, value, 0);
Thomas Gleixnerbc1978d2006-02-01 03:05:08 -0800238 spin_unlock_irq(&tsk->sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 break;
240 case ITIMER_VIRTUAL:
Stanislaw Gruszka42c4ab42009-07-29 12:15:26 +0200241 set_cpu_itimer(tsk, CPUCLOCK_VIRT, value, ovalue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 break;
243 case ITIMER_PROF:
Stanislaw Gruszka42c4ab42009-07-29 12:15:26 +0200244 set_cpu_itimer(tsk, CPUCLOCK_PROF, value, ovalue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 break;
246 default:
247 return -EINVAL;
248 }
249 return 0;
250}
251
Arnd Bergmannddbc7d02019-10-25 21:37:43 +0200252#ifdef CONFIG_SECURITY_SELINUX
253void clear_itimer(void)
254{
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100255 struct itimerspec64 v = {};
Arnd Bergmannddbc7d02019-10-25 21:37:43 +0200256 int i;
257
258 for (i = 0; i < 3; i++)
259 do_setitimer(i, &v, NULL);
260}
261#endif
262
Nicolas Pitre74ba1812016-11-11 00:10:08 -0500263#ifdef __ARCH_WANT_SYS_ALARM
264
Thomas Gleixnerc08b8a42006-03-25 03:06:33 -0800265/**
266 * alarm_setitimer - set alarm in seconds
267 *
268 * @seconds: number of seconds until alarm
269 * 0 disables the alarm
270 *
271 * Returns the remaining time in seconds of a pending timer or 0 when
272 * the timer is not active.
273 *
274 * On 32 bit machines the seconds value is limited to (INT_MAX/2) to avoid
275 * negative timeval settings which would cause immediate expiry.
276 */
Nicolas Pitre74ba1812016-11-11 00:10:08 -0500277static unsigned int alarm_setitimer(unsigned int seconds)
Thomas Gleixnerc08b8a42006-03-25 03:06:33 -0800278{
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100279 struct itimerspec64 it_new, it_old;
Thomas Gleixnerc08b8a42006-03-25 03:06:33 -0800280
281#if BITS_PER_LONG < 64
282 if (seconds > INT_MAX)
283 seconds = INT_MAX;
284#endif
285 it_new.it_value.tv_sec = seconds;
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100286 it_new.it_value.tv_nsec = 0;
287 it_new.it_interval.tv_sec = it_new.it_interval.tv_nsec = 0;
Thomas Gleixnerc08b8a42006-03-25 03:06:33 -0800288
289 do_setitimer(ITIMER_REAL, &it_new, &it_old);
290
291 /*
292 * We can't return 0 if we have an alarm pending ... And we'd
293 * better return too much than too little anyway
294 */
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100295 if ((!it_old.it_value.tv_sec && it_old.it_value.tv_nsec) ||
Arnd Bergmannb111df82019-11-25 21:25:46 +0100296 it_old.it_value.tv_nsec >= (NSEC_PER_SEC / 2))
Thomas Gleixnerc08b8a42006-03-25 03:06:33 -0800297 it_old.it_value.tv_sec++;
298
299 return it_old.it_value.tv_sec;
300}
301
Nicolas Pitre74ba1812016-11-11 00:10:08 -0500302/*
303 * For backwards compatibility? This can be done in libc so Alpha
304 * and all newer ports shouldn't need it.
305 */
306SYSCALL_DEFINE1(alarm, unsigned int, seconds)
307{
308 return alarm_setitimer(seconds);
309}
310
311#endif
312
Arnd Bergmann4f9fbd82019-11-15 15:53:29 +0100313static int get_itimerval(struct itimerspec64 *o, const struct __kernel_old_itimerval __user *i)
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100314{
Arnd Bergmann4f9fbd82019-11-15 15:53:29 +0100315 struct __kernel_old_itimerval v;
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100316
Arnd Bergmann4f9fbd82019-11-15 15:53:29 +0100317 if (copy_from_user(&v, i, sizeof(struct __kernel_old_itimerval)))
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100318 return -EFAULT;
319
320 /* Validate the timevals in value. */
321 if (!timeval_valid(&v.it_value) ||
322 !timeval_valid(&v.it_interval))
323 return -EINVAL;
324
325 o->it_interval.tv_sec = v.it_interval.tv_sec;
326 o->it_interval.tv_nsec = v.it_interval.tv_usec * NSEC_PER_USEC;
327 o->it_value.tv_sec = v.it_value.tv_sec;
328 o->it_value.tv_nsec = v.it_value.tv_usec * NSEC_PER_USEC;
329 return 0;
330}
331
Arnd Bergmann4f9fbd82019-11-15 15:53:29 +0100332SYSCALL_DEFINE3(setitimer, int, which, struct __kernel_old_itimerval __user *, value,
333 struct __kernel_old_itimerval __user *, ovalue)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334{
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100335 struct itimerspec64 set_buffer, get_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 int error;
337
338 if (value) {
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100339 error = get_itimerval(&set_buffer, value);
340 if (error)
341 return error;
Sasikantha babuaa2bf9b2012-03-21 20:10:54 +0530342 } else {
Thomas Gleixner9886f442012-04-10 10:50:55 +0200343 memset(&set_buffer, 0, sizeof(set_buffer));
344 printk_once(KERN_WARNING "%s calls setitimer() with new_value NULL pointer."
345 " Misfeature support will be removed\n",
346 current->comm);
Sasikantha babuaa2bf9b2012-03-21 20:10:54 +0530347 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
349 error = do_setitimer(which, &set_buffer, ovalue ? &get_buffer : NULL);
350 if (error || !ovalue)
351 return error;
352
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100353 if (put_itimerval(ovalue, &get_buffer))
Daniel Walker0719e372007-10-18 03:06:11 -0700354 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 return 0;
356}
Al Viro54ad9c42017-06-07 09:42:37 +0100357
Arnd Bergmann4c22ea22019-10-25 16:59:39 +0200358#if defined(CONFIG_COMPAT) || defined(CONFIG_ALPHA)
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100359static int get_old_itimerval32(struct itimerspec64 *o, const struct old_itimerval32 __user *i)
Arnd Bergmannc1745f82019-10-25 10:46:22 +0200360{
361 struct old_itimerval32 v32;
362
363 if (copy_from_user(&v32, i, sizeof(struct old_itimerval32)))
364 return -EFAULT;
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100365
366 /* Validate the timevals in value. */
367 if (!timeval_valid(&v32.it_value) ||
368 !timeval_valid(&v32.it_interval))
369 return -EINVAL;
370
Arnd Bergmannc1745f82019-10-25 10:46:22 +0200371 o->it_interval.tv_sec = v32.it_interval.tv_sec;
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100372 o->it_interval.tv_nsec = v32.it_interval.tv_usec * NSEC_PER_USEC;
Arnd Bergmannc1745f82019-10-25 10:46:22 +0200373 o->it_value.tv_sec = v32.it_value.tv_sec;
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100374 o->it_value.tv_nsec = v32.it_value.tv_usec * NSEC_PER_USEC;
Arnd Bergmannc1745f82019-10-25 10:46:22 +0200375 return 0;
376}
377
Al Viro54ad9c42017-06-07 09:42:37 +0100378COMPAT_SYSCALL_DEFINE3(setitimer, int, which,
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100379 struct old_itimerval32 __user *, value,
380 struct old_itimerval32 __user *, ovalue)
Al Viro54ad9c42017-06-07 09:42:37 +0100381{
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100382 struct itimerspec64 set_buffer, get_buffer;
Al Viro54ad9c42017-06-07 09:42:37 +0100383 int error;
384
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100385 if (value) {
386 error = get_old_itimerval32(&set_buffer, value);
387 if (error)
388 return error;
Al Viro54ad9c42017-06-07 09:42:37 +0100389 } else {
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100390 memset(&set_buffer, 0, sizeof(set_buffer));
391 printk_once(KERN_WARNING "%s calls setitimer() with new_value NULL pointer."
392 " Misfeature support will be removed\n",
393 current->comm);
Al Viro54ad9c42017-06-07 09:42:37 +0100394 }
395
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100396 error = do_setitimer(which, &set_buffer, ovalue ? &get_buffer : NULL);
397 if (error || !ovalue)
Al Viro54ad9c42017-06-07 09:42:37 +0100398 return error;
Arnd Bergmannbd40a172019-11-07 15:27:39 +0100399 if (put_old_itimerval32(ovalue, &get_buffer))
Al Viro54ad9c42017-06-07 09:42:37 +0100400 return -EFAULT;
401 return 0;
402}
403#endif