blob: 81b449eaf8b5ce5bb86706768b902d49692bd869 [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/wanrouter.h>
73#include <linux/if_bridge.h>
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -030074#include <linux/if_frad.h>
75#include <linux/if_vlan.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 Black1fd73172009-09-22 16:43:33 -070089#include <linux/magic.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090090#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92#include <asm/uaccess.h>
93#include <asm/unistd.h>
94
95#include <net/compat.h>
David S. Miller87de87d2008-06-03 09:14:03 -070096#include <net/wext.h>
Herbert Xuf8451722010-05-24 00:12:34 -070097#include <net/cls_cgroup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99#include <net/sock.h>
100#include <linux/netfilter.h>
101
Arnd Bergmann6b960182009-11-06 23:10:54 -0800102#include <linux/if_tun.h>
103#include <linux/ipv6_route.h>
104#include <linux/route.h>
Arnd Bergmann6b960182009-11-06 23:10:54 -0800105#include <linux/sockios.h>
106#include <linux/atalk.h>
107
Harout Hedeshianff12c742014-03-04 07:31:47 -0700108static BLOCKING_NOTIFIER_HEAD(sockev_notifier_list);
109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110static int sock_no_open(struct inode *irrelevant, struct file *dontcare);
Badari Pulavarty027445c2006-09-30 23:28:46 -0700111static ssize_t sock_aio_read(struct kiocb *iocb, const struct iovec *iov,
112 unsigned long nr_segs, loff_t pos);
113static ssize_t sock_aio_write(struct kiocb *iocb, const struct iovec *iov,
114 unsigned long nr_segs, loff_t pos);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700115static int sock_mmap(struct file *file, struct vm_area_struct *vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
117static int sock_close(struct inode *inode, struct file *file);
118static unsigned int sock_poll(struct file *file,
119 struct poll_table_struct *wait);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700120static long sock_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800121#ifdef CONFIG_COMPAT
122static long compat_sock_ioctl(struct file *file,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700123 unsigned int cmd, unsigned long arg);
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800124#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125static int sock_fasync(int fd, struct file *filp, int on);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126static ssize_t sock_sendpage(struct file *file, struct page *page,
127 int offset, size_t size, loff_t *ppos, int more);
Jens Axboe9c55e012007-11-06 23:30:13 -0800128static ssize_t sock_splice_read(struct file *file, loff_t *ppos,
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700129 struct pipe_inode_info *pipe, size_t len,
Jens Axboe9c55e012007-11-06 23:30:13 -0800130 unsigned int flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132/*
133 * Socket files have a set of 'special' operations as well as the generic file ones. These don't appear
134 * in the operation structures but are done directly via the socketcall() multiplexor.
135 */
136
Arjan van de Venda7071d2007-02-12 00:55:36 -0800137static const struct file_operations socket_file_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 .owner = THIS_MODULE,
139 .llseek = no_llseek,
140 .aio_read = sock_aio_read,
141 .aio_write = sock_aio_write,
142 .poll = sock_poll,
143 .unlocked_ioctl = sock_ioctl,
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800144#ifdef CONFIG_COMPAT
145 .compat_ioctl = compat_sock_ioctl,
146#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 .mmap = sock_mmap,
148 .open = sock_no_open, /* special open code to disallow open via /proc */
149 .release = sock_close,
150 .fasync = sock_fasync,
Jens Axboe5274f052006-03-30 15:15:30 +0200151 .sendpage = sock_sendpage,
152 .splice_write = generic_splice_sendpage,
Jens Axboe9c55e012007-11-06 23:30:13 -0800153 .splice_read = sock_splice_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154};
155
156/*
157 * The protocol list. Each protocol is registered in here.
158 */
159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160static DEFINE_SPINLOCK(net_family_lock);
Eric Dumazet190683a2010-11-10 10:50:44 +0000161static const struct net_proto_family __rcu *net_families[NPROTO] __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163/*
164 * Statistics counters of the socket lists
165 */
166
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700167static DEFINE_PER_CPU(int, sockets_in_use);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169/*
Harout Hedeshianff12c742014-03-04 07:31:47 -0700170 * Socket Event framework helpers
171 */
172static void sockev_notify(unsigned long event, struct socket *sk)
173{
174 blocking_notifier_call_chain(&sockev_notifier_list, event, sk);
175}
176
177/**
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700178 * Support routines.
179 * Move socket addresses back and forth across the kernel/user
180 * divide and look after the messy bits.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 */
182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183/**
184 * move_addr_to_kernel - copy a socket address into kernel space
185 * @uaddr: Address in user space
186 * @kaddr: Address in kernel space
187 * @ulen: Length in user space
188 *
189 * The address is copied into kernel space. If the provided address is
190 * too long an error code of -EINVAL is returned. If the copy gives
191 * invalid addresses -EFAULT is returned. On a success 0 is returned.
192 */
193
Maciej Żenczykowski43db3622012-03-11 12:51:50 +0000194int move_addr_to_kernel(void __user *uaddr, int ulen, struct sockaddr_storage *kaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195{
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -0700196 if (ulen < 0 || ulen > sizeof(struct sockaddr_storage))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700198 if (ulen == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 return 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700200 if (copy_from_user(kaddr, uaddr, ulen))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 return -EFAULT;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +0100202 return audit_sockaddr(ulen, kaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203}
204
205/**
206 * move_addr_to_user - copy an address to user space
207 * @kaddr: kernel space address
208 * @klen: length of address in kernel
209 * @uaddr: user space address
210 * @ulen: pointer to user length field
211 *
212 * The value pointed to by ulen on entry is the buffer length available.
213 * This is overwritten with the buffer space used. -EINVAL is returned
214 * if an overlong buffer is specified or a negative buffer size. -EFAULT
215 * is returned if either the buffer or the length field are not
216 * accessible.
217 * After copying the data up to the limit the user specifies, the true
218 * length of the data is written over the length limit the user
219 * specified. Zero is returned for a success.
220 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700221
Maciej Żenczykowski43db3622012-03-11 12:51:50 +0000222static int move_addr_to_user(struct sockaddr_storage *kaddr, int klen,
stephen hemminger11165f12010-10-18 14:27:29 +0000223 void __user *uaddr, int __user *ulen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224{
225 int err;
226 int len;
227
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700228 err = get_user(len, ulen);
229 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 return err;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700231 if (len > klen)
232 len = klen;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -0700233 if (len < 0 || len > sizeof(struct sockaddr_storage))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700235 if (len) {
Steve Grubbd6fe3942006-03-30 12:20:22 -0500236 if (audit_sockaddr(klen, kaddr))
237 return -ENOMEM;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700238 if (copy_to_user(uaddr, kaddr, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 return -EFAULT;
240 }
241 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700242 * "fromlen shall refer to the value before truncation.."
243 * 1003.1g
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 */
245 return __put_user(klen, ulen);
246}
247
Christoph Lametere18b8902006-12-06 20:33:20 -0800248static struct kmem_cache *sock_inode_cachep __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
250static struct inode *sock_alloc_inode(struct super_block *sb)
251{
252 struct socket_alloc *ei;
Eric Dumazeteaefd112011-02-18 03:26:36 +0000253 struct socket_wq *wq;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700254
Christoph Lametere94b1762006-12-06 20:33:17 -0800255 ei = kmem_cache_alloc(sock_inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 if (!ei)
257 return NULL;
Eric Dumazeteaefd112011-02-18 03:26:36 +0000258 wq = kmalloc(sizeof(*wq), GFP_KERNEL);
259 if (!wq) {
Eric Dumazet43815482010-04-29 11:01:49 +0000260 kmem_cache_free(sock_inode_cachep, ei);
261 return NULL;
262 }
Eric Dumazeteaefd112011-02-18 03:26:36 +0000263 init_waitqueue_head(&wq->wait);
264 wq->fasync_list = NULL;
265 RCU_INIT_POINTER(ei->socket.wq, wq);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 ei->socket.state = SS_UNCONNECTED;
268 ei->socket.flags = 0;
269 ei->socket.ops = NULL;
270 ei->socket.sk = NULL;
271 ei->socket.file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
273 return &ei->vfs_inode;
274}
275
276static void sock_destroy_inode(struct inode *inode)
277{
Eric Dumazet43815482010-04-29 11:01:49 +0000278 struct socket_alloc *ei;
Eric Dumazeteaefd112011-02-18 03:26:36 +0000279 struct socket_wq *wq;
Eric Dumazet43815482010-04-29 11:01:49 +0000280
281 ei = container_of(inode, struct socket_alloc, vfs_inode);
Eric Dumazeteaefd112011-02-18 03:26:36 +0000282 wq = rcu_dereference_protected(ei->socket.wq, 1);
Lai Jiangshan61845222011-03-18 12:10:25 +0800283 kfree_rcu(wq, rcu);
Eric Dumazet43815482010-04-29 11:01:49 +0000284 kmem_cache_free(sock_inode_cachep, ei);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285}
286
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700287static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700289 struct socket_alloc *ei = (struct socket_alloc *)foo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
Christoph Lametera35afb82007-05-16 22:10:57 -0700291 inode_init_once(&ei->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292}
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700293
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294static int init_inodecache(void)
295{
296 sock_inode_cachep = kmem_cache_create("sock_inode_cache",
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700297 sizeof(struct socket_alloc),
298 0,
299 (SLAB_HWCACHE_ALIGN |
300 SLAB_RECLAIM_ACCOUNT |
301 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +0900302 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 if (sock_inode_cachep == NULL)
304 return -ENOMEM;
305 return 0;
306}
307
Alexey Dobriyanb87221d2009-09-21 17:01:09 -0700308static const struct super_operations sockfs_ops = {
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700309 .alloc_inode = sock_alloc_inode,
310 .destroy_inode = sock_destroy_inode,
311 .statfs = simple_statfs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312};
313
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700314/*
315 * sockfs_dname() is called from d_path().
316 */
317static char *sockfs_dname(struct dentry *dentry, char *buffer, int buflen)
318{
319 return dynamic_dname(dentry, buffer, buflen, "socket:[%lu]",
320 dentry->d_inode->i_ino);
321}
322
Al Viro3ba13d12009-02-20 06:02:22 +0000323static const struct dentry_operations sockfs_dentry_operations = {
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700324 .d_dname = sockfs_dname,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325};
326
Al Viroc74a1cb2011-01-12 16:59:34 -0500327static struct dentry *sockfs_mount(struct file_system_type *fs_type,
328 int flags, const char *dev_name, void *data)
329{
330 return mount_pseudo(fs_type, "socket:", &sockfs_ops,
331 &sockfs_dentry_operations, SOCKFS_MAGIC);
332}
333
334static struct vfsmount *sock_mnt __read_mostly;
335
336static struct file_system_type sock_fs_type = {
337 .name = "sockfs",
338 .mount = sockfs_mount,
339 .kill_sb = kill_anon_super,
340};
341
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342/*
343 * Obtains the first available file descriptor and sets it up for use.
344 *
David S. Miller39d8c1b2006-03-20 17:13:49 -0800345 * These functions create file structures and maps them to fd space
346 * of the current process. On success it returns file descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 * and file struct implicitly stored in sock->file.
348 * Note that another thread may close file descriptor before we return
349 * from this function. We use the fact that now we do not refer
350 * to socket after mapping. If one day we will need it, this
351 * function will increment ref. count on file by 1.
352 *
353 * In any case returned fd MAY BE not valid!
354 * This race condition is unavoidable
355 * with shared fd spaces, we cannot solve it inside kernel,
356 * but we take care of internal coherence yet.
357 */
358
Al Viro7cbe66b2009-08-05 19:59:08 +0400359static int sock_alloc_file(struct socket *sock, struct file **f, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360{
Al Viro7cbe66b2009-08-05 19:59:08 +0400361 struct qstr name = { .name = "" };
Al Viro2c48b9c2009-08-09 00:52:35 +0400362 struct path path;
Al Viro7cbe66b2009-08-05 19:59:08 +0400363 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 int fd;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800365
Ulrich Dreppera677a032008-07-23 21:29:17 -0700366 fd = get_unused_fd_flags(flags);
Al Viro7cbe66b2009-08-05 19:59:08 +0400367 if (unlikely(fd < 0))
368 return fd;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800369
Nick Piggin4b936882011-01-07 17:50:07 +1100370 path.dentry = d_alloc_pseudo(sock_mnt->mnt_sb, &name);
Al Viro2c48b9c2009-08-09 00:52:35 +0400371 if (unlikely(!path.dentry)) {
Al Viro7cbe66b2009-08-05 19:59:08 +0400372 put_unused_fd(fd);
David S. Miller39d8c1b2006-03-20 17:13:49 -0800373 return -ENOMEM;
Al Viro7cbe66b2009-08-05 19:59:08 +0400374 }
Al Viro2c48b9c2009-08-09 00:52:35 +0400375 path.mnt = mntget(sock_mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
Al Viro2c48b9c2009-08-09 00:52:35 +0400377 d_instantiate(path.dentry, SOCK_INODE(sock));
Al Virocc3808f2009-08-06 09:43:59 +0400378 SOCK_INODE(sock)->i_fop = &socket_file_ops;
379
Al Viro2c48b9c2009-08-09 00:52:35 +0400380 file = alloc_file(&path, FMODE_READ | FMODE_WRITE,
Al Virocc3808f2009-08-06 09:43:59 +0400381 &socket_file_ops);
382 if (unlikely(!file)) {
383 /* drop dentry, keep inode */
Al Viro7de9c6e2010-10-23 11:11:40 -0400384 ihold(path.dentry->d_inode);
Al Viro2c48b9c2009-08-09 00:52:35 +0400385 path_put(&path);
Al Virocc3808f2009-08-06 09:43:59 +0400386 put_unused_fd(fd);
387 return -ENFILE;
388 }
David S. Miller39d8c1b2006-03-20 17:13:49 -0800389
390 sock->file = file;
Ulrich Drepper77d27202008-07-23 21:29:35 -0700391 file->f_flags = O_RDWR | (flags & O_NONBLOCK);
David S. Miller39d8c1b2006-03-20 17:13:49 -0800392 file->f_pos = 0;
393 file->private_data = sock;
394
Al Viro7cbe66b2009-08-05 19:59:08 +0400395 *f = file;
396 return fd;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800397}
398
Ulrich Dreppera677a032008-07-23 21:29:17 -0700399int sock_map_fd(struct socket *sock, int flags)
David S. Miller39d8c1b2006-03-20 17:13:49 -0800400{
401 struct file *newfile;
Al Viro7cbe66b2009-08-05 19:59:08 +0400402 int fd = sock_alloc_file(sock, &newfile, flags);
David S. Miller39d8c1b2006-03-20 17:13:49 -0800403
Al Viro7cbe66b2009-08-05 19:59:08 +0400404 if (likely(fd >= 0))
David S. Miller39d8c1b2006-03-20 17:13:49 -0800405 fd_install(fd, newfile);
Al Viro7cbe66b2009-08-05 19:59:08 +0400406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 return fd;
408}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700409EXPORT_SYMBOL(sock_map_fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800411static struct socket *sock_from_file(struct file *file, int *err)
412{
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}
419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420/**
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700421 * sockfd_lookup - Go from a file number to its socket slot
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 * @fd: file handle
423 * @err: pointer to an error code return
424 *
425 * The file handle passed in is locked and the socket it is bound
426 * too is returned. If an error occurs the err pointer is overwritten
427 * with a negative errno code and NULL is returned. The function checks
428 * for both invalid handles and passing a handle which is not a socket.
429 *
430 * On a success the socket object pointer is returned.
431 */
432
433struct socket *sockfd_lookup(int fd, int *err)
434{
435 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 struct socket *sock;
437
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700438 file = fget(fd);
439 if (!file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 *err = -EBADF;
441 return NULL;
442 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700443
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800444 sock = sock_from_file(file, err);
445 if (!sock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 fput(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 return sock;
448}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700449EXPORT_SYMBOL(sockfd_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800451static struct socket *sockfd_lookup_light(int fd, int *err, int *fput_needed)
452{
453 struct file *file;
454 struct socket *sock;
455
Hua Zhong36725582006-04-19 15:25:02 -0700456 *err = -EBADF;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800457 file = fget_light(fd, fput_needed);
458 if (file) {
459 sock = sock_from_file(file, err);
460 if (sock)
461 return sock;
462 fput_light(file, *fput_needed);
463 }
464 return NULL;
465}
466
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467/**
468 * sock_alloc - allocate a socket
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700469 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 * Allocate a new inode and socket object. The two are bound together
471 * and initialised. The socket is then returned. If we are out of inodes
472 * NULL is returned.
473 */
474
475static struct socket *sock_alloc(void)
476{
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700477 struct inode *inode;
478 struct socket *sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Eric Dumazeta209dfc2011-07-26 11:36:34 +0200480 inode = new_inode_pseudo(sock_mnt->mnt_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 if (!inode)
482 return NULL;
483
484 sock = SOCKET_I(inode);
485
Eric Dumazet29a020d2009-09-15 02:39:20 -0700486 kmemcheck_annotate_bitfield(sock, type);
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400487 inode->i_ino = get_next_ino();
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700488 inode->i_mode = S_IFSOCK | S_IRWXUGO;
David Howells8192b0c2008-11-14 10:39:10 +1100489 inode->i_uid = current_fsuid();
490 inode->i_gid = current_fsgid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
Eric Dumazet4e694892009-04-04 16:41:09 -0700492 percpu_add(sockets_in_use, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 return sock;
494}
495
496/*
497 * In theory you can't get an open on this inode, but /proc provides
498 * a back door. Remember to keep it shut otherwise you'll let the
499 * creepy crawlies in.
500 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700501
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502static int sock_no_open(struct inode *irrelevant, struct file *dontcare)
503{
504 return -ENXIO;
505}
506
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800507const struct file_operations bad_sock_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 .owner = THIS_MODULE,
509 .open = sock_no_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200510 .llseek = noop_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511};
512
513/**
514 * sock_release - close a socket
515 * @sock: socket to close
516 *
517 * The socket is released from the protocol stack if it has a release
518 * callback, and the inode is then released if the socket is bound to
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700519 * an inode not a file.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700521
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522void sock_release(struct socket *sock)
523{
524 if (sock->ops) {
525 struct module *owner = sock->ops->owner;
526
527 sock->ops->release(sock);
528 sock->ops = NULL;
529 module_put(owner);
530 }
531
Eric Dumazeteaefd112011-02-18 03:26:36 +0000532 if (rcu_dereference_protected(sock->wq, 1)->fasync_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 printk(KERN_ERR "sock_release: fasync list not empty!\n");
534
Eric Dumazet4e694892009-04-04 16:41:09 -0700535 percpu_sub(sockets_in_use, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 if (!sock->file) {
537 iput(SOCK_INODE(sock));
538 return;
539 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700540 sock->file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700542EXPORT_SYMBOL(sock_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Oliver Hartkopp2244d072010-08-17 08:59:14 +0000544int sock_tx_timestamp(struct sock *sk, __u8 *tx_flags)
Patrick Ohly20d49472009-02-12 05:03:38 +0000545{
Oliver Hartkopp2244d072010-08-17 08:59:14 +0000546 *tx_flags = 0;
Patrick Ohly20d49472009-02-12 05:03:38 +0000547 if (sock_flag(sk, SOCK_TIMESTAMPING_TX_HARDWARE))
Oliver Hartkopp2244d072010-08-17 08:59:14 +0000548 *tx_flags |= SKBTX_HW_TSTAMP;
Patrick Ohly20d49472009-02-12 05:03:38 +0000549 if (sock_flag(sk, SOCK_TIMESTAMPING_TX_SOFTWARE))
Oliver Hartkopp2244d072010-08-17 08:59:14 +0000550 *tx_flags |= SKBTX_SW_TSTAMP;
Johannes Berg6e3e9392011-11-09 10:15:42 +0100551 if (sock_flag(sk, SOCK_WIFI_STATUS))
552 *tx_flags |= SKBTX_WIFI_STATUS;
Patrick Ohly20d49472009-02-12 05:03:38 +0000553 return 0;
554}
555EXPORT_SYMBOL(sock_tx_timestamp);
556
Anton Blanchard228e5482011-05-02 20:21:35 +0000557static inline int __sock_sendmsg_nosec(struct kiocb *iocb, struct socket *sock,
558 struct msghdr *msg, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559{
560 struct sock_iocb *si = kiocb_to_siocb(iocb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Herbert Xuf8451722010-05-24 00:12:34 -0700562 sock_update_classid(sock->sk);
563
Neil Horman5bc14212011-11-22 05:10:51 +0000564 sock_update_netprioidx(sock->sk);
565
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 si->sock = sock;
567 si->scm = NULL;
568 si->msg = msg;
569 si->size = size;
570
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 return sock->ops->sendmsg(iocb, sock, msg, size);
572}
573
Anton Blanchard228e5482011-05-02 20:21:35 +0000574static inline int __sock_sendmsg(struct kiocb *iocb, struct socket *sock,
575 struct msghdr *msg, size_t size)
576{
577 int err = security_socket_sendmsg(sock, msg, size);
578
579 return err ?: __sock_sendmsg_nosec(iocb, sock, msg, size);
580}
581
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582int sock_sendmsg(struct socket *sock, struct msghdr *msg, size_t size)
583{
584 struct kiocb iocb;
585 struct sock_iocb siocb;
586 int ret;
587
588 init_sync_kiocb(&iocb, NULL);
589 iocb.private = &siocb;
590 ret = __sock_sendmsg(&iocb, sock, msg, size);
591 if (-EIOCBQUEUED == ret)
592 ret = wait_on_sync_kiocb(&iocb);
593 return ret;
594}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700595EXPORT_SYMBOL(sock_sendmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
Eric Dumazet894dc242011-07-26 02:39:41 +0000597static int sock_sendmsg_nosec(struct socket *sock, struct msghdr *msg, size_t size)
Anton Blanchard228e5482011-05-02 20:21:35 +0000598{
599 struct kiocb iocb;
600 struct sock_iocb siocb;
601 int ret;
602
603 init_sync_kiocb(&iocb, NULL);
604 iocb.private = &siocb;
605 ret = __sock_sendmsg_nosec(&iocb, sock, msg, size);
606 if (-EIOCBQUEUED == ret)
607 ret = wait_on_sync_kiocb(&iocb);
608 return ret;
609}
610
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611int kernel_sendmsg(struct socket *sock, struct msghdr *msg,
612 struct kvec *vec, size_t num, size_t size)
613{
614 mm_segment_t oldfs = get_fs();
615 int result;
616
617 set_fs(KERNEL_DS);
618 /*
619 * the following is safe, since for compiler definitions of kvec and
620 * iovec are identical, yielding the same in-core layout and alignment
621 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700622 msg->msg_iov = (struct iovec *)vec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 msg->msg_iovlen = num;
624 result = sock_sendmsg(sock, msg, size);
625 set_fs(oldfs);
626 return result;
627}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700628EXPORT_SYMBOL(kernel_sendmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
Patrick Ohly20d49472009-02-12 05:03:38 +0000630static int ktime2ts(ktime_t kt, struct timespec *ts)
631{
632 if (kt.tv64) {
633 *ts = ktime_to_timespec(kt);
634 return 1;
635 } else {
636 return 0;
637 }
638}
639
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700640/*
641 * called from sock_recv_timestamp() if sock_flag(sk, SOCK_RCVTSTAMP)
642 */
643void __sock_recv_timestamp(struct msghdr *msg, struct sock *sk,
644 struct sk_buff *skb)
645{
Patrick Ohly20d49472009-02-12 05:03:38 +0000646 int need_software_tstamp = sock_flag(sk, SOCK_RCVTSTAMP);
647 struct timespec ts[3];
648 int empty = 1;
649 struct skb_shared_hwtstamps *shhwtstamps =
650 skb_hwtstamps(skb);
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700651
Patrick Ohly20d49472009-02-12 05:03:38 +0000652 /* Race occurred between timestamp enabling and packet
653 receiving. Fill in the current time for now. */
654 if (need_software_tstamp && skb->tstamp.tv64 == 0)
655 __net_timestamp(skb);
656
657 if (need_software_tstamp) {
658 if (!sock_flag(sk, SOCK_RCVTSTAMPNS)) {
659 struct timeval tv;
660 skb_get_timestamp(skb, &tv);
661 put_cmsg(msg, SOL_SOCKET, SCM_TIMESTAMP,
662 sizeof(tv), &tv);
663 } else {
Hagen Paul Pfeifer842509b2010-04-06 05:39:52 +0000664 skb_get_timestampns(skb, &ts[0]);
Patrick Ohly20d49472009-02-12 05:03:38 +0000665 put_cmsg(msg, SOL_SOCKET, SCM_TIMESTAMPNS,
Hagen Paul Pfeifer842509b2010-04-06 05:39:52 +0000666 sizeof(ts[0]), &ts[0]);
Patrick Ohly20d49472009-02-12 05:03:38 +0000667 }
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700668 }
Patrick Ohly20d49472009-02-12 05:03:38 +0000669
670
671 memset(ts, 0, sizeof(ts));
672 if (skb->tstamp.tv64 &&
673 sock_flag(sk, SOCK_TIMESTAMPING_SOFTWARE)) {
674 skb_get_timestampns(skb, ts + 0);
675 empty = 0;
676 }
677 if (shhwtstamps) {
678 if (sock_flag(sk, SOCK_TIMESTAMPING_SYS_HARDWARE) &&
679 ktime2ts(shhwtstamps->syststamp, ts + 1))
680 empty = 0;
681 if (sock_flag(sk, SOCK_TIMESTAMPING_RAW_HARDWARE) &&
682 ktime2ts(shhwtstamps->hwtstamp, ts + 2))
683 empty = 0;
684 }
685 if (!empty)
686 put_cmsg(msg, SOL_SOCKET,
687 SCM_TIMESTAMPING, sizeof(ts), &ts);
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700688}
Arnaldo Carvalho de Melo7c81fd82007-03-10 00:39:35 -0300689EXPORT_SYMBOL_GPL(__sock_recv_timestamp);
690
Johannes Berg6e3e9392011-11-09 10:15:42 +0100691void __sock_recv_wifi_status(struct msghdr *msg, struct sock *sk,
692 struct sk_buff *skb)
693{
694 int ack;
695
696 if (!sock_flag(sk, SOCK_WIFI_STATUS))
697 return;
698 if (!skb->wifi_acked_valid)
699 return;
700
701 ack = skb->wifi_acked;
702
703 put_cmsg(msg, SOL_SOCKET, SCM_WIFI_STATUS, sizeof(ack), &ack);
704}
705EXPORT_SYMBOL_GPL(__sock_recv_wifi_status);
706
stephen hemminger11165f12010-10-18 14:27:29 +0000707static inline void sock_recv_drops(struct msghdr *msg, struct sock *sk,
708 struct sk_buff *skb)
Neil Horman3b885782009-10-12 13:26:31 -0700709{
710 if (sock_flag(sk, SOCK_RXQ_OVFL) && skb && skb->dropcount)
711 put_cmsg(msg, SOL_SOCKET, SO_RXQ_OVFL,
712 sizeof(__u32), &skb->dropcount);
713}
714
Eric Dumazet767dd032010-04-28 19:14:43 +0000715void __sock_recv_ts_and_drops(struct msghdr *msg, struct sock *sk,
Neil Horman3b885782009-10-12 13:26:31 -0700716 struct sk_buff *skb)
717{
718 sock_recv_timestamp(msg, sk, skb);
719 sock_recv_drops(msg, sk, skb);
720}
Eric Dumazet767dd032010-04-28 19:14:43 +0000721EXPORT_SYMBOL_GPL(__sock_recv_ts_and_drops);
Neil Horman3b885782009-10-12 13:26:31 -0700722
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -0700723static inline int __sock_recvmsg_nosec(struct kiocb *iocb, struct socket *sock,
724 struct msghdr *msg, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 struct sock_iocb *si = kiocb_to_siocb(iocb);
727
Herbert Xuf8451722010-05-24 00:12:34 -0700728 sock_update_classid(sock->sk);
729
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 si->sock = sock;
731 si->scm = NULL;
732 si->msg = msg;
733 si->size = size;
734 si->flags = flags;
735
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 return sock->ops->recvmsg(iocb, sock, msg, size, flags);
737}
738
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -0700739static inline int __sock_recvmsg(struct kiocb *iocb, struct socket *sock,
740 struct msghdr *msg, size_t size, int flags)
741{
742 int err = security_socket_recvmsg(sock, msg, size, flags);
743
744 return err ?: __sock_recvmsg_nosec(iocb, sock, msg, size, flags);
745}
746
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700747int sock_recvmsg(struct socket *sock, struct msghdr *msg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 size_t size, int flags)
749{
750 struct kiocb iocb;
751 struct sock_iocb siocb;
752 int ret;
753
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700754 init_sync_kiocb(&iocb, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 iocb.private = &siocb;
756 ret = __sock_recvmsg(&iocb, sock, msg, size, flags);
757 if (-EIOCBQUEUED == ret)
758 ret = wait_on_sync_kiocb(&iocb);
759 return ret;
760}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700761EXPORT_SYMBOL(sock_recvmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -0700763static int sock_recvmsg_nosec(struct socket *sock, struct msghdr *msg,
764 size_t size, int flags)
765{
766 struct kiocb iocb;
767 struct sock_iocb siocb;
768 int ret;
769
770 init_sync_kiocb(&iocb, NULL);
771 iocb.private = &siocb;
772 ret = __sock_recvmsg_nosec(&iocb, sock, msg, size, flags);
773 if (-EIOCBQUEUED == ret)
774 ret = wait_on_sync_kiocb(&iocb);
775 return ret;
776}
777
Martin Lucinac1249c02010-12-10 00:04:05 +0000778/**
779 * kernel_recvmsg - Receive a message from a socket (kernel space)
780 * @sock: The socket to receive the message from
781 * @msg: Received message
782 * @vec: Input s/g array for message data
783 * @num: Size of input s/g array
784 * @size: Number of bytes to read
785 * @flags: Message flags (MSG_DONTWAIT, etc...)
786 *
787 * On return the msg structure contains the scatter/gather array passed in the
788 * vec argument. The array is modified so that it consists of the unfilled
789 * portion of the original array.
790 *
791 * The returned value is the total number of bytes received, or an error.
792 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700793int kernel_recvmsg(struct socket *sock, struct msghdr *msg,
794 struct kvec *vec, size_t num, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795{
796 mm_segment_t oldfs = get_fs();
797 int result;
798
799 set_fs(KERNEL_DS);
800 /*
801 * the following is safe, since for compiler definitions of kvec and
802 * iovec are identical, yielding the same in-core layout and alignment
803 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700804 msg->msg_iov = (struct iovec *)vec, msg->msg_iovlen = num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 result = sock_recvmsg(sock, msg, size, flags);
806 set_fs(oldfs);
807 return result;
808}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700809EXPORT_SYMBOL(kernel_recvmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
811static void sock_aio_dtor(struct kiocb *iocb)
812{
813 kfree(iocb->private);
814}
815
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -0300816static ssize_t sock_sendpage(struct file *file, struct page *page,
817 int offset, size_t size, loff_t *ppos, int more)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818{
819 struct socket *sock;
820 int flags;
821
Eric Dumazetb69aee02005-09-06 14:42:45 -0700822 sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
Eric Dumazet35f9c092012-04-05 03:05:35 +0000824 flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
825 /* more is a combination of MSG_MORE and MSG_SENDPAGE_NOTLAST */
826 flags |= more;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827
Linus Torvaldse6949582009-08-13 08:28:36 -0700828 return kernel_sendpage(sock, page, offset, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829}
830
Jens Axboe9c55e012007-11-06 23:30:13 -0800831static ssize_t sock_splice_read(struct file *file, loff_t *ppos,
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700832 struct pipe_inode_info *pipe, size_t len,
Jens Axboe9c55e012007-11-06 23:30:13 -0800833 unsigned int flags)
834{
835 struct socket *sock = file->private_data;
836
Rémi Denis-Courmont997b37d2008-02-15 02:35:45 -0800837 if (unlikely(!sock->ops->splice_read))
838 return -EINVAL;
839
Herbert Xuf8451722010-05-24 00:12:34 -0700840 sock_update_classid(sock->sk);
841
Jens Axboe9c55e012007-11-06 23:30:13 -0800842 return sock->ops->splice_read(sock, ppos, pipe, len, flags);
843}
844
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800845static struct sock_iocb *alloc_sock_iocb(struct kiocb *iocb,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700846 struct sock_iocb *siocb)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800847{
848 if (!is_sync_kiocb(iocb)) {
849 siocb = kmalloc(sizeof(*siocb), GFP_KERNEL);
850 if (!siocb)
851 return NULL;
852 iocb->ki_dtor = sock_aio_dtor;
853 }
854
855 siocb->kiocb = iocb;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800856 iocb->private = siocb;
857 return siocb;
858}
859
860static ssize_t do_sock_read(struct msghdr *msg, struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -0700861 struct file *file, const struct iovec *iov,
862 unsigned long nr_segs)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800863{
864 struct socket *sock = file->private_data;
865 size_t size = 0;
866 int i;
867
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700868 for (i = 0; i < nr_segs; i++)
869 size += iov[i].iov_len;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800870
871 msg->msg_name = NULL;
872 msg->msg_namelen = 0;
873 msg->msg_control = NULL;
874 msg->msg_controllen = 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700875 msg->msg_iov = (struct iovec *)iov;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800876 msg->msg_iovlen = nr_segs;
877 msg->msg_flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
878
879 return __sock_recvmsg(iocb, sock, msg, size, msg->msg_flags);
880}
881
Badari Pulavarty027445c2006-09-30 23:28:46 -0700882static ssize_t sock_aio_read(struct kiocb *iocb, const struct iovec *iov,
883 unsigned long nr_segs, loff_t pos)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800884{
885 struct sock_iocb siocb, *x;
886
887 if (pos != 0)
888 return -ESPIPE;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700889
890 if (iocb->ki_left == 0) /* Match SYS5 behaviour */
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800891 return 0;
892
Badari Pulavarty027445c2006-09-30 23:28:46 -0700893
894 x = alloc_sock_iocb(iocb, &siocb);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800895 if (!x)
896 return -ENOMEM;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700897 return do_sock_read(&x->async_msg, iocb, iocb->ki_filp, iov, nr_segs);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800898}
899
900static ssize_t do_sock_write(struct msghdr *msg, struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -0700901 struct file *file, const struct iovec *iov,
902 unsigned long nr_segs)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800903{
904 struct socket *sock = file->private_data;
905 size_t size = 0;
906 int i;
907
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700908 for (i = 0; i < nr_segs; i++)
909 size += iov[i].iov_len;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800910
911 msg->msg_name = NULL;
912 msg->msg_namelen = 0;
913 msg->msg_control = NULL;
914 msg->msg_controllen = 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700915 msg->msg_iov = (struct iovec *)iov;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800916 msg->msg_iovlen = nr_segs;
917 msg->msg_flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
918 if (sock->type == SOCK_SEQPACKET)
919 msg->msg_flags |= MSG_EOR;
920
921 return __sock_sendmsg(iocb, sock, msg, size);
922}
923
Badari Pulavarty027445c2006-09-30 23:28:46 -0700924static ssize_t sock_aio_write(struct kiocb *iocb, const struct iovec *iov,
925 unsigned long nr_segs, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926{
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800927 struct sock_iocb siocb, *x;
928
929 if (pos != 0)
930 return -ESPIPE;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700931
Badari Pulavarty027445c2006-09-30 23:28:46 -0700932 x = alloc_sock_iocb(iocb, &siocb);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800933 if (!x)
934 return -ENOMEM;
935
Badari Pulavarty027445c2006-09-30 23:28:46 -0700936 return do_sock_write(&x->async_msg, iocb, iocb->ki_filp, iov, nr_segs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937}
938
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939/*
940 * Atomic setting of ioctl hooks to avoid race
941 * with module unload.
942 */
943
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800944static DEFINE_MUTEX(br_ioctl_mutex);
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700945static int (*br_ioctl_hook) (struct net *, unsigned int cmd, void __user *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
Eric W. Biederman881d9662007-09-17 11:56:21 -0700947void brioctl_set(int (*hook) (struct net *, unsigned int, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800949 mutex_lock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 br_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800951 mutex_unlock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952}
953EXPORT_SYMBOL(brioctl_set);
954
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800955static DEFINE_MUTEX(vlan_ioctl_mutex);
Eric W. Biederman881d9662007-09-17 11:56:21 -0700956static int (*vlan_ioctl_hook) (struct net *, void __user *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
Eric W. Biederman881d9662007-09-17 11:56:21 -0700958void vlan_ioctl_set(int (*hook) (struct net *, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800960 mutex_lock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 vlan_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800962 mutex_unlock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963}
964EXPORT_SYMBOL(vlan_ioctl_set);
965
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800966static DEFINE_MUTEX(dlci_ioctl_mutex);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700967static int (*dlci_ioctl_hook) (unsigned int, void __user *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700969void dlci_ioctl_set(int (*hook) (unsigned int, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800971 mutex_lock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 dlci_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800973 mutex_unlock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974}
975EXPORT_SYMBOL(dlci_ioctl_set);
976
Arnd Bergmann6b960182009-11-06 23:10:54 -0800977static long sock_do_ioctl(struct net *net, struct socket *sock,
978 unsigned int cmd, unsigned long arg)
979{
980 int err;
981 void __user *argp = (void __user *)arg;
982
983 err = sock->ops->ioctl(sock, cmd, arg);
984
985 /*
986 * If this ioctl is unknown try to hand it down
987 * to the NIC driver.
988 */
989 if (err == -ENOIOCTLCMD)
990 err = dev_ioctl(net, cmd, argp);
991
992 return err;
993}
994
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995/*
996 * With an ioctl, arg may well be a user mode pointer, but we don't know
997 * what to do with it - that's up to the protocol still.
998 */
999
1000static long sock_ioctl(struct file *file, unsigned cmd, unsigned long arg)
1001{
1002 struct socket *sock;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001003 struct sock *sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 void __user *argp = (void __user *)arg;
1005 int pid, err;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001006 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007
Eric Dumazetb69aee02005-09-06 14:42:45 -07001008 sock = file->private_data;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001009 sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001010 net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 if (cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15)) {
Eric W. Biederman881d9662007-09-17 11:56:21 -07001012 err = dev_ioctl(net, cmd, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 } else
Johannes Berg3d23e342009-09-29 23:27:28 +02001014#ifdef CONFIG_WEXT_CORE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 if (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST) {
Eric W. Biederman881d9662007-09-17 11:56:21 -07001016 err = dev_ioctl(net, cmd, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 } else
Johannes Berg3d23e342009-09-29 23:27:28 +02001018#endif
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001019 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 case FIOSETOWN:
1021 case SIOCSPGRP:
1022 err = -EFAULT;
1023 if (get_user(pid, (int __user *)argp))
1024 break;
1025 err = f_setown(sock->file, pid, 1);
1026 break;
1027 case FIOGETOWN:
1028 case SIOCGPGRP:
Eric W. Biederman609d7fa2006-10-02 02:17:15 -07001029 err = put_user(f_getown(sock->file),
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001030 (int __user *)argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 break;
1032 case SIOCGIFBR:
1033 case SIOCSIFBR:
1034 case SIOCBRADDBR:
1035 case SIOCBRDELBR:
1036 err = -ENOPKG;
1037 if (!br_ioctl_hook)
1038 request_module("bridge");
1039
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001040 mutex_lock(&br_ioctl_mutex);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001041 if (br_ioctl_hook)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001042 err = br_ioctl_hook(net, cmd, argp);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001043 mutex_unlock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 break;
1045 case SIOCGIFVLAN:
1046 case SIOCSIFVLAN:
1047 err = -ENOPKG;
1048 if (!vlan_ioctl_hook)
1049 request_module("8021q");
1050
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001051 mutex_lock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 if (vlan_ioctl_hook)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001053 err = vlan_ioctl_hook(net, argp);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001054 mutex_unlock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 case SIOCADDDLCI:
1057 case SIOCDELDLCI:
1058 err = -ENOPKG;
1059 if (!dlci_ioctl_hook)
1060 request_module("dlci");
1061
Pavel Emelyanov7512cbf2008-03-21 15:58:52 -07001062 mutex_lock(&dlci_ioctl_mutex);
1063 if (dlci_ioctl_hook)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 err = dlci_ioctl_hook(cmd, argp);
Pavel Emelyanov7512cbf2008-03-21 15:58:52 -07001065 mutex_unlock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 break;
1067 default:
Arnd Bergmann6b960182009-11-06 23:10:54 -08001068 err = sock_do_ioctl(net, sock, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001070 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 return err;
1072}
1073
1074int sock_create_lite(int family, int type, int protocol, struct socket **res)
1075{
1076 int err;
1077 struct socket *sock = NULL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001078
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 err = security_socket_create(family, type, protocol, 1);
1080 if (err)
1081 goto out;
1082
1083 sock = sock_alloc();
1084 if (!sock) {
1085 err = -ENOMEM;
1086 goto out;
1087 }
1088
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 sock->type = type;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001090 err = security_socket_post_create(sock, family, type, protocol, 1);
1091 if (err)
1092 goto out_release;
1093
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094out:
1095 *res = sock;
1096 return err;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001097out_release:
1098 sock_release(sock);
1099 sock = NULL;
1100 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001102EXPORT_SYMBOL(sock_create_lite);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
1104/* No kernel lock held - perfect */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001105static unsigned int sock_poll(struct file *file, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106{
1107 struct socket *sock;
1108
1109 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001110 * We can't return errors to poll, so it's either yes or no.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 */
Eric Dumazetb69aee02005-09-06 14:42:45 -07001112 sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 return sock->ops->poll(file, sock, wait);
1114}
1115
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001116static int sock_mmap(struct file *file, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117{
Eric Dumazetb69aee02005-09-06 14:42:45 -07001118 struct socket *sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119
1120 return sock->ops->mmap(file, sock, vma);
1121}
1122
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001123static int sock_close(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124{
1125 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001126 * It was possible the inode is NULL we were
1127 * closing an unfinished socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 */
1129
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001130 if (!inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 printk(KERN_DEBUG "sock_close: NULL inode\n");
1132 return 0;
1133 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 sock_release(SOCKET_I(inode));
1135 return 0;
1136}
1137
1138/*
1139 * Update the socket async list
1140 *
1141 * Fasync_list locking strategy.
1142 *
1143 * 1. fasync_list is modified only under process context socket lock
1144 * i.e. under semaphore.
1145 * 2. fasync_list is used under read_lock(&sk->sk_callback_lock)
Eric Dumazet989a2972010-04-14 09:55:35 +00001146 * or under socket lock
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 */
1148
1149static int sock_fasync(int fd, struct file *filp, int on)
1150{
Eric Dumazet989a2972010-04-14 09:55:35 +00001151 struct socket *sock = filp->private_data;
1152 struct sock *sk = sock->sk;
Eric Dumazeteaefd112011-02-18 03:26:36 +00001153 struct socket_wq *wq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154
Eric Dumazet989a2972010-04-14 09:55:35 +00001155 if (sk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
1158 lock_sock(sk);
Eric Dumazeteaefd112011-02-18 03:26:36 +00001159 wq = rcu_dereference_protected(sock->wq, sock_owned_by_user(sk));
1160 fasync_helper(fd, filp, on, &wq->fasync_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161
Eric Dumazeteaefd112011-02-18 03:26:36 +00001162 if (!wq->fasync_list)
Eric Dumazet989a2972010-04-14 09:55:35 +00001163 sock_reset_flag(sk, SOCK_FASYNC);
Jonathan Corbet76398422009-02-01 14:26:59 -07001164 else
Eric Dumazetbcdce712009-10-06 17:28:29 -07001165 sock_set_flag(sk, SOCK_FASYNC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166
Eric Dumazet989a2972010-04-14 09:55:35 +00001167 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 return 0;
1169}
1170
Eric Dumazet43815482010-04-29 11:01:49 +00001171/* This function may be called only under socket lock or callback_lock or rcu_lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172
1173int sock_wake_async(struct socket *sock, int how, int band)
1174{
Eric Dumazet43815482010-04-29 11:01:49 +00001175 struct socket_wq *wq;
1176
1177 if (!sock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 return -1;
Eric Dumazet43815482010-04-29 11:01:49 +00001179 rcu_read_lock();
1180 wq = rcu_dereference(sock->wq);
1181 if (!wq || !wq->fasync_list) {
1182 rcu_read_unlock();
1183 return -1;
1184 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001185 switch (how) {
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001186 case SOCK_WAKE_WAITD:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 if (test_bit(SOCK_ASYNC_WAITDATA, &sock->flags))
1188 break;
1189 goto call_kill;
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001190 case SOCK_WAKE_SPACE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 if (!test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sock->flags))
1192 break;
1193 /* fall through */
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001194 case SOCK_WAKE_IO:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001195call_kill:
Eric Dumazet43815482010-04-29 11:01:49 +00001196 kill_fasync(&wq->fasync_list, SIGIO, band);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 break;
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001198 case SOCK_WAKE_URG:
Eric Dumazet43815482010-04-29 11:01:49 +00001199 kill_fasync(&wq->fasync_list, SIGURG, band);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 }
Eric Dumazet43815482010-04-29 11:01:49 +00001201 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 return 0;
1203}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001204EXPORT_SYMBOL(sock_wake_async);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205
Pavel Emelyanov721db932010-09-29 16:06:32 +04001206int __sock_create(struct net *net, int family, int type, int protocol,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001207 struct socket **res, int kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208{
1209 int err;
1210 struct socket *sock;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001211 const struct net_proto_family *pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
1213 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001214 * Check protocol is in range
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 */
1216 if (family < 0 || family >= NPROTO)
1217 return -EAFNOSUPPORT;
1218 if (type < 0 || type >= SOCK_MAX)
1219 return -EINVAL;
1220
1221 /* Compatibility.
1222
1223 This uglymoron is moved from INET layer to here to avoid
1224 deadlock in module load.
1225 */
1226 if (family == PF_INET && type == SOCK_PACKET) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001227 static int warned;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 if (!warned) {
1229 warned = 1;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001230 printk(KERN_INFO "%s uses obsolete (PF_INET,SOCK_PACKET)\n",
1231 current->comm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 }
1233 family = PF_PACKET;
1234 }
1235
1236 err = security_socket_create(family, type, protocol, kern);
1237 if (err)
1238 return err;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001239
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001240 /*
1241 * Allocate the socket and allow the family to set things up. if
1242 * the protocol is 0, the family is instructed to select an appropriate
1243 * default.
1244 */
1245 sock = sock_alloc();
1246 if (!sock) {
1247 if (net_ratelimit())
1248 printk(KERN_WARNING "socket: no more sockets\n");
1249 return -ENFILE; /* Not exactly a match, but its the
1250 closest posix thing */
1251 }
1252
1253 sock->type = type;
1254
Johannes Berg95a5afc2008-10-16 15:24:51 -07001255#ifdef CONFIG_MODULES
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001256 /* Attempt to load a protocol module if the find failed.
1257 *
1258 * 12/09/1996 Marcin: But! this makes REALLY only sense, if the user
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 * requested real, full-featured networking support upon configuration.
1260 * Otherwise module support will break!
1261 */
Eric Dumazet190683a2010-11-10 10:50:44 +00001262 if (rcu_access_pointer(net_families[family]) == NULL)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001263 request_module("net-pf-%d", family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264#endif
1265
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001266 rcu_read_lock();
1267 pf = rcu_dereference(net_families[family]);
1268 err = -EAFNOSUPPORT;
1269 if (!pf)
1270 goto out_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271
1272 /*
1273 * We will call the ->create function, that possibly is in a loadable
1274 * module, so we have to bump that loadable module refcnt first.
1275 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001276 if (!try_module_get(pf->owner))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 goto out_release;
1278
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001279 /* Now protected by module ref count */
1280 rcu_read_unlock();
1281
Eric Paris3f378b62009-11-05 22:18:14 -08001282 err = pf->create(net, sock, protocol, kern);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001283 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 goto out_module_put;
Frank Filza79af592005-09-27 15:23:38 -07001285
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 /*
1287 * Now to bump the refcnt of the [loadable] module that owns this
1288 * socket at sock_release time we decrement its refcnt.
1289 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001290 if (!try_module_get(sock->ops->owner))
1291 goto out_module_busy;
1292
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 /*
1294 * Now that we're done with the ->create function, the [loadable]
1295 * module can have its refcnt decremented
1296 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001297 module_put(pf->owner);
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001298 err = security_socket_post_create(sock, family, type, protocol, kern);
1299 if (err)
Herbert Xu3b185522007-08-15 14:46:02 -07001300 goto out_sock_release;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001301 *res = sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001303 return 0;
1304
1305out_module_busy:
1306 err = -EAFNOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307out_module_put:
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001308 sock->ops = NULL;
1309 module_put(pf->owner);
1310out_sock_release:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 sock_release(sock);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001312 return err;
1313
1314out_release:
1315 rcu_read_unlock();
1316 goto out_sock_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317}
Pavel Emelyanov721db932010-09-29 16:06:32 +04001318EXPORT_SYMBOL(__sock_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319
1320int sock_create(int family, int type, int protocol, struct socket **res)
1321{
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001322 return __sock_create(current->nsproxy->net_ns, family, type, protocol, res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001324EXPORT_SYMBOL(sock_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325
1326int sock_create_kern(int family, int type, int protocol, struct socket **res)
1327{
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001328 return __sock_create(&init_net, family, type, protocol, res, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001330EXPORT_SYMBOL(sock_create_kern);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001332SYSCALL_DEFINE3(socket, int, family, int, type, int, protocol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333{
1334 int retval;
1335 struct socket *sock;
Ulrich Dreppera677a032008-07-23 21:29:17 -07001336 int flags;
1337
Ulrich Dreppere38b36f2008-07-23 21:29:42 -07001338 /* Check the SOCK_* constants for consistency. */
1339 BUILD_BUG_ON(SOCK_CLOEXEC != O_CLOEXEC);
1340 BUILD_BUG_ON((SOCK_MAX | SOCK_TYPE_MASK) != SOCK_TYPE_MASK);
1341 BUILD_BUG_ON(SOCK_CLOEXEC & SOCK_TYPE_MASK);
1342 BUILD_BUG_ON(SOCK_NONBLOCK & SOCK_TYPE_MASK);
1343
Ulrich Dreppera677a032008-07-23 21:29:17 -07001344 flags = type & ~SOCK_TYPE_MASK;
Ulrich Drepper77d27202008-07-23 21:29:35 -07001345 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Dreppera677a032008-07-23 21:29:17 -07001346 return -EINVAL;
1347 type &= SOCK_TYPE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001349 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1350 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1351
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 retval = sock_create(family, type, protocol, &sock);
1353 if (retval < 0)
1354 goto out;
1355
Harout Hedeshianff12c742014-03-04 07:31:47 -07001356 if (retval == 0)
1357 sockev_notify(SOCKEV_SOCKET, sock);
1358
Ulrich Drepper77d27202008-07-23 21:29:35 -07001359 retval = sock_map_fd(sock, flags & (O_CLOEXEC | O_NONBLOCK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 if (retval < 0)
1361 goto out_release;
1362
1363out:
1364 /* It may be already another descriptor 8) Not kernel problem. */
1365 return retval;
1366
1367out_release:
1368 sock_release(sock);
1369 return retval;
1370}
1371
1372/*
1373 * Create a pair of connected sockets.
1374 */
1375
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001376SYSCALL_DEFINE4(socketpair, int, family, int, type, int, protocol,
1377 int __user *, usockvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378{
1379 struct socket *sock1, *sock2;
1380 int fd1, fd2, err;
Al Virodb349502007-02-07 01:48:00 -05001381 struct file *newfile1, *newfile2;
Ulrich Dreppera677a032008-07-23 21:29:17 -07001382 int flags;
1383
1384 flags = type & ~SOCK_TYPE_MASK;
Ulrich Drepper77d27202008-07-23 21:29:35 -07001385 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Dreppera677a032008-07-23 21:29:17 -07001386 return -EINVAL;
1387 type &= SOCK_TYPE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001389 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1390 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1391
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 /*
1393 * Obtain the first socket and check if the underlying protocol
1394 * supports the socketpair call.
1395 */
1396
1397 err = sock_create(family, type, protocol, &sock1);
1398 if (err < 0)
1399 goto out;
1400
1401 err = sock_create(family, type, protocol, &sock2);
1402 if (err < 0)
1403 goto out_release_1;
1404
1405 err = sock1->ops->socketpair(sock1, sock2);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001406 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 goto out_release_both;
1408
Al Viro7cbe66b2009-08-05 19:59:08 +04001409 fd1 = sock_alloc_file(sock1, &newfile1, flags);
David S. Millerbf3c23d2007-10-29 21:54:02 -07001410 if (unlikely(fd1 < 0)) {
1411 err = fd1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 goto out_release_both;
David S. Millerbf3c23d2007-10-29 21:54:02 -07001413 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414
Al Viro7cbe66b2009-08-05 19:59:08 +04001415 fd2 = sock_alloc_file(sock2, &newfile2, flags);
Al Viro198de4d2009-08-05 19:29:23 +04001416 if (unlikely(fd2 < 0)) {
1417 err = fd2;
1418 fput(newfile1);
1419 put_unused_fd(fd1);
1420 sock_release(sock2);
1421 goto out;
Al Virodb349502007-02-07 01:48:00 -05001422 }
1423
Al Viro157cf642008-12-14 04:57:47 -05001424 audit_fd_pair(fd1, fd2);
Al Virodb349502007-02-07 01:48:00 -05001425 fd_install(fd1, newfile1);
1426 fd_install(fd2, newfile2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 /* fd1 and fd2 may be already another descriptors.
1428 * Not kernel problem.
1429 */
1430
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001431 err = put_user(fd1, &usockvec[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 if (!err)
1433 err = put_user(fd2, &usockvec[1]);
1434 if (!err)
1435 return 0;
1436
1437 sys_close(fd2);
1438 sys_close(fd1);
1439 return err;
1440
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441out_release_both:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001442 sock_release(sock2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443out_release_1:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001444 sock_release(sock1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445out:
1446 return err;
1447}
1448
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449/*
1450 * Bind a name to a socket. Nothing much to do here since it's
1451 * the protocol's responsibility to handle the local address.
1452 *
1453 * We move the socket address to kernel space before we call
1454 * the protocol layer (having also checked the address is ok).
1455 */
1456
Heiko Carstens20f37032009-01-14 14:14:23 +01001457SYSCALL_DEFINE3(bind, int, fd, struct sockaddr __user *, umyaddr, int, addrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458{
1459 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001460 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001461 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001463 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001464 if (sock) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001465 err = move_addr_to_kernel(umyaddr, addrlen, &address);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001466 if (err >= 0) {
1467 err = security_socket_bind(sock,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001468 (struct sockaddr *)&address,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001469 addrlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001470 if (!err)
1471 err = sock->ops->bind(sock,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001472 (struct sockaddr *)
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001473 &address, addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 }
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001475 fput_light(sock->file, fput_needed);
Harout Hedeshianff12c742014-03-04 07:31:47 -07001476 if (!err)
1477 sockev_notify(SOCKEV_BIND, sock);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001478 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 return err;
1480}
1481
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482/*
1483 * Perform a listen. Basically, we allow the protocol to do anything
1484 * necessary for a listen, and if that works, we mark the socket as
1485 * ready for listening.
1486 */
1487
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001488SYSCALL_DEFINE2(listen, int, fd, int, backlog)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489{
1490 struct socket *sock;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001491 int err, fput_needed;
Pavel Emelyanovb8e1f9b2007-12-08 00:12:33 -08001492 int somaxconn;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001493
1494 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1495 if (sock) {
Pavel Emelyanov8efa6e92008-03-31 19:41:14 -07001496 somaxconn = sock_net(sock->sk)->core.sysctl_somaxconn;
Pavel Emelyanovb8e1f9b2007-12-08 00:12:33 -08001497 if ((unsigned)backlog > somaxconn)
1498 backlog = somaxconn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499
1500 err = security_socket_listen(sock, backlog);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001501 if (!err)
1502 err = sock->ops->listen(sock, backlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001504 fput_light(sock->file, fput_needed);
Harout Hedeshianff12c742014-03-04 07:31:47 -07001505 if (!err)
1506 sockev_notify(SOCKEV_LISTEN, sock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 }
1508 return err;
1509}
1510
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511/*
1512 * For accept, we attempt to create a new socket, set up the link
1513 * with the client, wake up the client, then return the new
1514 * connected fd. We collect the address of the connector in kernel
1515 * space and move it to user at the very end. This is unclean because
1516 * we open the socket then return an error.
1517 *
1518 * 1003.1g adds the ability to recvmsg() to query connection pending
1519 * status to recvmsg. We need to add that support in a way thats
1520 * clean when we restucture accept also.
1521 */
1522
Heiko Carstens20f37032009-01-14 14:14:23 +01001523SYSCALL_DEFINE4(accept4, int, fd, struct sockaddr __user *, upeer_sockaddr,
1524 int __user *, upeer_addrlen, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525{
1526 struct socket *sock, *newsock;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001527 struct file *newfile;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001528 int err, len, newfd, fput_needed;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001529 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530
Ulrich Drepper77d27202008-07-23 21:29:35 -07001531 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001532 return -EINVAL;
1533
1534 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1535 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1536
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001537 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 if (!sock)
1539 goto out;
1540
1541 err = -ENFILE;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001542 newsock = sock_alloc();
1543 if (!newsock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 goto out_put;
1545
1546 newsock->type = sock->type;
1547 newsock->ops = sock->ops;
1548
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 /*
1550 * We don't need try_module_get here, as the listening socket (sock)
1551 * has the protocol module (sock->ops->owner) held.
1552 */
1553 __module_get(newsock->ops->owner);
1554
Al Viro7cbe66b2009-08-05 19:59:08 +04001555 newfd = sock_alloc_file(newsock, &newfile, flags);
David S. Miller39d8c1b2006-03-20 17:13:49 -08001556 if (unlikely(newfd < 0)) {
1557 err = newfd;
David S. Miller9a1875e2006-04-01 12:48:36 -08001558 sock_release(newsock);
1559 goto out_put;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001560 }
1561
Frank Filza79af592005-09-27 15:23:38 -07001562 err = security_socket_accept(sock, newsock);
1563 if (err)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001564 goto out_fd;
Frank Filza79af592005-09-27 15:23:38 -07001565
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 err = sock->ops->accept(sock, newsock, sock->file->f_flags);
1567 if (err < 0)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001568 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569
1570 if (upeer_sockaddr) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001571 if (newsock->ops->getname(newsock, (struct sockaddr *)&address,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001572 &len, 2) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 err = -ECONNABORTED;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001574 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 }
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001576 err = move_addr_to_user(&address,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001577 len, upeer_sockaddr, upeer_addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 if (err < 0)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001579 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 }
1581
1582 /* File flags are not inherited via accept() unlike another OSes. */
1583
David S. Miller39d8c1b2006-03-20 17:13:49 -08001584 fd_install(newfd, newfile);
1585 err = newfd;
Harout Hedeshianff12c742014-03-04 07:31:47 -07001586 if (!err)
1587 sockev_notify(SOCKEV_ACCEPT, sock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001589 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590out:
1591 return err;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001592out_fd:
David S. Miller9606a212006-04-01 01:00:14 -08001593 fput(newfile);
David S. Miller39d8c1b2006-03-20 17:13:49 -08001594 put_unused_fd(newfd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 goto out_put;
1596}
1597
Heiko Carstens20f37032009-01-14 14:14:23 +01001598SYSCALL_DEFINE3(accept, int, fd, struct sockaddr __user *, upeer_sockaddr,
1599 int __user *, upeer_addrlen)
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001600{
Ulrich Drepperde11def2008-11-19 15:36:14 -08001601 return sys_accept4(fd, upeer_sockaddr, upeer_addrlen, 0);
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001602}
1603
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604/*
1605 * Attempt to connect to a socket with the server address. The address
1606 * is in user space so we verify it is OK and move it to kernel space.
1607 *
1608 * For 1003.1g we need to add clean support for a bind to AF_UNSPEC to
1609 * break bindings
1610 *
1611 * NOTE: 1003.1g draft 6.3 is broken with respect to AX.25/NetROM and
1612 * other SEQPACKET protocols that take time to connect() as it doesn't
1613 * include the -EINPROGRESS status for such sockets.
1614 */
1615
Heiko Carstens20f37032009-01-14 14:14:23 +01001616SYSCALL_DEFINE3(connect, int, fd, struct sockaddr __user *, uservaddr,
1617 int, addrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618{
1619 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001620 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001621 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001623 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 if (!sock)
1625 goto out;
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001626 err = move_addr_to_kernel(uservaddr, addrlen, &address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 if (err < 0)
1628 goto out_put;
1629
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001630 err =
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001631 security_socket_connect(sock, (struct sockaddr *)&address, addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 if (err)
1633 goto out_put;
1634
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001635 err = sock->ops->connect(sock, (struct sockaddr *)&address, addrlen,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 sock->file->f_flags);
Harout Hedeshianff12c742014-03-04 07:31:47 -07001637 if (!err)
1638 sockev_notify(SOCKEV_CONNECT, sock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001640 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641out:
1642 return err;
1643}
1644
1645/*
1646 * Get the local address ('name') of a socket object. Move the obtained
1647 * name to user space.
1648 */
1649
Heiko Carstens20f37032009-01-14 14:14:23 +01001650SYSCALL_DEFINE3(getsockname, int, fd, struct sockaddr __user *, usockaddr,
1651 int __user *, usockaddr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652{
1653 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001654 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001655 int len, err, fput_needed;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001656
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001657 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 if (!sock)
1659 goto out;
1660
1661 err = security_socket_getsockname(sock);
1662 if (err)
1663 goto out_put;
1664
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001665 err = sock->ops->getname(sock, (struct sockaddr *)&address, &len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 if (err)
1667 goto out_put;
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001668 err = move_addr_to_user(&address, len, usockaddr, usockaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669
1670out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001671 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672out:
1673 return err;
1674}
1675
1676/*
1677 * Get the remote address ('name') of a socket object. Move the obtained
1678 * name to user space.
1679 */
1680
Heiko Carstens20f37032009-01-14 14:14:23 +01001681SYSCALL_DEFINE3(getpeername, int, fd, struct sockaddr __user *, usockaddr,
1682 int __user *, usockaddr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683{
1684 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001685 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001686 int len, err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001688 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1689 if (sock != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 err = security_socket_getpeername(sock);
1691 if (err) {
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001692 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 return err;
1694 }
1695
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001696 err =
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001697 sock->ops->getname(sock, (struct sockaddr *)&address, &len,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001698 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 if (!err)
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001700 err = move_addr_to_user(&address, len, usockaddr,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001701 usockaddr_len);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001702 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 }
1704 return err;
1705}
1706
1707/*
1708 * Send a datagram to a given address. We move the address into kernel
1709 * space and check the user space data area is readable before invoking
1710 * the protocol.
1711 */
1712
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001713SYSCALL_DEFINE6(sendto, int, fd, void __user *, buff, size_t, len,
1714 unsigned, flags, struct sockaddr __user *, addr,
1715 int, addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716{
1717 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001718 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 int err;
1720 struct msghdr msg;
1721 struct iovec iov;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001722 int fput_needed;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001723
Linus Torvalds253eacc2010-10-30 16:43:10 -07001724 if (len > INT_MAX)
1725 len = INT_MAX;
Teow Wan Yee22227262016-07-27 16:00:14 +08001726 if (unlikely(!access_ok(VERIFY_READ, buff, len)))
1727 return -EFAULT;
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001728 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1729 if (!sock)
David S. Miller4387ff72007-02-08 15:06:08 -08001730 goto out;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001731
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001732 iov.iov_base = buff;
1733 iov.iov_len = len;
1734 msg.msg_name = NULL;
1735 msg.msg_iov = &iov;
1736 msg.msg_iovlen = 1;
1737 msg.msg_control = NULL;
1738 msg.msg_controllen = 0;
1739 msg.msg_namelen = 0;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001740 if (addr) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001741 err = move_addr_to_kernel(addr, addr_len, &address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 if (err < 0)
1743 goto out_put;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001744 msg.msg_name = (struct sockaddr *)&address;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001745 msg.msg_namelen = addr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 }
1747 if (sock->file->f_flags & O_NONBLOCK)
1748 flags |= MSG_DONTWAIT;
1749 msg.msg_flags = flags;
1750 err = sock_sendmsg(sock, &msg, len);
1751
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001752out_put:
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001753 fput_light(sock->file, fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08001754out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 return err;
1756}
1757
1758/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001759 * Send a datagram down a socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 */
1761
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001762SYSCALL_DEFINE4(send, int, fd, void __user *, buff, size_t, len,
1763 unsigned, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764{
1765 return sys_sendto(fd, buff, len, flags, NULL, 0);
1766}
1767
1768/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001769 * Receive a frame from the socket and optionally record the address of the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 * sender. We verify the buffers are writable and if needed move the
1771 * sender address from kernel to user space.
1772 */
1773
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001774SYSCALL_DEFINE6(recvfrom, int, fd, void __user *, ubuf, size_t, size,
1775 unsigned, flags, struct sockaddr __user *, addr,
1776 int __user *, addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777{
1778 struct socket *sock;
1779 struct iovec iov;
1780 struct msghdr msg;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001781 struct sockaddr_storage address;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001782 int err, err2;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001783 int fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784
Linus Torvalds253eacc2010-10-30 16:43:10 -07001785 if (size > INT_MAX)
1786 size = INT_MAX;
Teow Wan Yee22227262016-07-27 16:00:14 +08001787 if (unlikely(!access_ok(VERIFY_WRITE, ubuf, size)))
1788 return -EFAULT;
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001789 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 if (!sock)
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001791 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001793 msg.msg_control = NULL;
1794 msg.msg_controllen = 0;
1795 msg.msg_iovlen = 1;
1796 msg.msg_iov = &iov;
1797 iov.iov_len = size;
1798 iov.iov_base = ubuf;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001799 msg.msg_name = (struct sockaddr *)&address;
1800 msg.msg_namelen = sizeof(address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 if (sock->file->f_flags & O_NONBLOCK)
1802 flags |= MSG_DONTWAIT;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001803 err = sock_recvmsg(sock, &msg, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001805 if (err >= 0 && addr != NULL) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001806 err2 = move_addr_to_user(&address,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001807 msg.msg_namelen, addr, addr_len);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001808 if (err2 < 0)
1809 err = err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 }
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001811
1812 fput_light(sock->file, fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08001813out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 return err;
1815}
1816
1817/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001818 * Receive a datagram from a socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 */
1820
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001821asmlinkage long sys_recv(int fd, void __user *ubuf, size_t size,
1822 unsigned flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823{
1824 return sys_recvfrom(fd, ubuf, size, flags, NULL, NULL);
1825}
1826
1827/*
1828 * Set a socket option. Because we don't know the option lengths we have
1829 * to pass the user mode parameter for the protocols to sort out.
1830 */
1831
Heiko Carstens20f37032009-01-14 14:14:23 +01001832SYSCALL_DEFINE5(setsockopt, int, fd, int, level, int, optname,
1833 char __user *, optval, int, optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001835 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 struct socket *sock;
1837
1838 if (optlen < 0)
1839 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001840
1841 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1842 if (sock != NULL) {
1843 err = security_socket_setsockopt(sock, level, optname);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001844 if (err)
1845 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846
1847 if (level == SOL_SOCKET)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001848 err =
1849 sock_setsockopt(sock, level, optname, optval,
1850 optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 else
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001852 err =
1853 sock->ops->setsockopt(sock, level, optname, optval,
1854 optlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001855out_put:
1856 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 }
1858 return err;
1859}
1860
1861/*
1862 * Get a socket option. Because we don't know the option lengths we have
1863 * to pass a user mode parameter for the protocols to sort out.
1864 */
1865
Heiko Carstens20f37032009-01-14 14:14:23 +01001866SYSCALL_DEFINE5(getsockopt, int, fd, int, level, int, optname,
1867 char __user *, optval, int __user *, optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001869 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 struct socket *sock;
1871
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001872 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1873 if (sock != NULL) {
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001874 err = security_socket_getsockopt(sock, level, optname);
1875 if (err)
1876 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877
1878 if (level == SOL_SOCKET)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001879 err =
1880 sock_getsockopt(sock, level, optname, optval,
1881 optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 else
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001883 err =
1884 sock->ops->getsockopt(sock, level, optname, optval,
1885 optlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001886out_put:
1887 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 }
1889 return err;
1890}
1891
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892/*
1893 * Shutdown a socket.
1894 */
1895
Heiko Carstens754fe8d2009-01-14 14:14:09 +01001896SYSCALL_DEFINE2(shutdown, int, fd, int, how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001898 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 struct socket *sock;
1900
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001901 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1902 if (sock != NULL) {
Harout Hedeshianff12c742014-03-04 07:31:47 -07001903 sockev_notify(SOCKEV_SHUTDOWN, sock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 err = security_socket_shutdown(sock, how);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001905 if (!err)
1906 err = sock->ops->shutdown(sock, how);
1907 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 }
1909 return err;
1910}
1911
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001912/* A couple of helpful macros for getting the address of the 32/64 bit
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 * fields which are the same type (int / unsigned) on our platforms.
1914 */
1915#define COMPAT_MSG(msg, member) ((MSG_CMSG_COMPAT & flags) ? &msg##_compat->member : &msg->member)
1916#define COMPAT_NAMELEN(msg) COMPAT_MSG(msg, msg_namelen)
1917#define COMPAT_FLAGS(msg) COMPAT_MSG(msg, msg_flags)
1918
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00001919struct used_address {
1920 struct sockaddr_storage name;
1921 unsigned int name_len;
1922};
1923
Anton Blanchard228e5482011-05-02 20:21:35 +00001924static int __sys_sendmsg(struct socket *sock, struct msghdr __user *msg,
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00001925 struct msghdr *msg_sys, unsigned flags,
1926 struct used_address *used_address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001928 struct compat_msghdr __user *msg_compat =
1929 (struct compat_msghdr __user *)msg;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001930 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 struct iovec iovstack[UIO_FASTIOV], *iov = iovstack;
Alex Williamsonb9d717a2005-09-26 14:28:02 -07001932 unsigned char ctl[sizeof(struct cmsghdr) + 20]
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001933 __attribute__ ((aligned(sizeof(__kernel_size_t))));
1934 /* 20 is size of ipv6_pktinfo */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 unsigned char *ctl_buf = ctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 int err, ctl_len, iov_size, total_len;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001937
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 err = -EFAULT;
1939 if (MSG_CMSG_COMPAT & flags) {
Anton Blanchard228e5482011-05-02 20:21:35 +00001940 if (get_compat_msghdr(msg_sys, msg_compat))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 return -EFAULT;
Anton Blanchard228e5482011-05-02 20:21:35 +00001942 } else if (copy_from_user(msg_sys, msg, sizeof(struct msghdr)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 return -EFAULT;
1944
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 /* do not move before msg_sys is valid */
1946 err = -EMSGSIZE;
Anton Blanchard228e5482011-05-02 20:21:35 +00001947 if (msg_sys->msg_iovlen > UIO_MAXIOV)
1948 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001950 /* Check whether to allocate the iovec area */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 err = -ENOMEM;
Anton Blanchard228e5482011-05-02 20:21:35 +00001952 iov_size = msg_sys->msg_iovlen * sizeof(struct iovec);
1953 if (msg_sys->msg_iovlen > UIO_FASTIOV) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 iov = sock_kmalloc(sock->sk, iov_size, GFP_KERNEL);
1955 if (!iov)
Anton Blanchard228e5482011-05-02 20:21:35 +00001956 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 }
1958
1959 /* This will also move the address data into kernel space */
1960 if (MSG_CMSG_COMPAT & flags) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001961 err = verify_compat_iovec(msg_sys, iov, &address, VERIFY_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 } else
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001963 err = verify_iovec(msg_sys, iov, &address, VERIFY_READ);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001964 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 goto out_freeiov;
1966 total_len = err;
1967
1968 err = -ENOBUFS;
1969
Anton Blanchard228e5482011-05-02 20:21:35 +00001970 if (msg_sys->msg_controllen > INT_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 goto out_freeiov;
Anton Blanchard228e5482011-05-02 20:21:35 +00001972 ctl_len = msg_sys->msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 if ((MSG_CMSG_COMPAT & flags) && ctl_len) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001974 err =
Anton Blanchard228e5482011-05-02 20:21:35 +00001975 cmsghdr_from_user_compat_to_kern(msg_sys, sock->sk, ctl,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001976 sizeof(ctl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 if (err)
1978 goto out_freeiov;
Anton Blanchard228e5482011-05-02 20:21:35 +00001979 ctl_buf = msg_sys->msg_control;
1980 ctl_len = msg_sys->msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 } else if (ctl_len) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001982 if (ctl_len > sizeof(ctl)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 ctl_buf = sock_kmalloc(sock->sk, ctl_len, GFP_KERNEL);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001984 if (ctl_buf == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 goto out_freeiov;
1986 }
1987 err = -EFAULT;
1988 /*
Anton Blanchard228e5482011-05-02 20:21:35 +00001989 * Careful! Before this, msg_sys->msg_control contains a user pointer.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 * Afterwards, it will be a kernel pointer. Thus the compiler-assisted
1991 * checking falls down on this.
1992 */
Namhyung Kimfb8621b2010-09-07 03:55:00 +00001993 if (copy_from_user(ctl_buf,
Anton Blanchard228e5482011-05-02 20:21:35 +00001994 (void __user __force *)msg_sys->msg_control,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001995 ctl_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 goto out_freectl;
Anton Blanchard228e5482011-05-02 20:21:35 +00001997 msg_sys->msg_control = ctl_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 }
Anton Blanchard228e5482011-05-02 20:21:35 +00001999 msg_sys->msg_flags = flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000
2001 if (sock->file->f_flags & O_NONBLOCK)
Anton Blanchard228e5482011-05-02 20:21:35 +00002002 msg_sys->msg_flags |= MSG_DONTWAIT;
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002003 /*
2004 * If this is sendmmsg() and current destination address is same as
2005 * previously succeeded address, omit asking LSM's decision.
2006 * used_address->name_len is initialized to UINT_MAX so that the first
2007 * destination address never matches.
2008 */
Mathieu Desnoyersbc909d92011-08-24 19:45:03 -07002009 if (used_address && msg_sys->msg_name &&
2010 used_address->name_len == msg_sys->msg_namelen &&
2011 !memcmp(&used_address->name, msg_sys->msg_name,
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002012 used_address->name_len)) {
2013 err = sock_sendmsg_nosec(sock, msg_sys, total_len);
2014 goto out_freectl;
2015 }
2016 err = sock_sendmsg(sock, msg_sys, total_len);
2017 /*
2018 * If this is sendmmsg() and sending to current destination address was
2019 * successful, remember it.
2020 */
2021 if (used_address && err >= 0) {
2022 used_address->name_len = msg_sys->msg_namelen;
Mathieu Desnoyersbc909d92011-08-24 19:45:03 -07002023 if (msg_sys->msg_name)
2024 memcpy(&used_address->name, msg_sys->msg_name,
2025 used_address->name_len);
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002026 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027
2028out_freectl:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002029 if (ctl_buf != ctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 sock_kfree_s(sock->sk, ctl_buf, ctl_len);
2031out_freeiov:
2032 if (iov != iovstack)
2033 sock_kfree_s(sock->sk, iov, iov_size);
Anton Blanchard228e5482011-05-02 20:21:35 +00002034out:
2035 return err;
2036}
2037
2038/*
2039 * BSD sendmsg interface
2040 */
2041
2042SYSCALL_DEFINE3(sendmsg, int, fd, struct msghdr __user *, msg, unsigned, flags)
2043{
2044 int fput_needed, err;
2045 struct msghdr msg_sys;
2046 struct socket *sock = sockfd_lookup_light(fd, &err, &fput_needed);
2047
2048 if (!sock)
2049 goto out;
2050
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002051 err = __sys_sendmsg(sock, msg, &msg_sys, flags, NULL);
Anton Blanchard228e5482011-05-02 20:21:35 +00002052
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002053 fput_light(sock->file, fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002054out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 return err;
2056}
2057
Anton Blanchard228e5482011-05-02 20:21:35 +00002058/*
2059 * Linux sendmmsg interface
2060 */
2061
2062int __sys_sendmmsg(int fd, struct mmsghdr __user *mmsg, unsigned int vlen,
2063 unsigned int flags)
2064{
2065 int fput_needed, err, datagrams;
2066 struct socket *sock;
2067 struct mmsghdr __user *entry;
2068 struct compat_mmsghdr __user *compat_entry;
2069 struct msghdr msg_sys;
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002070 struct used_address used_address;
Anton Blanchard228e5482011-05-02 20:21:35 +00002071
Anton Blanchard98382f42011-08-04 14:07:39 +00002072 if (vlen > UIO_MAXIOV)
2073 vlen = UIO_MAXIOV;
Anton Blanchard228e5482011-05-02 20:21:35 +00002074
2075 datagrams = 0;
2076
2077 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2078 if (!sock)
2079 return err;
2080
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002081 used_address.name_len = UINT_MAX;
Anton Blanchard228e5482011-05-02 20:21:35 +00002082 entry = mmsg;
2083 compat_entry = (struct compat_mmsghdr __user *)mmsg;
Anton Blanchard728ffb82011-08-04 14:07:38 +00002084 err = 0;
Anton Blanchard228e5482011-05-02 20:21:35 +00002085
2086 while (datagrams < vlen) {
Anton Blanchard228e5482011-05-02 20:21:35 +00002087 if (MSG_CMSG_COMPAT & flags) {
2088 err = __sys_sendmsg(sock, (struct msghdr __user *)compat_entry,
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002089 &msg_sys, flags, &used_address);
Anton Blanchard228e5482011-05-02 20:21:35 +00002090 if (err < 0)
2091 break;
2092 err = __put_user(err, &compat_entry->msg_len);
2093 ++compat_entry;
2094 } else {
2095 err = __sys_sendmsg(sock, (struct msghdr __user *)entry,
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002096 &msg_sys, flags, &used_address);
Anton Blanchard228e5482011-05-02 20:21:35 +00002097 if (err < 0)
2098 break;
2099 err = put_user(err, &entry->msg_len);
2100 ++entry;
2101 }
2102
2103 if (err)
2104 break;
2105 ++datagrams;
2106 }
2107
Anton Blanchard228e5482011-05-02 20:21:35 +00002108 fput_light(sock->file, fput_needed);
2109
Anton Blanchard728ffb82011-08-04 14:07:38 +00002110 /* We only return an error if no datagrams were able to be sent */
2111 if (datagrams != 0)
Anton Blanchard228e5482011-05-02 20:21:35 +00002112 return datagrams;
2113
Anton Blanchard228e5482011-05-02 20:21:35 +00002114 return err;
2115}
2116
2117SYSCALL_DEFINE4(sendmmsg, int, fd, struct mmsghdr __user *, mmsg,
2118 unsigned int, vlen, unsigned int, flags)
2119{
2120 return __sys_sendmmsg(fd, mmsg, vlen, flags);
2121}
2122
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002123static int __sys_recvmsg(struct socket *sock, struct msghdr __user *msg,
2124 struct msghdr *msg_sys, unsigned flags, int nosec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002126 struct compat_msghdr __user *msg_compat =
2127 (struct compat_msghdr __user *)msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 struct iovec iovstack[UIO_FASTIOV];
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002129 struct iovec *iov = iovstack;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 unsigned long cmsg_ptr;
2131 int err, iov_size, total_len, len;
2132
2133 /* kernel mode address */
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07002134 struct sockaddr_storage addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135
2136 /* user mode address pointers */
2137 struct sockaddr __user *uaddr;
2138 int __user *uaddr_len;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002139
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 if (MSG_CMSG_COMPAT & flags) {
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002141 if (get_compat_msghdr(msg_sys, msg_compat))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 return -EFAULT;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002143 } else if (copy_from_user(msg_sys, msg, sizeof(struct msghdr)))
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002144 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 err = -EMSGSIZE;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002147 if (msg_sys->msg_iovlen > UIO_MAXIOV)
2148 goto out;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002149
2150 /* Check whether to allocate the iovec area */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 err = -ENOMEM;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002152 iov_size = msg_sys->msg_iovlen * sizeof(struct iovec);
2153 if (msg_sys->msg_iovlen > UIO_FASTIOV) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 iov = sock_kmalloc(sock->sk, iov_size, GFP_KERNEL);
2155 if (!iov)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002156 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 }
2158
2159 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002160 * Save the user-mode address (verify_iovec will change the
2161 * kernel msghdr to use the kernel address space)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002163
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002164 uaddr = (__force void __user *)msg_sys->msg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 uaddr_len = COMPAT_NAMELEN(msg);
2166 if (MSG_CMSG_COMPAT & flags) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00002167 err = verify_compat_iovec(msg_sys, iov, &addr, VERIFY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 } else
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00002169 err = verify_iovec(msg_sys, iov, &addr, VERIFY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 if (err < 0)
2171 goto out_freeiov;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002172 total_len = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002174 cmsg_ptr = (unsigned long)msg_sys->msg_control;
2175 msg_sys->msg_flags = flags & (MSG_CMSG_CLOEXEC|MSG_CMSG_COMPAT);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002176
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 if (sock->file->f_flags & O_NONBLOCK)
2178 flags |= MSG_DONTWAIT;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002179 err = (nosec ? sock_recvmsg_nosec : sock_recvmsg)(sock, msg_sys,
2180 total_len, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 if (err < 0)
2182 goto out_freeiov;
2183 len = err;
2184
2185 if (uaddr != NULL) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00002186 err = move_addr_to_user(&addr,
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002187 msg_sys->msg_namelen, uaddr,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002188 uaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 if (err < 0)
2190 goto out_freeiov;
2191 }
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002192 err = __put_user((msg_sys->msg_flags & ~MSG_CMSG_COMPAT),
David S. Miller37f7f422005-09-16 16:51:01 -07002193 COMPAT_FLAGS(msg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 if (err)
2195 goto out_freeiov;
2196 if (MSG_CMSG_COMPAT & flags)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002197 err = __put_user((unsigned long)msg_sys->msg_control - cmsg_ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 &msg_compat->msg_controllen);
2199 else
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002200 err = __put_user((unsigned long)msg_sys->msg_control - cmsg_ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 &msg->msg_controllen);
2202 if (err)
2203 goto out_freeiov;
2204 err = len;
2205
2206out_freeiov:
2207 if (iov != iovstack)
2208 sock_kfree_s(sock->sk, iov, iov_size);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002209out:
2210 return err;
2211}
2212
2213/*
2214 * BSD recvmsg interface
2215 */
2216
2217SYSCALL_DEFINE3(recvmsg, int, fd, struct msghdr __user *, msg,
2218 unsigned int, flags)
2219{
2220 int fput_needed, err;
2221 struct msghdr msg_sys;
2222 struct socket *sock = sockfd_lookup_light(fd, &err, &fput_needed);
2223
2224 if (!sock)
2225 goto out;
2226
2227 err = __sys_recvmsg(sock, msg, &msg_sys, flags, 0);
2228
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002229 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230out:
2231 return err;
2232}
2233
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002234/*
2235 * Linux recvmmsg interface
2236 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002238int __sys_recvmmsg(int fd, struct mmsghdr __user *mmsg, unsigned int vlen,
2239 unsigned int flags, struct timespec *timeout)
2240{
2241 int fput_needed, err, datagrams;
2242 struct socket *sock;
2243 struct mmsghdr __user *entry;
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002244 struct compat_mmsghdr __user *compat_entry;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002245 struct msghdr msg_sys;
2246 struct timespec end_time;
2247
2248 if (timeout &&
2249 poll_select_set_timeout(&end_time, timeout->tv_sec,
2250 timeout->tv_nsec))
2251 return -EINVAL;
2252
2253 datagrams = 0;
2254
2255 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2256 if (!sock)
2257 return err;
2258
2259 err = sock_error(sock->sk);
2260 if (err)
2261 goto out_put;
2262
2263 entry = mmsg;
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002264 compat_entry = (struct compat_mmsghdr __user *)mmsg;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002265
2266 while (datagrams < vlen) {
2267 /*
2268 * No need to ask LSM for more than the first datagram.
2269 */
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002270 if (MSG_CMSG_COMPAT & flags) {
2271 err = __sys_recvmsg(sock, (struct msghdr __user *)compat_entry,
Anton Blanchardb9eb8b82011-05-17 15:38:57 -04002272 &msg_sys, flags & ~MSG_WAITFORONE,
2273 datagrams);
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002274 if (err < 0)
2275 break;
2276 err = __put_user(err, &compat_entry->msg_len);
2277 ++compat_entry;
2278 } else {
2279 err = __sys_recvmsg(sock, (struct msghdr __user *)entry,
Anton Blanchardb9eb8b82011-05-17 15:38:57 -04002280 &msg_sys, flags & ~MSG_WAITFORONE,
2281 datagrams);
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002282 if (err < 0)
2283 break;
2284 err = put_user(err, &entry->msg_len);
2285 ++entry;
2286 }
2287
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002288 if (err)
2289 break;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002290 ++datagrams;
2291
Brandon L Black71c5c152010-03-26 16:18:03 +00002292 /* MSG_WAITFORONE turns on MSG_DONTWAIT after one packet */
2293 if (flags & MSG_WAITFORONE)
2294 flags |= MSG_DONTWAIT;
2295
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002296 if (timeout) {
2297 ktime_get_ts(timeout);
2298 *timeout = timespec_sub(end_time, *timeout);
2299 if (timeout->tv_sec < 0) {
2300 timeout->tv_sec = timeout->tv_nsec = 0;
2301 break;
2302 }
2303
2304 /* Timeout, return less than vlen datagrams */
2305 if (timeout->tv_nsec == 0 && timeout->tv_sec == 0)
2306 break;
2307 }
2308
2309 /* Out of band data, return right away */
2310 if (msg_sys.msg_flags & MSG_OOB)
2311 break;
2312 }
2313
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002314 if (err == 0)
Teow Wan Yeea5204d72016-09-21 17:04:58 +08002315 goto out_put;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002316
Teow Wan Yeea5204d72016-09-21 17:04:58 +08002317 if (datagrams == 0) {
2318 datagrams = err;
2319 goto out_put;
2320 }
2321
2322 /*
2323 * We may return less entries than requested (vlen) if the
2324 * sock is non block and there aren't enough datagrams...
2325 */
2326 if (err != -EAGAIN) {
2327
2328 /*
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002329 * ... or if recvmsg returns an error after we
2330 * received some datagrams, where we record the
2331 * error to return on the next call or if the
2332 * app asks about it using getsockopt(SO_ERROR).
2333 */
2334 sock->sk->sk_err = -err;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002335 }
Teow Wan Yeea5204d72016-09-21 17:04:58 +08002336out_put:
2337 fput_light(sock->file, fput_needed);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002338
Teow Wan Yeea5204d72016-09-21 17:04:58 +08002339 return datagrams;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002340}
2341
2342SYSCALL_DEFINE5(recvmmsg, int, fd, struct mmsghdr __user *, mmsg,
2343 unsigned int, vlen, unsigned int, flags,
2344 struct timespec __user *, timeout)
2345{
2346 int datagrams;
2347 struct timespec timeout_sys;
2348
2349 if (!timeout)
2350 return __sys_recvmmsg(fd, mmsg, vlen, flags, NULL);
2351
2352 if (copy_from_user(&timeout_sys, timeout, sizeof(timeout_sys)))
2353 return -EFAULT;
2354
2355 datagrams = __sys_recvmmsg(fd, mmsg, vlen, flags, &timeout_sys);
2356
2357 if (datagrams > 0 &&
2358 copy_to_user(timeout, &timeout_sys, sizeof(timeout_sys)))
2359 datagrams = -EFAULT;
2360
2361 return datagrams;
2362}
2363
2364#ifdef __ARCH_WANT_SYS_SOCKETCALL
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365/* Argument list sizes for sys_socketcall */
2366#define AL(x) ((x) * sizeof(unsigned long))
Anton Blanchard228e5482011-05-02 20:21:35 +00002367static const unsigned char nargs[21] = {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002368 AL(0), AL(3), AL(3), AL(3), AL(2), AL(3),
2369 AL(3), AL(3), AL(4), AL(4), AL(4), AL(6),
2370 AL(6), AL(2), AL(5), AL(5), AL(3), AL(3),
Anton Blanchard228e5482011-05-02 20:21:35 +00002371 AL(4), AL(5), AL(4)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002372};
2373
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374#undef AL
2375
2376/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002377 * System call vectors.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 *
2379 * Argument checking cleaned up. Saved 20% in size.
2380 * This function doesn't need to set the kernel lock because
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002381 * it is set by the callees.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 */
2383
Heiko Carstens3e0fa652009-01-14 14:14:24 +01002384SYSCALL_DEFINE2(socketcall, int, call, unsigned long __user *, args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385{
2386 unsigned long a[6];
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002387 unsigned long a0, a1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 int err;
Arjan van de Ven47379052009-09-28 12:57:44 -07002389 unsigned int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390
Anton Blanchard228e5482011-05-02 20:21:35 +00002391 if (call < 1 || call > SYS_SENDMMSG)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392 return -EINVAL;
2393
Arjan van de Ven47379052009-09-28 12:57:44 -07002394 len = nargs[call];
2395 if (len > sizeof(a))
2396 return -EINVAL;
2397
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 /* copy_from_user should be SMP safe. */
Arjan van de Ven47379052009-09-28 12:57:44 -07002399 if (copy_from_user(a, args, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 return -EFAULT;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002401
Al Virof3298dc2008-12-10 03:16:51 -05002402 audit_socketcall(nargs[call] / sizeof(unsigned long), a);
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002403
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002404 a0 = a[0];
2405 a1 = a[1];
2406
2407 switch (call) {
2408 case SYS_SOCKET:
2409 err = sys_socket(a0, a1, a[2]);
2410 break;
2411 case SYS_BIND:
2412 err = sys_bind(a0, (struct sockaddr __user *)a1, a[2]);
2413 break;
2414 case SYS_CONNECT:
2415 err = sys_connect(a0, (struct sockaddr __user *)a1, a[2]);
2416 break;
2417 case SYS_LISTEN:
2418 err = sys_listen(a0, a1);
2419 break;
2420 case SYS_ACCEPT:
Ulrich Drepperde11def2008-11-19 15:36:14 -08002421 err = sys_accept4(a0, (struct sockaddr __user *)a1,
2422 (int __user *)a[2], 0);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002423 break;
2424 case SYS_GETSOCKNAME:
2425 err =
2426 sys_getsockname(a0, (struct sockaddr __user *)a1,
2427 (int __user *)a[2]);
2428 break;
2429 case SYS_GETPEERNAME:
2430 err =
2431 sys_getpeername(a0, (struct sockaddr __user *)a1,
2432 (int __user *)a[2]);
2433 break;
2434 case SYS_SOCKETPAIR:
2435 err = sys_socketpair(a0, a1, a[2], (int __user *)a[3]);
2436 break;
2437 case SYS_SEND:
2438 err = sys_send(a0, (void __user *)a1, a[2], a[3]);
2439 break;
2440 case SYS_SENDTO:
2441 err = sys_sendto(a0, (void __user *)a1, a[2], a[3],
2442 (struct sockaddr __user *)a[4], a[5]);
2443 break;
2444 case SYS_RECV:
2445 err = sys_recv(a0, (void __user *)a1, a[2], a[3]);
2446 break;
2447 case SYS_RECVFROM:
2448 err = sys_recvfrom(a0, (void __user *)a1, a[2], a[3],
2449 (struct sockaddr __user *)a[4],
2450 (int __user *)a[5]);
2451 break;
2452 case SYS_SHUTDOWN:
2453 err = sys_shutdown(a0, a1);
2454 break;
2455 case SYS_SETSOCKOPT:
2456 err = sys_setsockopt(a0, a1, a[2], (char __user *)a[3], a[4]);
2457 break;
2458 case SYS_GETSOCKOPT:
2459 err =
2460 sys_getsockopt(a0, a1, a[2], (char __user *)a[3],
2461 (int __user *)a[4]);
2462 break;
2463 case SYS_SENDMSG:
2464 err = sys_sendmsg(a0, (struct msghdr __user *)a1, a[2]);
2465 break;
Anton Blanchard228e5482011-05-02 20:21:35 +00002466 case SYS_SENDMMSG:
2467 err = sys_sendmmsg(a0, (struct mmsghdr __user *)a1, a[2], a[3]);
2468 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002469 case SYS_RECVMSG:
2470 err = sys_recvmsg(a0, (struct msghdr __user *)a1, a[2]);
2471 break;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002472 case SYS_RECVMMSG:
2473 err = sys_recvmmsg(a0, (struct mmsghdr __user *)a1, a[2], a[3],
2474 (struct timespec __user *)a[4]);
2475 break;
Ulrich Drepperde11def2008-11-19 15:36:14 -08002476 case SYS_ACCEPT4:
2477 err = sys_accept4(a0, (struct sockaddr __user *)a1,
2478 (int __user *)a[2], a[3]);
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07002479 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002480 default:
2481 err = -EINVAL;
2482 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 }
2484 return err;
2485}
2486
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002487#endif /* __ARCH_WANT_SYS_SOCKETCALL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002489/**
2490 * sock_register - add a socket protocol handler
2491 * @ops: description of protocol
2492 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 * This function is called by a protocol handler that wants to
2494 * advertise its address family, and have it linked into the
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002495 * socket interface. The value ops->family coresponds to the
2496 * socket system call protocol family.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497 */
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002498int sock_register(const struct net_proto_family *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499{
2500 int err;
2501
2502 if (ops->family >= NPROTO) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002503 printk(KERN_CRIT "protocol %d >= NPROTO(%d)\n", ops->family,
2504 NPROTO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505 return -ENOBUFS;
2506 }
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002507
2508 spin_lock(&net_family_lock);
Eric Dumazet190683a2010-11-10 10:50:44 +00002509 if (rcu_dereference_protected(net_families[ops->family],
2510 lockdep_is_held(&net_family_lock)))
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002511 err = -EEXIST;
2512 else {
Eric Dumazetcf778b02012-01-12 04:41:32 +00002513 rcu_assign_pointer(net_families[ops->family], ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 err = 0;
2515 }
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002516 spin_unlock(&net_family_lock);
2517
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002518 printk(KERN_INFO "NET: Registered protocol family %d\n", ops->family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 return err;
2520}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002521EXPORT_SYMBOL(sock_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002523/**
2524 * sock_unregister - remove a protocol handler
2525 * @family: protocol family to remove
2526 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527 * This function is called by a protocol handler that wants to
2528 * remove its address family, and have it unlinked from the
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002529 * new socket creation.
2530 *
2531 * If protocol handler is a module, then it can use module reference
2532 * counts to protect against new references. If protocol handler is not
2533 * a module then it needs to provide its own protection in
2534 * the ops->create routine.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535 */
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002536void sock_unregister(int family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537{
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002538 BUG_ON(family < 0 || family >= NPROTO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002540 spin_lock(&net_family_lock);
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00002541 RCU_INIT_POINTER(net_families[family], NULL);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002542 spin_unlock(&net_family_lock);
2543
2544 synchronize_rcu();
2545
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002546 printk(KERN_INFO "NET: Unregistered protocol family %d\n", family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002548EXPORT_SYMBOL(sock_unregister);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549
Andi Kleen77d76ea2005-12-22 12:43:42 -08002550static int __init sock_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551{
Nick Pigginb3e19d92011-01-07 17:50:11 +11002552 int err;
2553
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002555 * Initialize sock SLAB cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002557
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558 sk_init();
2559
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002561 * Initialize skbuff SLAB cache
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 */
2563 skb_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564
2565 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002566 * Initialize the protocols module.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567 */
2568
2569 init_inodecache();
Nick Pigginb3e19d92011-01-07 17:50:11 +11002570
2571 err = register_filesystem(&sock_fs_type);
2572 if (err)
2573 goto out_fs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574 sock_mnt = kern_mount(&sock_fs_type);
Nick Pigginb3e19d92011-01-07 17:50:11 +11002575 if (IS_ERR(sock_mnt)) {
2576 err = PTR_ERR(sock_mnt);
2577 goto out_mount;
2578 }
Andi Kleen77d76ea2005-12-22 12:43:42 -08002579
2580 /* The real protocol initialization is performed in later initcalls.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581 */
2582
2583#ifdef CONFIG_NETFILTER
2584 netfilter_init();
2585#endif
David S. Millercbeb3212005-12-22 12:58:55 -08002586
Richard Cochranc1f19b52010-07-17 08:49:36 +00002587#ifdef CONFIG_NETWORK_PHY_TIMESTAMPING
2588 skb_timestamping_init();
2589#endif
2590
Nick Pigginb3e19d92011-01-07 17:50:11 +11002591out:
2592 return err;
2593
2594out_mount:
2595 unregister_filesystem(&sock_fs_type);
2596out_fs:
2597 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598}
2599
Andi Kleen77d76ea2005-12-22 12:43:42 -08002600core_initcall(sock_init); /* early initcall */
2601
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602#ifdef CONFIG_PROC_FS
2603void socket_seq_show(struct seq_file *seq)
2604{
2605 int cpu;
2606 int counter = 0;
2607
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -07002608 for_each_possible_cpu(cpu)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002609 counter += per_cpu(sockets_in_use, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610
2611 /* It can be negative, by the way. 8) */
2612 if (counter < 0)
2613 counter = 0;
2614
2615 seq_printf(seq, "sockets: used %d\n", counter);
2616}
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002617#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618
Shaun Pereira89bbfc92006-03-21 23:58:08 -08002619#ifdef CONFIG_COMPAT
Arnd Bergmann6b960182009-11-06 23:10:54 -08002620static int do_siocgstamp(struct net *net, struct socket *sock,
H. Peter Anvin644595f2012-02-19 17:51:59 -08002621 unsigned int cmd, void __user *up)
Arnd Bergmann7a229382009-11-06 23:00:29 -08002622{
Arnd Bergmann7a229382009-11-06 23:00:29 -08002623 mm_segment_t old_fs = get_fs();
2624 struct timeval ktv;
2625 int err;
2626
2627 set_fs(KERNEL_DS);
Arnd Bergmann6b960182009-11-06 23:10:54 -08002628 err = sock_do_ioctl(net, sock, cmd, (unsigned long)&ktv);
Arnd Bergmann7a229382009-11-06 23:00:29 -08002629 set_fs(old_fs);
H. Peter Anvin644595f2012-02-19 17:51:59 -08002630 if (!err)
2631 err = compat_put_timeval(up, &ktv);
2632
Arnd Bergmann7a229382009-11-06 23:00:29 -08002633 return err;
2634}
2635
Arnd Bergmann6b960182009-11-06 23:10:54 -08002636static int do_siocgstampns(struct net *net, struct socket *sock,
H. Peter Anvin644595f2012-02-19 17:51:59 -08002637 unsigned int cmd, void __user *up)
Arnd Bergmann7a229382009-11-06 23:00:29 -08002638{
Arnd Bergmann7a229382009-11-06 23:00:29 -08002639 mm_segment_t old_fs = get_fs();
2640 struct timespec kts;
2641 int err;
2642
2643 set_fs(KERNEL_DS);
Arnd Bergmann6b960182009-11-06 23:10:54 -08002644 err = sock_do_ioctl(net, sock, cmd, (unsigned long)&kts);
Arnd Bergmann7a229382009-11-06 23:00:29 -08002645 set_fs(old_fs);
H. Peter Anvin644595f2012-02-19 17:51:59 -08002646 if (!err)
2647 err = compat_put_timespec(up, &kts);
2648
Arnd Bergmann7a229382009-11-06 23:00:29 -08002649 return err;
2650}
2651
Arnd Bergmann6b960182009-11-06 23:10:54 -08002652static int dev_ifname32(struct net *net, struct compat_ifreq __user *uifr32)
Arnd Bergmann7a229382009-11-06 23:00:29 -08002653{
2654 struct ifreq __user *uifr;
2655 int err;
2656
2657 uifr = compat_alloc_user_space(sizeof(struct ifreq));
Arnd Bergmann6b960182009-11-06 23:10:54 -08002658 if (copy_in_user(uifr, uifr32, sizeof(struct compat_ifreq)))
Arnd Bergmann7a229382009-11-06 23:00:29 -08002659 return -EFAULT;
2660
Arnd Bergmann6b960182009-11-06 23:10:54 -08002661 err = dev_ioctl(net, SIOCGIFNAME, uifr);
Arnd Bergmann7a229382009-11-06 23:00:29 -08002662 if (err)
2663 return err;
2664
Arnd Bergmann6b960182009-11-06 23:10:54 -08002665 if (copy_in_user(uifr32, uifr, sizeof(struct compat_ifreq)))
Arnd Bergmann7a229382009-11-06 23:00:29 -08002666 return -EFAULT;
2667
2668 return 0;
2669}
2670
Arnd Bergmann6b960182009-11-06 23:10:54 -08002671static int dev_ifconf(struct net *net, struct compat_ifconf __user *uifc32)
Arnd Bergmann7a229382009-11-06 23:00:29 -08002672{
Arnd Bergmann6b960182009-11-06 23:10:54 -08002673 struct compat_ifconf ifc32;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002674 struct ifconf ifc;
2675 struct ifconf __user *uifc;
Arnd Bergmann6b960182009-11-06 23:10:54 -08002676 struct compat_ifreq __user *ifr32;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002677 struct ifreq __user *ifr;
2678 unsigned int i, j;
2679 int err;
2680
Arnd Bergmann6b960182009-11-06 23:10:54 -08002681 if (copy_from_user(&ifc32, uifc32, sizeof(struct compat_ifconf)))
Arnd Bergmann7a229382009-11-06 23:00:29 -08002682 return -EFAULT;
2683
2684 if (ifc32.ifcbuf == 0) {
2685 ifc32.ifc_len = 0;
2686 ifc.ifc_len = 0;
2687 ifc.ifc_req = NULL;
2688 uifc = compat_alloc_user_space(sizeof(struct ifconf));
2689 } else {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002690 size_t len = ((ifc32.ifc_len / sizeof(struct compat_ifreq)) + 1) *
2691 sizeof(struct ifreq);
Arnd Bergmann7a229382009-11-06 23:00:29 -08002692 uifc = compat_alloc_user_space(sizeof(struct ifconf) + len);
2693 ifc.ifc_len = len;
2694 ifr = ifc.ifc_req = (void __user *)(uifc + 1);
2695 ifr32 = compat_ptr(ifc32.ifcbuf);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002696 for (i = 0; i < ifc32.ifc_len; i += sizeof(struct compat_ifreq)) {
Arnd Bergmann6b960182009-11-06 23:10:54 -08002697 if (copy_in_user(ifr, ifr32, sizeof(struct compat_ifreq)))
Arnd Bergmann7a229382009-11-06 23:00:29 -08002698 return -EFAULT;
2699 ifr++;
2700 ifr32++;
2701 }
2702 }
2703 if (copy_to_user(uifc, &ifc, sizeof(struct ifconf)))
2704 return -EFAULT;
2705
Arnd Bergmann6b960182009-11-06 23:10:54 -08002706 err = dev_ioctl(net, SIOCGIFCONF, uifc);
Arnd Bergmann7a229382009-11-06 23:00:29 -08002707 if (err)
2708 return err;
2709
2710 if (copy_from_user(&ifc, uifc, sizeof(struct ifconf)))
2711 return -EFAULT;
2712
2713 ifr = ifc.ifc_req;
2714 ifr32 = compat_ptr(ifc32.ifcbuf);
2715 for (i = 0, j = 0;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002716 i + sizeof(struct compat_ifreq) <= ifc32.ifc_len && j < ifc.ifc_len;
2717 i += sizeof(struct compat_ifreq), j += sizeof(struct ifreq)) {
2718 if (copy_in_user(ifr32, ifr, sizeof(struct compat_ifreq)))
Arnd Bergmann7a229382009-11-06 23:00:29 -08002719 return -EFAULT;
2720 ifr32++;
2721 ifr++;
2722 }
2723
2724 if (ifc32.ifcbuf == 0) {
2725 /* Translate from 64-bit structure multiple to
2726 * a 32-bit one.
2727 */
2728 i = ifc.ifc_len;
Arnd Bergmann6b960182009-11-06 23:10:54 -08002729 i = ((i / sizeof(struct ifreq)) * sizeof(struct compat_ifreq));
Arnd Bergmann7a229382009-11-06 23:00:29 -08002730 ifc32.ifc_len = i;
2731 } else {
2732 ifc32.ifc_len = i;
2733 }
Arnd Bergmann6b960182009-11-06 23:10:54 -08002734 if (copy_to_user(uifc32, &ifc32, sizeof(struct compat_ifconf)))
Arnd Bergmann7a229382009-11-06 23:00:29 -08002735 return -EFAULT;
2736
2737 return 0;
2738}
2739
Arnd Bergmann6b960182009-11-06 23:10:54 -08002740static int ethtool_ioctl(struct net *net, struct compat_ifreq __user *ifr32)
Arnd Bergmann7a229382009-11-06 23:00:29 -08002741{
Ben Hutchings3a7da392011-03-17 07:34:32 +00002742 struct compat_ethtool_rxnfc __user *compat_rxnfc;
2743 bool convert_in = false, convert_out = false;
2744 size_t buf_size = ALIGN(sizeof(struct ifreq), 8);
2745 struct ethtool_rxnfc __user *rxnfc;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002746 struct ifreq __user *ifr;
Ben Hutchings3a7da392011-03-17 07:34:32 +00002747 u32 rule_cnt = 0, actual_rule_cnt;
2748 u32 ethcmd;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002749 u32 data;
Ben Hutchings3a7da392011-03-17 07:34:32 +00002750 int ret;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002751
2752 if (get_user(data, &ifr32->ifr_ifru.ifru_data))
2753 return -EFAULT;
2754
Ben Hutchings3a7da392011-03-17 07:34:32 +00002755 compat_rxnfc = compat_ptr(data);
2756
2757 if (get_user(ethcmd, &compat_rxnfc->cmd))
Arnd Bergmann7a229382009-11-06 23:00:29 -08002758 return -EFAULT;
2759
Ben Hutchings3a7da392011-03-17 07:34:32 +00002760 /* Most ethtool structures are defined without padding.
2761 * Unfortunately struct ethtool_rxnfc is an exception.
2762 */
2763 switch (ethcmd) {
2764 default:
2765 break;
2766 case ETHTOOL_GRXCLSRLALL:
2767 /* Buffer size is variable */
2768 if (get_user(rule_cnt, &compat_rxnfc->rule_cnt))
2769 return -EFAULT;
2770 if (rule_cnt > KMALLOC_MAX_SIZE / sizeof(u32))
2771 return -ENOMEM;
2772 buf_size += rule_cnt * sizeof(u32);
2773 /* fall through */
2774 case ETHTOOL_GRXRINGS:
2775 case ETHTOOL_GRXCLSRLCNT:
2776 case ETHTOOL_GRXCLSRULE:
Ben Hutchings55664f32012-01-03 12:04:51 +00002777 case ETHTOOL_SRXCLSRLINS:
Ben Hutchings3a7da392011-03-17 07:34:32 +00002778 convert_out = true;
2779 /* fall through */
2780 case ETHTOOL_SRXCLSRLDEL:
Ben Hutchings3a7da392011-03-17 07:34:32 +00002781 buf_size += sizeof(struct ethtool_rxnfc);
2782 convert_in = true;
2783 break;
2784 }
2785
2786 ifr = compat_alloc_user_space(buf_size);
2787 rxnfc = (void *)ifr + ALIGN(sizeof(struct ifreq), 8);
2788
2789 if (copy_in_user(&ifr->ifr_name, &ifr32->ifr_name, IFNAMSIZ))
2790 return -EFAULT;
2791
2792 if (put_user(convert_in ? rxnfc : compat_ptr(data),
2793 &ifr->ifr_ifru.ifru_data))
2794 return -EFAULT;
2795
2796 if (convert_in) {
Alexander Duyck127fe532011-04-08 18:01:59 +00002797 /* We expect there to be holes between fs.m_ext and
Ben Hutchings3a7da392011-03-17 07:34:32 +00002798 * fs.ring_cookie and at the end of fs, but nowhere else.
2799 */
Alexander Duyck127fe532011-04-08 18:01:59 +00002800 BUILD_BUG_ON(offsetof(struct compat_ethtool_rxnfc, fs.m_ext) +
2801 sizeof(compat_rxnfc->fs.m_ext) !=
2802 offsetof(struct ethtool_rxnfc, fs.m_ext) +
2803 sizeof(rxnfc->fs.m_ext));
Ben Hutchings3a7da392011-03-17 07:34:32 +00002804 BUILD_BUG_ON(
2805 offsetof(struct compat_ethtool_rxnfc, fs.location) -
2806 offsetof(struct compat_ethtool_rxnfc, fs.ring_cookie) !=
2807 offsetof(struct ethtool_rxnfc, fs.location) -
2808 offsetof(struct ethtool_rxnfc, fs.ring_cookie));
2809
2810 if (copy_in_user(rxnfc, compat_rxnfc,
Alexander Duyck127fe532011-04-08 18:01:59 +00002811 (void *)(&rxnfc->fs.m_ext + 1) -
Ben Hutchings3a7da392011-03-17 07:34:32 +00002812 (void *)rxnfc) ||
2813 copy_in_user(&rxnfc->fs.ring_cookie,
2814 &compat_rxnfc->fs.ring_cookie,
2815 (void *)(&rxnfc->fs.location + 1) -
2816 (void *)&rxnfc->fs.ring_cookie) ||
2817 copy_in_user(&rxnfc->rule_cnt, &compat_rxnfc->rule_cnt,
2818 sizeof(rxnfc->rule_cnt)))
2819 return -EFAULT;
2820 }
2821
2822 ret = dev_ioctl(net, SIOCETHTOOL, ifr);
2823 if (ret)
2824 return ret;
2825
2826 if (convert_out) {
2827 if (copy_in_user(compat_rxnfc, rxnfc,
Alexander Duyck127fe532011-04-08 18:01:59 +00002828 (const void *)(&rxnfc->fs.m_ext + 1) -
Ben Hutchings3a7da392011-03-17 07:34:32 +00002829 (const void *)rxnfc) ||
2830 copy_in_user(&compat_rxnfc->fs.ring_cookie,
2831 &rxnfc->fs.ring_cookie,
2832 (const void *)(&rxnfc->fs.location + 1) -
2833 (const void *)&rxnfc->fs.ring_cookie) ||
2834 copy_in_user(&compat_rxnfc->rule_cnt, &rxnfc->rule_cnt,
2835 sizeof(rxnfc->rule_cnt)))
2836 return -EFAULT;
2837
2838 if (ethcmd == ETHTOOL_GRXCLSRLALL) {
2839 /* As an optimisation, we only copy the actual
2840 * number of rules that the underlying
2841 * function returned. Since Mallory might
2842 * change the rule count in user memory, we
2843 * check that it is less than the rule count
2844 * originally given (as the user buffer size),
2845 * which has been range-checked.
2846 */
2847 if (get_user(actual_rule_cnt, &rxnfc->rule_cnt))
2848 return -EFAULT;
2849 if (actual_rule_cnt < rule_cnt)
2850 rule_cnt = actual_rule_cnt;
2851 if (copy_in_user(&compat_rxnfc->rule_locs[0],
2852 &rxnfc->rule_locs[0],
2853 rule_cnt * sizeof(u32)))
2854 return -EFAULT;
2855 }
2856 }
2857
2858 return 0;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002859}
2860
Arnd Bergmann7a50a242009-11-08 20:57:03 -08002861static int compat_siocwandev(struct net *net, struct compat_ifreq __user *uifr32)
2862{
2863 void __user *uptr;
2864 compat_uptr_t uptr32;
2865 struct ifreq __user *uifr;
2866
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002867 uifr = compat_alloc_user_space(sizeof(*uifr));
Arnd Bergmann7a50a242009-11-08 20:57:03 -08002868 if (copy_in_user(uifr, uifr32, sizeof(struct compat_ifreq)))
2869 return -EFAULT;
2870
2871 if (get_user(uptr32, &uifr32->ifr_settings.ifs_ifsu))
2872 return -EFAULT;
2873
2874 uptr = compat_ptr(uptr32);
2875
2876 if (put_user(uptr, &uifr->ifr_settings.ifs_ifsu.raw_hdlc))
2877 return -EFAULT;
2878
2879 return dev_ioctl(net, SIOCWANDEV, uifr);
2880}
2881
Arnd Bergmann6b960182009-11-06 23:10:54 -08002882static int bond_ioctl(struct net *net, unsigned int cmd,
2883 struct compat_ifreq __user *ifr32)
Arnd Bergmann7a229382009-11-06 23:00:29 -08002884{
2885 struct ifreq kifr;
2886 struct ifreq __user *uifr;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002887 mm_segment_t old_fs;
2888 int err;
2889 u32 data;
2890 void __user *datap;
2891
2892 switch (cmd) {
2893 case SIOCBONDENSLAVE:
2894 case SIOCBONDRELEASE:
2895 case SIOCBONDSETHWADDR:
2896 case SIOCBONDCHANGEACTIVE:
Arnd Bergmann6b960182009-11-06 23:10:54 -08002897 if (copy_from_user(&kifr, ifr32, sizeof(struct compat_ifreq)))
Arnd Bergmann7a229382009-11-06 23:00:29 -08002898 return -EFAULT;
2899
2900 old_fs = get_fs();
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002901 set_fs(KERNEL_DS);
stephen hemmingerc3f52ae2011-02-23 09:06:48 +00002902 err = dev_ioctl(net, cmd,
2903 (struct ifreq __user __force *) &kifr);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002904 set_fs(old_fs);
Arnd Bergmann7a229382009-11-06 23:00:29 -08002905
2906 return err;
2907 case SIOCBONDSLAVEINFOQUERY:
2908 case SIOCBONDINFOQUERY:
2909 uifr = compat_alloc_user_space(sizeof(*uifr));
2910 if (copy_in_user(&uifr->ifr_name, &ifr32->ifr_name, IFNAMSIZ))
2911 return -EFAULT;
2912
2913 if (get_user(data, &ifr32->ifr_ifru.ifru_data))
2914 return -EFAULT;
2915
2916 datap = compat_ptr(data);
2917 if (put_user(datap, &uifr->ifr_ifru.ifru_data))
2918 return -EFAULT;
2919
Arnd Bergmann6b960182009-11-06 23:10:54 -08002920 return dev_ioctl(net, cmd, uifr);
Arnd Bergmann7a229382009-11-06 23:00:29 -08002921 default:
Linus Torvalds07d106d2012-01-05 15:40:12 -08002922 return -ENOIOCTLCMD;
Joe Perchesccbd6a52010-05-14 10:58:26 +00002923 }
Arnd Bergmann7a229382009-11-06 23:00:29 -08002924}
2925
Arnd Bergmann6b960182009-11-06 23:10:54 -08002926static int siocdevprivate_ioctl(struct net *net, unsigned int cmd,
2927 struct compat_ifreq __user *u_ifreq32)
Arnd Bergmann7a229382009-11-06 23:00:29 -08002928{
2929 struct ifreq __user *u_ifreq64;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002930 char tmp_buf[IFNAMSIZ];
2931 void __user *data64;
2932 u32 data32;
2933
2934 if (copy_from_user(&tmp_buf[0], &(u_ifreq32->ifr_ifrn.ifrn_name[0]),
2935 IFNAMSIZ))
2936 return -EFAULT;
2937 if (__get_user(data32, &u_ifreq32->ifr_ifru.ifru_data))
2938 return -EFAULT;
2939 data64 = compat_ptr(data32);
2940
2941 u_ifreq64 = compat_alloc_user_space(sizeof(*u_ifreq64));
2942
2943 /* Don't check these user accesses, just let that get trapped
2944 * in the ioctl handler instead.
2945 */
2946 if (copy_to_user(&u_ifreq64->ifr_ifrn.ifrn_name[0], &tmp_buf[0],
2947 IFNAMSIZ))
2948 return -EFAULT;
2949 if (__put_user(data64, &u_ifreq64->ifr_ifru.ifru_data))
2950 return -EFAULT;
2951
Arnd Bergmann6b960182009-11-06 23:10:54 -08002952 return dev_ioctl(net, cmd, u_ifreq64);
Arnd Bergmann7a229382009-11-06 23:00:29 -08002953}
2954
Arnd Bergmann6b960182009-11-06 23:10:54 -08002955static int dev_ifsioc(struct net *net, struct socket *sock,
2956 unsigned int cmd, struct compat_ifreq __user *uifr32)
Arnd Bergmann7a229382009-11-06 23:00:29 -08002957{
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002958 struct ifreq __user *uifr;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002959 int err;
2960
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002961 uifr = compat_alloc_user_space(sizeof(*uifr));
2962 if (copy_in_user(uifr, uifr32, sizeof(*uifr32)))
2963 return -EFAULT;
2964
2965 err = sock_do_ioctl(net, sock, cmd, (unsigned long)uifr);
2966
Arnd Bergmann7a229382009-11-06 23:00:29 -08002967 if (!err) {
2968 switch (cmd) {
2969 case SIOCGIFFLAGS:
2970 case SIOCGIFMETRIC:
2971 case SIOCGIFMTU:
2972 case SIOCGIFMEM:
2973 case SIOCGIFHWADDR:
2974 case SIOCGIFINDEX:
2975 case SIOCGIFADDR:
2976 case SIOCGIFBRDADDR:
2977 case SIOCGIFDSTADDR:
2978 case SIOCGIFNETMASK:
Arnd Bergmannfab25322009-11-08 20:56:21 -08002979 case SIOCGIFPFLAGS:
Arnd Bergmann7a229382009-11-06 23:00:29 -08002980 case SIOCGIFTXQLEN:
Arnd Bergmannfab25322009-11-08 20:56:21 -08002981 case SIOCGMIIPHY:
2982 case SIOCGMIIREG:
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002983 if (copy_in_user(uifr32, uifr, sizeof(*uifr32)))
Arnd Bergmann7a229382009-11-06 23:00:29 -08002984 err = -EFAULT;
2985 break;
2986 }
2987 }
2988 return err;
2989}
2990
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002991static int compat_sioc_ifmap(struct net *net, unsigned int cmd,
2992 struct compat_ifreq __user *uifr32)
2993{
2994 struct ifreq ifr;
2995 struct compat_ifmap __user *uifmap32;
2996 mm_segment_t old_fs;
2997 int err;
2998
2999 uifmap32 = &uifr32->ifr_ifru.ifru_map;
3000 err = copy_from_user(&ifr, uifr32, sizeof(ifr.ifr_name));
3001 err |= __get_user(ifr.ifr_map.mem_start, &uifmap32->mem_start);
3002 err |= __get_user(ifr.ifr_map.mem_end, &uifmap32->mem_end);
3003 err |= __get_user(ifr.ifr_map.base_addr, &uifmap32->base_addr);
3004 err |= __get_user(ifr.ifr_map.irq, &uifmap32->irq);
3005 err |= __get_user(ifr.ifr_map.dma, &uifmap32->dma);
3006 err |= __get_user(ifr.ifr_map.port, &uifmap32->port);
3007 if (err)
3008 return -EFAULT;
3009
3010 old_fs = get_fs();
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003011 set_fs(KERNEL_DS);
stephen hemmingerc3f52ae2011-02-23 09:06:48 +00003012 err = dev_ioctl(net, cmd, (void __user __force *)&ifr);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003013 set_fs(old_fs);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003014
3015 if (cmd == SIOCGIFMAP && !err) {
3016 err = copy_to_user(uifr32, &ifr, sizeof(ifr.ifr_name));
3017 err |= __put_user(ifr.ifr_map.mem_start, &uifmap32->mem_start);
3018 err |= __put_user(ifr.ifr_map.mem_end, &uifmap32->mem_end);
3019 err |= __put_user(ifr.ifr_map.base_addr, &uifmap32->base_addr);
3020 err |= __put_user(ifr.ifr_map.irq, &uifmap32->irq);
3021 err |= __put_user(ifr.ifr_map.dma, &uifmap32->dma);
3022 err |= __put_user(ifr.ifr_map.port, &uifmap32->port);
3023 if (err)
3024 err = -EFAULT;
3025 }
3026 return err;
3027}
3028
3029static int compat_siocshwtstamp(struct net *net, struct compat_ifreq __user *uifr32)
3030{
3031 void __user *uptr;
3032 compat_uptr_t uptr32;
3033 struct ifreq __user *uifr;
3034
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003035 uifr = compat_alloc_user_space(sizeof(*uifr));
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003036 if (copy_in_user(uifr, uifr32, sizeof(struct compat_ifreq)))
3037 return -EFAULT;
3038
3039 if (get_user(uptr32, &uifr32->ifr_data))
3040 return -EFAULT;
3041
3042 uptr = compat_ptr(uptr32);
3043
3044 if (put_user(uptr, &uifr->ifr_data))
3045 return -EFAULT;
3046
3047 return dev_ioctl(net, SIOCSHWTSTAMP, uifr);
3048}
3049
Arnd Bergmann7a229382009-11-06 23:00:29 -08003050struct rtentry32 {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003051 u32 rt_pad1;
Arnd Bergmann7a229382009-11-06 23:00:29 -08003052 struct sockaddr rt_dst; /* target address */
3053 struct sockaddr rt_gateway; /* gateway addr (RTF_GATEWAY) */
3054 struct sockaddr rt_genmask; /* target network mask (IP) */
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003055 unsigned short rt_flags;
3056 short rt_pad2;
3057 u32 rt_pad3;
3058 unsigned char rt_tos;
3059 unsigned char rt_class;
3060 short rt_pad4;
3061 short rt_metric; /* +1 for binary compatibility! */
Arnd Bergmann7a229382009-11-06 23:00:29 -08003062 /* char * */ u32 rt_dev; /* forcing the device at add */
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003063 u32 rt_mtu; /* per route MTU/Window */
3064 u32 rt_window; /* Window clamping */
Arnd Bergmann7a229382009-11-06 23:00:29 -08003065 unsigned short rt_irtt; /* Initial RTT */
3066};
3067
3068struct in6_rtmsg32 {
3069 struct in6_addr rtmsg_dst;
3070 struct in6_addr rtmsg_src;
3071 struct in6_addr rtmsg_gateway;
3072 u32 rtmsg_type;
3073 u16 rtmsg_dst_len;
3074 u16 rtmsg_src_len;
3075 u32 rtmsg_metric;
3076 u32 rtmsg_info;
3077 u32 rtmsg_flags;
3078 s32 rtmsg_ifindex;
3079};
3080
Arnd Bergmann6b960182009-11-06 23:10:54 -08003081static int routing_ioctl(struct net *net, struct socket *sock,
3082 unsigned int cmd, void __user *argp)
Arnd Bergmann7a229382009-11-06 23:00:29 -08003083{
3084 int ret;
3085 void *r = NULL;
3086 struct in6_rtmsg r6;
3087 struct rtentry r4;
3088 char devname[16];
3089 u32 rtdev;
3090 mm_segment_t old_fs = get_fs();
3091
Arnd Bergmann6b960182009-11-06 23:10:54 -08003092 if (sock && sock->sk && sock->sk->sk_family == AF_INET6) { /* ipv6 */
3093 struct in6_rtmsg32 __user *ur6 = argp;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003094 ret = copy_from_user(&r6.rtmsg_dst, &(ur6->rtmsg_dst),
Arnd Bergmann7a229382009-11-06 23:00:29 -08003095 3 * sizeof(struct in6_addr));
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003096 ret |= __get_user(r6.rtmsg_type, &(ur6->rtmsg_type));
3097 ret |= __get_user(r6.rtmsg_dst_len, &(ur6->rtmsg_dst_len));
3098 ret |= __get_user(r6.rtmsg_src_len, &(ur6->rtmsg_src_len));
3099 ret |= __get_user(r6.rtmsg_metric, &(ur6->rtmsg_metric));
3100 ret |= __get_user(r6.rtmsg_info, &(ur6->rtmsg_info));
3101 ret |= __get_user(r6.rtmsg_flags, &(ur6->rtmsg_flags));
3102 ret |= __get_user(r6.rtmsg_ifindex, &(ur6->rtmsg_ifindex));
Arnd Bergmann7a229382009-11-06 23:00:29 -08003103
3104 r = (void *) &r6;
3105 } else { /* ipv4 */
Arnd Bergmann6b960182009-11-06 23:10:54 -08003106 struct rtentry32 __user *ur4 = argp;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003107 ret = copy_from_user(&r4.rt_dst, &(ur4->rt_dst),
Arnd Bergmann7a229382009-11-06 23:00:29 -08003108 3 * sizeof(struct sockaddr));
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003109 ret |= __get_user(r4.rt_flags, &(ur4->rt_flags));
3110 ret |= __get_user(r4.rt_metric, &(ur4->rt_metric));
3111 ret |= __get_user(r4.rt_mtu, &(ur4->rt_mtu));
3112 ret |= __get_user(r4.rt_window, &(ur4->rt_window));
3113 ret |= __get_user(r4.rt_irtt, &(ur4->rt_irtt));
3114 ret |= __get_user(rtdev, &(ur4->rt_dev));
Arnd Bergmann7a229382009-11-06 23:00:29 -08003115 if (rtdev) {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003116 ret |= copy_from_user(devname, compat_ptr(rtdev), 15);
stephen hemmingerc3f52ae2011-02-23 09:06:48 +00003117 r4.rt_dev = (char __user __force *)devname;
3118 devname[15] = 0;
Arnd Bergmann7a229382009-11-06 23:00:29 -08003119 } else
3120 r4.rt_dev = NULL;
3121
3122 r = (void *) &r4;
3123 }
3124
3125 if (ret) {
3126 ret = -EFAULT;
3127 goto out;
3128 }
3129
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003130 set_fs(KERNEL_DS);
Arnd Bergmann6b960182009-11-06 23:10:54 -08003131 ret = sock_do_ioctl(net, sock, cmd, (unsigned long) r);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003132 set_fs(old_fs);
Arnd Bergmann7a229382009-11-06 23:00:29 -08003133
3134out:
Arnd Bergmann7a229382009-11-06 23:00:29 -08003135 return ret;
3136}
3137
3138/* Since old style bridge ioctl's endup using SIOCDEVPRIVATE
3139 * for some operations; this forces use of the newer bridge-utils that
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003140 * use compatible ioctls
Arnd Bergmann7a229382009-11-06 23:00:29 -08003141 */
Arnd Bergmann6b960182009-11-06 23:10:54 -08003142static int old_bridge_ioctl(compat_ulong_t __user *argp)
Arnd Bergmann7a229382009-11-06 23:00:29 -08003143{
Arnd Bergmann6b960182009-11-06 23:10:54 -08003144 compat_ulong_t tmp;
Arnd Bergmann7a229382009-11-06 23:00:29 -08003145
Arnd Bergmann6b960182009-11-06 23:10:54 -08003146 if (get_user(tmp, argp))
Arnd Bergmann7a229382009-11-06 23:00:29 -08003147 return -EFAULT;
3148 if (tmp == BRCTL_GET_VERSION)
3149 return BRCTL_VERSION + 1;
3150 return -EINVAL;
3151}
3152
Arnd Bergmann6b960182009-11-06 23:10:54 -08003153static int compat_sock_ioctl_trans(struct file *file, struct socket *sock,
3154 unsigned int cmd, unsigned long arg)
3155{
3156 void __user *argp = compat_ptr(arg);
3157 struct sock *sk = sock->sk;
3158 struct net *net = sock_net(sk);
Arnd Bergmann7a229382009-11-06 23:00:29 -08003159
Arnd Bergmann6b960182009-11-06 23:10:54 -08003160 if (cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15))
3161 return siocdevprivate_ioctl(net, cmd, argp);
Arnd Bergmann7a229382009-11-06 23:00:29 -08003162
Arnd Bergmann6b960182009-11-06 23:10:54 -08003163 switch (cmd) {
3164 case SIOCSIFBR:
3165 case SIOCGIFBR:
3166 return old_bridge_ioctl(argp);
3167 case SIOCGIFNAME:
3168 return dev_ifname32(net, argp);
3169 case SIOCGIFCONF:
3170 return dev_ifconf(net, argp);
3171 case SIOCETHTOOL:
3172 return ethtool_ioctl(net, argp);
Arnd Bergmann7a50a242009-11-08 20:57:03 -08003173 case SIOCWANDEV:
3174 return compat_siocwandev(net, argp);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003175 case SIOCGIFMAP:
3176 case SIOCSIFMAP:
3177 return compat_sioc_ifmap(net, cmd, argp);
Arnd Bergmann6b960182009-11-06 23:10:54 -08003178 case SIOCBONDENSLAVE:
3179 case SIOCBONDRELEASE:
3180 case SIOCBONDSETHWADDR:
3181 case SIOCBONDSLAVEINFOQUERY:
3182 case SIOCBONDINFOQUERY:
3183 case SIOCBONDCHANGEACTIVE:
3184 return bond_ioctl(net, cmd, argp);
3185 case SIOCADDRT:
3186 case SIOCDELRT:
3187 return routing_ioctl(net, sock, cmd, argp);
3188 case SIOCGSTAMP:
3189 return do_siocgstamp(net, sock, cmd, argp);
3190 case SIOCGSTAMPNS:
3191 return do_siocgstampns(net, sock, cmd, argp);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003192 case SIOCSHWTSTAMP:
3193 return compat_siocshwtstamp(net, argp);
Arnd Bergmann7a229382009-11-06 23:00:29 -08003194
Arnd Bergmann6b960182009-11-06 23:10:54 -08003195 case FIOSETOWN:
3196 case SIOCSPGRP:
3197 case FIOGETOWN:
3198 case SIOCGPGRP:
3199 case SIOCBRADDBR:
3200 case SIOCBRDELBR:
3201 case SIOCGIFVLAN:
3202 case SIOCSIFVLAN:
3203 case SIOCADDDLCI:
3204 case SIOCDELDLCI:
3205 return sock_ioctl(file, cmd, arg);
3206
3207 case SIOCGIFFLAGS:
3208 case SIOCSIFFLAGS:
3209 case SIOCGIFMETRIC:
3210 case SIOCSIFMETRIC:
3211 case SIOCGIFMTU:
3212 case SIOCSIFMTU:
3213 case SIOCGIFMEM:
3214 case SIOCSIFMEM:
3215 case SIOCGIFHWADDR:
3216 case SIOCSIFHWADDR:
3217 case SIOCADDMULTI:
3218 case SIOCDELMULTI:
3219 case SIOCGIFINDEX:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003220 case SIOCGIFADDR:
3221 case SIOCSIFADDR:
3222 case SIOCSIFHWBROADCAST:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003223 case SIOCDIFADDR:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003224 case SIOCGIFBRDADDR:
3225 case SIOCSIFBRDADDR:
3226 case SIOCGIFDSTADDR:
3227 case SIOCSIFDSTADDR:
3228 case SIOCGIFNETMASK:
3229 case SIOCSIFNETMASK:
3230 case SIOCSIFPFLAGS:
3231 case SIOCGIFPFLAGS:
3232 case SIOCGIFTXQLEN:
3233 case SIOCSIFTXQLEN:
3234 case SIOCBRADDIF:
3235 case SIOCBRDELIF:
Arnd Bergmann9177efd2009-11-06 08:09:09 +00003236 case SIOCSIFNAME:
3237 case SIOCGMIIPHY:
3238 case SIOCGMIIREG:
3239 case SIOCSMIIREG:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003240 return dev_ifsioc(net, sock, cmd, argp);
Arnd Bergmann9177efd2009-11-06 08:09:09 +00003241
Arnd Bergmann6b960182009-11-06 23:10:54 -08003242 case SIOCSARP:
3243 case SIOCGARP:
3244 case SIOCDARP:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003245 case SIOCATMARK:
Arnd Bergmann9177efd2009-11-06 08:09:09 +00003246 return sock_do_ioctl(net, sock, cmd, arg);
3247 }
3248
Arnd Bergmann6b960182009-11-06 23:10:54 -08003249 return -ENOIOCTLCMD;
3250}
Arnd Bergmann7a229382009-11-06 23:00:29 -08003251
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003252static long compat_sock_ioctl(struct file *file, unsigned cmd,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07003253 unsigned long arg)
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003254{
3255 struct socket *sock = file->private_data;
3256 int ret = -ENOIOCTLCMD;
David S. Miller87de87d2008-06-03 09:14:03 -07003257 struct sock *sk;
3258 struct net *net;
3259
3260 sk = sock->sk;
3261 net = sock_net(sk);
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003262
3263 if (sock->ops->compat_ioctl)
3264 ret = sock->ops->compat_ioctl(sock, cmd, arg);
3265
David S. Miller87de87d2008-06-03 09:14:03 -07003266 if (ret == -ENOIOCTLCMD &&
3267 (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST))
3268 ret = compat_wext_handle_ioctl(net, cmd, arg);
3269
Arnd Bergmann6b960182009-11-06 23:10:54 -08003270 if (ret == -ENOIOCTLCMD)
3271 ret = compat_sock_ioctl_trans(file, sock, cmd, arg);
3272
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003273 return ret;
3274}
3275#endif
3276
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003277int kernel_bind(struct socket *sock, struct sockaddr *addr, int addrlen)
3278{
3279 return sock->ops->bind(sock, addr, addrlen);
3280}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003281EXPORT_SYMBOL(kernel_bind);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003282
3283int kernel_listen(struct socket *sock, int backlog)
3284{
3285 return sock->ops->listen(sock, backlog);
3286}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003287EXPORT_SYMBOL(kernel_listen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003288
3289int kernel_accept(struct socket *sock, struct socket **newsock, int flags)
3290{
3291 struct sock *sk = sock->sk;
3292 int err;
3293
3294 err = sock_create_lite(sk->sk_family, sk->sk_type, sk->sk_protocol,
3295 newsock);
3296 if (err < 0)
3297 goto done;
3298
3299 err = sock->ops->accept(sock, *newsock, flags);
3300 if (err < 0) {
3301 sock_release(*newsock);
Tony Battersbyfa8705b2007-10-10 21:09:04 -07003302 *newsock = NULL;
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003303 goto done;
3304 }
3305
3306 (*newsock)->ops = sock->ops;
Wei Yongjun1b085342008-12-18 19:35:10 -08003307 __module_get((*newsock)->ops->owner);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003308
3309done:
3310 return err;
3311}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003312EXPORT_SYMBOL(kernel_accept);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003313
3314int kernel_connect(struct socket *sock, struct sockaddr *addr, int addrlen,
YOSHIFUJI Hideaki4768fbc2007-02-09 23:25:31 +09003315 int flags)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003316{
3317 return sock->ops->connect(sock, addr, addrlen, flags);
3318}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003319EXPORT_SYMBOL(kernel_connect);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003320
3321int kernel_getsockname(struct socket *sock, struct sockaddr *addr,
3322 int *addrlen)
3323{
3324 return sock->ops->getname(sock, addr, addrlen, 0);
3325}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003326EXPORT_SYMBOL(kernel_getsockname);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003327
3328int kernel_getpeername(struct socket *sock, struct sockaddr *addr,
3329 int *addrlen)
3330{
3331 return sock->ops->getname(sock, addr, addrlen, 1);
3332}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003333EXPORT_SYMBOL(kernel_getpeername);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003334
3335int kernel_getsockopt(struct socket *sock, int level, int optname,
3336 char *optval, int *optlen)
3337{
3338 mm_segment_t oldfs = get_fs();
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003339 char __user *uoptval;
3340 int __user *uoptlen;
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003341 int err;
3342
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003343 uoptval = (char __user __force *) optval;
3344 uoptlen = (int __user __force *) optlen;
3345
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003346 set_fs(KERNEL_DS);
3347 if (level == SOL_SOCKET)
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003348 err = sock_getsockopt(sock, level, optname, uoptval, uoptlen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003349 else
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003350 err = sock->ops->getsockopt(sock, level, optname, uoptval,
3351 uoptlen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003352 set_fs(oldfs);
3353 return err;
3354}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003355EXPORT_SYMBOL(kernel_getsockopt);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003356
3357int kernel_setsockopt(struct socket *sock, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07003358 char *optval, unsigned int optlen)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003359{
3360 mm_segment_t oldfs = get_fs();
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003361 char __user *uoptval;
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003362 int err;
3363
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003364 uoptval = (char __user __force *) optval;
3365
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003366 set_fs(KERNEL_DS);
3367 if (level == SOL_SOCKET)
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003368 err = sock_setsockopt(sock, level, optname, uoptval, optlen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003369 else
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003370 err = sock->ops->setsockopt(sock, level, optname, uoptval,
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003371 optlen);
3372 set_fs(oldfs);
3373 return err;
3374}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003375EXPORT_SYMBOL(kernel_setsockopt);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003376
3377int kernel_sendpage(struct socket *sock, struct page *page, int offset,
3378 size_t size, int flags)
3379{
Herbert Xuf8451722010-05-24 00:12:34 -07003380 sock_update_classid(sock->sk);
3381
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003382 if (sock->ops->sendpage)
3383 return sock->ops->sendpage(sock, page, offset, size, flags);
3384
3385 return sock_no_sendpage(sock, page, offset, size, flags);
3386}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003387EXPORT_SYMBOL(kernel_sendpage);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003388
3389int kernel_sock_ioctl(struct socket *sock, int cmd, unsigned long arg)
3390{
3391 mm_segment_t oldfs = get_fs();
3392 int err;
3393
3394 set_fs(KERNEL_DS);
3395 err = sock->ops->ioctl(sock, cmd, arg);
3396 set_fs(oldfs);
3397
3398 return err;
3399}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003400EXPORT_SYMBOL(kernel_sock_ioctl);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003401
Trond Myklebust91cf45f2007-11-12 18:10:39 -08003402int kernel_sock_shutdown(struct socket *sock, enum sock_shutdown_cmd how)
3403{
3404 return sock->ops->shutdown(sock, how);
3405}
Trond Myklebust91cf45f2007-11-12 18:10:39 -08003406EXPORT_SYMBOL(kernel_sock_shutdown);
Harout Hedeshianff12c742014-03-04 07:31:47 -07003407
3408int sockev_register_notify(struct notifier_block *nb)
3409{
3410 return blocking_notifier_chain_register(&sockev_notifier_list, nb);
3411}
3412EXPORT_SYMBOL(sockev_register_notify);
3413
3414int sockev_unregister_notify(struct notifier_block *nb)
3415{
3416 return blocking_notifier_chain_unregister(&sockev_notifier_list, nb);
3417}
3418EXPORT_SYMBOL(sockev_unregister_notify);