]> git.baikalelectronics.ru Git - kernel.git/commit
sctp: improve the events for sctp stream reset
authorXin Long <lucien.xin@gmail.com>
Mon, 21 Jan 2019 18:39:34 +0000 (02:39 +0800)
committerDavid S. Miller <davem@davemloft.net>
Fri, 25 Jan 2019 02:13:57 +0000 (18:13 -0800)
commit1c2046d1996de257fbc83634e4c5cec387fdb6fd
tree46760a0fe26bdfc8fcba0805c95c7918e7880516
parent669927bd14f158766a94f662df3a107650097a5c
sctp: improve the events for sctp stream reset

This patch is to improve sctp stream reset events in 4 places:

  1. In sctp_process_strreset_outreq(), the flag should always be set with
     SCTP_STREAM_RESET_INCOMING_SSN instead of OUTGOING, as receiver's in
     stream is reset here.
  2. In sctp_process_strreset_outreq(), move up SCTP_STRRESET_ERR_WRONG_SSN
     check, as the reset has to succeed after reconf_timer stops for the
     in stream reset request retransmission.
  3. In sctp_process_strreset_inreq(), no event should be sent, as no in
     or out stream is reset here.
  4. In sctp_process_strreset_resp(), SCTP_STREAM_RESET_INCOMING_SSN or
     OUTGOING event should always be sent for stream reset requests, no
     matter it fails or succeeds to process the request.

Fixes: 57d2add4df54 ("sctp: implement receiver-side procedures for the Outgoing SSN Reset Request Parameter")
Fixes: 7d887d0f1622 ("sctp: implement receiver-side procedures for the Incoming SSN Reset Request Parameter")
Fixes: 78f4b63a7b71 ("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