sctp: listen on the sock only when it's state is listening or closed
authorXin Long <lucien.xin@gmail.com>
Thu, 6 Apr 2017 05:10:52 +0000 (13:10 +0800)
committerWilly Tarreau <w@1wt.eu>
Tue, 20 Jun 2017 12:04:51 +0000 (14:04 +0200)
commit075de215620bbd06c0aa075c6b983143352530ed
tree9dd3fd14757356f06326e7817b98e32aabf08d15
parent4d1b81c2669bc6ab4ff24d649c876469aba412a9
sctp: listen on the sock only when it's state is listening or closed

commit 34b2789f1d9bf8dcca9b5cb553d076ca2cd898ee 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>
net/sctp/socket.c