blob: 42665bd99ea4a692aa138fdbaf8172713b20a7cc [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 Lucinac1249c0a2010-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 Lucinac1249c0a2010-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 Lucinac1249c0a2010-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 Lucinac1249c0a2010-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);
Arnd Bergmannad2f99a2021-07-27 15:45:16 +02001067static int (*br_ioctl_hook)(struct net *net, struct net_bridge *br,
1068 unsigned int cmd, struct ifreq *ifr,
1069 void __user *uarg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070
Arnd Bergmannad2f99a2021-07-27 15:45:16 +02001071void brioctl_set(int (*hook)(struct net *net, struct net_bridge *br,
1072 unsigned int cmd, struct ifreq *ifr,
1073 void __user *uarg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001075 mutex_lock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 br_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001077 mutex_unlock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078}
1079EXPORT_SYMBOL(brioctl_set);
1080
Arnd Bergmannad2f99a2021-07-27 15:45:16 +02001081int br_ioctl_call(struct net *net, struct net_bridge *br, unsigned int cmd,
1082 struct ifreq *ifr, void __user *uarg)
1083{
1084 int err = -ENOPKG;
1085
1086 if (!br_ioctl_hook)
1087 request_module("bridge");
1088
1089 mutex_lock(&br_ioctl_mutex);
1090 if (br_ioctl_hook)
1091 err = br_ioctl_hook(net, br, cmd, ifr, uarg);
1092 mutex_unlock(&br_ioctl_mutex);
1093
1094 return err;
1095}
1096
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001097static DEFINE_MUTEX(vlan_ioctl_mutex);
Eric W. Biederman881d9662007-09-17 11:56:21 -07001098static int (*vlan_ioctl_hook) (struct net *, void __user *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
Eric W. Biederman881d9662007-09-17 11:56:21 -07001100void vlan_ioctl_set(int (*hook) (struct net *, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001102 mutex_lock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 vlan_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001104 mutex_unlock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105}
1106EXPORT_SYMBOL(vlan_ioctl_set);
1107
Arnd Bergmann6b960182009-11-06 23:10:54 -08001108static long sock_do_ioctl(struct net *net, struct socket *sock,
Johannes Berg63ff03a2019-01-25 22:43:17 +01001109 unsigned int cmd, unsigned long arg)
Arnd Bergmann6b960182009-11-06 23:10:54 -08001110{
Arnd Bergmann876f0bf2021-07-22 16:29:02 +02001111 struct ifreq ifr;
1112 bool need_copyout;
Arnd Bergmann6b960182009-11-06 23:10:54 -08001113 int err;
1114 void __user *argp = (void __user *)arg;
Arnd Bergmanna554bf92021-07-27 15:45:12 +02001115 void __user *data;
Arnd Bergmann6b960182009-11-06 23:10:54 -08001116
1117 err = sock->ops->ioctl(sock, cmd, arg);
1118
1119 /*
1120 * If this ioctl is unknown try to hand it down
1121 * to the NIC driver.
1122 */
Al Viro36fd6332017-06-26 13:19:16 -04001123 if (err != -ENOIOCTLCMD)
1124 return err;
Arnd Bergmann6b960182009-11-06 23:10:54 -08001125
Arnd Bergmanna554bf92021-07-27 15:45:12 +02001126 if (get_user_ifreq(&ifr, &data, argp))
Arnd Bergmann876f0bf2021-07-22 16:29:02 +02001127 return -EFAULT;
Arnd Bergmanna554bf92021-07-27 15:45:12 +02001128 err = dev_ioctl(net, cmd, &ifr, data, &need_copyout);
Arnd Bergmann876f0bf2021-07-22 16:29:02 +02001129 if (!err && need_copyout)
Arnd Bergmanna554bf92021-07-27 15:45:12 +02001130 if (put_user_ifreq(&ifr, argp))
Al Viro36fd6332017-06-26 13:19:16 -04001131 return -EFAULT;
Arnd Bergmann876f0bf2021-07-22 16:29:02 +02001132
Arnd Bergmann6b960182009-11-06 23:10:54 -08001133 return err;
1134}
1135
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136/*
1137 * With an ioctl, arg may well be a user mode pointer, but we don't know
1138 * what to do with it - that's up to the protocol still.
1139 */
1140
1141static long sock_ioctl(struct file *file, unsigned cmd, unsigned long arg)
1142{
1143 struct socket *sock;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001144 struct sock *sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 void __user *argp = (void __user *)arg;
1146 int pid, err;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001147 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
Eric Dumazetb69aee02005-09-06 14:42:45 -07001149 sock = file->private_data;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001150 sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001151 net = sock_net(sk);
Al Viro44c02a22017-10-05 12:59:44 -04001152 if (unlikely(cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15))) {
1153 struct ifreq ifr;
Arnd Bergmanna554bf92021-07-27 15:45:12 +02001154 void __user *data;
Al Viro44c02a22017-10-05 12:59:44 -04001155 bool need_copyout;
Arnd Bergmanna554bf92021-07-27 15:45:12 +02001156 if (get_user_ifreq(&ifr, &data, argp))
Al Viro44c02a22017-10-05 12:59:44 -04001157 return -EFAULT;
Arnd Bergmanna554bf92021-07-27 15:45:12 +02001158 err = dev_ioctl(net, cmd, &ifr, data, &need_copyout);
Al Viro44c02a22017-10-05 12:59:44 -04001159 if (!err && need_copyout)
Arnd Bergmanna554bf92021-07-27 15:45:12 +02001160 if (put_user_ifreq(&ifr, argp))
Al Viro44c02a22017-10-05 12:59:44 -04001161 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 } else
Johannes Berg3d23e342009-09-29 23:27:28 +02001163#ifdef CONFIG_WEXT_CORE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 if (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST) {
Al Virob1b0c242017-10-01 20:13:08 -04001165 err = wext_handle_ioctl(net, cmd, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 } else
Johannes Berg3d23e342009-09-29 23:27:28 +02001167#endif
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001168 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 case FIOSETOWN:
1170 case SIOCSPGRP:
1171 err = -EFAULT;
1172 if (get_user(pid, (int __user *)argp))
1173 break;
Jiri Slaby393cc3f2017-06-13 13:35:50 +02001174 err = f_setown(sock->file, pid, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 break;
1176 case FIOGETOWN:
1177 case SIOCGPGRP:
Eric W. Biederman609d7fa2006-10-02 02:17:15 -07001178 err = put_user(f_getown(sock->file),
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001179 (int __user *)argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 break;
1181 case SIOCGIFBR:
1182 case SIOCSIFBR:
1183 case SIOCBRADDBR:
1184 case SIOCBRDELBR:
Arnd Bergmannad2f99a2021-07-27 15:45:16 +02001185 err = br_ioctl_call(net, NULL, cmd, NULL, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 break;
1187 case SIOCGIFVLAN:
1188 case SIOCSIFVLAN:
1189 err = -ENOPKG;
1190 if (!vlan_ioctl_hook)
1191 request_module("8021q");
1192
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001193 mutex_lock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 if (vlan_ioctl_hook)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001195 err = vlan_ioctl_hook(net, argp);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001196 mutex_unlock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 break;
Andrey Vaginc62cce22016-10-24 18:29:13 -07001198 case SIOCGSKNS:
1199 err = -EPERM;
1200 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
1201 break;
1202
1203 err = open_related_ns(&net->ns, get_net_ns);
1204 break;
Arnd Bergmann0768e172019-04-17 22:56:11 +02001205 case SIOCGSTAMP_OLD:
1206 case SIOCGSTAMPNS_OLD:
Arnd Bergmannc7cbdbf2019-04-17 22:51:48 +02001207 if (!sock->ops->gettstamp) {
1208 err = -ENOIOCTLCMD;
1209 break;
1210 }
1211 err = sock->ops->gettstamp(sock, argp,
Arnd Bergmann0768e172019-04-17 22:56:11 +02001212 cmd == SIOCGSTAMP_OLD,
1213 !IS_ENABLED(CONFIG_64BIT));
Gustavo A. R. Silva60747822019-04-24 10:31:24 -05001214 break;
Arnd Bergmann0768e172019-04-17 22:56:11 +02001215 case SIOCGSTAMP_NEW:
1216 case SIOCGSTAMPNS_NEW:
1217 if (!sock->ops->gettstamp) {
1218 err = -ENOIOCTLCMD;
1219 break;
1220 }
1221 err = sock->ops->gettstamp(sock, argp,
1222 cmd == SIOCGSTAMP_NEW,
1223 false);
Arnd Bergmannc7cbdbf2019-04-17 22:51:48 +02001224 break;
Arnd Bergmann876f0bf2021-07-22 16:29:02 +02001225
1226 case SIOCGIFCONF:
1227 err = dev_ifconf(net, argp);
1228 break;
1229
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 default:
Johannes Berg63ff03a2019-01-25 22:43:17 +01001231 err = sock_do_ioctl(net, sock, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001233 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 return err;
1235}
1236
Pedro Tammela8a3c2452019-03-14 10:45:23 -03001237/**
1238 * sock_create_lite - creates a socket
1239 * @family: protocol family (AF_INET, ...)
1240 * @type: communication type (SOCK_STREAM, ...)
1241 * @protocol: protocol (0, ...)
1242 * @res: new socket
1243 *
1244 * Creates a new socket and assigns it to @res, passing through LSM.
1245 * The new socket initialization is not complete, see kernel_accept().
1246 * Returns 0 or an error. On failure @res is set to %NULL.
1247 * This function internally uses GFP_KERNEL.
1248 */
1249
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250int sock_create_lite(int family, int type, int protocol, struct socket **res)
1251{
1252 int err;
1253 struct socket *sock = NULL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001254
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 err = security_socket_create(family, type, protocol, 1);
1256 if (err)
1257 goto out;
1258
1259 sock = sock_alloc();
1260 if (!sock) {
1261 err = -ENOMEM;
1262 goto out;
1263 }
1264
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 sock->type = type;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001266 err = security_socket_post_create(sock, family, type, protocol, 1);
1267 if (err)
1268 goto out_release;
1269
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270out:
1271 *res = sock;
1272 return err;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001273out_release:
1274 sock_release(sock);
1275 sock = NULL;
1276 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001278EXPORT_SYMBOL(sock_create_lite);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
1280/* No kernel lock held - perfect */
Al Viroade994f2017-07-03 00:01:49 -04001281static __poll_t sock_poll(struct file *file, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282{
Christoph Hellwig3cafb372018-01-09 16:07:34 +01001283 struct socket *sock = file->private_data;
Christoph Hellwiga331de32018-07-30 09:42:13 +02001284 __poll_t events = poll_requested_events(wait), flag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
Christoph Hellwige88958e2018-06-29 15:37:24 +02001286 if (!sock->ops->poll)
1287 return 0;
Christoph Hellwigf641f13b2018-07-30 09:42:12 +02001288
Christoph Hellwiga331de32018-07-30 09:42:13 +02001289 if (sk_can_busy_loop(sock->sk)) {
1290 /* poll once if requested by the syscall */
1291 if (events & POLL_BUSY_LOOP)
1292 sk_busy_loop(sock->sk, 1);
1293
1294 /* if this socket can poll_ll, tell the system call */
1295 flag = POLL_BUSY_LOOP;
1296 }
1297
1298 return sock->ops->poll(file, sock, wait) | flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299}
1300
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001301static int sock_mmap(struct file *file, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302{
Eric Dumazetb69aee02005-09-06 14:42:45 -07001303 struct socket *sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
1305 return sock->ops->mmap(file, sock, vma);
1306}
1307
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001308static int sock_close(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309{
Cong Wang6d8c50d2018-06-07 13:39:49 -07001310 __sock_release(SOCKET_I(inode), inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 return 0;
1312}
1313
1314/*
1315 * Update the socket async list
1316 *
1317 * Fasync_list locking strategy.
1318 *
1319 * 1. fasync_list is modified only under process context socket lock
1320 * i.e. under semaphore.
1321 * 2. fasync_list is used under read_lock(&sk->sk_callback_lock)
Eric Dumazet989a2972010-04-14 09:55:35 +00001322 * or under socket lock
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 */
1324
1325static int sock_fasync(int fd, struct file *filp, int on)
1326{
Eric Dumazet989a2972010-04-14 09:55:35 +00001327 struct socket *sock = filp->private_data;
1328 struct sock *sk = sock->sk;
Al Viro333f7902019-07-05 20:14:16 +01001329 struct socket_wq *wq = &sock->wq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330
Eric Dumazet989a2972010-04-14 09:55:35 +00001331 if (sk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
1334 lock_sock(sk);
Eric Dumazeteaefd1102011-02-18 03:26:36 +00001335 fasync_helper(fd, filp, on, &wq->fasync_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336
Eric Dumazeteaefd1102011-02-18 03:26:36 +00001337 if (!wq->fasync_list)
Eric Dumazet989a2972010-04-14 09:55:35 +00001338 sock_reset_flag(sk, SOCK_FASYNC);
Jonathan Corbet76398422009-02-01 14:26:59 -07001339 else
Eric Dumazetbcdce712009-10-06 17:28:29 -07001340 sock_set_flag(sk, SOCK_FASYNC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341
Eric Dumazet989a2972010-04-14 09:55:35 +00001342 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 return 0;
1344}
1345
Eric Dumazetceb5d582015-11-29 20:03:11 -08001346/* This function may be called only under rcu_lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347
Eric Dumazetceb5d582015-11-29 20:03:11 -08001348int sock_wake_async(struct socket_wq *wq, int how, int band)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349{
Eric Dumazetceb5d582015-11-29 20:03:11 -08001350 if (!wq || !wq->fasync_list)
1351 return -1;
Eric Dumazet43815482010-04-29 11:01:49 +00001352
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001353 switch (how) {
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001354 case SOCK_WAKE_WAITD:
Eric Dumazetceb5d582015-11-29 20:03:11 -08001355 if (test_bit(SOCKWQ_ASYNC_WAITDATA, &wq->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 break;
1357 goto call_kill;
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001358 case SOCK_WAKE_SPACE:
Eric Dumazetceb5d582015-11-29 20:03:11 -08001359 if (!test_and_clear_bit(SOCKWQ_ASYNC_NOSPACE, &wq->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 break;
Miaohe Lin7c7ab582020-08-08 16:23:10 +08001361 fallthrough;
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001362 case SOCK_WAKE_IO:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001363call_kill:
Eric Dumazet43815482010-04-29 11:01:49 +00001364 kill_fasync(&wq->fasync_list, SIGIO, band);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 break;
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001366 case SOCK_WAKE_URG:
Eric Dumazet43815482010-04-29 11:01:49 +00001367 kill_fasync(&wq->fasync_list, SIGURG, band);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 }
Eric Dumazetceb5d582015-11-29 20:03:11 -08001369
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 return 0;
1371}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001372EXPORT_SYMBOL(sock_wake_async);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373
Pedro Tammela8a3c2452019-03-14 10:45:23 -03001374/**
1375 * __sock_create - creates a socket
1376 * @net: net namespace
1377 * @family: protocol family (AF_INET, ...)
1378 * @type: communication type (SOCK_STREAM, ...)
1379 * @protocol: protocol (0, ...)
1380 * @res: new socket
1381 * @kern: boolean for kernel space sockets
1382 *
1383 * Creates a new socket and assigns it to @res, passing through LSM.
1384 * Returns 0 or an error. On failure @res is set to %NULL. @kern must
1385 * be set to true if the socket resides in kernel space.
1386 * This function internally uses GFP_KERNEL.
1387 */
1388
Pavel Emelyanov721db932010-09-29 16:06:32 +04001389int __sock_create(struct net *net, int family, int type, int protocol,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001390 struct socket **res, int kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391{
1392 int err;
1393 struct socket *sock;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001394 const struct net_proto_family *pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395
1396 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001397 * Check protocol is in range
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 */
1399 if (family < 0 || family >= NPROTO)
1400 return -EAFNOSUPPORT;
1401 if (type < 0 || type >= SOCK_MAX)
1402 return -EINVAL;
1403
1404 /* Compatibility.
1405
1406 This uglymoron is moved from INET layer to here to avoid
1407 deadlock in module load.
1408 */
1409 if (family == PF_INET && type == SOCK_PACKET) {
liping.zhangf3c98692016-03-11 23:08:36 +08001410 pr_info_once("%s uses obsolete (PF_INET,SOCK_PACKET)\n",
1411 current->comm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 family = PF_PACKET;
1413 }
1414
1415 err = security_socket_create(family, type, protocol, kern);
1416 if (err)
1417 return err;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001418
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001419 /*
1420 * Allocate the socket and allow the family to set things up. if
1421 * the protocol is 0, the family is instructed to select an appropriate
1422 * default.
1423 */
1424 sock = sock_alloc();
1425 if (!sock) {
Joe Perchese87cc472012-05-13 21:56:26 +00001426 net_warn_ratelimited("socket: no more sockets\n");
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001427 return -ENFILE; /* Not exactly a match, but its the
1428 closest posix thing */
1429 }
1430
1431 sock->type = type;
1432
Johannes Berg95a5afc2008-10-16 15:24:51 -07001433#ifdef CONFIG_MODULES
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001434 /* Attempt to load a protocol module if the find failed.
1435 *
1436 * 12/09/1996 Marcin: But! this makes REALLY only sense, if the user
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 * requested real, full-featured networking support upon configuration.
1438 * Otherwise module support will break!
1439 */
Eric Dumazet190683a2010-11-10 10:50:44 +00001440 if (rcu_access_pointer(net_families[family]) == NULL)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001441 request_module("net-pf-%d", family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442#endif
1443
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001444 rcu_read_lock();
1445 pf = rcu_dereference(net_families[family]);
1446 err = -EAFNOSUPPORT;
1447 if (!pf)
1448 goto out_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449
1450 /*
1451 * We will call the ->create function, that possibly is in a loadable
1452 * module, so we have to bump that loadable module refcnt first.
1453 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001454 if (!try_module_get(pf->owner))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 goto out_release;
1456
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001457 /* Now protected by module ref count */
1458 rcu_read_unlock();
1459
Eric Paris3f378b62009-11-05 22:18:14 -08001460 err = pf->create(net, sock, protocol, kern);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001461 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 goto out_module_put;
Frank Filza79af592005-09-27 15:23:38 -07001463
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 /*
1465 * Now to bump the refcnt of the [loadable] module that owns this
1466 * socket at sock_release time we decrement its refcnt.
1467 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001468 if (!try_module_get(sock->ops->owner))
1469 goto out_module_busy;
1470
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 /*
1472 * Now that we're done with the ->create function, the [loadable]
1473 * module can have its refcnt decremented
1474 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001475 module_put(pf->owner);
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001476 err = security_socket_post_create(sock, family, type, protocol, kern);
1477 if (err)
Herbert Xu3b185522007-08-15 14:46:02 -07001478 goto out_sock_release;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001479 *res = sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001481 return 0;
1482
1483out_module_busy:
1484 err = -EAFNOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485out_module_put:
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001486 sock->ops = NULL;
1487 module_put(pf->owner);
1488out_sock_release:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 sock_release(sock);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001490 return err;
1491
1492out_release:
1493 rcu_read_unlock();
1494 goto out_sock_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495}
Pavel Emelyanov721db932010-09-29 16:06:32 +04001496EXPORT_SYMBOL(__sock_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497
Pedro Tammela8a3c2452019-03-14 10:45:23 -03001498/**
1499 * sock_create - creates a socket
1500 * @family: protocol family (AF_INET, ...)
1501 * @type: communication type (SOCK_STREAM, ...)
1502 * @protocol: protocol (0, ...)
1503 * @res: new socket
1504 *
1505 * A wrapper around __sock_create().
1506 * Returns 0 or an error. This function internally uses GFP_KERNEL.
1507 */
1508
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509int sock_create(int family, int type, int protocol, struct socket **res)
1510{
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001511 return __sock_create(current->nsproxy->net_ns, family, type, protocol, res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001513EXPORT_SYMBOL(sock_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514
Pedro Tammela8a3c2452019-03-14 10:45:23 -03001515/**
1516 * sock_create_kern - creates a socket (kernel space)
1517 * @net: net namespace
1518 * @family: protocol family (AF_INET, ...)
1519 * @type: communication type (SOCK_STREAM, ...)
1520 * @protocol: protocol (0, ...)
1521 * @res: new socket
1522 *
1523 * A wrapper around __sock_create().
1524 * Returns 0 or an error. This function internally uses GFP_KERNEL.
1525 */
1526
Eric W. Biedermaneeb1bd52015-05-08 21:08:05 -05001527int sock_create_kern(struct net *net, int family, int type, int protocol, struct socket **res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528{
Eric W. Biedermaneeb1bd52015-05-08 21:08:05 -05001529 return __sock_create(net, family, type, protocol, res, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001531EXPORT_SYMBOL(sock_create_kern);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532
Dominik Brodowski9d6a15c2018-03-13 19:29:43 +01001533int __sys_socket(int family, int type, int protocol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534{
1535 int retval;
1536 struct socket *sock;
Ulrich Dreppera677a032008-07-23 21:29:17 -07001537 int flags;
1538
Ulrich Dreppere38b36f2008-07-23 21:29:42 -07001539 /* Check the SOCK_* constants for consistency. */
1540 BUILD_BUG_ON(SOCK_CLOEXEC != O_CLOEXEC);
1541 BUILD_BUG_ON((SOCK_MAX | SOCK_TYPE_MASK) != SOCK_TYPE_MASK);
1542 BUILD_BUG_ON(SOCK_CLOEXEC & SOCK_TYPE_MASK);
1543 BUILD_BUG_ON(SOCK_NONBLOCK & SOCK_TYPE_MASK);
1544
Ulrich Dreppera677a032008-07-23 21:29:17 -07001545 flags = type & ~SOCK_TYPE_MASK;
Ulrich Drepper77d27202008-07-23 21:29:35 -07001546 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Dreppera677a032008-07-23 21:29:17 -07001547 return -EINVAL;
1548 type &= SOCK_TYPE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001550 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1551 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1552
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 retval = sock_create(family, type, protocol, &sock);
1554 if (retval < 0)
Al Viro8e1611e2017-12-05 23:29:09 +00001555 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556
Al Viro8e1611e2017-12-05 23:29:09 +00001557 return sock_map_fd(sock, flags & (O_CLOEXEC | O_NONBLOCK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558}
1559
Dominik Brodowski9d6a15c2018-03-13 19:29:43 +01001560SYSCALL_DEFINE3(socket, int, family, int, type, int, protocol)
1561{
1562 return __sys_socket(family, type, protocol);
1563}
1564
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565/*
1566 * Create a pair of connected sockets.
1567 */
1568
Dominik Brodowski6debc8d2018-03-13 19:49:23 +01001569int __sys_socketpair(int family, int type, int protocol, int __user *usockvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570{
1571 struct socket *sock1, *sock2;
1572 int fd1, fd2, err;
Al Virodb349502007-02-07 01:48:00 -05001573 struct file *newfile1, *newfile2;
Ulrich Dreppera677a032008-07-23 21:29:17 -07001574 int flags;
1575
1576 flags = type & ~SOCK_TYPE_MASK;
Ulrich Drepper77d27202008-07-23 21:29:35 -07001577 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Dreppera677a032008-07-23 21:29:17 -07001578 return -EINVAL;
1579 type &= SOCK_TYPE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001581 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1582 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1583
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 /*
Al Viro016a2662017-12-05 23:28:38 +00001585 * reserve descriptors and make sure we won't fail
1586 * to return them to userland.
1587 */
1588 fd1 = get_unused_fd_flags(flags);
1589 if (unlikely(fd1 < 0))
1590 return fd1;
1591
1592 fd2 = get_unused_fd_flags(flags);
1593 if (unlikely(fd2 < 0)) {
1594 put_unused_fd(fd1);
1595 return fd2;
1596 }
1597
1598 err = put_user(fd1, &usockvec[0]);
1599 if (err)
1600 goto out;
1601
1602 err = put_user(fd2, &usockvec[1]);
1603 if (err)
1604 goto out;
1605
1606 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 * Obtain the first socket and check if the underlying protocol
1608 * supports the socketpair call.
1609 */
1610
1611 err = sock_create(family, type, protocol, &sock1);
Al Viro016a2662017-12-05 23:28:38 +00001612 if (unlikely(err < 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 goto out;
1614
1615 err = sock_create(family, type, protocol, &sock2);
Al Viro016a2662017-12-05 23:28:38 +00001616 if (unlikely(err < 0)) {
1617 sock_release(sock1);
1618 goto out;
David S. Millerbf3c23d2007-10-29 21:54:02 -07001619 }
Yann Droneaudd73aa282013-12-09 22:42:20 +01001620
David Herrmannd47cd942018-05-04 16:28:20 +02001621 err = security_socket_socketpair(sock1, sock2);
1622 if (unlikely(err)) {
1623 sock_release(sock2);
1624 sock_release(sock1);
1625 goto out;
1626 }
1627
Al Viro016a2662017-12-05 23:28:38 +00001628 err = sock1->ops->socketpair(sock1, sock2);
1629 if (unlikely(err < 0)) {
1630 sock_release(sock2);
1631 sock_release(sock1);
1632 goto out;
Al Viro28407632012-08-17 23:54:15 -04001633 }
1634
Linus Torvaldsaab174f2012-10-02 20:25:04 -07001635 newfile1 = sock_alloc_file(sock1, flags, NULL);
Viresh Kumarb5ffe632015-08-12 15:59:47 +05301636 if (IS_ERR(newfile1)) {
Al Viro28407632012-08-17 23:54:15 -04001637 err = PTR_ERR(newfile1);
Al Viro016a2662017-12-05 23:28:38 +00001638 sock_release(sock2);
1639 goto out;
Al Viro28407632012-08-17 23:54:15 -04001640 }
1641
Linus Torvaldsaab174f2012-10-02 20:25:04 -07001642 newfile2 = sock_alloc_file(sock2, flags, NULL);
Al Viro28407632012-08-17 23:54:15 -04001643 if (IS_ERR(newfile2)) {
1644 err = PTR_ERR(newfile2);
Al Viro016a2662017-12-05 23:28:38 +00001645 fput(newfile1);
1646 goto out;
Al Virodb349502007-02-07 01:48:00 -05001647 }
1648
Al Viro157cf642008-12-14 04:57:47 -05001649 audit_fd_pair(fd1, fd2);
Yann Droneaudd73aa282013-12-09 22:42:20 +01001650
Al Virodb349502007-02-07 01:48:00 -05001651 fd_install(fd1, newfile1);
1652 fd_install(fd2, newfile2);
Yann Droneaudd73aa282013-12-09 22:42:20 +01001653 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655out:
Al Viro016a2662017-12-05 23:28:38 +00001656 put_unused_fd(fd2);
1657 put_unused_fd(fd1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 return err;
1659}
1660
Dominik Brodowski6debc8d2018-03-13 19:49:23 +01001661SYSCALL_DEFINE4(socketpair, int, family, int, type, int, protocol,
1662 int __user *, usockvec)
1663{
1664 return __sys_socketpair(family, type, protocol, usockvec);
1665}
1666
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667/*
1668 * Bind a name to a socket. Nothing much to do here since it's
1669 * the protocol's responsibility to handle the local address.
1670 *
1671 * We move the socket address to kernel space before we call
1672 * the protocol layer (having also checked the address is ok).
1673 */
1674
Dominik Brodowskia87d35d2018-03-13 19:33:09 +01001675int __sys_bind(int fd, struct sockaddr __user *umyaddr, int addrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676{
1677 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001678 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001679 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001681 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001682 if (sock) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001683 err = move_addr_to_kernel(umyaddr, addrlen, &address);
Jakub Sitnicki068b88c2018-10-04 11:09:40 +02001684 if (!err) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001685 err = security_socket_bind(sock,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001686 (struct sockaddr *)&address,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001687 addrlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001688 if (!err)
1689 err = sock->ops->bind(sock,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001690 (struct sockaddr *)
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001691 &address, addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 }
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001693 fput_light(sock->file, fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001694 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 return err;
1696}
1697
Dominik Brodowskia87d35d2018-03-13 19:33:09 +01001698SYSCALL_DEFINE3(bind, int, fd, struct sockaddr __user *, umyaddr, int, addrlen)
1699{
1700 return __sys_bind(fd, umyaddr, addrlen);
1701}
1702
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703/*
1704 * Perform a listen. Basically, we allow the protocol to do anything
1705 * necessary for a listen, and if that works, we mark the socket as
1706 * ready for listening.
1707 */
1708
Dominik Brodowski25e290e2018-03-13 19:36:54 +01001709int __sys_listen(int fd, int backlog)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710{
1711 struct socket *sock;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001712 int err, fput_needed;
Pavel Emelyanovb8e1f9b2007-12-08 00:12:33 -08001713 int somaxconn;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001714
1715 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1716 if (sock) {
Pavel Emelyanov8efa6e92008-03-31 19:41:14 -07001717 somaxconn = sock_net(sock->sk)->core.sysctl_somaxconn;
Eric Dumazet95c96172012-04-15 05:58:06 +00001718 if ((unsigned int)backlog > somaxconn)
Pavel Emelyanovb8e1f9b2007-12-08 00:12:33 -08001719 backlog = somaxconn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720
1721 err = security_socket_listen(sock, backlog);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001722 if (!err)
1723 err = sock->ops->listen(sock, backlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001725 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 }
1727 return err;
1728}
1729
Dominik Brodowski25e290e2018-03-13 19:36:54 +01001730SYSCALL_DEFINE2(listen, int, fd, int, backlog)
1731{
1732 return __sys_listen(fd, backlog);
1733}
1734
Jens Axboede2ea4b2019-10-17 14:41:29 -06001735int __sys_accept4_file(struct file *file, unsigned file_flags,
1736 struct sockaddr __user *upeer_sockaddr,
Jens Axboe09952e32020-03-19 20:16:56 -06001737 int __user *upeer_addrlen, int flags,
1738 unsigned long nofile)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739{
1740 struct socket *sock, *newsock;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001741 struct file *newfile;
Jens Axboede2ea4b2019-10-17 14:41:29 -06001742 int err, len, newfd;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001743 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744
Ulrich Drepper77d27202008-07-23 21:29:35 -07001745 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001746 return -EINVAL;
1747
1748 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1749 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1750
Florent Revestdba4a922020-12-04 12:36:04 +01001751 sock = sock_from_file(file);
1752 if (!sock) {
1753 err = -ENOTSOCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 goto out;
Florent Revestdba4a922020-12-04 12:36:04 +01001755 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756
1757 err = -ENFILE;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001758 newsock = sock_alloc();
1759 if (!newsock)
Jens Axboede2ea4b2019-10-17 14:41:29 -06001760 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761
1762 newsock->type = sock->type;
1763 newsock->ops = sock->ops;
1764
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 /*
1766 * We don't need try_module_get here, as the listening socket (sock)
1767 * has the protocol module (sock->ops->owner) held.
1768 */
1769 __module_get(newsock->ops->owner);
1770
Jens Axboe09952e32020-03-19 20:16:56 -06001771 newfd = __get_unused_fd_flags(flags, nofile);
David S. Miller39d8c1b2006-03-20 17:13:49 -08001772 if (unlikely(newfd < 0)) {
1773 err = newfd;
David S. Miller9a1875e2006-04-01 12:48:36 -08001774 sock_release(newsock);
Jens Axboede2ea4b2019-10-17 14:41:29 -06001775 goto out;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001776 }
Linus Torvaldsaab174f2012-10-02 20:25:04 -07001777 newfile = sock_alloc_file(newsock, flags, sock->sk->sk_prot_creator->name);
Viresh Kumarb5ffe632015-08-12 15:59:47 +05301778 if (IS_ERR(newfile)) {
Al Viro28407632012-08-17 23:54:15 -04001779 err = PTR_ERR(newfile);
1780 put_unused_fd(newfd);
Jens Axboede2ea4b2019-10-17 14:41:29 -06001781 goto out;
Al Viro28407632012-08-17 23:54:15 -04001782 }
David S. Miller39d8c1b2006-03-20 17:13:49 -08001783
Frank Filza79af592005-09-27 15:23:38 -07001784 err = security_socket_accept(sock, newsock);
1785 if (err)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001786 goto out_fd;
Frank Filza79af592005-09-27 15:23:38 -07001787
Jens Axboede2ea4b2019-10-17 14:41:29 -06001788 err = sock->ops->accept(sock, newsock, sock->file->f_flags | file_flags,
1789 false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 if (err < 0)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001791 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792
1793 if (upeer_sockaddr) {
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01001794 len = newsock->ops->getname(newsock,
1795 (struct sockaddr *)&address, 2);
1796 if (len < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 err = -ECONNABORTED;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001798 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 }
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001800 err = move_addr_to_user(&address,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001801 len, upeer_sockaddr, upeer_addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 if (err < 0)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001803 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 }
1805
1806 /* File flags are not inherited via accept() unlike another OSes. */
1807
David S. Miller39d8c1b2006-03-20 17:13:49 -08001808 fd_install(newfd, newfile);
1809 err = newfd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810out:
1811 return err;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001812out_fd:
David S. Miller9606a212006-04-01 01:00:14 -08001813 fput(newfile);
David S. Miller39d8c1b2006-03-20 17:13:49 -08001814 put_unused_fd(newfd);
Jens Axboede2ea4b2019-10-17 14:41:29 -06001815 goto out;
1816
1817}
1818
1819/*
1820 * For accept, we attempt to create a new socket, set up the link
1821 * with the client, wake up the client, then return the new
1822 * connected fd. We collect the address of the connector in kernel
1823 * space and move it to user at the very end. This is unclean because
1824 * we open the socket then return an error.
1825 *
1826 * 1003.1g adds the ability to recvmsg() to query connection pending
1827 * status to recvmsg. We need to add that support in a way thats
1828 * clean when we restructure accept also.
1829 */
1830
1831int __sys_accept4(int fd, struct sockaddr __user *upeer_sockaddr,
1832 int __user *upeer_addrlen, int flags)
1833{
1834 int ret = -EBADF;
1835 struct fd f;
1836
1837 f = fdget(fd);
1838 if (f.file) {
1839 ret = __sys_accept4_file(f.file, 0, upeer_sockaddr,
Jens Axboe09952e32020-03-19 20:16:56 -06001840 upeer_addrlen, flags,
1841 rlimit(RLIMIT_NOFILE));
Miaohe Lin6b07ede2020-08-06 19:52:24 +08001842 fdput(f);
Jens Axboede2ea4b2019-10-17 14:41:29 -06001843 }
1844
1845 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846}
1847
Dominik Brodowski4541e802018-03-13 19:24:23 +01001848SYSCALL_DEFINE4(accept4, int, fd, struct sockaddr __user *, upeer_sockaddr,
1849 int __user *, upeer_addrlen, int, flags)
1850{
1851 return __sys_accept4(fd, upeer_sockaddr, upeer_addrlen, flags);
1852}
1853
Heiko Carstens20f37032009-01-14 14:14:23 +01001854SYSCALL_DEFINE3(accept, int, fd, struct sockaddr __user *, upeer_sockaddr,
1855 int __user *, upeer_addrlen)
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001856{
Dominik Brodowski4541e802018-03-13 19:24:23 +01001857 return __sys_accept4(fd, upeer_sockaddr, upeer_addrlen, 0);
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001858}
1859
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860/*
1861 * Attempt to connect to a socket with the server address. The address
1862 * is in user space so we verify it is OK and move it to kernel space.
1863 *
1864 * For 1003.1g we need to add clean support for a bind to AF_UNSPEC to
1865 * break bindings
1866 *
1867 * NOTE: 1003.1g draft 6.3 is broken with respect to AX.25/NetROM and
1868 * other SEQPACKET protocols that take time to connect() as it doesn't
1869 * include the -EINPROGRESS status for such sockets.
1870 */
1871
Jens Axboef499a022019-12-02 16:28:46 -07001872int __sys_connect_file(struct file *file, struct sockaddr_storage *address,
Jens Axboebd3ded32019-11-23 14:17:16 -07001873 int addrlen, int file_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874{
1875 struct socket *sock;
Jens Axboebd3ded32019-11-23 14:17:16 -07001876 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877
Florent Revestdba4a922020-12-04 12:36:04 +01001878 sock = sock_from_file(file);
1879 if (!sock) {
1880 err = -ENOTSOCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 goto out;
Florent Revestdba4a922020-12-04 12:36:04 +01001882 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001884 err =
Jens Axboef499a022019-12-02 16:28:46 -07001885 security_socket_connect(sock, (struct sockaddr *)address, addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 if (err)
Jens Axboebd3ded32019-11-23 14:17:16 -07001887 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888
Jens Axboef499a022019-12-02 16:28:46 -07001889 err = sock->ops->connect(sock, (struct sockaddr *)address, addrlen,
Jens Axboebd3ded32019-11-23 14:17:16 -07001890 sock->file->f_flags | file_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891out:
1892 return err;
1893}
1894
Jens Axboebd3ded32019-11-23 14:17:16 -07001895int __sys_connect(int fd, struct sockaddr __user *uservaddr, int addrlen)
1896{
1897 int ret = -EBADF;
1898 struct fd f;
1899
1900 f = fdget(fd);
1901 if (f.file) {
Jens Axboef499a022019-12-02 16:28:46 -07001902 struct sockaddr_storage address;
1903
1904 ret = move_addr_to_kernel(uservaddr, addrlen, &address);
1905 if (!ret)
1906 ret = __sys_connect_file(f.file, &address, addrlen, 0);
Miaohe Lin6b07ede2020-08-06 19:52:24 +08001907 fdput(f);
Jens Axboebd3ded32019-11-23 14:17:16 -07001908 }
1909
1910 return ret;
1911}
1912
Dominik Brodowski1387c2c2018-03-13 19:35:09 +01001913SYSCALL_DEFINE3(connect, int, fd, struct sockaddr __user *, uservaddr,
1914 int, addrlen)
1915{
1916 return __sys_connect(fd, uservaddr, addrlen);
1917}
1918
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919/*
1920 * Get the local address ('name') of a socket object. Move the obtained
1921 * name to user space.
1922 */
1923
Dominik Brodowski8882a102018-03-13 19:43:14 +01001924int __sys_getsockname(int fd, struct sockaddr __user *usockaddr,
1925 int __user *usockaddr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926{
1927 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001928 struct sockaddr_storage address;
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01001929 int err, fput_needed;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001930
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001931 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 if (!sock)
1933 goto out;
1934
1935 err = security_socket_getsockname(sock);
1936 if (err)
1937 goto out_put;
1938
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01001939 err = sock->ops->getname(sock, (struct sockaddr *)&address, 0);
1940 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 goto out_put;
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01001942 /* "err" is actually length in this case */
1943 err = move_addr_to_user(&address, err, usockaddr, usockaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944
1945out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001946 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947out:
1948 return err;
1949}
1950
Dominik Brodowski8882a102018-03-13 19:43:14 +01001951SYSCALL_DEFINE3(getsockname, int, fd, struct sockaddr __user *, usockaddr,
1952 int __user *, usockaddr_len)
1953{
1954 return __sys_getsockname(fd, usockaddr, usockaddr_len);
1955}
1956
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957/*
1958 * Get the remote address ('name') of a socket object. Move the obtained
1959 * name to user space.
1960 */
1961
Dominik Brodowskib21c8f82018-03-13 19:47:00 +01001962int __sys_getpeername(int fd, struct sockaddr __user *usockaddr,
1963 int __user *usockaddr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964{
1965 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001966 struct sockaddr_storage address;
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01001967 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001969 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1970 if (sock != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 err = security_socket_getpeername(sock);
1972 if (err) {
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001973 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 return err;
1975 }
1976
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01001977 err = sock->ops->getname(sock, (struct sockaddr *)&address, 1);
1978 if (err >= 0)
1979 /* "err" is actually length in this case */
1980 err = move_addr_to_user(&address, err, usockaddr,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001981 usockaddr_len);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001982 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 }
1984 return err;
1985}
1986
Dominik Brodowskib21c8f82018-03-13 19:47:00 +01001987SYSCALL_DEFINE3(getpeername, int, fd, struct sockaddr __user *, usockaddr,
1988 int __user *, usockaddr_len)
1989{
1990 return __sys_getpeername(fd, usockaddr, usockaddr_len);
1991}
1992
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993/*
1994 * Send a datagram to a given address. We move the address into kernel
1995 * space and check the user space data area is readable before invoking
1996 * the protocol.
1997 */
Dominik Brodowski211b6342018-03-13 19:18:52 +01001998int __sys_sendto(int fd, void __user *buff, size_t len, unsigned int flags,
1999 struct sockaddr __user *addr, int addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000{
2001 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07002002 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 int err;
2004 struct msghdr msg;
2005 struct iovec iov;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002006 int fput_needed;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002007
Al Viro602bd0e2015-03-21 19:12:32 -04002008 err = import_single_range(WRITE, buff, len, &iov, &msg.msg_iter);
2009 if (unlikely(err))
2010 return err;
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08002011 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2012 if (!sock)
David S. Miller4387ff72007-02-08 15:06:08 -08002013 goto out;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002014
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002015 msg.msg_name = NULL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002016 msg.msg_control = NULL;
2017 msg.msg_controllen = 0;
2018 msg.msg_namelen = 0;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002019 if (addr) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00002020 err = move_addr_to_kernel(addr, addr_len, &address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 if (err < 0)
2022 goto out_put;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07002023 msg.msg_name = (struct sockaddr *)&address;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002024 msg.msg_namelen = addr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 }
2026 if (sock->file->f_flags & O_NONBLOCK)
2027 flags |= MSG_DONTWAIT;
2028 msg.msg_flags = flags;
Al Virod8725c82014-12-11 00:02:50 -05002029 err = sock_sendmsg(sock, &msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002031out_put:
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08002032 fput_light(sock->file, fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08002033out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 return err;
2035}
2036
Dominik Brodowski211b6342018-03-13 19:18:52 +01002037SYSCALL_DEFINE6(sendto, int, fd, void __user *, buff, size_t, len,
2038 unsigned int, flags, struct sockaddr __user *, addr,
2039 int, addr_len)
2040{
2041 return __sys_sendto(fd, buff, len, flags, addr, addr_len);
2042}
2043
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002045 * Send a datagram down a socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 */
2047
Heiko Carstens3e0fa652009-01-14 14:14:24 +01002048SYSCALL_DEFINE4(send, int, fd, void __user *, buff, size_t, len,
Eric Dumazet95c96172012-04-15 05:58:06 +00002049 unsigned int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050{
Dominik Brodowski211b6342018-03-13 19:18:52 +01002051 return __sys_sendto(fd, buff, len, flags, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052}
2053
2054/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002055 * Receive a frame from the socket and optionally record the address of the
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 * sender. We verify the buffers are writable and if needed move the
2057 * sender address from kernel to user space.
2058 */
Dominik Brodowski7a09e1e2018-03-13 19:10:06 +01002059int __sys_recvfrom(int fd, void __user *ubuf, size_t size, unsigned int flags,
2060 struct sockaddr __user *addr, int __user *addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061{
2062 struct socket *sock;
2063 struct iovec iov;
2064 struct msghdr msg;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07002065 struct sockaddr_storage address;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002066 int err, err2;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002067 int fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068
Al Viro602bd0e2015-03-21 19:12:32 -04002069 err = import_single_range(READ, ubuf, size, &iov, &msg.msg_iter);
2070 if (unlikely(err))
2071 return err;
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08002072 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 if (!sock)
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08002074 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002076 msg.msg_control = NULL;
2077 msg.msg_controllen = 0;
Hannes Frederic Sowaf3d33422013-11-21 03:14:22 +01002078 /* Save some cycles and don't copy the address if not needed */
2079 msg.msg_name = addr ? (struct sockaddr *)&address : NULL;
2080 /* We assume all kernel code knows the size of sockaddr_storage */
2081 msg.msg_namelen = 0;
tadeusz.struk@intel.com130ed5d2015-12-15 10:46:17 -08002082 msg.msg_iocb = NULL;
Alexander Potapenko9f138fa2017-03-08 18:08:16 +01002083 msg.msg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 if (sock->file->f_flags & O_NONBLOCK)
2085 flags |= MSG_DONTWAIT;
Al Viro2da62902015-03-14 21:13:46 -04002086 err = sock_recvmsg(sock, &msg, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002088 if (err >= 0 && addr != NULL) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00002089 err2 = move_addr_to_user(&address,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07002090 msg.msg_namelen, addr, addr_len);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002091 if (err2 < 0)
2092 err = err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 }
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08002094
2095 fput_light(sock->file, fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08002096out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 return err;
2098}
2099
Dominik Brodowski7a09e1e2018-03-13 19:10:06 +01002100SYSCALL_DEFINE6(recvfrom, int, fd, void __user *, ubuf, size_t, size,
2101 unsigned int, flags, struct sockaddr __user *, addr,
2102 int __user *, addr_len)
2103{
2104 return __sys_recvfrom(fd, ubuf, size, flags, addr, addr_len);
2105}
2106
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002108 * Receive a datagram from a socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 */
2110
Jan Glauberb7c0ddf2014-04-16 09:32:48 +02002111SYSCALL_DEFINE4(recv, int, fd, void __user *, ubuf, size_t, size,
2112 unsigned int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113{
Dominik Brodowski7a09e1e2018-03-13 19:10:06 +01002114 return __sys_recvfrom(fd, ubuf, size, flags, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115}
2116
Florian Westphal83f0c102020-07-05 01:30:15 +02002117static bool sock_use_custom_sol_socket(const struct socket *sock)
2118{
2119 const struct sock *sk = sock->sk;
2120
2121 /* Use sock->ops->setsockopt() for MPTCP */
2122 return IS_ENABLED(CONFIG_MPTCP) &&
2123 sk->sk_protocol == IPPROTO_MPTCP &&
2124 sk->sk_type == SOCK_STREAM &&
2125 (sk->sk_family == AF_INET || sk->sk_family == AF_INET6);
2126}
2127
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128/*
2129 * Set a socket option. Because we don't know the option lengths we have
2130 * to pass the user mode parameter for the protocols to sort out.
2131 */
Christoph Hellwiga7b75c52020-07-23 08:09:07 +02002132int __sys_setsockopt(int fd, int level, int optname, char __user *user_optval,
Christoph Hellwig55db9c02020-07-17 08:23:15 +02002133 int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134{
Christoph Hellwig519a8a62020-08-10 18:42:14 +02002135 sockptr_t optval = USER_SOCKPTR(user_optval);
Stanislav Fomichev0d01da62019-06-27 13:38:47 -07002136 char *kernel_optval = NULL;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002137 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 struct socket *sock;
2139
2140 if (optlen < 0)
2141 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002142
2143 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Christoph Hellwig4a367292020-07-17 08:23:11 +02002144 if (!sock)
2145 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146
Christoph Hellwig4a367292020-07-17 08:23:11 +02002147 err = security_socket_setsockopt(sock, level, optname);
2148 if (err)
2149 goto out_put;
Stanislav Fomichev0d01da62019-06-27 13:38:47 -07002150
Christoph Hellwig55db9c02020-07-17 08:23:15 +02002151 if (!in_compat_syscall())
2152 err = BPF_CGROUP_RUN_PROG_SETSOCKOPT(sock->sk, &level, &optname,
Christoph Hellwiga7b75c52020-07-23 08:09:07 +02002153 user_optval, &optlen,
Christoph Hellwig55db9c02020-07-17 08:23:15 +02002154 &kernel_optval);
Christoph Hellwig4a367292020-07-17 08:23:11 +02002155 if (err < 0)
2156 goto out_put;
2157 if (err > 0) {
2158 err = 0;
2159 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 }
Christoph Hellwig4a367292020-07-17 08:23:11 +02002161
Christoph Hellwiga7b75c52020-07-23 08:09:07 +02002162 if (kernel_optval)
2163 optval = KERNEL_SOCKPTR(kernel_optval);
Christoph Hellwig4a367292020-07-17 08:23:11 +02002164 if (level == SOL_SOCKET && !sock_use_custom_sol_socket(sock))
Christoph Hellwiga7b75c52020-07-23 08:09:07 +02002165 err = sock_setsockopt(sock, level, optname, optval, optlen);
Christoph Hellwiga44d9e72020-07-17 08:23:31 +02002166 else if (unlikely(!sock->ops->setsockopt))
2167 err = -EOPNOTSUPP;
Christoph Hellwig4a367292020-07-17 08:23:11 +02002168 else
2169 err = sock->ops->setsockopt(sock, level, optname, optval,
2170 optlen);
Christoph Hellwiga7b75c52020-07-23 08:09:07 +02002171 kfree(kernel_optval);
Christoph Hellwig4a367292020-07-17 08:23:11 +02002172out_put:
2173 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 return err;
2175}
2176
Dominik Brodowskicc36dca2018-03-13 20:10:59 +01002177SYSCALL_DEFINE5(setsockopt, int, fd, int, level, int, optname,
2178 char __user *, optval, int, optlen)
2179{
2180 return __sys_setsockopt(fd, level, optname, optval, optlen);
2181}
2182
Stanislav Fomichev9cacf812021-01-15 08:34:59 -08002183INDIRECT_CALLABLE_DECLARE(bool tcp_bpf_bypass_getsockopt(int level,
2184 int optname));
2185
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186/*
2187 * Get a socket option. Because we don't know the option lengths we have
2188 * to pass a user mode parameter for the protocols to sort out.
2189 */
Christoph Hellwig55db9c02020-07-17 08:23:15 +02002190int __sys_getsockopt(int fd, int level, int optname, char __user *optval,
2191 int __user *optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002193 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 struct socket *sock;
Stanislav Fomichev0d01da62019-06-27 13:38:47 -07002195 int max_optlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002197 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Christoph Hellwigd8a9b382020-07-17 08:23:12 +02002198 if (!sock)
2199 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200
Christoph Hellwigd8a9b382020-07-17 08:23:12 +02002201 err = security_socket_getsockopt(sock, level, optname);
2202 if (err)
2203 goto out_put;
Stanislav Fomichev0d01da62019-06-27 13:38:47 -07002204
Christoph Hellwig55db9c02020-07-17 08:23:15 +02002205 if (!in_compat_syscall())
2206 max_optlen = BPF_CGROUP_GETSOCKOPT_MAX_OPTLEN(optlen);
Christoph Hellwigd8a9b382020-07-17 08:23:12 +02002207
2208 if (level == SOL_SOCKET)
2209 err = sock_getsockopt(sock, level, optname, optval, optlen);
Christoph Hellwiga44d9e72020-07-17 08:23:31 +02002210 else if (unlikely(!sock->ops->getsockopt))
2211 err = -EOPNOTSUPP;
Christoph Hellwigd8a9b382020-07-17 08:23:12 +02002212 else
2213 err = sock->ops->getsockopt(sock, level, optname, optval,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002214 optlen);
Stanislav Fomichev0d01da62019-06-27 13:38:47 -07002215
Christoph Hellwig55db9c02020-07-17 08:23:15 +02002216 if (!in_compat_syscall())
2217 err = BPF_CGROUP_RUN_PROG_GETSOCKOPT(sock->sk, level, optname,
2218 optval, optlen, max_optlen,
2219 err);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002220out_put:
Christoph Hellwigd8a9b382020-07-17 08:23:12 +02002221 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 return err;
2223}
2224
Dominik Brodowski13a2d702018-03-13 20:15:04 +01002225SYSCALL_DEFINE5(getsockopt, int, fd, int, level, int, optname,
2226 char __user *, optval, int __user *, optlen)
2227{
2228 return __sys_getsockopt(fd, level, optname, optval, optlen);
2229}
2230
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231/*
2232 * Shutdown a socket.
2233 */
2234
Jens Axboeb713c192020-09-05 11:13:35 -06002235int __sys_shutdown_sock(struct socket *sock, int how)
2236{
2237 int err;
2238
2239 err = security_socket_shutdown(sock, how);
2240 if (!err)
2241 err = sock->ops->shutdown(sock, how);
2242
2243 return err;
2244}
2245
Dominik Brodowski005a1ae2018-03-13 20:07:05 +01002246int __sys_shutdown(int fd, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002248 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 struct socket *sock;
2250
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002251 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2252 if (sock != NULL) {
Jens Axboeb713c192020-09-05 11:13:35 -06002253 err = __sys_shutdown_sock(sock, how);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002254 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 }
2256 return err;
2257}
2258
Dominik Brodowski005a1ae2018-03-13 20:07:05 +01002259SYSCALL_DEFINE2(shutdown, int, fd, int, how)
2260{
2261 return __sys_shutdown(fd, how);
2262}
2263
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002264/* A couple of helpful macros for getting the address of the 32/64 bit
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 * fields which are the same type (int / unsigned) on our platforms.
2266 */
2267#define COMPAT_MSG(msg, member) ((MSG_CMSG_COMPAT & flags) ? &msg##_compat->member : &msg->member)
2268#define COMPAT_NAMELEN(msg) COMPAT_MSG(msg, msg_namelen)
2269#define COMPAT_FLAGS(msg) COMPAT_MSG(msg, msg_flags)
2270
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002271struct used_address {
2272 struct sockaddr_storage name;
2273 unsigned int name_len;
2274};
2275
Jens Axboe0a384ab2020-02-27 08:11:20 -07002276int __copy_msghdr_from_user(struct msghdr *kmsg,
2277 struct user_msghdr __user *umsg,
2278 struct sockaddr __user **save_addr,
2279 struct iovec __user **uiov, size_t *nsegs)
Dan Carpenter1661bf32013-10-03 00:27:20 +03002280{
Al Viroffb07552017-06-27 19:32:04 -04002281 struct user_msghdr msg;
Al Viro08adb7d2014-11-10 20:23:13 -05002282 ssize_t err;
2283
Al Viroffb07552017-06-27 19:32:04 -04002284 if (copy_from_user(&msg, umsg, sizeof(*umsg)))
Dan Carpenter1661bf32013-10-03 00:27:20 +03002285 return -EFAULT;
Matthew Leachdbb490b2014-03-11 11:58:27 +00002286
Christoph Hellwig1f466e12020-05-11 13:59:13 +02002287 kmsg->msg_control_is_user = true;
2288 kmsg->msg_control_user = msg.msg_control;
Al Viroffb07552017-06-27 19:32:04 -04002289 kmsg->msg_controllen = msg.msg_controllen;
2290 kmsg->msg_flags = msg.msg_flags;
2291
2292 kmsg->msg_namelen = msg.msg_namelen;
2293 if (!msg.msg_name)
Ani Sinha6a2a2b32014-09-08 14:49:59 -07002294 kmsg->msg_namelen = 0;
2295
Matthew Leachdbb490b2014-03-11 11:58:27 +00002296 if (kmsg->msg_namelen < 0)
2297 return -EINVAL;
2298
Dan Carpenter1661bf32013-10-03 00:27:20 +03002299 if (kmsg->msg_namelen > sizeof(struct sockaddr_storage))
Dan Carpenterdb31c552013-11-27 15:40:21 +03002300 kmsg->msg_namelen = sizeof(struct sockaddr_storage);
Al Viro08adb7d2014-11-10 20:23:13 -05002301
2302 if (save_addr)
Al Viroffb07552017-06-27 19:32:04 -04002303 *save_addr = msg.msg_name;
Al Viro08adb7d2014-11-10 20:23:13 -05002304
Al Viroffb07552017-06-27 19:32:04 -04002305 if (msg.msg_name && kmsg->msg_namelen) {
Al Viro08adb7d2014-11-10 20:23:13 -05002306 if (!save_addr) {
Paolo Abeni864d9662017-07-21 18:49:45 +02002307 err = move_addr_to_kernel(msg.msg_name,
2308 kmsg->msg_namelen,
Al Viro08adb7d2014-11-10 20:23:13 -05002309 kmsg->msg_name);
2310 if (err < 0)
2311 return err;
2312 }
2313 } else {
2314 kmsg->msg_name = NULL;
2315 kmsg->msg_namelen = 0;
2316 }
2317
Al Viroffb07552017-06-27 19:32:04 -04002318 if (msg.msg_iovlen > UIO_MAXIOV)
Al Viro08adb7d2014-11-10 20:23:13 -05002319 return -EMSGSIZE;
2320
tadeusz.struk@intel.com0345f932015-03-19 12:31:25 -07002321 kmsg->msg_iocb = NULL;
Jens Axboe0a384ab2020-02-27 08:11:20 -07002322 *uiov = msg.msg_iov;
2323 *nsegs = msg.msg_iovlen;
2324 return 0;
2325}
2326
2327static int copy_msghdr_from_user(struct msghdr *kmsg,
2328 struct user_msghdr __user *umsg,
2329 struct sockaddr __user **save_addr,
2330 struct iovec **iov)
2331{
2332 struct user_msghdr msg;
2333 ssize_t err;
2334
2335 err = __copy_msghdr_from_user(kmsg, umsg, save_addr, &msg.msg_iov,
2336 &msg.msg_iovlen);
2337 if (err)
2338 return err;
tadeusz.struk@intel.com0345f932015-03-19 12:31:25 -07002339
Jens Axboe87e5e6d2019-05-14 16:02:22 -06002340 err = import_iovec(save_addr ? READ : WRITE,
Al Viroffb07552017-06-27 19:32:04 -04002341 msg.msg_iov, msg.msg_iovlen,
Al Viroda184282015-03-21 19:29:06 -04002342 UIO_FASTIOV, iov, &kmsg->msg_iter);
Jens Axboe87e5e6d2019-05-14 16:02:22 -06002343 return err < 0 ? err : 0;
Dan Carpenter1661bf32013-10-03 00:27:20 +03002344}
2345
Jens Axboe4257c8c2019-11-25 14:27:34 -07002346static int ____sys_sendmsg(struct socket *sock, struct msghdr *msg_sys,
2347 unsigned int flags, struct used_address *used_address,
2348 unsigned int allowed_msghdr_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349{
Alex Williamsonb9d717a2005-09-26 14:28:02 -07002350 unsigned char ctl[sizeof(struct cmsghdr) + 20]
Amit Kushwaha846cc122016-12-08 18:21:53 +05302351 __aligned(sizeof(__kernel_size_t));
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002352 /* 20 is size of ipv6_pktinfo */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353 unsigned char *ctl_buf = ctl;
Al Virod8725c82014-12-11 00:02:50 -05002354 int ctl_len;
Al Viro08adb7d2014-11-10 20:23:13 -05002355 ssize_t err;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002356
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 err = -ENOBUFS;
2358
Anton Blanchard228e5482011-05-02 20:21:35 +00002359 if (msg_sys->msg_controllen > INT_MAX)
Jens Axboe4257c8c2019-11-25 14:27:34 -07002360 goto out;
Tom Herbert28a94d82016-03-07 14:11:02 -08002361 flags |= (msg_sys->msg_flags & allowed_msghdr_flags);
Anton Blanchard228e5482011-05-02 20:21:35 +00002362 ctl_len = msg_sys->msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 if ((MSG_CMSG_COMPAT & flags) && ctl_len) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002364 err =
Anton Blanchard228e5482011-05-02 20:21:35 +00002365 cmsghdr_from_user_compat_to_kern(msg_sys, sock->sk, ctl,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002366 sizeof(ctl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 if (err)
Jens Axboe4257c8c2019-11-25 14:27:34 -07002368 goto out;
Anton Blanchard228e5482011-05-02 20:21:35 +00002369 ctl_buf = msg_sys->msg_control;
2370 ctl_len = msg_sys->msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 } else if (ctl_len) {
David S. Millerac4340f2017-01-04 13:24:19 -05002372 BUILD_BUG_ON(sizeof(struct cmsghdr) !=
2373 CMSG_ALIGN(sizeof(struct cmsghdr)));
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002374 if (ctl_len > sizeof(ctl)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 ctl_buf = sock_kmalloc(sock->sk, ctl_len, GFP_KERNEL);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002376 if (ctl_buf == NULL)
Jens Axboe4257c8c2019-11-25 14:27:34 -07002377 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 }
2379 err = -EFAULT;
Christoph Hellwig1f466e12020-05-11 13:59:13 +02002380 if (copy_from_user(ctl_buf, msg_sys->msg_control_user, ctl_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 goto out_freectl;
Anton Blanchard228e5482011-05-02 20:21:35 +00002382 msg_sys->msg_control = ctl_buf;
Christoph Hellwig1f466e12020-05-11 13:59:13 +02002383 msg_sys->msg_control_is_user = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 }
Anton Blanchard228e5482011-05-02 20:21:35 +00002385 msg_sys->msg_flags = flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386
2387 if (sock->file->f_flags & O_NONBLOCK)
Anton Blanchard228e5482011-05-02 20:21:35 +00002388 msg_sys->msg_flags |= MSG_DONTWAIT;
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002389 /*
2390 * If this is sendmmsg() and current destination address is same as
2391 * previously succeeded address, omit asking LSM's decision.
2392 * used_address->name_len is initialized to UINT_MAX so that the first
2393 * destination address never matches.
2394 */
Mathieu Desnoyersbc909d92011-08-24 19:45:03 -07002395 if (used_address && msg_sys->msg_name &&
2396 used_address->name_len == msg_sys->msg_namelen &&
2397 !memcmp(&used_address->name, msg_sys->msg_name,
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002398 used_address->name_len)) {
Al Virod8725c82014-12-11 00:02:50 -05002399 err = sock_sendmsg_nosec(sock, msg_sys);
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002400 goto out_freectl;
2401 }
Al Virod8725c82014-12-11 00:02:50 -05002402 err = sock_sendmsg(sock, msg_sys);
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002403 /*
2404 * If this is sendmmsg() and sending to current destination address was
2405 * successful, remember it.
2406 */
2407 if (used_address && err >= 0) {
2408 used_address->name_len = msg_sys->msg_namelen;
Mathieu Desnoyersbc909d92011-08-24 19:45:03 -07002409 if (msg_sys->msg_name)
2410 memcpy(&used_address->name, msg_sys->msg_name,
2411 used_address->name_len);
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002412 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413
2414out_freectl:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002415 if (ctl_buf != ctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 sock_kfree_s(sock->sk, ctl_buf, ctl_len);
Jens Axboe4257c8c2019-11-25 14:27:34 -07002417out:
2418 return err;
2419}
2420
Jens Axboe03b12302019-12-02 18:50:25 -07002421int sendmsg_copy_msghdr(struct msghdr *msg,
2422 struct user_msghdr __user *umsg, unsigned flags,
2423 struct iovec **iov)
Jens Axboe4257c8c2019-11-25 14:27:34 -07002424{
2425 int err;
2426
2427 if (flags & MSG_CMSG_COMPAT) {
2428 struct compat_msghdr __user *msg_compat;
2429
2430 msg_compat = (struct compat_msghdr __user *) umsg;
2431 err = get_compat_msghdr(msg, msg_compat, NULL, iov);
2432 } else {
2433 err = copy_msghdr_from_user(msg, umsg, NULL, iov);
2434 }
2435 if (err < 0)
2436 return err;
2437
2438 return 0;
2439}
2440
2441static int ___sys_sendmsg(struct socket *sock, struct user_msghdr __user *msg,
2442 struct msghdr *msg_sys, unsigned int flags,
2443 struct used_address *used_address,
2444 unsigned int allowed_msghdr_flags)
2445{
2446 struct sockaddr_storage address;
2447 struct iovec iovstack[UIO_FASTIOV], *iov = iovstack;
2448 ssize_t err;
2449
2450 msg_sys->msg_name = &address;
2451
2452 err = sendmsg_copy_msghdr(msg_sys, msg, flags, &iov);
2453 if (err < 0)
2454 return err;
2455
2456 err = ____sys_sendmsg(sock, msg_sys, flags, used_address,
2457 allowed_msghdr_flags);
Al Viroda184282015-03-21 19:29:06 -04002458 kfree(iov);
Anton Blanchard228e5482011-05-02 20:21:35 +00002459 return err;
2460}
2461
2462/*
2463 * BSD sendmsg interface
2464 */
Jens Axboe03b12302019-12-02 18:50:25 -07002465long __sys_sendmsg_sock(struct socket *sock, struct msghdr *msg,
Jens Axboe0fa03c62019-04-19 13:34:07 -06002466 unsigned int flags)
2467{
Jens Axboe03b12302019-12-02 18:50:25 -07002468 return ____sys_sendmsg(sock, msg, flags, NULL, 0);
Jens Axboe0fa03c62019-04-19 13:34:07 -06002469}
Anton Blanchard228e5482011-05-02 20:21:35 +00002470
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002471long __sys_sendmsg(int fd, struct user_msghdr __user *msg, unsigned int flags,
2472 bool forbid_cmsg_compat)
Anton Blanchard228e5482011-05-02 20:21:35 +00002473{
2474 int fput_needed, err;
2475 struct msghdr msg_sys;
Andy Lutomirski1be374a2013-05-22 14:07:44 -07002476 struct socket *sock;
Anton Blanchard228e5482011-05-02 20:21:35 +00002477
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002478 if (forbid_cmsg_compat && (flags & MSG_CMSG_COMPAT))
2479 return -EINVAL;
2480
Andy Lutomirski1be374a2013-05-22 14:07:44 -07002481 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Anton Blanchard228e5482011-05-02 20:21:35 +00002482 if (!sock)
2483 goto out;
2484
Tom Herbert28a94d82016-03-07 14:11:02 -08002485 err = ___sys_sendmsg(sock, msg, &msg_sys, flags, NULL, 0);
Anton Blanchard228e5482011-05-02 20:21:35 +00002486
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002487 fput_light(sock->file, fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002488out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489 return err;
2490}
2491
Al Viro666547f2014-04-06 14:03:05 -04002492SYSCALL_DEFINE3(sendmsg, int, fd, struct user_msghdr __user *, msg, unsigned int, flags)
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002493{
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002494 return __sys_sendmsg(fd, msg, flags, true);
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002495}
2496
Anton Blanchard228e5482011-05-02 20:21:35 +00002497/*
2498 * Linux sendmmsg interface
2499 */
2500
2501int __sys_sendmmsg(int fd, struct mmsghdr __user *mmsg, unsigned int vlen,
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002502 unsigned int flags, bool forbid_cmsg_compat)
Anton Blanchard228e5482011-05-02 20:21:35 +00002503{
2504 int fput_needed, err, datagrams;
2505 struct socket *sock;
2506 struct mmsghdr __user *entry;
2507 struct compat_mmsghdr __user *compat_entry;
2508 struct msghdr msg_sys;
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002509 struct used_address used_address;
Tom Herbertf0922762016-03-07 14:11:03 -08002510 unsigned int oflags = flags;
Anton Blanchard228e5482011-05-02 20:21:35 +00002511
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002512 if (forbid_cmsg_compat && (flags & MSG_CMSG_COMPAT))
2513 return -EINVAL;
2514
Anton Blanchard98382f42011-08-04 14:07:39 +00002515 if (vlen > UIO_MAXIOV)
2516 vlen = UIO_MAXIOV;
Anton Blanchard228e5482011-05-02 20:21:35 +00002517
2518 datagrams = 0;
2519
2520 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2521 if (!sock)
2522 return err;
2523
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002524 used_address.name_len = UINT_MAX;
Anton Blanchard228e5482011-05-02 20:21:35 +00002525 entry = mmsg;
2526 compat_entry = (struct compat_mmsghdr __user *)mmsg;
Anton Blanchard728ffb82011-08-04 14:07:38 +00002527 err = 0;
Tom Herbertf0922762016-03-07 14:11:03 -08002528 flags |= MSG_BATCH;
Anton Blanchard228e5482011-05-02 20:21:35 +00002529
2530 while (datagrams < vlen) {
Tom Herbertf0922762016-03-07 14:11:03 -08002531 if (datagrams == vlen - 1)
2532 flags = oflags;
2533
Anton Blanchard228e5482011-05-02 20:21:35 +00002534 if (MSG_CMSG_COMPAT & flags) {
Al Viro666547f2014-04-06 14:03:05 -04002535 err = ___sys_sendmsg(sock, (struct user_msghdr __user *)compat_entry,
Tom Herbert28a94d82016-03-07 14:11:02 -08002536 &msg_sys, flags, &used_address, MSG_EOR);
Anton Blanchard228e5482011-05-02 20:21:35 +00002537 if (err < 0)
2538 break;
2539 err = __put_user(err, &compat_entry->msg_len);
2540 ++compat_entry;
2541 } else {
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002542 err = ___sys_sendmsg(sock,
Al Viro666547f2014-04-06 14:03:05 -04002543 (struct user_msghdr __user *)entry,
Tom Herbert28a94d82016-03-07 14:11:02 -08002544 &msg_sys, flags, &used_address, MSG_EOR);
Anton Blanchard228e5482011-05-02 20:21:35 +00002545 if (err < 0)
2546 break;
2547 err = put_user(err, &entry->msg_len);
2548 ++entry;
2549 }
2550
2551 if (err)
2552 break;
2553 ++datagrams;
Soheil Hassas Yeganeh30238982016-11-04 15:36:49 -04002554 if (msg_data_left(&msg_sys))
2555 break;
Eric Dumazeta78cb842016-01-08 08:37:20 -08002556 cond_resched();
Anton Blanchard228e5482011-05-02 20:21:35 +00002557 }
2558
Anton Blanchard228e5482011-05-02 20:21:35 +00002559 fput_light(sock->file, fput_needed);
2560
Anton Blanchard728ffb82011-08-04 14:07:38 +00002561 /* We only return an error if no datagrams were able to be sent */
2562 if (datagrams != 0)
Anton Blanchard228e5482011-05-02 20:21:35 +00002563 return datagrams;
2564
Anton Blanchard228e5482011-05-02 20:21:35 +00002565 return err;
2566}
2567
2568SYSCALL_DEFINE4(sendmmsg, int, fd, struct mmsghdr __user *, mmsg,
2569 unsigned int, vlen, unsigned int, flags)
2570{
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002571 return __sys_sendmmsg(fd, mmsg, vlen, flags, true);
Anton Blanchard228e5482011-05-02 20:21:35 +00002572}
2573
Jens Axboe03b12302019-12-02 18:50:25 -07002574int recvmsg_copy_msghdr(struct msghdr *msg,
2575 struct user_msghdr __user *umsg, unsigned flags,
2576 struct sockaddr __user **uaddr,
2577 struct iovec **iov)
Jens Axboe4257c8c2019-11-25 14:27:34 -07002578{
2579 ssize_t err;
2580
2581 if (MSG_CMSG_COMPAT & flags) {
2582 struct compat_msghdr __user *msg_compat;
2583
2584 msg_compat = (struct compat_msghdr __user *) umsg;
2585 err = get_compat_msghdr(msg, msg_compat, uaddr, iov);
2586 } else {
2587 err = copy_msghdr_from_user(msg, umsg, uaddr, iov);
2588 }
2589 if (err < 0)
2590 return err;
2591
2592 return 0;
2593}
2594
2595static int ____sys_recvmsg(struct socket *sock, struct msghdr *msg_sys,
2596 struct user_msghdr __user *msg,
2597 struct sockaddr __user *uaddr,
2598 unsigned int flags, int nosec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002600 struct compat_msghdr __user *msg_compat =
Jens Axboe4257c8c2019-11-25 14:27:34 -07002601 (struct compat_msghdr __user *) msg;
2602 int __user *uaddr_len = COMPAT_NAMELEN(msg);
2603 struct sockaddr_storage addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604 unsigned long cmsg_ptr;
Al Viro2da62902015-03-14 21:13:46 -04002605 int len;
Al Viro08adb7d2014-11-10 20:23:13 -05002606 ssize_t err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607
Al Viro08adb7d2014-11-10 20:23:13 -05002608 msg_sys->msg_name = &addr;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002609 cmsg_ptr = (unsigned long)msg_sys->msg_control;
2610 msg_sys->msg_flags = flags & (MSG_CMSG_CLOEXEC|MSG_CMSG_COMPAT);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002611
Hannes Frederic Sowaf3d33422013-11-21 03:14:22 +01002612 /* We assume all kernel code knows the size of sockaddr_storage */
2613 msg_sys->msg_namelen = 0;
2614
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 if (sock->file->f_flags & O_NONBLOCK)
2616 flags |= MSG_DONTWAIT;
Eric Dumazet1af66222019-12-06 09:38:36 -08002617
2618 if (unlikely(nosec))
2619 err = sock_recvmsg_nosec(sock, msg_sys, flags);
2620 else
2621 err = sock_recvmsg(sock, msg_sys, flags);
2622
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623 if (err < 0)
Jens Axboe4257c8c2019-11-25 14:27:34 -07002624 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625 len = err;
2626
2627 if (uaddr != NULL) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00002628 err = move_addr_to_user(&addr,
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002629 msg_sys->msg_namelen, uaddr,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002630 uaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 if (err < 0)
Jens Axboe4257c8c2019-11-25 14:27:34 -07002632 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633 }
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002634 err = __put_user((msg_sys->msg_flags & ~MSG_CMSG_COMPAT),
David S. Miller37f7f422005-09-16 16:51:01 -07002635 COMPAT_FLAGS(msg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636 if (err)
Jens Axboe4257c8c2019-11-25 14:27:34 -07002637 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638 if (MSG_CMSG_COMPAT & flags)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002639 err = __put_user((unsigned long)msg_sys->msg_control - cmsg_ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 &msg_compat->msg_controllen);
2641 else
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002642 err = __put_user((unsigned long)msg_sys->msg_control - cmsg_ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643 &msg->msg_controllen);
2644 if (err)
Jens Axboe4257c8c2019-11-25 14:27:34 -07002645 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646 err = len;
Jens Axboe4257c8c2019-11-25 14:27:34 -07002647out:
2648 return err;
2649}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650
Jens Axboe4257c8c2019-11-25 14:27:34 -07002651static int ___sys_recvmsg(struct socket *sock, struct user_msghdr __user *msg,
2652 struct msghdr *msg_sys, unsigned int flags, int nosec)
2653{
2654 struct iovec iovstack[UIO_FASTIOV], *iov = iovstack;
2655 /* user mode address pointers */
2656 struct sockaddr __user *uaddr;
2657 ssize_t err;
2658
2659 err = recvmsg_copy_msghdr(msg_sys, msg, flags, &uaddr, &iov);
2660 if (err < 0)
2661 return err;
2662
2663 err = ____sys_recvmsg(sock, msg_sys, msg, uaddr, flags, nosec);
Al Viroda184282015-03-21 19:29:06 -04002664 kfree(iov);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002665 return err;
2666}
2667
2668/*
2669 * BSD recvmsg interface
2670 */
2671
Jens Axboe03b12302019-12-02 18:50:25 -07002672long __sys_recvmsg_sock(struct socket *sock, struct msghdr *msg,
2673 struct user_msghdr __user *umsg,
2674 struct sockaddr __user *uaddr, unsigned int flags)
Jens Axboeaa1fa282019-04-19 13:38:09 -06002675{
Jens Axboe03b12302019-12-02 18:50:25 -07002676 return ____sys_recvmsg(sock, msg, umsg, uaddr, flags, 0);
Jens Axboeaa1fa282019-04-19 13:38:09 -06002677}
2678
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002679long __sys_recvmsg(int fd, struct user_msghdr __user *msg, unsigned int flags,
2680 bool forbid_cmsg_compat)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002681{
2682 int fput_needed, err;
2683 struct msghdr msg_sys;
Andy Lutomirski1be374a2013-05-22 14:07:44 -07002684 struct socket *sock;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002685
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002686 if (forbid_cmsg_compat && (flags & MSG_CMSG_COMPAT))
2687 return -EINVAL;
2688
Andy Lutomirski1be374a2013-05-22 14:07:44 -07002689 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002690 if (!sock)
2691 goto out;
2692
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002693 err = ___sys_recvmsg(sock, msg, &msg_sys, flags, 0);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002694
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002695 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696out:
2697 return err;
2698}
2699
Al Viro666547f2014-04-06 14:03:05 -04002700SYSCALL_DEFINE3(recvmsg, int, fd, struct user_msghdr __user *, msg,
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002701 unsigned int, flags)
2702{
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002703 return __sys_recvmsg(fd, msg, flags, true);
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002704}
2705
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002706/*
2707 * Linux recvmmsg interface
2708 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709
Arnd Bergmanne11d4282018-04-18 13:43:52 +02002710static int do_recvmmsg(int fd, struct mmsghdr __user *mmsg,
2711 unsigned int vlen, unsigned int flags,
2712 struct timespec64 *timeout)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002713{
2714 int fput_needed, err, datagrams;
2715 struct socket *sock;
2716 struct mmsghdr __user *entry;
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002717 struct compat_mmsghdr __user *compat_entry;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002718 struct msghdr msg_sys;
Deepa Dinamani766b9f92016-05-19 17:09:05 -07002719 struct timespec64 end_time;
2720 struct timespec64 timeout64;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002721
2722 if (timeout &&
2723 poll_select_set_timeout(&end_time, timeout->tv_sec,
2724 timeout->tv_nsec))
2725 return -EINVAL;
2726
2727 datagrams = 0;
2728
2729 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2730 if (!sock)
2731 return err;
2732
Soheil Hassas Yeganeh7797dc42018-02-27 18:22:40 -05002733 if (likely(!(flags & MSG_ERRQUEUE))) {
2734 err = sock_error(sock->sk);
2735 if (err) {
2736 datagrams = err;
2737 goto out_put;
2738 }
Maxime Jayate623a9e2017-02-21 18:35:51 +01002739 }
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002740
2741 entry = mmsg;
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002742 compat_entry = (struct compat_mmsghdr __user *)mmsg;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002743
2744 while (datagrams < vlen) {
2745 /*
2746 * No need to ask LSM for more than the first datagram.
2747 */
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002748 if (MSG_CMSG_COMPAT & flags) {
Al Viro666547f2014-04-06 14:03:05 -04002749 err = ___sys_recvmsg(sock, (struct user_msghdr __user *)compat_entry,
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002750 &msg_sys, flags & ~MSG_WAITFORONE,
2751 datagrams);
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002752 if (err < 0)
2753 break;
2754 err = __put_user(err, &compat_entry->msg_len);
2755 ++compat_entry;
2756 } else {
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002757 err = ___sys_recvmsg(sock,
Al Viro666547f2014-04-06 14:03:05 -04002758 (struct user_msghdr __user *)entry,
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002759 &msg_sys, flags & ~MSG_WAITFORONE,
2760 datagrams);
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002761 if (err < 0)
2762 break;
2763 err = put_user(err, &entry->msg_len);
2764 ++entry;
2765 }
2766
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002767 if (err)
2768 break;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002769 ++datagrams;
2770
Brandon L Black71c5c1592010-03-26 16:18:03 +00002771 /* MSG_WAITFORONE turns on MSG_DONTWAIT after one packet */
2772 if (flags & MSG_WAITFORONE)
2773 flags |= MSG_DONTWAIT;
2774
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002775 if (timeout) {
Deepa Dinamani766b9f92016-05-19 17:09:05 -07002776 ktime_get_ts64(&timeout64);
Arnd Bergmannc2e6c852018-04-18 13:42:25 +02002777 *timeout = timespec64_sub(end_time, timeout64);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002778 if (timeout->tv_sec < 0) {
2779 timeout->tv_sec = timeout->tv_nsec = 0;
2780 break;
2781 }
2782
2783 /* Timeout, return less than vlen datagrams */
2784 if (timeout->tv_nsec == 0 && timeout->tv_sec == 0)
2785 break;
2786 }
2787
2788 /* Out of band data, return right away */
2789 if (msg_sys.msg_flags & MSG_OOB)
2790 break;
Eric Dumazeta78cb842016-01-08 08:37:20 -08002791 cond_resched();
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002792 }
2793
Arnaldo Carvalho de Melo34b88a62016-03-14 09:56:35 -03002794 if (err == 0)
2795 goto out_put;
2796
2797 if (datagrams == 0) {
2798 datagrams = err;
2799 goto out_put;
2800 }
2801
2802 /*
2803 * We may return less entries than requested (vlen) if the
2804 * sock is non block and there aren't enough datagrams...
2805 */
2806 if (err != -EAGAIN) {
2807 /*
2808 * ... or if recvmsg returns an error after we
2809 * received some datagrams, where we record the
2810 * error to return on the next call or if the
2811 * app asks about it using getsockopt(SO_ERROR).
2812 */
2813 sock->sk->sk_err = -err;
2814 }
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002815out_put:
2816 fput_light(sock->file, fput_needed);
2817
Arnaldo Carvalho de Melo34b88a62016-03-14 09:56:35 -03002818 return datagrams;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002819}
2820
Arnd Bergmanne11d4282018-04-18 13:43:52 +02002821int __sys_recvmmsg(int fd, struct mmsghdr __user *mmsg,
2822 unsigned int vlen, unsigned int flags,
2823 struct __kernel_timespec __user *timeout,
2824 struct old_timespec32 __user *timeout32)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002825{
2826 int datagrams;
Arnd Bergmannc2e6c852018-04-18 13:42:25 +02002827 struct timespec64 timeout_sys;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002828
Arnd Bergmanne11d4282018-04-18 13:43:52 +02002829 if (timeout && get_timespec64(&timeout_sys, timeout))
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002830 return -EFAULT;
2831
Arnd Bergmanne11d4282018-04-18 13:43:52 +02002832 if (timeout32 && get_old_timespec32(&timeout_sys, timeout32))
2833 return -EFAULT;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002834
Arnd Bergmanne11d4282018-04-18 13:43:52 +02002835 if (!timeout && !timeout32)
2836 return do_recvmmsg(fd, mmsg, vlen, flags, NULL);
2837
2838 datagrams = do_recvmmsg(fd, mmsg, vlen, flags, &timeout_sys);
2839
2840 if (datagrams <= 0)
2841 return datagrams;
2842
2843 if (timeout && put_timespec64(&timeout_sys, timeout))
2844 datagrams = -EFAULT;
2845
2846 if (timeout32 && put_old_timespec32(&timeout_sys, timeout32))
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002847 datagrams = -EFAULT;
2848
2849 return datagrams;
2850}
2851
Dominik Brodowski1255e262018-03-13 20:44:21 +01002852SYSCALL_DEFINE5(recvmmsg, int, fd, struct mmsghdr __user *, mmsg,
2853 unsigned int, vlen, unsigned int, flags,
Arnd Bergmannc2e6c852018-04-18 13:42:25 +02002854 struct __kernel_timespec __user *, timeout)
Dominik Brodowski1255e262018-03-13 20:44:21 +01002855{
Arnd Bergmanne11d4282018-04-18 13:43:52 +02002856 if (flags & MSG_CMSG_COMPAT)
2857 return -EINVAL;
2858
2859 return __sys_recvmmsg(fd, mmsg, vlen, flags, timeout, NULL);
Dominik Brodowski1255e262018-03-13 20:44:21 +01002860}
2861
Arnd Bergmanne11d4282018-04-18 13:43:52 +02002862#ifdef CONFIG_COMPAT_32BIT_TIME
2863SYSCALL_DEFINE5(recvmmsg_time32, int, fd, struct mmsghdr __user *, mmsg,
2864 unsigned int, vlen, unsigned int, flags,
2865 struct old_timespec32 __user *, timeout)
2866{
2867 if (flags & MSG_CMSG_COMPAT)
2868 return -EINVAL;
2869
2870 return __sys_recvmmsg(fd, mmsg, vlen, flags, NULL, timeout);
2871}
2872#endif
2873
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002874#ifdef __ARCH_WANT_SYS_SOCKETCALL
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875/* Argument list sizes for sys_socketcall */
2876#define AL(x) ((x) * sizeof(unsigned long))
Anton Blanchard228e5482011-05-02 20:21:35 +00002877static const unsigned char nargs[21] = {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002878 AL(0), AL(3), AL(3), AL(3), AL(2), AL(3),
2879 AL(3), AL(3), AL(4), AL(4), AL(4), AL(6),
2880 AL(6), AL(2), AL(5), AL(5), AL(3), AL(3),
Anton Blanchard228e5482011-05-02 20:21:35 +00002881 AL(4), AL(5), AL(4)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002882};
2883
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884#undef AL
2885
2886/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002887 * System call vectors.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888 *
2889 * Argument checking cleaned up. Saved 20% in size.
2890 * This function doesn't need to set the kernel lock because
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002891 * it is set by the callees.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892 */
2893
Heiko Carstens3e0fa652009-01-14 14:14:24 +01002894SYSCALL_DEFINE2(socketcall, int, call, unsigned long __user *, args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895{
Chen Gang2950fa92013-04-07 16:55:23 +08002896 unsigned long a[AUDITSC_ARGS];
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002897 unsigned long a0, a1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898 int err;
Arjan van de Ven47379052009-09-28 12:57:44 -07002899 unsigned int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900
Anton Blanchard228e5482011-05-02 20:21:35 +00002901 if (call < 1 || call > SYS_SENDMMSG)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902 return -EINVAL;
Jeremy Clinec8e8cd52018-07-27 22:43:01 +00002903 call = array_index_nospec(call, SYS_SENDMMSG + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904
Arjan van de Ven47379052009-09-28 12:57:44 -07002905 len = nargs[call];
2906 if (len > sizeof(a))
2907 return -EINVAL;
2908
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 /* copy_from_user should be SMP safe. */
Arjan van de Ven47379052009-09-28 12:57:44 -07002910 if (copy_from_user(a, args, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911 return -EFAULT;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002912
Chen Gang2950fa92013-04-07 16:55:23 +08002913 err = audit_socketcall(nargs[call] / sizeof(unsigned long), a);
2914 if (err)
2915 return err;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002916
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002917 a0 = a[0];
2918 a1 = a[1];
2919
2920 switch (call) {
2921 case SYS_SOCKET:
Dominik Brodowski9d6a15c2018-03-13 19:29:43 +01002922 err = __sys_socket(a0, a1, a[2]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002923 break;
2924 case SYS_BIND:
Dominik Brodowskia87d35d2018-03-13 19:33:09 +01002925 err = __sys_bind(a0, (struct sockaddr __user *)a1, a[2]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002926 break;
2927 case SYS_CONNECT:
Dominik Brodowski1387c2c2018-03-13 19:35:09 +01002928 err = __sys_connect(a0, (struct sockaddr __user *)a1, a[2]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002929 break;
2930 case SYS_LISTEN:
Dominik Brodowski25e290e2018-03-13 19:36:54 +01002931 err = __sys_listen(a0, a1);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002932 break;
2933 case SYS_ACCEPT:
Dominik Brodowski4541e802018-03-13 19:24:23 +01002934 err = __sys_accept4(a0, (struct sockaddr __user *)a1,
2935 (int __user *)a[2], 0);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002936 break;
2937 case SYS_GETSOCKNAME:
2938 err =
Dominik Brodowski8882a102018-03-13 19:43:14 +01002939 __sys_getsockname(a0, (struct sockaddr __user *)a1,
2940 (int __user *)a[2]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002941 break;
2942 case SYS_GETPEERNAME:
2943 err =
Dominik Brodowskib21c8f82018-03-13 19:47:00 +01002944 __sys_getpeername(a0, (struct sockaddr __user *)a1,
2945 (int __user *)a[2]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002946 break;
2947 case SYS_SOCKETPAIR:
Dominik Brodowski6debc8d2018-03-13 19:49:23 +01002948 err = __sys_socketpair(a0, a1, a[2], (int __user *)a[3]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002949 break;
2950 case SYS_SEND:
Dominik Brodowskif3bf8962018-03-13 19:52:00 +01002951 err = __sys_sendto(a0, (void __user *)a1, a[2], a[3],
2952 NULL, 0);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002953 break;
2954 case SYS_SENDTO:
Dominik Brodowski211b6342018-03-13 19:18:52 +01002955 err = __sys_sendto(a0, (void __user *)a1, a[2], a[3],
2956 (struct sockaddr __user *)a[4], a[5]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002957 break;
2958 case SYS_RECV:
Dominik Brodowskid27e9af2018-03-13 19:54:17 +01002959 err = __sys_recvfrom(a0, (void __user *)a1, a[2], a[3],
2960 NULL, NULL);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002961 break;
2962 case SYS_RECVFROM:
Dominik Brodowski7a09e1e2018-03-13 19:10:06 +01002963 err = __sys_recvfrom(a0, (void __user *)a1, a[2], a[3],
2964 (struct sockaddr __user *)a[4],
2965 (int __user *)a[5]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002966 break;
2967 case SYS_SHUTDOWN:
Dominik Brodowski005a1ae2018-03-13 20:07:05 +01002968 err = __sys_shutdown(a0, a1);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002969 break;
2970 case SYS_SETSOCKOPT:
Dominik Brodowskicc36dca2018-03-13 20:10:59 +01002971 err = __sys_setsockopt(a0, a1, a[2], (char __user *)a[3],
2972 a[4]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002973 break;
2974 case SYS_GETSOCKOPT:
2975 err =
Dominik Brodowski13a2d702018-03-13 20:15:04 +01002976 __sys_getsockopt(a0, a1, a[2], (char __user *)a[3],
2977 (int __user *)a[4]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002978 break;
2979 case SYS_SENDMSG:
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002980 err = __sys_sendmsg(a0, (struct user_msghdr __user *)a1,
2981 a[2], true);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002982 break;
Anton Blanchard228e5482011-05-02 20:21:35 +00002983 case SYS_SENDMMSG:
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002984 err = __sys_sendmmsg(a0, (struct mmsghdr __user *)a1, a[2],
2985 a[3], true);
Anton Blanchard228e5482011-05-02 20:21:35 +00002986 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002987 case SYS_RECVMSG:
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002988 err = __sys_recvmsg(a0, (struct user_msghdr __user *)a1,
2989 a[2], true);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002990 break;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002991 case SYS_RECVMMSG:
Arnd Bergmann3ca47e92019-04-23 17:43:50 +02002992 if (IS_ENABLED(CONFIG_64BIT))
Arnd Bergmanne11d4282018-04-18 13:43:52 +02002993 err = __sys_recvmmsg(a0, (struct mmsghdr __user *)a1,
2994 a[2], a[3],
2995 (struct __kernel_timespec __user *)a[4],
2996 NULL);
2997 else
2998 err = __sys_recvmmsg(a0, (struct mmsghdr __user *)a1,
2999 a[2], a[3], NULL,
3000 (struct old_timespec32 __user *)a[4]);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07003001 break;
Ulrich Drepperde11def2008-11-19 15:36:14 -08003002 case SYS_ACCEPT4:
Dominik Brodowski4541e802018-03-13 19:24:23 +01003003 err = __sys_accept4(a0, (struct sockaddr __user *)a1,
3004 (int __user *)a[2], a[3]);
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07003005 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07003006 default:
3007 err = -EINVAL;
3008 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009 }
3010 return err;
3011}
3012
Stephen Hemminger89bddce2006-09-01 00:19:31 -07003013#endif /* __ARCH_WANT_SYS_SOCKETCALL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014
Stephen Hemminger55737fd2006-09-01 00:23:39 -07003015/**
3016 * sock_register - add a socket protocol handler
3017 * @ops: description of protocol
3018 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019 * This function is called by a protocol handler that wants to
3020 * advertise its address family, and have it linked into the
Masanari Iidae793c0f2014-09-04 23:44:36 +09003021 * socket interface. The value ops->family corresponds to the
Stephen Hemminger55737fd2006-09-01 00:23:39 -07003022 * socket system call protocol family.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023 */
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07003024int sock_register(const struct net_proto_family *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025{
3026 int err;
3027
3028 if (ops->family >= NPROTO) {
Yang Yingliang3410f222014-02-12 17:09:55 +08003029 pr_crit("protocol %d >= NPROTO(%d)\n", ops->family, NPROTO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030 return -ENOBUFS;
3031 }
Stephen Hemminger55737fd2006-09-01 00:23:39 -07003032
3033 spin_lock(&net_family_lock);
Eric Dumazet190683a2010-11-10 10:50:44 +00003034 if (rcu_dereference_protected(net_families[ops->family],
3035 lockdep_is_held(&net_family_lock)))
Stephen Hemminger55737fd2006-09-01 00:23:39 -07003036 err = -EEXIST;
3037 else {
Eric Dumazetcf778b02012-01-12 04:41:32 +00003038 rcu_assign_pointer(net_families[ops->family], ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039 err = 0;
3040 }
Stephen Hemminger55737fd2006-09-01 00:23:39 -07003041 spin_unlock(&net_family_lock);
3042
Yejune Dengfe0bdbd2021-06-21 13:12:25 +08003043 pr_info("NET: Registered %s protocol family\n", pf_family_names[ops->family]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044 return err;
3045}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003046EXPORT_SYMBOL(sock_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047
Stephen Hemminger55737fd2006-09-01 00:23:39 -07003048/**
3049 * sock_unregister - remove a protocol handler
3050 * @family: protocol family to remove
3051 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052 * This function is called by a protocol handler that wants to
3053 * remove its address family, and have it unlinked from the
Stephen Hemminger55737fd2006-09-01 00:23:39 -07003054 * new socket creation.
3055 *
3056 * If protocol handler is a module, then it can use module reference
3057 * counts to protect against new references. If protocol handler is not
3058 * a module then it needs to provide its own protection in
3059 * the ops->create routine.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060 */
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07003061void sock_unregister(int family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062{
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07003063 BUG_ON(family < 0 || family >= NPROTO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064
Stephen Hemminger55737fd2006-09-01 00:23:39 -07003065 spin_lock(&net_family_lock);
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00003066 RCU_INIT_POINTER(net_families[family], NULL);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07003067 spin_unlock(&net_family_lock);
3068
3069 synchronize_rcu();
3070
Yejune Dengfe0bdbd2021-06-21 13:12:25 +08003071 pr_info("NET: Unregistered %s protocol family\n", pf_family_names[family]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003073EXPORT_SYMBOL(sock_unregister);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074
Xin Longbf2ae2e2018-03-10 18:57:50 +08003075bool sock_is_registered(int family)
3076{
Jeremy Cline66b51b02018-08-13 22:23:13 +00003077 return family < NPROTO && rcu_access_pointer(net_families[family]);
Xin Longbf2ae2e2018-03-10 18:57:50 +08003078}
3079
Andi Kleen77d76ea2005-12-22 12:43:42 -08003080static int __init sock_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081{
Nick Pigginb3e19d92011-01-07 17:50:11 +11003082 int err;
Eric W. Biederman2ca794e2012-04-19 13:20:32 +00003083 /*
3084 * Initialize the network sysctl infrastructure.
3085 */
3086 err = net_sysctl_init();
3087 if (err)
3088 goto out;
Nick Pigginb3e19d92011-01-07 17:50:11 +11003089
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07003091 * Initialize skbuff SLAB cache
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092 */
3093 skb_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094
3095 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07003096 * Initialize the protocols module.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097 */
3098
3099 init_inodecache();
Nick Pigginb3e19d92011-01-07 17:50:11 +11003100
3101 err = register_filesystem(&sock_fs_type);
3102 if (err)
Miaohe Lin47260ba2020-08-06 19:54:19 +08003103 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104 sock_mnt = kern_mount(&sock_fs_type);
Nick Pigginb3e19d92011-01-07 17:50:11 +11003105 if (IS_ERR(sock_mnt)) {
3106 err = PTR_ERR(sock_mnt);
3107 goto out_mount;
3108 }
Andi Kleen77d76ea2005-12-22 12:43:42 -08003109
3110 /* The real protocol initialization is performed in later initcalls.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111 */
3112
3113#ifdef CONFIG_NETFILTER
Pablo Neira Ayuso6d11cfd2013-05-22 22:42:36 +00003114 err = netfilter_init();
3115 if (err)
3116 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117#endif
David S. Millercbeb3212005-12-22 12:58:55 -08003118
Daniel Borkmann408eccc2014-04-01 16:20:23 +02003119 ptp_classifier_init();
Richard Cochranc1f19b52010-07-17 08:49:36 +00003120
Nick Pigginb3e19d92011-01-07 17:50:11 +11003121out:
3122 return err;
3123
3124out_mount:
3125 unregister_filesystem(&sock_fs_type);
Nick Pigginb3e19d92011-01-07 17:50:11 +11003126 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127}
3128
Andi Kleen77d76ea2005-12-22 12:43:42 -08003129core_initcall(sock_init); /* early initcall */
3130
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131#ifdef CONFIG_PROC_FS
3132void socket_seq_show(struct seq_file *seq)
3133{
Tonghao Zhang648845a2017-12-14 05:51:58 -08003134 seq_printf(seq, "sockets: used %d\n",
3135 sock_inuse_get(seq->private));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136}
Stephen Hemminger89bddce2006-09-01 00:19:31 -07003137#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138
Arnd Bergmann29c49642021-07-22 16:29:03 +02003139/* Handle the fact that while struct ifreq has the same *layout* on
3140 * 32/64 for everything but ifreq::ifru_ifmap and ifreq::ifru_data,
3141 * which are handled elsewhere, it still has different *size* due to
3142 * ifreq::ifru_ifmap (which is 16 bytes on 32 bit, 24 bytes on 64-bit,
3143 * resulting in struct ifreq being 32 and 40 bytes respectively).
3144 * As a result, if the struct happens to be at the end of a page and
3145 * the next page isn't readable/writable, we get a fault. To prevent
3146 * that, copy back and forth to the full size.
3147 */
3148int get_user_ifreq(struct ifreq *ifr, void __user **ifrdata, void __user *arg)
3149{
3150 if (in_compat_syscall()) {
3151 struct compat_ifreq *ifr32 = (struct compat_ifreq *)ifr;
3152
3153 memset(ifr, 0, sizeof(*ifr));
3154 if (copy_from_user(ifr32, arg, sizeof(*ifr32)))
3155 return -EFAULT;
3156
3157 if (ifrdata)
3158 *ifrdata = compat_ptr(ifr32->ifr_data);
3159
3160 return 0;
3161 }
3162
3163 if (copy_from_user(ifr, arg, sizeof(*ifr)))
3164 return -EFAULT;
3165
3166 if (ifrdata)
3167 *ifrdata = ifr->ifr_data;
3168
3169 return 0;
3170}
3171EXPORT_SYMBOL(get_user_ifreq);
3172
3173int put_user_ifreq(struct ifreq *ifr, void __user *arg)
3174{
3175 size_t size = sizeof(*ifr);
3176
3177 if (in_compat_syscall())
3178 size = sizeof(struct compat_ifreq);
3179
3180 if (copy_to_user(arg, ifr, size))
3181 return -EFAULT;
3182
3183 return 0;
3184}
3185EXPORT_SYMBOL(put_user_ifreq);
3186
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003187#ifdef CONFIG_COMPAT
Arnd Bergmann7a50a242009-11-08 20:57:03 -08003188static int compat_siocwandev(struct net *net, struct compat_ifreq __user *uifr32)
3189{
Arnd Bergmann7a50a242009-11-08 20:57:03 -08003190 compat_uptr_t uptr32;
Al Viro44c02a22017-10-05 12:59:44 -04003191 struct ifreq ifr;
3192 void __user *saved;
3193 int err;
Arnd Bergmann7a50a242009-11-08 20:57:03 -08003194
Arnd Bergmann29c49642021-07-22 16:29:03 +02003195 if (get_user_ifreq(&ifr, NULL, uifr32))
Arnd Bergmann7a50a242009-11-08 20:57:03 -08003196 return -EFAULT;
3197
3198 if (get_user(uptr32, &uifr32->ifr_settings.ifs_ifsu))
3199 return -EFAULT;
3200
Al Viro44c02a22017-10-05 12:59:44 -04003201 saved = ifr.ifr_settings.ifs_ifsu.raw_hdlc;
3202 ifr.ifr_settings.ifs_ifsu.raw_hdlc = compat_ptr(uptr32);
Arnd Bergmann7a50a242009-11-08 20:57:03 -08003203
Arnd Bergmanna554bf92021-07-27 15:45:12 +02003204 err = dev_ioctl(net, SIOCWANDEV, &ifr, NULL, NULL);
Al Viro44c02a22017-10-05 12:59:44 -04003205 if (!err) {
3206 ifr.ifr_settings.ifs_ifsu.raw_hdlc = saved;
Arnd Bergmann29c49642021-07-22 16:29:03 +02003207 if (put_user_ifreq(&ifr, uifr32))
Al Viro44c02a22017-10-05 12:59:44 -04003208 err = -EFAULT;
Joe Perchesccbd6a52010-05-14 10:58:26 +00003209 }
Al Viro44c02a22017-10-05 12:59:44 -04003210 return err;
Arnd Bergmann7a229382009-11-06 23:00:29 -08003211}
3212
Ben Hutchings590d4692013-11-18 17:04:13 +00003213/* Handle ioctls that use ifreq::ifr_data and just need struct ifreq converted */
3214static int compat_ifr_data_ioctl(struct net *net, unsigned int cmd,
Arnd Bergmann6b960182009-11-06 23:10:54 -08003215 struct compat_ifreq __user *u_ifreq32)
Arnd Bergmann7a229382009-11-06 23:00:29 -08003216{
Al Viro44c02a22017-10-05 12:59:44 -04003217 struct ifreq ifreq;
Arnd Bergmanna554bf92021-07-27 15:45:12 +02003218 void __user *data;
Arnd Bergmann7a229382009-11-06 23:00:29 -08003219
Arnd Bergmanna554bf92021-07-27 15:45:12 +02003220 if (get_user_ifreq(&ifreq, &data, u_ifreq32))
Arnd Bergmann7a229382009-11-06 23:00:29 -08003221 return -EFAULT;
Arnd Bergmanna554bf92021-07-27 15:45:12 +02003222 ifreq.ifr_data = data;
Arnd Bergmann7a229382009-11-06 23:00:29 -08003223
Arnd Bergmanna554bf92021-07-27 15:45:12 +02003224 return dev_ioctl(net, cmd, &ifreq, data, NULL);
Johannes Berg37ac39b2019-01-25 22:43:18 +01003225}
3226
Arnd Bergmann7a229382009-11-06 23:00:29 -08003227/* Since old style bridge ioctl's endup using SIOCDEVPRIVATE
3228 * for some operations; this forces use of the newer bridge-utils that
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003229 * use compatible ioctls
Arnd Bergmann7a229382009-11-06 23:00:29 -08003230 */
Arnd Bergmann6b960182009-11-06 23:10:54 -08003231static int old_bridge_ioctl(compat_ulong_t __user *argp)
Arnd Bergmann7a229382009-11-06 23:00:29 -08003232{
Arnd Bergmann6b960182009-11-06 23:10:54 -08003233 compat_ulong_t tmp;
Arnd Bergmann7a229382009-11-06 23:00:29 -08003234
Arnd Bergmann6b960182009-11-06 23:10:54 -08003235 if (get_user(tmp, argp))
Arnd Bergmann7a229382009-11-06 23:00:29 -08003236 return -EFAULT;
3237 if (tmp == BRCTL_GET_VERSION)
3238 return BRCTL_VERSION + 1;
3239 return -EINVAL;
3240}
3241
Arnd Bergmann6b960182009-11-06 23:10:54 -08003242static int compat_sock_ioctl_trans(struct file *file, struct socket *sock,
3243 unsigned int cmd, unsigned long arg)
3244{
3245 void __user *argp = compat_ptr(arg);
3246 struct sock *sk = sock->sk;
3247 struct net *net = sock_net(sk);
Arnd Bergmann7a229382009-11-06 23:00:29 -08003248
Arnd Bergmann6b960182009-11-06 23:10:54 -08003249 if (cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15))
Arnd Bergmann88fc0232021-07-27 15:45:15 +02003250 return sock_ioctl(file, cmd, (unsigned long)argp);
Arnd Bergmann7a229382009-11-06 23:00:29 -08003251
Arnd Bergmann6b960182009-11-06 23:10:54 -08003252 switch (cmd) {
3253 case SIOCSIFBR:
3254 case SIOCGIFBR:
3255 return old_bridge_ioctl(argp);
Arnd Bergmann7a50a242009-11-08 20:57:03 -08003256 case SIOCWANDEV:
3257 return compat_siocwandev(net, argp);
Arnd Bergmann0768e172019-04-17 22:56:11 +02003258 case SIOCGSTAMP_OLD:
3259 case SIOCGSTAMPNS_OLD:
Arnd Bergmannc7cbdbf2019-04-17 22:51:48 +02003260 if (!sock->ops->gettstamp)
3261 return -ENOIOCTLCMD;
Arnd Bergmann0768e172019-04-17 22:56:11 +02003262 return sock->ops->gettstamp(sock, argp, cmd == SIOCGSTAMP_OLD,
Arnd Bergmannc7cbdbf2019-04-17 22:51:48 +02003263 !COMPAT_USE_64BIT_TIME);
3264
Arnd Bergmanndd98d282021-07-22 16:28:59 +02003265 case SIOCETHTOOL:
Ben Hutchings590d4692013-11-18 17:04:13 +00003266 case SIOCBONDSLAVEINFOQUERY:
3267 case SIOCBONDINFOQUERY:
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003268 case SIOCSHWTSTAMP:
Ben Hutchingsfd468c72013-11-14 01:19:29 +00003269 case SIOCGHWTSTAMP:
Ben Hutchings590d4692013-11-18 17:04:13 +00003270 return compat_ifr_data_ioctl(net, cmd, argp);
Arnd Bergmann7a229382009-11-06 23:00:29 -08003271
Arnd Bergmann6b960182009-11-06 23:10:54 -08003272 case FIOSETOWN:
3273 case SIOCSPGRP:
3274 case FIOGETOWN:
3275 case SIOCGPGRP:
3276 case SIOCBRADDBR:
3277 case SIOCBRDELBR:
3278 case SIOCGIFVLAN:
3279 case SIOCSIFVLAN:
Andrey Vaginc62cce22016-10-24 18:29:13 -07003280 case SIOCGSKNS:
Arnd Bergmann0768e172019-04-17 22:56:11 +02003281 case SIOCGSTAMP_NEW:
3282 case SIOCGSTAMPNS_NEW:
Arnd Bergmann876f0bf2021-07-22 16:29:02 +02003283 case SIOCGIFCONF:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003284 return sock_ioctl(file, cmd, arg);
3285
3286 case SIOCGIFFLAGS:
3287 case SIOCSIFFLAGS:
Arnd Bergmann709566d2021-07-22 16:29:00 +02003288 case SIOCGIFMAP:
3289 case SIOCSIFMAP:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003290 case SIOCGIFMETRIC:
3291 case SIOCSIFMETRIC:
3292 case SIOCGIFMTU:
3293 case SIOCSIFMTU:
3294 case SIOCGIFMEM:
3295 case SIOCSIFMEM:
3296 case SIOCGIFHWADDR:
3297 case SIOCSIFHWADDR:
3298 case SIOCADDMULTI:
3299 case SIOCDELMULTI:
3300 case SIOCGIFINDEX:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003301 case SIOCGIFADDR:
3302 case SIOCSIFADDR:
3303 case SIOCSIFHWBROADCAST:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003304 case SIOCDIFADDR:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003305 case SIOCGIFBRDADDR:
3306 case SIOCSIFBRDADDR:
3307 case SIOCGIFDSTADDR:
3308 case SIOCSIFDSTADDR:
3309 case SIOCGIFNETMASK:
3310 case SIOCSIFNETMASK:
3311 case SIOCSIFPFLAGS:
3312 case SIOCGIFPFLAGS:
3313 case SIOCGIFTXQLEN:
3314 case SIOCSIFTXQLEN:
3315 case SIOCBRADDIF:
3316 case SIOCBRDELIF:
Johannes Bergc6c9fee2019-01-25 22:43:19 +01003317 case SIOCGIFNAME:
Arnd Bergmann9177efd2009-11-06 08:09:09 +00003318 case SIOCSIFNAME:
3319 case SIOCGMIIPHY:
3320 case SIOCGMIIREG:
3321 case SIOCSMIIREG:
Al Virof92d4fc2017-09-30 19:32:17 -04003322 case SIOCBONDENSLAVE:
3323 case SIOCBONDRELEASE:
3324 case SIOCBONDSETHWADDR:
3325 case SIOCBONDCHANGEACTIVE:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003326 case SIOCSARP:
3327 case SIOCGARP:
3328 case SIOCDARP:
Arnd Bergmannc7dc5042019-06-03 23:07:12 +02003329 case SIOCOUTQ:
Arnd Bergmann9d7bf412019-06-03 23:06:00 +02003330 case SIOCOUTQNSD:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003331 case SIOCATMARK:
Johannes Berg63ff03a2019-01-25 22:43:17 +01003332 return sock_do_ioctl(net, sock, cmd, arg);
Arnd Bergmann9177efd2009-11-06 08:09:09 +00003333 }
3334
Arnd Bergmann6b960182009-11-06 23:10:54 -08003335 return -ENOIOCTLCMD;
3336}
Arnd Bergmann7a229382009-11-06 23:00:29 -08003337
Eric Dumazet95c96172012-04-15 05:58:06 +00003338static long compat_sock_ioctl(struct file *file, unsigned int cmd,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07003339 unsigned long arg)
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003340{
3341 struct socket *sock = file->private_data;
3342 int ret = -ENOIOCTLCMD;
David S. Miller87de87d2008-06-03 09:14:03 -07003343 struct sock *sk;
3344 struct net *net;
3345
3346 sk = sock->sk;
3347 net = sock_net(sk);
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003348
3349 if (sock->ops->compat_ioctl)
3350 ret = sock->ops->compat_ioctl(sock, cmd, arg);
3351
David S. Miller87de87d2008-06-03 09:14:03 -07003352 if (ret == -ENOIOCTLCMD &&
3353 (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST))
3354 ret = compat_wext_handle_ioctl(net, cmd, arg);
3355
Arnd Bergmann6b960182009-11-06 23:10:54 -08003356 if (ret == -ENOIOCTLCMD)
3357 ret = compat_sock_ioctl_trans(file, sock, cmd, arg);
3358
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003359 return ret;
3360}
3361#endif
3362
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003363/**
3364 * kernel_bind - bind an address to a socket (kernel space)
3365 * @sock: socket
3366 * @addr: address
3367 * @addrlen: length of address
3368 *
3369 * Returns 0 or an error.
3370 */
3371
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003372int kernel_bind(struct socket *sock, struct sockaddr *addr, int addrlen)
3373{
3374 return sock->ops->bind(sock, addr, addrlen);
3375}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003376EXPORT_SYMBOL(kernel_bind);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003377
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003378/**
3379 * kernel_listen - move socket to listening state (kernel space)
3380 * @sock: socket
3381 * @backlog: pending connections queue size
3382 *
3383 * Returns 0 or an error.
3384 */
3385
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003386int kernel_listen(struct socket *sock, int backlog)
3387{
3388 return sock->ops->listen(sock, backlog);
3389}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003390EXPORT_SYMBOL(kernel_listen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003391
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003392/**
3393 * kernel_accept - accept a connection (kernel space)
3394 * @sock: listening socket
3395 * @newsock: new connected socket
3396 * @flags: flags
3397 *
3398 * @flags must be SOCK_CLOEXEC, SOCK_NONBLOCK or 0.
3399 * If it fails, @newsock is guaranteed to be %NULL.
3400 * Returns 0 or an error.
3401 */
3402
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003403int kernel_accept(struct socket *sock, struct socket **newsock, int flags)
3404{
3405 struct sock *sk = sock->sk;
3406 int err;
3407
3408 err = sock_create_lite(sk->sk_family, sk->sk_type, sk->sk_protocol,
3409 newsock);
3410 if (err < 0)
3411 goto done;
3412
David Howellscdfbabf2017-03-09 08:09:05 +00003413 err = sock->ops->accept(sock, *newsock, flags, true);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003414 if (err < 0) {
3415 sock_release(*newsock);
Tony Battersbyfa8705b2007-10-10 21:09:04 -07003416 *newsock = NULL;
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003417 goto done;
3418 }
3419
3420 (*newsock)->ops = sock->ops;
Wei Yongjun1b085342008-12-18 19:35:10 -08003421 __module_get((*newsock)->ops->owner);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003422
3423done:
3424 return err;
3425}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003426EXPORT_SYMBOL(kernel_accept);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003427
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003428/**
3429 * kernel_connect - connect a socket (kernel space)
3430 * @sock: socket
3431 * @addr: address
3432 * @addrlen: address length
3433 * @flags: flags (O_NONBLOCK, ...)
3434 *
Lu Weif1dcffc2021-03-25 11:01:55 +08003435 * For datagram sockets, @addr is the address to which datagrams are sent
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003436 * by default, and the only address from which datagrams are received.
3437 * For stream sockets, attempts to connect to @addr.
3438 * Returns 0 or an error code.
3439 */
3440
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003441int kernel_connect(struct socket *sock, struct sockaddr *addr, int addrlen,
YOSHIFUJI Hideaki4768fbc2007-02-09 23:25:31 +09003442 int flags)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003443{
3444 return sock->ops->connect(sock, addr, addrlen, flags);
3445}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003446EXPORT_SYMBOL(kernel_connect);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003447
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003448/**
3449 * kernel_getsockname - get the address which the socket is bound (kernel space)
3450 * @sock: socket
3451 * @addr: address holder
3452 *
3453 * Fills the @addr pointer with the address which the socket is bound.
3454 * Returns 0 or an error code.
3455 */
3456
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01003457int kernel_getsockname(struct socket *sock, struct sockaddr *addr)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003458{
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01003459 return sock->ops->getname(sock, addr, 0);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003460}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003461EXPORT_SYMBOL(kernel_getsockname);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003462
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003463/**
Miaohe Lin645f0892020-08-27 07:27:49 -04003464 * kernel_getpeername - get the address which the socket is connected (kernel space)
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003465 * @sock: socket
3466 * @addr: address holder
3467 *
3468 * Fills the @addr pointer with the address which the socket is connected.
3469 * Returns 0 or an error code.
3470 */
3471
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01003472int kernel_getpeername(struct socket *sock, struct sockaddr *addr)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003473{
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01003474 return sock->ops->getname(sock, addr, 1);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003475}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003476EXPORT_SYMBOL(kernel_getpeername);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003477
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003478/**
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003479 * kernel_sendpage - send a &page through a socket (kernel space)
3480 * @sock: socket
3481 * @page: page
3482 * @offset: page offset
3483 * @size: total size in bytes
3484 * @flags: flags (MSG_DONTWAIT, ...)
3485 *
3486 * Returns the total amount sent in bytes or an error.
3487 */
3488
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003489int kernel_sendpage(struct socket *sock, struct page *page, int offset,
3490 size_t size, int flags)
3491{
Coly Li7b62d312020-10-02 16:27:29 +08003492 if (sock->ops->sendpage) {
3493 /* Warn in case the improper page to zero-copy send */
3494 WARN_ONCE(!sendpage_ok(page), "improper page for zero-copy send");
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003495 return sock->ops->sendpage(sock, page, offset, size, flags);
Coly Li7b62d312020-10-02 16:27:29 +08003496 }
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003497 return sock_no_sendpage(sock, page, offset, size, flags);
3498}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003499EXPORT_SYMBOL(kernel_sendpage);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003500
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003501/**
3502 * kernel_sendpage_locked - send a &page through the locked sock (kernel space)
3503 * @sk: sock
3504 * @page: page
3505 * @offset: page offset
3506 * @size: total size in bytes
3507 * @flags: flags (MSG_DONTWAIT, ...)
3508 *
3509 * Returns the total amount sent in bytes or an error.
3510 * Caller must hold @sk.
3511 */
3512
Tom Herbert306b13e2017-07-28 16:22:41 -07003513int kernel_sendpage_locked(struct sock *sk, struct page *page, int offset,
3514 size_t size, int flags)
3515{
3516 struct socket *sock = sk->sk_socket;
3517
3518 if (sock->ops->sendpage_locked)
3519 return sock->ops->sendpage_locked(sk, page, offset, size,
3520 flags);
3521
3522 return sock_no_sendpage_locked(sk, page, offset, size, flags);
3523}
3524EXPORT_SYMBOL(kernel_sendpage_locked);
3525
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003526/**
Miaohe Lin645f0892020-08-27 07:27:49 -04003527 * kernel_sock_shutdown - shut down part of a full-duplex connection (kernel space)
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003528 * @sock: socket
3529 * @how: connection part
3530 *
3531 * Returns 0 or an error.
3532 */
3533
Trond Myklebust91cf45f2007-11-12 18:10:39 -08003534int kernel_sock_shutdown(struct socket *sock, enum sock_shutdown_cmd how)
3535{
3536 return sock->ops->shutdown(sock, how);
3537}
Trond Myklebust91cf45f2007-11-12 18:10:39 -08003538EXPORT_SYMBOL(kernel_sock_shutdown);
R. Parameswaran113c3072017-04-05 16:50:35 -07003539
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003540/**
3541 * kernel_sock_ip_overhead - returns the IP overhead imposed by a socket
3542 * @sk: socket
3543 *
3544 * This routine returns the IP overhead imposed by a socket i.e.
3545 * the length of the underlying IP header, depending on whether
3546 * this is an IPv4 or IPv6 socket and the length from IP options turned
3547 * on at the socket. Assumes that the caller has a lock on the socket.
R. Parameswaran113c3072017-04-05 16:50:35 -07003548 */
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003549
R. Parameswaran113c3072017-04-05 16:50:35 -07003550u32 kernel_sock_ip_overhead(struct sock *sk)
3551{
3552 struct inet_sock *inet;
3553 struct ip_options_rcu *opt;
3554 u32 overhead = 0;
R. Parameswaran113c3072017-04-05 16:50:35 -07003555#if IS_ENABLED(CONFIG_IPV6)
3556 struct ipv6_pinfo *np;
3557 struct ipv6_txoptions *optv6 = NULL;
3558#endif /* IS_ENABLED(CONFIG_IPV6) */
3559
3560 if (!sk)
3561 return overhead;
3562
R. Parameswaran113c3072017-04-05 16:50:35 -07003563 switch (sk->sk_family) {
3564 case AF_INET:
3565 inet = inet_sk(sk);
3566 overhead += sizeof(struct iphdr);
3567 opt = rcu_dereference_protected(inet->inet_opt,
stephen hemminger614d79c2017-07-24 10:25:22 -07003568 sock_owned_by_user(sk));
R. Parameswaran113c3072017-04-05 16:50:35 -07003569 if (opt)
3570 overhead += opt->opt.optlen;
3571 return overhead;
3572#if IS_ENABLED(CONFIG_IPV6)
3573 case AF_INET6:
3574 np = inet6_sk(sk);
3575 overhead += sizeof(struct ipv6hdr);
3576 if (np)
3577 optv6 = rcu_dereference_protected(np->opt,
stephen hemminger614d79c2017-07-24 10:25:22 -07003578 sock_owned_by_user(sk));
R. Parameswaran113c3072017-04-05 16:50:35 -07003579 if (optv6)
3580 overhead += (optv6->opt_flen + optv6->opt_nflen);
3581 return overhead;
3582#endif /* IS_ENABLED(CONFIG_IPV6) */
3583 default: /* Returns 0 overhead if the socket is not ipv4 or ipv6 */
3584 return overhead;
3585 }
3586}
3587EXPORT_SYMBOL(kernel_sock_ip_overhead);