blob: 84de89c1ee9d0f1b17ff03d16188e151f323f52e [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 Kicinskicc698372020-11-20 14:50:52 -080055#include <linux/ethtool.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#include <linux/socket.h>
58#include <linux/file.h>
59#include <linux/net.h>
60#include <linux/interrupt.h>
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -070061#include <linux/thread_info.h>
Stephen Hemminger55737fd2006-09-01 00:23:39 -070062#include <linux/rcupdate.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#include <linux/netdevice.h>
64#include <linux/proc_fs.h>
65#include <linux/seq_file.h>
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -080066#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#include <linux/if_bridge.h>
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -030068#include <linux/if_vlan.h>
Daniel Borkmann408eccc2014-04-01 16:20:23 +020069#include <linux/ptp_classify.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070070#include <linux/init.h>
71#include <linux/poll.h>
72#include <linux/cache.h>
73#include <linux/module.h>
74#include <linux/highmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070075#include <linux/mount.h>
David Howellsfba9be42019-03-25 16:38:24 +000076#include <linux/pseudo_fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070077#include <linux/security.h>
78#include <linux/syscalls.h>
79#include <linux/compat.h>
80#include <linux/kmod.h>
David Woodhouse3ec3b2f2005-05-17 12:08:48 +010081#include <linux/audit.h>
Adrian Bunkd86b5e02006-01-21 00:46:55 +010082#include <linux/wireless.h>
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -070083#include <linux/nsproxy.h>
Nick Black1fd7317d2009-09-22 16:43:33 -070084#include <linux/magic.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090085#include <linux/slab.h>
Masatake YAMATO600e1772012-08-29 10:44:29 +000086#include <linux/xattr.h>
Jeremy Clinec8e8cd52018-07-27 22:43:01 +000087#include <linux/nospec.h>
Paolo Abeni8c3c4472019-05-03 17:01:39 +020088#include <linux/indirect_call_wrapper.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080090#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070091#include <asm/unistd.h>
92
93#include <net/compat.h>
David S. Miller87de87d2008-06-03 09:14:03 -070094#include <net/wext.h>
Herbert Xuf8451722010-05-24 00:12:34 -070095#include <net/cls_cgroup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
97#include <net/sock.h>
98#include <linux/netfilter.h>
99
Arnd Bergmann6b960182009-11-06 23:10:54 -0800100#include <linux/if_tun.h>
101#include <linux/ipv6_route.h>
102#include <linux/route.h>
Arnd Bergmannc7dc5042019-06-03 23:07:12 +0200103#include <linux/termios.h>
Arnd Bergmann6b960182009-11-06 23:10:54 -0800104#include <linux/sockios.h>
Eliezer Tamir076bb0c2013-07-10 17:13:17 +0300105#include <net/busy_poll.h>
Willem de Bruijnf24b9be2014-08-04 22:11:45 -0400106#include <linux/errqueue.h>
Yangbo Lud7c08822021-06-30 16:12:00 +0800107#include <linux/ptp_clock_kernel.h>
Eliezer Tamir06021292013-06-10 11:39:50 +0300108
Cong Wange0d10952013-08-01 11:10:25 +0800109#ifdef CONFIG_NET_RX_BUSY_POLL
Eliezer Tamir64b0dc52013-07-10 17:13:36 +0300110unsigned int sysctl_net_busy_read __read_mostly;
111unsigned int sysctl_net_busy_poll __read_mostly;
Eliezer Tamir06021292013-06-10 11:39:50 +0300112#endif
Arnd Bergmann6b960182009-11-06 23:10:54 -0800113
Al Viro8ae5e0302014-11-28 19:40:50 -0500114static ssize_t sock_read_iter(struct kiocb *iocb, struct iov_iter *to);
115static ssize_t sock_write_iter(struct kiocb *iocb, struct iov_iter *from);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700116static int sock_mmap(struct file *file, struct vm_area_struct *vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
118static int sock_close(struct inode *inode, struct file *file);
Linus Torvaldsa11e1d42018-06-28 09:43:44 -0700119static __poll_t sock_poll(struct file *file,
120 struct poll_table_struct *wait);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700121static long sock_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800122#ifdef CONFIG_COMPAT
123static long compat_sock_ioctl(struct file *file,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700124 unsigned int cmd, unsigned long arg);
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800125#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126static int sock_fasync(int fd, struct file *filp, int on);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127static ssize_t sock_sendpage(struct file *file, struct page *page,
128 int offset, size_t size, loff_t *ppos, int more);
Jens Axboe9c55e012007-11-06 23:30:13 -0800129static ssize_t sock_splice_read(struct file *file, loff_t *ppos,
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700130 struct pipe_inode_info *pipe, size_t len,
Jens Axboe9c55e012007-11-06 23:30:13 -0800131 unsigned int flags);
Arnd Bergmann542d3062020-01-08 22:44:43 +0100132
133#ifdef CONFIG_PROC_FS
134static void sock_show_fdinfo(struct seq_file *m, struct file *f)
135{
136 struct socket *sock = f->private_data;
137
138 if (sock->ops->show_fdinfo)
139 sock->ops->show_fdinfo(m, sock);
140}
141#else
142#define sock_show_fdinfo NULL
143#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145/*
146 * Socket files have a set of 'special' operations as well as the generic file ones. These don't appear
147 * in the operation structures but are done directly via the socketcall() multiplexor.
148 */
149
Arjan van de Venda7071d2007-02-12 00:55:36 -0800150static const struct file_operations socket_file_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 .owner = THIS_MODULE,
152 .llseek = no_llseek,
Al Viro8ae5e0302014-11-28 19:40:50 -0500153 .read_iter = sock_read_iter,
154 .write_iter = sock_write_iter,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 .poll = sock_poll,
156 .unlocked_ioctl = sock_ioctl,
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800157#ifdef CONFIG_COMPAT
158 .compat_ioctl = compat_sock_ioctl,
159#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 .mmap = sock_mmap,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 .release = sock_close,
162 .fasync = sock_fasync,
Jens Axboe5274f052006-03-30 15:15:30 +0200163 .sendpage = sock_sendpage,
164 .splice_write = generic_splice_sendpage,
Jens Axboe9c55e012007-11-06 23:30:13 -0800165 .splice_read = sock_splice_read,
Kirill Tkhaib4653342019-12-09 13:03:40 +0300166 .show_fdinfo = sock_show_fdinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167};
168
Yejune Dengfe0bdbd2021-06-21 13:12:25 +0800169static const char * const pf_family_names[] = {
170 [PF_UNSPEC] = "PF_UNSPEC",
171 [PF_UNIX] = "PF_UNIX/PF_LOCAL",
172 [PF_INET] = "PF_INET",
173 [PF_AX25] = "PF_AX25",
174 [PF_IPX] = "PF_IPX",
175 [PF_APPLETALK] = "PF_APPLETALK",
176 [PF_NETROM] = "PF_NETROM",
177 [PF_BRIDGE] = "PF_BRIDGE",
178 [PF_ATMPVC] = "PF_ATMPVC",
179 [PF_X25] = "PF_X25",
180 [PF_INET6] = "PF_INET6",
181 [PF_ROSE] = "PF_ROSE",
182 [PF_DECnet] = "PF_DECnet",
183 [PF_NETBEUI] = "PF_NETBEUI",
184 [PF_SECURITY] = "PF_SECURITY",
185 [PF_KEY] = "PF_KEY",
186 [PF_NETLINK] = "PF_NETLINK/PF_ROUTE",
187 [PF_PACKET] = "PF_PACKET",
188 [PF_ASH] = "PF_ASH",
189 [PF_ECONET] = "PF_ECONET",
190 [PF_ATMSVC] = "PF_ATMSVC",
191 [PF_RDS] = "PF_RDS",
192 [PF_SNA] = "PF_SNA",
193 [PF_IRDA] = "PF_IRDA",
194 [PF_PPPOX] = "PF_PPPOX",
195 [PF_WANPIPE] = "PF_WANPIPE",
196 [PF_LLC] = "PF_LLC",
197 [PF_IB] = "PF_IB",
198 [PF_MPLS] = "PF_MPLS",
199 [PF_CAN] = "PF_CAN",
200 [PF_TIPC] = "PF_TIPC",
201 [PF_BLUETOOTH] = "PF_BLUETOOTH",
202 [PF_IUCV] = "PF_IUCV",
203 [PF_RXRPC] = "PF_RXRPC",
204 [PF_ISDN] = "PF_ISDN",
205 [PF_PHONET] = "PF_PHONET",
206 [PF_IEEE802154] = "PF_IEEE802154",
207 [PF_CAIF] = "PF_CAIF",
208 [PF_ALG] = "PF_ALG",
209 [PF_NFC] = "PF_NFC",
210 [PF_VSOCK] = "PF_VSOCK",
211 [PF_KCM] = "PF_KCM",
212 [PF_QIPCRTR] = "PF_QIPCRTR",
213 [PF_SMC] = "PF_SMC",
214 [PF_XDP] = "PF_XDP",
215};
216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217/*
218 * The protocol list. Each protocol is registered in here.
219 */
220
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221static DEFINE_SPINLOCK(net_family_lock);
Eric Dumazet190683a2010-11-10 10:50:44 +0000222static const struct net_proto_family __rcu *net_families[NPROTO] __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700225 * Support routines.
226 * Move socket addresses back and forth across the kernel/user
227 * divide and look after the messy bits.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 */
229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230/**
231 * move_addr_to_kernel - copy a socket address into kernel space
232 * @uaddr: Address in user space
233 * @kaddr: Address in kernel space
234 * @ulen: Length in user space
235 *
236 * The address is copied into kernel space. If the provided address is
237 * too long an error code of -EINVAL is returned. If the copy gives
238 * invalid addresses -EFAULT is returned. On a success 0 is returned.
239 */
240
Maciej Żenczykowski43db3622012-03-11 12:51:50 +0000241int move_addr_to_kernel(void __user *uaddr, int ulen, struct sockaddr_storage *kaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242{
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -0700243 if (ulen < 0 || ulen > sizeof(struct sockaddr_storage))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700245 if (ulen == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 return 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700247 if (copy_from_user(kaddr, uaddr, ulen))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 return -EFAULT;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +0100249 return audit_sockaddr(ulen, kaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250}
251
252/**
253 * move_addr_to_user - copy an address to user space
254 * @kaddr: kernel space address
255 * @klen: length of address in kernel
256 * @uaddr: user space address
257 * @ulen: pointer to user length field
258 *
259 * The value pointed to by ulen on entry is the buffer length available.
260 * This is overwritten with the buffer space used. -EINVAL is returned
261 * if an overlong buffer is specified or a negative buffer size. -EFAULT
262 * is returned if either the buffer or the length field are not
263 * accessible.
264 * After copying the data up to the limit the user specifies, the true
265 * length of the data is written over the length limit the user
266 * specified. Zero is returned for a success.
267 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700268
Maciej Żenczykowski43db3622012-03-11 12:51:50 +0000269static int move_addr_to_user(struct sockaddr_storage *kaddr, int klen,
stephen hemminger11165f12010-10-18 14:27:29 +0000270 void __user *uaddr, int __user *ulen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271{
272 int err;
273 int len;
274
Hannes Frederic Sowa68c6beb2013-11-21 03:14:34 +0100275 BUG_ON(klen > sizeof(struct sockaddr_storage));
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700276 err = get_user(len, ulen);
277 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 return err;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700279 if (len > klen)
280 len = klen;
Hannes Frederic Sowa68c6beb2013-11-21 03:14:34 +0100281 if (len < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700283 if (len) {
Steve Grubbd6fe3942006-03-30 12:20:22 -0500284 if (audit_sockaddr(klen, kaddr))
285 return -ENOMEM;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700286 if (copy_to_user(uaddr, kaddr, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 return -EFAULT;
288 }
289 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700290 * "fromlen shall refer to the value before truncation.."
291 * 1003.1g
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 */
293 return __put_user(klen, ulen);
294}
295
Alexey Dobriyan08009a72018-02-24 21:20:33 +0300296static struct kmem_cache *sock_inode_cachep __ro_after_init;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
298static struct inode *sock_alloc_inode(struct super_block *sb)
299{
300 struct socket_alloc *ei;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700301
Christoph Lametere94b1762006-12-06 20:33:17 -0800302 ei = kmem_cache_alloc(sock_inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 if (!ei)
304 return NULL;
Al Viro333f7902019-07-05 20:14:16 +0100305 init_waitqueue_head(&ei->socket.wq.wait);
306 ei->socket.wq.fasync_list = NULL;
307 ei->socket.wq.flags = 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700308
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 ei->socket.state = SS_UNCONNECTED;
310 ei->socket.flags = 0;
311 ei->socket.ops = NULL;
312 ei->socket.sk = NULL;
313 ei->socket.file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
315 return &ei->vfs_inode;
316}
317
Al Viro6d7855c2019-07-05 20:13:22 +0100318static void sock_free_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319{
Eric Dumazet43815482010-04-29 11:01:49 +0000320 struct socket_alloc *ei;
321
322 ei = container_of(inode, struct socket_alloc, vfs_inode);
Eric Dumazet43815482010-04-29 11:01:49 +0000323 kmem_cache_free(sock_inode_cachep, ei);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324}
325
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700326static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327{
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700328 struct socket_alloc *ei = (struct socket_alloc *)foo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
Christoph Lametera35afb82007-05-16 22:10:57 -0700330 inode_init_once(&ei->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331}
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700332
yuan linyu1e911632017-01-07 17:18:31 +0800333static void init_inodecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334{
335 sock_inode_cachep = kmem_cache_create("sock_inode_cache",
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700336 sizeof(struct socket_alloc),
337 0,
338 (SLAB_HWCACHE_ALIGN |
339 SLAB_RECLAIM_ACCOUNT |
Vladimir Davydov5d097052016-01-14 15:18:21 -0800340 SLAB_MEM_SPREAD | SLAB_ACCOUNT),
Paul Mundt20c2df82007-07-20 10:11:58 +0900341 init_once);
yuan linyu1e911632017-01-07 17:18:31 +0800342 BUG_ON(sock_inode_cachep == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343}
344
Alexey Dobriyanb87221d2009-09-21 17:01:09 -0700345static const struct super_operations sockfs_ops = {
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700346 .alloc_inode = sock_alloc_inode,
Al Viro6d7855c2019-07-05 20:13:22 +0100347 .free_inode = sock_free_inode,
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700348 .statfs = simple_statfs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349};
350
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700351/*
352 * sockfs_dname() is called from d_path().
353 */
354static char *sockfs_dname(struct dentry *dentry, char *buffer, int buflen)
355{
356 return dynamic_dname(dentry, buffer, buflen, "socket:[%lu]",
David Howellsc5ef6032015-03-17 22:26:16 +0000357 d_inode(dentry)->i_ino);
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700358}
359
Al Viro3ba13d12009-02-20 06:02:22 +0000360static const struct dentry_operations sockfs_dentry_operations = {
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700361 .d_dname = sockfs_dname,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362};
363
Andreas Gruenbacherbba0bd32016-09-29 17:48:35 +0200364static int sockfs_xattr_get(const struct xattr_handler *handler,
365 struct dentry *dentry, struct inode *inode,
366 const char *suffix, void *value, size_t size)
367{
368 if (value) {
369 if (dentry->d_name.len + 1 > size)
370 return -ERANGE;
371 memcpy(value, dentry->d_name.name, dentry->d_name.len + 1);
372 }
373 return dentry->d_name.len + 1;
374}
375
376#define XATTR_SOCKPROTONAME_SUFFIX "sockprotoname"
377#define XATTR_NAME_SOCKPROTONAME (XATTR_SYSTEM_PREFIX XATTR_SOCKPROTONAME_SUFFIX)
378#define XATTR_NAME_SOCKPROTONAME_LEN (sizeof(XATTR_NAME_SOCKPROTONAME)-1)
379
380static const struct xattr_handler sockfs_xattr_handler = {
381 .name = XATTR_NAME_SOCKPROTONAME,
382 .get = sockfs_xattr_get,
383};
384
Andreas Gruenbacher4a590152016-11-13 21:23:34 +0100385static int sockfs_security_xattr_set(const struct xattr_handler *handler,
Christian Braunere65ce2a2021-01-21 14:19:27 +0100386 struct user_namespace *mnt_userns,
Andreas Gruenbacher4a590152016-11-13 21:23:34 +0100387 struct dentry *dentry, struct inode *inode,
388 const char *suffix, const void *value,
389 size_t size, int flags)
390{
391 /* Handled by LSM. */
392 return -EAGAIN;
393}
394
395static const struct xattr_handler sockfs_security_xattr_handler = {
396 .prefix = XATTR_SECURITY_PREFIX,
397 .set = sockfs_security_xattr_set,
398};
399
Andreas Gruenbacherbba0bd32016-09-29 17:48:35 +0200400static const struct xattr_handler *sockfs_xattr_handlers[] = {
401 &sockfs_xattr_handler,
Andreas Gruenbacher4a590152016-11-13 21:23:34 +0100402 &sockfs_security_xattr_handler,
Andreas Gruenbacherbba0bd32016-09-29 17:48:35 +0200403 NULL
404};
405
David Howellsfba9be42019-03-25 16:38:24 +0000406static int sockfs_init_fs_context(struct fs_context *fc)
Al Viroc74a1cb2011-01-12 16:59:34 -0500407{
David Howellsfba9be42019-03-25 16:38:24 +0000408 struct pseudo_fs_context *ctx = init_pseudo(fc, SOCKFS_MAGIC);
409 if (!ctx)
410 return -ENOMEM;
411 ctx->ops = &sockfs_ops;
412 ctx->dops = &sockfs_dentry_operations;
413 ctx->xattr = sockfs_xattr_handlers;
414 return 0;
Al Viroc74a1cb2011-01-12 16:59:34 -0500415}
416
417static struct vfsmount *sock_mnt __read_mostly;
418
419static struct file_system_type sock_fs_type = {
420 .name = "sockfs",
David Howellsfba9be42019-03-25 16:38:24 +0000421 .init_fs_context = sockfs_init_fs_context,
Al Viroc74a1cb2011-01-12 16:59:34 -0500422 .kill_sb = kill_anon_super,
423};
424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425/*
426 * Obtains the first available file descriptor and sets it up for use.
427 *
David S. Miller39d8c1b2006-03-20 17:13:49 -0800428 * These functions create file structures and maps them to fd space
429 * of the current process. On success it returns file descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 * and file struct implicitly stored in sock->file.
431 * Note that another thread may close file descriptor before we return
432 * from this function. We use the fact that now we do not refer
433 * to socket after mapping. If one day we will need it, this
434 * function will increment ref. count on file by 1.
435 *
436 * In any case returned fd MAY BE not valid!
437 * This race condition is unavoidable
438 * with shared fd spaces, we cannot solve it inside kernel,
439 * but we take care of internal coherence yet.
440 */
441
Pedro Tammela8a3c2452019-03-14 10:45:23 -0300442/**
443 * sock_alloc_file - Bind a &socket to a &file
444 * @sock: socket
445 * @flags: file status flags
446 * @dname: protocol name
447 *
448 * Returns the &file bound with @sock, implicitly storing it
449 * in sock->file. If dname is %NULL, sets to "".
450 * On failure the return is a ERR pointer (see linux/err.h).
451 * This function uses GFP_KERNEL internally.
452 */
453
Linus Torvaldsaab174f2012-10-02 20:25:04 -0700454struct file *sock_alloc_file(struct socket *sock, int flags, const char *dname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455{
Al Viro7cbe66b2009-08-05 19:59:08 +0400456 struct file *file;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800457
Al Virod93aa9d2018-06-09 09:40:05 -0400458 if (!dname)
459 dname = sock->sk ? sock->sk->sk_prot_creator->name : "";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
Al Virod93aa9d2018-06-09 09:40:05 -0400461 file = alloc_file_pseudo(SOCK_INODE(sock), sock_mnt, dname,
462 O_RDWR | (flags & O_NONBLOCK),
463 &socket_file_ops);
Viresh Kumarb5ffe632015-08-12 15:59:47 +0530464 if (IS_ERR(file)) {
Al Viro8e1611e2017-12-05 23:29:09 +0000465 sock_release(sock);
Anatol Pomozov39b65252012-09-12 20:11:55 -0700466 return file;
Al Virocc3808f2009-08-06 09:43:59 +0400467 }
David S. Miller39d8c1b2006-03-20 17:13:49 -0800468
469 sock->file = file;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800470 file->private_data = sock;
Linus Torvaldsd8e464e2019-11-17 11:20:48 -0800471 stream_open(SOCK_INODE(sock), file);
Al Viro28407632012-08-17 23:54:15 -0400472 return file;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800473}
Al Viro56b31d12012-08-18 00:25:51 -0400474EXPORT_SYMBOL(sock_alloc_file);
David S. Miller39d8c1b2006-03-20 17:13:49 -0800475
Al Viro56b31d12012-08-18 00:25:51 -0400476static int sock_map_fd(struct socket *sock, int flags)
David S. Miller39d8c1b2006-03-20 17:13:49 -0800477{
478 struct file *newfile;
Al Viro28407632012-08-17 23:54:15 -0400479 int fd = get_unused_fd_flags(flags);
Al Viroce4bb042018-01-10 18:47:05 -0500480 if (unlikely(fd < 0)) {
481 sock_release(sock);
Al Viro28407632012-08-17 23:54:15 -0400482 return fd;
Al Viroce4bb042018-01-10 18:47:05 -0500483 }
David S. Miller39d8c1b2006-03-20 17:13:49 -0800484
Linus Torvaldsaab174f2012-10-02 20:25:04 -0700485 newfile = sock_alloc_file(sock, flags, NULL);
Enrico Weigelt4546e442019-06-05 22:58:50 +0200486 if (!IS_ERR(newfile)) {
David S. Miller39d8c1b2006-03-20 17:13:49 -0800487 fd_install(fd, newfile);
Al Viro28407632012-08-17 23:54:15 -0400488 return fd;
489 }
Al Viro7cbe66b2009-08-05 19:59:08 +0400490
Al Viro28407632012-08-17 23:54:15 -0400491 put_unused_fd(fd);
492 return PTR_ERR(newfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493}
494
Pedro Tammela8a3c2452019-03-14 10:45:23 -0300495/**
496 * sock_from_file - Return the &socket bounded to @file.
497 * @file: file
Pedro Tammela8a3c2452019-03-14 10:45:23 -0300498 *
Florent Revestdba4a922020-12-04 12:36:04 +0100499 * On failure returns %NULL.
Pedro Tammela8a3c2452019-03-14 10:45:23 -0300500 */
501
Florent Revestdba4a922020-12-04 12:36:04 +0100502struct socket *sock_from_file(struct file *file)
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800503{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800504 if (file->f_op == &socket_file_ops)
505 return file->private_data; /* set in sock_map_fd */
506
Eric Dumazet23bb80d2007-02-08 14:59:57 -0800507 return NULL;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800508}
John Fastabend406a3c62012-07-20 10:39:25 +0000509EXPORT_SYMBOL(sock_from_file);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800510
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511/**
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700512 * sockfd_lookup - Go from a file number to its socket slot
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 * @fd: file handle
514 * @err: pointer to an error code return
515 *
516 * The file handle passed in is locked and the socket it is bound
Rosen, Rami241c4662017-05-21 22:12:38 +0300517 * to is returned. If an error occurs the err pointer is overwritten
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 * with a negative errno code and NULL is returned. The function checks
519 * for both invalid handles and passing a handle which is not a socket.
520 *
521 * On a success the socket object pointer is returned.
522 */
523
524struct socket *sockfd_lookup(int fd, int *err)
525{
526 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 struct socket *sock;
528
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700529 file = fget(fd);
530 if (!file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 *err = -EBADF;
532 return NULL;
533 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700534
Florent Revestdba4a922020-12-04 12:36:04 +0100535 sock = sock_from_file(file);
536 if (!sock) {
537 *err = -ENOTSOCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 fput(file);
Florent Revestdba4a922020-12-04 12:36:04 +0100539 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 return sock;
541}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700542EXPORT_SYMBOL(sockfd_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800544static struct socket *sockfd_lookup_light(int fd, int *err, int *fput_needed)
545{
Al Viro00e188e2014-03-03 23:48:18 -0500546 struct fd f = fdget(fd);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800547 struct socket *sock;
548
Hua Zhong36725582006-04-19 15:25:02 -0700549 *err = -EBADF;
Al Viro00e188e2014-03-03 23:48:18 -0500550 if (f.file) {
Florent Revestdba4a922020-12-04 12:36:04 +0100551 sock = sock_from_file(f.file);
Al Viro00e188e2014-03-03 23:48:18 -0500552 if (likely(sock)) {
Miaohe Lince787a52020-08-06 19:53:16 +0800553 *fput_needed = f.flags & FDPUT_FPUT;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800554 return sock;
Al Viro00e188e2014-03-03 23:48:18 -0500555 }
Florent Revestdba4a922020-12-04 12:36:04 +0100556 *err = -ENOTSOCK;
Al Viro00e188e2014-03-03 23:48:18 -0500557 fdput(f);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800558 }
559 return NULL;
560}
561
Masatake YAMATO600e1772012-08-29 10:44:29 +0000562static ssize_t sockfs_listxattr(struct dentry *dentry, char *buffer,
563 size_t size)
564{
565 ssize_t len;
566 ssize_t used = 0;
567
David Howellsc5ef6032015-03-17 22:26:16 +0000568 len = security_inode_listsecurity(d_inode(dentry), buffer, size);
Masatake YAMATO600e1772012-08-29 10:44:29 +0000569 if (len < 0)
570 return len;
571 used += len;
572 if (buffer) {
573 if (size < used)
574 return -ERANGE;
575 buffer += len;
576 }
577
578 len = (XATTR_NAME_SOCKPROTONAME_LEN + 1);
579 used += len;
580 if (buffer) {
581 if (size < used)
582 return -ERANGE;
583 memcpy(buffer, XATTR_NAME_SOCKPROTONAME, len);
584 buffer += len;
585 }
586
587 return used;
588}
589
Christian Brauner549c7292021-01-21 14:19:43 +0100590static int sockfs_setattr(struct user_namespace *mnt_userns,
591 struct dentry *dentry, struct iattr *iattr)
Lorenzo Colitti86741ec2016-11-04 02:23:41 +0900592{
Christian Brauner549c7292021-01-21 14:19:43 +0100593 int err = simple_setattr(&init_user_ns, dentry, iattr);
Lorenzo Colitti86741ec2016-11-04 02:23:41 +0900594
Eric Biggerse1a3a602016-12-30 17:42:32 -0600595 if (!err && (iattr->ia_valid & ATTR_UID)) {
Lorenzo Colitti86741ec2016-11-04 02:23:41 +0900596 struct socket *sock = SOCKET_I(d_inode(dentry));
597
Cong Wang6d8c50d2018-06-07 13:39:49 -0700598 if (sock->sk)
599 sock->sk->sk_uid = iattr->ia_uid;
600 else
601 err = -ENOENT;
Lorenzo Colitti86741ec2016-11-04 02:23:41 +0900602 }
603
604 return err;
605}
606
Masatake YAMATO600e1772012-08-29 10:44:29 +0000607static const struct inode_operations sockfs_inode_ops = {
Masatake YAMATO600e1772012-08-29 10:44:29 +0000608 .listxattr = sockfs_listxattr,
Lorenzo Colitti86741ec2016-11-04 02:23:41 +0900609 .setattr = sockfs_setattr,
Masatake YAMATO600e1772012-08-29 10:44:29 +0000610};
611
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612/**
Pedro Tammela8a3c2452019-03-14 10:45:23 -0300613 * sock_alloc - allocate a socket
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700614 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 * Allocate a new inode and socket object. The two are bound together
616 * and initialised. The socket is then returned. If we are out of inodes
Pedro Tammela8a3c2452019-03-14 10:45:23 -0300617 * NULL is returned. This functions uses GFP_KERNEL internally.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 */
619
Tom Herbertf4a00aa2016-03-07 14:11:01 -0800620struct socket *sock_alloc(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621{
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700622 struct inode *inode;
623 struct socket *sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
Eric Dumazeta209dfc2011-07-26 11:36:34 +0200625 inode = new_inode_pseudo(sock_mnt->mnt_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 if (!inode)
627 return NULL;
628
629 sock = SOCKET_I(inode);
630
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400631 inode->i_ino = get_next_ino();
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700632 inode->i_mode = S_IFSOCK | S_IRWXUGO;
David Howells8192b0c2008-11-14 10:39:10 +1100633 inode->i_uid = current_fsuid();
634 inode->i_gid = current_fsgid();
Masatake YAMATO600e1772012-08-29 10:44:29 +0000635 inode->i_op = &sockfs_inode_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 return sock;
638}
Tom Herbertf4a00aa2016-03-07 14:11:01 -0800639EXPORT_SYMBOL(sock_alloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Cong Wang6d8c50d2018-06-07 13:39:49 -0700641static void __sock_release(struct socket *sock, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642{
643 if (sock->ops) {
644 struct module *owner = sock->ops->owner;
645
Cong Wang6d8c50d2018-06-07 13:39:49 -0700646 if (inode)
647 inode_lock(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 sock->ops->release(sock);
Eric Biggersff7b11a2019-02-21 14:13:56 -0800649 sock->sk = NULL;
Cong Wang6d8c50d2018-06-07 13:39:49 -0700650 if (inode)
651 inode_unlock(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 sock->ops = NULL;
653 module_put(owner);
654 }
655
Al Viro333f7902019-07-05 20:14:16 +0100656 if (sock->wq.fasync_list)
Yang Yingliang3410f222014-02-12 17:09:55 +0800657 pr_err("%s: fasync list not empty!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 if (!sock->file) {
660 iput(SOCK_INODE(sock));
661 return;
662 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700663 sock->file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664}
Cong Wang6d8c50d2018-06-07 13:39:49 -0700665
Andrew Lunn9a8ad9a2020-07-13 01:15:12 +0200666/**
667 * sock_release - close a socket
668 * @sock: socket to close
669 *
670 * The socket is released from the protocol stack if it has a release
671 * callback, and the inode is then released if the socket is bound to
672 * an inode not a file.
673 */
Cong Wang6d8c50d2018-06-07 13:39:49 -0700674void sock_release(struct socket *sock)
675{
676 __sock_release(sock, NULL);
677}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700678EXPORT_SYMBOL(sock_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
Soheil Hassas Yeganehc14ac942016-04-02 23:08:12 -0400680void __sock_tx_timestamp(__u16 tsflags, __u8 *tx_flags)
Patrick Ohly20d49472009-02-12 05:03:38 +0000681{
Eric Dumazet140c55d2014-08-06 11:49:29 +0200682 u8 flags = *tx_flags;
683
Soheil Hassas Yeganehc14ac942016-04-02 23:08:12 -0400684 if (tsflags & SOF_TIMESTAMPING_TX_HARDWARE)
Eric Dumazet140c55d2014-08-06 11:49:29 +0200685 flags |= SKBTX_HW_TSTAMP;
686
Soheil Hassas Yeganehc14ac942016-04-02 23:08:12 -0400687 if (tsflags & SOF_TIMESTAMPING_TX_SOFTWARE)
Eric Dumazet140c55d2014-08-06 11:49:29 +0200688 flags |= SKBTX_SW_TSTAMP;
689
Soheil Hassas Yeganehc14ac942016-04-02 23:08:12 -0400690 if (tsflags & SOF_TIMESTAMPING_TX_SCHED)
Eric Dumazet140c55d2014-08-06 11:49:29 +0200691 flags |= SKBTX_SCHED_TSTAMP;
692
Eric Dumazet140c55d2014-08-06 11:49:29 +0200693 *tx_flags = flags;
Patrick Ohly20d49472009-02-12 05:03:38 +0000694}
Willem de Bruijn67cc0d42014-09-08 19:58:58 -0400695EXPORT_SYMBOL(__sock_tx_timestamp);
Patrick Ohly20d49472009-02-12 05:03:38 +0000696
Paolo Abeni8c3c4472019-05-03 17:01:39 +0200697INDIRECT_CALLABLE_DECLARE(int inet_sendmsg(struct socket *, struct msghdr *,
698 size_t));
Paolo Abenia648a592019-07-03 16:06:54 +0200699INDIRECT_CALLABLE_DECLARE(int inet6_sendmsg(struct socket *, struct msghdr *,
700 size_t));
Al Virod8725c82014-12-11 00:02:50 -0500701static inline int sock_sendmsg_nosec(struct socket *sock, struct msghdr *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702{
Paolo Abenia648a592019-07-03 16:06:54 +0200703 int ret = INDIRECT_CALL_INET(sock->ops->sendmsg, inet6_sendmsg,
704 inet_sendmsg, sock, msg,
705 msg_data_left(msg));
Al Virod8725c82014-12-11 00:02:50 -0500706 BUG_ON(ret == -EIOCBQUEUED);
707 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708}
Gu Zheng0cf00c62014-12-05 15:14:23 +0800709
Randy Dunlap85806af2019-05-18 21:23:07 -0700710/**
711 * sock_sendmsg - send a message through @sock
712 * @sock: socket
713 * @msg: message to send
714 *
715 * Sends @msg through @sock, passing through LSM.
716 * Returns the number of bytes sent, or an error code.
717 */
Al Virod8725c82014-12-11 00:02:50 -0500718int sock_sendmsg(struct socket *sock, struct msghdr *msg)
Gu Zheng0cf00c62014-12-05 15:14:23 +0800719{
Al Virod8725c82014-12-11 00:02:50 -0500720 int err = security_socket_sendmsg(sock, msg,
Al Viro01e97e62014-12-15 21:39:31 -0500721 msg_data_left(msg));
Ying Xue1b784142015-03-02 15:37:48 +0800722
Al Virod8725c82014-12-11 00:02:50 -0500723 return err ?: sock_sendmsg_nosec(sock, msg);
Gu Zheng0cf00c62014-12-05 15:14:23 +0800724}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700725EXPORT_SYMBOL(sock_sendmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
Pedro Tammela8a3c2452019-03-14 10:45:23 -0300727/**
728 * kernel_sendmsg - send a message through @sock (kernel-space)
729 * @sock: socket
730 * @msg: message header
731 * @vec: kernel vec
732 * @num: vec array length
733 * @size: total message data size
734 *
735 * Builds the message data with @vec and sends it through @sock.
736 * Returns the number of bytes sent, or an error code.
737 */
738
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739int kernel_sendmsg(struct socket *sock, struct msghdr *msg,
740 struct kvec *vec, size_t num, size_t size)
741{
David Howellsaa563d72018-10-20 00:57:56 +0100742 iov_iter_kvec(&msg->msg_iter, WRITE, vec, num, size);
Al Virod8725c82014-12-11 00:02:50 -0500743 return sock_sendmsg(sock, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700745EXPORT_SYMBOL(kernel_sendmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
Pedro Tammela8a3c2452019-03-14 10:45:23 -0300747/**
748 * kernel_sendmsg_locked - send a message through @sock (kernel-space)
749 * @sk: sock
750 * @msg: message header
751 * @vec: output s/g array
752 * @num: output s/g array length
753 * @size: total message data size
754 *
755 * Builds the message data with @vec and sends it through @sock.
756 * Returns the number of bytes sent, or an error code.
757 * Caller must hold @sk.
758 */
759
Tom Herbert306b13e2017-07-28 16:22:41 -0700760int kernel_sendmsg_locked(struct sock *sk, struct msghdr *msg,
761 struct kvec *vec, size_t num, size_t size)
762{
763 struct socket *sock = sk->sk_socket;
764
765 if (!sock->ops->sendmsg_locked)
John Fastabenddb5980d2017-08-15 22:31:34 -0700766 return sock_no_sendmsg_locked(sk, msg, size);
Tom Herbert306b13e2017-07-28 16:22:41 -0700767
David Howellsaa563d72018-10-20 00:57:56 +0100768 iov_iter_kvec(&msg->msg_iter, WRITE, vec, num, size);
Tom Herbert306b13e2017-07-28 16:22:41 -0700769
770 return sock->ops->sendmsg_locked(sk, msg, msg_data_left(msg));
771}
772EXPORT_SYMBOL(kernel_sendmsg_locked);
773
Soheil Hassas Yeganeh8605330a2017-03-18 17:02:59 -0400774static bool skb_is_err_queue(const struct sk_buff *skb)
775{
776 /* pkt_type of skbs enqueued on the error queue are set to
777 * PACKET_OUTGOING in skb_set_err_queue(). This is only safe to do
778 * in recvmsg, since skbs received on a local socket will never
779 * have a pkt_type of PACKET_OUTGOING.
780 */
781 return skb->pkt_type == PACKET_OUTGOING;
782}
783
Miroslav Lichvarb50a5c72017-05-19 17:52:40 +0200784/* On transmit, software and hardware timestamps are returned independently.
785 * As the two skb clones share the hardware timestamp, which may be updated
786 * before the software timestamp is received, a hardware TX timestamp may be
787 * returned only if there is no software TX timestamp. Ignore false software
788 * timestamps, which may be made in the __sock_recv_timestamp() call when the
Deepa Dinamani7f1bc6e2019-02-02 07:34:46 -0800789 * option SO_TIMESTAMP_OLD(NS) is enabled on the socket, even when the skb has a
Miroslav Lichvarb50a5c72017-05-19 17:52:40 +0200790 * hardware timestamp.
791 */
792static bool skb_is_swtx_tstamp(const struct sk_buff *skb, int false_tstamp)
793{
794 return skb->tstamp && !false_tstamp && skb_is_err_queue(skb);
795}
796
Miroslav Lichvaraad9c8c2017-05-19 17:52:38 +0200797static void put_ts_pktinfo(struct msghdr *msg, struct sk_buff *skb)
798{
799 struct scm_ts_pktinfo ts_pktinfo;
800 struct net_device *orig_dev;
801
802 if (!skb_mac_header_was_set(skb))
803 return;
804
805 memset(&ts_pktinfo, 0, sizeof(ts_pktinfo));
806
807 rcu_read_lock();
808 orig_dev = dev_get_by_napi_id(skb_napi_id(skb));
809 if (orig_dev)
810 ts_pktinfo.if_index = orig_dev->ifindex;
811 rcu_read_unlock();
812
813 ts_pktinfo.pkt_length = skb->len - skb_mac_offset(skb);
814 put_cmsg(msg, SOL_SOCKET, SCM_TIMESTAMPING_PKTINFO,
815 sizeof(ts_pktinfo), &ts_pktinfo);
816}
817
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700818/*
819 * called from sock_recv_timestamp() if sock_flag(sk, SOCK_RCVTSTAMP)
820 */
821void __sock_recv_timestamp(struct msghdr *msg, struct sock *sk,
822 struct sk_buff *skb)
823{
Patrick Ohly20d49472009-02-12 05:03:38 +0000824 int need_software_tstamp = sock_flag(sk, SOCK_RCVTSTAMP);
Deepa Dinamani887feae2019-02-02 07:34:50 -0800825 int new_tstamp = sock_flag(sk, SOCK_TSTAMP_NEW);
Deepa Dinamani97184752019-02-02 07:34:51 -0800826 struct scm_timestamping_internal tss;
827
Miroslav Lichvarb50a5c72017-05-19 17:52:40 +0200828 int empty = 1, false_tstamp = 0;
Patrick Ohly20d49472009-02-12 05:03:38 +0000829 struct skb_shared_hwtstamps *shhwtstamps =
830 skb_hwtstamps(skb);
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700831
Patrick Ohly20d49472009-02-12 05:03:38 +0000832 /* Race occurred between timestamp enabling and packet
833 receiving. Fill in the current time for now. */
Miroslav Lichvarb50a5c72017-05-19 17:52:40 +0200834 if (need_software_tstamp && skb->tstamp == 0) {
Patrick Ohly20d49472009-02-12 05:03:38 +0000835 __net_timestamp(skb);
Miroslav Lichvarb50a5c72017-05-19 17:52:40 +0200836 false_tstamp = 1;
837 }
Patrick Ohly20d49472009-02-12 05:03:38 +0000838
839 if (need_software_tstamp) {
840 if (!sock_flag(sk, SOCK_RCVTSTAMPNS)) {
Deepa Dinamani887feae2019-02-02 07:34:50 -0800841 if (new_tstamp) {
842 struct __kernel_sock_timeval tv;
843
844 skb_get_new_timestamp(skb, &tv);
845 put_cmsg(msg, SOL_SOCKET, SO_TIMESTAMP_NEW,
846 sizeof(tv), &tv);
847 } else {
848 struct __kernel_old_timeval tv;
849
850 skb_get_timestamp(skb, &tv);
851 put_cmsg(msg, SOL_SOCKET, SO_TIMESTAMP_OLD,
852 sizeof(tv), &tv);
853 }
Patrick Ohly20d49472009-02-12 05:03:38 +0000854 } else {
Deepa Dinamani887feae2019-02-02 07:34:50 -0800855 if (new_tstamp) {
856 struct __kernel_timespec ts;
857
858 skb_get_new_timestampns(skb, &ts);
859 put_cmsg(msg, SOL_SOCKET, SO_TIMESTAMPNS_NEW,
860 sizeof(ts), &ts);
861 } else {
Arnd Bergmanndf1b4ba2019-10-25 22:04:46 +0200862 struct __kernel_old_timespec ts;
Deepa Dinamani887feae2019-02-02 07:34:50 -0800863
864 skb_get_timestampns(skb, &ts);
865 put_cmsg(msg, SOL_SOCKET, SO_TIMESTAMPNS_OLD,
866 sizeof(ts), &ts);
867 }
Patrick Ohly20d49472009-02-12 05:03:38 +0000868 }
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700869 }
Patrick Ohly20d49472009-02-12 05:03:38 +0000870
Willem de Bruijnf24b9be2014-08-04 22:11:45 -0400871 memset(&tss, 0, sizeof(tss));
Willem de Bruijnc1991052014-09-03 12:01:18 -0400872 if ((sk->sk_tsflags & SOF_TIMESTAMPING_SOFTWARE) &&
Deepa Dinamani97184752019-02-02 07:34:51 -0800873 ktime_to_timespec64_cond(skb->tstamp, tss.ts + 0))
Patrick Ohly20d49472009-02-12 05:03:38 +0000874 empty = 0;
Willem de Bruijn4d276eb2014-07-25 18:01:32 -0400875 if (shhwtstamps &&
Willem de Bruijnb9f40e22014-08-04 22:11:46 -0400876 (sk->sk_tsflags & SOF_TIMESTAMPING_RAW_HARDWARE) &&
Yangbo Lud7c08822021-06-30 16:12:00 +0800877 !skb_is_swtx_tstamp(skb, false_tstamp)) {
878 if (sk->sk_tsflags & SOF_TIMESTAMPING_BIND_PHC)
879 ptp_convert_timestamp(shhwtstamps, sk->sk_bind_phc);
880
881 if (ktime_to_timespec64_cond(shhwtstamps->hwtstamp,
882 tss.ts + 2)) {
883 empty = 0;
884
885 if ((sk->sk_tsflags & SOF_TIMESTAMPING_OPT_PKTINFO) &&
886 !skb_is_err_queue(skb))
887 put_ts_pktinfo(msg, skb);
888 }
Miroslav Lichvaraad9c8c2017-05-19 17:52:38 +0200889 }
Francis Yan1c885802016-11-27 23:07:18 -0800890 if (!empty) {
Deepa Dinamani97184752019-02-02 07:34:51 -0800891 if (sock_flag(sk, SOCK_TSTAMP_NEW))
892 put_cmsg_scm_timestamping64(msg, &tss);
893 else
894 put_cmsg_scm_timestamping(msg, &tss);
Francis Yan1c885802016-11-27 23:07:18 -0800895
Soheil Hassas Yeganeh8605330a2017-03-18 17:02:59 -0400896 if (skb_is_err_queue(skb) && skb->len &&
Soheil Hassas Yeganeh4ef1b282017-03-18 17:03:00 -0400897 SKB_EXT_ERR(skb)->opt_stats)
Francis Yan1c885802016-11-27 23:07:18 -0800898 put_cmsg(msg, SOL_SOCKET, SCM_TIMESTAMPING_OPT_STATS,
899 skb->len, skb->data);
900 }
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700901}
Arnaldo Carvalho de Melo7c81fd82007-03-10 00:39:35 -0300902EXPORT_SYMBOL_GPL(__sock_recv_timestamp);
903
Johannes Berg6e3e9392011-11-09 10:15:42 +0100904void __sock_recv_wifi_status(struct msghdr *msg, struct sock *sk,
905 struct sk_buff *skb)
906{
907 int ack;
908
909 if (!sock_flag(sk, SOCK_WIFI_STATUS))
910 return;
911 if (!skb->wifi_acked_valid)
912 return;
913
914 ack = skb->wifi_acked;
915
916 put_cmsg(msg, SOL_SOCKET, SCM_WIFI_STATUS, sizeof(ack), &ack);
917}
918EXPORT_SYMBOL_GPL(__sock_recv_wifi_status);
919
stephen hemminger11165f12010-10-18 14:27:29 +0000920static inline void sock_recv_drops(struct msghdr *msg, struct sock *sk,
921 struct sk_buff *skb)
Neil Horman3b885782009-10-12 13:26:31 -0700922{
Eyal Birger744d5a32015-03-01 14:58:31 +0200923 if (sock_flag(sk, SOCK_RXQ_OVFL) && skb && SOCK_SKB_CB(skb)->dropcount)
Neil Horman3b885782009-10-12 13:26:31 -0700924 put_cmsg(msg, SOL_SOCKET, SO_RXQ_OVFL,
Eyal Birger744d5a32015-03-01 14:58:31 +0200925 sizeof(__u32), &SOCK_SKB_CB(skb)->dropcount);
Neil Horman3b885782009-10-12 13:26:31 -0700926}
927
Eric Dumazet767dd032010-04-28 19:14:43 +0000928void __sock_recv_ts_and_drops(struct msghdr *msg, struct sock *sk,
Neil Horman3b885782009-10-12 13:26:31 -0700929 struct sk_buff *skb)
930{
931 sock_recv_timestamp(msg, sk, skb);
932 sock_recv_drops(msg, sk, skb);
933}
Eric Dumazet767dd032010-04-28 19:14:43 +0000934EXPORT_SYMBOL_GPL(__sock_recv_ts_and_drops);
Neil Horman3b885782009-10-12 13:26:31 -0700935
Paolo Abeni8c3c4472019-05-03 17:01:39 +0200936INDIRECT_CALLABLE_DECLARE(int inet_recvmsg(struct socket *, struct msghdr *,
Paolo Abenia648a592019-07-03 16:06:54 +0200937 size_t, int));
938INDIRECT_CALLABLE_DECLARE(int inet6_recvmsg(struct socket *, struct msghdr *,
939 size_t, int));
Ying Xue1b784142015-03-02 15:37:48 +0800940static inline int sock_recvmsg_nosec(struct socket *sock, struct msghdr *msg,
Al Viro2da62902015-03-14 21:13:46 -0400941 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942{
Paolo Abenia648a592019-07-03 16:06:54 +0200943 return INDIRECT_CALL_INET(sock->ops->recvmsg, inet6_recvmsg,
944 inet_recvmsg, sock, msg, msg_data_left(msg),
945 flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946}
947
Randy Dunlap85806af2019-05-18 21:23:07 -0700948/**
949 * sock_recvmsg - receive a message from @sock
950 * @sock: socket
951 * @msg: message to receive
952 * @flags: message flags
953 *
954 * Receives @msg from @sock, passing through LSM. Returns the total number
955 * of bytes received, or an error.
956 */
Al Viro2da62902015-03-14 21:13:46 -0400957int sock_recvmsg(struct socket *sock, struct msghdr *msg, int flags)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -0700958{
Al Viro2da62902015-03-14 21:13:46 -0400959 int err = security_socket_recvmsg(sock, msg, msg_data_left(msg), flags);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -0700960
Al Viro2da62902015-03-14 21:13:46 -0400961 return err ?: sock_recvmsg_nosec(sock, msg, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700963EXPORT_SYMBOL(sock_recvmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
Martin Lucinac1249c02010-12-10 00:04:05 +0000965/**
Pedro Tammela8a3c2452019-03-14 10:45:23 -0300966 * kernel_recvmsg - Receive a message from a socket (kernel space)
967 * @sock: The socket to receive the message from
968 * @msg: Received message
969 * @vec: Input s/g array for message data
970 * @num: Size of input s/g array
971 * @size: Number of bytes to read
972 * @flags: Message flags (MSG_DONTWAIT, etc...)
Martin Lucinac1249c02010-12-10 00:04:05 +0000973 *
Pedro Tammela8a3c2452019-03-14 10:45:23 -0300974 * On return the msg structure contains the scatter/gather array passed in the
975 * vec argument. The array is modified so that it consists of the unfilled
976 * portion of the original array.
Martin Lucinac1249c02010-12-10 00:04:05 +0000977 *
Pedro Tammela8a3c2452019-03-14 10:45:23 -0300978 * The returned value is the total number of bytes received, or an error.
Martin Lucinac1249c02010-12-10 00:04:05 +0000979 */
Pedro Tammela8a3c2452019-03-14 10:45:23 -0300980
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700981int kernel_recvmsg(struct socket *sock, struct msghdr *msg,
982 struct kvec *vec, size_t num, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983{
Christoph Hellwig1f466e12020-05-11 13:59:13 +0200984 msg->msg_control_is_user = false;
David Howellsaa563d72018-10-20 00:57:56 +0100985 iov_iter_kvec(&msg->msg_iter, READ, vec, num, size);
Christoph Hellwig1f466e12020-05-11 13:59:13 +0200986 return sock_recvmsg(sock, msg, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700988EXPORT_SYMBOL(kernel_recvmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -0300990static ssize_t sock_sendpage(struct file *file, struct page *page,
991 int offset, size_t size, loff_t *ppos, int more)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992{
993 struct socket *sock;
994 int flags;
995
Eric Dumazetb69aee02005-09-06 14:42:45 -0700996 sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
Eric Dumazet35f9c092012-04-05 03:05:35 +0000998 flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
999 /* more is a combination of MSG_MORE and MSG_SENDPAGE_NOTLAST */
1000 flags |= more;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
Linus Torvaldse6949582009-08-13 08:28:36 -07001002 return kernel_sendpage(sock, page, offset, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003}
1004
Jens Axboe9c55e012007-11-06 23:30:13 -08001005static ssize_t sock_splice_read(struct file *file, loff_t *ppos,
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001006 struct pipe_inode_info *pipe, size_t len,
Jens Axboe9c55e012007-11-06 23:30:13 -08001007 unsigned int flags)
1008{
1009 struct socket *sock = file->private_data;
1010
Rémi Denis-Courmont997b37d2008-02-15 02:35:45 -08001011 if (unlikely(!sock->ops->splice_read))
Slavomir Kaslev95506582018-11-16 11:27:53 +02001012 return generic_file_splice_read(file, ppos, pipe, len, flags);
Rémi Denis-Courmont997b37d2008-02-15 02:35:45 -08001013
Jens Axboe9c55e012007-11-06 23:30:13 -08001014 return sock->ops->splice_read(sock, ppos, pipe, len, flags);
1015}
1016
Al Viro8ae5e0302014-11-28 19:40:50 -05001017static ssize_t sock_read_iter(struct kiocb *iocb, struct iov_iter *to)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -08001018{
Al Viro6d652332015-01-30 16:12:56 -05001019 struct file *file = iocb->ki_filp;
1020 struct socket *sock = file->private_data;
tadeusz.struk@intel.com0345f932015-03-19 12:31:25 -07001021 struct msghdr msg = {.msg_iter = *to,
1022 .msg_iocb = iocb};
Al Viro8ae5e0302014-11-28 19:40:50 -05001023 ssize_t res;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -08001024
Jens Axboeebfcd892019-12-09 20:58:56 -07001025 if (file->f_flags & O_NONBLOCK || (iocb->ki_flags & IOCB_NOWAIT))
Al Viro8ae5e0302014-11-28 19:40:50 -05001026 msg.msg_flags = MSG_DONTWAIT;
1027
1028 if (iocb->ki_pos != 0)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -08001029 return -ESPIPE;
Badari Pulavarty027445c2006-09-30 23:28:46 -07001030
Christoph Hellwig66ee59a2015-02-11 19:56:46 +01001031 if (!iov_iter_count(to)) /* Match SYS5 behaviour */
Christoph Hellwigce1d4d32005-12-22 21:08:46 -08001032 return 0;
1033
Al Viro2da62902015-03-14 21:13:46 -04001034 res = sock_recvmsg(sock, &msg, msg.msg_flags);
Al Viro8ae5e0302014-11-28 19:40:50 -05001035 *to = msg.msg_iter;
1036 return res;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -08001037}
1038
Al Viro8ae5e0302014-11-28 19:40:50 -05001039static ssize_t sock_write_iter(struct kiocb *iocb, struct iov_iter *from)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040{
Al Viro6d652332015-01-30 16:12:56 -05001041 struct file *file = iocb->ki_filp;
1042 struct socket *sock = file->private_data;
tadeusz.struk@intel.com0345f932015-03-19 12:31:25 -07001043 struct msghdr msg = {.msg_iter = *from,
1044 .msg_iocb = iocb};
Al Viro8ae5e0302014-11-28 19:40:50 -05001045 ssize_t res;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -08001046
Al Viro8ae5e0302014-11-28 19:40:50 -05001047 if (iocb->ki_pos != 0)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -08001048 return -ESPIPE;
Badari Pulavarty027445c2006-09-30 23:28:46 -07001049
Jens Axboeebfcd892019-12-09 20:58:56 -07001050 if (file->f_flags & O_NONBLOCK || (iocb->ki_flags & IOCB_NOWAIT))
Al Viro8ae5e0302014-11-28 19:40:50 -05001051 msg.msg_flags = MSG_DONTWAIT;
1052
Al Viro6d652332015-01-30 16:12:56 -05001053 if (sock->type == SOCK_SEQPACKET)
1054 msg.msg_flags |= MSG_EOR;
1055
Al Virod8725c82014-12-11 00:02:50 -05001056 res = sock_sendmsg(sock, &msg);
Al Viro8ae5e0302014-11-28 19:40:50 -05001057 *from = msg.msg_iter;
1058 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059}
1060
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061/*
1062 * Atomic setting of ioctl hooks to avoid race
1063 * with module unload.
1064 */
1065
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001066static DEFINE_MUTEX(br_ioctl_mutex);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001067static int (*br_ioctl_hook) (struct net *, unsigned int cmd, void __user *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068
Eric W. Biederman881d9662007-09-17 11:56:21 -07001069void brioctl_set(int (*hook) (struct net *, unsigned int, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001071 mutex_lock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 br_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001073 mutex_unlock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074}
1075EXPORT_SYMBOL(brioctl_set);
1076
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001077static DEFINE_MUTEX(vlan_ioctl_mutex);
Eric W. Biederman881d9662007-09-17 11:56:21 -07001078static int (*vlan_ioctl_hook) (struct net *, void __user *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
Eric W. Biederman881d9662007-09-17 11:56:21 -07001080void vlan_ioctl_set(int (*hook) (struct net *, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001082 mutex_lock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 vlan_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001084 mutex_unlock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085}
1086EXPORT_SYMBOL(vlan_ioctl_set);
1087
Arnd Bergmann6b960182009-11-06 23:10:54 -08001088static long sock_do_ioctl(struct net *net, struct socket *sock,
Johannes Berg63ff03a2019-01-25 22:43:17 +01001089 unsigned int cmd, unsigned long arg)
Arnd Bergmann6b960182009-11-06 23:10:54 -08001090{
Arnd Bergmann876f0bf2021-07-22 16:29:02 +02001091 struct ifreq ifr;
1092 bool need_copyout;
Arnd Bergmann6b960182009-11-06 23:10:54 -08001093 int err;
1094 void __user *argp = (void __user *)arg;
1095
1096 err = sock->ops->ioctl(sock, cmd, arg);
1097
1098 /*
1099 * If this ioctl is unknown try to hand it down
1100 * to the NIC driver.
1101 */
Al Viro36fd6332017-06-26 13:19:16 -04001102 if (err != -ENOIOCTLCMD)
1103 return err;
Arnd Bergmann6b960182009-11-06 23:10:54 -08001104
Arnd Bergmann876f0bf2021-07-22 16:29:02 +02001105 if (copy_from_user(&ifr, argp, sizeof(struct ifreq)))
1106 return -EFAULT;
1107 err = dev_ioctl(net, cmd, &ifr, &need_copyout);
1108 if (!err && need_copyout)
1109 if (copy_to_user(argp, &ifr, sizeof(struct ifreq)))
Al Viro36fd6332017-06-26 13:19:16 -04001110 return -EFAULT;
Arnd Bergmann876f0bf2021-07-22 16:29:02 +02001111
Arnd Bergmann6b960182009-11-06 23:10:54 -08001112 return err;
1113}
1114
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115/*
1116 * With an ioctl, arg may well be a user mode pointer, but we don't know
1117 * what to do with it - that's up to the protocol still.
1118 */
1119
1120static long sock_ioctl(struct file *file, unsigned cmd, unsigned long arg)
1121{
1122 struct socket *sock;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001123 struct sock *sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 void __user *argp = (void __user *)arg;
1125 int pid, err;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001126 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
Eric Dumazetb69aee02005-09-06 14:42:45 -07001128 sock = file->private_data;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001129 sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001130 net = sock_net(sk);
Al Viro44c02a22017-10-05 12:59:44 -04001131 if (unlikely(cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15))) {
1132 struct ifreq ifr;
1133 bool need_copyout;
1134 if (copy_from_user(&ifr, argp, sizeof(struct ifreq)))
1135 return -EFAULT;
1136 err = dev_ioctl(net, cmd, &ifr, &need_copyout);
1137 if (!err && need_copyout)
1138 if (copy_to_user(argp, &ifr, sizeof(struct ifreq)))
1139 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 } else
Johannes Berg3d23e342009-09-29 23:27:28 +02001141#ifdef CONFIG_WEXT_CORE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 if (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST) {
Al Virob1b0c242017-10-01 20:13:08 -04001143 err = wext_handle_ioctl(net, cmd, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 } else
Johannes Berg3d23e342009-09-29 23:27:28 +02001145#endif
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001146 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 case FIOSETOWN:
1148 case SIOCSPGRP:
1149 err = -EFAULT;
1150 if (get_user(pid, (int __user *)argp))
1151 break;
Jiri Slaby393cc3f2017-06-13 13:35:50 +02001152 err = f_setown(sock->file, pid, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 break;
1154 case FIOGETOWN:
1155 case SIOCGPGRP:
Eric W. Biederman609d7fa2006-10-02 02:17:15 -07001156 err = put_user(f_getown(sock->file),
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001157 (int __user *)argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 break;
1159 case SIOCGIFBR:
1160 case SIOCSIFBR:
1161 case SIOCBRADDBR:
1162 case SIOCBRDELBR:
1163 err = -ENOPKG;
1164 if (!br_ioctl_hook)
1165 request_module("bridge");
1166
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001167 mutex_lock(&br_ioctl_mutex);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001168 if (br_ioctl_hook)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001169 err = br_ioctl_hook(net, cmd, argp);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001170 mutex_unlock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 break;
1172 case SIOCGIFVLAN:
1173 case SIOCSIFVLAN:
1174 err = -ENOPKG;
1175 if (!vlan_ioctl_hook)
1176 request_module("8021q");
1177
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001178 mutex_lock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 if (vlan_ioctl_hook)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001180 err = vlan_ioctl_hook(net, argp);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001181 mutex_unlock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 break;
Andrey Vaginc62cce22016-10-24 18:29:13 -07001183 case SIOCGSKNS:
1184 err = -EPERM;
1185 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
1186 break;
1187
1188 err = open_related_ns(&net->ns, get_net_ns);
1189 break;
Arnd Bergmann0768e172019-04-17 22:56:11 +02001190 case SIOCGSTAMP_OLD:
1191 case SIOCGSTAMPNS_OLD:
Arnd Bergmannc7cbdbf2019-04-17 22:51:48 +02001192 if (!sock->ops->gettstamp) {
1193 err = -ENOIOCTLCMD;
1194 break;
1195 }
1196 err = sock->ops->gettstamp(sock, argp,
Arnd Bergmann0768e172019-04-17 22:56:11 +02001197 cmd == SIOCGSTAMP_OLD,
1198 !IS_ENABLED(CONFIG_64BIT));
Gustavo A. R. Silva60747822019-04-24 10:31:24 -05001199 break;
Arnd Bergmann0768e172019-04-17 22:56:11 +02001200 case SIOCGSTAMP_NEW:
1201 case SIOCGSTAMPNS_NEW:
1202 if (!sock->ops->gettstamp) {
1203 err = -ENOIOCTLCMD;
1204 break;
1205 }
1206 err = sock->ops->gettstamp(sock, argp,
1207 cmd == SIOCGSTAMP_NEW,
1208 false);
Arnd Bergmannc7cbdbf2019-04-17 22:51:48 +02001209 break;
Arnd Bergmann876f0bf2021-07-22 16:29:02 +02001210
1211 case SIOCGIFCONF:
1212 err = dev_ifconf(net, argp);
1213 break;
1214
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 default:
Johannes Berg63ff03a2019-01-25 22:43:17 +01001216 err = sock_do_ioctl(net, sock, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001218 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 return err;
1220}
1221
Pedro Tammela8a3c2452019-03-14 10:45:23 -03001222/**
1223 * sock_create_lite - creates a socket
1224 * @family: protocol family (AF_INET, ...)
1225 * @type: communication type (SOCK_STREAM, ...)
1226 * @protocol: protocol (0, ...)
1227 * @res: new socket
1228 *
1229 * Creates a new socket and assigns it to @res, passing through LSM.
1230 * The new socket initialization is not complete, see kernel_accept().
1231 * Returns 0 or an error. On failure @res is set to %NULL.
1232 * This function internally uses GFP_KERNEL.
1233 */
1234
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235int sock_create_lite(int family, int type, int protocol, struct socket **res)
1236{
1237 int err;
1238 struct socket *sock = NULL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001239
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 err = security_socket_create(family, type, protocol, 1);
1241 if (err)
1242 goto out;
1243
1244 sock = sock_alloc();
1245 if (!sock) {
1246 err = -ENOMEM;
1247 goto out;
1248 }
1249
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 sock->type = type;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001251 err = security_socket_post_create(sock, family, type, protocol, 1);
1252 if (err)
1253 goto out_release;
1254
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255out:
1256 *res = sock;
1257 return err;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001258out_release:
1259 sock_release(sock);
1260 sock = NULL;
1261 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001263EXPORT_SYMBOL(sock_create_lite);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
1265/* No kernel lock held - perfect */
Al Viroade994f2017-07-03 00:01:49 -04001266static __poll_t sock_poll(struct file *file, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267{
Christoph Hellwig3cafb372018-01-09 16:07:34 +01001268 struct socket *sock = file->private_data;
Christoph Hellwiga331de32018-07-30 09:42:13 +02001269 __poll_t events = poll_requested_events(wait), flag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270
Christoph Hellwige88958e2018-06-29 15:37:24 +02001271 if (!sock->ops->poll)
1272 return 0;
Christoph Hellwigf641f13b2018-07-30 09:42:12 +02001273
Christoph Hellwiga331de32018-07-30 09:42:13 +02001274 if (sk_can_busy_loop(sock->sk)) {
1275 /* poll once if requested by the syscall */
1276 if (events & POLL_BUSY_LOOP)
1277 sk_busy_loop(sock->sk, 1);
1278
1279 /* if this socket can poll_ll, tell the system call */
1280 flag = POLL_BUSY_LOOP;
1281 }
1282
1283 return sock->ops->poll(file, sock, wait) | flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284}
1285
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001286static int sock_mmap(struct file *file, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287{
Eric Dumazetb69aee02005-09-06 14:42:45 -07001288 struct socket *sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
1290 return sock->ops->mmap(file, sock, vma);
1291}
1292
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001293static int sock_close(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294{
Cong Wang6d8c50d2018-06-07 13:39:49 -07001295 __sock_release(SOCKET_I(inode), inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 return 0;
1297}
1298
1299/*
1300 * Update the socket async list
1301 *
1302 * Fasync_list locking strategy.
1303 *
1304 * 1. fasync_list is modified only under process context socket lock
1305 * i.e. under semaphore.
1306 * 2. fasync_list is used under read_lock(&sk->sk_callback_lock)
Eric Dumazet989a2972010-04-14 09:55:35 +00001307 * or under socket lock
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 */
1309
1310static int sock_fasync(int fd, struct file *filp, int on)
1311{
Eric Dumazet989a2972010-04-14 09:55:35 +00001312 struct socket *sock = filp->private_data;
1313 struct sock *sk = sock->sk;
Al Viro333f7902019-07-05 20:14:16 +01001314 struct socket_wq *wq = &sock->wq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315
Eric Dumazet989a2972010-04-14 09:55:35 +00001316 if (sk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
1319 lock_sock(sk);
Eric Dumazeteaefd1102011-02-18 03:26:36 +00001320 fasync_helper(fd, filp, on, &wq->fasync_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
Eric Dumazeteaefd1102011-02-18 03:26:36 +00001322 if (!wq->fasync_list)
Eric Dumazet989a2972010-04-14 09:55:35 +00001323 sock_reset_flag(sk, SOCK_FASYNC);
Jonathan Corbet76398422009-02-01 14:26:59 -07001324 else
Eric Dumazetbcdce712009-10-06 17:28:29 -07001325 sock_set_flag(sk, SOCK_FASYNC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
Eric Dumazet989a2972010-04-14 09:55:35 +00001327 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 return 0;
1329}
1330
Eric Dumazetceb5d582015-11-29 20:03:11 -08001331/* This function may be called only under rcu_lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
Eric Dumazetceb5d582015-11-29 20:03:11 -08001333int sock_wake_async(struct socket_wq *wq, int how, int band)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334{
Eric Dumazetceb5d582015-11-29 20:03:11 -08001335 if (!wq || !wq->fasync_list)
1336 return -1;
Eric Dumazet43815482010-04-29 11:01:49 +00001337
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001338 switch (how) {
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001339 case SOCK_WAKE_WAITD:
Eric Dumazetceb5d582015-11-29 20:03:11 -08001340 if (test_bit(SOCKWQ_ASYNC_WAITDATA, &wq->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 break;
1342 goto call_kill;
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001343 case SOCK_WAKE_SPACE:
Eric Dumazetceb5d582015-11-29 20:03:11 -08001344 if (!test_and_clear_bit(SOCKWQ_ASYNC_NOSPACE, &wq->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 break;
Miaohe Lin7c7ab582020-08-08 16:23:10 +08001346 fallthrough;
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001347 case SOCK_WAKE_IO:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001348call_kill:
Eric Dumazet43815482010-04-29 11:01:49 +00001349 kill_fasync(&wq->fasync_list, SIGIO, band);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 break;
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001351 case SOCK_WAKE_URG:
Eric Dumazet43815482010-04-29 11:01:49 +00001352 kill_fasync(&wq->fasync_list, SIGURG, band);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 }
Eric Dumazetceb5d582015-11-29 20:03:11 -08001354
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 return 0;
1356}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001357EXPORT_SYMBOL(sock_wake_async);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358
Pedro Tammela8a3c2452019-03-14 10:45:23 -03001359/**
1360 * __sock_create - creates a socket
1361 * @net: net namespace
1362 * @family: protocol family (AF_INET, ...)
1363 * @type: communication type (SOCK_STREAM, ...)
1364 * @protocol: protocol (0, ...)
1365 * @res: new socket
1366 * @kern: boolean for kernel space sockets
1367 *
1368 * Creates a new socket and assigns it to @res, passing through LSM.
1369 * Returns 0 or an error. On failure @res is set to %NULL. @kern must
1370 * be set to true if the socket resides in kernel space.
1371 * This function internally uses GFP_KERNEL.
1372 */
1373
Pavel Emelyanov721db932010-09-29 16:06:32 +04001374int __sock_create(struct net *net, int family, int type, int protocol,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001375 struct socket **res, int kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376{
1377 int err;
1378 struct socket *sock;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001379 const struct net_proto_family *pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
1381 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001382 * Check protocol is in range
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 */
1384 if (family < 0 || family >= NPROTO)
1385 return -EAFNOSUPPORT;
1386 if (type < 0 || type >= SOCK_MAX)
1387 return -EINVAL;
1388
1389 /* Compatibility.
1390
1391 This uglymoron is moved from INET layer to here to avoid
1392 deadlock in module load.
1393 */
1394 if (family == PF_INET && type == SOCK_PACKET) {
liping.zhangf3c98692016-03-11 23:08:36 +08001395 pr_info_once("%s uses obsolete (PF_INET,SOCK_PACKET)\n",
1396 current->comm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 family = PF_PACKET;
1398 }
1399
1400 err = security_socket_create(family, type, protocol, kern);
1401 if (err)
1402 return err;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001403
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001404 /*
1405 * Allocate the socket and allow the family to set things up. if
1406 * the protocol is 0, the family is instructed to select an appropriate
1407 * default.
1408 */
1409 sock = sock_alloc();
1410 if (!sock) {
Joe Perchese87cc472012-05-13 21:56:26 +00001411 net_warn_ratelimited("socket: no more sockets\n");
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001412 return -ENFILE; /* Not exactly a match, but its the
1413 closest posix thing */
1414 }
1415
1416 sock->type = type;
1417
Johannes Berg95a5afc2008-10-16 15:24:51 -07001418#ifdef CONFIG_MODULES
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001419 /* Attempt to load a protocol module if the find failed.
1420 *
1421 * 12/09/1996 Marcin: But! this makes REALLY only sense, if the user
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 * requested real, full-featured networking support upon configuration.
1423 * Otherwise module support will break!
1424 */
Eric Dumazet190683a2010-11-10 10:50:44 +00001425 if (rcu_access_pointer(net_families[family]) == NULL)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001426 request_module("net-pf-%d", family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427#endif
1428
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001429 rcu_read_lock();
1430 pf = rcu_dereference(net_families[family]);
1431 err = -EAFNOSUPPORT;
1432 if (!pf)
1433 goto out_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434
1435 /*
1436 * We will call the ->create function, that possibly is in a loadable
1437 * module, so we have to bump that loadable module refcnt first.
1438 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001439 if (!try_module_get(pf->owner))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 goto out_release;
1441
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001442 /* Now protected by module ref count */
1443 rcu_read_unlock();
1444
Eric Paris3f378b62009-11-05 22:18:14 -08001445 err = pf->create(net, sock, protocol, kern);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001446 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 goto out_module_put;
Frank Filza79af592005-09-27 15:23:38 -07001448
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 /*
1450 * Now to bump the refcnt of the [loadable] module that owns this
1451 * socket at sock_release time we decrement its refcnt.
1452 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001453 if (!try_module_get(sock->ops->owner))
1454 goto out_module_busy;
1455
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 /*
1457 * Now that we're done with the ->create function, the [loadable]
1458 * module can have its refcnt decremented
1459 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001460 module_put(pf->owner);
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001461 err = security_socket_post_create(sock, family, type, protocol, kern);
1462 if (err)
Herbert Xu3b185522007-08-15 14:46:02 -07001463 goto out_sock_release;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001464 *res = sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001466 return 0;
1467
1468out_module_busy:
1469 err = -EAFNOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470out_module_put:
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001471 sock->ops = NULL;
1472 module_put(pf->owner);
1473out_sock_release:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 sock_release(sock);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001475 return err;
1476
1477out_release:
1478 rcu_read_unlock();
1479 goto out_sock_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480}
Pavel Emelyanov721db932010-09-29 16:06:32 +04001481EXPORT_SYMBOL(__sock_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482
Pedro Tammela8a3c2452019-03-14 10:45:23 -03001483/**
1484 * sock_create - creates a socket
1485 * @family: protocol family (AF_INET, ...)
1486 * @type: communication type (SOCK_STREAM, ...)
1487 * @protocol: protocol (0, ...)
1488 * @res: new socket
1489 *
1490 * A wrapper around __sock_create().
1491 * Returns 0 or an error. This function internally uses GFP_KERNEL.
1492 */
1493
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494int sock_create(int family, int type, int protocol, struct socket **res)
1495{
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001496 return __sock_create(current->nsproxy->net_ns, family, type, protocol, res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001498EXPORT_SYMBOL(sock_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499
Pedro Tammela8a3c2452019-03-14 10:45:23 -03001500/**
1501 * sock_create_kern - creates a socket (kernel space)
1502 * @net: net namespace
1503 * @family: protocol family (AF_INET, ...)
1504 * @type: communication type (SOCK_STREAM, ...)
1505 * @protocol: protocol (0, ...)
1506 * @res: new socket
1507 *
1508 * A wrapper around __sock_create().
1509 * Returns 0 or an error. This function internally uses GFP_KERNEL.
1510 */
1511
Eric W. Biedermaneeb1bd52015-05-08 21:08:05 -05001512int sock_create_kern(struct net *net, int family, int type, int protocol, struct socket **res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513{
Eric W. Biedermaneeb1bd52015-05-08 21:08:05 -05001514 return __sock_create(net, family, type, protocol, res, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001516EXPORT_SYMBOL(sock_create_kern);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517
Dominik Brodowski9d6a15c2018-03-13 19:29:43 +01001518int __sys_socket(int family, int type, int protocol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519{
1520 int retval;
1521 struct socket *sock;
Ulrich Dreppera677a032008-07-23 21:29:17 -07001522 int flags;
1523
Ulrich Dreppere38b36f2008-07-23 21:29:42 -07001524 /* Check the SOCK_* constants for consistency. */
1525 BUILD_BUG_ON(SOCK_CLOEXEC != O_CLOEXEC);
1526 BUILD_BUG_ON((SOCK_MAX | SOCK_TYPE_MASK) != SOCK_TYPE_MASK);
1527 BUILD_BUG_ON(SOCK_CLOEXEC & SOCK_TYPE_MASK);
1528 BUILD_BUG_ON(SOCK_NONBLOCK & SOCK_TYPE_MASK);
1529
Ulrich Dreppera677a032008-07-23 21:29:17 -07001530 flags = type & ~SOCK_TYPE_MASK;
Ulrich Drepper77d27202008-07-23 21:29:35 -07001531 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Dreppera677a032008-07-23 21:29:17 -07001532 return -EINVAL;
1533 type &= SOCK_TYPE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001535 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1536 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1537
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 retval = sock_create(family, type, protocol, &sock);
1539 if (retval < 0)
Al Viro8e1611e2017-12-05 23:29:09 +00001540 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541
Al Viro8e1611e2017-12-05 23:29:09 +00001542 return sock_map_fd(sock, flags & (O_CLOEXEC | O_NONBLOCK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543}
1544
Dominik Brodowski9d6a15c2018-03-13 19:29:43 +01001545SYSCALL_DEFINE3(socket, int, family, int, type, int, protocol)
1546{
1547 return __sys_socket(family, type, protocol);
1548}
1549
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550/*
1551 * Create a pair of connected sockets.
1552 */
1553
Dominik Brodowski6debc8d2018-03-13 19:49:23 +01001554int __sys_socketpair(int family, int type, int protocol, int __user *usockvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555{
1556 struct socket *sock1, *sock2;
1557 int fd1, fd2, err;
Al Virodb349502007-02-07 01:48:00 -05001558 struct file *newfile1, *newfile2;
Ulrich Dreppera677a032008-07-23 21:29:17 -07001559 int flags;
1560
1561 flags = type & ~SOCK_TYPE_MASK;
Ulrich Drepper77d27202008-07-23 21:29:35 -07001562 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Dreppera677a032008-07-23 21:29:17 -07001563 return -EINVAL;
1564 type &= SOCK_TYPE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001566 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1567 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1568
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 /*
Al Viro016a2662017-12-05 23:28:38 +00001570 * reserve descriptors and make sure we won't fail
1571 * to return them to userland.
1572 */
1573 fd1 = get_unused_fd_flags(flags);
1574 if (unlikely(fd1 < 0))
1575 return fd1;
1576
1577 fd2 = get_unused_fd_flags(flags);
1578 if (unlikely(fd2 < 0)) {
1579 put_unused_fd(fd1);
1580 return fd2;
1581 }
1582
1583 err = put_user(fd1, &usockvec[0]);
1584 if (err)
1585 goto out;
1586
1587 err = put_user(fd2, &usockvec[1]);
1588 if (err)
1589 goto out;
1590
1591 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 * Obtain the first socket and check if the underlying protocol
1593 * supports the socketpair call.
1594 */
1595
1596 err = sock_create(family, type, protocol, &sock1);
Al Viro016a2662017-12-05 23:28:38 +00001597 if (unlikely(err < 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 goto out;
1599
1600 err = sock_create(family, type, protocol, &sock2);
Al Viro016a2662017-12-05 23:28:38 +00001601 if (unlikely(err < 0)) {
1602 sock_release(sock1);
1603 goto out;
David S. Millerbf3c23d2007-10-29 21:54:02 -07001604 }
Yann Droneaudd73aa282013-12-09 22:42:20 +01001605
David Herrmannd47cd942018-05-04 16:28:20 +02001606 err = security_socket_socketpair(sock1, sock2);
1607 if (unlikely(err)) {
1608 sock_release(sock2);
1609 sock_release(sock1);
1610 goto out;
1611 }
1612
Al Viro016a2662017-12-05 23:28:38 +00001613 err = sock1->ops->socketpair(sock1, sock2);
1614 if (unlikely(err < 0)) {
1615 sock_release(sock2);
1616 sock_release(sock1);
1617 goto out;
Al Viro28407632012-08-17 23:54:15 -04001618 }
1619
Linus Torvaldsaab174f2012-10-02 20:25:04 -07001620 newfile1 = sock_alloc_file(sock1, flags, NULL);
Viresh Kumarb5ffe632015-08-12 15:59:47 +05301621 if (IS_ERR(newfile1)) {
Al Viro28407632012-08-17 23:54:15 -04001622 err = PTR_ERR(newfile1);
Al Viro016a2662017-12-05 23:28:38 +00001623 sock_release(sock2);
1624 goto out;
Al Viro28407632012-08-17 23:54:15 -04001625 }
1626
Linus Torvaldsaab174f2012-10-02 20:25:04 -07001627 newfile2 = sock_alloc_file(sock2, flags, NULL);
Al Viro28407632012-08-17 23:54:15 -04001628 if (IS_ERR(newfile2)) {
1629 err = PTR_ERR(newfile2);
Al Viro016a2662017-12-05 23:28:38 +00001630 fput(newfile1);
1631 goto out;
Al Virodb349502007-02-07 01:48:00 -05001632 }
1633
Al Viro157cf642008-12-14 04:57:47 -05001634 audit_fd_pair(fd1, fd2);
Yann Droneaudd73aa282013-12-09 22:42:20 +01001635
Al Virodb349502007-02-07 01:48:00 -05001636 fd_install(fd1, newfile1);
1637 fd_install(fd2, newfile2);
Yann Droneaudd73aa282013-12-09 22:42:20 +01001638 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640out:
Al Viro016a2662017-12-05 23:28:38 +00001641 put_unused_fd(fd2);
1642 put_unused_fd(fd1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 return err;
1644}
1645
Dominik Brodowski6debc8d2018-03-13 19:49:23 +01001646SYSCALL_DEFINE4(socketpair, int, family, int, type, int, protocol,
1647 int __user *, usockvec)
1648{
1649 return __sys_socketpair(family, type, protocol, usockvec);
1650}
1651
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652/*
1653 * Bind a name to a socket. Nothing much to do here since it's
1654 * the protocol's responsibility to handle the local address.
1655 *
1656 * We move the socket address to kernel space before we call
1657 * the protocol layer (having also checked the address is ok).
1658 */
1659
Dominik Brodowskia87d35d2018-03-13 19:33:09 +01001660int __sys_bind(int fd, struct sockaddr __user *umyaddr, int addrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661{
1662 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001663 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001664 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001666 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001667 if (sock) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001668 err = move_addr_to_kernel(umyaddr, addrlen, &address);
Jakub Sitnicki068b88c2018-10-04 11:09:40 +02001669 if (!err) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001670 err = security_socket_bind(sock,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001671 (struct sockaddr *)&address,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001672 addrlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001673 if (!err)
1674 err = sock->ops->bind(sock,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001675 (struct sockaddr *)
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001676 &address, addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 }
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001678 fput_light(sock->file, fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001679 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 return err;
1681}
1682
Dominik Brodowskia87d35d2018-03-13 19:33:09 +01001683SYSCALL_DEFINE3(bind, int, fd, struct sockaddr __user *, umyaddr, int, addrlen)
1684{
1685 return __sys_bind(fd, umyaddr, addrlen);
1686}
1687
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688/*
1689 * Perform a listen. Basically, we allow the protocol to do anything
1690 * necessary for a listen, and if that works, we mark the socket as
1691 * ready for listening.
1692 */
1693
Dominik Brodowski25e290e2018-03-13 19:36:54 +01001694int __sys_listen(int fd, int backlog)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695{
1696 struct socket *sock;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001697 int err, fput_needed;
Pavel Emelyanovb8e1f9b2007-12-08 00:12:33 -08001698 int somaxconn;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001699
1700 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1701 if (sock) {
Pavel Emelyanov8efa6e92008-03-31 19:41:14 -07001702 somaxconn = sock_net(sock->sk)->core.sysctl_somaxconn;
Eric Dumazet95c96172012-04-15 05:58:06 +00001703 if ((unsigned int)backlog > somaxconn)
Pavel Emelyanovb8e1f9b2007-12-08 00:12:33 -08001704 backlog = somaxconn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705
1706 err = security_socket_listen(sock, backlog);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001707 if (!err)
1708 err = sock->ops->listen(sock, backlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001710 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 }
1712 return err;
1713}
1714
Dominik Brodowski25e290e2018-03-13 19:36:54 +01001715SYSCALL_DEFINE2(listen, int, fd, int, backlog)
1716{
1717 return __sys_listen(fd, backlog);
1718}
1719
Jens Axboede2ea4b2019-10-17 14:41:29 -06001720int __sys_accept4_file(struct file *file, unsigned file_flags,
1721 struct sockaddr __user *upeer_sockaddr,
Jens Axboe09952e32020-03-19 20:16:56 -06001722 int __user *upeer_addrlen, int flags,
1723 unsigned long nofile)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724{
1725 struct socket *sock, *newsock;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001726 struct file *newfile;
Jens Axboede2ea4b2019-10-17 14:41:29 -06001727 int err, len, newfd;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001728 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729
Ulrich Drepper77d27202008-07-23 21:29:35 -07001730 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001731 return -EINVAL;
1732
1733 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1734 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1735
Florent Revestdba4a922020-12-04 12:36:04 +01001736 sock = sock_from_file(file);
1737 if (!sock) {
1738 err = -ENOTSOCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 goto out;
Florent Revestdba4a922020-12-04 12:36:04 +01001740 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741
1742 err = -ENFILE;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001743 newsock = sock_alloc();
1744 if (!newsock)
Jens Axboede2ea4b2019-10-17 14:41:29 -06001745 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746
1747 newsock->type = sock->type;
1748 newsock->ops = sock->ops;
1749
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 /*
1751 * We don't need try_module_get here, as the listening socket (sock)
1752 * has the protocol module (sock->ops->owner) held.
1753 */
1754 __module_get(newsock->ops->owner);
1755
Jens Axboe09952e32020-03-19 20:16:56 -06001756 newfd = __get_unused_fd_flags(flags, nofile);
David S. Miller39d8c1b2006-03-20 17:13:49 -08001757 if (unlikely(newfd < 0)) {
1758 err = newfd;
David S. Miller9a1875e2006-04-01 12:48:36 -08001759 sock_release(newsock);
Jens Axboede2ea4b2019-10-17 14:41:29 -06001760 goto out;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001761 }
Linus Torvaldsaab174f2012-10-02 20:25:04 -07001762 newfile = sock_alloc_file(newsock, flags, sock->sk->sk_prot_creator->name);
Viresh Kumarb5ffe632015-08-12 15:59:47 +05301763 if (IS_ERR(newfile)) {
Al Viro28407632012-08-17 23:54:15 -04001764 err = PTR_ERR(newfile);
1765 put_unused_fd(newfd);
Jens Axboede2ea4b2019-10-17 14:41:29 -06001766 goto out;
Al Viro28407632012-08-17 23:54:15 -04001767 }
David S. Miller39d8c1b2006-03-20 17:13:49 -08001768
Frank Filza79af592005-09-27 15:23:38 -07001769 err = security_socket_accept(sock, newsock);
1770 if (err)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001771 goto out_fd;
Frank Filza79af592005-09-27 15:23:38 -07001772
Jens Axboede2ea4b2019-10-17 14:41:29 -06001773 err = sock->ops->accept(sock, newsock, sock->file->f_flags | file_flags,
1774 false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 if (err < 0)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001776 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777
1778 if (upeer_sockaddr) {
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01001779 len = newsock->ops->getname(newsock,
1780 (struct sockaddr *)&address, 2);
1781 if (len < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 err = -ECONNABORTED;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001783 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 }
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001785 err = move_addr_to_user(&address,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001786 len, upeer_sockaddr, upeer_addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 if (err < 0)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001788 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 }
1790
1791 /* File flags are not inherited via accept() unlike another OSes. */
1792
David S. Miller39d8c1b2006-03-20 17:13:49 -08001793 fd_install(newfd, newfile);
1794 err = newfd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795out:
1796 return err;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001797out_fd:
David S. Miller9606a212006-04-01 01:00:14 -08001798 fput(newfile);
David S. Miller39d8c1b2006-03-20 17:13:49 -08001799 put_unused_fd(newfd);
Jens Axboede2ea4b2019-10-17 14:41:29 -06001800 goto out;
1801
1802}
1803
1804/*
1805 * For accept, we attempt to create a new socket, set up the link
1806 * with the client, wake up the client, then return the new
1807 * connected fd. We collect the address of the connector in kernel
1808 * space and move it to user at the very end. This is unclean because
1809 * we open the socket then return an error.
1810 *
1811 * 1003.1g adds the ability to recvmsg() to query connection pending
1812 * status to recvmsg. We need to add that support in a way thats
1813 * clean when we restructure accept also.
1814 */
1815
1816int __sys_accept4(int fd, struct sockaddr __user *upeer_sockaddr,
1817 int __user *upeer_addrlen, int flags)
1818{
1819 int ret = -EBADF;
1820 struct fd f;
1821
1822 f = fdget(fd);
1823 if (f.file) {
1824 ret = __sys_accept4_file(f.file, 0, upeer_sockaddr,
Jens Axboe09952e32020-03-19 20:16:56 -06001825 upeer_addrlen, flags,
1826 rlimit(RLIMIT_NOFILE));
Miaohe Lin6b07ede2020-08-06 19:52:24 +08001827 fdput(f);
Jens Axboede2ea4b2019-10-17 14:41:29 -06001828 }
1829
1830 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831}
1832
Dominik Brodowski4541e802018-03-13 19:24:23 +01001833SYSCALL_DEFINE4(accept4, int, fd, struct sockaddr __user *, upeer_sockaddr,
1834 int __user *, upeer_addrlen, int, flags)
1835{
1836 return __sys_accept4(fd, upeer_sockaddr, upeer_addrlen, flags);
1837}
1838
Heiko Carstens20f37032009-01-14 14:14:23 +01001839SYSCALL_DEFINE3(accept, int, fd, struct sockaddr __user *, upeer_sockaddr,
1840 int __user *, upeer_addrlen)
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001841{
Dominik Brodowski4541e802018-03-13 19:24:23 +01001842 return __sys_accept4(fd, upeer_sockaddr, upeer_addrlen, 0);
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001843}
1844
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845/*
1846 * Attempt to connect to a socket with the server address. The address
1847 * is in user space so we verify it is OK and move it to kernel space.
1848 *
1849 * For 1003.1g we need to add clean support for a bind to AF_UNSPEC to
1850 * break bindings
1851 *
1852 * NOTE: 1003.1g draft 6.3 is broken with respect to AX.25/NetROM and
1853 * other SEQPACKET protocols that take time to connect() as it doesn't
1854 * include the -EINPROGRESS status for such sockets.
1855 */
1856
Jens Axboef499a022019-12-02 16:28:46 -07001857int __sys_connect_file(struct file *file, struct sockaddr_storage *address,
Jens Axboebd3ded32019-11-23 14:17:16 -07001858 int addrlen, int file_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859{
1860 struct socket *sock;
Jens Axboebd3ded32019-11-23 14:17:16 -07001861 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862
Florent Revestdba4a922020-12-04 12:36:04 +01001863 sock = sock_from_file(file);
1864 if (!sock) {
1865 err = -ENOTSOCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 goto out;
Florent Revestdba4a922020-12-04 12:36:04 +01001867 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001869 err =
Jens Axboef499a022019-12-02 16:28:46 -07001870 security_socket_connect(sock, (struct sockaddr *)address, addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 if (err)
Jens Axboebd3ded32019-11-23 14:17:16 -07001872 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873
Jens Axboef499a022019-12-02 16:28:46 -07001874 err = sock->ops->connect(sock, (struct sockaddr *)address, addrlen,
Jens Axboebd3ded32019-11-23 14:17:16 -07001875 sock->file->f_flags | file_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876out:
1877 return err;
1878}
1879
Jens Axboebd3ded32019-11-23 14:17:16 -07001880int __sys_connect(int fd, struct sockaddr __user *uservaddr, int addrlen)
1881{
1882 int ret = -EBADF;
1883 struct fd f;
1884
1885 f = fdget(fd);
1886 if (f.file) {
Jens Axboef499a022019-12-02 16:28:46 -07001887 struct sockaddr_storage address;
1888
1889 ret = move_addr_to_kernel(uservaddr, addrlen, &address);
1890 if (!ret)
1891 ret = __sys_connect_file(f.file, &address, addrlen, 0);
Miaohe Lin6b07ede2020-08-06 19:52:24 +08001892 fdput(f);
Jens Axboebd3ded32019-11-23 14:17:16 -07001893 }
1894
1895 return ret;
1896}
1897
Dominik Brodowski1387c2c2018-03-13 19:35:09 +01001898SYSCALL_DEFINE3(connect, int, fd, struct sockaddr __user *, uservaddr,
1899 int, addrlen)
1900{
1901 return __sys_connect(fd, uservaddr, addrlen);
1902}
1903
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904/*
1905 * Get the local address ('name') of a socket object. Move the obtained
1906 * name to user space.
1907 */
1908
Dominik Brodowski8882a102018-03-13 19:43:14 +01001909int __sys_getsockname(int fd, struct sockaddr __user *usockaddr,
1910 int __user *usockaddr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911{
1912 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001913 struct sockaddr_storage address;
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01001914 int err, fput_needed;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001915
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001916 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 if (!sock)
1918 goto out;
1919
1920 err = security_socket_getsockname(sock);
1921 if (err)
1922 goto out_put;
1923
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01001924 err = sock->ops->getname(sock, (struct sockaddr *)&address, 0);
1925 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 goto out_put;
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01001927 /* "err" is actually length in this case */
1928 err = move_addr_to_user(&address, err, usockaddr, usockaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929
1930out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001931 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932out:
1933 return err;
1934}
1935
Dominik Brodowski8882a102018-03-13 19:43:14 +01001936SYSCALL_DEFINE3(getsockname, int, fd, struct sockaddr __user *, usockaddr,
1937 int __user *, usockaddr_len)
1938{
1939 return __sys_getsockname(fd, usockaddr, usockaddr_len);
1940}
1941
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942/*
1943 * Get the remote address ('name') of a socket object. Move the obtained
1944 * name to user space.
1945 */
1946
Dominik Brodowskib21c8f82018-03-13 19:47:00 +01001947int __sys_getpeername(int fd, struct sockaddr __user *usockaddr,
1948 int __user *usockaddr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949{
1950 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001951 struct sockaddr_storage address;
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01001952 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001954 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1955 if (sock != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 err = security_socket_getpeername(sock);
1957 if (err) {
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001958 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 return err;
1960 }
1961
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01001962 err = sock->ops->getname(sock, (struct sockaddr *)&address, 1);
1963 if (err >= 0)
1964 /* "err" is actually length in this case */
1965 err = move_addr_to_user(&address, err, usockaddr,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001966 usockaddr_len);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001967 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 }
1969 return err;
1970}
1971
Dominik Brodowskib21c8f82018-03-13 19:47:00 +01001972SYSCALL_DEFINE3(getpeername, int, fd, struct sockaddr __user *, usockaddr,
1973 int __user *, usockaddr_len)
1974{
1975 return __sys_getpeername(fd, usockaddr, usockaddr_len);
1976}
1977
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978/*
1979 * Send a datagram to a given address. We move the address into kernel
1980 * space and check the user space data area is readable before invoking
1981 * the protocol.
1982 */
Dominik Brodowski211b6342018-03-13 19:18:52 +01001983int __sys_sendto(int fd, void __user *buff, size_t len, unsigned int flags,
1984 struct sockaddr __user *addr, int addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985{
1986 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001987 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 int err;
1989 struct msghdr msg;
1990 struct iovec iov;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001991 int fput_needed;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001992
Al Viro602bd0e2015-03-21 19:12:32 -04001993 err = import_single_range(WRITE, buff, len, &iov, &msg.msg_iter);
1994 if (unlikely(err))
1995 return err;
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001996 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1997 if (!sock)
David S. Miller4387ff72007-02-08 15:06:08 -08001998 goto out;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001999
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002000 msg.msg_name = NULL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002001 msg.msg_control = NULL;
2002 msg.msg_controllen = 0;
2003 msg.msg_namelen = 0;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002004 if (addr) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00002005 err = move_addr_to_kernel(addr, addr_len, &address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 if (err < 0)
2007 goto out_put;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07002008 msg.msg_name = (struct sockaddr *)&address;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002009 msg.msg_namelen = addr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 }
2011 if (sock->file->f_flags & O_NONBLOCK)
2012 flags |= MSG_DONTWAIT;
2013 msg.msg_flags = flags;
Al Virod8725c82014-12-11 00:02:50 -05002014 err = sock_sendmsg(sock, &msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002016out_put:
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08002017 fput_light(sock->file, fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08002018out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 return err;
2020}
2021
Dominik Brodowski211b6342018-03-13 19:18:52 +01002022SYSCALL_DEFINE6(sendto, int, fd, void __user *, buff, size_t, len,
2023 unsigned int, flags, struct sockaddr __user *, addr,
2024 int, addr_len)
2025{
2026 return __sys_sendto(fd, buff, len, flags, addr, addr_len);
2027}
2028
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002030 * Send a datagram down a socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 */
2032
Heiko Carstens3e0fa652009-01-14 14:14:24 +01002033SYSCALL_DEFINE4(send, int, fd, void __user *, buff, size_t, len,
Eric Dumazet95c96172012-04-15 05:58:06 +00002034 unsigned int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035{
Dominik Brodowski211b6342018-03-13 19:18:52 +01002036 return __sys_sendto(fd, buff, len, flags, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037}
2038
2039/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002040 * Receive a frame from the socket and optionally record the address of the
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 * sender. We verify the buffers are writable and if needed move the
2042 * sender address from kernel to user space.
2043 */
Dominik Brodowski7a09e1e2018-03-13 19:10:06 +01002044int __sys_recvfrom(int fd, void __user *ubuf, size_t size, unsigned int flags,
2045 struct sockaddr __user *addr, int __user *addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046{
2047 struct socket *sock;
2048 struct iovec iov;
2049 struct msghdr msg;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07002050 struct sockaddr_storage address;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002051 int err, err2;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002052 int fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053
Al Viro602bd0e2015-03-21 19:12:32 -04002054 err = import_single_range(READ, ubuf, size, &iov, &msg.msg_iter);
2055 if (unlikely(err))
2056 return err;
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08002057 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 if (!sock)
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08002059 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002061 msg.msg_control = NULL;
2062 msg.msg_controllen = 0;
Hannes Frederic Sowaf3d33422013-11-21 03:14:22 +01002063 /* Save some cycles and don't copy the address if not needed */
2064 msg.msg_name = addr ? (struct sockaddr *)&address : NULL;
2065 /* We assume all kernel code knows the size of sockaddr_storage */
2066 msg.msg_namelen = 0;
tadeusz.struk@intel.com130ed5d2015-12-15 10:46:17 -08002067 msg.msg_iocb = NULL;
Alexander Potapenko9f138fa2017-03-08 18:08:16 +01002068 msg.msg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 if (sock->file->f_flags & O_NONBLOCK)
2070 flags |= MSG_DONTWAIT;
Al Viro2da62902015-03-14 21:13:46 -04002071 err = sock_recvmsg(sock, &msg, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002073 if (err >= 0 && addr != NULL) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00002074 err2 = move_addr_to_user(&address,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07002075 msg.msg_namelen, addr, addr_len);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002076 if (err2 < 0)
2077 err = err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 }
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08002079
2080 fput_light(sock->file, fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08002081out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 return err;
2083}
2084
Dominik Brodowski7a09e1e2018-03-13 19:10:06 +01002085SYSCALL_DEFINE6(recvfrom, int, fd, void __user *, ubuf, size_t, size,
2086 unsigned int, flags, struct sockaddr __user *, addr,
2087 int __user *, addr_len)
2088{
2089 return __sys_recvfrom(fd, ubuf, size, flags, addr, addr_len);
2090}
2091
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002093 * Receive a datagram from a socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 */
2095
Jan Glauberb7c0ddf2014-04-16 09:32:48 +02002096SYSCALL_DEFINE4(recv, int, fd, void __user *, ubuf, size_t, size,
2097 unsigned int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098{
Dominik Brodowski7a09e1e2018-03-13 19:10:06 +01002099 return __sys_recvfrom(fd, ubuf, size, flags, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100}
2101
Florian Westphal83f0c102020-07-05 01:30:15 +02002102static bool sock_use_custom_sol_socket(const struct socket *sock)
2103{
2104 const struct sock *sk = sock->sk;
2105
2106 /* Use sock->ops->setsockopt() for MPTCP */
2107 return IS_ENABLED(CONFIG_MPTCP) &&
2108 sk->sk_protocol == IPPROTO_MPTCP &&
2109 sk->sk_type == SOCK_STREAM &&
2110 (sk->sk_family == AF_INET || sk->sk_family == AF_INET6);
2111}
2112
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113/*
2114 * Set a socket option. Because we don't know the option lengths we have
2115 * to pass the user mode parameter for the protocols to sort out.
2116 */
Christoph Hellwiga7b75c52020-07-23 08:09:07 +02002117int __sys_setsockopt(int fd, int level, int optname, char __user *user_optval,
Christoph Hellwig55db9c02020-07-17 08:23:15 +02002118 int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119{
Christoph Hellwig519a8a62020-08-10 18:42:14 +02002120 sockptr_t optval = USER_SOCKPTR(user_optval);
Stanislav Fomichev0d01da62019-06-27 13:38:47 -07002121 char *kernel_optval = NULL;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002122 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 struct socket *sock;
2124
2125 if (optlen < 0)
2126 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002127
2128 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Christoph Hellwig4a367292020-07-17 08:23:11 +02002129 if (!sock)
2130 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131
Christoph Hellwig4a367292020-07-17 08:23:11 +02002132 err = security_socket_setsockopt(sock, level, optname);
2133 if (err)
2134 goto out_put;
Stanislav Fomichev0d01da62019-06-27 13:38:47 -07002135
Christoph Hellwig55db9c02020-07-17 08:23:15 +02002136 if (!in_compat_syscall())
2137 err = BPF_CGROUP_RUN_PROG_SETSOCKOPT(sock->sk, &level, &optname,
Christoph Hellwiga7b75c52020-07-23 08:09:07 +02002138 user_optval, &optlen,
Christoph Hellwig55db9c02020-07-17 08:23:15 +02002139 &kernel_optval);
Christoph Hellwig4a367292020-07-17 08:23:11 +02002140 if (err < 0)
2141 goto out_put;
2142 if (err > 0) {
2143 err = 0;
2144 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 }
Christoph Hellwig4a367292020-07-17 08:23:11 +02002146
Christoph Hellwiga7b75c52020-07-23 08:09:07 +02002147 if (kernel_optval)
2148 optval = KERNEL_SOCKPTR(kernel_optval);
Christoph Hellwig4a367292020-07-17 08:23:11 +02002149 if (level == SOL_SOCKET && !sock_use_custom_sol_socket(sock))
Christoph Hellwiga7b75c52020-07-23 08:09:07 +02002150 err = sock_setsockopt(sock, level, optname, optval, optlen);
Christoph Hellwiga44d9e72020-07-17 08:23:31 +02002151 else if (unlikely(!sock->ops->setsockopt))
2152 err = -EOPNOTSUPP;
Christoph Hellwig4a367292020-07-17 08:23:11 +02002153 else
2154 err = sock->ops->setsockopt(sock, level, optname, optval,
2155 optlen);
Christoph Hellwiga7b75c52020-07-23 08:09:07 +02002156 kfree(kernel_optval);
Christoph Hellwig4a367292020-07-17 08:23:11 +02002157out_put:
2158 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 return err;
2160}
2161
Dominik Brodowskicc36dca2018-03-13 20:10:59 +01002162SYSCALL_DEFINE5(setsockopt, int, fd, int, level, int, optname,
2163 char __user *, optval, int, optlen)
2164{
2165 return __sys_setsockopt(fd, level, optname, optval, optlen);
2166}
2167
Stanislav Fomichev9cacf812021-01-15 08:34:59 -08002168INDIRECT_CALLABLE_DECLARE(bool tcp_bpf_bypass_getsockopt(int level,
2169 int optname));
2170
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171/*
2172 * Get a socket option. Because we don't know the option lengths we have
2173 * to pass a user mode parameter for the protocols to sort out.
2174 */
Christoph Hellwig55db9c02020-07-17 08:23:15 +02002175int __sys_getsockopt(int fd, int level, int optname, char __user *optval,
2176 int __user *optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002178 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 struct socket *sock;
Stanislav Fomichev0d01da62019-06-27 13:38:47 -07002180 int max_optlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002182 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Christoph Hellwigd8a9b382020-07-17 08:23:12 +02002183 if (!sock)
2184 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185
Christoph Hellwigd8a9b382020-07-17 08:23:12 +02002186 err = security_socket_getsockopt(sock, level, optname);
2187 if (err)
2188 goto out_put;
Stanislav Fomichev0d01da62019-06-27 13:38:47 -07002189
Christoph Hellwig55db9c02020-07-17 08:23:15 +02002190 if (!in_compat_syscall())
2191 max_optlen = BPF_CGROUP_GETSOCKOPT_MAX_OPTLEN(optlen);
Christoph Hellwigd8a9b382020-07-17 08:23:12 +02002192
2193 if (level == SOL_SOCKET)
2194 err = sock_getsockopt(sock, level, optname, optval, optlen);
Christoph Hellwiga44d9e72020-07-17 08:23:31 +02002195 else if (unlikely(!sock->ops->getsockopt))
2196 err = -EOPNOTSUPP;
Christoph Hellwigd8a9b382020-07-17 08:23:12 +02002197 else
2198 err = sock->ops->getsockopt(sock, level, optname, optval,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002199 optlen);
Stanislav Fomichev0d01da62019-06-27 13:38:47 -07002200
Christoph Hellwig55db9c02020-07-17 08:23:15 +02002201 if (!in_compat_syscall())
2202 err = BPF_CGROUP_RUN_PROG_GETSOCKOPT(sock->sk, level, optname,
2203 optval, optlen, max_optlen,
2204 err);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002205out_put:
Christoph Hellwigd8a9b382020-07-17 08:23:12 +02002206 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 return err;
2208}
2209
Dominik Brodowski13a2d702018-03-13 20:15:04 +01002210SYSCALL_DEFINE5(getsockopt, int, fd, int, level, int, optname,
2211 char __user *, optval, int __user *, optlen)
2212{
2213 return __sys_getsockopt(fd, level, optname, optval, optlen);
2214}
2215
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216/*
2217 * Shutdown a socket.
2218 */
2219
Jens Axboeb713c192020-09-05 11:13:35 -06002220int __sys_shutdown_sock(struct socket *sock, int how)
2221{
2222 int err;
2223
2224 err = security_socket_shutdown(sock, how);
2225 if (!err)
2226 err = sock->ops->shutdown(sock, how);
2227
2228 return err;
2229}
2230
Dominik Brodowski005a1ae2018-03-13 20:07:05 +01002231int __sys_shutdown(int fd, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002233 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234 struct socket *sock;
2235
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002236 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2237 if (sock != NULL) {
Jens Axboeb713c192020-09-05 11:13:35 -06002238 err = __sys_shutdown_sock(sock, how);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002239 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 }
2241 return err;
2242}
2243
Dominik Brodowski005a1ae2018-03-13 20:07:05 +01002244SYSCALL_DEFINE2(shutdown, int, fd, int, how)
2245{
2246 return __sys_shutdown(fd, how);
2247}
2248
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002249/* A couple of helpful macros for getting the address of the 32/64 bit
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 * fields which are the same type (int / unsigned) on our platforms.
2251 */
2252#define COMPAT_MSG(msg, member) ((MSG_CMSG_COMPAT & flags) ? &msg##_compat->member : &msg->member)
2253#define COMPAT_NAMELEN(msg) COMPAT_MSG(msg, msg_namelen)
2254#define COMPAT_FLAGS(msg) COMPAT_MSG(msg, msg_flags)
2255
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002256struct used_address {
2257 struct sockaddr_storage name;
2258 unsigned int name_len;
2259};
2260
Jens Axboe0a384ab2020-02-27 08:11:20 -07002261int __copy_msghdr_from_user(struct msghdr *kmsg,
2262 struct user_msghdr __user *umsg,
2263 struct sockaddr __user **save_addr,
2264 struct iovec __user **uiov, size_t *nsegs)
Dan Carpenter1661bf32013-10-03 00:27:20 +03002265{
Al Viroffb07552017-06-27 19:32:04 -04002266 struct user_msghdr msg;
Al Viro08adb7d2014-11-10 20:23:13 -05002267 ssize_t err;
2268
Al Viroffb07552017-06-27 19:32:04 -04002269 if (copy_from_user(&msg, umsg, sizeof(*umsg)))
Dan Carpenter1661bf32013-10-03 00:27:20 +03002270 return -EFAULT;
Matthew Leachdbb490b2014-03-11 11:58:27 +00002271
Christoph Hellwig1f466e12020-05-11 13:59:13 +02002272 kmsg->msg_control_is_user = true;
2273 kmsg->msg_control_user = msg.msg_control;
Al Viroffb07552017-06-27 19:32:04 -04002274 kmsg->msg_controllen = msg.msg_controllen;
2275 kmsg->msg_flags = msg.msg_flags;
2276
2277 kmsg->msg_namelen = msg.msg_namelen;
2278 if (!msg.msg_name)
Ani Sinha6a2a2b32014-09-08 14:49:59 -07002279 kmsg->msg_namelen = 0;
2280
Matthew Leachdbb490b2014-03-11 11:58:27 +00002281 if (kmsg->msg_namelen < 0)
2282 return -EINVAL;
2283
Dan Carpenter1661bf32013-10-03 00:27:20 +03002284 if (kmsg->msg_namelen > sizeof(struct sockaddr_storage))
Dan Carpenterdb31c552013-11-27 15:40:21 +03002285 kmsg->msg_namelen = sizeof(struct sockaddr_storage);
Al Viro08adb7d2014-11-10 20:23:13 -05002286
2287 if (save_addr)
Al Viroffb07552017-06-27 19:32:04 -04002288 *save_addr = msg.msg_name;
Al Viro08adb7d2014-11-10 20:23:13 -05002289
Al Viroffb07552017-06-27 19:32:04 -04002290 if (msg.msg_name && kmsg->msg_namelen) {
Al Viro08adb7d2014-11-10 20:23:13 -05002291 if (!save_addr) {
Paolo Abeni864d9662017-07-21 18:49:45 +02002292 err = move_addr_to_kernel(msg.msg_name,
2293 kmsg->msg_namelen,
Al Viro08adb7d2014-11-10 20:23:13 -05002294 kmsg->msg_name);
2295 if (err < 0)
2296 return err;
2297 }
2298 } else {
2299 kmsg->msg_name = NULL;
2300 kmsg->msg_namelen = 0;
2301 }
2302
Al Viroffb07552017-06-27 19:32:04 -04002303 if (msg.msg_iovlen > UIO_MAXIOV)
Al Viro08adb7d2014-11-10 20:23:13 -05002304 return -EMSGSIZE;
2305
tadeusz.struk@intel.com0345f932015-03-19 12:31:25 -07002306 kmsg->msg_iocb = NULL;
Jens Axboe0a384ab2020-02-27 08:11:20 -07002307 *uiov = msg.msg_iov;
2308 *nsegs = msg.msg_iovlen;
2309 return 0;
2310}
2311
2312static int copy_msghdr_from_user(struct msghdr *kmsg,
2313 struct user_msghdr __user *umsg,
2314 struct sockaddr __user **save_addr,
2315 struct iovec **iov)
2316{
2317 struct user_msghdr msg;
2318 ssize_t err;
2319
2320 err = __copy_msghdr_from_user(kmsg, umsg, save_addr, &msg.msg_iov,
2321 &msg.msg_iovlen);
2322 if (err)
2323 return err;
tadeusz.struk@intel.com0345f932015-03-19 12:31:25 -07002324
Jens Axboe87e5e6d2019-05-14 16:02:22 -06002325 err = import_iovec(save_addr ? READ : WRITE,
Al Viroffb07552017-06-27 19:32:04 -04002326 msg.msg_iov, msg.msg_iovlen,
Al Viroda184282015-03-21 19:29:06 -04002327 UIO_FASTIOV, iov, &kmsg->msg_iter);
Jens Axboe87e5e6d2019-05-14 16:02:22 -06002328 return err < 0 ? err : 0;
Dan Carpenter1661bf32013-10-03 00:27:20 +03002329}
2330
Jens Axboe4257c8c2019-11-25 14:27:34 -07002331static int ____sys_sendmsg(struct socket *sock, struct msghdr *msg_sys,
2332 unsigned int flags, struct used_address *used_address,
2333 unsigned int allowed_msghdr_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334{
Alex Williamsonb9d717a2005-09-26 14:28:02 -07002335 unsigned char ctl[sizeof(struct cmsghdr) + 20]
Amit Kushwaha846cc122016-12-08 18:21:53 +05302336 __aligned(sizeof(__kernel_size_t));
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002337 /* 20 is size of ipv6_pktinfo */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 unsigned char *ctl_buf = ctl;
Al Virod8725c82014-12-11 00:02:50 -05002339 int ctl_len;
Al Viro08adb7d2014-11-10 20:23:13 -05002340 ssize_t err;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002341
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342 err = -ENOBUFS;
2343
Anton Blanchard228e5482011-05-02 20:21:35 +00002344 if (msg_sys->msg_controllen > INT_MAX)
Jens Axboe4257c8c2019-11-25 14:27:34 -07002345 goto out;
Tom Herbert28a94d82016-03-07 14:11:02 -08002346 flags |= (msg_sys->msg_flags & allowed_msghdr_flags);
Anton Blanchard228e5482011-05-02 20:21:35 +00002347 ctl_len = msg_sys->msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348 if ((MSG_CMSG_COMPAT & flags) && ctl_len) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002349 err =
Anton Blanchard228e5482011-05-02 20:21:35 +00002350 cmsghdr_from_user_compat_to_kern(msg_sys, sock->sk, ctl,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002351 sizeof(ctl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 if (err)
Jens Axboe4257c8c2019-11-25 14:27:34 -07002353 goto out;
Anton Blanchard228e5482011-05-02 20:21:35 +00002354 ctl_buf = msg_sys->msg_control;
2355 ctl_len = msg_sys->msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 } else if (ctl_len) {
David S. Millerac4340f2017-01-04 13:24:19 -05002357 BUILD_BUG_ON(sizeof(struct cmsghdr) !=
2358 CMSG_ALIGN(sizeof(struct cmsghdr)));
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002359 if (ctl_len > sizeof(ctl)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360 ctl_buf = sock_kmalloc(sock->sk, ctl_len, GFP_KERNEL);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002361 if (ctl_buf == NULL)
Jens Axboe4257c8c2019-11-25 14:27:34 -07002362 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 }
2364 err = -EFAULT;
Christoph Hellwig1f466e12020-05-11 13:59:13 +02002365 if (copy_from_user(ctl_buf, msg_sys->msg_control_user, ctl_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 goto out_freectl;
Anton Blanchard228e5482011-05-02 20:21:35 +00002367 msg_sys->msg_control = ctl_buf;
Christoph Hellwig1f466e12020-05-11 13:59:13 +02002368 msg_sys->msg_control_is_user = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 }
Anton Blanchard228e5482011-05-02 20:21:35 +00002370 msg_sys->msg_flags = flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371
2372 if (sock->file->f_flags & O_NONBLOCK)
Anton Blanchard228e5482011-05-02 20:21:35 +00002373 msg_sys->msg_flags |= MSG_DONTWAIT;
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002374 /*
2375 * If this is sendmmsg() and current destination address is same as
2376 * previously succeeded address, omit asking LSM's decision.
2377 * used_address->name_len is initialized to UINT_MAX so that the first
2378 * destination address never matches.
2379 */
Mathieu Desnoyersbc909d92011-08-24 19:45:03 -07002380 if (used_address && msg_sys->msg_name &&
2381 used_address->name_len == msg_sys->msg_namelen &&
2382 !memcmp(&used_address->name, msg_sys->msg_name,
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002383 used_address->name_len)) {
Al Virod8725c82014-12-11 00:02:50 -05002384 err = sock_sendmsg_nosec(sock, msg_sys);
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002385 goto out_freectl;
2386 }
Al Virod8725c82014-12-11 00:02:50 -05002387 err = sock_sendmsg(sock, msg_sys);
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002388 /*
2389 * If this is sendmmsg() and sending to current destination address was
2390 * successful, remember it.
2391 */
2392 if (used_address && err >= 0) {
2393 used_address->name_len = msg_sys->msg_namelen;
Mathieu Desnoyersbc909d92011-08-24 19:45:03 -07002394 if (msg_sys->msg_name)
2395 memcpy(&used_address->name, msg_sys->msg_name,
2396 used_address->name_len);
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002397 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398
2399out_freectl:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002400 if (ctl_buf != ctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 sock_kfree_s(sock->sk, ctl_buf, ctl_len);
Jens Axboe4257c8c2019-11-25 14:27:34 -07002402out:
2403 return err;
2404}
2405
Jens Axboe03b12302019-12-02 18:50:25 -07002406int sendmsg_copy_msghdr(struct msghdr *msg,
2407 struct user_msghdr __user *umsg, unsigned flags,
2408 struct iovec **iov)
Jens Axboe4257c8c2019-11-25 14:27:34 -07002409{
2410 int err;
2411
2412 if (flags & MSG_CMSG_COMPAT) {
2413 struct compat_msghdr __user *msg_compat;
2414
2415 msg_compat = (struct compat_msghdr __user *) umsg;
2416 err = get_compat_msghdr(msg, msg_compat, NULL, iov);
2417 } else {
2418 err = copy_msghdr_from_user(msg, umsg, NULL, iov);
2419 }
2420 if (err < 0)
2421 return err;
2422
2423 return 0;
2424}
2425
2426static int ___sys_sendmsg(struct socket *sock, struct user_msghdr __user *msg,
2427 struct msghdr *msg_sys, unsigned int flags,
2428 struct used_address *used_address,
2429 unsigned int allowed_msghdr_flags)
2430{
2431 struct sockaddr_storage address;
2432 struct iovec iovstack[UIO_FASTIOV], *iov = iovstack;
2433 ssize_t err;
2434
2435 msg_sys->msg_name = &address;
2436
2437 err = sendmsg_copy_msghdr(msg_sys, msg, flags, &iov);
2438 if (err < 0)
2439 return err;
2440
2441 err = ____sys_sendmsg(sock, msg_sys, flags, used_address,
2442 allowed_msghdr_flags);
Al Viroda184282015-03-21 19:29:06 -04002443 kfree(iov);
Anton Blanchard228e5482011-05-02 20:21:35 +00002444 return err;
2445}
2446
2447/*
2448 * BSD sendmsg interface
2449 */
Jens Axboe03b12302019-12-02 18:50:25 -07002450long __sys_sendmsg_sock(struct socket *sock, struct msghdr *msg,
Jens Axboe0fa03c62019-04-19 13:34:07 -06002451 unsigned int flags)
2452{
Jens Axboe03b12302019-12-02 18:50:25 -07002453 return ____sys_sendmsg(sock, msg, flags, NULL, 0);
Jens Axboe0fa03c62019-04-19 13:34:07 -06002454}
Anton Blanchard228e5482011-05-02 20:21:35 +00002455
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002456long __sys_sendmsg(int fd, struct user_msghdr __user *msg, unsigned int flags,
2457 bool forbid_cmsg_compat)
Anton Blanchard228e5482011-05-02 20:21:35 +00002458{
2459 int fput_needed, err;
2460 struct msghdr msg_sys;
Andy Lutomirski1be374a2013-05-22 14:07:44 -07002461 struct socket *sock;
Anton Blanchard228e5482011-05-02 20:21:35 +00002462
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002463 if (forbid_cmsg_compat && (flags & MSG_CMSG_COMPAT))
2464 return -EINVAL;
2465
Andy Lutomirski1be374a2013-05-22 14:07:44 -07002466 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Anton Blanchard228e5482011-05-02 20:21:35 +00002467 if (!sock)
2468 goto out;
2469
Tom Herbert28a94d82016-03-07 14:11:02 -08002470 err = ___sys_sendmsg(sock, msg, &msg_sys, flags, NULL, 0);
Anton Blanchard228e5482011-05-02 20:21:35 +00002471
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002472 fput_light(sock->file, fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002473out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474 return err;
2475}
2476
Al Viro666547f2014-04-06 14:03:05 -04002477SYSCALL_DEFINE3(sendmsg, int, fd, struct user_msghdr __user *, msg, unsigned int, flags)
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002478{
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002479 return __sys_sendmsg(fd, msg, flags, true);
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002480}
2481
Anton Blanchard228e5482011-05-02 20:21:35 +00002482/*
2483 * Linux sendmmsg interface
2484 */
2485
2486int __sys_sendmmsg(int fd, struct mmsghdr __user *mmsg, unsigned int vlen,
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002487 unsigned int flags, bool forbid_cmsg_compat)
Anton Blanchard228e5482011-05-02 20:21:35 +00002488{
2489 int fput_needed, err, datagrams;
2490 struct socket *sock;
2491 struct mmsghdr __user *entry;
2492 struct compat_mmsghdr __user *compat_entry;
2493 struct msghdr msg_sys;
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002494 struct used_address used_address;
Tom Herbertf0922762016-03-07 14:11:03 -08002495 unsigned int oflags = flags;
Anton Blanchard228e5482011-05-02 20:21:35 +00002496
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002497 if (forbid_cmsg_compat && (flags & MSG_CMSG_COMPAT))
2498 return -EINVAL;
2499
Anton Blanchard98382f42011-08-04 14:07:39 +00002500 if (vlen > UIO_MAXIOV)
2501 vlen = UIO_MAXIOV;
Anton Blanchard228e5482011-05-02 20:21:35 +00002502
2503 datagrams = 0;
2504
2505 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2506 if (!sock)
2507 return err;
2508
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002509 used_address.name_len = UINT_MAX;
Anton Blanchard228e5482011-05-02 20:21:35 +00002510 entry = mmsg;
2511 compat_entry = (struct compat_mmsghdr __user *)mmsg;
Anton Blanchard728ffb82011-08-04 14:07:38 +00002512 err = 0;
Tom Herbertf0922762016-03-07 14:11:03 -08002513 flags |= MSG_BATCH;
Anton Blanchard228e5482011-05-02 20:21:35 +00002514
2515 while (datagrams < vlen) {
Tom Herbertf0922762016-03-07 14:11:03 -08002516 if (datagrams == vlen - 1)
2517 flags = oflags;
2518
Anton Blanchard228e5482011-05-02 20:21:35 +00002519 if (MSG_CMSG_COMPAT & flags) {
Al Viro666547f2014-04-06 14:03:05 -04002520 err = ___sys_sendmsg(sock, (struct user_msghdr __user *)compat_entry,
Tom Herbert28a94d82016-03-07 14:11:02 -08002521 &msg_sys, flags, &used_address, MSG_EOR);
Anton Blanchard228e5482011-05-02 20:21:35 +00002522 if (err < 0)
2523 break;
2524 err = __put_user(err, &compat_entry->msg_len);
2525 ++compat_entry;
2526 } else {
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002527 err = ___sys_sendmsg(sock,
Al Viro666547f2014-04-06 14:03:05 -04002528 (struct user_msghdr __user *)entry,
Tom Herbert28a94d82016-03-07 14:11:02 -08002529 &msg_sys, flags, &used_address, MSG_EOR);
Anton Blanchard228e5482011-05-02 20:21:35 +00002530 if (err < 0)
2531 break;
2532 err = put_user(err, &entry->msg_len);
2533 ++entry;
2534 }
2535
2536 if (err)
2537 break;
2538 ++datagrams;
Soheil Hassas Yeganeh30238982016-11-04 15:36:49 -04002539 if (msg_data_left(&msg_sys))
2540 break;
Eric Dumazeta78cb842016-01-08 08:37:20 -08002541 cond_resched();
Anton Blanchard228e5482011-05-02 20:21:35 +00002542 }
2543
Anton Blanchard228e5482011-05-02 20:21:35 +00002544 fput_light(sock->file, fput_needed);
2545
Anton Blanchard728ffb82011-08-04 14:07:38 +00002546 /* We only return an error if no datagrams were able to be sent */
2547 if (datagrams != 0)
Anton Blanchard228e5482011-05-02 20:21:35 +00002548 return datagrams;
2549
Anton Blanchard228e5482011-05-02 20:21:35 +00002550 return err;
2551}
2552
2553SYSCALL_DEFINE4(sendmmsg, int, fd, struct mmsghdr __user *, mmsg,
2554 unsigned int, vlen, unsigned int, flags)
2555{
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002556 return __sys_sendmmsg(fd, mmsg, vlen, flags, true);
Anton Blanchard228e5482011-05-02 20:21:35 +00002557}
2558
Jens Axboe03b12302019-12-02 18:50:25 -07002559int recvmsg_copy_msghdr(struct msghdr *msg,
2560 struct user_msghdr __user *umsg, unsigned flags,
2561 struct sockaddr __user **uaddr,
2562 struct iovec **iov)
Jens Axboe4257c8c2019-11-25 14:27:34 -07002563{
2564 ssize_t err;
2565
2566 if (MSG_CMSG_COMPAT & flags) {
2567 struct compat_msghdr __user *msg_compat;
2568
2569 msg_compat = (struct compat_msghdr __user *) umsg;
2570 err = get_compat_msghdr(msg, msg_compat, uaddr, iov);
2571 } else {
2572 err = copy_msghdr_from_user(msg, umsg, uaddr, iov);
2573 }
2574 if (err < 0)
2575 return err;
2576
2577 return 0;
2578}
2579
2580static int ____sys_recvmsg(struct socket *sock, struct msghdr *msg_sys,
2581 struct user_msghdr __user *msg,
2582 struct sockaddr __user *uaddr,
2583 unsigned int flags, int nosec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002585 struct compat_msghdr __user *msg_compat =
Jens Axboe4257c8c2019-11-25 14:27:34 -07002586 (struct compat_msghdr __user *) msg;
2587 int __user *uaddr_len = COMPAT_NAMELEN(msg);
2588 struct sockaddr_storage addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589 unsigned long cmsg_ptr;
Al Viro2da62902015-03-14 21:13:46 -04002590 int len;
Al Viro08adb7d2014-11-10 20:23:13 -05002591 ssize_t err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592
Al Viro08adb7d2014-11-10 20:23:13 -05002593 msg_sys->msg_name = &addr;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002594 cmsg_ptr = (unsigned long)msg_sys->msg_control;
2595 msg_sys->msg_flags = flags & (MSG_CMSG_CLOEXEC|MSG_CMSG_COMPAT);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002596
Hannes Frederic Sowaf3d33422013-11-21 03:14:22 +01002597 /* We assume all kernel code knows the size of sockaddr_storage */
2598 msg_sys->msg_namelen = 0;
2599
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600 if (sock->file->f_flags & O_NONBLOCK)
2601 flags |= MSG_DONTWAIT;
Eric Dumazet1af66222019-12-06 09:38:36 -08002602
2603 if (unlikely(nosec))
2604 err = sock_recvmsg_nosec(sock, msg_sys, flags);
2605 else
2606 err = sock_recvmsg(sock, msg_sys, flags);
2607
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 if (err < 0)
Jens Axboe4257c8c2019-11-25 14:27:34 -07002609 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 len = err;
2611
2612 if (uaddr != NULL) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00002613 err = move_addr_to_user(&addr,
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002614 msg_sys->msg_namelen, uaddr,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002615 uaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616 if (err < 0)
Jens Axboe4257c8c2019-11-25 14:27:34 -07002617 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618 }
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002619 err = __put_user((msg_sys->msg_flags & ~MSG_CMSG_COMPAT),
David S. Miller37f7f422005-09-16 16:51:01 -07002620 COMPAT_FLAGS(msg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621 if (err)
Jens Axboe4257c8c2019-11-25 14:27:34 -07002622 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623 if (MSG_CMSG_COMPAT & flags)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002624 err = __put_user((unsigned long)msg_sys->msg_control - cmsg_ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625 &msg_compat->msg_controllen);
2626 else
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002627 err = __put_user((unsigned long)msg_sys->msg_control - cmsg_ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 &msg->msg_controllen);
2629 if (err)
Jens Axboe4257c8c2019-11-25 14:27:34 -07002630 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 err = len;
Jens Axboe4257c8c2019-11-25 14:27:34 -07002632out:
2633 return err;
2634}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635
Jens Axboe4257c8c2019-11-25 14:27:34 -07002636static int ___sys_recvmsg(struct socket *sock, struct user_msghdr __user *msg,
2637 struct msghdr *msg_sys, unsigned int flags, int nosec)
2638{
2639 struct iovec iovstack[UIO_FASTIOV], *iov = iovstack;
2640 /* user mode address pointers */
2641 struct sockaddr __user *uaddr;
2642 ssize_t err;
2643
2644 err = recvmsg_copy_msghdr(msg_sys, msg, flags, &uaddr, &iov);
2645 if (err < 0)
2646 return err;
2647
2648 err = ____sys_recvmsg(sock, msg_sys, msg, uaddr, flags, nosec);
Al Viroda184282015-03-21 19:29:06 -04002649 kfree(iov);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002650 return err;
2651}
2652
2653/*
2654 * BSD recvmsg interface
2655 */
2656
Jens Axboe03b12302019-12-02 18:50:25 -07002657long __sys_recvmsg_sock(struct socket *sock, struct msghdr *msg,
2658 struct user_msghdr __user *umsg,
2659 struct sockaddr __user *uaddr, unsigned int flags)
Jens Axboeaa1fa282019-04-19 13:38:09 -06002660{
Jens Axboe03b12302019-12-02 18:50:25 -07002661 return ____sys_recvmsg(sock, msg, umsg, uaddr, flags, 0);
Jens Axboeaa1fa282019-04-19 13:38:09 -06002662}
2663
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002664long __sys_recvmsg(int fd, struct user_msghdr __user *msg, unsigned int flags,
2665 bool forbid_cmsg_compat)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002666{
2667 int fput_needed, err;
2668 struct msghdr msg_sys;
Andy Lutomirski1be374a2013-05-22 14:07:44 -07002669 struct socket *sock;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002670
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002671 if (forbid_cmsg_compat && (flags & MSG_CMSG_COMPAT))
2672 return -EINVAL;
2673
Andy Lutomirski1be374a2013-05-22 14:07:44 -07002674 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002675 if (!sock)
2676 goto out;
2677
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002678 err = ___sys_recvmsg(sock, msg, &msg_sys, flags, 0);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002679
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002680 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681out:
2682 return err;
2683}
2684
Al Viro666547f2014-04-06 14:03:05 -04002685SYSCALL_DEFINE3(recvmsg, int, fd, struct user_msghdr __user *, msg,
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002686 unsigned int, flags)
2687{
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002688 return __sys_recvmsg(fd, msg, flags, true);
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002689}
2690
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002691/*
2692 * Linux recvmmsg interface
2693 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694
Arnd Bergmanne11d4282018-04-18 13:43:52 +02002695static int do_recvmmsg(int fd, struct mmsghdr __user *mmsg,
2696 unsigned int vlen, unsigned int flags,
2697 struct timespec64 *timeout)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002698{
2699 int fput_needed, err, datagrams;
2700 struct socket *sock;
2701 struct mmsghdr __user *entry;
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002702 struct compat_mmsghdr __user *compat_entry;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002703 struct msghdr msg_sys;
Deepa Dinamani766b9f92016-05-19 17:09:05 -07002704 struct timespec64 end_time;
2705 struct timespec64 timeout64;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002706
2707 if (timeout &&
2708 poll_select_set_timeout(&end_time, timeout->tv_sec,
2709 timeout->tv_nsec))
2710 return -EINVAL;
2711
2712 datagrams = 0;
2713
2714 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2715 if (!sock)
2716 return err;
2717
Soheil Hassas Yeganeh7797dc42018-02-27 18:22:40 -05002718 if (likely(!(flags & MSG_ERRQUEUE))) {
2719 err = sock_error(sock->sk);
2720 if (err) {
2721 datagrams = err;
2722 goto out_put;
2723 }
Maxime Jayate623a9e2017-02-21 18:35:51 +01002724 }
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002725
2726 entry = mmsg;
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002727 compat_entry = (struct compat_mmsghdr __user *)mmsg;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002728
2729 while (datagrams < vlen) {
2730 /*
2731 * No need to ask LSM for more than the first datagram.
2732 */
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002733 if (MSG_CMSG_COMPAT & flags) {
Al Viro666547f2014-04-06 14:03:05 -04002734 err = ___sys_recvmsg(sock, (struct user_msghdr __user *)compat_entry,
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002735 &msg_sys, flags & ~MSG_WAITFORONE,
2736 datagrams);
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002737 if (err < 0)
2738 break;
2739 err = __put_user(err, &compat_entry->msg_len);
2740 ++compat_entry;
2741 } else {
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002742 err = ___sys_recvmsg(sock,
Al Viro666547f2014-04-06 14:03:05 -04002743 (struct user_msghdr __user *)entry,
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002744 &msg_sys, flags & ~MSG_WAITFORONE,
2745 datagrams);
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002746 if (err < 0)
2747 break;
2748 err = put_user(err, &entry->msg_len);
2749 ++entry;
2750 }
2751
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002752 if (err)
2753 break;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002754 ++datagrams;
2755
Brandon L Black71c5c1592010-03-26 16:18:03 +00002756 /* MSG_WAITFORONE turns on MSG_DONTWAIT after one packet */
2757 if (flags & MSG_WAITFORONE)
2758 flags |= MSG_DONTWAIT;
2759
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002760 if (timeout) {
Deepa Dinamani766b9f92016-05-19 17:09:05 -07002761 ktime_get_ts64(&timeout64);
Arnd Bergmannc2e6c852018-04-18 13:42:25 +02002762 *timeout = timespec64_sub(end_time, timeout64);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002763 if (timeout->tv_sec < 0) {
2764 timeout->tv_sec = timeout->tv_nsec = 0;
2765 break;
2766 }
2767
2768 /* Timeout, return less than vlen datagrams */
2769 if (timeout->tv_nsec == 0 && timeout->tv_sec == 0)
2770 break;
2771 }
2772
2773 /* Out of band data, return right away */
2774 if (msg_sys.msg_flags & MSG_OOB)
2775 break;
Eric Dumazeta78cb842016-01-08 08:37:20 -08002776 cond_resched();
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002777 }
2778
Arnaldo Carvalho de Melo34b88a62016-03-14 09:56:35 -03002779 if (err == 0)
2780 goto out_put;
2781
2782 if (datagrams == 0) {
2783 datagrams = err;
2784 goto out_put;
2785 }
2786
2787 /*
2788 * We may return less entries than requested (vlen) if the
2789 * sock is non block and there aren't enough datagrams...
2790 */
2791 if (err != -EAGAIN) {
2792 /*
2793 * ... or if recvmsg returns an error after we
2794 * received some datagrams, where we record the
2795 * error to return on the next call or if the
2796 * app asks about it using getsockopt(SO_ERROR).
2797 */
2798 sock->sk->sk_err = -err;
2799 }
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002800out_put:
2801 fput_light(sock->file, fput_needed);
2802
Arnaldo Carvalho de Melo34b88a62016-03-14 09:56:35 -03002803 return datagrams;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002804}
2805
Arnd Bergmanne11d4282018-04-18 13:43:52 +02002806int __sys_recvmmsg(int fd, struct mmsghdr __user *mmsg,
2807 unsigned int vlen, unsigned int flags,
2808 struct __kernel_timespec __user *timeout,
2809 struct old_timespec32 __user *timeout32)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002810{
2811 int datagrams;
Arnd Bergmannc2e6c852018-04-18 13:42:25 +02002812 struct timespec64 timeout_sys;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002813
Arnd Bergmanne11d4282018-04-18 13:43:52 +02002814 if (timeout && get_timespec64(&timeout_sys, timeout))
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002815 return -EFAULT;
2816
Arnd Bergmanne11d4282018-04-18 13:43:52 +02002817 if (timeout32 && get_old_timespec32(&timeout_sys, timeout32))
2818 return -EFAULT;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002819
Arnd Bergmanne11d4282018-04-18 13:43:52 +02002820 if (!timeout && !timeout32)
2821 return do_recvmmsg(fd, mmsg, vlen, flags, NULL);
2822
2823 datagrams = do_recvmmsg(fd, mmsg, vlen, flags, &timeout_sys);
2824
2825 if (datagrams <= 0)
2826 return datagrams;
2827
2828 if (timeout && put_timespec64(&timeout_sys, timeout))
2829 datagrams = -EFAULT;
2830
2831 if (timeout32 && put_old_timespec32(&timeout_sys, timeout32))
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002832 datagrams = -EFAULT;
2833
2834 return datagrams;
2835}
2836
Dominik Brodowski1255e262018-03-13 20:44:21 +01002837SYSCALL_DEFINE5(recvmmsg, int, fd, struct mmsghdr __user *, mmsg,
2838 unsigned int, vlen, unsigned int, flags,
Arnd Bergmannc2e6c852018-04-18 13:42:25 +02002839 struct __kernel_timespec __user *, timeout)
Dominik Brodowski1255e262018-03-13 20:44:21 +01002840{
Arnd Bergmanne11d4282018-04-18 13:43:52 +02002841 if (flags & MSG_CMSG_COMPAT)
2842 return -EINVAL;
2843
2844 return __sys_recvmmsg(fd, mmsg, vlen, flags, timeout, NULL);
Dominik Brodowski1255e262018-03-13 20:44:21 +01002845}
2846
Arnd Bergmanne11d4282018-04-18 13:43:52 +02002847#ifdef CONFIG_COMPAT_32BIT_TIME
2848SYSCALL_DEFINE5(recvmmsg_time32, int, fd, struct mmsghdr __user *, mmsg,
2849 unsigned int, vlen, unsigned int, flags,
2850 struct old_timespec32 __user *, timeout)
2851{
2852 if (flags & MSG_CMSG_COMPAT)
2853 return -EINVAL;
2854
2855 return __sys_recvmmsg(fd, mmsg, vlen, flags, NULL, timeout);
2856}
2857#endif
2858
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002859#ifdef __ARCH_WANT_SYS_SOCKETCALL
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860/* Argument list sizes for sys_socketcall */
2861#define AL(x) ((x) * sizeof(unsigned long))
Anton Blanchard228e5482011-05-02 20:21:35 +00002862static const unsigned char nargs[21] = {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002863 AL(0), AL(3), AL(3), AL(3), AL(2), AL(3),
2864 AL(3), AL(3), AL(4), AL(4), AL(4), AL(6),
2865 AL(6), AL(2), AL(5), AL(5), AL(3), AL(3),
Anton Blanchard228e5482011-05-02 20:21:35 +00002866 AL(4), AL(5), AL(4)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002867};
2868
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869#undef AL
2870
2871/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002872 * System call vectors.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873 *
2874 * Argument checking cleaned up. Saved 20% in size.
2875 * This function doesn't need to set the kernel lock because
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002876 * it is set by the callees.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 */
2878
Heiko Carstens3e0fa652009-01-14 14:14:24 +01002879SYSCALL_DEFINE2(socketcall, int, call, unsigned long __user *, args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880{
Chen Gang2950fa92013-04-07 16:55:23 +08002881 unsigned long a[AUDITSC_ARGS];
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002882 unsigned long a0, a1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883 int err;
Arjan van de Ven47379052009-09-28 12:57:44 -07002884 unsigned int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885
Anton Blanchard228e5482011-05-02 20:21:35 +00002886 if (call < 1 || call > SYS_SENDMMSG)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887 return -EINVAL;
Jeremy Clinec8e8cd52018-07-27 22:43:01 +00002888 call = array_index_nospec(call, SYS_SENDMMSG + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889
Arjan van de Ven47379052009-09-28 12:57:44 -07002890 len = nargs[call];
2891 if (len > sizeof(a))
2892 return -EINVAL;
2893
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894 /* copy_from_user should be SMP safe. */
Arjan van de Ven47379052009-09-28 12:57:44 -07002895 if (copy_from_user(a, args, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 return -EFAULT;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002897
Chen Gang2950fa92013-04-07 16:55:23 +08002898 err = audit_socketcall(nargs[call] / sizeof(unsigned long), a);
2899 if (err)
2900 return err;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002901
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002902 a0 = a[0];
2903 a1 = a[1];
2904
2905 switch (call) {
2906 case SYS_SOCKET:
Dominik Brodowski9d6a15c2018-03-13 19:29:43 +01002907 err = __sys_socket(a0, a1, a[2]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002908 break;
2909 case SYS_BIND:
Dominik Brodowskia87d35d2018-03-13 19:33:09 +01002910 err = __sys_bind(a0, (struct sockaddr __user *)a1, a[2]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002911 break;
2912 case SYS_CONNECT:
Dominik Brodowski1387c2c2018-03-13 19:35:09 +01002913 err = __sys_connect(a0, (struct sockaddr __user *)a1, a[2]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002914 break;
2915 case SYS_LISTEN:
Dominik Brodowski25e290e2018-03-13 19:36:54 +01002916 err = __sys_listen(a0, a1);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002917 break;
2918 case SYS_ACCEPT:
Dominik Brodowski4541e802018-03-13 19:24:23 +01002919 err = __sys_accept4(a0, (struct sockaddr __user *)a1,
2920 (int __user *)a[2], 0);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002921 break;
2922 case SYS_GETSOCKNAME:
2923 err =
Dominik Brodowski8882a102018-03-13 19:43:14 +01002924 __sys_getsockname(a0, (struct sockaddr __user *)a1,
2925 (int __user *)a[2]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002926 break;
2927 case SYS_GETPEERNAME:
2928 err =
Dominik Brodowskib21c8f82018-03-13 19:47:00 +01002929 __sys_getpeername(a0, (struct sockaddr __user *)a1,
2930 (int __user *)a[2]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002931 break;
2932 case SYS_SOCKETPAIR:
Dominik Brodowski6debc8d2018-03-13 19:49:23 +01002933 err = __sys_socketpair(a0, a1, a[2], (int __user *)a[3]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002934 break;
2935 case SYS_SEND:
Dominik Brodowskif3bf8962018-03-13 19:52:00 +01002936 err = __sys_sendto(a0, (void __user *)a1, a[2], a[3],
2937 NULL, 0);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002938 break;
2939 case SYS_SENDTO:
Dominik Brodowski211b6342018-03-13 19:18:52 +01002940 err = __sys_sendto(a0, (void __user *)a1, a[2], a[3],
2941 (struct sockaddr __user *)a[4], a[5]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002942 break;
2943 case SYS_RECV:
Dominik Brodowskid27e9af2018-03-13 19:54:17 +01002944 err = __sys_recvfrom(a0, (void __user *)a1, a[2], a[3],
2945 NULL, NULL);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002946 break;
2947 case SYS_RECVFROM:
Dominik Brodowski7a09e1e2018-03-13 19:10:06 +01002948 err = __sys_recvfrom(a0, (void __user *)a1, a[2], a[3],
2949 (struct sockaddr __user *)a[4],
2950 (int __user *)a[5]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002951 break;
2952 case SYS_SHUTDOWN:
Dominik Brodowski005a1ae2018-03-13 20:07:05 +01002953 err = __sys_shutdown(a0, a1);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002954 break;
2955 case SYS_SETSOCKOPT:
Dominik Brodowskicc36dca2018-03-13 20:10:59 +01002956 err = __sys_setsockopt(a0, a1, a[2], (char __user *)a[3],
2957 a[4]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002958 break;
2959 case SYS_GETSOCKOPT:
2960 err =
Dominik Brodowski13a2d702018-03-13 20:15:04 +01002961 __sys_getsockopt(a0, a1, a[2], (char __user *)a[3],
2962 (int __user *)a[4]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002963 break;
2964 case SYS_SENDMSG:
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002965 err = __sys_sendmsg(a0, (struct user_msghdr __user *)a1,
2966 a[2], true);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002967 break;
Anton Blanchard228e5482011-05-02 20:21:35 +00002968 case SYS_SENDMMSG:
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002969 err = __sys_sendmmsg(a0, (struct mmsghdr __user *)a1, a[2],
2970 a[3], true);
Anton Blanchard228e5482011-05-02 20:21:35 +00002971 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002972 case SYS_RECVMSG:
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002973 err = __sys_recvmsg(a0, (struct user_msghdr __user *)a1,
2974 a[2], true);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002975 break;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002976 case SYS_RECVMMSG:
Arnd Bergmann3ca47e92019-04-23 17:43:50 +02002977 if (IS_ENABLED(CONFIG_64BIT))
Arnd Bergmanne11d4282018-04-18 13:43:52 +02002978 err = __sys_recvmmsg(a0, (struct mmsghdr __user *)a1,
2979 a[2], a[3],
2980 (struct __kernel_timespec __user *)a[4],
2981 NULL);
2982 else
2983 err = __sys_recvmmsg(a0, (struct mmsghdr __user *)a1,
2984 a[2], a[3], NULL,
2985 (struct old_timespec32 __user *)a[4]);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002986 break;
Ulrich Drepperde11def2008-11-19 15:36:14 -08002987 case SYS_ACCEPT4:
Dominik Brodowski4541e802018-03-13 19:24:23 +01002988 err = __sys_accept4(a0, (struct sockaddr __user *)a1,
2989 (int __user *)a[2], a[3]);
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07002990 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002991 default:
2992 err = -EINVAL;
2993 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994 }
2995 return err;
2996}
2997
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002998#endif /* __ARCH_WANT_SYS_SOCKETCALL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999
Stephen Hemminger55737fd2006-09-01 00:23:39 -07003000/**
3001 * sock_register - add a socket protocol handler
3002 * @ops: description of protocol
3003 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004 * This function is called by a protocol handler that wants to
3005 * advertise its address family, and have it linked into the
Masanari Iidae793c0f2014-09-04 23:44:36 +09003006 * socket interface. The value ops->family corresponds to the
Stephen Hemminger55737fd2006-09-01 00:23:39 -07003007 * socket system call protocol family.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008 */
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07003009int sock_register(const struct net_proto_family *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010{
3011 int err;
3012
3013 if (ops->family >= NPROTO) {
Yang Yingliang3410f222014-02-12 17:09:55 +08003014 pr_crit("protocol %d >= NPROTO(%d)\n", ops->family, NPROTO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015 return -ENOBUFS;
3016 }
Stephen Hemminger55737fd2006-09-01 00:23:39 -07003017
3018 spin_lock(&net_family_lock);
Eric Dumazet190683a2010-11-10 10:50:44 +00003019 if (rcu_dereference_protected(net_families[ops->family],
3020 lockdep_is_held(&net_family_lock)))
Stephen Hemminger55737fd2006-09-01 00:23:39 -07003021 err = -EEXIST;
3022 else {
Eric Dumazetcf778b02012-01-12 04:41:32 +00003023 rcu_assign_pointer(net_families[ops->family], ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024 err = 0;
3025 }
Stephen Hemminger55737fd2006-09-01 00:23:39 -07003026 spin_unlock(&net_family_lock);
3027
Yejune Dengfe0bdbd2021-06-21 13:12:25 +08003028 pr_info("NET: Registered %s protocol family\n", pf_family_names[ops->family]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029 return err;
3030}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003031EXPORT_SYMBOL(sock_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032
Stephen Hemminger55737fd2006-09-01 00:23:39 -07003033/**
3034 * sock_unregister - remove a protocol handler
3035 * @family: protocol family to remove
3036 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037 * This function is called by a protocol handler that wants to
3038 * remove its address family, and have it unlinked from the
Stephen Hemminger55737fd2006-09-01 00:23:39 -07003039 * new socket creation.
3040 *
3041 * If protocol handler is a module, then it can use module reference
3042 * counts to protect against new references. If protocol handler is not
3043 * a module then it needs to provide its own protection in
3044 * the ops->create routine.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045 */
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07003046void sock_unregister(int family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047{
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07003048 BUG_ON(family < 0 || family >= NPROTO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049
Stephen Hemminger55737fd2006-09-01 00:23:39 -07003050 spin_lock(&net_family_lock);
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00003051 RCU_INIT_POINTER(net_families[family], NULL);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07003052 spin_unlock(&net_family_lock);
3053
3054 synchronize_rcu();
3055
Yejune Dengfe0bdbd2021-06-21 13:12:25 +08003056 pr_info("NET: Unregistered %s protocol family\n", pf_family_names[family]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003058EXPORT_SYMBOL(sock_unregister);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059
Xin Longbf2ae2e2018-03-10 18:57:50 +08003060bool sock_is_registered(int family)
3061{
Jeremy Cline66b51b02018-08-13 22:23:13 +00003062 return family < NPROTO && rcu_access_pointer(net_families[family]);
Xin Longbf2ae2e2018-03-10 18:57:50 +08003063}
3064
Andi Kleen77d76ea2005-12-22 12:43:42 -08003065static int __init sock_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066{
Nick Pigginb3e19d92011-01-07 17:50:11 +11003067 int err;
Eric W. Biederman2ca794e2012-04-19 13:20:32 +00003068 /*
3069 * Initialize the network sysctl infrastructure.
3070 */
3071 err = net_sysctl_init();
3072 if (err)
3073 goto out;
Nick Pigginb3e19d92011-01-07 17:50:11 +11003074
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07003076 * Initialize skbuff SLAB cache
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077 */
3078 skb_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079
3080 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07003081 * Initialize the protocols module.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082 */
3083
3084 init_inodecache();
Nick Pigginb3e19d92011-01-07 17:50:11 +11003085
3086 err = register_filesystem(&sock_fs_type);
3087 if (err)
Miaohe Lin47260ba2020-08-06 19:54:19 +08003088 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089 sock_mnt = kern_mount(&sock_fs_type);
Nick Pigginb3e19d92011-01-07 17:50:11 +11003090 if (IS_ERR(sock_mnt)) {
3091 err = PTR_ERR(sock_mnt);
3092 goto out_mount;
3093 }
Andi Kleen77d76ea2005-12-22 12:43:42 -08003094
3095 /* The real protocol initialization is performed in later initcalls.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096 */
3097
3098#ifdef CONFIG_NETFILTER
Pablo Neira Ayuso6d11cfd2013-05-22 22:42:36 +00003099 err = netfilter_init();
3100 if (err)
3101 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102#endif
David S. Millercbeb3212005-12-22 12:58:55 -08003103
Daniel Borkmann408eccc2014-04-01 16:20:23 +02003104 ptp_classifier_init();
Richard Cochranc1f19b52010-07-17 08:49:36 +00003105
Nick Pigginb3e19d92011-01-07 17:50:11 +11003106out:
3107 return err;
3108
3109out_mount:
3110 unregister_filesystem(&sock_fs_type);
Nick Pigginb3e19d92011-01-07 17:50:11 +11003111 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112}
3113
Andi Kleen77d76ea2005-12-22 12:43:42 -08003114core_initcall(sock_init); /* early initcall */
3115
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116#ifdef CONFIG_PROC_FS
3117void socket_seq_show(struct seq_file *seq)
3118{
Tonghao Zhang648845a2017-12-14 05:51:58 -08003119 seq_printf(seq, "sockets: used %d\n",
3120 sock_inuse_get(seq->private));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121}
Stephen Hemminger89bddce2006-09-01 00:19:31 -07003122#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123
Arnd Bergmann29c49642021-07-22 16:29:03 +02003124/* Handle the fact that while struct ifreq has the same *layout* on
3125 * 32/64 for everything but ifreq::ifru_ifmap and ifreq::ifru_data,
3126 * which are handled elsewhere, it still has different *size* due to
3127 * ifreq::ifru_ifmap (which is 16 bytes on 32 bit, 24 bytes on 64-bit,
3128 * resulting in struct ifreq being 32 and 40 bytes respectively).
3129 * As a result, if the struct happens to be at the end of a page and
3130 * the next page isn't readable/writable, we get a fault. To prevent
3131 * that, copy back and forth to the full size.
3132 */
3133int get_user_ifreq(struct ifreq *ifr, void __user **ifrdata, void __user *arg)
3134{
3135 if (in_compat_syscall()) {
3136 struct compat_ifreq *ifr32 = (struct compat_ifreq *)ifr;
3137
3138 memset(ifr, 0, sizeof(*ifr));
3139 if (copy_from_user(ifr32, arg, sizeof(*ifr32)))
3140 return -EFAULT;
3141
3142 if (ifrdata)
3143 *ifrdata = compat_ptr(ifr32->ifr_data);
3144
3145 return 0;
3146 }
3147
3148 if (copy_from_user(ifr, arg, sizeof(*ifr)))
3149 return -EFAULT;
3150
3151 if (ifrdata)
3152 *ifrdata = ifr->ifr_data;
3153
3154 return 0;
3155}
3156EXPORT_SYMBOL(get_user_ifreq);
3157
3158int put_user_ifreq(struct ifreq *ifr, void __user *arg)
3159{
3160 size_t size = sizeof(*ifr);
3161
3162 if (in_compat_syscall())
3163 size = sizeof(struct compat_ifreq);
3164
3165 if (copy_to_user(arg, ifr, size))
3166 return -EFAULT;
3167
3168 return 0;
3169}
3170EXPORT_SYMBOL(put_user_ifreq);
3171
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003172#ifdef CONFIG_COMPAT
Arnd Bergmann7a50a242009-11-08 20:57:03 -08003173static int compat_siocwandev(struct net *net, struct compat_ifreq __user *uifr32)
3174{
Arnd Bergmann7a50a242009-11-08 20:57:03 -08003175 compat_uptr_t uptr32;
Al Viro44c02a22017-10-05 12:59:44 -04003176 struct ifreq ifr;
3177 void __user *saved;
3178 int err;
Arnd Bergmann7a50a242009-11-08 20:57:03 -08003179
Arnd Bergmann29c49642021-07-22 16:29:03 +02003180 if (get_user_ifreq(&ifr, NULL, uifr32))
Arnd Bergmann7a50a242009-11-08 20:57:03 -08003181 return -EFAULT;
3182
3183 if (get_user(uptr32, &uifr32->ifr_settings.ifs_ifsu))
3184 return -EFAULT;
3185
Al Viro44c02a22017-10-05 12:59:44 -04003186 saved = ifr.ifr_settings.ifs_ifsu.raw_hdlc;
3187 ifr.ifr_settings.ifs_ifsu.raw_hdlc = compat_ptr(uptr32);
Arnd Bergmann7a50a242009-11-08 20:57:03 -08003188
Al Viro44c02a22017-10-05 12:59:44 -04003189 err = dev_ioctl(net, SIOCWANDEV, &ifr, NULL);
3190 if (!err) {
3191 ifr.ifr_settings.ifs_ifsu.raw_hdlc = saved;
Arnd Bergmann29c49642021-07-22 16:29:03 +02003192 if (put_user_ifreq(&ifr, uifr32))
Al Viro44c02a22017-10-05 12:59:44 -04003193 err = -EFAULT;
Joe Perchesccbd6a52010-05-14 10:58:26 +00003194 }
Al Viro44c02a22017-10-05 12:59:44 -04003195 return err;
Arnd Bergmann7a229382009-11-06 23:00:29 -08003196}
3197
Ben Hutchings590d4692013-11-18 17:04:13 +00003198/* Handle ioctls that use ifreq::ifr_data and just need struct ifreq converted */
3199static int compat_ifr_data_ioctl(struct net *net, unsigned int cmd,
Arnd Bergmann6b960182009-11-06 23:10:54 -08003200 struct compat_ifreq __user *u_ifreq32)
Arnd Bergmann7a229382009-11-06 23:00:29 -08003201{
Al Viro44c02a22017-10-05 12:59:44 -04003202 struct ifreq ifreq;
Arnd Bergmann7a229382009-11-06 23:00:29 -08003203 u32 data32;
3204
Al Viro44c02a22017-10-05 12:59:44 -04003205 if (copy_from_user(ifreq.ifr_name, u_ifreq32->ifr_name, IFNAMSIZ))
Arnd Bergmann7a229382009-11-06 23:00:29 -08003206 return -EFAULT;
Al Viro44c02a22017-10-05 12:59:44 -04003207 if (get_user(data32, &u_ifreq32->ifr_data))
Arnd Bergmann7a229382009-11-06 23:00:29 -08003208 return -EFAULT;
Al Viro44c02a22017-10-05 12:59:44 -04003209 ifreq.ifr_data = compat_ptr(data32);
Arnd Bergmann7a229382009-11-06 23:00:29 -08003210
Al Viro44c02a22017-10-05 12:59:44 -04003211 return dev_ioctl(net, cmd, &ifreq, NULL);
Arnd Bergmann7a229382009-11-06 23:00:29 -08003212}
3213
Johannes Berg37ac39b2019-01-25 22:43:18 +01003214static int compat_ifreq_ioctl(struct net *net, struct socket *sock,
3215 unsigned int cmd,
Arnd Bergmann29c49642021-07-22 16:29:03 +02003216 unsigned long arg,
Johannes Berg37ac39b2019-01-25 22:43:18 +01003217 struct compat_ifreq __user *uifr32)
3218{
Arnd Bergmann29c49642021-07-22 16:29:03 +02003219 struct ifreq ifr;
3220 bool need_copyout;
Johannes Berg37ac39b2019-01-25 22:43:18 +01003221 int err;
3222
Arnd Bergmann29c49642021-07-22 16:29:03 +02003223 err = sock->ops->ioctl(sock, cmd, arg);
3224
3225 /* If this ioctl is unknown try to hand it down
3226 * to the NIC driver.
Johannes Berg37ac39b2019-01-25 22:43:18 +01003227 */
Arnd Bergmann29c49642021-07-22 16:29:03 +02003228 if (err != -ENOIOCTLCMD)
3229 return err;
Johannes Berg37ac39b2019-01-25 22:43:18 +01003230
Arnd Bergmann29c49642021-07-22 16:29:03 +02003231 if (get_user_ifreq(&ifr, NULL, uifr32))
Johannes Berg37ac39b2019-01-25 22:43:18 +01003232 return -EFAULT;
Arnd Bergmann29c49642021-07-22 16:29:03 +02003233 err = dev_ioctl(net, cmd, &ifr, &need_copyout);
3234 if (!err && need_copyout)
3235 if (put_user_ifreq(&ifr, uifr32))
3236 return -EFAULT;
Johannes Berg37ac39b2019-01-25 22:43:18 +01003237
Johannes Berg37ac39b2019-01-25 22:43:18 +01003238 return err;
3239}
3240
Arnd Bergmann7a229382009-11-06 23:00:29 -08003241/* Since old style bridge ioctl's endup using SIOCDEVPRIVATE
3242 * for some operations; this forces use of the newer bridge-utils that
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003243 * use compatible ioctls
Arnd Bergmann7a229382009-11-06 23:00:29 -08003244 */
Arnd Bergmann6b960182009-11-06 23:10:54 -08003245static int old_bridge_ioctl(compat_ulong_t __user *argp)
Arnd Bergmann7a229382009-11-06 23:00:29 -08003246{
Arnd Bergmann6b960182009-11-06 23:10:54 -08003247 compat_ulong_t tmp;
Arnd Bergmann7a229382009-11-06 23:00:29 -08003248
Arnd Bergmann6b960182009-11-06 23:10:54 -08003249 if (get_user(tmp, argp))
Arnd Bergmann7a229382009-11-06 23:00:29 -08003250 return -EFAULT;
3251 if (tmp == BRCTL_GET_VERSION)
3252 return BRCTL_VERSION + 1;
3253 return -EINVAL;
3254}
3255
Arnd Bergmann6b960182009-11-06 23:10:54 -08003256static int compat_sock_ioctl_trans(struct file *file, struct socket *sock,
3257 unsigned int cmd, unsigned long arg)
3258{
3259 void __user *argp = compat_ptr(arg);
3260 struct sock *sk = sock->sk;
3261 struct net *net = sock_net(sk);
Arnd Bergmann7a229382009-11-06 23:00:29 -08003262
Arnd Bergmann6b960182009-11-06 23:10:54 -08003263 if (cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15))
Ben Hutchings590d4692013-11-18 17:04:13 +00003264 return compat_ifr_data_ioctl(net, cmd, argp);
Arnd Bergmann7a229382009-11-06 23:00:29 -08003265
Arnd Bergmann6b960182009-11-06 23:10:54 -08003266 switch (cmd) {
3267 case SIOCSIFBR:
3268 case SIOCGIFBR:
3269 return old_bridge_ioctl(argp);
Arnd Bergmann7a50a242009-11-08 20:57:03 -08003270 case SIOCWANDEV:
3271 return compat_siocwandev(net, argp);
Arnd Bergmann0768e172019-04-17 22:56:11 +02003272 case SIOCGSTAMP_OLD:
3273 case SIOCGSTAMPNS_OLD:
Arnd Bergmannc7cbdbf2019-04-17 22:51:48 +02003274 if (!sock->ops->gettstamp)
3275 return -ENOIOCTLCMD;
Arnd Bergmann0768e172019-04-17 22:56:11 +02003276 return sock->ops->gettstamp(sock, argp, cmd == SIOCGSTAMP_OLD,
Arnd Bergmannc7cbdbf2019-04-17 22:51:48 +02003277 !COMPAT_USE_64BIT_TIME);
3278
Arnd Bergmanndd98d282021-07-22 16:28:59 +02003279 case SIOCETHTOOL:
Ben Hutchings590d4692013-11-18 17:04:13 +00003280 case SIOCBONDSLAVEINFOQUERY:
3281 case SIOCBONDINFOQUERY:
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003282 case SIOCSHWTSTAMP:
Ben Hutchingsfd468c72013-11-14 01:19:29 +00003283 case SIOCGHWTSTAMP:
Ben Hutchings590d4692013-11-18 17:04:13 +00003284 return compat_ifr_data_ioctl(net, cmd, argp);
Arnd Bergmann7a229382009-11-06 23:00:29 -08003285
Arnd Bergmann6b960182009-11-06 23:10:54 -08003286 case FIOSETOWN:
3287 case SIOCSPGRP:
3288 case FIOGETOWN:
3289 case SIOCGPGRP:
3290 case SIOCBRADDBR:
3291 case SIOCBRDELBR:
3292 case SIOCGIFVLAN:
3293 case SIOCSIFVLAN:
Andrey Vaginc62cce22016-10-24 18:29:13 -07003294 case SIOCGSKNS:
Arnd Bergmann0768e172019-04-17 22:56:11 +02003295 case SIOCGSTAMP_NEW:
3296 case SIOCGSTAMPNS_NEW:
Arnd Bergmann876f0bf2021-07-22 16:29:02 +02003297 case SIOCGIFCONF:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003298 return sock_ioctl(file, cmd, arg);
3299
3300 case SIOCGIFFLAGS:
3301 case SIOCSIFFLAGS:
Arnd Bergmann709566d2021-07-22 16:29:00 +02003302 case SIOCGIFMAP:
3303 case SIOCSIFMAP:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003304 case SIOCGIFMETRIC:
3305 case SIOCSIFMETRIC:
3306 case SIOCGIFMTU:
3307 case SIOCSIFMTU:
3308 case SIOCGIFMEM:
3309 case SIOCSIFMEM:
3310 case SIOCGIFHWADDR:
3311 case SIOCSIFHWADDR:
3312 case SIOCADDMULTI:
3313 case SIOCDELMULTI:
3314 case SIOCGIFINDEX:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003315 case SIOCGIFADDR:
3316 case SIOCSIFADDR:
3317 case SIOCSIFHWBROADCAST:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003318 case SIOCDIFADDR:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003319 case SIOCGIFBRDADDR:
3320 case SIOCSIFBRDADDR:
3321 case SIOCGIFDSTADDR:
3322 case SIOCSIFDSTADDR:
3323 case SIOCGIFNETMASK:
3324 case SIOCSIFNETMASK:
3325 case SIOCSIFPFLAGS:
3326 case SIOCGIFPFLAGS:
3327 case SIOCGIFTXQLEN:
3328 case SIOCSIFTXQLEN:
3329 case SIOCBRADDIF:
3330 case SIOCBRDELIF:
Johannes Bergc6c9fee2019-01-25 22:43:19 +01003331 case SIOCGIFNAME:
Arnd Bergmann9177efd2009-11-06 08:09:09 +00003332 case SIOCSIFNAME:
3333 case SIOCGMIIPHY:
3334 case SIOCGMIIREG:
3335 case SIOCSMIIREG:
Al Virof92d4fc2017-09-30 19:32:17 -04003336 case SIOCBONDENSLAVE:
3337 case SIOCBONDRELEASE:
3338 case SIOCBONDSETHWADDR:
3339 case SIOCBONDCHANGEACTIVE:
Arnd Bergmann29c49642021-07-22 16:29:03 +02003340 return compat_ifreq_ioctl(net, sock, cmd, arg, argp);
Johannes Berg37ac39b2019-01-25 22:43:18 +01003341
Arnd Bergmann6b960182009-11-06 23:10:54 -08003342 case SIOCSARP:
3343 case SIOCGARP:
3344 case SIOCDARP:
Arnd Bergmannc7dc5042019-06-03 23:07:12 +02003345 case SIOCOUTQ:
Arnd Bergmann9d7bf412019-06-03 23:06:00 +02003346 case SIOCOUTQNSD:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003347 case SIOCATMARK:
Johannes Berg63ff03a2019-01-25 22:43:17 +01003348 return sock_do_ioctl(net, sock, cmd, arg);
Arnd Bergmann9177efd2009-11-06 08:09:09 +00003349 }
3350
Arnd Bergmann6b960182009-11-06 23:10:54 -08003351 return -ENOIOCTLCMD;
3352}
Arnd Bergmann7a229382009-11-06 23:00:29 -08003353
Eric Dumazet95c96172012-04-15 05:58:06 +00003354static long compat_sock_ioctl(struct file *file, unsigned int cmd,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07003355 unsigned long arg)
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003356{
3357 struct socket *sock = file->private_data;
3358 int ret = -ENOIOCTLCMD;
David S. Miller87de87d2008-06-03 09:14:03 -07003359 struct sock *sk;
3360 struct net *net;
3361
3362 sk = sock->sk;
3363 net = sock_net(sk);
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003364
3365 if (sock->ops->compat_ioctl)
3366 ret = sock->ops->compat_ioctl(sock, cmd, arg);
3367
David S. Miller87de87d2008-06-03 09:14:03 -07003368 if (ret == -ENOIOCTLCMD &&
3369 (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST))
3370 ret = compat_wext_handle_ioctl(net, cmd, arg);
3371
Arnd Bergmann6b960182009-11-06 23:10:54 -08003372 if (ret == -ENOIOCTLCMD)
3373 ret = compat_sock_ioctl_trans(file, sock, cmd, arg);
3374
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003375 return ret;
3376}
3377#endif
3378
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003379/**
3380 * kernel_bind - bind an address to a socket (kernel space)
3381 * @sock: socket
3382 * @addr: address
3383 * @addrlen: length of address
3384 *
3385 * Returns 0 or an error.
3386 */
3387
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003388int kernel_bind(struct socket *sock, struct sockaddr *addr, int addrlen)
3389{
3390 return sock->ops->bind(sock, addr, addrlen);
3391}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003392EXPORT_SYMBOL(kernel_bind);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003393
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003394/**
3395 * kernel_listen - move socket to listening state (kernel space)
3396 * @sock: socket
3397 * @backlog: pending connections queue size
3398 *
3399 * Returns 0 or an error.
3400 */
3401
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003402int kernel_listen(struct socket *sock, int backlog)
3403{
3404 return sock->ops->listen(sock, backlog);
3405}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003406EXPORT_SYMBOL(kernel_listen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003407
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003408/**
3409 * kernel_accept - accept a connection (kernel space)
3410 * @sock: listening socket
3411 * @newsock: new connected socket
3412 * @flags: flags
3413 *
3414 * @flags must be SOCK_CLOEXEC, SOCK_NONBLOCK or 0.
3415 * If it fails, @newsock is guaranteed to be %NULL.
3416 * Returns 0 or an error.
3417 */
3418
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003419int kernel_accept(struct socket *sock, struct socket **newsock, int flags)
3420{
3421 struct sock *sk = sock->sk;
3422 int err;
3423
3424 err = sock_create_lite(sk->sk_family, sk->sk_type, sk->sk_protocol,
3425 newsock);
3426 if (err < 0)
3427 goto done;
3428
David Howellscdfbabf2017-03-09 08:09:05 +00003429 err = sock->ops->accept(sock, *newsock, flags, true);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003430 if (err < 0) {
3431 sock_release(*newsock);
Tony Battersbyfa8705b2007-10-10 21:09:04 -07003432 *newsock = NULL;
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003433 goto done;
3434 }
3435
3436 (*newsock)->ops = sock->ops;
Wei Yongjun1b085342008-12-18 19:35:10 -08003437 __module_get((*newsock)->ops->owner);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003438
3439done:
3440 return err;
3441}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003442EXPORT_SYMBOL(kernel_accept);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003443
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003444/**
3445 * kernel_connect - connect a socket (kernel space)
3446 * @sock: socket
3447 * @addr: address
3448 * @addrlen: address length
3449 * @flags: flags (O_NONBLOCK, ...)
3450 *
Lu Weif1dcffc2021-03-25 11:01:55 +08003451 * For datagram sockets, @addr is the address to which datagrams are sent
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003452 * by default, and the only address from which datagrams are received.
3453 * For stream sockets, attempts to connect to @addr.
3454 * Returns 0 or an error code.
3455 */
3456
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003457int kernel_connect(struct socket *sock, struct sockaddr *addr, int addrlen,
YOSHIFUJI Hideaki4768fbc2007-02-09 23:25:31 +09003458 int flags)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003459{
3460 return sock->ops->connect(sock, addr, addrlen, flags);
3461}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003462EXPORT_SYMBOL(kernel_connect);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003463
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003464/**
3465 * kernel_getsockname - get the address which the socket is bound (kernel space)
3466 * @sock: socket
3467 * @addr: address holder
3468 *
3469 * Fills the @addr pointer with the address which the socket is bound.
3470 * Returns 0 or an error code.
3471 */
3472
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01003473int kernel_getsockname(struct socket *sock, struct sockaddr *addr)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003474{
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01003475 return sock->ops->getname(sock, addr, 0);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003476}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003477EXPORT_SYMBOL(kernel_getsockname);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003478
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003479/**
Miaohe Lin645f0892020-08-27 07:27:49 -04003480 * kernel_getpeername - get the address which the socket is connected (kernel space)
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003481 * @sock: socket
3482 * @addr: address holder
3483 *
3484 * Fills the @addr pointer with the address which the socket is connected.
3485 * Returns 0 or an error code.
3486 */
3487
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01003488int kernel_getpeername(struct socket *sock, struct sockaddr *addr)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003489{
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01003490 return sock->ops->getname(sock, addr, 1);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003491}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003492EXPORT_SYMBOL(kernel_getpeername);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003493
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003494/**
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003495 * kernel_sendpage - send a &page through a socket (kernel space)
3496 * @sock: socket
3497 * @page: page
3498 * @offset: page offset
3499 * @size: total size in bytes
3500 * @flags: flags (MSG_DONTWAIT, ...)
3501 *
3502 * Returns the total amount sent in bytes or an error.
3503 */
3504
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003505int kernel_sendpage(struct socket *sock, struct page *page, int offset,
3506 size_t size, int flags)
3507{
Coly Li7b62d312020-10-02 16:27:29 +08003508 if (sock->ops->sendpage) {
3509 /* Warn in case the improper page to zero-copy send */
3510 WARN_ONCE(!sendpage_ok(page), "improper page for zero-copy send");
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003511 return sock->ops->sendpage(sock, page, offset, size, flags);
Coly Li7b62d312020-10-02 16:27:29 +08003512 }
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003513 return sock_no_sendpage(sock, page, offset, size, flags);
3514}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003515EXPORT_SYMBOL(kernel_sendpage);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003516
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003517/**
3518 * kernel_sendpage_locked - send a &page through the locked sock (kernel space)
3519 * @sk: sock
3520 * @page: page
3521 * @offset: page offset
3522 * @size: total size in bytes
3523 * @flags: flags (MSG_DONTWAIT, ...)
3524 *
3525 * Returns the total amount sent in bytes or an error.
3526 * Caller must hold @sk.
3527 */
3528
Tom Herbert306b13e2017-07-28 16:22:41 -07003529int kernel_sendpage_locked(struct sock *sk, struct page *page, int offset,
3530 size_t size, int flags)
3531{
3532 struct socket *sock = sk->sk_socket;
3533
3534 if (sock->ops->sendpage_locked)
3535 return sock->ops->sendpage_locked(sk, page, offset, size,
3536 flags);
3537
3538 return sock_no_sendpage_locked(sk, page, offset, size, flags);
3539}
3540EXPORT_SYMBOL(kernel_sendpage_locked);
3541
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003542/**
Miaohe Lin645f0892020-08-27 07:27:49 -04003543 * kernel_sock_shutdown - shut down part of a full-duplex connection (kernel space)
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003544 * @sock: socket
3545 * @how: connection part
3546 *
3547 * Returns 0 or an error.
3548 */
3549
Trond Myklebust91cf45f2007-11-12 18:10:39 -08003550int kernel_sock_shutdown(struct socket *sock, enum sock_shutdown_cmd how)
3551{
3552 return sock->ops->shutdown(sock, how);
3553}
Trond Myklebust91cf45f2007-11-12 18:10:39 -08003554EXPORT_SYMBOL(kernel_sock_shutdown);
R. Parameswaran113c3072017-04-05 16:50:35 -07003555
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003556/**
3557 * kernel_sock_ip_overhead - returns the IP overhead imposed by a socket
3558 * @sk: socket
3559 *
3560 * This routine returns the IP overhead imposed by a socket i.e.
3561 * the length of the underlying IP header, depending on whether
3562 * this is an IPv4 or IPv6 socket and the length from IP options turned
3563 * on at the socket. Assumes that the caller has a lock on the socket.
R. Parameswaran113c3072017-04-05 16:50:35 -07003564 */
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003565
R. Parameswaran113c3072017-04-05 16:50:35 -07003566u32 kernel_sock_ip_overhead(struct sock *sk)
3567{
3568 struct inet_sock *inet;
3569 struct ip_options_rcu *opt;
3570 u32 overhead = 0;
R. Parameswaran113c3072017-04-05 16:50:35 -07003571#if IS_ENABLED(CONFIG_IPV6)
3572 struct ipv6_pinfo *np;
3573 struct ipv6_txoptions *optv6 = NULL;
3574#endif /* IS_ENABLED(CONFIG_IPV6) */
3575
3576 if (!sk)
3577 return overhead;
3578
R. Parameswaran113c3072017-04-05 16:50:35 -07003579 switch (sk->sk_family) {
3580 case AF_INET:
3581 inet = inet_sk(sk);
3582 overhead += sizeof(struct iphdr);
3583 opt = rcu_dereference_protected(inet->inet_opt,
stephen hemminger614d79c2017-07-24 10:25:22 -07003584 sock_owned_by_user(sk));
R. Parameswaran113c3072017-04-05 16:50:35 -07003585 if (opt)
3586 overhead += opt->opt.optlen;
3587 return overhead;
3588#if IS_ENABLED(CONFIG_IPV6)
3589 case AF_INET6:
3590 np = inet6_sk(sk);
3591 overhead += sizeof(struct ipv6hdr);
3592 if (np)
3593 optv6 = rcu_dereference_protected(np->opt,
stephen hemminger614d79c2017-07-24 10:25:22 -07003594 sock_owned_by_user(sk));
R. Parameswaran113c3072017-04-05 16:50:35 -07003595 if (optv6)
3596 overhead += (optv6->opt_flen + optv6->opt_nflen);
3597 return overhead;
3598#endif /* IS_ENABLED(CONFIG_IPV6) */
3599 default: /* Returns 0 overhead if the socket is not ipv4 or ipv6 */
3600 return overhead;
3601 }
3602}
3603EXPORT_SYMBOL(kernel_sock_ip_overhead);