Skip to content

Commit 075de21

Browse files
lxinwtarreau
authored andcommitted
sctp: listen on the sock only when it's state is listening or closed
commit 34b2789 upstream. 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: Willy Tarreau <w@1wt.eu>
1 parent 4d1b81c commit 075de21

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

net/sctp/socket.c

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

6184+
if (!sctp_sstate(sk, LISTENING) && !sctp_sstate(sk, CLOSED))
6185+
goto out;
6186+
61846187
/* If backlog is zero, disable listening. */
61856188
if (!backlog) {
61866189
if (sctp_sstate(sk, CLOSED))

0 commit comments

Comments
 (0)