]> git.baikalelectronics.ru Git - kernel.git/commit
sctp: trim optlen when it's a huge value in sctp_setsockopt
authorXin Long <lucien.xin@gmail.com>
Sat, 17 Jul 2021 21:19:19 +0000 (17:19 -0400)
committerDavid S. Miller <davem@davemloft.net>
Sun, 18 Jul 2021 16:47:29 +0000 (09:47 -0700)
commit28583e22965d79c070bf76ca31914ff4bdbd8ae6
tree9327d196065b7c7164ad6aefb4c229b12b881ec2
parent2194a29f25e3c74ef93391cce6af026ed532ca37
sctp: trim optlen when it's a huge value in sctp_setsockopt

After commit 00ee45da04e4 ("sctp: copy the optval from user space in
sctp_setsockopt"), it does memory allocation in sctp_setsockopt with
the optlen, and it would fail the allocation and return error if the
optlen from user space is a huge value.

This breaks some sockopts, like SCTP_HMAC_IDENT, SCTP_RESET_STREAMS and
SCTP_AUTH_KEY, as when processing these sockopts before, optlen would
be trimmed to a biggest value it needs when optlen is a huge value,
instead of failing the allocation and returning error.

This patch is to fix the allocation failure when it's a huge optlen from
user space by trimming it to the biggest size sctp sockopt may need when
necessary, and this biggest size is from sctp_setsockopt_reset_streams()
for SCTP_RESET_STREAMS, which is bigger than those for SCTP_HMAC_IDENT
and SCTP_AUTH_KEY.

Fixes: 00ee45da04e4 ("sctp: copy the optval from user space in sctp_setsockopt")
Signed-off-by: Xin Long <lucien.xin@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/sctp/socket.c