From nobody Thu Mar 28 08:53:05 2024 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id DC93AC7EE2E for ; Mon, 22 May 2023 13:51:51 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233698AbjEVNvt (ORCPT ); Mon, 22 May 2023 09:51:49 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:59160 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233791AbjEVNvl (ORCPT ); Mon, 22 May 2023 09:51:41 -0400 Received: from mail-wm1-f48.google.com (mail-wm1-f48.google.com [209.85.128.48]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id E7805CF; Mon, 22 May 2023 06:51:15 -0700 (PDT) Received: by mail-wm1-f48.google.com with SMTP id 5b1f17b1804b1-3f42b984405so37824795e9.3; Mon, 22 May 2023 06:51:15 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20221208; t=1684763474; x=1687355474; h=content-transfer-encoding:mime-version:message-id:date:subject:cc :to:from:x-gm-message-state:from:to:cc:subject:date:message-id :reply-to; bh=xee5lqK7NHItHXHBorO6AiiOFvx7xs0BYnWrgvXREqo=; b=YJXOS1BjhL0lMKTTvKdfc2ItRemRkBfNM9T6qq5IofIxdilrtjVU28pR2yWMQ5NUTR iELrGB2MssOCwlPUKDgWy10g0h2fzGmW/x2XLYfjNMIqMNK4roJBlrGDA6MJhKU0hglB yFbIpSQ3bDKx7uR3iyG/ZfY19dDL0tYmb3v7mMHkENQ4r2BuUEx/PR3I7tWw4BAGRtN4 m/biNmRITX3sWlbKQArpOJYlea3QuhxNJj03Yr0wwT+UUUocJOP8X7JbeZ8XgsOKk74y +eUf5ygx2IU+cuTlzsu+yG6U+6IgmTAXTj9/F4cBA8lm9MNWESH0TtwethnjSdD6Q6uQ L74g== X-Gm-Message-State: AC+VfDx+GYUc8EGoelSjBZb9LCipxP7s0tXr46OBP3vM3xx2RfVpNEuU xTUwAD3HzV7nCA5oVfN7hKo= X-Google-Smtp-Source: ACHHUZ4TAMkaweiMhZirz98E9RYPTQsIDW902hhfytq4f8fZ13HDj6TRjwg4w6FaQJTlM7bTCJenoA== X-Received: by 2002:adf:e642:0:b0:306:3a47:cd78 with SMTP id b2-20020adfe642000000b003063a47cd78mr7636293wrn.71.1684763473922; Mon, 22 May 2023 06:51:13 -0700 (PDT) Received: from localhost (fwdproxy-cln-002.fbsv.net. [2a03:2880:31ff:2::face:b00c]) by smtp.gmail.com with ESMTPSA id w6-20020a5d6086000000b003064600cff9sm7797623wrt.38.2023.05.22.06.51.12 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 22 May 2023 06:51:13 -0700 (PDT) From: Breno Leitao To: "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , Alexander Aring , Stefan Schmidt , Miquel Raynal , David Ahern , Willem de Bruijn , Matthieu Baerts , Mat Martineau , Remi Denis-Courmont , Marcelo Ricardo Leitner , Xin Long Cc: leit@fb.com, linux-kernel@vger.kernel.org, netdev@vger.kernel.org, dccp@vger.kernel.org, linux-wpan@vger.kernel.org, mptcp@lists.linux.dev, linux-sctp@vger.kernel.org Subject: [PATCH v2] net: ioctl: Use kernel memory on protocol ioctl callbacks Date: Mon, 22 May 2023 06:47:31 -0700 Message-Id: <20230522134735.2810070-1-leitao@debian.org> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" Most of the ioctls to net protocols operates directly on userspace argument (arg). Usually doing get_user()/put_user() directly in the ioctl callback. This is not flexible, because it is hard to reuse these functions without passing userspace buffers. Change the "struct proto" ioctls to avoid touching userspace memory and operate on kernel buffers, i.e., all protocol's ioctl callbacks is adapted to operate on a kernel memory other than on userspace (so, no more {put,get}_user() and friends being called in the ioctl callback). This changes the "struct proto" ioctl format in the following way: int (*ioctl)(struct sock *sk, int cmd, - unsigned long arg); + int *karg); So, the "karg" argument, which is passed to the ioctl callback, is a pointer allocated to kernel space memory (inside a function wrapper - sk_ioctl()). This buffer (karg) may contain input argument (copied from userspace in a prep function) and it might return a value/buffer, which is copied back to userspace if necessary. There is not one-size-fits-all format (that is I am using 'may' above), but basically, there are three type of ioctls: 1) Do not read from userspace, returns a result to userspace 2) Read an input parameter from userspace, and does not return anything to userspace 3) Read an input from userspace, and return a buffer to userspace. The default case (1) (where no input parameter is given, and an "int" is returned to userspace) encompasses more than 90% of the cases, but there are two other exceptions. Here is a list of exceptions: * Protocol RAW: * cmd =3D SIOCGETVIFCNT: * input and output =3D struct sioc_vif_req * cmd =3D SIOCGETSGCNT * input and output =3D struct sioc_sg_req * Explanation: for the SIOCGETVIFCNT case, userspace passes the input argument, which is struct sioc_vif_req. Then the callback populates the struct, which is copied back to userspace. * Protocol RAW6: * cmd =3D SIOCGETMIFCNT_IN6 * input and output =3D struct sioc_mif_req6 * cmd =3D SIOCGETSGCNT_IN6 * input and output =3D struct sioc_sg_req6 * Protocol PHONET: * cmd =3D=3D SIOCPNADDRESOURCE | SIOCPNDELRESOURCE * input int (4 bytes) * Nothing is copied back to userspace. For the exception cases, functions sk_ioctl_in{out}() will copy the userspace input, and copy it back to kernel space. The wrapper that prepare the buffer and put the buffer back to user is sk_ioctl(), so, instead of calling sk->sk_prot->ioctl(), the callee now calls sk_ioctl(), which will handle all cases. Signed-off-by: Breno Leitao -- V1 -> V2: * Rename mouthful functions to have saner names * Make functions statics and export sk_ioctl() * Allocate kernel structures at sk_ioctl() --- include/linux/mroute.h | 4 +- include/linux/mroute6.h | 4 +- include/net/sock.h | 3 +- include/net/tcp.h | 2 +- include/net/udp.h | 2 +- net/core/sock.c | 112 ++++++++++++++++++++++++++++++++++++++++ net/dccp/dccp.h | 2 +- net/dccp/proto.c | 12 ++--- net/ieee802154/socket.c | 15 +++--- net/ipv4/af_inet.c | 2 +- net/ipv4/ipmr.c | 41 ++++++--------- net/ipv4/raw.c | 16 +++--- net/ipv4/tcp.c | 5 +- net/ipv4/udp.c | 12 ++--- net/ipv6/af_inet6.c | 2 +- net/ipv6/ip6mr.c | 43 ++++++--------- net/ipv6/raw.c | 16 +++--- net/l2tp/l2tp_core.h | 2 +- net/l2tp/l2tp_ip.c | 9 ++-- net/mptcp/protocol.c | 11 ++-- net/phonet/datagram.c | 11 ++-- net/phonet/pep.c | 11 ++-- net/phonet/socket.c | 2 +- net/sctp/socket.c | 8 +-- 24 files changed, 218 insertions(+), 129 deletions(-) diff --git a/include/linux/mroute.h b/include/linux/mroute.h index 80b8400ab8b2..dec4815a85b2 100644 --- a/include/linux/mroute.h +++ b/include/linux/mroute.h @@ -18,7 +18,7 @@ static inline int ip_mroute_opt(int opt) =20 int ip_mroute_setsockopt(struct sock *, int, sockptr_t, unsigned int); int ip_mroute_getsockopt(struct sock *, int, sockptr_t, sockptr_t); -int ipmr_ioctl(struct sock *sk, int cmd, void __user *arg); +int ipmr_ioctl(struct sock *sk, int cmd, void *arg); int ipmr_compat_ioctl(struct sock *sk, unsigned int cmd, void __user *arg); int ip_mr_init(void); bool ipmr_rule_default(const struct fib_rule *rule); @@ -35,7 +35,7 @@ static inline int ip_mroute_getsockopt(struct sock *sk, i= nt optname, return -ENOPROTOOPT; } =20 -static inline int ipmr_ioctl(struct sock *sk, int cmd, void __user *arg) +static inline int ipmr_ioctl(struct sock *sk, int cmd, void *arg) { return -ENOIOCTLCMD; } diff --git a/include/linux/mroute6.h b/include/linux/mroute6.h index 8f2b307fb124..1dcbf15a2206 100644 --- a/include/linux/mroute6.h +++ b/include/linux/mroute6.h @@ -29,7 +29,7 @@ struct sock; extern int ip6_mroute_setsockopt(struct sock *, int, sockptr_t, unsigned i= nt); extern int ip6_mroute_getsockopt(struct sock *, int, sockptr_t, sockptr_t); extern int ip6_mr_input(struct sk_buff *skb); -extern int ip6mr_ioctl(struct sock *sk, int cmd, void __user *arg); +extern int ip6mr_ioctl(struct sock *sk, int cmd, void *arg); extern int ip6mr_compat_ioctl(struct sock *sk, unsigned int cmd, void __us= er *arg); extern int ip6_mr_init(void); extern void ip6_mr_cleanup(void); @@ -48,7 +48,7 @@ int ip6_mroute_getsockopt(struct sock *sock, } =20 static inline -int ip6mr_ioctl(struct sock *sk, int cmd, void __user *arg) +int ip6mr_ioctl(struct sock *sk, int cmd, void *arg) { return -ENOIOCTLCMD; } diff --git a/include/net/sock.h b/include/net/sock.h index 656ea89f60ff..39a11f0f5d50 100644 --- a/include/net/sock.h +++ b/include/net/sock.h @@ -1246,7 +1246,7 @@ struct proto { bool kern); =20 int (*ioctl)(struct sock *sk, int cmd, - unsigned long arg); + int *karg); int (*init)(struct sock *sk); void (*destroy)(struct sock *sk); void (*shutdown)(struct sock *sk, int how); @@ -2961,6 +2961,7 @@ int sock_get_timeout(long timeo, void *optval, bool o= ld_timeval); int sock_copy_user_timeval(struct __kernel_sock_timeval *tv, sockptr_t optval, int optlen, bool old_timeval); =20 +int sk_ioctl(struct sock *sk, unsigned int cmd, void __user *arg); static inline bool sk_is_readable(struct sock *sk) { if (sk->sk_prot->sock_is_readable) diff --git a/include/net/tcp.h b/include/net/tcp.h index 04a31643cda3..f784fa49d95d 100644 --- a/include/net/tcp.h +++ b/include/net/tcp.h @@ -342,7 +342,7 @@ void tcp_release_cb(struct sock *sk); void tcp_wfree(struct sk_buff *skb); void tcp_write_timer_handler(struct sock *sk); void tcp_delack_timer_handler(struct sock *sk); -int tcp_ioctl(struct sock *sk, int cmd, unsigned long arg); +int tcp_ioctl(struct sock *sk, int cmd, int *karg); int tcp_rcv_state_process(struct sock *sk, struct sk_buff *skb); void tcp_rcv_established(struct sock *sk, struct sk_buff *skb); void tcp_rcv_space_adjust(struct sock *sk); diff --git a/include/net/udp.h b/include/net/udp.h index de4b528522bb..9ff5bce33aa0 100644 --- a/include/net/udp.h +++ b/include/net/udp.h @@ -283,7 +283,7 @@ void udp_flush_pending_frames(struct sock *sk); int udp_cmsg_send(struct sock *sk, struct msghdr *msg, u16 *gso_size); void udp4_hwcsum(struct sk_buff *skb, __be32 src, __be32 dst); int udp_rcv(struct sk_buff *skb); -int udp_ioctl(struct sock *sk, int cmd, unsigned long arg); +int udp_ioctl(struct sock *sk, int cmd, int *karg); int udp_init_sock(struct sock *sk); int udp_pre_connect(struct sock *sk, struct sockaddr *uaddr, int addr_len); int __udp_disconnect(struct sock *sk, int flags); diff --git a/net/core/sock.c b/net/core/sock.c index 5440e67bcfe3..a2cea95aec99 100644 --- a/net/core/sock.c +++ b/net/core/sock.c @@ -114,6 +114,8 @@ #include #include #include +#include +#include =20 #include =20 @@ -138,6 +140,7 @@ =20 #include #include +#include =20 #include =20 @@ -4106,3 +4109,112 @@ int sock_bind_add(struct sock *sk, struct sockaddr = *addr, int addr_len) return sk->sk_prot->bind_add(sk, addr, addr_len); } EXPORT_SYMBOL(sock_bind_add); + +#ifdef CONFIG_PHONET +/* Copy u32 value from userspace and do not return anything back */ +static int sk_ioctl_in(struct sock *sk, unsigned int cmd, void __user *arg) +{ + int karg; + + if (get_user(karg, (u32 __user *)arg)) + return -EFAULT; + + return sk->sk_prot->ioctl(sk, cmd, &karg); +} +#endif + +#if defined(CONFIG_IP_MROUTE) || defined(CONFIG_IPV6_MROUTE) +/* Copy 'size' bytes from userspace and return `size` back to userspace */ +static int sk_ioctl_inout(struct sock *sk, unsigned int cmd, + void __user *arg, void *karg, size_t size) +{ + int ret; + + if (copy_from_user(karg, arg, size)) + return -EFAULT; + + ret =3D sk->sk_prot->ioctl(sk, cmd, karg); + if (ret) + return ret; + + if (copy_to_user(arg, karg, size)) + return -EFAULT; + + return 0; +} +#endif + +/* This is the most common ioctl prep function, where the result (4 bytes)= is + * copied back to userspace if the ioctl() returns successfully. No input = is + * copied from userspace as input argument. + */ +static int sk_ioctl_out(struct sock *sk, unsigned int cmd, void __user *ar= g) +{ + int ret, karg =3D 0; + + ret =3D sk->sk_prot->ioctl(sk, cmd, &karg); + if (ret) + return ret; + + return put_user(karg, (int __user *)arg); +} + +/* A wrapper around sock ioctls, which copies the data from userspace + * (depending on the protocol/ioctl), and copies back the result to usersp= ace. + * The main motivation for this function is to pass kernel memory to the + * protocol ioctl callbacks, instead of userspace memory. + */ +int sk_ioctl(struct sock *sk, unsigned int cmd, void __user *arg) +{ +#ifdef CONFIG_IP_MROUTE + if (sk->sk_family =3D=3D PF_INET && sk->sk_protocol =3D=3D IPPROTO_RAW) { + switch (cmd) { + /* These userspace buffers will be consumed by ipmr_ioctl() */ + case SIOCGETVIFCNT: { + struct sioc_vif_req buffer; + + return sk_ioctl_inout(sk, cmd, arg, &buffer, + sizeof(buffer)); + } + case SIOCGETSGCNT: { + struct sioc_sg_req buffer; + + return sk_ioctl_inout(sk, cmd, arg, &buffer, + sizeof(buffer)); + } + } + } +#endif +#ifdef CONFIG_IPV6_MROUTE + if (sk->sk_family =3D=3D PF_INET6 && sk->sk_protocol =3D=3D IPPROTO_RAW) { + switch (cmd) { + /* These userspace buffers will be consumed by ip6mr_ioctl() */ + case SIOCGETMIFCNT_IN6: { + struct sioc_mif_req6 buffer; + + return sk_ioctl_inout(sk, cmd, arg, &buffer, + sizeof(buffer)); + } + case SIOCGETSGCNT_IN6: { + struct sioc_mif_req6 buffer; + + return sk_ioctl_inout(sk, cmd, arg, &buffer, + sizeof(buffer)); + } + } + } +#endif +#ifdef CONFIG_PHONET + if (sk->sk_family =3D=3D PF_PHONET && sk->sk_protocol =3D=3D PN_PROTO_PHO= NET) { + /* This userspace buffers will be consumed by pn_ioctl() */ + switch (cmd) { + case SIOCPNADDRESOURCE: + case SIOCPNDELRESOURCE: + return sk_ioctl_in(sk, cmd, arg); + } + } +#endif + + return sk_ioctl_out(sk, cmd, arg); +} +EXPORT_SYMBOL(sk_ioctl); diff --git a/net/dccp/dccp.h b/net/dccp/dccp.h index 9ddc3a9e89e4..1f748ed1279d 100644 --- a/net/dccp/dccp.h +++ b/net/dccp/dccp.h @@ -292,7 +292,7 @@ int dccp_getsockopt(struct sock *sk, int level, int opt= name, char __user *optval, int __user *optlen); int dccp_setsockopt(struct sock *sk, int level, int optname, sockptr_t optval, unsigned int optlen); -int dccp_ioctl(struct sock *sk, int cmd, unsigned long arg); +int dccp_ioctl(struct sock *sk, int cmd, int *karg); int dccp_sendmsg(struct sock *sk, struct msghdr *msg, size_t size); int dccp_recvmsg(struct sock *sk, struct msghdr *msg, size_t len, int flag= s, int *addr_len); diff --git a/net/dccp/proto.c b/net/dccp/proto.c index a06b5641287a..9fc3ba4f62de 100644 --- a/net/dccp/proto.c +++ b/net/dccp/proto.c @@ -359,7 +359,7 @@ __poll_t dccp_poll(struct file *file, struct socket *so= ck, =20 EXPORT_SYMBOL_GPL(dccp_poll); =20 -int dccp_ioctl(struct sock *sk, int cmd, unsigned long arg) +int dccp_ioctl(struct sock *sk, int cmd, int *karg) { int rc =3D -ENOTCONN; =20 @@ -370,17 +370,17 @@ int dccp_ioctl(struct sock *sk, int cmd, unsigned lon= g arg) =20 switch (cmd) { case SIOCOUTQ: { - int amount =3D sk_wmem_alloc_get(sk); + *karg =3D sk_wmem_alloc_get(sk); /* Using sk_wmem_alloc here because sk_wmem_queued is not used by DCCP a= nd * always 0, comparably to UDP. */ =20 - rc =3D put_user(amount, (int __user *)arg); + rc =3D 0; } break; case SIOCINQ: { struct sk_buff *skb; - unsigned long amount =3D 0; + *karg =3D 0; =20 skb =3D skb_peek(&sk->sk_receive_queue); if (skb !=3D NULL) { @@ -388,9 +388,9 @@ int dccp_ioctl(struct sock *sk, int cmd, unsigned long = arg) * We will only return the amount of this packet since * that is all that will be read. */ - amount =3D skb->len; + *karg =3D skb->len; } - rc =3D put_user(amount, (int __user *)arg); + rc =3D 0; } break; default: diff --git a/net/ieee802154/socket.c b/net/ieee802154/socket.c index 1fa2fe041ec0..9c124705120d 100644 --- a/net/ieee802154/socket.c +++ b/net/ieee802154/socket.c @@ -162,7 +162,7 @@ static int ieee802154_sock_ioctl(struct socket *sock, u= nsigned int cmd, default: if (!sk->sk_prot->ioctl) return -ENOIOCTLCMD; - return sk->sk_prot->ioctl(sk, cmd, arg); + return sk_ioctl(sk, cmd, (void __user *)arg); } } =20 @@ -531,22 +531,21 @@ static int dgram_bind(struct sock *sk, struct sockadd= r *uaddr, int len) return err; } =20 -static int dgram_ioctl(struct sock *sk, int cmd, unsigned long arg) +static int dgram_ioctl(struct sock *sk, int cmd, int *karg) { switch (cmd) { case SIOCOUTQ: { - int amount =3D sk_wmem_alloc_get(sk); + *karg =3D sk_wmem_alloc_get(sk); =20 - return put_user(amount, (int __user *)arg); + return 0; } =20 case SIOCINQ: { struct sk_buff *skb; - unsigned long amount; =20 - amount =3D 0; + *karg =3D 0; spin_lock_bh(&sk->sk_receive_queue.lock); skb =3D skb_peek(&sk->sk_receive_queue); if (skb) { @@ -554,10 +553,10 @@ static int dgram_ioctl(struct sock *sk, int cmd, unsi= gned long arg) * of this packet since that is all * that will be read. */ - amount =3D skb->len - ieee802154_hdr_length(skb); + *karg =3D skb->len - ieee802154_hdr_length(skb); } spin_unlock_bh(&sk->sk_receive_queue.lock); - return put_user(amount, (int __user *)arg); + return 0; } } =20 diff --git a/net/ipv4/af_inet.c b/net/ipv4/af_inet.c index c4aab3aacbd8..be2ae13511da 100644 --- a/net/ipv4/af_inet.c +++ b/net/ipv4/af_inet.c @@ -978,7 +978,7 @@ int inet_ioctl(struct socket *sock, unsigned int cmd, u= nsigned long arg) break; default: if (sk->sk_prot->ioctl) - err =3D sk->sk_prot->ioctl(sk, cmd, arg); + err =3D sk_ioctl(sk, cmd, (void __user *)arg); else err =3D -ENOIOCTLCMD; break; diff --git a/net/ipv4/ipmr.c b/net/ipv4/ipmr.c index eec1f6df80d8..5d6531f6a235 100644 --- a/net/ipv4/ipmr.c +++ b/net/ipv4/ipmr.c @@ -1593,13 +1593,13 @@ int ip_mroute_getsockopt(struct sock *sk, int optna= me, sockptr_t optval, } =20 /* The IP multicast ioctl support routines. */ -int ipmr_ioctl(struct sock *sk, int cmd, void __user *arg) +int ipmr_ioctl(struct sock *sk, int cmd, void *arg) { - struct sioc_sg_req sr; - struct sioc_vif_req vr; struct vif_device *vif; struct mfc_cache *c; struct net *net =3D sock_net(sk); + struct sioc_vif_req *vr; + struct sioc_sg_req *sr; struct mr_table *mrt; =20 mrt =3D ipmr_get_table(net, raw_sk(sk)->ipmr_table ? : RT_TABLE_DEFAULT); @@ -1608,40 +1608,33 @@ int ipmr_ioctl(struct sock *sk, int cmd, void __use= r *arg) =20 switch (cmd) { case SIOCGETVIFCNT: - if (copy_from_user(&vr, arg, sizeof(vr))) - return -EFAULT; - if (vr.vifi >=3D mrt->maxvif) + vr =3D (struct sioc_vif_req *)arg; + if (vr->vifi >=3D mrt->maxvif) return -EINVAL; - vr.vifi =3D array_index_nospec(vr.vifi, mrt->maxvif); + vr->vifi =3D array_index_nospec(vr->vifi, mrt->maxvif); rcu_read_lock(); - vif =3D &mrt->vif_table[vr.vifi]; - if (VIF_EXISTS(mrt, vr.vifi)) { - vr.icount =3D READ_ONCE(vif->pkt_in); - vr.ocount =3D READ_ONCE(vif->pkt_out); - vr.ibytes =3D READ_ONCE(vif->bytes_in); - vr.obytes =3D READ_ONCE(vif->bytes_out); + vif =3D &mrt->vif_table[vr->vifi]; + if (VIF_EXISTS(mrt, vr->vifi)) { + vr->icount =3D READ_ONCE(vif->pkt_in); + vr->ocount =3D READ_ONCE(vif->pkt_out); + vr->ibytes =3D READ_ONCE(vif->bytes_in); + vr->obytes =3D READ_ONCE(vif->bytes_out); rcu_read_unlock(); =20 - if (copy_to_user(arg, &vr, sizeof(vr))) - return -EFAULT; return 0; } rcu_read_unlock(); return -EADDRNOTAVAIL; case SIOCGETSGCNT: - if (copy_from_user(&sr, arg, sizeof(sr))) - return -EFAULT; + sr =3D (struct sioc_sg_req *)arg; =20 rcu_read_lock(); - c =3D ipmr_cache_find(mrt, sr.src.s_addr, sr.grp.s_addr); + c =3D ipmr_cache_find(mrt, sr->src.s_addr, sr->grp.s_addr); if (c) { - sr.pktcnt =3D c->_c.mfc_un.res.pkt; - sr.bytecnt =3D c->_c.mfc_un.res.bytes; - sr.wrong_if =3D c->_c.mfc_un.res.wrong_if; + sr->pktcnt =3D c->_c.mfc_un.res.pkt; + sr->bytecnt =3D c->_c.mfc_un.res.bytes; + sr->wrong_if =3D c->_c.mfc_un.res.wrong_if; rcu_read_unlock(); - - if (copy_to_user(arg, &sr, sizeof(sr))) - return -EFAULT; return 0; } rcu_read_unlock(); diff --git a/net/ipv4/raw.c b/net/ipv4/raw.c index ff712bf2a98d..e394f02380b6 100644 --- a/net/ipv4/raw.c +++ b/net/ipv4/raw.c @@ -855,29 +855,29 @@ static int raw_getsockopt(struct sock *sk, int level,= int optname, return do_raw_getsockopt(sk, level, optname, optval, optlen); } =20 -static int raw_ioctl(struct sock *sk, int cmd, unsigned long arg) +static int raw_ioctl(struct sock *sk, int cmd, int *karg) { switch (cmd) { case SIOCOUTQ: { - int amount =3D sk_wmem_alloc_get(sk); - - return put_user(amount, (int __user *)arg); + *karg =3D sk_wmem_alloc_get(sk); + return 0; } case SIOCINQ: { struct sk_buff *skb; - int amount =3D 0; =20 spin_lock_bh(&sk->sk_receive_queue.lock); skb =3D skb_peek(&sk->sk_receive_queue); if (skb) - amount =3D skb->len; + *karg =3D skb->len; + else + *karg =3D 0; spin_unlock_bh(&sk->sk_receive_queue.lock); - return put_user(amount, (int __user *)arg); + return 0; } =20 default: #ifdef CONFIG_IP_MROUTE - return ipmr_ioctl(sk, cmd, (void __user *)arg); + return ipmr_ioctl(sk, cmd, karg); #else return -ENOIOCTLCMD; #endif diff --git a/net/ipv4/tcp.c b/net/ipv4/tcp.c index 4d6392c16b7a..8ff2c3784aab 100644 --- a/net/ipv4/tcp.c +++ b/net/ipv4/tcp.c @@ -599,7 +599,7 @@ __poll_t tcp_poll(struct file *file, struct socket *soc= k, poll_table *wait) } EXPORT_SYMBOL(tcp_poll); =20 -int tcp_ioctl(struct sock *sk, int cmd, unsigned long arg) +int tcp_ioctl(struct sock *sk, int cmd, int *karg) { struct tcp_sock *tp =3D tcp_sk(sk); int answ; @@ -641,7 +641,8 @@ int tcp_ioctl(struct sock *sk, int cmd, unsigned long a= rg) return -ENOIOCTLCMD; } =20 - return put_user(answ, (int __user *)arg); + *karg =3D answ; + return 0; } EXPORT_SYMBOL(tcp_ioctl); =20 diff --git a/net/ipv4/udp.c b/net/ipv4/udp.c index aa32afd871ee..8b83a67cf852 100644 --- a/net/ipv4/udp.c +++ b/net/ipv4/udp.c @@ -1720,21 +1720,19 @@ static int first_packet_length(struct sock *sk) * IOCTL requests applicable to the UDP protocol */ =20 -int udp_ioctl(struct sock *sk, int cmd, unsigned long arg) +int udp_ioctl(struct sock *sk, int cmd, int *karg) { switch (cmd) { case SIOCOUTQ: { - int amount =3D sk_wmem_alloc_get(sk); - - return put_user(amount, (int __user *)arg); + *karg =3D sk_wmem_alloc_get(sk); + return 0; } =20 case SIOCINQ: { - int amount =3D max_t(int, 0, first_packet_length(sk)); - - return put_user(amount, (int __user *)arg); + *karg =3D max_t(int, 0, first_packet_length(sk)); + return 0; } =20 default: diff --git a/net/ipv6/af_inet6.c b/net/ipv6/af_inet6.c index 2bbf13216a3d..001ba5a17af9 100644 --- a/net/ipv6/af_inet6.c +++ b/net/ipv6/af_inet6.c @@ -579,7 +579,7 @@ int inet6_ioctl(struct socket *sock, unsigned int cmd, = unsigned long arg) prot =3D READ_ONCE(sk->sk_prot); if (!prot->ioctl) return -ENOIOCTLCMD; - return prot->ioctl(sk, cmd, arg); + return sk_ioctl(sk, cmd, (void __user *)arg); } /*NOTREACHED*/ return 0; diff --git a/net/ipv6/ip6mr.c b/net/ipv6/ip6mr.c index 51cf37abd142..0b6974daa666 100644 --- a/net/ipv6/ip6mr.c +++ b/net/ipv6/ip6mr.c @@ -1879,11 +1879,10 @@ int ip6_mroute_getsockopt(struct sock *sk, int optn= ame, sockptr_t optval, /* * The IP multicast ioctl support routines. */ - -int ip6mr_ioctl(struct sock *sk, int cmd, void __user *arg) +int ip6mr_ioctl(struct sock *sk, int cmd, void *arg) { - struct sioc_sg_req6 sr; - struct sioc_mif_req6 vr; + struct sioc_sg_req6 *sr; + struct sioc_mif_req6 *vr; struct vif_device *vif; struct mfc6_cache *c; struct net *net =3D sock_net(sk); @@ -1895,40 +1894,32 @@ int ip6mr_ioctl(struct sock *sk, int cmd, void __us= er *arg) =20 switch (cmd) { case SIOCGETMIFCNT_IN6: - if (copy_from_user(&vr, arg, sizeof(vr))) - return -EFAULT; - if (vr.mifi >=3D mrt->maxvif) + vr =3D (struct sioc_mif_req6 *)arg; + if (vr->mifi >=3D mrt->maxvif) return -EINVAL; - vr.mifi =3D array_index_nospec(vr.mifi, mrt->maxvif); + vr->mifi =3D array_index_nospec(vr->mifi, mrt->maxvif); rcu_read_lock(); - vif =3D &mrt->vif_table[vr.mifi]; - if (VIF_EXISTS(mrt, vr.mifi)) { - vr.icount =3D READ_ONCE(vif->pkt_in); - vr.ocount =3D READ_ONCE(vif->pkt_out); - vr.ibytes =3D READ_ONCE(vif->bytes_in); - vr.obytes =3D READ_ONCE(vif->bytes_out); + vif =3D &mrt->vif_table[vr->mifi]; + if (VIF_EXISTS(mrt, vr->mifi)) { + vr->icount =3D READ_ONCE(vif->pkt_in); + vr->ocount =3D READ_ONCE(vif->pkt_out); + vr->ibytes =3D READ_ONCE(vif->bytes_in); + vr->obytes =3D READ_ONCE(vif->bytes_out); rcu_read_unlock(); - - if (copy_to_user(arg, &vr, sizeof(vr))) - return -EFAULT; return 0; } rcu_read_unlock(); return -EADDRNOTAVAIL; case SIOCGETSGCNT_IN6: - if (copy_from_user(&sr, arg, sizeof(sr))) - return -EFAULT; + sr =3D (struct sioc_sg_req6 *)arg; =20 rcu_read_lock(); - c =3D ip6mr_cache_find(mrt, &sr.src.sin6_addr, &sr.grp.sin6_addr); + c =3D ip6mr_cache_find(mrt, &sr->src.sin6_addr, &sr->grp.sin6_addr); if (c) { - sr.pktcnt =3D c->_c.mfc_un.res.pkt; - sr.bytecnt =3D c->_c.mfc_un.res.bytes; - sr.wrong_if =3D c->_c.mfc_un.res.wrong_if; + sr->pktcnt =3D c->_c.mfc_un.res.pkt; + sr->bytecnt =3D c->_c.mfc_un.res.bytes; + sr->wrong_if =3D c->_c.mfc_un.res.wrong_if; rcu_read_unlock(); - - if (copy_to_user(arg, &sr, sizeof(sr))) - return -EFAULT; return 0; } rcu_read_unlock(); diff --git a/net/ipv6/raw.c b/net/ipv6/raw.c index 7d0adb612bdd..51d4f2d7c596 100644 --- a/net/ipv6/raw.c +++ b/net/ipv6/raw.c @@ -1117,29 +1117,29 @@ static int rawv6_getsockopt(struct sock *sk, int le= vel, int optname, return do_rawv6_getsockopt(sk, level, optname, optval, optlen); } =20 -static int rawv6_ioctl(struct sock *sk, int cmd, unsigned long arg) +static int rawv6_ioctl(struct sock *sk, int cmd, int *karg) { switch (cmd) { case SIOCOUTQ: { - int amount =3D sk_wmem_alloc_get(sk); - - return put_user(amount, (int __user *)arg); + *karg =3D sk_wmem_alloc_get(sk); + return 0; } case SIOCINQ: { struct sk_buff *skb; - int amount =3D 0; =20 spin_lock_bh(&sk->sk_receive_queue.lock); skb =3D skb_peek(&sk->sk_receive_queue); if (skb) - amount =3D skb->len; + *karg =3D skb->len; + else + *karg =3D 0; spin_unlock_bh(&sk->sk_receive_queue.lock); - return put_user(amount, (int __user *)arg); + return 0; } =20 default: #ifdef CONFIG_IPV6_MROUTE - return ip6mr_ioctl(sk, cmd, (void __user *)arg); + return ip6mr_ioctl(sk, cmd, karg); #else return -ENOIOCTLCMD; #endif diff --git a/net/l2tp/l2tp_core.h b/net/l2tp/l2tp_core.h index a88e070b431d..91ebf0a3f499 100644 --- a/net/l2tp/l2tp_core.h +++ b/net/l2tp/l2tp_core.h @@ -272,7 +272,7 @@ int l2tp_nl_register_ops(enum l2tp_pwtype pw_type, cons= t struct l2tp_nl_cmd_ops void l2tp_nl_unregister_ops(enum l2tp_pwtype pw_type); =20 /* IOCTL helper for IP encap modules. */ -int l2tp_ioctl(struct sock *sk, int cmd, unsigned long arg); +int l2tp_ioctl(struct sock *sk, int cmd, int *karg); =20 /* Extract the tunnel structure from a socket's sk_user_data pointer, * validating the tunnel magic feather. diff --git a/net/l2tp/l2tp_ip.c b/net/l2tp/l2tp_ip.c index 41a74fc84ca1..2b795c1064f5 100644 --- a/net/l2tp/l2tp_ip.c +++ b/net/l2tp/l2tp_ip.c @@ -562,19 +562,18 @@ static int l2tp_ip_recvmsg(struct sock *sk, struct ms= ghdr *msg, return err ? err : copied; } =20 -int l2tp_ioctl(struct sock *sk, int cmd, unsigned long arg) +int l2tp_ioctl(struct sock *sk, int cmd, int *karg) { struct sk_buff *skb; - int amount; =20 switch (cmd) { case SIOCOUTQ: - amount =3D sk_wmem_alloc_get(sk); + *karg =3D sk_wmem_alloc_get(sk); break; case SIOCINQ: spin_lock_bh(&sk->sk_receive_queue.lock); skb =3D skb_peek(&sk->sk_receive_queue); - amount =3D skb ? skb->len : 0; + *karg =3D skb ? skb->len : 0; spin_unlock_bh(&sk->sk_receive_queue.lock); break; =20 @@ -582,7 +581,7 @@ int l2tp_ioctl(struct sock *sk, int cmd, unsigned long = arg) return -ENOIOCTLCMD; } =20 - return put_user(amount, (int __user *)arg); + return 0; } EXPORT_SYMBOL_GPL(l2tp_ioctl); =20 diff --git a/net/mptcp/protocol.c b/net/mptcp/protocol.c index 08dc53f56bc2..abcdd7cf54b3 100644 --- a/net/mptcp/protocol.c +++ b/net/mptcp/protocol.c @@ -3545,11 +3545,10 @@ static int mptcp_ioctl_outq(const struct mptcp_sock= *msk, u64 v) return (int)delta; } =20 -static int mptcp_ioctl(struct sock *sk, int cmd, unsigned long arg) +static int mptcp_ioctl(struct sock *sk, int cmd, int *karg) { struct mptcp_sock *msk =3D mptcp_sk(sk); bool slow; - int answ; =20 switch (cmd) { case SIOCINQ: @@ -3558,24 +3557,24 @@ static int mptcp_ioctl(struct sock *sk, int cmd, un= signed long arg) =20 lock_sock(sk); __mptcp_move_skbs(msk); - answ =3D mptcp_inq_hint(sk); + *karg =3D mptcp_inq_hint(sk); release_sock(sk); break; case SIOCOUTQ: slow =3D lock_sock_fast(sk); - answ =3D mptcp_ioctl_outq(msk, READ_ONCE(msk->snd_una)); + *karg =3D mptcp_ioctl_outq(msk, READ_ONCE(msk->snd_una)); unlock_sock_fast(sk, slow); break; case SIOCOUTQNSD: slow =3D lock_sock_fast(sk); - answ =3D mptcp_ioctl_outq(msk, msk->snd_nxt); + *karg =3D mptcp_ioctl_outq(msk, msk->snd_nxt); unlock_sock_fast(sk, slow); break; default: return -ENOIOCTLCMD; } =20 - return put_user(answ, (int __user *)arg); + return 0; } =20 static void mptcp_subflow_early_fallback(struct mptcp_sock *msk, diff --git a/net/phonet/datagram.c b/net/phonet/datagram.c index ff5f49ab236e..3aa50dc7535b 100644 --- a/net/phonet/datagram.c +++ b/net/phonet/datagram.c @@ -28,24 +28,21 @@ static void pn_sock_close(struct sock *sk, long timeout) sk_common_release(sk); } =20 -static int pn_ioctl(struct sock *sk, int cmd, unsigned long arg) +static int pn_ioctl(struct sock *sk, int cmd, int *karg) { struct sk_buff *skb; - int answ; =20 switch (cmd) { case SIOCINQ: lock_sock(sk); skb =3D skb_peek(&sk->sk_receive_queue); - answ =3D skb ? skb->len : 0; + *karg =3D skb ? skb->len : 0; release_sock(sk); - return put_user(answ, (int __user *)arg); + return 0; =20 case SIOCPNADDRESOURCE: case SIOCPNDELRESOURCE: { - u32 res; - if (get_user(res, (u32 __user *)arg)) - return -EFAULT; + u32 res =3D *karg; if (res >=3D 256) return -EINVAL; if (cmd =3D=3D SIOCPNADDRESOURCE) diff --git a/net/phonet/pep.c b/net/phonet/pep.c index 83ea13a50690..faba31f2eff2 100644 --- a/net/phonet/pep.c +++ b/net/phonet/pep.c @@ -917,10 +917,9 @@ static int pep_sock_enable(struct sock *sk, struct soc= kaddr *addr, int len) return 0; } =20 -static int pep_ioctl(struct sock *sk, int cmd, unsigned long arg) +static int pep_ioctl(struct sock *sk, int cmd, int *karg) { struct pep_sock *pn =3D pep_sk(sk); - int answ; int ret =3D -ENOIOCTLCMD; =20 switch (cmd) { @@ -933,13 +932,13 @@ static int pep_ioctl(struct sock *sk, int cmd, unsign= ed long arg) lock_sock(sk); if (sock_flag(sk, SOCK_URGINLINE) && !skb_queue_empty(&pn->ctrlreq_queue)) - answ =3D skb_peek(&pn->ctrlreq_queue)->len; + *karg =3D skb_peek(&pn->ctrlreq_queue)->len; else if (!skb_queue_empty(&sk->sk_receive_queue)) - answ =3D skb_peek(&sk->sk_receive_queue)->len; + *karg =3D skb_peek(&sk->sk_receive_queue)->len; else - answ =3D 0; + *karg =3D 0; release_sock(sk); - ret =3D put_user(answ, (int __user *)arg); + ret =3D 0; break; =20 case SIOCPNENABLEPIPE: diff --git a/net/phonet/socket.c b/net/phonet/socket.c index 71e2caf6ab85..967f9b4dc026 100644 --- a/net/phonet/socket.c +++ b/net/phonet/socket.c @@ -387,7 +387,7 @@ static int pn_socket_ioctl(struct socket *sock, unsigne= d int cmd, return put_user(handle, (__u16 __user *)arg); } =20 - return sk->sk_prot->ioctl(sk, cmd, arg); + return sk_ioctl(sk, cmd, (void __user *)arg); } =20 static int pn_socket_listen(struct socket *sock, int backlog) diff --git a/net/sctp/socket.c b/net/sctp/socket.c index cda8c2874691..3acd6e223cd4 100644 --- a/net/sctp/socket.c +++ b/net/sctp/socket.c @@ -4895,7 +4895,7 @@ static struct sock *sctp_accept(struct sock *sk, int = flags, int *err, bool kern) } =20 /* The SCTP ioctl handler. */ -static int sctp_ioctl(struct sock *sk, int cmd, unsigned long arg) +static int sctp_ioctl(struct sock *sk, int cmd, int *karg) { int rc =3D -ENOTCONN; =20 @@ -4911,7 +4911,7 @@ static int sctp_ioctl(struct sock *sk, int cmd, unsig= ned long arg) switch (cmd) { case SIOCINQ: { struct sk_buff *skb; - unsigned int amount =3D 0; + *karg =3D 0; =20 skb =3D skb_peek(&sk->sk_receive_queue); if (skb !=3D NULL) { @@ -4919,9 +4919,9 @@ static int sctp_ioctl(struct sock *sk, int cmd, unsig= ned long arg) * We will only return the amount of this packet since * that is all that will be read. */ - amount =3D skb->len; + *karg =3D skb->len; } - rc =3D put_user(amount, (int __user *)arg); + rc =3D 0; break; } default: --=20 2.34.1