blob: d8222c0250618a64197d5a4aba89313859b8d4eb [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
93#include <asm/uaccess.h>
94#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>
107#include <linux/atalk.h>
Eliezer Tamir076bb0c2013-07-10 17:13:17 +0300108#include <net/busy_poll.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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115static int sock_no_open(struct inode *irrelevant, struct file *dontcare);
Badari Pulavarty027445c2006-09-30 23:28:46 -0700116static ssize_t sock_aio_read(struct kiocb *iocb, const struct iovec *iov,
117 unsigned long nr_segs, loff_t pos);
118static ssize_t sock_aio_write(struct kiocb *iocb, const struct iovec *iov,
119 unsigned long nr_segs, loff_t pos);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700120static int sock_mmap(struct file *file, struct vm_area_struct *vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
122static int sock_close(struct inode *inode, struct file *file);
123static unsigned int sock_poll(struct file *file,
124 struct poll_table_struct *wait);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700125static long sock_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800126#ifdef CONFIG_COMPAT
127static long compat_sock_ioctl(struct file *file,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700128 unsigned int cmd, unsigned long arg);
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800129#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130static int sock_fasync(int fd, struct file *filp, int on);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131static ssize_t sock_sendpage(struct file *file, struct page *page,
132 int offset, size_t size, loff_t *ppos, int more);
Jens Axboe9c55e012007-11-06 23:30:13 -0800133static ssize_t sock_splice_read(struct file *file, loff_t *ppos,
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700134 struct pipe_inode_info *pipe, size_t len,
Jens Axboe9c55e012007-11-06 23:30:13 -0800135 unsigned int flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137/*
138 * Socket files have a set of 'special' operations as well as the generic file ones. These don't appear
139 * in the operation structures but are done directly via the socketcall() multiplexor.
140 */
141
Arjan van de Venda7071d2007-02-12 00:55:36 -0800142static const struct file_operations socket_file_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 .owner = THIS_MODULE,
144 .llseek = no_llseek,
145 .aio_read = sock_aio_read,
146 .aio_write = sock_aio_write,
147 .poll = sock_poll,
148 .unlocked_ioctl = sock_ioctl,
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800149#ifdef CONFIG_COMPAT
150 .compat_ioctl = compat_sock_ioctl,
151#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 .mmap = sock_mmap,
153 .open = sock_no_open, /* special open code to disallow open via /proc */
154 .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/*
169 * Statistics counters of the socket lists
170 */
171
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700172static DEFINE_PER_CPU(int, sockets_in_use);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
174/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700175 * Support routines.
176 * Move socket addresses back and forth across the kernel/user
177 * divide and look after the messy bits.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 */
179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180/**
181 * move_addr_to_kernel - copy a socket address into kernel space
182 * @uaddr: Address in user space
183 * @kaddr: Address in kernel space
184 * @ulen: Length in user space
185 *
186 * The address is copied into kernel space. If the provided address is
187 * too long an error code of -EINVAL is returned. If the copy gives
188 * invalid addresses -EFAULT is returned. On a success 0 is returned.
189 */
190
Maciej Żenczykowski43db3622012-03-11 12:51:50 +0000191int move_addr_to_kernel(void __user *uaddr, int ulen, struct sockaddr_storage *kaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192{
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -0700193 if (ulen < 0 || ulen > sizeof(struct sockaddr_storage))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700195 if (ulen == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 return 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700197 if (copy_from_user(kaddr, uaddr, ulen))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 return -EFAULT;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +0100199 return audit_sockaddr(ulen, kaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200}
201
202/**
203 * move_addr_to_user - copy an address to user space
204 * @kaddr: kernel space address
205 * @klen: length of address in kernel
206 * @uaddr: user space address
207 * @ulen: pointer to user length field
208 *
209 * The value pointed to by ulen on entry is the buffer length available.
210 * This is overwritten with the buffer space used. -EINVAL is returned
211 * if an overlong buffer is specified or a negative buffer size. -EFAULT
212 * is returned if either the buffer or the length field are not
213 * accessible.
214 * After copying the data up to the limit the user specifies, the true
215 * length of the data is written over the length limit the user
216 * specified. Zero is returned for a success.
217 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700218
Maciej Żenczykowski43db3622012-03-11 12:51:50 +0000219static int move_addr_to_user(struct sockaddr_storage *kaddr, int klen,
stephen hemminger11165f12010-10-18 14:27:29 +0000220 void __user *uaddr, int __user *ulen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221{
222 int err;
223 int len;
224
Hannes Frederic Sowa68c6beb2013-11-21 03:14:34 +0100225 BUG_ON(klen > sizeof(struct sockaddr_storage));
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700226 err = get_user(len, ulen);
227 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 return err;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700229 if (len > klen)
230 len = klen;
Hannes Frederic Sowa68c6beb2013-11-21 03:14:34 +0100231 if (len < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700233 if (len) {
Steve Grubbd6fe3942006-03-30 12:20:22 -0500234 if (audit_sockaddr(klen, kaddr))
235 return -ENOMEM;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700236 if (copy_to_user(uaddr, kaddr, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 return -EFAULT;
238 }
239 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700240 * "fromlen shall refer to the value before truncation.."
241 * 1003.1g
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 */
243 return __put_user(klen, ulen);
244}
245
Christoph Lametere18b8902006-12-06 20:33:20 -0800246static struct kmem_cache *sock_inode_cachep __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
248static struct inode *sock_alloc_inode(struct super_block *sb)
249{
250 struct socket_alloc *ei;
Eric Dumazeteaefd112011-02-18 03:26:36 +0000251 struct socket_wq *wq;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700252
Christoph Lametere94b1762006-12-06 20:33:17 -0800253 ei = kmem_cache_alloc(sock_inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 if (!ei)
255 return NULL;
Eric Dumazeteaefd112011-02-18 03:26:36 +0000256 wq = kmalloc(sizeof(*wq), GFP_KERNEL);
257 if (!wq) {
Eric Dumazet43815482010-04-29 11:01:49 +0000258 kmem_cache_free(sock_inode_cachep, ei);
259 return NULL;
260 }
Eric Dumazeteaefd112011-02-18 03:26:36 +0000261 init_waitqueue_head(&wq->wait);
262 wq->fasync_list = NULL;
263 RCU_INIT_POINTER(ei->socket.wq, wq);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700264
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 ei->socket.state = SS_UNCONNECTED;
266 ei->socket.flags = 0;
267 ei->socket.ops = NULL;
268 ei->socket.sk = NULL;
269 ei->socket.file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
271 return &ei->vfs_inode;
272}
273
274static void sock_destroy_inode(struct inode *inode)
275{
Eric Dumazet43815482010-04-29 11:01:49 +0000276 struct socket_alloc *ei;
Eric Dumazeteaefd112011-02-18 03:26:36 +0000277 struct socket_wq *wq;
Eric Dumazet43815482010-04-29 11:01:49 +0000278
279 ei = container_of(inode, struct socket_alloc, vfs_inode);
Eric Dumazeteaefd112011-02-18 03:26:36 +0000280 wq = rcu_dereference_protected(ei->socket.wq, 1);
Lai Jiangshan61845222011-03-18 12:10:25 +0800281 kfree_rcu(wq, rcu);
Eric Dumazet43815482010-04-29 11:01:49 +0000282 kmem_cache_free(sock_inode_cachep, ei);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283}
284
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700285static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286{
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700287 struct socket_alloc *ei = (struct socket_alloc *)foo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Christoph Lametera35afb82007-05-16 22:10:57 -0700289 inode_init_once(&ei->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290}
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292static int init_inodecache(void)
293{
294 sock_inode_cachep = kmem_cache_create("sock_inode_cache",
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700295 sizeof(struct socket_alloc),
296 0,
297 (SLAB_HWCACHE_ALIGN |
298 SLAB_RECLAIM_ACCOUNT |
299 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +0900300 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 if (sock_inode_cachep == NULL)
302 return -ENOMEM;
303 return 0;
304}
305
Alexey Dobriyanb87221d2009-09-21 17:01:09 -0700306static const struct super_operations sockfs_ops = {
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700307 .alloc_inode = sock_alloc_inode,
308 .destroy_inode = sock_destroy_inode,
309 .statfs = simple_statfs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310};
311
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700312/*
313 * sockfs_dname() is called from d_path().
314 */
315static char *sockfs_dname(struct dentry *dentry, char *buffer, int buflen)
316{
317 return dynamic_dname(dentry, buffer, buflen, "socket:[%lu]",
318 dentry->d_inode->i_ino);
319}
320
Al Viro3ba13d12009-02-20 06:02:22 +0000321static const struct dentry_operations sockfs_dentry_operations = {
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700322 .d_dname = sockfs_dname,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323};
324
Al Viroc74a1cb2011-01-12 16:59:34 -0500325static struct dentry *sockfs_mount(struct file_system_type *fs_type,
326 int flags, const char *dev_name, void *data)
327{
328 return mount_pseudo(fs_type, "socket:", &sockfs_ops,
329 &sockfs_dentry_operations, SOCKFS_MAGIC);
330}
331
332static struct vfsmount *sock_mnt __read_mostly;
333
334static struct file_system_type sock_fs_type = {
335 .name = "sockfs",
336 .mount = sockfs_mount,
337 .kill_sb = kill_anon_super,
338};
339
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340/*
341 * Obtains the first available file descriptor and sets it up for use.
342 *
David S. Miller39d8c1b2006-03-20 17:13:49 -0800343 * These functions create file structures and maps them to fd space
344 * of the current process. On success it returns file descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 * and file struct implicitly stored in sock->file.
346 * Note that another thread may close file descriptor before we return
347 * from this function. We use the fact that now we do not refer
348 * to socket after mapping. If one day we will need it, this
349 * function will increment ref. count on file by 1.
350 *
351 * In any case returned fd MAY BE not valid!
352 * This race condition is unavoidable
353 * with shared fd spaces, we cannot solve it inside kernel,
354 * but we take care of internal coherence yet.
355 */
356
Linus Torvaldsaab174f2012-10-02 20:25:04 -0700357struct file *sock_alloc_file(struct socket *sock, int flags, const char *dname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358{
Al Viro7cbe66b2009-08-05 19:59:08 +0400359 struct qstr name = { .name = "" };
Al Viro2c48b9c2009-08-09 00:52:35 +0400360 struct path path;
Al Viro7cbe66b2009-08-05 19:59:08 +0400361 struct file *file;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800362
Masatake YAMATO600e1772012-08-29 10:44:29 +0000363 if (dname) {
364 name.name = dname;
365 name.len = strlen(name.name);
366 } else if (sock->sk) {
367 name.name = sock->sk->sk_prot_creator->name;
368 name.len = strlen(name.name);
369 }
Nick Piggin4b936882011-01-07 17:50:07 +1100370 path.dentry = d_alloc_pseudo(sock_mnt->mnt_sb, &name);
Al Viro28407632012-08-17 23:54:15 -0400371 if (unlikely(!path.dentry))
372 return ERR_PTR(-ENOMEM);
Al Viro2c48b9c2009-08-09 00:52:35 +0400373 path.mnt = mntget(sock_mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
Al Viro2c48b9c2009-08-09 00:52:35 +0400375 d_instantiate(path.dentry, SOCK_INODE(sock));
Al Virocc3808f2009-08-06 09:43:59 +0400376 SOCK_INODE(sock)->i_fop = &socket_file_ops;
377
Al Viro2c48b9c2009-08-09 00:52:35 +0400378 file = alloc_file(&path, FMODE_READ | FMODE_WRITE,
Al Virocc3808f2009-08-06 09:43:59 +0400379 &socket_file_ops);
Anatol Pomozov39b65252012-09-12 20:11:55 -0700380 if (unlikely(IS_ERR(file))) {
Al Virocc3808f2009-08-06 09:43:59 +0400381 /* drop dentry, keep inode */
Al Viro7de9c6ee2010-10-23 11:11:40 -0400382 ihold(path.dentry->d_inode);
Al Viro2c48b9c2009-08-09 00:52:35 +0400383 path_put(&path);
Anatol Pomozov39b65252012-09-12 20:11:55 -0700384 return file;
Al Virocc3808f2009-08-06 09:43:59 +0400385 }
David S. Miller39d8c1b2006-03-20 17:13:49 -0800386
387 sock->file = file;
Ulrich Drepper77d27202008-07-23 21:29:35 -0700388 file->f_flags = O_RDWR | (flags & O_NONBLOCK);
David S. Miller39d8c1b2006-03-20 17:13:49 -0800389 file->private_data = sock;
Al Viro28407632012-08-17 23:54:15 -0400390 return file;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800391}
Al Viro56b31d12012-08-18 00:25:51 -0400392EXPORT_SYMBOL(sock_alloc_file);
David S. Miller39d8c1b2006-03-20 17:13:49 -0800393
Al Viro56b31d12012-08-18 00:25:51 -0400394static int sock_map_fd(struct socket *sock, int flags)
David S. Miller39d8c1b2006-03-20 17:13:49 -0800395{
396 struct file *newfile;
Al Viro28407632012-08-17 23:54:15 -0400397 int fd = get_unused_fd_flags(flags);
398 if (unlikely(fd < 0))
399 return fd;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800400
Linus Torvaldsaab174f2012-10-02 20:25:04 -0700401 newfile = sock_alloc_file(sock, flags, NULL);
Al Viro28407632012-08-17 23:54:15 -0400402 if (likely(!IS_ERR(newfile))) {
David S. Miller39d8c1b2006-03-20 17:13:49 -0800403 fd_install(fd, newfile);
Al Viro28407632012-08-17 23:54:15 -0400404 return fd;
405 }
Al Viro7cbe66b2009-08-05 19:59:08 +0400406
Al Viro28407632012-08-17 23:54:15 -0400407 put_unused_fd(fd);
408 return PTR_ERR(newfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409}
410
John Fastabend406a3c62012-07-20 10:39:25 +0000411struct socket *sock_from_file(struct file *file, int *err)
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800412{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800413 if (file->f_op == &socket_file_ops)
414 return file->private_data; /* set in sock_map_fd */
415
Eric Dumazet23bb80d2007-02-08 14:59:57 -0800416 *err = -ENOTSOCK;
417 return NULL;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800418}
John Fastabend406a3c62012-07-20 10:39:25 +0000419EXPORT_SYMBOL(sock_from_file);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800420
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421/**
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700422 * sockfd_lookup - Go from a file number to its socket slot
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 * @fd: file handle
424 * @err: pointer to an error code return
425 *
426 * The file handle passed in is locked and the socket it is bound
427 * too is returned. If an error occurs the err pointer is overwritten
428 * with a negative errno code and NULL is returned. The function checks
429 * for both invalid handles and passing a handle which is not a socket.
430 *
431 * On a success the socket object pointer is returned.
432 */
433
434struct socket *sockfd_lookup(int fd, int *err)
435{
436 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 struct socket *sock;
438
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700439 file = fget(fd);
440 if (!file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 *err = -EBADF;
442 return NULL;
443 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700444
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800445 sock = sock_from_file(file, err);
446 if (!sock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 fput(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 return sock;
449}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700450EXPORT_SYMBOL(sockfd_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800452static struct socket *sockfd_lookup_light(int fd, int *err, int *fput_needed)
453{
Al Viro00e188e2014-03-03 23:48:18 -0500454 struct fd f = fdget(fd);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800455 struct socket *sock;
456
Hua Zhong36725582006-04-19 15:25:02 -0700457 *err = -EBADF;
Al Viro00e188e2014-03-03 23:48:18 -0500458 if (f.file) {
459 sock = sock_from_file(f.file, err);
460 if (likely(sock)) {
461 *fput_needed = f.flags;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800462 return sock;
Al Viro00e188e2014-03-03 23:48:18 -0500463 }
464 fdput(f);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800465 }
466 return NULL;
467}
468
Masatake YAMATO600e1772012-08-29 10:44:29 +0000469#define XATTR_SOCKPROTONAME_SUFFIX "sockprotoname"
470#define XATTR_NAME_SOCKPROTONAME (XATTR_SYSTEM_PREFIX XATTR_SOCKPROTONAME_SUFFIX)
471#define XATTR_NAME_SOCKPROTONAME_LEN (sizeof(XATTR_NAME_SOCKPROTONAME)-1)
472static ssize_t sockfs_getxattr(struct dentry *dentry,
473 const char *name, void *value, size_t size)
474{
475 const char *proto_name;
476 size_t proto_size;
477 int error;
478
479 error = -ENODATA;
480 if (!strncmp(name, XATTR_NAME_SOCKPROTONAME, XATTR_NAME_SOCKPROTONAME_LEN)) {
481 proto_name = dentry->d_name.name;
482 proto_size = strlen(proto_name);
483
484 if (value) {
485 error = -ERANGE;
486 if (proto_size + 1 > size)
487 goto out;
488
489 strncpy(value, proto_name, proto_size + 1);
490 }
491 error = proto_size + 1;
492 }
493
494out:
495 return error;
496}
497
498static ssize_t sockfs_listxattr(struct dentry *dentry, char *buffer,
499 size_t size)
500{
501 ssize_t len;
502 ssize_t used = 0;
503
504 len = security_inode_listsecurity(dentry->d_inode, buffer, size);
505 if (len < 0)
506 return len;
507 used += len;
508 if (buffer) {
509 if (size < used)
510 return -ERANGE;
511 buffer += len;
512 }
513
514 len = (XATTR_NAME_SOCKPROTONAME_LEN + 1);
515 used += len;
516 if (buffer) {
517 if (size < used)
518 return -ERANGE;
519 memcpy(buffer, XATTR_NAME_SOCKPROTONAME, len);
520 buffer += len;
521 }
522
523 return used;
524}
525
526static const struct inode_operations sockfs_inode_ops = {
527 .getxattr = sockfs_getxattr,
528 .listxattr = sockfs_listxattr,
529};
530
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531/**
532 * sock_alloc - allocate a socket
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700533 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 * Allocate a new inode and socket object. The two are bound together
535 * and initialised. The socket is then returned. If we are out of inodes
536 * NULL is returned.
537 */
538
539static struct socket *sock_alloc(void)
540{
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700541 struct inode *inode;
542 struct socket *sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Eric Dumazeta209dfc2011-07-26 11:36:34 +0200544 inode = new_inode_pseudo(sock_mnt->mnt_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 if (!inode)
546 return NULL;
547
548 sock = SOCKET_I(inode);
549
Eric Dumazet29a020d2009-09-15 02:39:20 -0700550 kmemcheck_annotate_bitfield(sock, type);
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400551 inode->i_ino = get_next_ino();
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700552 inode->i_mode = S_IFSOCK | S_IRWXUGO;
David Howells8192b0c2008-11-14 10:39:10 +1100553 inode->i_uid = current_fsuid();
554 inode->i_gid = current_fsgid();
Masatake YAMATO600e1772012-08-29 10:44:29 +0000555 inode->i_op = &sockfs_inode_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
Alex Shi19e8d692012-05-14 14:15:31 -0700557 this_cpu_add(sockets_in_use, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 return sock;
559}
560
561/*
562 * In theory you can't get an open on this inode, but /proc provides
563 * a back door. Remember to keep it shut otherwise you'll let the
564 * creepy crawlies in.
565 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700566
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567static int sock_no_open(struct inode *irrelevant, struct file *dontcare)
568{
569 return -ENXIO;
570}
571
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800572const struct file_operations bad_sock_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 .owner = THIS_MODULE,
574 .open = sock_no_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200575 .llseek = noop_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576};
577
578/**
579 * sock_release - close a socket
580 * @sock: socket to close
581 *
582 * The socket is released from the protocol stack if it has a release
583 * callback, and the inode is then released if the socket is bound to
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700584 * an inode not a file.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700586
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587void sock_release(struct socket *sock)
588{
589 if (sock->ops) {
590 struct module *owner = sock->ops->owner;
591
592 sock->ops->release(sock);
593 sock->ops = NULL;
594 module_put(owner);
595 }
596
Eric Dumazeteaefd112011-02-18 03:26:36 +0000597 if (rcu_dereference_protected(sock->wq, 1)->fasync_list)
Yang Yingliang3410f222014-02-12 17:09:55 +0800598 pr_err("%s: fasync list not empty!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Mikulas Patockab09e7862012-07-19 06:13:36 +0000600 if (test_bit(SOCK_EXTERNALLY_ALLOCATED, &sock->flags))
601 return;
602
Alex Shi19e8d692012-05-14 14:15:31 -0700603 this_cpu_sub(sockets_in_use, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 if (!sock->file) {
605 iput(SOCK_INODE(sock));
606 return;
607 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700608 sock->file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700610EXPORT_SYMBOL(sock_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Daniel Borkmannbf84a012013-04-14 08:08:13 +0000612void sock_tx_timestamp(struct sock *sk, __u8 *tx_flags)
Patrick Ohly20d49472009-02-12 05:03:38 +0000613{
Oliver Hartkopp2244d072010-08-17 08:59:14 +0000614 *tx_flags = 0;
Patrick Ohly20d49472009-02-12 05:03:38 +0000615 if (sock_flag(sk, SOCK_TIMESTAMPING_TX_HARDWARE))
Oliver Hartkopp2244d072010-08-17 08:59:14 +0000616 *tx_flags |= SKBTX_HW_TSTAMP;
Patrick Ohly20d49472009-02-12 05:03:38 +0000617 if (sock_flag(sk, SOCK_TIMESTAMPING_TX_SOFTWARE))
Oliver Hartkopp2244d072010-08-17 08:59:14 +0000618 *tx_flags |= SKBTX_SW_TSTAMP;
Johannes Berg6e3e9392011-11-09 10:15:42 +0100619 if (sock_flag(sk, SOCK_WIFI_STATUS))
620 *tx_flags |= SKBTX_WIFI_STATUS;
Patrick Ohly20d49472009-02-12 05:03:38 +0000621}
622EXPORT_SYMBOL(sock_tx_timestamp);
623
Anton Blanchard228e5482011-05-02 20:21:35 +0000624static inline int __sock_sendmsg_nosec(struct kiocb *iocb, struct socket *sock,
625 struct msghdr *msg, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626{
627 struct sock_iocb *si = kiocb_to_siocb(iocb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
629 si->sock = sock;
630 si->scm = NULL;
631 si->msg = msg;
632 si->size = size;
633
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 return sock->ops->sendmsg(iocb, sock, msg, size);
635}
636
Anton Blanchard228e5482011-05-02 20:21:35 +0000637static inline int __sock_sendmsg(struct kiocb *iocb, struct socket *sock,
638 struct msghdr *msg, size_t size)
639{
640 int err = security_socket_sendmsg(sock, msg, size);
641
642 return err ?: __sock_sendmsg_nosec(iocb, sock, msg, size);
643}
644
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645int sock_sendmsg(struct socket *sock, struct msghdr *msg, size_t size)
646{
647 struct kiocb iocb;
648 struct sock_iocb siocb;
649 int ret;
650
651 init_sync_kiocb(&iocb, NULL);
652 iocb.private = &siocb;
653 ret = __sock_sendmsg(&iocb, sock, msg, size);
654 if (-EIOCBQUEUED == ret)
655 ret = wait_on_sync_kiocb(&iocb);
656 return ret;
657}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700658EXPORT_SYMBOL(sock_sendmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
Eric Dumazet894dc242011-07-26 02:39:41 +0000660static int sock_sendmsg_nosec(struct socket *sock, struct msghdr *msg, size_t size)
Anton Blanchard228e5482011-05-02 20:21:35 +0000661{
662 struct kiocb iocb;
663 struct sock_iocb siocb;
664 int ret;
665
666 init_sync_kiocb(&iocb, NULL);
667 iocb.private = &siocb;
668 ret = __sock_sendmsg_nosec(&iocb, sock, msg, size);
669 if (-EIOCBQUEUED == ret)
670 ret = wait_on_sync_kiocb(&iocb);
671 return ret;
672}
673
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674int kernel_sendmsg(struct socket *sock, struct msghdr *msg,
675 struct kvec *vec, size_t num, size_t size)
676{
677 mm_segment_t oldfs = get_fs();
678 int result;
679
680 set_fs(KERNEL_DS);
681 /*
682 * the following is safe, since for compiler definitions of kvec and
683 * iovec are identical, yielding the same in-core layout and alignment
684 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700685 msg->msg_iov = (struct iovec *)vec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 msg->msg_iovlen = num;
687 result = sock_sendmsg(sock, msg, size);
688 set_fs(oldfs);
689 return result;
690}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700691EXPORT_SYMBOL(kernel_sendmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700693/*
694 * called from sock_recv_timestamp() if sock_flag(sk, SOCK_RCVTSTAMP)
695 */
696void __sock_recv_timestamp(struct msghdr *msg, struct sock *sk,
697 struct sk_buff *skb)
698{
Patrick Ohly20d49472009-02-12 05:03:38 +0000699 int need_software_tstamp = sock_flag(sk, SOCK_RCVTSTAMP);
700 struct timespec ts[3];
701 int empty = 1;
702 struct skb_shared_hwtstamps *shhwtstamps =
703 skb_hwtstamps(skb);
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700704
Patrick Ohly20d49472009-02-12 05:03:38 +0000705 /* Race occurred between timestamp enabling and packet
706 receiving. Fill in the current time for now. */
707 if (need_software_tstamp && skb->tstamp.tv64 == 0)
708 __net_timestamp(skb);
709
710 if (need_software_tstamp) {
711 if (!sock_flag(sk, SOCK_RCVTSTAMPNS)) {
712 struct timeval tv;
713 skb_get_timestamp(skb, &tv);
714 put_cmsg(msg, SOL_SOCKET, SCM_TIMESTAMP,
715 sizeof(tv), &tv);
716 } else {
Hagen Paul Pfeifer842509b2010-04-06 05:39:52 +0000717 skb_get_timestampns(skb, &ts[0]);
Patrick Ohly20d49472009-02-12 05:03:38 +0000718 put_cmsg(msg, SOL_SOCKET, SCM_TIMESTAMPNS,
Hagen Paul Pfeifer842509b2010-04-06 05:39:52 +0000719 sizeof(ts[0]), &ts[0]);
Patrick Ohly20d49472009-02-12 05:03:38 +0000720 }
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700721 }
Patrick Ohly20d49472009-02-12 05:03:38 +0000722
723
724 memset(ts, 0, sizeof(ts));
Daniel Borkmann6e94d1e2013-04-16 01:29:10 +0000725 if (sock_flag(sk, SOCK_TIMESTAMPING_SOFTWARE) &&
726 ktime_to_timespec_cond(skb->tstamp, ts + 0))
Patrick Ohly20d49472009-02-12 05:03:38 +0000727 empty = 0;
Willem de Bruijn4d276eb2014-07-25 18:01:32 -0400728 if (shhwtstamps &&
729 sock_flag(sk, SOCK_TIMESTAMPING_RAW_HARDWARE) &&
730 ktime_to_timespec_cond(shhwtstamps->hwtstamp, ts + 2))
731 empty = 0;
Patrick Ohly20d49472009-02-12 05:03:38 +0000732 if (!empty)
733 put_cmsg(msg, SOL_SOCKET,
734 SCM_TIMESTAMPING, sizeof(ts), &ts);
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700735}
Arnaldo Carvalho de Melo7c81fd82007-03-10 00:39:35 -0300736EXPORT_SYMBOL_GPL(__sock_recv_timestamp);
737
Johannes Berg6e3e9392011-11-09 10:15:42 +0100738void __sock_recv_wifi_status(struct msghdr *msg, struct sock *sk,
739 struct sk_buff *skb)
740{
741 int ack;
742
743 if (!sock_flag(sk, SOCK_WIFI_STATUS))
744 return;
745 if (!skb->wifi_acked_valid)
746 return;
747
748 ack = skb->wifi_acked;
749
750 put_cmsg(msg, SOL_SOCKET, SCM_WIFI_STATUS, sizeof(ack), &ack);
751}
752EXPORT_SYMBOL_GPL(__sock_recv_wifi_status);
753
stephen hemminger11165f12010-10-18 14:27:29 +0000754static inline void sock_recv_drops(struct msghdr *msg, struct sock *sk,
755 struct sk_buff *skb)
Neil Horman3b885782009-10-12 13:26:31 -0700756{
757 if (sock_flag(sk, SOCK_RXQ_OVFL) && skb && skb->dropcount)
758 put_cmsg(msg, SOL_SOCKET, SO_RXQ_OVFL,
759 sizeof(__u32), &skb->dropcount);
760}
761
Eric Dumazet767dd032010-04-28 19:14:43 +0000762void __sock_recv_ts_and_drops(struct msghdr *msg, struct sock *sk,
Neil Horman3b885782009-10-12 13:26:31 -0700763 struct sk_buff *skb)
764{
765 sock_recv_timestamp(msg, sk, skb);
766 sock_recv_drops(msg, sk, skb);
767}
Eric Dumazet767dd032010-04-28 19:14:43 +0000768EXPORT_SYMBOL_GPL(__sock_recv_ts_and_drops);
Neil Horman3b885782009-10-12 13:26:31 -0700769
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -0700770static inline int __sock_recvmsg_nosec(struct kiocb *iocb, struct socket *sock,
771 struct msghdr *msg, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 struct sock_iocb *si = kiocb_to_siocb(iocb);
774
775 si->sock = sock;
776 si->scm = NULL;
777 si->msg = msg;
778 si->size = size;
779 si->flags = flags;
780
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 return sock->ops->recvmsg(iocb, sock, msg, size, flags);
782}
783
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -0700784static inline int __sock_recvmsg(struct kiocb *iocb, struct socket *sock,
785 struct msghdr *msg, size_t size, int flags)
786{
787 int err = security_socket_recvmsg(sock, msg, size, flags);
788
789 return err ?: __sock_recvmsg_nosec(iocb, sock, msg, size, flags);
790}
791
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700792int sock_recvmsg(struct socket *sock, struct msghdr *msg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 size_t size, int flags)
794{
795 struct kiocb iocb;
796 struct sock_iocb siocb;
797 int ret;
798
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700799 init_sync_kiocb(&iocb, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 iocb.private = &siocb;
801 ret = __sock_recvmsg(&iocb, sock, msg, size, flags);
802 if (-EIOCBQUEUED == ret)
803 ret = wait_on_sync_kiocb(&iocb);
804 return ret;
805}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700806EXPORT_SYMBOL(sock_recvmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -0700808static int sock_recvmsg_nosec(struct socket *sock, struct msghdr *msg,
809 size_t size, int flags)
810{
811 struct kiocb iocb;
812 struct sock_iocb siocb;
813 int ret;
814
815 init_sync_kiocb(&iocb, NULL);
816 iocb.private = &siocb;
817 ret = __sock_recvmsg_nosec(&iocb, sock, msg, size, flags);
818 if (-EIOCBQUEUED == ret)
819 ret = wait_on_sync_kiocb(&iocb);
820 return ret;
821}
822
Martin Lucinac1249c02010-12-10 00:04:05 +0000823/**
824 * kernel_recvmsg - Receive a message from a socket (kernel space)
825 * @sock: The socket to receive the message from
826 * @msg: Received message
827 * @vec: Input s/g array for message data
828 * @num: Size of input s/g array
829 * @size: Number of bytes to read
830 * @flags: Message flags (MSG_DONTWAIT, etc...)
831 *
832 * On return the msg structure contains the scatter/gather array passed in the
833 * vec argument. The array is modified so that it consists of the unfilled
834 * portion of the original array.
835 *
836 * The returned value is the total number of bytes received, or an error.
837 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700838int kernel_recvmsg(struct socket *sock, struct msghdr *msg,
839 struct kvec *vec, size_t num, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840{
841 mm_segment_t oldfs = get_fs();
842 int result;
843
844 set_fs(KERNEL_DS);
845 /*
846 * the following is safe, since for compiler definitions of kvec and
847 * iovec are identical, yielding the same in-core layout and alignment
848 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700849 msg->msg_iov = (struct iovec *)vec, msg->msg_iovlen = num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 result = sock_recvmsg(sock, msg, size, flags);
851 set_fs(oldfs);
852 return result;
853}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700854EXPORT_SYMBOL(kernel_recvmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -0300856static ssize_t sock_sendpage(struct file *file, struct page *page,
857 int offset, size_t size, loff_t *ppos, int more)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858{
859 struct socket *sock;
860 int flags;
861
Eric Dumazetb69aee02005-09-06 14:42:45 -0700862 sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863
Eric Dumazet35f9c092012-04-05 03:05:35 +0000864 flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
865 /* more is a combination of MSG_MORE and MSG_SENDPAGE_NOTLAST */
866 flags |= more;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
Linus Torvaldse6949582009-08-13 08:28:36 -0700868 return kernel_sendpage(sock, page, offset, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869}
870
Jens Axboe9c55e012007-11-06 23:30:13 -0800871static ssize_t sock_splice_read(struct file *file, loff_t *ppos,
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700872 struct pipe_inode_info *pipe, size_t len,
Jens Axboe9c55e012007-11-06 23:30:13 -0800873 unsigned int flags)
874{
875 struct socket *sock = file->private_data;
876
Rémi Denis-Courmont997b37d2008-02-15 02:35:45 -0800877 if (unlikely(!sock->ops->splice_read))
878 return -EINVAL;
879
Jens Axboe9c55e012007-11-06 23:30:13 -0800880 return sock->ops->splice_read(sock, ppos, pipe, len, flags);
881}
882
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800883static struct sock_iocb *alloc_sock_iocb(struct kiocb *iocb,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700884 struct sock_iocb *siocb)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800885{
Kent Overstreetd29c4452013-03-18 11:09:26 -0700886 if (!is_sync_kiocb(iocb))
887 BUG();
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800888
889 siocb->kiocb = iocb;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800890 iocb->private = siocb;
891 return siocb;
892}
893
894static ssize_t do_sock_read(struct msghdr *msg, struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -0700895 struct file *file, const struct iovec *iov,
896 unsigned long nr_segs)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800897{
898 struct socket *sock = file->private_data;
899 size_t size = 0;
900 int i;
901
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700902 for (i = 0; i < nr_segs; i++)
903 size += iov[i].iov_len;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800904
905 msg->msg_name = NULL;
906 msg->msg_namelen = 0;
907 msg->msg_control = NULL;
908 msg->msg_controllen = 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700909 msg->msg_iov = (struct iovec *)iov;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800910 msg->msg_iovlen = nr_segs;
911 msg->msg_flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
912
913 return __sock_recvmsg(iocb, sock, msg, size, msg->msg_flags);
914}
915
Badari Pulavarty027445c2006-09-30 23:28:46 -0700916static ssize_t sock_aio_read(struct kiocb *iocb, const struct iovec *iov,
917 unsigned long nr_segs, loff_t pos)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800918{
919 struct sock_iocb siocb, *x;
920
921 if (pos != 0)
922 return -ESPIPE;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700923
Kent Overstreet73a70752013-05-09 15:03:42 -0700924 if (iocb->ki_nbytes == 0) /* Match SYS5 behaviour */
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800925 return 0;
926
Badari Pulavarty027445c2006-09-30 23:28:46 -0700927
928 x = alloc_sock_iocb(iocb, &siocb);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800929 if (!x)
930 return -ENOMEM;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700931 return do_sock_read(&x->async_msg, iocb, iocb->ki_filp, iov, nr_segs);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800932}
933
934static ssize_t do_sock_write(struct msghdr *msg, struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -0700935 struct file *file, const struct iovec *iov,
936 unsigned long nr_segs)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800937{
938 struct socket *sock = file->private_data;
939 size_t size = 0;
940 int i;
941
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700942 for (i = 0; i < nr_segs; i++)
943 size += iov[i].iov_len;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800944
945 msg->msg_name = NULL;
946 msg->msg_namelen = 0;
947 msg->msg_control = NULL;
948 msg->msg_controllen = 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700949 msg->msg_iov = (struct iovec *)iov;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800950 msg->msg_iovlen = nr_segs;
951 msg->msg_flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
952 if (sock->type == SOCK_SEQPACKET)
953 msg->msg_flags |= MSG_EOR;
954
955 return __sock_sendmsg(iocb, sock, msg, size);
956}
957
Badari Pulavarty027445c2006-09-30 23:28:46 -0700958static ssize_t sock_aio_write(struct kiocb *iocb, const struct iovec *iov,
959 unsigned long nr_segs, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960{
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800961 struct sock_iocb siocb, *x;
962
963 if (pos != 0)
964 return -ESPIPE;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700965
Badari Pulavarty027445c2006-09-30 23:28:46 -0700966 x = alloc_sock_iocb(iocb, &siocb);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800967 if (!x)
968 return -ENOMEM;
969
Badari Pulavarty027445c2006-09-30 23:28:46 -0700970 return do_sock_write(&x->async_msg, iocb, iocb->ki_filp, iov, nr_segs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971}
972
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973/*
974 * Atomic setting of ioctl hooks to avoid race
975 * with module unload.
976 */
977
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800978static DEFINE_MUTEX(br_ioctl_mutex);
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700979static int (*br_ioctl_hook) (struct net *, unsigned int cmd, void __user *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
Eric W. Biederman881d9662007-09-17 11:56:21 -0700981void brioctl_set(int (*hook) (struct net *, unsigned int, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800983 mutex_lock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 br_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800985 mutex_unlock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986}
987EXPORT_SYMBOL(brioctl_set);
988
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800989static DEFINE_MUTEX(vlan_ioctl_mutex);
Eric W. Biederman881d9662007-09-17 11:56:21 -0700990static int (*vlan_ioctl_hook) (struct net *, void __user *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
Eric W. Biederman881d9662007-09-17 11:56:21 -0700992void vlan_ioctl_set(int (*hook) (struct net *, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800994 mutex_lock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 vlan_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800996 mutex_unlock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997}
998EXPORT_SYMBOL(vlan_ioctl_set);
999
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001000static DEFINE_MUTEX(dlci_ioctl_mutex);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001001static int (*dlci_ioctl_hook) (unsigned int, void __user *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001003void dlci_ioctl_set(int (*hook) (unsigned int, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001005 mutex_lock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 dlci_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001007 mutex_unlock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008}
1009EXPORT_SYMBOL(dlci_ioctl_set);
1010
Arnd Bergmann6b960182009-11-06 23:10:54 -08001011static long sock_do_ioctl(struct net *net, struct socket *sock,
1012 unsigned int cmd, unsigned long arg)
1013{
1014 int err;
1015 void __user *argp = (void __user *)arg;
1016
1017 err = sock->ops->ioctl(sock, cmd, arg);
1018
1019 /*
1020 * If this ioctl is unknown try to hand it down
1021 * to the NIC driver.
1022 */
1023 if (err == -ENOIOCTLCMD)
1024 err = dev_ioctl(net, cmd, argp);
1025
1026 return err;
1027}
1028
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029/*
1030 * With an ioctl, arg may well be a user mode pointer, but we don't know
1031 * what to do with it - that's up to the protocol still.
1032 */
1033
1034static long sock_ioctl(struct file *file, unsigned cmd, unsigned long arg)
1035{
1036 struct socket *sock;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001037 struct sock *sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 void __user *argp = (void __user *)arg;
1039 int pid, err;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001040 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041
Eric Dumazetb69aee02005-09-06 14:42:45 -07001042 sock = file->private_data;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001043 sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001044 net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 if (cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15)) {
Eric W. Biederman881d9662007-09-17 11:56:21 -07001046 err = dev_ioctl(net, cmd, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 } else
Johannes Berg3d23e342009-09-29 23:27:28 +02001048#ifdef CONFIG_WEXT_CORE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 if (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST) {
Eric W. Biederman881d9662007-09-17 11:56:21 -07001050 err = dev_ioctl(net, cmd, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 } else
Johannes Berg3d23e342009-09-29 23:27:28 +02001052#endif
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001053 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 case FIOSETOWN:
1055 case SIOCSPGRP:
1056 err = -EFAULT;
1057 if (get_user(pid, (int __user *)argp))
1058 break;
1059 err = f_setown(sock->file, pid, 1);
1060 break;
1061 case FIOGETOWN:
1062 case SIOCGPGRP:
Eric W. Biederman609d7fa2006-10-02 02:17:15 -07001063 err = put_user(f_getown(sock->file),
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001064 (int __user *)argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 break;
1066 case SIOCGIFBR:
1067 case SIOCSIFBR:
1068 case SIOCBRADDBR:
1069 case SIOCBRDELBR:
1070 err = -ENOPKG;
1071 if (!br_ioctl_hook)
1072 request_module("bridge");
1073
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001074 mutex_lock(&br_ioctl_mutex);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001075 if (br_ioctl_hook)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001076 err = br_ioctl_hook(net, cmd, argp);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001077 mutex_unlock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 break;
1079 case SIOCGIFVLAN:
1080 case SIOCSIFVLAN:
1081 err = -ENOPKG;
1082 if (!vlan_ioctl_hook)
1083 request_module("8021q");
1084
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001085 mutex_lock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 if (vlan_ioctl_hook)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001087 err = vlan_ioctl_hook(net, argp);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001088 mutex_unlock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 case SIOCADDDLCI:
1091 case SIOCDELDLCI:
1092 err = -ENOPKG;
1093 if (!dlci_ioctl_hook)
1094 request_module("dlci");
1095
Pavel Emelyanov7512cbf2008-03-21 15:58:52 -07001096 mutex_lock(&dlci_ioctl_mutex);
1097 if (dlci_ioctl_hook)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 err = dlci_ioctl_hook(cmd, argp);
Pavel Emelyanov7512cbf2008-03-21 15:58:52 -07001099 mutex_unlock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 break;
1101 default:
Arnd Bergmann6b960182009-11-06 23:10:54 -08001102 err = sock_do_ioctl(net, sock, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001104 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 return err;
1106}
1107
1108int sock_create_lite(int family, int type, int protocol, struct socket **res)
1109{
1110 int err;
1111 struct socket *sock = NULL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001112
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 err = security_socket_create(family, type, protocol, 1);
1114 if (err)
1115 goto out;
1116
1117 sock = sock_alloc();
1118 if (!sock) {
1119 err = -ENOMEM;
1120 goto out;
1121 }
1122
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 sock->type = type;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001124 err = security_socket_post_create(sock, family, type, protocol, 1);
1125 if (err)
1126 goto out_release;
1127
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128out:
1129 *res = sock;
1130 return err;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001131out_release:
1132 sock_release(sock);
1133 sock = NULL;
1134 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001136EXPORT_SYMBOL(sock_create_lite);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
1138/* No kernel lock held - perfect */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001139static unsigned int sock_poll(struct file *file, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140{
Eliezer Tamircbf55002013-07-08 16:20:34 +03001141 unsigned int busy_flag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 struct socket *sock;
1143
1144 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001145 * We can't return errors to poll, so it's either yes or no.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 */
Eric Dumazetb69aee02005-09-06 14:42:45 -07001147 sock = file->private_data;
Eliezer Tamir2d48d672013-06-24 10:28:03 +03001148
Eliezer Tamircbf55002013-07-08 16:20:34 +03001149 if (sk_can_busy_loop(sock->sk)) {
Eliezer Tamir2d48d672013-06-24 10:28:03 +03001150 /* this socket can poll_ll so tell the system call */
Eliezer Tamircbf55002013-07-08 16:20:34 +03001151 busy_flag = POLL_BUSY_LOOP;
Eliezer Tamir2d48d672013-06-24 10:28:03 +03001152
1153 /* once, only if requested by syscall */
Eliezer Tamircbf55002013-07-08 16:20:34 +03001154 if (wait && (wait->_key & POLL_BUSY_LOOP))
1155 sk_busy_loop(sock->sk, 1);
Eliezer Tamir2d48d672013-06-24 10:28:03 +03001156 }
1157
Eliezer Tamircbf55002013-07-08 16:20:34 +03001158 return busy_flag | sock->ops->poll(file, sock, wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159}
1160
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001161static int sock_mmap(struct file *file, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162{
Eric Dumazetb69aee02005-09-06 14:42:45 -07001163 struct socket *sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
1165 return sock->ops->mmap(file, sock, vma);
1166}
1167
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001168static int sock_close(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 sock_release(SOCKET_I(inode));
1171 return 0;
1172}
1173
1174/*
1175 * Update the socket async list
1176 *
1177 * Fasync_list locking strategy.
1178 *
1179 * 1. fasync_list is modified only under process context socket lock
1180 * i.e. under semaphore.
1181 * 2. fasync_list is used under read_lock(&sk->sk_callback_lock)
Eric Dumazet989a2972010-04-14 09:55:35 +00001182 * or under socket lock
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 */
1184
1185static int sock_fasync(int fd, struct file *filp, int on)
1186{
Eric Dumazet989a2972010-04-14 09:55:35 +00001187 struct socket *sock = filp->private_data;
1188 struct sock *sk = sock->sk;
Eric Dumazeteaefd112011-02-18 03:26:36 +00001189 struct socket_wq *wq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
Eric Dumazet989a2972010-04-14 09:55:35 +00001191 if (sk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
1194 lock_sock(sk);
Eric Dumazeteaefd112011-02-18 03:26:36 +00001195 wq = rcu_dereference_protected(sock->wq, sock_owned_by_user(sk));
1196 fasync_helper(fd, filp, on, &wq->fasync_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197
Eric Dumazeteaefd112011-02-18 03:26:36 +00001198 if (!wq->fasync_list)
Eric Dumazet989a2972010-04-14 09:55:35 +00001199 sock_reset_flag(sk, SOCK_FASYNC);
Jonathan Corbet76398422009-02-01 14:26:59 -07001200 else
Eric Dumazetbcdce712009-10-06 17:28:29 -07001201 sock_set_flag(sk, SOCK_FASYNC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202
Eric Dumazet989a2972010-04-14 09:55:35 +00001203 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 return 0;
1205}
1206
Eric Dumazet43815482010-04-29 11:01:49 +00001207/* This function may be called only under socket lock or callback_lock or rcu_lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
1209int sock_wake_async(struct socket *sock, int how, int band)
1210{
Eric Dumazet43815482010-04-29 11:01:49 +00001211 struct socket_wq *wq;
1212
1213 if (!sock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 return -1;
Eric Dumazet43815482010-04-29 11:01:49 +00001215 rcu_read_lock();
1216 wq = rcu_dereference(sock->wq);
1217 if (!wq || !wq->fasync_list) {
1218 rcu_read_unlock();
1219 return -1;
1220 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001221 switch (how) {
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001222 case SOCK_WAKE_WAITD:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 if (test_bit(SOCK_ASYNC_WAITDATA, &sock->flags))
1224 break;
1225 goto call_kill;
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001226 case SOCK_WAKE_SPACE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 if (!test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sock->flags))
1228 break;
1229 /* fall through */
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001230 case SOCK_WAKE_IO:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001231call_kill:
Eric Dumazet43815482010-04-29 11:01:49 +00001232 kill_fasync(&wq->fasync_list, SIGIO, band);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 break;
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001234 case SOCK_WAKE_URG:
Eric Dumazet43815482010-04-29 11:01:49 +00001235 kill_fasync(&wq->fasync_list, SIGURG, band);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 }
Eric Dumazet43815482010-04-29 11:01:49 +00001237 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 return 0;
1239}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001240EXPORT_SYMBOL(sock_wake_async);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241
Pavel Emelyanov721db932010-09-29 16:06:32 +04001242int __sock_create(struct net *net, int family, int type, int protocol,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001243 struct socket **res, int kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244{
1245 int err;
1246 struct socket *sock;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001247 const struct net_proto_family *pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248
1249 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001250 * Check protocol is in range
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 */
1252 if (family < 0 || family >= NPROTO)
1253 return -EAFNOSUPPORT;
1254 if (type < 0 || type >= SOCK_MAX)
1255 return -EINVAL;
1256
1257 /* Compatibility.
1258
1259 This uglymoron is moved from INET layer to here to avoid
1260 deadlock in module load.
1261 */
1262 if (family == PF_INET && type == SOCK_PACKET) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001263 static int warned;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 if (!warned) {
1265 warned = 1;
Yang Yingliang3410f222014-02-12 17:09:55 +08001266 pr_info("%s uses obsolete (PF_INET,SOCK_PACKET)\n",
1267 current->comm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 }
1269 family = PF_PACKET;
1270 }
1271
1272 err = security_socket_create(family, type, protocol, kern);
1273 if (err)
1274 return err;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001275
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001276 /*
1277 * Allocate the socket and allow the family to set things up. if
1278 * the protocol is 0, the family is instructed to select an appropriate
1279 * default.
1280 */
1281 sock = sock_alloc();
1282 if (!sock) {
Joe Perchese87cc472012-05-13 21:56:26 +00001283 net_warn_ratelimited("socket: no more sockets\n");
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001284 return -ENFILE; /* Not exactly a match, but its the
1285 closest posix thing */
1286 }
1287
1288 sock->type = type;
1289
Johannes Berg95a5afc2008-10-16 15:24:51 -07001290#ifdef CONFIG_MODULES
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001291 /* Attempt to load a protocol module if the find failed.
1292 *
1293 * 12/09/1996 Marcin: But! this makes REALLY only sense, if the user
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 * requested real, full-featured networking support upon configuration.
1295 * Otherwise module support will break!
1296 */
Eric Dumazet190683a2010-11-10 10:50:44 +00001297 if (rcu_access_pointer(net_families[family]) == NULL)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001298 request_module("net-pf-%d", family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299#endif
1300
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001301 rcu_read_lock();
1302 pf = rcu_dereference(net_families[family]);
1303 err = -EAFNOSUPPORT;
1304 if (!pf)
1305 goto out_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
1307 /*
1308 * We will call the ->create function, that possibly is in a loadable
1309 * module, so we have to bump that loadable module refcnt first.
1310 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001311 if (!try_module_get(pf->owner))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 goto out_release;
1313
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001314 /* Now protected by module ref count */
1315 rcu_read_unlock();
1316
Eric Paris3f378b62009-11-05 22:18:14 -08001317 err = pf->create(net, sock, protocol, kern);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001318 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 goto out_module_put;
Frank Filza79af592005-09-27 15:23:38 -07001320
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 /*
1322 * Now to bump the refcnt of the [loadable] module that owns this
1323 * socket at sock_release time we decrement its refcnt.
1324 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001325 if (!try_module_get(sock->ops->owner))
1326 goto out_module_busy;
1327
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 /*
1329 * Now that we're done with the ->create function, the [loadable]
1330 * module can have its refcnt decremented
1331 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001332 module_put(pf->owner);
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001333 err = security_socket_post_create(sock, family, type, protocol, kern);
1334 if (err)
Herbert Xu3b185522007-08-15 14:46:02 -07001335 goto out_sock_release;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001336 *res = sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001338 return 0;
1339
1340out_module_busy:
1341 err = -EAFNOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342out_module_put:
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001343 sock->ops = NULL;
1344 module_put(pf->owner);
1345out_sock_release:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 sock_release(sock);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001347 return err;
1348
1349out_release:
1350 rcu_read_unlock();
1351 goto out_sock_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352}
Pavel Emelyanov721db932010-09-29 16:06:32 +04001353EXPORT_SYMBOL(__sock_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354
1355int sock_create(int family, int type, int protocol, struct socket **res)
1356{
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001357 return __sock_create(current->nsproxy->net_ns, family, type, protocol, res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001359EXPORT_SYMBOL(sock_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
1361int sock_create_kern(int family, int type, int protocol, struct socket **res)
1362{
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001363 return __sock_create(&init_net, family, type, protocol, res, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001365EXPORT_SYMBOL(sock_create_kern);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001367SYSCALL_DEFINE3(socket, int, family, int, type, int, protocol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368{
1369 int retval;
1370 struct socket *sock;
Ulrich Dreppera677a032008-07-23 21:29:17 -07001371 int flags;
1372
Ulrich Dreppere38b36f2008-07-23 21:29:42 -07001373 /* Check the SOCK_* constants for consistency. */
1374 BUILD_BUG_ON(SOCK_CLOEXEC != O_CLOEXEC);
1375 BUILD_BUG_ON((SOCK_MAX | SOCK_TYPE_MASK) != SOCK_TYPE_MASK);
1376 BUILD_BUG_ON(SOCK_CLOEXEC & SOCK_TYPE_MASK);
1377 BUILD_BUG_ON(SOCK_NONBLOCK & SOCK_TYPE_MASK);
1378
Ulrich Dreppera677a032008-07-23 21:29:17 -07001379 flags = type & ~SOCK_TYPE_MASK;
Ulrich Drepper77d27202008-07-23 21:29:35 -07001380 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Dreppera677a032008-07-23 21:29:17 -07001381 return -EINVAL;
1382 type &= SOCK_TYPE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001384 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1385 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1386
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 retval = sock_create(family, type, protocol, &sock);
1388 if (retval < 0)
1389 goto out;
1390
Ulrich Drepper77d27202008-07-23 21:29:35 -07001391 retval = sock_map_fd(sock, flags & (O_CLOEXEC | O_NONBLOCK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 if (retval < 0)
1393 goto out_release;
1394
1395out:
1396 /* It may be already another descriptor 8) Not kernel problem. */
1397 return retval;
1398
1399out_release:
1400 sock_release(sock);
1401 return retval;
1402}
1403
1404/*
1405 * Create a pair of connected sockets.
1406 */
1407
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001408SYSCALL_DEFINE4(socketpair, int, family, int, type, int, protocol,
1409 int __user *, usockvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410{
1411 struct socket *sock1, *sock2;
1412 int fd1, fd2, err;
Al Virodb349502007-02-07 01:48:00 -05001413 struct file *newfile1, *newfile2;
Ulrich Dreppera677a032008-07-23 21:29:17 -07001414 int flags;
1415
1416 flags = type & ~SOCK_TYPE_MASK;
Ulrich Drepper77d27202008-07-23 21:29:35 -07001417 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Dreppera677a032008-07-23 21:29:17 -07001418 return -EINVAL;
1419 type &= SOCK_TYPE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001421 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1422 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1423
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 /*
1425 * Obtain the first socket and check if the underlying protocol
1426 * supports the socketpair call.
1427 */
1428
1429 err = sock_create(family, type, protocol, &sock1);
1430 if (err < 0)
1431 goto out;
1432
1433 err = sock_create(family, type, protocol, &sock2);
1434 if (err < 0)
1435 goto out_release_1;
1436
1437 err = sock1->ops->socketpair(sock1, sock2);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001438 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 goto out_release_both;
1440
Al Viro28407632012-08-17 23:54:15 -04001441 fd1 = get_unused_fd_flags(flags);
David S. Millerbf3c23d2007-10-29 21:54:02 -07001442 if (unlikely(fd1 < 0)) {
1443 err = fd1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 goto out_release_both;
David S. Millerbf3c23d2007-10-29 21:54:02 -07001445 }
Yann Droneaudd73aa282013-12-09 22:42:20 +01001446
Al Viro28407632012-08-17 23:54:15 -04001447 fd2 = get_unused_fd_flags(flags);
Al Viro198de4d2009-08-05 19:29:23 +04001448 if (unlikely(fd2 < 0)) {
1449 err = fd2;
Yann Droneaudd73aa282013-12-09 22:42:20 +01001450 goto out_put_unused_1;
Al Viro28407632012-08-17 23:54:15 -04001451 }
1452
Linus Torvaldsaab174f2012-10-02 20:25:04 -07001453 newfile1 = sock_alloc_file(sock1, flags, NULL);
Al Viro28407632012-08-17 23:54:15 -04001454 if (unlikely(IS_ERR(newfile1))) {
1455 err = PTR_ERR(newfile1);
Yann Droneaudd73aa282013-12-09 22:42:20 +01001456 goto out_put_unused_both;
Al Viro28407632012-08-17 23:54:15 -04001457 }
1458
Linus Torvaldsaab174f2012-10-02 20:25:04 -07001459 newfile2 = sock_alloc_file(sock2, flags, NULL);
Al Viro28407632012-08-17 23:54:15 -04001460 if (IS_ERR(newfile2)) {
1461 err = PTR_ERR(newfile2);
Yann Droneaudd73aa282013-12-09 22:42:20 +01001462 goto out_fput_1;
Al Virodb349502007-02-07 01:48:00 -05001463 }
1464
Yann Droneaudd73aa282013-12-09 22:42:20 +01001465 err = put_user(fd1, &usockvec[0]);
1466 if (err)
1467 goto out_fput_both;
1468
1469 err = put_user(fd2, &usockvec[1]);
1470 if (err)
1471 goto out_fput_both;
1472
Al Viro157cf642008-12-14 04:57:47 -05001473 audit_fd_pair(fd1, fd2);
Yann Droneaudd73aa282013-12-09 22:42:20 +01001474
Al Virodb349502007-02-07 01:48:00 -05001475 fd_install(fd1, newfile1);
1476 fd_install(fd2, newfile2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 /* fd1 and fd2 may be already another descriptors.
1478 * Not kernel problem.
1479 */
1480
Yann Droneaudd73aa282013-12-09 22:42:20 +01001481 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482
Yann Droneaudd73aa282013-12-09 22:42:20 +01001483out_fput_both:
1484 fput(newfile2);
1485 fput(newfile1);
1486 put_unused_fd(fd2);
1487 put_unused_fd(fd1);
1488 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489
Yann Droneaudd73aa282013-12-09 22:42:20 +01001490out_fput_1:
1491 fput(newfile1);
1492 put_unused_fd(fd2);
1493 put_unused_fd(fd1);
1494 sock_release(sock2);
1495 goto out;
1496
1497out_put_unused_both:
1498 put_unused_fd(fd2);
1499out_put_unused_1:
1500 put_unused_fd(fd1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501out_release_both:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001502 sock_release(sock2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503out_release_1:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001504 sock_release(sock1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505out:
1506 return err;
1507}
1508
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509/*
1510 * Bind a name to a socket. Nothing much to do here since it's
1511 * the protocol's responsibility to handle the local address.
1512 *
1513 * We move the socket address to kernel space before we call
1514 * the protocol layer (having also checked the address is ok).
1515 */
1516
Heiko Carstens20f37032009-01-14 14:14:23 +01001517SYSCALL_DEFINE3(bind, int, fd, struct sockaddr __user *, umyaddr, int, addrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518{
1519 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001520 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001521 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001523 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001524 if (sock) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001525 err = move_addr_to_kernel(umyaddr, addrlen, &address);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001526 if (err >= 0) {
1527 err = security_socket_bind(sock,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001528 (struct sockaddr *)&address,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001529 addrlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001530 if (!err)
1531 err = sock->ops->bind(sock,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001532 (struct sockaddr *)
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001533 &address, addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 }
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001535 fput_light(sock->file, fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001536 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 return err;
1538}
1539
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540/*
1541 * Perform a listen. Basically, we allow the protocol to do anything
1542 * necessary for a listen, and if that works, we mark the socket as
1543 * ready for listening.
1544 */
1545
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001546SYSCALL_DEFINE2(listen, int, fd, int, backlog)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547{
1548 struct socket *sock;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001549 int err, fput_needed;
Pavel Emelyanovb8e1f9b2007-12-08 00:12:33 -08001550 int somaxconn;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001551
1552 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1553 if (sock) {
Pavel Emelyanov8efa6e92008-03-31 19:41:14 -07001554 somaxconn = sock_net(sock->sk)->core.sysctl_somaxconn;
Eric Dumazet95c96172012-04-15 05:58:06 +00001555 if ((unsigned int)backlog > somaxconn)
Pavel Emelyanovb8e1f9b2007-12-08 00:12:33 -08001556 backlog = somaxconn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
1558 err = security_socket_listen(sock, backlog);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001559 if (!err)
1560 err = sock->ops->listen(sock, backlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001562 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 }
1564 return err;
1565}
1566
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567/*
1568 * For accept, we attempt to create a new socket, set up the link
1569 * with the client, wake up the client, then return the new
1570 * connected fd. We collect the address of the connector in kernel
1571 * space and move it to user at the very end. This is unclean because
1572 * we open the socket then return an error.
1573 *
1574 * 1003.1g adds the ability to recvmsg() to query connection pending
1575 * status to recvmsg. We need to add that support in a way thats
1576 * clean when we restucture accept also.
1577 */
1578
Heiko Carstens20f37032009-01-14 14:14:23 +01001579SYSCALL_DEFINE4(accept4, int, fd, struct sockaddr __user *, upeer_sockaddr,
1580 int __user *, upeer_addrlen, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581{
1582 struct socket *sock, *newsock;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001583 struct file *newfile;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001584 int err, len, newfd, fput_needed;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001585 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586
Ulrich Drepper77d27202008-07-23 21:29:35 -07001587 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001588 return -EINVAL;
1589
1590 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1591 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1592
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001593 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 if (!sock)
1595 goto out;
1596
1597 err = -ENFILE;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001598 newsock = sock_alloc();
1599 if (!newsock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 goto out_put;
1601
1602 newsock->type = sock->type;
1603 newsock->ops = sock->ops;
1604
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 /*
1606 * We don't need try_module_get here, as the listening socket (sock)
1607 * has the protocol module (sock->ops->owner) held.
1608 */
1609 __module_get(newsock->ops->owner);
1610
Al Viro28407632012-08-17 23:54:15 -04001611 newfd = get_unused_fd_flags(flags);
David S. Miller39d8c1b2006-03-20 17:13:49 -08001612 if (unlikely(newfd < 0)) {
1613 err = newfd;
David S. Miller9a1875e2006-04-01 12:48:36 -08001614 sock_release(newsock);
1615 goto out_put;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001616 }
Linus Torvaldsaab174f2012-10-02 20:25:04 -07001617 newfile = sock_alloc_file(newsock, flags, sock->sk->sk_prot_creator->name);
Al Viro28407632012-08-17 23:54:15 -04001618 if (unlikely(IS_ERR(newfile))) {
1619 err = PTR_ERR(newfile);
1620 put_unused_fd(newfd);
1621 sock_release(newsock);
1622 goto out_put;
1623 }
David S. Miller39d8c1b2006-03-20 17:13:49 -08001624
Frank Filza79af592005-09-27 15:23:38 -07001625 err = security_socket_accept(sock, newsock);
1626 if (err)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001627 goto out_fd;
Frank Filza79af592005-09-27 15:23:38 -07001628
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 err = sock->ops->accept(sock, newsock, sock->file->f_flags);
1630 if (err < 0)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001631 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
1633 if (upeer_sockaddr) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001634 if (newsock->ops->getname(newsock, (struct sockaddr *)&address,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001635 &len, 2) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 err = -ECONNABORTED;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001637 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 }
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001639 err = move_addr_to_user(&address,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001640 len, upeer_sockaddr, upeer_addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 if (err < 0)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001642 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 }
1644
1645 /* File flags are not inherited via accept() unlike another OSes. */
1646
David S. Miller39d8c1b2006-03-20 17:13:49 -08001647 fd_install(newfd, newfile);
1648 err = newfd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001651 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652out:
1653 return err;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001654out_fd:
David S. Miller9606a212006-04-01 01:00:14 -08001655 fput(newfile);
David S. Miller39d8c1b2006-03-20 17:13:49 -08001656 put_unused_fd(newfd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 goto out_put;
1658}
1659
Heiko Carstens20f37032009-01-14 14:14:23 +01001660SYSCALL_DEFINE3(accept, int, fd, struct sockaddr __user *, upeer_sockaddr,
1661 int __user *, upeer_addrlen)
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001662{
Ulrich Drepperde11def2008-11-19 15:36:14 -08001663 return sys_accept4(fd, upeer_sockaddr, upeer_addrlen, 0);
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001664}
1665
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666/*
1667 * Attempt to connect to a socket with the server address. The address
1668 * is in user space so we verify it is OK and move it to kernel space.
1669 *
1670 * For 1003.1g we need to add clean support for a bind to AF_UNSPEC to
1671 * break bindings
1672 *
1673 * NOTE: 1003.1g draft 6.3 is broken with respect to AX.25/NetROM and
1674 * other SEQPACKET protocols that take time to connect() as it doesn't
1675 * include the -EINPROGRESS status for such sockets.
1676 */
1677
Heiko Carstens20f37032009-01-14 14:14:23 +01001678SYSCALL_DEFINE3(connect, int, fd, struct sockaddr __user *, uservaddr,
1679 int, addrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680{
1681 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001682 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001683 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001685 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 if (!sock)
1687 goto out;
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001688 err = move_addr_to_kernel(uservaddr, addrlen, &address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 if (err < 0)
1690 goto out_put;
1691
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001692 err =
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001693 security_socket_connect(sock, (struct sockaddr *)&address, addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 if (err)
1695 goto out_put;
1696
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001697 err = sock->ops->connect(sock, (struct sockaddr *)&address, addrlen,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 sock->file->f_flags);
1699out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001700 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701out:
1702 return err;
1703}
1704
1705/*
1706 * Get the local address ('name') of a socket object. Move the obtained
1707 * name to user space.
1708 */
1709
Heiko Carstens20f37032009-01-14 14:14:23 +01001710SYSCALL_DEFINE3(getsockname, int, fd, struct sockaddr __user *, usockaddr,
1711 int __user *, usockaddr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712{
1713 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001714 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001715 int len, err, fput_needed;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001716
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001717 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 if (!sock)
1719 goto out;
1720
1721 err = security_socket_getsockname(sock);
1722 if (err)
1723 goto out_put;
1724
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001725 err = sock->ops->getname(sock, (struct sockaddr *)&address, &len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 if (err)
1727 goto out_put;
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001728 err = move_addr_to_user(&address, len, usockaddr, usockaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729
1730out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001731 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732out:
1733 return err;
1734}
1735
1736/*
1737 * Get the remote address ('name') of a socket object. Move the obtained
1738 * name to user space.
1739 */
1740
Heiko Carstens20f37032009-01-14 14:14:23 +01001741SYSCALL_DEFINE3(getpeername, int, fd, struct sockaddr __user *, usockaddr,
1742 int __user *, usockaddr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743{
1744 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001745 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001746 int len, err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001748 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1749 if (sock != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 err = security_socket_getpeername(sock);
1751 if (err) {
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001752 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 return err;
1754 }
1755
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001756 err =
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001757 sock->ops->getname(sock, (struct sockaddr *)&address, &len,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001758 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 if (!err)
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001760 err = move_addr_to_user(&address, len, usockaddr,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001761 usockaddr_len);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001762 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 }
1764 return err;
1765}
1766
1767/*
1768 * Send a datagram to a given address. We move the address into kernel
1769 * space and check the user space data area is readable before invoking
1770 * the protocol.
1771 */
1772
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001773SYSCALL_DEFINE6(sendto, int, fd, void __user *, buff, size_t, len,
Eric Dumazet95c96172012-04-15 05:58:06 +00001774 unsigned int, flags, struct sockaddr __user *, addr,
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001775 int, addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776{
1777 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001778 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 int err;
1780 struct msghdr msg;
1781 struct iovec iov;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001782 int fput_needed;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001783
Linus Torvalds253eacc2010-10-30 16:43:10 -07001784 if (len > INT_MAX)
1785 len = INT_MAX;
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001786 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1787 if (!sock)
David S. Miller4387ff72007-02-08 15:06:08 -08001788 goto out;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001789
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001790 iov.iov_base = buff;
1791 iov.iov_len = len;
1792 msg.msg_name = NULL;
1793 msg.msg_iov = &iov;
1794 msg.msg_iovlen = 1;
1795 msg.msg_control = NULL;
1796 msg.msg_controllen = 0;
1797 msg.msg_namelen = 0;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001798 if (addr) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001799 err = move_addr_to_kernel(addr, addr_len, &address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 if (err < 0)
1801 goto out_put;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001802 msg.msg_name = (struct sockaddr *)&address;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001803 msg.msg_namelen = addr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 }
1805 if (sock->file->f_flags & O_NONBLOCK)
1806 flags |= MSG_DONTWAIT;
1807 msg.msg_flags = flags;
1808 err = sock_sendmsg(sock, &msg, len);
1809
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001810out_put:
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001811 fput_light(sock->file, fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08001812out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 return err;
1814}
1815
1816/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001817 * Send a datagram down a socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 */
1819
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001820SYSCALL_DEFINE4(send, int, fd, void __user *, buff, size_t, len,
Eric Dumazet95c96172012-04-15 05:58:06 +00001821 unsigned int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822{
1823 return sys_sendto(fd, buff, len, flags, NULL, 0);
1824}
1825
1826/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001827 * Receive a frame from the socket and optionally record the address of the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 * sender. We verify the buffers are writable and if needed move the
1829 * sender address from kernel to user space.
1830 */
1831
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001832SYSCALL_DEFINE6(recvfrom, int, fd, void __user *, ubuf, size_t, size,
Eric Dumazet95c96172012-04-15 05:58:06 +00001833 unsigned int, flags, struct sockaddr __user *, addr,
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001834 int __user *, addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835{
1836 struct socket *sock;
1837 struct iovec iov;
1838 struct msghdr msg;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001839 struct sockaddr_storage address;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001840 int err, err2;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001841 int fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842
Linus Torvalds253eacc2010-10-30 16:43:10 -07001843 if (size > INT_MAX)
1844 size = INT_MAX;
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001845 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 if (!sock)
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001847 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001849 msg.msg_control = NULL;
1850 msg.msg_controllen = 0;
1851 msg.msg_iovlen = 1;
1852 msg.msg_iov = &iov;
1853 iov.iov_len = size;
1854 iov.iov_base = ubuf;
Hannes Frederic Sowaf3d33422013-11-21 03:14:22 +01001855 /* Save some cycles and don't copy the address if not needed */
1856 msg.msg_name = addr ? (struct sockaddr *)&address : NULL;
1857 /* We assume all kernel code knows the size of sockaddr_storage */
1858 msg.msg_namelen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 if (sock->file->f_flags & O_NONBLOCK)
1860 flags |= MSG_DONTWAIT;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001861 err = sock_recvmsg(sock, &msg, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001863 if (err >= 0 && addr != NULL) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001864 err2 = move_addr_to_user(&address,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001865 msg.msg_namelen, addr, addr_len);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001866 if (err2 < 0)
1867 err = err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 }
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001869
1870 fput_light(sock->file, fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08001871out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 return err;
1873}
1874
1875/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001876 * Receive a datagram from a socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 */
1878
Jan Glauberb7c0ddf2014-04-16 09:32:48 +02001879SYSCALL_DEFINE4(recv, int, fd, void __user *, ubuf, size_t, size,
1880 unsigned int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881{
1882 return sys_recvfrom(fd, ubuf, size, flags, NULL, NULL);
1883}
1884
1885/*
1886 * Set a socket option. Because we don't know the option lengths we have
1887 * to pass the user mode parameter for the protocols to sort out.
1888 */
1889
Heiko Carstens20f37032009-01-14 14:14:23 +01001890SYSCALL_DEFINE5(setsockopt, int, fd, int, level, int, optname,
1891 char __user *, optval, int, optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001893 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 struct socket *sock;
1895
1896 if (optlen < 0)
1897 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001898
1899 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1900 if (sock != NULL) {
1901 err = security_socket_setsockopt(sock, level, optname);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001902 if (err)
1903 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904
1905 if (level == SOL_SOCKET)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001906 err =
1907 sock_setsockopt(sock, level, optname, optval,
1908 optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 else
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001910 err =
1911 sock->ops->setsockopt(sock, level, optname, optval,
1912 optlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001913out_put:
1914 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 }
1916 return err;
1917}
1918
1919/*
1920 * Get a socket option. Because we don't know the option lengths we have
1921 * to pass a user mode parameter for the protocols to sort out.
1922 */
1923
Heiko Carstens20f37032009-01-14 14:14:23 +01001924SYSCALL_DEFINE5(getsockopt, int, fd, int, level, int, optname,
1925 char __user *, optval, int __user *, optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001927 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 struct socket *sock;
1929
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001930 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1931 if (sock != NULL) {
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001932 err = security_socket_getsockopt(sock, level, optname);
1933 if (err)
1934 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935
1936 if (level == SOL_SOCKET)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001937 err =
1938 sock_getsockopt(sock, level, optname, optval,
1939 optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 else
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001941 err =
1942 sock->ops->getsockopt(sock, level, optname, optval,
1943 optlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001944out_put:
1945 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 }
1947 return err;
1948}
1949
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950/*
1951 * Shutdown a socket.
1952 */
1953
Heiko Carstens754fe8d2009-01-14 14:14:09 +01001954SYSCALL_DEFINE2(shutdown, int, fd, int, how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001956 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 struct socket *sock;
1958
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001959 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1960 if (sock != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 err = security_socket_shutdown(sock, how);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001962 if (!err)
1963 err = sock->ops->shutdown(sock, how);
1964 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 }
1966 return err;
1967}
1968
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001969/* A couple of helpful macros for getting the address of the 32/64 bit
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 * fields which are the same type (int / unsigned) on our platforms.
1971 */
1972#define COMPAT_MSG(msg, member) ((MSG_CMSG_COMPAT & flags) ? &msg##_compat->member : &msg->member)
1973#define COMPAT_NAMELEN(msg) COMPAT_MSG(msg, msg_namelen)
1974#define COMPAT_FLAGS(msg) COMPAT_MSG(msg, msg_flags)
1975
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00001976struct used_address {
1977 struct sockaddr_storage name;
1978 unsigned int name_len;
1979};
1980
Dan Carpenter1661bf32013-10-03 00:27:20 +03001981static int copy_msghdr_from_user(struct msghdr *kmsg,
1982 struct msghdr __user *umsg)
1983{
1984 if (copy_from_user(kmsg, umsg, sizeof(struct msghdr)))
1985 return -EFAULT;
Matthew Leachdbb490b2014-03-11 11:58:27 +00001986
1987 if (kmsg->msg_namelen < 0)
1988 return -EINVAL;
1989
Dan Carpenter1661bf32013-10-03 00:27:20 +03001990 if (kmsg->msg_namelen > sizeof(struct sockaddr_storage))
Dan Carpenterdb31c552013-11-27 15:40:21 +03001991 kmsg->msg_namelen = sizeof(struct sockaddr_storage);
Dan Carpenter1661bf32013-10-03 00:27:20 +03001992 return 0;
1993}
1994
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00001995static int ___sys_sendmsg(struct socket *sock, struct msghdr __user *msg,
Eric Dumazet95c96172012-04-15 05:58:06 +00001996 struct msghdr *msg_sys, unsigned int flags,
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00001997 struct used_address *used_address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001999 struct compat_msghdr __user *msg_compat =
2000 (struct compat_msghdr __user *)msg;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07002001 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 struct iovec iovstack[UIO_FASTIOV], *iov = iovstack;
Alex Williamsonb9d717a2005-09-26 14:28:02 -07002003 unsigned char ctl[sizeof(struct cmsghdr) + 20]
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002004 __attribute__ ((aligned(sizeof(__kernel_size_t))));
2005 /* 20 is size of ipv6_pktinfo */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 unsigned char *ctl_buf = ctl;
Eric Dumazeta74e9102012-04-20 20:04:01 +02002007 int err, ctl_len, total_len;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002008
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 err = -EFAULT;
2010 if (MSG_CMSG_COMPAT & flags) {
Anton Blanchard228e5482011-05-02 20:21:35 +00002011 if (get_compat_msghdr(msg_sys, msg_compat))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 return -EFAULT;
Dan Carpenter1661bf32013-10-03 00:27:20 +03002013 } else {
2014 err = copy_msghdr_from_user(msg_sys, msg);
2015 if (err)
2016 return err;
2017 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018
Anton Blanchard228e5482011-05-02 20:21:35 +00002019 if (msg_sys->msg_iovlen > UIO_FASTIOV) {
Eric Dumazeta74e9102012-04-20 20:04:01 +02002020 err = -EMSGSIZE;
2021 if (msg_sys->msg_iovlen > UIO_MAXIOV)
2022 goto out;
2023 err = -ENOMEM;
2024 iov = kmalloc(msg_sys->msg_iovlen * sizeof(struct iovec),
2025 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 if (!iov)
Anton Blanchard228e5482011-05-02 20:21:35 +00002027 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 }
2029
2030 /* This will also move the address data into kernel space */
2031 if (MSG_CMSG_COMPAT & flags) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00002032 err = verify_compat_iovec(msg_sys, iov, &address, VERIFY_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 } else
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00002034 err = verify_iovec(msg_sys, iov, &address, VERIFY_READ);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002035 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 goto out_freeiov;
2037 total_len = err;
2038
2039 err = -ENOBUFS;
2040
Anton Blanchard228e5482011-05-02 20:21:35 +00002041 if (msg_sys->msg_controllen > INT_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 goto out_freeiov;
Anton Blanchard228e5482011-05-02 20:21:35 +00002043 ctl_len = msg_sys->msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 if ((MSG_CMSG_COMPAT & flags) && ctl_len) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002045 err =
Anton Blanchard228e5482011-05-02 20:21:35 +00002046 cmsghdr_from_user_compat_to_kern(msg_sys, sock->sk, ctl,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002047 sizeof(ctl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 if (err)
2049 goto out_freeiov;
Anton Blanchard228e5482011-05-02 20:21:35 +00002050 ctl_buf = msg_sys->msg_control;
2051 ctl_len = msg_sys->msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 } else if (ctl_len) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002053 if (ctl_len > sizeof(ctl)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 ctl_buf = sock_kmalloc(sock->sk, ctl_len, GFP_KERNEL);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002055 if (ctl_buf == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 goto out_freeiov;
2057 }
2058 err = -EFAULT;
2059 /*
Anton Blanchard228e5482011-05-02 20:21:35 +00002060 * Careful! Before this, msg_sys->msg_control contains a user pointer.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 * Afterwards, it will be a kernel pointer. Thus the compiler-assisted
2062 * checking falls down on this.
2063 */
Namhyung Kimfb8621b2010-09-07 03:55:00 +00002064 if (copy_from_user(ctl_buf,
Anton Blanchard228e5482011-05-02 20:21:35 +00002065 (void __user __force *)msg_sys->msg_control,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002066 ctl_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 goto out_freectl;
Anton Blanchard228e5482011-05-02 20:21:35 +00002068 msg_sys->msg_control = ctl_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 }
Anton Blanchard228e5482011-05-02 20:21:35 +00002070 msg_sys->msg_flags = flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071
2072 if (sock->file->f_flags & O_NONBLOCK)
Anton Blanchard228e5482011-05-02 20:21:35 +00002073 msg_sys->msg_flags |= MSG_DONTWAIT;
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002074 /*
2075 * If this is sendmmsg() and current destination address is same as
2076 * previously succeeded address, omit asking LSM's decision.
2077 * used_address->name_len is initialized to UINT_MAX so that the first
2078 * destination address never matches.
2079 */
Mathieu Desnoyersbc909d92011-08-24 19:45:03 -07002080 if (used_address && msg_sys->msg_name &&
2081 used_address->name_len == msg_sys->msg_namelen &&
2082 !memcmp(&used_address->name, msg_sys->msg_name,
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002083 used_address->name_len)) {
2084 err = sock_sendmsg_nosec(sock, msg_sys, total_len);
2085 goto out_freectl;
2086 }
2087 err = sock_sendmsg(sock, msg_sys, total_len);
2088 /*
2089 * If this is sendmmsg() and sending to current destination address was
2090 * successful, remember it.
2091 */
2092 if (used_address && err >= 0) {
2093 used_address->name_len = msg_sys->msg_namelen;
Mathieu Desnoyersbc909d92011-08-24 19:45:03 -07002094 if (msg_sys->msg_name)
2095 memcpy(&used_address->name, msg_sys->msg_name,
2096 used_address->name_len);
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002097 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098
2099out_freectl:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002100 if (ctl_buf != ctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 sock_kfree_s(sock->sk, ctl_buf, ctl_len);
2102out_freeiov:
2103 if (iov != iovstack)
Eric Dumazeta74e9102012-04-20 20:04:01 +02002104 kfree(iov);
Anton Blanchard228e5482011-05-02 20:21:35 +00002105out:
2106 return err;
2107}
2108
2109/*
2110 * BSD sendmsg interface
2111 */
2112
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002113long __sys_sendmsg(int fd, struct msghdr __user *msg, unsigned flags)
Anton Blanchard228e5482011-05-02 20:21:35 +00002114{
2115 int fput_needed, err;
2116 struct msghdr msg_sys;
Andy Lutomirski1be374a2013-05-22 14:07:44 -07002117 struct socket *sock;
Anton Blanchard228e5482011-05-02 20:21:35 +00002118
Andy Lutomirski1be374a2013-05-22 14:07:44 -07002119 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Anton Blanchard228e5482011-05-02 20:21:35 +00002120 if (!sock)
2121 goto out;
2122
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002123 err = ___sys_sendmsg(sock, msg, &msg_sys, flags, NULL);
Anton Blanchard228e5482011-05-02 20:21:35 +00002124
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002125 fput_light(sock->file, fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002126out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 return err;
2128}
2129
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002130SYSCALL_DEFINE3(sendmsg, int, fd, struct msghdr __user *, msg, unsigned int, flags)
2131{
2132 if (flags & MSG_CMSG_COMPAT)
2133 return -EINVAL;
2134 return __sys_sendmsg(fd, msg, flags);
2135}
2136
Anton Blanchard228e5482011-05-02 20:21:35 +00002137/*
2138 * Linux sendmmsg interface
2139 */
2140
2141int __sys_sendmmsg(int fd, struct mmsghdr __user *mmsg, unsigned int vlen,
2142 unsigned int flags)
2143{
2144 int fput_needed, err, datagrams;
2145 struct socket *sock;
2146 struct mmsghdr __user *entry;
2147 struct compat_mmsghdr __user *compat_entry;
2148 struct msghdr msg_sys;
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002149 struct used_address used_address;
Anton Blanchard228e5482011-05-02 20:21:35 +00002150
Anton Blanchard98382f42011-08-04 14:07:39 +00002151 if (vlen > UIO_MAXIOV)
2152 vlen = UIO_MAXIOV;
Anton Blanchard228e5482011-05-02 20:21:35 +00002153
2154 datagrams = 0;
2155
2156 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2157 if (!sock)
2158 return err;
2159
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002160 used_address.name_len = UINT_MAX;
Anton Blanchard228e5482011-05-02 20:21:35 +00002161 entry = mmsg;
2162 compat_entry = (struct compat_mmsghdr __user *)mmsg;
Anton Blanchard728ffb82011-08-04 14:07:38 +00002163 err = 0;
Anton Blanchard228e5482011-05-02 20:21:35 +00002164
2165 while (datagrams < vlen) {
Anton Blanchard228e5482011-05-02 20:21:35 +00002166 if (MSG_CMSG_COMPAT & flags) {
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002167 err = ___sys_sendmsg(sock, (struct msghdr __user *)compat_entry,
2168 &msg_sys, flags, &used_address);
Anton Blanchard228e5482011-05-02 20:21:35 +00002169 if (err < 0)
2170 break;
2171 err = __put_user(err, &compat_entry->msg_len);
2172 ++compat_entry;
2173 } else {
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002174 err = ___sys_sendmsg(sock,
2175 (struct msghdr __user *)entry,
2176 &msg_sys, flags, &used_address);
Anton Blanchard228e5482011-05-02 20:21:35 +00002177 if (err < 0)
2178 break;
2179 err = put_user(err, &entry->msg_len);
2180 ++entry;
2181 }
2182
2183 if (err)
2184 break;
2185 ++datagrams;
2186 }
2187
Anton Blanchard228e5482011-05-02 20:21:35 +00002188 fput_light(sock->file, fput_needed);
2189
Anton Blanchard728ffb82011-08-04 14:07:38 +00002190 /* We only return an error if no datagrams were able to be sent */
2191 if (datagrams != 0)
Anton Blanchard228e5482011-05-02 20:21:35 +00002192 return datagrams;
2193
Anton Blanchard228e5482011-05-02 20:21:35 +00002194 return err;
2195}
2196
2197SYSCALL_DEFINE4(sendmmsg, int, fd, struct mmsghdr __user *, mmsg,
2198 unsigned int, vlen, unsigned int, flags)
2199{
Andy Lutomirski1be374a2013-05-22 14:07:44 -07002200 if (flags & MSG_CMSG_COMPAT)
2201 return -EINVAL;
Anton Blanchard228e5482011-05-02 20:21:35 +00002202 return __sys_sendmmsg(fd, mmsg, vlen, flags);
2203}
2204
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002205static int ___sys_recvmsg(struct socket *sock, struct msghdr __user *msg,
Eric Dumazet95c96172012-04-15 05:58:06 +00002206 struct msghdr *msg_sys, unsigned int flags, int nosec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002208 struct compat_msghdr __user *msg_compat =
2209 (struct compat_msghdr __user *)msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 struct iovec iovstack[UIO_FASTIOV];
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002211 struct iovec *iov = iovstack;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 unsigned long cmsg_ptr;
Eric Dumazeta74e9102012-04-20 20:04:01 +02002213 int err, total_len, len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214
2215 /* kernel mode address */
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07002216 struct sockaddr_storage addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217
2218 /* user mode address pointers */
2219 struct sockaddr __user *uaddr;
2220 int __user *uaddr_len;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002221
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 if (MSG_CMSG_COMPAT & flags) {
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002223 if (get_compat_msghdr(msg_sys, msg_compat))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 return -EFAULT;
Dan Carpenter1661bf32013-10-03 00:27:20 +03002225 } else {
2226 err = copy_msghdr_from_user(msg_sys, msg);
2227 if (err)
2228 return err;
2229 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002231 if (msg_sys->msg_iovlen > UIO_FASTIOV) {
Eric Dumazeta74e9102012-04-20 20:04:01 +02002232 err = -EMSGSIZE;
2233 if (msg_sys->msg_iovlen > UIO_MAXIOV)
2234 goto out;
2235 err = -ENOMEM;
2236 iov = kmalloc(msg_sys->msg_iovlen * sizeof(struct iovec),
2237 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 if (!iov)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002239 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 }
2241
Hannes Frederic Sowaf3d33422013-11-21 03:14:22 +01002242 /* Save the user-mode address (verify_iovec will change the
2243 * kernel msghdr to use the kernel address space)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 */
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002245 uaddr = (__force void __user *)msg_sys->msg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 uaddr_len = COMPAT_NAMELEN(msg);
Hannes Frederic Sowaf3d33422013-11-21 03:14:22 +01002247 if (MSG_CMSG_COMPAT & flags)
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00002248 err = verify_compat_iovec(msg_sys, iov, &addr, VERIFY_WRITE);
Hannes Frederic Sowaf3d33422013-11-21 03:14:22 +01002249 else
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00002250 err = verify_iovec(msg_sys, iov, &addr, VERIFY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 if (err < 0)
2252 goto out_freeiov;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002253 total_len = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002255 cmsg_ptr = (unsigned long)msg_sys->msg_control;
2256 msg_sys->msg_flags = flags & (MSG_CMSG_CLOEXEC|MSG_CMSG_COMPAT);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002257
Hannes Frederic Sowaf3d33422013-11-21 03:14:22 +01002258 /* We assume all kernel code knows the size of sockaddr_storage */
2259 msg_sys->msg_namelen = 0;
2260
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 if (sock->file->f_flags & O_NONBLOCK)
2262 flags |= MSG_DONTWAIT;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002263 err = (nosec ? sock_recvmsg_nosec : sock_recvmsg)(sock, msg_sys,
2264 total_len, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 if (err < 0)
2266 goto out_freeiov;
2267 len = err;
2268
2269 if (uaddr != NULL) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00002270 err = move_addr_to_user(&addr,
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002271 msg_sys->msg_namelen, uaddr,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002272 uaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 if (err < 0)
2274 goto out_freeiov;
2275 }
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002276 err = __put_user((msg_sys->msg_flags & ~MSG_CMSG_COMPAT),
David S. Miller37f7f422005-09-16 16:51:01 -07002277 COMPAT_FLAGS(msg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 if (err)
2279 goto out_freeiov;
2280 if (MSG_CMSG_COMPAT & flags)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002281 err = __put_user((unsigned long)msg_sys->msg_control - cmsg_ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 &msg_compat->msg_controllen);
2283 else
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002284 err = __put_user((unsigned long)msg_sys->msg_control - cmsg_ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 &msg->msg_controllen);
2286 if (err)
2287 goto out_freeiov;
2288 err = len;
2289
2290out_freeiov:
2291 if (iov != iovstack)
Eric Dumazeta74e9102012-04-20 20:04:01 +02002292 kfree(iov);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002293out:
2294 return err;
2295}
2296
2297/*
2298 * BSD recvmsg interface
2299 */
2300
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002301long __sys_recvmsg(int fd, struct msghdr __user *msg, unsigned flags)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002302{
2303 int fput_needed, err;
2304 struct msghdr msg_sys;
Andy Lutomirski1be374a2013-05-22 14:07:44 -07002305 struct socket *sock;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002306
Andy Lutomirski1be374a2013-05-22 14:07:44 -07002307 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002308 if (!sock)
2309 goto out;
2310
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002311 err = ___sys_recvmsg(sock, msg, &msg_sys, flags, 0);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002312
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002313 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314out:
2315 return err;
2316}
2317
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002318SYSCALL_DEFINE3(recvmsg, int, fd, struct msghdr __user *, msg,
2319 unsigned int, flags)
2320{
2321 if (flags & MSG_CMSG_COMPAT)
2322 return -EINVAL;
2323 return __sys_recvmsg(fd, msg, flags);
2324}
2325
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002326/*
2327 * Linux recvmmsg interface
2328 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002330int __sys_recvmmsg(int fd, struct mmsghdr __user *mmsg, unsigned int vlen,
2331 unsigned int flags, struct timespec *timeout)
2332{
2333 int fput_needed, err, datagrams;
2334 struct socket *sock;
2335 struct mmsghdr __user *entry;
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002336 struct compat_mmsghdr __user *compat_entry;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002337 struct msghdr msg_sys;
2338 struct timespec end_time;
2339
2340 if (timeout &&
2341 poll_select_set_timeout(&end_time, timeout->tv_sec,
2342 timeout->tv_nsec))
2343 return -EINVAL;
2344
2345 datagrams = 0;
2346
2347 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2348 if (!sock)
2349 return err;
2350
2351 err = sock_error(sock->sk);
2352 if (err)
2353 goto out_put;
2354
2355 entry = mmsg;
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002356 compat_entry = (struct compat_mmsghdr __user *)mmsg;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002357
2358 while (datagrams < vlen) {
2359 /*
2360 * No need to ask LSM for more than the first datagram.
2361 */
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002362 if (MSG_CMSG_COMPAT & flags) {
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002363 err = ___sys_recvmsg(sock, (struct msghdr __user *)compat_entry,
2364 &msg_sys, flags & ~MSG_WAITFORONE,
2365 datagrams);
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002366 if (err < 0)
2367 break;
2368 err = __put_user(err, &compat_entry->msg_len);
2369 ++compat_entry;
2370 } else {
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002371 err = ___sys_recvmsg(sock,
2372 (struct msghdr __user *)entry,
2373 &msg_sys, flags & ~MSG_WAITFORONE,
2374 datagrams);
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002375 if (err < 0)
2376 break;
2377 err = put_user(err, &entry->msg_len);
2378 ++entry;
2379 }
2380
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002381 if (err)
2382 break;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002383 ++datagrams;
2384
Brandon L Black71c5c152010-03-26 16:18:03 +00002385 /* MSG_WAITFORONE turns on MSG_DONTWAIT after one packet */
2386 if (flags & MSG_WAITFORONE)
2387 flags |= MSG_DONTWAIT;
2388
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002389 if (timeout) {
2390 ktime_get_ts(timeout);
2391 *timeout = timespec_sub(end_time, *timeout);
2392 if (timeout->tv_sec < 0) {
2393 timeout->tv_sec = timeout->tv_nsec = 0;
2394 break;
2395 }
2396
2397 /* Timeout, return less than vlen datagrams */
2398 if (timeout->tv_nsec == 0 && timeout->tv_sec == 0)
2399 break;
2400 }
2401
2402 /* Out of band data, return right away */
2403 if (msg_sys.msg_flags & MSG_OOB)
2404 break;
2405 }
2406
2407out_put:
2408 fput_light(sock->file, fput_needed);
2409
2410 if (err == 0)
2411 return datagrams;
2412
2413 if (datagrams != 0) {
2414 /*
2415 * We may return less entries than requested (vlen) if the
2416 * sock is non block and there aren't enough datagrams...
2417 */
2418 if (err != -EAGAIN) {
2419 /*
2420 * ... or if recvmsg returns an error after we
2421 * received some datagrams, where we record the
2422 * error to return on the next call or if the
2423 * app asks about it using getsockopt(SO_ERROR).
2424 */
2425 sock->sk->sk_err = -err;
2426 }
2427
2428 return datagrams;
2429 }
2430
2431 return err;
2432}
2433
2434SYSCALL_DEFINE5(recvmmsg, int, fd, struct mmsghdr __user *, mmsg,
2435 unsigned int, vlen, unsigned int, flags,
2436 struct timespec __user *, timeout)
2437{
2438 int datagrams;
2439 struct timespec timeout_sys;
2440
Andy Lutomirski1be374a2013-05-22 14:07:44 -07002441 if (flags & MSG_CMSG_COMPAT)
2442 return -EINVAL;
2443
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002444 if (!timeout)
2445 return __sys_recvmmsg(fd, mmsg, vlen, flags, NULL);
2446
2447 if (copy_from_user(&timeout_sys, timeout, sizeof(timeout_sys)))
2448 return -EFAULT;
2449
2450 datagrams = __sys_recvmmsg(fd, mmsg, vlen, flags, &timeout_sys);
2451
2452 if (datagrams > 0 &&
2453 copy_to_user(timeout, &timeout_sys, sizeof(timeout_sys)))
2454 datagrams = -EFAULT;
2455
2456 return datagrams;
2457}
2458
2459#ifdef __ARCH_WANT_SYS_SOCKETCALL
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460/* Argument list sizes for sys_socketcall */
2461#define AL(x) ((x) * sizeof(unsigned long))
Anton Blanchard228e5482011-05-02 20:21:35 +00002462static const unsigned char nargs[21] = {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002463 AL(0), AL(3), AL(3), AL(3), AL(2), AL(3),
2464 AL(3), AL(3), AL(4), AL(4), AL(4), AL(6),
2465 AL(6), AL(2), AL(5), AL(5), AL(3), AL(3),
Anton Blanchard228e5482011-05-02 20:21:35 +00002466 AL(4), AL(5), AL(4)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002467};
2468
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469#undef AL
2470
2471/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002472 * System call vectors.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 *
2474 * Argument checking cleaned up. Saved 20% in size.
2475 * This function doesn't need to set the kernel lock because
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002476 * it is set by the callees.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477 */
2478
Heiko Carstens3e0fa652009-01-14 14:14:24 +01002479SYSCALL_DEFINE2(socketcall, int, call, unsigned long __user *, args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480{
Chen Gang2950fa92013-04-07 16:55:23 +08002481 unsigned long a[AUDITSC_ARGS];
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002482 unsigned long a0, a1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 int err;
Arjan van de Ven47379052009-09-28 12:57:44 -07002484 unsigned int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485
Anton Blanchard228e5482011-05-02 20:21:35 +00002486 if (call < 1 || call > SYS_SENDMMSG)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 return -EINVAL;
2488
Arjan van de Ven47379052009-09-28 12:57:44 -07002489 len = nargs[call];
2490 if (len > sizeof(a))
2491 return -EINVAL;
2492
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 /* copy_from_user should be SMP safe. */
Arjan van de Ven47379052009-09-28 12:57:44 -07002494 if (copy_from_user(a, args, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495 return -EFAULT;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002496
Chen Gang2950fa92013-04-07 16:55:23 +08002497 err = audit_socketcall(nargs[call] / sizeof(unsigned long), a);
2498 if (err)
2499 return err;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002500
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002501 a0 = a[0];
2502 a1 = a[1];
2503
2504 switch (call) {
2505 case SYS_SOCKET:
2506 err = sys_socket(a0, a1, a[2]);
2507 break;
2508 case SYS_BIND:
2509 err = sys_bind(a0, (struct sockaddr __user *)a1, a[2]);
2510 break;
2511 case SYS_CONNECT:
2512 err = sys_connect(a0, (struct sockaddr __user *)a1, a[2]);
2513 break;
2514 case SYS_LISTEN:
2515 err = sys_listen(a0, a1);
2516 break;
2517 case SYS_ACCEPT:
Ulrich Drepperde11def2008-11-19 15:36:14 -08002518 err = sys_accept4(a0, (struct sockaddr __user *)a1,
2519 (int __user *)a[2], 0);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002520 break;
2521 case SYS_GETSOCKNAME:
2522 err =
2523 sys_getsockname(a0, (struct sockaddr __user *)a1,
2524 (int __user *)a[2]);
2525 break;
2526 case SYS_GETPEERNAME:
2527 err =
2528 sys_getpeername(a0, (struct sockaddr __user *)a1,
2529 (int __user *)a[2]);
2530 break;
2531 case SYS_SOCKETPAIR:
2532 err = sys_socketpair(a0, a1, a[2], (int __user *)a[3]);
2533 break;
2534 case SYS_SEND:
2535 err = sys_send(a0, (void __user *)a1, a[2], a[3]);
2536 break;
2537 case SYS_SENDTO:
2538 err = sys_sendto(a0, (void __user *)a1, a[2], a[3],
2539 (struct sockaddr __user *)a[4], a[5]);
2540 break;
2541 case SYS_RECV:
2542 err = sys_recv(a0, (void __user *)a1, a[2], a[3]);
2543 break;
2544 case SYS_RECVFROM:
2545 err = sys_recvfrom(a0, (void __user *)a1, a[2], a[3],
2546 (struct sockaddr __user *)a[4],
2547 (int __user *)a[5]);
2548 break;
2549 case SYS_SHUTDOWN:
2550 err = sys_shutdown(a0, a1);
2551 break;
2552 case SYS_SETSOCKOPT:
2553 err = sys_setsockopt(a0, a1, a[2], (char __user *)a[3], a[4]);
2554 break;
2555 case SYS_GETSOCKOPT:
2556 err =
2557 sys_getsockopt(a0, a1, a[2], (char __user *)a[3],
2558 (int __user *)a[4]);
2559 break;
2560 case SYS_SENDMSG:
2561 err = sys_sendmsg(a0, (struct msghdr __user *)a1, a[2]);
2562 break;
Anton Blanchard228e5482011-05-02 20:21:35 +00002563 case SYS_SENDMMSG:
2564 err = sys_sendmmsg(a0, (struct mmsghdr __user *)a1, a[2], a[3]);
2565 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002566 case SYS_RECVMSG:
2567 err = sys_recvmsg(a0, (struct msghdr __user *)a1, a[2]);
2568 break;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002569 case SYS_RECVMMSG:
2570 err = sys_recvmmsg(a0, (struct mmsghdr __user *)a1, a[2], a[3],
2571 (struct timespec __user *)a[4]);
2572 break;
Ulrich Drepperde11def2008-11-19 15:36:14 -08002573 case SYS_ACCEPT4:
2574 err = sys_accept4(a0, (struct sockaddr __user *)a1,
2575 (int __user *)a[2], a[3]);
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07002576 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002577 default:
2578 err = -EINVAL;
2579 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580 }
2581 return err;
2582}
2583
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002584#endif /* __ARCH_WANT_SYS_SOCKETCALL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002586/**
2587 * sock_register - add a socket protocol handler
2588 * @ops: description of protocol
2589 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 * This function is called by a protocol handler that wants to
2591 * advertise its address family, and have it linked into the
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002592 * socket interface. The value ops->family coresponds to the
2593 * socket system call protocol family.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 */
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002595int sock_register(const struct net_proto_family *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596{
2597 int err;
2598
2599 if (ops->family >= NPROTO) {
Yang Yingliang3410f222014-02-12 17:09:55 +08002600 pr_crit("protocol %d >= NPROTO(%d)\n", ops->family, NPROTO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 return -ENOBUFS;
2602 }
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002603
2604 spin_lock(&net_family_lock);
Eric Dumazet190683a2010-11-10 10:50:44 +00002605 if (rcu_dereference_protected(net_families[ops->family],
2606 lockdep_is_held(&net_family_lock)))
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002607 err = -EEXIST;
2608 else {
Eric Dumazetcf778b02012-01-12 04:41:32 +00002609 rcu_assign_pointer(net_families[ops->family], ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 err = 0;
2611 }
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002612 spin_unlock(&net_family_lock);
2613
Yang Yingliang3410f222014-02-12 17:09:55 +08002614 pr_info("NET: Registered protocol family %d\n", ops->family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 return err;
2616}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002617EXPORT_SYMBOL(sock_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002619/**
2620 * sock_unregister - remove a protocol handler
2621 * @family: protocol family to remove
2622 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623 * This function is called by a protocol handler that wants to
2624 * remove its address family, and have it unlinked from the
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002625 * new socket creation.
2626 *
2627 * If protocol handler is a module, then it can use module reference
2628 * counts to protect against new references. If protocol handler is not
2629 * a module then it needs to provide its own protection in
2630 * the ops->create routine.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 */
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002632void sock_unregister(int family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633{
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002634 BUG_ON(family < 0 || family >= NPROTO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002636 spin_lock(&net_family_lock);
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00002637 RCU_INIT_POINTER(net_families[family], NULL);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002638 spin_unlock(&net_family_lock);
2639
2640 synchronize_rcu();
2641
Yang Yingliang3410f222014-02-12 17:09:55 +08002642 pr_info("NET: Unregistered protocol family %d\n", family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002644EXPORT_SYMBOL(sock_unregister);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645
Andi Kleen77d76ea2005-12-22 12:43:42 -08002646static int __init sock_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647{
Nick Pigginb3e19d92011-01-07 17:50:11 +11002648 int err;
Eric W. Biederman2ca794e2012-04-19 13:20:32 +00002649 /*
2650 * Initialize the network sysctl infrastructure.
2651 */
2652 err = net_sysctl_init();
2653 if (err)
2654 goto out;
Nick Pigginb3e19d92011-01-07 17:50:11 +11002655
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002657 * Initialize skbuff SLAB cache
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658 */
2659 skb_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660
2661 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002662 * Initialize the protocols module.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663 */
2664
2665 init_inodecache();
Nick Pigginb3e19d92011-01-07 17:50:11 +11002666
2667 err = register_filesystem(&sock_fs_type);
2668 if (err)
2669 goto out_fs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670 sock_mnt = kern_mount(&sock_fs_type);
Nick Pigginb3e19d92011-01-07 17:50:11 +11002671 if (IS_ERR(sock_mnt)) {
2672 err = PTR_ERR(sock_mnt);
2673 goto out_mount;
2674 }
Andi Kleen77d76ea2005-12-22 12:43:42 -08002675
2676 /* The real protocol initialization is performed in later initcalls.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677 */
2678
2679#ifdef CONFIG_NETFILTER
Pablo Neira Ayuso6d11cfd2013-05-22 22:42:36 +00002680 err = netfilter_init();
2681 if (err)
2682 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683#endif
David S. Millercbeb3212005-12-22 12:58:55 -08002684
Daniel Borkmann408eccc2014-04-01 16:20:23 +02002685 ptp_classifier_init();
Richard Cochranc1f19b52010-07-17 08:49:36 +00002686
Nick Pigginb3e19d92011-01-07 17:50:11 +11002687out:
2688 return err;
2689
2690out_mount:
2691 unregister_filesystem(&sock_fs_type);
2692out_fs:
2693 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694}
2695
Andi Kleen77d76ea2005-12-22 12:43:42 -08002696core_initcall(sock_init); /* early initcall */
2697
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698#ifdef CONFIG_PROC_FS
2699void socket_seq_show(struct seq_file *seq)
2700{
2701 int cpu;
2702 int counter = 0;
2703
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -07002704 for_each_possible_cpu(cpu)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002705 counter += per_cpu(sockets_in_use, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706
2707 /* It can be negative, by the way. 8) */
2708 if (counter < 0)
2709 counter = 0;
2710
2711 seq_printf(seq, "sockets: used %d\n", counter);
2712}
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002713#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714
Shaun Pereira89bbfc92006-03-21 23:58:08 -08002715#ifdef CONFIG_COMPAT
Arnd Bergmann6b960182009-11-06 23:10:54 -08002716static int do_siocgstamp(struct net *net, struct socket *sock,
H. Peter Anvin644595f2012-02-19 17:51:59 -08002717 unsigned int cmd, void __user *up)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002718{
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002719 mm_segment_t old_fs = get_fs();
2720 struct timeval ktv;
2721 int err;
2722
2723 set_fs(KERNEL_DS);
Arnd Bergmann6b960182009-11-06 23:10:54 -08002724 err = sock_do_ioctl(net, sock, cmd, (unsigned long)&ktv);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002725 set_fs(old_fs);
H. Peter Anvin644595f2012-02-19 17:51:59 -08002726 if (!err)
Mikulas Patockaed6fe9d2012-09-01 12:34:07 -04002727 err = compat_put_timeval(&ktv, up);
H. Peter Anvin644595f2012-02-19 17:51:59 -08002728
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002729 return err;
2730}
2731
Arnd Bergmann6b960182009-11-06 23:10:54 -08002732static int do_siocgstampns(struct net *net, struct socket *sock,
H. Peter Anvin644595f2012-02-19 17:51:59 -08002733 unsigned int cmd, void __user *up)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002734{
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002735 mm_segment_t old_fs = get_fs();
2736 struct timespec kts;
2737 int err;
2738
2739 set_fs(KERNEL_DS);
Arnd Bergmann6b960182009-11-06 23:10:54 -08002740 err = sock_do_ioctl(net, sock, cmd, (unsigned long)&kts);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002741 set_fs(old_fs);
H. Peter Anvin644595f2012-02-19 17:51:59 -08002742 if (!err)
Mikulas Patockaed6fe9d2012-09-01 12:34:07 -04002743 err = compat_put_timespec(&kts, up);
H. Peter Anvin644595f2012-02-19 17:51:59 -08002744
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002745 return err;
2746}
2747
Arnd Bergmann6b960182009-11-06 23:10:54 -08002748static int dev_ifname32(struct net *net, struct compat_ifreq __user *uifr32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002749{
2750 struct ifreq __user *uifr;
2751 int err;
2752
2753 uifr = compat_alloc_user_space(sizeof(struct ifreq));
Arnd Bergmann6b960182009-11-06 23:10:54 -08002754 if (copy_in_user(uifr, uifr32, sizeof(struct compat_ifreq)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002755 return -EFAULT;
2756
Arnd Bergmann6b960182009-11-06 23:10:54 -08002757 err = dev_ioctl(net, SIOCGIFNAME, uifr);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002758 if (err)
2759 return err;
2760
Arnd Bergmann6b960182009-11-06 23:10:54 -08002761 if (copy_in_user(uifr32, uifr, sizeof(struct compat_ifreq)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002762 return -EFAULT;
2763
2764 return 0;
2765}
2766
Arnd Bergmann6b960182009-11-06 23:10:54 -08002767static int dev_ifconf(struct net *net, struct compat_ifconf __user *uifc32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002768{
Arnd Bergmann6b960182009-11-06 23:10:54 -08002769 struct compat_ifconf ifc32;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002770 struct ifconf ifc;
2771 struct ifconf __user *uifc;
Arnd Bergmann6b960182009-11-06 23:10:54 -08002772 struct compat_ifreq __user *ifr32;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002773 struct ifreq __user *ifr;
2774 unsigned int i, j;
2775 int err;
2776
Arnd Bergmann6b960182009-11-06 23:10:54 -08002777 if (copy_from_user(&ifc32, uifc32, sizeof(struct compat_ifconf)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002778 return -EFAULT;
2779
Mathias Krause43da5f22012-08-15 11:31:57 +00002780 memset(&ifc, 0, sizeof(ifc));
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002781 if (ifc32.ifcbuf == 0) {
2782 ifc32.ifc_len = 0;
2783 ifc.ifc_len = 0;
2784 ifc.ifc_req = NULL;
2785 uifc = compat_alloc_user_space(sizeof(struct ifconf));
2786 } else {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002787 size_t len = ((ifc32.ifc_len / sizeof(struct compat_ifreq)) + 1) *
2788 sizeof(struct ifreq);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002789 uifc = compat_alloc_user_space(sizeof(struct ifconf) + len);
2790 ifc.ifc_len = len;
2791 ifr = ifc.ifc_req = (void __user *)(uifc + 1);
2792 ifr32 = compat_ptr(ifc32.ifcbuf);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002793 for (i = 0; i < ifc32.ifc_len; i += sizeof(struct compat_ifreq)) {
Arnd Bergmann6b960182009-11-06 23:10:54 -08002794 if (copy_in_user(ifr, ifr32, sizeof(struct compat_ifreq)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002795 return -EFAULT;
2796 ifr++;
2797 ifr32++;
2798 }
2799 }
2800 if (copy_to_user(uifc, &ifc, sizeof(struct ifconf)))
2801 return -EFAULT;
2802
Arnd Bergmann6b960182009-11-06 23:10:54 -08002803 err = dev_ioctl(net, SIOCGIFCONF, uifc);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002804 if (err)
2805 return err;
2806
2807 if (copy_from_user(&ifc, uifc, sizeof(struct ifconf)))
2808 return -EFAULT;
2809
2810 ifr = ifc.ifc_req;
2811 ifr32 = compat_ptr(ifc32.ifcbuf);
2812 for (i = 0, j = 0;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002813 i + sizeof(struct compat_ifreq) <= ifc32.ifc_len && j < ifc.ifc_len;
2814 i += sizeof(struct compat_ifreq), j += sizeof(struct ifreq)) {
2815 if (copy_in_user(ifr32, ifr, sizeof(struct compat_ifreq)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002816 return -EFAULT;
2817 ifr32++;
2818 ifr++;
2819 }
2820
2821 if (ifc32.ifcbuf == 0) {
2822 /* Translate from 64-bit structure multiple to
2823 * a 32-bit one.
2824 */
2825 i = ifc.ifc_len;
Arnd Bergmann6b960182009-11-06 23:10:54 -08002826 i = ((i / sizeof(struct ifreq)) * sizeof(struct compat_ifreq));
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002827 ifc32.ifc_len = i;
2828 } else {
2829 ifc32.ifc_len = i;
2830 }
Arnd Bergmann6b960182009-11-06 23:10:54 -08002831 if (copy_to_user(uifc32, &ifc32, sizeof(struct compat_ifconf)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002832 return -EFAULT;
2833
2834 return 0;
2835}
2836
Arnd Bergmann6b960182009-11-06 23:10:54 -08002837static int ethtool_ioctl(struct net *net, struct compat_ifreq __user *ifr32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002838{
Ben Hutchings3a7da392011-03-17 07:34:32 +00002839 struct compat_ethtool_rxnfc __user *compat_rxnfc;
2840 bool convert_in = false, convert_out = false;
2841 size_t buf_size = ALIGN(sizeof(struct ifreq), 8);
2842 struct ethtool_rxnfc __user *rxnfc;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002843 struct ifreq __user *ifr;
Ben Hutchings3a7da392011-03-17 07:34:32 +00002844 u32 rule_cnt = 0, actual_rule_cnt;
2845 u32 ethcmd;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002846 u32 data;
Ben Hutchings3a7da392011-03-17 07:34:32 +00002847 int ret;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002848
2849 if (get_user(data, &ifr32->ifr_ifru.ifru_data))
2850 return -EFAULT;
2851
Ben Hutchings3a7da392011-03-17 07:34:32 +00002852 compat_rxnfc = compat_ptr(data);
2853
2854 if (get_user(ethcmd, &compat_rxnfc->cmd))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002855 return -EFAULT;
2856
Ben Hutchings3a7da392011-03-17 07:34:32 +00002857 /* Most ethtool structures are defined without padding.
2858 * Unfortunately struct ethtool_rxnfc is an exception.
2859 */
2860 switch (ethcmd) {
2861 default:
2862 break;
2863 case ETHTOOL_GRXCLSRLALL:
2864 /* Buffer size is variable */
2865 if (get_user(rule_cnt, &compat_rxnfc->rule_cnt))
2866 return -EFAULT;
2867 if (rule_cnt > KMALLOC_MAX_SIZE / sizeof(u32))
2868 return -ENOMEM;
2869 buf_size += rule_cnt * sizeof(u32);
2870 /* fall through */
2871 case ETHTOOL_GRXRINGS:
2872 case ETHTOOL_GRXCLSRLCNT:
2873 case ETHTOOL_GRXCLSRULE:
Ben Hutchings55664f32012-01-03 12:04:51 +00002874 case ETHTOOL_SRXCLSRLINS:
Ben Hutchings3a7da392011-03-17 07:34:32 +00002875 convert_out = true;
2876 /* fall through */
2877 case ETHTOOL_SRXCLSRLDEL:
Ben Hutchings3a7da392011-03-17 07:34:32 +00002878 buf_size += sizeof(struct ethtool_rxnfc);
2879 convert_in = true;
2880 break;
2881 }
2882
2883 ifr = compat_alloc_user_space(buf_size);
Stephen Hemminger954b1242013-02-11 06:22:28 +00002884 rxnfc = (void __user *)ifr + ALIGN(sizeof(struct ifreq), 8);
Ben Hutchings3a7da392011-03-17 07:34:32 +00002885
2886 if (copy_in_user(&ifr->ifr_name, &ifr32->ifr_name, IFNAMSIZ))
2887 return -EFAULT;
2888
2889 if (put_user(convert_in ? rxnfc : compat_ptr(data),
2890 &ifr->ifr_ifru.ifru_data))
2891 return -EFAULT;
2892
2893 if (convert_in) {
Alexander Duyck127fe532011-04-08 18:01:59 +00002894 /* We expect there to be holes between fs.m_ext and
Ben Hutchings3a7da392011-03-17 07:34:32 +00002895 * fs.ring_cookie and at the end of fs, but nowhere else.
2896 */
Alexander Duyck127fe532011-04-08 18:01:59 +00002897 BUILD_BUG_ON(offsetof(struct compat_ethtool_rxnfc, fs.m_ext) +
2898 sizeof(compat_rxnfc->fs.m_ext) !=
2899 offsetof(struct ethtool_rxnfc, fs.m_ext) +
2900 sizeof(rxnfc->fs.m_ext));
Ben Hutchings3a7da392011-03-17 07:34:32 +00002901 BUILD_BUG_ON(
2902 offsetof(struct compat_ethtool_rxnfc, fs.location) -
2903 offsetof(struct compat_ethtool_rxnfc, fs.ring_cookie) !=
2904 offsetof(struct ethtool_rxnfc, fs.location) -
2905 offsetof(struct ethtool_rxnfc, fs.ring_cookie));
2906
2907 if (copy_in_user(rxnfc, compat_rxnfc,
Stephen Hemminger954b1242013-02-11 06:22:28 +00002908 (void __user *)(&rxnfc->fs.m_ext + 1) -
2909 (void __user *)rxnfc) ||
Ben Hutchings3a7da392011-03-17 07:34:32 +00002910 copy_in_user(&rxnfc->fs.ring_cookie,
2911 &compat_rxnfc->fs.ring_cookie,
Stephen Hemminger954b1242013-02-11 06:22:28 +00002912 (void __user *)(&rxnfc->fs.location + 1) -
2913 (void __user *)&rxnfc->fs.ring_cookie) ||
Ben Hutchings3a7da392011-03-17 07:34:32 +00002914 copy_in_user(&rxnfc->rule_cnt, &compat_rxnfc->rule_cnt,
2915 sizeof(rxnfc->rule_cnt)))
2916 return -EFAULT;
2917 }
2918
2919 ret = dev_ioctl(net, SIOCETHTOOL, ifr);
2920 if (ret)
2921 return ret;
2922
2923 if (convert_out) {
2924 if (copy_in_user(compat_rxnfc, rxnfc,
Stephen Hemminger954b1242013-02-11 06:22:28 +00002925 (const void __user *)(&rxnfc->fs.m_ext + 1) -
2926 (const void __user *)rxnfc) ||
Ben Hutchings3a7da392011-03-17 07:34:32 +00002927 copy_in_user(&compat_rxnfc->fs.ring_cookie,
2928 &rxnfc->fs.ring_cookie,
Stephen Hemminger954b1242013-02-11 06:22:28 +00002929 (const void __user *)(&rxnfc->fs.location + 1) -
2930 (const void __user *)&rxnfc->fs.ring_cookie) ||
Ben Hutchings3a7da392011-03-17 07:34:32 +00002931 copy_in_user(&compat_rxnfc->rule_cnt, &rxnfc->rule_cnt,
2932 sizeof(rxnfc->rule_cnt)))
2933 return -EFAULT;
2934
2935 if (ethcmd == ETHTOOL_GRXCLSRLALL) {
2936 /* As an optimisation, we only copy the actual
2937 * number of rules that the underlying
2938 * function returned. Since Mallory might
2939 * change the rule count in user memory, we
2940 * check that it is less than the rule count
2941 * originally given (as the user buffer size),
2942 * which has been range-checked.
2943 */
2944 if (get_user(actual_rule_cnt, &rxnfc->rule_cnt))
2945 return -EFAULT;
2946 if (actual_rule_cnt < rule_cnt)
2947 rule_cnt = actual_rule_cnt;
2948 if (copy_in_user(&compat_rxnfc->rule_locs[0],
2949 &rxnfc->rule_locs[0],
2950 rule_cnt * sizeof(u32)))
2951 return -EFAULT;
2952 }
2953 }
2954
2955 return 0;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002956}
2957
Arnd Bergmann7a50a242009-11-08 20:57:03 -08002958static int compat_siocwandev(struct net *net, struct compat_ifreq __user *uifr32)
2959{
2960 void __user *uptr;
2961 compat_uptr_t uptr32;
2962 struct ifreq __user *uifr;
2963
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002964 uifr = compat_alloc_user_space(sizeof(*uifr));
Arnd Bergmann7a50a242009-11-08 20:57:03 -08002965 if (copy_in_user(uifr, uifr32, sizeof(struct compat_ifreq)))
2966 return -EFAULT;
2967
2968 if (get_user(uptr32, &uifr32->ifr_settings.ifs_ifsu))
2969 return -EFAULT;
2970
2971 uptr = compat_ptr(uptr32);
2972
2973 if (put_user(uptr, &uifr->ifr_settings.ifs_ifsu.raw_hdlc))
2974 return -EFAULT;
2975
2976 return dev_ioctl(net, SIOCWANDEV, uifr);
2977}
2978
Arnd Bergmann6b960182009-11-06 23:10:54 -08002979static int bond_ioctl(struct net *net, unsigned int cmd,
2980 struct compat_ifreq __user *ifr32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002981{
2982 struct ifreq kifr;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002983 mm_segment_t old_fs;
2984 int err;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002985
2986 switch (cmd) {
2987 case SIOCBONDENSLAVE:
2988 case SIOCBONDRELEASE:
2989 case SIOCBONDSETHWADDR:
2990 case SIOCBONDCHANGEACTIVE:
Arnd Bergmann6b960182009-11-06 23:10:54 -08002991 if (copy_from_user(&kifr, ifr32, sizeof(struct compat_ifreq)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002992 return -EFAULT;
2993
2994 old_fs = get_fs();
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002995 set_fs(KERNEL_DS);
stephen hemmingerc3f52ae2011-02-23 09:06:48 +00002996 err = dev_ioctl(net, cmd,
2997 (struct ifreq __user __force *) &kifr);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002998 set_fs(old_fs);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002999
3000 return err;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003001 default:
Linus Torvalds07d106d2012-01-05 15:40:12 -08003002 return -ENOIOCTLCMD;
Joe Perchesccbd6a52010-05-14 10:58:26 +00003003 }
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003004}
3005
Ben Hutchings590d4692013-11-18 17:04:13 +00003006/* Handle ioctls that use ifreq::ifr_data and just need struct ifreq converted */
3007static int compat_ifr_data_ioctl(struct net *net, unsigned int cmd,
Arnd Bergmann6b960182009-11-06 23:10:54 -08003008 struct compat_ifreq __user *u_ifreq32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003009{
3010 struct ifreq __user *u_ifreq64;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003011 char tmp_buf[IFNAMSIZ];
3012 void __user *data64;
3013 u32 data32;
3014
3015 if (copy_from_user(&tmp_buf[0], &(u_ifreq32->ifr_ifrn.ifrn_name[0]),
3016 IFNAMSIZ))
3017 return -EFAULT;
Ben Hutchings417c3522013-11-18 17:04:58 +00003018 if (get_user(data32, &u_ifreq32->ifr_ifru.ifru_data))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003019 return -EFAULT;
3020 data64 = compat_ptr(data32);
3021
3022 u_ifreq64 = compat_alloc_user_space(sizeof(*u_ifreq64));
3023
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003024 if (copy_to_user(&u_ifreq64->ifr_ifrn.ifrn_name[0], &tmp_buf[0],
3025 IFNAMSIZ))
3026 return -EFAULT;
Ben Hutchings417c3522013-11-18 17:04:58 +00003027 if (put_user(data64, &u_ifreq64->ifr_ifru.ifru_data))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003028 return -EFAULT;
3029
Arnd Bergmann6b960182009-11-06 23:10:54 -08003030 return dev_ioctl(net, cmd, u_ifreq64);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003031}
3032
Arnd Bergmann6b960182009-11-06 23:10:54 -08003033static int dev_ifsioc(struct net *net, struct socket *sock,
3034 unsigned int cmd, struct compat_ifreq __user *uifr32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003035{
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003036 struct ifreq __user *uifr;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003037 int err;
3038
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003039 uifr = compat_alloc_user_space(sizeof(*uifr));
3040 if (copy_in_user(uifr, uifr32, sizeof(*uifr32)))
3041 return -EFAULT;
3042
3043 err = sock_do_ioctl(net, sock, cmd, (unsigned long)uifr);
3044
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003045 if (!err) {
3046 switch (cmd) {
3047 case SIOCGIFFLAGS:
3048 case SIOCGIFMETRIC:
3049 case SIOCGIFMTU:
3050 case SIOCGIFMEM:
3051 case SIOCGIFHWADDR:
3052 case SIOCGIFINDEX:
3053 case SIOCGIFADDR:
3054 case SIOCGIFBRDADDR:
3055 case SIOCGIFDSTADDR:
3056 case SIOCGIFNETMASK:
Arnd Bergmannfab25322009-11-08 20:56:21 -08003057 case SIOCGIFPFLAGS:
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003058 case SIOCGIFTXQLEN:
Arnd Bergmannfab25322009-11-08 20:56:21 -08003059 case SIOCGMIIPHY:
3060 case SIOCGMIIREG:
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003061 if (copy_in_user(uifr32, uifr, sizeof(*uifr32)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003062 err = -EFAULT;
3063 break;
3064 }
3065 }
3066 return err;
3067}
3068
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003069static int compat_sioc_ifmap(struct net *net, unsigned int cmd,
3070 struct compat_ifreq __user *uifr32)
3071{
3072 struct ifreq ifr;
3073 struct compat_ifmap __user *uifmap32;
3074 mm_segment_t old_fs;
3075 int err;
3076
3077 uifmap32 = &uifr32->ifr_ifru.ifru_map;
3078 err = copy_from_user(&ifr, uifr32, sizeof(ifr.ifr_name));
Mathieu Desnoyers3ddc5b42013-09-11 14:23:18 -07003079 err |= get_user(ifr.ifr_map.mem_start, &uifmap32->mem_start);
3080 err |= get_user(ifr.ifr_map.mem_end, &uifmap32->mem_end);
3081 err |= get_user(ifr.ifr_map.base_addr, &uifmap32->base_addr);
3082 err |= get_user(ifr.ifr_map.irq, &uifmap32->irq);
3083 err |= get_user(ifr.ifr_map.dma, &uifmap32->dma);
3084 err |= get_user(ifr.ifr_map.port, &uifmap32->port);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003085 if (err)
3086 return -EFAULT;
3087
3088 old_fs = get_fs();
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003089 set_fs(KERNEL_DS);
stephen hemmingerc3f52ae2011-02-23 09:06:48 +00003090 err = dev_ioctl(net, cmd, (void __user __force *)&ifr);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003091 set_fs(old_fs);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003092
3093 if (cmd == SIOCGIFMAP && !err) {
3094 err = copy_to_user(uifr32, &ifr, sizeof(ifr.ifr_name));
Mathieu Desnoyers3ddc5b42013-09-11 14:23:18 -07003095 err |= put_user(ifr.ifr_map.mem_start, &uifmap32->mem_start);
3096 err |= put_user(ifr.ifr_map.mem_end, &uifmap32->mem_end);
3097 err |= put_user(ifr.ifr_map.base_addr, &uifmap32->base_addr);
3098 err |= put_user(ifr.ifr_map.irq, &uifmap32->irq);
3099 err |= put_user(ifr.ifr_map.dma, &uifmap32->dma);
3100 err |= put_user(ifr.ifr_map.port, &uifmap32->port);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003101 if (err)
3102 err = -EFAULT;
3103 }
3104 return err;
3105}
3106
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003107struct rtentry32 {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003108 u32 rt_pad1;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003109 struct sockaddr rt_dst; /* target address */
3110 struct sockaddr rt_gateway; /* gateway addr (RTF_GATEWAY) */
3111 struct sockaddr rt_genmask; /* target network mask (IP) */
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003112 unsigned short rt_flags;
3113 short rt_pad2;
3114 u32 rt_pad3;
3115 unsigned char rt_tos;
3116 unsigned char rt_class;
3117 short rt_pad4;
3118 short rt_metric; /* +1 for binary compatibility! */
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003119 /* char * */ u32 rt_dev; /* forcing the device at add */
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003120 u32 rt_mtu; /* per route MTU/Window */
3121 u32 rt_window; /* Window clamping */
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003122 unsigned short rt_irtt; /* Initial RTT */
3123};
3124
3125struct in6_rtmsg32 {
3126 struct in6_addr rtmsg_dst;
3127 struct in6_addr rtmsg_src;
3128 struct in6_addr rtmsg_gateway;
3129 u32 rtmsg_type;
3130 u16 rtmsg_dst_len;
3131 u16 rtmsg_src_len;
3132 u32 rtmsg_metric;
3133 u32 rtmsg_info;
3134 u32 rtmsg_flags;
3135 s32 rtmsg_ifindex;
3136};
3137
Arnd Bergmann6b960182009-11-06 23:10:54 -08003138static int routing_ioctl(struct net *net, struct socket *sock,
3139 unsigned int cmd, void __user *argp)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003140{
3141 int ret;
3142 void *r = NULL;
3143 struct in6_rtmsg r6;
3144 struct rtentry r4;
3145 char devname[16];
3146 u32 rtdev;
3147 mm_segment_t old_fs = get_fs();
3148
Arnd Bergmann6b960182009-11-06 23:10:54 -08003149 if (sock && sock->sk && sock->sk->sk_family == AF_INET6) { /* ipv6 */
3150 struct in6_rtmsg32 __user *ur6 = argp;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003151 ret = copy_from_user(&r6.rtmsg_dst, &(ur6->rtmsg_dst),
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003152 3 * sizeof(struct in6_addr));
Mathieu Desnoyers3ddc5b42013-09-11 14:23:18 -07003153 ret |= get_user(r6.rtmsg_type, &(ur6->rtmsg_type));
3154 ret |= get_user(r6.rtmsg_dst_len, &(ur6->rtmsg_dst_len));
3155 ret |= get_user(r6.rtmsg_src_len, &(ur6->rtmsg_src_len));
3156 ret |= get_user(r6.rtmsg_metric, &(ur6->rtmsg_metric));
3157 ret |= get_user(r6.rtmsg_info, &(ur6->rtmsg_info));
3158 ret |= get_user(r6.rtmsg_flags, &(ur6->rtmsg_flags));
3159 ret |= get_user(r6.rtmsg_ifindex, &(ur6->rtmsg_ifindex));
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003160
3161 r = (void *) &r6;
3162 } else { /* ipv4 */
Arnd Bergmann6b960182009-11-06 23:10:54 -08003163 struct rtentry32 __user *ur4 = argp;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003164 ret = copy_from_user(&r4.rt_dst, &(ur4->rt_dst),
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003165 3 * sizeof(struct sockaddr));
Mathieu Desnoyers3ddc5b42013-09-11 14:23:18 -07003166 ret |= get_user(r4.rt_flags, &(ur4->rt_flags));
3167 ret |= get_user(r4.rt_metric, &(ur4->rt_metric));
3168 ret |= get_user(r4.rt_mtu, &(ur4->rt_mtu));
3169 ret |= get_user(r4.rt_window, &(ur4->rt_window));
3170 ret |= get_user(r4.rt_irtt, &(ur4->rt_irtt));
3171 ret |= get_user(rtdev, &(ur4->rt_dev));
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003172 if (rtdev) {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003173 ret |= copy_from_user(devname, compat_ptr(rtdev), 15);
stephen hemmingerc3f52ae2011-02-23 09:06:48 +00003174 r4.rt_dev = (char __user __force *)devname;
3175 devname[15] = 0;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003176 } else
3177 r4.rt_dev = NULL;
3178
3179 r = (void *) &r4;
3180 }
3181
3182 if (ret) {
3183 ret = -EFAULT;
3184 goto out;
3185 }
3186
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003187 set_fs(KERNEL_DS);
Arnd Bergmann6b960182009-11-06 23:10:54 -08003188 ret = sock_do_ioctl(net, sock, cmd, (unsigned long) r);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003189 set_fs(old_fs);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003190
3191out:
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003192 return ret;
3193}
3194
3195/* Since old style bridge ioctl's endup using SIOCDEVPRIVATE
3196 * for some operations; this forces use of the newer bridge-utils that
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003197 * use compatible ioctls
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003198 */
Arnd Bergmann6b960182009-11-06 23:10:54 -08003199static int old_bridge_ioctl(compat_ulong_t __user *argp)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003200{
Arnd Bergmann6b960182009-11-06 23:10:54 -08003201 compat_ulong_t tmp;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003202
Arnd Bergmann6b960182009-11-06 23:10:54 -08003203 if (get_user(tmp, argp))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003204 return -EFAULT;
3205 if (tmp == BRCTL_GET_VERSION)
3206 return BRCTL_VERSION + 1;
3207 return -EINVAL;
3208}
3209
Arnd Bergmann6b960182009-11-06 23:10:54 -08003210static int compat_sock_ioctl_trans(struct file *file, struct socket *sock,
3211 unsigned int cmd, unsigned long arg)
3212{
3213 void __user *argp = compat_ptr(arg);
3214 struct sock *sk = sock->sk;
3215 struct net *net = sock_net(sk);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003216
Arnd Bergmann6b960182009-11-06 23:10:54 -08003217 if (cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15))
Ben Hutchings590d4692013-11-18 17:04:13 +00003218 return compat_ifr_data_ioctl(net, cmd, argp);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003219
Arnd Bergmann6b960182009-11-06 23:10:54 -08003220 switch (cmd) {
3221 case SIOCSIFBR:
3222 case SIOCGIFBR:
3223 return old_bridge_ioctl(argp);
3224 case SIOCGIFNAME:
3225 return dev_ifname32(net, argp);
3226 case SIOCGIFCONF:
3227 return dev_ifconf(net, argp);
3228 case SIOCETHTOOL:
3229 return ethtool_ioctl(net, argp);
Arnd Bergmann7a50a242009-11-08 20:57:03 -08003230 case SIOCWANDEV:
3231 return compat_siocwandev(net, argp);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003232 case SIOCGIFMAP:
3233 case SIOCSIFMAP:
3234 return compat_sioc_ifmap(net, cmd, argp);
Arnd Bergmann6b960182009-11-06 23:10:54 -08003235 case SIOCBONDENSLAVE:
3236 case SIOCBONDRELEASE:
3237 case SIOCBONDSETHWADDR:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003238 case SIOCBONDCHANGEACTIVE:
3239 return bond_ioctl(net, cmd, argp);
3240 case SIOCADDRT:
3241 case SIOCDELRT:
3242 return routing_ioctl(net, sock, cmd, argp);
3243 case SIOCGSTAMP:
3244 return do_siocgstamp(net, sock, cmd, argp);
3245 case SIOCGSTAMPNS:
3246 return do_siocgstampns(net, sock, cmd, argp);
Ben Hutchings590d4692013-11-18 17:04:13 +00003247 case SIOCBONDSLAVEINFOQUERY:
3248 case SIOCBONDINFOQUERY:
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003249 case SIOCSHWTSTAMP:
Ben Hutchingsfd468c72013-11-14 01:19:29 +00003250 case SIOCGHWTSTAMP:
Ben Hutchings590d4692013-11-18 17:04:13 +00003251 return compat_ifr_data_ioctl(net, cmd, argp);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003252
Arnd Bergmann6b960182009-11-06 23:10:54 -08003253 case FIOSETOWN:
3254 case SIOCSPGRP:
3255 case FIOGETOWN:
3256 case SIOCGPGRP:
3257 case SIOCBRADDBR:
3258 case SIOCBRDELBR:
3259 case SIOCGIFVLAN:
3260 case SIOCSIFVLAN:
3261 case SIOCADDDLCI:
3262 case SIOCDELDLCI:
3263 return sock_ioctl(file, cmd, arg);
3264
3265 case SIOCGIFFLAGS:
3266 case SIOCSIFFLAGS:
3267 case SIOCGIFMETRIC:
3268 case SIOCSIFMETRIC:
3269 case SIOCGIFMTU:
3270 case SIOCSIFMTU:
3271 case SIOCGIFMEM:
3272 case SIOCSIFMEM:
3273 case SIOCGIFHWADDR:
3274 case SIOCSIFHWADDR:
3275 case SIOCADDMULTI:
3276 case SIOCDELMULTI:
3277 case SIOCGIFINDEX:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003278 case SIOCGIFADDR:
3279 case SIOCSIFADDR:
3280 case SIOCSIFHWBROADCAST:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003281 case SIOCDIFADDR:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003282 case SIOCGIFBRDADDR:
3283 case SIOCSIFBRDADDR:
3284 case SIOCGIFDSTADDR:
3285 case SIOCSIFDSTADDR:
3286 case SIOCGIFNETMASK:
3287 case SIOCSIFNETMASK:
3288 case SIOCSIFPFLAGS:
3289 case SIOCGIFPFLAGS:
3290 case SIOCGIFTXQLEN:
3291 case SIOCSIFTXQLEN:
3292 case SIOCBRADDIF:
3293 case SIOCBRDELIF:
Arnd Bergmann9177efd2009-11-06 08:09:09 +00003294 case SIOCSIFNAME:
3295 case SIOCGMIIPHY:
3296 case SIOCGMIIREG:
3297 case SIOCSMIIREG:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003298 return dev_ifsioc(net, sock, cmd, argp);
Arnd Bergmann9177efd2009-11-06 08:09:09 +00003299
Arnd Bergmann6b960182009-11-06 23:10:54 -08003300 case SIOCSARP:
3301 case SIOCGARP:
3302 case SIOCDARP:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003303 case SIOCATMARK:
Arnd Bergmann9177efd2009-11-06 08:09:09 +00003304 return sock_do_ioctl(net, sock, cmd, arg);
3305 }
3306
Arnd Bergmann6b960182009-11-06 23:10:54 -08003307 return -ENOIOCTLCMD;
3308}
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003309
Eric Dumazet95c96172012-04-15 05:58:06 +00003310static long compat_sock_ioctl(struct file *file, unsigned int cmd,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07003311 unsigned long arg)
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003312{
3313 struct socket *sock = file->private_data;
3314 int ret = -ENOIOCTLCMD;
David S. Miller87de87d2008-06-03 09:14:03 -07003315 struct sock *sk;
3316 struct net *net;
3317
3318 sk = sock->sk;
3319 net = sock_net(sk);
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003320
3321 if (sock->ops->compat_ioctl)
3322 ret = sock->ops->compat_ioctl(sock, cmd, arg);
3323
David S. Miller87de87d2008-06-03 09:14:03 -07003324 if (ret == -ENOIOCTLCMD &&
3325 (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST))
3326 ret = compat_wext_handle_ioctl(net, cmd, arg);
3327
Arnd Bergmann6b960182009-11-06 23:10:54 -08003328 if (ret == -ENOIOCTLCMD)
3329 ret = compat_sock_ioctl_trans(file, sock, cmd, arg);
3330
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003331 return ret;
3332}
3333#endif
3334
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003335int kernel_bind(struct socket *sock, struct sockaddr *addr, int addrlen)
3336{
3337 return sock->ops->bind(sock, addr, addrlen);
3338}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003339EXPORT_SYMBOL(kernel_bind);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003340
3341int kernel_listen(struct socket *sock, int backlog)
3342{
3343 return sock->ops->listen(sock, backlog);
3344}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003345EXPORT_SYMBOL(kernel_listen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003346
3347int kernel_accept(struct socket *sock, struct socket **newsock, int flags)
3348{
3349 struct sock *sk = sock->sk;
3350 int err;
3351
3352 err = sock_create_lite(sk->sk_family, sk->sk_type, sk->sk_protocol,
3353 newsock);
3354 if (err < 0)
3355 goto done;
3356
3357 err = sock->ops->accept(sock, *newsock, flags);
3358 if (err < 0) {
3359 sock_release(*newsock);
Tony Battersbyfa8705b2007-10-10 21:09:04 -07003360 *newsock = NULL;
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003361 goto done;
3362 }
3363
3364 (*newsock)->ops = sock->ops;
Wei Yongjun1b085342008-12-18 19:35:10 -08003365 __module_get((*newsock)->ops->owner);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003366
3367done:
3368 return err;
3369}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003370EXPORT_SYMBOL(kernel_accept);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003371
3372int kernel_connect(struct socket *sock, struct sockaddr *addr, int addrlen,
YOSHIFUJI Hideaki4768fbc2007-02-09 23:25:31 +09003373 int flags)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003374{
3375 return sock->ops->connect(sock, addr, addrlen, flags);
3376}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003377EXPORT_SYMBOL(kernel_connect);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003378
3379int kernel_getsockname(struct socket *sock, struct sockaddr *addr,
3380 int *addrlen)
3381{
3382 return sock->ops->getname(sock, addr, addrlen, 0);
3383}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003384EXPORT_SYMBOL(kernel_getsockname);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003385
3386int kernel_getpeername(struct socket *sock, struct sockaddr *addr,
3387 int *addrlen)
3388{
3389 return sock->ops->getname(sock, addr, addrlen, 1);
3390}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003391EXPORT_SYMBOL(kernel_getpeername);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003392
3393int kernel_getsockopt(struct socket *sock, int level, int optname,
3394 char *optval, int *optlen)
3395{
3396 mm_segment_t oldfs = get_fs();
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003397 char __user *uoptval;
3398 int __user *uoptlen;
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003399 int err;
3400
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003401 uoptval = (char __user __force *) optval;
3402 uoptlen = (int __user __force *) optlen;
3403
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003404 set_fs(KERNEL_DS);
3405 if (level == SOL_SOCKET)
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003406 err = sock_getsockopt(sock, level, optname, uoptval, uoptlen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003407 else
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003408 err = sock->ops->getsockopt(sock, level, optname, uoptval,
3409 uoptlen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003410 set_fs(oldfs);
3411 return err;
3412}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003413EXPORT_SYMBOL(kernel_getsockopt);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003414
3415int kernel_setsockopt(struct socket *sock, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07003416 char *optval, unsigned int optlen)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003417{
3418 mm_segment_t oldfs = get_fs();
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003419 char __user *uoptval;
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003420 int err;
3421
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003422 uoptval = (char __user __force *) optval;
3423
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003424 set_fs(KERNEL_DS);
3425 if (level == SOL_SOCKET)
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003426 err = sock_setsockopt(sock, level, optname, uoptval, optlen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003427 else
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003428 err = sock->ops->setsockopt(sock, level, optname, uoptval,
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003429 optlen);
3430 set_fs(oldfs);
3431 return err;
3432}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003433EXPORT_SYMBOL(kernel_setsockopt);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003434
3435int kernel_sendpage(struct socket *sock, struct page *page, int offset,
3436 size_t size, int flags)
3437{
3438 if (sock->ops->sendpage)
3439 return sock->ops->sendpage(sock, page, offset, size, flags);
3440
3441 return sock_no_sendpage(sock, page, offset, size, flags);
3442}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003443EXPORT_SYMBOL(kernel_sendpage);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003444
3445int kernel_sock_ioctl(struct socket *sock, int cmd, unsigned long arg)
3446{
3447 mm_segment_t oldfs = get_fs();
3448 int err;
3449
3450 set_fs(KERNEL_DS);
3451 err = sock->ops->ioctl(sock, cmd, arg);
3452 set_fs(oldfs);
3453
3454 return err;
3455}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003456EXPORT_SYMBOL(kernel_sock_ioctl);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003457
Trond Myklebust91cf45f2007-11-12 18:10:39 -08003458int kernel_sock_shutdown(struct socket *sock, enum sock_shutdown_cmd how)
3459{
3460 return sock->ops->shutdown(sock, how);
3461}
Trond Myklebust91cf45f2007-11-12 18:10:39 -08003462EXPORT_SYMBOL(kernel_sock_shutdown);