summaryrefslogtreecommitdiff
path: root/net/sctp
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2020-07-19 10:21:38 +0300
committerDavid S. Miller <davem@davemloft.net>2020-07-20 04:26:41 +0300
commitca84bd058daefef1d184dd0a7b6b43c67339e72c (patch)
tree6ca326ad931708cfaaf757987fc5dc87fc6c2918 /net/sctp
parent9aa0dfe1fc9920ad2224b53f9be748c030f0a12e (diff)
downloadlinux-ca84bd058daefef1d184dd0a7b6b43c67339e72c.tar.xz
sctp: copy the optval from user space in sctp_setsockopt
Prepare for for moving the copy_from_user from the individual sockopts to the main setsockopt helper. As of this commit the kopt variable is not used yet, but the following commits will start using it. Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sctp')
-rw-r--r--net/sctp/socket.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/net/sctp/socket.c b/net/sctp/socket.c
index d57e1a002ffc..af1ebc8313d3 100644
--- a/net/sctp/socket.c
+++ b/net/sctp/socket.c
@@ -4677,6 +4677,7 @@ out:
static int sctp_setsockopt(struct sock *sk, int level, int optname,
char __user *optval, unsigned int optlen)
{
+ void *kopt = NULL;
int retval = 0;
pr_debug("%s: sk:%p, optname:%d\n", __func__, sk, optname);
@@ -4693,6 +4694,12 @@ static int sctp_setsockopt(struct sock *sk, int level, int optname,
goto out_nounlock;
}
+ if (optlen > 0) {
+ kopt = memdup_user(optval, optlen);
+ if (IS_ERR(kopt))
+ return PTR_ERR(kopt);
+ }
+
lock_sock(sk);
switch (optname) {
@@ -4878,6 +4885,7 @@ static int sctp_setsockopt(struct sock *sk, int level, int optname,
}
release_sock(sk);
+ kfree(kopt);
out_nounlock:
return retval;