diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2017-06-20 11:37:35 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2017-06-20 15:33:56 -0400 |
commit | 35eb7258c009dc478338e674a5a84d25d0929c56 (patch) | |
tree | 7fae943ef2569bf8db0a2e76b60c6027698f3760 | |
parent | d15bc69affc57d7985a01745ca28eafa0772325b (diff) |
itimer: Make timeval to nsec conversion range limited
The expiry time of a itimer is supplied through sys_setitimer() via a
struct timeval. The timeval is validated for correctness.
In the actual set timer implementation the timeval is converted to a
scalar nanoseconds value. If the tv_sec part of the time spec is large
enough the conversion to nanoseconds (sec * NSEC_PER_SEC) overflows 64bit.
Mitigate that by using the timeval_to_ktime() conversion function, which
checks the tv_sec part for a potential mult overflow and clamps the result
to KTIME_MAX, which is about 292 years.
Reported-by: Xishi Qiu <qiuxishi@huawei.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: John Stultz <john.stultz@linaro.org>
Link: http://lkml.kernel.org/r/20170620154113.505981643@linutronix.de
-rw-r--r-- | kernel/time/itimer.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/kernel/time/itimer.c b/kernel/time/itimer.c index 9dd7ff5e445a..2ef98a02376a 100644 --- a/kernel/time/itimer.c +++ b/kernel/time/itimer.c | |||
@@ -152,8 +152,12 @@ static void set_cpu_itimer(struct task_struct *tsk, unsigned int clock_id, | |||
152 | u64 oval, nval, ointerval, ninterval; | 152 | u64 oval, nval, ointerval, ninterval; |
153 | struct cpu_itimer *it = &tsk->signal->it[clock_id]; | 153 | struct cpu_itimer *it = &tsk->signal->it[clock_id]; |
154 | 154 | ||
155 | nval = timeval_to_ns(&value->it_value); | 155 | /* |
156 | ninterval = timeval_to_ns(&value->it_interval); | 156 | * Use the to_ktime conversion because that clamps the maximum |
157 | * value to KTIME_MAX and avoid multiplication overflows. | ||
158 | */ | ||
159 | nval = ktime_to_ns(timeval_to_ktime(value->it_value)); | ||
160 | ninterval = ktime_to_ns(timeval_to_ktime(value->it_interval)); | ||
157 | 161 | ||
158 | spin_lock_irq(&tsk->sighand->siglock); | 162 | spin_lock_irq(&tsk->sighand->siglock); |
159 | 163 | ||