blob: 8a109012608a6132a65293c86cd175426b851cbe [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080093#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070094#include <asm/unistd.h>
95
96#include <net/compat.h>
David S. Miller87de87d2008-06-03 09:14:03 -070097#include <net/wext.h>
Herbert Xuf8451722010-05-24 00:12:34 -070098#include <net/cls_cgroup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100#include <net/sock.h>
101#include <linux/netfilter.h>
102
Arnd Bergmann6b960182009-11-06 23:10:54 -0800103#include <linux/if_tun.h>
104#include <linux/ipv6_route.h>
105#include <linux/route.h>
Arnd Bergmann6b960182009-11-06 23:10:54 -0800106#include <linux/sockios.h>
Eliezer Tamir076bb0c2013-07-10 17:13:17 +0300107#include <net/busy_poll.h>
Willem de Bruijnf24b9be2014-08-04 22:11:45 -0400108#include <linux/errqueue.h>
Eliezer Tamir06021292013-06-10 11:39:50 +0300109
Cong Wange0d10952013-08-01 11:10:25 +0800110#ifdef CONFIG_NET_RX_BUSY_POLL
Eliezer Tamir64b0dc52013-07-10 17:13:36 +0300111unsigned int sysctl_net_busy_read __read_mostly;
112unsigned int sysctl_net_busy_poll __read_mostly;
Eliezer Tamir06021292013-06-10 11:39:50 +0300113#endif
Arnd Bergmann6b960182009-11-06 23:10:54 -0800114
Al Viro8ae5e032014-11-28 19:40:50 -0500115static ssize_t sock_read_iter(struct kiocb *iocb, struct iov_iter *to);
116static ssize_t sock_write_iter(struct kiocb *iocb, struct iov_iter *from);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700117static int sock_mmap(struct file *file, struct vm_area_struct *vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
119static int sock_close(struct inode *inode, struct file *file);
Christoph Hellwig15252422018-04-09 15:25:28 +0200120static struct wait_queue_head *sock_get_poll_head(struct file *file,
121 __poll_t events);
122static __poll_t sock_poll_mask(struct file *file, __poll_t);
123static __poll_t sock_poll(struct file *file, struct poll_table_struct *wait);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700124static long sock_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800125#ifdef CONFIG_COMPAT
126static long compat_sock_ioctl(struct file *file,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700127 unsigned int cmd, unsigned long arg);
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800128#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129static int sock_fasync(int fd, struct file *filp, int on);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130static ssize_t sock_sendpage(struct file *file, struct page *page,
131 int offset, size_t size, loff_t *ppos, int more);
Jens Axboe9c55e012007-11-06 23:30:13 -0800132static ssize_t sock_splice_read(struct file *file, loff_t *ppos,
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700133 struct pipe_inode_info *pipe, size_t len,
Jens Axboe9c55e012007-11-06 23:30:13 -0800134 unsigned int flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136/*
137 * Socket files have a set of 'special' operations as well as the generic file ones. These don't appear
138 * in the operation structures but are done directly via the socketcall() multiplexor.
139 */
140
Arjan van de Venda7071d2007-02-12 00:55:36 -0800141static const struct file_operations socket_file_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 .owner = THIS_MODULE,
143 .llseek = no_llseek,
Al Viro8ae5e032014-11-28 19:40:50 -0500144 .read_iter = sock_read_iter,
145 .write_iter = sock_write_iter,
Christoph Hellwig15252422018-04-09 15:25:28 +0200146 .get_poll_head = sock_get_poll_head,
147 .poll_mask = sock_poll_mask,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 .poll = sock_poll,
149 .unlocked_ioctl = sock_ioctl,
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800150#ifdef CONFIG_COMPAT
151 .compat_ioctl = compat_sock_ioctl,
152#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 .mmap = sock_mmap,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 .release = sock_close,
155 .fasync = sock_fasync,
Jens Axboe5274f052006-03-30 15:15:30 +0200156 .sendpage = sock_sendpage,
157 .splice_write = generic_splice_sendpage,
Jens Axboe9c55e012007-11-06 23:30:13 -0800158 .splice_read = sock_splice_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159};
160
161/*
162 * The protocol list. Each protocol is registered in here.
163 */
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165static DEFINE_SPINLOCK(net_family_lock);
Eric Dumazet190683a2010-11-10 10:50:44 +0000166static const struct net_proto_family __rcu *net_families[NPROTO] __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700169 * Support routines.
170 * Move socket addresses back and forth across the kernel/user
171 * divide and look after the messy bits.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 */
173
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174/**
175 * move_addr_to_kernel - copy a socket address into kernel space
176 * @uaddr: Address in user space
177 * @kaddr: Address in kernel space
178 * @ulen: Length in user space
179 *
180 * The address is copied into kernel space. If the provided address is
181 * too long an error code of -EINVAL is returned. If the copy gives
182 * invalid addresses -EFAULT is returned. On a success 0 is returned.
183 */
184
Maciej Żenczykowski43db3622012-03-11 12:51:50 +0000185int move_addr_to_kernel(void __user *uaddr, int ulen, struct sockaddr_storage *kaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186{
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -0700187 if (ulen < 0 || ulen > sizeof(struct sockaddr_storage))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700189 if (ulen == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 return 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700191 if (copy_from_user(kaddr, uaddr, ulen))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 return -EFAULT;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +0100193 return audit_sockaddr(ulen, kaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194}
195
196/**
197 * move_addr_to_user - copy an address to user space
198 * @kaddr: kernel space address
199 * @klen: length of address in kernel
200 * @uaddr: user space address
201 * @ulen: pointer to user length field
202 *
203 * The value pointed to by ulen on entry is the buffer length available.
204 * This is overwritten with the buffer space used. -EINVAL is returned
205 * if an overlong buffer is specified or a negative buffer size. -EFAULT
206 * is returned if either the buffer or the length field are not
207 * accessible.
208 * After copying the data up to the limit the user specifies, the true
209 * length of the data is written over the length limit the user
210 * specified. Zero is returned for a success.
211 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700212
Maciej Żenczykowski43db3622012-03-11 12:51:50 +0000213static int move_addr_to_user(struct sockaddr_storage *kaddr, int klen,
stephen hemminger11165f12010-10-18 14:27:29 +0000214 void __user *uaddr, int __user *ulen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215{
216 int err;
217 int len;
218
Hannes Frederic Sowa68c6beb2013-11-21 03:14:34 +0100219 BUG_ON(klen > sizeof(struct sockaddr_storage));
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700220 err = get_user(len, ulen);
221 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 return err;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700223 if (len > klen)
224 len = klen;
Hannes Frederic Sowa68c6beb2013-11-21 03:14:34 +0100225 if (len < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700227 if (len) {
Steve Grubbd6fe3942006-03-30 12:20:22 -0500228 if (audit_sockaddr(klen, kaddr))
229 return -ENOMEM;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700230 if (copy_to_user(uaddr, kaddr, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 return -EFAULT;
232 }
233 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700234 * "fromlen shall refer to the value before truncation.."
235 * 1003.1g
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 */
237 return __put_user(klen, ulen);
238}
239
Alexey Dobriyan08009a72018-02-24 21:20:33 +0300240static struct kmem_cache *sock_inode_cachep __ro_after_init;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
242static struct inode *sock_alloc_inode(struct super_block *sb)
243{
244 struct socket_alloc *ei;
Eric Dumazeteaefd112011-02-18 03:26:36 +0000245 struct socket_wq *wq;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700246
Christoph Lametere94b1762006-12-06 20:33:17 -0800247 ei = kmem_cache_alloc(sock_inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 if (!ei)
249 return NULL;
Eric Dumazeteaefd112011-02-18 03:26:36 +0000250 wq = kmalloc(sizeof(*wq), GFP_KERNEL);
251 if (!wq) {
Eric Dumazet43815482010-04-29 11:01:49 +0000252 kmem_cache_free(sock_inode_cachep, ei);
253 return NULL;
254 }
Eric Dumazeteaefd112011-02-18 03:26:36 +0000255 init_waitqueue_head(&wq->wait);
256 wq->fasync_list = NULL;
Nicolai Stange574aab12015-12-29 13:29:55 +0100257 wq->flags = 0;
Eric Dumazeteaefd112011-02-18 03:26:36 +0000258 RCU_INIT_POINTER(ei->socket.wq, wq);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700259
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 ei->socket.state = SS_UNCONNECTED;
261 ei->socket.flags = 0;
262 ei->socket.ops = NULL;
263 ei->socket.sk = NULL;
264 ei->socket.file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
266 return &ei->vfs_inode;
267}
268
269static void sock_destroy_inode(struct inode *inode)
270{
Eric Dumazet43815482010-04-29 11:01:49 +0000271 struct socket_alloc *ei;
Eric Dumazeteaefd112011-02-18 03:26:36 +0000272 struct socket_wq *wq;
Eric Dumazet43815482010-04-29 11:01:49 +0000273
274 ei = container_of(inode, struct socket_alloc, vfs_inode);
Eric Dumazeteaefd112011-02-18 03:26:36 +0000275 wq = rcu_dereference_protected(ei->socket.wq, 1);
Lai Jiangshan61845222011-03-18 12:10:25 +0800276 kfree_rcu(wq, rcu);
Eric Dumazet43815482010-04-29 11:01:49 +0000277 kmem_cache_free(sock_inode_cachep, ei);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278}
279
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700280static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281{
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700282 struct socket_alloc *ei = (struct socket_alloc *)foo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
Christoph Lametera35afb82007-05-16 22:10:57 -0700284 inode_init_once(&ei->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285}
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700286
yuan linyu1e911632017-01-07 17:18:31 +0800287static void init_inodecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
289 sock_inode_cachep = kmem_cache_create("sock_inode_cache",
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700290 sizeof(struct socket_alloc),
291 0,
292 (SLAB_HWCACHE_ALIGN |
293 SLAB_RECLAIM_ACCOUNT |
Vladimir Davydov5d097052016-01-14 15:18:21 -0800294 SLAB_MEM_SPREAD | SLAB_ACCOUNT),
Paul Mundt20c2df82007-07-20 10:11:58 +0900295 init_once);
yuan linyu1e911632017-01-07 17:18:31 +0800296 BUG_ON(sock_inode_cachep == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297}
298
Alexey Dobriyanb87221d2009-09-21 17:01:09 -0700299static const struct super_operations sockfs_ops = {
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700300 .alloc_inode = sock_alloc_inode,
301 .destroy_inode = sock_destroy_inode,
302 .statfs = simple_statfs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303};
304
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700305/*
306 * sockfs_dname() is called from d_path().
307 */
308static char *sockfs_dname(struct dentry *dentry, char *buffer, int buflen)
309{
310 return dynamic_dname(dentry, buffer, buflen, "socket:[%lu]",
David Howellsc5ef6032015-03-17 22:26:16 +0000311 d_inode(dentry)->i_ino);
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700312}
313
Al Viro3ba13d12009-02-20 06:02:22 +0000314static const struct dentry_operations sockfs_dentry_operations = {
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700315 .d_dname = sockfs_dname,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316};
317
Andreas Gruenbacherbba0bd32016-09-29 17:48:35 +0200318static int sockfs_xattr_get(const struct xattr_handler *handler,
319 struct dentry *dentry, struct inode *inode,
320 const char *suffix, void *value, size_t size)
321{
322 if (value) {
323 if (dentry->d_name.len + 1 > size)
324 return -ERANGE;
325 memcpy(value, dentry->d_name.name, dentry->d_name.len + 1);
326 }
327 return dentry->d_name.len + 1;
328}
329
330#define XATTR_SOCKPROTONAME_SUFFIX "sockprotoname"
331#define XATTR_NAME_SOCKPROTONAME (XATTR_SYSTEM_PREFIX XATTR_SOCKPROTONAME_SUFFIX)
332#define XATTR_NAME_SOCKPROTONAME_LEN (sizeof(XATTR_NAME_SOCKPROTONAME)-1)
333
334static const struct xattr_handler sockfs_xattr_handler = {
335 .name = XATTR_NAME_SOCKPROTONAME,
336 .get = sockfs_xattr_get,
337};
338
Andreas Gruenbacher4a590152016-11-13 21:23:34 +0100339static int sockfs_security_xattr_set(const struct xattr_handler *handler,
340 struct dentry *dentry, struct inode *inode,
341 const char *suffix, const void *value,
342 size_t size, int flags)
343{
344 /* Handled by LSM. */
345 return -EAGAIN;
346}
347
348static const struct xattr_handler sockfs_security_xattr_handler = {
349 .prefix = XATTR_SECURITY_PREFIX,
350 .set = sockfs_security_xattr_set,
351};
352
Andreas Gruenbacherbba0bd32016-09-29 17:48:35 +0200353static const struct xattr_handler *sockfs_xattr_handlers[] = {
354 &sockfs_xattr_handler,
Andreas Gruenbacher4a590152016-11-13 21:23:34 +0100355 &sockfs_security_xattr_handler,
Andreas Gruenbacherbba0bd32016-09-29 17:48:35 +0200356 NULL
357};
358
Al Viroc74a1cb2011-01-12 16:59:34 -0500359static struct dentry *sockfs_mount(struct file_system_type *fs_type,
360 int flags, const char *dev_name, void *data)
361{
Andreas Gruenbacherbba0bd32016-09-29 17:48:35 +0200362 return mount_pseudo_xattr(fs_type, "socket:", &sockfs_ops,
363 sockfs_xattr_handlers,
364 &sockfs_dentry_operations, SOCKFS_MAGIC);
Al Viroc74a1cb2011-01-12 16:59:34 -0500365}
366
367static struct vfsmount *sock_mnt __read_mostly;
368
369static struct file_system_type sock_fs_type = {
370 .name = "sockfs",
371 .mount = sockfs_mount,
372 .kill_sb = kill_anon_super,
373};
374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375/*
376 * Obtains the first available file descriptor and sets it up for use.
377 *
David S. Miller39d8c1b2006-03-20 17:13:49 -0800378 * These functions create file structures and maps them to fd space
379 * of the current process. On success it returns file descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 * and file struct implicitly stored in sock->file.
381 * Note that another thread may close file descriptor before we return
382 * from this function. We use the fact that now we do not refer
383 * to socket after mapping. If one day we will need it, this
384 * function will increment ref. count on file by 1.
385 *
386 * In any case returned fd MAY BE not valid!
387 * This race condition is unavoidable
388 * with shared fd spaces, we cannot solve it inside kernel,
389 * but we take care of internal coherence yet.
390 */
391
Linus Torvaldsaab174f2012-10-02 20:25:04 -0700392struct file *sock_alloc_file(struct socket *sock, int flags, const char *dname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393{
Al Viro7cbe66b2009-08-05 19:59:08 +0400394 struct qstr name = { .name = "" };
Al Viro2c48b9c2009-08-09 00:52:35 +0400395 struct path path;
Al Viro7cbe66b2009-08-05 19:59:08 +0400396 struct file *file;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800397
Masatake YAMATO600e1772012-08-29 10:44:29 +0000398 if (dname) {
399 name.name = dname;
400 name.len = strlen(name.name);
401 } else if (sock->sk) {
402 name.name = sock->sk->sk_prot_creator->name;
403 name.len = strlen(name.name);
404 }
Nick Piggin4b936882011-01-07 17:50:07 +1100405 path.dentry = d_alloc_pseudo(sock_mnt->mnt_sb, &name);
Al Viro8e1611e2017-12-05 23:29:09 +0000406 if (unlikely(!path.dentry)) {
407 sock_release(sock);
Al Viro28407632012-08-17 23:54:15 -0400408 return ERR_PTR(-ENOMEM);
Al Viro8e1611e2017-12-05 23:29:09 +0000409 }
Al Viro2c48b9c2009-08-09 00:52:35 +0400410 path.mnt = mntget(sock_mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Al Viro2c48b9c2009-08-09 00:52:35 +0400412 d_instantiate(path.dentry, SOCK_INODE(sock));
Al Virocc3808f2009-08-06 09:43:59 +0400413
Al Viro2c48b9c2009-08-09 00:52:35 +0400414 file = alloc_file(&path, FMODE_READ | FMODE_WRITE,
Al Virocc3808f2009-08-06 09:43:59 +0400415 &socket_file_ops);
Viresh Kumarb5ffe632015-08-12 15:59:47 +0530416 if (IS_ERR(file)) {
Al Viro8e1611e2017-12-05 23:29:09 +0000417 /* drop dentry, keep inode for a bit */
David Howellsc5ef6032015-03-17 22:26:16 +0000418 ihold(d_inode(path.dentry));
Al Viro2c48b9c2009-08-09 00:52:35 +0400419 path_put(&path);
Al Viro8e1611e2017-12-05 23:29:09 +0000420 /* ... and now kill it properly */
421 sock_release(sock);
Anatol Pomozov39b65252012-09-12 20:11:55 -0700422 return file;
Al Virocc3808f2009-08-06 09:43:59 +0400423 }
David S. Miller39d8c1b2006-03-20 17:13:49 -0800424
425 sock->file = file;
Ulrich Drepper77d27202008-07-23 21:29:35 -0700426 file->f_flags = O_RDWR | (flags & O_NONBLOCK);
David S. Miller39d8c1b2006-03-20 17:13:49 -0800427 file->private_data = sock;
Al Viro28407632012-08-17 23:54:15 -0400428 return file;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800429}
Al Viro56b31d12012-08-18 00:25:51 -0400430EXPORT_SYMBOL(sock_alloc_file);
David S. Miller39d8c1b2006-03-20 17:13:49 -0800431
Al Viro56b31d12012-08-18 00:25:51 -0400432static int sock_map_fd(struct socket *sock, int flags)
David S. Miller39d8c1b2006-03-20 17:13:49 -0800433{
434 struct file *newfile;
Al Viro28407632012-08-17 23:54:15 -0400435 int fd = get_unused_fd_flags(flags);
Al Viroce4bb042018-01-10 18:47:05 -0500436 if (unlikely(fd < 0)) {
437 sock_release(sock);
Al Viro28407632012-08-17 23:54:15 -0400438 return fd;
Al Viroce4bb042018-01-10 18:47:05 -0500439 }
David S. Miller39d8c1b2006-03-20 17:13:49 -0800440
Linus Torvaldsaab174f2012-10-02 20:25:04 -0700441 newfile = sock_alloc_file(sock, flags, NULL);
Al Viro28407632012-08-17 23:54:15 -0400442 if (likely(!IS_ERR(newfile))) {
David S. Miller39d8c1b2006-03-20 17:13:49 -0800443 fd_install(fd, newfile);
Al Viro28407632012-08-17 23:54:15 -0400444 return fd;
445 }
Al Viro7cbe66b2009-08-05 19:59:08 +0400446
Al Viro28407632012-08-17 23:54:15 -0400447 put_unused_fd(fd);
448 return PTR_ERR(newfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449}
450
John Fastabend406a3c62012-07-20 10:39:25 +0000451struct socket *sock_from_file(struct file *file, int *err)
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800452{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800453 if (file->f_op == &socket_file_ops)
454 return file->private_data; /* set in sock_map_fd */
455
Eric Dumazet23bb80d2007-02-08 14:59:57 -0800456 *err = -ENOTSOCK;
457 return NULL;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800458}
John Fastabend406a3c62012-07-20 10:39:25 +0000459EXPORT_SYMBOL(sock_from_file);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800460
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461/**
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700462 * sockfd_lookup - Go from a file number to its socket slot
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 * @fd: file handle
464 * @err: pointer to an error code return
465 *
466 * The file handle passed in is locked and the socket it is bound
Rosen, Rami241c4662017-05-21 22:12:38 +0300467 * to is returned. If an error occurs the err pointer is overwritten
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 * with a negative errno code and NULL is returned. The function checks
469 * for both invalid handles and passing a handle which is not a socket.
470 *
471 * On a success the socket object pointer is returned.
472 */
473
474struct socket *sockfd_lookup(int fd, int *err)
475{
476 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 struct socket *sock;
478
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700479 file = fget(fd);
480 if (!file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 *err = -EBADF;
482 return NULL;
483 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700484
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800485 sock = sock_from_file(file, err);
486 if (!sock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 fput(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 return sock;
489}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700490EXPORT_SYMBOL(sockfd_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800492static struct socket *sockfd_lookup_light(int fd, int *err, int *fput_needed)
493{
Al Viro00e188e2014-03-03 23:48:18 -0500494 struct fd f = fdget(fd);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800495 struct socket *sock;
496
Hua Zhong36725582006-04-19 15:25:02 -0700497 *err = -EBADF;
Al Viro00e188e2014-03-03 23:48:18 -0500498 if (f.file) {
499 sock = sock_from_file(f.file, err);
500 if (likely(sock)) {
501 *fput_needed = f.flags;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800502 return sock;
Al Viro00e188e2014-03-03 23:48:18 -0500503 }
504 fdput(f);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800505 }
506 return NULL;
507}
508
Masatake YAMATO600e1772012-08-29 10:44:29 +0000509static ssize_t sockfs_listxattr(struct dentry *dentry, char *buffer,
510 size_t size)
511{
512 ssize_t len;
513 ssize_t used = 0;
514
David Howellsc5ef6032015-03-17 22:26:16 +0000515 len = security_inode_listsecurity(d_inode(dentry), buffer, size);
Masatake YAMATO600e1772012-08-29 10:44:29 +0000516 if (len < 0)
517 return len;
518 used += len;
519 if (buffer) {
520 if (size < used)
521 return -ERANGE;
522 buffer += len;
523 }
524
525 len = (XATTR_NAME_SOCKPROTONAME_LEN + 1);
526 used += len;
527 if (buffer) {
528 if (size < used)
529 return -ERANGE;
530 memcpy(buffer, XATTR_NAME_SOCKPROTONAME, len);
531 buffer += len;
532 }
533
534 return used;
535}
536
Tobias Klauserdc647ec2017-01-10 09:30:51 +0100537static int sockfs_setattr(struct dentry *dentry, struct iattr *iattr)
Lorenzo Colitti86741ec2016-11-04 02:23:41 +0900538{
539 int err = simple_setattr(dentry, iattr);
540
Eric Biggerse1a3a602016-12-30 17:42:32 -0600541 if (!err && (iattr->ia_valid & ATTR_UID)) {
Lorenzo Colitti86741ec2016-11-04 02:23:41 +0900542 struct socket *sock = SOCKET_I(d_inode(dentry));
543
Cong Wang6d8c50d2018-06-07 13:39:49 -0700544 if (sock->sk)
545 sock->sk->sk_uid = iattr->ia_uid;
546 else
547 err = -ENOENT;
Lorenzo Colitti86741ec2016-11-04 02:23:41 +0900548 }
549
550 return err;
551}
552
Masatake YAMATO600e1772012-08-29 10:44:29 +0000553static const struct inode_operations sockfs_inode_ops = {
Masatake YAMATO600e1772012-08-29 10:44:29 +0000554 .listxattr = sockfs_listxattr,
Lorenzo Colitti86741ec2016-11-04 02:23:41 +0900555 .setattr = sockfs_setattr,
Masatake YAMATO600e1772012-08-29 10:44:29 +0000556};
557
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558/**
559 * sock_alloc - allocate a socket
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700560 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 * Allocate a new inode and socket object. The two are bound together
562 * and initialised. The socket is then returned. If we are out of inodes
563 * NULL is returned.
564 */
565
Tom Herbertf4a00aa2016-03-07 14:11:01 -0800566struct socket *sock_alloc(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567{
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700568 struct inode *inode;
569 struct socket *sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
Eric Dumazeta209dfc2011-07-26 11:36:34 +0200571 inode = new_inode_pseudo(sock_mnt->mnt_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 if (!inode)
573 return NULL;
574
575 sock = SOCKET_I(inode);
576
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400577 inode->i_ino = get_next_ino();
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700578 inode->i_mode = S_IFSOCK | S_IRWXUGO;
David Howells8192b0c2008-11-14 10:39:10 +1100579 inode->i_uid = current_fsuid();
580 inode->i_gid = current_fsgid();
Masatake YAMATO600e1772012-08-29 10:44:29 +0000581 inode->i_op = &sockfs_inode_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 return sock;
584}
Tom Herbertf4a00aa2016-03-07 14:11:01 -0800585EXPORT_SYMBOL(sock_alloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587/**
588 * sock_release - close a socket
589 * @sock: socket to close
590 *
591 * The socket is released from the protocol stack if it has a release
592 * callback, and the inode is then released if the socket is bound to
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700593 * an inode not a file.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700595
Cong Wang6d8c50d2018-06-07 13:39:49 -0700596static void __sock_release(struct socket *sock, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597{
598 if (sock->ops) {
599 struct module *owner = sock->ops->owner;
600
Cong Wang6d8c50d2018-06-07 13:39:49 -0700601 if (inode)
602 inode_lock(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 sock->ops->release(sock);
Cong Wang6d8c50d2018-06-07 13:39:49 -0700604 if (inode)
605 inode_unlock(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 sock->ops = NULL;
607 module_put(owner);
608 }
609
Eric Dumazeteaefd112011-02-18 03:26:36 +0000610 if (rcu_dereference_protected(sock->wq, 1)->fasync_list)
Yang Yingliang3410f222014-02-12 17:09:55 +0800611 pr_err("%s: fasync list not empty!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 if (!sock->file) {
614 iput(SOCK_INODE(sock));
615 return;
616 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700617 sock->file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618}
Cong Wang6d8c50d2018-06-07 13:39:49 -0700619
620void sock_release(struct socket *sock)
621{
622 __sock_release(sock, NULL);
623}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700624EXPORT_SYMBOL(sock_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
Soheil Hassas Yeganehc14ac942016-04-02 23:08:12 -0400626void __sock_tx_timestamp(__u16 tsflags, __u8 *tx_flags)
Patrick Ohly20d49472009-02-12 05:03:38 +0000627{
Eric Dumazet140c55d2014-08-06 11:49:29 +0200628 u8 flags = *tx_flags;
629
Soheil Hassas Yeganehc14ac942016-04-02 23:08:12 -0400630 if (tsflags & SOF_TIMESTAMPING_TX_HARDWARE)
Eric Dumazet140c55d2014-08-06 11:49:29 +0200631 flags |= SKBTX_HW_TSTAMP;
632
Soheil Hassas Yeganehc14ac942016-04-02 23:08:12 -0400633 if (tsflags & SOF_TIMESTAMPING_TX_SOFTWARE)
Eric Dumazet140c55d2014-08-06 11:49:29 +0200634 flags |= SKBTX_SW_TSTAMP;
635
Soheil Hassas Yeganehc14ac942016-04-02 23:08:12 -0400636 if (tsflags & SOF_TIMESTAMPING_TX_SCHED)
Eric Dumazet140c55d2014-08-06 11:49:29 +0200637 flags |= SKBTX_SCHED_TSTAMP;
638
Eric Dumazet140c55d2014-08-06 11:49:29 +0200639 *tx_flags = flags;
Patrick Ohly20d49472009-02-12 05:03:38 +0000640}
Willem de Bruijn67cc0d42014-09-08 19:58:58 -0400641EXPORT_SYMBOL(__sock_tx_timestamp);
Patrick Ohly20d49472009-02-12 05:03:38 +0000642
Al Virod8725c82014-12-11 00:02:50 -0500643static inline int sock_sendmsg_nosec(struct socket *sock, struct msghdr *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644{
Al Viro01e97e62014-12-15 21:39:31 -0500645 int ret = sock->ops->sendmsg(sock, msg, msg_data_left(msg));
Al Virod8725c82014-12-11 00:02:50 -0500646 BUG_ON(ret == -EIOCBQUEUED);
647 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648}
Gu Zheng0cf00c62014-12-05 15:14:23 +0800649
Al Virod8725c82014-12-11 00:02:50 -0500650int sock_sendmsg(struct socket *sock, struct msghdr *msg)
Gu Zheng0cf00c62014-12-05 15:14:23 +0800651{
Al Virod8725c82014-12-11 00:02:50 -0500652 int err = security_socket_sendmsg(sock, msg,
Al Viro01e97e62014-12-15 21:39:31 -0500653 msg_data_left(msg));
Ying Xue1b784142015-03-02 15:37:48 +0800654
Al Virod8725c82014-12-11 00:02:50 -0500655 return err ?: sock_sendmsg_nosec(sock, msg);
Gu Zheng0cf00c62014-12-05 15:14:23 +0800656}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700657EXPORT_SYMBOL(sock_sendmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
659int kernel_sendmsg(struct socket *sock, struct msghdr *msg,
660 struct kvec *vec, size_t num, size_t size)
661{
Al Viro6aa24812015-03-21 19:56:16 -0400662 iov_iter_kvec(&msg->msg_iter, WRITE | ITER_KVEC, vec, num, size);
Al Virod8725c82014-12-11 00:02:50 -0500663 return sock_sendmsg(sock, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700665EXPORT_SYMBOL(kernel_sendmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
Tom Herbert306b13e2017-07-28 16:22:41 -0700667int kernel_sendmsg_locked(struct sock *sk, struct msghdr *msg,
668 struct kvec *vec, size_t num, size_t size)
669{
670 struct socket *sock = sk->sk_socket;
671
672 if (!sock->ops->sendmsg_locked)
John Fastabenddb5980d2017-08-15 22:31:34 -0700673 return sock_no_sendmsg_locked(sk, msg, size);
Tom Herbert306b13e2017-07-28 16:22:41 -0700674
675 iov_iter_kvec(&msg->msg_iter, WRITE | ITER_KVEC, vec, num, size);
676
677 return sock->ops->sendmsg_locked(sk, msg, msg_data_left(msg));
678}
679EXPORT_SYMBOL(kernel_sendmsg_locked);
680
Soheil Hassas Yeganeh8605330a2017-03-18 17:02:59 -0400681static bool skb_is_err_queue(const struct sk_buff *skb)
682{
683 /* pkt_type of skbs enqueued on the error queue are set to
684 * PACKET_OUTGOING in skb_set_err_queue(). This is only safe to do
685 * in recvmsg, since skbs received on a local socket will never
686 * have a pkt_type of PACKET_OUTGOING.
687 */
688 return skb->pkt_type == PACKET_OUTGOING;
689}
690
Miroslav Lichvarb50a5c72017-05-19 17:52:40 +0200691/* On transmit, software and hardware timestamps are returned independently.
692 * As the two skb clones share the hardware timestamp, which may be updated
693 * before the software timestamp is received, a hardware TX timestamp may be
694 * returned only if there is no software TX timestamp. Ignore false software
695 * timestamps, which may be made in the __sock_recv_timestamp() call when the
696 * option SO_TIMESTAMP(NS) is enabled on the socket, even when the skb has a
697 * hardware timestamp.
698 */
699static bool skb_is_swtx_tstamp(const struct sk_buff *skb, int false_tstamp)
700{
701 return skb->tstamp && !false_tstamp && skb_is_err_queue(skb);
702}
703
Miroslav Lichvaraad9c8c2017-05-19 17:52:38 +0200704static void put_ts_pktinfo(struct msghdr *msg, struct sk_buff *skb)
705{
706 struct scm_ts_pktinfo ts_pktinfo;
707 struct net_device *orig_dev;
708
709 if (!skb_mac_header_was_set(skb))
710 return;
711
712 memset(&ts_pktinfo, 0, sizeof(ts_pktinfo));
713
714 rcu_read_lock();
715 orig_dev = dev_get_by_napi_id(skb_napi_id(skb));
716 if (orig_dev)
717 ts_pktinfo.if_index = orig_dev->ifindex;
718 rcu_read_unlock();
719
720 ts_pktinfo.pkt_length = skb->len - skb_mac_offset(skb);
721 put_cmsg(msg, SOL_SOCKET, SCM_TIMESTAMPING_PKTINFO,
722 sizeof(ts_pktinfo), &ts_pktinfo);
723}
724
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700725/*
726 * called from sock_recv_timestamp() if sock_flag(sk, SOCK_RCVTSTAMP)
727 */
728void __sock_recv_timestamp(struct msghdr *msg, struct sock *sk,
729 struct sk_buff *skb)
730{
Patrick Ohly20d49472009-02-12 05:03:38 +0000731 int need_software_tstamp = sock_flag(sk, SOCK_RCVTSTAMP);
Willem de Bruijnf24b9be2014-08-04 22:11:45 -0400732 struct scm_timestamping tss;
Miroslav Lichvarb50a5c72017-05-19 17:52:40 +0200733 int empty = 1, false_tstamp = 0;
Patrick Ohly20d49472009-02-12 05:03:38 +0000734 struct skb_shared_hwtstamps *shhwtstamps =
735 skb_hwtstamps(skb);
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700736
Patrick Ohly20d49472009-02-12 05:03:38 +0000737 /* Race occurred between timestamp enabling and packet
738 receiving. Fill in the current time for now. */
Miroslav Lichvarb50a5c72017-05-19 17:52:40 +0200739 if (need_software_tstamp && skb->tstamp == 0) {
Patrick Ohly20d49472009-02-12 05:03:38 +0000740 __net_timestamp(skb);
Miroslav Lichvarb50a5c72017-05-19 17:52:40 +0200741 false_tstamp = 1;
742 }
Patrick Ohly20d49472009-02-12 05:03:38 +0000743
744 if (need_software_tstamp) {
745 if (!sock_flag(sk, SOCK_RCVTSTAMPNS)) {
746 struct timeval tv;
747 skb_get_timestamp(skb, &tv);
748 put_cmsg(msg, SOL_SOCKET, SCM_TIMESTAMP,
749 sizeof(tv), &tv);
750 } else {
Willem de Bruijnf24b9be2014-08-04 22:11:45 -0400751 struct timespec ts;
752 skb_get_timestampns(skb, &ts);
Patrick Ohly20d49472009-02-12 05:03:38 +0000753 put_cmsg(msg, SOL_SOCKET, SCM_TIMESTAMPNS,
Willem de Bruijnf24b9be2014-08-04 22:11:45 -0400754 sizeof(ts), &ts);
Patrick Ohly20d49472009-02-12 05:03:38 +0000755 }
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700756 }
Patrick Ohly20d49472009-02-12 05:03:38 +0000757
Willem de Bruijnf24b9be2014-08-04 22:11:45 -0400758 memset(&tss, 0, sizeof(tss));
Willem de Bruijnc1991052014-09-03 12:01:18 -0400759 if ((sk->sk_tsflags & SOF_TIMESTAMPING_SOFTWARE) &&
Willem de Bruijnf24b9be2014-08-04 22:11:45 -0400760 ktime_to_timespec_cond(skb->tstamp, tss.ts + 0))
Patrick Ohly20d49472009-02-12 05:03:38 +0000761 empty = 0;
Willem de Bruijn4d276eb2014-07-25 18:01:32 -0400762 if (shhwtstamps &&
Willem de Bruijnb9f40e22014-08-04 22:11:46 -0400763 (sk->sk_tsflags & SOF_TIMESTAMPING_RAW_HARDWARE) &&
Miroslav Lichvarb50a5c72017-05-19 17:52:40 +0200764 !skb_is_swtx_tstamp(skb, false_tstamp) &&
Miroslav Lichvaraad9c8c2017-05-19 17:52:38 +0200765 ktime_to_timespec_cond(shhwtstamps->hwtstamp, tss.ts + 2)) {
Willem de Bruijn4d276eb2014-07-25 18:01:32 -0400766 empty = 0;
Miroslav Lichvaraad9c8c2017-05-19 17:52:38 +0200767 if ((sk->sk_tsflags & SOF_TIMESTAMPING_OPT_PKTINFO) &&
768 !skb_is_err_queue(skb))
769 put_ts_pktinfo(msg, skb);
770 }
Francis Yan1c885802016-11-27 23:07:18 -0800771 if (!empty) {
Patrick Ohly20d49472009-02-12 05:03:38 +0000772 put_cmsg(msg, SOL_SOCKET,
Willem de Bruijnf24b9be2014-08-04 22:11:45 -0400773 SCM_TIMESTAMPING, sizeof(tss), &tss);
Francis Yan1c885802016-11-27 23:07:18 -0800774
Soheil Hassas Yeganeh8605330a2017-03-18 17:02:59 -0400775 if (skb_is_err_queue(skb) && skb->len &&
Soheil Hassas Yeganeh4ef1b282017-03-18 17:03:00 -0400776 SKB_EXT_ERR(skb)->opt_stats)
Francis Yan1c885802016-11-27 23:07:18 -0800777 put_cmsg(msg, SOL_SOCKET, SCM_TIMESTAMPING_OPT_STATS,
778 skb->len, skb->data);
779 }
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700780}
Arnaldo Carvalho de Melo7c81fd82007-03-10 00:39:35 -0300781EXPORT_SYMBOL_GPL(__sock_recv_timestamp);
782
Johannes Berg6e3e9392011-11-09 10:15:42 +0100783void __sock_recv_wifi_status(struct msghdr *msg, struct sock *sk,
784 struct sk_buff *skb)
785{
786 int ack;
787
788 if (!sock_flag(sk, SOCK_WIFI_STATUS))
789 return;
790 if (!skb->wifi_acked_valid)
791 return;
792
793 ack = skb->wifi_acked;
794
795 put_cmsg(msg, SOL_SOCKET, SCM_WIFI_STATUS, sizeof(ack), &ack);
796}
797EXPORT_SYMBOL_GPL(__sock_recv_wifi_status);
798
stephen hemminger11165f12010-10-18 14:27:29 +0000799static inline void sock_recv_drops(struct msghdr *msg, struct sock *sk,
800 struct sk_buff *skb)
Neil Horman3b885782009-10-12 13:26:31 -0700801{
Eyal Birger744d5a32015-03-01 14:58:31 +0200802 if (sock_flag(sk, SOCK_RXQ_OVFL) && skb && SOCK_SKB_CB(skb)->dropcount)
Neil Horman3b885782009-10-12 13:26:31 -0700803 put_cmsg(msg, SOL_SOCKET, SO_RXQ_OVFL,
Eyal Birger744d5a32015-03-01 14:58:31 +0200804 sizeof(__u32), &SOCK_SKB_CB(skb)->dropcount);
Neil Horman3b885782009-10-12 13:26:31 -0700805}
806
Eric Dumazet767dd032010-04-28 19:14:43 +0000807void __sock_recv_ts_and_drops(struct msghdr *msg, struct sock *sk,
Neil Horman3b885782009-10-12 13:26:31 -0700808 struct sk_buff *skb)
809{
810 sock_recv_timestamp(msg, sk, skb);
811 sock_recv_drops(msg, sk, skb);
812}
Eric Dumazet767dd032010-04-28 19:14:43 +0000813EXPORT_SYMBOL_GPL(__sock_recv_ts_and_drops);
Neil Horman3b885782009-10-12 13:26:31 -0700814
Ying Xue1b784142015-03-02 15:37:48 +0800815static inline int sock_recvmsg_nosec(struct socket *sock, struct msghdr *msg,
Al Viro2da62902015-03-14 21:13:46 -0400816 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817{
Al Viro2da62902015-03-14 21:13:46 -0400818 return sock->ops->recvmsg(sock, msg, msg_data_left(msg), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819}
820
Al Viro2da62902015-03-14 21:13:46 -0400821int sock_recvmsg(struct socket *sock, struct msghdr *msg, int flags)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -0700822{
Al Viro2da62902015-03-14 21:13:46 -0400823 int err = security_socket_recvmsg(sock, msg, msg_data_left(msg), flags);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -0700824
Al Viro2da62902015-03-14 21:13:46 -0400825 return err ?: sock_recvmsg_nosec(sock, msg, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700827EXPORT_SYMBOL(sock_recvmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
Martin Lucinac1249c02010-12-10 00:04:05 +0000829/**
830 * kernel_recvmsg - Receive a message from a socket (kernel space)
831 * @sock: The socket to receive the message from
832 * @msg: Received message
833 * @vec: Input s/g array for message data
834 * @num: Size of input s/g array
835 * @size: Number of bytes to read
836 * @flags: Message flags (MSG_DONTWAIT, etc...)
837 *
838 * On return the msg structure contains the scatter/gather array passed in the
839 * vec argument. The array is modified so that it consists of the unfilled
840 * portion of the original array.
841 *
842 * The returned value is the total number of bytes received, or an error.
843 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700844int kernel_recvmsg(struct socket *sock, struct msghdr *msg,
845 struct kvec *vec, size_t num, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846{
847 mm_segment_t oldfs = get_fs();
848 int result;
849
Al Viro6aa24812015-03-21 19:56:16 -0400850 iov_iter_kvec(&msg->msg_iter, READ | ITER_KVEC, vec, num, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 set_fs(KERNEL_DS);
Al Viro2da62902015-03-14 21:13:46 -0400852 result = sock_recvmsg(sock, msg, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 set_fs(oldfs);
854 return result;
855}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700856EXPORT_SYMBOL(kernel_recvmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -0300858static ssize_t sock_sendpage(struct file *file, struct page *page,
859 int offset, size_t size, loff_t *ppos, int more)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860{
861 struct socket *sock;
862 int flags;
863
Eric Dumazetb69aee02005-09-06 14:42:45 -0700864 sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
Eric Dumazet35f9c092012-04-05 03:05:35 +0000866 flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
867 /* more is a combination of MSG_MORE and MSG_SENDPAGE_NOTLAST */
868 flags |= more;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
Linus Torvaldse6949582009-08-13 08:28:36 -0700870 return kernel_sendpage(sock, page, offset, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871}
872
Jens Axboe9c55e012007-11-06 23:30:13 -0800873static ssize_t sock_splice_read(struct file *file, loff_t *ppos,
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700874 struct pipe_inode_info *pipe, size_t len,
Jens Axboe9c55e012007-11-06 23:30:13 -0800875 unsigned int flags)
876{
877 struct socket *sock = file->private_data;
878
Rémi Denis-Courmont997b37d2008-02-15 02:35:45 -0800879 if (unlikely(!sock->ops->splice_read))
880 return -EINVAL;
881
Jens Axboe9c55e012007-11-06 23:30:13 -0800882 return sock->ops->splice_read(sock, ppos, pipe, len, flags);
883}
884
Al Viro8ae5e032014-11-28 19:40:50 -0500885static ssize_t sock_read_iter(struct kiocb *iocb, struct iov_iter *to)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800886{
Al Viro6d652332015-01-30 16:12:56 -0500887 struct file *file = iocb->ki_filp;
888 struct socket *sock = file->private_data;
tadeusz.struk@intel.com0345f932015-03-19 12:31:25 -0700889 struct msghdr msg = {.msg_iter = *to,
890 .msg_iocb = iocb};
Al Viro8ae5e032014-11-28 19:40:50 -0500891 ssize_t res;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800892
Al Viro8ae5e032014-11-28 19:40:50 -0500893 if (file->f_flags & O_NONBLOCK)
894 msg.msg_flags = MSG_DONTWAIT;
895
896 if (iocb->ki_pos != 0)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800897 return -ESPIPE;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700898
Christoph Hellwig66ee59a2015-02-11 19:56:46 +0100899 if (!iov_iter_count(to)) /* Match SYS5 behaviour */
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800900 return 0;
901
Al Viro2da62902015-03-14 21:13:46 -0400902 res = sock_recvmsg(sock, &msg, msg.msg_flags);
Al Viro8ae5e032014-11-28 19:40:50 -0500903 *to = msg.msg_iter;
904 return res;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800905}
906
Al Viro8ae5e032014-11-28 19:40:50 -0500907static ssize_t sock_write_iter(struct kiocb *iocb, struct iov_iter *from)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908{
Al Viro6d652332015-01-30 16:12:56 -0500909 struct file *file = iocb->ki_filp;
910 struct socket *sock = file->private_data;
tadeusz.struk@intel.com0345f932015-03-19 12:31:25 -0700911 struct msghdr msg = {.msg_iter = *from,
912 .msg_iocb = iocb};
Al Viro8ae5e032014-11-28 19:40:50 -0500913 ssize_t res;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800914
Al Viro8ae5e032014-11-28 19:40:50 -0500915 if (iocb->ki_pos != 0)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800916 return -ESPIPE;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700917
Al Viro8ae5e032014-11-28 19:40:50 -0500918 if (file->f_flags & O_NONBLOCK)
919 msg.msg_flags = MSG_DONTWAIT;
920
Al Viro6d652332015-01-30 16:12:56 -0500921 if (sock->type == SOCK_SEQPACKET)
922 msg.msg_flags |= MSG_EOR;
923
Al Virod8725c82014-12-11 00:02:50 -0500924 res = sock_sendmsg(sock, &msg);
Al Viro8ae5e032014-11-28 19:40:50 -0500925 *from = msg.msg_iter;
926 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927}
928
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929/*
930 * Atomic setting of ioctl hooks to avoid race
931 * with module unload.
932 */
933
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800934static DEFINE_MUTEX(br_ioctl_mutex);
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700935static int (*br_ioctl_hook) (struct net *, unsigned int cmd, void __user *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
Eric W. Biederman881d9662007-09-17 11:56:21 -0700937void brioctl_set(int (*hook) (struct net *, unsigned int, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800939 mutex_lock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 br_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800941 mutex_unlock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942}
943EXPORT_SYMBOL(brioctl_set);
944
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800945static DEFINE_MUTEX(vlan_ioctl_mutex);
Eric W. Biederman881d9662007-09-17 11:56:21 -0700946static int (*vlan_ioctl_hook) (struct net *, void __user *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
Eric W. Biederman881d9662007-09-17 11:56:21 -0700948void vlan_ioctl_set(int (*hook) (struct net *, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800950 mutex_lock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 vlan_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800952 mutex_unlock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953}
954EXPORT_SYMBOL(vlan_ioctl_set);
955
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800956static DEFINE_MUTEX(dlci_ioctl_mutex);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700957static int (*dlci_ioctl_hook) (unsigned int, void __user *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700959void dlci_ioctl_set(int (*hook) (unsigned int, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800961 mutex_lock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 dlci_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800963 mutex_unlock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964}
965EXPORT_SYMBOL(dlci_ioctl_set);
966
Arnd Bergmann6b960182009-11-06 23:10:54 -0800967static long sock_do_ioctl(struct net *net, struct socket *sock,
968 unsigned int cmd, unsigned long arg)
969{
970 int err;
971 void __user *argp = (void __user *)arg;
972
973 err = sock->ops->ioctl(sock, cmd, arg);
974
975 /*
976 * If this ioctl is unknown try to hand it down
977 * to the NIC driver.
978 */
Al Viro36fd6332017-06-26 13:19:16 -0400979 if (err != -ENOIOCTLCMD)
980 return err;
Arnd Bergmann6b960182009-11-06 23:10:54 -0800981
Al Viro36fd6332017-06-26 13:19:16 -0400982 if (cmd == SIOCGIFCONF) {
983 struct ifconf ifc;
984 if (copy_from_user(&ifc, argp, sizeof(struct ifconf)))
985 return -EFAULT;
986 rtnl_lock();
987 err = dev_ifconf(net, &ifc, sizeof(struct ifreq));
988 rtnl_unlock();
989 if (!err && copy_to_user(argp, &ifc, sizeof(struct ifconf)))
990 err = -EFAULT;
Al Viro44c02a22017-10-05 12:59:44 -0400991 } else {
992 struct ifreq ifr;
993 bool need_copyout;
994 if (copy_from_user(&ifr, argp, sizeof(struct ifreq)))
995 return -EFAULT;
996 err = dev_ioctl(net, cmd, &ifr, &need_copyout);
997 if (!err && need_copyout)
998 if (copy_to_user(argp, &ifr, sizeof(struct ifreq)))
999 return -EFAULT;
Al Viro36fd6332017-06-26 13:19:16 -04001000 }
Arnd Bergmann6b960182009-11-06 23:10:54 -08001001 return err;
1002}
1003
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004/*
1005 * With an ioctl, arg may well be a user mode pointer, but we don't know
1006 * what to do with it - that's up to the protocol still.
1007 */
1008
Kirill Tkhaid8d211a2018-02-14 16:39:56 +03001009struct ns_common *get_net_ns(struct ns_common *ns)
Andrey Vaginc62cce22016-10-24 18:29:13 -07001010{
1011 return &get_net(container_of(ns, struct net, ns))->ns;
1012}
Kirill Tkhaid8d211a2018-02-14 16:39:56 +03001013EXPORT_SYMBOL_GPL(get_net_ns);
Andrey Vaginc62cce22016-10-24 18:29:13 -07001014
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015static long sock_ioctl(struct file *file, unsigned cmd, unsigned long arg)
1016{
1017 struct socket *sock;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001018 struct sock *sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 void __user *argp = (void __user *)arg;
1020 int pid, err;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001021 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
Eric Dumazetb69aee02005-09-06 14:42:45 -07001023 sock = file->private_data;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001024 sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001025 net = sock_net(sk);
Al Viro44c02a22017-10-05 12:59:44 -04001026 if (unlikely(cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15))) {
1027 struct ifreq ifr;
1028 bool need_copyout;
1029 if (copy_from_user(&ifr, argp, sizeof(struct ifreq)))
1030 return -EFAULT;
1031 err = dev_ioctl(net, cmd, &ifr, &need_copyout);
1032 if (!err && need_copyout)
1033 if (copy_to_user(argp, &ifr, sizeof(struct ifreq)))
1034 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 } else
Johannes Berg3d23e342009-09-29 23:27:28 +02001036#ifdef CONFIG_WEXT_CORE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 if (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST) {
Al Virob1b0c242017-10-01 20:13:08 -04001038 err = wext_handle_ioctl(net, cmd, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 } else
Johannes Berg3d23e342009-09-29 23:27:28 +02001040#endif
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001041 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 case FIOSETOWN:
1043 case SIOCSPGRP:
1044 err = -EFAULT;
1045 if (get_user(pid, (int __user *)argp))
1046 break;
Jiri Slaby393cc3f2017-06-13 13:35:50 +02001047 err = f_setown(sock->file, pid, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 break;
1049 case FIOGETOWN:
1050 case SIOCGPGRP:
Eric W. Biederman609d7fa2006-10-02 02:17:15 -07001051 err = put_user(f_getown(sock->file),
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001052 (int __user *)argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 break;
1054 case SIOCGIFBR:
1055 case SIOCSIFBR:
1056 case SIOCBRADDBR:
1057 case SIOCBRDELBR:
1058 err = -ENOPKG;
1059 if (!br_ioctl_hook)
1060 request_module("bridge");
1061
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001062 mutex_lock(&br_ioctl_mutex);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001063 if (br_ioctl_hook)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001064 err = br_ioctl_hook(net, cmd, argp);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001065 mutex_unlock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 break;
1067 case SIOCGIFVLAN:
1068 case SIOCSIFVLAN:
1069 err = -ENOPKG;
1070 if (!vlan_ioctl_hook)
1071 request_module("8021q");
1072
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001073 mutex_lock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 if (vlan_ioctl_hook)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001075 err = vlan_ioctl_hook(net, argp);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001076 mutex_unlock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 case SIOCADDDLCI:
1079 case SIOCDELDLCI:
1080 err = -ENOPKG;
1081 if (!dlci_ioctl_hook)
1082 request_module("dlci");
1083
Pavel Emelyanov7512cbf2008-03-21 15:58:52 -07001084 mutex_lock(&dlci_ioctl_mutex);
1085 if (dlci_ioctl_hook)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 err = dlci_ioctl_hook(cmd, argp);
Pavel Emelyanov7512cbf2008-03-21 15:58:52 -07001087 mutex_unlock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 break;
Andrey Vaginc62cce22016-10-24 18:29:13 -07001089 case SIOCGSKNS:
1090 err = -EPERM;
1091 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
1092 break;
1093
1094 err = open_related_ns(&net->ns, get_net_ns);
1095 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 default:
Arnd Bergmann6b960182009-11-06 23:10:54 -08001097 err = sock_do_ioctl(net, sock, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001099 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 return err;
1101}
1102
1103int sock_create_lite(int family, int type, int protocol, struct socket **res)
1104{
1105 int err;
1106 struct socket *sock = NULL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001107
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 err = security_socket_create(family, type, protocol, 1);
1109 if (err)
1110 goto out;
1111
1112 sock = sock_alloc();
1113 if (!sock) {
1114 err = -ENOMEM;
1115 goto out;
1116 }
1117
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 sock->type = type;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001119 err = security_socket_post_create(sock, family, type, protocol, 1);
1120 if (err)
1121 goto out_release;
1122
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123out:
1124 *res = sock;
1125 return err;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001126out_release:
1127 sock_release(sock);
1128 sock = NULL;
1129 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001131EXPORT_SYMBOL(sock_create_lite);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132
Christoph Hellwig15252422018-04-09 15:25:28 +02001133static struct wait_queue_head *sock_get_poll_head(struct file *file,
1134 __poll_t events)
1135{
1136 struct socket *sock = file->private_data;
1137
1138 if (!sock->ops->poll_mask)
1139 return NULL;
1140 sock_poll_busy_loop(sock, events);
1141 return sk_sleep(sock->sk);
1142}
1143
1144static __poll_t sock_poll_mask(struct file *file, __poll_t events)
1145{
1146 struct socket *sock = file->private_data;
1147
1148 /*
1149 * We need to be sure we are in sync with the socket flags modification.
1150 *
1151 * This memory barrier is paired in the wq_has_sleeper.
1152 */
1153 smp_mb();
1154
1155 /* this socket can poll_ll so tell the system call */
1156 return sock->ops->poll_mask(sock, events) |
1157 (sk_can_busy_loop(sock->sk) ? POLL_BUSY_LOOP : 0);
1158}
1159
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160/* No kernel lock held - perfect */
Al Viroade994f2017-07-03 00:01:49 -04001161static __poll_t sock_poll(struct file *file, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162{
Christoph Hellwig3cafb372018-01-09 16:07:34 +01001163 struct socket *sock = file->private_data;
Christoph Hellwig15252422018-04-09 15:25:28 +02001164 __poll_t events = poll_requested_events(wait), mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165
Christoph Hellwig15252422018-04-09 15:25:28 +02001166 if (sock->ops->poll) {
1167 sock_poll_busy_loop(sock, events);
1168 mask = sock->ops->poll(file, sock, wait);
1169 } else if (sock->ops->poll_mask) {
1170 sock_poll_wait(file, sock_get_poll_head(file, events), wait);
1171 mask = sock->ops->poll_mask(sock, events);
1172 }
1173
1174 return mask | sock_poll_busy_flag(sock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175}
1176
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001177static int sock_mmap(struct file *file, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178{
Eric Dumazetb69aee02005-09-06 14:42:45 -07001179 struct socket *sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180
1181 return sock->ops->mmap(file, sock, vma);
1182}
1183
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001184static int sock_close(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185{
Cong Wang6d8c50d2018-06-07 13:39:49 -07001186 __sock_release(SOCKET_I(inode), inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 return 0;
1188}
1189
1190/*
1191 * Update the socket async list
1192 *
1193 * Fasync_list locking strategy.
1194 *
1195 * 1. fasync_list is modified only under process context socket lock
1196 * i.e. under semaphore.
1197 * 2. fasync_list is used under read_lock(&sk->sk_callback_lock)
Eric Dumazet989a2972010-04-14 09:55:35 +00001198 * or under socket lock
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 */
1200
1201static int sock_fasync(int fd, struct file *filp, int on)
1202{
Eric Dumazet989a2972010-04-14 09:55:35 +00001203 struct socket *sock = filp->private_data;
1204 struct sock *sk = sock->sk;
Eric Dumazeteaefd112011-02-18 03:26:36 +00001205 struct socket_wq *wq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
Eric Dumazet989a2972010-04-14 09:55:35 +00001207 if (sk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209
1210 lock_sock(sk);
Hannes Frederic Sowa1e1d04e2016-04-05 17:10:15 +02001211 wq = rcu_dereference_protected(sock->wq, lockdep_sock_is_held(sk));
Eric Dumazeteaefd112011-02-18 03:26:36 +00001212 fasync_helper(fd, filp, on, &wq->fasync_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
Eric Dumazeteaefd112011-02-18 03:26:36 +00001214 if (!wq->fasync_list)
Eric Dumazet989a2972010-04-14 09:55:35 +00001215 sock_reset_flag(sk, SOCK_FASYNC);
Jonathan Corbet76398422009-02-01 14:26:59 -07001216 else
Eric Dumazetbcdce712009-10-06 17:28:29 -07001217 sock_set_flag(sk, SOCK_FASYNC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218
Eric Dumazet989a2972010-04-14 09:55:35 +00001219 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 return 0;
1221}
1222
Eric Dumazetceb5d582015-11-29 20:03:11 -08001223/* This function may be called only under rcu_lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
Eric Dumazetceb5d582015-11-29 20:03:11 -08001225int sock_wake_async(struct socket_wq *wq, int how, int band)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226{
Eric Dumazetceb5d582015-11-29 20:03:11 -08001227 if (!wq || !wq->fasync_list)
1228 return -1;
Eric Dumazet43815482010-04-29 11:01:49 +00001229
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001230 switch (how) {
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001231 case SOCK_WAKE_WAITD:
Eric Dumazetceb5d582015-11-29 20:03:11 -08001232 if (test_bit(SOCKWQ_ASYNC_WAITDATA, &wq->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 break;
1234 goto call_kill;
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001235 case SOCK_WAKE_SPACE:
Eric Dumazetceb5d582015-11-29 20:03:11 -08001236 if (!test_and_clear_bit(SOCKWQ_ASYNC_NOSPACE, &wq->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 break;
1238 /* fall through */
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001239 case SOCK_WAKE_IO:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001240call_kill:
Eric Dumazet43815482010-04-29 11:01:49 +00001241 kill_fasync(&wq->fasync_list, SIGIO, band);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 break;
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001243 case SOCK_WAKE_URG:
Eric Dumazet43815482010-04-29 11:01:49 +00001244 kill_fasync(&wq->fasync_list, SIGURG, band);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 }
Eric Dumazetceb5d582015-11-29 20:03:11 -08001246
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 return 0;
1248}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001249EXPORT_SYMBOL(sock_wake_async);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250
Pavel Emelyanov721db932010-09-29 16:06:32 +04001251int __sock_create(struct net *net, int family, int type, int protocol,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001252 struct socket **res, int kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253{
1254 int err;
1255 struct socket *sock;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001256 const struct net_proto_family *pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257
1258 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001259 * Check protocol is in range
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 */
1261 if (family < 0 || family >= NPROTO)
1262 return -EAFNOSUPPORT;
1263 if (type < 0 || type >= SOCK_MAX)
1264 return -EINVAL;
1265
1266 /* Compatibility.
1267
1268 This uglymoron is moved from INET layer to here to avoid
1269 deadlock in module load.
1270 */
1271 if (family == PF_INET && type == SOCK_PACKET) {
liping.zhangf3c98692016-03-11 23:08:36 +08001272 pr_info_once("%s uses obsolete (PF_INET,SOCK_PACKET)\n",
1273 current->comm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 family = PF_PACKET;
1275 }
1276
1277 err = security_socket_create(family, type, protocol, kern);
1278 if (err)
1279 return err;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001280
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001281 /*
1282 * Allocate the socket and allow the family to set things up. if
1283 * the protocol is 0, the family is instructed to select an appropriate
1284 * default.
1285 */
1286 sock = sock_alloc();
1287 if (!sock) {
Joe Perchese87cc472012-05-13 21:56:26 +00001288 net_warn_ratelimited("socket: no more sockets\n");
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001289 return -ENFILE; /* Not exactly a match, but its the
1290 closest posix thing */
1291 }
1292
1293 sock->type = type;
1294
Johannes Berg95a5afc2008-10-16 15:24:51 -07001295#ifdef CONFIG_MODULES
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001296 /* Attempt to load a protocol module if the find failed.
1297 *
1298 * 12/09/1996 Marcin: But! this makes REALLY only sense, if the user
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 * requested real, full-featured networking support upon configuration.
1300 * Otherwise module support will break!
1301 */
Eric Dumazet190683a2010-11-10 10:50:44 +00001302 if (rcu_access_pointer(net_families[family]) == NULL)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001303 request_module("net-pf-%d", family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304#endif
1305
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001306 rcu_read_lock();
1307 pf = rcu_dereference(net_families[family]);
1308 err = -EAFNOSUPPORT;
1309 if (!pf)
1310 goto out_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311
1312 /*
1313 * We will call the ->create function, that possibly is in a loadable
1314 * module, so we have to bump that loadable module refcnt first.
1315 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001316 if (!try_module_get(pf->owner))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 goto out_release;
1318
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001319 /* Now protected by module ref count */
1320 rcu_read_unlock();
1321
Eric Paris3f378b62009-11-05 22:18:14 -08001322 err = pf->create(net, sock, protocol, kern);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001323 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 goto out_module_put;
Frank Filza79af592005-09-27 15:23:38 -07001325
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 /*
1327 * Now to bump the refcnt of the [loadable] module that owns this
1328 * socket at sock_release time we decrement its refcnt.
1329 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001330 if (!try_module_get(sock->ops->owner))
1331 goto out_module_busy;
1332
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 /*
1334 * Now that we're done with the ->create function, the [loadable]
1335 * module can have its refcnt decremented
1336 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001337 module_put(pf->owner);
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001338 err = security_socket_post_create(sock, family, type, protocol, kern);
1339 if (err)
Herbert Xu3b185522007-08-15 14:46:02 -07001340 goto out_sock_release;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001341 *res = sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001343 return 0;
1344
1345out_module_busy:
1346 err = -EAFNOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347out_module_put:
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001348 sock->ops = NULL;
1349 module_put(pf->owner);
1350out_sock_release:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 sock_release(sock);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001352 return err;
1353
1354out_release:
1355 rcu_read_unlock();
1356 goto out_sock_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357}
Pavel Emelyanov721db932010-09-29 16:06:32 +04001358EXPORT_SYMBOL(__sock_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
1360int sock_create(int family, int type, int protocol, struct socket **res)
1361{
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001362 return __sock_create(current->nsproxy->net_ns, family, type, protocol, res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001364EXPORT_SYMBOL(sock_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365
Eric W. Biedermaneeb1bd52015-05-08 21:08:05 -05001366int sock_create_kern(struct net *net, int family, int type, int protocol, struct socket **res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367{
Eric W. Biedermaneeb1bd52015-05-08 21:08:05 -05001368 return __sock_create(net, family, type, protocol, res, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001370EXPORT_SYMBOL(sock_create_kern);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371
Dominik Brodowski9d6a15c2018-03-13 19:29:43 +01001372int __sys_socket(int family, int type, int protocol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373{
1374 int retval;
1375 struct socket *sock;
Ulrich Dreppera677a032008-07-23 21:29:17 -07001376 int flags;
1377
Ulrich Dreppere38b36f2008-07-23 21:29:42 -07001378 /* Check the SOCK_* constants for consistency. */
1379 BUILD_BUG_ON(SOCK_CLOEXEC != O_CLOEXEC);
1380 BUILD_BUG_ON((SOCK_MAX | SOCK_TYPE_MASK) != SOCK_TYPE_MASK);
1381 BUILD_BUG_ON(SOCK_CLOEXEC & SOCK_TYPE_MASK);
1382 BUILD_BUG_ON(SOCK_NONBLOCK & SOCK_TYPE_MASK);
1383
Ulrich Dreppera677a032008-07-23 21:29:17 -07001384 flags = type & ~SOCK_TYPE_MASK;
Ulrich Drepper77d27202008-07-23 21:29:35 -07001385 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Dreppera677a032008-07-23 21:29:17 -07001386 return -EINVAL;
1387 type &= SOCK_TYPE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001389 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1390 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1391
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 retval = sock_create(family, type, protocol, &sock);
1393 if (retval < 0)
Al Viro8e1611e2017-12-05 23:29:09 +00001394 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395
Al Viro8e1611e2017-12-05 23:29:09 +00001396 return sock_map_fd(sock, flags & (O_CLOEXEC | O_NONBLOCK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397}
1398
Dominik Brodowski9d6a15c2018-03-13 19:29:43 +01001399SYSCALL_DEFINE3(socket, int, family, int, type, int, protocol)
1400{
1401 return __sys_socket(family, type, protocol);
1402}
1403
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404/*
1405 * Create a pair of connected sockets.
1406 */
1407
Dominik Brodowski6debc8d2018-03-13 19:49:23 +01001408int __sys_socketpair(int family, int type, int protocol, int __user *usockvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409{
1410 struct socket *sock1, *sock2;
1411 int fd1, fd2, err;
Al Virodb349502007-02-07 01:48:00 -05001412 struct file *newfile1, *newfile2;
Ulrich Dreppera677a032008-07-23 21:29:17 -07001413 int flags;
1414
1415 flags = type & ~SOCK_TYPE_MASK;
Ulrich Drepper77d27202008-07-23 21:29:35 -07001416 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Dreppera677a032008-07-23 21:29:17 -07001417 return -EINVAL;
1418 type &= SOCK_TYPE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001420 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1421 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1422
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 /*
Al Viro016a2662017-12-05 23:28:38 +00001424 * reserve descriptors and make sure we won't fail
1425 * to return them to userland.
1426 */
1427 fd1 = get_unused_fd_flags(flags);
1428 if (unlikely(fd1 < 0))
1429 return fd1;
1430
1431 fd2 = get_unused_fd_flags(flags);
1432 if (unlikely(fd2 < 0)) {
1433 put_unused_fd(fd1);
1434 return fd2;
1435 }
1436
1437 err = put_user(fd1, &usockvec[0]);
1438 if (err)
1439 goto out;
1440
1441 err = put_user(fd2, &usockvec[1]);
1442 if (err)
1443 goto out;
1444
1445 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 * Obtain the first socket and check if the underlying protocol
1447 * supports the socketpair call.
1448 */
1449
1450 err = sock_create(family, type, protocol, &sock1);
Al Viro016a2662017-12-05 23:28:38 +00001451 if (unlikely(err < 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 goto out;
1453
1454 err = sock_create(family, type, protocol, &sock2);
Al Viro016a2662017-12-05 23:28:38 +00001455 if (unlikely(err < 0)) {
1456 sock_release(sock1);
1457 goto out;
David S. Millerbf3c23d2007-10-29 21:54:02 -07001458 }
Yann Droneaudd73aa282013-12-09 22:42:20 +01001459
David Herrmannd47cd942018-05-04 16:28:20 +02001460 err = security_socket_socketpair(sock1, sock2);
1461 if (unlikely(err)) {
1462 sock_release(sock2);
1463 sock_release(sock1);
1464 goto out;
1465 }
1466
Al Viro016a2662017-12-05 23:28:38 +00001467 err = sock1->ops->socketpair(sock1, sock2);
1468 if (unlikely(err < 0)) {
1469 sock_release(sock2);
1470 sock_release(sock1);
1471 goto out;
Al Viro28407632012-08-17 23:54:15 -04001472 }
1473
Linus Torvaldsaab174f2012-10-02 20:25:04 -07001474 newfile1 = sock_alloc_file(sock1, flags, NULL);
Viresh Kumarb5ffe632015-08-12 15:59:47 +05301475 if (IS_ERR(newfile1)) {
Al Viro28407632012-08-17 23:54:15 -04001476 err = PTR_ERR(newfile1);
Al Viro016a2662017-12-05 23:28:38 +00001477 sock_release(sock2);
1478 goto out;
Al Viro28407632012-08-17 23:54:15 -04001479 }
1480
Linus Torvaldsaab174f2012-10-02 20:25:04 -07001481 newfile2 = sock_alloc_file(sock2, flags, NULL);
Al Viro28407632012-08-17 23:54:15 -04001482 if (IS_ERR(newfile2)) {
1483 err = PTR_ERR(newfile2);
Al Viro016a2662017-12-05 23:28:38 +00001484 fput(newfile1);
1485 goto out;
Al Virodb349502007-02-07 01:48:00 -05001486 }
1487
Al Viro157cf642008-12-14 04:57:47 -05001488 audit_fd_pair(fd1, fd2);
Yann Droneaudd73aa282013-12-09 22:42:20 +01001489
Al Virodb349502007-02-07 01:48:00 -05001490 fd_install(fd1, newfile1);
1491 fd_install(fd2, newfile2);
Yann Droneaudd73aa282013-12-09 22:42:20 +01001492 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494out:
Al Viro016a2662017-12-05 23:28:38 +00001495 put_unused_fd(fd2);
1496 put_unused_fd(fd1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 return err;
1498}
1499
Dominik Brodowski6debc8d2018-03-13 19:49:23 +01001500SYSCALL_DEFINE4(socketpair, int, family, int, type, int, protocol,
1501 int __user *, usockvec)
1502{
1503 return __sys_socketpair(family, type, protocol, usockvec);
1504}
1505
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506/*
1507 * Bind a name to a socket. Nothing much to do here since it's
1508 * the protocol's responsibility to handle the local address.
1509 *
1510 * We move the socket address to kernel space before we call
1511 * the protocol layer (having also checked the address is ok).
1512 */
1513
Dominik Brodowskia87d35d2018-03-13 19:33:09 +01001514int __sys_bind(int fd, struct sockaddr __user *umyaddr, int addrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515{
1516 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001517 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001518 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001520 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001521 if (sock) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001522 err = move_addr_to_kernel(umyaddr, addrlen, &address);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001523 if (err >= 0) {
1524 err = security_socket_bind(sock,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001525 (struct sockaddr *)&address,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001526 addrlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001527 if (!err)
1528 err = sock->ops->bind(sock,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001529 (struct sockaddr *)
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001530 &address, addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 }
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001532 fput_light(sock->file, fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001533 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 return err;
1535}
1536
Dominik Brodowskia87d35d2018-03-13 19:33:09 +01001537SYSCALL_DEFINE3(bind, int, fd, struct sockaddr __user *, umyaddr, int, addrlen)
1538{
1539 return __sys_bind(fd, umyaddr, addrlen);
1540}
1541
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542/*
1543 * Perform a listen. Basically, we allow the protocol to do anything
1544 * necessary for a listen, and if that works, we mark the socket as
1545 * ready for listening.
1546 */
1547
Dominik Brodowski25e290e2018-03-13 19:36:54 +01001548int __sys_listen(int fd, int backlog)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549{
1550 struct socket *sock;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001551 int err, fput_needed;
Pavel Emelyanovb8e1f9b2007-12-08 00:12:33 -08001552 int somaxconn;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001553
1554 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1555 if (sock) {
Pavel Emelyanov8efa6e92008-03-31 19:41:14 -07001556 somaxconn = sock_net(sock->sk)->core.sysctl_somaxconn;
Eric Dumazet95c96172012-04-15 05:58:06 +00001557 if ((unsigned int)backlog > somaxconn)
Pavel Emelyanovb8e1f9b2007-12-08 00:12:33 -08001558 backlog = somaxconn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559
1560 err = security_socket_listen(sock, backlog);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001561 if (!err)
1562 err = sock->ops->listen(sock, backlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001564 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 }
1566 return err;
1567}
1568
Dominik Brodowski25e290e2018-03-13 19:36:54 +01001569SYSCALL_DEFINE2(listen, int, fd, int, backlog)
1570{
1571 return __sys_listen(fd, backlog);
1572}
1573
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574/*
1575 * For accept, we attempt to create a new socket, set up the link
1576 * with the client, wake up the client, then return the new
1577 * connected fd. We collect the address of the connector in kernel
1578 * space and move it to user at the very end. This is unclean because
1579 * we open the socket then return an error.
1580 *
1581 * 1003.1g adds the ability to recvmsg() to query connection pending
1582 * status to recvmsg. We need to add that support in a way thats
Geert Uytterhoevenb9030362018-03-02 14:43:23 +01001583 * clean when we restructure accept also.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 */
1585
Dominik Brodowski4541e802018-03-13 19:24:23 +01001586int __sys_accept4(int fd, struct sockaddr __user *upeer_sockaddr,
1587 int __user *upeer_addrlen, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588{
1589 struct socket *sock, *newsock;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001590 struct file *newfile;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001591 int err, len, newfd, fput_needed;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001592 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593
Ulrich Drepper77d27202008-07-23 21:29:35 -07001594 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001595 return -EINVAL;
1596
1597 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1598 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1599
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001600 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 if (!sock)
1602 goto out;
1603
1604 err = -ENFILE;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001605 newsock = sock_alloc();
1606 if (!newsock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 goto out_put;
1608
1609 newsock->type = sock->type;
1610 newsock->ops = sock->ops;
1611
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 /*
1613 * We don't need try_module_get here, as the listening socket (sock)
1614 * has the protocol module (sock->ops->owner) held.
1615 */
1616 __module_get(newsock->ops->owner);
1617
Al Viro28407632012-08-17 23:54:15 -04001618 newfd = get_unused_fd_flags(flags);
David S. Miller39d8c1b2006-03-20 17:13:49 -08001619 if (unlikely(newfd < 0)) {
1620 err = newfd;
David S. Miller9a1875e2006-04-01 12:48:36 -08001621 sock_release(newsock);
1622 goto out_put;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001623 }
Linus Torvaldsaab174f2012-10-02 20:25:04 -07001624 newfile = sock_alloc_file(newsock, flags, sock->sk->sk_prot_creator->name);
Viresh Kumarb5ffe632015-08-12 15:59:47 +05301625 if (IS_ERR(newfile)) {
Al Viro28407632012-08-17 23:54:15 -04001626 err = PTR_ERR(newfile);
1627 put_unused_fd(newfd);
Al Viro28407632012-08-17 23:54:15 -04001628 goto out_put;
1629 }
David S. Miller39d8c1b2006-03-20 17:13:49 -08001630
Frank Filza79af592005-09-27 15:23:38 -07001631 err = security_socket_accept(sock, newsock);
1632 if (err)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001633 goto out_fd;
Frank Filza79af592005-09-27 15:23:38 -07001634
David Howellscdfbabf2017-03-09 08:09:05 +00001635 err = sock->ops->accept(sock, newsock, sock->file->f_flags, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 if (err < 0)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001637 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638
1639 if (upeer_sockaddr) {
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01001640 len = newsock->ops->getname(newsock,
1641 (struct sockaddr *)&address, 2);
1642 if (len < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 err = -ECONNABORTED;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001644 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 }
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001646 err = move_addr_to_user(&address,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001647 len, upeer_sockaddr, upeer_addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 if (err < 0)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001649 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 }
1651
1652 /* File flags are not inherited via accept() unlike another OSes. */
1653
David S. Miller39d8c1b2006-03-20 17:13:49 -08001654 fd_install(newfd, newfile);
1655 err = newfd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001658 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659out:
1660 return err;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001661out_fd:
David S. Miller9606a212006-04-01 01:00:14 -08001662 fput(newfile);
David S. Miller39d8c1b2006-03-20 17:13:49 -08001663 put_unused_fd(newfd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 goto out_put;
1665}
1666
Dominik Brodowski4541e802018-03-13 19:24:23 +01001667SYSCALL_DEFINE4(accept4, int, fd, struct sockaddr __user *, upeer_sockaddr,
1668 int __user *, upeer_addrlen, int, flags)
1669{
1670 return __sys_accept4(fd, upeer_sockaddr, upeer_addrlen, flags);
1671}
1672
Heiko Carstens20f37032009-01-14 14:14:23 +01001673SYSCALL_DEFINE3(accept, int, fd, struct sockaddr __user *, upeer_sockaddr,
1674 int __user *, upeer_addrlen)
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001675{
Dominik Brodowski4541e802018-03-13 19:24:23 +01001676 return __sys_accept4(fd, upeer_sockaddr, upeer_addrlen, 0);
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001677}
1678
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679/*
1680 * Attempt to connect to a socket with the server address. The address
1681 * is in user space so we verify it is OK and move it to kernel space.
1682 *
1683 * For 1003.1g we need to add clean support for a bind to AF_UNSPEC to
1684 * break bindings
1685 *
1686 * NOTE: 1003.1g draft 6.3 is broken with respect to AX.25/NetROM and
1687 * other SEQPACKET protocols that take time to connect() as it doesn't
1688 * include the -EINPROGRESS status for such sockets.
1689 */
1690
Dominik Brodowski1387c2c2018-03-13 19:35:09 +01001691int __sys_connect(int fd, struct sockaddr __user *uservaddr, int addrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692{
1693 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001694 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001695 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001697 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 if (!sock)
1699 goto out;
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001700 err = move_addr_to_kernel(uservaddr, addrlen, &address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 if (err < 0)
1702 goto out_put;
1703
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001704 err =
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001705 security_socket_connect(sock, (struct sockaddr *)&address, addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 if (err)
1707 goto out_put;
1708
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001709 err = sock->ops->connect(sock, (struct sockaddr *)&address, addrlen,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 sock->file->f_flags);
1711out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001712 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713out:
1714 return err;
1715}
1716
Dominik Brodowski1387c2c2018-03-13 19:35:09 +01001717SYSCALL_DEFINE3(connect, int, fd, struct sockaddr __user *, uservaddr,
1718 int, addrlen)
1719{
1720 return __sys_connect(fd, uservaddr, addrlen);
1721}
1722
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723/*
1724 * Get the local address ('name') of a socket object. Move the obtained
1725 * name to user space.
1726 */
1727
Dominik Brodowski8882a102018-03-13 19:43:14 +01001728int __sys_getsockname(int fd, struct sockaddr __user *usockaddr,
1729 int __user *usockaddr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730{
1731 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001732 struct sockaddr_storage address;
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01001733 int err, fput_needed;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001734
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001735 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 if (!sock)
1737 goto out;
1738
1739 err = security_socket_getsockname(sock);
1740 if (err)
1741 goto out_put;
1742
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01001743 err = sock->ops->getname(sock, (struct sockaddr *)&address, 0);
1744 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 goto out_put;
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01001746 /* "err" is actually length in this case */
1747 err = move_addr_to_user(&address, err, usockaddr, usockaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748
1749out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001750 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751out:
1752 return err;
1753}
1754
Dominik Brodowski8882a102018-03-13 19:43:14 +01001755SYSCALL_DEFINE3(getsockname, int, fd, struct sockaddr __user *, usockaddr,
1756 int __user *, usockaddr_len)
1757{
1758 return __sys_getsockname(fd, usockaddr, usockaddr_len);
1759}
1760
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761/*
1762 * Get the remote address ('name') of a socket object. Move the obtained
1763 * name to user space.
1764 */
1765
Dominik Brodowskib21c8f82018-03-13 19:47:00 +01001766int __sys_getpeername(int fd, struct sockaddr __user *usockaddr,
1767 int __user *usockaddr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768{
1769 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001770 struct sockaddr_storage address;
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01001771 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001773 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1774 if (sock != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 err = security_socket_getpeername(sock);
1776 if (err) {
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001777 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 return err;
1779 }
1780
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01001781 err = sock->ops->getname(sock, (struct sockaddr *)&address, 1);
1782 if (err >= 0)
1783 /* "err" is actually length in this case */
1784 err = move_addr_to_user(&address, err, usockaddr,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001785 usockaddr_len);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001786 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 }
1788 return err;
1789}
1790
Dominik Brodowskib21c8f82018-03-13 19:47:00 +01001791SYSCALL_DEFINE3(getpeername, int, fd, struct sockaddr __user *, usockaddr,
1792 int __user *, usockaddr_len)
1793{
1794 return __sys_getpeername(fd, usockaddr, usockaddr_len);
1795}
1796
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797/*
1798 * Send a datagram to a given address. We move the address into kernel
1799 * space and check the user space data area is readable before invoking
1800 * the protocol.
1801 */
Dominik Brodowski211b6342018-03-13 19:18:52 +01001802int __sys_sendto(int fd, void __user *buff, size_t len, unsigned int flags,
1803 struct sockaddr __user *addr, int addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804{
1805 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001806 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 int err;
1808 struct msghdr msg;
1809 struct iovec iov;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001810 int fput_needed;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001811
Al Viro602bd0e2015-03-21 19:12:32 -04001812 err = import_single_range(WRITE, buff, len, &iov, &msg.msg_iter);
1813 if (unlikely(err))
1814 return err;
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001815 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1816 if (!sock)
David S. Miller4387ff72007-02-08 15:06:08 -08001817 goto out;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001818
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001819 msg.msg_name = NULL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001820 msg.msg_control = NULL;
1821 msg.msg_controllen = 0;
1822 msg.msg_namelen = 0;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001823 if (addr) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001824 err = move_addr_to_kernel(addr, addr_len, &address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 if (err < 0)
1826 goto out_put;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001827 msg.msg_name = (struct sockaddr *)&address;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001828 msg.msg_namelen = addr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 }
1830 if (sock->file->f_flags & O_NONBLOCK)
1831 flags |= MSG_DONTWAIT;
1832 msg.msg_flags = flags;
Al Virod8725c82014-12-11 00:02:50 -05001833 err = sock_sendmsg(sock, &msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001835out_put:
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001836 fput_light(sock->file, fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08001837out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 return err;
1839}
1840
Dominik Brodowski211b6342018-03-13 19:18:52 +01001841SYSCALL_DEFINE6(sendto, int, fd, void __user *, buff, size_t, len,
1842 unsigned int, flags, struct sockaddr __user *, addr,
1843 int, addr_len)
1844{
1845 return __sys_sendto(fd, buff, len, flags, addr, addr_len);
1846}
1847
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001849 * Send a datagram down a socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 */
1851
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001852SYSCALL_DEFINE4(send, int, fd, void __user *, buff, size_t, len,
Eric Dumazet95c96172012-04-15 05:58:06 +00001853 unsigned int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854{
Dominik Brodowski211b6342018-03-13 19:18:52 +01001855 return __sys_sendto(fd, buff, len, flags, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856}
1857
1858/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001859 * Receive a frame from the socket and optionally record the address of the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 * sender. We verify the buffers are writable and if needed move the
1861 * sender address from kernel to user space.
1862 */
Dominik Brodowski7a09e1e2018-03-13 19:10:06 +01001863int __sys_recvfrom(int fd, void __user *ubuf, size_t size, unsigned int flags,
1864 struct sockaddr __user *addr, int __user *addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865{
1866 struct socket *sock;
1867 struct iovec iov;
1868 struct msghdr msg;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001869 struct sockaddr_storage address;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001870 int err, err2;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001871 int fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872
Al Viro602bd0e2015-03-21 19:12:32 -04001873 err = import_single_range(READ, ubuf, size, &iov, &msg.msg_iter);
1874 if (unlikely(err))
1875 return err;
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001876 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 if (!sock)
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001878 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001880 msg.msg_control = NULL;
1881 msg.msg_controllen = 0;
Hannes Frederic Sowaf3d33422013-11-21 03:14:22 +01001882 /* Save some cycles and don't copy the address if not needed */
1883 msg.msg_name = addr ? (struct sockaddr *)&address : NULL;
1884 /* We assume all kernel code knows the size of sockaddr_storage */
1885 msg.msg_namelen = 0;
tadeusz.struk@intel.com130ed5d2015-12-15 10:46:17 -08001886 msg.msg_iocb = NULL;
Alexander Potapenko9f138fa2017-03-08 18:08:16 +01001887 msg.msg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 if (sock->file->f_flags & O_NONBLOCK)
1889 flags |= MSG_DONTWAIT;
Al Viro2da62902015-03-14 21:13:46 -04001890 err = sock_recvmsg(sock, &msg, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001892 if (err >= 0 && addr != NULL) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001893 err2 = move_addr_to_user(&address,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001894 msg.msg_namelen, addr, addr_len);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001895 if (err2 < 0)
1896 err = err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 }
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001898
1899 fput_light(sock->file, fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08001900out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 return err;
1902}
1903
Dominik Brodowski7a09e1e2018-03-13 19:10:06 +01001904SYSCALL_DEFINE6(recvfrom, int, fd, void __user *, ubuf, size_t, size,
1905 unsigned int, flags, struct sockaddr __user *, addr,
1906 int __user *, addr_len)
1907{
1908 return __sys_recvfrom(fd, ubuf, size, flags, addr, addr_len);
1909}
1910
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001912 * Receive a datagram from a socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 */
1914
Jan Glauberb7c0ddf2014-04-16 09:32:48 +02001915SYSCALL_DEFINE4(recv, int, fd, void __user *, ubuf, size_t, size,
1916 unsigned int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917{
Dominik Brodowski7a09e1e2018-03-13 19:10:06 +01001918 return __sys_recvfrom(fd, ubuf, size, flags, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919}
1920
1921/*
1922 * Set a socket option. Because we don't know the option lengths we have
1923 * to pass the user mode parameter for the protocols to sort out.
1924 */
1925
Dominik Brodowskicc36dca2018-03-13 20:10:59 +01001926static int __sys_setsockopt(int fd, int level, int optname,
1927 char __user *optval, int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001929 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 struct socket *sock;
1931
1932 if (optlen < 0)
1933 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001934
1935 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1936 if (sock != NULL) {
1937 err = security_socket_setsockopt(sock, level, optname);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001938 if (err)
1939 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940
1941 if (level == SOL_SOCKET)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001942 err =
1943 sock_setsockopt(sock, level, optname, optval,
1944 optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 else
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001946 err =
1947 sock->ops->setsockopt(sock, level, optname, optval,
1948 optlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001949out_put:
1950 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 }
1952 return err;
1953}
1954
Dominik Brodowskicc36dca2018-03-13 20:10:59 +01001955SYSCALL_DEFINE5(setsockopt, int, fd, int, level, int, optname,
1956 char __user *, optval, int, optlen)
1957{
1958 return __sys_setsockopt(fd, level, optname, optval, optlen);
1959}
1960
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961/*
1962 * Get a socket option. Because we don't know the option lengths we have
1963 * to pass a user mode parameter for the protocols to sort out.
1964 */
1965
Dominik Brodowski13a2d702018-03-13 20:15:04 +01001966static int __sys_getsockopt(int fd, int level, int optname,
1967 char __user *optval, int __user *optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001969 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 struct socket *sock;
1971
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001972 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1973 if (sock != NULL) {
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001974 err = security_socket_getsockopt(sock, level, optname);
1975 if (err)
1976 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977
1978 if (level == SOL_SOCKET)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001979 err =
1980 sock_getsockopt(sock, level, optname, optval,
1981 optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 else
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001983 err =
1984 sock->ops->getsockopt(sock, level, optname, optval,
1985 optlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001986out_put:
1987 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 }
1989 return err;
1990}
1991
Dominik Brodowski13a2d702018-03-13 20:15:04 +01001992SYSCALL_DEFINE5(getsockopt, int, fd, int, level, int, optname,
1993 char __user *, optval, int __user *, optlen)
1994{
1995 return __sys_getsockopt(fd, level, optname, optval, optlen);
1996}
1997
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998/*
1999 * Shutdown a socket.
2000 */
2001
Dominik Brodowski005a1ae2018-03-13 20:07:05 +01002002int __sys_shutdown(int fd, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002004 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 struct socket *sock;
2006
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002007 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2008 if (sock != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 err = security_socket_shutdown(sock, how);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002010 if (!err)
2011 err = sock->ops->shutdown(sock, how);
2012 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 }
2014 return err;
2015}
2016
Dominik Brodowski005a1ae2018-03-13 20:07:05 +01002017SYSCALL_DEFINE2(shutdown, int, fd, int, how)
2018{
2019 return __sys_shutdown(fd, how);
2020}
2021
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002022/* A couple of helpful macros for getting the address of the 32/64 bit
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 * fields which are the same type (int / unsigned) on our platforms.
2024 */
2025#define COMPAT_MSG(msg, member) ((MSG_CMSG_COMPAT & flags) ? &msg##_compat->member : &msg->member)
2026#define COMPAT_NAMELEN(msg) COMPAT_MSG(msg, msg_namelen)
2027#define COMPAT_FLAGS(msg) COMPAT_MSG(msg, msg_flags)
2028
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002029struct used_address {
2030 struct sockaddr_storage name;
2031 unsigned int name_len;
2032};
2033
Al Viroda184282015-03-21 19:29:06 -04002034static int copy_msghdr_from_user(struct msghdr *kmsg,
2035 struct user_msghdr __user *umsg,
2036 struct sockaddr __user **save_addr,
2037 struct iovec **iov)
Dan Carpenter1661bf32013-10-03 00:27:20 +03002038{
Al Viroffb07552017-06-27 19:32:04 -04002039 struct user_msghdr msg;
Al Viro08adb7d2014-11-10 20:23:13 -05002040 ssize_t err;
2041
Al Viroffb07552017-06-27 19:32:04 -04002042 if (copy_from_user(&msg, umsg, sizeof(*umsg)))
Dan Carpenter1661bf32013-10-03 00:27:20 +03002043 return -EFAULT;
Matthew Leachdbb490b2014-03-11 11:58:27 +00002044
Paolo Abeni864d9662017-07-21 18:49:45 +02002045 kmsg->msg_control = (void __force *)msg.msg_control;
Al Viroffb07552017-06-27 19:32:04 -04002046 kmsg->msg_controllen = msg.msg_controllen;
2047 kmsg->msg_flags = msg.msg_flags;
2048
2049 kmsg->msg_namelen = msg.msg_namelen;
2050 if (!msg.msg_name)
Ani Sinha6a2a2b32014-09-08 14:49:59 -07002051 kmsg->msg_namelen = 0;
2052
Matthew Leachdbb490b2014-03-11 11:58:27 +00002053 if (kmsg->msg_namelen < 0)
2054 return -EINVAL;
2055
Dan Carpenter1661bf32013-10-03 00:27:20 +03002056 if (kmsg->msg_namelen > sizeof(struct sockaddr_storage))
Dan Carpenterdb31c552013-11-27 15:40:21 +03002057 kmsg->msg_namelen = sizeof(struct sockaddr_storage);
Al Viro08adb7d2014-11-10 20:23:13 -05002058
2059 if (save_addr)
Al Viroffb07552017-06-27 19:32:04 -04002060 *save_addr = msg.msg_name;
Al Viro08adb7d2014-11-10 20:23:13 -05002061
Al Viroffb07552017-06-27 19:32:04 -04002062 if (msg.msg_name && kmsg->msg_namelen) {
Al Viro08adb7d2014-11-10 20:23:13 -05002063 if (!save_addr) {
Paolo Abeni864d9662017-07-21 18:49:45 +02002064 err = move_addr_to_kernel(msg.msg_name,
2065 kmsg->msg_namelen,
Al Viro08adb7d2014-11-10 20:23:13 -05002066 kmsg->msg_name);
2067 if (err < 0)
2068 return err;
2069 }
2070 } else {
2071 kmsg->msg_name = NULL;
2072 kmsg->msg_namelen = 0;
2073 }
2074
Al Viroffb07552017-06-27 19:32:04 -04002075 if (msg.msg_iovlen > UIO_MAXIOV)
Al Viro08adb7d2014-11-10 20:23:13 -05002076 return -EMSGSIZE;
2077
tadeusz.struk@intel.com0345f932015-03-19 12:31:25 -07002078 kmsg->msg_iocb = NULL;
2079
Al Viroffb07552017-06-27 19:32:04 -04002080 return import_iovec(save_addr ? READ : WRITE,
2081 msg.msg_iov, msg.msg_iovlen,
Al Viroda184282015-03-21 19:29:06 -04002082 UIO_FASTIOV, iov, &kmsg->msg_iter);
Dan Carpenter1661bf32013-10-03 00:27:20 +03002083}
2084
Al Viro666547f2014-04-06 14:03:05 -04002085static int ___sys_sendmsg(struct socket *sock, struct user_msghdr __user *msg,
Eric Dumazet95c96172012-04-15 05:58:06 +00002086 struct msghdr *msg_sys, unsigned int flags,
Tom Herbert28a94d82016-03-07 14:11:02 -08002087 struct used_address *used_address,
2088 unsigned int allowed_msghdr_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002090 struct compat_msghdr __user *msg_compat =
2091 (struct compat_msghdr __user *)msg;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07002092 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 struct iovec iovstack[UIO_FASTIOV], *iov = iovstack;
Alex Williamsonb9d717a2005-09-26 14:28:02 -07002094 unsigned char ctl[sizeof(struct cmsghdr) + 20]
Amit Kushwaha846cc122016-12-08 18:21:53 +05302095 __aligned(sizeof(__kernel_size_t));
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002096 /* 20 is size of ipv6_pktinfo */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 unsigned char *ctl_buf = ctl;
Al Virod8725c82014-12-11 00:02:50 -05002098 int ctl_len;
Al Viro08adb7d2014-11-10 20:23:13 -05002099 ssize_t err;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002100
Al Viro08adb7d2014-11-10 20:23:13 -05002101 msg_sys->msg_name = &address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102
Al Viro08449322014-11-09 22:33:45 -05002103 if (MSG_CMSG_COMPAT & flags)
Al Viro08adb7d2014-11-10 20:23:13 -05002104 err = get_compat_msghdr(msg_sys, msg_compat, NULL, &iov);
Al Viro08449322014-11-09 22:33:45 -05002105 else
Al Viro08adb7d2014-11-10 20:23:13 -05002106 err = copy_msghdr_from_user(msg_sys, msg, NULL, &iov);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002107 if (err < 0)
Al Viroda184282015-03-21 19:29:06 -04002108 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109
2110 err = -ENOBUFS;
2111
Anton Blanchard228e5482011-05-02 20:21:35 +00002112 if (msg_sys->msg_controllen > INT_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 goto out_freeiov;
Tom Herbert28a94d82016-03-07 14:11:02 -08002114 flags |= (msg_sys->msg_flags & allowed_msghdr_flags);
Anton Blanchard228e5482011-05-02 20:21:35 +00002115 ctl_len = msg_sys->msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 if ((MSG_CMSG_COMPAT & flags) && ctl_len) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002117 err =
Anton Blanchard228e5482011-05-02 20:21:35 +00002118 cmsghdr_from_user_compat_to_kern(msg_sys, sock->sk, ctl,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002119 sizeof(ctl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 if (err)
2121 goto out_freeiov;
Anton Blanchard228e5482011-05-02 20:21:35 +00002122 ctl_buf = msg_sys->msg_control;
2123 ctl_len = msg_sys->msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 } else if (ctl_len) {
David S. Millerac4340f2017-01-04 13:24:19 -05002125 BUILD_BUG_ON(sizeof(struct cmsghdr) !=
2126 CMSG_ALIGN(sizeof(struct cmsghdr)));
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002127 if (ctl_len > sizeof(ctl)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 ctl_buf = sock_kmalloc(sock->sk, ctl_len, GFP_KERNEL);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002129 if (ctl_buf == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 goto out_freeiov;
2131 }
2132 err = -EFAULT;
2133 /*
Anton Blanchard228e5482011-05-02 20:21:35 +00002134 * Careful! Before this, msg_sys->msg_control contains a user pointer.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 * Afterwards, it will be a kernel pointer. Thus the compiler-assisted
2136 * checking falls down on this.
2137 */
Namhyung Kimfb8621b2010-09-07 03:55:00 +00002138 if (copy_from_user(ctl_buf,
Anton Blanchard228e5482011-05-02 20:21:35 +00002139 (void __user __force *)msg_sys->msg_control,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002140 ctl_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 goto out_freectl;
Anton Blanchard228e5482011-05-02 20:21:35 +00002142 msg_sys->msg_control = ctl_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 }
Anton Blanchard228e5482011-05-02 20:21:35 +00002144 msg_sys->msg_flags = flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145
2146 if (sock->file->f_flags & O_NONBLOCK)
Anton Blanchard228e5482011-05-02 20:21:35 +00002147 msg_sys->msg_flags |= MSG_DONTWAIT;
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002148 /*
2149 * If this is sendmmsg() and current destination address is same as
2150 * previously succeeded address, omit asking LSM's decision.
2151 * used_address->name_len is initialized to UINT_MAX so that the first
2152 * destination address never matches.
2153 */
Mathieu Desnoyersbc909d92011-08-24 19:45:03 -07002154 if (used_address && msg_sys->msg_name &&
2155 used_address->name_len == msg_sys->msg_namelen &&
2156 !memcmp(&used_address->name, msg_sys->msg_name,
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002157 used_address->name_len)) {
Al Virod8725c82014-12-11 00:02:50 -05002158 err = sock_sendmsg_nosec(sock, msg_sys);
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002159 goto out_freectl;
2160 }
Al Virod8725c82014-12-11 00:02:50 -05002161 err = sock_sendmsg(sock, msg_sys);
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002162 /*
2163 * If this is sendmmsg() and sending to current destination address was
2164 * successful, remember it.
2165 */
2166 if (used_address && err >= 0) {
2167 used_address->name_len = msg_sys->msg_namelen;
Mathieu Desnoyersbc909d92011-08-24 19:45:03 -07002168 if (msg_sys->msg_name)
2169 memcpy(&used_address->name, msg_sys->msg_name,
2170 used_address->name_len);
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002171 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172
2173out_freectl:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002174 if (ctl_buf != ctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 sock_kfree_s(sock->sk, ctl_buf, ctl_len);
2176out_freeiov:
Al Viroda184282015-03-21 19:29:06 -04002177 kfree(iov);
Anton Blanchard228e5482011-05-02 20:21:35 +00002178 return err;
2179}
2180
2181/*
2182 * BSD sendmsg interface
2183 */
2184
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002185long __sys_sendmsg(int fd, struct user_msghdr __user *msg, unsigned int flags,
2186 bool forbid_cmsg_compat)
Anton Blanchard228e5482011-05-02 20:21:35 +00002187{
2188 int fput_needed, err;
2189 struct msghdr msg_sys;
Andy Lutomirski1be374a2013-05-22 14:07:44 -07002190 struct socket *sock;
Anton Blanchard228e5482011-05-02 20:21:35 +00002191
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002192 if (forbid_cmsg_compat && (flags & MSG_CMSG_COMPAT))
2193 return -EINVAL;
2194
Andy Lutomirski1be374a2013-05-22 14:07:44 -07002195 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Anton Blanchard228e5482011-05-02 20:21:35 +00002196 if (!sock)
2197 goto out;
2198
Tom Herbert28a94d82016-03-07 14:11:02 -08002199 err = ___sys_sendmsg(sock, msg, &msg_sys, flags, NULL, 0);
Anton Blanchard228e5482011-05-02 20:21:35 +00002200
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002201 fput_light(sock->file, fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002202out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 return err;
2204}
2205
Al Viro666547f2014-04-06 14:03:05 -04002206SYSCALL_DEFINE3(sendmsg, int, fd, struct user_msghdr __user *, msg, unsigned int, flags)
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002207{
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002208 return __sys_sendmsg(fd, msg, flags, true);
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002209}
2210
Anton Blanchard228e5482011-05-02 20:21:35 +00002211/*
2212 * Linux sendmmsg interface
2213 */
2214
2215int __sys_sendmmsg(int fd, struct mmsghdr __user *mmsg, unsigned int vlen,
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002216 unsigned int flags, bool forbid_cmsg_compat)
Anton Blanchard228e5482011-05-02 20:21:35 +00002217{
2218 int fput_needed, err, datagrams;
2219 struct socket *sock;
2220 struct mmsghdr __user *entry;
2221 struct compat_mmsghdr __user *compat_entry;
2222 struct msghdr msg_sys;
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002223 struct used_address used_address;
Tom Herbertf0922762016-03-07 14:11:03 -08002224 unsigned int oflags = flags;
Anton Blanchard228e5482011-05-02 20:21:35 +00002225
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002226 if (forbid_cmsg_compat && (flags & MSG_CMSG_COMPAT))
2227 return -EINVAL;
2228
Anton Blanchard98382f42011-08-04 14:07:39 +00002229 if (vlen > UIO_MAXIOV)
2230 vlen = UIO_MAXIOV;
Anton Blanchard228e5482011-05-02 20:21:35 +00002231
2232 datagrams = 0;
2233
2234 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2235 if (!sock)
2236 return err;
2237
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002238 used_address.name_len = UINT_MAX;
Anton Blanchard228e5482011-05-02 20:21:35 +00002239 entry = mmsg;
2240 compat_entry = (struct compat_mmsghdr __user *)mmsg;
Anton Blanchard728ffb82011-08-04 14:07:38 +00002241 err = 0;
Tom Herbertf0922762016-03-07 14:11:03 -08002242 flags |= MSG_BATCH;
Anton Blanchard228e5482011-05-02 20:21:35 +00002243
2244 while (datagrams < vlen) {
Tom Herbertf0922762016-03-07 14:11:03 -08002245 if (datagrams == vlen - 1)
2246 flags = oflags;
2247
Anton Blanchard228e5482011-05-02 20:21:35 +00002248 if (MSG_CMSG_COMPAT & flags) {
Al Viro666547f2014-04-06 14:03:05 -04002249 err = ___sys_sendmsg(sock, (struct user_msghdr __user *)compat_entry,
Tom Herbert28a94d82016-03-07 14:11:02 -08002250 &msg_sys, flags, &used_address, MSG_EOR);
Anton Blanchard228e5482011-05-02 20:21:35 +00002251 if (err < 0)
2252 break;
2253 err = __put_user(err, &compat_entry->msg_len);
2254 ++compat_entry;
2255 } else {
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002256 err = ___sys_sendmsg(sock,
Al Viro666547f2014-04-06 14:03:05 -04002257 (struct user_msghdr __user *)entry,
Tom Herbert28a94d82016-03-07 14:11:02 -08002258 &msg_sys, flags, &used_address, MSG_EOR);
Anton Blanchard228e5482011-05-02 20:21:35 +00002259 if (err < 0)
2260 break;
2261 err = put_user(err, &entry->msg_len);
2262 ++entry;
2263 }
2264
2265 if (err)
2266 break;
2267 ++datagrams;
Soheil Hassas Yeganeh30238982016-11-04 15:36:49 -04002268 if (msg_data_left(&msg_sys))
2269 break;
Eric Dumazeta78cb842016-01-08 08:37:20 -08002270 cond_resched();
Anton Blanchard228e5482011-05-02 20:21:35 +00002271 }
2272
Anton Blanchard228e5482011-05-02 20:21:35 +00002273 fput_light(sock->file, fput_needed);
2274
Anton Blanchard728ffb82011-08-04 14:07:38 +00002275 /* We only return an error if no datagrams were able to be sent */
2276 if (datagrams != 0)
Anton Blanchard228e5482011-05-02 20:21:35 +00002277 return datagrams;
2278
Anton Blanchard228e5482011-05-02 20:21:35 +00002279 return err;
2280}
2281
2282SYSCALL_DEFINE4(sendmmsg, int, fd, struct mmsghdr __user *, mmsg,
2283 unsigned int, vlen, unsigned int, flags)
2284{
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002285 return __sys_sendmmsg(fd, mmsg, vlen, flags, true);
Anton Blanchard228e5482011-05-02 20:21:35 +00002286}
2287
Al Viro666547f2014-04-06 14:03:05 -04002288static int ___sys_recvmsg(struct socket *sock, struct user_msghdr __user *msg,
Eric Dumazet95c96172012-04-15 05:58:06 +00002289 struct msghdr *msg_sys, unsigned int flags, int nosec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002291 struct compat_msghdr __user *msg_compat =
2292 (struct compat_msghdr __user *)msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 struct iovec iovstack[UIO_FASTIOV];
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002294 struct iovec *iov = iovstack;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 unsigned long cmsg_ptr;
Al Viro2da62902015-03-14 21:13:46 -04002296 int len;
Al Viro08adb7d2014-11-10 20:23:13 -05002297 ssize_t err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298
2299 /* kernel mode address */
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07002300 struct sockaddr_storage addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301
2302 /* user mode address pointers */
2303 struct sockaddr __user *uaddr;
Al Viro08adb7d2014-11-10 20:23:13 -05002304 int __user *uaddr_len = COMPAT_NAMELEN(msg);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002305
Al Viro08adb7d2014-11-10 20:23:13 -05002306 msg_sys->msg_name = &addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307
Hannes Frederic Sowaf3d33422013-11-21 03:14:22 +01002308 if (MSG_CMSG_COMPAT & flags)
Al Viro08adb7d2014-11-10 20:23:13 -05002309 err = get_compat_msghdr(msg_sys, msg_compat, &uaddr, &iov);
Hannes Frederic Sowaf3d33422013-11-21 03:14:22 +01002310 else
Al Viro08adb7d2014-11-10 20:23:13 -05002311 err = copy_msghdr_from_user(msg_sys, msg, &uaddr, &iov);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 if (err < 0)
Al Viroda184282015-03-21 19:29:06 -04002313 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002315 cmsg_ptr = (unsigned long)msg_sys->msg_control;
2316 msg_sys->msg_flags = flags & (MSG_CMSG_CLOEXEC|MSG_CMSG_COMPAT);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002317
Hannes Frederic Sowaf3d33422013-11-21 03:14:22 +01002318 /* We assume all kernel code knows the size of sockaddr_storage */
2319 msg_sys->msg_namelen = 0;
2320
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 if (sock->file->f_flags & O_NONBLOCK)
2322 flags |= MSG_DONTWAIT;
Al Viro2da62902015-03-14 21:13:46 -04002323 err = (nosec ? sock_recvmsg_nosec : sock_recvmsg)(sock, msg_sys, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 if (err < 0)
2325 goto out_freeiov;
2326 len = err;
2327
2328 if (uaddr != NULL) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00002329 err = move_addr_to_user(&addr,
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002330 msg_sys->msg_namelen, uaddr,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002331 uaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 if (err < 0)
2333 goto out_freeiov;
2334 }
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002335 err = __put_user((msg_sys->msg_flags & ~MSG_CMSG_COMPAT),
David S. Miller37f7f422005-09-16 16:51:01 -07002336 COMPAT_FLAGS(msg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 if (err)
2338 goto out_freeiov;
2339 if (MSG_CMSG_COMPAT & flags)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002340 err = __put_user((unsigned long)msg_sys->msg_control - cmsg_ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 &msg_compat->msg_controllen);
2342 else
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002343 err = __put_user((unsigned long)msg_sys->msg_control - cmsg_ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344 &msg->msg_controllen);
2345 if (err)
2346 goto out_freeiov;
2347 err = len;
2348
2349out_freeiov:
Al Viroda184282015-03-21 19:29:06 -04002350 kfree(iov);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002351 return err;
2352}
2353
2354/*
2355 * BSD recvmsg interface
2356 */
2357
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002358long __sys_recvmsg(int fd, struct user_msghdr __user *msg, unsigned int flags,
2359 bool forbid_cmsg_compat)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002360{
2361 int fput_needed, err;
2362 struct msghdr msg_sys;
Andy Lutomirski1be374a2013-05-22 14:07:44 -07002363 struct socket *sock;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002364
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002365 if (forbid_cmsg_compat && (flags & MSG_CMSG_COMPAT))
2366 return -EINVAL;
2367
Andy Lutomirski1be374a2013-05-22 14:07:44 -07002368 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002369 if (!sock)
2370 goto out;
2371
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002372 err = ___sys_recvmsg(sock, msg, &msg_sys, flags, 0);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002373
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002374 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375out:
2376 return err;
2377}
2378
Al Viro666547f2014-04-06 14:03:05 -04002379SYSCALL_DEFINE3(recvmsg, int, fd, struct user_msghdr __user *, msg,
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002380 unsigned int, flags)
2381{
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002382 return __sys_recvmsg(fd, msg, flags, true);
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002383}
2384
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002385/*
2386 * Linux recvmmsg interface
2387 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002389int __sys_recvmmsg(int fd, struct mmsghdr __user *mmsg, unsigned int vlen,
2390 unsigned int flags, struct timespec *timeout)
2391{
2392 int fput_needed, err, datagrams;
2393 struct socket *sock;
2394 struct mmsghdr __user *entry;
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002395 struct compat_mmsghdr __user *compat_entry;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002396 struct msghdr msg_sys;
Deepa Dinamani766b9f92016-05-19 17:09:05 -07002397 struct timespec64 end_time;
2398 struct timespec64 timeout64;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002399
2400 if (timeout &&
2401 poll_select_set_timeout(&end_time, timeout->tv_sec,
2402 timeout->tv_nsec))
2403 return -EINVAL;
2404
2405 datagrams = 0;
2406
2407 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2408 if (!sock)
2409 return err;
2410
Soheil Hassas Yeganeh7797dc42018-02-27 18:22:40 -05002411 if (likely(!(flags & MSG_ERRQUEUE))) {
2412 err = sock_error(sock->sk);
2413 if (err) {
2414 datagrams = err;
2415 goto out_put;
2416 }
Maxime Jayate623a9e2017-02-21 18:35:51 +01002417 }
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002418
2419 entry = mmsg;
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002420 compat_entry = (struct compat_mmsghdr __user *)mmsg;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002421
2422 while (datagrams < vlen) {
2423 /*
2424 * No need to ask LSM for more than the first datagram.
2425 */
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002426 if (MSG_CMSG_COMPAT & flags) {
Al Viro666547f2014-04-06 14:03:05 -04002427 err = ___sys_recvmsg(sock, (struct user_msghdr __user *)compat_entry,
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002428 &msg_sys, flags & ~MSG_WAITFORONE,
2429 datagrams);
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002430 if (err < 0)
2431 break;
2432 err = __put_user(err, &compat_entry->msg_len);
2433 ++compat_entry;
2434 } else {
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002435 err = ___sys_recvmsg(sock,
Al Viro666547f2014-04-06 14:03:05 -04002436 (struct user_msghdr __user *)entry,
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002437 &msg_sys, flags & ~MSG_WAITFORONE,
2438 datagrams);
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002439 if (err < 0)
2440 break;
2441 err = put_user(err, &entry->msg_len);
2442 ++entry;
2443 }
2444
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002445 if (err)
2446 break;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002447 ++datagrams;
2448
Brandon L Black71c5c1592010-03-26 16:18:03 +00002449 /* MSG_WAITFORONE turns on MSG_DONTWAIT after one packet */
2450 if (flags & MSG_WAITFORONE)
2451 flags |= MSG_DONTWAIT;
2452
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002453 if (timeout) {
Deepa Dinamani766b9f92016-05-19 17:09:05 -07002454 ktime_get_ts64(&timeout64);
2455 *timeout = timespec64_to_timespec(
2456 timespec64_sub(end_time, timeout64));
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002457 if (timeout->tv_sec < 0) {
2458 timeout->tv_sec = timeout->tv_nsec = 0;
2459 break;
2460 }
2461
2462 /* Timeout, return less than vlen datagrams */
2463 if (timeout->tv_nsec == 0 && timeout->tv_sec == 0)
2464 break;
2465 }
2466
2467 /* Out of band data, return right away */
2468 if (msg_sys.msg_flags & MSG_OOB)
2469 break;
Eric Dumazeta78cb842016-01-08 08:37:20 -08002470 cond_resched();
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002471 }
2472
Arnaldo Carvalho de Melo34b88a62016-03-14 09:56:35 -03002473 if (err == 0)
2474 goto out_put;
2475
2476 if (datagrams == 0) {
2477 datagrams = err;
2478 goto out_put;
2479 }
2480
2481 /*
2482 * We may return less entries than requested (vlen) if the
2483 * sock is non block and there aren't enough datagrams...
2484 */
2485 if (err != -EAGAIN) {
2486 /*
2487 * ... or if recvmsg returns an error after we
2488 * received some datagrams, where we record the
2489 * error to return on the next call or if the
2490 * app asks about it using getsockopt(SO_ERROR).
2491 */
2492 sock->sk->sk_err = -err;
2493 }
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002494out_put:
2495 fput_light(sock->file, fput_needed);
2496
Arnaldo Carvalho de Melo34b88a62016-03-14 09:56:35 -03002497 return datagrams;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002498}
2499
Dominik Brodowski1255e262018-03-13 20:44:21 +01002500static int do_sys_recvmmsg(int fd, struct mmsghdr __user *mmsg,
2501 unsigned int vlen, unsigned int flags,
2502 struct timespec __user *timeout)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002503{
2504 int datagrams;
2505 struct timespec timeout_sys;
2506
Andy Lutomirski1be374a2013-05-22 14:07:44 -07002507 if (flags & MSG_CMSG_COMPAT)
2508 return -EINVAL;
2509
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002510 if (!timeout)
2511 return __sys_recvmmsg(fd, mmsg, vlen, flags, NULL);
2512
2513 if (copy_from_user(&timeout_sys, timeout, sizeof(timeout_sys)))
2514 return -EFAULT;
2515
2516 datagrams = __sys_recvmmsg(fd, mmsg, vlen, flags, &timeout_sys);
2517
2518 if (datagrams > 0 &&
2519 copy_to_user(timeout, &timeout_sys, sizeof(timeout_sys)))
2520 datagrams = -EFAULT;
2521
2522 return datagrams;
2523}
2524
Dominik Brodowski1255e262018-03-13 20:44:21 +01002525SYSCALL_DEFINE5(recvmmsg, int, fd, struct mmsghdr __user *, mmsg,
2526 unsigned int, vlen, unsigned int, flags,
2527 struct timespec __user *, timeout)
2528{
2529 return do_sys_recvmmsg(fd, mmsg, vlen, flags, timeout);
2530}
2531
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002532#ifdef __ARCH_WANT_SYS_SOCKETCALL
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533/* Argument list sizes for sys_socketcall */
2534#define AL(x) ((x) * sizeof(unsigned long))
Anton Blanchard228e5482011-05-02 20:21:35 +00002535static const unsigned char nargs[21] = {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002536 AL(0), AL(3), AL(3), AL(3), AL(2), AL(3),
2537 AL(3), AL(3), AL(4), AL(4), AL(4), AL(6),
2538 AL(6), AL(2), AL(5), AL(5), AL(3), AL(3),
Anton Blanchard228e5482011-05-02 20:21:35 +00002539 AL(4), AL(5), AL(4)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002540};
2541
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542#undef AL
2543
2544/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002545 * System call vectors.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 *
2547 * Argument checking cleaned up. Saved 20% in size.
2548 * This function doesn't need to set the kernel lock because
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002549 * it is set by the callees.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 */
2551
Heiko Carstens3e0fa652009-01-14 14:14:24 +01002552SYSCALL_DEFINE2(socketcall, int, call, unsigned long __user *, args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553{
Chen Gang2950fa92013-04-07 16:55:23 +08002554 unsigned long a[AUDITSC_ARGS];
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002555 unsigned long a0, a1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 int err;
Arjan van de Ven47379052009-09-28 12:57:44 -07002557 unsigned int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558
Anton Blanchard228e5482011-05-02 20:21:35 +00002559 if (call < 1 || call > SYS_SENDMMSG)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560 return -EINVAL;
2561
Arjan van de Ven47379052009-09-28 12:57:44 -07002562 len = nargs[call];
2563 if (len > sizeof(a))
2564 return -EINVAL;
2565
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566 /* copy_from_user should be SMP safe. */
Arjan van de Ven47379052009-09-28 12:57:44 -07002567 if (copy_from_user(a, args, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 return -EFAULT;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002569
Chen Gang2950fa92013-04-07 16:55:23 +08002570 err = audit_socketcall(nargs[call] / sizeof(unsigned long), a);
2571 if (err)
2572 return err;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002573
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002574 a0 = a[0];
2575 a1 = a[1];
2576
2577 switch (call) {
2578 case SYS_SOCKET:
Dominik Brodowski9d6a15c2018-03-13 19:29:43 +01002579 err = __sys_socket(a0, a1, a[2]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002580 break;
2581 case SYS_BIND:
Dominik Brodowskia87d35d2018-03-13 19:33:09 +01002582 err = __sys_bind(a0, (struct sockaddr __user *)a1, a[2]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002583 break;
2584 case SYS_CONNECT:
Dominik Brodowski1387c2c2018-03-13 19:35:09 +01002585 err = __sys_connect(a0, (struct sockaddr __user *)a1, a[2]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002586 break;
2587 case SYS_LISTEN:
Dominik Brodowski25e290e2018-03-13 19:36:54 +01002588 err = __sys_listen(a0, a1);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002589 break;
2590 case SYS_ACCEPT:
Dominik Brodowski4541e802018-03-13 19:24:23 +01002591 err = __sys_accept4(a0, (struct sockaddr __user *)a1,
2592 (int __user *)a[2], 0);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002593 break;
2594 case SYS_GETSOCKNAME:
2595 err =
Dominik Brodowski8882a102018-03-13 19:43:14 +01002596 __sys_getsockname(a0, (struct sockaddr __user *)a1,
2597 (int __user *)a[2]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002598 break;
2599 case SYS_GETPEERNAME:
2600 err =
Dominik Brodowskib21c8f82018-03-13 19:47:00 +01002601 __sys_getpeername(a0, (struct sockaddr __user *)a1,
2602 (int __user *)a[2]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002603 break;
2604 case SYS_SOCKETPAIR:
Dominik Brodowski6debc8d2018-03-13 19:49:23 +01002605 err = __sys_socketpair(a0, a1, a[2], (int __user *)a[3]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002606 break;
2607 case SYS_SEND:
Dominik Brodowskif3bf8962018-03-13 19:52:00 +01002608 err = __sys_sendto(a0, (void __user *)a1, a[2], a[3],
2609 NULL, 0);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002610 break;
2611 case SYS_SENDTO:
Dominik Brodowski211b6342018-03-13 19:18:52 +01002612 err = __sys_sendto(a0, (void __user *)a1, a[2], a[3],
2613 (struct sockaddr __user *)a[4], a[5]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002614 break;
2615 case SYS_RECV:
Dominik Brodowskid27e9af2018-03-13 19:54:17 +01002616 err = __sys_recvfrom(a0, (void __user *)a1, a[2], a[3],
2617 NULL, NULL);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002618 break;
2619 case SYS_RECVFROM:
Dominik Brodowski7a09e1e2018-03-13 19:10:06 +01002620 err = __sys_recvfrom(a0, (void __user *)a1, a[2], a[3],
2621 (struct sockaddr __user *)a[4],
2622 (int __user *)a[5]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002623 break;
2624 case SYS_SHUTDOWN:
Dominik Brodowski005a1ae2018-03-13 20:07:05 +01002625 err = __sys_shutdown(a0, a1);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002626 break;
2627 case SYS_SETSOCKOPT:
Dominik Brodowskicc36dca2018-03-13 20:10:59 +01002628 err = __sys_setsockopt(a0, a1, a[2], (char __user *)a[3],
2629 a[4]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002630 break;
2631 case SYS_GETSOCKOPT:
2632 err =
Dominik Brodowski13a2d702018-03-13 20:15:04 +01002633 __sys_getsockopt(a0, a1, a[2], (char __user *)a[3],
2634 (int __user *)a[4]);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002635 break;
2636 case SYS_SENDMSG:
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002637 err = __sys_sendmsg(a0, (struct user_msghdr __user *)a1,
2638 a[2], true);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002639 break;
Anton Blanchard228e5482011-05-02 20:21:35 +00002640 case SYS_SENDMMSG:
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002641 err = __sys_sendmmsg(a0, (struct mmsghdr __user *)a1, a[2],
2642 a[3], true);
Anton Blanchard228e5482011-05-02 20:21:35 +00002643 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002644 case SYS_RECVMSG:
Dominik Brodowskie1834a32018-03-13 20:35:57 +01002645 err = __sys_recvmsg(a0, (struct user_msghdr __user *)a1,
2646 a[2], true);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002647 break;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002648 case SYS_RECVMMSG:
Dominik Brodowski1255e262018-03-13 20:44:21 +01002649 err = do_sys_recvmmsg(a0, (struct mmsghdr __user *)a1, a[2],
2650 a[3], (struct timespec __user *)a[4]);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002651 break;
Ulrich Drepperde11def2008-11-19 15:36:14 -08002652 case SYS_ACCEPT4:
Dominik Brodowski4541e802018-03-13 19:24:23 +01002653 err = __sys_accept4(a0, (struct sockaddr __user *)a1,
2654 (int __user *)a[2], a[3]);
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07002655 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002656 default:
2657 err = -EINVAL;
2658 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659 }
2660 return err;
2661}
2662
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002663#endif /* __ARCH_WANT_SYS_SOCKETCALL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002665/**
2666 * sock_register - add a socket protocol handler
2667 * @ops: description of protocol
2668 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 * This function is called by a protocol handler that wants to
2670 * advertise its address family, and have it linked into the
Masanari Iidae793c0f2014-09-04 23:44:36 +09002671 * socket interface. The value ops->family corresponds to the
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002672 * socket system call protocol family.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673 */
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002674int sock_register(const struct net_proto_family *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675{
2676 int err;
2677
2678 if (ops->family >= NPROTO) {
Yang Yingliang3410f222014-02-12 17:09:55 +08002679 pr_crit("protocol %d >= NPROTO(%d)\n", ops->family, NPROTO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680 return -ENOBUFS;
2681 }
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002682
2683 spin_lock(&net_family_lock);
Eric Dumazet190683a2010-11-10 10:50:44 +00002684 if (rcu_dereference_protected(net_families[ops->family],
2685 lockdep_is_held(&net_family_lock)))
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002686 err = -EEXIST;
2687 else {
Eric Dumazetcf778b02012-01-12 04:41:32 +00002688 rcu_assign_pointer(net_families[ops->family], ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689 err = 0;
2690 }
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002691 spin_unlock(&net_family_lock);
2692
Yang Yingliang3410f222014-02-12 17:09:55 +08002693 pr_info("NET: Registered protocol family %d\n", ops->family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694 return err;
2695}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002696EXPORT_SYMBOL(sock_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002698/**
2699 * sock_unregister - remove a protocol handler
2700 * @family: protocol family to remove
2701 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 * This function is called by a protocol handler that wants to
2703 * remove its address family, and have it unlinked from the
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002704 * new socket creation.
2705 *
2706 * If protocol handler is a module, then it can use module reference
2707 * counts to protect against new references. If protocol handler is not
2708 * a module then it needs to provide its own protection in
2709 * the ops->create routine.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710 */
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002711void sock_unregister(int family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712{
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002713 BUG_ON(family < 0 || family >= NPROTO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002715 spin_lock(&net_family_lock);
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00002716 RCU_INIT_POINTER(net_families[family], NULL);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002717 spin_unlock(&net_family_lock);
2718
2719 synchronize_rcu();
2720
Yang Yingliang3410f222014-02-12 17:09:55 +08002721 pr_info("NET: Unregistered protocol family %d\n", family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002723EXPORT_SYMBOL(sock_unregister);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724
Xin Longbf2ae2e2018-03-10 18:57:50 +08002725bool sock_is_registered(int family)
2726{
2727 return family < NPROTO && rcu_access_pointer(net_families[family]);
2728}
2729
Andi Kleen77d76ea2005-12-22 12:43:42 -08002730static int __init sock_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731{
Nick Pigginb3e19d92011-01-07 17:50:11 +11002732 int err;
Eric W. Biederman2ca794e2012-04-19 13:20:32 +00002733 /*
2734 * Initialize the network sysctl infrastructure.
2735 */
2736 err = net_sysctl_init();
2737 if (err)
2738 goto out;
Nick Pigginb3e19d92011-01-07 17:50:11 +11002739
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002741 * Initialize skbuff SLAB cache
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742 */
2743 skb_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744
2745 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002746 * Initialize the protocols module.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747 */
2748
2749 init_inodecache();
Nick Pigginb3e19d92011-01-07 17:50:11 +11002750
2751 err = register_filesystem(&sock_fs_type);
2752 if (err)
2753 goto out_fs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754 sock_mnt = kern_mount(&sock_fs_type);
Nick Pigginb3e19d92011-01-07 17:50:11 +11002755 if (IS_ERR(sock_mnt)) {
2756 err = PTR_ERR(sock_mnt);
2757 goto out_mount;
2758 }
Andi Kleen77d76ea2005-12-22 12:43:42 -08002759
2760 /* The real protocol initialization is performed in later initcalls.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761 */
2762
2763#ifdef CONFIG_NETFILTER
Pablo Neira Ayuso6d11cfd2013-05-22 22:42:36 +00002764 err = netfilter_init();
2765 if (err)
2766 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767#endif
David S. Millercbeb3212005-12-22 12:58:55 -08002768
Daniel Borkmann408eccc2014-04-01 16:20:23 +02002769 ptp_classifier_init();
Richard Cochranc1f19b52010-07-17 08:49:36 +00002770
Nick Pigginb3e19d92011-01-07 17:50:11 +11002771out:
2772 return err;
2773
2774out_mount:
2775 unregister_filesystem(&sock_fs_type);
2776out_fs:
2777 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778}
2779
Andi Kleen77d76ea2005-12-22 12:43:42 -08002780core_initcall(sock_init); /* early initcall */
2781
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782#ifdef CONFIG_PROC_FS
2783void socket_seq_show(struct seq_file *seq)
2784{
Tonghao Zhang648845a2017-12-14 05:51:58 -08002785 seq_printf(seq, "sockets: used %d\n",
2786 sock_inuse_get(seq->private));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787}
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002788#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789
Shaun Pereira89bbfc92006-03-21 23:58:08 -08002790#ifdef CONFIG_COMPAT
Arnd Bergmann6b960182009-11-06 23:10:54 -08002791static int do_siocgstamp(struct net *net, struct socket *sock,
H. Peter Anvin644595f2012-02-19 17:51:59 -08002792 unsigned int cmd, void __user *up)
Arnd Bergmann7a229382009-11-06 23:00:29 -08002793{
Arnd Bergmann7a229382009-11-06 23:00:29 -08002794 mm_segment_t old_fs = get_fs();
2795 struct timeval ktv;
2796 int err;
2797
2798 set_fs(KERNEL_DS);
Arnd Bergmann6b960182009-11-06 23:10:54 -08002799 err = sock_do_ioctl(net, sock, cmd, (unsigned long)&ktv);
Arnd Bergmann7a229382009-11-06 23:00:29 -08002800 set_fs(old_fs);
H. Peter Anvin644595f2012-02-19 17:51:59 -08002801 if (!err)
Mikulas Patockaed6fe9d2012-09-01 12:34:07 -04002802 err = compat_put_timeval(&ktv, up);
H. Peter Anvin644595f2012-02-19 17:51:59 -08002803
Arnd Bergmann7a229382009-11-06 23:00:29 -08002804 return err;
2805}
2806
Arnd Bergmann6b960182009-11-06 23:10:54 -08002807static int do_siocgstampns(struct net *net, struct socket *sock,
H. Peter Anvin644595f2012-02-19 17:51:59 -08002808 unsigned int cmd, void __user *up)
Arnd Bergmann7a229382009-11-06 23:00:29 -08002809{
Arnd Bergmann7a229382009-11-06 23:00:29 -08002810 mm_segment_t old_fs = get_fs();
2811 struct timespec kts;
2812 int err;
2813
2814 set_fs(KERNEL_DS);
Arnd Bergmann6b960182009-11-06 23:10:54 -08002815 err = sock_do_ioctl(net, sock, cmd, (unsigned long)&kts);
Arnd Bergmann7a229382009-11-06 23:00:29 -08002816 set_fs(old_fs);
H. Peter Anvin644595f2012-02-19 17:51:59 -08002817 if (!err)
Mikulas Patockaed6fe9d2012-09-01 12:34:07 -04002818 err = compat_put_timespec(&kts, up);
H. Peter Anvin644595f2012-02-19 17:51:59 -08002819
Arnd Bergmann7a229382009-11-06 23:00:29 -08002820 return err;
2821}
2822
Al Viro36fd6332017-06-26 13:19:16 -04002823static int compat_dev_ifconf(struct net *net, struct compat_ifconf __user *uifc32)
Arnd Bergmann7a229382009-11-06 23:00:29 -08002824{
Arnd Bergmann6b960182009-11-06 23:10:54 -08002825 struct compat_ifconf ifc32;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002826 struct ifconf ifc;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002827 int err;
2828
Arnd Bergmann6b960182009-11-06 23:10:54 -08002829 if (copy_from_user(&ifc32, uifc32, sizeof(struct compat_ifconf)))
Arnd Bergmann7a229382009-11-06 23:00:29 -08002830 return -EFAULT;
2831
Al Viro36fd6332017-06-26 13:19:16 -04002832 ifc.ifc_len = ifc32.ifc_len;
2833 ifc.ifc_req = compat_ptr(ifc32.ifcbuf);
Arnd Bergmann7a229382009-11-06 23:00:29 -08002834
Al Viro36fd6332017-06-26 13:19:16 -04002835 rtnl_lock();
2836 err = dev_ifconf(net, &ifc, sizeof(struct compat_ifreq));
2837 rtnl_unlock();
Arnd Bergmann7a229382009-11-06 23:00:29 -08002838 if (err)
2839 return err;
2840
Al Viro36fd6332017-06-26 13:19:16 -04002841 ifc32.ifc_len = ifc.ifc_len;
Arnd Bergmann6b960182009-11-06 23:10:54 -08002842 if (copy_to_user(uifc32, &ifc32, sizeof(struct compat_ifconf)))
Arnd Bergmann7a229382009-11-06 23:00:29 -08002843 return -EFAULT;
2844
2845 return 0;
2846}
2847
Arnd Bergmann6b960182009-11-06 23:10:54 -08002848static int ethtool_ioctl(struct net *net, struct compat_ifreq __user *ifr32)
Arnd Bergmann7a229382009-11-06 23:00:29 -08002849{
Ben Hutchings3a7da392011-03-17 07:34:32 +00002850 struct compat_ethtool_rxnfc __user *compat_rxnfc;
2851 bool convert_in = false, convert_out = false;
Al Viro44c02a22017-10-05 12:59:44 -04002852 size_t buf_size = 0;
2853 struct ethtool_rxnfc __user *rxnfc = NULL;
2854 struct ifreq ifr;
Ben Hutchings3a7da392011-03-17 07:34:32 +00002855 u32 rule_cnt = 0, actual_rule_cnt;
2856 u32 ethcmd;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002857 u32 data;
Ben Hutchings3a7da392011-03-17 07:34:32 +00002858 int ret;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002859
2860 if (get_user(data, &ifr32->ifr_ifru.ifru_data))
2861 return -EFAULT;
2862
Ben Hutchings3a7da392011-03-17 07:34:32 +00002863 compat_rxnfc = compat_ptr(data);
2864
2865 if (get_user(ethcmd, &compat_rxnfc->cmd))
Arnd Bergmann7a229382009-11-06 23:00:29 -08002866 return -EFAULT;
2867
Ben Hutchings3a7da392011-03-17 07:34:32 +00002868 /* Most ethtool structures are defined without padding.
2869 * Unfortunately struct ethtool_rxnfc is an exception.
2870 */
2871 switch (ethcmd) {
2872 default:
2873 break;
2874 case ETHTOOL_GRXCLSRLALL:
2875 /* Buffer size is variable */
2876 if (get_user(rule_cnt, &compat_rxnfc->rule_cnt))
2877 return -EFAULT;
2878 if (rule_cnt > KMALLOC_MAX_SIZE / sizeof(u32))
2879 return -ENOMEM;
2880 buf_size += rule_cnt * sizeof(u32);
2881 /* fall through */
2882 case ETHTOOL_GRXRINGS:
2883 case ETHTOOL_GRXCLSRLCNT:
2884 case ETHTOOL_GRXCLSRULE:
Ben Hutchings55664f32012-01-03 12:04:51 +00002885 case ETHTOOL_SRXCLSRLINS:
Ben Hutchings3a7da392011-03-17 07:34:32 +00002886 convert_out = true;
2887 /* fall through */
2888 case ETHTOOL_SRXCLSRLDEL:
Ben Hutchings3a7da392011-03-17 07:34:32 +00002889 buf_size += sizeof(struct ethtool_rxnfc);
2890 convert_in = true;
Al Viro44c02a22017-10-05 12:59:44 -04002891 rxnfc = compat_alloc_user_space(buf_size);
Ben Hutchings3a7da392011-03-17 07:34:32 +00002892 break;
2893 }
2894
Al Viro44c02a22017-10-05 12:59:44 -04002895 if (copy_from_user(&ifr.ifr_name, &ifr32->ifr_name, IFNAMSIZ))
Ben Hutchings3a7da392011-03-17 07:34:32 +00002896 return -EFAULT;
2897
Al Viro44c02a22017-10-05 12:59:44 -04002898 ifr.ifr_data = convert_in ? rxnfc : (void __user *)compat_rxnfc;
Ben Hutchings3a7da392011-03-17 07:34:32 +00002899
2900 if (convert_in) {
Alexander Duyck127fe532011-04-08 18:01:59 +00002901 /* We expect there to be holes between fs.m_ext and
Ben Hutchings3a7da392011-03-17 07:34:32 +00002902 * fs.ring_cookie and at the end of fs, but nowhere else.
2903 */
Alexander Duyck127fe532011-04-08 18:01:59 +00002904 BUILD_BUG_ON(offsetof(struct compat_ethtool_rxnfc, fs.m_ext) +
2905 sizeof(compat_rxnfc->fs.m_ext) !=
2906 offsetof(struct ethtool_rxnfc, fs.m_ext) +
2907 sizeof(rxnfc->fs.m_ext));
Ben Hutchings3a7da392011-03-17 07:34:32 +00002908 BUILD_BUG_ON(
2909 offsetof(struct compat_ethtool_rxnfc, fs.location) -
2910 offsetof(struct compat_ethtool_rxnfc, fs.ring_cookie) !=
2911 offsetof(struct ethtool_rxnfc, fs.location) -
2912 offsetof(struct ethtool_rxnfc, fs.ring_cookie));
2913
2914 if (copy_in_user(rxnfc, compat_rxnfc,
Stephen Hemminger954b1242013-02-11 06:22:28 +00002915 (void __user *)(&rxnfc->fs.m_ext + 1) -
2916 (void __user *)rxnfc) ||
Ben Hutchings3a7da392011-03-17 07:34:32 +00002917 copy_in_user(&rxnfc->fs.ring_cookie,
2918 &compat_rxnfc->fs.ring_cookie,
Stephen Hemminger954b1242013-02-11 06:22:28 +00002919 (void __user *)(&rxnfc->fs.location + 1) -
2920 (void __user *)&rxnfc->fs.ring_cookie) ||
Ben Hutchings3a7da392011-03-17 07:34:32 +00002921 copy_in_user(&rxnfc->rule_cnt, &compat_rxnfc->rule_cnt,
2922 sizeof(rxnfc->rule_cnt)))
2923 return -EFAULT;
2924 }
2925
Al Viro44c02a22017-10-05 12:59:44 -04002926 ret = dev_ioctl(net, SIOCETHTOOL, &ifr, NULL);
Ben Hutchings3a7da392011-03-17 07:34:32 +00002927 if (ret)
2928 return ret;
2929
2930 if (convert_out) {
2931 if (copy_in_user(compat_rxnfc, rxnfc,
Stephen Hemminger954b1242013-02-11 06:22:28 +00002932 (const void __user *)(&rxnfc->fs.m_ext + 1) -
2933 (const void __user *)rxnfc) ||
Ben Hutchings3a7da392011-03-17 07:34:32 +00002934 copy_in_user(&compat_rxnfc->fs.ring_cookie,
2935 &rxnfc->fs.ring_cookie,
Stephen Hemminger954b1242013-02-11 06:22:28 +00002936 (const void __user *)(&rxnfc->fs.location + 1) -
2937 (const void __user *)&rxnfc->fs.ring_cookie) ||
Ben Hutchings3a7da392011-03-17 07:34:32 +00002938 copy_in_user(&compat_rxnfc->rule_cnt, &rxnfc->rule_cnt,
2939 sizeof(rxnfc->rule_cnt)))
2940 return -EFAULT;
2941
2942 if (ethcmd == ETHTOOL_GRXCLSRLALL) {
2943 /* As an optimisation, we only copy the actual
2944 * number of rules that the underlying
2945 * function returned. Since Mallory might
2946 * change the rule count in user memory, we
2947 * check that it is less than the rule count
2948 * originally given (as the user buffer size),
2949 * which has been range-checked.
2950 */
2951 if (get_user(actual_rule_cnt, &rxnfc->rule_cnt))
2952 return -EFAULT;
2953 if (actual_rule_cnt < rule_cnt)
2954 rule_cnt = actual_rule_cnt;
2955 if (copy_in_user(&compat_rxnfc->rule_locs[0],
2956 &rxnfc->rule_locs[0],
2957 rule_cnt * sizeof(u32)))
2958 return -EFAULT;
2959 }
2960 }
2961
2962 return 0;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002963}
2964
Arnd Bergmann7a50a242009-11-08 20:57:03 -08002965static int compat_siocwandev(struct net *net, struct compat_ifreq __user *uifr32)
2966{
Arnd Bergmann7a50a242009-11-08 20:57:03 -08002967 compat_uptr_t uptr32;
Al Viro44c02a22017-10-05 12:59:44 -04002968 struct ifreq ifr;
2969 void __user *saved;
2970 int err;
Arnd Bergmann7a50a242009-11-08 20:57:03 -08002971
Al Viro44c02a22017-10-05 12:59:44 -04002972 if (copy_from_user(&ifr, uifr32, sizeof(struct compat_ifreq)))
Arnd Bergmann7a50a242009-11-08 20:57:03 -08002973 return -EFAULT;
2974
2975 if (get_user(uptr32, &uifr32->ifr_settings.ifs_ifsu))
2976 return -EFAULT;
2977
Al Viro44c02a22017-10-05 12:59:44 -04002978 saved = ifr.ifr_settings.ifs_ifsu.raw_hdlc;
2979 ifr.ifr_settings.ifs_ifsu.raw_hdlc = compat_ptr(uptr32);
Arnd Bergmann7a50a242009-11-08 20:57:03 -08002980
Al Viro44c02a22017-10-05 12:59:44 -04002981 err = dev_ioctl(net, SIOCWANDEV, &ifr, NULL);
2982 if (!err) {
2983 ifr.ifr_settings.ifs_ifsu.raw_hdlc = saved;
2984 if (copy_to_user(uifr32, &ifr, sizeof(struct compat_ifreq)))
2985 err = -EFAULT;
Joe Perchesccbd6a52010-05-14 10:58:26 +00002986 }
Al Viro44c02a22017-10-05 12:59:44 -04002987 return err;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002988}
2989
Ben Hutchings590d4692013-11-18 17:04:13 +00002990/* Handle ioctls that use ifreq::ifr_data and just need struct ifreq converted */
2991static int compat_ifr_data_ioctl(struct net *net, unsigned int cmd,
Arnd Bergmann6b960182009-11-06 23:10:54 -08002992 struct compat_ifreq __user *u_ifreq32)
Arnd Bergmann7a229382009-11-06 23:00:29 -08002993{
Al Viro44c02a22017-10-05 12:59:44 -04002994 struct ifreq ifreq;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002995 u32 data32;
2996
Al Viro44c02a22017-10-05 12:59:44 -04002997 if (copy_from_user(ifreq.ifr_name, u_ifreq32->ifr_name, IFNAMSIZ))
Arnd Bergmann7a229382009-11-06 23:00:29 -08002998 return -EFAULT;
Al Viro44c02a22017-10-05 12:59:44 -04002999 if (get_user(data32, &u_ifreq32->ifr_data))
Arnd Bergmann7a229382009-11-06 23:00:29 -08003000 return -EFAULT;
Al Viro44c02a22017-10-05 12:59:44 -04003001 ifreq.ifr_data = compat_ptr(data32);
Arnd Bergmann7a229382009-11-06 23:00:29 -08003002
Al Viro44c02a22017-10-05 12:59:44 -04003003 return dev_ioctl(net, cmd, &ifreq, NULL);
Arnd Bergmann7a229382009-11-06 23:00:29 -08003004}
3005
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003006static int compat_sioc_ifmap(struct net *net, unsigned int cmd,
3007 struct compat_ifreq __user *uifr32)
3008{
3009 struct ifreq ifr;
3010 struct compat_ifmap __user *uifmap32;
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003011 int err;
3012
3013 uifmap32 = &uifr32->ifr_ifru.ifru_map;
3014 err = copy_from_user(&ifr, uifr32, sizeof(ifr.ifr_name));
Mathieu Desnoyers3ddc5b42013-09-11 14:23:18 -07003015 err |= get_user(ifr.ifr_map.mem_start, &uifmap32->mem_start);
3016 err |= get_user(ifr.ifr_map.mem_end, &uifmap32->mem_end);
3017 err |= get_user(ifr.ifr_map.base_addr, &uifmap32->base_addr);
3018 err |= get_user(ifr.ifr_map.irq, &uifmap32->irq);
3019 err |= get_user(ifr.ifr_map.dma, &uifmap32->dma);
3020 err |= get_user(ifr.ifr_map.port, &uifmap32->port);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003021 if (err)
3022 return -EFAULT;
3023
Al Viro44c02a22017-10-05 12:59:44 -04003024 err = dev_ioctl(net, cmd, &ifr, NULL);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003025
3026 if (cmd == SIOCGIFMAP && !err) {
3027 err = copy_to_user(uifr32, &ifr, sizeof(ifr.ifr_name));
Mathieu Desnoyers3ddc5b42013-09-11 14:23:18 -07003028 err |= put_user(ifr.ifr_map.mem_start, &uifmap32->mem_start);
3029 err |= put_user(ifr.ifr_map.mem_end, &uifmap32->mem_end);
3030 err |= put_user(ifr.ifr_map.base_addr, &uifmap32->base_addr);
3031 err |= put_user(ifr.ifr_map.irq, &uifmap32->irq);
3032 err |= put_user(ifr.ifr_map.dma, &uifmap32->dma);
3033 err |= put_user(ifr.ifr_map.port, &uifmap32->port);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003034 if (err)
3035 err = -EFAULT;
3036 }
3037 return err;
3038}
3039
Arnd Bergmann7a229382009-11-06 23:00:29 -08003040struct rtentry32 {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003041 u32 rt_pad1;
Arnd Bergmann7a229382009-11-06 23:00:29 -08003042 struct sockaddr rt_dst; /* target address */
3043 struct sockaddr rt_gateway; /* gateway addr (RTF_GATEWAY) */
3044 struct sockaddr rt_genmask; /* target network mask (IP) */
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003045 unsigned short rt_flags;
3046 short rt_pad2;
3047 u32 rt_pad3;
3048 unsigned char rt_tos;
3049 unsigned char rt_class;
3050 short rt_pad4;
3051 short rt_metric; /* +1 for binary compatibility! */
Arnd Bergmann7a229382009-11-06 23:00:29 -08003052 /* char * */ u32 rt_dev; /* forcing the device at add */
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003053 u32 rt_mtu; /* per route MTU/Window */
3054 u32 rt_window; /* Window clamping */
Arnd Bergmann7a229382009-11-06 23:00:29 -08003055 unsigned short rt_irtt; /* Initial RTT */
3056};
3057
3058struct in6_rtmsg32 {
3059 struct in6_addr rtmsg_dst;
3060 struct in6_addr rtmsg_src;
3061 struct in6_addr rtmsg_gateway;
3062 u32 rtmsg_type;
3063 u16 rtmsg_dst_len;
3064 u16 rtmsg_src_len;
3065 u32 rtmsg_metric;
3066 u32 rtmsg_info;
3067 u32 rtmsg_flags;
3068 s32 rtmsg_ifindex;
3069};
3070
Arnd Bergmann6b960182009-11-06 23:10:54 -08003071static int routing_ioctl(struct net *net, struct socket *sock,
3072 unsigned int cmd, void __user *argp)
Arnd Bergmann7a229382009-11-06 23:00:29 -08003073{
3074 int ret;
3075 void *r = NULL;
3076 struct in6_rtmsg r6;
3077 struct rtentry r4;
3078 char devname[16];
3079 u32 rtdev;
3080 mm_segment_t old_fs = get_fs();
3081
Arnd Bergmann6b960182009-11-06 23:10:54 -08003082 if (sock && sock->sk && sock->sk->sk_family == AF_INET6) { /* ipv6 */
3083 struct in6_rtmsg32 __user *ur6 = argp;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003084 ret = copy_from_user(&r6.rtmsg_dst, &(ur6->rtmsg_dst),
Arnd Bergmann7a229382009-11-06 23:00:29 -08003085 3 * sizeof(struct in6_addr));
Mathieu Desnoyers3ddc5b42013-09-11 14:23:18 -07003086 ret |= get_user(r6.rtmsg_type, &(ur6->rtmsg_type));
3087 ret |= get_user(r6.rtmsg_dst_len, &(ur6->rtmsg_dst_len));
3088 ret |= get_user(r6.rtmsg_src_len, &(ur6->rtmsg_src_len));
3089 ret |= get_user(r6.rtmsg_metric, &(ur6->rtmsg_metric));
3090 ret |= get_user(r6.rtmsg_info, &(ur6->rtmsg_info));
3091 ret |= get_user(r6.rtmsg_flags, &(ur6->rtmsg_flags));
3092 ret |= get_user(r6.rtmsg_ifindex, &(ur6->rtmsg_ifindex));
Arnd Bergmann7a229382009-11-06 23:00:29 -08003093
3094 r = (void *) &r6;
3095 } else { /* ipv4 */
Arnd Bergmann6b960182009-11-06 23:10:54 -08003096 struct rtentry32 __user *ur4 = argp;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003097 ret = copy_from_user(&r4.rt_dst, &(ur4->rt_dst),
Arnd Bergmann7a229382009-11-06 23:00:29 -08003098 3 * sizeof(struct sockaddr));
Mathieu Desnoyers3ddc5b42013-09-11 14:23:18 -07003099 ret |= get_user(r4.rt_flags, &(ur4->rt_flags));
3100 ret |= get_user(r4.rt_metric, &(ur4->rt_metric));
3101 ret |= get_user(r4.rt_mtu, &(ur4->rt_mtu));
3102 ret |= get_user(r4.rt_window, &(ur4->rt_window));
3103 ret |= get_user(r4.rt_irtt, &(ur4->rt_irtt));
3104 ret |= get_user(rtdev, &(ur4->rt_dev));
Arnd Bergmann7a229382009-11-06 23:00:29 -08003105 if (rtdev) {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003106 ret |= copy_from_user(devname, compat_ptr(rtdev), 15);
stephen hemmingerc3f52ae2011-02-23 09:06:48 +00003107 r4.rt_dev = (char __user __force *)devname;
3108 devname[15] = 0;
Arnd Bergmann7a229382009-11-06 23:00:29 -08003109 } else
3110 r4.rt_dev = NULL;
3111
3112 r = (void *) &r4;
3113 }
3114
3115 if (ret) {
3116 ret = -EFAULT;
3117 goto out;
3118 }
3119
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003120 set_fs(KERNEL_DS);
Arnd Bergmann6b960182009-11-06 23:10:54 -08003121 ret = sock_do_ioctl(net, sock, cmd, (unsigned long) r);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003122 set_fs(old_fs);
Arnd Bergmann7a229382009-11-06 23:00:29 -08003123
3124out:
Arnd Bergmann7a229382009-11-06 23:00:29 -08003125 return ret;
3126}
3127
3128/* Since old style bridge ioctl's endup using SIOCDEVPRIVATE
3129 * for some operations; this forces use of the newer bridge-utils that
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003130 * use compatible ioctls
Arnd Bergmann7a229382009-11-06 23:00:29 -08003131 */
Arnd Bergmann6b960182009-11-06 23:10:54 -08003132static int old_bridge_ioctl(compat_ulong_t __user *argp)
Arnd Bergmann7a229382009-11-06 23:00:29 -08003133{
Arnd Bergmann6b960182009-11-06 23:10:54 -08003134 compat_ulong_t tmp;
Arnd Bergmann7a229382009-11-06 23:00:29 -08003135
Arnd Bergmann6b960182009-11-06 23:10:54 -08003136 if (get_user(tmp, argp))
Arnd Bergmann7a229382009-11-06 23:00:29 -08003137 return -EFAULT;
3138 if (tmp == BRCTL_GET_VERSION)
3139 return BRCTL_VERSION + 1;
3140 return -EINVAL;
3141}
3142
Arnd Bergmann6b960182009-11-06 23:10:54 -08003143static int compat_sock_ioctl_trans(struct file *file, struct socket *sock,
3144 unsigned int cmd, unsigned long arg)
3145{
3146 void __user *argp = compat_ptr(arg);
3147 struct sock *sk = sock->sk;
3148 struct net *net = sock_net(sk);
Arnd Bergmann7a229382009-11-06 23:00:29 -08003149
Arnd Bergmann6b960182009-11-06 23:10:54 -08003150 if (cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15))
Ben Hutchings590d4692013-11-18 17:04:13 +00003151 return compat_ifr_data_ioctl(net, cmd, argp);
Arnd Bergmann7a229382009-11-06 23:00:29 -08003152
Arnd Bergmann6b960182009-11-06 23:10:54 -08003153 switch (cmd) {
3154 case SIOCSIFBR:
3155 case SIOCGIFBR:
3156 return old_bridge_ioctl(argp);
Arnd Bergmann6b960182009-11-06 23:10:54 -08003157 case SIOCGIFCONF:
Al Viro36fd6332017-06-26 13:19:16 -04003158 return compat_dev_ifconf(net, argp);
Arnd Bergmann6b960182009-11-06 23:10:54 -08003159 case SIOCETHTOOL:
3160 return ethtool_ioctl(net, argp);
Arnd Bergmann7a50a242009-11-08 20:57:03 -08003161 case SIOCWANDEV:
3162 return compat_siocwandev(net, argp);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003163 case SIOCGIFMAP:
3164 case SIOCSIFMAP:
3165 return compat_sioc_ifmap(net, cmd, argp);
Arnd Bergmann6b960182009-11-06 23:10:54 -08003166 case SIOCADDRT:
3167 case SIOCDELRT:
3168 return routing_ioctl(net, sock, cmd, argp);
3169 case SIOCGSTAMP:
3170 return do_siocgstamp(net, sock, cmd, argp);
3171 case SIOCGSTAMPNS:
3172 return do_siocgstampns(net, sock, cmd, argp);
Ben Hutchings590d4692013-11-18 17:04:13 +00003173 case SIOCBONDSLAVEINFOQUERY:
3174 case SIOCBONDINFOQUERY:
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003175 case SIOCSHWTSTAMP:
Ben Hutchingsfd468c72013-11-14 01:19:29 +00003176 case SIOCGHWTSTAMP:
Ben Hutchings590d4692013-11-18 17:04:13 +00003177 return compat_ifr_data_ioctl(net, cmd, argp);
Arnd Bergmann7a229382009-11-06 23:00:29 -08003178
Arnd Bergmann6b960182009-11-06 23:10:54 -08003179 case FIOSETOWN:
3180 case SIOCSPGRP:
3181 case FIOGETOWN:
3182 case SIOCGPGRP:
3183 case SIOCBRADDBR:
3184 case SIOCBRDELBR:
3185 case SIOCGIFVLAN:
3186 case SIOCSIFVLAN:
3187 case SIOCADDDLCI:
3188 case SIOCDELDLCI:
Andrey Vaginc62cce22016-10-24 18:29:13 -07003189 case SIOCGSKNS:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003190 return sock_ioctl(file, cmd, arg);
3191
3192 case SIOCGIFFLAGS:
3193 case SIOCSIFFLAGS:
3194 case SIOCGIFMETRIC:
3195 case SIOCSIFMETRIC:
3196 case SIOCGIFMTU:
3197 case SIOCSIFMTU:
3198 case SIOCGIFMEM:
3199 case SIOCSIFMEM:
3200 case SIOCGIFHWADDR:
3201 case SIOCSIFHWADDR:
3202 case SIOCADDMULTI:
3203 case SIOCDELMULTI:
3204 case SIOCGIFINDEX:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003205 case SIOCGIFADDR:
3206 case SIOCSIFADDR:
3207 case SIOCSIFHWBROADCAST:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003208 case SIOCDIFADDR:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003209 case SIOCGIFBRDADDR:
3210 case SIOCSIFBRDADDR:
3211 case SIOCGIFDSTADDR:
3212 case SIOCSIFDSTADDR:
3213 case SIOCGIFNETMASK:
3214 case SIOCSIFNETMASK:
3215 case SIOCSIFPFLAGS:
3216 case SIOCGIFPFLAGS:
3217 case SIOCGIFTXQLEN:
3218 case SIOCSIFTXQLEN:
3219 case SIOCBRADDIF:
3220 case SIOCBRDELIF:
Arnd Bergmann9177efd2009-11-06 08:09:09 +00003221 case SIOCSIFNAME:
3222 case SIOCGMIIPHY:
3223 case SIOCGMIIREG:
3224 case SIOCSMIIREG:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003225 case SIOCSARP:
3226 case SIOCGARP:
3227 case SIOCDARP:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003228 case SIOCATMARK:
Al Virof92d4fc2017-09-30 19:32:17 -04003229 case SIOCBONDENSLAVE:
3230 case SIOCBONDRELEASE:
3231 case SIOCBONDSETHWADDR:
3232 case SIOCBONDCHANGEACTIVE:
Al Viro4cf808e72017-10-01 21:12:09 -04003233 case SIOCGIFNAME:
Arnd Bergmann9177efd2009-11-06 08:09:09 +00003234 return sock_do_ioctl(net, sock, cmd, arg);
3235 }
3236
Arnd Bergmann6b960182009-11-06 23:10:54 -08003237 return -ENOIOCTLCMD;
3238}
Arnd Bergmann7a229382009-11-06 23:00:29 -08003239
Eric Dumazet95c96172012-04-15 05:58:06 +00003240static long compat_sock_ioctl(struct file *file, unsigned int cmd,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07003241 unsigned long arg)
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003242{
3243 struct socket *sock = file->private_data;
3244 int ret = -ENOIOCTLCMD;
David S. Miller87de87d2008-06-03 09:14:03 -07003245 struct sock *sk;
3246 struct net *net;
3247
3248 sk = sock->sk;
3249 net = sock_net(sk);
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003250
3251 if (sock->ops->compat_ioctl)
3252 ret = sock->ops->compat_ioctl(sock, cmd, arg);
3253
David S. Miller87de87d2008-06-03 09:14:03 -07003254 if (ret == -ENOIOCTLCMD &&
3255 (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST))
3256 ret = compat_wext_handle_ioctl(net, cmd, arg);
3257
Arnd Bergmann6b960182009-11-06 23:10:54 -08003258 if (ret == -ENOIOCTLCMD)
3259 ret = compat_sock_ioctl_trans(file, sock, cmd, arg);
3260
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003261 return ret;
3262}
3263#endif
3264
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003265int kernel_bind(struct socket *sock, struct sockaddr *addr, int addrlen)
3266{
3267 return sock->ops->bind(sock, addr, addrlen);
3268}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003269EXPORT_SYMBOL(kernel_bind);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003270
3271int kernel_listen(struct socket *sock, int backlog)
3272{
3273 return sock->ops->listen(sock, backlog);
3274}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003275EXPORT_SYMBOL(kernel_listen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003276
3277int kernel_accept(struct socket *sock, struct socket **newsock, int flags)
3278{
3279 struct sock *sk = sock->sk;
3280 int err;
3281
3282 err = sock_create_lite(sk->sk_family, sk->sk_type, sk->sk_protocol,
3283 newsock);
3284 if (err < 0)
3285 goto done;
3286
David Howellscdfbabf2017-03-09 08:09:05 +00003287 err = sock->ops->accept(sock, *newsock, flags, true);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003288 if (err < 0) {
3289 sock_release(*newsock);
Tony Battersbyfa8705b2007-10-10 21:09:04 -07003290 *newsock = NULL;
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003291 goto done;
3292 }
3293
3294 (*newsock)->ops = sock->ops;
Wei Yongjun1b085342008-12-18 19:35:10 -08003295 __module_get((*newsock)->ops->owner);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003296
3297done:
3298 return err;
3299}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003300EXPORT_SYMBOL(kernel_accept);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003301
3302int kernel_connect(struct socket *sock, struct sockaddr *addr, int addrlen,
YOSHIFUJI Hideaki4768fbc2007-02-09 23:25:31 +09003303 int flags)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003304{
3305 return sock->ops->connect(sock, addr, addrlen, flags);
3306}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003307EXPORT_SYMBOL(kernel_connect);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003308
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01003309int kernel_getsockname(struct socket *sock, struct sockaddr *addr)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003310{
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01003311 return sock->ops->getname(sock, addr, 0);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003312}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003313EXPORT_SYMBOL(kernel_getsockname);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003314
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01003315int kernel_getpeername(struct socket *sock, struct sockaddr *addr)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003316{
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01003317 return sock->ops->getname(sock, addr, 1);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003318}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003319EXPORT_SYMBOL(kernel_getpeername);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003320
3321int kernel_getsockopt(struct socket *sock, int level, int optname,
3322 char *optval, int *optlen)
3323{
3324 mm_segment_t oldfs = get_fs();
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003325 char __user *uoptval;
3326 int __user *uoptlen;
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003327 int err;
3328
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003329 uoptval = (char __user __force *) optval;
3330 uoptlen = (int __user __force *) optlen;
3331
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003332 set_fs(KERNEL_DS);
3333 if (level == SOL_SOCKET)
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003334 err = sock_getsockopt(sock, level, optname, uoptval, uoptlen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003335 else
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003336 err = sock->ops->getsockopt(sock, level, optname, uoptval,
3337 uoptlen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003338 set_fs(oldfs);
3339 return err;
3340}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003341EXPORT_SYMBOL(kernel_getsockopt);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003342
3343int kernel_setsockopt(struct socket *sock, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07003344 char *optval, unsigned int optlen)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003345{
3346 mm_segment_t oldfs = get_fs();
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003347 char __user *uoptval;
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003348 int err;
3349
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003350 uoptval = (char __user __force *) optval;
3351
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003352 set_fs(KERNEL_DS);
3353 if (level == SOL_SOCKET)
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003354 err = sock_setsockopt(sock, level, optname, uoptval, optlen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003355 else
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003356 err = sock->ops->setsockopt(sock, level, optname, uoptval,
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003357 optlen);
3358 set_fs(oldfs);
3359 return err;
3360}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003361EXPORT_SYMBOL(kernel_setsockopt);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003362
3363int kernel_sendpage(struct socket *sock, struct page *page, int offset,
3364 size_t size, int flags)
3365{
3366 if (sock->ops->sendpage)
3367 return sock->ops->sendpage(sock, page, offset, size, flags);
3368
3369 return sock_no_sendpage(sock, page, offset, size, flags);
3370}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003371EXPORT_SYMBOL(kernel_sendpage);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003372
Tom Herbert306b13e2017-07-28 16:22:41 -07003373int kernel_sendpage_locked(struct sock *sk, struct page *page, int offset,
3374 size_t size, int flags)
3375{
3376 struct socket *sock = sk->sk_socket;
3377
3378 if (sock->ops->sendpage_locked)
3379 return sock->ops->sendpage_locked(sk, page, offset, size,
3380 flags);
3381
3382 return sock_no_sendpage_locked(sk, page, offset, size, flags);
3383}
3384EXPORT_SYMBOL(kernel_sendpage_locked);
3385
Trond Myklebust91cf45f2007-11-12 18:10:39 -08003386int kernel_sock_shutdown(struct socket *sock, enum sock_shutdown_cmd how)
3387{
3388 return sock->ops->shutdown(sock, how);
3389}
Trond Myklebust91cf45f2007-11-12 18:10:39 -08003390EXPORT_SYMBOL(kernel_sock_shutdown);
R. Parameswaran113c3072017-04-05 16:50:35 -07003391
3392/* This routine returns the IP overhead imposed by a socket i.e.
3393 * the length of the underlying IP header, depending on whether
3394 * this is an IPv4 or IPv6 socket and the length from IP options turned
R. Parameswaran57240d02017-04-12 18:31:04 -07003395 * on at the socket. Assumes that the caller has a lock on the socket.
R. Parameswaran113c3072017-04-05 16:50:35 -07003396 */
3397u32 kernel_sock_ip_overhead(struct sock *sk)
3398{
3399 struct inet_sock *inet;
3400 struct ip_options_rcu *opt;
3401 u32 overhead = 0;
R. Parameswaran113c3072017-04-05 16:50:35 -07003402#if IS_ENABLED(CONFIG_IPV6)
3403 struct ipv6_pinfo *np;
3404 struct ipv6_txoptions *optv6 = NULL;
3405#endif /* IS_ENABLED(CONFIG_IPV6) */
3406
3407 if (!sk)
3408 return overhead;
3409
R. Parameswaran113c3072017-04-05 16:50:35 -07003410 switch (sk->sk_family) {
3411 case AF_INET:
3412 inet = inet_sk(sk);
3413 overhead += sizeof(struct iphdr);
3414 opt = rcu_dereference_protected(inet->inet_opt,
stephen hemminger614d79c2017-07-24 10:25:22 -07003415 sock_owned_by_user(sk));
R. Parameswaran113c3072017-04-05 16:50:35 -07003416 if (opt)
3417 overhead += opt->opt.optlen;
3418 return overhead;
3419#if IS_ENABLED(CONFIG_IPV6)
3420 case AF_INET6:
3421 np = inet6_sk(sk);
3422 overhead += sizeof(struct ipv6hdr);
3423 if (np)
3424 optv6 = rcu_dereference_protected(np->opt,
stephen hemminger614d79c2017-07-24 10:25:22 -07003425 sock_owned_by_user(sk));
R. Parameswaran113c3072017-04-05 16:50:35 -07003426 if (optv6)
3427 overhead += (optv6->opt_flen + optv6->opt_nflen);
3428 return overhead;
3429#endif /* IS_ENABLED(CONFIG_IPV6) */
3430 default: /* Returns 0 overhead if the socket is not ipv4 or ipv6 */
3431 return overhead;
3432 }
3433}
3434EXPORT_SYMBOL(kernel_sock_ip_overhead);