OSDN Git Service

sctp: shrink stream outq when fails to do addstream reconf
authorXin Long <lucien.xin@gmail.com>
Wed, 22 Jul 2020 15:52:12 +0000 (23:52 +0800)
committerDavid S. Miller <davem@davemloft.net>
Thu, 23 Jul 2020 01:00:12 +0000 (18:00 -0700)
commit3ecdda3e9ad837cf9cb41b6faa11b1af3a5abc0c
tree7dc67a758ccf1a5a6d934d2fa295e65aee84d53f
parent8f13399db22f909a35735bf8ae2f932e0c8f0e30
sctp: shrink stream outq when fails to do addstream reconf

When adding a stream with stream reconf, the new stream firstly is in
CLOSED state but new out chunks can still be enqueued. Then once gets
the confirmation from the peer, the state will change to OPEN.

However, if the peer denies, it needs to roll back the stream. But when
doing that, it only sets the stream outcnt back, and the chunks already
in the new stream don't get purged. It caused these chunks can still be
dequeued in sctp_outq_dequeue_data().

As its stream is still in CLOSE, the chunk will be enqueued to the head
again by sctp_outq_head_data(). This chunk will never be sent out, and
the chunks after it can never be dequeued. The assoc will be 'hung' in
a dead loop of sending this chunk.

To fix it, this patch is to purge these chunks already in the new
stream by calling sctp_stream_shrink_out() when failing to do the
addstream reconf.

Fixes: 11ae76e67a17 ("sctp: implement receiver-side procedures for the Reconf Response Parameter")
Reported-by: Ying Xu <yinxu@redhat.com>
Signed-off-by: Xin Long <lucien.xin@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/sctp/stream.c