]> git.baikalelectronics.ru Git - kernel.git/commit
net: sctp: check proc_dointvec result in proc_sctp_do_auth
authorDaniel Borkmann <dborkman@redhat.com>
Wed, 18 Jun 2014 21:46:31 +0000 (23:46 +0200)
committerDavid S. Miller <davem@davemloft.net>
Fri, 20 Jun 2014 04:30:19 +0000 (21:30 -0700)
commitefb71d19f0a7bab2acc4c5eab6e9c49d3014fb2a
tree969fd9c03baf1de6f39cd7057adf78eace68936d
parent1530bff4fbf544b512664ae9e3e69bb3937164cf
net: sctp: check proc_dointvec result in proc_sctp_do_auth

When writing to the sysctl field net.sctp.auth_enable, it can well
be that the user buffer we handed over to proc_dointvec() via
proc_sctp_do_auth() handler contains something other than integers.

In that case, we would set an uninitialized 4-byte value from the
stack to net->sctp.auth_enable that can be leaked back when reading
the sysctl variable, and it can unintentionally turn auth_enable
on/off based on the stack content since auth_enable is interpreted
as a boolean.

Fix it up by making sure proc_dointvec() returned sucessfully.

Fixes: 1c1984738b13 ("net: sctp: cache auth_enable per endpoint")
Reported-by: Florian Westphal <fwestpha@redhat.com>
Signed-off-by: Daniel Borkmann <dborkman@redhat.com>
Acked-by: Neil Horman <nhorman@tuxdriver.com>
Acked-by: Vlad Yasevich <vyasevich@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/sctp/sysctl.c