projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1352130
)
futex: Prevent overflow by strengthen input validation
author
Li Jinyue
<lijinyue@huawei.com>
Thu, 14 Dec 2017 09:04:54 +0000
(17:04 +0800)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Tue, 23 Jan 2018 18:58:11 +0000
(19:58 +0100)
commit
fbe0e839d1e22d88810f3ee3e2f1479be4c0aa4a
upstream.
UBSAN reports signed integer overflow in kernel/futex.c:
UBSAN: Undefined behaviour in kernel/futex.c:2041:18
signed integer overflow:
0 - -
2147483648
cannot be represented in type 'int'
Add a sanity check to catch negative values of nr_wake and nr_requeue.
Signed-off-by: Li Jinyue <lijinyue@huawei.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: peterz@infradead.org
Cc: dvhart@infradead.org
Link:
https://lkml.kernel.org/r/1513242294-31786-1-git-send-email-lijinyue@huawei.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
kernel/futex.c
patch
|
blob
|
history
diff --git
a/kernel/futex.c
b/kernel/futex.c
index 29ac5b64e7c7f5a039e607ea81dccbd30a966a8e..52b3f47031580f225ea2a56753dc6e66221af146 100644
(file)
--- a/
kernel/futex.c
+++ b/
kernel/futex.c
@@
-1878,6
+1878,9
@@
static int futex_requeue(u32 __user *uaddr1, unsigned int flags,
struct futex_q *this, *next;
DEFINE_WAKE_Q(wake_q);
+ if (nr_wake < 0 || nr_requeue < 0)
+ return -EINVAL;
+
/*
* When PI not supported: return -ENOSYS if requeue_pi is true,
* consequently the compiler knows requeue_pi is always false past