blob: 50cf75730fd7be14d4e7bf37bc9586365790925f [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * NET An implementation of the SOCKET network access protocol.
4 *
5 * Version: @(#)socket.c 1.1.93 18/02/95
6 *
7 * Authors: Orest Zborowski, <obz@Kodak.COM>
Jesper Juhl02c30a82005-05-05 16:16:16 -07008 * Ross Biro
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
10 *
11 * Fixes:
12 * Anonymous : NOTSOCK/BADF cleanup. Error fix in
13 * shutdown()
14 * Alan Cox : verify_area() fixes
15 * Alan Cox : Removed DDI
16 * Jonathan Kamens : SOCK_DGRAM reconnect bug
17 * Alan Cox : Moved a load of checks to the very
18 * top level.
19 * Alan Cox : Move address structures to/from user
20 * mode above the protocol layers.
21 * Rob Janssen : Allow 0 length sends.
22 * Alan Cox : Asynchronous I/O support (cribbed from the
23 * tty drivers).
24 * Niibe Yutaka : Asynchronous I/O for writes (4.4BSD style)
25 * Jeff Uphoff : Made max number of sockets command-line
26 * configurable.
27 * Matti Aarnio : Made the number of sockets dynamic,
28 * to be allocated when needed, and mr.
29 * Uphoff's max is used as max to be
30 * allowed to allocate.
31 * Linus : Argh. removed all the socket allocation
32 * altogether: it's in the inode now.
33 * Alan Cox : Made sock_alloc()/sock_release() public
34 * for NetROM and future kernel nfsd type
35 * stuff.
36 * Alan Cox : sendmsg/recvmsg basics.
37 * Tom Dyas : Export net symbols.
38 * Marcin Dalecki : Fixed problems with CONFIG_NET="n".
39 * Alan Cox : Added thread locking to sys_* calls
40 * for sockets. May have errors at the
41 * moment.
42 * Kevin Buhr : Fixed the dumb errors in the above.
43 * Andi Kleen : Some small cleanups, optimizations,
44 * and fixed a copy_from_user() bug.
45 * Tigran Aivazian : sys_send(args) calls sys_sendto(args, NULL, 0)
Stephen Hemminger89bddce2006-09-01 00:19:31 -070046 * Tigran Aivazian : Made listen(2) backlog sanity checks
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 * protocol-independent
48 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 * This module is effectively the top level interface to the BSD socket
Stephen Hemminger89bddce2006-09-01 00:19:31 -070050 * paradigm.
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 *
52 * Based upon Swansea University Computer Society NET3.039
53 */
54
Jakub Kicinskiaef2fed2021-12-15 18:55:37 -080055#include <linux/bpf-cgroup.h>
Jakub Kicinskicc698372020-11-20 14:50:52 -080056#include <linux/ethtool.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#include <linux/socket.h>
59#include <linux/file.h>
60#include <linux/net.h>
61#include <linux/interrupt.h>
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -070062#include <linux/thread_info.h>
Stephen Hemminger55737fd2006-09-01 00:23:39 -070063#include <linux/rcupdate.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#include <linux/netdevice.h>
65#include <linux/proc_fs.h>
66#include <linux/seq_file.h>
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -080067#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#include <linux/if_bridge.h>
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -030069#include <linux/if_vlan.h>
Daniel Borkmann408eccc2014-04-01 16:20:23 +020070#include <linux/ptp_classify.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070071#include <linux/init.h>
72#include <linux/poll.h>
73#include <linux/cache.h>
74#include <linux/module.h>
75#include <linux/highmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#include <linux/mount.h>
David Howellsfba9be42019-03-25 16:38:24 +000077#include <linux/pseudo_fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070078#include <linux/security.h>
79#include <linux/syscalls.h>
80#include <linux/compat.h>
81#include <linux/kmod.h>
David Woodhouse3ec3b2f2005-05-17 12:08:48 +010082#include <linux/audit.h>
Adrian Bunkd86b5e02006-01-21 00:46:55 +010083#include <linux/wireless.h>
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -070084#include <linux/nsproxy.h>
Nick Black1fd7317d2009-09-22 16:43:33 -070085#include <linux/magic.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090086#include <linux/slab.h>
Masatake YAMATO600e1772012-08-29 10:44:29 +000087#include <linux/xattr.h>
Jeremy Clinec8e8cd52018-07-27 22:43:01 +000088#include <linux/nospec.h>
Paolo Abeni8c3c4472019-05-03 17:01:39 +020089#include <linux/indirect_call_wrapper.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080091#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070092#include <asm/unistd.h>
93
94#include <net/compat.h>
David S. Miller87de87d2008-06-03 09:14:03 -070095#include <net/wext.h>
Herbert Xuf8451722010-05-24 00:12:34 -070096#include <net/cls_cgroup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
98#include <net/sock.h>
99#include <linux/netfilter.h>
100
Arnd Bergmann6b960182009-11-06 23:10:54 -0800101#include <linux/if_tun.h>
102#include <linux/ipv6_route.h>
103#include <linux/route.h>
Arnd Bergmannc7dc5042019-06-03 23:07:12 +0200104#include <linux/termios.h>
Arnd Bergmann6b960182009-11-06 23:10:54 -0800105#include <linux/sockios.h>
Eliezer Tamir076bb0c2013-07-10 17:13:17 +0300106#include <net/busy_poll.h>
Willem de Bruijnf24b9be2014-08-04 22:11:45 -0400107#include <linux/errqueue.h>
Yangbo Lud7c08822021-06-30 16:12:00 +0800108#include <linux/ptp_clock_kernel.h>
Eliezer Tamir06021292013-06-10 11:39:50 +0300109
Cong Wange0d10952013-08-01 11:10:25 +0800110#ifdef CONFIG_NET_RX_BUSY_POLL
Eliezer Tamir64b0dc52013-07-10 17:13:36 +0300111unsigned int sysctl_net_busy_read __read_mostly;
112unsigned int sysctl_net_busy_poll __read_mostly;
Eliezer Tamir06021292013-06-10 11:39:50 +0300113#endif
Arnd Bergmann6b960182009-11-06 23:10:54 -0800114
Al Viro8ae5e0302014-11-28 19:40:50 -0500115static ssize_t sock_read_iter(struct kiocb *iocb, struct iov_iter *to);
116static ssize_t sock_write_iter(struct kiocb *iocb, struct iov_iter *from);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700117static int sock_mmap(struct file *file, struct vm_area_struct *vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
119static int sock_close(struct inode *inode, struct file *file);
Linus Torvaldsa11e1d42018-06-28 09:43:44 -0700120static __poll_t sock_poll(struct file *file,
121 struct poll_table_struct *wait);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700122static long sock_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800123#ifdef CONFIG_COMPAT
124static long compat_sock_ioctl(struct file *file,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700125 unsigned int cmd, unsigned long arg);
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800126#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127static int sock_fasync(int fd, struct file *filp, int on);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128static ssize_t sock_sendpage(struct file *file, struct page *page,
129 int offset, size_t size, loff_t *ppos, int more);
Jens Axboe9c55e012007-11-06 23:30:13 -0800130static ssize_t sock_splice_read(struct file *file, loff_t *ppos,
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700131 struct pipe_inode_info *pipe, size_t len,
Jens Axboe9c55e012007-11-06 23:30:13 -0800132 unsigned int flags);
Arnd Bergmann542d3062020-01-08 22:44:43 +0100133
134#ifdef CONFIG_PROC_FS
135static void sock_show_fdinfo(struct seq_file *m, struct file *f)
136{
137 struct socket *sock = f->private_data;
138
139 if (sock->ops->show_fdinfo)
140 sock->ops->show_fdinfo(m, sock);
141}
142#else
143#define sock_show_fdinfo NULL
144#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146/*
147 * Socket files have a set of 'special' operations as well as the generic file ones. These don't appear
148 * in the operation structures but are done directly via the socketcall() multiplexor.
149 */
150
Arjan van de Venda7071d2007-02-12 00:55:36 -0800151static const struct file_operations socket_file_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 .owner = THIS_MODULE,
153 .llseek = no_llseek,
Al Viro8ae5e0302014-11-28 19:40:50 -0500154 .read_iter = sock_read_iter,
155 .write_iter = sock_write_iter,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 .poll = sock_poll,
157 .unlocked_ioctl = sock_ioctl,
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800158#ifdef CONFIG_COMPAT
159 .compat_ioctl = compat_sock_ioctl,
160#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 .mmap = sock_mmap,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 .release = sock_close,
163 .fasync = sock_fasync,
Jens Axboe5274f052006-03-30 15:15:30 +0200164 .sendpage = sock_sendpage,
165 .splice_write = generic_splice_sendpage,
Jens Axboe9c55e012007-11-06 23:30:13 -0800166 .splice_read = sock_splice_read,
Kirill Tkhaib4653342019-12-09 13:03:40 +0300167 .show_fdinfo = sock_show_fdinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168};
169
Yejune Dengfe0bdbd2021-06-21 13:12:25 +0800170static const char * const pf_family_names[] = {
171 [PF_UNSPEC] = "PF_UNSPEC",
172 [PF_UNIX] = "PF_UNIX/PF_LOCAL",
173 [PF_INET] = "PF_INET",
174 [PF_AX25] = "PF_AX25",
175 [PF_IPX] = "PF_IPX",
176 [PF_APPLETALK] = "PF_APPLETALK",
177 [PF_NETROM] = "PF_NETROM",
178 [PF_BRIDGE] = "PF_BRIDGE",
179 [PF_ATMPVC] = "PF_ATMPVC",
180 [PF_X25] = "PF_X25",
181 [PF_INET6] = "PF_INET6",
182 [PF_ROSE] = "PF_ROSE",
183 [PF_DECnet] = "PF_DECnet",
184 [PF_NETBEUI] = "PF_NETBEUI",
185 [PF_SECURITY] = "PF_SECURITY",
186 [PF_KEY] = "PF_KEY",
187 [PF_NETLINK] = "PF_NETLINK/PF_ROUTE",
188 [PF_PACKET] = "PF_PACKET",
189 [PF_ASH] = "PF_ASH",
190 [PF_ECONET] = "PF_ECONET",
191 [PF_ATMSVC] = "PF_ATMSVC",
192 [PF_RDS] = "PF_RDS",
193 [PF_SNA] = "PF_SNA",
194 [PF_IRDA] = "PF_IRDA",
195 [PF_PPPOX] = "PF_PPPOX",
196 [PF_WANPIPE] = "PF_WANPIPE",
197 [PF_LLC] = "PF_LLC",
198 [PF_IB] = "PF_IB",
199 [PF_MPLS] = "PF_MPLS",
200 [PF_CAN] = "PF_CAN",
201 [PF_TIPC] = "PF_TIPC",
202 [PF_BLUETOOTH] = "PF_BLUETOOTH",
203 [PF_IUCV] = "PF_IUCV",
204 [PF_RXRPC] = "PF_RXRPC",
205 [PF_ISDN] = "PF_ISDN",
206 [PF_PHONET] = "PF_PHONET",
207 [PF_IEEE802154] = "PF_IEEE802154",
208 [PF_CAIF] = "PF_CAIF",
209 [PF_ALG] = "PF_ALG",
210 [PF_NFC] = "PF_NFC",
211 [PF_VSOCK] = "PF_VSOCK",
212 [PF_KCM] = "PF_KCM",
213 [PF_QIPCRTR] = "PF_QIPCRTR",
214 [PF_SMC] = "PF_SMC",
215 [PF_XDP] = "PF_XDP",
Jeremy Kerrbc49d812021-07-29 10:20:39 +0800216 [PF_MCTP] = "PF_MCTP",
Yejune Dengfe0bdbd2021-06-21 13:12:25 +0800217};
218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219/*
220 * The protocol list. Each protocol is registered in here.
221 */
222
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223static DEFINE_SPINLOCK(net_family_lock);
Eric Dumazet190683a2010-11-10 10:50:44 +0000224static const struct net_proto_family __rcu *net_families[NPROTO] __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700227 * Support routines.
228 * Move socket addresses back and forth across the kernel/user
229 * divide and look after the messy bits.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 */
231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232/**
233 * move_addr_to_kernel - copy a socket address into kernel space
234 * @uaddr: Address in user space
235 * @kaddr: Address in kernel space
236 * @ulen: Length in user space
237 *
238 * The address is copied into kernel space. If the provided address is
239 * too long an error code of -EINVAL is returned. If the copy gives
240 * invalid addresses -EFAULT is returned. On a success 0 is returned.
241 */
242
Maciej Żenczykowski43db3622012-03-11 12:51:50 +0000243int move_addr_to_kernel(void __user *uaddr, int ulen, struct sockaddr_storage *kaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244{
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -0700245 if (ulen < 0 || ulen > sizeof(struct sockaddr_storage))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700247 if (ulen == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 return 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700249 if (copy_from_user(kaddr, uaddr, ulen))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 return -EFAULT;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +0100251 return audit_sockaddr(ulen, kaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252}
253
254/**
255 * move_addr_to_user - copy an address to user space
256 * @kaddr: kernel space address
257 * @klen: length of address in kernel
258 * @uaddr: user space address
259 * @ulen: pointer to user length field
260 *
261 * The value pointed to by ulen on entry is the buffer length available.
262 * This is overwritten with the buffer space used. -EINVAL is returned
263 * if an overlong buffer is specified or a negative buffer size. -EFAULT
264 * is returned if either the buffer or the length field are not
265 * accessible.
266 * After copying the data up to the limit the user specifies, the true
267 * length of the data is written over the length limit the user
268 * specified. Zero is returned for a success.
269 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700270
Maciej Żenczykowski43db3622012-03-11 12:51:50 +0000271static int move_addr_to_user(struct sockaddr_storage *kaddr, int klen,
stephen hemminger11165f12010-10-18 14:27:29 +0000272 void __user *uaddr, int __user *ulen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273{
274 int err;
275 int len;
276
Hannes Frederic Sowa68c6beb2013-11-21 03:14:34 +0100277 BUG_ON(klen > sizeof(struct sockaddr_storage));
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700278 err = get_user(len, ulen);
279 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 return err;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700281 if (len > klen)
282 len = klen;
Hannes Frederic Sowa68c6beb2013-11-21 03:14:34 +0100283 if (len < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700285 if (len) {
Steve Grubbd6fe3942006-03-30 12:20:22 -0500286 if (audit_sockaddr(klen, kaddr))
287 return -ENOMEM;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700288 if (copy_to_user(uaddr, kaddr, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 return -EFAULT;
290 }
291 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700292 * "fromlen shall refer to the value before truncation.."
293 * 1003.1g
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 */
295 return __put_user(klen, ulen);
296}
297
Alexey Dobriyan08009a72018-02-24 21:20:33 +0300298static struct kmem_cache *sock_inode_cachep __ro_after_init;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
300static struct inode *sock_alloc_inode(struct super_block *sb)
301{
302 struct socket_alloc *ei;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700303
Christoph Lametere94b1762006-12-06 20:33:17 -0800304 ei = kmem_cache_alloc(sock_inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 if (!ei)
306 return NULL;
Al Viro333f7902019-07-05 20:14:16 +0100307 init_waitqueue_head(&ei->socket.wq.wait);
308 ei->socket.wq.fasync_list = NULL;
309 ei->socket.wq.flags = 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 ei->socket.state = SS_UNCONNECTED;
312 ei->socket.flags = 0;
313 ei->socket.ops = NULL;
314 ei->socket.sk = NULL;
315 ei->socket.file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
317 return &ei->vfs_inode;
318}
319
Al Viro6d7855c2019-07-05 20:13:22 +0100320static void sock_free_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321{
Eric Dumazet43815482010-04-29 11:01:49 +0000322 struct socket_alloc *ei;
323
324 ei = container_of(inode, struct socket_alloc, vfs_inode);
Eric Dumazet43815482010-04-29 11:01:49 +0000325 kmem_cache_free(sock_inode_cachep, ei);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326}
327
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700328static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329{
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700330 struct socket_alloc *ei = (struct socket_alloc *)foo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
Christoph Lametera35afb82007-05-16 22:10:57 -0700332 inode_init_once(&ei->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333}
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700334
yuan linyu1e911632017-01-07 17:18:31 +0800335static void init_inodecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336{
337 sock_inode_cachep = kmem_cache_create("sock_inode_cache",
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700338 sizeof(struct socket_alloc),
339 0,
340 (SLAB_HWCACHE_ALIGN |
341 SLAB_RECLAIM_ACCOUNT |
Vladimir Davydov5d097052016-01-14 15:18:21 -0800342 SLAB_MEM_SPREAD | SLAB_ACCOUNT),
Paul Mundt20c2df82007-07-20 10:11:58 +0900343 init_once);
yuan linyu1e911632017-01-07 17:18:31 +0800344 BUG_ON(sock_inode_cachep == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345}
346
Alexey Dobriyanb87221d2009-09-21 17:01:09 -0700347static const struct super_operations sockfs_ops = {
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700348 .alloc_inode = sock_alloc_inode,
Al Viro6d7855c2019-07-05 20:13:22 +0100349 .free_inode = sock_free_inode,
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700350 .statfs = simple_statfs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351};
352
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700353/*
354 * sockfs_dname() is called from d_path().
355 */
356static char *sockfs_dname(struct dentry *dentry, char *buffer, int buflen)
357{
358 return dynamic_dname(dentry, buffer, buflen, "socket:[%lu]",
David Howellsc5ef6032015-03-17 22:26:16 +0000359 d_inode(dentry)->i_ino);
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700360}
361
Al Viro3ba13d12009-02-20 06:02:22 +0000362static const struct dentry_operations sockfs_dentry_operations = {
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700363 .d_dname = sockfs_dname,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364};
365
Andreas Gruenbacherbba0bd32016-09-29 17:48:35 +0200366static int sockfs_xattr_get(const struct xattr_handler *handler,
367 struct dentry *dentry, struct inode *inode,
368 const char *suffix, void *value, size_t size)
369{
370 if (value) {
371 if (dentry->d_name.len + 1 > size)
372 return -ERANGE;
373 memcpy(value, dentry->d_name.name, dentry->d_name.len + 1);
374 }
375 return dentry->d_name.len + 1;
376}
377
378#define XATTR_SOCKPROTONAME_SUFFIX "sockprotoname"
379#define XATTR_NAME_SOCKPROTONAME (XATTR_SYSTEM_PREFIX XATTR_SOCKPROTONAME_SUFFIX)
380#define XATTR_NAME_SOCKPROTONAME_LEN (sizeof(XATTR_NAME_SOCKPROTONAME)-1)
381
382static const struct xattr_handler sockfs_xattr_handler = {
383 .name = XATTR_NAME_SOCKPROTONAME,
384 .get = sockfs_xattr_get,
385};
386
Andreas Gruenbacher4a590152016-11-13 21:23:34 +0100387static int sockfs_security_xattr_set(const struct xattr_handler *handler,
Christian Braunere65ce2a2021-01-21 14:19:27 +0100388 struct user_namespace *mnt_userns,
Andreas Gruenbacher4a590152016-11-13 21:23:34 +0100389 struct dentry *dentry, struct inode *inode,
390 const char *suffix, const void *value,
391 size_t size, int flags)
392{
393 /* Handled by LSM. */
394 return -EAGAIN;
395}
396
397static const struct xattr_handler sockfs_security_xattr_handler = {
398 .prefix = XATTR_SECURITY_PREFIX,
399 .set = sockfs_security_xattr_set,
400};
401
Andreas Gruenbacherbba0bd32016-09-29 17:48:35 +0200402static const struct xattr_handler *sockfs_xattr_handlers[] = {
403 &sockfs_xattr_handler,
Andreas Gruenbacher4a590152016-11-13 21:23:34 +0100404 &sockfs_security_xattr_handler,
Andreas Gruenbacherbba0bd32016-09-29 17:48:35 +0200405 NULL
406};
407
David Howellsfba9be42019-03-25 16:38:24 +0000408static int sockfs_init_fs_context(struct fs_context *fc)
Al Viroc74a1cb2011-01-12 16:59:34 -0500409{
David Howellsfba9be42019-03-25 16:38:24 +0000410 struct pseudo_fs_context *ctx = init_pseudo(fc, SOCKFS_MAGIC);
411 if (!ctx)
412 return -ENOMEM;
413 ctx->ops = &sockfs_ops;
414 ctx->dops = &sockfs_dentry_operations;
415 ctx->xattr = sockfs_xattr_handlers;
416 return 0;
Al Viroc74a1cb2011-01-12 16:59:34 -0500417}
418
419static struct vfsmount *sock_mnt __read_mostly;
420
421static struct file_system_type sock_fs_type = {
422 .name = "sockfs",
David Howellsfba9be42019-03-25 16:38:24 +0000423 .init_fs_context = sockfs_init_fs_context,
Al Viroc74a1cb2011-01-12 16:59:34 -0500424 .kill_sb = kill_anon_super,
425};
426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427/*
428 * Obtains the first available file descriptor and sets it up for use.
429 *
David S. Miller39d8c1b2006-03-20 17:13:49 -0800430 * These functions create file structures and maps them to fd space
431 * of the current process. On success it returns file descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 * and file struct implicitly stored in sock->file.
433 * Note that another thread may close file descriptor before we return
434 * from this function. We use the fact that now we do not refer
435 * to socket after mapping. If one day we will need it, this
436 * function will increment ref. count on file by 1.
437 *
438 * In any case returned fd MAY BE not valid!
439 * This race condition is unavoidable
440 * with shared fd spaces, we cannot solve it inside kernel,
441 * but we take care of internal coherence yet.
442 */
443
Pedro Tammela8a3c2452019-03-14 10:45:23 -0300444/**
445 * sock_alloc_file - Bind a &socket to a &file
446 * @sock: socket
447 * @flags: file status flags
448 * @dname: protocol name
449 *
450 * Returns the &file bound with @sock, implicitly storing it
451 * in sock->file. If dname is %NULL, sets to "".
452 * On failure the return is a ERR pointer (see linux/err.h).
453 * This function uses GFP_KERNEL internally.
454 */
455
Linus Torvaldsaab174f2012-10-02 20:25:04 -0700456struct file *sock_alloc_file(struct socket *sock, int flags, const char *dname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457{
Al Viro7cbe66b2009-08-05 19:59:08 +0400458 struct file *file;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800459
Al Virod93aa9d2018-06-09 09:40:05 -0400460 if (!dname)
461 dname = sock->sk ? sock->sk->sk_prot_creator->name : "";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
Al Virod93aa9d2018-06-09 09:40:05 -0400463 file = alloc_file_pseudo(SOCK_INODE(sock), sock_mnt, dname,
464 O_RDWR | (flags & O_NONBLOCK),
465 &socket_file_ops);
Viresh Kumarb5ffe632015-08-12 15:59:47 +0530466 if (IS_ERR(file)) {
Al Viro8e1611e2017-12-05 23:29:09 +0000467 sock_release(sock);
Anatol Pomozov39b65252012-09-12 20:11:55 -0700468 return file;
Al Virocc3808f2009-08-06 09:43:59 +0400469 }
David S. Miller39d8c1b2006-03-20 17:13:49 -0800470
471 sock->file = file;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800472 file->private_data = sock;
Linus Torvaldsd8e464e2019-11-17 11:20:48 -0800473 stream_open(SOCK_INODE(sock), file);
Al Viro28407632012-08-17 23:54:15 -0400474 return file;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800475}
Al Viro56b31d12012-08-18 00:25:51 -0400476EXPORT_SYMBOL(sock_alloc_file);
David S. Miller39d8c1b2006-03-20 17:13:49 -0800477
Al Viro56b31d12012-08-18 00:25:51 -0400478static int sock_map_fd(struct socket *sock, int flags)
David S. Miller39d8c1b2006-03-20 17:13:49 -0800479{
480 struct file *newfile;
Al Viro28407632012-08-17 23:54:15 -0400481 int fd = get_unused_fd_flags(flags);
Al Viroce4bb042018-01-10 18:47:05 -0500482 if (unlikely(fd < 0)) {
483 sock_release(sock);
Al Viro28407632012-08-17 23:54:15 -0400484 return fd;
Al Viroce4bb042018-01-10 18:47:05 -0500485 }
David S. Miller39d8c1b2006-03-20 17:13:49 -0800486
Linus Torvaldsaab174f2012-10-02 20:25:04 -0700487 newfile = sock_alloc_file(sock, flags, NULL);
Enrico Weigelt4546e442019-06-05 22:58:50 +0200488 if (!IS_ERR(newfile)) {
David S. Miller39d8c1b2006-03-20 17:13:49 -0800489 fd_install(fd, newfile);
Al Viro28407632012-08-17 23:54:15 -0400490 return fd;
491 }
Al Viro7cbe66b2009-08-05 19:59:08 +0400492
Al Viro28407632012-08-17 23:54:15 -0400493 put_unused_fd(fd);
494 return PTR_ERR(newfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495}
496
Pedro Tammela8a3c2452019-03-14 10:45:23 -0300497/**
498 * sock_from_file - Return the &socket bounded to @file.
499 * @file: file
Pedro Tammela8a3c2452019-03-14 10:45:23 -0300500 *
Florent Revestdba4a922020-12-04 12:36:04 +0100501 * On failure returns %NULL.
Pedro Tammela8a3c2452019-03-14 10:45:23 -0300502 */
503
Florent Revestdba4a922020-12-04 12:36:04 +0100504struct socket *sock_from_file(struct file *file)
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800505{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800506 if (file->f_op == &socket_file_ops)
507 return file->private_data; /* set in sock_map_fd */
508
Eric Dumazet23bb80d2007-02-08 14:59:57 -0800509 return NULL;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800510}
John Fastabend406a3c62012-07-20 10:39:25 +0000511EXPORT_SYMBOL(sock_from_file);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513/**
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700514 * sockfd_lookup - Go from a file number to its socket slot
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 * @fd: file handle
516 * @err: pointer to an error code return
517 *
518 * The file handle passed in is locked and the socket it is bound
Rosen, Rami241c4662017-05-21 22:12:38 +0300519 * to is returned. If an error occurs the err pointer is overwritten
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 * with a negative errno code and NULL is returned. The function checks
521 * for both invalid handles and passing a handle which is not a socket.
522 *
523 * On a success the socket object pointer is returned.
524 */
525
526struct socket *sockfd_lookup(int fd, int *err)
527{
528 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 struct socket *sock;
530
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700531 file = fget(fd);
532 if (!file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 *err = -EBADF;
534 return NULL;
535 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700536
Florent Revestdba4a922020-12-04 12:36:04 +0100537 sock = sock_from_file(file);
538 if (!sock) {
539 *err = -ENOTSOCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 fput(file);
Florent Revestdba4a922020-12-04 12:36:04 +0100541 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 return sock;
543}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700544EXPORT_SYMBOL(sockfd_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800546static struct socket *sockfd_lookup_light(int fd, int *err, int *fput_needed)
547{
Al Viro00e188e2014-03-03 23:48:18 -0500548 struct fd f = fdget(fd);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800549 struct socket *sock;
550
Hua Zhong36725582006-04-19 15:25:02 -0700551 *err = -EBADF;
Al Viro00e188e2014-03-03 23:48:18 -0500552 if (f.file) {
Florent Revestdba4a922020-12-04 12:36:04 +0100553 sock = sock_from_file(f.file);
Al Viro00e188e2014-03-03 23:48:18 -0500554 if (likely(sock)) {
Miaohe Lince787a52020-08-06 19:53:16 +0800555 *fput_needed = f.flags & FDPUT_FPUT;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800556 return sock;
Al Viro00e188e2014-03-03 23:48:18 -0500557 }
Florent Revestdba4a922020-12-04 12:36:04 +0100558 *err = -ENOTSOCK;
Al Viro00e188e2014-03-03 23:48:18 -0500559 fdput(f);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800560 }
561 return NULL;
562}
563
Masatake YAMATO600e1772012-08-29 10:44:29 +0000564static ssize_t sockfs_listxattr(struct dentry *dentry, char *buffer,
565 size_t size)
566{
567 ssize_t len;
568 ssize_t used = 0;
569
David Howellsc5ef6032015-03-17 22:26:16 +0000570 len = security_inode_listsecurity(d_inode(dentry), buffer, size);
Masatake YAMATO600e1772012-08-29 10:44:29 +0000571 if (len < 0)
572 return len;
573 used += len;
574 if (buffer) {
575 if (size < used)
576 return -ERANGE;
577 buffer += len;
578 }
579
580 len = (XATTR_NAME_SOCKPROTONAME_LEN + 1);
581 used += len;
582 if (buffer) {
583 if (size < used)
584 return -ERANGE;
585 memcpy(buffer, XATTR_NAME_SOCKPROTONAME, len);
586 buffer += len;
587 }
588
589 return used;
590}
591
Christian Brauner549c7292021-01-21 14:19:43 +0100592static int sockfs_setattr(struct user_namespace *mnt_userns,
593 struct dentry *dentry, struct iattr *iattr)
Lorenzo Colitti86741ec2016-11-04 02:23:41 +0900594{
Christian Brauner549c7292021-01-21 14:19:43 +0100595 int err = simple_setattr(&init_user_ns, dentry, iattr);
Lorenzo Colitti86741ec2016-11-04 02:23:41 +0900596
Eric Biggerse1a3a602016-12-30 17:42:32 -0600597 if (!err && (iattr->ia_valid & ATTR_UID)) {
Lorenzo Colitti86741ec2016-11-04 02:23:41 +0900598 struct socket *sock = SOCKET_I(d_inode(dentry));
599
Cong Wang6d8c50d2018-06-07 13:39:49 -0700600 if (sock->sk)
601 sock->sk->sk_uid = iattr->ia_uid;
602 else
603 err = -ENOENT;
Lorenzo Colitti86741ec2016-11-04 02:23:41 +0900604 }
605
606 return err;
607}
608
Masatake YAMATO600e1772012-08-29 10:44:29 +0000609static const struct inode_operations sockfs_inode_ops = {
Masatake YAMATO600e1772012-08-29 10:44:29 +0000610 .listxattr = sockfs_listxattr,
Lorenzo Colitti86741ec2016-11-04 02:23:41 +0900611 .setattr = sockfs_setattr,
Masatake YAMATO600e1772012-08-29 10:44:29 +0000612};
613
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614/**
Pedro Tammela8a3c2452019-03-14 10:45:23 -0300615 * sock_alloc - allocate a socket
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700616 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 * Allocate a new inode and socket object. The two are bound together
618 * and initialised. The socket is then returned. If we are out of inodes
Pedro Tammela8a3c2452019-03-14 10:45:23 -0300619 * NULL is returned. This functions uses GFP_KERNEL internally.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 */
621
Tom Herbertf4a00aa2016-03-07 14:11:01 -0800622struct socket *sock_alloc(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623{
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700624 struct inode *inode;
625 struct socket *sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
Eric Dumazeta209dfc2011-07-26 11:36:34 +0200627 inode = new_inode_pseudo(sock_mnt->mnt_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 if (!inode)
629 return NULL;
630
631 sock = SOCKET_I(inode);
632
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400633 inode->i_ino = get_next_ino();
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700634 inode->i_mode = S_IFSOCK | S_IRWXUGO;
David Howells8192b0c2008-11-14 10:39:10 +1100635 inode->i_uid = current_fsuid();
636 inode->i_gid = current_fsgid();
Masatake YAMATO600e1772012-08-29 10:44:29 +0000637 inode->i_op = &sockfs_inode_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 return sock;
640}
Tom Herbertf4a00aa2016-03-07 14:11:01 -0800641EXPORT_SYMBOL(sock_alloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Cong Wang6d8c50d2018-06-07 13:39:49 -0700643static void __sock_release(struct socket *sock, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644{
645 if (sock->ops) {
646 struct module *owner = sock->ops->owner;
647
Cong Wang6d8c50d2018-06-07 13:39:49 -0700648 if (inode)
649 inode_lock(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 sock->ops->release(sock);
Eric Biggersff7b11a2019-02-21 14:13:56 -0800651 sock->sk = NULL;
Cong Wang6d8c50d2018-06-07 13:39:49 -0700652 if (inode)
653 inode_unlock(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 sock->ops = NULL;
655 module_put(owner);
656 }
657
Al Viro333f7902019-07-05 20:14:16 +0100658 if (sock->wq.fasync_list)
Yang Yingliang3410f222014-02-12 17:09:55 +0800659 pr_err("%s: fasync list not empty!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 if (!sock->file) {
662 iput(SOCK_INODE(sock));
663 return;
664 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700665 sock->file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666}
Cong Wang6d8c50d2018-06-07 13:39:49 -0700667
Andrew Lunn9a8ad9a2020-07-13 01:15:12 +0200668/**
669 * sock_release - close a socket
670 * @sock: socket to close
671 *
672 * The socket is released from the protocol stack if it has a release
673 * callback, and the inode is then released if the socket is bound to
674 * an inode not a file.
675 */
Cong Wang6d8c50d2018-06-07 13:39:49 -0700676void sock_release(struct socket *sock)
677{
678 __sock_release(sock, NULL);
679}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700680EXPORT_SYMBOL(sock_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
Soheil Hassas Yeganehc14ac942016-04-02 23:08:12 -0400682void __sock_tx_timestamp(__u16 tsflags, __u8 *tx_flags)
Patrick Ohly20d49472009-02-12 05:03:38 +0000683{
Eric Dumazet140c55d2014-08-06 11:49:29 +0200684 u8 flags = *tx_flags;
685
Soheil Hassas Yeganehc14ac942016-04-02 23:08:12 -0400686 if (tsflags & SOF_TIMESTAMPING_TX_HARDWARE)
Eric Dumazet140c55d2014-08-06 11:49:29 +0200687 flags |= SKBTX_HW_TSTAMP;
688
Soheil Hassas Yeganehc14ac942016-04-02 23:08:12 -0400689 if (tsflags & SOF_TIMESTAMPING_TX_SOFTWARE)
Eric Dumazet140c55d2014-08-06 11:49:29 +0200690 flags |= SKBTX_SW_TSTAMP;
691
Soheil Hassas Yeganehc14ac942016-04-02 23:08:12 -0400692 if (tsflags & SOF_TIMESTAMPING_TX_SCHED)
Eric Dumazet140c55d2014-08-06 11:49:29 +0200693 flags |= SKBTX_SCHED_TSTAMP;
694
Eric Dumazet140c55d2014-08-06 11:49:29 +0200695 *tx_flags = flags;
Patrick Ohly20d49472009-02-12 05:03:38 +0000696}
Willem de Bruijn67cc0d42014-09-08 19:58:58 -0400697EXPORT_SYMBOL(__sock_tx_timestamp);
Patrick Ohly20d49472009-02-12 05:03:38 +0000698
Paolo Abeni8c3c4472019-05-03 17:01:39 +0200699INDIRECT_CALLABLE_DECLARE(int inet_sendmsg(struct socket *, struct msghdr *,
700 size_t));
Paolo Abenia648a592019-07-03 16:06:54 +0200701INDIRECT_CALLABLE_DECLARE(int inet6_sendmsg(struct socket *, struct msghdr *,
702 size_t));
Al Virod8725c82014-12-11 00:02:50 -0500703static inline int sock_sendmsg_nosec(struct socket *sock, struct msghdr *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704{
Paolo Abenia648a592019-07-03 16:06:54 +0200705 int ret = INDIRECT_CALL_INET(sock->ops->sendmsg, inet6_sendmsg,
706 inet_sendmsg, sock, msg,
707 msg_data_left(msg));
Al Virod8725c82014-12-11 00:02:50 -0500708 BUG_ON(ret == -EIOCBQUEUED);
709 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710}
Gu Zheng0cf00c62014-12-05 15:14:23 +0800711
Randy Dunlap85806af2019-05-18 21:23:07 -0700712/**
713 * sock_sendmsg - send a message through @sock
714 * @sock: socket
715 * @msg: message to send
716 *
717 * Sends @msg through @sock, passing through LSM.
718 * Returns the number of bytes sent, or an error code.
719 */
Al Virod8725c82014-12-11 00:02:50 -0500720int sock_sendmsg(struct socket *sock, struct msghdr *msg)
Gu Zheng0cf00c62014-12-05 15:14:23 +0800721{
Al Virod8725c82014-12-11 00:02:50 -0500722 int err = security_socket_sendmsg(sock, msg,
Al Viro01e97e62014-12-15 21:39:31 -0500723 msg_data_left(msg));
Ying Xue1b784142015-03-02 15:37:48 +0800724
Al Virod8725c82014-12-11 00:02:50 -0500725 return err ?: sock_sendmsg_nosec(sock, msg);
Gu Zheng0cf00c62014-12-05 15:14:23 +0800726}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700727EXPORT_SYMBOL(sock_sendmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
Pedro Tammela8a3c2452019-03-14 10:45:23 -0300729/**
730 * kernel_sendmsg - send a message through @sock (kernel-space)
731 * @sock: socket
732 * @msg: message header
733 * @vec: kernel vec
734 * @num: vec array length
735 * @size: total message data size
736 *
737 * Builds the message data with @vec and sends it through @sock.
738 * Returns the number of bytes sent, or an error code.
739 */
740
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741int kernel_sendmsg(struct socket *sock, struct msghdr *msg,
742 struct kvec *vec, size_t num, size_t size)
743{
David Howellsaa563d72018-10-20 00:57:56 +0100744 iov_iter_kvec(&msg->msg_iter, WRITE, vec, num, size);
Al Virod8725c82014-12-11 00:02:50 -0500745 return sock_sendmsg(sock, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700747EXPORT_SYMBOL(kernel_sendmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Pedro Tammela8a3c2452019-03-14 10:45:23 -0300749/**
750 * kernel_sendmsg_locked - send a message through @sock (kernel-space)
751 * @sk: sock
752 * @msg: message header
753 * @vec: output s/g array
754 * @num: output s/g array length
755 * @size: total message data size
756 *
757 * Builds the message data with @vec and sends it through @sock.
758 * Returns the number of bytes sent, or an error code.
759 * Caller must hold @sk.
760 */
761
Tom Herbert306b13e2017-07-28 16:22:41 -0700762int kernel_sendmsg_locked(struct sock *sk, struct msghdr *msg,
763 struct kvec *vec, size_t num, size_t size)
764{
765 struct socket *sock = sk->sk_socket;
766
767 if (!sock->ops->sendmsg_locked)
John Fastabenddb5980d2017-08-15 22:31:34 -0700768 return sock_no_sendmsg_locked(sk, msg, size);
Tom Herbert306b13e2017-07-28 16:22:41 -0700769
David Howellsaa563d72018-10-20 00:57:56 +0100770 iov_iter_kvec(&msg->msg_iter, WRITE, vec, num, size);
Tom Herbert306b13e2017-07-28 16:22:41 -0700771
772 return sock->ops->sendmsg_locked(sk, msg, msg_data_left(msg));
773}
774EXPORT_SYMBOL(kernel_sendmsg_locked);
775
Soheil Hassas Yeganeh8605330a2017-03-18 17:02:59 -0400776static bool skb_is_err_queue(const struct sk_buff *skb)
777{
778 /* pkt_type of skbs enqueued on the error queue are set to
779 * PACKET_OUTGOING in skb_set_err_queue(). This is only safe to do
780 * in recvmsg, since skbs received on a local socket will never
781 * have a pkt_type of PACKET_OUTGOING.
782 */
783 return skb->pkt_type == PACKET_OUTGOING;
784}
785
Miroslav Lichvarb50a5c72017-05-19 17:52:40 +0200786/* On transmit, software and hardware timestamps are returned independently.
787 * As the two skb clones share the hardware timestamp, which may be updated
788 * before the software timestamp is received, a hardware TX timestamp may be
789 * returned only if there is no software TX timestamp. Ignore false software
790 * timestamps, which may be made in the __sock_recv_timestamp() call when the
Deepa Dinamani7f1bc6e2019-02-02 07:34:46 -0800791 * option SO_TIMESTAMP_OLD(NS) is enabled on the socket, even when the skb has a
Miroslav Lichvarb50a5c72017-05-19 17:52:40 +0200792 * hardware timestamp.
793 */
794static bool skb_is_swtx_tstamp(const struct sk_buff *skb, int false_tstamp)
795{
796 return skb->tstamp && !false_tstamp && skb_is_err_queue(skb);
797}
798
Miroslav Lichvaraad9c8c2017-05-19 17:52:38 +0200799static void put_ts_pktinfo(struct msghdr *msg, struct sk_buff *skb)
800{
801 struct scm_ts_pktinfo ts_pktinfo;
802 struct net_device *orig_dev;
803
804 if (!skb_mac_header_was_set(skb))
805 return;
806
807 memset(&ts_pktinfo, 0, sizeof(ts_pktinfo));
808
809 rcu_read_lock();
810 orig_dev = dev_get_by_napi_id(skb_napi_id(skb));
811 if (orig_dev)
812 ts_pktinfo.if_index = orig_dev->ifindex;
813 rcu_read_unlock();
814
815 ts_pktinfo.pkt_length = skb->len - skb_mac_offset(skb);
816 put_cmsg(msg, SOL_SOCKET, SCM_TIMESTAMPING_PKTINFO,
817 sizeof(ts_pktinfo), &ts_pktinfo);
818}
819
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700820/*
821 * called from sock_recv_timestamp() if sock_flag(sk, SOCK_RCVTSTAMP)
822 */
823void __sock_recv_timestamp(struct msghdr *msg, struct sock *sk,
824 struct sk_buff *skb)
825{
Patrick Ohly20d49472009-02-12 05:03:38 +0000826 int need_software_tstamp = sock_flag(sk, SOCK_RCVTSTAMP);
Deepa Dinamani887feae2019-02-02 07:34:50 -0800827 int new_tstamp = sock_flag(sk, SOCK_TSTAMP_NEW);
Deepa Dinamani97184752019-02-02 07:34:51 -0800828 struct scm_timestamping_internal tss;
829
Miroslav Lichvarb50a5c72017-05-19 17:52:40 +0200830 int empty = 1, false_tstamp = 0;
Patrick Ohly20d49472009-02-12 05:03:38 +0000831 struct skb_shared_hwtstamps *shhwtstamps =
832 skb_hwtstamps(skb);
Miroslav Lichvar007747a92022-01-05 11:33:26 +0100833 ktime_t hwtstamp;
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700834
Patrick Ohly20d49472009-02-12 05:03:38 +0000835 /* Race occurred between timestamp enabling and packet
836 receiving. Fill in the current time for now. */
Miroslav Lichvarb50a5c72017-05-19 17:52:40 +0200837 if (need_software_tstamp && skb->tstamp == 0) {
Patrick Ohly20d49472009-02-12 05:03:38 +0000838 __net_timestamp(skb);
Miroslav Lichvarb50a5c72017-05-19 17:52:40 +0200839 false_tstamp = 1;
840 }
Patrick Ohly20d49472009-02-12 05:03:38 +0000841
842 if (need_software_tstamp) {
843 if (!sock_flag(sk, SOCK_RCVTSTAMPNS)) {
Deepa Dinamani887feae2019-02-02 07:34:50 -0800844 if (new_tstamp) {
845 struct __kernel_sock_timeval tv;
846
847 skb_get_new_timestamp(skb, &tv);
848 put_cmsg(msg, SOL_SOCKET, SO_TIMESTAMP_NEW,
849 sizeof(tv), &tv);
850 } else {
851 struct __kernel_old_timeval tv;
852
853 skb_get_timestamp(skb, &tv);
854 put_cmsg(msg, SOL_SOCKET, SO_TIMESTAMP_OLD,
855 sizeof(tv), &tv);
856 }
Patrick Ohly20d49472009-02-12 05:03:38 +0000857 } else {
Deepa Dinamani887feae2019-02-02 07:34:50 -0800858 if (new_tstamp) {
859 struct __kernel_timespec ts;
860
861 skb_get_new_timestampns(skb, &ts);
862 put_cmsg(msg, SOL_SOCKET, SO_TIMESTAMPNS_NEW,
863 sizeof(ts), &ts);
864 } else {
Arnd Bergmanndf1b4ba2019-10-25 22:04:46 +0200865 struct __kernel_old_timespec ts;
Deepa Dinamani887feae2019-02-02 07:34:50 -0800866
867 skb_get_timestampns(skb, &ts);
868 put_cmsg(msg, SOL_SOCKET, SO_TIMESTAMPNS_OLD,
869 sizeof(ts), &ts);
870 }
Patrick Ohly20d49472009-02-12 05:03:38 +0000871 }
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700872 }
Patrick Ohly20d49472009-02-12 05:03:38 +0000873
Willem de Bruijnf24b9be2014-08-04 22:11:45 -0400874 memset(&tss, 0, sizeof(tss));
Willem de Bruijnc1991052014-09-03 12:01:18 -0400875 if ((sk->sk_tsflags & SOF_TIMESTAMPING_SOFTWARE) &&
Deepa Dinamani97184752019-02-02 07:34:51 -0800876 ktime_to_timespec64_cond(skb->tstamp, tss.ts + 0))
Patrick Ohly20d49472009-02-12 05:03:38 +0000877 empty = 0;
Willem de Bruijn4d276eb2014-07-25 18:01:32 -0400878 if (shhwtstamps &&
Willem de Bruijnb9f40e22014-08-04 22:11:46 -0400879 (sk->sk_tsflags & SOF_TIMESTAMPING_RAW_HARDWARE) &&
Yangbo Lud7c08822021-06-30 16:12:00 +0800880 !skb_is_swtx_tstamp(skb, false_tstamp)) {
881 if (sk->sk_tsflags & SOF_TIMESTAMPING_BIND_PHC)
Miroslav Lichvar007747a92022-01-05 11:33:26 +0100882 hwtstamp = ptp_convert_timestamp(shhwtstamps,
883 sk->sk_bind_phc);
884 else
885 hwtstamp = shhwtstamps->hwtstamp;
Yangbo Lud7c08822021-06-30 16:12:00 +0800886
Miroslav Lichvar007747a92022-01-05 11:33:26 +0100887 if (ktime_to_timespec64_cond(hwtstamp, tss.ts + 2)) {
Yangbo Lud7c08822021-06-30 16:12:00 +0800888 empty = 0;
889
890 if ((sk->sk_tsflags & SOF_TIMESTAMPING_OPT_PKTINFO) &&
891 !skb_is_err_queue(skb))
892 put_ts_pktinfo(msg, skb);
893 }
Miroslav Lichvaraad9c8c2017-05-19 17:52:38 +0200894 }
Francis Yan1c885802016-11-27 23:07:18 -0800895 if (!empty) {
Deepa Dinamani97184752019-02-02 07:34:51 -0800896 if (sock_flag(sk, SOCK_TSTAMP_NEW))
897 put_cmsg_scm_timestamping64(msg, &tss);
898 else
899 put_cmsg_scm_timestamping(msg, &tss);
Francis Yan1c885802016-11-27 23:07:18 -0800900
Soheil Hassas Yeganeh8605330a2017-03-18 17:02:59 -0400901 if (skb_is_err_queue(skb) && skb->len &&
Soheil Hassas Yeganeh4ef1b282017-03-18 17:03:00 -0400902 SKB_EXT_ERR(skb)->opt_stats)
Francis Yan1c885802016-11-27 23:07:18 -0800903 put_cmsg(msg, SOL_SOCKET, SCM_TIMESTAMPING_OPT_STATS,
904 skb->len, skb->data);
905 }
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700906}
Arnaldo Carvalho de Melo7c81fd82007-03-10 00:39:35 -0300907EXPORT_SYMBOL_GPL(__sock_recv_timestamp);
908
Johannes Berg6e3e9392011-11-09 10:15:42 +0100909void __sock_recv_wifi_status(struct msghdr *msg, struct sock *sk,
910 struct sk_buff *skb)
911{
912 int ack;
913
914 if (!sock_flag(sk, SOCK_WIFI_STATUS))
915 return;
916 if (!skb->wifi_acked_valid)
917 return;
918
919 ack = skb->wifi_acked;
920
921 put_cmsg(msg, SOL_SOCKET, SCM_WIFI_STATUS, sizeof(ack), &ack);
922}
923EXPORT_SYMBOL_GPL(__sock_recv_wifi_status);
924
stephen hemminger11165f12010-10-18 14:27:29 +0000925static inline void sock_recv_drops(struct msghdr *msg, struct sock *sk,
926 struct sk_buff *skb)
Neil Horman3b885782009-10-12 13:26:31 -0700927{
Eyal Birger744d5a32015-03-01 14:58:31 +0200928 if (sock_flag(sk, SOCK_RXQ_OVFL) && skb && SOCK_SKB_CB(skb)->dropcount)
Neil Horman3b885782009-10-12 13:26:31 -0700929 put_cmsg(msg, SOL_SOCKET, SO_RXQ_OVFL,
Eyal Birger744d5a32015-03-01 14:58:31 +0200930 sizeof(__u32), &SOCK_SKB_CB(skb)->dropcount);
Neil Horman3b885782009-10-12 13:26:31 -0700931}
932
Eric Dumazet767dd032010-04-28 19:14:43 +0000933void __sock_recv_ts_and_drops(struct msghdr *msg, struct sock *sk,
Neil Horman3b885782009-10-12 13:26:31 -0700934 struct sk_buff *skb)
935{
936 sock_recv_timestamp(msg, sk, skb);
937 sock_recv_drops(msg, sk, skb);
938}
Eric Dumazet767dd032010-04-28 19:14:43 +0000939EXPORT_SYMBOL_GPL(__sock_recv_ts_and_drops);
Neil Horman3b885782009-10-12 13:26:31 -0700940
Paolo Abeni8c3c4472019-05-03 17:01:39 +0200941INDIRECT_CALLABLE_DECLARE(int inet_recvmsg(struct socket *, struct msghdr *,
Paolo Abenia648a592019-07-03 16:06:54 +0200942 size_t, int));
943INDIRECT_CALLABLE_DECLARE(int inet6_recvmsg(struct socket *, struct msghdr *,
944 size_t, int));
Ying Xue1b784142015-03-02 15:37:48 +0800945static inline int sock_recvmsg_nosec(struct socket *sock, struct msghdr *msg,
Al Viro2da62902015-03-14 21:13:46 -0400946 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947{
Paolo Abenia648a592019-07-03 16:06:54 +0200948 return INDIRECT_CALL_INET(sock->ops->recvmsg, inet6_recvmsg,
949 inet_recvmsg, sock, msg, msg_data_left(msg),
950 flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951}
952
Randy Dunlap85806af2019-05-18 21:23:07 -0700953/**
954 * sock_recvmsg - receive a message from @sock
955 * @sock: socket
956 * @msg: message to receive
957 * @flags: message flags
958 *
959 * Receives @msg from @sock, passing through LSM. Returns the total number
960 * of bytes received, or an error.
961 */
Al Viro2da62902015-03-14 21:13:46 -0400962int sock_recvmsg(struct socket *sock, struct msghdr *msg, int flags)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -0700963{
Al Viro2da62902015-03-14 21:13:46 -0400964 int err = security_socket_recvmsg(sock, msg, msg_data_left(msg), flags);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -0700965
Al Viro2da62902015-03-14 21:13:46 -0400966 return err ?: sock_recvmsg_nosec(sock, msg, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700968EXPORT_SYMBOL(sock_recvmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
Martin Lucinac1249c02010-12-10 00:04:05 +0000970/**
Pedro Tammela8a3c2452019-03-14 10:45:23 -0300971 * kernel_recvmsg - Receive a message from a socket (kernel space)
972 * @sock: The socket to receive the message from
973 * @msg: Received message
974 * @vec: Input s/g array for message data
975 * @num: Size of input s/g array
976 * @size: Number of bytes to read
977 * @flags: Message flags (MSG_DONTWAIT, etc...)
Martin Lucinac1249c02010-12-10 00:04:05 +0000978 *
Pedro Tammela8a3c2452019-03-14 10:45:23 -0300979 * On return the msg structure contains the scatter/gather array passed in the
980 * vec argument. The array is modified so that it consists of the unfilled
981 * portion of the original array.
Martin Lucinac1249c02010-12-10 00:04:05 +0000982 *
Pedro Tammela8a3c2452019-03-14 10:45:23 -0300983 * The returned value is the total number of bytes received, or an error.
Martin Lucinac1249c02010-12-10 00:04:05 +0000984 */
Pedro Tammela8a3c2452019-03-14 10:45:23 -0300985
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700986int kernel_recvmsg(struct socket *sock, struct msghdr *msg,
987 struct kvec *vec, size_t num, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988{
Christoph Hellwig1f466e12020-05-11 13:59:13 +0200989 msg->msg_control_is_user = false;
David Howellsaa563d72018-10-20 00:57:56 +0100990 iov_iter_kvec(&msg->msg_iter, READ, vec, num, size);
Christoph Hellwig1f466e12020-05-11 13:59:13 +0200991 return sock_recvmsg(sock, msg, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700993EXPORT_SYMBOL(kernel_recvmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -0300995static ssize_t sock_sendpage(struct file *file, struct page *page,
996 int offset, size_t size, loff_t *ppos, int more)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997{
998 struct socket *sock;
999 int flags;
1000
Eric Dumazetb69aee02005-09-06 14:42:45 -07001001 sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
Eric Dumazet35f9c092012-04-05 03:05:35 +00001003 flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
1004 /* more is a combination of MSG_MORE and MSG_SENDPAGE_NOTLAST */
1005 flags |= more;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006
Linus Torvaldse6949582009-08-13 08:28:36 -07001007 return kernel_sendpage(sock, page, offset, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008}
1009
Jens Axboe9c55e012007-11-06 23:30:13 -08001010static ssize_t sock_splice_read(struct file *file, loff_t *ppos,
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001011 struct pipe_inode_info *pipe, size_t len,
Jens Axboe9c55e012007-11-06 23:30:13 -08001012 unsigned int flags)
1013{
1014 struct socket *sock = file->private_data;
1015
Rémi Denis-Courmont997b37d2008-02-15 02:35:45 -08001016 if (unlikely(!sock->ops->splice_read))
Slavomir Kaslev95506582018-11-16 11:27:53 +02001017 return generic_file_splice_read(file, ppos, pipe, len, flags);
Rémi Denis-Courmont997b37d2008-02-15 02:35:45 -08001018
Jens Axboe9c55e012007-11-06 23:30:13 -08001019 return sock->ops->splice_read(sock, ppos, pipe, len, flags);
1020}
1021
Al Viro8ae5e0302014-11-28 19:40:50 -05001022static ssize_t sock_read_iter(struct kiocb *iocb, struct iov_iter *to)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -08001023{
Al Viro6d652332015-01-30 16:12:56 -05001024 struct file *file = iocb->ki_filp;
1025 struct socket *sock = file->private_data;
tadeusz.struk@intel.com0345f932015-03-19 12:31:25 -07001026 struct msghdr msg = {.msg_iter = *to,
1027 .msg_iocb = iocb};
Al Viro8ae5e0302014-11-28 19:40:50 -05001028 ssize_t res;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -08001029
Jens Axboeebfcd892019-12-09 20:58:56 -07001030 if (file->f_flags & O_NONBLOCK || (iocb->ki_flags & IOCB_NOWAIT))
Al Viro8ae5e0302014-11-28 19:40:50 -05001031 msg.msg_flags = MSG_DONTWAIT;
1032
1033 if (iocb->ki_pos != 0)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -08001034 return -ESPIPE;
Badari Pulavarty027445c2006-09-30 23:28:46 -07001035
Christoph Hellwig66ee59a2015-02-11 19:56:46 +01001036 if (!iov_iter_count(to)) /* Match SYS5 behaviour */
Christoph Hellwigce1d4d32005-12-22 21:08:46 -08001037 return 0;
1038
Al Viro2da62902015-03-14 21:13:46 -04001039 res = sock_recvmsg(sock, &msg, msg.msg_flags);
Al Viro8ae5e0302014-11-28 19:40:50 -05001040 *to = msg.msg_iter;
1041 return res;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -08001042}
1043
Al Viro8ae5e0302014-11-28 19:40:50 -05001044static ssize_t sock_write_iter(struct kiocb *iocb, struct iov_iter *from)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045{
Al Viro6d652332015-01-30 16:12:56 -05001046 struct file *file = iocb->ki_filp;
1047 struct socket *sock = file->private_data;
tadeusz.struk@intel.com0345f932015-03-19 12:31:25 -07001048 struct msghdr msg = {.msg_iter = *from,
1049 .msg_iocb = iocb};
Al Viro8ae5e0302014-11-28 19:40:50 -05001050 ssize_t res;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -08001051
Al Viro8ae5e0302014-11-28 19:40:50 -05001052 if (iocb->ki_pos != 0)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -08001053 return -ESPIPE;
Badari Pulavarty027445c2006-09-30 23:28:46 -07001054
Jens Axboeebfcd892019-12-09 20:58:56 -07001055 if (file->f_flags & O_NONBLOCK || (iocb->ki_flags & IOCB_NOWAIT))
Al Viro8ae5e0302014-11-28 19:40:50 -05001056 msg.msg_flags = MSG_DONTWAIT;
1057
Al Viro6d652332015-01-30 16:12:56 -05001058 if (sock->type == SOCK_SEQPACKET)
1059 msg.msg_flags |= MSG_EOR;
1060
Al Virod8725c82014-12-11 00:02:50 -05001061 res = sock_sendmsg(sock, &msg);
Al Viro8ae5e0302014-11-28 19:40:50 -05001062 *from = msg.msg_iter;
1063 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064}
1065
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066/*
1067 * Atomic setting of ioctl hooks to avoid race
1068 * with module unload.
1069 */
1070
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001071static DEFINE_MUTEX(br_ioctl_mutex);
Arnd Bergmannad2f99a2021-07-27 15:45:16 +02001072static int (*br_ioctl_hook)(struct net *net, struct net_bridge *br,
1073 unsigned int cmd, struct ifreq *ifr,
1074 void __user *uarg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
Arnd Bergmannad2f99a2021-07-27 15:45:16 +02001076void brioctl_set(int (*hook)(struct net *net, struct net_bridge *br,
1077 unsigned int cmd, struct ifreq *ifr,
1078 void __user *uarg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001080 mutex_lock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 br_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001082 mutex_unlock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083}
1084EXPORT_SYMBOL(brioctl_set);
1085
Arnd Bergmannad2f99a2021-07-27 15:45:16 +02001086int br_ioctl_call(struct net *net, struct net_bridge *br, unsigned int cmd,
1087 struct ifreq *ifr, void __user *uarg)
1088{
1089 int err = -ENOPKG;
1090
1091 if (!br_ioctl_hook)
1092 request_module("bridge");
1093
1094 mutex_lock(&br_ioctl_mutex);
1095 if (br_ioctl_hook)
1096 err = br_ioctl_hook(net, br, cmd, ifr, uarg);
1097 mutex_unlock(&br_ioctl_mutex);
1098
1099 return err;
1100}
1101
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001102static DEFINE_MUTEX(vlan_ioctl_mutex);
Eric W. Biederman881d9662007-09-17 11:56:21 -07001103static int (*vlan_ioctl_hook) (struct net *, void __user *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
Eric W. Biederman881d9662007-09-17 11:56:21 -07001105void vlan_ioctl_set(int (*hook) (struct net *, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001107 mutex_lock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 vlan_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001109 mutex_unlock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110}
1111EXPORT_SYMBOL(vlan_ioctl_set);
1112
Arnd Bergmann6b960182009-11-06 23:10:54 -08001113static long sock_do_ioctl(struct net *net, struct socket *sock,
Johannes Berg63ff03a2019-01-25 22:43:17 +01001114 unsigned int cmd, unsigned long arg)
Arnd Bergmann6b960182009-11-06 23:10:54 -08001115{
Arnd Bergmann876f0bf2021-07-22 16:29:02 +02001116 struct ifreq ifr;
1117 bool need_copyout;
Arnd Bergmann6b960182009-11-06 23:10:54 -08001118 int err;
1119 void __user *argp = (void __user *)arg;
Arnd Bergmanna554bf92021-07-27 15:45:12 +02001120 void __user *data;
Arnd Bergmann6b960182009-11-06 23:10:54 -08001121
1122 err = sock->ops->ioctl(sock, cmd, arg);
1123
1124 /*
1125 * If this ioctl is unknown try to hand it down
1126 * to the NIC driver.
1127 */
Al Viro36fd6332017-06-26 13:19:16 -04001128 if (err != -ENOIOCTLCMD)
1129 return err;
Arnd Bergmann6b960182009-11-06 23:10:54 -08001130
Jakub Kicinski29ce8f92021-08-31 09:06:04 -07001131 if (!is_socket_ioctl_cmd(cmd))
1132 return -ENOTTY;
1133
Arnd Bergmanna554bf92021-07-27 15:45:12 +02001134 if (get_user_ifreq(&ifr, &data, argp))
Arnd Bergmann876f0bf2021-07-22 16:29:02 +02001135 return -EFAULT;
Arnd Bergmanna554bf92021-07-27 15:45:12 +02001136 err = dev_ioctl(net, cmd, &ifr, data, &need_copyout);
Arnd Bergmann876f0bf2021-07-22 16:29:02 +02001137 if (!err && need_copyout)
Arnd Bergmanna554bf92021-07-27 15:45:12 +02001138 if (put_user_ifreq(&ifr, argp))
Al Viro36fd6332017-06-26 13:19:16 -04001139 return -EFAULT;
Arnd Bergmann876f0bf2021-07-22 16:29:02 +02001140
Arnd Bergmann6b960182009-11-06 23:10:54 -08001141 return err;
1142}
1143
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144/*
1145 * With an ioctl, arg may well be a user mode pointer, but we don't know
1146 * what to do with it - that's up to the protocol still.
1147 */
1148
1149static long sock_ioctl(struct file *file, unsigned cmd, unsigned long arg)
1150{
1151 struct socket *sock;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001152 struct sock *sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 void __user *argp = (void __user *)arg;
1154 int pid, err;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001155 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156
Eric Dumazetb69aee02005-09-06 14:42:45 -07001157 sock = file->private_data;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001158 sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001159 net = sock_net(sk);
Al Viro44c02a22017-10-05 12:59:44 -04001160 if (unlikely(cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15))) {
1161 struct ifreq ifr;
Arnd Bergmanna554bf92021-07-27 15:45:12 +02001162 void __user *data;
Al Viro44c02a22017-10-05 12:59:44 -04001163 bool need_copyout;
Arnd Bergmanna554bf92021-07-27 15:45:12 +02001164 if (get_user_ifreq(&ifr, &data, argp))
Al Viro44c02a22017-10-05 12:59:44 -04001165 return -EFAULT;
Arnd Bergmanna554bf92021-07-27 15:45:12 +02001166 err = dev_ioctl(net, cmd, &ifr, data, &need_copyout);
Al Viro44c02a22017-10-05 12:59:44 -04001167 if (!err && need_copyout)
Arnd Bergmanna554bf92021-07-27 15:45:12 +02001168 if (put_user_ifreq(&ifr, argp))
Al Viro44c02a22017-10-05 12:59:44 -04001169 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 } else
Johannes Berg3d23e342009-09-29 23:27:28 +02001171#ifdef CONFIG_WEXT_CORE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 if (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST) {
Al Virob1b0c242017-10-01 20:13:08 -04001173 err = wext_handle_ioctl(net, cmd, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 } else
Johannes Berg3d23e342009-09-29 23:27:28 +02001175#endif
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001176 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 case FIOSETOWN:
1178 case SIOCSPGRP:
1179 err = -EFAULT;
1180 if (get_user(pid, (int __user *)argp))
1181 break;
Jiri Slaby393cc3f2017-06-13 13:35:50 +02001182 err = f_setown(sock->file, pid, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 break;
1184 case FIOGETOWN:
1185 case SIOCGPGRP:
Eric W. Biederman609d7fa2006-10-02 02:17:15 -07001186 err = put_user(f_getown(sock->file),
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001187 (int __user *)argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 break;
1189 case SIOCGIFBR:
1190 case SIOCSIFBR:
1191 case SIOCBRADDBR:
1192 case SIOCBRDELBR:
Arnd Bergmannad2f99a2021-07-27 15:45:16 +02001193 err = br_ioctl_call(net, NULL, cmd, NULL, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 break;
1195 case SIOCGIFVLAN:
1196 case SIOCSIFVLAN:
1197 err = -ENOPKG;
1198 if (!vlan_ioctl_hook)
1199 request_module("8021q");
1200
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001201 mutex_lock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 if (vlan_ioctl_hook)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001203 err = vlan_ioctl_hook(net, argp);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001204 mutex_unlock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 break;
Andrey Vaginc62cce22016-10-24 18:29:13 -07001206 case SIOCGSKNS:
1207 err = -EPERM;
1208 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
1209 break;
1210
1211 err = open_related_ns(&net->ns, get_net_ns);
1212 break;
Arnd Bergmann0768e172019-04-17 22:56:11 +02001213 case SIOCGSTAMP_OLD:
1214 case SIOCGSTAMPNS_OLD:
Arnd Bergmannc7cbdbf2019-04-17 22:51:48 +02001215 if (!sock->ops->gettstamp) {
1216 err = -ENOIOCTLCMD;
1217 break;
1218 }
1219 err = sock->ops->gettstamp(sock, argp,
Arnd Bergmann0768e172019-04-17 22:56:11 +02001220 cmd == SIOCGSTAMP_OLD,
1221 !IS_ENABLED(CONFIG_64BIT));
Gustavo A. R. Silva60747822019-04-24 10:31:24 -05001222 break;
Arnd Bergmann0768e172019-04-17 22:56:11 +02001223 case SIOCGSTAMP_NEW:
1224 case SIOCGSTAMPNS_NEW:
1225 if (!sock->ops->gettstamp) {
1226 err = -ENOIOCTLCMD;
1227 break;
1228 }
1229 err = sock->ops->gettstamp(sock, argp,
1230 cmd == SIOCGSTAMP_NEW,
1231 false);
Arnd Bergmannc7cbdbf2019-04-17 22:51:48 +02001232 break;
Arnd Bergmann876f0bf2021-07-22 16:29:02 +02001233
1234 case SIOCGIFCONF:
1235 err = dev_ifconf(net, argp);
1236 break;
1237
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 default:
Johannes Berg63ff03a2019-01-25 22:43:17 +01001239 err = sock_do_ioctl(net, sock, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001241 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 return err;
1243}
1244
Pedro Tammela8a3c2452019-03-14 10:45:23 -03001245/**
1246 * sock_create_lite - creates a socket
1247 * @family: protocol family (AF_INET, ...)
1248 * @type: communication type (SOCK_STREAM, ...)
1249 * @protocol: protocol (0, ...)
1250 * @res: new socket
1251 *
1252 * Creates a new socket and assigns it to @res, passing through LSM.
1253 * The new socket initialization is not complete, see kernel_accept().
1254 * Returns 0 or an error. On failure @res is set to %NULL.
1255 * This function internally uses GFP_KERNEL.
1256 */
1257
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258int sock_create_lite(int family, int type, int protocol, struct socket **res)
1259{
1260 int err;
1261 struct socket *sock = NULL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001262
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 err = security_socket_create(family, type, protocol, 1);
1264 if (err)
1265 goto out;
1266
1267 sock = sock_alloc();
1268 if (!sock) {
1269 err = -ENOMEM;
1270 goto out;
1271 }
1272
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 sock->type = type;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001274 err = security_socket_post_create(sock, family, type, protocol, 1);
1275 if (err)
1276 goto out_release;
1277
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278out:
1279 *res = sock;
1280 return err;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001281out_release:
1282 sock_release(sock);
1283 sock = NULL;
1284 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001286EXPORT_SYMBOL(sock_create_lite);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287
1288/* No kernel lock held - perfect */
Al Viroade994f2017-07-03 00:01:49 -04001289static __poll_t sock_poll(struct file *file, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290{
Christoph Hellwig3cafb372018-01-09 16:07:34 +01001291 struct socket *sock = file->private_data;
Christoph Hellwiga331de32018-07-30 09:42:13 +02001292 __poll_t events = poll_requested_events(wait), flag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293
Christoph Hellwige88958e2018-06-29 15:37:24 +02001294 if (!sock->ops->poll)
1295 return 0;
Christoph Hellwigf641f13b2018-07-30 09:42:12 +02001296
Christoph Hellwiga331de32018-07-30 09:42:13 +02001297 if (sk_can_busy_loop(sock->sk)) {
1298 /* poll once if requested by the syscall */
1299 if (events & POLL_BUSY_LOOP)
1300 sk_busy_loop(sock->sk, 1);
1301
1302 /* if this socket can poll_ll, tell the system call */
1303 flag = POLL_BUSY_LOOP;
1304 }
1305
1306 return sock->ops->poll(file, sock, wait) | flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307}
1308
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001309static int sock_mmap(struct file *file, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310{
Eric Dumazetb69aee02005-09-06 14:42:45 -07001311 struct socket *sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
1313 return sock->ops->mmap(file, sock, vma);
1314}
1315
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001316static int sock_close(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317{
Cong Wang6d8c50d2018-06-07 13:39:49 -07001318 __sock_release(SOCKET_I(inode), inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 return 0;
1320}
1321
1322/*
1323 * Update the socket async list
1324 *
1325 * Fasync_list locking strategy.
1326 *
1327 * 1. fasync_list is modified only under process context socket lock
1328 * i.e. under semaphore.
1329 * 2. fasync_list is used under read_lock(&sk->sk_callback_lock)
Eric Dumazet989a2972010-04-14 09:55:35 +00001330 * or under socket lock
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 */
1332
1333static int sock_fasync(int fd, struct file *filp, int on)
1334{
Eric Dumazet989a2972010-04-14 09:55:35 +00001335 struct socket *sock = filp->private_data;
1336 struct sock *sk = sock->sk;
Al Viro333f7902019-07-05 20:14:16 +01001337 struct socket_wq *wq = &sock->wq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338
Eric Dumazet989a2972010-04-14 09:55:35 +00001339 if (sk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341
1342 lock_sock(sk);
Eric Dumazeteaefd1102011-02-18 03:26:36 +00001343 fasync_helper(fd, filp, on, &wq->fasync_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344
Eric Dumazeteaefd1102011-02-18 03:26:36 +00001345 if (!wq->fasync_list)
Eric Dumazet989a2972010-04-14 09:55:35 +00001346 sock_reset_flag(sk, SOCK_FASYNC);
Jonathan Corbet76398422009-02-01 14:26:59 -07001347 else
Eric Dumazetbcdce712009-10-06 17:28:29 -07001348 sock_set_flag(sk, SOCK_FASYNC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349
Eric Dumazet989a2972010-04-14 09:55:35 +00001350 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 return 0;
1352}
1353
Eric Dumazetceb5d582015-11-29 20:03:11 -08001354/* This function may be called only under rcu_lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355
Eric Dumazetceb5d582015-11-29 20:03:11 -08001356int sock_wake_async(struct socket_wq *wq, int how, int band)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357{
Eric Dumazetceb5d582015-11-29 20:03:11 -08001358 if (!wq || !wq->fasync_list)
1359 return -1;
Eric Dumazet43815482010-04-29 11:01:49 +00001360
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001361 switch (how) {
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001362 case SOCK_WAKE_WAITD:
Eric Dumazetceb5d582015-11-29 20:03:11 -08001363 if (test_bit(SOCKWQ_ASYNC_WAITDATA, &wq->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 break;
1365 goto call_kill;
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001366 case SOCK_WAKE_SPACE:
Eric Dumazetceb5d582015-11-29 20:03:11 -08001367 if (!test_and_clear_bit(SOCKWQ_ASYNC_NOSPACE, &wq->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 break;
Miaohe Lin7c7ab582020-08-08 16:23:10 +08001369 fallthrough;
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001370 case SOCK_WAKE_IO:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001371call_kill:
Eric Dumazet43815482010-04-29 11:01:49 +00001372 kill_fasync(&wq->fasync_list, SIGIO, band);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 break;
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001374 case SOCK_WAKE_URG:
Eric Dumazet43815482010-04-29 11:01:49 +00001375 kill_fasync(&wq->fasync_list, SIGURG, band);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 }
Eric Dumazetceb5d582015-11-29 20:03:11 -08001377
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 return 0;
1379}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001380EXPORT_SYMBOL(sock_wake_async);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381
Pedro Tammela8a3c2452019-03-14 10:45:23 -03001382/**
1383 * __sock_create - creates a socket
1384 * @net: net namespace
1385 * @family: protocol family (AF_INET, ...)
1386 * @type: communication type (SOCK_STREAM, ...)
1387 * @protocol: protocol (0, ...)
1388 * @res: new socket
1389 * @kern: boolean for kernel space sockets
1390 *
1391 * Creates a new socket and assigns it to @res, passing through LSM.
1392 * Returns 0 or an error. On failure @res is set to %NULL. @kern must
1393 * be set to true if the socket resides in kernel space.
1394 * This function internally uses GFP_KERNEL.
1395 */
1396
Pavel Emelyanov721db932010-09-29 16:06:32 +04001397int __sock_create(struct net *net, int family, int type, int protocol,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001398 struct socket **res, int kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399{
1400 int err;
1401 struct socket *sock;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001402 const struct net_proto_family *pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403
1404 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001405 * Check protocol is in range
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 */
1407 if (family < 0 || family >= NPROTO)
1408 return -EAFNOSUPPORT;
1409 if (type < 0 || type >= SOCK_MAX)
1410 return -EINVAL;
1411
1412 /* Compatibility.
1413
1414 This uglymoron is moved from INET layer to here to avoid
1415 deadlock in module load.
1416 */
1417 if (family == PF_INET && type == SOCK_PACKET) {
liping.zhangf3c98692016-03-11 23:08:36 +08001418 pr_info_once("%s uses obsolete (PF_INET,SOCK_PACKET)\n",
1419 current->comm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 family = PF_PACKET;
1421 }
1422
1423 err = security_socket_create(family, type, protocol, kern);
1424 if (err)
1425 return err;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001426
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001427 /*
1428 * Allocate the socket and allow the family to set things up. if
1429 * the protocol is 0, the family is instructed to select an appropriate
1430 * default.
1431 */
1432 sock = sock_alloc();
1433 if (!sock) {
Joe Perchese87cc472012-05-13 21:56:26 +00001434 net_warn_ratelimited("socket: no more sockets\n");
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001435 return -ENFILE; /* Not exactly a match, but its the
1436 closest posix thing */
1437 }
1438
1439 sock->type = type;
1440
Johannes Berg95a5afc2008-10-16 15:24:51 -07001441#ifdef CONFIG_MODULES
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001442 /* Attempt to load a protocol module if the find failed.
1443 *
1444 * 12/09/1996 Marcin: But! this makes REALLY only sense, if the user
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 * requested real, full-featured networking support upon configuration.
1446 * Otherwise module support will break!
1447 */
Eric Dumazet190683a2010-11-10 10:50:44 +00001448 if (rcu_access_pointer(net_families[family]) == NULL)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001449 request_module("net-pf-%d", family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450#endif
1451
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001452 rcu_read_lock();
1453 pf = rcu_dereference(net_families[family]);
1454 err = -EAFNOSUPPORT;
1455 if (!pf)
1456 goto out_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457
1458 /*
1459 * We will call the ->create function, that possibly is in a loadable
1460 * module, so we have to bump that loadable module refcnt first.
1461 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001462 if (!try_module_get(pf->owner))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 goto out_release;
1464
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001465 /* Now protected by module ref count */
1466 rcu_read_unlock();
1467
Eric Paris3f378b62009-11-05 22:18:14 -08001468 err = pf->create(net, sock, protocol, kern);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001469 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 goto out_module_put;
Frank Filza79af592005-09-27 15:23:38 -07001471
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 /*
1473 * Now to bump the refcnt of the [loadable] module that owns this
1474 * socket at sock_release time we decrement its refcnt.
1475 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001476 if (!try_module_get(sock->ops->owner))
1477 goto out_module_busy;
1478
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 /*
1480 * Now that we're done with the ->create function, the [loadable]
1481 * module can have its refcnt decremented
1482 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001483 module_put(pf->owner);
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001484 err = security_socket_post_create(sock, family, type, protocol, kern);
1485 if (err)
Herbert Xu3b185522007-08-15 14:46:02 -07001486 goto out_sock_release;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001487 *res = sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001489 return 0;
1490
1491out_module_busy:
1492 err = -EAFNOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493out_module_put:
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001494 sock->ops = NULL;
1495 module_put(pf->owner);
1496out_sock_release:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 sock_release(sock);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001498 return err;
1499
1500out_release:
1501 rcu_read_unlock();
1502 goto out_sock_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503}
Pavel Emelyanov721db932010-09-29 16:06:32 +04001504EXPORT_SYMBOL(__sock_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505
Pedro Tammela8a3c2452019-03-14 10:45:23 -03001506/**
1507 * sock_create - creates a socket
1508 * @family: protocol family (AF_INET, ...)
1509 * @type: communication type (SOCK_STREAM, ...)
1510 * @protocol: protocol (0, ...)
1511 * @res: new socket
1512 *
1513 * A wrapper around __sock_create().
1514 * Returns 0 or an error. This function internally uses GFP_KERNEL.
1515 */
1516
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517int sock_create(int family, int type, int protocol, struct socket **res)
1518{
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001519 return __sock_create(current->nsproxy->net_ns, family, type, protocol, res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001521EXPORT_SYMBOL(sock_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522
Pedro Tammela8a3c2452019-03-14 10:45:23 -03001523/**
1524 * sock_create_kern - creates a socket (kernel space)
1525 * @net: net namespace
1526 * @family: protocol family (AF_INET, ...)
1527 * @type: communication type (SOCK_STREAM, ...)
1528 * @protocol: protocol (0, ...)
1529 * @res: new socket
1530 *
1531 * A wrapper around __sock_create().
1532 * Returns 0 or an error. This function internally uses GFP_KERNEL.
1533 */
1534
Eric W. Biedermaneeb1bd52015-05-08 21:08:05 -05001535int sock_create_kern(struct net *net, int family, int type, int protocol, struct socket **res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536{
Eric W. Biedermaneeb1bd52015-05-08 21:08:05 -05001537 return __sock_create(net, family, type, protocol, res, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001539EXPORT_SYMBOL(sock_create_kern);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540
Dominik Brodowski9d6a15c2018-03-13 19:29:43 +01001541int __sys_socket(int family, int type, int protocol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542{
1543 int retval;
1544 struct socket *sock;
Ulrich Dreppera677a032008-07-23 21:29:17 -07001545 int flags;
1546
Ulrich Dreppere38b36f2008-07-23 21:29:42 -07001547 /* Check the SOCK_* constants for consistency. */
1548 BUILD_BUG_ON(SOCK_CLOEXEC != O_CLOEXEC);
1549 BUILD_BUG_ON((SOCK_MAX | SOCK_TYPE_MASK) != SOCK_TYPE_MASK);
1550 BUILD_BUG_ON(SOCK_CLOEXEC & SOCK_TYPE_MASK);
1551 BUILD_BUG_ON(SOCK_NONBLOCK & SOCK_TYPE_MASK);
1552
Ulrich Dreppera677a032008-07-23 21:29:17 -07001553 flags = type & ~SOCK_TYPE_MASK;
Ulrich Drepper77d27202008-07-23 21:29:35 -07001554 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Dreppera677a032008-07-23 21:29:17 -07001555 return -EINVAL;
1556 type &= SOCK_TYPE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001558 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1559 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1560
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 retval = sock_create(family, type, protocol, &sock);
1562 if (retval < 0)
Al Viro8e1611e2017-12-05 23:29:09 +00001563 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564
Al Viro8e1611e2017-12-05 23:29:09 +00001565 return sock_map_fd(sock, flags & (O_CLOEXEC | O_NONBLOCK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566}
1567
Dominik Brodowski9d6a15c2018-03-13 19:29:43 +01001568SYSCALL_DEFINE3(socket, int, family, int, type, int, protocol)
1569{
1570 return __sys_socket(family, type, protocol);
1571}
1572
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573/*
1574 * Create a pair of connected sockets.
1575 */
1576
Dominik Brodowski6debc8d2018-03-13 19:49:23 +01001577int __sys_socketpair(int family, int type, int protocol, int __user *usockvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578{
1579 struct socket *sock1, *sock2;
1580 int fd1, fd2, err;
Al Virodb349502007-02-07 01:48:00 -05001581 struct file *newfile1, *newfile2;
Ulrich Dreppera677a032008-07-23 21:29:17 -07001582 int flags;
1583
1584 flags = type & ~SOCK_TYPE_MASK;
Ulrich Drepper77d27202008-07-23 21:29:35 -07001585 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Dreppera677a032008-07-23 21:29:17 -07001586 return -EINVAL;
1587 type &= SOCK_TYPE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001589 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1590 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1591
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 /*
Al Viro016a2662017-12-05 23:28:38 +00001593 * reserve descriptors and make sure we won't fail
1594 * to return them to userland.
1595 */
1596 fd1 = get_unused_fd_flags(flags);
1597 if (unlikely(fd1 < 0))
1598 return fd1;
1599
1600 fd2 = get_unused_fd_flags(flags);
1601 if (unlikely(fd2 < 0)) {
1602 put_unused_fd(fd1);
1603 return fd2;
1604 }
1605
1606 err = put_user(fd1, &usockvec[0]);
1607 if (err)
1608 goto out;
1609
1610 err = put_user(fd2, &usockvec[1]);
1611 if (err)
1612 goto out;
1613
1614 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 * Obtain the first socket and check if the underlying protocol
1616 * supports the socketpair call.
1617 */
1618
1619 err = sock_create(family, type, protocol, &sock1);
Al Viro016a2662017-12-05 23:28:38 +00001620 if (unlikely(err < 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 goto out;
1622
1623 err = sock_create(family, type, protocol, &sock2);
Al Viro016a2662017-12-05 23:28:38 +00001624 if (unlikely(err < 0)) {
1625 sock_release(sock1);
1626 goto out;
David S. Millerbf3c23d2007-10-29 21:54:02 -07001627 }
Yann Droneaudd73aa282013-12-09 22:42:20 +01001628
David Herrmannd47cd942018-05-04 16:28:20 +02001629 err = security_socket_socketpair(sock1, sock2);
1630 if (unlikely(err)) {
1631 sock_release(sock2);
1632 sock_release(sock1);
1633 goto out;
1634 }
1635
Al Viro016a2662017-12-05 23:28:38 +00001636 err = sock1->ops->socketpair(sock1, sock2);
1637 if (unlikely(err < 0)) {
1638 sock_release(sock2);
1639 sock_release(sock1);
1640 goto out;
Al Viro28407632012-08-17 23:54:15 -04001641 }
1642
Linus Torvaldsaab174f2012-10-02 20:25:04 -07001643 newfile1 = sock_alloc_file(sock1, flags, NULL);
Viresh Kumarb5ffe632015-08-12 15:59:47 +05301644 if (IS_ERR(newfile1)) {
Al Viro28407632012-08-17 23:54:15 -04001645 err = PTR_ERR(newfile1);
Al Viro016a2662017-12-05 23:28:38 +00001646 sock_release(sock2);
1647 goto out;
Al Viro28407632012-08-17 23:54:15 -04001648 }
1649
Linus Torvaldsaab174f2012-10-02 20:25:04 -07001650 newfile2 = sock_alloc_file(sock2, flags, NULL);
Al Viro28407632012-08-17 23:54:15 -04001651 if (IS_ERR(newfile2)) {
1652 err = PTR_ERR(newfile2);
Al Viro016a2662017-12-05 23:28:38 +00001653 fput(newfile1);
1654 goto out;
Al Virodb349502007-02-07 01:48:00 -05001655 }
1656
Al Viro157cf642008-12-14 04:57:47 -05001657 audit_fd_pair(fd1, fd2);
Yann Droneaudd73aa282013-12-09 22:42:20 +01001658
Al Virodb349502007-02-07 01:48:00 -05001659 fd_install(fd1, newfile1);
1660 fd_install(fd2, newfile2);
Yann Droneaudd73aa282013-12-09 22:42:20 +01001661 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663out:
Al Viro016a2662017-12-05 23:28:38 +00001664 put_unused_fd(fd2);
1665 put_unused_fd(fd1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 return err;
1667}
1668
Dominik Brodowski6debc8d2018-03-13 19:49:23 +01001669SYSCALL_DEFINE4(socketpair, int, family, int, type, int, protocol,
1670 int __user *, usockvec)
1671{
1672 return __sys_socketpair(family, type, protocol, usockvec);
1673}
1674
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675/*
1676 * Bind a name to a socket. Nothing much to do here since it's
1677 * the protocol's responsibility to handle the local address.
1678 *
1679 * We move the socket address to kernel space before we call
1680 * the protocol layer (having also checked the address is ok).
1681 */
1682
Dominik Brodowskia87d35d2018-03-13 19:33:09 +01001683int __sys_bind(int fd, struct sockaddr __user *umyaddr, int addrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684{
1685 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001686 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001687 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001689 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001690 if (sock) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001691 err = move_addr_to_kernel(umyaddr, addrlen, &address);
Jakub Sitnicki068b88c2018-10-04 11:09:40 +02001692 if (!err) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001693 err = security_socket_bind(sock,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001694 (struct sockaddr *)&address,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001695 addrlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001696 if (!err)
1697 err = sock->ops->bind(sock,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001698 (struct sockaddr *)
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001699 &address, addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 }
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001701 fput_light(sock->file, fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001702 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 return err;
1704}
1705
Dominik Brodowskia87d35d2018-03-13 19:33:09 +01001706SYSCALL_DEFINE3(bind, int, fd, struct sockaddr __user *, umyaddr, int, addrlen)
1707{
1708 return __sys_bind(fd, umyaddr, addrlen);
1709}
1710
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711/*
1712 * Perform a listen. Basically, we allow the protocol to do anything
1713 * necessary for a listen, and if that works, we mark the socket as
1714 * ready for listening.
1715 */
1716
Dominik Brodowski25e290e2018-03-13 19:36:54 +01001717int __sys_listen(int fd, int backlog)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718{
1719 struct socket *sock;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001720 int err, fput_needed;
Pavel Emelyanovb8e1f9b2007-12-08 00:12:33 -08001721 int somaxconn;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001722
1723 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1724 if (sock) {
Pavel Emelyanov8efa6e92008-03-31 19:41:14 -07001725 somaxconn = sock_net(sock->sk)->core.sysctl_somaxconn;
Eric Dumazet95c96172012-04-15 05:58:06 +00001726 if ((unsigned int)backlog > somaxconn)
Pavel Emelyanovb8e1f9b2007-12-08 00:12:33 -08001727 backlog = somaxconn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728
1729 err = security_socket_listen(sock, backlog);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001730 if (!err)
1731 err = sock->ops->listen(sock, backlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001733 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 }
1735 return err;
1736}
1737
Dominik Brodowski25e290e2018-03-13 19:36:54 +01001738SYSCALL_DEFINE2(listen, int, fd, int, backlog)
1739{
1740 return __sys_listen(fd, backlog);
1741}
1742
Pavel Begunkovd32f89d2021-08-25 12:25:44 +01001743struct file *do_accept(struct file *file, unsigned file_flags,
Jens Axboede2ea4b2019-10-17 14:41:29 -06001744 struct sockaddr __user *upeer_sockaddr,
Pavel Begunkovd32f89d2021-08-25 12:25:44 +01001745 int __user *upeer_addrlen, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746{
1747 struct socket *sock, *newsock;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001748 struct file *newfile;
Pavel Begunkovd32f89d2021-08-25 12:25:44 +01001749 int err, len;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001750 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751
Florent Revestdba4a922020-12-04 12:36:04 +01001752 sock = sock_from_file(file);
Pavel Begunkovd32f89d2021-08-25 12:25:44 +01001753 if (!sock)
1754 return ERR_PTR(-ENOTSOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001756 newsock = sock_alloc();
1757 if (!newsock)
Pavel Begunkovd32f89d2021-08-25 12:25:44 +01001758 return ERR_PTR(-ENFILE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759
1760 newsock->type = sock->type;
1761 newsock->ops = sock->ops;
1762
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 /*
1764 * We don't need try_module_get here, as the listening socket (sock)
1765 * has the protocol module (sock->ops->owner) held.
1766 */
1767 __module_get(newsock->ops->owner);
1768
Linus Torvaldsaab174f2012-10-02 20:25:04 -07001769 newfile = sock_alloc_file(newsock, flags, sock->sk->sk_prot_creator->name);
Pavel Begunkovd32f89d2021-08-25 12:25:44 +01001770 if (IS_ERR(newfile))
1771 return newfile;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001772
Frank Filza79af592005-09-27 15:23:38 -07001773 err = security_socket_accept(sock, newsock);
1774 if (err)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001775 goto out_fd;
Frank Filza79af592005-09-27 15:23:38 -07001776
Jens Axboede2ea4b2019-10-17 14:41:29 -06001777 err = sock->ops->accept(sock, newsock, sock->file->f_flags | file_flags,
1778 false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 if (err < 0)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001780 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781
1782 if (upeer_sockaddr) {
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01001783 len = newsock->ops->getname(newsock,
1784 (struct sockaddr *)&address, 2);
1785 if (len < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 err = -ECONNABORTED;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001787 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 }
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001789 err = move_addr_to_user(&address,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001790 len, upeer_sockaddr, upeer_addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 if (err < 0)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001792 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 }
1794
1795 /* File flags are not inherited via accept() unlike another OSes. */
Pavel Begunkovd32f89d2021-08-25 12:25:44 +01001796 return newfile;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001797out_fd:
David S. Miller9606a212006-04-01 01:00:14 -08001798 fput(newfile);
Pavel Begunkovd32f89d2021-08-25 12:25:44 +01001799 return ERR_PTR(err);
1800}
Jens Axboede2ea4b2019-10-17 14:41:29 -06001801
Pavel Begunkovd32f89d2021-08-25 12:25:44 +01001802int __sys_accept4_file(struct file *file, unsigned file_flags,
1803 struct sockaddr __user *upeer_sockaddr,
1804 int __user *upeer_addrlen, int flags,
1805 unsigned long nofile)
1806{
1807 struct file *newfile;
1808 int newfd;
1809
1810 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
1811 return -EINVAL;
1812
1813 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1814 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1815
1816 newfd = __get_unused_fd_flags(flags, nofile);
1817 if (unlikely(newfd < 0))
1818 return newfd;
1819
1820 newfile = do_accept(file, file_flags, upeer_sockaddr, upeer_addrlen,
1821 flags);
1822 if (IS_ERR(newfile)) {
1823 put_unused_fd(newfd);
1824 return PTR_ERR(newfile);
1825 }
1826 fd_install(newfd, newfile);
1827 return newfd;
Jens Axboede2ea4b2019-10-17 14:41:29 -06001828}
1829
1830/*
1831 * For accept, we attempt to create a new socket, set up the link
1832 * with the client, wake up the client, then return the new
1833 * connected fd. We collect the address of the connector in kernel
1834 * space and move it to user at the very end. This is unclean because
1835 * we open the socket then return an error.
1836 *
1837 * 1003.1g adds the ability to recvmsg() to query connection pending
1838 * status to recvmsg. We need to add that support in a way thats
1839 * clean when we restructure accept also.
1840 */
1841
1842int __sys_accept4(int fd, struct sockaddr __user *upeer_sockaddr,
1843 int __user *upeer_addrlen, int flags)
1844{
1845 int ret = -EBADF;
1846 struct fd f;
1847
1848 f = fdget(fd);
1849 if (f.file) {
1850 ret = __sys_accept4_file(f.file, 0, upeer_sockaddr,
Jens Axboe09952e32020-03-19 20:16:56 -06001851 upeer_addrlen, flags,
1852 rlimit(RLIMIT_NOFILE));
Miaohe Lin6b07ede2020-08-06 19:52:24 +08001853 fdput(f);
Jens Axboede2ea4b2019-10-17 14:41:29 -06001854 }
1855
1856 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857}
1858
Dominik Brodowski4541e802018-03-13 19:24:23 +01001859SYSCALL_DEFINE4(accept4, int, fd, struct sockaddr __user *, upeer_sockaddr,
1860 int __user *, upeer_addrlen, int, flags)
1861{
1862 return __sys_accept4(fd, upeer_sockaddr, upeer_addrlen, flags);
1863}
1864
Heiko Carstens20f37032009-01-14 14:14:23 +01001865SYSCALL_DEFINE3(accept, int, fd, struct sockaddr __user *, upeer_sockaddr,
1866 int __user *, upeer_addrlen)
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001867{
Dominik Brodowski4541e802018-03-13 19:24:23 +01001868 return __sys_accept4(fd, upeer_sockaddr, upeer_addrlen, 0);
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001869}
1870
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871/*
1872 * Attempt to connect to a socket with the server address. The address
1873 * is in user space so we verify it is OK and move it to kernel space.
1874 *
1875 * For 1003.1g we need to add clean support for a bind to AF_UNSPEC to
1876 * break bindings
1877 *
1878 * NOTE: 1003.1g draft 6.3 is broken with respect to AX.25/NetROM and
1879 * other SEQPACKET protocols that take time to connect() as it doesn't
1880 * include the -EINPROGRESS status for such sockets.
1881 */
1882
Jens Axboef499a022019-12-02 16:28:46 -07001883int __sys_connect_file(struct file *file, struct sockaddr_storage *address,
Jens Axboebd3ded32019-11-23 14:17:16 -07001884 int addrlen, int file_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885{
1886 struct socket *sock;
Jens Axboebd3ded32019-11-23 14:17:16 -07001887 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888
Florent Revestdba4a922020-12-04 12:36:04 +01001889 sock = sock_from_file(file);
1890 if (!sock) {
1891 err = -ENOTSOCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 goto out;
Florent Revestdba4a922020-12-04 12:36:04 +01001893 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001895 err =
Jens Axboef499a022019-12-02 16:28:46 -07001896 security_socket_connect(sock, (struct sockaddr *)address, addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 if (err)
Jens Axboebd3ded32019-11-23 14:17:16 -07001898 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899
Jens Axboef499a022019-12-02 16:28:46 -07001900 err = sock->ops->connect(sock, (struct sockaddr *)address, addrlen,
Jens Axboebd3ded32019-11-23 14:17:16 -07001901 sock->file->f_flags | file_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902out:
1903 return err;
1904}
1905
Jens Axboebd3ded32019-11-23 14:17:16 -07001906int __sys_connect(int fd, struct sockaddr __user *uservaddr, int addrlen)
1907{
1908 int ret = -EBADF;
1909 struct fd f;
1910
1911 f = fdget(fd);
1912 if (f.file) {
Jens Axboef499a022019-12-02 16:28:46 -07001913 struct sockaddr_storage address;
1914
1915 ret = move_addr_to_kernel(uservaddr, addrlen, &address);
1916 if (!ret)
1917 ret = __sys_connect_file(f.file, &address, addrlen, 0);
Miaohe Lin6b07ede2020-08-06 19:52:24 +08001918 fdput(f);
Jens Axboebd3ded32019-11-23 14:17:16 -07001919 }
1920
1921 return ret;
1922}
1923
Dominik Brodowski1387c2c2018-03-13 19:35:09 +01001924SYSCALL_DEFINE3(connect, int, fd, struct sockaddr __user *, uservaddr,
1925 int, addrlen)
1926{
1927 return __sys_connect(fd, uservaddr, addrlen);
1928}
1929
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930/*
1931 * Get the local address ('name') of a socket object. Move the obtained
1932 * name to user space.
1933 */
1934
Dominik Brodowski8882a102018-03-13 19:43:14 +01001935int __sys_getsockname(int fd, struct sockaddr __user *usockaddr,
1936 int __user *usockaddr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937{
1938 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001939 struct sockaddr_storage address;
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01001940 int err, fput_needed;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001941
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001942 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 if (!sock)
1944 goto out;
1945
1946 err = security_socket_getsockname(sock);
1947 if (err)
1948 goto out_put;
1949
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01001950 err = sock->ops->getname(sock, (struct sockaddr *)&address, 0);
1951 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 goto out_put;
Hamish MacDonalde44ef1d2022-01-01 22:38:25 +10001953 /* "err" is actually length in this case */
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01001954 err = move_addr_to_user(&address, err, usockaddr, usockaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955
1956out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001957 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958out:
1959 return err;
1960}
1961
Dominik Brodowski8882a102018-03-13 19:43:14 +01001962SYSCALL_DEFINE3(getsockname, int, fd, struct sockaddr __user *, usockaddr,
1963 int __user *, usockaddr_len)
1964{
1965 return __sys_getsockname(fd, usockaddr, usockaddr_len);
1966}
1967
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968/*
1969 * Get the remote address ('name') of a socket object. Move the obtained
1970 * name to user space.
1971 */
1972
Dominik Brodowskib21c8f82018-03-13 19:47:00 +01001973int __sys_getpeername(int fd, struct sockaddr __user *usockaddr,
1974 int __user *usockaddr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975{
1976 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001977 struct sockaddr_storage address;
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01001978 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001980 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1981 if (sock != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 err = security_socket_getpeername(sock);
1983 if (err) {
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001984 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 return err;
1986 }
1987
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01001988 err = sock->ops->getname(sock, (struct sockaddr *)&address, 1);
1989 if (err >= 0)
1990 /* "err" is actually length in this case */
1991 err = move_addr_to_user(&address, err, usockaddr,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001992 usockaddr_len);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001993 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 }
1995 return err;
1996}
1997
Dominik Brodowskib21c8f82018-03-13 19:47:00 +01001998SYSCALL_DEFINE3(getpeername, int, fd, struct sockaddr __user *, usockaddr,
1999 int __user *, usockaddr_len)
2000{
2001 return __sys_getpeername(fd, usockaddr, usockaddr_len);
2002}
2003
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004/*
2005 * Send a datagram to a given address. We move the address into kernel
2006 * space and check the user space data area is readable before invoking
2007 * the protocol.
2008 */
Dominik Brodowski211b6342018-03-13 19:18:52 +01002009int __sys_sendto(int fd, void __user *buff, size_t len, unsigned int flags,
2010 struct sockaddr __user *addr, int addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011{
2012 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07002013 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 int err;
2015 struct msghdr msg;
2016 struct iovec iov;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002017 int fput_needed;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002018
Al Viro602bd0e2015-03-21 19:12:32 -04002019 err = import_single_range(WRITE, buff, len, &iov, &msg.msg_iter);
2020 if (unlikely(err))
2021 return err;
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08002022 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2023 if (!sock)
David S. Miller4387ff72007-02-08 15:06:08 -08002024 goto out;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002025
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002026 msg.msg_name = NULL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002027 msg.msg_control = NULL;
2028 msg.msg_controllen = 0;
2029 msg.msg_namelen = 0;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002030 if (addr) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00002031 err = move_addr_to_kernel(addr, addr_len, &address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 if (err < 0)
2033 goto out_put;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07002034 msg.msg_name = (struct sockaddr *)&address;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002035 msg.msg_namelen = addr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 }
2037 if (sock->file->f_flags & O_NONBLOCK)
2038 flags |= MSG_DONTWAIT;
2039 msg.msg_flags = flags;
Al Virod8725c82014-12-11 00:02:50 -05002040 err = sock_sendmsg(sock, &msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002042out_put:
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08002043 fput_light(sock->file, fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08002044out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 return err;
2046}
2047
Dominik Brodowski211b6342018-03-13 19:18:52 +01002048SYSCALL_DEFINE6(sendto, int, fd, void __user *, buff, size_t, len,
2049 unsigned int, flags, struct sockaddr __user *, addr,
2050 int, addr_len)
2051{
2052 return __sys_sendto(fd, buff, len, flags, addr, addr_len);
2053}
2054
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002056 * Send a datagram down a socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 */
2058
Heiko Carstens3e0fa652009-01-14 14:14:24 +01002059SYSCALL_DEFINE4(send, int, fd, void __user *, buff, size_t, len,
Eric Dumazet95c96172012-04-15 05:58:06 +00002060 unsigned int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061{
Dominik Brodowski211b6342018-03-13 19:18:52 +01002062 return __sys_sendto(fd, buff, len, flags, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063}
2064
2065/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002066 * Receive a frame from the socket and optionally record the address of the
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 * sender. We verify the buffers are writable and if needed move the
2068 * sender address from kernel to user space.
2069 */
Dominik Brodowski7a09e1e2018-03-13 19:10:06 +01002070int __sys_recvfrom(int fd, void __user *ubuf, size_t size, unsigned int flags,
2071 struct sockaddr __user *addr, int __user *addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072{
2073 struct socket *sock;
2074 struct iovec iov;
2075 struct msghdr msg;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07002076 struct sockaddr_storage address;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002077 int err, err2;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002078 int fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079
Al Viro602bd0e2015-03-21 19:12:32 -04002080 err = import_single_range(READ, ubuf, size, &iov, &msg.msg_iter);
2081 if (unlikely(err))
2082 return err;
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08002083 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 if (!sock)
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08002085 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002087 msg.msg_control = NULL;
2088 msg.msg_controllen = 0;
Hannes Frederic Sowaf3d33422013-11-21 03:14:22 +01002089 /* Save some cycles and don't copy the address if not needed */
2090 msg.msg_name = addr ? (struct sockaddr *)&address : NULL;
2091 /* We assume all kernel code knows the size of sockaddr_storage */
2092 msg.msg_namelen = 0;
tadeusz.struk@intel.com130ed5d2015-12-15 10:46:17 -08002093 msg.msg_iocb = NULL;
Alexander Potapenko9f138fa2017-03-08 18:08:16 +01002094 msg.msg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 if (sock->file->f_flags & O_NONBLOCK)
2096 flags |= MSG_DONTWAIT;
Al Viro2da62902015-03-14 21:13:46 -04002097 err = sock_recvmsg(sock, &msg, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002099 if (err >= 0 && addr != NULL) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00002100 err2 = move_addr_to_user(&address,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07002101 msg.msg_namelen, addr, addr_len);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002102 if (err2 < 0)
2103 err = err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 }
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08002105
2106 fput_light(sock->file, fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08002107out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 return err;
2109}
2110
Dominik Brodowski7a09e1e2018-03-13 19:10:06 +01002111SYSCALL_DEFINE6(recvfrom, int, fd, void __user *, ubuf, size_t, size,
2112 unsigned int, flags, struct sockaddr __user *, addr,
2113 int __user *, addr_len)
2114{
2115 return __sys_recvfrom(fd, ubuf, size, flags, addr, addr_len);
2116}
2117
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002119 * Receive a datagram from a socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 */
2121
Jan Glauberb7c0ddf2014-04-16 09:32:48 +02002122SYSCALL_DEFINE4(recv, int, fd, void __user *, ubuf, size_t, size,
2123 unsigned int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124{
Dominik Brodowski7a09e1e2018-03-13 19:10:06 +01002125 return __sys_recvfrom(fd, ubuf, size, flags, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126}
2127
Florian Westphal83f0c102020-07-05 01:30:15 +02002128static bool sock_use_custom_sol_socket(const struct socket *sock)
2129{
2130 const struct sock *sk = sock->sk;
2131
2132 /* Use sock->ops->setsockopt() for MPTCP */
2133 return IS_ENABLED(CONFIG_MPTCP) &&
2134 sk->sk_protocol == IPPROTO_MPTCP &&
2135 sk->sk_type == SOCK_STREAM &&
2136 (sk->sk_family == AF_INET || sk->sk_family == AF_INET6);
2137}
2138
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139/*
2140 * Set a socket option. Because we don't know the option lengths we have
2141 * to pass the user mode parameter for the protocols to sort out.
2142 */
Christoph Hellwiga7b75c52020-07-23 08:09:07 +02002143int __sys_setsockopt(int fd, int level, int optname, char __user *user_optval,
Christoph Hellwig55db9c02020-07-17 08:23:15 +02002144 int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145{
Christoph Hellwig519a8a62020-08-10 18:42:14 +02002146 sockptr_t optval = USER_SOCKPTR(user_optval);
Stanislav Fomichev0d01da62019-06-27 13:38:47 -07002147 char *kernel_optval = NULL;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002148 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 struct socket *sock;
2150
2151 if (optlen < 0)
2152 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002153
2154 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Christoph Hellwig4a367292020-07-17 08:23:11 +02002155 if (!sock)
2156 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157
Christoph Hellwig4a367292020-07-17 08:23:11 +02002158 err = security_socket_setsockopt(sock, level, optname);
2159 if (err)
2160 goto out_put;
Stanislav Fomichev0d01da62019-06-27 13:38:47 -07002161
Christoph Hellwig55db9c02020-07-17 08:23:15 +02002162 if (!in_compat_syscall())
2163 err = BPF_CGROUP_RUN_PROG_SETSOCKOPT(sock->sk, &level, &optname,
Christoph Hellwiga7b75c52020-07-23 08:09:07 +02002164 user_optval, &optlen,
Christoph Hellwig55db9c02020-07-17 08:23:15 +02002165 &kernel_optval);
Christoph Hellwig4a367292020-07-17 08:23:11 +02002166 if (err < 0)
2167 goto out_put;
2168 if (err > 0) {
2169 err = 0;
2170 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 }
Christoph Hellwig4a367292020-07-17 08:23:11 +02002172
Christoph Hellwiga7b75c52020-07-23 08:09:07 +02002173 if (kernel_optval)
2174 optval = KERNEL_SOCKPTR(kernel_optval);
Christoph Hellwig4a367292020-07-17 08:23:11 +02002175 if (level == SOL_SOCKET && !sock_use_custom_sol_socket(sock))
Christoph Hellwiga7b75c52020-07-23 08:09:07 +02002176 err = sock_setsockopt(sock, level, optname, optval, optlen);
Christoph Hellwiga44d9e72020-07-17 08:23:31 +02002177 else if (unlikely(!sock->ops->setsockopt))
2178 err = -EOPNOTSUPP;
Christoph Hellwig4a367292020-07-17 08:23:11 +02002179 else
2180 err = sock->ops->setsockopt(sock, level, optname, optval,
2181 optlen);
Christoph Hellwiga7b75c52020-07-23 08:09:07 +02002182 kfree(kernel_optval);
Christoph Hellwig4a367292020-07-17 08:23:11 +02002183out_put:
2184 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 return err;
2186}
2187
Dominik Brodowskicc36dca2018-03-13 20:10:59 +01002188SYSCALL_DEFINE5(setsockopt, int, fd, int, level, int, optname,
2189 char __user *, optval, int, optlen)
2190{
2191 return __sys_setsockopt(fd, level, optname, optval, optlen);
2192}
2193
Stanislav Fomichev9cacf812021-01-15 08:34:59 -08002194INDIRECT_CALLABLE_DECLARE(bool tcp_bpf_bypass_getsockopt(int level,
2195 int optname));
2196
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197/*
2198 * Get a socket option. Because we don't know the option lengths we have
2199 * to pass a user mode parameter for the protocols to sort out.
2200 */
Christoph Hellwig55db9c02020-07-17 08:23:15 +02002201int __sys_getsockopt(int fd, int level, int optname, char __user *optval,
2202 int __user *optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002204 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 struct socket *sock;
Stanislav Fomichev0d01da62019-06-27 13:38:47 -07002206 int max_optlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002208 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Christoph Hellwigd8a9b382020-07-17 08:23:12 +02002209 if (!sock)
2210 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211
Christoph Hellwigd8a9b382020-07-17 08:23:12 +02002212 err = security_socket_getsockopt(sock, level, optname);
2213 if (err)
2214 goto out_put;
Stanislav Fomichev0d01da62019-06-27 13:38:47 -07002215
Christoph Hellwig55db9c02020-07-17 08:23:15 +02002216 if (!in_compat_syscall())
2217 max_optlen = BPF_CGROUP_GETSOCKOPT_MAX_OPTLEN(optlen);
Christoph Hellwigd8a9b382020-07-17 08:23:12 +02002218
2219 if (level == SOL_SOCKET)
2220 err = sock_getsockopt(sock, level, optname, optval, optlen);
Christoph Hellwiga44d9e72020-07-17 08:23:31 +02002221 else if (unlikely(!sock->ops->getsockopt))
2222 err = -EOPNOTSUPP;
Christoph Hellwigd8a9b382020-07-17 08:23:12 +02002223 else
2224 err = sock->ops->getsockopt(sock, level, optname, optval,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002225 optlen);
Stanislav Fomichev0d01da62019-06-27 13:38:47 -07002226
Christoph Hellwig55db9c02020-07-17 08:23:15 +02002227 if (!in_compat_syscall())
2228 err = BPF_CGROUP_RUN_PROG_GETSOCKOPT(sock->sk, level, optname,
2229 optval, optlen, max_optlen,
2230 err);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002231out_put:
Christoph Hellwigd8a9b382020-07-17 08:23:12 +02002232 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 return err;
2234}
2235
Dominik Brodowski13a2d702018-03-13 20:15:04 +01002236SYSCALL_DEFINE5(getsockopt, int, fd, int, level, int, optname,
2237 char __user *, optval, int __user *, optlen)
2238{
2239 return __sys_getsockopt(fd, level, optname, optval, optlen);
2240}
2241
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242/*
2243 * Shutdown a socket.
2244 */
2245
Jens Axboeb713c192020-09-05 11:13:35 -06002246int __sys_shutdown_sock(struct socket *sock, int how)
2247{
2248 int err;
2249
2250 err = security_socket_shutdown(sock, how);
2251 if (!err)
2252 err = sock->ops->shutdown(sock, how);
2253
2254 return err;
2255}
2256
Dominik Brodowski005a1ae2018-03-13 20:07:05 +01002257int __sys_shutdown(int fd, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002259 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 struct socket *sock;
2261
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002262 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2263 if (sock != NULL) {
Jens Axboeb713c192020-09-05 11:13:35 -06002264 err = __sys_shutdown_sock(sock, how);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002265 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 }
2267 return err;
2268}
2269
Dominik Brodowski005a1ae2018-03-13 20:07:05 +01002270SYSCALL_DEFINE2(shutdown, int, fd, int, how)
2271{
2272 return __sys_shutdown(fd, how);
2273}
2274
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002275/* A couple of helpful macros for getting the address of the 32/64 bit
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 * fields which are the same type (int / unsigned) on our platforms.
2277 */
2278#define COMPAT_MSG(msg, member) ((MSG_CMSG_COMPAT & flags) ? &msg##_compat->member : &msg->member)
2279#define COMPAT_NAMELEN(msg) COMPAT_MSG(msg, msg_namelen)
2280#define COMPAT_FLAGS(msg) COMPAT_MSG(msg, msg_flags)
2281
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002282struct used_address {
2283 struct sockaddr_storage name;
2284 unsigned int name_len;
2285};
2286
Jens Axboe0a384ab2020-02-27 08:11:20 -07002287int __copy_msghdr_from_user(struct msghdr *kmsg,
2288 struct user_msghdr __user *umsg,
2289 struct sockaddr __user **save_addr,
2290 struct iovec __user **uiov, size_t *nsegs)
Dan Carpenter1661bf32013-10-03 00:27:20 +03002291{
Al Viroffb07552017-06-27 19:32:04 -04002292 struct user_msghdr msg;
Al Viro08adb7d2014-11-10 20:23:13 -05002293 ssize_t err;
2294
Al Viroffb07552017-06-27 19:32:04 -04002295 if (copy_from_user(&msg, umsg, sizeof(*umsg)))
Dan Carpenter1661bf32013-10-03 00:27:20 +03002296 return -EFAULT;
Matthew Leachdbb490b2014-03-11 11:58:27 +00002297
Christoph Hellwig1f466e12020-05-11 13:59:13 +02002298 kmsg->msg_control_is_user = true;
2299 kmsg->msg_control_user = msg.msg_control;
Al Viroffb07552017-06-27 19:32:04 -04002300 kmsg->msg_controllen = msg.msg_controllen;
2301 kmsg->msg_flags = msg.msg_flags;
2302
2303 kmsg->msg_namelen = msg.msg_namelen;
2304 if (!msg.msg_name)
Ani Sinha6a2a2b32014-09-08 14:49:59 -07002305 kmsg->msg_namelen = 0;
2306
Matthew Leachdbb490b2014-03-11 11:58:27 +00002307 if (kmsg->msg_namelen < 0)
2308 return -EINVAL;
2309
Dan Carpenter1661bf32013-10-03 00:27:20 +03002310 if (kmsg->msg_namelen > sizeof(struct sockaddr_storage))
Dan Carpenterdb31c552013-11-27 15:40:21 +03002311 kmsg->msg_namelen = sizeof(struct sockaddr_storage);
Al Viro08adb7d2014-11-10 20:23:13 -05002312
2313 if (save_addr)
Al Viroffb07552017-06-27 19:32:04 -04002314 *save_addr = msg.msg_name;
Al Viro08adb7d2014-11-10 20:23:13 -05002315
Al Viroffb07552017-06-27 19:32:04 -04002316 if (msg.msg_name && kmsg->msg_namelen) {
Al Viro08adb7d2014-11-10 20:23:13 -05002317 if (!save_addr) {
Paolo Abeni864d9662017-07-21 18:49:45 +02002318 err = move_addr_to_kernel(msg.msg_name,
2319 kmsg->msg_namelen,
Al Viro08adb7d2014-11-10 20:23:13 -05002320 kmsg->msg_name);
2321 if (err < 0)
2322 return err;
2323 }
2324 } else {
2325 kmsg->msg_name = NULL;
2326 kmsg->msg_namelen = 0;
2327 }
2328
Al Viroffb07552017-06-27 19:32:04 -04002329 if (msg.msg_iovlen > UIO_MAXIOV)
Al Viro08adb7d2014-11-10 20:23:13 -05002330 return -EMSGSIZE;
2331
tadeusz.struk@intel.com0345f932015-03-19 12:31:25 -07002332 kmsg->msg_iocb = NULL;
Jens Axboe0a384ab2020-02-27 08:11:20 -07002333 *uiov = msg.msg_iov;
2334 *nsegs = msg.msg_iovlen;
2335 return 0;
2336}
2337
2338static int copy_msghdr_from_user(struct msghdr *kmsg,
2339 struct user_msghdr __user *umsg,
2340 struct sockaddr __user **save_addr,
2341 struct iovec **iov)
2342{
2343 struct user_msghdr msg;
2344 ssize_t err;
2345
2346 err = __copy_msghdr_from_user(kmsg, umsg, save_addr, &msg.msg_iov,
2347 &msg.msg_iovlen);
2348 if (err)
2349 return err;
tadeusz.struk@intel.com0345f932015-03-19 12:31:25 -07002350
Jens Axboe87e5e6d2019-05-14 16:02:22 -06002351 err = import_iovec(save_addr ? READ : WRITE,
Al Viroffb07552017-06-27 19:32:04 -04002352 msg.msg_iov, msg.msg_iovlen,
Al Viroda184282015-03-21 19:29:06 -04002353 UIO_FASTIOV, iov, &kmsg->msg_iter);
Jens Axboe87e5e6d2019-05-14 16:02:22 -06002354 return err < 0 ? err : 0;
Dan Carpenter1661bf32013-10-03 00:27:20 +03002355}
2356
Jens Axboe4257c8c2019-11-25 14:27:34 -07002357static int ____sys_sendmsg(struct socket *sock, struct msghdr *msg_sys,
2358 unsigned int flags, struct used_address *used_address,
2359 unsigned int allowed_msghdr_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360{
Alex Williamsonb9d717a2005-09-26 14:28:02 -07002361 unsigned char ctl[sizeof(struct cmsghdr) + 20]
Amit Kushwaha846cc122016-12-08 18:21:53 +05302362 __aligned(sizeof(__kernel_size_t));
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002363 /* 20 is size of ipv6_pktinfo */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 unsigned char *ctl_buf = ctl;
Al Virod8725c82014-12-11 00:02:50 -05002365 int ctl_len;
Al Viro08adb7d2014-11-10 20:23:13 -05002366 ssize_t err;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002367
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368 err = -ENOBUFS;
2369
Anton Blanchard228e5482011-05-02 20:21:35 +00002370 if (msg_sys->msg_controllen > INT_MAX)
Jens Axboe4257c8c2019-11-25 14:27:34 -07002371 goto out;
Tom Herbert28a94d82016-03-07 14:11:02 -08002372 flags |= (msg_sys->msg_flags & allowed_msghdr_flags);
Anton Blanchard228e5482011-05-02 20:21:35 +00002373 ctl_len = msg_sys->msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 if ((MSG_CMSG_COMPAT & flags) && ctl_len) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002375 err =
Anton Blanchard228e5482011-05-02 20:21:35 +00002376 cmsghdr_from_user_compat_to_kern(msg_sys, sock->sk, ctl,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002377 sizeof(ctl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 if (err)
Jens Axboe4257c8c2019-11-25 14:27:34 -07002379 goto out;
Anton Blanchard228e5482011-05-02 20:21:35 +00002380 ctl_buf = msg_sys->msg_control;
2381 ctl_len = msg_sys->msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 } else if (ctl_len) {
David S. Millerac4340f2017-01-04 13:24:19 -05002383 BUILD_BUG_ON(sizeof(struct cmsghdr) !=
2384 CMSG_ALIGN(sizeof(struct cmsghdr)));
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002385 if (ctl_len > sizeof(ctl)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 ctl_buf = sock_kmalloc(sock->sk, ctl_len, GFP_KERNEL);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002387 if (ctl_buf == NULL)
Jens Axboe4257c8c2019-11-25 14:27:34 -07002388 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389 }
2390 err = -EFAULT;
Christoph Hellwig1f466e12020-05-11 13:59:13 +02002391 if (copy_from_user(ctl_buf, msg_sys->msg_control_user, ctl_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392 goto out_freectl;
Anton Blanchard228e5482011-05-02 20:21:35 +00002393 msg_sys->msg_control = ctl_buf;
Christoph Hellwig1f466e12020-05-11 13:59:13 +02002394 msg_sys->msg_control_is_user = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 }
Anton Blanchard228e5482011-05-02 20:21:35 +00002396 msg_sys->msg_flags = flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397
2398 if (sock->file->f_flags & O_NONBLOCK)
Anton Blanchard228e5482011-05-02 20:21:35 +00002399 msg_sys->msg_flags |= MSG_DONTWAIT;
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002400 /*
2401 * If this is sendmmsg() and current destination address is same as
2402 * previously succeeded address, omit asking LSM's decision.
2403 * used_address->name_len is initialized to UINT_MAX so that the first
2404 * destination address never matches.
2405 */
Mathieu Desnoyersbc909d92011-08-24 19:45:03 -07002406 if (used_address && msg_sys->msg_name &&
2407 used_address->name_len == msg_sys->msg_namelen &&
2408 !memcmp(&used_address->name, msg_sys->msg_name,
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002409 used_address->name_len)) {
Al Virod8725c82014-12-11 00:02:50 -05002410 err = sock_sendmsg_nosec(sock, msg_sys);
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002411 goto out_freectl;
2412 }
Al Virod8725c82014-12-11 00:02:50 -05002413 err = sock_sendmsg(sock, msg_sys);
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002414 /*
2415 * If this is sendmmsg() and sending to current destination address was
2416 * successful, remember it.
2417 */
2418 if (used_address && err >= 0) {
2419 used_address->name_len = msg_sys->msg_namelen;
Mathieu Desnoyersbc909d92011-08-24 19:45:03 -07002420 if (msg_sys->msg_name)
2421 memcpy(&used_address->name, msg_sys->msg_name,
2422 used_address->name_len);
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002423 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424
2425out_freectl:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002426 if (ctl_buf != ctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 sock_kfree_s(sock->sk, ctl_buf, ctl_len);
Jens Axboe4257c8c2019-11-25 14:27:34 -07002428out:
2429 return err;
2430}
2431
Jens Axboe03b12302019-12-02 18:50:25 -07002432int sendmsg_copy_msghdr(struct msghdr *msg,
2433 struct user_msghdr __user *umsg, unsigned flags,
2434 struct iovec **iov)
Jens Axboe4257c8c2019-11-25 14:27:34 -07002435{
2436 int err;
2437
2438 if (flags & MSG_CMSG_COMPAT) {
2439 struct compat_msghdr __user *msg_compat;
2440
2441 msg_compat = (struct compat_msghdr __user *) umsg;
2442 err = get_compat_msghdr(msg, msg_compat, NULL, iov);
2443 } else {
2444 err = copy_msghdr_from_user(msg, umsg, NULL, iov);
2445 }
2446 if (err < 0)
2447 return err;
2448
2449 return 0;
2450}
2451
2452static int ___sys_sendmsg(struct socket *sock, struct user_msghdr __user *msg,
2453 struct msghdr *msg_sys, unsigned int flags,
2454 struct used_address *used_address,
2455 unsigned int allowed_msghdr_flags)
2456{
2457 struct sockaddr_storage address;
2458 struct iovec iovstack[UIO_FASTIOV], *iov = iovstack;
2459 ssize_t err;
2460
2461 msg_sys->msg_name = &address;
2462
2463 err = sendmsg_copy_msghdr(msg_sys, msg, flags, &iov);
2464 if (err < 0)
2465 return err;
2466
2467 err = ____sys_sendmsg(sock, msg_sys, flags, used_address,
2468 allowed_msghdr_flags);
Al Viroda184282015-03-21 19:29:06 -04002469 kfree(iov);
Anton Blanchard228e5482011-05-02 20:21:35 +00002470 return err;
2471}
2472
2473/*
2474 * BSD sendmsg interface
2475 */
Jens Axboe03b12302019-12-02 18:50:25 -07002476long __sys_sendmsg_sock(struct socket *sock, struct msghdr *msg,
Jens Axboe0fa03c62019-04-19 13:34:07 -06002477 unsigned int flags)
2478{
Jens Axboe03b12302019-12-02 18:50:25 -07002479 return ____sys_sendmsg(sock, msg, flags, NULL, 0);
Jens Axboe0fa03c62019-04-19 13:34:07 -06002480}
Anton Blanchard228e5482011-05-02 20:21:35 +00002481
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002482long __sys_sendmsg(int fd, struct user_msghdr __user *msg, unsigned int flags,
2483 bool forbid_cmsg_compat)
Anton Blanchard228e5482011-05-02 20:21:35 +00002484{
2485 int fput_needed, err;
2486 struct msghdr msg_sys;
Andy Lutomirski1be374a2013-05-22 14:07:44 -07002487 struct socket *sock;
Anton Blanchard228e5482011-05-02 20:21:35 +00002488
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002489 if (forbid_cmsg_compat && (flags & MSG_CMSG_COMPAT))
2490 return -EINVAL;
2491
Andy Lutomirski1be374a2013-05-22 14:07:44 -07002492 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Anton Blanchard228e5482011-05-02 20:21:35 +00002493 if (!sock)
2494 goto out;
2495
Tom Herbert28a94d82016-03-07 14:11:02 -08002496 err = ___sys_sendmsg(sock, msg, &msg_sys, flags, NULL, 0);
Anton Blanchard228e5482011-05-02 20:21:35 +00002497
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002498 fput_light(sock->file, fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002499out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 return err;
2501}
2502
Al Viro666547f2014-04-06 14:03:05 -04002503SYSCALL_DEFINE3(sendmsg, int, fd, struct user_msghdr __user *, msg, unsigned int, flags)
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002504{
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002505 return __sys_sendmsg(fd, msg, flags, true);
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002506}
2507
Anton Blanchard228e5482011-05-02 20:21:35 +00002508/*
2509 * Linux sendmmsg interface
2510 */
2511
2512int __sys_sendmmsg(int fd, struct mmsghdr __user *mmsg, unsigned int vlen,
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002513 unsigned int flags, bool forbid_cmsg_compat)
Anton Blanchard228e5482011-05-02 20:21:35 +00002514{
2515 int fput_needed, err, datagrams;
2516 struct socket *sock;
2517 struct mmsghdr __user *entry;
2518 struct compat_mmsghdr __user *compat_entry;
2519 struct msghdr msg_sys;
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002520 struct used_address used_address;
Tom Herbertf0922762016-03-07 14:11:03 -08002521 unsigned int oflags = flags;
Anton Blanchard228e5482011-05-02 20:21:35 +00002522
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002523 if (forbid_cmsg_compat && (flags & MSG_CMSG_COMPAT))
2524 return -EINVAL;
2525
Anton Blanchard98382f42011-08-04 14:07:39 +00002526 if (vlen > UIO_MAXIOV)
2527 vlen = UIO_MAXIOV;
Anton Blanchard228e5482011-05-02 20:21:35 +00002528
2529 datagrams = 0;
2530
2531 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2532 if (!sock)
2533 return err;
2534
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002535 used_address.name_len = UINT_MAX;
Anton Blanchard228e5482011-05-02 20:21:35 +00002536 entry = mmsg;
2537 compat_entry = (struct compat_mmsghdr __user *)mmsg;
Anton Blanchard728ffb82011-08-04 14:07:38 +00002538 err = 0;
Tom Herbertf0922762016-03-07 14:11:03 -08002539 flags |= MSG_BATCH;
Anton Blanchard228e5482011-05-02 20:21:35 +00002540
2541 while (datagrams < vlen) {
Tom Herbertf0922762016-03-07 14:11:03 -08002542 if (datagrams == vlen - 1)
2543 flags = oflags;
2544
Anton Blanchard228e5482011-05-02 20:21:35 +00002545 if (MSG_CMSG_COMPAT & flags) {
Al Viro666547f2014-04-06 14:03:05 -04002546 err = ___sys_sendmsg(sock, (struct user_msghdr __user *)compat_entry,
Tom Herbert28a94d82016-03-07 14:11:02 -08002547 &msg_sys, flags, &used_address, MSG_EOR);
Anton Blanchard228e5482011-05-02 20:21:35 +00002548 if (err < 0)
2549 break;
2550 err = __put_user(err, &compat_entry->msg_len);
2551 ++compat_entry;
2552 } else {
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002553 err = ___sys_sendmsg(sock,
Al Viro666547f2014-04-06 14:03:05 -04002554 (struct user_msghdr __user *)entry,
Tom Herbert28a94d82016-03-07 14:11:02 -08002555 &msg_sys, flags, &used_address, MSG_EOR);
Anton Blanchard228e5482011-05-02 20:21:35 +00002556 if (err < 0)
2557 break;
2558 err = put_user(err, &entry->msg_len);
2559 ++entry;
2560 }
2561
2562 if (err)
2563 break;
2564 ++datagrams;
Soheil Hassas Yeganeh30238982016-11-04 15:36:49 -04002565 if (msg_data_left(&msg_sys))
2566 break;
Eric Dumazeta78cb842016-01-08 08:37:20 -08002567 cond_resched();
Anton Blanchard228e5482011-05-02 20:21:35 +00002568 }
2569
Anton Blanchard228e5482011-05-02 20:21:35 +00002570 fput_light(sock->file, fput_needed);
2571
Anton Blanchard728ffb82011-08-04 14:07:38 +00002572 /* We only return an error if no datagrams were able to be sent */
2573 if (datagrams != 0)
Anton Blanchard228e5482011-05-02 20:21:35 +00002574 return datagrams;
2575
Anton Blanchard228e5482011-05-02 20:21:35 +00002576 return err;
2577}
2578
2579SYSCALL_DEFINE4(sendmmsg, int, fd, struct mmsghdr __user *, mmsg,
2580 unsigned int, vlen, unsigned int, flags)
2581{
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002582 return __sys_sendmmsg(fd, mmsg, vlen, flags, true);
Anton Blanchard228e5482011-05-02 20:21:35 +00002583}
2584
Jens Axboe03b12302019-12-02 18:50:25 -07002585int recvmsg_copy_msghdr(struct msghdr *msg,
2586 struct user_msghdr __user *umsg, unsigned flags,
2587 struct sockaddr __user **uaddr,
2588 struct iovec **iov)
Jens Axboe4257c8c2019-11-25 14:27:34 -07002589{
2590 ssize_t err;
2591
2592 if (MSG_CMSG_COMPAT & flags) {
2593 struct compat_msghdr __user *msg_compat;
2594
2595 msg_compat = (struct compat_msghdr __user *) umsg;
2596 err = get_compat_msghdr(msg, msg_compat, uaddr, iov);
2597 } else {
2598 err = copy_msghdr_from_user(msg, umsg, uaddr, iov);
2599 }
2600 if (err < 0)
2601 return err;
2602
2603 return 0;
2604}
2605
2606static int ____sys_recvmsg(struct socket *sock, struct msghdr *msg_sys,
2607 struct user_msghdr __user *msg,
2608 struct sockaddr __user *uaddr,
2609 unsigned int flags, int nosec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002611 struct compat_msghdr __user *msg_compat =
Jens Axboe4257c8c2019-11-25 14:27:34 -07002612 (struct compat_msghdr __user *) msg;
2613 int __user *uaddr_len = COMPAT_NAMELEN(msg);
2614 struct sockaddr_storage addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 unsigned long cmsg_ptr;
Al Viro2da62902015-03-14 21:13:46 -04002616 int len;
Al Viro08adb7d2014-11-10 20:23:13 -05002617 ssize_t err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618
Al Viro08adb7d2014-11-10 20:23:13 -05002619 msg_sys->msg_name = &addr;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002620 cmsg_ptr = (unsigned long)msg_sys->msg_control;
2621 msg_sys->msg_flags = flags & (MSG_CMSG_CLOEXEC|MSG_CMSG_COMPAT);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002622
Hannes Frederic Sowaf3d33422013-11-21 03:14:22 +01002623 /* We assume all kernel code knows the size of sockaddr_storage */
2624 msg_sys->msg_namelen = 0;
2625
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626 if (sock->file->f_flags & O_NONBLOCK)
2627 flags |= MSG_DONTWAIT;
Eric Dumazet1af66222019-12-06 09:38:36 -08002628
2629 if (unlikely(nosec))
2630 err = sock_recvmsg_nosec(sock, msg_sys, flags);
2631 else
2632 err = sock_recvmsg(sock, msg_sys, flags);
2633
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634 if (err < 0)
Jens Axboe4257c8c2019-11-25 14:27:34 -07002635 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636 len = err;
2637
2638 if (uaddr != NULL) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00002639 err = move_addr_to_user(&addr,
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002640 msg_sys->msg_namelen, uaddr,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002641 uaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 if (err < 0)
Jens Axboe4257c8c2019-11-25 14:27:34 -07002643 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644 }
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002645 err = __put_user((msg_sys->msg_flags & ~MSG_CMSG_COMPAT),
David S. Miller37f7f422005-09-16 16:51:01 -07002646 COMPAT_FLAGS(msg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647 if (err)
Jens Axboe4257c8c2019-11-25 14:27:34 -07002648 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649 if (MSG_CMSG_COMPAT & flags)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002650 err = __put_user((unsigned long)msg_sys->msg_control - cmsg_ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651 &msg_compat->msg_controllen);
2652 else
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002653 err = __put_user((unsigned long)msg_sys->msg_control - cmsg_ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654 &msg->msg_controllen);
2655 if (err)
Jens Axboe4257c8c2019-11-25 14:27:34 -07002656 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657 err = len;
Jens Axboe4257c8c2019-11-25 14:27:34 -07002658out:
2659 return err;
2660}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661
Jens Axboe4257c8c2019-11-25 14:27:34 -07002662static int ___sys_recvmsg(struct socket *sock, struct user_msghdr __user *msg,
2663 struct msghdr *msg_sys, unsigned int flags, int nosec)
2664{
2665 struct iovec iovstack[UIO_FASTIOV], *iov = iovstack;
2666 /* user mode address pointers */
2667 struct sockaddr __user *uaddr;
2668 ssize_t err;
2669
2670 err = recvmsg_copy_msghdr(msg_sys, msg, flags, &uaddr, &iov);
2671 if (err < 0)
2672 return err;
2673
2674 err = ____sys_recvmsg(sock, msg_sys, msg, uaddr, flags, nosec);
Al Viroda184282015-03-21 19:29:06 -04002675 kfree(iov);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002676 return err;
2677}
2678
2679/*
2680 * BSD recvmsg interface
2681 */
2682
Jens Axboe03b12302019-12-02 18:50:25 -07002683long __sys_recvmsg_sock(struct socket *sock, struct msghdr *msg,
2684 struct user_msghdr __user *umsg,
2685 struct sockaddr __user *uaddr, unsigned int flags)
Jens Axboeaa1fa282019-04-19 13:38:09 -06002686{
Jens Axboe03b12302019-12-02 18:50:25 -07002687 return ____sys_recvmsg(sock, msg, umsg, uaddr, flags, 0);
Jens Axboeaa1fa282019-04-19 13:38:09 -06002688}
2689
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002690long __sys_recvmsg(int fd, struct user_msghdr __user *msg, unsigned int flags,
2691 bool forbid_cmsg_compat)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002692{
2693 int fput_needed, err;
2694 struct msghdr msg_sys;
Andy Lutomirski1be374a2013-05-22 14:07:44 -07002695 struct socket *sock;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002696
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002697 if (forbid_cmsg_compat && (flags & MSG_CMSG_COMPAT))
2698 return -EINVAL;
2699
Andy Lutomirski1be374a2013-05-22 14:07:44 -07002700 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002701 if (!sock)
2702 goto out;
2703
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002704 err = ___sys_recvmsg(sock, msg, &msg_sys, flags, 0);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002705
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002706 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707out:
2708 return err;
2709}
2710
Al Viro666547f2014-04-06 14:03:05 -04002711SYSCALL_DEFINE3(recvmsg, int, fd, struct user_msghdr __user *, msg,
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002712 unsigned int, flags)
2713{
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002714 return __sys_recvmsg(fd, msg, flags, true);
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002715}
2716
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002717/*
2718 * Linux recvmmsg interface
2719 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720
Arnd Bergmanne11d4282018-04-18 13:43:52 +02002721static int do_recvmmsg(int fd, struct mmsghdr __user *mmsg,
2722 unsigned int vlen, unsigned int flags,
2723 struct timespec64 *timeout)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002724{
2725 int fput_needed, err, datagrams;
2726 struct socket *sock;
2727 struct mmsghdr __user *entry;
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002728 struct compat_mmsghdr __user *compat_entry;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002729 struct msghdr msg_sys;
Deepa Dinamani766b9f92016-05-19 17:09:05 -07002730 struct timespec64 end_time;
2731 struct timespec64 timeout64;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002732
2733 if (timeout &&
2734 poll_select_set_timeout(&end_time, timeout->tv_sec,
2735 timeout->tv_nsec))
2736 return -EINVAL;
2737
2738 datagrams = 0;
2739
2740 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2741 if (!sock)
2742 return err;
2743
Soheil Hassas Yeganeh7797dc42018-02-27 18:22:40 -05002744 if (likely(!(flags & MSG_ERRQUEUE))) {
2745 err = sock_error(sock->sk);
2746 if (err) {
2747 datagrams = err;
2748 goto out_put;
2749 }
Maxime Jayate623a9e2017-02-21 18:35:51 +01002750 }
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002751
2752 entry = mmsg;
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002753 compat_entry = (struct compat_mmsghdr __user *)mmsg;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002754
2755 while (datagrams < vlen) {
2756 /*
2757 * No need to ask LSM for more than the first datagram.
2758 */
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002759 if (MSG_CMSG_COMPAT & flags) {
Al Viro666547f2014-04-06 14:03:05 -04002760 err = ___sys_recvmsg(sock, (struct user_msghdr __user *)compat_entry,
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002761 &msg_sys, flags & ~MSG_WAITFORONE,
2762 datagrams);
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002763 if (err < 0)
2764 break;
2765 err = __put_user(err, &compat_entry->msg_len);
2766 ++compat_entry;
2767 } else {
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002768 err = ___sys_recvmsg(sock,
Al Viro666547f2014-04-06 14:03:05 -04002769 (struct user_msghdr __user *)entry,
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002770 &msg_sys, flags & ~MSG_WAITFORONE,
2771 datagrams);
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002772 if (err < 0)
2773 break;
2774 err = put_user(err, &entry->msg_len);
2775 ++entry;
2776 }
2777
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002778 if (err)
2779 break;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002780 ++datagrams;
2781
Brandon L Black71c5c1592010-03-26 16:18:03 +00002782 /* MSG_WAITFORONE turns on MSG_DONTWAIT after one packet */
2783 if (flags & MSG_WAITFORONE)
2784 flags |= MSG_DONTWAIT;
2785
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002786 if (timeout) {
Deepa Dinamani766b9f92016-05-19 17:09:05 -07002787 ktime_get_ts64(&timeout64);
Arnd Bergmannc2e6c852018-04-18 13:42:25 +02002788 *timeout = timespec64_sub(end_time, timeout64);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002789 if (timeout->tv_sec < 0) {
2790 timeout->tv_sec = timeout->tv_nsec = 0;
2791 break;
2792 }
2793
2794 /* Timeout, return less than vlen datagrams */
2795 if (timeout->tv_nsec == 0 && timeout->tv_sec == 0)
2796 break;
2797 }
2798
2799 /* Out of band data, return right away */
2800 if (msg_sys.msg_flags & MSG_OOB)
2801 break;
Eric Dumazeta78cb842016-01-08 08:37:20 -08002802 cond_resched();
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002803 }
2804
Arnaldo Carvalho de Melo34b88a62016-03-14 09:56:35 -03002805 if (err == 0)
2806 goto out_put;
2807
2808 if (datagrams == 0) {
2809 datagrams = err;
2810 goto out_put;
2811 }
2812
2813 /*
2814 * We may return less entries than requested (vlen) if the
2815 * sock is non block and there aren't enough datagrams...
2816 */
2817 if (err != -EAGAIN) {
2818 /*
2819 * ... or if recvmsg returns an error after we
2820 * received some datagrams, where we record the
2821 * error to return on the next call or if the
2822 * app asks about it using getsockopt(SO_ERROR).
2823 */
2824 sock->sk->sk_err = -err;
2825 }
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002826out_put:
2827 fput_light(sock->file, fput_needed);
2828
Arnaldo Carvalho de Melo34b88a62016-03-14 09:56:35 -03002829 return datagrams;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002830}
2831
Arnd Bergmanne11d4282018-04-18 13:43:52 +02002832int __sys_recvmmsg(int fd, struct mmsghdr __user *mmsg,
2833 unsigned int vlen, unsigned int flags,
2834 struct __kernel_timespec __user *timeout,
2835 struct old_timespec32 __user *timeout32)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002836{
2837 int datagrams;
Arnd Bergmannc2e6c852018-04-18 13:42:25 +02002838 struct timespec64 timeout_sys;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002839
Arnd Bergmanne11d4282018-04-18 13:43:52 +02002840 if (timeout && get_timespec64(&timeout_sys, timeout))
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002841 return -EFAULT;
2842
Arnd Bergmanne11d4282018-04-18 13:43:52 +02002843 if (timeout32 && get_old_timespec32(&timeout_sys, timeout32))
2844 return -EFAULT;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002845
Arnd Bergmanne11d4282018-04-18 13:43:52 +02002846 if (!timeout && !timeout32)
2847 return do_recvmmsg(fd, mmsg, vlen, flags, NULL);
2848
2849 datagrams = do_recvmmsg(fd, mmsg, vlen, flags, &timeout_sys);
2850
2851 if (datagrams <= 0)
2852 return datagrams;
2853
2854 if (timeout && put_timespec64(&timeout_sys, timeout))
2855 datagrams = -EFAULT;
2856
2857 if (timeout32 && put_old_timespec32(&timeout_sys, timeout32))
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002858 datagrams = -EFAULT;
2859
2860 return datagrams;
2861}
2862
Dominik Brodowski1255e262018-03-13 20:44:21 +01002863SYSCALL_DEFINE5(recvmmsg, int, fd, struct mmsghdr __user *, mmsg,
2864 unsigned int, vlen, unsigned int, flags,
Arnd Bergmannc2e6c852018-04-18 13:42:25 +02002865 struct __kernel_timespec __user *, timeout)
Dominik Brodowski1255e262018-03-13 20:44:21 +01002866{
Arnd Bergmanne11d4282018-04-18 13:43:52 +02002867 if (flags & MSG_CMSG_COMPAT)
2868 return -EINVAL;
2869
2870 return __sys_recvmmsg(fd, mmsg, vlen, flags, timeout, NULL);
Dominik Brodowski1255e262018-03-13 20:44:21 +01002871}
2872
Arnd Bergmanne11d4282018-04-18 13:43:52 +02002873#ifdef CONFIG_COMPAT_32BIT_TIME
2874SYSCALL_DEFINE5(recvmmsg_time32, int, fd, struct mmsghdr __user *, mmsg,
2875 unsigned int, vlen, unsigned int, flags,
2876 struct old_timespec32 __user *, timeout)
2877{
2878 if (flags & MSG_CMSG_COMPAT)
2879 return -EINVAL;
2880
2881 return __sys_recvmmsg(fd, mmsg, vlen, flags, NULL, timeout);
2882}
2883#endif
2884
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002885#ifdef __ARCH_WANT_SYS_SOCKETCALL
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886/* Argument list sizes for sys_socketcall */
2887#define AL(x) ((x) * sizeof(unsigned long))
Anton Blanchard228e5482011-05-02 20:21:35 +00002888static const unsigned char nargs[21] = {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002889 AL(0), AL(3), AL(3), AL(3), AL(2), AL(3),
2890 AL(3), AL(3), AL(4), AL(4), AL(4), AL(6),
2891 AL(6), AL(2), AL(5), AL(5), AL(3), AL(3),
Anton Blanchard228e5482011-05-02 20:21:35 +00002892 AL(4), AL(5), AL(4)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002893};
2894
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895#undef AL
2896
2897/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002898 * System call vectors.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899 *
2900 * Argument checking cleaned up. Saved 20% in size.
2901 * This function doesn't need to set the kernel lock because
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002902 * it is set by the callees.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903 */
2904
Heiko Carstens3e0fa652009-01-14 14:14:24 +01002905SYSCALL_DEFINE2(socketcall, int, call, unsigned long __user *, args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906{
Chen Gang2950fa92013-04-07 16:55:23 +08002907 unsigned long a[AUDITSC_ARGS];
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002908 unsigned long a0, a1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 int err;
Arjan van de Ven47379052009-09-28 12:57:44 -07002910 unsigned int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911
Anton Blanchard228e5482011-05-02 20:21:35 +00002912 if (call < 1 || call > SYS_SENDMMSG)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913 return -EINVAL;
Jeremy Clinec8e8cd52018-07-27 22:43:01 +00002914 call = array_index_nospec(call, SYS_SENDMMSG + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915
Arjan van de Ven47379052009-09-28 12:57:44 -07002916 len = nargs[call];
2917 if (len > sizeof(a))
2918 return -EINVAL;
2919
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920 /* copy_from_user should be SMP safe. */
Arjan van de Ven47379052009-09-28 12:57:44 -07002921 if (copy_from_user(a, args, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 return -EFAULT;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002923
Chen Gang2950fa92013-04-07 16:55:23 +08002924 err = audit_socketcall(nargs[call] / sizeof(unsigned long), a);
2925 if (err)
2926 return err;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002927
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002928 a0 = a[0];
2929 a1 = a[1];
2930
2931 switch (call) {
2932 case SYS_SOCKET:
Dominik Brodowski9d6a15c2018-03-13 19:29:43 +01002933 err = __sys_socket(a0, a1, a[2]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002934 break;
2935 case SYS_BIND:
Dominik Brodowskia87d35d2018-03-13 19:33:09 +01002936 err = __sys_bind(a0, (struct sockaddr __user *)a1, a[2]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002937 break;
2938 case SYS_CONNECT:
Dominik Brodowski1387c2c2018-03-13 19:35:09 +01002939 err = __sys_connect(a0, (struct sockaddr __user *)a1, a[2]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002940 break;
2941 case SYS_LISTEN:
Dominik Brodowski25e290e2018-03-13 19:36:54 +01002942 err = __sys_listen(a0, a1);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002943 break;
2944 case SYS_ACCEPT:
Dominik Brodowski4541e802018-03-13 19:24:23 +01002945 err = __sys_accept4(a0, (struct sockaddr __user *)a1,
2946 (int __user *)a[2], 0);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002947 break;
2948 case SYS_GETSOCKNAME:
2949 err =
Dominik Brodowski8882a102018-03-13 19:43:14 +01002950 __sys_getsockname(a0, (struct sockaddr __user *)a1,
2951 (int __user *)a[2]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002952 break;
2953 case SYS_GETPEERNAME:
2954 err =
Dominik Brodowskib21c8f82018-03-13 19:47:00 +01002955 __sys_getpeername(a0, (struct sockaddr __user *)a1,
2956 (int __user *)a[2]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002957 break;
2958 case SYS_SOCKETPAIR:
Dominik Brodowski6debc8d2018-03-13 19:49:23 +01002959 err = __sys_socketpair(a0, a1, a[2], (int __user *)a[3]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002960 break;
2961 case SYS_SEND:
Dominik Brodowskif3bf8962018-03-13 19:52:00 +01002962 err = __sys_sendto(a0, (void __user *)a1, a[2], a[3],
2963 NULL, 0);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002964 break;
2965 case SYS_SENDTO:
Dominik Brodowski211b6342018-03-13 19:18:52 +01002966 err = __sys_sendto(a0, (void __user *)a1, a[2], a[3],
2967 (struct sockaddr __user *)a[4], a[5]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002968 break;
2969 case SYS_RECV:
Dominik Brodowskid27e9af2018-03-13 19:54:17 +01002970 err = __sys_recvfrom(a0, (void __user *)a1, a[2], a[3],
2971 NULL, NULL);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002972 break;
2973 case SYS_RECVFROM:
Dominik Brodowski7a09e1e2018-03-13 19:10:06 +01002974 err = __sys_recvfrom(a0, (void __user *)a1, a[2], a[3],
2975 (struct sockaddr __user *)a[4],
2976 (int __user *)a[5]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002977 break;
2978 case SYS_SHUTDOWN:
Dominik Brodowski005a1ae2018-03-13 20:07:05 +01002979 err = __sys_shutdown(a0, a1);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002980 break;
2981 case SYS_SETSOCKOPT:
Dominik Brodowskicc36dca2018-03-13 20:10:59 +01002982 err = __sys_setsockopt(a0, a1, a[2], (char __user *)a[3],
2983 a[4]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002984 break;
2985 case SYS_GETSOCKOPT:
2986 err =
Dominik Brodowski13a2d702018-03-13 20:15:04 +01002987 __sys_getsockopt(a0, a1, a[2], (char __user *)a[3],
2988 (int __user *)a[4]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002989 break;
2990 case SYS_SENDMSG:
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002991 err = __sys_sendmsg(a0, (struct user_msghdr __user *)a1,
2992 a[2], true);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002993 break;
Anton Blanchard228e5482011-05-02 20:21:35 +00002994 case SYS_SENDMMSG:
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002995 err = __sys_sendmmsg(a0, (struct mmsghdr __user *)a1, a[2],
2996 a[3], true);
Anton Blanchard228e5482011-05-02 20:21:35 +00002997 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002998 case SYS_RECVMSG:
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002999 err = __sys_recvmsg(a0, (struct user_msghdr __user *)a1,
3000 a[2], true);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07003001 break;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07003002 case SYS_RECVMMSG:
Arnd Bergmann3ca47e92019-04-23 17:43:50 +02003003 if (IS_ENABLED(CONFIG_64BIT))
Arnd Bergmanne11d4282018-04-18 13:43:52 +02003004 err = __sys_recvmmsg(a0, (struct mmsghdr __user *)a1,
3005 a[2], a[3],
3006 (struct __kernel_timespec __user *)a[4],
3007 NULL);
3008 else
3009 err = __sys_recvmmsg(a0, (struct mmsghdr __user *)a1,
3010 a[2], a[3], NULL,
3011 (struct old_timespec32 __user *)a[4]);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07003012 break;
Ulrich Drepperde11def2008-11-19 15:36:14 -08003013 case SYS_ACCEPT4:
Dominik Brodowski4541e802018-03-13 19:24:23 +01003014 err = __sys_accept4(a0, (struct sockaddr __user *)a1,
3015 (int __user *)a[2], a[3]);
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07003016 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07003017 default:
3018 err = -EINVAL;
3019 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020 }
3021 return err;
3022}
3023
Stephen Hemminger89bddce2006-09-01 00:19:31 -07003024#endif /* __ARCH_WANT_SYS_SOCKETCALL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025
Stephen Hemminger55737fd2006-09-01 00:23:39 -07003026/**
3027 * sock_register - add a socket protocol handler
3028 * @ops: description of protocol
3029 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030 * This function is called by a protocol handler that wants to
3031 * advertise its address family, and have it linked into the
Masanari Iidae793c0f2014-09-04 23:44:36 +09003032 * socket interface. The value ops->family corresponds to the
Stephen Hemminger55737fd2006-09-01 00:23:39 -07003033 * socket system call protocol family.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034 */
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07003035int sock_register(const struct net_proto_family *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036{
3037 int err;
3038
3039 if (ops->family >= NPROTO) {
Yang Yingliang3410f222014-02-12 17:09:55 +08003040 pr_crit("protocol %d >= NPROTO(%d)\n", ops->family, NPROTO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041 return -ENOBUFS;
3042 }
Stephen Hemminger55737fd2006-09-01 00:23:39 -07003043
3044 spin_lock(&net_family_lock);
Eric Dumazet190683a2010-11-10 10:50:44 +00003045 if (rcu_dereference_protected(net_families[ops->family],
3046 lockdep_is_held(&net_family_lock)))
Stephen Hemminger55737fd2006-09-01 00:23:39 -07003047 err = -EEXIST;
3048 else {
Eric Dumazetcf778b02012-01-12 04:41:32 +00003049 rcu_assign_pointer(net_families[ops->family], ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050 err = 0;
3051 }
Stephen Hemminger55737fd2006-09-01 00:23:39 -07003052 spin_unlock(&net_family_lock);
3053
Yejune Dengfe0bdbd2021-06-21 13:12:25 +08003054 pr_info("NET: Registered %s protocol family\n", pf_family_names[ops->family]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055 return err;
3056}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003057EXPORT_SYMBOL(sock_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058
Stephen Hemminger55737fd2006-09-01 00:23:39 -07003059/**
3060 * sock_unregister - remove a protocol handler
3061 * @family: protocol family to remove
3062 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063 * This function is called by a protocol handler that wants to
3064 * remove its address family, and have it unlinked from the
Stephen Hemminger55737fd2006-09-01 00:23:39 -07003065 * new socket creation.
3066 *
3067 * If protocol handler is a module, then it can use module reference
3068 * counts to protect against new references. If protocol handler is not
3069 * a module then it needs to provide its own protection in
3070 * the ops->create routine.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071 */
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07003072void sock_unregister(int family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073{
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07003074 BUG_ON(family < 0 || family >= NPROTO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075
Stephen Hemminger55737fd2006-09-01 00:23:39 -07003076 spin_lock(&net_family_lock);
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00003077 RCU_INIT_POINTER(net_families[family], NULL);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07003078 spin_unlock(&net_family_lock);
3079
3080 synchronize_rcu();
3081
Yejune Dengfe0bdbd2021-06-21 13:12:25 +08003082 pr_info("NET: Unregistered %s protocol family\n", pf_family_names[family]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003084EXPORT_SYMBOL(sock_unregister);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085
Xin Longbf2ae2e2018-03-10 18:57:50 +08003086bool sock_is_registered(int family)
3087{
Jeremy Cline66b51b02018-08-13 22:23:13 +00003088 return family < NPROTO && rcu_access_pointer(net_families[family]);
Xin Longbf2ae2e2018-03-10 18:57:50 +08003089}
3090
Andi Kleen77d76ea2005-12-22 12:43:42 -08003091static int __init sock_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092{
Nick Pigginb3e19d92011-01-07 17:50:11 +11003093 int err;
Eric W. Biederman2ca794e2012-04-19 13:20:32 +00003094 /*
3095 * Initialize the network sysctl infrastructure.
3096 */
3097 err = net_sysctl_init();
3098 if (err)
3099 goto out;
Nick Pigginb3e19d92011-01-07 17:50:11 +11003100
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07003102 * Initialize skbuff SLAB cache
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103 */
3104 skb_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105
3106 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07003107 * Initialize the protocols module.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108 */
3109
3110 init_inodecache();
Nick Pigginb3e19d92011-01-07 17:50:11 +11003111
3112 err = register_filesystem(&sock_fs_type);
3113 if (err)
Miaohe Lin47260ba2020-08-06 19:54:19 +08003114 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115 sock_mnt = kern_mount(&sock_fs_type);
Nick Pigginb3e19d92011-01-07 17:50:11 +11003116 if (IS_ERR(sock_mnt)) {
3117 err = PTR_ERR(sock_mnt);
3118 goto out_mount;
3119 }
Andi Kleen77d76ea2005-12-22 12:43:42 -08003120
3121 /* The real protocol initialization is performed in later initcalls.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122 */
3123
3124#ifdef CONFIG_NETFILTER
Pablo Neira Ayuso6d11cfd2013-05-22 22:42:36 +00003125 err = netfilter_init();
3126 if (err)
3127 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128#endif
David S. Millercbeb3212005-12-22 12:58:55 -08003129
Daniel Borkmann408eccc2014-04-01 16:20:23 +02003130 ptp_classifier_init();
Richard Cochranc1f19b52010-07-17 08:49:36 +00003131
Nick Pigginb3e19d92011-01-07 17:50:11 +11003132out:
3133 return err;
3134
3135out_mount:
3136 unregister_filesystem(&sock_fs_type);
Nick Pigginb3e19d92011-01-07 17:50:11 +11003137 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138}
3139
Andi Kleen77d76ea2005-12-22 12:43:42 -08003140core_initcall(sock_init); /* early initcall */
3141
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142#ifdef CONFIG_PROC_FS
3143void socket_seq_show(struct seq_file *seq)
3144{
Tonghao Zhang648845a2017-12-14 05:51:58 -08003145 seq_printf(seq, "sockets: used %d\n",
3146 sock_inuse_get(seq->private));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147}
Stephen Hemminger89bddce2006-09-01 00:19:31 -07003148#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149
Arnd Bergmann29c49642021-07-22 16:29:03 +02003150/* Handle the fact that while struct ifreq has the same *layout* on
3151 * 32/64 for everything but ifreq::ifru_ifmap and ifreq::ifru_data,
3152 * which are handled elsewhere, it still has different *size* due to
3153 * ifreq::ifru_ifmap (which is 16 bytes on 32 bit, 24 bytes on 64-bit,
3154 * resulting in struct ifreq being 32 and 40 bytes respectively).
3155 * As a result, if the struct happens to be at the end of a page and
3156 * the next page isn't readable/writable, we get a fault. To prevent
3157 * that, copy back and forth to the full size.
3158 */
3159int get_user_ifreq(struct ifreq *ifr, void __user **ifrdata, void __user *arg)
3160{
3161 if (in_compat_syscall()) {
3162 struct compat_ifreq *ifr32 = (struct compat_ifreq *)ifr;
3163
3164 memset(ifr, 0, sizeof(*ifr));
3165 if (copy_from_user(ifr32, arg, sizeof(*ifr32)))
3166 return -EFAULT;
3167
3168 if (ifrdata)
3169 *ifrdata = compat_ptr(ifr32->ifr_data);
3170
3171 return 0;
3172 }
3173
3174 if (copy_from_user(ifr, arg, sizeof(*ifr)))
3175 return -EFAULT;
3176
3177 if (ifrdata)
3178 *ifrdata = ifr->ifr_data;
3179
3180 return 0;
3181}
3182EXPORT_SYMBOL(get_user_ifreq);
3183
3184int put_user_ifreq(struct ifreq *ifr, void __user *arg)
3185{
3186 size_t size = sizeof(*ifr);
3187
3188 if (in_compat_syscall())
3189 size = sizeof(struct compat_ifreq);
3190
3191 if (copy_to_user(arg, ifr, size))
3192 return -EFAULT;
3193
3194 return 0;
3195}
3196EXPORT_SYMBOL(put_user_ifreq);
3197
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003198#ifdef CONFIG_COMPAT
Arnd Bergmann7a50a242009-11-08 20:57:03 -08003199static int compat_siocwandev(struct net *net, struct compat_ifreq __user *uifr32)
3200{
Arnd Bergmann7a50a242009-11-08 20:57:03 -08003201 compat_uptr_t uptr32;
Al Viro44c02a22017-10-05 12:59:44 -04003202 struct ifreq ifr;
3203 void __user *saved;
3204 int err;
Arnd Bergmann7a50a242009-11-08 20:57:03 -08003205
Arnd Bergmann29c49642021-07-22 16:29:03 +02003206 if (get_user_ifreq(&ifr, NULL, uifr32))
Arnd Bergmann7a50a242009-11-08 20:57:03 -08003207 return -EFAULT;
3208
3209 if (get_user(uptr32, &uifr32->ifr_settings.ifs_ifsu))
3210 return -EFAULT;
3211
Al Viro44c02a22017-10-05 12:59:44 -04003212 saved = ifr.ifr_settings.ifs_ifsu.raw_hdlc;
3213 ifr.ifr_settings.ifs_ifsu.raw_hdlc = compat_ptr(uptr32);
Arnd Bergmann7a50a242009-11-08 20:57:03 -08003214
Arnd Bergmanna554bf92021-07-27 15:45:12 +02003215 err = dev_ioctl(net, SIOCWANDEV, &ifr, NULL, NULL);
Al Viro44c02a22017-10-05 12:59:44 -04003216 if (!err) {
3217 ifr.ifr_settings.ifs_ifsu.raw_hdlc = saved;
Arnd Bergmann29c49642021-07-22 16:29:03 +02003218 if (put_user_ifreq(&ifr, uifr32))
Al Viro44c02a22017-10-05 12:59:44 -04003219 err = -EFAULT;
Joe Perchesccbd6a52010-05-14 10:58:26 +00003220 }
Al Viro44c02a22017-10-05 12:59:44 -04003221 return err;
Arnd Bergmann7a229382009-11-06 23:00:29 -08003222}
3223
Ben Hutchings590d4692013-11-18 17:04:13 +00003224/* Handle ioctls that use ifreq::ifr_data and just need struct ifreq converted */
3225static int compat_ifr_data_ioctl(struct net *net, unsigned int cmd,
Arnd Bergmann6b960182009-11-06 23:10:54 -08003226 struct compat_ifreq __user *u_ifreq32)
Arnd Bergmann7a229382009-11-06 23:00:29 -08003227{
Al Viro44c02a22017-10-05 12:59:44 -04003228 struct ifreq ifreq;
Arnd Bergmanna554bf92021-07-27 15:45:12 +02003229 void __user *data;
Arnd Bergmann7a229382009-11-06 23:00:29 -08003230
Peter Collingbourned0efb162021-08-26 12:46:01 -07003231 if (!is_socket_ioctl_cmd(cmd))
3232 return -ENOTTY;
Arnd Bergmanna554bf92021-07-27 15:45:12 +02003233 if (get_user_ifreq(&ifreq, &data, u_ifreq32))
Arnd Bergmann7a229382009-11-06 23:00:29 -08003234 return -EFAULT;
Arnd Bergmanna554bf92021-07-27 15:45:12 +02003235 ifreq.ifr_data = data;
Arnd Bergmann7a229382009-11-06 23:00:29 -08003236
Arnd Bergmanna554bf92021-07-27 15:45:12 +02003237 return dev_ioctl(net, cmd, &ifreq, data, NULL);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003238}
3239
Arnd Bergmann6b960182009-11-06 23:10:54 -08003240static int compat_sock_ioctl_trans(struct file *file, struct socket *sock,
3241 unsigned int cmd, unsigned long arg)
3242{
3243 void __user *argp = compat_ptr(arg);
3244 struct sock *sk = sock->sk;
3245 struct net *net = sock_net(sk);
Arnd Bergmann7a229382009-11-06 23:00:29 -08003246
Arnd Bergmann6b960182009-11-06 23:10:54 -08003247 if (cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15))
Arnd Bergmann88fc0232021-07-27 15:45:15 +02003248 return sock_ioctl(file, cmd, (unsigned long)argp);
Arnd Bergmann7a229382009-11-06 23:00:29 -08003249
Arnd Bergmann6b960182009-11-06 23:10:54 -08003250 switch (cmd) {
Arnd Bergmann7a50a242009-11-08 20:57:03 -08003251 case SIOCWANDEV:
3252 return compat_siocwandev(net, argp);
Arnd Bergmann0768e172019-04-17 22:56:11 +02003253 case SIOCGSTAMP_OLD:
3254 case SIOCGSTAMPNS_OLD:
Arnd Bergmannc7cbdbf2019-04-17 22:51:48 +02003255 if (!sock->ops->gettstamp)
3256 return -ENOIOCTLCMD;
Arnd Bergmann0768e172019-04-17 22:56:11 +02003257 return sock->ops->gettstamp(sock, argp, cmd == SIOCGSTAMP_OLD,
Arnd Bergmannc7cbdbf2019-04-17 22:51:48 +02003258 !COMPAT_USE_64BIT_TIME);
3259
Arnd Bergmanndd98d282021-07-22 16:28:59 +02003260 case SIOCETHTOOL:
Ben Hutchings590d4692013-11-18 17:04:13 +00003261 case SIOCBONDSLAVEINFOQUERY:
3262 case SIOCBONDINFOQUERY:
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003263 case SIOCSHWTSTAMP:
Ben Hutchingsfd468c72013-11-14 01:19:29 +00003264 case SIOCGHWTSTAMP:
Ben Hutchings590d4692013-11-18 17:04:13 +00003265 return compat_ifr_data_ioctl(net, cmd, argp);
Arnd Bergmann7a229382009-11-06 23:00:29 -08003266
Arnd Bergmann6b960182009-11-06 23:10:54 -08003267 case FIOSETOWN:
3268 case SIOCSPGRP:
3269 case FIOGETOWN:
3270 case SIOCGPGRP:
3271 case SIOCBRADDBR:
3272 case SIOCBRDELBR:
3273 case SIOCGIFVLAN:
3274 case SIOCSIFVLAN:
Andrey Vaginc62cce22016-10-24 18:29:13 -07003275 case SIOCGSKNS:
Arnd Bergmann0768e172019-04-17 22:56:11 +02003276 case SIOCGSTAMP_NEW:
3277 case SIOCGSTAMPNS_NEW:
Arnd Bergmann876f0bf2021-07-22 16:29:02 +02003278 case SIOCGIFCONF:
Remi Pommarelfd3a4592021-12-24 12:46:40 +01003279 case SIOCSIFBR:
3280 case SIOCGIFBR:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003281 return sock_ioctl(file, cmd, arg);
3282
3283 case SIOCGIFFLAGS:
3284 case SIOCSIFFLAGS:
Arnd Bergmann709566d2021-07-22 16:29:00 +02003285 case SIOCGIFMAP:
3286 case SIOCSIFMAP:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003287 case SIOCGIFMETRIC:
3288 case SIOCSIFMETRIC:
3289 case SIOCGIFMTU:
3290 case SIOCSIFMTU:
3291 case SIOCGIFMEM:
3292 case SIOCSIFMEM:
3293 case SIOCGIFHWADDR:
3294 case SIOCSIFHWADDR:
3295 case SIOCADDMULTI:
3296 case SIOCDELMULTI:
3297 case SIOCGIFINDEX:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003298 case SIOCGIFADDR:
3299 case SIOCSIFADDR:
3300 case SIOCSIFHWBROADCAST:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003301 case SIOCDIFADDR:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003302 case SIOCGIFBRDADDR:
3303 case SIOCSIFBRDADDR:
3304 case SIOCGIFDSTADDR:
3305 case SIOCSIFDSTADDR:
3306 case SIOCGIFNETMASK:
3307 case SIOCSIFNETMASK:
3308 case SIOCSIFPFLAGS:
3309 case SIOCGIFPFLAGS:
3310 case SIOCGIFTXQLEN:
3311 case SIOCSIFTXQLEN:
3312 case SIOCBRADDIF:
3313 case SIOCBRDELIF:
Johannes Bergc6c9fee2019-01-25 22:43:19 +01003314 case SIOCGIFNAME:
Arnd Bergmann9177efd2009-11-06 08:09:09 +00003315 case SIOCSIFNAME:
3316 case SIOCGMIIPHY:
3317 case SIOCGMIIREG:
3318 case SIOCSMIIREG:
Al Virof92d4fc2017-09-30 19:32:17 -04003319 case SIOCBONDENSLAVE:
3320 case SIOCBONDRELEASE:
3321 case SIOCBONDSETHWADDR:
3322 case SIOCBONDCHANGEACTIVE:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003323 case SIOCSARP:
3324 case SIOCGARP:
3325 case SIOCDARP:
Arnd Bergmannc7dc5042019-06-03 23:07:12 +02003326 case SIOCOUTQ:
Arnd Bergmann9d7bf412019-06-03 23:06:00 +02003327 case SIOCOUTQNSD:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003328 case SIOCATMARK:
Johannes Berg63ff03a2019-01-25 22:43:17 +01003329 return sock_do_ioctl(net, sock, cmd, arg);
Arnd Bergmann9177efd2009-11-06 08:09:09 +00003330 }
3331
Arnd Bergmann6b960182009-11-06 23:10:54 -08003332 return -ENOIOCTLCMD;
3333}
Arnd Bergmann7a229382009-11-06 23:00:29 -08003334
Eric Dumazet95c96172012-04-15 05:58:06 +00003335static long compat_sock_ioctl(struct file *file, unsigned int cmd,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07003336 unsigned long arg)
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003337{
3338 struct socket *sock = file->private_data;
3339 int ret = -ENOIOCTLCMD;
David S. Miller87de87d2008-06-03 09:14:03 -07003340 struct sock *sk;
3341 struct net *net;
3342
3343 sk = sock->sk;
3344 net = sock_net(sk);
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003345
3346 if (sock->ops->compat_ioctl)
3347 ret = sock->ops->compat_ioctl(sock, cmd, arg);
3348
David S. Miller87de87d2008-06-03 09:14:03 -07003349 if (ret == -ENOIOCTLCMD &&
3350 (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST))
3351 ret = compat_wext_handle_ioctl(net, cmd, arg);
3352
Arnd Bergmann6b960182009-11-06 23:10:54 -08003353 if (ret == -ENOIOCTLCMD)
3354 ret = compat_sock_ioctl_trans(file, sock, cmd, arg);
3355
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003356 return ret;
3357}
3358#endif
3359
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003360/**
3361 * kernel_bind - bind an address to a socket (kernel space)
3362 * @sock: socket
3363 * @addr: address
3364 * @addrlen: length of address
3365 *
3366 * Returns 0 or an error.
3367 */
3368
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003369int kernel_bind(struct socket *sock, struct sockaddr *addr, int addrlen)
3370{
3371 return sock->ops->bind(sock, addr, addrlen);
3372}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003373EXPORT_SYMBOL(kernel_bind);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003374
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003375/**
3376 * kernel_listen - move socket to listening state (kernel space)
3377 * @sock: socket
3378 * @backlog: pending connections queue size
3379 *
3380 * Returns 0 or an error.
3381 */
3382
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003383int kernel_listen(struct socket *sock, int backlog)
3384{
3385 return sock->ops->listen(sock, backlog);
3386}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003387EXPORT_SYMBOL(kernel_listen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003388
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003389/**
3390 * kernel_accept - accept a connection (kernel space)
3391 * @sock: listening socket
3392 * @newsock: new connected socket
3393 * @flags: flags
3394 *
3395 * @flags must be SOCK_CLOEXEC, SOCK_NONBLOCK or 0.
3396 * If it fails, @newsock is guaranteed to be %NULL.
3397 * Returns 0 or an error.
3398 */
3399
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003400int kernel_accept(struct socket *sock, struct socket **newsock, int flags)
3401{
3402 struct sock *sk = sock->sk;
3403 int err;
3404
3405 err = sock_create_lite(sk->sk_family, sk->sk_type, sk->sk_protocol,
3406 newsock);
3407 if (err < 0)
3408 goto done;
3409
David Howellscdfbabf2017-03-09 08:09:05 +00003410 err = sock->ops->accept(sock, *newsock, flags, true);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003411 if (err < 0) {
3412 sock_release(*newsock);
Tony Battersbyfa8705b2007-10-10 21:09:04 -07003413 *newsock = NULL;
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003414 goto done;
3415 }
3416
3417 (*newsock)->ops = sock->ops;
Wei Yongjun1b085342008-12-18 19:35:10 -08003418 __module_get((*newsock)->ops->owner);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003419
3420done:
3421 return err;
3422}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003423EXPORT_SYMBOL(kernel_accept);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003424
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003425/**
3426 * kernel_connect - connect a socket (kernel space)
3427 * @sock: socket
3428 * @addr: address
3429 * @addrlen: address length
3430 * @flags: flags (O_NONBLOCK, ...)
3431 *
Lu Weif1dcffc2021-03-25 11:01:55 +08003432 * For datagram sockets, @addr is the address to which datagrams are sent
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003433 * by default, and the only address from which datagrams are received.
3434 * For stream sockets, attempts to connect to @addr.
3435 * Returns 0 or an error code.
3436 */
3437
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003438int kernel_connect(struct socket *sock, struct sockaddr *addr, int addrlen,
YOSHIFUJI Hideaki4768fbc2007-02-09 23:25:31 +09003439 int flags)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003440{
3441 return sock->ops->connect(sock, addr, addrlen, flags);
3442}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003443EXPORT_SYMBOL(kernel_connect);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003444
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003445/**
3446 * kernel_getsockname - get the address which the socket is bound (kernel space)
3447 * @sock: socket
3448 * @addr: address holder
3449 *
3450 * Fills the @addr pointer with the address which the socket is bound.
3451 * Returns 0 or an error code.
3452 */
3453
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01003454int kernel_getsockname(struct socket *sock, struct sockaddr *addr)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003455{
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01003456 return sock->ops->getname(sock, addr, 0);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003457}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003458EXPORT_SYMBOL(kernel_getsockname);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003459
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003460/**
Miaohe Lin645f0892020-08-27 07:27:49 -04003461 * kernel_getpeername - get the address which the socket is connected (kernel space)
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003462 * @sock: socket
3463 * @addr: address holder
3464 *
3465 * Fills the @addr pointer with the address which the socket is connected.
3466 * Returns 0 or an error code.
3467 */
3468
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01003469int kernel_getpeername(struct socket *sock, struct sockaddr *addr)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003470{
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01003471 return sock->ops->getname(sock, addr, 1);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003472}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003473EXPORT_SYMBOL(kernel_getpeername);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003474
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003475/**
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003476 * kernel_sendpage - send a &page through a socket (kernel space)
3477 * @sock: socket
3478 * @page: page
3479 * @offset: page offset
3480 * @size: total size in bytes
3481 * @flags: flags (MSG_DONTWAIT, ...)
3482 *
3483 * Returns the total amount sent in bytes or an error.
3484 */
3485
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003486int kernel_sendpage(struct socket *sock, struct page *page, int offset,
3487 size_t size, int flags)
3488{
Coly Li7b62d312020-10-02 16:27:29 +08003489 if (sock->ops->sendpage) {
3490 /* Warn in case the improper page to zero-copy send */
3491 WARN_ONCE(!sendpage_ok(page), "improper page for zero-copy send");
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003492 return sock->ops->sendpage(sock, page, offset, size, flags);
Coly Li7b62d312020-10-02 16:27:29 +08003493 }
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003494 return sock_no_sendpage(sock, page, offset, size, flags);
3495}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003496EXPORT_SYMBOL(kernel_sendpage);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003497
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003498/**
3499 * kernel_sendpage_locked - send a &page through the locked sock (kernel space)
3500 * @sk: sock
3501 * @page: page
3502 * @offset: page offset
3503 * @size: total size in bytes
3504 * @flags: flags (MSG_DONTWAIT, ...)
3505 *
3506 * Returns the total amount sent in bytes or an error.
3507 * Caller must hold @sk.
3508 */
3509
Tom Herbert306b13e2017-07-28 16:22:41 -07003510int kernel_sendpage_locked(struct sock *sk, struct page *page, int offset,
3511 size_t size, int flags)
3512{
3513 struct socket *sock = sk->sk_socket;
3514
3515 if (sock->ops->sendpage_locked)
3516 return sock->ops->sendpage_locked(sk, page, offset, size,
3517 flags);
3518
3519 return sock_no_sendpage_locked(sk, page, offset, size, flags);
3520}
3521EXPORT_SYMBOL(kernel_sendpage_locked);
3522
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003523/**
Miaohe Lin645f0892020-08-27 07:27:49 -04003524 * kernel_sock_shutdown - shut down part of a full-duplex connection (kernel space)
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003525 * @sock: socket
3526 * @how: connection part
3527 *
3528 * Returns 0 or an error.
3529 */
3530
Trond Myklebust91cf45f2007-11-12 18:10:39 -08003531int kernel_sock_shutdown(struct socket *sock, enum sock_shutdown_cmd how)
3532{
3533 return sock->ops->shutdown(sock, how);
3534}
Trond Myklebust91cf45f2007-11-12 18:10:39 -08003535EXPORT_SYMBOL(kernel_sock_shutdown);
R. Parameswaran113c3072017-04-05 16:50:35 -07003536
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003537/**
3538 * kernel_sock_ip_overhead - returns the IP overhead imposed by a socket
3539 * @sk: socket
3540 *
3541 * This routine returns the IP overhead imposed by a socket i.e.
3542 * the length of the underlying IP header, depending on whether
3543 * this is an IPv4 or IPv6 socket and the length from IP options turned
3544 * on at the socket. Assumes that the caller has a lock on the socket.
R. Parameswaran113c3072017-04-05 16:50:35 -07003545 */
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003546
R. Parameswaran113c3072017-04-05 16:50:35 -07003547u32 kernel_sock_ip_overhead(struct sock *sk)
3548{
3549 struct inet_sock *inet;
3550 struct ip_options_rcu *opt;
3551 u32 overhead = 0;
R. Parameswaran113c3072017-04-05 16:50:35 -07003552#if IS_ENABLED(CONFIG_IPV6)
3553 struct ipv6_pinfo *np;
3554 struct ipv6_txoptions *optv6 = NULL;
3555#endif /* IS_ENABLED(CONFIG_IPV6) */
3556
3557 if (!sk)
3558 return overhead;
3559
R. Parameswaran113c3072017-04-05 16:50:35 -07003560 switch (sk->sk_family) {
3561 case AF_INET:
3562 inet = inet_sk(sk);
3563 overhead += sizeof(struct iphdr);
3564 opt = rcu_dereference_protected(inet->inet_opt,
stephen hemminger614d79c2017-07-24 10:25:22 -07003565 sock_owned_by_user(sk));
R. Parameswaran113c3072017-04-05 16:50:35 -07003566 if (opt)
3567 overhead += opt->opt.optlen;
3568 return overhead;
3569#if IS_ENABLED(CONFIG_IPV6)
3570 case AF_INET6:
3571 np = inet6_sk(sk);
3572 overhead += sizeof(struct ipv6hdr);
3573 if (np)
3574 optv6 = rcu_dereference_protected(np->opt,
stephen hemminger614d79c2017-07-24 10:25:22 -07003575 sock_owned_by_user(sk));
R. Parameswaran113c3072017-04-05 16:50:35 -07003576 if (optv6)
3577 overhead += (optv6->opt_flen + optv6->opt_nflen);
3578 return overhead;
3579#endif /* IS_ENABLED(CONFIG_IPV6) */
3580 default: /* Returns 0 overhead if the socket is not ipv4 or ipv6 */
3581 return overhead;
3582 }
3583}
3584EXPORT_SYMBOL(kernel_sock_ip_overhead);