Skip to content

Commit 52e33b4

Browse files
lxingregkh
authored andcommitted
sctp: listen on the sock only when it's state is listening or closed
[ Upstream commit 34b2789f1d9bf8dcca9b5cb553d076ca2cd898ee ] Now sctp doesn't check sock's state before listening on it. It could even cause changing a sock with any state to become a listening sock when doing sctp_listen. This patch is to fix it by checking sock's state in sctp_listen, so that it will listen on the sock with right state. Reported-by: Andrey Konovalov <andreyknvl@google.com> Tested-by: Andrey Konovalov <andreyknvl@google.com> Signed-off-by: Xin Long <lucien.xin@gmail.com> Acked-by: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent cc5a5c0 commit 52e33b4

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

net/sctp/socket.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6394,6 +6394,9 @@ int sctp_inet_listen(struct socket *sock, int backlog)
63946394
if (sock->state != SS_UNCONNECTED)
63956395
goto out;
63966396

6397+
if (!sctp_sstate(sk, LISTENING) && !sctp_sstate(sk, CLOSED))
6398+
goto out;
6399+
63976400
/* If backlog is zero, disable listening. */
63986401
if (!backlog) {
63996402
if (sctp_sstate(sk, CLOSED))

0 commit comments

Comments
 (0)