diff options
author | Zev Weiss <zev@bewilderbeest.net> | 2019-03-12 02:28:02 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2019-03-12 13:04:00 -0400 |
commit | 8cf7630b29701d364f8df4a50e4f1f5e752b2778 (patch) | |
tree | c321055315f9bdfcd4350ee37f84f32db569965f /kernel/sysctl.c | |
parent | fec52486682f7b3af2ffc28bcacc6e2ad6f7e1e6 (diff) |
kernel/sysctl.c: add missing range check in do_proc_dointvec_minmax_conv
This bug has apparently existed since the introduction of this function
in the pre-git era (4500e91754d3 in Thomas Gleixner's history.git,
"[NET]: Add proc_dointvec_userhz_jiffies, use it for proper handling of
neighbour sysctls.").
As a minimal fix we can simply duplicate the corresponding check in
do_proc_dointvec_conv().
Link: http://lkml.kernel.org/r/20190207123426.9202-3-zev@bewilderbeest.net
Signed-off-by: Zev Weiss <zev@bewilderbeest.net>
Cc: Brendan Higgins <brendanhiggins@google.com>
Cc: Iurii Zaikin <yzaikin@google.com>
Cc: Kees Cook <keescook@chromium.org>
Cc: Luis Chamberlain <mcgrof@kernel.org>
Cc: <stable@vger.kernel.org> [2.6.2+]
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'kernel/sysctl.c')
-rw-r--r-- | kernel/sysctl.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/kernel/sysctl.c b/kernel/sysctl.c index 7bb3988425ee..0854197e0e67 100644 --- a/kernel/sysctl.c +++ b/kernel/sysctl.c | |||
@@ -2645,7 +2645,16 @@ static int do_proc_dointvec_minmax_conv(bool *negp, unsigned long *lvalp, | |||
2645 | { | 2645 | { |
2646 | struct do_proc_dointvec_minmax_conv_param *param = data; | 2646 | struct do_proc_dointvec_minmax_conv_param *param = data; |
2647 | if (write) { | 2647 | if (write) { |
2648 | int val = *negp ? -*lvalp : *lvalp; | 2648 | int val; |
2649 | if (*negp) { | ||
2650 | if (*lvalp > (unsigned long) INT_MAX + 1) | ||
2651 | return -EINVAL; | ||
2652 | val = -*lvalp; | ||
2653 | } else { | ||
2654 | if (*lvalp > (unsigned long) INT_MAX) | ||
2655 | return -EINVAL; | ||
2656 | val = *lvalp; | ||
2657 | } | ||
2649 | if ((param->min && *param->min > val) || | 2658 | if ((param->min && *param->min > val) || |
2650 | (param->max && *param->max < val)) | 2659 | (param->max && *param->max < val)) |
2651 | return -EINVAL; | 2660 | return -EINVAL; |