blob: 0aa5a06f3698bd66cb1ace069cc95606d18c230e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * NET An implementation of the SOCKET network access protocol.
3 *
4 * Version: @(#)socket.c 1.1.93 18/02/95
5 *
6 * Authors: Orest Zborowski, <obz@Kodak.COM>
Jesper Juhl02c30a82005-05-05 16:16:16 -07007 * Ross Biro
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
9 *
10 * Fixes:
11 * Anonymous : NOTSOCK/BADF cleanup. Error fix in
12 * shutdown()
13 * Alan Cox : verify_area() fixes
14 * Alan Cox : Removed DDI
15 * Jonathan Kamens : SOCK_DGRAM reconnect bug
16 * Alan Cox : Moved a load of checks to the very
17 * top level.
18 * Alan Cox : Move address structures to/from user
19 * mode above the protocol layers.
20 * Rob Janssen : Allow 0 length sends.
21 * Alan Cox : Asynchronous I/O support (cribbed from the
22 * tty drivers).
23 * Niibe Yutaka : Asynchronous I/O for writes (4.4BSD style)
24 * Jeff Uphoff : Made max number of sockets command-line
25 * configurable.
26 * Matti Aarnio : Made the number of sockets dynamic,
27 * to be allocated when needed, and mr.
28 * Uphoff's max is used as max to be
29 * allowed to allocate.
30 * Linus : Argh. removed all the socket allocation
31 * altogether: it's in the inode now.
32 * Alan Cox : Made sock_alloc()/sock_release() public
33 * for NetROM and future kernel nfsd type
34 * stuff.
35 * Alan Cox : sendmsg/recvmsg basics.
36 * Tom Dyas : Export net symbols.
37 * Marcin Dalecki : Fixed problems with CONFIG_NET="n".
38 * Alan Cox : Added thread locking to sys_* calls
39 * for sockets. May have errors at the
40 * moment.
41 * Kevin Buhr : Fixed the dumb errors in the above.
42 * Andi Kleen : Some small cleanups, optimizations,
43 * and fixed a copy_from_user() bug.
44 * Tigran Aivazian : sys_send(args) calls sys_sendto(args, NULL, 0)
Stephen Hemminger89bddce2006-09-01 00:19:31 -070045 * Tigran Aivazian : Made listen(2) backlog sanity checks
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 * protocol-independent
47 *
48 *
49 * This program is free software; you can redistribute it and/or
50 * modify it under the terms of the GNU General Public License
51 * as published by the Free Software Foundation; either version
52 * 2 of the License, or (at your option) any later version.
53 *
54 *
55 * This module is effectively the top level interface to the BSD socket
Stephen Hemminger89bddce2006-09-01 00:19:31 -070056 * paradigm.
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 *
58 * Based upon Swansea University Computer Society NET3.039
59 */
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#include <linux/socket.h>
63#include <linux/file.h>
64#include <linux/net.h>
65#include <linux/interrupt.h>
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -070066#include <linux/thread_info.h>
Stephen Hemminger55737fd2006-09-01 00:23:39 -070067#include <linux/rcupdate.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#include <linux/netdevice.h>
69#include <linux/proc_fs.h>
70#include <linux/seq_file.h>
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -080071#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#include <linux/if_bridge.h>
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -030073#include <linux/if_frad.h>
74#include <linux/if_vlan.h>
Daniel Borkmann408eccc2014-04-01 16:20:23 +020075#include <linux/ptp_classify.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#include <linux/init.h>
77#include <linux/poll.h>
78#include <linux/cache.h>
79#include <linux/module.h>
80#include <linux/highmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#include <linux/mount.h>
82#include <linux/security.h>
83#include <linux/syscalls.h>
84#include <linux/compat.h>
85#include <linux/kmod.h>
David Woodhouse3ec3b2f2005-05-17 12:08:48 +010086#include <linux/audit.h>
Adrian Bunkd86b5e02006-01-21 00:46:55 +010087#include <linux/wireless.h>
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -070088#include <linux/nsproxy.h>
Nick Black1fd7317d2009-09-22 16:43:33 -070089#include <linux/magic.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090090#include <linux/slab.h>
Masatake YAMATO600e1772012-08-29 10:44:29 +000091#include <linux/xattr.h>
Jeremy Clinec8e8cd52018-07-27 22:43:01 +000092#include <linux/nospec.h>
Paolo Abeni8c3c4472019-05-03 17:01:39 +020093#include <linux/indirect_call_wrapper.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080095#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070096#include <asm/unistd.h>
97
98#include <net/compat.h>
David S. Miller87de87d2008-06-03 09:14:03 -070099#include <net/wext.h>
Herbert Xuf8451722010-05-24 00:12:34 -0700100#include <net/cls_cgroup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
102#include <net/sock.h>
103#include <linux/netfilter.h>
104
Arnd Bergmann6b960182009-11-06 23:10:54 -0800105#include <linux/if_tun.h>
106#include <linux/ipv6_route.h>
107#include <linux/route.h>
Arnd Bergmann6b960182009-11-06 23:10:54 -0800108#include <linux/sockios.h>
Eliezer Tamir076bb0c2013-07-10 17:13:17 +0300109#include <net/busy_poll.h>
Willem de Bruijnf24b9be2014-08-04 22:11:45 -0400110#include <linux/errqueue.h>
Eliezer Tamir06021292013-06-10 11:39:50 +0300111
Paolo Abeni8c3c4472019-05-03 17:01:39 +0200112/* proto_ops for ipv4 and ipv6 use the same {recv,send}msg function */
113#if IS_ENABLED(CONFIG_INET)
114#define INDIRECT_CALL_INET4(f, f1, ...) INDIRECT_CALL_1(f, f1, __VA_ARGS__)
115#else
116#define INDIRECT_CALL_INET4(f, f1, ...) f(__VA_ARGS__)
117#endif
118
Cong Wange0d10952013-08-01 11:10:25 +0800119#ifdef CONFIG_NET_RX_BUSY_POLL
Eliezer Tamir64b0dc52013-07-10 17:13:36 +0300120unsigned int sysctl_net_busy_read __read_mostly;
121unsigned int sysctl_net_busy_poll __read_mostly;
Eliezer Tamir06021292013-06-10 11:39:50 +0300122#endif
Arnd Bergmann6b960182009-11-06 23:10:54 -0800123
Al Viro8ae5e0302014-11-28 19:40:50 -0500124static ssize_t sock_read_iter(struct kiocb *iocb, struct iov_iter *to);
125static ssize_t sock_write_iter(struct kiocb *iocb, struct iov_iter *from);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700126static int sock_mmap(struct file *file, struct vm_area_struct *vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
128static int sock_close(struct inode *inode, struct file *file);
Linus Torvaldsa11e1d42018-06-28 09:43:44 -0700129static __poll_t sock_poll(struct file *file,
130 struct poll_table_struct *wait);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700131static long sock_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800132#ifdef CONFIG_COMPAT
133static long compat_sock_ioctl(struct file *file,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700134 unsigned int cmd, unsigned long arg);
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800135#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136static int sock_fasync(int fd, struct file *filp, int on);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137static ssize_t sock_sendpage(struct file *file, struct page *page,
138 int offset, size_t size, loff_t *ppos, int more);
Jens Axboe9c55e012007-11-06 23:30:13 -0800139static ssize_t sock_splice_read(struct file *file, loff_t *ppos,
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700140 struct pipe_inode_info *pipe, size_t len,
Jens Axboe9c55e012007-11-06 23:30:13 -0800141 unsigned int flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143/*
144 * Socket files have a set of 'special' operations as well as the generic file ones. These don't appear
145 * in the operation structures but are done directly via the socketcall() multiplexor.
146 */
147
Arjan van de Venda7071d2007-02-12 00:55:36 -0800148static const struct file_operations socket_file_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 .owner = THIS_MODULE,
150 .llseek = no_llseek,
Al Viro8ae5e0302014-11-28 19:40:50 -0500151 .read_iter = sock_read_iter,
152 .write_iter = sock_write_iter,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 .poll = sock_poll,
154 .unlocked_ioctl = sock_ioctl,
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800155#ifdef CONFIG_COMPAT
156 .compat_ioctl = compat_sock_ioctl,
157#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 .mmap = sock_mmap,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 .release = sock_close,
160 .fasync = sock_fasync,
Jens Axboe5274f052006-03-30 15:15:30 +0200161 .sendpage = sock_sendpage,
162 .splice_write = generic_splice_sendpage,
Jens Axboe9c55e012007-11-06 23:30:13 -0800163 .splice_read = sock_splice_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164};
165
166/*
167 * The protocol list. Each protocol is registered in here.
168 */
169
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170static DEFINE_SPINLOCK(net_family_lock);
Eric Dumazet190683a2010-11-10 10:50:44 +0000171static const struct net_proto_family __rcu *net_families[NPROTO] __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700174 * Support routines.
175 * Move socket addresses back and forth across the kernel/user
176 * divide and look after the messy bits.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 */
178
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179/**
180 * move_addr_to_kernel - copy a socket address into kernel space
181 * @uaddr: Address in user space
182 * @kaddr: Address in kernel space
183 * @ulen: Length in user space
184 *
185 * The address is copied into kernel space. If the provided address is
186 * too long an error code of -EINVAL is returned. If the copy gives
187 * invalid addresses -EFAULT is returned. On a success 0 is returned.
188 */
189
Maciej Żenczykowski43db3622012-03-11 12:51:50 +0000190int move_addr_to_kernel(void __user *uaddr, int ulen, struct sockaddr_storage *kaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191{
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -0700192 if (ulen < 0 || ulen > sizeof(struct sockaddr_storage))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700194 if (ulen == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 return 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700196 if (copy_from_user(kaddr, uaddr, ulen))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 return -EFAULT;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +0100198 return audit_sockaddr(ulen, kaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199}
200
201/**
202 * move_addr_to_user - copy an address to user space
203 * @kaddr: kernel space address
204 * @klen: length of address in kernel
205 * @uaddr: user space address
206 * @ulen: pointer to user length field
207 *
208 * The value pointed to by ulen on entry is the buffer length available.
209 * This is overwritten with the buffer space used. -EINVAL is returned
210 * if an overlong buffer is specified or a negative buffer size. -EFAULT
211 * is returned if either the buffer or the length field are not
212 * accessible.
213 * After copying the data up to the limit the user specifies, the true
214 * length of the data is written over the length limit the user
215 * specified. Zero is returned for a success.
216 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700217
Maciej Żenczykowski43db3622012-03-11 12:51:50 +0000218static int move_addr_to_user(struct sockaddr_storage *kaddr, int klen,
stephen hemminger11165f12010-10-18 14:27:29 +0000219 void __user *uaddr, int __user *ulen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220{
221 int err;
222 int len;
223
Hannes Frederic Sowa68c6beb2013-11-21 03:14:34 +0100224 BUG_ON(klen > sizeof(struct sockaddr_storage));
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700225 err = get_user(len, ulen);
226 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 return err;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700228 if (len > klen)
229 len = klen;
Hannes Frederic Sowa68c6beb2013-11-21 03:14:34 +0100230 if (len < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700232 if (len) {
Steve Grubbd6fe3942006-03-30 12:20:22 -0500233 if (audit_sockaddr(klen, kaddr))
234 return -ENOMEM;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700235 if (copy_to_user(uaddr, kaddr, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 return -EFAULT;
237 }
238 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700239 * "fromlen shall refer to the value before truncation.."
240 * 1003.1g
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 */
242 return __put_user(klen, ulen);
243}
244
Alexey Dobriyan08009a72018-02-24 21:20:33 +0300245static struct kmem_cache *sock_inode_cachep __ro_after_init;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
247static struct inode *sock_alloc_inode(struct super_block *sb)
248{
249 struct socket_alloc *ei;
Eric Dumazeteaefd1102011-02-18 03:26:36 +0000250 struct socket_wq *wq;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700251
Christoph Lametere94b1762006-12-06 20:33:17 -0800252 ei = kmem_cache_alloc(sock_inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 if (!ei)
254 return NULL;
Eric Dumazeteaefd1102011-02-18 03:26:36 +0000255 wq = kmalloc(sizeof(*wq), GFP_KERNEL);
256 if (!wq) {
Eric Dumazet43815482010-04-29 11:01:49 +0000257 kmem_cache_free(sock_inode_cachep, ei);
258 return NULL;
259 }
Eric Dumazeteaefd1102011-02-18 03:26:36 +0000260 init_waitqueue_head(&wq->wait);
261 wq->fasync_list = NULL;
Nicolai Stange574aab12015-12-29 13:29:55 +0100262 wq->flags = 0;
Christoph Hellwige6476c22018-07-30 09:45:07 +0200263 ei->socket.wq = wq;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700264
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 ei->socket.state = SS_UNCONNECTED;
266 ei->socket.flags = 0;
267 ei->socket.ops = NULL;
268 ei->socket.sk = NULL;
269 ei->socket.file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
271 return &ei->vfs_inode;
272}
273
274static void sock_destroy_inode(struct inode *inode)
275{
Eric Dumazet43815482010-04-29 11:01:49 +0000276 struct socket_alloc *ei;
277
278 ei = container_of(inode, struct socket_alloc, vfs_inode);
Christoph Hellwige6476c22018-07-30 09:45:07 +0200279 kfree_rcu(ei->socket.wq, rcu);
Eric Dumazet43815482010-04-29 11:01:49 +0000280 kmem_cache_free(sock_inode_cachep, ei);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281}
282
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700283static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284{
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700285 struct socket_alloc *ei = (struct socket_alloc *)foo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Christoph Lametera35afb82007-05-16 22:10:57 -0700287 inode_init_once(&ei->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288}
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700289
yuan linyu1e911632017-01-07 17:18:31 +0800290static void init_inodecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291{
292 sock_inode_cachep = kmem_cache_create("sock_inode_cache",
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700293 sizeof(struct socket_alloc),
294 0,
295 (SLAB_HWCACHE_ALIGN |
296 SLAB_RECLAIM_ACCOUNT |
Vladimir Davydov5d097052016-01-14 15:18:21 -0800297 SLAB_MEM_SPREAD | SLAB_ACCOUNT),
Paul Mundt20c2df82007-07-20 10:11:58 +0900298 init_once);
yuan linyu1e911632017-01-07 17:18:31 +0800299 BUG_ON(sock_inode_cachep == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300}
301
Alexey Dobriyanb87221d2009-09-21 17:01:09 -0700302static const struct super_operations sockfs_ops = {
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700303 .alloc_inode = sock_alloc_inode,
304 .destroy_inode = sock_destroy_inode,
305 .statfs = simple_statfs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306};
307
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700308/*
309 * sockfs_dname() is called from d_path().
310 */
311static char *sockfs_dname(struct dentry *dentry, char *buffer, int buflen)
312{
313 return dynamic_dname(dentry, buffer, buflen, "socket:[%lu]",
David Howellsc5ef6032015-03-17 22:26:16 +0000314 d_inode(dentry)->i_ino);
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700315}
316
Al Viro3ba13d12009-02-20 06:02:22 +0000317static const struct dentry_operations sockfs_dentry_operations = {
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700318 .d_dname = sockfs_dname,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319};
320
Andreas Gruenbacherbba0bd32016-09-29 17:48:35 +0200321static int sockfs_xattr_get(const struct xattr_handler *handler,
322 struct dentry *dentry, struct inode *inode,
323 const char *suffix, void *value, size_t size)
324{
325 if (value) {
326 if (dentry->d_name.len + 1 > size)
327 return -ERANGE;
328 memcpy(value, dentry->d_name.name, dentry->d_name.len + 1);
329 }
330 return dentry->d_name.len + 1;
331}
332
333#define XATTR_SOCKPROTONAME_SUFFIX "sockprotoname"
334#define XATTR_NAME_SOCKPROTONAME (XATTR_SYSTEM_PREFIX XATTR_SOCKPROTONAME_SUFFIX)
335#define XATTR_NAME_SOCKPROTONAME_LEN (sizeof(XATTR_NAME_SOCKPROTONAME)-1)
336
337static const struct xattr_handler sockfs_xattr_handler = {
338 .name = XATTR_NAME_SOCKPROTONAME,
339 .get = sockfs_xattr_get,
340};
341
Andreas Gruenbacher4a590152016-11-13 21:23:34 +0100342static int sockfs_security_xattr_set(const struct xattr_handler *handler,
343 struct dentry *dentry, struct inode *inode,
344 const char *suffix, const void *value,
345 size_t size, int flags)
346{
347 /* Handled by LSM. */
348 return -EAGAIN;
349}
350
351static const struct xattr_handler sockfs_security_xattr_handler = {
352 .prefix = XATTR_SECURITY_PREFIX,
353 .set = sockfs_security_xattr_set,
354};
355
Andreas Gruenbacherbba0bd32016-09-29 17:48:35 +0200356static const struct xattr_handler *sockfs_xattr_handlers[] = {
357 &sockfs_xattr_handler,
Andreas Gruenbacher4a590152016-11-13 21:23:34 +0100358 &sockfs_security_xattr_handler,
Andreas Gruenbacherbba0bd32016-09-29 17:48:35 +0200359 NULL
360};
361
Al Viroc74a1cb2011-01-12 16:59:34 -0500362static struct dentry *sockfs_mount(struct file_system_type *fs_type,
363 int flags, const char *dev_name, void *data)
364{
Andreas Gruenbacherbba0bd32016-09-29 17:48:35 +0200365 return mount_pseudo_xattr(fs_type, "socket:", &sockfs_ops,
366 sockfs_xattr_handlers,
367 &sockfs_dentry_operations, SOCKFS_MAGIC);
Al Viroc74a1cb2011-01-12 16:59:34 -0500368}
369
370static struct vfsmount *sock_mnt __read_mostly;
371
372static struct file_system_type sock_fs_type = {
373 .name = "sockfs",
374 .mount = sockfs_mount,
375 .kill_sb = kill_anon_super,
376};
377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378/*
379 * Obtains the first available file descriptor and sets it up for use.
380 *
David S. Miller39d8c1b2006-03-20 17:13:49 -0800381 * These functions create file structures and maps them to fd space
382 * of the current process. On success it returns file descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 * and file struct implicitly stored in sock->file.
384 * Note that another thread may close file descriptor before we return
385 * from this function. We use the fact that now we do not refer
386 * to socket after mapping. If one day we will need it, this
387 * function will increment ref. count on file by 1.
388 *
389 * In any case returned fd MAY BE not valid!
390 * This race condition is unavoidable
391 * with shared fd spaces, we cannot solve it inside kernel,
392 * but we take care of internal coherence yet.
393 */
394
Pedro Tammela8a3c2452019-03-14 10:45:23 -0300395/**
396 * sock_alloc_file - Bind a &socket to a &file
397 * @sock: socket
398 * @flags: file status flags
399 * @dname: protocol name
400 *
401 * Returns the &file bound with @sock, implicitly storing it
402 * in sock->file. If dname is %NULL, sets to "".
403 * On failure the return is a ERR pointer (see linux/err.h).
404 * This function uses GFP_KERNEL internally.
405 */
406
Linus Torvaldsaab174f2012-10-02 20:25:04 -0700407struct file *sock_alloc_file(struct socket *sock, int flags, const char *dname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408{
Al Viro7cbe66b2009-08-05 19:59:08 +0400409 struct file *file;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800410
Al Virod93aa9d2018-06-09 09:40:05 -0400411 if (!dname)
412 dname = sock->sk ? sock->sk->sk_prot_creator->name : "";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Al Virod93aa9d2018-06-09 09:40:05 -0400414 file = alloc_file_pseudo(SOCK_INODE(sock), sock_mnt, dname,
415 O_RDWR | (flags & O_NONBLOCK),
416 &socket_file_ops);
Viresh Kumarb5ffe632015-08-12 15:59:47 +0530417 if (IS_ERR(file)) {
Al Viro8e1611e2017-12-05 23:29:09 +0000418 sock_release(sock);
Anatol Pomozov39b65252012-09-12 20:11:55 -0700419 return file;
Al Virocc3808f2009-08-06 09:43:59 +0400420 }
David S. Miller39d8c1b2006-03-20 17:13:49 -0800421
422 sock->file = file;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800423 file->private_data = sock;
Al Viro28407632012-08-17 23:54:15 -0400424 return file;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800425}
Al Viro56b31d12012-08-18 00:25:51 -0400426EXPORT_SYMBOL(sock_alloc_file);
David S. Miller39d8c1b2006-03-20 17:13:49 -0800427
Al Viro56b31d12012-08-18 00:25:51 -0400428static int sock_map_fd(struct socket *sock, int flags)
David S. Miller39d8c1b2006-03-20 17:13:49 -0800429{
430 struct file *newfile;
Al Viro28407632012-08-17 23:54:15 -0400431 int fd = get_unused_fd_flags(flags);
Al Viroce4bb042018-01-10 18:47:05 -0500432 if (unlikely(fd < 0)) {
433 sock_release(sock);
Al Viro28407632012-08-17 23:54:15 -0400434 return fd;
Al Viroce4bb042018-01-10 18:47:05 -0500435 }
David S. Miller39d8c1b2006-03-20 17:13:49 -0800436
Linus Torvaldsaab174f2012-10-02 20:25:04 -0700437 newfile = sock_alloc_file(sock, flags, NULL);
Enrico Weigelt4546e442019-06-05 22:58:50 +0200438 if (!IS_ERR(newfile)) {
David S. Miller39d8c1b2006-03-20 17:13:49 -0800439 fd_install(fd, newfile);
Al Viro28407632012-08-17 23:54:15 -0400440 return fd;
441 }
Al Viro7cbe66b2009-08-05 19:59:08 +0400442
Al Viro28407632012-08-17 23:54:15 -0400443 put_unused_fd(fd);
444 return PTR_ERR(newfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445}
446
Pedro Tammela8a3c2452019-03-14 10:45:23 -0300447/**
448 * sock_from_file - Return the &socket bounded to @file.
449 * @file: file
450 * @err: pointer to an error code return
451 *
452 * On failure returns %NULL and assigns -ENOTSOCK to @err.
453 */
454
John Fastabend406a3c62012-07-20 10:39:25 +0000455struct socket *sock_from_file(struct file *file, int *err)
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800456{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800457 if (file->f_op == &socket_file_ops)
458 return file->private_data; /* set in sock_map_fd */
459
Eric Dumazet23bb80d2007-02-08 14:59:57 -0800460 *err = -ENOTSOCK;
461 return NULL;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800462}
John Fastabend406a3c62012-07-20 10:39:25 +0000463EXPORT_SYMBOL(sock_from_file);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800464
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465/**
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700466 * sockfd_lookup - Go from a file number to its socket slot
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 * @fd: file handle
468 * @err: pointer to an error code return
469 *
470 * The file handle passed in is locked and the socket it is bound
Rosen, Rami241c4662017-05-21 22:12:38 +0300471 * to is returned. If an error occurs the err pointer is overwritten
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 * with a negative errno code and NULL is returned. The function checks
473 * for both invalid handles and passing a handle which is not a socket.
474 *
475 * On a success the socket object pointer is returned.
476 */
477
478struct socket *sockfd_lookup(int fd, int *err)
479{
480 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 struct socket *sock;
482
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700483 file = fget(fd);
484 if (!file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 *err = -EBADF;
486 return NULL;
487 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700488
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800489 sock = sock_from_file(file, err);
490 if (!sock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 fput(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 return sock;
493}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700494EXPORT_SYMBOL(sockfd_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800496static struct socket *sockfd_lookup_light(int fd, int *err, int *fput_needed)
497{
Al Viro00e188e2014-03-03 23:48:18 -0500498 struct fd f = fdget(fd);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800499 struct socket *sock;
500
Hua Zhong36725582006-04-19 15:25:02 -0700501 *err = -EBADF;
Al Viro00e188e2014-03-03 23:48:18 -0500502 if (f.file) {
503 sock = sock_from_file(f.file, err);
504 if (likely(sock)) {
505 *fput_needed = f.flags;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800506 return sock;
Al Viro00e188e2014-03-03 23:48:18 -0500507 }
508 fdput(f);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800509 }
510 return NULL;
511}
512
Masatake YAMATO600e1772012-08-29 10:44:29 +0000513static ssize_t sockfs_listxattr(struct dentry *dentry, char *buffer,
514 size_t size)
515{
516 ssize_t len;
517 ssize_t used = 0;
518
David Howellsc5ef6032015-03-17 22:26:16 +0000519 len = security_inode_listsecurity(d_inode(dentry), buffer, size);
Masatake YAMATO600e1772012-08-29 10:44:29 +0000520 if (len < 0)
521 return len;
522 used += len;
523 if (buffer) {
524 if (size < used)
525 return -ERANGE;
526 buffer += len;
527 }
528
529 len = (XATTR_NAME_SOCKPROTONAME_LEN + 1);
530 used += len;
531 if (buffer) {
532 if (size < used)
533 return -ERANGE;
534 memcpy(buffer, XATTR_NAME_SOCKPROTONAME, len);
535 buffer += len;
536 }
537
538 return used;
539}
540
Tobias Klauserdc647ec2017-01-10 09:30:51 +0100541static int sockfs_setattr(struct dentry *dentry, struct iattr *iattr)
Lorenzo Colitti86741ec2016-11-04 02:23:41 +0900542{
543 int err = simple_setattr(dentry, iattr);
544
Eric Biggerse1a3a602016-12-30 17:42:32 -0600545 if (!err && (iattr->ia_valid & ATTR_UID)) {
Lorenzo Colitti86741ec2016-11-04 02:23:41 +0900546 struct socket *sock = SOCKET_I(d_inode(dentry));
547
Cong Wang6d8c50d2018-06-07 13:39:49 -0700548 if (sock->sk)
549 sock->sk->sk_uid = iattr->ia_uid;
550 else
551 err = -ENOENT;
Lorenzo Colitti86741ec2016-11-04 02:23:41 +0900552 }
553
554 return err;
555}
556
Masatake YAMATO600e1772012-08-29 10:44:29 +0000557static const struct inode_operations sockfs_inode_ops = {
Masatake YAMATO600e1772012-08-29 10:44:29 +0000558 .listxattr = sockfs_listxattr,
Lorenzo Colitti86741ec2016-11-04 02:23:41 +0900559 .setattr = sockfs_setattr,
Masatake YAMATO600e1772012-08-29 10:44:29 +0000560};
561
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562/**
Pedro Tammela8a3c2452019-03-14 10:45:23 -0300563 * sock_alloc - allocate a socket
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700564 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 * Allocate a new inode and socket object. The two are bound together
566 * and initialised. The socket is then returned. If we are out of inodes
Pedro Tammela8a3c2452019-03-14 10:45:23 -0300567 * NULL is returned. This functions uses GFP_KERNEL internally.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 */
569
Tom Herbertf4a00aa2016-03-07 14:11:01 -0800570struct socket *sock_alloc(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571{
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700572 struct inode *inode;
573 struct socket *sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
Eric Dumazeta209dfc2011-07-26 11:36:34 +0200575 inode = new_inode_pseudo(sock_mnt->mnt_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 if (!inode)
577 return NULL;
578
579 sock = SOCKET_I(inode);
580
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400581 inode->i_ino = get_next_ino();
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700582 inode->i_mode = S_IFSOCK | S_IRWXUGO;
David Howells8192b0c2008-11-14 10:39:10 +1100583 inode->i_uid = current_fsuid();
584 inode->i_gid = current_fsgid();
Masatake YAMATO600e1772012-08-29 10:44:29 +0000585 inode->i_op = &sockfs_inode_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 return sock;
588}
Tom Herbertf4a00aa2016-03-07 14:11:01 -0800589EXPORT_SYMBOL(sock_alloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591/**
Pedro Tammela8a3c2452019-03-14 10:45:23 -0300592 * sock_release - close a socket
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 * @sock: socket to close
594 *
595 * The socket is released from the protocol stack if it has a release
596 * callback, and the inode is then released if the socket is bound to
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700597 * an inode not a file.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700599
Cong Wang6d8c50d2018-06-07 13:39:49 -0700600static void __sock_release(struct socket *sock, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601{
602 if (sock->ops) {
603 struct module *owner = sock->ops->owner;
604
Cong Wang6d8c50d2018-06-07 13:39:49 -0700605 if (inode)
606 inode_lock(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 sock->ops->release(sock);
Eric Biggersff7b11a2019-02-21 14:13:56 -0800608 sock->sk = NULL;
Cong Wang6d8c50d2018-06-07 13:39:49 -0700609 if (inode)
610 inode_unlock(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 sock->ops = NULL;
612 module_put(owner);
613 }
614
Christoph Hellwige6476c22018-07-30 09:45:07 +0200615 if (sock->wq->fasync_list)
Yang Yingliang3410f222014-02-12 17:09:55 +0800616 pr_err("%s: fasync list not empty!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 if (!sock->file) {
619 iput(SOCK_INODE(sock));
620 return;
621 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700622 sock->file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623}
Cong Wang6d8c50d2018-06-07 13:39:49 -0700624
625void sock_release(struct socket *sock)
626{
627 __sock_release(sock, NULL);
628}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700629EXPORT_SYMBOL(sock_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Soheil Hassas Yeganehc14ac942016-04-02 23:08:12 -0400631void __sock_tx_timestamp(__u16 tsflags, __u8 *tx_flags)
Patrick Ohly20d49472009-02-12 05:03:38 +0000632{
Eric Dumazet140c55d2014-08-06 11:49:29 +0200633 u8 flags = *tx_flags;
634
Soheil Hassas Yeganehc14ac942016-04-02 23:08:12 -0400635 if (tsflags & SOF_TIMESTAMPING_TX_HARDWARE)
Eric Dumazet140c55d2014-08-06 11:49:29 +0200636 flags |= SKBTX_HW_TSTAMP;
637
Soheil Hassas Yeganehc14ac942016-04-02 23:08:12 -0400638 if (tsflags & SOF_TIMESTAMPING_TX_SOFTWARE)
Eric Dumazet140c55d2014-08-06 11:49:29 +0200639 flags |= SKBTX_SW_TSTAMP;
640
Soheil Hassas Yeganehc14ac942016-04-02 23:08:12 -0400641 if (tsflags & SOF_TIMESTAMPING_TX_SCHED)
Eric Dumazet140c55d2014-08-06 11:49:29 +0200642 flags |= SKBTX_SCHED_TSTAMP;
643
Eric Dumazet140c55d2014-08-06 11:49:29 +0200644 *tx_flags = flags;
Patrick Ohly20d49472009-02-12 05:03:38 +0000645}
Willem de Bruijn67cc0d42014-09-08 19:58:58 -0400646EXPORT_SYMBOL(__sock_tx_timestamp);
Patrick Ohly20d49472009-02-12 05:03:38 +0000647
Paolo Abeni8c3c4472019-05-03 17:01:39 +0200648INDIRECT_CALLABLE_DECLARE(int inet_sendmsg(struct socket *, struct msghdr *,
649 size_t));
Al Virod8725c82014-12-11 00:02:50 -0500650static inline int sock_sendmsg_nosec(struct socket *sock, struct msghdr *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651{
Paolo Abeni8c3c4472019-05-03 17:01:39 +0200652 int ret = INDIRECT_CALL_INET4(sock->ops->sendmsg, inet_sendmsg, sock,
653 msg, msg_data_left(msg));
Al Virod8725c82014-12-11 00:02:50 -0500654 BUG_ON(ret == -EIOCBQUEUED);
655 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656}
Gu Zheng0cf00c62014-12-05 15:14:23 +0800657
Randy Dunlap85806af2019-05-18 21:23:07 -0700658/**
659 * sock_sendmsg - send a message through @sock
660 * @sock: socket
661 * @msg: message to send
662 *
663 * Sends @msg through @sock, passing through LSM.
664 * Returns the number of bytes sent, or an error code.
665 */
Al Virod8725c82014-12-11 00:02:50 -0500666int sock_sendmsg(struct socket *sock, struct msghdr *msg)
Gu Zheng0cf00c62014-12-05 15:14:23 +0800667{
Al Virod8725c82014-12-11 00:02:50 -0500668 int err = security_socket_sendmsg(sock, msg,
Al Viro01e97e62014-12-15 21:39:31 -0500669 msg_data_left(msg));
Ying Xue1b784142015-03-02 15:37:48 +0800670
Al Virod8725c82014-12-11 00:02:50 -0500671 return err ?: sock_sendmsg_nosec(sock, msg);
Gu Zheng0cf00c62014-12-05 15:14:23 +0800672}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700673EXPORT_SYMBOL(sock_sendmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
Pedro Tammela8a3c2452019-03-14 10:45:23 -0300675/**
676 * kernel_sendmsg - send a message through @sock (kernel-space)
677 * @sock: socket
678 * @msg: message header
679 * @vec: kernel vec
680 * @num: vec array length
681 * @size: total message data size
682 *
683 * Builds the message data with @vec and sends it through @sock.
684 * Returns the number of bytes sent, or an error code.
685 */
686
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687int kernel_sendmsg(struct socket *sock, struct msghdr *msg,
688 struct kvec *vec, size_t num, size_t size)
689{
David Howellsaa563d72018-10-20 00:57:56 +0100690 iov_iter_kvec(&msg->msg_iter, WRITE, vec, num, size);
Al Virod8725c82014-12-11 00:02:50 -0500691 return sock_sendmsg(sock, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700693EXPORT_SYMBOL(kernel_sendmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
Pedro Tammela8a3c2452019-03-14 10:45:23 -0300695/**
696 * kernel_sendmsg_locked - send a message through @sock (kernel-space)
697 * @sk: sock
698 * @msg: message header
699 * @vec: output s/g array
700 * @num: output s/g array length
701 * @size: total message data size
702 *
703 * Builds the message data with @vec and sends it through @sock.
704 * Returns the number of bytes sent, or an error code.
705 * Caller must hold @sk.
706 */
707
Tom Herbert306b13e2017-07-28 16:22:41 -0700708int kernel_sendmsg_locked(struct sock *sk, struct msghdr *msg,
709 struct kvec *vec, size_t num, size_t size)
710{
711 struct socket *sock = sk->sk_socket;
712
713 if (!sock->ops->sendmsg_locked)
John Fastabenddb5980d2017-08-15 22:31:34 -0700714 return sock_no_sendmsg_locked(sk, msg, size);
Tom Herbert306b13e2017-07-28 16:22:41 -0700715
David Howellsaa563d72018-10-20 00:57:56 +0100716 iov_iter_kvec(&msg->msg_iter, WRITE, vec, num, size);
Tom Herbert306b13e2017-07-28 16:22:41 -0700717
718 return sock->ops->sendmsg_locked(sk, msg, msg_data_left(msg));
719}
720EXPORT_SYMBOL(kernel_sendmsg_locked);
721
Soheil Hassas Yeganeh8605330a2017-03-18 17:02:59 -0400722static bool skb_is_err_queue(const struct sk_buff *skb)
723{
724 /* pkt_type of skbs enqueued on the error queue are set to
725 * PACKET_OUTGOING in skb_set_err_queue(). This is only safe to do
726 * in recvmsg, since skbs received on a local socket will never
727 * have a pkt_type of PACKET_OUTGOING.
728 */
729 return skb->pkt_type == PACKET_OUTGOING;
730}
731
Miroslav Lichvarb50a5c72017-05-19 17:52:40 +0200732/* On transmit, software and hardware timestamps are returned independently.
733 * As the two skb clones share the hardware timestamp, which may be updated
734 * before the software timestamp is received, a hardware TX timestamp may be
735 * returned only if there is no software TX timestamp. Ignore false software
736 * timestamps, which may be made in the __sock_recv_timestamp() call when the
Deepa Dinamani7f1bc6e2019-02-02 07:34:46 -0800737 * option SO_TIMESTAMP_OLD(NS) is enabled on the socket, even when the skb has a
Miroslav Lichvarb50a5c72017-05-19 17:52:40 +0200738 * hardware timestamp.
739 */
740static bool skb_is_swtx_tstamp(const struct sk_buff *skb, int false_tstamp)
741{
742 return skb->tstamp && !false_tstamp && skb_is_err_queue(skb);
743}
744
Miroslav Lichvaraad9c8c2017-05-19 17:52:38 +0200745static void put_ts_pktinfo(struct msghdr *msg, struct sk_buff *skb)
746{
747 struct scm_ts_pktinfo ts_pktinfo;
748 struct net_device *orig_dev;
749
750 if (!skb_mac_header_was_set(skb))
751 return;
752
753 memset(&ts_pktinfo, 0, sizeof(ts_pktinfo));
754
755 rcu_read_lock();
756 orig_dev = dev_get_by_napi_id(skb_napi_id(skb));
757 if (orig_dev)
758 ts_pktinfo.if_index = orig_dev->ifindex;
759 rcu_read_unlock();
760
761 ts_pktinfo.pkt_length = skb->len - skb_mac_offset(skb);
762 put_cmsg(msg, SOL_SOCKET, SCM_TIMESTAMPING_PKTINFO,
763 sizeof(ts_pktinfo), &ts_pktinfo);
764}
765
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700766/*
767 * called from sock_recv_timestamp() if sock_flag(sk, SOCK_RCVTSTAMP)
768 */
769void __sock_recv_timestamp(struct msghdr *msg, struct sock *sk,
770 struct sk_buff *skb)
771{
Patrick Ohly20d49472009-02-12 05:03:38 +0000772 int need_software_tstamp = sock_flag(sk, SOCK_RCVTSTAMP);
Deepa Dinamani887feae2019-02-02 07:34:50 -0800773 int new_tstamp = sock_flag(sk, SOCK_TSTAMP_NEW);
Deepa Dinamani97184752019-02-02 07:34:51 -0800774 struct scm_timestamping_internal tss;
775
Miroslav Lichvarb50a5c72017-05-19 17:52:40 +0200776 int empty = 1, false_tstamp = 0;
Patrick Ohly20d49472009-02-12 05:03:38 +0000777 struct skb_shared_hwtstamps *shhwtstamps =
778 skb_hwtstamps(skb);
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700779
Patrick Ohly20d49472009-02-12 05:03:38 +0000780 /* Race occurred between timestamp enabling and packet
781 receiving. Fill in the current time for now. */
Miroslav Lichvarb50a5c72017-05-19 17:52:40 +0200782 if (need_software_tstamp && skb->tstamp == 0) {
Patrick Ohly20d49472009-02-12 05:03:38 +0000783 __net_timestamp(skb);
Miroslav Lichvarb50a5c72017-05-19 17:52:40 +0200784 false_tstamp = 1;
785 }
Patrick Ohly20d49472009-02-12 05:03:38 +0000786
787 if (need_software_tstamp) {
788 if (!sock_flag(sk, SOCK_RCVTSTAMPNS)) {
Deepa Dinamani887feae2019-02-02 07:34:50 -0800789 if (new_tstamp) {
790 struct __kernel_sock_timeval tv;
791
792 skb_get_new_timestamp(skb, &tv);
793 put_cmsg(msg, SOL_SOCKET, SO_TIMESTAMP_NEW,
794 sizeof(tv), &tv);
795 } else {
796 struct __kernel_old_timeval tv;
797
798 skb_get_timestamp(skb, &tv);
799 put_cmsg(msg, SOL_SOCKET, SO_TIMESTAMP_OLD,
800 sizeof(tv), &tv);
801 }
Patrick Ohly20d49472009-02-12 05:03:38 +0000802 } else {
Deepa Dinamani887feae2019-02-02 07:34:50 -0800803 if (new_tstamp) {
804 struct __kernel_timespec ts;
805
806 skb_get_new_timestampns(skb, &ts);
807 put_cmsg(msg, SOL_SOCKET, SO_TIMESTAMPNS_NEW,
808 sizeof(ts), &ts);
809 } else {
810 struct timespec ts;
811
812 skb_get_timestampns(skb, &ts);
813 put_cmsg(msg, SOL_SOCKET, SO_TIMESTAMPNS_OLD,
814 sizeof(ts), &ts);
815 }
Patrick Ohly20d49472009-02-12 05:03:38 +0000816 }
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700817 }
Patrick Ohly20d49472009-02-12 05:03:38 +0000818
Willem de Bruijnf24b9be2014-08-04 22:11:45 -0400819 memset(&tss, 0, sizeof(tss));
Willem de Bruijnc1991052014-09-03 12:01:18 -0400820 if ((sk->sk_tsflags & SOF_TIMESTAMPING_SOFTWARE) &&
Deepa Dinamani97184752019-02-02 07:34:51 -0800821 ktime_to_timespec64_cond(skb->tstamp, tss.ts + 0))
Patrick Ohly20d49472009-02-12 05:03:38 +0000822 empty = 0;
Willem de Bruijn4d276eb2014-07-25 18:01:32 -0400823 if (shhwtstamps &&
Willem de Bruijnb9f40e22014-08-04 22:11:46 -0400824 (sk->sk_tsflags & SOF_TIMESTAMPING_RAW_HARDWARE) &&
Miroslav Lichvarb50a5c72017-05-19 17:52:40 +0200825 !skb_is_swtx_tstamp(skb, false_tstamp) &&
Deepa Dinamani97184752019-02-02 07:34:51 -0800826 ktime_to_timespec64_cond(shhwtstamps->hwtstamp, tss.ts + 2)) {
Willem de Bruijn4d276eb2014-07-25 18:01:32 -0400827 empty = 0;
Miroslav Lichvaraad9c8c2017-05-19 17:52:38 +0200828 if ((sk->sk_tsflags & SOF_TIMESTAMPING_OPT_PKTINFO) &&
829 !skb_is_err_queue(skb))
830 put_ts_pktinfo(msg, skb);
831 }
Francis Yan1c885802016-11-27 23:07:18 -0800832 if (!empty) {
Deepa Dinamani97184752019-02-02 07:34:51 -0800833 if (sock_flag(sk, SOCK_TSTAMP_NEW))
834 put_cmsg_scm_timestamping64(msg, &tss);
835 else
836 put_cmsg_scm_timestamping(msg, &tss);
Francis Yan1c885802016-11-27 23:07:18 -0800837
Soheil Hassas Yeganeh8605330a2017-03-18 17:02:59 -0400838 if (skb_is_err_queue(skb) && skb->len &&
Soheil Hassas Yeganeh4ef1b282017-03-18 17:03:00 -0400839 SKB_EXT_ERR(skb)->opt_stats)
Francis Yan1c885802016-11-27 23:07:18 -0800840 put_cmsg(msg, SOL_SOCKET, SCM_TIMESTAMPING_OPT_STATS,
841 skb->len, skb->data);
842 }
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700843}
Arnaldo Carvalho de Melo7c81fd82007-03-10 00:39:35 -0300844EXPORT_SYMBOL_GPL(__sock_recv_timestamp);
845
Johannes Berg6e3e9392011-11-09 10:15:42 +0100846void __sock_recv_wifi_status(struct msghdr *msg, struct sock *sk,
847 struct sk_buff *skb)
848{
849 int ack;
850
851 if (!sock_flag(sk, SOCK_WIFI_STATUS))
852 return;
853 if (!skb->wifi_acked_valid)
854 return;
855
856 ack = skb->wifi_acked;
857
858 put_cmsg(msg, SOL_SOCKET, SCM_WIFI_STATUS, sizeof(ack), &ack);
859}
860EXPORT_SYMBOL_GPL(__sock_recv_wifi_status);
861
stephen hemminger11165f12010-10-18 14:27:29 +0000862static inline void sock_recv_drops(struct msghdr *msg, struct sock *sk,
863 struct sk_buff *skb)
Neil Horman3b885782009-10-12 13:26:31 -0700864{
Eyal Birger744d5a32015-03-01 14:58:31 +0200865 if (sock_flag(sk, SOCK_RXQ_OVFL) && skb && SOCK_SKB_CB(skb)->dropcount)
Neil Horman3b885782009-10-12 13:26:31 -0700866 put_cmsg(msg, SOL_SOCKET, SO_RXQ_OVFL,
Eyal Birger744d5a32015-03-01 14:58:31 +0200867 sizeof(__u32), &SOCK_SKB_CB(skb)->dropcount);
Neil Horman3b885782009-10-12 13:26:31 -0700868}
869
Eric Dumazet767dd032010-04-28 19:14:43 +0000870void __sock_recv_ts_and_drops(struct msghdr *msg, struct sock *sk,
Neil Horman3b885782009-10-12 13:26:31 -0700871 struct sk_buff *skb)
872{
873 sock_recv_timestamp(msg, sk, skb);
874 sock_recv_drops(msg, sk, skb);
875}
Eric Dumazet767dd032010-04-28 19:14:43 +0000876EXPORT_SYMBOL_GPL(__sock_recv_ts_and_drops);
Neil Horman3b885782009-10-12 13:26:31 -0700877
Paolo Abeni8c3c4472019-05-03 17:01:39 +0200878INDIRECT_CALLABLE_DECLARE(int inet_recvmsg(struct socket *, struct msghdr *,
879 size_t , int ));
Ying Xue1b784142015-03-02 15:37:48 +0800880static inline int sock_recvmsg_nosec(struct socket *sock, struct msghdr *msg,
Al Viro2da62902015-03-14 21:13:46 -0400881 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882{
Paolo Abeni8c3c4472019-05-03 17:01:39 +0200883 return INDIRECT_CALL_INET4(sock->ops->recvmsg, inet_recvmsg, sock, msg,
884 msg_data_left(msg), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885}
886
Randy Dunlap85806af2019-05-18 21:23:07 -0700887/**
888 * sock_recvmsg - receive a message from @sock
889 * @sock: socket
890 * @msg: message to receive
891 * @flags: message flags
892 *
893 * Receives @msg from @sock, passing through LSM. Returns the total number
894 * of bytes received, or an error.
895 */
Al Viro2da62902015-03-14 21:13:46 -0400896int sock_recvmsg(struct socket *sock, struct msghdr *msg, int flags)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -0700897{
Al Viro2da62902015-03-14 21:13:46 -0400898 int err = security_socket_recvmsg(sock, msg, msg_data_left(msg), flags);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -0700899
Al Viro2da62902015-03-14 21:13:46 -0400900 return err ?: sock_recvmsg_nosec(sock, msg, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700902EXPORT_SYMBOL(sock_recvmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
Martin Lucinac1249c02010-12-10 00:04:05 +0000904/**
Pedro Tammela8a3c2452019-03-14 10:45:23 -0300905 * kernel_recvmsg - Receive a message from a socket (kernel space)
906 * @sock: The socket to receive the message from
907 * @msg: Received message
908 * @vec: Input s/g array for message data
909 * @num: Size of input s/g array
910 * @size: Number of bytes to read
911 * @flags: Message flags (MSG_DONTWAIT, etc...)
Martin Lucinac1249c02010-12-10 00:04:05 +0000912 *
Pedro Tammela8a3c2452019-03-14 10:45:23 -0300913 * On return the msg structure contains the scatter/gather array passed in the
914 * vec argument. The array is modified so that it consists of the unfilled
915 * portion of the original array.
Martin Lucinac1249c02010-12-10 00:04:05 +0000916 *
Pedro Tammela8a3c2452019-03-14 10:45:23 -0300917 * The returned value is the total number of bytes received, or an error.
Martin Lucinac1249c02010-12-10 00:04:05 +0000918 */
Pedro Tammela8a3c2452019-03-14 10:45:23 -0300919
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700920int kernel_recvmsg(struct socket *sock, struct msghdr *msg,
921 struct kvec *vec, size_t num, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922{
923 mm_segment_t oldfs = get_fs();
924 int result;
925
David Howellsaa563d72018-10-20 00:57:56 +0100926 iov_iter_kvec(&msg->msg_iter, READ, vec, num, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 set_fs(KERNEL_DS);
Al Viro2da62902015-03-14 21:13:46 -0400928 result = sock_recvmsg(sock, msg, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 set_fs(oldfs);
930 return result;
931}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700932EXPORT_SYMBOL(kernel_recvmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -0300934static ssize_t sock_sendpage(struct file *file, struct page *page,
935 int offset, size_t size, loff_t *ppos, int more)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936{
937 struct socket *sock;
938 int flags;
939
Eric Dumazetb69aee02005-09-06 14:42:45 -0700940 sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
Eric Dumazet35f9c092012-04-05 03:05:35 +0000942 flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
943 /* more is a combination of MSG_MORE and MSG_SENDPAGE_NOTLAST */
944 flags |= more;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
Linus Torvaldse6949582009-08-13 08:28:36 -0700946 return kernel_sendpage(sock, page, offset, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947}
948
Jens Axboe9c55e012007-11-06 23:30:13 -0800949static ssize_t sock_splice_read(struct file *file, loff_t *ppos,
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700950 struct pipe_inode_info *pipe, size_t len,
Jens Axboe9c55e012007-11-06 23:30:13 -0800951 unsigned int flags)
952{
953 struct socket *sock = file->private_data;
954
Rémi Denis-Courmont997b37d2008-02-15 02:35:45 -0800955 if (unlikely(!sock->ops->splice_read))
Slavomir Kaslev95506582018-11-16 11:27:53 +0200956 return generic_file_splice_read(file, ppos, pipe, len, flags);
Rémi Denis-Courmont997b37d2008-02-15 02:35:45 -0800957
Jens Axboe9c55e012007-11-06 23:30:13 -0800958 return sock->ops->splice_read(sock, ppos, pipe, len, flags);
959}
960
Al Viro8ae5e0302014-11-28 19:40:50 -0500961static ssize_t sock_read_iter(struct kiocb *iocb, struct iov_iter *to)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800962{
Al Viro6d652332015-01-30 16:12:56 -0500963 struct file *file = iocb->ki_filp;
964 struct socket *sock = file->private_data;
tadeusz.struk@intel.com0345f932015-03-19 12:31:25 -0700965 struct msghdr msg = {.msg_iter = *to,
966 .msg_iocb = iocb};
Al Viro8ae5e0302014-11-28 19:40:50 -0500967 ssize_t res;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800968
Al Viro8ae5e0302014-11-28 19:40:50 -0500969 if (file->f_flags & O_NONBLOCK)
970 msg.msg_flags = MSG_DONTWAIT;
971
972 if (iocb->ki_pos != 0)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800973 return -ESPIPE;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700974
Christoph Hellwig66ee59a2015-02-11 19:56:46 +0100975 if (!iov_iter_count(to)) /* Match SYS5 behaviour */
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800976 return 0;
977
Al Viro2da62902015-03-14 21:13:46 -0400978 res = sock_recvmsg(sock, &msg, msg.msg_flags);
Al Viro8ae5e0302014-11-28 19:40:50 -0500979 *to = msg.msg_iter;
980 return res;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800981}
982
Al Viro8ae5e0302014-11-28 19:40:50 -0500983static ssize_t sock_write_iter(struct kiocb *iocb, struct iov_iter *from)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984{
Al Viro6d652332015-01-30 16:12:56 -0500985 struct file *file = iocb->ki_filp;
986 struct socket *sock = file->private_data;
tadeusz.struk@intel.com0345f932015-03-19 12:31:25 -0700987 struct msghdr msg = {.msg_iter = *from,
988 .msg_iocb = iocb};
Al Viro8ae5e0302014-11-28 19:40:50 -0500989 ssize_t res;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800990
Al Viro8ae5e0302014-11-28 19:40:50 -0500991 if (iocb->ki_pos != 0)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800992 return -ESPIPE;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700993
Al Viro8ae5e0302014-11-28 19:40:50 -0500994 if (file->f_flags & O_NONBLOCK)
995 msg.msg_flags = MSG_DONTWAIT;
996
Al Viro6d652332015-01-30 16:12:56 -0500997 if (sock->type == SOCK_SEQPACKET)
998 msg.msg_flags |= MSG_EOR;
999
Al Virod8725c82014-12-11 00:02:50 -05001000 res = sock_sendmsg(sock, &msg);
Al Viro8ae5e0302014-11-28 19:40:50 -05001001 *from = msg.msg_iter;
1002 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003}
1004
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005/*
1006 * Atomic setting of ioctl hooks to avoid race
1007 * with module unload.
1008 */
1009
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001010static DEFINE_MUTEX(br_ioctl_mutex);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001011static int (*br_ioctl_hook) (struct net *, unsigned int cmd, void __user *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
Eric W. Biederman881d9662007-09-17 11:56:21 -07001013void brioctl_set(int (*hook) (struct net *, unsigned int, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001015 mutex_lock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 br_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001017 mutex_unlock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018}
1019EXPORT_SYMBOL(brioctl_set);
1020
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001021static DEFINE_MUTEX(vlan_ioctl_mutex);
Eric W. Biederman881d9662007-09-17 11:56:21 -07001022static int (*vlan_ioctl_hook) (struct net *, void __user *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
Eric W. Biederman881d9662007-09-17 11:56:21 -07001024void vlan_ioctl_set(int (*hook) (struct net *, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001026 mutex_lock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 vlan_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001028 mutex_unlock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029}
1030EXPORT_SYMBOL(vlan_ioctl_set);
1031
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001032static DEFINE_MUTEX(dlci_ioctl_mutex);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001033static int (*dlci_ioctl_hook) (unsigned int, void __user *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001035void dlci_ioctl_set(int (*hook) (unsigned int, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001037 mutex_lock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 dlci_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001039 mutex_unlock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040}
1041EXPORT_SYMBOL(dlci_ioctl_set);
1042
Arnd Bergmann6b960182009-11-06 23:10:54 -08001043static long sock_do_ioctl(struct net *net, struct socket *sock,
Johannes Berg63ff03a2019-01-25 22:43:17 +01001044 unsigned int cmd, unsigned long arg)
Arnd Bergmann6b960182009-11-06 23:10:54 -08001045{
1046 int err;
1047 void __user *argp = (void __user *)arg;
1048
1049 err = sock->ops->ioctl(sock, cmd, arg);
1050
1051 /*
1052 * If this ioctl is unknown try to hand it down
1053 * to the NIC driver.
1054 */
Al Viro36fd6332017-06-26 13:19:16 -04001055 if (err != -ENOIOCTLCMD)
1056 return err;
Arnd Bergmann6b960182009-11-06 23:10:54 -08001057
Al Viro36fd6332017-06-26 13:19:16 -04001058 if (cmd == SIOCGIFCONF) {
1059 struct ifconf ifc;
1060 if (copy_from_user(&ifc, argp, sizeof(struct ifconf)))
1061 return -EFAULT;
1062 rtnl_lock();
1063 err = dev_ifconf(net, &ifc, sizeof(struct ifreq));
1064 rtnl_unlock();
1065 if (!err && copy_to_user(argp, &ifc, sizeof(struct ifconf)))
1066 err = -EFAULT;
Al Viro44c02a22017-10-05 12:59:44 -04001067 } else {
1068 struct ifreq ifr;
1069 bool need_copyout;
Johannes Berg63ff03a2019-01-25 22:43:17 +01001070 if (copy_from_user(&ifr, argp, sizeof(struct ifreq)))
Al Viro44c02a22017-10-05 12:59:44 -04001071 return -EFAULT;
1072 err = dev_ioctl(net, cmd, &ifr, &need_copyout);
1073 if (!err && need_copyout)
Johannes Berg63ff03a2019-01-25 22:43:17 +01001074 if (copy_to_user(argp, &ifr, sizeof(struct ifreq)))
Al Viro44c02a22017-10-05 12:59:44 -04001075 return -EFAULT;
Al Viro36fd6332017-06-26 13:19:16 -04001076 }
Arnd Bergmann6b960182009-11-06 23:10:54 -08001077 return err;
1078}
1079
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080/*
1081 * With an ioctl, arg may well be a user mode pointer, but we don't know
1082 * what to do with it - that's up to the protocol still.
1083 */
1084
Pedro Tammela8a3c2452019-03-14 10:45:23 -03001085/**
1086 * get_net_ns - increment the refcount of the network namespace
1087 * @ns: common namespace (net)
1088 *
1089 * Returns the net's common namespace.
1090 */
1091
Kirill Tkhaid8d211a2018-02-14 16:39:56 +03001092struct ns_common *get_net_ns(struct ns_common *ns)
Andrey Vaginc62cce22016-10-24 18:29:13 -07001093{
1094 return &get_net(container_of(ns, struct net, ns))->ns;
1095}
Kirill Tkhaid8d211a2018-02-14 16:39:56 +03001096EXPORT_SYMBOL_GPL(get_net_ns);
Andrey Vaginc62cce22016-10-24 18:29:13 -07001097
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098static long sock_ioctl(struct file *file, unsigned cmd, unsigned long arg)
1099{
1100 struct socket *sock;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001101 struct sock *sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 void __user *argp = (void __user *)arg;
1103 int pid, err;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001104 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
Eric Dumazetb69aee02005-09-06 14:42:45 -07001106 sock = file->private_data;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001107 sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001108 net = sock_net(sk);
Al Viro44c02a22017-10-05 12:59:44 -04001109 if (unlikely(cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15))) {
1110 struct ifreq ifr;
1111 bool need_copyout;
1112 if (copy_from_user(&ifr, argp, sizeof(struct ifreq)))
1113 return -EFAULT;
1114 err = dev_ioctl(net, cmd, &ifr, &need_copyout);
1115 if (!err && need_copyout)
1116 if (copy_to_user(argp, &ifr, sizeof(struct ifreq)))
1117 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 } else
Johannes Berg3d23e342009-09-29 23:27:28 +02001119#ifdef CONFIG_WEXT_CORE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 if (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST) {
Al Virob1b0c242017-10-01 20:13:08 -04001121 err = wext_handle_ioctl(net, cmd, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 } else
Johannes Berg3d23e342009-09-29 23:27:28 +02001123#endif
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001124 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 case FIOSETOWN:
1126 case SIOCSPGRP:
1127 err = -EFAULT;
1128 if (get_user(pid, (int __user *)argp))
1129 break;
Jiri Slaby393cc3f2017-06-13 13:35:50 +02001130 err = f_setown(sock->file, pid, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 break;
1132 case FIOGETOWN:
1133 case SIOCGPGRP:
Eric W. Biederman609d7fa2006-10-02 02:17:15 -07001134 err = put_user(f_getown(sock->file),
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001135 (int __user *)argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 break;
1137 case SIOCGIFBR:
1138 case SIOCSIFBR:
1139 case SIOCBRADDBR:
1140 case SIOCBRDELBR:
1141 err = -ENOPKG;
1142 if (!br_ioctl_hook)
1143 request_module("bridge");
1144
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001145 mutex_lock(&br_ioctl_mutex);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001146 if (br_ioctl_hook)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001147 err = br_ioctl_hook(net, cmd, argp);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001148 mutex_unlock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 break;
1150 case SIOCGIFVLAN:
1151 case SIOCSIFVLAN:
1152 err = -ENOPKG;
1153 if (!vlan_ioctl_hook)
1154 request_module("8021q");
1155
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001156 mutex_lock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 if (vlan_ioctl_hook)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001158 err = vlan_ioctl_hook(net, argp);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001159 mutex_unlock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 case SIOCADDDLCI:
1162 case SIOCDELDLCI:
1163 err = -ENOPKG;
1164 if (!dlci_ioctl_hook)
1165 request_module("dlci");
1166
Pavel Emelyanov7512cbf2008-03-21 15:58:52 -07001167 mutex_lock(&dlci_ioctl_mutex);
1168 if (dlci_ioctl_hook)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 err = dlci_ioctl_hook(cmd, argp);
Pavel Emelyanov7512cbf2008-03-21 15:58:52 -07001170 mutex_unlock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 break;
Andrey Vaginc62cce22016-10-24 18:29:13 -07001172 case SIOCGSKNS:
1173 err = -EPERM;
1174 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
1175 break;
1176
1177 err = open_related_ns(&net->ns, get_net_ns);
1178 break;
Arnd Bergmann0768e172019-04-17 22:56:11 +02001179 case SIOCGSTAMP_OLD:
1180 case SIOCGSTAMPNS_OLD:
Arnd Bergmannc7cbdbf2019-04-17 22:51:48 +02001181 if (!sock->ops->gettstamp) {
1182 err = -ENOIOCTLCMD;
1183 break;
1184 }
1185 err = sock->ops->gettstamp(sock, argp,
Arnd Bergmann0768e172019-04-17 22:56:11 +02001186 cmd == SIOCGSTAMP_OLD,
1187 !IS_ENABLED(CONFIG_64BIT));
Gustavo A. R. Silva60747822019-04-24 10:31:24 -05001188 break;
Arnd Bergmann0768e172019-04-17 22:56:11 +02001189 case SIOCGSTAMP_NEW:
1190 case SIOCGSTAMPNS_NEW:
1191 if (!sock->ops->gettstamp) {
1192 err = -ENOIOCTLCMD;
1193 break;
1194 }
1195 err = sock->ops->gettstamp(sock, argp,
1196 cmd == SIOCGSTAMP_NEW,
1197 false);
Arnd Bergmannc7cbdbf2019-04-17 22:51:48 +02001198 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 default:
Johannes Berg63ff03a2019-01-25 22:43:17 +01001200 err = sock_do_ioctl(net, sock, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001202 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 return err;
1204}
1205
Pedro Tammela8a3c2452019-03-14 10:45:23 -03001206/**
1207 * sock_create_lite - creates a socket
1208 * @family: protocol family (AF_INET, ...)
1209 * @type: communication type (SOCK_STREAM, ...)
1210 * @protocol: protocol (0, ...)
1211 * @res: new socket
1212 *
1213 * Creates a new socket and assigns it to @res, passing through LSM.
1214 * The new socket initialization is not complete, see kernel_accept().
1215 * Returns 0 or an error. On failure @res is set to %NULL.
1216 * This function internally uses GFP_KERNEL.
1217 */
1218
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219int sock_create_lite(int family, int type, int protocol, struct socket **res)
1220{
1221 int err;
1222 struct socket *sock = NULL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001223
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 err = security_socket_create(family, type, protocol, 1);
1225 if (err)
1226 goto out;
1227
1228 sock = sock_alloc();
1229 if (!sock) {
1230 err = -ENOMEM;
1231 goto out;
1232 }
1233
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 sock->type = type;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001235 err = security_socket_post_create(sock, family, type, protocol, 1);
1236 if (err)
1237 goto out_release;
1238
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239out:
1240 *res = sock;
1241 return err;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001242out_release:
1243 sock_release(sock);
1244 sock = NULL;
1245 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001247EXPORT_SYMBOL(sock_create_lite);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248
1249/* No kernel lock held - perfect */
Al Viroade994f2017-07-03 00:01:49 -04001250static __poll_t sock_poll(struct file *file, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251{
Christoph Hellwig3cafb372018-01-09 16:07:34 +01001252 struct socket *sock = file->private_data;
Christoph Hellwiga331de32018-07-30 09:42:13 +02001253 __poll_t events = poll_requested_events(wait), flag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254
Christoph Hellwige88958e2018-06-29 15:37:24 +02001255 if (!sock->ops->poll)
1256 return 0;
Christoph Hellwigf641f13b2018-07-30 09:42:12 +02001257
Christoph Hellwiga331de32018-07-30 09:42:13 +02001258 if (sk_can_busy_loop(sock->sk)) {
1259 /* poll once if requested by the syscall */
1260 if (events & POLL_BUSY_LOOP)
1261 sk_busy_loop(sock->sk, 1);
1262
1263 /* if this socket can poll_ll, tell the system call */
1264 flag = POLL_BUSY_LOOP;
1265 }
1266
1267 return sock->ops->poll(file, sock, wait) | flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268}
1269
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001270static int sock_mmap(struct file *file, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271{
Eric Dumazetb69aee02005-09-06 14:42:45 -07001272 struct socket *sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273
1274 return sock->ops->mmap(file, sock, vma);
1275}
1276
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001277static int sock_close(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278{
Cong Wang6d8c50d2018-06-07 13:39:49 -07001279 __sock_release(SOCKET_I(inode), inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 return 0;
1281}
1282
1283/*
1284 * Update the socket async list
1285 *
1286 * Fasync_list locking strategy.
1287 *
1288 * 1. fasync_list is modified only under process context socket lock
1289 * i.e. under semaphore.
1290 * 2. fasync_list is used under read_lock(&sk->sk_callback_lock)
Eric Dumazet989a2972010-04-14 09:55:35 +00001291 * or under socket lock
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 */
1293
1294static int sock_fasync(int fd, struct file *filp, int on)
1295{
Eric Dumazet989a2972010-04-14 09:55:35 +00001296 struct socket *sock = filp->private_data;
1297 struct sock *sk = sock->sk;
Eric Dumazeteaefd1102011-02-18 03:26:36 +00001298 struct socket_wq *wq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
Eric Dumazet989a2972010-04-14 09:55:35 +00001300 if (sk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
1303 lock_sock(sk);
Christoph Hellwige6476c22018-07-30 09:45:07 +02001304 wq = sock->wq;
Eric Dumazeteaefd1102011-02-18 03:26:36 +00001305 fasync_helper(fd, filp, on, &wq->fasync_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
Eric Dumazeteaefd1102011-02-18 03:26:36 +00001307 if (!wq->fasync_list)
Eric Dumazet989a2972010-04-14 09:55:35 +00001308 sock_reset_flag(sk, SOCK_FASYNC);
Jonathan Corbet76398422009-02-01 14:26:59 -07001309 else
Eric Dumazetbcdce712009-10-06 17:28:29 -07001310 sock_set_flag(sk, SOCK_FASYNC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311
Eric Dumazet989a2972010-04-14 09:55:35 +00001312 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 return 0;
1314}
1315
Eric Dumazetceb5d582015-11-29 20:03:11 -08001316/* This function may be called only under rcu_lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317
Eric Dumazetceb5d582015-11-29 20:03:11 -08001318int sock_wake_async(struct socket_wq *wq, int how, int band)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319{
Eric Dumazetceb5d582015-11-29 20:03:11 -08001320 if (!wq || !wq->fasync_list)
1321 return -1;
Eric Dumazet43815482010-04-29 11:01:49 +00001322
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001323 switch (how) {
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001324 case SOCK_WAKE_WAITD:
Eric Dumazetceb5d582015-11-29 20:03:11 -08001325 if (test_bit(SOCKWQ_ASYNC_WAITDATA, &wq->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 break;
1327 goto call_kill;
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001328 case SOCK_WAKE_SPACE:
Eric Dumazetceb5d582015-11-29 20:03:11 -08001329 if (!test_and_clear_bit(SOCKWQ_ASYNC_NOSPACE, &wq->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 break;
1331 /* fall through */
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001332 case SOCK_WAKE_IO:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001333call_kill:
Eric Dumazet43815482010-04-29 11:01:49 +00001334 kill_fasync(&wq->fasync_list, SIGIO, band);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 break;
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001336 case SOCK_WAKE_URG:
Eric Dumazet43815482010-04-29 11:01:49 +00001337 kill_fasync(&wq->fasync_list, SIGURG, band);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 }
Eric Dumazetceb5d582015-11-29 20:03:11 -08001339
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 return 0;
1341}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001342EXPORT_SYMBOL(sock_wake_async);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343
Pedro Tammela8a3c2452019-03-14 10:45:23 -03001344/**
1345 * __sock_create - creates a socket
1346 * @net: net namespace
1347 * @family: protocol family (AF_INET, ...)
1348 * @type: communication type (SOCK_STREAM, ...)
1349 * @protocol: protocol (0, ...)
1350 * @res: new socket
1351 * @kern: boolean for kernel space sockets
1352 *
1353 * Creates a new socket and assigns it to @res, passing through LSM.
1354 * Returns 0 or an error. On failure @res is set to %NULL. @kern must
1355 * be set to true if the socket resides in kernel space.
1356 * This function internally uses GFP_KERNEL.
1357 */
1358
Pavel Emelyanov721db932010-09-29 16:06:32 +04001359int __sock_create(struct net *net, int family, int type, int protocol,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001360 struct socket **res, int kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361{
1362 int err;
1363 struct socket *sock;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001364 const struct net_proto_family *pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365
1366 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001367 * Check protocol is in range
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 */
1369 if (family < 0 || family >= NPROTO)
1370 return -EAFNOSUPPORT;
1371 if (type < 0 || type >= SOCK_MAX)
1372 return -EINVAL;
1373
1374 /* Compatibility.
1375
1376 This uglymoron is moved from INET layer to here to avoid
1377 deadlock in module load.
1378 */
1379 if (family == PF_INET && type == SOCK_PACKET) {
liping.zhangf3c98692016-03-11 23:08:36 +08001380 pr_info_once("%s uses obsolete (PF_INET,SOCK_PACKET)\n",
1381 current->comm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 family = PF_PACKET;
1383 }
1384
1385 err = security_socket_create(family, type, protocol, kern);
1386 if (err)
1387 return err;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001388
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001389 /*
1390 * Allocate the socket and allow the family to set things up. if
1391 * the protocol is 0, the family is instructed to select an appropriate
1392 * default.
1393 */
1394 sock = sock_alloc();
1395 if (!sock) {
Joe Perchese87cc472012-05-13 21:56:26 +00001396 net_warn_ratelimited("socket: no more sockets\n");
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001397 return -ENFILE; /* Not exactly a match, but its the
1398 closest posix thing */
1399 }
1400
1401 sock->type = type;
1402
Johannes Berg95a5afc2008-10-16 15:24:51 -07001403#ifdef CONFIG_MODULES
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001404 /* Attempt to load a protocol module if the find failed.
1405 *
1406 * 12/09/1996 Marcin: But! this makes REALLY only sense, if the user
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 * requested real, full-featured networking support upon configuration.
1408 * Otherwise module support will break!
1409 */
Eric Dumazet190683a2010-11-10 10:50:44 +00001410 if (rcu_access_pointer(net_families[family]) == NULL)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001411 request_module("net-pf-%d", family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412#endif
1413
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001414 rcu_read_lock();
1415 pf = rcu_dereference(net_families[family]);
1416 err = -EAFNOSUPPORT;
1417 if (!pf)
1418 goto out_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419
1420 /*
1421 * We will call the ->create function, that possibly is in a loadable
1422 * module, so we have to bump that loadable module refcnt first.
1423 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001424 if (!try_module_get(pf->owner))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 goto out_release;
1426
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001427 /* Now protected by module ref count */
1428 rcu_read_unlock();
1429
Eric Paris3f378b62009-11-05 22:18:14 -08001430 err = pf->create(net, sock, protocol, kern);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001431 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 goto out_module_put;
Frank Filza79af592005-09-27 15:23:38 -07001433
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 /*
1435 * Now to bump the refcnt of the [loadable] module that owns this
1436 * socket at sock_release time we decrement its refcnt.
1437 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001438 if (!try_module_get(sock->ops->owner))
1439 goto out_module_busy;
1440
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 /*
1442 * Now that we're done with the ->create function, the [loadable]
1443 * module can have its refcnt decremented
1444 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001445 module_put(pf->owner);
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001446 err = security_socket_post_create(sock, family, type, protocol, kern);
1447 if (err)
Herbert Xu3b185522007-08-15 14:46:02 -07001448 goto out_sock_release;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001449 *res = sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001451 return 0;
1452
1453out_module_busy:
1454 err = -EAFNOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455out_module_put:
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001456 sock->ops = NULL;
1457 module_put(pf->owner);
1458out_sock_release:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 sock_release(sock);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001460 return err;
1461
1462out_release:
1463 rcu_read_unlock();
1464 goto out_sock_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465}
Pavel Emelyanov721db932010-09-29 16:06:32 +04001466EXPORT_SYMBOL(__sock_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467
Pedro Tammela8a3c2452019-03-14 10:45:23 -03001468/**
1469 * sock_create - creates a socket
1470 * @family: protocol family (AF_INET, ...)
1471 * @type: communication type (SOCK_STREAM, ...)
1472 * @protocol: protocol (0, ...)
1473 * @res: new socket
1474 *
1475 * A wrapper around __sock_create().
1476 * Returns 0 or an error. This function internally uses GFP_KERNEL.
1477 */
1478
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479int sock_create(int family, int type, int protocol, struct socket **res)
1480{
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001481 return __sock_create(current->nsproxy->net_ns, family, type, protocol, res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001483EXPORT_SYMBOL(sock_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484
Pedro Tammela8a3c2452019-03-14 10:45:23 -03001485/**
1486 * sock_create_kern - creates a socket (kernel space)
1487 * @net: net namespace
1488 * @family: protocol family (AF_INET, ...)
1489 * @type: communication type (SOCK_STREAM, ...)
1490 * @protocol: protocol (0, ...)
1491 * @res: new socket
1492 *
1493 * A wrapper around __sock_create().
1494 * Returns 0 or an error. This function internally uses GFP_KERNEL.
1495 */
1496
Eric W. Biedermaneeb1bd52015-05-08 21:08:05 -05001497int sock_create_kern(struct net *net, int family, int type, int protocol, struct socket **res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498{
Eric W. Biedermaneeb1bd52015-05-08 21:08:05 -05001499 return __sock_create(net, family, type, protocol, res, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001501EXPORT_SYMBOL(sock_create_kern);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502
Dominik Brodowski9d6a15c2018-03-13 19:29:43 +01001503int __sys_socket(int family, int type, int protocol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504{
1505 int retval;
1506 struct socket *sock;
Ulrich Dreppera677a032008-07-23 21:29:17 -07001507 int flags;
1508
Ulrich Dreppere38b36f2008-07-23 21:29:42 -07001509 /* Check the SOCK_* constants for consistency. */
1510 BUILD_BUG_ON(SOCK_CLOEXEC != O_CLOEXEC);
1511 BUILD_BUG_ON((SOCK_MAX | SOCK_TYPE_MASK) != SOCK_TYPE_MASK);
1512 BUILD_BUG_ON(SOCK_CLOEXEC & SOCK_TYPE_MASK);
1513 BUILD_BUG_ON(SOCK_NONBLOCK & SOCK_TYPE_MASK);
1514
Ulrich Dreppera677a032008-07-23 21:29:17 -07001515 flags = type & ~SOCK_TYPE_MASK;
Ulrich Drepper77d27202008-07-23 21:29:35 -07001516 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Dreppera677a032008-07-23 21:29:17 -07001517 return -EINVAL;
1518 type &= SOCK_TYPE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001520 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1521 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1522
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 retval = sock_create(family, type, protocol, &sock);
1524 if (retval < 0)
Al Viro8e1611e2017-12-05 23:29:09 +00001525 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526
Al Viro8e1611e2017-12-05 23:29:09 +00001527 return sock_map_fd(sock, flags & (O_CLOEXEC | O_NONBLOCK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528}
1529
Dominik Brodowski9d6a15c2018-03-13 19:29:43 +01001530SYSCALL_DEFINE3(socket, int, family, int, type, int, protocol)
1531{
1532 return __sys_socket(family, type, protocol);
1533}
1534
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535/*
1536 * Create a pair of connected sockets.
1537 */
1538
Dominik Brodowski6debc8d2018-03-13 19:49:23 +01001539int __sys_socketpair(int family, int type, int protocol, int __user *usockvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540{
1541 struct socket *sock1, *sock2;
1542 int fd1, fd2, err;
Al Virodb349502007-02-07 01:48:00 -05001543 struct file *newfile1, *newfile2;
Ulrich Dreppera677a032008-07-23 21:29:17 -07001544 int flags;
1545
1546 flags = type & ~SOCK_TYPE_MASK;
Ulrich Drepper77d27202008-07-23 21:29:35 -07001547 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Dreppera677a032008-07-23 21:29:17 -07001548 return -EINVAL;
1549 type &= SOCK_TYPE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001551 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1552 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1553
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 /*
Al Viro016a2662017-12-05 23:28:38 +00001555 * reserve descriptors and make sure we won't fail
1556 * to return them to userland.
1557 */
1558 fd1 = get_unused_fd_flags(flags);
1559 if (unlikely(fd1 < 0))
1560 return fd1;
1561
1562 fd2 = get_unused_fd_flags(flags);
1563 if (unlikely(fd2 < 0)) {
1564 put_unused_fd(fd1);
1565 return fd2;
1566 }
1567
1568 err = put_user(fd1, &usockvec[0]);
1569 if (err)
1570 goto out;
1571
1572 err = put_user(fd2, &usockvec[1]);
1573 if (err)
1574 goto out;
1575
1576 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 * Obtain the first socket and check if the underlying protocol
1578 * supports the socketpair call.
1579 */
1580
1581 err = sock_create(family, type, protocol, &sock1);
Al Viro016a2662017-12-05 23:28:38 +00001582 if (unlikely(err < 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 goto out;
1584
1585 err = sock_create(family, type, protocol, &sock2);
Al Viro016a2662017-12-05 23:28:38 +00001586 if (unlikely(err < 0)) {
1587 sock_release(sock1);
1588 goto out;
David S. Millerbf3c23d2007-10-29 21:54:02 -07001589 }
Yann Droneaudd73aa282013-12-09 22:42:20 +01001590
David Herrmannd47cd942018-05-04 16:28:20 +02001591 err = security_socket_socketpair(sock1, sock2);
1592 if (unlikely(err)) {
1593 sock_release(sock2);
1594 sock_release(sock1);
1595 goto out;
1596 }
1597
Al Viro016a2662017-12-05 23:28:38 +00001598 err = sock1->ops->socketpair(sock1, sock2);
1599 if (unlikely(err < 0)) {
1600 sock_release(sock2);
1601 sock_release(sock1);
1602 goto out;
Al Viro28407632012-08-17 23:54:15 -04001603 }
1604
Linus Torvaldsaab174f2012-10-02 20:25:04 -07001605 newfile1 = sock_alloc_file(sock1, flags, NULL);
Viresh Kumarb5ffe632015-08-12 15:59:47 +05301606 if (IS_ERR(newfile1)) {
Al Viro28407632012-08-17 23:54:15 -04001607 err = PTR_ERR(newfile1);
Al Viro016a2662017-12-05 23:28:38 +00001608 sock_release(sock2);
1609 goto out;
Al Viro28407632012-08-17 23:54:15 -04001610 }
1611
Linus Torvaldsaab174f2012-10-02 20:25:04 -07001612 newfile2 = sock_alloc_file(sock2, flags, NULL);
Al Viro28407632012-08-17 23:54:15 -04001613 if (IS_ERR(newfile2)) {
1614 err = PTR_ERR(newfile2);
Al Viro016a2662017-12-05 23:28:38 +00001615 fput(newfile1);
1616 goto out;
Al Virodb349502007-02-07 01:48:00 -05001617 }
1618
Al Viro157cf642008-12-14 04:57:47 -05001619 audit_fd_pair(fd1, fd2);
Yann Droneaudd73aa282013-12-09 22:42:20 +01001620
Al Virodb349502007-02-07 01:48:00 -05001621 fd_install(fd1, newfile1);
1622 fd_install(fd2, newfile2);
Yann Droneaudd73aa282013-12-09 22:42:20 +01001623 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625out:
Al Viro016a2662017-12-05 23:28:38 +00001626 put_unused_fd(fd2);
1627 put_unused_fd(fd1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 return err;
1629}
1630
Dominik Brodowski6debc8d2018-03-13 19:49:23 +01001631SYSCALL_DEFINE4(socketpair, int, family, int, type, int, protocol,
1632 int __user *, usockvec)
1633{
1634 return __sys_socketpair(family, type, protocol, usockvec);
1635}
1636
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637/*
1638 * Bind a name to a socket. Nothing much to do here since it's
1639 * the protocol's responsibility to handle the local address.
1640 *
1641 * We move the socket address to kernel space before we call
1642 * the protocol layer (having also checked the address is ok).
1643 */
1644
Dominik Brodowskia87d35d2018-03-13 19:33:09 +01001645int __sys_bind(int fd, struct sockaddr __user *umyaddr, int addrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646{
1647 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001648 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001649 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001651 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001652 if (sock) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001653 err = move_addr_to_kernel(umyaddr, addrlen, &address);
Jakub Sitnicki068b88c2018-10-04 11:09:40 +02001654 if (!err) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001655 err = security_socket_bind(sock,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001656 (struct sockaddr *)&address,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001657 addrlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001658 if (!err)
1659 err = sock->ops->bind(sock,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001660 (struct sockaddr *)
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001661 &address, addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 }
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001663 fput_light(sock->file, fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001664 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 return err;
1666}
1667
Dominik Brodowskia87d35d2018-03-13 19:33:09 +01001668SYSCALL_DEFINE3(bind, int, fd, struct sockaddr __user *, umyaddr, int, addrlen)
1669{
1670 return __sys_bind(fd, umyaddr, addrlen);
1671}
1672
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673/*
1674 * Perform a listen. Basically, we allow the protocol to do anything
1675 * necessary for a listen, and if that works, we mark the socket as
1676 * ready for listening.
1677 */
1678
Dominik Brodowski25e290e2018-03-13 19:36:54 +01001679int __sys_listen(int fd, int backlog)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680{
1681 struct socket *sock;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001682 int err, fput_needed;
Pavel Emelyanovb8e1f9b2007-12-08 00:12:33 -08001683 int somaxconn;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001684
1685 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1686 if (sock) {
Pavel Emelyanov8efa6e92008-03-31 19:41:14 -07001687 somaxconn = sock_net(sock->sk)->core.sysctl_somaxconn;
Eric Dumazet95c96172012-04-15 05:58:06 +00001688 if ((unsigned int)backlog > somaxconn)
Pavel Emelyanovb8e1f9b2007-12-08 00:12:33 -08001689 backlog = somaxconn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690
1691 err = security_socket_listen(sock, backlog);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001692 if (!err)
1693 err = sock->ops->listen(sock, backlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001695 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 }
1697 return err;
1698}
1699
Dominik Brodowski25e290e2018-03-13 19:36:54 +01001700SYSCALL_DEFINE2(listen, int, fd, int, backlog)
1701{
1702 return __sys_listen(fd, backlog);
1703}
1704
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705/*
1706 * For accept, we attempt to create a new socket, set up the link
1707 * with the client, wake up the client, then return the new
1708 * connected fd. We collect the address of the connector in kernel
1709 * space and move it to user at the very end. This is unclean because
1710 * we open the socket then return an error.
1711 *
1712 * 1003.1g adds the ability to recvmsg() to query connection pending
1713 * status to recvmsg. We need to add that support in a way thats
Geert Uytterhoevenb9030362018-03-02 14:43:23 +01001714 * clean when we restructure accept also.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 */
1716
Dominik Brodowski4541e802018-03-13 19:24:23 +01001717int __sys_accept4(int fd, struct sockaddr __user *upeer_sockaddr,
1718 int __user *upeer_addrlen, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719{
1720 struct socket *sock, *newsock;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001721 struct file *newfile;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001722 int err, len, newfd, fput_needed;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001723 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724
Ulrich Drepper77d27202008-07-23 21:29:35 -07001725 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001726 return -EINVAL;
1727
1728 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1729 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1730
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001731 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 if (!sock)
1733 goto out;
1734
1735 err = -ENFILE;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001736 newsock = sock_alloc();
1737 if (!newsock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 goto out_put;
1739
1740 newsock->type = sock->type;
1741 newsock->ops = sock->ops;
1742
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 /*
1744 * We don't need try_module_get here, as the listening socket (sock)
1745 * has the protocol module (sock->ops->owner) held.
1746 */
1747 __module_get(newsock->ops->owner);
1748
Al Viro28407632012-08-17 23:54:15 -04001749 newfd = get_unused_fd_flags(flags);
David S. Miller39d8c1b2006-03-20 17:13:49 -08001750 if (unlikely(newfd < 0)) {
1751 err = newfd;
David S. Miller9a1875e2006-04-01 12:48:36 -08001752 sock_release(newsock);
1753 goto out_put;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001754 }
Linus Torvaldsaab174f2012-10-02 20:25:04 -07001755 newfile = sock_alloc_file(newsock, flags, sock->sk->sk_prot_creator->name);
Viresh Kumarb5ffe632015-08-12 15:59:47 +05301756 if (IS_ERR(newfile)) {
Al Viro28407632012-08-17 23:54:15 -04001757 err = PTR_ERR(newfile);
1758 put_unused_fd(newfd);
Al Viro28407632012-08-17 23:54:15 -04001759 goto out_put;
1760 }
David S. Miller39d8c1b2006-03-20 17:13:49 -08001761
Frank Filza79af592005-09-27 15:23:38 -07001762 err = security_socket_accept(sock, newsock);
1763 if (err)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001764 goto out_fd;
Frank Filza79af592005-09-27 15:23:38 -07001765
David Howellscdfbabf2017-03-09 08:09:05 +00001766 err = sock->ops->accept(sock, newsock, sock->file->f_flags, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 if (err < 0)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001768 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769
1770 if (upeer_sockaddr) {
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01001771 len = newsock->ops->getname(newsock,
1772 (struct sockaddr *)&address, 2);
1773 if (len < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 err = -ECONNABORTED;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001775 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 }
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001777 err = move_addr_to_user(&address,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001778 len, upeer_sockaddr, upeer_addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 if (err < 0)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001780 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 }
1782
1783 /* File flags are not inherited via accept() unlike another OSes. */
1784
David S. Miller39d8c1b2006-03-20 17:13:49 -08001785 fd_install(newfd, newfile);
1786 err = newfd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001789 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790out:
1791 return err;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001792out_fd:
David S. Miller9606a212006-04-01 01:00:14 -08001793 fput(newfile);
David S. Miller39d8c1b2006-03-20 17:13:49 -08001794 put_unused_fd(newfd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 goto out_put;
1796}
1797
Dominik Brodowski4541e802018-03-13 19:24:23 +01001798SYSCALL_DEFINE4(accept4, int, fd, struct sockaddr __user *, upeer_sockaddr,
1799 int __user *, upeer_addrlen, int, flags)
1800{
1801 return __sys_accept4(fd, upeer_sockaddr, upeer_addrlen, flags);
1802}
1803
Heiko Carstens20f37032009-01-14 14:14:23 +01001804SYSCALL_DEFINE3(accept, int, fd, struct sockaddr __user *, upeer_sockaddr,
1805 int __user *, upeer_addrlen)
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001806{
Dominik Brodowski4541e802018-03-13 19:24:23 +01001807 return __sys_accept4(fd, upeer_sockaddr, upeer_addrlen, 0);
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001808}
1809
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810/*
1811 * Attempt to connect to a socket with the server address. The address
1812 * is in user space so we verify it is OK and move it to kernel space.
1813 *
1814 * For 1003.1g we need to add clean support for a bind to AF_UNSPEC to
1815 * break bindings
1816 *
1817 * NOTE: 1003.1g draft 6.3 is broken with respect to AX.25/NetROM and
1818 * other SEQPACKET protocols that take time to connect() as it doesn't
1819 * include the -EINPROGRESS status for such sockets.
1820 */
1821
Dominik Brodowski1387c2c2018-03-13 19:35:09 +01001822int __sys_connect(int fd, struct sockaddr __user *uservaddr, int addrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823{
1824 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001825 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001826 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001828 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 if (!sock)
1830 goto out;
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001831 err = move_addr_to_kernel(uservaddr, addrlen, &address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 if (err < 0)
1833 goto out_put;
1834
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001835 err =
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001836 security_socket_connect(sock, (struct sockaddr *)&address, addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 if (err)
1838 goto out_put;
1839
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001840 err = sock->ops->connect(sock, (struct sockaddr *)&address, addrlen,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 sock->file->f_flags);
1842out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001843 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844out:
1845 return err;
1846}
1847
Dominik Brodowski1387c2c2018-03-13 19:35:09 +01001848SYSCALL_DEFINE3(connect, int, fd, struct sockaddr __user *, uservaddr,
1849 int, addrlen)
1850{
1851 return __sys_connect(fd, uservaddr, addrlen);
1852}
1853
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854/*
1855 * Get the local address ('name') of a socket object. Move the obtained
1856 * name to user space.
1857 */
1858
Dominik Brodowski8882a102018-03-13 19:43:14 +01001859int __sys_getsockname(int fd, struct sockaddr __user *usockaddr,
1860 int __user *usockaddr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861{
1862 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001863 struct sockaddr_storage address;
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01001864 int err, fput_needed;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001865
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001866 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 if (!sock)
1868 goto out;
1869
1870 err = security_socket_getsockname(sock);
1871 if (err)
1872 goto out_put;
1873
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01001874 err = sock->ops->getname(sock, (struct sockaddr *)&address, 0);
1875 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 goto out_put;
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01001877 /* "err" is actually length in this case */
1878 err = move_addr_to_user(&address, err, usockaddr, usockaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879
1880out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001881 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882out:
1883 return err;
1884}
1885
Dominik Brodowski8882a102018-03-13 19:43:14 +01001886SYSCALL_DEFINE3(getsockname, int, fd, struct sockaddr __user *, usockaddr,
1887 int __user *, usockaddr_len)
1888{
1889 return __sys_getsockname(fd, usockaddr, usockaddr_len);
1890}
1891
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892/*
1893 * Get the remote address ('name') of a socket object. Move the obtained
1894 * name to user space.
1895 */
1896
Dominik Brodowskib21c8f82018-03-13 19:47:00 +01001897int __sys_getpeername(int fd, struct sockaddr __user *usockaddr,
1898 int __user *usockaddr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899{
1900 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001901 struct sockaddr_storage address;
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01001902 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001904 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1905 if (sock != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 err = security_socket_getpeername(sock);
1907 if (err) {
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001908 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 return err;
1910 }
1911
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01001912 err = sock->ops->getname(sock, (struct sockaddr *)&address, 1);
1913 if (err >= 0)
1914 /* "err" is actually length in this case */
1915 err = move_addr_to_user(&address, err, usockaddr,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001916 usockaddr_len);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001917 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 }
1919 return err;
1920}
1921
Dominik Brodowskib21c8f82018-03-13 19:47:00 +01001922SYSCALL_DEFINE3(getpeername, int, fd, struct sockaddr __user *, usockaddr,
1923 int __user *, usockaddr_len)
1924{
1925 return __sys_getpeername(fd, usockaddr, usockaddr_len);
1926}
1927
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928/*
1929 * Send a datagram to a given address. We move the address into kernel
1930 * space and check the user space data area is readable before invoking
1931 * the protocol.
1932 */
Dominik Brodowski211b6342018-03-13 19:18:52 +01001933int __sys_sendto(int fd, void __user *buff, size_t len, unsigned int flags,
1934 struct sockaddr __user *addr, int addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935{
1936 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001937 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 int err;
1939 struct msghdr msg;
1940 struct iovec iov;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001941 int fput_needed;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001942
Al Viro602bd0e2015-03-21 19:12:32 -04001943 err = import_single_range(WRITE, buff, len, &iov, &msg.msg_iter);
1944 if (unlikely(err))
1945 return err;
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001946 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1947 if (!sock)
David S. Miller4387ff72007-02-08 15:06:08 -08001948 goto out;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001949
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001950 msg.msg_name = NULL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001951 msg.msg_control = NULL;
1952 msg.msg_controllen = 0;
1953 msg.msg_namelen = 0;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001954 if (addr) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001955 err = move_addr_to_kernel(addr, addr_len, &address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 if (err < 0)
1957 goto out_put;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001958 msg.msg_name = (struct sockaddr *)&address;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001959 msg.msg_namelen = addr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 }
1961 if (sock->file->f_flags & O_NONBLOCK)
1962 flags |= MSG_DONTWAIT;
1963 msg.msg_flags = flags;
Al Virod8725c82014-12-11 00:02:50 -05001964 err = sock_sendmsg(sock, &msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001966out_put:
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001967 fput_light(sock->file, fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08001968out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 return err;
1970}
1971
Dominik Brodowski211b6342018-03-13 19:18:52 +01001972SYSCALL_DEFINE6(sendto, int, fd, void __user *, buff, size_t, len,
1973 unsigned int, flags, struct sockaddr __user *, addr,
1974 int, addr_len)
1975{
1976 return __sys_sendto(fd, buff, len, flags, addr, addr_len);
1977}
1978
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001980 * Send a datagram down a socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 */
1982
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001983SYSCALL_DEFINE4(send, int, fd, void __user *, buff, size_t, len,
Eric Dumazet95c96172012-04-15 05:58:06 +00001984 unsigned int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985{
Dominik Brodowski211b6342018-03-13 19:18:52 +01001986 return __sys_sendto(fd, buff, len, flags, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987}
1988
1989/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001990 * Receive a frame from the socket and optionally record the address of the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 * sender. We verify the buffers are writable and if needed move the
1992 * sender address from kernel to user space.
1993 */
Dominik Brodowski7a09e1e2018-03-13 19:10:06 +01001994int __sys_recvfrom(int fd, void __user *ubuf, size_t size, unsigned int flags,
1995 struct sockaddr __user *addr, int __user *addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996{
1997 struct socket *sock;
1998 struct iovec iov;
1999 struct msghdr msg;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07002000 struct sockaddr_storage address;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002001 int err, err2;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002002 int fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003
Al Viro602bd0e2015-03-21 19:12:32 -04002004 err = import_single_range(READ, ubuf, size, &iov, &msg.msg_iter);
2005 if (unlikely(err))
2006 return err;
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08002007 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 if (!sock)
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08002009 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002011 msg.msg_control = NULL;
2012 msg.msg_controllen = 0;
Hannes Frederic Sowaf3d33422013-11-21 03:14:22 +01002013 /* Save some cycles and don't copy the address if not needed */
2014 msg.msg_name = addr ? (struct sockaddr *)&address : NULL;
2015 /* We assume all kernel code knows the size of sockaddr_storage */
2016 msg.msg_namelen = 0;
tadeusz.struk@intel.com130ed5d2015-12-15 10:46:17 -08002017 msg.msg_iocb = NULL;
Alexander Potapenko9f138fa2017-03-08 18:08:16 +01002018 msg.msg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 if (sock->file->f_flags & O_NONBLOCK)
2020 flags |= MSG_DONTWAIT;
Al Viro2da62902015-03-14 21:13:46 -04002021 err = sock_recvmsg(sock, &msg, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002023 if (err >= 0 && addr != NULL) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00002024 err2 = move_addr_to_user(&address,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07002025 msg.msg_namelen, addr, addr_len);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002026 if (err2 < 0)
2027 err = err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 }
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08002029
2030 fput_light(sock->file, fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08002031out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 return err;
2033}
2034
Dominik Brodowski7a09e1e2018-03-13 19:10:06 +01002035SYSCALL_DEFINE6(recvfrom, int, fd, void __user *, ubuf, size_t, size,
2036 unsigned int, flags, struct sockaddr __user *, addr,
2037 int __user *, addr_len)
2038{
2039 return __sys_recvfrom(fd, ubuf, size, flags, addr, addr_len);
2040}
2041
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002043 * Receive a datagram from a socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 */
2045
Jan Glauberb7c0ddf2014-04-16 09:32:48 +02002046SYSCALL_DEFINE4(recv, int, fd, void __user *, ubuf, size_t, size,
2047 unsigned int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048{
Dominik Brodowski7a09e1e2018-03-13 19:10:06 +01002049 return __sys_recvfrom(fd, ubuf, size, flags, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050}
2051
2052/*
2053 * Set a socket option. Because we don't know the option lengths we have
2054 * to pass the user mode parameter for the protocols to sort out.
2055 */
2056
Dominik Brodowskicc36dca2018-03-13 20:10:59 +01002057static int __sys_setsockopt(int fd, int level, int optname,
2058 char __user *optval, int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002060 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 struct socket *sock;
2062
2063 if (optlen < 0)
2064 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002065
2066 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2067 if (sock != NULL) {
2068 err = security_socket_setsockopt(sock, level, optname);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002069 if (err)
2070 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071
2072 if (level == SOL_SOCKET)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002073 err =
2074 sock_setsockopt(sock, level, optname, optval,
2075 optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 else
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002077 err =
2078 sock->ops->setsockopt(sock, level, optname, optval,
2079 optlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002080out_put:
2081 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 }
2083 return err;
2084}
2085
Dominik Brodowskicc36dca2018-03-13 20:10:59 +01002086SYSCALL_DEFINE5(setsockopt, int, fd, int, level, int, optname,
2087 char __user *, optval, int, optlen)
2088{
2089 return __sys_setsockopt(fd, level, optname, optval, optlen);
2090}
2091
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092/*
2093 * Get a socket option. Because we don't know the option lengths we have
2094 * to pass a user mode parameter for the protocols to sort out.
2095 */
2096
Dominik Brodowski13a2d702018-03-13 20:15:04 +01002097static int __sys_getsockopt(int fd, int level, int optname,
2098 char __user *optval, int __user *optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002100 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 struct socket *sock;
2102
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002103 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2104 if (sock != NULL) {
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002105 err = security_socket_getsockopt(sock, level, optname);
2106 if (err)
2107 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108
2109 if (level == SOL_SOCKET)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002110 err =
2111 sock_getsockopt(sock, level, optname, optval,
2112 optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 else
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002114 err =
2115 sock->ops->getsockopt(sock, level, optname, optval,
2116 optlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002117out_put:
2118 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 }
2120 return err;
2121}
2122
Dominik Brodowski13a2d702018-03-13 20:15:04 +01002123SYSCALL_DEFINE5(getsockopt, int, fd, int, level, int, optname,
2124 char __user *, optval, int __user *, optlen)
2125{
2126 return __sys_getsockopt(fd, level, optname, optval, optlen);
2127}
2128
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129/*
2130 * Shutdown a socket.
2131 */
2132
Dominik Brodowski005a1ae2018-03-13 20:07:05 +01002133int __sys_shutdown(int fd, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002135 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 struct socket *sock;
2137
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002138 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2139 if (sock != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 err = security_socket_shutdown(sock, how);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002141 if (!err)
2142 err = sock->ops->shutdown(sock, how);
2143 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 }
2145 return err;
2146}
2147
Dominik Brodowski005a1ae2018-03-13 20:07:05 +01002148SYSCALL_DEFINE2(shutdown, int, fd, int, how)
2149{
2150 return __sys_shutdown(fd, how);
2151}
2152
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002153/* A couple of helpful macros for getting the address of the 32/64 bit
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 * fields which are the same type (int / unsigned) on our platforms.
2155 */
2156#define COMPAT_MSG(msg, member) ((MSG_CMSG_COMPAT & flags) ? &msg##_compat->member : &msg->member)
2157#define COMPAT_NAMELEN(msg) COMPAT_MSG(msg, msg_namelen)
2158#define COMPAT_FLAGS(msg) COMPAT_MSG(msg, msg_flags)
2159
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002160struct used_address {
2161 struct sockaddr_storage name;
2162 unsigned int name_len;
2163};
2164
Al Viroda184282015-03-21 19:29:06 -04002165static int copy_msghdr_from_user(struct msghdr *kmsg,
2166 struct user_msghdr __user *umsg,
2167 struct sockaddr __user **save_addr,
2168 struct iovec **iov)
Dan Carpenter1661bf32013-10-03 00:27:20 +03002169{
Al Viroffb07552017-06-27 19:32:04 -04002170 struct user_msghdr msg;
Al Viro08adb7d2014-11-10 20:23:13 -05002171 ssize_t err;
2172
Al Viroffb07552017-06-27 19:32:04 -04002173 if (copy_from_user(&msg, umsg, sizeof(*umsg)))
Dan Carpenter1661bf32013-10-03 00:27:20 +03002174 return -EFAULT;
Matthew Leachdbb490b2014-03-11 11:58:27 +00002175
Paolo Abeni864d9662017-07-21 18:49:45 +02002176 kmsg->msg_control = (void __force *)msg.msg_control;
Al Viroffb07552017-06-27 19:32:04 -04002177 kmsg->msg_controllen = msg.msg_controllen;
2178 kmsg->msg_flags = msg.msg_flags;
2179
2180 kmsg->msg_namelen = msg.msg_namelen;
2181 if (!msg.msg_name)
Ani Sinha6a2a2b32014-09-08 14:49:59 -07002182 kmsg->msg_namelen = 0;
2183
Matthew Leachdbb490b2014-03-11 11:58:27 +00002184 if (kmsg->msg_namelen < 0)
2185 return -EINVAL;
2186
Dan Carpenter1661bf32013-10-03 00:27:20 +03002187 if (kmsg->msg_namelen > sizeof(struct sockaddr_storage))
Dan Carpenterdb31c552013-11-27 15:40:21 +03002188 kmsg->msg_namelen = sizeof(struct sockaddr_storage);
Al Viro08adb7d2014-11-10 20:23:13 -05002189
2190 if (save_addr)
Al Viroffb07552017-06-27 19:32:04 -04002191 *save_addr = msg.msg_name;
Al Viro08adb7d2014-11-10 20:23:13 -05002192
Al Viroffb07552017-06-27 19:32:04 -04002193 if (msg.msg_name && kmsg->msg_namelen) {
Al Viro08adb7d2014-11-10 20:23:13 -05002194 if (!save_addr) {
Paolo Abeni864d9662017-07-21 18:49:45 +02002195 err = move_addr_to_kernel(msg.msg_name,
2196 kmsg->msg_namelen,
Al Viro08adb7d2014-11-10 20:23:13 -05002197 kmsg->msg_name);
2198 if (err < 0)
2199 return err;
2200 }
2201 } else {
2202 kmsg->msg_name = NULL;
2203 kmsg->msg_namelen = 0;
2204 }
2205
Al Viroffb07552017-06-27 19:32:04 -04002206 if (msg.msg_iovlen > UIO_MAXIOV)
Al Viro08adb7d2014-11-10 20:23:13 -05002207 return -EMSGSIZE;
2208
tadeusz.struk@intel.com0345f932015-03-19 12:31:25 -07002209 kmsg->msg_iocb = NULL;
2210
Al Viroffb07552017-06-27 19:32:04 -04002211 return import_iovec(save_addr ? READ : WRITE,
2212 msg.msg_iov, msg.msg_iovlen,
Al Viroda184282015-03-21 19:29:06 -04002213 UIO_FASTIOV, iov, &kmsg->msg_iter);
Dan Carpenter1661bf32013-10-03 00:27:20 +03002214}
2215
Al Viro666547f2014-04-06 14:03:05 -04002216static int ___sys_sendmsg(struct socket *sock, struct user_msghdr __user *msg,
Eric Dumazet95c96172012-04-15 05:58:06 +00002217 struct msghdr *msg_sys, unsigned int flags,
Tom Herbert28a94d82016-03-07 14:11:02 -08002218 struct used_address *used_address,
2219 unsigned int allowed_msghdr_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002221 struct compat_msghdr __user *msg_compat =
2222 (struct compat_msghdr __user *)msg;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07002223 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 struct iovec iovstack[UIO_FASTIOV], *iov = iovstack;
Alex Williamsonb9d717a2005-09-26 14:28:02 -07002225 unsigned char ctl[sizeof(struct cmsghdr) + 20]
Amit Kushwaha846cc122016-12-08 18:21:53 +05302226 __aligned(sizeof(__kernel_size_t));
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002227 /* 20 is size of ipv6_pktinfo */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 unsigned char *ctl_buf = ctl;
Al Virod8725c82014-12-11 00:02:50 -05002229 int ctl_len;
Al Viro08adb7d2014-11-10 20:23:13 -05002230 ssize_t err;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002231
Al Viro08adb7d2014-11-10 20:23:13 -05002232 msg_sys->msg_name = &address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233
Al Viro08449322014-11-09 22:33:45 -05002234 if (MSG_CMSG_COMPAT & flags)
Al Viro08adb7d2014-11-10 20:23:13 -05002235 err = get_compat_msghdr(msg_sys, msg_compat, NULL, &iov);
Al Viro08449322014-11-09 22:33:45 -05002236 else
Al Viro08adb7d2014-11-10 20:23:13 -05002237 err = copy_msghdr_from_user(msg_sys, msg, NULL, &iov);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002238 if (err < 0)
Al Viroda184282015-03-21 19:29:06 -04002239 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240
2241 err = -ENOBUFS;
2242
Anton Blanchard228e5482011-05-02 20:21:35 +00002243 if (msg_sys->msg_controllen > INT_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 goto out_freeiov;
Tom Herbert28a94d82016-03-07 14:11:02 -08002245 flags |= (msg_sys->msg_flags & allowed_msghdr_flags);
Anton Blanchard228e5482011-05-02 20:21:35 +00002246 ctl_len = msg_sys->msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 if ((MSG_CMSG_COMPAT & flags) && ctl_len) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002248 err =
Anton Blanchard228e5482011-05-02 20:21:35 +00002249 cmsghdr_from_user_compat_to_kern(msg_sys, sock->sk, ctl,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002250 sizeof(ctl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 if (err)
2252 goto out_freeiov;
Anton Blanchard228e5482011-05-02 20:21:35 +00002253 ctl_buf = msg_sys->msg_control;
2254 ctl_len = msg_sys->msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 } else if (ctl_len) {
David S. Millerac4340f2017-01-04 13:24:19 -05002256 BUILD_BUG_ON(sizeof(struct cmsghdr) !=
2257 CMSG_ALIGN(sizeof(struct cmsghdr)));
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002258 if (ctl_len > sizeof(ctl)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 ctl_buf = sock_kmalloc(sock->sk, ctl_len, GFP_KERNEL);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002260 if (ctl_buf == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 goto out_freeiov;
2262 }
2263 err = -EFAULT;
2264 /*
Anton Blanchard228e5482011-05-02 20:21:35 +00002265 * Careful! Before this, msg_sys->msg_control contains a user pointer.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 * Afterwards, it will be a kernel pointer. Thus the compiler-assisted
2267 * checking falls down on this.
2268 */
Namhyung Kimfb8621b2010-09-07 03:55:00 +00002269 if (copy_from_user(ctl_buf,
Anton Blanchard228e5482011-05-02 20:21:35 +00002270 (void __user __force *)msg_sys->msg_control,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002271 ctl_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 goto out_freectl;
Anton Blanchard228e5482011-05-02 20:21:35 +00002273 msg_sys->msg_control = ctl_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 }
Anton Blanchard228e5482011-05-02 20:21:35 +00002275 msg_sys->msg_flags = flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276
2277 if (sock->file->f_flags & O_NONBLOCK)
Anton Blanchard228e5482011-05-02 20:21:35 +00002278 msg_sys->msg_flags |= MSG_DONTWAIT;
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002279 /*
2280 * If this is sendmmsg() and current destination address is same as
2281 * previously succeeded address, omit asking LSM's decision.
2282 * used_address->name_len is initialized to UINT_MAX so that the first
2283 * destination address never matches.
2284 */
Mathieu Desnoyersbc909d92011-08-24 19:45:03 -07002285 if (used_address && msg_sys->msg_name &&
2286 used_address->name_len == msg_sys->msg_namelen &&
2287 !memcmp(&used_address->name, msg_sys->msg_name,
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002288 used_address->name_len)) {
Al Virod8725c82014-12-11 00:02:50 -05002289 err = sock_sendmsg_nosec(sock, msg_sys);
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002290 goto out_freectl;
2291 }
Al Virod8725c82014-12-11 00:02:50 -05002292 err = sock_sendmsg(sock, msg_sys);
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002293 /*
2294 * If this is sendmmsg() and sending to current destination address was
2295 * successful, remember it.
2296 */
2297 if (used_address && err >= 0) {
2298 used_address->name_len = msg_sys->msg_namelen;
Mathieu Desnoyersbc909d92011-08-24 19:45:03 -07002299 if (msg_sys->msg_name)
2300 memcpy(&used_address->name, msg_sys->msg_name,
2301 used_address->name_len);
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002302 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303
2304out_freectl:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002305 if (ctl_buf != ctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 sock_kfree_s(sock->sk, ctl_buf, ctl_len);
2307out_freeiov:
Al Viroda184282015-03-21 19:29:06 -04002308 kfree(iov);
Anton Blanchard228e5482011-05-02 20:21:35 +00002309 return err;
2310}
2311
2312/*
2313 * BSD sendmsg interface
2314 */
2315
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002316long __sys_sendmsg(int fd, struct user_msghdr __user *msg, unsigned int flags,
2317 bool forbid_cmsg_compat)
Anton Blanchard228e5482011-05-02 20:21:35 +00002318{
2319 int fput_needed, err;
2320 struct msghdr msg_sys;
Andy Lutomirski1be374a2013-05-22 14:07:44 -07002321 struct socket *sock;
Anton Blanchard228e5482011-05-02 20:21:35 +00002322
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002323 if (forbid_cmsg_compat && (flags & MSG_CMSG_COMPAT))
2324 return -EINVAL;
2325
Andy Lutomirski1be374a2013-05-22 14:07:44 -07002326 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Anton Blanchard228e5482011-05-02 20:21:35 +00002327 if (!sock)
2328 goto out;
2329
Tom Herbert28a94d82016-03-07 14:11:02 -08002330 err = ___sys_sendmsg(sock, msg, &msg_sys, flags, NULL, 0);
Anton Blanchard228e5482011-05-02 20:21:35 +00002331
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002332 fput_light(sock->file, fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002333out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 return err;
2335}
2336
Al Viro666547f2014-04-06 14:03:05 -04002337SYSCALL_DEFINE3(sendmsg, int, fd, struct user_msghdr __user *, msg, unsigned int, flags)
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002338{
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002339 return __sys_sendmsg(fd, msg, flags, true);
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002340}
2341
Anton Blanchard228e5482011-05-02 20:21:35 +00002342/*
2343 * Linux sendmmsg interface
2344 */
2345
2346int __sys_sendmmsg(int fd, struct mmsghdr __user *mmsg, unsigned int vlen,
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002347 unsigned int flags, bool forbid_cmsg_compat)
Anton Blanchard228e5482011-05-02 20:21:35 +00002348{
2349 int fput_needed, err, datagrams;
2350 struct socket *sock;
2351 struct mmsghdr __user *entry;
2352 struct compat_mmsghdr __user *compat_entry;
2353 struct msghdr msg_sys;
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002354 struct used_address used_address;
Tom Herbertf0922762016-03-07 14:11:03 -08002355 unsigned int oflags = flags;
Anton Blanchard228e5482011-05-02 20:21:35 +00002356
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002357 if (forbid_cmsg_compat && (flags & MSG_CMSG_COMPAT))
2358 return -EINVAL;
2359
Anton Blanchard98382f42011-08-04 14:07:39 +00002360 if (vlen > UIO_MAXIOV)
2361 vlen = UIO_MAXIOV;
Anton Blanchard228e5482011-05-02 20:21:35 +00002362
2363 datagrams = 0;
2364
2365 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2366 if (!sock)
2367 return err;
2368
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002369 used_address.name_len = UINT_MAX;
Anton Blanchard228e5482011-05-02 20:21:35 +00002370 entry = mmsg;
2371 compat_entry = (struct compat_mmsghdr __user *)mmsg;
Anton Blanchard728ffb82011-08-04 14:07:38 +00002372 err = 0;
Tom Herbertf0922762016-03-07 14:11:03 -08002373 flags |= MSG_BATCH;
Anton Blanchard228e5482011-05-02 20:21:35 +00002374
2375 while (datagrams < vlen) {
Tom Herbertf0922762016-03-07 14:11:03 -08002376 if (datagrams == vlen - 1)
2377 flags = oflags;
2378
Anton Blanchard228e5482011-05-02 20:21:35 +00002379 if (MSG_CMSG_COMPAT & flags) {
Al Viro666547f2014-04-06 14:03:05 -04002380 err = ___sys_sendmsg(sock, (struct user_msghdr __user *)compat_entry,
Tom Herbert28a94d82016-03-07 14:11:02 -08002381 &msg_sys, flags, &used_address, MSG_EOR);
Anton Blanchard228e5482011-05-02 20:21:35 +00002382 if (err < 0)
2383 break;
2384 err = __put_user(err, &compat_entry->msg_len);
2385 ++compat_entry;
2386 } else {
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002387 err = ___sys_sendmsg(sock,
Al Viro666547f2014-04-06 14:03:05 -04002388 (struct user_msghdr __user *)entry,
Tom Herbert28a94d82016-03-07 14:11:02 -08002389 &msg_sys, flags, &used_address, MSG_EOR);
Anton Blanchard228e5482011-05-02 20:21:35 +00002390 if (err < 0)
2391 break;
2392 err = put_user(err, &entry->msg_len);
2393 ++entry;
2394 }
2395
2396 if (err)
2397 break;
2398 ++datagrams;
Soheil Hassas Yeganeh30238982016-11-04 15:36:49 -04002399 if (msg_data_left(&msg_sys))
2400 break;
Eric Dumazeta78cb842016-01-08 08:37:20 -08002401 cond_resched();
Anton Blanchard228e5482011-05-02 20:21:35 +00002402 }
2403
Anton Blanchard228e5482011-05-02 20:21:35 +00002404 fput_light(sock->file, fput_needed);
2405
Anton Blanchard728ffb82011-08-04 14:07:38 +00002406 /* We only return an error if no datagrams were able to be sent */
2407 if (datagrams != 0)
Anton Blanchard228e5482011-05-02 20:21:35 +00002408 return datagrams;
2409
Anton Blanchard228e5482011-05-02 20:21:35 +00002410 return err;
2411}
2412
2413SYSCALL_DEFINE4(sendmmsg, int, fd, struct mmsghdr __user *, mmsg,
2414 unsigned int, vlen, unsigned int, flags)
2415{
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002416 return __sys_sendmmsg(fd, mmsg, vlen, flags, true);
Anton Blanchard228e5482011-05-02 20:21:35 +00002417}
2418
Al Viro666547f2014-04-06 14:03:05 -04002419static int ___sys_recvmsg(struct socket *sock, struct user_msghdr __user *msg,
Eric Dumazet95c96172012-04-15 05:58:06 +00002420 struct msghdr *msg_sys, unsigned int flags, int nosec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002422 struct compat_msghdr __user *msg_compat =
2423 (struct compat_msghdr __user *)msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 struct iovec iovstack[UIO_FASTIOV];
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002425 struct iovec *iov = iovstack;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426 unsigned long cmsg_ptr;
Al Viro2da62902015-03-14 21:13:46 -04002427 int len;
Al Viro08adb7d2014-11-10 20:23:13 -05002428 ssize_t err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429
2430 /* kernel mode address */
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07002431 struct sockaddr_storage addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432
2433 /* user mode address pointers */
2434 struct sockaddr __user *uaddr;
Al Viro08adb7d2014-11-10 20:23:13 -05002435 int __user *uaddr_len = COMPAT_NAMELEN(msg);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002436
Al Viro08adb7d2014-11-10 20:23:13 -05002437 msg_sys->msg_name = &addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438
Hannes Frederic Sowaf3d33422013-11-21 03:14:22 +01002439 if (MSG_CMSG_COMPAT & flags)
Al Viro08adb7d2014-11-10 20:23:13 -05002440 err = get_compat_msghdr(msg_sys, msg_compat, &uaddr, &iov);
Hannes Frederic Sowaf3d33422013-11-21 03:14:22 +01002441 else
Al Viro08adb7d2014-11-10 20:23:13 -05002442 err = copy_msghdr_from_user(msg_sys, msg, &uaddr, &iov);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 if (err < 0)
Al Viroda184282015-03-21 19:29:06 -04002444 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002446 cmsg_ptr = (unsigned long)msg_sys->msg_control;
2447 msg_sys->msg_flags = flags & (MSG_CMSG_CLOEXEC|MSG_CMSG_COMPAT);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002448
Hannes Frederic Sowaf3d33422013-11-21 03:14:22 +01002449 /* We assume all kernel code knows the size of sockaddr_storage */
2450 msg_sys->msg_namelen = 0;
2451
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 if (sock->file->f_flags & O_NONBLOCK)
2453 flags |= MSG_DONTWAIT;
Al Viro2da62902015-03-14 21:13:46 -04002454 err = (nosec ? sock_recvmsg_nosec : sock_recvmsg)(sock, msg_sys, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455 if (err < 0)
2456 goto out_freeiov;
2457 len = err;
2458
2459 if (uaddr != NULL) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00002460 err = move_addr_to_user(&addr,
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002461 msg_sys->msg_namelen, uaddr,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002462 uaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463 if (err < 0)
2464 goto out_freeiov;
2465 }
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002466 err = __put_user((msg_sys->msg_flags & ~MSG_CMSG_COMPAT),
David S. Miller37f7f422005-09-16 16:51:01 -07002467 COMPAT_FLAGS(msg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 if (err)
2469 goto out_freeiov;
2470 if (MSG_CMSG_COMPAT & flags)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002471 err = __put_user((unsigned long)msg_sys->msg_control - cmsg_ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 &msg_compat->msg_controllen);
2473 else
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002474 err = __put_user((unsigned long)msg_sys->msg_control - cmsg_ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 &msg->msg_controllen);
2476 if (err)
2477 goto out_freeiov;
2478 err = len;
2479
2480out_freeiov:
Al Viroda184282015-03-21 19:29:06 -04002481 kfree(iov);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002482 return err;
2483}
2484
2485/*
2486 * BSD recvmsg interface
2487 */
2488
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002489long __sys_recvmsg(int fd, struct user_msghdr __user *msg, unsigned int flags,
2490 bool forbid_cmsg_compat)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002491{
2492 int fput_needed, err;
2493 struct msghdr msg_sys;
Andy Lutomirski1be374a2013-05-22 14:07:44 -07002494 struct socket *sock;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002495
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002496 if (forbid_cmsg_compat && (flags & MSG_CMSG_COMPAT))
2497 return -EINVAL;
2498
Andy Lutomirski1be374a2013-05-22 14:07:44 -07002499 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002500 if (!sock)
2501 goto out;
2502
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002503 err = ___sys_recvmsg(sock, msg, &msg_sys, flags, 0);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002504
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002505 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506out:
2507 return err;
2508}
2509
Al Viro666547f2014-04-06 14:03:05 -04002510SYSCALL_DEFINE3(recvmsg, int, fd, struct user_msghdr __user *, msg,
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002511 unsigned int, flags)
2512{
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002513 return __sys_recvmsg(fd, msg, flags, true);
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002514}
2515
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002516/*
2517 * Linux recvmmsg interface
2518 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519
Arnd Bergmanne11d4282018-04-18 13:43:52 +02002520static int do_recvmmsg(int fd, struct mmsghdr __user *mmsg,
2521 unsigned int vlen, unsigned int flags,
2522 struct timespec64 *timeout)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002523{
2524 int fput_needed, err, datagrams;
2525 struct socket *sock;
2526 struct mmsghdr __user *entry;
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002527 struct compat_mmsghdr __user *compat_entry;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002528 struct msghdr msg_sys;
Deepa Dinamani766b9f92016-05-19 17:09:05 -07002529 struct timespec64 end_time;
2530 struct timespec64 timeout64;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002531
2532 if (timeout &&
2533 poll_select_set_timeout(&end_time, timeout->tv_sec,
2534 timeout->tv_nsec))
2535 return -EINVAL;
2536
2537 datagrams = 0;
2538
2539 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2540 if (!sock)
2541 return err;
2542
Soheil Hassas Yeganeh7797dc42018-02-27 18:22:40 -05002543 if (likely(!(flags & MSG_ERRQUEUE))) {
2544 err = sock_error(sock->sk);
2545 if (err) {
2546 datagrams = err;
2547 goto out_put;
2548 }
Maxime Jayate623a9e2017-02-21 18:35:51 +01002549 }
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002550
2551 entry = mmsg;
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002552 compat_entry = (struct compat_mmsghdr __user *)mmsg;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002553
2554 while (datagrams < vlen) {
2555 /*
2556 * No need to ask LSM for more than the first datagram.
2557 */
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002558 if (MSG_CMSG_COMPAT & flags) {
Al Viro666547f2014-04-06 14:03:05 -04002559 err = ___sys_recvmsg(sock, (struct user_msghdr __user *)compat_entry,
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002560 &msg_sys, flags & ~MSG_WAITFORONE,
2561 datagrams);
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002562 if (err < 0)
2563 break;
2564 err = __put_user(err, &compat_entry->msg_len);
2565 ++compat_entry;
2566 } else {
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002567 err = ___sys_recvmsg(sock,
Al Viro666547f2014-04-06 14:03:05 -04002568 (struct user_msghdr __user *)entry,
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002569 &msg_sys, flags & ~MSG_WAITFORONE,
2570 datagrams);
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002571 if (err < 0)
2572 break;
2573 err = put_user(err, &entry->msg_len);
2574 ++entry;
2575 }
2576
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002577 if (err)
2578 break;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002579 ++datagrams;
2580
Brandon L Black71c5c1592010-03-26 16:18:03 +00002581 /* MSG_WAITFORONE turns on MSG_DONTWAIT after one packet */
2582 if (flags & MSG_WAITFORONE)
2583 flags |= MSG_DONTWAIT;
2584
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002585 if (timeout) {
Deepa Dinamani766b9f92016-05-19 17:09:05 -07002586 ktime_get_ts64(&timeout64);
Arnd Bergmannc2e6c852018-04-18 13:42:25 +02002587 *timeout = timespec64_sub(end_time, timeout64);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002588 if (timeout->tv_sec < 0) {
2589 timeout->tv_sec = timeout->tv_nsec = 0;
2590 break;
2591 }
2592
2593 /* Timeout, return less than vlen datagrams */
2594 if (timeout->tv_nsec == 0 && timeout->tv_sec == 0)
2595 break;
2596 }
2597
2598 /* Out of band data, return right away */
2599 if (msg_sys.msg_flags & MSG_OOB)
2600 break;
Eric Dumazeta78cb842016-01-08 08:37:20 -08002601 cond_resched();
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002602 }
2603
Arnaldo Carvalho de Melo34b88a62016-03-14 09:56:35 -03002604 if (err == 0)
2605 goto out_put;
2606
2607 if (datagrams == 0) {
2608 datagrams = err;
2609 goto out_put;
2610 }
2611
2612 /*
2613 * We may return less entries than requested (vlen) if the
2614 * sock is non block and there aren't enough datagrams...
2615 */
2616 if (err != -EAGAIN) {
2617 /*
2618 * ... or if recvmsg returns an error after we
2619 * received some datagrams, where we record the
2620 * error to return on the next call or if the
2621 * app asks about it using getsockopt(SO_ERROR).
2622 */
2623 sock->sk->sk_err = -err;
2624 }
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002625out_put:
2626 fput_light(sock->file, fput_needed);
2627
Arnaldo Carvalho de Melo34b88a62016-03-14 09:56:35 -03002628 return datagrams;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002629}
2630
Arnd Bergmanne11d4282018-04-18 13:43:52 +02002631int __sys_recvmmsg(int fd, struct mmsghdr __user *mmsg,
2632 unsigned int vlen, unsigned int flags,
2633 struct __kernel_timespec __user *timeout,
2634 struct old_timespec32 __user *timeout32)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002635{
2636 int datagrams;
Arnd Bergmannc2e6c852018-04-18 13:42:25 +02002637 struct timespec64 timeout_sys;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002638
Arnd Bergmanne11d4282018-04-18 13:43:52 +02002639 if (timeout && get_timespec64(&timeout_sys, timeout))
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002640 return -EFAULT;
2641
Arnd Bergmanne11d4282018-04-18 13:43:52 +02002642 if (timeout32 && get_old_timespec32(&timeout_sys, timeout32))
2643 return -EFAULT;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002644
Arnd Bergmanne11d4282018-04-18 13:43:52 +02002645 if (!timeout && !timeout32)
2646 return do_recvmmsg(fd, mmsg, vlen, flags, NULL);
2647
2648 datagrams = do_recvmmsg(fd, mmsg, vlen, flags, &timeout_sys);
2649
2650 if (datagrams <= 0)
2651 return datagrams;
2652
2653 if (timeout && put_timespec64(&timeout_sys, timeout))
2654 datagrams = -EFAULT;
2655
2656 if (timeout32 && put_old_timespec32(&timeout_sys, timeout32))
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002657 datagrams = -EFAULT;
2658
2659 return datagrams;
2660}
2661
Dominik Brodowski1255e262018-03-13 20:44:21 +01002662SYSCALL_DEFINE5(recvmmsg, int, fd, struct mmsghdr __user *, mmsg,
2663 unsigned int, vlen, unsigned int, flags,
Arnd Bergmannc2e6c852018-04-18 13:42:25 +02002664 struct __kernel_timespec __user *, timeout)
Dominik Brodowski1255e262018-03-13 20:44:21 +01002665{
Arnd Bergmanne11d4282018-04-18 13:43:52 +02002666 if (flags & MSG_CMSG_COMPAT)
2667 return -EINVAL;
2668
2669 return __sys_recvmmsg(fd, mmsg, vlen, flags, timeout, NULL);
Dominik Brodowski1255e262018-03-13 20:44:21 +01002670}
2671
Arnd Bergmanne11d4282018-04-18 13:43:52 +02002672#ifdef CONFIG_COMPAT_32BIT_TIME
2673SYSCALL_DEFINE5(recvmmsg_time32, int, fd, struct mmsghdr __user *, mmsg,
2674 unsigned int, vlen, unsigned int, flags,
2675 struct old_timespec32 __user *, timeout)
2676{
2677 if (flags & MSG_CMSG_COMPAT)
2678 return -EINVAL;
2679
2680 return __sys_recvmmsg(fd, mmsg, vlen, flags, NULL, timeout);
2681}
2682#endif
2683
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002684#ifdef __ARCH_WANT_SYS_SOCKETCALL
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685/* Argument list sizes for sys_socketcall */
2686#define AL(x) ((x) * sizeof(unsigned long))
Anton Blanchard228e5482011-05-02 20:21:35 +00002687static const unsigned char nargs[21] = {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002688 AL(0), AL(3), AL(3), AL(3), AL(2), AL(3),
2689 AL(3), AL(3), AL(4), AL(4), AL(4), AL(6),
2690 AL(6), AL(2), AL(5), AL(5), AL(3), AL(3),
Anton Blanchard228e5482011-05-02 20:21:35 +00002691 AL(4), AL(5), AL(4)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002692};
2693
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694#undef AL
2695
2696/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002697 * System call vectors.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698 *
2699 * Argument checking cleaned up. Saved 20% in size.
2700 * This function doesn't need to set the kernel lock because
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002701 * it is set by the callees.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 */
2703
Heiko Carstens3e0fa652009-01-14 14:14:24 +01002704SYSCALL_DEFINE2(socketcall, int, call, unsigned long __user *, args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705{
Chen Gang2950fa92013-04-07 16:55:23 +08002706 unsigned long a[AUDITSC_ARGS];
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002707 unsigned long a0, a1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 int err;
Arjan van de Ven47379052009-09-28 12:57:44 -07002709 unsigned int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710
Anton Blanchard228e5482011-05-02 20:21:35 +00002711 if (call < 1 || call > SYS_SENDMMSG)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712 return -EINVAL;
Jeremy Clinec8e8cd52018-07-27 22:43:01 +00002713 call = array_index_nospec(call, SYS_SENDMMSG + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714
Arjan van de Ven47379052009-09-28 12:57:44 -07002715 len = nargs[call];
2716 if (len > sizeof(a))
2717 return -EINVAL;
2718
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719 /* copy_from_user should be SMP safe. */
Arjan van de Ven47379052009-09-28 12:57:44 -07002720 if (copy_from_user(a, args, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721 return -EFAULT;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002722
Chen Gang2950fa92013-04-07 16:55:23 +08002723 err = audit_socketcall(nargs[call] / sizeof(unsigned long), a);
2724 if (err)
2725 return err;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002726
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002727 a0 = a[0];
2728 a1 = a[1];
2729
2730 switch (call) {
2731 case SYS_SOCKET:
Dominik Brodowski9d6a15c2018-03-13 19:29:43 +01002732 err = __sys_socket(a0, a1, a[2]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002733 break;
2734 case SYS_BIND:
Dominik Brodowskia87d35d2018-03-13 19:33:09 +01002735 err = __sys_bind(a0, (struct sockaddr __user *)a1, a[2]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002736 break;
2737 case SYS_CONNECT:
Dominik Brodowski1387c2c2018-03-13 19:35:09 +01002738 err = __sys_connect(a0, (struct sockaddr __user *)a1, a[2]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002739 break;
2740 case SYS_LISTEN:
Dominik Brodowski25e290e2018-03-13 19:36:54 +01002741 err = __sys_listen(a0, a1);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002742 break;
2743 case SYS_ACCEPT:
Dominik Brodowski4541e802018-03-13 19:24:23 +01002744 err = __sys_accept4(a0, (struct sockaddr __user *)a1,
2745 (int __user *)a[2], 0);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002746 break;
2747 case SYS_GETSOCKNAME:
2748 err =
Dominik Brodowski8882a102018-03-13 19:43:14 +01002749 __sys_getsockname(a0, (struct sockaddr __user *)a1,
2750 (int __user *)a[2]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002751 break;
2752 case SYS_GETPEERNAME:
2753 err =
Dominik Brodowskib21c8f82018-03-13 19:47:00 +01002754 __sys_getpeername(a0, (struct sockaddr __user *)a1,
2755 (int __user *)a[2]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002756 break;
2757 case SYS_SOCKETPAIR:
Dominik Brodowski6debc8d2018-03-13 19:49:23 +01002758 err = __sys_socketpair(a0, a1, a[2], (int __user *)a[3]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002759 break;
2760 case SYS_SEND:
Dominik Brodowskif3bf8962018-03-13 19:52:00 +01002761 err = __sys_sendto(a0, (void __user *)a1, a[2], a[3],
2762 NULL, 0);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002763 break;
2764 case SYS_SENDTO:
Dominik Brodowski211b6342018-03-13 19:18:52 +01002765 err = __sys_sendto(a0, (void __user *)a1, a[2], a[3],
2766 (struct sockaddr __user *)a[4], a[5]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002767 break;
2768 case SYS_RECV:
Dominik Brodowskid27e9af2018-03-13 19:54:17 +01002769 err = __sys_recvfrom(a0, (void __user *)a1, a[2], a[3],
2770 NULL, NULL);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002771 break;
2772 case SYS_RECVFROM:
Dominik Brodowski7a09e1e2018-03-13 19:10:06 +01002773 err = __sys_recvfrom(a0, (void __user *)a1, a[2], a[3],
2774 (struct sockaddr __user *)a[4],
2775 (int __user *)a[5]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002776 break;
2777 case SYS_SHUTDOWN:
Dominik Brodowski005a1ae2018-03-13 20:07:05 +01002778 err = __sys_shutdown(a0, a1);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002779 break;
2780 case SYS_SETSOCKOPT:
Dominik Brodowskicc36dca2018-03-13 20:10:59 +01002781 err = __sys_setsockopt(a0, a1, a[2], (char __user *)a[3],
2782 a[4]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002783 break;
2784 case SYS_GETSOCKOPT:
2785 err =
Dominik Brodowski13a2d702018-03-13 20:15:04 +01002786 __sys_getsockopt(a0, a1, a[2], (char __user *)a[3],
2787 (int __user *)a[4]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002788 break;
2789 case SYS_SENDMSG:
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002790 err = __sys_sendmsg(a0, (struct user_msghdr __user *)a1,
2791 a[2], true);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002792 break;
Anton Blanchard228e5482011-05-02 20:21:35 +00002793 case SYS_SENDMMSG:
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002794 err = __sys_sendmmsg(a0, (struct mmsghdr __user *)a1, a[2],
2795 a[3], true);
Anton Blanchard228e5482011-05-02 20:21:35 +00002796 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002797 case SYS_RECVMSG:
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002798 err = __sys_recvmsg(a0, (struct user_msghdr __user *)a1,
2799 a[2], true);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002800 break;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002801 case SYS_RECVMMSG:
Arnd Bergmanne11d4282018-04-18 13:43:52 +02002802 if (IS_ENABLED(CONFIG_64BIT) || !IS_ENABLED(CONFIG_64BIT_TIME))
2803 err = __sys_recvmmsg(a0, (struct mmsghdr __user *)a1,
2804 a[2], a[3],
2805 (struct __kernel_timespec __user *)a[4],
2806 NULL);
2807 else
2808 err = __sys_recvmmsg(a0, (struct mmsghdr __user *)a1,
2809 a[2], a[3], NULL,
2810 (struct old_timespec32 __user *)a[4]);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002811 break;
Ulrich Drepperde11def2008-11-19 15:36:14 -08002812 case SYS_ACCEPT4:
Dominik Brodowski4541e802018-03-13 19:24:23 +01002813 err = __sys_accept4(a0, (struct sockaddr __user *)a1,
2814 (int __user *)a[2], a[3]);
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07002815 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002816 default:
2817 err = -EINVAL;
2818 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819 }
2820 return err;
2821}
2822
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002823#endif /* __ARCH_WANT_SYS_SOCKETCALL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002825/**
2826 * sock_register - add a socket protocol handler
2827 * @ops: description of protocol
2828 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829 * This function is called by a protocol handler that wants to
2830 * advertise its address family, and have it linked into the
Masanari Iidae793c0f2014-09-04 23:44:36 +09002831 * socket interface. The value ops->family corresponds to the
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002832 * socket system call protocol family.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833 */
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002834int sock_register(const struct net_proto_family *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835{
2836 int err;
2837
2838 if (ops->family >= NPROTO) {
Yang Yingliang3410f222014-02-12 17:09:55 +08002839 pr_crit("protocol %d >= NPROTO(%d)\n", ops->family, NPROTO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 return -ENOBUFS;
2841 }
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002842
2843 spin_lock(&net_family_lock);
Eric Dumazet190683a2010-11-10 10:50:44 +00002844 if (rcu_dereference_protected(net_families[ops->family],
2845 lockdep_is_held(&net_family_lock)))
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002846 err = -EEXIST;
2847 else {
Eric Dumazetcf778b02012-01-12 04:41:32 +00002848 rcu_assign_pointer(net_families[ops->family], ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849 err = 0;
2850 }
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002851 spin_unlock(&net_family_lock);
2852
Yang Yingliang3410f222014-02-12 17:09:55 +08002853 pr_info("NET: Registered protocol family %d\n", ops->family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854 return err;
2855}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002856EXPORT_SYMBOL(sock_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002858/**
2859 * sock_unregister - remove a protocol handler
2860 * @family: protocol family to remove
2861 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 * This function is called by a protocol handler that wants to
2863 * remove its address family, and have it unlinked from the
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002864 * new socket creation.
2865 *
2866 * If protocol handler is a module, then it can use module reference
2867 * counts to protect against new references. If protocol handler is not
2868 * a module then it needs to provide its own protection in
2869 * the ops->create routine.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870 */
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002871void sock_unregister(int family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872{
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002873 BUG_ON(family < 0 || family >= NPROTO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002875 spin_lock(&net_family_lock);
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00002876 RCU_INIT_POINTER(net_families[family], NULL);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002877 spin_unlock(&net_family_lock);
2878
2879 synchronize_rcu();
2880
Yang Yingliang3410f222014-02-12 17:09:55 +08002881 pr_info("NET: Unregistered protocol family %d\n", family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002883EXPORT_SYMBOL(sock_unregister);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884
Xin Longbf2ae2e2018-03-10 18:57:50 +08002885bool sock_is_registered(int family)
2886{
Jeremy Cline66b51b02018-08-13 22:23:13 +00002887 return family < NPROTO && rcu_access_pointer(net_families[family]);
Xin Longbf2ae2e2018-03-10 18:57:50 +08002888}
2889
Andi Kleen77d76ea2005-12-22 12:43:42 -08002890static int __init sock_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891{
Nick Pigginb3e19d92011-01-07 17:50:11 +11002892 int err;
Eric W. Biederman2ca794e2012-04-19 13:20:32 +00002893 /*
2894 * Initialize the network sysctl infrastructure.
2895 */
2896 err = net_sysctl_init();
2897 if (err)
2898 goto out;
Nick Pigginb3e19d92011-01-07 17:50:11 +11002899
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002901 * Initialize skbuff SLAB cache
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902 */
2903 skb_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904
2905 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002906 * Initialize the protocols module.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907 */
2908
2909 init_inodecache();
Nick Pigginb3e19d92011-01-07 17:50:11 +11002910
2911 err = register_filesystem(&sock_fs_type);
2912 if (err)
2913 goto out_fs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914 sock_mnt = kern_mount(&sock_fs_type);
Nick Pigginb3e19d92011-01-07 17:50:11 +11002915 if (IS_ERR(sock_mnt)) {
2916 err = PTR_ERR(sock_mnt);
2917 goto out_mount;
2918 }
Andi Kleen77d76ea2005-12-22 12:43:42 -08002919
2920 /* The real protocol initialization is performed in later initcalls.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921 */
2922
2923#ifdef CONFIG_NETFILTER
Pablo Neira Ayuso6d11cfd2013-05-22 22:42:36 +00002924 err = netfilter_init();
2925 if (err)
2926 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927#endif
David S. Millercbeb3212005-12-22 12:58:55 -08002928
Daniel Borkmann408eccc2014-04-01 16:20:23 +02002929 ptp_classifier_init();
Richard Cochranc1f19b52010-07-17 08:49:36 +00002930
Nick Pigginb3e19d92011-01-07 17:50:11 +11002931out:
2932 return err;
2933
2934out_mount:
2935 unregister_filesystem(&sock_fs_type);
2936out_fs:
2937 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938}
2939
Andi Kleen77d76ea2005-12-22 12:43:42 -08002940core_initcall(sock_init); /* early initcall */
2941
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942#ifdef CONFIG_PROC_FS
2943void socket_seq_show(struct seq_file *seq)
2944{
Tonghao Zhang648845a2017-12-14 05:51:58 -08002945 seq_printf(seq, "sockets: used %d\n",
2946 sock_inuse_get(seq->private));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947}
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002948#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949
Shaun Pereira89bbfc92006-03-21 23:58:08 -08002950#ifdef CONFIG_COMPAT
Al Viro36fd6332017-06-26 13:19:16 -04002951static int compat_dev_ifconf(struct net *net, struct compat_ifconf __user *uifc32)
Arnd Bergmann7a229382009-11-06 23:00:29 -08002952{
Arnd Bergmann6b960182009-11-06 23:10:54 -08002953 struct compat_ifconf ifc32;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002954 struct ifconf ifc;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002955 int err;
2956
Arnd Bergmann6b960182009-11-06 23:10:54 -08002957 if (copy_from_user(&ifc32, uifc32, sizeof(struct compat_ifconf)))
Arnd Bergmann7a229382009-11-06 23:00:29 -08002958 return -EFAULT;
2959
Al Viro36fd6332017-06-26 13:19:16 -04002960 ifc.ifc_len = ifc32.ifc_len;
2961 ifc.ifc_req = compat_ptr(ifc32.ifcbuf);
Arnd Bergmann7a229382009-11-06 23:00:29 -08002962
Al Viro36fd6332017-06-26 13:19:16 -04002963 rtnl_lock();
2964 err = dev_ifconf(net, &ifc, sizeof(struct compat_ifreq));
2965 rtnl_unlock();
Arnd Bergmann7a229382009-11-06 23:00:29 -08002966 if (err)
2967 return err;
2968
Al Viro36fd6332017-06-26 13:19:16 -04002969 ifc32.ifc_len = ifc.ifc_len;
Arnd Bergmann6b960182009-11-06 23:10:54 -08002970 if (copy_to_user(uifc32, &ifc32, sizeof(struct compat_ifconf)))
Arnd Bergmann7a229382009-11-06 23:00:29 -08002971 return -EFAULT;
2972
2973 return 0;
2974}
2975
Arnd Bergmann6b960182009-11-06 23:10:54 -08002976static int ethtool_ioctl(struct net *net, struct compat_ifreq __user *ifr32)
Arnd Bergmann7a229382009-11-06 23:00:29 -08002977{
Ben Hutchings3a7da392011-03-17 07:34:32 +00002978 struct compat_ethtool_rxnfc __user *compat_rxnfc;
2979 bool convert_in = false, convert_out = false;
Al Viro44c02a22017-10-05 12:59:44 -04002980 size_t buf_size = 0;
2981 struct ethtool_rxnfc __user *rxnfc = NULL;
2982 struct ifreq ifr;
Ben Hutchings3a7da392011-03-17 07:34:32 +00002983 u32 rule_cnt = 0, actual_rule_cnt;
2984 u32 ethcmd;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002985 u32 data;
Ben Hutchings3a7da392011-03-17 07:34:32 +00002986 int ret;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002987
2988 if (get_user(data, &ifr32->ifr_ifru.ifru_data))
2989 return -EFAULT;
2990
Ben Hutchings3a7da392011-03-17 07:34:32 +00002991 compat_rxnfc = compat_ptr(data);
2992
2993 if (get_user(ethcmd, &compat_rxnfc->cmd))
Arnd Bergmann7a229382009-11-06 23:00:29 -08002994 return -EFAULT;
2995
Ben Hutchings3a7da392011-03-17 07:34:32 +00002996 /* Most ethtool structures are defined without padding.
2997 * Unfortunately struct ethtool_rxnfc is an exception.
2998 */
2999 switch (ethcmd) {
3000 default:
3001 break;
3002 case ETHTOOL_GRXCLSRLALL:
3003 /* Buffer size is variable */
3004 if (get_user(rule_cnt, &compat_rxnfc->rule_cnt))
3005 return -EFAULT;
3006 if (rule_cnt > KMALLOC_MAX_SIZE / sizeof(u32))
3007 return -ENOMEM;
3008 buf_size += rule_cnt * sizeof(u32);
3009 /* fall through */
3010 case ETHTOOL_GRXRINGS:
3011 case ETHTOOL_GRXCLSRLCNT:
3012 case ETHTOOL_GRXCLSRULE:
Ben Hutchings55664f32012-01-03 12:04:51 +00003013 case ETHTOOL_SRXCLSRLINS:
Ben Hutchings3a7da392011-03-17 07:34:32 +00003014 convert_out = true;
3015 /* fall through */
3016 case ETHTOOL_SRXCLSRLDEL:
Ben Hutchings3a7da392011-03-17 07:34:32 +00003017 buf_size += sizeof(struct ethtool_rxnfc);
3018 convert_in = true;
Al Viro44c02a22017-10-05 12:59:44 -04003019 rxnfc = compat_alloc_user_space(buf_size);
Ben Hutchings3a7da392011-03-17 07:34:32 +00003020 break;
3021 }
3022
Al Viro44c02a22017-10-05 12:59:44 -04003023 if (copy_from_user(&ifr.ifr_name, &ifr32->ifr_name, IFNAMSIZ))
Ben Hutchings3a7da392011-03-17 07:34:32 +00003024 return -EFAULT;
3025
Al Viro44c02a22017-10-05 12:59:44 -04003026 ifr.ifr_data = convert_in ? rxnfc : (void __user *)compat_rxnfc;
Ben Hutchings3a7da392011-03-17 07:34:32 +00003027
3028 if (convert_in) {
Alexander Duyck127fe532011-04-08 18:01:59 +00003029 /* We expect there to be holes between fs.m_ext and
Ben Hutchings3a7da392011-03-17 07:34:32 +00003030 * fs.ring_cookie and at the end of fs, but nowhere else.
3031 */
Alexander Duyck127fe532011-04-08 18:01:59 +00003032 BUILD_BUG_ON(offsetof(struct compat_ethtool_rxnfc, fs.m_ext) +
3033 sizeof(compat_rxnfc->fs.m_ext) !=
3034 offsetof(struct ethtool_rxnfc, fs.m_ext) +
3035 sizeof(rxnfc->fs.m_ext));
Ben Hutchings3a7da392011-03-17 07:34:32 +00003036 BUILD_BUG_ON(
3037 offsetof(struct compat_ethtool_rxnfc, fs.location) -
3038 offsetof(struct compat_ethtool_rxnfc, fs.ring_cookie) !=
3039 offsetof(struct ethtool_rxnfc, fs.location) -
3040 offsetof(struct ethtool_rxnfc, fs.ring_cookie));
3041
3042 if (copy_in_user(rxnfc, compat_rxnfc,
Stephen Hemminger954b1242013-02-11 06:22:28 +00003043 (void __user *)(&rxnfc->fs.m_ext + 1) -
3044 (void __user *)rxnfc) ||
Ben Hutchings3a7da392011-03-17 07:34:32 +00003045 copy_in_user(&rxnfc->fs.ring_cookie,
3046 &compat_rxnfc->fs.ring_cookie,
Stephen Hemminger954b1242013-02-11 06:22:28 +00003047 (void __user *)(&rxnfc->fs.location + 1) -
Wenwen Wangb6168562018-10-18 09:36:46 -05003048 (void __user *)&rxnfc->fs.ring_cookie))
3049 return -EFAULT;
3050 if (ethcmd == ETHTOOL_GRXCLSRLALL) {
3051 if (put_user(rule_cnt, &rxnfc->rule_cnt))
3052 return -EFAULT;
3053 } else if (copy_in_user(&rxnfc->rule_cnt,
3054 &compat_rxnfc->rule_cnt,
3055 sizeof(rxnfc->rule_cnt)))
Ben Hutchings3a7da392011-03-17 07:34:32 +00003056 return -EFAULT;
3057 }
3058
Al Viro44c02a22017-10-05 12:59:44 -04003059 ret = dev_ioctl(net, SIOCETHTOOL, &ifr, NULL);
Ben Hutchings3a7da392011-03-17 07:34:32 +00003060 if (ret)
3061 return ret;
3062
3063 if (convert_out) {
3064 if (copy_in_user(compat_rxnfc, rxnfc,
Stephen Hemminger954b1242013-02-11 06:22:28 +00003065 (const void __user *)(&rxnfc->fs.m_ext + 1) -
3066 (const void __user *)rxnfc) ||
Ben Hutchings3a7da392011-03-17 07:34:32 +00003067 copy_in_user(&compat_rxnfc->fs.ring_cookie,
3068 &rxnfc->fs.ring_cookie,
Stephen Hemminger954b1242013-02-11 06:22:28 +00003069 (const void __user *)(&rxnfc->fs.location + 1) -
3070 (const void __user *)&rxnfc->fs.ring_cookie) ||
Ben Hutchings3a7da392011-03-17 07:34:32 +00003071 copy_in_user(&compat_rxnfc->rule_cnt, &rxnfc->rule_cnt,
3072 sizeof(rxnfc->rule_cnt)))
3073 return -EFAULT;
3074
3075 if (ethcmd == ETHTOOL_GRXCLSRLALL) {
3076 /* As an optimisation, we only copy the actual
3077 * number of rules that the underlying
3078 * function returned. Since Mallory might
3079 * change the rule count in user memory, we
3080 * check that it is less than the rule count
3081 * originally given (as the user buffer size),
3082 * which has been range-checked.
3083 */
3084 if (get_user(actual_rule_cnt, &rxnfc->rule_cnt))
3085 return -EFAULT;
3086 if (actual_rule_cnt < rule_cnt)
3087 rule_cnt = actual_rule_cnt;
3088 if (copy_in_user(&compat_rxnfc->rule_locs[0],
3089 &rxnfc->rule_locs[0],
3090 rule_cnt * sizeof(u32)))
3091 return -EFAULT;
3092 }
3093 }
3094
3095 return 0;
Arnd Bergmann7a229382009-11-06 23:00:29 -08003096}
3097
Arnd Bergmann7a50a242009-11-08 20:57:03 -08003098static int compat_siocwandev(struct net *net, struct compat_ifreq __user *uifr32)
3099{
Arnd Bergmann7a50a242009-11-08 20:57:03 -08003100 compat_uptr_t uptr32;
Al Viro44c02a22017-10-05 12:59:44 -04003101 struct ifreq ifr;
3102 void __user *saved;
3103 int err;
Arnd Bergmann7a50a242009-11-08 20:57:03 -08003104
Al Viro44c02a22017-10-05 12:59:44 -04003105 if (copy_from_user(&ifr, uifr32, sizeof(struct compat_ifreq)))
Arnd Bergmann7a50a242009-11-08 20:57:03 -08003106 return -EFAULT;
3107
3108 if (get_user(uptr32, &uifr32->ifr_settings.ifs_ifsu))
3109 return -EFAULT;
3110
Al Viro44c02a22017-10-05 12:59:44 -04003111 saved = ifr.ifr_settings.ifs_ifsu.raw_hdlc;
3112 ifr.ifr_settings.ifs_ifsu.raw_hdlc = compat_ptr(uptr32);
Arnd Bergmann7a50a242009-11-08 20:57:03 -08003113
Al Viro44c02a22017-10-05 12:59:44 -04003114 err = dev_ioctl(net, SIOCWANDEV, &ifr, NULL);
3115 if (!err) {
3116 ifr.ifr_settings.ifs_ifsu.raw_hdlc = saved;
3117 if (copy_to_user(uifr32, &ifr, sizeof(struct compat_ifreq)))
3118 err = -EFAULT;
Joe Perchesccbd6a52010-05-14 10:58:26 +00003119 }
Al Viro44c02a22017-10-05 12:59:44 -04003120 return err;
Arnd Bergmann7a229382009-11-06 23:00:29 -08003121}
3122
Ben Hutchings590d4692013-11-18 17:04:13 +00003123/* Handle ioctls that use ifreq::ifr_data and just need struct ifreq converted */
3124static int compat_ifr_data_ioctl(struct net *net, unsigned int cmd,
Arnd Bergmann6b960182009-11-06 23:10:54 -08003125 struct compat_ifreq __user *u_ifreq32)
Arnd Bergmann7a229382009-11-06 23:00:29 -08003126{
Al Viro44c02a22017-10-05 12:59:44 -04003127 struct ifreq ifreq;
Arnd Bergmann7a229382009-11-06 23:00:29 -08003128 u32 data32;
3129
Al Viro44c02a22017-10-05 12:59:44 -04003130 if (copy_from_user(ifreq.ifr_name, u_ifreq32->ifr_name, IFNAMSIZ))
Arnd Bergmann7a229382009-11-06 23:00:29 -08003131 return -EFAULT;
Al Viro44c02a22017-10-05 12:59:44 -04003132 if (get_user(data32, &u_ifreq32->ifr_data))
Arnd Bergmann7a229382009-11-06 23:00:29 -08003133 return -EFAULT;
Al Viro44c02a22017-10-05 12:59:44 -04003134 ifreq.ifr_data = compat_ptr(data32);
Arnd Bergmann7a229382009-11-06 23:00:29 -08003135
Al Viro44c02a22017-10-05 12:59:44 -04003136 return dev_ioctl(net, cmd, &ifreq, NULL);
Arnd Bergmann7a229382009-11-06 23:00:29 -08003137}
3138
Johannes Berg37ac39b2019-01-25 22:43:18 +01003139static int compat_ifreq_ioctl(struct net *net, struct socket *sock,
3140 unsigned int cmd,
3141 struct compat_ifreq __user *uifr32)
3142{
3143 struct ifreq __user *uifr;
3144 int err;
3145
3146 /* Handle the fact that while struct ifreq has the same *layout* on
3147 * 32/64 for everything but ifreq::ifru_ifmap and ifreq::ifru_data,
3148 * which are handled elsewhere, it still has different *size* due to
3149 * ifreq::ifru_ifmap (which is 16 bytes on 32 bit, 24 bytes on 64-bit,
3150 * resulting in struct ifreq being 32 and 40 bytes respectively).
3151 * As a result, if the struct happens to be at the end of a page and
3152 * the next page isn't readable/writable, we get a fault. To prevent
3153 * that, copy back and forth to the full size.
3154 */
3155
3156 uifr = compat_alloc_user_space(sizeof(*uifr));
3157 if (copy_in_user(uifr, uifr32, sizeof(*uifr32)))
3158 return -EFAULT;
3159
3160 err = sock_do_ioctl(net, sock, cmd, (unsigned long)uifr);
3161
3162 if (!err) {
3163 switch (cmd) {
3164 case SIOCGIFFLAGS:
3165 case SIOCGIFMETRIC:
3166 case SIOCGIFMTU:
3167 case SIOCGIFMEM:
3168 case SIOCGIFHWADDR:
3169 case SIOCGIFINDEX:
3170 case SIOCGIFADDR:
3171 case SIOCGIFBRDADDR:
3172 case SIOCGIFDSTADDR:
3173 case SIOCGIFNETMASK:
3174 case SIOCGIFPFLAGS:
3175 case SIOCGIFTXQLEN:
3176 case SIOCGMIIPHY:
3177 case SIOCGMIIREG:
Johannes Bergc6c9fee2019-01-25 22:43:19 +01003178 case SIOCGIFNAME:
Johannes Berg37ac39b2019-01-25 22:43:18 +01003179 if (copy_in_user(uifr32, uifr, sizeof(*uifr32)))
3180 err = -EFAULT;
3181 break;
3182 }
3183 }
3184 return err;
3185}
3186
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003187static int compat_sioc_ifmap(struct net *net, unsigned int cmd,
3188 struct compat_ifreq __user *uifr32)
3189{
3190 struct ifreq ifr;
3191 struct compat_ifmap __user *uifmap32;
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003192 int err;
3193
3194 uifmap32 = &uifr32->ifr_ifru.ifru_map;
3195 err = copy_from_user(&ifr, uifr32, sizeof(ifr.ifr_name));
Mathieu Desnoyers3ddc5b42013-09-11 14:23:18 -07003196 err |= get_user(ifr.ifr_map.mem_start, &uifmap32->mem_start);
3197 err |= get_user(ifr.ifr_map.mem_end, &uifmap32->mem_end);
3198 err |= get_user(ifr.ifr_map.base_addr, &uifmap32->base_addr);
3199 err |= get_user(ifr.ifr_map.irq, &uifmap32->irq);
3200 err |= get_user(ifr.ifr_map.dma, &uifmap32->dma);
3201 err |= get_user(ifr.ifr_map.port, &uifmap32->port);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003202 if (err)
3203 return -EFAULT;
3204
Al Viro44c02a22017-10-05 12:59:44 -04003205 err = dev_ioctl(net, cmd, &ifr, NULL);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003206
3207 if (cmd == SIOCGIFMAP && !err) {
3208 err = copy_to_user(uifr32, &ifr, sizeof(ifr.ifr_name));
Mathieu Desnoyers3ddc5b42013-09-11 14:23:18 -07003209 err |= put_user(ifr.ifr_map.mem_start, &uifmap32->mem_start);
3210 err |= put_user(ifr.ifr_map.mem_end, &uifmap32->mem_end);
3211 err |= put_user(ifr.ifr_map.base_addr, &uifmap32->base_addr);
3212 err |= put_user(ifr.ifr_map.irq, &uifmap32->irq);
3213 err |= put_user(ifr.ifr_map.dma, &uifmap32->dma);
3214 err |= put_user(ifr.ifr_map.port, &uifmap32->port);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003215 if (err)
3216 err = -EFAULT;
3217 }
3218 return err;
3219}
3220
Arnd Bergmann7a229382009-11-06 23:00:29 -08003221struct rtentry32 {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003222 u32 rt_pad1;
Arnd Bergmann7a229382009-11-06 23:00:29 -08003223 struct sockaddr rt_dst; /* target address */
3224 struct sockaddr rt_gateway; /* gateway addr (RTF_GATEWAY) */
3225 struct sockaddr rt_genmask; /* target network mask (IP) */
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003226 unsigned short rt_flags;
3227 short rt_pad2;
3228 u32 rt_pad3;
3229 unsigned char rt_tos;
3230 unsigned char rt_class;
3231 short rt_pad4;
3232 short rt_metric; /* +1 for binary compatibility! */
Arnd Bergmann7a229382009-11-06 23:00:29 -08003233 /* char * */ u32 rt_dev; /* forcing the device at add */
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003234 u32 rt_mtu; /* per route MTU/Window */
3235 u32 rt_window; /* Window clamping */
Arnd Bergmann7a229382009-11-06 23:00:29 -08003236 unsigned short rt_irtt; /* Initial RTT */
3237};
3238
3239struct in6_rtmsg32 {
3240 struct in6_addr rtmsg_dst;
3241 struct in6_addr rtmsg_src;
3242 struct in6_addr rtmsg_gateway;
3243 u32 rtmsg_type;
3244 u16 rtmsg_dst_len;
3245 u16 rtmsg_src_len;
3246 u32 rtmsg_metric;
3247 u32 rtmsg_info;
3248 u32 rtmsg_flags;
3249 s32 rtmsg_ifindex;
3250};
3251
Arnd Bergmann6b960182009-11-06 23:10:54 -08003252static int routing_ioctl(struct net *net, struct socket *sock,
3253 unsigned int cmd, void __user *argp)
Arnd Bergmann7a229382009-11-06 23:00:29 -08003254{
3255 int ret;
3256 void *r = NULL;
3257 struct in6_rtmsg r6;
3258 struct rtentry r4;
3259 char devname[16];
3260 u32 rtdev;
3261 mm_segment_t old_fs = get_fs();
3262
Arnd Bergmann6b960182009-11-06 23:10:54 -08003263 if (sock && sock->sk && sock->sk->sk_family == AF_INET6) { /* ipv6 */
3264 struct in6_rtmsg32 __user *ur6 = argp;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003265 ret = copy_from_user(&r6.rtmsg_dst, &(ur6->rtmsg_dst),
Arnd Bergmann7a229382009-11-06 23:00:29 -08003266 3 * sizeof(struct in6_addr));
Mathieu Desnoyers3ddc5b42013-09-11 14:23:18 -07003267 ret |= get_user(r6.rtmsg_type, &(ur6->rtmsg_type));
3268 ret |= get_user(r6.rtmsg_dst_len, &(ur6->rtmsg_dst_len));
3269 ret |= get_user(r6.rtmsg_src_len, &(ur6->rtmsg_src_len));
3270 ret |= get_user(r6.rtmsg_metric, &(ur6->rtmsg_metric));
3271 ret |= get_user(r6.rtmsg_info, &(ur6->rtmsg_info));
3272 ret |= get_user(r6.rtmsg_flags, &(ur6->rtmsg_flags));
3273 ret |= get_user(r6.rtmsg_ifindex, &(ur6->rtmsg_ifindex));
Arnd Bergmann7a229382009-11-06 23:00:29 -08003274
3275 r = (void *) &r6;
3276 } else { /* ipv4 */
Arnd Bergmann6b960182009-11-06 23:10:54 -08003277 struct rtentry32 __user *ur4 = argp;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003278 ret = copy_from_user(&r4.rt_dst, &(ur4->rt_dst),
Arnd Bergmann7a229382009-11-06 23:00:29 -08003279 3 * sizeof(struct sockaddr));
Mathieu Desnoyers3ddc5b42013-09-11 14:23:18 -07003280 ret |= get_user(r4.rt_flags, &(ur4->rt_flags));
3281 ret |= get_user(r4.rt_metric, &(ur4->rt_metric));
3282 ret |= get_user(r4.rt_mtu, &(ur4->rt_mtu));
3283 ret |= get_user(r4.rt_window, &(ur4->rt_window));
3284 ret |= get_user(r4.rt_irtt, &(ur4->rt_irtt));
3285 ret |= get_user(rtdev, &(ur4->rt_dev));
Arnd Bergmann7a229382009-11-06 23:00:29 -08003286 if (rtdev) {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003287 ret |= copy_from_user(devname, compat_ptr(rtdev), 15);
stephen hemmingerc3f52ae2011-02-23 09:06:48 +00003288 r4.rt_dev = (char __user __force *)devname;
3289 devname[15] = 0;
Arnd Bergmann7a229382009-11-06 23:00:29 -08003290 } else
3291 r4.rt_dev = NULL;
3292
3293 r = (void *) &r4;
3294 }
3295
3296 if (ret) {
3297 ret = -EFAULT;
3298 goto out;
3299 }
3300
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003301 set_fs(KERNEL_DS);
Johannes Berg63ff03a2019-01-25 22:43:17 +01003302 ret = sock_do_ioctl(net, sock, cmd, (unsigned long) r);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003303 set_fs(old_fs);
Arnd Bergmann7a229382009-11-06 23:00:29 -08003304
3305out:
Arnd Bergmann7a229382009-11-06 23:00:29 -08003306 return ret;
3307}
3308
3309/* Since old style bridge ioctl's endup using SIOCDEVPRIVATE
3310 * for some operations; this forces use of the newer bridge-utils that
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003311 * use compatible ioctls
Arnd Bergmann7a229382009-11-06 23:00:29 -08003312 */
Arnd Bergmann6b960182009-11-06 23:10:54 -08003313static int old_bridge_ioctl(compat_ulong_t __user *argp)
Arnd Bergmann7a229382009-11-06 23:00:29 -08003314{
Arnd Bergmann6b960182009-11-06 23:10:54 -08003315 compat_ulong_t tmp;
Arnd Bergmann7a229382009-11-06 23:00:29 -08003316
Arnd Bergmann6b960182009-11-06 23:10:54 -08003317 if (get_user(tmp, argp))
Arnd Bergmann7a229382009-11-06 23:00:29 -08003318 return -EFAULT;
3319 if (tmp == BRCTL_GET_VERSION)
3320 return BRCTL_VERSION + 1;
3321 return -EINVAL;
3322}
3323
Arnd Bergmann6b960182009-11-06 23:10:54 -08003324static int compat_sock_ioctl_trans(struct file *file, struct socket *sock,
3325 unsigned int cmd, unsigned long arg)
3326{
3327 void __user *argp = compat_ptr(arg);
3328 struct sock *sk = sock->sk;
3329 struct net *net = sock_net(sk);
Arnd Bergmann7a229382009-11-06 23:00:29 -08003330
Arnd Bergmann6b960182009-11-06 23:10:54 -08003331 if (cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15))
Ben Hutchings590d4692013-11-18 17:04:13 +00003332 return compat_ifr_data_ioctl(net, cmd, argp);
Arnd Bergmann7a229382009-11-06 23:00:29 -08003333
Arnd Bergmann6b960182009-11-06 23:10:54 -08003334 switch (cmd) {
3335 case SIOCSIFBR:
3336 case SIOCGIFBR:
3337 return old_bridge_ioctl(argp);
Arnd Bergmann6b960182009-11-06 23:10:54 -08003338 case SIOCGIFCONF:
Al Viro36fd6332017-06-26 13:19:16 -04003339 return compat_dev_ifconf(net, argp);
Arnd Bergmann6b960182009-11-06 23:10:54 -08003340 case SIOCETHTOOL:
3341 return ethtool_ioctl(net, argp);
Arnd Bergmann7a50a242009-11-08 20:57:03 -08003342 case SIOCWANDEV:
3343 return compat_siocwandev(net, argp);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003344 case SIOCGIFMAP:
3345 case SIOCSIFMAP:
3346 return compat_sioc_ifmap(net, cmd, argp);
Arnd Bergmann6b960182009-11-06 23:10:54 -08003347 case SIOCADDRT:
3348 case SIOCDELRT:
3349 return routing_ioctl(net, sock, cmd, argp);
Arnd Bergmann0768e172019-04-17 22:56:11 +02003350 case SIOCGSTAMP_OLD:
3351 case SIOCGSTAMPNS_OLD:
Arnd Bergmannc7cbdbf2019-04-17 22:51:48 +02003352 if (!sock->ops->gettstamp)
3353 return -ENOIOCTLCMD;
Arnd Bergmann0768e172019-04-17 22:56:11 +02003354 return sock->ops->gettstamp(sock, argp, cmd == SIOCGSTAMP_OLD,
Arnd Bergmannc7cbdbf2019-04-17 22:51:48 +02003355 !COMPAT_USE_64BIT_TIME);
3356
Ben Hutchings590d4692013-11-18 17:04:13 +00003357 case SIOCBONDSLAVEINFOQUERY:
3358 case SIOCBONDINFOQUERY:
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003359 case SIOCSHWTSTAMP:
Ben Hutchingsfd468c72013-11-14 01:19:29 +00003360 case SIOCGHWTSTAMP:
Ben Hutchings590d4692013-11-18 17:04:13 +00003361 return compat_ifr_data_ioctl(net, cmd, argp);
Arnd Bergmann7a229382009-11-06 23:00:29 -08003362
Arnd Bergmann6b960182009-11-06 23:10:54 -08003363 case FIOSETOWN:
3364 case SIOCSPGRP:
3365 case FIOGETOWN:
3366 case SIOCGPGRP:
3367 case SIOCBRADDBR:
3368 case SIOCBRDELBR:
3369 case SIOCGIFVLAN:
3370 case SIOCSIFVLAN:
3371 case SIOCADDDLCI:
3372 case SIOCDELDLCI:
Andrey Vaginc62cce22016-10-24 18:29:13 -07003373 case SIOCGSKNS:
Arnd Bergmann0768e172019-04-17 22:56:11 +02003374 case SIOCGSTAMP_NEW:
3375 case SIOCGSTAMPNS_NEW:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003376 return sock_ioctl(file, cmd, arg);
3377
3378 case SIOCGIFFLAGS:
3379 case SIOCSIFFLAGS:
3380 case SIOCGIFMETRIC:
3381 case SIOCSIFMETRIC:
3382 case SIOCGIFMTU:
3383 case SIOCSIFMTU:
3384 case SIOCGIFMEM:
3385 case SIOCSIFMEM:
3386 case SIOCGIFHWADDR:
3387 case SIOCSIFHWADDR:
3388 case SIOCADDMULTI:
3389 case SIOCDELMULTI:
3390 case SIOCGIFINDEX:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003391 case SIOCGIFADDR:
3392 case SIOCSIFADDR:
3393 case SIOCSIFHWBROADCAST:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003394 case SIOCDIFADDR:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003395 case SIOCGIFBRDADDR:
3396 case SIOCSIFBRDADDR:
3397 case SIOCGIFDSTADDR:
3398 case SIOCSIFDSTADDR:
3399 case SIOCGIFNETMASK:
3400 case SIOCSIFNETMASK:
3401 case SIOCSIFPFLAGS:
3402 case SIOCGIFPFLAGS:
3403 case SIOCGIFTXQLEN:
3404 case SIOCSIFTXQLEN:
3405 case SIOCBRADDIF:
3406 case SIOCBRDELIF:
Johannes Bergc6c9fee2019-01-25 22:43:19 +01003407 case SIOCGIFNAME:
Arnd Bergmann9177efd2009-11-06 08:09:09 +00003408 case SIOCSIFNAME:
3409 case SIOCGMIIPHY:
3410 case SIOCGMIIREG:
3411 case SIOCSMIIREG:
Al Virof92d4fc2017-09-30 19:32:17 -04003412 case SIOCBONDENSLAVE:
3413 case SIOCBONDRELEASE:
3414 case SIOCBONDSETHWADDR:
3415 case SIOCBONDCHANGEACTIVE:
Johannes Berg37ac39b2019-01-25 22:43:18 +01003416 return compat_ifreq_ioctl(net, sock, cmd, argp);
3417
Arnd Bergmann6b960182009-11-06 23:10:54 -08003418 case SIOCSARP:
3419 case SIOCGARP:
3420 case SIOCDARP:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003421 case SIOCATMARK:
Johannes Berg63ff03a2019-01-25 22:43:17 +01003422 return sock_do_ioctl(net, sock, cmd, arg);
Arnd Bergmann9177efd2009-11-06 08:09:09 +00003423 }
3424
Arnd Bergmann6b960182009-11-06 23:10:54 -08003425 return -ENOIOCTLCMD;
3426}
Arnd Bergmann7a229382009-11-06 23:00:29 -08003427
Eric Dumazet95c96172012-04-15 05:58:06 +00003428static long compat_sock_ioctl(struct file *file, unsigned int cmd,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07003429 unsigned long arg)
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003430{
3431 struct socket *sock = file->private_data;
3432 int ret = -ENOIOCTLCMD;
David S. Miller87de87d2008-06-03 09:14:03 -07003433 struct sock *sk;
3434 struct net *net;
3435
3436 sk = sock->sk;
3437 net = sock_net(sk);
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003438
3439 if (sock->ops->compat_ioctl)
3440 ret = sock->ops->compat_ioctl(sock, cmd, arg);
3441
David S. Miller87de87d2008-06-03 09:14:03 -07003442 if (ret == -ENOIOCTLCMD &&
3443 (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST))
3444 ret = compat_wext_handle_ioctl(net, cmd, arg);
3445
Arnd Bergmann6b960182009-11-06 23:10:54 -08003446 if (ret == -ENOIOCTLCMD)
3447 ret = compat_sock_ioctl_trans(file, sock, cmd, arg);
3448
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003449 return ret;
3450}
3451#endif
3452
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003453/**
3454 * kernel_bind - bind an address to a socket (kernel space)
3455 * @sock: socket
3456 * @addr: address
3457 * @addrlen: length of address
3458 *
3459 * Returns 0 or an error.
3460 */
3461
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003462int kernel_bind(struct socket *sock, struct sockaddr *addr, int addrlen)
3463{
3464 return sock->ops->bind(sock, addr, addrlen);
3465}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003466EXPORT_SYMBOL(kernel_bind);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003467
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003468/**
3469 * kernel_listen - move socket to listening state (kernel space)
3470 * @sock: socket
3471 * @backlog: pending connections queue size
3472 *
3473 * Returns 0 or an error.
3474 */
3475
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003476int kernel_listen(struct socket *sock, int backlog)
3477{
3478 return sock->ops->listen(sock, backlog);
3479}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003480EXPORT_SYMBOL(kernel_listen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003481
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003482/**
3483 * kernel_accept - accept a connection (kernel space)
3484 * @sock: listening socket
3485 * @newsock: new connected socket
3486 * @flags: flags
3487 *
3488 * @flags must be SOCK_CLOEXEC, SOCK_NONBLOCK or 0.
3489 * If it fails, @newsock is guaranteed to be %NULL.
3490 * Returns 0 or an error.
3491 */
3492
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003493int kernel_accept(struct socket *sock, struct socket **newsock, int flags)
3494{
3495 struct sock *sk = sock->sk;
3496 int err;
3497
3498 err = sock_create_lite(sk->sk_family, sk->sk_type, sk->sk_protocol,
3499 newsock);
3500 if (err < 0)
3501 goto done;
3502
David Howellscdfbabf2017-03-09 08:09:05 +00003503 err = sock->ops->accept(sock, *newsock, flags, true);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003504 if (err < 0) {
3505 sock_release(*newsock);
Tony Battersbyfa8705b2007-10-10 21:09:04 -07003506 *newsock = NULL;
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003507 goto done;
3508 }
3509
3510 (*newsock)->ops = sock->ops;
Wei Yongjun1b085342008-12-18 19:35:10 -08003511 __module_get((*newsock)->ops->owner);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003512
3513done:
3514 return err;
3515}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003516EXPORT_SYMBOL(kernel_accept);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003517
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003518/**
3519 * kernel_connect - connect a socket (kernel space)
3520 * @sock: socket
3521 * @addr: address
3522 * @addrlen: address length
3523 * @flags: flags (O_NONBLOCK, ...)
3524 *
3525 * For datagram sockets, @addr is the addres to which datagrams are sent
3526 * by default, and the only address from which datagrams are received.
3527 * For stream sockets, attempts to connect to @addr.
3528 * Returns 0 or an error code.
3529 */
3530
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003531int kernel_connect(struct socket *sock, struct sockaddr *addr, int addrlen,
YOSHIFUJI Hideaki4768fbc2007-02-09 23:25:31 +09003532 int flags)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003533{
3534 return sock->ops->connect(sock, addr, addrlen, flags);
3535}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003536EXPORT_SYMBOL(kernel_connect);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003537
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003538/**
3539 * kernel_getsockname - get the address which the socket is bound (kernel space)
3540 * @sock: socket
3541 * @addr: address holder
3542 *
3543 * Fills the @addr pointer with the address which the socket is bound.
3544 * Returns 0 or an error code.
3545 */
3546
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01003547int kernel_getsockname(struct socket *sock, struct sockaddr *addr)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003548{
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01003549 return sock->ops->getname(sock, addr, 0);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003550}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003551EXPORT_SYMBOL(kernel_getsockname);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003552
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003553/**
3554 * kernel_peername - get the address which the socket is connected (kernel space)
3555 * @sock: socket
3556 * @addr: address holder
3557 *
3558 * Fills the @addr pointer with the address which the socket is connected.
3559 * Returns 0 or an error code.
3560 */
3561
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01003562int kernel_getpeername(struct socket *sock, struct sockaddr *addr)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003563{
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01003564 return sock->ops->getname(sock, addr, 1);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003565}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003566EXPORT_SYMBOL(kernel_getpeername);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003567
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003568/**
3569 * kernel_getsockopt - get a socket option (kernel space)
3570 * @sock: socket
3571 * @level: API level (SOL_SOCKET, ...)
3572 * @optname: option tag
3573 * @optval: option value
3574 * @optlen: option length
3575 *
3576 * Assigns the option length to @optlen.
3577 * Returns 0 or an error.
3578 */
3579
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003580int kernel_getsockopt(struct socket *sock, int level, int optname,
3581 char *optval, int *optlen)
3582{
3583 mm_segment_t oldfs = get_fs();
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003584 char __user *uoptval;
3585 int __user *uoptlen;
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003586 int err;
3587
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003588 uoptval = (char __user __force *) optval;
3589 uoptlen = (int __user __force *) optlen;
3590
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003591 set_fs(KERNEL_DS);
3592 if (level == SOL_SOCKET)
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003593 err = sock_getsockopt(sock, level, optname, uoptval, uoptlen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003594 else
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003595 err = sock->ops->getsockopt(sock, level, optname, uoptval,
3596 uoptlen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003597 set_fs(oldfs);
3598 return err;
3599}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003600EXPORT_SYMBOL(kernel_getsockopt);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003601
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003602/**
3603 * kernel_setsockopt - set a socket option (kernel space)
3604 * @sock: socket
3605 * @level: API level (SOL_SOCKET, ...)
3606 * @optname: option tag
3607 * @optval: option value
3608 * @optlen: option length
3609 *
3610 * Returns 0 or an error.
3611 */
3612
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003613int kernel_setsockopt(struct socket *sock, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07003614 char *optval, unsigned int optlen)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003615{
3616 mm_segment_t oldfs = get_fs();
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003617 char __user *uoptval;
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003618 int err;
3619
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003620 uoptval = (char __user __force *) optval;
3621
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003622 set_fs(KERNEL_DS);
3623 if (level == SOL_SOCKET)
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003624 err = sock_setsockopt(sock, level, optname, uoptval, optlen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003625 else
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003626 err = sock->ops->setsockopt(sock, level, optname, uoptval,
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003627 optlen);
3628 set_fs(oldfs);
3629 return err;
3630}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003631EXPORT_SYMBOL(kernel_setsockopt);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003632
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003633/**
3634 * kernel_sendpage - send a &page through a socket (kernel space)
3635 * @sock: socket
3636 * @page: page
3637 * @offset: page offset
3638 * @size: total size in bytes
3639 * @flags: flags (MSG_DONTWAIT, ...)
3640 *
3641 * Returns the total amount sent in bytes or an error.
3642 */
3643
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003644int kernel_sendpage(struct socket *sock, struct page *page, int offset,
3645 size_t size, int flags)
3646{
3647 if (sock->ops->sendpage)
3648 return sock->ops->sendpage(sock, page, offset, size, flags);
3649
3650 return sock_no_sendpage(sock, page, offset, size, flags);
3651}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003652EXPORT_SYMBOL(kernel_sendpage);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003653
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003654/**
3655 * kernel_sendpage_locked - send a &page through the locked sock (kernel space)
3656 * @sk: sock
3657 * @page: page
3658 * @offset: page offset
3659 * @size: total size in bytes
3660 * @flags: flags (MSG_DONTWAIT, ...)
3661 *
3662 * Returns the total amount sent in bytes or an error.
3663 * Caller must hold @sk.
3664 */
3665
Tom Herbert306b13e2017-07-28 16:22:41 -07003666int kernel_sendpage_locked(struct sock *sk, struct page *page, int offset,
3667 size_t size, int flags)
3668{
3669 struct socket *sock = sk->sk_socket;
3670
3671 if (sock->ops->sendpage_locked)
3672 return sock->ops->sendpage_locked(sk, page, offset, size,
3673 flags);
3674
3675 return sock_no_sendpage_locked(sk, page, offset, size, flags);
3676}
3677EXPORT_SYMBOL(kernel_sendpage_locked);
3678
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003679/**
3680 * kernel_shutdown - shut down part of a full-duplex connection (kernel space)
3681 * @sock: socket
3682 * @how: connection part
3683 *
3684 * Returns 0 or an error.
3685 */
3686
Trond Myklebust91cf45f2007-11-12 18:10:39 -08003687int kernel_sock_shutdown(struct socket *sock, enum sock_shutdown_cmd how)
3688{
3689 return sock->ops->shutdown(sock, how);
3690}
Trond Myklebust91cf45f2007-11-12 18:10:39 -08003691EXPORT_SYMBOL(kernel_sock_shutdown);
R. Parameswaran113c3072017-04-05 16:50:35 -07003692
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003693/**
3694 * kernel_sock_ip_overhead - returns the IP overhead imposed by a socket
3695 * @sk: socket
3696 *
3697 * This routine returns the IP overhead imposed by a socket i.e.
3698 * the length of the underlying IP header, depending on whether
3699 * this is an IPv4 or IPv6 socket and the length from IP options turned
3700 * on at the socket. Assumes that the caller has a lock on the socket.
R. Parameswaran113c3072017-04-05 16:50:35 -07003701 */
Pedro Tammela8a3c2452019-03-14 10:45:23 -03003702
R. Parameswaran113c3072017-04-05 16:50:35 -07003703u32 kernel_sock_ip_overhead(struct sock *sk)
3704{
3705 struct inet_sock *inet;
3706 struct ip_options_rcu *opt;
3707 u32 overhead = 0;
R. Parameswaran113c3072017-04-05 16:50:35 -07003708#if IS_ENABLED(CONFIG_IPV6)
3709 struct ipv6_pinfo *np;
3710 struct ipv6_txoptions *optv6 = NULL;
3711#endif /* IS_ENABLED(CONFIG_IPV6) */
3712
3713 if (!sk)
3714 return overhead;
3715
R. Parameswaran113c3072017-04-05 16:50:35 -07003716 switch (sk->sk_family) {
3717 case AF_INET:
3718 inet = inet_sk(sk);
3719 overhead += sizeof(struct iphdr);
3720 opt = rcu_dereference_protected(inet->inet_opt,
stephen hemminger614d79c2017-07-24 10:25:22 -07003721 sock_owned_by_user(sk));
R. Parameswaran113c3072017-04-05 16:50:35 -07003722 if (opt)
3723 overhead += opt->opt.optlen;
3724 return overhead;
3725#if IS_ENABLED(CONFIG_IPV6)
3726 case AF_INET6:
3727 np = inet6_sk(sk);
3728 overhead += sizeof(struct ipv6hdr);
3729 if (np)
3730 optv6 = rcu_dereference_protected(np->opt,
stephen hemminger614d79c2017-07-24 10:25:22 -07003731 sock_owned_by_user(sk));
R. Parameswaran113c3072017-04-05 16:50:35 -07003732 if (optv6)
3733 overhead += (optv6->opt_flen + optv6->opt_nflen);
3734 return overhead;
3735#endif /* IS_ENABLED(CONFIG_IPV6) */
3736 default: /* Returns 0 overhead if the socket is not ipv4 or ipv6 */
3737 return overhead;
3738 }
3739}
3740EXPORT_SYMBOL(kernel_sock_ip_overhead);