Skip to content

Commit

Permalink
sctp: pass a kernel pointer to sctp_setsockopt_enable_strreset
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Christoph Hellwig authored and David S. Miller committed Jul 20, 2020
1 parent 3f49f72 commit 356dc6f
Showing 1 changed file with 14 additions and 20 deletions.
34 changes: 14 additions & 20 deletions net/sctp/socket.c
Original file line number Diff line number Diff line change
Expand Up @@ -4019,48 +4019,42 @@ static int sctp_setsockopt_reconfig_supported(struct sock *sk,
}

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))
goto out;

if (copy_from_user(&params, optval, optlen)) {
retval = -EFAULT;
if (optlen != sizeof(*params))
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;
Expand Down Expand Up @@ -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);
Expand Down

0 comments on commit 356dc6f

Please sign in to comment.