Ensure that the number of stream reported in srs_number_streams is
consistent with the amount of data provided in the SCTP_RESET_STREAMS socket option. Thanks to Peter Bostroem from Google for drawing my attention to this part of the code.
This commit is contained in:
parent
5c6af4bbf5
commit
e29127de2e
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=272750
@ -4431,6 +4431,12 @@ sctp_setopt(struct socket *so, int optname, void *optval, size_t optsize,
|
||||
SCTP_TCB_UNLOCK(stcb);
|
||||
break;
|
||||
}
|
||||
if (sizeof(struct sctp_reset_streams) +
|
||||
strrst->srs_number_streams * sizeof(uint16_t) > optsize) {
|
||||
error = EINVAL;
|
||||
SCTP_TCB_UNLOCK(stcb);
|
||||
break;
|
||||
}
|
||||
if (stcb->asoc.stream_reset_outstanding) {
|
||||
SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EALREADY);
|
||||
error = EALREADY;
|
||||
|
Loading…
Reference in New Issue
Block a user