blob: ddce6327633ea544f402ddb30f6e2e22a5ab19a4 [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);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001067static int (*br_ioctl_hook) (struct net *, unsigned int cmd, void __user *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068
Eric W. Biederman881d9662007-09-17 11:56:21 -07001069void brioctl_set(int (*hook) (struct net *, unsigned int, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001071 mutex_lock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 br_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001073 mutex_unlock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074}
1075EXPORT_SYMBOL(brioctl_set);
1076
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001077static DEFINE_MUTEX(vlan_ioctl_mutex);
Eric W. Biederman881d9662007-09-17 11:56:21 -07001078static int (*vlan_ioctl_hook) (struct net *, void __user *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
Eric W. Biederman881d9662007-09-17 11:56:21 -07001080void vlan_ioctl_set(int (*hook) (struct net *, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001082 mutex_lock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 vlan_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001084 mutex_unlock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085}
1086EXPORT_SYMBOL(vlan_ioctl_set);
1087
Arnd Bergmann6b960182009-11-06 23:10:54 -08001088static long sock_do_ioctl(struct net *net, struct socket *sock,
Johannes Berg63ff03a2019-01-25 22:43:17 +01001089 unsigned int cmd, unsigned long arg)
Arnd Bergmann6b960182009-11-06 23:10:54 -08001090{
Arnd Bergmann876f0bf2021-07-22 16:29:02 +02001091 struct ifreq ifr;
1092 bool need_copyout;
Arnd Bergmann6b960182009-11-06 23:10:54 -08001093 int err;
1094 void __user *argp = (void __user *)arg;
Arnd Bergmanna554bf92021-07-27 15:45:12 +02001095 void __user *data;
Arnd Bergmann6b960182009-11-06 23:10:54 -08001096
1097 err = sock->ops->ioctl(sock, cmd, arg);
1098
1099 /*
1100 * If this ioctl is unknown try to hand it down
1101 * to the NIC driver.
1102 */
Al Viro36fd6332017-06-26 13:19:16 -04001103 if (err != -ENOIOCTLCMD)
1104 return err;
Arnd Bergmann6b960182009-11-06 23:10:54 -08001105
Arnd Bergmanna554bf92021-07-27 15:45:12 +02001106 if (get_user_ifreq(&ifr, &data, argp))
Arnd Bergmann876f0bf2021-07-22 16:29:02 +02001107 return -EFAULT;
Arnd Bergmanna554bf92021-07-27 15:45:12 +02001108 err = dev_ioctl(net, cmd, &ifr, data, &need_copyout);
Arnd Bergmann876f0bf2021-07-22 16:29:02 +02001109 if (!err && need_copyout)
Arnd Bergmanna554bf92021-07-27 15:45:12 +02001110 if (put_user_ifreq(&ifr, argp))
Al Viro36fd6332017-06-26 13:19:16 -04001111 return -EFAULT;
Arnd Bergmann876f0bf2021-07-22 16:29:02 +02001112
Arnd Bergmann6b960182009-11-06 23:10:54 -08001113 return err;
1114}
1115
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116/*
1117 * With an ioctl, arg may well be a user mode pointer, but we don't know
1118 * what to do with it - that's up to the protocol still.
1119 */
1120
1121static long sock_ioctl(struct file *file, unsigned cmd, unsigned long arg)
1122{
1123 struct socket *sock;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001124 struct sock *sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 void __user *argp = (void __user *)arg;
1126 int pid, err;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001127 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128
Eric Dumazetb69aee02005-09-06 14:42:45 -07001129 sock = file->private_data;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001130 sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001131 net = sock_net(sk);
Al Viro44c02a22017-10-05 12:59:44 -04001132 if (unlikely(cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15))) {
1133 struct ifreq ifr;
Arnd Bergmanna554bf92021-07-27 15:45:12 +02001134 void __user *data;
Al Viro44c02a22017-10-05 12:59:44 -04001135 bool need_copyout;
Arnd Bergmanna554bf92021-07-27 15:45:12 +02001136 if (get_user_ifreq(&ifr, &data, argp))
Al Viro44c02a22017-10-05 12:59:44 -04001137 return -EFAULT;
Arnd Bergmanna554bf92021-07-27 15:45:12 +02001138 err = dev_ioctl(net, cmd, &ifr, data, &need_copyout);
Al Viro44c02a22017-10-05 12:59:44 -04001139 if (!err && need_copyout)
Arnd Bergmanna554bf92021-07-27 15:45:12 +02001140 if (put_user_ifreq(&ifr, argp))
Al Viro44c02a22017-10-05 12:59:44 -04001141 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 } else
Johannes Berg3d23e342009-09-29 23:27:28 +02001143#ifdef CONFIG_WEXT_CORE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 if (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST) {
Al Virob1b0c242017-10-01 20:13:08 -04001145 err = wext_handle_ioctl(net, cmd, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 } else
Johannes Berg3d23e342009-09-29 23:27:28 +02001147#endif
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001148 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 case FIOSETOWN:
1150 case SIOCSPGRP:
1151 err = -EFAULT;
1152 if (get_user(pid, (int __user *)argp))
1153 break;
Jiri Slaby393cc3f2017-06-13 13:35:50 +02001154 err = f_setown(sock->file, pid, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 break;
1156 case FIOGETOWN:
1157 case SIOCGPGRP:
Eric W. Biederman609d7fa2006-10-02 02:17:15 -07001158 err = put_user(f_getown(sock->file),
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001159 (int __user *)argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 break;
1161 case SIOCGIFBR:
1162 case SIOCSIFBR:
1163 case SIOCBRADDBR:
1164 case SIOCBRDELBR:
1165 err = -ENOPKG;
1166 if (!br_ioctl_hook)
1167 request_module("bridge");
1168
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001169 mutex_lock(&br_ioctl_mutex);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001170 if (br_ioctl_hook)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001171 err = br_ioctl_hook(net, cmd, argp);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001172 mutex_unlock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 break;
1174 case SIOCGIFVLAN:
1175 case SIOCSIFVLAN:
1176 err = -ENOPKG;
1177 if (!vlan_ioctl_hook)
1178 request_module("8021q");
1179
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001180 mutex_lock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 if (vlan_ioctl_hook)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001182 err = vlan_ioctl_hook(net, argp);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001183 mutex_unlock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 break;
Andrey Vaginc62cce22016-10-24 18:29:13 -07001185 case SIOCGSKNS:
1186 err = -EPERM;
1187 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
1188 break;
1189
1190 err = open_related_ns(&net->ns, get_net_ns);
1191 break;
Arnd Bergmann0768e172019-04-17 22:56:11 +02001192 case SIOCGSTAMP_OLD:
1193 case SIOCGSTAMPNS_OLD:
Arnd Bergmannc7cbdbf2019-04-17 22:51:48 +02001194 if (!sock->ops->gettstamp) {
1195 err = -ENOIOCTLCMD;
1196 break;
1197 }
1198 err = sock->ops->gettstamp(sock, argp,
Arnd Bergmann0768e172019-04-17 22:56:11 +02001199 cmd == SIOCGSTAMP_OLD,
1200 !IS_ENABLED(CONFIG_64BIT));
Gustavo A. R. Silva60747822019-04-24 10:31:24 -05001201 break;
Arnd Bergmann0768e172019-04-17 22:56:11 +02001202 case SIOCGSTAMP_NEW:
1203 case SIOCGSTAMPNS_NEW:
1204 if (!sock->ops->gettstamp) {
1205 err = -ENOIOCTLCMD;
1206 break;
1207 }
1208 err = sock->ops->gettstamp(sock, argp,
1209 cmd == SIOCGSTAMP_NEW,
1210 false);
Arnd Bergmannc7cbdbf2019-04-17 22:51:48 +02001211 break;
Arnd Bergmann876f0bf2021-07-22 16:29:02 +02001212
1213 case SIOCGIFCONF:
1214 err = dev_ifconf(net, argp);
1215 break;
1216
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 default:
Johannes Berg63ff03a2019-01-25 22:43:17 +01001218 err = sock_do_ioctl(net, sock, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001220 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 return err;
1222}
1223
Pedro Tammela8a3c2452019-03-14 10:45:23 -03001224/**
1225 * sock_create_lite - creates a socket
1226 * @family: protocol family (AF_INET, ...)
1227 * @type: communication type (SOCK_STREAM, ...)
1228 * @protocol: protocol (0, ...)
1229 * @res: new socket
1230 *
1231 * Creates a new socket and assigns it to @res, passing through LSM.
1232 * The new socket initialization is not complete, see kernel_accept().
1233 * Returns 0 or an error. On failure @res is set to %NULL.
1234 * This function internally uses GFP_KERNEL.
1235 */
1236
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237int sock_create_lite(int family, int type, int protocol, struct socket **res)
1238{
1239 int err;
1240 struct socket *sock = NULL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001241
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 err = security_socket_create(family, type, protocol, 1);
1243 if (err)
1244 goto out;
1245
1246 sock = sock_alloc();
1247 if (!sock) {
1248 err = -ENOMEM;
1249 goto out;
1250 }
1251
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 sock->type = type;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001253 err = security_socket_post_create(sock, family, type, protocol, 1);
1254 if (err)
1255 goto out_release;
1256
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257out:
1258 *res = sock;
1259 return err;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001260out_release:
1261 sock_release(sock);
1262 sock = NULL;
1263 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001265EXPORT_SYMBOL(sock_create_lite);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266
1267/* No kernel lock held - perfect */
Al Viroade994f2017-07-03 00:01:49 -04001268static __poll_t sock_poll(struct file *file, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269{
Christoph Hellwig3cafb372018-01-09 16:07:34 +01001270 struct socket *sock = file->private_data;
Christoph Hellwiga331de32018-07-30 09:42:13 +02001271 __poll_t events = poll_requested_events(wait), flag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
Christoph Hellwige88958e2018-06-29 15:37:24 +02001273 if (!sock->ops->poll)
1274 return 0;
Christoph Hellwigf641f13b2018-07-30 09:42:12 +02001275
Christoph Hellwiga331de32018-07-30 09:42:13 +02001276 if (sk_can_busy_loop(sock->sk)) {
1277 /* poll once if requested by the syscall */
1278 if (events & POLL_BUSY_LOOP)
1279 sk_busy_loop(sock->sk, 1);
1280
1281 /* if this socket can poll_ll, tell the system call */
1282 flag = POLL_BUSY_LOOP;
1283 }
1284
1285 return sock->ops->poll(file, sock, wait) | flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286}
1287
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001288static int sock_mmap(struct file *file, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289{
Eric Dumazetb69aee02005-09-06 14:42:45 -07001290 struct socket *sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
1292 return sock->ops->mmap(file, sock, vma);
1293}
1294
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001295static int sock_close(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296{
Cong Wang6d8c50d2018-06-07 13:39:49 -07001297 __sock_release(SOCKET_I(inode), inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 return 0;
1299}
1300
1301/*
1302 * Update the socket async list
1303 *
1304 * Fasync_list locking strategy.
1305 *
1306 * 1. fasync_list is modified only under process context socket lock
1307 * i.e. under semaphore.
1308 * 2. fasync_list is used under read_lock(&sk->sk_callback_lock)
Eric Dumazet989a2972010-04-14 09:55:35 +00001309 * or under socket lock
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 */
1311
1312static int sock_fasync(int fd, struct file *filp, int on)
1313{
Eric Dumazet989a2972010-04-14 09:55:35 +00001314 struct socket *sock = filp->private_data;
1315 struct sock *sk = sock->sk;
Al Viro333f7902019-07-05 20:14:16 +01001316 struct socket_wq *wq = &sock->wq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317
Eric Dumazet989a2972010-04-14 09:55:35 +00001318 if (sk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
1321 lock_sock(sk);
Eric Dumazeteaefd1102011-02-18 03:26:36 +00001322 fasync_helper(fd, filp, on, &wq->fasync_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323
Eric Dumazeteaefd1102011-02-18 03:26:36 +00001324 if (!wq->fasync_list)
Eric Dumazet989a2972010-04-14 09:55:35 +00001325 sock_reset_flag(sk, SOCK_FASYNC);
Jonathan Corbet76398422009-02-01 14:26:59 -07001326 else
Eric Dumazetbcdce712009-10-06 17:28:29 -07001327 sock_set_flag(sk, SOCK_FASYNC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
Eric Dumazet989a2972010-04-14 09:55:35 +00001329 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 return 0;
1331}
1332
Eric Dumazetceb5d582015-11-29 20:03:11 -08001333/* This function may be called only under rcu_lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334
Eric Dumazetceb5d582015-11-29 20:03:11 -08001335int sock_wake_async(struct socket_wq *wq, int how, int band)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336{
Eric Dumazetceb5d582015-11-29 20:03:11 -08001337 if (!wq || !wq->fasync_list)
1338 return -1;
Eric Dumazet43815482010-04-29 11:01:49 +00001339
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001340 switch (how) {
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001341 case SOCK_WAKE_WAITD:
Eric Dumazetceb5d582015-11-29 20:03:11 -08001342 if (test_bit(SOCKWQ_ASYNC_WAITDATA, &wq->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 break;
1344 goto call_kill;
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001345 case SOCK_WAKE_SPACE:
Eric Dumazetceb5d582015-11-29 20:03:11 -08001346 if (!test_and_clear_bit(SOCKWQ_ASYNC_NOSPACE, &wq->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 break;
Miaohe Lin7c7ab582020-08-08 16:23:10 +08001348 fallthrough;
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001349 case SOCK_WAKE_IO:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001350call_kill:
Eric Dumazet43815482010-04-29 11:01:49 +00001351 kill_fasync(&wq->fasync_list, SIGIO, band);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 break;
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001353 case SOCK_WAKE_URG:
Eric Dumazet43815482010-04-29 11:01:49 +00001354 kill_fasync(&wq->fasync_list, SIGURG, band);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 }
Eric Dumazetceb5d582015-11-29 20:03:11 -08001356
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 return 0;
1358}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001359EXPORT_SYMBOL(sock_wake_async);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
Pedro Tammela8a3c2452019-03-14 10:45:23 -03001361/**
1362 * __sock_create - creates a socket
1363 * @net: net namespace
1364 * @family: protocol family (AF_INET, ...)
1365 * @type: communication type (SOCK_STREAM, ...)
1366 * @protocol: protocol (0, ...)
1367 * @res: new socket
1368 * @kern: boolean for kernel space sockets
1369 *
1370 * Creates a new socket and assigns it to @res, passing through LSM.
1371 * Returns 0 or an error. On failure @res is set to %NULL. @kern must
1372 * be set to true if the socket resides in kernel space.
1373 * This function internally uses GFP_KERNEL.
1374 */
1375
Pavel Emelyanov721db932010-09-29 16:06:32 +04001376int __sock_create(struct net *net, int family, int type, int protocol,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001377 struct socket **res, int kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378{
1379 int err;
1380 struct socket *sock;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001381 const struct net_proto_family *pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382
1383 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001384 * Check protocol is in range
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 */
1386 if (family < 0 || family >= NPROTO)
1387 return -EAFNOSUPPORT;
1388 if (type < 0 || type >= SOCK_MAX)
1389 return -EINVAL;
1390
1391 /* Compatibility.
1392
1393 This uglymoron is moved from INET layer to here to avoid
1394 deadlock in module load.
1395 */
1396 if (family == PF_INET && type == SOCK_PACKET) {
liping.zhangf3c98692016-03-11 23:08:36 +08001397 pr_info_once("%s uses obsolete (PF_INET,SOCK_PACKET)\n",
1398 current->comm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 family = PF_PACKET;
1400 }
1401
1402 err = security_socket_create(family, type, protocol, kern);
1403 if (err)
1404 return err;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001405
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001406 /*
1407 * Allocate the socket and allow the family to set things up. if
1408 * the protocol is 0, the family is instructed to select an appropriate
1409 * default.
1410 */
1411 sock = sock_alloc();
1412 if (!sock) {
Joe Perchese87cc472012-05-13 21:56:26 +00001413 net_warn_ratelimited("socket: no more sockets\n");
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001414 return -ENFILE; /* Not exactly a match, but its the
1415 closest posix thing */
1416 }
1417
1418 sock->type = type;
1419
Johannes Berg95a5afc2008-10-16 15:24:51 -07001420#ifdef CONFIG_MODULES
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001421 /* Attempt to load a protocol module if the find failed.
1422 *
1423 * 12/09/1996 Marcin: But! this makes REALLY only sense, if the user
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 * requested real, full-featured networking support upon configuration.
1425 * Otherwise module support will break!
1426 */
Eric Dumazet190683a2010-11-10 10:50:44 +00001427 if (rcu_access_pointer(net_families[family]) == NULL)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001428 request_module("net-pf-%d", family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429#endif
1430
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001431 rcu_read_lock();
1432 pf = rcu_dereference(net_families[family]);
1433 err = -EAFNOSUPPORT;
1434 if (!pf)
1435 goto out_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436
1437 /*
1438 * We will call the ->create function, that possibly is in a loadable
1439 * module, so we have to bump that loadable module refcnt first.
1440 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001441 if (!try_module_get(pf->owner))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 goto out_release;
1443
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001444 /* Now protected by module ref count */
1445 rcu_read_unlock();
1446
Eric Paris3f378b62009-11-05 22:18:14 -08001447 err = pf->create(net, sock, protocol, kern);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001448 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 goto out_module_put;
Frank Filza79af592005-09-27 15:23:38 -07001450
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 /*
1452 * Now to bump the refcnt of the [loadable] module that owns this
1453 * socket at sock_release time we decrement its refcnt.
1454 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001455 if (!try_module_get(sock->ops->owner))
1456 goto out_module_busy;
1457
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 /*
1459 * Now that we're done with the ->create function, the [loadable]
1460 * module can have its refcnt decremented
1461 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001462 module_put(pf->owner);
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001463 err = security_socket_post_create(sock, family, type, protocol, kern);
1464 if (err)
Herbert Xu3b185522007-08-15 14:46:02 -07001465 goto out_sock_release;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001466 *res = sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001468 return 0;
1469
1470out_module_busy:
1471 err = -EAFNOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472out_module_put:
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001473 sock->ops = NULL;
1474 module_put(pf->owner);
1475out_sock_release:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 sock_release(sock);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001477 return err;
1478
1479out_release:
1480 rcu_read_unlock();
1481 goto out_sock_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482}
Pavel Emelyanov721db932010-09-29 16:06:32 +04001483EXPORT_SYMBOL(__sock_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484
Pedro Tammela8a3c2452019-03-14 10:45:23 -03001485/**
1486 * sock_create - creates a socket
1487 * @family: protocol family (AF_INET, ...)
1488 * @type: communication type (SOCK_STREAM, ...)
1489 * @protocol: protocol (0, ...)
1490 * @res: new socket
1491 *
1492 * A wrapper around __sock_create().
1493 * Returns 0 or an error. This function internally uses GFP_KERNEL.
1494 */
1495
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496int sock_create(int family, int type, int protocol, struct socket **res)
1497{
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001498 return __sock_create(current->nsproxy->net_ns, family, type, protocol, res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001500EXPORT_SYMBOL(sock_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501
Pedro Tammela8a3c2452019-03-14 10:45:23 -03001502/**
1503 * sock_create_kern - creates a socket (kernel space)
1504 * @net: net namespace
1505 * @family: protocol family (AF_INET, ...)
1506 * @type: communication type (SOCK_STREAM, ...)
1507 * @protocol: protocol (0, ...)
1508 * @res: new socket
1509 *
1510 * A wrapper around __sock_create().
1511 * Returns 0 or an error. This function internally uses GFP_KERNEL.
1512 */
1513
Eric W. Biedermaneeb1bd52015-05-08 21:08:05 -05001514int sock_create_kern(struct net *net, int family, int type, int protocol, struct socket **res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515{
Eric W. Biedermaneeb1bd52015-05-08 21:08:05 -05001516 return __sock_create(net, family, type, protocol, res, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001518EXPORT_SYMBOL(sock_create_kern);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519
Dominik Brodowski9d6a15c2018-03-13 19:29:43 +01001520int __sys_socket(int family, int type, int protocol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521{
1522 int retval;
1523 struct socket *sock;
Ulrich Dreppera677a032008-07-23 21:29:17 -07001524 int flags;
1525
Ulrich Dreppere38b36f2008-07-23 21:29:42 -07001526 /* Check the SOCK_* constants for consistency. */
1527 BUILD_BUG_ON(SOCK_CLOEXEC != O_CLOEXEC);
1528 BUILD_BUG_ON((SOCK_MAX | SOCK_TYPE_MASK) != SOCK_TYPE_MASK);
1529 BUILD_BUG_ON(SOCK_CLOEXEC & SOCK_TYPE_MASK);
1530 BUILD_BUG_ON(SOCK_NONBLOCK & SOCK_TYPE_MASK);
1531
Ulrich Dreppera677a032008-07-23 21:29:17 -07001532 flags = type & ~SOCK_TYPE_MASK;
Ulrich Drepper77d27202008-07-23 21:29:35 -07001533 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Dreppera677a032008-07-23 21:29:17 -07001534 return -EINVAL;
1535 type &= SOCK_TYPE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001537 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1538 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1539
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 retval = sock_create(family, type, protocol, &sock);
1541 if (retval < 0)
Al Viro8e1611e2017-12-05 23:29:09 +00001542 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543
Al Viro8e1611e2017-12-05 23:29:09 +00001544 return sock_map_fd(sock, flags & (O_CLOEXEC | O_NONBLOCK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545}
1546
Dominik Brodowski9d6a15c2018-03-13 19:29:43 +01001547SYSCALL_DEFINE3(socket, int, family, int, type, int, protocol)
1548{
1549 return __sys_socket(family, type, protocol);
1550}
1551
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552/*
1553 * Create a pair of connected sockets.
1554 */
1555
Dominik Brodowski6debc8d2018-03-13 19:49:23 +01001556int __sys_socketpair(int family, int type, int protocol, int __user *usockvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557{
1558 struct socket *sock1, *sock2;
1559 int fd1, fd2, err;
Al Virodb349502007-02-07 01:48:00 -05001560 struct file *newfile1, *newfile2;
Ulrich Dreppera677a032008-07-23 21:29:17 -07001561 int flags;
1562
1563 flags = type & ~SOCK_TYPE_MASK;
Ulrich Drepper77d27202008-07-23 21:29:35 -07001564 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Dreppera677a032008-07-23 21:29:17 -07001565 return -EINVAL;
1566 type &= SOCK_TYPE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001568 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1569 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1570
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 /*
Al Viro016a2662017-12-05 23:28:38 +00001572 * reserve descriptors and make sure we won't fail
1573 * to return them to userland.
1574 */
1575 fd1 = get_unused_fd_flags(flags);
1576 if (unlikely(fd1 < 0))
1577 return fd1;
1578
1579 fd2 = get_unused_fd_flags(flags);
1580 if (unlikely(fd2 < 0)) {
1581 put_unused_fd(fd1);
1582 return fd2;
1583 }
1584
1585 err = put_user(fd1, &usockvec[0]);
1586 if (err)
1587 goto out;
1588
1589 err = put_user(fd2, &usockvec[1]);
1590 if (err)
1591 goto out;
1592
1593 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 * Obtain the first socket and check if the underlying protocol
1595 * supports the socketpair call.
1596 */
1597
1598 err = sock_create(family, type, protocol, &sock1);
Al Viro016a2662017-12-05 23:28:38 +00001599 if (unlikely(err < 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 goto out;
1601
1602 err = sock_create(family, type, protocol, &sock2);
Al Viro016a2662017-12-05 23:28:38 +00001603 if (unlikely(err < 0)) {
1604 sock_release(sock1);
1605 goto out;
David S. Millerbf3c23d2007-10-29 21:54:02 -07001606 }
Yann Droneaudd73aa282013-12-09 22:42:20 +01001607
David Herrmannd47cd942018-05-04 16:28:20 +02001608 err = security_socket_socketpair(sock1, sock2);
1609 if (unlikely(err)) {
1610 sock_release(sock2);
1611 sock_release(sock1);
1612 goto out;
1613 }
1614
Al Viro016a2662017-12-05 23:28:38 +00001615 err = sock1->ops->socketpair(sock1, sock2);
1616 if (unlikely(err < 0)) {
1617 sock_release(sock2);
1618 sock_release(sock1);
1619 goto out;
Al Viro28407632012-08-17 23:54:15 -04001620 }
1621
Linus Torvaldsaab174f2012-10-02 20:25:04 -07001622 newfile1 = sock_alloc_file(sock1, flags, NULL);
Viresh Kumarb5ffe632015-08-12 15:59:47 +05301623 if (IS_ERR(newfile1)) {
Al Viro28407632012-08-17 23:54:15 -04001624 err = PTR_ERR(newfile1);
Al Viro016a2662017-12-05 23:28:38 +00001625 sock_release(sock2);
1626 goto out;
Al Viro28407632012-08-17 23:54:15 -04001627 }
1628
Linus Torvaldsaab174f2012-10-02 20:25:04 -07001629 newfile2 = sock_alloc_file(sock2, flags, NULL);
Al Viro28407632012-08-17 23:54:15 -04001630 if (IS_ERR(newfile2)) {
1631 err = PTR_ERR(newfile2);
Al Viro016a2662017-12-05 23:28:38 +00001632 fput(newfile1);
1633 goto out;
Al Virodb349502007-02-07 01:48:00 -05001634 }
1635
Al Viro157cf642008-12-14 04:57:47 -05001636 audit_fd_pair(fd1, fd2);
Yann Droneaudd73aa282013-12-09 22:42:20 +01001637
Al Virodb349502007-02-07 01:48:00 -05001638 fd_install(fd1, newfile1);
1639 fd_install(fd2, newfile2);
Yann Droneaudd73aa282013-12-09 22:42:20 +01001640 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642out:
Al Viro016a2662017-12-05 23:28:38 +00001643 put_unused_fd(fd2);
1644 put_unused_fd(fd1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 return err;
1646}
1647
Dominik Brodowski6debc8d2018-03-13 19:49:23 +01001648SYSCALL_DEFINE4(socketpair, int, family, int, type, int, protocol,
1649 int __user *, usockvec)
1650{
1651 return __sys_socketpair(family, type, protocol, usockvec);
1652}
1653
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654/*
1655 * Bind a name to a socket. Nothing much to do here since it's
1656 * the protocol's responsibility to handle the local address.
1657 *
1658 * We move the socket address to kernel space before we call
1659 * the protocol layer (having also checked the address is ok).
1660 */
1661
Dominik Brodowskia87d35d2018-03-13 19:33:09 +01001662int __sys_bind(int fd, struct sockaddr __user *umyaddr, int addrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663{
1664 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001665 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001666 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001668 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001669 if (sock) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001670 err = move_addr_to_kernel(umyaddr, addrlen, &address);
Jakub Sitnicki068b88c2018-10-04 11:09:40 +02001671 if (!err) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001672 err = security_socket_bind(sock,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001673 (struct sockaddr *)&address,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001674 addrlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001675 if (!err)
1676 err = sock->ops->bind(sock,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001677 (struct sockaddr *)
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001678 &address, addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 }
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001680 fput_light(sock->file, fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001681 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 return err;
1683}
1684
Dominik Brodowskia87d35d2018-03-13 19:33:09 +01001685SYSCALL_DEFINE3(bind, int, fd, struct sockaddr __user *, umyaddr, int, addrlen)
1686{
1687 return __sys_bind(fd, umyaddr, addrlen);
1688}
1689
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690/*
1691 * Perform a listen. Basically, we allow the protocol to do anything
1692 * necessary for a listen, and if that works, we mark the socket as
1693 * ready for listening.
1694 */
1695
Dominik Brodowski25e290e2018-03-13 19:36:54 +01001696int __sys_listen(int fd, int backlog)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697{
1698 struct socket *sock;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001699 int err, fput_needed;
Pavel Emelyanovb8e1f9b2007-12-08 00:12:33 -08001700 int somaxconn;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001701
1702 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1703 if (sock) {
Pavel Emelyanov8efa6e92008-03-31 19:41:14 -07001704 somaxconn = sock_net(sock->sk)->core.sysctl_somaxconn;
Eric Dumazet95c96172012-04-15 05:58:06 +00001705 if ((unsigned int)backlog > somaxconn)
Pavel Emelyanovb8e1f9b2007-12-08 00:12:33 -08001706 backlog = somaxconn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707
1708 err = security_socket_listen(sock, backlog);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001709 if (!err)
1710 err = sock->ops->listen(sock, backlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001712 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 }
1714 return err;
1715}
1716
Dominik Brodowski25e290e2018-03-13 19:36:54 +01001717SYSCALL_DEFINE2(listen, int, fd, int, backlog)
1718{
1719 return __sys_listen(fd, backlog);
1720}
1721
Jens Axboede2ea4b2019-10-17 14:41:29 -06001722int __sys_accept4_file(struct file *file, unsigned file_flags,
1723 struct sockaddr __user *upeer_sockaddr,
Jens Axboe09952e32020-03-19 20:16:56 -06001724 int __user *upeer_addrlen, int flags,
1725 unsigned long nofile)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726{
1727 struct socket *sock, *newsock;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001728 struct file *newfile;
Jens Axboede2ea4b2019-10-17 14:41:29 -06001729 int err, len, newfd;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001730 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731
Ulrich Drepper77d27202008-07-23 21:29:35 -07001732 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001733 return -EINVAL;
1734
1735 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1736 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1737
Florent Revestdba4a922020-12-04 12:36:04 +01001738 sock = sock_from_file(file);
1739 if (!sock) {
1740 err = -ENOTSOCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 goto out;
Florent Revestdba4a922020-12-04 12:36:04 +01001742 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743
1744 err = -ENFILE;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001745 newsock = sock_alloc();
1746 if (!newsock)
Jens Axboede2ea4b2019-10-17 14:41:29 -06001747 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748
1749 newsock->type = sock->type;
1750 newsock->ops = sock->ops;
1751
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 /*
1753 * We don't need try_module_get here, as the listening socket (sock)
1754 * has the protocol module (sock->ops->owner) held.
1755 */
1756 __module_get(newsock->ops->owner);
1757
Jens Axboe09952e32020-03-19 20:16:56 -06001758 newfd = __get_unused_fd_flags(flags, nofile);
David S. Miller39d8c1b2006-03-20 17:13:49 -08001759 if (unlikely(newfd < 0)) {
1760 err = newfd;
David S. Miller9a1875e2006-04-01 12:48:36 -08001761 sock_release(newsock);
Jens Axboede2ea4b2019-10-17 14:41:29 -06001762 goto out;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001763 }
Linus Torvaldsaab174f2012-10-02 20:25:04 -07001764 newfile = sock_alloc_file(newsock, flags, sock->sk->sk_prot_creator->name);
Viresh Kumarb5ffe632015-08-12 15:59:47 +05301765 if (IS_ERR(newfile)) {
Al Viro28407632012-08-17 23:54:15 -04001766 err = PTR_ERR(newfile);
1767 put_unused_fd(newfd);
Jens Axboede2ea4b2019-10-17 14:41:29 -06001768 goto out;
Al Viro28407632012-08-17 23:54:15 -04001769 }
David S. Miller39d8c1b2006-03-20 17:13:49 -08001770
Frank Filza79af592005-09-27 15:23:38 -07001771 err = security_socket_accept(sock, newsock);
1772 if (err)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001773 goto out_fd;
Frank Filza79af592005-09-27 15:23:38 -07001774
Jens Axboede2ea4b2019-10-17 14:41:29 -06001775 err = sock->ops->accept(sock, newsock, sock->file->f_flags | file_flags,
1776 false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 if (err < 0)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001778 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779
1780 if (upeer_sockaddr) {
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01001781 len = newsock->ops->getname(newsock,
1782 (struct sockaddr *)&address, 2);
1783 if (len < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 err = -ECONNABORTED;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001785 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 }
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001787 err = move_addr_to_user(&address,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001788 len, upeer_sockaddr, upeer_addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 if (err < 0)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001790 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 }
1792
1793 /* File flags are not inherited via accept() unlike another OSes. */
1794
David S. Miller39d8c1b2006-03-20 17:13:49 -08001795 fd_install(newfd, newfile);
1796 err = newfd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797out:
1798 return err;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001799out_fd:
David S. Miller9606a212006-04-01 01:00:14 -08001800 fput(newfile);
David S. Miller39d8c1b2006-03-20 17:13:49 -08001801 put_unused_fd(newfd);
Jens Axboede2ea4b2019-10-17 14:41:29 -06001802 goto out;
1803
1804}
1805
1806/*
1807 * For accept, we attempt to create a new socket, set up the link
1808 * with the client, wake up the client, then return the new
1809 * connected fd. We collect the address of the connector in kernel
1810 * space and move it to user at the very end. This is unclean because
1811 * we open the socket then return an error.
1812 *
1813 * 1003.1g adds the ability to recvmsg() to query connection pending
1814 * status to recvmsg. We need to add that support in a way thats
1815 * clean when we restructure accept also.
1816 */
1817
1818int __sys_accept4(int fd, struct sockaddr __user *upeer_sockaddr,
1819 int __user *upeer_addrlen, int flags)
1820{
1821 int ret = -EBADF;
1822 struct fd f;
1823
1824 f = fdget(fd);
1825 if (f.file) {
1826 ret = __sys_accept4_file(f.file, 0, upeer_sockaddr,
Jens Axboe09952e32020-03-19 20:16:56 -06001827 upeer_addrlen, flags,
1828 rlimit(RLIMIT_NOFILE));
Miaohe Lin6b07ede2020-08-06 19:52:24 +08001829 fdput(f);
Jens Axboede2ea4b2019-10-17 14:41:29 -06001830 }
1831
1832 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833}
1834
Dominik Brodowski4541e802018-03-13 19:24:23 +01001835SYSCALL_DEFINE4(accept4, int, fd, struct sockaddr __user *, upeer_sockaddr,
1836 int __user *, upeer_addrlen, int, flags)
1837{
1838 return __sys_accept4(fd, upeer_sockaddr, upeer_addrlen, flags);
1839}
1840
Heiko Carstens20f37032009-01-14 14:14:23 +01001841SYSCALL_DEFINE3(accept, int, fd, struct sockaddr __user *, upeer_sockaddr,
1842 int __user *, upeer_addrlen)
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001843{
Dominik Brodowski4541e802018-03-13 19:24:23 +01001844 return __sys_accept4(fd, upeer_sockaddr, upeer_addrlen, 0);
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001845}
1846
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847/*
1848 * Attempt to connect to a socket with the server address. The address
1849 * is in user space so we verify it is OK and move it to kernel space.
1850 *
1851 * For 1003.1g we need to add clean support for a bind to AF_UNSPEC to
1852 * break bindings
1853 *
1854 * NOTE: 1003.1g draft 6.3 is broken with respect to AX.25/NetROM and
1855 * other SEQPACKET protocols that take time to connect() as it doesn't
1856 * include the -EINPROGRESS status for such sockets.
1857 */
1858
Jens Axboef499a022019-12-02 16:28:46 -07001859int __sys_connect_file(struct file *file, struct sockaddr_storage *address,
Jens Axboebd3ded32019-11-23 14:17:16 -07001860 int addrlen, int file_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861{
1862 struct socket *sock;
Jens Axboebd3ded32019-11-23 14:17:16 -07001863 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864
Florent Revestdba4a922020-12-04 12:36:04 +01001865 sock = sock_from_file(file);
1866 if (!sock) {
1867 err = -ENOTSOCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 goto out;
Florent Revestdba4a922020-12-04 12:36:04 +01001869 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001871 err =
Jens Axboef499a022019-12-02 16:28:46 -07001872 security_socket_connect(sock, (struct sockaddr *)address, addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 if (err)
Jens Axboebd3ded32019-11-23 14:17:16 -07001874 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875
Jens Axboef499a022019-12-02 16:28:46 -07001876 err = sock->ops->connect(sock, (struct sockaddr *)address, addrlen,
Jens Axboebd3ded32019-11-23 14:17:16 -07001877 sock->file->f_flags | file_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878out:
1879 return err;
1880}
1881
Jens Axboebd3ded32019-11-23 14:17:16 -07001882int __sys_connect(int fd, struct sockaddr __user *uservaddr, int addrlen)
1883{
1884 int ret = -EBADF;
1885 struct fd f;
1886
1887 f = fdget(fd);
1888 if (f.file) {
Jens Axboef499a022019-12-02 16:28:46 -07001889 struct sockaddr_storage address;
1890
1891 ret = move_addr_to_kernel(uservaddr, addrlen, &address);
1892 if (!ret)
1893 ret = __sys_connect_file(f.file, &address, addrlen, 0);
Miaohe Lin6b07ede2020-08-06 19:52:24 +08001894 fdput(f);
Jens Axboebd3ded32019-11-23 14:17:16 -07001895 }
1896
1897 return ret;
1898}
1899
Dominik Brodowski1387c2c2018-03-13 19:35:09 +01001900SYSCALL_DEFINE3(connect, int, fd, struct sockaddr __user *, uservaddr,
1901 int, addrlen)
1902{
1903 return __sys_connect(fd, uservaddr, addrlen);
1904}
1905
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906/*
1907 * Get the local address ('name') of a socket object. Move the obtained
1908 * name to user space.
1909 */
1910
Dominik Brodowski8882a102018-03-13 19:43:14 +01001911int __sys_getsockname(int fd, struct sockaddr __user *usockaddr,
1912 int __user *usockaddr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913{
1914 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001915 struct sockaddr_storage address;
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01001916 int err, fput_needed;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001917
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001918 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 if (!sock)
1920 goto out;
1921
1922 err = security_socket_getsockname(sock);
1923 if (err)
1924 goto out_put;
1925
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01001926 err = sock->ops->getname(sock, (struct sockaddr *)&address, 0);
1927 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 goto out_put;
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01001929 /* "err" is actually length in this case */
1930 err = move_addr_to_user(&address, err, usockaddr, usockaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931
1932out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001933 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934out:
1935 return err;
1936}
1937
Dominik Brodowski8882a102018-03-13 19:43:14 +01001938SYSCALL_DEFINE3(getsockname, int, fd, struct sockaddr __user *, usockaddr,
1939 int __user *, usockaddr_len)
1940{
1941 return __sys_getsockname(fd, usockaddr, usockaddr_len);
1942}
1943
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944/*
1945 * Get the remote address ('name') of a socket object. Move the obtained
1946 * name to user space.
1947 */
1948
Dominik Brodowskib21c8f82018-03-13 19:47:00 +01001949int __sys_getpeername(int fd, struct sockaddr __user *usockaddr,
1950 int __user *usockaddr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951{
1952 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001953 struct sockaddr_storage address;
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01001954 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001956 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1957 if (sock != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 err = security_socket_getpeername(sock);
1959 if (err) {
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001960 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 return err;
1962 }
1963
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01001964 err = sock->ops->getname(sock, (struct sockaddr *)&address, 1);
1965 if (err >= 0)
1966 /* "err" is actually length in this case */
1967 err = move_addr_to_user(&address, err, usockaddr,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001968 usockaddr_len);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001969 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 }
1971 return err;
1972}
1973
Dominik Brodowskib21c8f82018-03-13 19:47:00 +01001974SYSCALL_DEFINE3(getpeername, int, fd, struct sockaddr __user *, usockaddr,
1975 int __user *, usockaddr_len)
1976{
1977 return __sys_getpeername(fd, usockaddr, usockaddr_len);
1978}
1979
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980/*
1981 * Send a datagram to a given address. We move the address into kernel
1982 * space and check the user space data area is readable before invoking
1983 * the protocol.
1984 */
Dominik Brodowski211b6342018-03-13 19:18:52 +01001985int __sys_sendto(int fd, void __user *buff, size_t len, unsigned int flags,
1986 struct sockaddr __user *addr, int addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987{
1988 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001989 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 int err;
1991 struct msghdr msg;
1992 struct iovec iov;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001993 int fput_needed;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001994
Al Viro602bd0e2015-03-21 19:12:32 -04001995 err = import_single_range(WRITE, buff, len, &iov, &msg.msg_iter);
1996 if (unlikely(err))
1997 return err;
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001998 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1999 if (!sock)
David S. Miller4387ff72007-02-08 15:06:08 -08002000 goto out;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002001
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002002 msg.msg_name = NULL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002003 msg.msg_control = NULL;
2004 msg.msg_controllen = 0;
2005 msg.msg_namelen = 0;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002006 if (addr) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00002007 err = move_addr_to_kernel(addr, addr_len, &address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 if (err < 0)
2009 goto out_put;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07002010 msg.msg_name = (struct sockaddr *)&address;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002011 msg.msg_namelen = addr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 }
2013 if (sock->file->f_flags & O_NONBLOCK)
2014 flags |= MSG_DONTWAIT;
2015 msg.msg_flags = flags;
Al Virod8725c82014-12-11 00:02:50 -05002016 err = sock_sendmsg(sock, &msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002018out_put:
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08002019 fput_light(sock->file, fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08002020out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 return err;
2022}
2023
Dominik Brodowski211b6342018-03-13 19:18:52 +01002024SYSCALL_DEFINE6(sendto, int, fd, void __user *, buff, size_t, len,
2025 unsigned int, flags, struct sockaddr __user *, addr,
2026 int, addr_len)
2027{
2028 return __sys_sendto(fd, buff, len, flags, addr, addr_len);
2029}
2030
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002032 * Send a datagram down a socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 */
2034
Heiko Carstens3e0fa652009-01-14 14:14:24 +01002035SYSCALL_DEFINE4(send, int, fd, void __user *, buff, size_t, len,
Eric Dumazet95c96172012-04-15 05:58:06 +00002036 unsigned int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037{
Dominik Brodowski211b6342018-03-13 19:18:52 +01002038 return __sys_sendto(fd, buff, len, flags, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039}
2040
2041/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002042 * Receive a frame from the socket and optionally record the address of the
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 * sender. We verify the buffers are writable and if needed move the
2044 * sender address from kernel to user space.
2045 */
Dominik Brodowski7a09e1e2018-03-13 19:10:06 +01002046int __sys_recvfrom(int fd, void __user *ubuf, size_t size, unsigned int flags,
2047 struct sockaddr __user *addr, int __user *addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048{
2049 struct socket *sock;
2050 struct iovec iov;
2051 struct msghdr msg;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07002052 struct sockaddr_storage address;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002053 int err, err2;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002054 int fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055
Al Viro602bd0e2015-03-21 19:12:32 -04002056 err = import_single_range(READ, ubuf, size, &iov, &msg.msg_iter);
2057 if (unlikely(err))
2058 return err;
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08002059 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 if (!sock)
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08002061 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002063 msg.msg_control = NULL;
2064 msg.msg_controllen = 0;
Hannes Frederic Sowaf3d33422013-11-21 03:14:22 +01002065 /* Save some cycles and don't copy the address if not needed */
2066 msg.msg_name = addr ? (struct sockaddr *)&address : NULL;
2067 /* We assume all kernel code knows the size of sockaddr_storage */
2068 msg.msg_namelen = 0;
tadeusz.struk@intel.com130ed5d2015-12-15 10:46:17 -08002069 msg.msg_iocb = NULL;
Alexander Potapenko9f138fa2017-03-08 18:08:16 +01002070 msg.msg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 if (sock->file->f_flags & O_NONBLOCK)
2072 flags |= MSG_DONTWAIT;
Al Viro2da62902015-03-14 21:13:46 -04002073 err = sock_recvmsg(sock, &msg, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002075 if (err >= 0 && addr != NULL) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00002076 err2 = move_addr_to_user(&address,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07002077 msg.msg_namelen, addr, addr_len);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002078 if (err2 < 0)
2079 err = err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 }
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08002081
2082 fput_light(sock->file, fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08002083out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 return err;
2085}
2086
Dominik Brodowski7a09e1e2018-03-13 19:10:06 +01002087SYSCALL_DEFINE6(recvfrom, int, fd, void __user *, ubuf, size_t, size,
2088 unsigned int, flags, struct sockaddr __user *, addr,
2089 int __user *, addr_len)
2090{
2091 return __sys_recvfrom(fd, ubuf, size, flags, addr, addr_len);
2092}
2093
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002095 * Receive a datagram from a socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 */
2097
Jan Glauberb7c0ddf2014-04-16 09:32:48 +02002098SYSCALL_DEFINE4(recv, int, fd, void __user *, ubuf, size_t, size,
2099 unsigned int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100{
Dominik Brodowski7a09e1e2018-03-13 19:10:06 +01002101 return __sys_recvfrom(fd, ubuf, size, flags, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102}
2103
Florian Westphal83f0c102020-07-05 01:30:15 +02002104static bool sock_use_custom_sol_socket(const struct socket *sock)
2105{
2106 const struct sock *sk = sock->sk;
2107
2108 /* Use sock->ops->setsockopt() for MPTCP */
2109 return IS_ENABLED(CONFIG_MPTCP) &&
2110 sk->sk_protocol == IPPROTO_MPTCP &&
2111 sk->sk_type == SOCK_STREAM &&
2112 (sk->sk_family == AF_INET || sk->sk_family == AF_INET6);
2113}
2114
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115/*
2116 * Set a socket option. Because we don't know the option lengths we have
2117 * to pass the user mode parameter for the protocols to sort out.
2118 */
Christoph Hellwiga7b75c52020-07-23 08:09:07 +02002119int __sys_setsockopt(int fd, int level, int optname, char __user *user_optval,
Christoph Hellwig55db9c02020-07-17 08:23:15 +02002120 int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121{
Christoph Hellwig519a8a62020-08-10 18:42:14 +02002122 sockptr_t optval = USER_SOCKPTR(user_optval);
Stanislav Fomichev0d01da62019-06-27 13:38:47 -07002123 char *kernel_optval = NULL;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002124 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 struct socket *sock;
2126
2127 if (optlen < 0)
2128 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002129
2130 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Christoph Hellwig4a367292020-07-17 08:23:11 +02002131 if (!sock)
2132 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133
Christoph Hellwig4a367292020-07-17 08:23:11 +02002134 err = security_socket_setsockopt(sock, level, optname);
2135 if (err)
2136 goto out_put;
Stanislav Fomichev0d01da62019-06-27 13:38:47 -07002137
Christoph Hellwig55db9c02020-07-17 08:23:15 +02002138 if (!in_compat_syscall())
2139 err = BPF_CGROUP_RUN_PROG_SETSOCKOPT(sock->sk, &level, &optname,
Christoph Hellwiga7b75c52020-07-23 08:09:07 +02002140 user_optval, &optlen,
Christoph Hellwig55db9c02020-07-17 08:23:15 +02002141 &kernel_optval);
Christoph Hellwig4a367292020-07-17 08:23:11 +02002142 if (err < 0)
2143 goto out_put;
2144 if (err > 0) {
2145 err = 0;
2146 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 }
Christoph Hellwig4a367292020-07-17 08:23:11 +02002148
Christoph Hellwiga7b75c52020-07-23 08:09:07 +02002149 if (kernel_optval)
2150 optval = KERNEL_SOCKPTR(kernel_optval);
Christoph Hellwig4a367292020-07-17 08:23:11 +02002151 if (level == SOL_SOCKET && !sock_use_custom_sol_socket(sock))
Christoph Hellwiga7b75c52020-07-23 08:09:07 +02002152 err = sock_setsockopt(sock, level, optname, optval, optlen);
Christoph Hellwiga44d9e72020-07-17 08:23:31 +02002153 else if (unlikely(!sock->ops->setsockopt))
2154 err = -EOPNOTSUPP;
Christoph Hellwig4a367292020-07-17 08:23:11 +02002155 else
2156 err = sock->ops->setsockopt(sock, level, optname, optval,
2157 optlen);
Christoph Hellwiga7b75c52020-07-23 08:09:07 +02002158 kfree(kernel_optval);
Christoph Hellwig4a367292020-07-17 08:23:11 +02002159out_put:
2160 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 return err;
2162}
2163
Dominik Brodowskicc36dca2018-03-13 20:10:59 +01002164SYSCALL_DEFINE5(setsockopt, int, fd, int, level, int, optname,
2165 char __user *, optval, int, optlen)
2166{
2167 return __sys_setsockopt(fd, level, optname, optval, optlen);
2168}
2169
Stanislav Fomichev9cacf812021-01-15 08:34:59 -08002170INDIRECT_CALLABLE_DECLARE(bool tcp_bpf_bypass_getsockopt(int level,
2171 int optname));
2172
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173/*
2174 * Get a socket option. Because we don't know the option lengths we have
2175 * to pass a user mode parameter for the protocols to sort out.
2176 */
Christoph Hellwig55db9c02020-07-17 08:23:15 +02002177int __sys_getsockopt(int fd, int level, int optname, char __user *optval,
2178 int __user *optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002180 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 struct socket *sock;
Stanislav Fomichev0d01da62019-06-27 13:38:47 -07002182 int max_optlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002184 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Christoph Hellwigd8a9b382020-07-17 08:23:12 +02002185 if (!sock)
2186 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187
Christoph Hellwigd8a9b382020-07-17 08:23:12 +02002188 err = security_socket_getsockopt(sock, level, optname);
2189 if (err)
2190 goto out_put;
Stanislav Fomichev0d01da62019-06-27 13:38:47 -07002191
Christoph Hellwig55db9c02020-07-17 08:23:15 +02002192 if (!in_compat_syscall())
2193 max_optlen = BPF_CGROUP_GETSOCKOPT_MAX_OPTLEN(optlen);
Christoph Hellwigd8a9b382020-07-17 08:23:12 +02002194
2195 if (level == SOL_SOCKET)
2196 err = sock_getsockopt(sock, level, optname, optval, optlen);
Christoph Hellwiga44d9e72020-07-17 08:23:31 +02002197 else if (unlikely(!sock->ops->getsockopt))
2198 err = -EOPNOTSUPP;
Christoph Hellwigd8a9b382020-07-17 08:23:12 +02002199 else
2200 err = sock->ops->getsockopt(sock, level, optname, optval,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002201 optlen);
Stanislav Fomichev0d01da62019-06-27 13:38:47 -07002202
Christoph Hellwig55db9c02020-07-17 08:23:15 +02002203 if (!in_compat_syscall())
2204 err = BPF_CGROUP_RUN_PROG_GETSOCKOPT(sock->sk, level, optname,
2205 optval, optlen, max_optlen,
2206 err);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002207out_put:
Christoph Hellwigd8a9b382020-07-17 08:23:12 +02002208 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 return err;
2210}
2211
Dominik Brodowski13a2d702018-03-13 20:15:04 +01002212SYSCALL_DEFINE5(getsockopt, int, fd, int, level, int, optname,
2213 char __user *, optval, int __user *, optlen)
2214{
2215 return __sys_getsockopt(fd, level, optname, optval, optlen);
2216}
2217
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218/*
2219 * Shutdown a socket.
2220 */
2221
Jens Axboeb713c192020-09-05 11:13:35 -06002222int __sys_shutdown_sock(struct socket *sock, int how)
2223{
2224 int err;
2225
2226 err = security_socket_shutdown(sock, how);
2227 if (!err)
2228 err = sock->ops->shutdown(sock, how);
2229
2230 return err;
2231}
2232
Dominik Brodowski005a1ae2018-03-13 20:07:05 +01002233int __sys_shutdown(int fd, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002235 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 struct socket *sock;
2237
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002238 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2239 if (sock != NULL) {
Jens Axboeb713c192020-09-05 11:13:35 -06002240 err = __sys_shutdown_sock(sock, how);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002241 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 }
2243 return err;
2244}
2245
Dominik Brodowski005a1ae2018-03-13 20:07:05 +01002246SYSCALL_DEFINE2(shutdown, int, fd, int, how)
2247{
2248 return __sys_shutdown(fd, how);
2249}
2250
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002251/* A couple of helpful macros for getting the address of the 32/64 bit
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 * fields which are the same type (int / unsigned) on our platforms.
2253 */
2254#define COMPAT_MSG(msg, member) ((MSG_CMSG_COMPAT & flags) ? &msg##_compat->member : &msg->member)
2255#define COMPAT_NAMELEN(msg) COMPAT_MSG(msg, msg_namelen)
2256#define COMPAT_FLAGS(msg) COMPAT_MSG(msg, msg_flags)
2257
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002258struct used_address {
2259 struct sockaddr_storage name;
2260 unsigned int name_len;
2261};
2262
Jens Axboe0a384ab2020-02-27 08:11:20 -07002263int __copy_msghdr_from_user(struct msghdr *kmsg,
2264 struct user_msghdr __user *umsg,
2265 struct sockaddr __user **save_addr,
2266 struct iovec __user **uiov, size_t *nsegs)
Dan Carpenter1661bf32013-10-03 00:27:20 +03002267{
Al Viroffb07552017-06-27 19:32:04 -04002268 struct user_msghdr msg;
Al Viro08adb7d2014-11-10 20:23:13 -05002269 ssize_t err;
2270
Al Viroffb07552017-06-27 19:32:04 -04002271 if (copy_from_user(&msg, umsg, sizeof(*umsg)))
Dan Carpenter1661bf32013-10-03 00:27:20 +03002272 return -EFAULT;
Matthew Leachdbb490b2014-03-11 11:58:27 +00002273
Christoph Hellwig1f466e12020-05-11 13:59:13 +02002274 kmsg->msg_control_is_user = true;
2275 kmsg->msg_control_user = msg.msg_control;
Al Viroffb07552017-06-27 19:32:04 -04002276 kmsg->msg_controllen = msg.msg_controllen;
2277 kmsg->msg_flags = msg.msg_flags;
2278
2279 kmsg->msg_namelen = msg.msg_namelen;
2280 if (!msg.msg_name)
Ani Sinha6a2a2b32014-09-08 14:49:59 -07002281 kmsg->msg_namelen = 0;
2282
Matthew Leachdbb490b2014-03-11 11:58:27 +00002283 if (kmsg->msg_namelen < 0)
2284 return -EINVAL;
2285
Dan Carpenter1661bf32013-10-03 00:27:20 +03002286 if (kmsg->msg_namelen > sizeof(struct sockaddr_storage))
Dan Carpenterdb31c552013-11-27 15:40:21 +03002287 kmsg->msg_namelen = sizeof(struct sockaddr_storage);
Al Viro08adb7d2014-11-10 20:23:13 -05002288
2289 if (save_addr)
Al Viroffb07552017-06-27 19:32:04 -04002290 *save_addr = msg.msg_name;
Al Viro08adb7d2014-11-10 20:23:13 -05002291
Al Viroffb07552017-06-27 19:32:04 -04002292 if (msg.msg_name && kmsg->msg_namelen) {
Al Viro08adb7d2014-11-10 20:23:13 -05002293 if (!save_addr) {
Paolo Abeni864d9662017-07-21 18:49:45 +02002294 err = move_addr_to_kernel(msg.msg_name,
2295 kmsg->msg_namelen,
Al Viro08adb7d2014-11-10 20:23:13 -05002296 kmsg->msg_name);
2297 if (err < 0)
2298 return err;
2299 }
2300 } else {
2301 kmsg->msg_name = NULL;
2302 kmsg->msg_namelen = 0;
2303 }
2304
Al Viroffb07552017-06-27 19:32:04 -04002305 if (msg.msg_iovlen > UIO_MAXIOV)
Al Viro08adb7d2014-11-10 20:23:13 -05002306 return -EMSGSIZE;
2307
tadeusz.struk@intel.com0345f932015-03-19 12:31:25 -07002308 kmsg->msg_iocb = NULL;
Jens Axboe0a384ab2020-02-27 08:11:20 -07002309 *uiov = msg.msg_iov;
2310 *nsegs = msg.msg_iovlen;
2311 return 0;
2312}
2313
2314static int copy_msghdr_from_user(struct msghdr *kmsg,
2315 struct user_msghdr __user *umsg,
2316 struct sockaddr __user **save_addr,
2317 struct iovec **iov)
2318{
2319 struct user_msghdr msg;
2320 ssize_t err;
2321
2322 err = __copy_msghdr_from_user(kmsg, umsg, save_addr, &msg.msg_iov,
2323 &msg.msg_iovlen);
2324 if (err)
2325 return err;
tadeusz.struk@intel.com0345f932015-03-19 12:31:25 -07002326
Jens Axboe87e5e6d2019-05-14 16:02:22 -06002327 err = import_iovec(save_addr ? READ : WRITE,
Al Viroffb07552017-06-27 19:32:04 -04002328 msg.msg_iov, msg.msg_iovlen,
Al Viroda184282015-03-21 19:29:06 -04002329 UIO_FASTIOV, iov, &kmsg->msg_iter);
Jens Axboe87e5e6d2019-05-14 16:02:22 -06002330 return err < 0 ? err : 0;
Dan Carpenter1661bf32013-10-03 00:27:20 +03002331}
2332
Jens Axboe4257c8c2019-11-25 14:27:34 -07002333static int ____sys_sendmsg(struct socket *sock, struct msghdr *msg_sys,
2334 unsigned int flags, struct used_address *used_address,
2335 unsigned int allowed_msghdr_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336{
Alex Williamsonb9d717a2005-09-26 14:28:02 -07002337 unsigned char ctl[sizeof(struct cmsghdr) + 20]
Amit Kushwaha846cc122016-12-08 18:21:53 +05302338 __aligned(sizeof(__kernel_size_t));
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002339 /* 20 is size of ipv6_pktinfo */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 unsigned char *ctl_buf = ctl;
Al Virod8725c82014-12-11 00:02:50 -05002341 int ctl_len;
Al Viro08adb7d2014-11-10 20:23:13 -05002342 ssize_t err;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002343
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344 err = -ENOBUFS;
2345
Anton Blanchard228e5482011-05-02 20:21:35 +00002346 if (msg_sys->msg_controllen > INT_MAX)
Jens Axboe4257c8c2019-11-25 14:27:34 -07002347 goto out;
Tom Herbert28a94d82016-03-07 14:11:02 -08002348 flags |= (msg_sys->msg_flags & allowed_msghdr_flags);
Anton Blanchard228e5482011-05-02 20:21:35 +00002349 ctl_len = msg_sys->msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 if ((MSG_CMSG_COMPAT & flags) && ctl_len) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002351 err =
Anton Blanchard228e5482011-05-02 20:21:35 +00002352 cmsghdr_from_user_compat_to_kern(msg_sys, sock->sk, ctl,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002353 sizeof(ctl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 if (err)
Jens Axboe4257c8c2019-11-25 14:27:34 -07002355 goto out;
Anton Blanchard228e5482011-05-02 20:21:35 +00002356 ctl_buf = msg_sys->msg_control;
2357 ctl_len = msg_sys->msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 } else if (ctl_len) {
David S. Millerac4340f2017-01-04 13:24:19 -05002359 BUILD_BUG_ON(sizeof(struct cmsghdr) !=
2360 CMSG_ALIGN(sizeof(struct cmsghdr)));
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002361 if (ctl_len > sizeof(ctl)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 ctl_buf = sock_kmalloc(sock->sk, ctl_len, GFP_KERNEL);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002363 if (ctl_buf == NULL)
Jens Axboe4257c8c2019-11-25 14:27:34 -07002364 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 }
2366 err = -EFAULT;
Christoph Hellwig1f466e12020-05-11 13:59:13 +02002367 if (copy_from_user(ctl_buf, msg_sys->msg_control_user, ctl_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368 goto out_freectl;
Anton Blanchard228e5482011-05-02 20:21:35 +00002369 msg_sys->msg_control = ctl_buf;
Christoph Hellwig1f466e12020-05-11 13:59:13 +02002370 msg_sys->msg_control_is_user = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 }
Anton Blanchard228e5482011-05-02 20:21:35 +00002372 msg_sys->msg_flags = flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373
2374 if (sock->file->f_flags & O_NONBLOCK)
Anton Blanchard228e5482011-05-02 20:21:35 +00002375 msg_sys->msg_flags |= MSG_DONTWAIT;
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002376 /*
2377 * If this is sendmmsg() and current destination address is same as
2378 * previously succeeded address, omit asking LSM's decision.
2379 * used_address->name_len is initialized to UINT_MAX so that the first
2380 * destination address never matches.
2381 */
Mathieu Desnoyersbc909d92011-08-24 19:45:03 -07002382 if (used_address && msg_sys->msg_name &&
2383 used_address->name_len == msg_sys->msg_namelen &&
2384 !memcmp(&used_address->name, msg_sys->msg_name,
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002385 used_address->name_len)) {
Al Virod8725c82014-12-11 00:02:50 -05002386 err = sock_sendmsg_nosec(sock, msg_sys);
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002387 goto out_freectl;
2388 }
Al Virod8725c82014-12-11 00:02:50 -05002389 err = sock_sendmsg(sock, msg_sys);
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002390 /*
2391 * If this is sendmmsg() and sending to current destination address was
2392 * successful, remember it.
2393 */
2394 if (used_address && err >= 0) {
2395 used_address->name_len = msg_sys->msg_namelen;
Mathieu Desnoyersbc909d92011-08-24 19:45:03 -07002396 if (msg_sys->msg_name)
2397 memcpy(&used_address->name, msg_sys->msg_name,
2398 used_address->name_len);
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002399 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400
2401out_freectl:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002402 if (ctl_buf != ctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 sock_kfree_s(sock->sk, ctl_buf, ctl_len);
Jens Axboe4257c8c2019-11-25 14:27:34 -07002404out:
2405 return err;
2406}
2407
Jens Axboe03b12302019-12-02 18:50:25 -07002408int sendmsg_copy_msghdr(struct msghdr *msg,
2409 struct user_msghdr __user *umsg, unsigned flags,
2410 struct iovec **iov)
Jens Axboe4257c8c2019-11-25 14:27:34 -07002411{
2412 int err;
2413
2414 if (flags & MSG_CMSG_COMPAT) {
2415 struct compat_msghdr __user *msg_compat;
2416
2417 msg_compat = (struct compat_msghdr __user *) umsg;
2418 err = get_compat_msghdr(msg, msg_compat, NULL, iov);
2419 } else {
2420 err = copy_msghdr_from_user(msg, umsg, NULL, iov);
2421 }
2422 if (err < 0)
2423 return err;
2424
2425 return 0;
2426}
2427
2428static int ___sys_sendmsg(struct socket *sock, struct user_msghdr __user *msg,
2429 struct msghdr *msg_sys, unsigned int flags,
2430 struct used_address *used_address,
2431 unsigned int allowed_msghdr_flags)
2432{
2433 struct sockaddr_storage address;
2434 struct iovec iovstack[UIO_FASTIOV], *iov = iovstack;
2435 ssize_t err;
2436
2437 msg_sys->msg_name = &address;
2438
2439 err = sendmsg_copy_msghdr(msg_sys, msg, flags, &iov);
2440 if (err < 0)
2441 return err;
2442
2443 err = ____sys_sendmsg(sock, msg_sys, flags, used_address,
2444 allowed_msghdr_flags);
Al Viroda184282015-03-21 19:29:06 -04002445 kfree(iov);
Anton Blanchard228e5482011-05-02 20:21:35 +00002446 return err;
2447}
2448
2449/*
2450 * BSD sendmsg interface
2451 */
Jens Axboe03b12302019-12-02 18:50:25 -07002452long __sys_sendmsg_sock(struct socket *sock, struct msghdr *msg,
Jens Axboe0fa03c62019-04-19 13:34:07 -06002453 unsigned int flags)
2454{
Jens Axboe03b12302019-12-02 18:50:25 -07002455 return ____sys_sendmsg(sock, msg, flags, NULL, 0);
Jens Axboe0fa03c62019-04-19 13:34:07 -06002456}
Anton Blanchard228e5482011-05-02 20:21:35 +00002457
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002458long __sys_sendmsg(int fd, struct user_msghdr __user *msg, unsigned int flags,
2459 bool forbid_cmsg_compat)
Anton Blanchard228e5482011-05-02 20:21:35 +00002460{
2461 int fput_needed, err;
2462 struct msghdr msg_sys;
Andy Lutomirski1be374a2013-05-22 14:07:44 -07002463 struct socket *sock;
Anton Blanchard228e5482011-05-02 20:21:35 +00002464
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002465 if (forbid_cmsg_compat && (flags & MSG_CMSG_COMPAT))
2466 return -EINVAL;
2467
Andy Lutomirski1be374a2013-05-22 14:07:44 -07002468 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Anton Blanchard228e5482011-05-02 20:21:35 +00002469 if (!sock)
2470 goto out;
2471
Tom Herbert28a94d82016-03-07 14:11:02 -08002472 err = ___sys_sendmsg(sock, msg, &msg_sys, flags, NULL, 0);
Anton Blanchard228e5482011-05-02 20:21:35 +00002473
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002474 fput_light(sock->file, fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002475out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 return err;
2477}
2478
Al Viro666547f2014-04-06 14:03:05 -04002479SYSCALL_DEFINE3(sendmsg, int, fd, struct user_msghdr __user *, msg, unsigned int, flags)
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002480{
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002481 return __sys_sendmsg(fd, msg, flags, true);
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002482}
2483
Anton Blanchard228e5482011-05-02 20:21:35 +00002484/*
2485 * Linux sendmmsg interface
2486 */
2487
2488int __sys_sendmmsg(int fd, struct mmsghdr __user *mmsg, unsigned int vlen,
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002489 unsigned int flags, bool forbid_cmsg_compat)
Anton Blanchard228e5482011-05-02 20:21:35 +00002490{
2491 int fput_needed, err, datagrams;
2492 struct socket *sock;
2493 struct mmsghdr __user *entry;
2494 struct compat_mmsghdr __user *compat_entry;
2495 struct msghdr msg_sys;
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002496 struct used_address used_address;
Tom Herbertf0922762016-03-07 14:11:03 -08002497 unsigned int oflags = flags;
Anton Blanchard228e5482011-05-02 20:21:35 +00002498
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002499 if (forbid_cmsg_compat && (flags & MSG_CMSG_COMPAT))
2500 return -EINVAL;
2501
Anton Blanchard98382f42011-08-04 14:07:39 +00002502 if (vlen > UIO_MAXIOV)
2503 vlen = UIO_MAXIOV;
Anton Blanchard228e5482011-05-02 20:21:35 +00002504
2505 datagrams = 0;
2506
2507 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2508 if (!sock)
2509 return err;
2510
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002511 used_address.name_len = UINT_MAX;
Anton Blanchard228e5482011-05-02 20:21:35 +00002512 entry = mmsg;
2513 compat_entry = (struct compat_mmsghdr __user *)mmsg;
Anton Blanchard728ffb82011-08-04 14:07:38 +00002514 err = 0;
Tom Herbertf0922762016-03-07 14:11:03 -08002515 flags |= MSG_BATCH;
Anton Blanchard228e5482011-05-02 20:21:35 +00002516
2517 while (datagrams < vlen) {
Tom Herbertf0922762016-03-07 14:11:03 -08002518 if (datagrams == vlen - 1)
2519 flags = oflags;
2520
Anton Blanchard228e5482011-05-02 20:21:35 +00002521 if (MSG_CMSG_COMPAT & flags) {
Al Viro666547f2014-04-06 14:03:05 -04002522 err = ___sys_sendmsg(sock, (struct user_msghdr __user *)compat_entry,
Tom Herbert28a94d82016-03-07 14:11:02 -08002523 &msg_sys, flags, &used_address, MSG_EOR);
Anton Blanchard228e5482011-05-02 20:21:35 +00002524 if (err < 0)
2525 break;
2526 err = __put_user(err, &compat_entry->msg_len);
2527 ++compat_entry;
2528 } else {
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002529 err = ___sys_sendmsg(sock,
Al Viro666547f2014-04-06 14:03:05 -04002530 (struct user_msghdr __user *)entry,
Tom Herbert28a94d82016-03-07 14:11:02 -08002531 &msg_sys, flags, &used_address, MSG_EOR);
Anton Blanchard228e5482011-05-02 20:21:35 +00002532 if (err < 0)
2533 break;
2534 err = put_user(err, &entry->msg_len);
2535 ++entry;
2536 }
2537
2538 if (err)
2539 break;
2540 ++datagrams;
Soheil Hassas Yeganeh30238982016-11-04 15:36:49 -04002541 if (msg_data_left(&msg_sys))
2542 break;
Eric Dumazeta78cb842016-01-08 08:37:20 -08002543 cond_resched();
Anton Blanchard228e5482011-05-02 20:21:35 +00002544 }
2545
Anton Blanchard228e5482011-05-02 20:21:35 +00002546 fput_light(sock->file, fput_needed);
2547
Anton Blanchard728ffb82011-08-04 14:07:38 +00002548 /* We only return an error if no datagrams were able to be sent */
2549 if (datagrams != 0)
Anton Blanchard228e5482011-05-02 20:21:35 +00002550 return datagrams;
2551
Anton Blanchard228e5482011-05-02 20:21:35 +00002552 return err;
2553}
2554
2555SYSCALL_DEFINE4(sendmmsg, int, fd, struct mmsghdr __user *, mmsg,
2556 unsigned int, vlen, unsigned int, flags)
2557{
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002558 return __sys_sendmmsg(fd, mmsg, vlen, flags, true);
Anton Blanchard228e5482011-05-02 20:21:35 +00002559}
2560
Jens Axboe03b12302019-12-02 18:50:25 -07002561int recvmsg_copy_msghdr(struct msghdr *msg,
2562 struct user_msghdr __user *umsg, unsigned flags,
2563 struct sockaddr __user **uaddr,
2564 struct iovec **iov)
Jens Axboe4257c8c2019-11-25 14:27:34 -07002565{
2566 ssize_t err;
2567
2568 if (MSG_CMSG_COMPAT & flags) {
2569 struct compat_msghdr __user *msg_compat;
2570
2571 msg_compat = (struct compat_msghdr __user *) umsg;
2572 err = get_compat_msghdr(msg, msg_compat, uaddr, iov);
2573 } else {
2574 err = copy_msghdr_from_user(msg, umsg, uaddr, iov);
2575 }
2576 if (err < 0)
2577 return err;
2578
2579 return 0;
2580}
2581
2582static int ____sys_recvmsg(struct socket *sock, struct msghdr *msg_sys,
2583 struct user_msghdr __user *msg,
2584 struct sockaddr __user *uaddr,
2585 unsigned int flags, int nosec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002587 struct compat_msghdr __user *msg_compat =
Jens Axboe4257c8c2019-11-25 14:27:34 -07002588 (struct compat_msghdr __user *) msg;
2589 int __user *uaddr_len = COMPAT_NAMELEN(msg);
2590 struct sockaddr_storage addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591 unsigned long cmsg_ptr;
Al Viro2da62902015-03-14 21:13:46 -04002592 int len;
Al Viro08adb7d2014-11-10 20:23:13 -05002593 ssize_t err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594
Al Viro08adb7d2014-11-10 20:23:13 -05002595 msg_sys->msg_name = &addr;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002596 cmsg_ptr = (unsigned long)msg_sys->msg_control;
2597 msg_sys->msg_flags = flags & (MSG_CMSG_CLOEXEC|MSG_CMSG_COMPAT);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002598
Hannes Frederic Sowaf3d33422013-11-21 03:14:22 +01002599 /* We assume all kernel code knows the size of sockaddr_storage */
2600 msg_sys->msg_namelen = 0;
2601
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 if (sock->file->f_flags & O_NONBLOCK)
2603 flags |= MSG_DONTWAIT;
Eric Dumazet1af66222019-12-06 09:38:36 -08002604
2605 if (unlikely(nosec))
2606 err = sock_recvmsg_nosec(sock, msg_sys, flags);
2607 else
2608 err = sock_recvmsg(sock, msg_sys, flags);
2609
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 if (err < 0)
Jens Axboe4257c8c2019-11-25 14:27:34 -07002611 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612 len = err;
2613
2614 if (uaddr != NULL) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00002615 err = move_addr_to_user(&addr,
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002616 msg_sys->msg_namelen, uaddr,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002617 uaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618 if (err < 0)
Jens Axboe4257c8c2019-11-25 14:27:34 -07002619 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 }
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002621 err = __put_user((msg_sys->msg_flags & ~MSG_CMSG_COMPAT),
David S. Miller37f7f422005-09-16 16:51:01 -07002622 COMPAT_FLAGS(msg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623 if (err)
Jens Axboe4257c8c2019-11-25 14:27:34 -07002624 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625 if (MSG_CMSG_COMPAT & flags)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002626 err = __put_user((unsigned long)msg_sys->msg_control - cmsg_ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627 &msg_compat->msg_controllen);
2628 else
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002629 err = __put_user((unsigned long)msg_sys->msg_control - cmsg_ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630 &msg->msg_controllen);
2631 if (err)
Jens Axboe4257c8c2019-11-25 14:27:34 -07002632 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633 err = len;
Jens Axboe4257c8c2019-11-25 14:27:34 -07002634out:
2635 return err;
2636}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637
Jens Axboe4257c8c2019-11-25 14:27:34 -07002638static int ___sys_recvmsg(struct socket *sock, struct user_msghdr __user *msg,
2639 struct msghdr *msg_sys, unsigned int flags, int nosec)
2640{
2641 struct iovec iovstack[UIO_FASTIOV], *iov = iovstack;
2642 /* user mode address pointers */
2643 struct sockaddr __user *uaddr;
2644 ssize_t err;
2645
2646 err = recvmsg_copy_msghdr(msg_sys, msg, flags, &uaddr, &iov);
2647 if (err < 0)
2648 return err;
2649
2650 err = ____sys_recvmsg(sock, msg_sys, msg, uaddr, flags, nosec);
Al Viroda184282015-03-21 19:29:06 -04002651 kfree(iov);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002652 return err;
2653}
2654
2655/*
2656 * BSD recvmsg interface
2657 */
2658
Jens Axboe03b12302019-12-02 18:50:25 -07002659long __sys_recvmsg_sock(struct socket *sock, struct msghdr *msg,
2660 struct user_msghdr __user *umsg,
2661 struct sockaddr __user *uaddr, unsigned int flags)
Jens Axboeaa1fa282019-04-19 13:38:09 -06002662{
Jens Axboe03b12302019-12-02 18:50:25 -07002663 return ____sys_recvmsg(sock, msg, umsg, uaddr, flags, 0);
Jens Axboeaa1fa282019-04-19 13:38:09 -06002664}
2665
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002666long __sys_recvmsg(int fd, struct user_msghdr __user *msg, unsigned int flags,
2667 bool forbid_cmsg_compat)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002668{
2669 int fput_needed, err;
2670 struct msghdr msg_sys;
Andy Lutomirski1be374a2013-05-22 14:07:44 -07002671 struct socket *sock;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002672
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002673 if (forbid_cmsg_compat && (flags & MSG_CMSG_COMPAT))
2674 return -EINVAL;
2675
Andy Lutomirski1be374a2013-05-22 14:07:44 -07002676 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002677 if (!sock)
2678 goto out;
2679
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002680 err = ___sys_recvmsg(sock, msg, &msg_sys, flags, 0);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002681
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002682 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683out:
2684 return err;
2685}
2686
Al Viro666547f2014-04-06 14:03:05 -04002687SYSCALL_DEFINE3(recvmsg, int, fd, struct user_msghdr __user *, msg,
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002688 unsigned int, flags)
2689{
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002690 return __sys_recvmsg(fd, msg, flags, true);
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002691}
2692
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002693/*
2694 * Linux recvmmsg interface
2695 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696
Arnd Bergmanne11d4282018-04-18 13:43:52 +02002697static int do_recvmmsg(int fd, struct mmsghdr __user *mmsg,
2698 unsigned int vlen, unsigned int flags,
2699 struct timespec64 *timeout)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002700{
2701 int fput_needed, err, datagrams;
2702 struct socket *sock;
2703 struct mmsghdr __user *entry;
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002704 struct compat_mmsghdr __user *compat_entry;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002705 struct msghdr msg_sys;
Deepa Dinamani766b9f92016-05-19 17:09:05 -07002706 struct timespec64 end_time;
2707 struct timespec64 timeout64;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002708
2709 if (timeout &&
2710 poll_select_set_timeout(&end_time, timeout->tv_sec,
2711 timeout->tv_nsec))
2712 return -EINVAL;
2713
2714 datagrams = 0;
2715
2716 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2717 if (!sock)
2718 return err;
2719
Soheil Hassas Yeganeh7797dc42018-02-27 18:22:40 -05002720 if (likely(!(flags & MSG_ERRQUEUE))) {
2721 err = sock_error(sock->sk);
2722 if (err) {
2723 datagrams = err;
2724 goto out_put;
2725 }
Maxime Jayate623a9e2017-02-21 18:35:51 +01002726 }
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002727
2728 entry = mmsg;
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002729 compat_entry = (struct compat_mmsghdr __user *)mmsg;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002730
2731 while (datagrams < vlen) {
2732 /*
2733 * No need to ask LSM for more than the first datagram.
2734 */
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002735 if (MSG_CMSG_COMPAT & flags) {
Al Viro666547f2014-04-06 14:03:05 -04002736 err = ___sys_recvmsg(sock, (struct user_msghdr __user *)compat_entry,
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002737 &msg_sys, flags & ~MSG_WAITFORONE,
2738 datagrams);
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002739 if (err < 0)
2740 break;
2741 err = __put_user(err, &compat_entry->msg_len);
2742 ++compat_entry;
2743 } else {
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002744 err = ___sys_recvmsg(sock,
Al Viro666547f2014-04-06 14:03:05 -04002745 (struct user_msghdr __user *)entry,
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002746 &msg_sys, flags & ~MSG_WAITFORONE,
2747 datagrams);
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002748 if (err < 0)
2749 break;
2750 err = put_user(err, &entry->msg_len);
2751 ++entry;
2752 }
2753
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002754 if (err)
2755 break;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002756 ++datagrams;
2757
Brandon L Black71c5c1592010-03-26 16:18:03 +00002758 /* MSG_WAITFORONE turns on MSG_DONTWAIT after one packet */
2759 if (flags & MSG_WAITFORONE)
2760 flags |= MSG_DONTWAIT;
2761
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002762 if (timeout) {
Deepa Dinamani766b9f92016-05-19 17:09:05 -07002763 ktime_get_ts64(&timeout64);
Arnd Bergmannc2e6c852018-04-18 13:42:25 +02002764 *timeout = timespec64_sub(end_time, timeout64);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002765 if (timeout->tv_sec < 0) {
2766 timeout->tv_sec = timeout->tv_nsec = 0;
2767 break;
2768 }
2769
2770 /* Timeout, return less than vlen datagrams */
2771 if (timeout->tv_nsec == 0 && timeout->tv_sec == 0)
2772 break;
2773 }
2774
2775 /* Out of band data, return right away */
2776 if (msg_sys.msg_flags & MSG_OOB)
2777 break;
Eric Dumazeta78cb842016-01-08 08:37:20 -08002778 cond_resched();
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002779 }
2780
Arnaldo Carvalho de Melo34b88a62016-03-14 09:56:35 -03002781 if (err == 0)
2782 goto out_put;
2783
2784 if (datagrams == 0) {
2785 datagrams = err;
2786 goto out_put;
2787 }
2788
2789 /*
2790 * We may return less entries than requested (vlen) if the
2791 * sock is non block and there aren't enough datagrams...
2792 */
2793 if (err != -EAGAIN) {
2794 /*
2795 * ... or if recvmsg returns an error after we
2796 * received some datagrams, where we record the
2797 * error to return on the next call or if the
2798 * app asks about it using getsockopt(SO_ERROR).
2799 */
2800 sock->sk->sk_err = -err;
2801 }
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002802out_put:
2803 fput_light(sock->file, fput_needed);
2804
Arnaldo Carvalho de Melo34b88a62016-03-14 09:56:35 -03002805 return datagrams;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002806}
2807
Arnd Bergmanne11d4282018-04-18 13:43:52 +02002808int __sys_recvmmsg(int fd, struct mmsghdr __user *mmsg,
2809 unsigned int vlen, unsigned int flags,
2810 struct __kernel_timespec __user *timeout,
2811 struct old_timespec32 __user *timeout32)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002812{
2813 int datagrams;
Arnd Bergmannc2e6c852018-04-18 13:42:25 +02002814 struct timespec64 timeout_sys;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002815
Arnd Bergmanne11d4282018-04-18 13:43:52 +02002816 if (timeout && get_timespec64(&timeout_sys, timeout))
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002817 return -EFAULT;
2818
Arnd Bergmanne11d4282018-04-18 13:43:52 +02002819 if (timeout32 && get_old_timespec32(&timeout_sys, timeout32))
2820 return -EFAULT;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002821
Arnd Bergmanne11d4282018-04-18 13:43:52 +02002822 if (!timeout && !timeout32)
2823 return do_recvmmsg(fd, mmsg, vlen, flags, NULL);
2824
2825 datagrams = do_recvmmsg(fd, mmsg, vlen, flags, &timeout_sys);
2826
2827 if (datagrams <= 0)
2828 return datagrams;
2829
2830 if (timeout && put_timespec64(&timeout_sys, timeout))
2831 datagrams = -EFAULT;
2832
2833 if (timeout32 && put_old_timespec32(&timeout_sys, timeout32))
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002834 datagrams = -EFAULT;
2835
2836 return datagrams;
2837}
2838
Dominik Brodowski1255e262018-03-13 20:44:21 +01002839SYSCALL_DEFINE5(recvmmsg, int, fd, struct mmsghdr __user *, mmsg,
2840 unsigned int, vlen, unsigned int, flags,
Arnd Bergmannc2e6c852018-04-18 13:42:25 +02002841 struct __kernel_timespec __user *, timeout)
Dominik Brodowski1255e262018-03-13 20:44:21 +01002842{
Arnd Bergmanne11d4282018-04-18 13:43:52 +02002843 if (flags & MSG_CMSG_COMPAT)
2844 return -EINVAL;
2845
2846 return __sys_recvmmsg(fd, mmsg, vlen, flags, timeout, NULL);
Dominik Brodowski1255e262018-03-13 20:44:21 +01002847}
2848
Arnd Bergmanne11d4282018-04-18 13:43:52 +02002849#ifdef CONFIG_COMPAT_32BIT_TIME
2850SYSCALL_DEFINE5(recvmmsg_time32, int, fd, struct mmsghdr __user *, mmsg,
2851 unsigned int, vlen, unsigned int, flags,
2852 struct old_timespec32 __user *, timeout)
2853{
2854 if (flags & MSG_CMSG_COMPAT)
2855 return -EINVAL;
2856
2857 return __sys_recvmmsg(fd, mmsg, vlen, flags, NULL, timeout);
2858}
2859#endif
2860
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002861#ifdef __ARCH_WANT_SYS_SOCKETCALL
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862/* Argument list sizes for sys_socketcall */
2863#define AL(x) ((x) * sizeof(unsigned long))
Anton Blanchard228e5482011-05-02 20:21:35 +00002864static const unsigned char nargs[21] = {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002865 AL(0), AL(3), AL(3), AL(3), AL(2), AL(3),
2866 AL(3), AL(3), AL(4), AL(4), AL(4), AL(6),
2867 AL(6), AL(2), AL(5), AL(5), AL(3), AL(3),
Anton Blanchard228e5482011-05-02 20:21:35 +00002868 AL(4), AL(5), AL(4)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002869};
2870
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871#undef AL
2872
2873/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002874 * System call vectors.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875 *
2876 * Argument checking cleaned up. Saved 20% in size.
2877 * This function doesn't need to set the kernel lock because
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002878 * it is set by the callees.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879 */
2880
Heiko Carstens3e0fa652009-01-14 14:14:24 +01002881SYSCALL_DEFINE2(socketcall, int, call, unsigned long __user *, args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882{
Chen Gang2950fa92013-04-07 16:55:23 +08002883 unsigned long a[AUDITSC_ARGS];
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002884 unsigned long a0, a1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885 int err;
Arjan van de Ven47379052009-09-28 12:57:44 -07002886 unsigned int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887
Anton Blanchard228e5482011-05-02 20:21:35 +00002888 if (call < 1 || call > SYS_SENDMMSG)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889 return -EINVAL;
Jeremy Clinec8e8cd52018-07-27 22:43:01 +00002890 call = array_index_nospec(call, SYS_SENDMMSG + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891
Arjan van de Ven47379052009-09-28 12:57:44 -07002892 len = nargs[call];
2893 if (len > sizeof(a))
2894 return -EINVAL;
2895
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 /* copy_from_user should be SMP safe. */
Arjan van de Ven47379052009-09-28 12:57:44 -07002897 if (copy_from_user(a, args, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898 return -EFAULT;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002899
Chen Gang2950fa92013-04-07 16:55:23 +08002900 err = audit_socketcall(nargs[call] / sizeof(unsigned long), a);
2901 if (err)
2902 return err;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002903
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002904 a0 = a[0];
2905 a1 = a[1];
2906
2907 switch (call) {
2908 case SYS_SOCKET:
Dominik Brodowski9d6a15c2018-03-13 19:29:43 +01002909 err = __sys_socket(a0, a1, a[2]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002910 break;
2911 case SYS_BIND:
Dominik Brodowskia87d35d2018-03-13 19:33:09 +01002912 err = __sys_bind(a0, (struct sockaddr __user *)a1, a[2]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002913 break;
2914 case SYS_CONNECT:
Dominik Brodowski1387c2c2018-03-13 19:35:09 +01002915 err = __sys_connect(a0, (struct sockaddr __user *)a1, a[2]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002916 break;
2917 case SYS_LISTEN:
Dominik Brodowski25e290e2018-03-13 19:36:54 +01002918 err = __sys_listen(a0, a1);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002919 break;
2920 case SYS_ACCEPT:
Dominik Brodowski4541e802018-03-13 19:24:23 +01002921 err = __sys_accept4(a0, (struct sockaddr __user *)a1,
2922 (int __user *)a[2], 0);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002923 break;
2924 case SYS_GETSOCKNAME:
2925 err =
Dominik Brodowski8882a102018-03-13 19:43:14 +01002926 __sys_getsockname(a0, (struct sockaddr __user *)a1,
2927 (int __user *)a[2]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002928 break;
2929 case SYS_GETPEERNAME:
2930 err =
Dominik Brodowskib21c8f82018-03-13 19:47:00 +01002931 __sys_getpeername(a0, (struct sockaddr __user *)a1,
2932 (int __user *)a[2]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002933 break;
2934 case SYS_SOCKETPAIR:
Dominik Brodowski6debc8d2018-03-13 19:49:23 +01002935 err = __sys_socketpair(a0, a1, a[2], (int __user *)a[3]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002936 break;
2937 case SYS_SEND:
Dominik Brodowskif3bf8962018-03-13 19:52:00 +01002938 err = __sys_sendto(a0, (void __user *)a1, a[2], a[3],
2939 NULL, 0);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002940 break;
2941 case SYS_SENDTO:
Dominik Brodowski211b6342018-03-13 19:18:52 +01002942 err = __sys_sendto(a0, (void __user *)a1, a[2], a[3],
2943 (struct sockaddr __user *)a[4], a[5]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002944 break;
2945 case SYS_RECV:
Dominik Brodowskid27e9af2018-03-13 19:54:17 +01002946 err = __sys_recvfrom(a0, (void __user *)a1, a[2], a[3],
2947 NULL, NULL);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002948 break;
2949 case SYS_RECVFROM:
Dominik Brodowski7a09e1e2018-03-13 19:10:06 +01002950 err = __sys_recvfrom(a0, (void __user *)a1, a[2], a[3],
2951 (struct sockaddr __user *)a[4],
2952 (int __user *)a[5]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002953 break;
2954 case SYS_SHUTDOWN:
Dominik Brodowski005a1ae2018-03-13 20:07:05 +01002955 err = __sys_shutdown(a0, a1);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002956 break;
2957 case SYS_SETSOCKOPT:
Dominik Brodowskicc36dca2018-03-13 20:10:59 +01002958 err = __sys_setsockopt(a0, a1, a[2], (char __user *)a[3],
2959 a[4]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002960 break;
2961 case SYS_GETSOCKOPT:
2962 err =
Dominik Brodowski13a2d702018-03-13 20:15:04 +01002963 __sys_getsockopt(a0, a1, a[2], (char __user *)a[3],
2964 (int __user *)a[4]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002965 break;
2966 case SYS_SENDMSG:
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002967 err = __sys_sendmsg(a0, (struct user_msghdr __user *)a1,
2968 a[2], true);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002969 break;
Anton Blanchard228e5482011-05-02 20:21:35 +00002970 case SYS_SENDMMSG:
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002971 err = __sys_sendmmsg(a0, (struct mmsghdr __user *)a1, a[2],
2972 a[3], true);
Anton Blanchard228e5482011-05-02 20:21:35 +00002973 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002974 case SYS_RECVMSG:
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002975 err = __sys_recvmsg(a0, (struct user_msghdr __user *)a1,
2976 a[2], true);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002977 break;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002978 case SYS_RECVMMSG:
Arnd Bergmann3ca47e92019-04-23 17:43:50 +02002979 if (IS_ENABLED(CONFIG_64BIT))
Arnd Bergmanne11d4282018-04-18 13:43:52 +02002980 err = __sys_recvmmsg(a0, (struct mmsghdr __user *)a1,
2981 a[2], a[3],
2982 (struct __kernel_timespec __user *)a[4],
2983 NULL);
2984 else
2985 err = __sys_recvmmsg(a0, (struct mmsghdr __user *)a1,
2986 a[2], a[3], NULL,
2987 (struct old_timespec32 __user *)a[4]);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002988 break;
Ulrich Drepperde11def2008-11-19 15:36:14 -08002989 case SYS_ACCEPT4:
Dominik Brodowski4541e802018-03-13 19:24:23 +01002990 err = __sys_accept4(a0, (struct sockaddr __user *)a1,
2991 (int __user *)a[2], a[3]);
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07002992 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002993 default:
2994 err = -EINVAL;
2995 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996 }
2997 return err;
2998}
2999
Stephen Hemminger89bddce2006-09-01 00:19:31 -07003000#endif /* __ARCH_WANT_SYS_SOCKETCALL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001
Stephen Hemminger55737fd2006-09-01 00:23:39 -07003002/**
3003 * sock_register - add a socket protocol handler
3004 * @ops: description of protocol
3005 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006 * This function is called by a protocol handler that wants to
3007 * advertise its address family, and have it linked into the
Masanari Iidae793c0f2014-09-04 23:44:36 +09003008 * socket interface. The value ops->family corresponds to the
Stephen Hemminger55737fd2006-09-01 00:23:39 -07003009 * socket system call protocol family.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010 */
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07003011int sock_register(const struct net_proto_family *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012{
3013 int err;
3014
3015 if (ops->family >= NPROTO) {
Yang Yingliang3410f222014-02-12 17:09:55 +08003016 pr_crit("protocol %d >= NPROTO(%d)\n", ops->family, NPROTO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017 return -ENOBUFS;
3018 }
Stephen Hemminger55737fd2006-09-01 00:23:39 -07003019
3020 spin_lock(&net_family_lock);
Eric Dumazet190683a2010-11-10 10:50:44 +00003021 if (rcu_dereference_protected(net_families[ops->family],
3022 lockdep_is_held(&net_family_lock)))
Stephen Hemminger55737fd2006-09-01 00:23:39 -07003023 err = -EEXIST;
3024 else {
Eric Dumazetcf778b02012-01-12 04:41:32 +00003025 rcu_assign_pointer(net_families[ops->family], ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026 err = 0;
3027 }
Stephen Hemminger55737fd2006-09-01 00:23:39 -07003028 spin_unlock(&net_family_lock);
3029
Yejune Dengfe0bdbd2021-06-21 13:12:25 +08003030 pr_info("NET: Registered %s protocol family\n", pf_family_names[ops->family]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031 return err;
3032}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003033EXPORT_SYMBOL(sock_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034
Stephen Hemminger55737fd2006-09-01 00:23:39 -07003035/**
3036 * sock_unregister - remove a protocol handler
3037 * @family: protocol family to remove
3038 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039 * This function is called by a protocol handler that wants to
3040 * remove its address family, and have it unlinked from the
Stephen Hemminger55737fd2006-09-01 00:23:39 -07003041 * new socket creation.
3042 *
3043 * If protocol handler is a module, then it can use module reference
3044 * counts to protect against new references. If protocol handler is not
3045 * a module then it needs to provide its own protection in
3046 * the ops->create routine.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047 */
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07003048void sock_unregister(int family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049{
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07003050 BUG_ON(family < 0 || family >= NPROTO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051
Stephen Hemminger55737fd2006-09-01 00:23:39 -07003052 spin_lock(&net_family_lock);
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00003053 RCU_INIT_POINTER(net_families[family], NULL);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07003054 spin_unlock(&net_family_lock);
3055
3056 synchronize_rcu();
3057
Yejune Dengfe0bdbd2021-06-21 13:12:25 +08003058 pr_info("NET: Unregistered %s protocol family\n", pf_family_names[family]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003060EXPORT_SYMBOL(sock_unregister);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061
Xin Longbf2ae2e2018-03-10 18:57:50 +08003062bool sock_is_registered(int family)
3063{
Jeremy Cline66b51b02018-08-13 22:23:13 +00003064 return family < NPROTO && rcu_access_pointer(net_families[family]);
Xin Longbf2ae2e2018-03-10 18:57:50 +08003065}
3066
Andi Kleen77d76ea2005-12-22 12:43:42 -08003067static int __init sock_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068{
Nick Pigginb3e19d92011-01-07 17:50:11 +11003069 int err;
Eric W. Biederman2ca794e2012-04-19 13:20:32 +00003070 /*
3071 * Initialize the network sysctl infrastructure.
3072 */
3073 err = net_sysctl_init();
3074 if (err)
3075 goto out;
Nick Pigginb3e19d92011-01-07 17:50:11 +11003076
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07003078 * Initialize skbuff SLAB cache
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079 */
3080 skb_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081
3082 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07003083 * Initialize the protocols module.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084 */
3085
3086 init_inodecache();
Nick Pigginb3e19d92011-01-07 17:50:11 +11003087
3088 err = register_filesystem(&sock_fs_type);
3089 if (err)
Miaohe Lin47260ba2020-08-06 19:54:19 +08003090 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091 sock_mnt = kern_mount(&sock_fs_type);
Nick Pigginb3e19d92011-01-07 17:50:11 +11003092 if (IS_ERR(sock_mnt)) {
3093 err = PTR_ERR(sock_mnt);
3094 goto out_mount;
3095 }
Andi Kleen77d76ea2005-12-22 12:43:42 -08003096
3097 /* The real protocol initialization is performed in later initcalls.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098 */
3099
3100#ifdef CONFIG_NETFILTER
Pablo Neira Ayuso6d11cfd2013-05-22 22:42:36 +00003101 err = netfilter_init();
3102 if (err)
3103 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104#endif
David S. Millercbeb3212005-12-22 12:58:55 -08003105
Daniel Borkmann408eccc2014-04-01 16:20:23 +02003106 ptp_classifier_init();
Richard Cochranc1f19b52010-07-17 08:49:36 +00003107
Nick Pigginb3e19d92011-01-07 17:50:11 +11003108out:
3109 return err;
3110
3111out_mount:
3112 unregister_filesystem(&sock_fs_type);
Nick Pigginb3e19d92011-01-07 17:50:11 +11003113 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114}
3115
Andi Kleen77d76ea2005-12-22 12:43:42 -08003116core_initcall(sock_init); /* early initcall */
3117
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118#ifdef CONFIG_PROC_FS
3119void socket_seq_show(struct seq_file *seq)
3120{
Tonghao Zhang648845a2017-12-14 05:51:58 -08003121 seq_printf(seq, "sockets: used %d\n",
3122 sock_inuse_get(seq->private));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123}
Stephen Hemminger89bddce2006-09-01 00:19:31 -07003124#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125
Arnd Bergmann29c49642021-07-22 16:29:03 +02003126/* Handle the fact that while struct ifreq has the same *layout* on
3127 * 32/64 for everything but ifreq::ifru_ifmap and ifreq::ifru_data,
3128 * which are handled elsewhere, it still has different *size* due to
3129 * ifreq::ifru_ifmap (which is 16 bytes on 32 bit, 24 bytes on 64-bit,
3130 * resulting in struct ifreq being 32 and 40 bytes respectively).
3131 * As a result, if the struct happens to be at the end of a page and
3132 * the next page isn't readable/writable, we get a fault. To prevent
3133 * that, copy back and forth to the full size.
3134 */
3135int get_user_ifreq(struct ifreq *ifr, void __user **ifrdata, void __user *arg)
3136{
3137 if (in_compat_syscall()) {
3138 struct compat_ifreq *ifr32 = (struct compat_ifreq *)ifr;
3139
3140 memset(ifr, 0, sizeof(*ifr));
3141 if (copy_from_user(ifr32, arg, sizeof(*ifr32)))
3142 return -EFAULT;
3143
3144 if (ifrdata)
3145 *ifrdata = compat_ptr(ifr32->ifr_data);
3146
3147 return 0;
3148 }
3149
3150 if (copy_from_user(ifr, arg, sizeof(*ifr)))
3151 return -EFAULT;
3152
3153 if (ifrdata)
3154 *ifrdata = ifr->ifr_data;
3155
3156 return 0;
3157}
3158EXPORT_SYMBOL(get_user_ifreq);
3159
3160int put_user_ifreq(struct ifreq *ifr, void __user *arg)
3161{
3162 size_t size = sizeof(*ifr);
3163
3164 if (in_compat_syscall())
3165 size = sizeof(struct compat_ifreq);
3166
3167 if (copy_to_user(arg, ifr, size))
3168 return -EFAULT;
3169
3170 return 0;
3171}
3172EXPORT_SYMBOL(put_user_ifreq);
3173
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003174#ifdef CONFIG_COMPAT
Arnd Bergmann7a50a242009-11-08 20:57:03 -08003175static int compat_siocwandev(struct net *net, struct compat_ifreq __user *uifr32)
3176{
Arnd Bergmann7a50a242009-11-08 20:57:03 -08003177 compat_uptr_t uptr32;
Al Viro44c02a22017-10-05 12:59:44 -04003178 struct ifreq ifr;
3179 void __user *saved;
3180 int err;
Arnd Bergmann7a50a242009-11-08 20:57:03 -08003181
Arnd Bergmann29c49642021-07-22 16:29:03 +02003182 if (get_user_ifreq(&ifr, NULL, uifr32))
Arnd Bergmann7a50a242009-11-08 20:57:03 -08003183 return -EFAULT;
3184
3185 if (get_user(uptr32, &uifr32->ifr_settings.ifs_ifsu))
3186 return -EFAULT;
3187
Al Viro44c02a22017-10-05 12:59:44 -04003188 saved = ifr.ifr_settings.ifs_ifsu.raw_hdlc;
3189 ifr.ifr_settings.ifs_ifsu.raw_hdlc = compat_ptr(uptr32);
Arnd Bergmann7a50a242009-11-08 20:57:03 -08003190
Arnd Bergmanna554bf92021-07-27 15:45:12 +02003191 err = dev_ioctl(net, SIOCWANDEV, &ifr, NULL, NULL);
Al Viro44c02a22017-10-05 12:59:44 -04003192 if (!err) {
3193 ifr.ifr_settings.ifs_ifsu.raw_hdlc = saved;
Arnd Bergmann29c49642021-07-22 16:29:03 +02003194 if (put_user_ifreq(&ifr, uifr32))
Al Viro44c02a22017-10-05 12:59:44 -04003195 err = -EFAULT;
Joe Perchesccbd6a52010-05-14 10:58:26 +00003196 }
Al Viro44c02a22017-10-05 12:59:44 -04003197 return err;
Arnd Bergmann7a229382009-11-06 23:00:29 -08003198}
3199
Ben Hutchings590d4692013-11-18 17:04:13 +00003200/* Handle ioctls that use ifreq::ifr_data and just need struct ifreq converted */
3201static int compat_ifr_data_ioctl(struct net *net, unsigned int cmd,
Arnd Bergmann6b960182009-11-06 23:10:54 -08003202 struct compat_ifreq __user *u_ifreq32)
Arnd Bergmann7a229382009-11-06 23:00:29 -08003203{
Al Viro44c02a22017-10-05 12:59:44 -04003204 struct ifreq ifreq;
Arnd Bergmanna554bf92021-07-27 15:45:12 +02003205 void __user *data;
Arnd Bergmann7a229382009-11-06 23:00:29 -08003206
Arnd Bergmanna554bf92021-07-27 15:45:12 +02003207 if (get_user_ifreq(&ifreq, &data, u_ifreq32))
Arnd Bergmann7a229382009-11-06 23:00:29 -08003208 return -EFAULT;
Arnd Bergmanna554bf92021-07-27 15:45:12 +02003209 ifreq.ifr_data = data;
Arnd Bergmann7a229382009-11-06 23:00:29 -08003210
Arnd Bergmanna554bf92021-07-27 15:45:12 +02003211 return dev_ioctl(net, cmd, &ifreq, data, NULL);
Johannes Berg37ac39b2019-01-25 22:43:18 +01003212}
3213
Arnd Bergmann7a229382009-11-06 23:00:29 -08003214/* Since old style bridge ioctl's endup using SIOCDEVPRIVATE
3215 * for some operations; this forces use of the newer bridge-utils that
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003216 * use compatible ioctls
Arnd Bergmann7a229382009-11-06 23:00:29 -08003217 */
Arnd Bergmann6b960182009-11-06 23:10:54 -08003218static int old_bridge_ioctl(compat_ulong_t __user *argp)
Arnd Bergmann7a229382009-11-06 23:00:29 -08003219{
Arnd Bergmann6b960182009-11-06 23:10:54 -08003220 compat_ulong_t tmp;
Arnd Bergmann7a229382009-11-06 23:00:29 -08003221
Arnd Bergmann6b960182009-11-06 23:10:54 -08003222 if (get_user(tmp, argp))
Arnd Bergmann7a229382009-11-06 23:00:29 -08003223 return -EFAULT;
3224 if (tmp == BRCTL_GET_VERSION)
3225 return BRCTL_VERSION + 1;
3226 return -EINVAL;
3227}
3228
Arnd Bergmann6b960182009-11-06 23:10:54 -08003229static int compat_sock_ioctl_trans(struct file *file, struct socket *sock,
3230 unsigned int cmd, unsigned long arg)
3231{
3232 void __user *argp = compat_ptr(arg);
3233 struct sock *sk = sock->sk;
3234 struct net *net = sock_net(sk);
Arnd Bergmann7a229382009-11-06 23:00:29 -08003235
Arnd Bergmann6b960182009-11-06 23:10:54 -08003236 if (cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15))
Ben Hutchings590d4692013-11-18 17:04:13 +00003237 return compat_ifr_data_ioctl(net, cmd, argp);
Arnd Bergmann7a229382009-11-06 23:00:29 -08003238
Arnd Bergmann6b960182009-11-06 23:10:54 -08003239 switch (cmd) {
3240 case SIOCSIFBR:
3241 case SIOCGIFBR:
3242 return old_bridge_ioctl(argp);
Arnd Bergmann7a50a242009-11-08 20:57:03 -08003243 case SIOCWANDEV:
3244 return compat_siocwandev(net, argp);
Arnd Bergmann0768e172019-04-17 22:56:11 +02003245 case SIOCGSTAMP_OLD:
3246 case SIOCGSTAMPNS_OLD:
Arnd Bergmannc7cbdbf2019-04-17 22:51:48 +02003247 if (!sock->ops->gettstamp)
3248 return -ENOIOCTLCMD;
Arnd Bergmann0768e172019-04-17 22:56:11 +02003249 return sock->ops->gettstamp(sock, argp, cmd == SIOCGSTAMP_OLD,
Arnd Bergmannc7cbdbf2019-04-17 22:51:48 +02003250 !COMPAT_USE_64BIT_TIME);
3251
Arnd Bergmanndd98d282021-07-22 16:28:59 +02003252 case SIOCETHTOOL:
Ben Hutchings590d4692013-11-18 17:04:13 +00003253 case SIOCBONDSLAVEINFOQUERY:
3254 case SIOCBONDINFOQUERY:
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003255 case SIOCSHWTSTAMP:
Ben Hutchingsfd468c72013-11-14 01:19:29 +00003256 case SIOCGHWTSTAMP:
Ben Hutchings590d4692013-11-18 17:04:13 +00003257 return compat_ifr_data_ioctl(net, cmd, argp);
Arnd Bergmann7a229382009-11-06 23:00:29 -08003258
Arnd Bergmann6b960182009-11-06 23:10:54 -08003259 case FIOSETOWN:
3260 case SIOCSPGRP:
3261 case FIOGETOWN:
3262 case SIOCGPGRP:
3263 case SIOCBRADDBR:
3264 case SIOCBRDELBR:
3265 case SIOCGIFVLAN:
3266 case SIOCSIFVLAN:
Andrey Vaginc62cce22016-10-24 18:29:13 -07003267 case SIOCGSKNS:
Arnd Bergmann0768e172019-04-17 22:56:11 +02003268 case SIOCGSTAMP_NEW:
3269 case SIOCGSTAMPNS_NEW:
Arnd Bergmann876f0bf2021-07-22 16:29:02 +02003270 case SIOCGIFCONF:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003271 return sock_ioctl(file, cmd, arg);
3272
3273 case SIOCGIFFLAGS:
3274 case SIOCSIFFLAGS:
Arnd Bergmann709566d2021-07-22 16:29:00 +02003275 case SIOCGIFMAP:
3276 case SIOCSIFMAP:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003277 case SIOCGIFMETRIC:
3278 case SIOCSIFMETRIC:
3279 case SIOCGIFMTU:
3280 case SIOCSIFMTU:
3281 case SIOCGIFMEM:
3282 case SIOCSIFMEM:
3283 case SIOCGIFHWADDR:
3284 case SIOCSIFHWADDR:
3285 case SIOCADDMULTI:
3286 case SIOCDELMULTI:
3287 case SIOCGIFINDEX:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003288 case SIOCGIFADDR:
3289 case SIOCSIFADDR:
3290 case SIOCSIFHWBROADCAST:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003291 case SIOCDIFADDR:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003292 case SIOCGIFBRDADDR:
3293 case SIOCSIFBRDADDR:
3294 case SIOCGIFDSTADDR:
3295 case SIOCSIFDSTADDR:
3296 case SIOCGIFNETMASK:
3297 case SIOCSIFNETMASK:
3298 case SIOCSIFPFLAGS:
3299 case SIOCGIFPFLAGS:
3300 case SIOCGIFTXQLEN:
3301 case SIOCSIFTXQLEN:
3302 case SIOCBRADDIF:
3303 case SIOCBRDELIF:
Johannes Bergc6c9fee2019-01-25 22:43:19 +01003304 case SIOCGIFNAME:
Arnd Bergmann9177efd2009-11-06 08:09:09 +00003305 case SIOCSIFNAME:
3306 case SIOCGMIIPHY:
3307 case SIOCGMIIREG:
3308 case SIOCSMIIREG:
Al Virof92d4fc2017-09-30 19:32:17 -04003309 case SIOCBONDENSLAVE:
3310 case SIOCBONDRELEASE:
3311 case SIOCBONDSETHWADDR:
3312 case SIOCBONDCHANGEACTIVE:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003313 case SIOCSARP:
3314 case SIOCGARP:
3315 case SIOCDARP:
Arnd Bergmannc7dc5042019-06-03 23:07:12 +02003316 case SIOCOUTQ:
Arnd Bergmann9d7bf412019-06-03 23:06:00 +02003317 case SIOCOUTQNSD:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003318 case SIOCATMARK:
Johannes Berg63ff03a2019-01-25 22:43:17 +01003319 return sock_do_ioctl(net, sock, cmd, arg);
Arnd Bergmann9177efd2009-11-06 08:09:09 +00003320 }
3321
Arnd Bergmann6b960182009-11-06 23:10:54 -08003322 return -ENOIOCTLCMD;
3323}
Arnd Bergmann7a229382009-11-06 23:00:29 -08003324
Eric Dumazet95c96172012-04-15 05:58:06 +00003325static long compat_sock_ioctl(struct file *file, unsigned int cmd,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07003326 unsigned long arg)
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003327{
3328 struct socket *sock = file->private_data;
3329 int ret = -ENOIOCTLCMD;
David S. Miller87de87d2008-06-03 09:14:03 -07003330 struct sock *sk;
3331 struct net *net;
3332
3333 sk = sock->sk;
3334 net = sock_net(sk);
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003335
3336 if (sock->ops->compat_ioctl)
3337 ret = sock->ops->compat_ioctl(sock, cmd, arg);
3338
David S. Miller87de87d2008-06-03 09:14:03 -07003339 if (ret == -ENOIOCTLCMD &&
3340 (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST))
3341 ret = compat_wext_handle_ioctl(net, cmd, arg);
3342
Arnd Bergmann6b960182009-11-06 23:10:54 -08003343 if (ret == -ENOIOCTLCMD)
3344 ret = compat_sock_ioctl_trans(file, sock, cmd, arg);
3345
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003346 return ret;
3347}
3348#endif
3349
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003350/**
3351 * kernel_bind - bind an address to a socket (kernel space)
3352 * @sock: socket
3353 * @addr: address
3354 * @addrlen: length of address
3355 *
3356 * Returns 0 or an error.
3357 */
3358
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003359int kernel_bind(struct socket *sock, struct sockaddr *addr, int addrlen)
3360{
3361 return sock->ops->bind(sock, addr, addrlen);
3362}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003363EXPORT_SYMBOL(kernel_bind);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003364
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003365/**
3366 * kernel_listen - move socket to listening state (kernel space)
3367 * @sock: socket
3368 * @backlog: pending connections queue size
3369 *
3370 * Returns 0 or an error.
3371 */
3372
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003373int kernel_listen(struct socket *sock, int backlog)
3374{
3375 return sock->ops->listen(sock, backlog);
3376}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003377EXPORT_SYMBOL(kernel_listen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003378
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003379/**
3380 * kernel_accept - accept a connection (kernel space)
3381 * @sock: listening socket
3382 * @newsock: new connected socket
3383 * @flags: flags
3384 *
3385 * @flags must be SOCK_CLOEXEC, SOCK_NONBLOCK or 0.
3386 * If it fails, @newsock is guaranteed to be %NULL.
3387 * Returns 0 or an error.
3388 */
3389
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003390int kernel_accept(struct socket *sock, struct socket **newsock, int flags)
3391{
3392 struct sock *sk = sock->sk;
3393 int err;
3394
3395 err = sock_create_lite(sk->sk_family, sk->sk_type, sk->sk_protocol,
3396 newsock);
3397 if (err < 0)
3398 goto done;
3399
David Howellscdfbabf2017-03-09 08:09:05 +00003400 err = sock->ops->accept(sock, *newsock, flags, true);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003401 if (err < 0) {
3402 sock_release(*newsock);
Tony Battersbyfa8705b2007-10-10 21:09:04 -07003403 *newsock = NULL;
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003404 goto done;
3405 }
3406
3407 (*newsock)->ops = sock->ops;
Wei Yongjun1b085342008-12-18 19:35:10 -08003408 __module_get((*newsock)->ops->owner);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003409
3410done:
3411 return err;
3412}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003413EXPORT_SYMBOL(kernel_accept);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003414
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003415/**
3416 * kernel_connect - connect a socket (kernel space)
3417 * @sock: socket
3418 * @addr: address
3419 * @addrlen: address length
3420 * @flags: flags (O_NONBLOCK, ...)
3421 *
Lu Weif1dcffc2021-03-25 11:01:55 +08003422 * For datagram sockets, @addr is the address to which datagrams are sent
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003423 * by default, and the only address from which datagrams are received.
3424 * For stream sockets, attempts to connect to @addr.
3425 * Returns 0 or an error code.
3426 */
3427
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003428int kernel_connect(struct socket *sock, struct sockaddr *addr, int addrlen,
YOSHIFUJI Hideaki4768fbc2007-02-09 23:25:31 +09003429 int flags)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003430{
3431 return sock->ops->connect(sock, addr, addrlen, flags);
3432}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003433EXPORT_SYMBOL(kernel_connect);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003434
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003435/**
3436 * kernel_getsockname - get the address which the socket is bound (kernel space)
3437 * @sock: socket
3438 * @addr: address holder
3439 *
3440 * Fills the @addr pointer with the address which the socket is bound.
3441 * Returns 0 or an error code.
3442 */
3443
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01003444int kernel_getsockname(struct socket *sock, struct sockaddr *addr)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003445{
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01003446 return sock->ops->getname(sock, addr, 0);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003447}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003448EXPORT_SYMBOL(kernel_getsockname);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003449
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003450/**
Miaohe Lin645f0892020-08-27 07:27:49 -04003451 * kernel_getpeername - get the address which the socket is connected (kernel space)
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003452 * @sock: socket
3453 * @addr: address holder
3454 *
3455 * Fills the @addr pointer with the address which the socket is connected.
3456 * Returns 0 or an error code.
3457 */
3458
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01003459int kernel_getpeername(struct socket *sock, struct sockaddr *addr)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003460{
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01003461 return sock->ops->getname(sock, addr, 1);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003462}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003463EXPORT_SYMBOL(kernel_getpeername);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003464
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003465/**
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003466 * kernel_sendpage - send a &page through a socket (kernel space)
3467 * @sock: socket
3468 * @page: page
3469 * @offset: page offset
3470 * @size: total size in bytes
3471 * @flags: flags (MSG_DONTWAIT, ...)
3472 *
3473 * Returns the total amount sent in bytes or an error.
3474 */
3475
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003476int kernel_sendpage(struct socket *sock, struct page *page, int offset,
3477 size_t size, int flags)
3478{
Coly Li7b62d312020-10-02 16:27:29 +08003479 if (sock->ops->sendpage) {
3480 /* Warn in case the improper page to zero-copy send */
3481 WARN_ONCE(!sendpage_ok(page), "improper page for zero-copy send");
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003482 return sock->ops->sendpage(sock, page, offset, size, flags);
Coly Li7b62d312020-10-02 16:27:29 +08003483 }
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003484 return sock_no_sendpage(sock, page, offset, size, flags);
3485}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003486EXPORT_SYMBOL(kernel_sendpage);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003487
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003488/**
3489 * kernel_sendpage_locked - send a &page through the locked sock (kernel space)
3490 * @sk: sock
3491 * @page: page
3492 * @offset: page offset
3493 * @size: total size in bytes
3494 * @flags: flags (MSG_DONTWAIT, ...)
3495 *
3496 * Returns the total amount sent in bytes or an error.
3497 * Caller must hold @sk.
3498 */
3499
Tom Herbert306b13e2017-07-28 16:22:41 -07003500int kernel_sendpage_locked(struct sock *sk, struct page *page, int offset,
3501 size_t size, int flags)
3502{
3503 struct socket *sock = sk->sk_socket;
3504
3505 if (sock->ops->sendpage_locked)
3506 return sock->ops->sendpage_locked(sk, page, offset, size,
3507 flags);
3508
3509 return sock_no_sendpage_locked(sk, page, offset, size, flags);
3510}
3511EXPORT_SYMBOL(kernel_sendpage_locked);
3512
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003513/**
Miaohe Lin645f0892020-08-27 07:27:49 -04003514 * kernel_sock_shutdown - shut down part of a full-duplex connection (kernel space)
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003515 * @sock: socket
3516 * @how: connection part
3517 *
3518 * Returns 0 or an error.
3519 */
3520
Trond Myklebust91cf45f2007-11-12 18:10:39 -08003521int kernel_sock_shutdown(struct socket *sock, enum sock_shutdown_cmd how)
3522{
3523 return sock->ops->shutdown(sock, how);
3524}
Trond Myklebust91cf45f2007-11-12 18:10:39 -08003525EXPORT_SYMBOL(kernel_sock_shutdown);
R. Parameswaran113c3072017-04-05 16:50:35 -07003526
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003527/**
3528 * kernel_sock_ip_overhead - returns the IP overhead imposed by a socket
3529 * @sk: socket
3530 *
3531 * This routine returns the IP overhead imposed by a socket i.e.
3532 * the length of the underlying IP header, depending on whether
3533 * this is an IPv4 or IPv6 socket and the length from IP options turned
3534 * on at the socket. Assumes that the caller has a lock on the socket.
R. Parameswaran113c3072017-04-05 16:50:35 -07003535 */
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003536
R. Parameswaran113c3072017-04-05 16:50:35 -07003537u32 kernel_sock_ip_overhead(struct sock *sk)
3538{
3539 struct inet_sock *inet;
3540 struct ip_options_rcu *opt;
3541 u32 overhead = 0;
R. Parameswaran113c3072017-04-05 16:50:35 -07003542#if IS_ENABLED(CONFIG_IPV6)
3543 struct ipv6_pinfo *np;
3544 struct ipv6_txoptions *optv6 = NULL;
3545#endif /* IS_ENABLED(CONFIG_IPV6) */
3546
3547 if (!sk)
3548 return overhead;
3549
R. Parameswaran113c3072017-04-05 16:50:35 -07003550 switch (sk->sk_family) {
3551 case AF_INET:
3552 inet = inet_sk(sk);
3553 overhead += sizeof(struct iphdr);
3554 opt = rcu_dereference_protected(inet->inet_opt,
stephen hemminger614d79c2017-07-24 10:25:22 -07003555 sock_owned_by_user(sk));
R. Parameswaran113c3072017-04-05 16:50:35 -07003556 if (opt)
3557 overhead += opt->opt.optlen;
3558 return overhead;
3559#if IS_ENABLED(CONFIG_IPV6)
3560 case AF_INET6:
3561 np = inet6_sk(sk);
3562 overhead += sizeof(struct ipv6hdr);
3563 if (np)
3564 optv6 = rcu_dereference_protected(np->opt,
stephen hemminger614d79c2017-07-24 10:25:22 -07003565 sock_owned_by_user(sk));
R. Parameswaran113c3072017-04-05 16:50:35 -07003566 if (optv6)
3567 overhead += (optv6->opt_flen + optv6->opt_nflen);
3568 return overhead;
3569#endif /* IS_ENABLED(CONFIG_IPV6) */
3570 default: /* Returns 0 overhead if the socket is not ipv4 or ipv6 */
3571 return overhead;
3572 }
3573}
3574EXPORT_SYMBOL(kernel_sock_ip_overhead);