net: socket: fix potential spectre v1 gadget in socketcall
authorJeremy Cline <jcline@redhat.com>
Fri, 27 Jul 2018 22:43:01 +0000 (22:43 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 6 Aug 2018 14:23:04 +0000 (16:23 +0200)
commit9a492f8c716465a8ed40590f7cbcd2ad6ff1b6c3
tree7b62e48c303c7fa6e2f2983895c581f11eb3080d
parent18d971807db59b4f31a4cdde30c2353f9d4048d1
net: socket: fix potential spectre v1 gadget in socketcall

commit c8e8cd579bb4265651df8223730105341e61a2d1 upstream.

'call' is a user-controlled value, so sanitize the array index after the
bounds check to avoid speculating past the bounds of the 'nargs' array.

Found with the help of Smatch:

net/socket.c:2508 __do_sys_socketcall() warn: potential spectre issue
'nargs' [r] (local cap)

Cc: Josh Poimboeuf <jpoimboe@redhat.com>
Cc: stable@vger.kernel.org
Signed-off-by: Jeremy Cline <jcline@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
net/socket.c