]> git.baikalelectronics.ru Git - kernel.git/commit
cputime: Prevent 32bit overflow in time[val|spec]_to_cputime()
authorzengtao <prime.zeng@huawei.com>
Tue, 2 Feb 2016 03:38:34 +0000 (11:38 +0800)
committerThomas Gleixner <tglx@linutronix.de>
Tue, 2 Feb 2016 14:24:38 +0000 (15:24 +0100)
commit0d5a20dfad2bd7bd173c9aa530e49640500bba5f
tree334714e7872924ab59fe5783d9e6805eb8db9c82
parent4647c720fd42a03c69c68c022db398388a8936d5
cputime: Prevent 32bit overflow in time[val|spec]_to_cputime()

The datatype __kernel_time_t is u32 on 32bit platform, so its subject to
overflows in the timeval/timespec to cputime conversion.

Currently the following functions are affected:
1. setitimer()
2. timer_create/timer_settime()
3. sys_clock_nanosleep

This can happen on MIPS32 and ARM32 with "Full dynticks CPU time accounting"
enabled, which is required for CONFIG_NO_HZ_FULL.

Enforce u64 conversion to prevent the overflow.

Fixes: 2b62c8fb2b0c ("ARM: Kconfig: allow full nohz CPU accounting")
Signed-off-by: zengtao <prime.zeng@huawei.com>
Reviewed-by: Arnd Bergmann <arnd@arndb.de>
Cc: <fweisbec@gmail.com>
Cc: stable@vger.kernel.org
Link: http://lkml.kernel.org/r/1454384314-154784-1-git-send-email-prime.zeng@huawei.com
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
include/asm-generic/cputime_nsecs.h