Fix two bugs, which result in a panic when calling getsockopt()
using SCTP_RECVINFO or SCTP_NXTINFO. Reported by Clement Lecigne and forwarded to us by zi@. MFC after: 3 days.
This commit is contained in:
parent
61d4638e52
commit
8de4bcc1f7
@ -3019,7 +3019,7 @@ sctp_getopt(struct socket *so, int optname, void *optval, size_t *optsize,
|
||||
SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL);
|
||||
error = EINVAL;
|
||||
} else {
|
||||
SCTP_INP_RUNLOCK(inp);
|
||||
SCTP_INP_RLOCK(inp);
|
||||
onoff = sctp_is_feature_on(inp, SCTP_PCB_FLAGS_RECVRCVINFO);
|
||||
SCTP_INP_RUNLOCK(inp);
|
||||
}
|
||||
@ -3038,7 +3038,7 @@ sctp_getopt(struct socket *so, int optname, void *optval, size_t *optsize,
|
||||
SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_USRREQ, EINVAL);
|
||||
error = EINVAL;
|
||||
} else {
|
||||
SCTP_INP_RUNLOCK(inp);
|
||||
SCTP_INP_RLOCK(inp);
|
||||
onoff = sctp_is_feature_on(inp, SCTP_PCB_FLAGS_RECVNXTINFO);
|
||||
SCTP_INP_RUNLOCK(inp);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user