sctp: pass a kernel pointer to sctp_setsockopt_enable_strreset
Use the kernel pointer that sctp_setsockopt has available instead of directly handling the user pointer. Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
3f49f72035
commit
356dc6f16a
@ -4019,48 +4019,42 @@ out:
|
||||
}
|
||||
|
||||
static int sctp_setsockopt_enable_strreset(struct sock *sk,
|
||||
char __user *optval,
|
||||
struct sctp_assoc_value *params,
|
||||
unsigned int optlen)
|
||||
{
|
||||
struct sctp_endpoint *ep = sctp_sk(sk)->ep;
|
||||
struct sctp_assoc_value params;
|
||||
struct sctp_association *asoc;
|
||||
int retval = -EINVAL;
|
||||
|
||||
if (optlen != sizeof(params))
|
||||
if (optlen != sizeof(*params))
|
||||
goto out;
|
||||
|
||||
if (copy_from_user(¶ms, optval, optlen)) {
|
||||
retval = -EFAULT;
|
||||
goto out;
|
||||
}
|
||||
|
||||
if (params.assoc_value & (~SCTP_ENABLE_STRRESET_MASK))
|
||||
if (params->assoc_value & (~SCTP_ENABLE_STRRESET_MASK))
|
||||
goto out;
|
||||
|
||||
asoc = sctp_id2assoc(sk, params.assoc_id);
|
||||
if (!asoc && params.assoc_id > SCTP_ALL_ASSOC &&
|
||||
asoc = sctp_id2assoc(sk, params->assoc_id);
|
||||
if (!asoc && params->assoc_id > SCTP_ALL_ASSOC &&
|
||||
sctp_style(sk, UDP))
|
||||
goto out;
|
||||
|
||||
retval = 0;
|
||||
|
||||
if (asoc) {
|
||||
asoc->strreset_enable = params.assoc_value;
|
||||
asoc->strreset_enable = params->assoc_value;
|
||||
goto out;
|
||||
}
|
||||
|
||||
if (sctp_style(sk, TCP))
|
||||
params.assoc_id = SCTP_FUTURE_ASSOC;
|
||||
params->assoc_id = SCTP_FUTURE_ASSOC;
|
||||
|
||||
if (params.assoc_id == SCTP_FUTURE_ASSOC ||
|
||||
params.assoc_id == SCTP_ALL_ASSOC)
|
||||
ep->strreset_enable = params.assoc_value;
|
||||
if (params->assoc_id == SCTP_FUTURE_ASSOC ||
|
||||
params->assoc_id == SCTP_ALL_ASSOC)
|
||||
ep->strreset_enable = params->assoc_value;
|
||||
|
||||
if (params.assoc_id == SCTP_CURRENT_ASSOC ||
|
||||
params.assoc_id == SCTP_ALL_ASSOC)
|
||||
if (params->assoc_id == SCTP_CURRENT_ASSOC ||
|
||||
params->assoc_id == SCTP_ALL_ASSOC)
|
||||
list_for_each_entry(asoc, &ep->asocs, asocs)
|
||||
asoc->strreset_enable = params.assoc_value;
|
||||
asoc->strreset_enable = params->assoc_value;
|
||||
|
||||
out:
|
||||
return retval;
|
||||
@ -4685,7 +4679,7 @@ static int sctp_setsockopt(struct sock *sk, int level, int optname,
|
||||
retval = sctp_setsockopt_reconfig_supported(sk, kopt, optlen);
|
||||
break;
|
||||
case SCTP_ENABLE_STREAM_RESET:
|
||||
retval = sctp_setsockopt_enable_strreset(sk, optval, optlen);
|
||||
retval = sctp_setsockopt_enable_strreset(sk, kopt, optlen);
|
||||
break;
|
||||
case SCTP_RESET_STREAMS:
|
||||
retval = sctp_setsockopt_reset_streams(sk, optval, optlen);
|
||||
|
Loading…
Reference in New Issue
Block a user