Skip to content

Commit 24599e6

Browse files
Daniel Borkmanndavem330
authored andcommitted
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: b14878c ("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>
1 parent 40c1dea commit 24599e6

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

net/sctp/sysctl.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -447,8 +447,7 @@ static int proc_sctp_do_auth(struct ctl_table *ctl, int write,
447447
tbl.data = &net->sctp.auth_enable;
448448

449449
ret = proc_dointvec(&tbl, write, buffer, lenp, ppos);
450-
451-
if (write) {
450+
if (write && ret == 0) {
452451
struct sock *sk = net->sctp.ctl_sock;
453452

454453
net->sctp.auth_enable = new_value;

0 commit comments

Comments
 (0)