]> git.karo-electronics.de Git - karo-tx-linux.git/commit
sctp: process duplicated strreset asoc request correctly
authorXin Long <lucien.xin@gmail.com>
Sat, 15 Apr 2017 14:00:29 +0000 (22:00 +0800)
committerDavid S. Miller <davem@davemloft.net>
Tue, 18 Apr 2017 17:39:50 +0000 (13:39 -0400)
commit6c80138773efff75ee9598b4ebcd7aa0e3a5a2a3
tree0f59585517a6666b758588f06c413f12b75c1f89
parentd0f025e611581169c81e3c0fc44b5133d12748dd
sctp: process duplicated strreset asoc request correctly

This patch is to fix the replay attack issue for strreset asoc requests.

When a duplicated strreset asoc request is received, reply it with bad
seqno if it's seqno < asoc->strreset_inseq - 2, and reply it with the
result saved in asoc if it's seqno >= asoc->strreset_inseq - 2.

But note that if the result saved in asoc is performed, the sender's next
tsn and receiver's next tsn for the response chunk should be set. It's
safe to get them from asoc. Because if it's changed, which means the peer
has received the response already, the new response with wrong tsn won't
be accepted by peer.

Signed-off-by: Xin Long <lucien.xin@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/sctp/stream.c