blob: 3548af38532f7da906dac5391a621a081c864228 [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;
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001726 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1727 if (!sock)
David S. Miller4387ff72007-02-08 15:06:08 -08001728 goto out;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001729
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001730 iov.iov_base = buff;
1731 iov.iov_len = len;
1732 msg.msg_name = NULL;
1733 msg.msg_iov = &iov;
1734 msg.msg_iovlen = 1;
1735 msg.msg_control = NULL;
1736 msg.msg_controllen = 0;
1737 msg.msg_namelen = 0;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001738 if (addr) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001739 err = move_addr_to_kernel(addr, addr_len, &address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 if (err < 0)
1741 goto out_put;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001742 msg.msg_name = (struct sockaddr *)&address;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001743 msg.msg_namelen = addr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 }
1745 if (sock->file->f_flags & O_NONBLOCK)
1746 flags |= MSG_DONTWAIT;
1747 msg.msg_flags = flags;
1748 err = sock_sendmsg(sock, &msg, len);
1749
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001750out_put:
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001751 fput_light(sock->file, fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08001752out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 return err;
1754}
1755
1756/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001757 * Send a datagram down a socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 */
1759
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001760SYSCALL_DEFINE4(send, int, fd, void __user *, buff, size_t, len,
1761 unsigned, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762{
1763 return sys_sendto(fd, buff, len, flags, NULL, 0);
1764}
1765
1766/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001767 * Receive a frame from the socket and optionally record the address of the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 * sender. We verify the buffers are writable and if needed move the
1769 * sender address from kernel to user space.
1770 */
1771
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001772SYSCALL_DEFINE6(recvfrom, int, fd, void __user *, ubuf, size_t, size,
1773 unsigned, flags, struct sockaddr __user *, addr,
1774 int __user *, addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775{
1776 struct socket *sock;
1777 struct iovec iov;
1778 struct msghdr msg;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001779 struct sockaddr_storage address;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001780 int err, err2;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001781 int fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782
Linus Torvalds253eacc2010-10-30 16:43:10 -07001783 if (size > INT_MAX)
1784 size = INT_MAX;
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001785 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 if (!sock)
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001787 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001789 msg.msg_control = NULL;
1790 msg.msg_controllen = 0;
1791 msg.msg_iovlen = 1;
1792 msg.msg_iov = &iov;
1793 iov.iov_len = size;
1794 iov.iov_base = ubuf;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001795 msg.msg_name = (struct sockaddr *)&address;
1796 msg.msg_namelen = sizeof(address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 if (sock->file->f_flags & O_NONBLOCK)
1798 flags |= MSG_DONTWAIT;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001799 err = sock_recvmsg(sock, &msg, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001801 if (err >= 0 && addr != NULL) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001802 err2 = move_addr_to_user(&address,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001803 msg.msg_namelen, addr, addr_len);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001804 if (err2 < 0)
1805 err = err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 }
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001807
1808 fput_light(sock->file, fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08001809out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 return err;
1811}
1812
1813/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001814 * Receive a datagram from a socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 */
1816
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001817asmlinkage long sys_recv(int fd, void __user *ubuf, size_t size,
1818 unsigned flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819{
1820 return sys_recvfrom(fd, ubuf, size, flags, NULL, NULL);
1821}
1822
1823/*
1824 * Set a socket option. Because we don't know the option lengths we have
1825 * to pass the user mode parameter for the protocols to sort out.
1826 */
1827
Heiko Carstens20f37032009-01-14 14:14:23 +01001828SYSCALL_DEFINE5(setsockopt, int, fd, int, level, int, optname,
1829 char __user *, optval, int, optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001831 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 struct socket *sock;
1833
1834 if (optlen < 0)
1835 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001836
1837 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1838 if (sock != NULL) {
1839 err = security_socket_setsockopt(sock, level, optname);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001840 if (err)
1841 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842
1843 if (level == SOL_SOCKET)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001844 err =
1845 sock_setsockopt(sock, level, optname, optval,
1846 optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 else
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001848 err =
1849 sock->ops->setsockopt(sock, level, optname, optval,
1850 optlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001851out_put:
1852 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 }
1854 return err;
1855}
1856
1857/*
1858 * Get a socket option. Because we don't know the option lengths we have
1859 * to pass a user mode parameter for the protocols to sort out.
1860 */
1861
Heiko Carstens20f37032009-01-14 14:14:23 +01001862SYSCALL_DEFINE5(getsockopt, int, fd, int, level, int, optname,
1863 char __user *, optval, int __user *, optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001865 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 struct socket *sock;
1867
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001868 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1869 if (sock != NULL) {
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001870 err = security_socket_getsockopt(sock, level, optname);
1871 if (err)
1872 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873
1874 if (level == SOL_SOCKET)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001875 err =
1876 sock_getsockopt(sock, level, optname, optval,
1877 optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 else
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001879 err =
1880 sock->ops->getsockopt(sock, level, optname, optval,
1881 optlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001882out_put:
1883 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 }
1885 return err;
1886}
1887
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888/*
1889 * Shutdown a socket.
1890 */
1891
Heiko Carstens754fe8d2009-01-14 14:14:09 +01001892SYSCALL_DEFINE2(shutdown, int, fd, int, how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001894 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 struct socket *sock;
1896
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001897 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1898 if (sock != NULL) {
Harout Hedeshianff12c742014-03-04 07:31:47 -07001899 sockev_notify(SOCKEV_SHUTDOWN, sock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 err = security_socket_shutdown(sock, how);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001901 if (!err)
1902 err = sock->ops->shutdown(sock, how);
1903 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 }
1905 return err;
1906}
1907
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001908/* A couple of helpful macros for getting the address of the 32/64 bit
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 * fields which are the same type (int / unsigned) on our platforms.
1910 */
1911#define COMPAT_MSG(msg, member) ((MSG_CMSG_COMPAT & flags) ? &msg##_compat->member : &msg->member)
1912#define COMPAT_NAMELEN(msg) COMPAT_MSG(msg, msg_namelen)
1913#define COMPAT_FLAGS(msg) COMPAT_MSG(msg, msg_flags)
1914
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00001915struct used_address {
1916 struct sockaddr_storage name;
1917 unsigned int name_len;
1918};
1919
Anton Blanchard228e5482011-05-02 20:21:35 +00001920static int __sys_sendmsg(struct socket *sock, struct msghdr __user *msg,
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00001921 struct msghdr *msg_sys, unsigned flags,
1922 struct used_address *used_address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001924 struct compat_msghdr __user *msg_compat =
1925 (struct compat_msghdr __user *)msg;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001926 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 struct iovec iovstack[UIO_FASTIOV], *iov = iovstack;
Alex Williamsonb9d717a2005-09-26 14:28:02 -07001928 unsigned char ctl[sizeof(struct cmsghdr) + 20]
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001929 __attribute__ ((aligned(sizeof(__kernel_size_t))));
1930 /* 20 is size of ipv6_pktinfo */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 unsigned char *ctl_buf = ctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 int err, ctl_len, iov_size, total_len;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001933
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 err = -EFAULT;
1935 if (MSG_CMSG_COMPAT & flags) {
Anton Blanchard228e5482011-05-02 20:21:35 +00001936 if (get_compat_msghdr(msg_sys, msg_compat))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 return -EFAULT;
Anton Blanchard228e5482011-05-02 20:21:35 +00001938 } else if (copy_from_user(msg_sys, msg, sizeof(struct msghdr)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 return -EFAULT;
1940
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 /* do not move before msg_sys is valid */
1942 err = -EMSGSIZE;
Anton Blanchard228e5482011-05-02 20:21:35 +00001943 if (msg_sys->msg_iovlen > UIO_MAXIOV)
1944 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001946 /* Check whether to allocate the iovec area */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 err = -ENOMEM;
Anton Blanchard228e5482011-05-02 20:21:35 +00001948 iov_size = msg_sys->msg_iovlen * sizeof(struct iovec);
1949 if (msg_sys->msg_iovlen > UIO_FASTIOV) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 iov = sock_kmalloc(sock->sk, iov_size, GFP_KERNEL);
1951 if (!iov)
Anton Blanchard228e5482011-05-02 20:21:35 +00001952 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 }
1954
1955 /* This will also move the address data into kernel space */
1956 if (MSG_CMSG_COMPAT & flags) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001957 err = verify_compat_iovec(msg_sys, iov, &address, VERIFY_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 } else
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001959 err = verify_iovec(msg_sys, iov, &address, VERIFY_READ);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001960 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 goto out_freeiov;
1962 total_len = err;
1963
1964 err = -ENOBUFS;
1965
Anton Blanchard228e5482011-05-02 20:21:35 +00001966 if (msg_sys->msg_controllen > INT_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 goto out_freeiov;
Anton Blanchard228e5482011-05-02 20:21:35 +00001968 ctl_len = msg_sys->msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 if ((MSG_CMSG_COMPAT & flags) && ctl_len) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001970 err =
Anton Blanchard228e5482011-05-02 20:21:35 +00001971 cmsghdr_from_user_compat_to_kern(msg_sys, sock->sk, ctl,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001972 sizeof(ctl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 if (err)
1974 goto out_freeiov;
Anton Blanchard228e5482011-05-02 20:21:35 +00001975 ctl_buf = msg_sys->msg_control;
1976 ctl_len = msg_sys->msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 } else if (ctl_len) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001978 if (ctl_len > sizeof(ctl)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 ctl_buf = sock_kmalloc(sock->sk, ctl_len, GFP_KERNEL);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001980 if (ctl_buf == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 goto out_freeiov;
1982 }
1983 err = -EFAULT;
1984 /*
Anton Blanchard228e5482011-05-02 20:21:35 +00001985 * Careful! Before this, msg_sys->msg_control contains a user pointer.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 * Afterwards, it will be a kernel pointer. Thus the compiler-assisted
1987 * checking falls down on this.
1988 */
Namhyung Kimfb8621b2010-09-07 03:55:00 +00001989 if (copy_from_user(ctl_buf,
Anton Blanchard228e5482011-05-02 20:21:35 +00001990 (void __user __force *)msg_sys->msg_control,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001991 ctl_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 goto out_freectl;
Anton Blanchard228e5482011-05-02 20:21:35 +00001993 msg_sys->msg_control = ctl_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 }
Anton Blanchard228e5482011-05-02 20:21:35 +00001995 msg_sys->msg_flags = flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996
1997 if (sock->file->f_flags & O_NONBLOCK)
Anton Blanchard228e5482011-05-02 20:21:35 +00001998 msg_sys->msg_flags |= MSG_DONTWAIT;
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00001999 /*
2000 * If this is sendmmsg() and current destination address is same as
2001 * previously succeeded address, omit asking LSM's decision.
2002 * used_address->name_len is initialized to UINT_MAX so that the first
2003 * destination address never matches.
2004 */
Mathieu Desnoyersbc909d92011-08-24 19:45:03 -07002005 if (used_address && msg_sys->msg_name &&
2006 used_address->name_len == msg_sys->msg_namelen &&
2007 !memcmp(&used_address->name, msg_sys->msg_name,
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002008 used_address->name_len)) {
2009 err = sock_sendmsg_nosec(sock, msg_sys, total_len);
2010 goto out_freectl;
2011 }
2012 err = sock_sendmsg(sock, msg_sys, total_len);
2013 /*
2014 * If this is sendmmsg() and sending to current destination address was
2015 * successful, remember it.
2016 */
2017 if (used_address && err >= 0) {
2018 used_address->name_len = msg_sys->msg_namelen;
Mathieu Desnoyersbc909d92011-08-24 19:45:03 -07002019 if (msg_sys->msg_name)
2020 memcpy(&used_address->name, msg_sys->msg_name,
2021 used_address->name_len);
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002022 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023
2024out_freectl:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002025 if (ctl_buf != ctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 sock_kfree_s(sock->sk, ctl_buf, ctl_len);
2027out_freeiov:
2028 if (iov != iovstack)
2029 sock_kfree_s(sock->sk, iov, iov_size);
Anton Blanchard228e5482011-05-02 20:21:35 +00002030out:
2031 return err;
2032}
2033
2034/*
2035 * BSD sendmsg interface
2036 */
2037
2038SYSCALL_DEFINE3(sendmsg, int, fd, struct msghdr __user *, msg, unsigned, flags)
2039{
2040 int fput_needed, err;
2041 struct msghdr msg_sys;
2042 struct socket *sock = sockfd_lookup_light(fd, &err, &fput_needed);
2043
2044 if (!sock)
2045 goto out;
2046
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002047 err = __sys_sendmsg(sock, msg, &msg_sys, flags, NULL);
Anton Blanchard228e5482011-05-02 20:21:35 +00002048
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002049 fput_light(sock->file, fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002050out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 return err;
2052}
2053
Anton Blanchard228e5482011-05-02 20:21:35 +00002054/*
2055 * Linux sendmmsg interface
2056 */
2057
2058int __sys_sendmmsg(int fd, struct mmsghdr __user *mmsg, unsigned int vlen,
2059 unsigned int flags)
2060{
2061 int fput_needed, err, datagrams;
2062 struct socket *sock;
2063 struct mmsghdr __user *entry;
2064 struct compat_mmsghdr __user *compat_entry;
2065 struct msghdr msg_sys;
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002066 struct used_address used_address;
Anton Blanchard228e5482011-05-02 20:21:35 +00002067
Anton Blanchard98382f42011-08-04 14:07:39 +00002068 if (vlen > UIO_MAXIOV)
2069 vlen = UIO_MAXIOV;
Anton Blanchard228e5482011-05-02 20:21:35 +00002070
2071 datagrams = 0;
2072
2073 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2074 if (!sock)
2075 return err;
2076
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002077 used_address.name_len = UINT_MAX;
Anton Blanchard228e5482011-05-02 20:21:35 +00002078 entry = mmsg;
2079 compat_entry = (struct compat_mmsghdr __user *)mmsg;
Anton Blanchard728ffb82011-08-04 14:07:38 +00002080 err = 0;
Anton Blanchard228e5482011-05-02 20:21:35 +00002081
2082 while (datagrams < vlen) {
Anton Blanchard228e5482011-05-02 20:21:35 +00002083 if (MSG_CMSG_COMPAT & flags) {
2084 err = __sys_sendmsg(sock, (struct msghdr __user *)compat_entry,
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002085 &msg_sys, flags, &used_address);
Anton Blanchard228e5482011-05-02 20:21:35 +00002086 if (err < 0)
2087 break;
2088 err = __put_user(err, &compat_entry->msg_len);
2089 ++compat_entry;
2090 } else {
2091 err = __sys_sendmsg(sock, (struct msghdr __user *)entry,
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002092 &msg_sys, flags, &used_address);
Anton Blanchard228e5482011-05-02 20:21:35 +00002093 if (err < 0)
2094 break;
2095 err = put_user(err, &entry->msg_len);
2096 ++entry;
2097 }
2098
2099 if (err)
2100 break;
2101 ++datagrams;
2102 }
2103
Anton Blanchard228e5482011-05-02 20:21:35 +00002104 fput_light(sock->file, fput_needed);
2105
Anton Blanchard728ffb82011-08-04 14:07:38 +00002106 /* We only return an error if no datagrams were able to be sent */
2107 if (datagrams != 0)
Anton Blanchard228e5482011-05-02 20:21:35 +00002108 return datagrams;
2109
Anton Blanchard228e5482011-05-02 20:21:35 +00002110 return err;
2111}
2112
2113SYSCALL_DEFINE4(sendmmsg, int, fd, struct mmsghdr __user *, mmsg,
2114 unsigned int, vlen, unsigned int, flags)
2115{
2116 return __sys_sendmmsg(fd, mmsg, vlen, flags);
2117}
2118
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002119static int __sys_recvmsg(struct socket *sock, struct msghdr __user *msg,
2120 struct msghdr *msg_sys, unsigned flags, int nosec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002122 struct compat_msghdr __user *msg_compat =
2123 (struct compat_msghdr __user *)msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 struct iovec iovstack[UIO_FASTIOV];
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002125 struct iovec *iov = iovstack;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 unsigned long cmsg_ptr;
2127 int err, iov_size, total_len, len;
2128
2129 /* kernel mode address */
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07002130 struct sockaddr_storage addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131
2132 /* user mode address pointers */
2133 struct sockaddr __user *uaddr;
2134 int __user *uaddr_len;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002135
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 if (MSG_CMSG_COMPAT & flags) {
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002137 if (get_compat_msghdr(msg_sys, msg_compat))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 return -EFAULT;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002139 } else if (copy_from_user(msg_sys, msg, sizeof(struct msghdr)))
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002140 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 err = -EMSGSIZE;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002143 if (msg_sys->msg_iovlen > UIO_MAXIOV)
2144 goto out;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002145
2146 /* Check whether to allocate the iovec area */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 err = -ENOMEM;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002148 iov_size = msg_sys->msg_iovlen * sizeof(struct iovec);
2149 if (msg_sys->msg_iovlen > UIO_FASTIOV) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 iov = sock_kmalloc(sock->sk, iov_size, GFP_KERNEL);
2151 if (!iov)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002152 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 }
2154
2155 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002156 * Save the user-mode address (verify_iovec will change the
2157 * kernel msghdr to use the kernel address space)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002159
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002160 uaddr = (__force void __user *)msg_sys->msg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 uaddr_len = COMPAT_NAMELEN(msg);
2162 if (MSG_CMSG_COMPAT & flags) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00002163 err = verify_compat_iovec(msg_sys, iov, &addr, VERIFY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 } else
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00002165 err = verify_iovec(msg_sys, iov, &addr, VERIFY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 if (err < 0)
2167 goto out_freeiov;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002168 total_len = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002170 cmsg_ptr = (unsigned long)msg_sys->msg_control;
2171 msg_sys->msg_flags = flags & (MSG_CMSG_CLOEXEC|MSG_CMSG_COMPAT);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002172
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 if (sock->file->f_flags & O_NONBLOCK)
2174 flags |= MSG_DONTWAIT;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002175 err = (nosec ? sock_recvmsg_nosec : sock_recvmsg)(sock, msg_sys,
2176 total_len, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 if (err < 0)
2178 goto out_freeiov;
2179 len = err;
2180
2181 if (uaddr != NULL) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00002182 err = move_addr_to_user(&addr,
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002183 msg_sys->msg_namelen, uaddr,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002184 uaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 if (err < 0)
2186 goto out_freeiov;
2187 }
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002188 err = __put_user((msg_sys->msg_flags & ~MSG_CMSG_COMPAT),
David S. Miller37f7f422005-09-16 16:51:01 -07002189 COMPAT_FLAGS(msg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 if (err)
2191 goto out_freeiov;
2192 if (MSG_CMSG_COMPAT & flags)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002193 err = __put_user((unsigned long)msg_sys->msg_control - cmsg_ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 &msg_compat->msg_controllen);
2195 else
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002196 err = __put_user((unsigned long)msg_sys->msg_control - cmsg_ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 &msg->msg_controllen);
2198 if (err)
2199 goto out_freeiov;
2200 err = len;
2201
2202out_freeiov:
2203 if (iov != iovstack)
2204 sock_kfree_s(sock->sk, iov, iov_size);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002205out:
2206 return err;
2207}
2208
2209/*
2210 * BSD recvmsg interface
2211 */
2212
2213SYSCALL_DEFINE3(recvmsg, int, fd, struct msghdr __user *, msg,
2214 unsigned int, flags)
2215{
2216 int fput_needed, err;
2217 struct msghdr msg_sys;
2218 struct socket *sock = sockfd_lookup_light(fd, &err, &fput_needed);
2219
2220 if (!sock)
2221 goto out;
2222
2223 err = __sys_recvmsg(sock, msg, &msg_sys, flags, 0);
2224
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002225 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226out:
2227 return err;
2228}
2229
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002230/*
2231 * Linux recvmmsg interface
2232 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002234int __sys_recvmmsg(int fd, struct mmsghdr __user *mmsg, unsigned int vlen,
2235 unsigned int flags, struct timespec *timeout)
2236{
2237 int fput_needed, err, datagrams;
2238 struct socket *sock;
2239 struct mmsghdr __user *entry;
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002240 struct compat_mmsghdr __user *compat_entry;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002241 struct msghdr msg_sys;
2242 struct timespec end_time;
2243
2244 if (timeout &&
2245 poll_select_set_timeout(&end_time, timeout->tv_sec,
2246 timeout->tv_nsec))
2247 return -EINVAL;
2248
2249 datagrams = 0;
2250
2251 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2252 if (!sock)
2253 return err;
2254
2255 err = sock_error(sock->sk);
2256 if (err)
2257 goto out_put;
2258
2259 entry = mmsg;
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002260 compat_entry = (struct compat_mmsghdr __user *)mmsg;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002261
2262 while (datagrams < vlen) {
2263 /*
2264 * No need to ask LSM for more than the first datagram.
2265 */
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002266 if (MSG_CMSG_COMPAT & flags) {
2267 err = __sys_recvmsg(sock, (struct msghdr __user *)compat_entry,
Anton Blanchardb9eb8b82011-05-17 15:38:57 -04002268 &msg_sys, flags & ~MSG_WAITFORONE,
2269 datagrams);
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002270 if (err < 0)
2271 break;
2272 err = __put_user(err, &compat_entry->msg_len);
2273 ++compat_entry;
2274 } else {
2275 err = __sys_recvmsg(sock, (struct msghdr __user *)entry,
Anton Blanchardb9eb8b82011-05-17 15:38:57 -04002276 &msg_sys, flags & ~MSG_WAITFORONE,
2277 datagrams);
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002278 if (err < 0)
2279 break;
2280 err = put_user(err, &entry->msg_len);
2281 ++entry;
2282 }
2283
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002284 if (err)
2285 break;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002286 ++datagrams;
2287
Brandon L Black71c5c152010-03-26 16:18:03 +00002288 /* MSG_WAITFORONE turns on MSG_DONTWAIT after one packet */
2289 if (flags & MSG_WAITFORONE)
2290 flags |= MSG_DONTWAIT;
2291
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002292 if (timeout) {
2293 ktime_get_ts(timeout);
2294 *timeout = timespec_sub(end_time, *timeout);
2295 if (timeout->tv_sec < 0) {
2296 timeout->tv_sec = timeout->tv_nsec = 0;
2297 break;
2298 }
2299
2300 /* Timeout, return less than vlen datagrams */
2301 if (timeout->tv_nsec == 0 && timeout->tv_sec == 0)
2302 break;
2303 }
2304
2305 /* Out of band data, return right away */
2306 if (msg_sys.msg_flags & MSG_OOB)
2307 break;
2308 }
2309
2310out_put:
2311 fput_light(sock->file, fput_needed);
2312
2313 if (err == 0)
2314 return datagrams;
2315
2316 if (datagrams != 0) {
2317 /*
2318 * We may return less entries than requested (vlen) if the
2319 * sock is non block and there aren't enough datagrams...
2320 */
2321 if (err != -EAGAIN) {
2322 /*
2323 * ... or if recvmsg returns an error after we
2324 * received some datagrams, where we record the
2325 * error to return on the next call or if the
2326 * app asks about it using getsockopt(SO_ERROR).
2327 */
2328 sock->sk->sk_err = -err;
2329 }
2330
2331 return datagrams;
2332 }
2333
2334 return err;
2335}
2336
2337SYSCALL_DEFINE5(recvmmsg, int, fd, struct mmsghdr __user *, mmsg,
2338 unsigned int, vlen, unsigned int, flags,
2339 struct timespec __user *, timeout)
2340{
2341 int datagrams;
2342 struct timespec timeout_sys;
2343
2344 if (!timeout)
2345 return __sys_recvmmsg(fd, mmsg, vlen, flags, NULL);
2346
2347 if (copy_from_user(&timeout_sys, timeout, sizeof(timeout_sys)))
2348 return -EFAULT;
2349
2350 datagrams = __sys_recvmmsg(fd, mmsg, vlen, flags, &timeout_sys);
2351
2352 if (datagrams > 0 &&
2353 copy_to_user(timeout, &timeout_sys, sizeof(timeout_sys)))
2354 datagrams = -EFAULT;
2355
2356 return datagrams;
2357}
2358
2359#ifdef __ARCH_WANT_SYS_SOCKETCALL
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360/* Argument list sizes for sys_socketcall */
2361#define AL(x) ((x) * sizeof(unsigned long))
Anton Blanchard228e5482011-05-02 20:21:35 +00002362static const unsigned char nargs[21] = {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002363 AL(0), AL(3), AL(3), AL(3), AL(2), AL(3),
2364 AL(3), AL(3), AL(4), AL(4), AL(4), AL(6),
2365 AL(6), AL(2), AL(5), AL(5), AL(3), AL(3),
Anton Blanchard228e5482011-05-02 20:21:35 +00002366 AL(4), AL(5), AL(4)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002367};
2368
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369#undef AL
2370
2371/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002372 * System call vectors.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 *
2374 * Argument checking cleaned up. Saved 20% in size.
2375 * This function doesn't need to set the kernel lock because
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002376 * it is set by the callees.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 */
2378
Heiko Carstens3e0fa652009-01-14 14:14:24 +01002379SYSCALL_DEFINE2(socketcall, int, call, unsigned long __user *, args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380{
2381 unsigned long a[6];
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002382 unsigned long a0, a1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 int err;
Arjan van de Ven47379052009-09-28 12:57:44 -07002384 unsigned int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385
Anton Blanchard228e5482011-05-02 20:21:35 +00002386 if (call < 1 || call > SYS_SENDMMSG)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 return -EINVAL;
2388
Arjan van de Ven47379052009-09-28 12:57:44 -07002389 len = nargs[call];
2390 if (len > sizeof(a))
2391 return -EINVAL;
2392
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 /* copy_from_user should be SMP safe. */
Arjan van de Ven47379052009-09-28 12:57:44 -07002394 if (copy_from_user(a, args, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 return -EFAULT;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002396
Al Virof3298dc2008-12-10 03:16:51 -05002397 audit_socketcall(nargs[call] / sizeof(unsigned long), a);
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002398
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002399 a0 = a[0];
2400 a1 = a[1];
2401
2402 switch (call) {
2403 case SYS_SOCKET:
2404 err = sys_socket(a0, a1, a[2]);
2405 break;
2406 case SYS_BIND:
2407 err = sys_bind(a0, (struct sockaddr __user *)a1, a[2]);
2408 break;
2409 case SYS_CONNECT:
2410 err = sys_connect(a0, (struct sockaddr __user *)a1, a[2]);
2411 break;
2412 case SYS_LISTEN:
2413 err = sys_listen(a0, a1);
2414 break;
2415 case SYS_ACCEPT:
Ulrich Drepperde11def2008-11-19 15:36:14 -08002416 err = sys_accept4(a0, (struct sockaddr __user *)a1,
2417 (int __user *)a[2], 0);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002418 break;
2419 case SYS_GETSOCKNAME:
2420 err =
2421 sys_getsockname(a0, (struct sockaddr __user *)a1,
2422 (int __user *)a[2]);
2423 break;
2424 case SYS_GETPEERNAME:
2425 err =
2426 sys_getpeername(a0, (struct sockaddr __user *)a1,
2427 (int __user *)a[2]);
2428 break;
2429 case SYS_SOCKETPAIR:
2430 err = sys_socketpair(a0, a1, a[2], (int __user *)a[3]);
2431 break;
2432 case SYS_SEND:
2433 err = sys_send(a0, (void __user *)a1, a[2], a[3]);
2434 break;
2435 case SYS_SENDTO:
2436 err = sys_sendto(a0, (void __user *)a1, a[2], a[3],
2437 (struct sockaddr __user *)a[4], a[5]);
2438 break;
2439 case SYS_RECV:
2440 err = sys_recv(a0, (void __user *)a1, a[2], a[3]);
2441 break;
2442 case SYS_RECVFROM:
2443 err = sys_recvfrom(a0, (void __user *)a1, a[2], a[3],
2444 (struct sockaddr __user *)a[4],
2445 (int __user *)a[5]);
2446 break;
2447 case SYS_SHUTDOWN:
2448 err = sys_shutdown(a0, a1);
2449 break;
2450 case SYS_SETSOCKOPT:
2451 err = sys_setsockopt(a0, a1, a[2], (char __user *)a[3], a[4]);
2452 break;
2453 case SYS_GETSOCKOPT:
2454 err =
2455 sys_getsockopt(a0, a1, a[2], (char __user *)a[3],
2456 (int __user *)a[4]);
2457 break;
2458 case SYS_SENDMSG:
2459 err = sys_sendmsg(a0, (struct msghdr __user *)a1, a[2]);
2460 break;
Anton Blanchard228e5482011-05-02 20:21:35 +00002461 case SYS_SENDMMSG:
2462 err = sys_sendmmsg(a0, (struct mmsghdr __user *)a1, a[2], a[3]);
2463 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002464 case SYS_RECVMSG:
2465 err = sys_recvmsg(a0, (struct msghdr __user *)a1, a[2]);
2466 break;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002467 case SYS_RECVMMSG:
2468 err = sys_recvmmsg(a0, (struct mmsghdr __user *)a1, a[2], a[3],
2469 (struct timespec __user *)a[4]);
2470 break;
Ulrich Drepperde11def2008-11-19 15:36:14 -08002471 case SYS_ACCEPT4:
2472 err = sys_accept4(a0, (struct sockaddr __user *)a1,
2473 (int __user *)a[2], a[3]);
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07002474 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002475 default:
2476 err = -EINVAL;
2477 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478 }
2479 return err;
2480}
2481
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002482#endif /* __ARCH_WANT_SYS_SOCKETCALL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002484/**
2485 * sock_register - add a socket protocol handler
2486 * @ops: description of protocol
2487 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488 * This function is called by a protocol handler that wants to
2489 * advertise its address family, and have it linked into the
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002490 * socket interface. The value ops->family coresponds to the
2491 * socket system call protocol family.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 */
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002493int sock_register(const struct net_proto_family *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494{
2495 int err;
2496
2497 if (ops->family >= NPROTO) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002498 printk(KERN_CRIT "protocol %d >= NPROTO(%d)\n", ops->family,
2499 NPROTO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 return -ENOBUFS;
2501 }
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002502
2503 spin_lock(&net_family_lock);
Eric Dumazet190683a2010-11-10 10:50:44 +00002504 if (rcu_dereference_protected(net_families[ops->family],
2505 lockdep_is_held(&net_family_lock)))
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002506 err = -EEXIST;
2507 else {
Eric Dumazetcf778b02012-01-12 04:41:32 +00002508 rcu_assign_pointer(net_families[ops->family], ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 err = 0;
2510 }
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002511 spin_unlock(&net_family_lock);
2512
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002513 printk(KERN_INFO "NET: Registered protocol family %d\n", ops->family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 return err;
2515}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002516EXPORT_SYMBOL(sock_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002518/**
2519 * sock_unregister - remove a protocol handler
2520 * @family: protocol family to remove
2521 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522 * This function is called by a protocol handler that wants to
2523 * remove its address family, and have it unlinked from the
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002524 * new socket creation.
2525 *
2526 * If protocol handler is a module, then it can use module reference
2527 * counts to protect against new references. If protocol handler is not
2528 * a module then it needs to provide its own protection in
2529 * the ops->create routine.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 */
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002531void sock_unregister(int family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532{
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002533 BUG_ON(family < 0 || family >= NPROTO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002535 spin_lock(&net_family_lock);
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00002536 RCU_INIT_POINTER(net_families[family], NULL);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002537 spin_unlock(&net_family_lock);
2538
2539 synchronize_rcu();
2540
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002541 printk(KERN_INFO "NET: Unregistered protocol family %d\n", family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002543EXPORT_SYMBOL(sock_unregister);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544
Andi Kleen77d76ea2005-12-22 12:43:42 -08002545static int __init sock_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546{
Nick Pigginb3e19d92011-01-07 17:50:11 +11002547 int err;
2548
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002550 * Initialize sock SLAB cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002552
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553 sk_init();
2554
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002556 * Initialize skbuff SLAB cache
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 */
2558 skb_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559
2560 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002561 * Initialize the protocols module.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 */
2563
2564 init_inodecache();
Nick Pigginb3e19d92011-01-07 17:50:11 +11002565
2566 err = register_filesystem(&sock_fs_type);
2567 if (err)
2568 goto out_fs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569 sock_mnt = kern_mount(&sock_fs_type);
Nick Pigginb3e19d92011-01-07 17:50:11 +11002570 if (IS_ERR(sock_mnt)) {
2571 err = PTR_ERR(sock_mnt);
2572 goto out_mount;
2573 }
Andi Kleen77d76ea2005-12-22 12:43:42 -08002574
2575 /* The real protocol initialization is performed in later initcalls.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576 */
2577
2578#ifdef CONFIG_NETFILTER
2579 netfilter_init();
2580#endif
David S. Millercbeb3212005-12-22 12:58:55 -08002581
Richard Cochranc1f19b52010-07-17 08:49:36 +00002582#ifdef CONFIG_NETWORK_PHY_TIMESTAMPING
2583 skb_timestamping_init();
2584#endif
2585
Nick Pigginb3e19d92011-01-07 17:50:11 +11002586out:
2587 return err;
2588
2589out_mount:
2590 unregister_filesystem(&sock_fs_type);
2591out_fs:
2592 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593}
2594
Andi Kleen77d76ea2005-12-22 12:43:42 -08002595core_initcall(sock_init); /* early initcall */
2596
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597#ifdef CONFIG_PROC_FS
2598void socket_seq_show(struct seq_file *seq)
2599{
2600 int cpu;
2601 int counter = 0;
2602
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -07002603 for_each_possible_cpu(cpu)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002604 counter += per_cpu(sockets_in_use, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605
2606 /* It can be negative, by the way. 8) */
2607 if (counter < 0)
2608 counter = 0;
2609
2610 seq_printf(seq, "sockets: used %d\n", counter);
2611}
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002612#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613
Shaun Pereira89bbfc92006-03-21 23:58:08 -08002614#ifdef CONFIG_COMPAT
Arnd Bergmann6b960182009-11-06 23:10:54 -08002615static int do_siocgstamp(struct net *net, struct socket *sock,
H. Peter Anvin644595f2012-02-19 17:51:59 -08002616 unsigned int cmd, void __user *up)
Arnd Bergmann7a229382009-11-06 23:00:29 -08002617{
Arnd Bergmann7a229382009-11-06 23:00:29 -08002618 mm_segment_t old_fs = get_fs();
2619 struct timeval ktv;
2620 int err;
2621
2622 set_fs(KERNEL_DS);
Arnd Bergmann6b960182009-11-06 23:10:54 -08002623 err = sock_do_ioctl(net, sock, cmd, (unsigned long)&ktv);
Arnd Bergmann7a229382009-11-06 23:00:29 -08002624 set_fs(old_fs);
H. Peter Anvin644595f2012-02-19 17:51:59 -08002625 if (!err)
2626 err = compat_put_timeval(up, &ktv);
2627
Arnd Bergmann7a229382009-11-06 23:00:29 -08002628 return err;
2629}
2630
Arnd Bergmann6b960182009-11-06 23:10:54 -08002631static int do_siocgstampns(struct net *net, struct socket *sock,
H. Peter Anvin644595f2012-02-19 17:51:59 -08002632 unsigned int cmd, void __user *up)
Arnd Bergmann7a229382009-11-06 23:00:29 -08002633{
Arnd Bergmann7a229382009-11-06 23:00:29 -08002634 mm_segment_t old_fs = get_fs();
2635 struct timespec kts;
2636 int err;
2637
2638 set_fs(KERNEL_DS);
Arnd Bergmann6b960182009-11-06 23:10:54 -08002639 err = sock_do_ioctl(net, sock, cmd, (unsigned long)&kts);
Arnd Bergmann7a229382009-11-06 23:00:29 -08002640 set_fs(old_fs);
H. Peter Anvin644595f2012-02-19 17:51:59 -08002641 if (!err)
2642 err = compat_put_timespec(up, &kts);
2643
Arnd Bergmann7a229382009-11-06 23:00:29 -08002644 return err;
2645}
2646
Arnd Bergmann6b960182009-11-06 23:10:54 -08002647static int dev_ifname32(struct net *net, struct compat_ifreq __user *uifr32)
Arnd Bergmann7a229382009-11-06 23:00:29 -08002648{
2649 struct ifreq __user *uifr;
2650 int err;
2651
2652 uifr = compat_alloc_user_space(sizeof(struct ifreq));
Arnd Bergmann6b960182009-11-06 23:10:54 -08002653 if (copy_in_user(uifr, uifr32, sizeof(struct compat_ifreq)))
Arnd Bergmann7a229382009-11-06 23:00:29 -08002654 return -EFAULT;
2655
Arnd Bergmann6b960182009-11-06 23:10:54 -08002656 err = dev_ioctl(net, SIOCGIFNAME, uifr);
Arnd Bergmann7a229382009-11-06 23:00:29 -08002657 if (err)
2658 return err;
2659
Arnd Bergmann6b960182009-11-06 23:10:54 -08002660 if (copy_in_user(uifr32, uifr, sizeof(struct compat_ifreq)))
Arnd Bergmann7a229382009-11-06 23:00:29 -08002661 return -EFAULT;
2662
2663 return 0;
2664}
2665
Arnd Bergmann6b960182009-11-06 23:10:54 -08002666static int dev_ifconf(struct net *net, struct compat_ifconf __user *uifc32)
Arnd Bergmann7a229382009-11-06 23:00:29 -08002667{
Arnd Bergmann6b960182009-11-06 23:10:54 -08002668 struct compat_ifconf ifc32;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002669 struct ifconf ifc;
2670 struct ifconf __user *uifc;
Arnd Bergmann6b960182009-11-06 23:10:54 -08002671 struct compat_ifreq __user *ifr32;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002672 struct ifreq __user *ifr;
2673 unsigned int i, j;
2674 int err;
2675
Arnd Bergmann6b960182009-11-06 23:10:54 -08002676 if (copy_from_user(&ifc32, uifc32, sizeof(struct compat_ifconf)))
Arnd Bergmann7a229382009-11-06 23:00:29 -08002677 return -EFAULT;
2678
2679 if (ifc32.ifcbuf == 0) {
2680 ifc32.ifc_len = 0;
2681 ifc.ifc_len = 0;
2682 ifc.ifc_req = NULL;
2683 uifc = compat_alloc_user_space(sizeof(struct ifconf));
2684 } else {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002685 size_t len = ((ifc32.ifc_len / sizeof(struct compat_ifreq)) + 1) *
2686 sizeof(struct ifreq);
Arnd Bergmann7a229382009-11-06 23:00:29 -08002687 uifc = compat_alloc_user_space(sizeof(struct ifconf) + len);
2688 ifc.ifc_len = len;
2689 ifr = ifc.ifc_req = (void __user *)(uifc + 1);
2690 ifr32 = compat_ptr(ifc32.ifcbuf);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002691 for (i = 0; i < ifc32.ifc_len; i += sizeof(struct compat_ifreq)) {
Arnd Bergmann6b960182009-11-06 23:10:54 -08002692 if (copy_in_user(ifr, ifr32, sizeof(struct compat_ifreq)))
Arnd Bergmann7a229382009-11-06 23:00:29 -08002693 return -EFAULT;
2694 ifr++;
2695 ifr32++;
2696 }
2697 }
2698 if (copy_to_user(uifc, &ifc, sizeof(struct ifconf)))
2699 return -EFAULT;
2700
Arnd Bergmann6b960182009-11-06 23:10:54 -08002701 err = dev_ioctl(net, SIOCGIFCONF, uifc);
Arnd Bergmann7a229382009-11-06 23:00:29 -08002702 if (err)
2703 return err;
2704
2705 if (copy_from_user(&ifc, uifc, sizeof(struct ifconf)))
2706 return -EFAULT;
2707
2708 ifr = ifc.ifc_req;
2709 ifr32 = compat_ptr(ifc32.ifcbuf);
2710 for (i = 0, j = 0;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002711 i + sizeof(struct compat_ifreq) <= ifc32.ifc_len && j < ifc.ifc_len;
2712 i += sizeof(struct compat_ifreq), j += sizeof(struct ifreq)) {
2713 if (copy_in_user(ifr32, ifr, sizeof(struct compat_ifreq)))
Arnd Bergmann7a229382009-11-06 23:00:29 -08002714 return -EFAULT;
2715 ifr32++;
2716 ifr++;
2717 }
2718
2719 if (ifc32.ifcbuf == 0) {
2720 /* Translate from 64-bit structure multiple to
2721 * a 32-bit one.
2722 */
2723 i = ifc.ifc_len;
Arnd Bergmann6b960182009-11-06 23:10:54 -08002724 i = ((i / sizeof(struct ifreq)) * sizeof(struct compat_ifreq));
Arnd Bergmann7a229382009-11-06 23:00:29 -08002725 ifc32.ifc_len = i;
2726 } else {
2727 ifc32.ifc_len = i;
2728 }
Arnd Bergmann6b960182009-11-06 23:10:54 -08002729 if (copy_to_user(uifc32, &ifc32, sizeof(struct compat_ifconf)))
Arnd Bergmann7a229382009-11-06 23:00:29 -08002730 return -EFAULT;
2731
2732 return 0;
2733}
2734
Arnd Bergmann6b960182009-11-06 23:10:54 -08002735static int ethtool_ioctl(struct net *net, struct compat_ifreq __user *ifr32)
Arnd Bergmann7a229382009-11-06 23:00:29 -08002736{
Ben Hutchings3a7da392011-03-17 07:34:32 +00002737 struct compat_ethtool_rxnfc __user *compat_rxnfc;
2738 bool convert_in = false, convert_out = false;
2739 size_t buf_size = ALIGN(sizeof(struct ifreq), 8);
2740 struct ethtool_rxnfc __user *rxnfc;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002741 struct ifreq __user *ifr;
Ben Hutchings3a7da392011-03-17 07:34:32 +00002742 u32 rule_cnt = 0, actual_rule_cnt;
2743 u32 ethcmd;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002744 u32 data;
Ben Hutchings3a7da392011-03-17 07:34:32 +00002745 int ret;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002746
2747 if (get_user(data, &ifr32->ifr_ifru.ifru_data))
2748 return -EFAULT;
2749
Ben Hutchings3a7da392011-03-17 07:34:32 +00002750 compat_rxnfc = compat_ptr(data);
2751
2752 if (get_user(ethcmd, &compat_rxnfc->cmd))
Arnd Bergmann7a229382009-11-06 23:00:29 -08002753 return -EFAULT;
2754
Ben Hutchings3a7da392011-03-17 07:34:32 +00002755 /* Most ethtool structures are defined without padding.
2756 * Unfortunately struct ethtool_rxnfc is an exception.
2757 */
2758 switch (ethcmd) {
2759 default:
2760 break;
2761 case ETHTOOL_GRXCLSRLALL:
2762 /* Buffer size is variable */
2763 if (get_user(rule_cnt, &compat_rxnfc->rule_cnt))
2764 return -EFAULT;
2765 if (rule_cnt > KMALLOC_MAX_SIZE / sizeof(u32))
2766 return -ENOMEM;
2767 buf_size += rule_cnt * sizeof(u32);
2768 /* fall through */
2769 case ETHTOOL_GRXRINGS:
2770 case ETHTOOL_GRXCLSRLCNT:
2771 case ETHTOOL_GRXCLSRULE:
Ben Hutchings55664f32012-01-03 12:04:51 +00002772 case ETHTOOL_SRXCLSRLINS:
Ben Hutchings3a7da392011-03-17 07:34:32 +00002773 convert_out = true;
2774 /* fall through */
2775 case ETHTOOL_SRXCLSRLDEL:
Ben Hutchings3a7da392011-03-17 07:34:32 +00002776 buf_size += sizeof(struct ethtool_rxnfc);
2777 convert_in = true;
2778 break;
2779 }
2780
2781 ifr = compat_alloc_user_space(buf_size);
2782 rxnfc = (void *)ifr + ALIGN(sizeof(struct ifreq), 8);
2783
2784 if (copy_in_user(&ifr->ifr_name, &ifr32->ifr_name, IFNAMSIZ))
2785 return -EFAULT;
2786
2787 if (put_user(convert_in ? rxnfc : compat_ptr(data),
2788 &ifr->ifr_ifru.ifru_data))
2789 return -EFAULT;
2790
2791 if (convert_in) {
Alexander Duyck127fe532011-04-08 18:01:59 +00002792 /* We expect there to be holes between fs.m_ext and
Ben Hutchings3a7da392011-03-17 07:34:32 +00002793 * fs.ring_cookie and at the end of fs, but nowhere else.
2794 */
Alexander Duyck127fe532011-04-08 18:01:59 +00002795 BUILD_BUG_ON(offsetof(struct compat_ethtool_rxnfc, fs.m_ext) +
2796 sizeof(compat_rxnfc->fs.m_ext) !=
2797 offsetof(struct ethtool_rxnfc, fs.m_ext) +
2798 sizeof(rxnfc->fs.m_ext));
Ben Hutchings3a7da392011-03-17 07:34:32 +00002799 BUILD_BUG_ON(
2800 offsetof(struct compat_ethtool_rxnfc, fs.location) -
2801 offsetof(struct compat_ethtool_rxnfc, fs.ring_cookie) !=
2802 offsetof(struct ethtool_rxnfc, fs.location) -
2803 offsetof(struct ethtool_rxnfc, fs.ring_cookie));
2804
2805 if (copy_in_user(rxnfc, compat_rxnfc,
Alexander Duyck127fe532011-04-08 18:01:59 +00002806 (void *)(&rxnfc->fs.m_ext + 1) -
Ben Hutchings3a7da392011-03-17 07:34:32 +00002807 (void *)rxnfc) ||
2808 copy_in_user(&rxnfc->fs.ring_cookie,
2809 &compat_rxnfc->fs.ring_cookie,
2810 (void *)(&rxnfc->fs.location + 1) -
2811 (void *)&rxnfc->fs.ring_cookie) ||
2812 copy_in_user(&rxnfc->rule_cnt, &compat_rxnfc->rule_cnt,
2813 sizeof(rxnfc->rule_cnt)))
2814 return -EFAULT;
2815 }
2816
2817 ret = dev_ioctl(net, SIOCETHTOOL, ifr);
2818 if (ret)
2819 return ret;
2820
2821 if (convert_out) {
2822 if (copy_in_user(compat_rxnfc, rxnfc,
Alexander Duyck127fe532011-04-08 18:01:59 +00002823 (const void *)(&rxnfc->fs.m_ext + 1) -
Ben Hutchings3a7da392011-03-17 07:34:32 +00002824 (const void *)rxnfc) ||
2825 copy_in_user(&compat_rxnfc->fs.ring_cookie,
2826 &rxnfc->fs.ring_cookie,
2827 (const void *)(&rxnfc->fs.location + 1) -
2828 (const void *)&rxnfc->fs.ring_cookie) ||
2829 copy_in_user(&compat_rxnfc->rule_cnt, &rxnfc->rule_cnt,
2830 sizeof(rxnfc->rule_cnt)))
2831 return -EFAULT;
2832
2833 if (ethcmd == ETHTOOL_GRXCLSRLALL) {
2834 /* As an optimisation, we only copy the actual
2835 * number of rules that the underlying
2836 * function returned. Since Mallory might
2837 * change the rule count in user memory, we
2838 * check that it is less than the rule count
2839 * originally given (as the user buffer size),
2840 * which has been range-checked.
2841 */
2842 if (get_user(actual_rule_cnt, &rxnfc->rule_cnt))
2843 return -EFAULT;
2844 if (actual_rule_cnt < rule_cnt)
2845 rule_cnt = actual_rule_cnt;
2846 if (copy_in_user(&compat_rxnfc->rule_locs[0],
2847 &rxnfc->rule_locs[0],
2848 rule_cnt * sizeof(u32)))
2849 return -EFAULT;
2850 }
2851 }
2852
2853 return 0;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002854}
2855
Arnd Bergmann7a50a242009-11-08 20:57:03 -08002856static int compat_siocwandev(struct net *net, struct compat_ifreq __user *uifr32)
2857{
2858 void __user *uptr;
2859 compat_uptr_t uptr32;
2860 struct ifreq __user *uifr;
2861
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002862 uifr = compat_alloc_user_space(sizeof(*uifr));
Arnd Bergmann7a50a242009-11-08 20:57:03 -08002863 if (copy_in_user(uifr, uifr32, sizeof(struct compat_ifreq)))
2864 return -EFAULT;
2865
2866 if (get_user(uptr32, &uifr32->ifr_settings.ifs_ifsu))
2867 return -EFAULT;
2868
2869 uptr = compat_ptr(uptr32);
2870
2871 if (put_user(uptr, &uifr->ifr_settings.ifs_ifsu.raw_hdlc))
2872 return -EFAULT;
2873
2874 return dev_ioctl(net, SIOCWANDEV, uifr);
2875}
2876
Arnd Bergmann6b960182009-11-06 23:10:54 -08002877static int bond_ioctl(struct net *net, unsigned int cmd,
2878 struct compat_ifreq __user *ifr32)
Arnd Bergmann7a229382009-11-06 23:00:29 -08002879{
2880 struct ifreq kifr;
2881 struct ifreq __user *uifr;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002882 mm_segment_t old_fs;
2883 int err;
2884 u32 data;
2885 void __user *datap;
2886
2887 switch (cmd) {
2888 case SIOCBONDENSLAVE:
2889 case SIOCBONDRELEASE:
2890 case SIOCBONDSETHWADDR:
2891 case SIOCBONDCHANGEACTIVE:
Arnd Bergmann6b960182009-11-06 23:10:54 -08002892 if (copy_from_user(&kifr, ifr32, sizeof(struct compat_ifreq)))
Arnd Bergmann7a229382009-11-06 23:00:29 -08002893 return -EFAULT;
2894
2895 old_fs = get_fs();
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002896 set_fs(KERNEL_DS);
stephen hemmingerc3f52ae2011-02-23 09:06:48 +00002897 err = dev_ioctl(net, cmd,
2898 (struct ifreq __user __force *) &kifr);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002899 set_fs(old_fs);
Arnd Bergmann7a229382009-11-06 23:00:29 -08002900
2901 return err;
2902 case SIOCBONDSLAVEINFOQUERY:
2903 case SIOCBONDINFOQUERY:
2904 uifr = compat_alloc_user_space(sizeof(*uifr));
2905 if (copy_in_user(&uifr->ifr_name, &ifr32->ifr_name, IFNAMSIZ))
2906 return -EFAULT;
2907
2908 if (get_user(data, &ifr32->ifr_ifru.ifru_data))
2909 return -EFAULT;
2910
2911 datap = compat_ptr(data);
2912 if (put_user(datap, &uifr->ifr_ifru.ifru_data))
2913 return -EFAULT;
2914
Arnd Bergmann6b960182009-11-06 23:10:54 -08002915 return dev_ioctl(net, cmd, uifr);
Arnd Bergmann7a229382009-11-06 23:00:29 -08002916 default:
Linus Torvalds07d106d2012-01-05 15:40:12 -08002917 return -ENOIOCTLCMD;
Joe Perchesccbd6a52010-05-14 10:58:26 +00002918 }
Arnd Bergmann7a229382009-11-06 23:00:29 -08002919}
2920
Arnd Bergmann6b960182009-11-06 23:10:54 -08002921static int siocdevprivate_ioctl(struct net *net, unsigned int cmd,
2922 struct compat_ifreq __user *u_ifreq32)
Arnd Bergmann7a229382009-11-06 23:00:29 -08002923{
2924 struct ifreq __user *u_ifreq64;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002925 char tmp_buf[IFNAMSIZ];
2926 void __user *data64;
2927 u32 data32;
2928
2929 if (copy_from_user(&tmp_buf[0], &(u_ifreq32->ifr_ifrn.ifrn_name[0]),
2930 IFNAMSIZ))
2931 return -EFAULT;
2932 if (__get_user(data32, &u_ifreq32->ifr_ifru.ifru_data))
2933 return -EFAULT;
2934 data64 = compat_ptr(data32);
2935
2936 u_ifreq64 = compat_alloc_user_space(sizeof(*u_ifreq64));
2937
2938 /* Don't check these user accesses, just let that get trapped
2939 * in the ioctl handler instead.
2940 */
2941 if (copy_to_user(&u_ifreq64->ifr_ifrn.ifrn_name[0], &tmp_buf[0],
2942 IFNAMSIZ))
2943 return -EFAULT;
2944 if (__put_user(data64, &u_ifreq64->ifr_ifru.ifru_data))
2945 return -EFAULT;
2946
Arnd Bergmann6b960182009-11-06 23:10:54 -08002947 return dev_ioctl(net, cmd, u_ifreq64);
Arnd Bergmann7a229382009-11-06 23:00:29 -08002948}
2949
Arnd Bergmann6b960182009-11-06 23:10:54 -08002950static int dev_ifsioc(struct net *net, struct socket *sock,
2951 unsigned int cmd, struct compat_ifreq __user *uifr32)
Arnd Bergmann7a229382009-11-06 23:00:29 -08002952{
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002953 struct ifreq __user *uifr;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002954 int err;
2955
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002956 uifr = compat_alloc_user_space(sizeof(*uifr));
2957 if (copy_in_user(uifr, uifr32, sizeof(*uifr32)))
2958 return -EFAULT;
2959
2960 err = sock_do_ioctl(net, sock, cmd, (unsigned long)uifr);
2961
Arnd Bergmann7a229382009-11-06 23:00:29 -08002962 if (!err) {
2963 switch (cmd) {
2964 case SIOCGIFFLAGS:
2965 case SIOCGIFMETRIC:
2966 case SIOCGIFMTU:
2967 case SIOCGIFMEM:
2968 case SIOCGIFHWADDR:
2969 case SIOCGIFINDEX:
2970 case SIOCGIFADDR:
2971 case SIOCGIFBRDADDR:
2972 case SIOCGIFDSTADDR:
2973 case SIOCGIFNETMASK:
Arnd Bergmannfab25322009-11-08 20:56:21 -08002974 case SIOCGIFPFLAGS:
Arnd Bergmann7a229382009-11-06 23:00:29 -08002975 case SIOCGIFTXQLEN:
Arnd Bergmannfab25322009-11-08 20:56:21 -08002976 case SIOCGMIIPHY:
2977 case SIOCGMIIREG:
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002978 if (copy_in_user(uifr32, uifr, sizeof(*uifr32)))
Arnd Bergmann7a229382009-11-06 23:00:29 -08002979 err = -EFAULT;
2980 break;
2981 }
2982 }
2983 return err;
2984}
2985
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002986static int compat_sioc_ifmap(struct net *net, unsigned int cmd,
2987 struct compat_ifreq __user *uifr32)
2988{
2989 struct ifreq ifr;
2990 struct compat_ifmap __user *uifmap32;
2991 mm_segment_t old_fs;
2992 int err;
2993
2994 uifmap32 = &uifr32->ifr_ifru.ifru_map;
2995 err = copy_from_user(&ifr, uifr32, sizeof(ifr.ifr_name));
2996 err |= __get_user(ifr.ifr_map.mem_start, &uifmap32->mem_start);
2997 err |= __get_user(ifr.ifr_map.mem_end, &uifmap32->mem_end);
2998 err |= __get_user(ifr.ifr_map.base_addr, &uifmap32->base_addr);
2999 err |= __get_user(ifr.ifr_map.irq, &uifmap32->irq);
3000 err |= __get_user(ifr.ifr_map.dma, &uifmap32->dma);
3001 err |= __get_user(ifr.ifr_map.port, &uifmap32->port);
3002 if (err)
3003 return -EFAULT;
3004
3005 old_fs = get_fs();
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003006 set_fs(KERNEL_DS);
stephen hemmingerc3f52ae2011-02-23 09:06:48 +00003007 err = dev_ioctl(net, cmd, (void __user __force *)&ifr);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003008 set_fs(old_fs);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003009
3010 if (cmd == SIOCGIFMAP && !err) {
3011 err = copy_to_user(uifr32, &ifr, sizeof(ifr.ifr_name));
3012 err |= __put_user(ifr.ifr_map.mem_start, &uifmap32->mem_start);
3013 err |= __put_user(ifr.ifr_map.mem_end, &uifmap32->mem_end);
3014 err |= __put_user(ifr.ifr_map.base_addr, &uifmap32->base_addr);
3015 err |= __put_user(ifr.ifr_map.irq, &uifmap32->irq);
3016 err |= __put_user(ifr.ifr_map.dma, &uifmap32->dma);
3017 err |= __put_user(ifr.ifr_map.port, &uifmap32->port);
3018 if (err)
3019 err = -EFAULT;
3020 }
3021 return err;
3022}
3023
3024static int compat_siocshwtstamp(struct net *net, struct compat_ifreq __user *uifr32)
3025{
3026 void __user *uptr;
3027 compat_uptr_t uptr32;
3028 struct ifreq __user *uifr;
3029
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003030 uifr = compat_alloc_user_space(sizeof(*uifr));
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003031 if (copy_in_user(uifr, uifr32, sizeof(struct compat_ifreq)))
3032 return -EFAULT;
3033
3034 if (get_user(uptr32, &uifr32->ifr_data))
3035 return -EFAULT;
3036
3037 uptr = compat_ptr(uptr32);
3038
3039 if (put_user(uptr, &uifr->ifr_data))
3040 return -EFAULT;
3041
3042 return dev_ioctl(net, SIOCSHWTSTAMP, uifr);
3043}
3044
Arnd Bergmann7a229382009-11-06 23:00:29 -08003045struct rtentry32 {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003046 u32 rt_pad1;
Arnd Bergmann7a229382009-11-06 23:00:29 -08003047 struct sockaddr rt_dst; /* target address */
3048 struct sockaddr rt_gateway; /* gateway addr (RTF_GATEWAY) */
3049 struct sockaddr rt_genmask; /* target network mask (IP) */
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003050 unsigned short rt_flags;
3051 short rt_pad2;
3052 u32 rt_pad3;
3053 unsigned char rt_tos;
3054 unsigned char rt_class;
3055 short rt_pad4;
3056 short rt_metric; /* +1 for binary compatibility! */
Arnd Bergmann7a229382009-11-06 23:00:29 -08003057 /* char * */ u32 rt_dev; /* forcing the device at add */
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003058 u32 rt_mtu; /* per route MTU/Window */
3059 u32 rt_window; /* Window clamping */
Arnd Bergmann7a229382009-11-06 23:00:29 -08003060 unsigned short rt_irtt; /* Initial RTT */
3061};
3062
3063struct in6_rtmsg32 {
3064 struct in6_addr rtmsg_dst;
3065 struct in6_addr rtmsg_src;
3066 struct in6_addr rtmsg_gateway;
3067 u32 rtmsg_type;
3068 u16 rtmsg_dst_len;
3069 u16 rtmsg_src_len;
3070 u32 rtmsg_metric;
3071 u32 rtmsg_info;
3072 u32 rtmsg_flags;
3073 s32 rtmsg_ifindex;
3074};
3075
Arnd Bergmann6b960182009-11-06 23:10:54 -08003076static int routing_ioctl(struct net *net, struct socket *sock,
3077 unsigned int cmd, void __user *argp)
Arnd Bergmann7a229382009-11-06 23:00:29 -08003078{
3079 int ret;
3080 void *r = NULL;
3081 struct in6_rtmsg r6;
3082 struct rtentry r4;
3083 char devname[16];
3084 u32 rtdev;
3085 mm_segment_t old_fs = get_fs();
3086
Arnd Bergmann6b960182009-11-06 23:10:54 -08003087 if (sock && sock->sk && sock->sk->sk_family == AF_INET6) { /* ipv6 */
3088 struct in6_rtmsg32 __user *ur6 = argp;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003089 ret = copy_from_user(&r6.rtmsg_dst, &(ur6->rtmsg_dst),
Arnd Bergmann7a229382009-11-06 23:00:29 -08003090 3 * sizeof(struct in6_addr));
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003091 ret |= __get_user(r6.rtmsg_type, &(ur6->rtmsg_type));
3092 ret |= __get_user(r6.rtmsg_dst_len, &(ur6->rtmsg_dst_len));
3093 ret |= __get_user(r6.rtmsg_src_len, &(ur6->rtmsg_src_len));
3094 ret |= __get_user(r6.rtmsg_metric, &(ur6->rtmsg_metric));
3095 ret |= __get_user(r6.rtmsg_info, &(ur6->rtmsg_info));
3096 ret |= __get_user(r6.rtmsg_flags, &(ur6->rtmsg_flags));
3097 ret |= __get_user(r6.rtmsg_ifindex, &(ur6->rtmsg_ifindex));
Arnd Bergmann7a229382009-11-06 23:00:29 -08003098
3099 r = (void *) &r6;
3100 } else { /* ipv4 */
Arnd Bergmann6b960182009-11-06 23:10:54 -08003101 struct rtentry32 __user *ur4 = argp;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003102 ret = copy_from_user(&r4.rt_dst, &(ur4->rt_dst),
Arnd Bergmann7a229382009-11-06 23:00:29 -08003103 3 * sizeof(struct sockaddr));
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003104 ret |= __get_user(r4.rt_flags, &(ur4->rt_flags));
3105 ret |= __get_user(r4.rt_metric, &(ur4->rt_metric));
3106 ret |= __get_user(r4.rt_mtu, &(ur4->rt_mtu));
3107 ret |= __get_user(r4.rt_window, &(ur4->rt_window));
3108 ret |= __get_user(r4.rt_irtt, &(ur4->rt_irtt));
3109 ret |= __get_user(rtdev, &(ur4->rt_dev));
Arnd Bergmann7a229382009-11-06 23:00:29 -08003110 if (rtdev) {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003111 ret |= copy_from_user(devname, compat_ptr(rtdev), 15);
stephen hemmingerc3f52ae2011-02-23 09:06:48 +00003112 r4.rt_dev = (char __user __force *)devname;
3113 devname[15] = 0;
Arnd Bergmann7a229382009-11-06 23:00:29 -08003114 } else
3115 r4.rt_dev = NULL;
3116
3117 r = (void *) &r4;
3118 }
3119
3120 if (ret) {
3121 ret = -EFAULT;
3122 goto out;
3123 }
3124
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003125 set_fs(KERNEL_DS);
Arnd Bergmann6b960182009-11-06 23:10:54 -08003126 ret = sock_do_ioctl(net, sock, cmd, (unsigned long) r);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003127 set_fs(old_fs);
Arnd Bergmann7a229382009-11-06 23:00:29 -08003128
3129out:
Arnd Bergmann7a229382009-11-06 23:00:29 -08003130 return ret;
3131}
3132
3133/* Since old style bridge ioctl's endup using SIOCDEVPRIVATE
3134 * for some operations; this forces use of the newer bridge-utils that
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003135 * use compatible ioctls
Arnd Bergmann7a229382009-11-06 23:00:29 -08003136 */
Arnd Bergmann6b960182009-11-06 23:10:54 -08003137static int old_bridge_ioctl(compat_ulong_t __user *argp)
Arnd Bergmann7a229382009-11-06 23:00:29 -08003138{
Arnd Bergmann6b960182009-11-06 23:10:54 -08003139 compat_ulong_t tmp;
Arnd Bergmann7a229382009-11-06 23:00:29 -08003140
Arnd Bergmann6b960182009-11-06 23:10:54 -08003141 if (get_user(tmp, argp))
Arnd Bergmann7a229382009-11-06 23:00:29 -08003142 return -EFAULT;
3143 if (tmp == BRCTL_GET_VERSION)
3144 return BRCTL_VERSION + 1;
3145 return -EINVAL;
3146}
3147
Arnd Bergmann6b960182009-11-06 23:10:54 -08003148static int compat_sock_ioctl_trans(struct file *file, struct socket *sock,
3149 unsigned int cmd, unsigned long arg)
3150{
3151 void __user *argp = compat_ptr(arg);
3152 struct sock *sk = sock->sk;
3153 struct net *net = sock_net(sk);
Arnd Bergmann7a229382009-11-06 23:00:29 -08003154
Arnd Bergmann6b960182009-11-06 23:10:54 -08003155 if (cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15))
3156 return siocdevprivate_ioctl(net, cmd, argp);
Arnd Bergmann7a229382009-11-06 23:00:29 -08003157
Arnd Bergmann6b960182009-11-06 23:10:54 -08003158 switch (cmd) {
3159 case SIOCSIFBR:
3160 case SIOCGIFBR:
3161 return old_bridge_ioctl(argp);
3162 case SIOCGIFNAME:
3163 return dev_ifname32(net, argp);
3164 case SIOCGIFCONF:
3165 return dev_ifconf(net, argp);
3166 case SIOCETHTOOL:
3167 return ethtool_ioctl(net, argp);
Arnd Bergmann7a50a242009-11-08 20:57:03 -08003168 case SIOCWANDEV:
3169 return compat_siocwandev(net, argp);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003170 case SIOCGIFMAP:
3171 case SIOCSIFMAP:
3172 return compat_sioc_ifmap(net, cmd, argp);
Arnd Bergmann6b960182009-11-06 23:10:54 -08003173 case SIOCBONDENSLAVE:
3174 case SIOCBONDRELEASE:
3175 case SIOCBONDSETHWADDR:
3176 case SIOCBONDSLAVEINFOQUERY:
3177 case SIOCBONDINFOQUERY:
3178 case SIOCBONDCHANGEACTIVE:
3179 return bond_ioctl(net, cmd, argp);
3180 case SIOCADDRT:
3181 case SIOCDELRT:
3182 return routing_ioctl(net, sock, cmd, argp);
3183 case SIOCGSTAMP:
3184 return do_siocgstamp(net, sock, cmd, argp);
3185 case SIOCGSTAMPNS:
3186 return do_siocgstampns(net, sock, cmd, argp);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003187 case SIOCSHWTSTAMP:
3188 return compat_siocshwtstamp(net, argp);
Arnd Bergmann7a229382009-11-06 23:00:29 -08003189
Arnd Bergmann6b960182009-11-06 23:10:54 -08003190 case FIOSETOWN:
3191 case SIOCSPGRP:
3192 case FIOGETOWN:
3193 case SIOCGPGRP:
3194 case SIOCBRADDBR:
3195 case SIOCBRDELBR:
3196 case SIOCGIFVLAN:
3197 case SIOCSIFVLAN:
3198 case SIOCADDDLCI:
3199 case SIOCDELDLCI:
3200 return sock_ioctl(file, cmd, arg);
3201
3202 case SIOCGIFFLAGS:
3203 case SIOCSIFFLAGS:
3204 case SIOCGIFMETRIC:
3205 case SIOCSIFMETRIC:
3206 case SIOCGIFMTU:
3207 case SIOCSIFMTU:
3208 case SIOCGIFMEM:
3209 case SIOCSIFMEM:
3210 case SIOCGIFHWADDR:
3211 case SIOCSIFHWADDR:
3212 case SIOCADDMULTI:
3213 case SIOCDELMULTI:
3214 case SIOCGIFINDEX:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003215 case SIOCGIFADDR:
3216 case SIOCSIFADDR:
3217 case SIOCSIFHWBROADCAST:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003218 case SIOCDIFADDR:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003219 case SIOCGIFBRDADDR:
3220 case SIOCSIFBRDADDR:
3221 case SIOCGIFDSTADDR:
3222 case SIOCSIFDSTADDR:
3223 case SIOCGIFNETMASK:
3224 case SIOCSIFNETMASK:
3225 case SIOCSIFPFLAGS:
3226 case SIOCGIFPFLAGS:
3227 case SIOCGIFTXQLEN:
3228 case SIOCSIFTXQLEN:
3229 case SIOCBRADDIF:
3230 case SIOCBRDELIF:
Arnd Bergmann9177efd2009-11-06 08:09:09 +00003231 case SIOCSIFNAME:
3232 case SIOCGMIIPHY:
3233 case SIOCGMIIREG:
3234 case SIOCSMIIREG:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003235 return dev_ifsioc(net, sock, cmd, argp);
Arnd Bergmann9177efd2009-11-06 08:09:09 +00003236
Arnd Bergmann6b960182009-11-06 23:10:54 -08003237 case SIOCSARP:
3238 case SIOCGARP:
3239 case SIOCDARP:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003240 case SIOCATMARK:
Arnd Bergmann9177efd2009-11-06 08:09:09 +00003241 return sock_do_ioctl(net, sock, cmd, arg);
3242 }
3243
Arnd Bergmann6b960182009-11-06 23:10:54 -08003244 return -ENOIOCTLCMD;
3245}
Arnd Bergmann7a229382009-11-06 23:00:29 -08003246
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003247static long compat_sock_ioctl(struct file *file, unsigned cmd,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07003248 unsigned long arg)
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003249{
3250 struct socket *sock = file->private_data;
3251 int ret = -ENOIOCTLCMD;
David S. Miller87de87d2008-06-03 09:14:03 -07003252 struct sock *sk;
3253 struct net *net;
3254
3255 sk = sock->sk;
3256 net = sock_net(sk);
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003257
3258 if (sock->ops->compat_ioctl)
3259 ret = sock->ops->compat_ioctl(sock, cmd, arg);
3260
David S. Miller87de87d2008-06-03 09:14:03 -07003261 if (ret == -ENOIOCTLCMD &&
3262 (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST))
3263 ret = compat_wext_handle_ioctl(net, cmd, arg);
3264
Arnd Bergmann6b960182009-11-06 23:10:54 -08003265 if (ret == -ENOIOCTLCMD)
3266 ret = compat_sock_ioctl_trans(file, sock, cmd, arg);
3267
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003268 return ret;
3269}
3270#endif
3271
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003272int kernel_bind(struct socket *sock, struct sockaddr *addr, int addrlen)
3273{
3274 return sock->ops->bind(sock, addr, addrlen);
3275}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003276EXPORT_SYMBOL(kernel_bind);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003277
3278int kernel_listen(struct socket *sock, int backlog)
3279{
3280 return sock->ops->listen(sock, backlog);
3281}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003282EXPORT_SYMBOL(kernel_listen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003283
3284int kernel_accept(struct socket *sock, struct socket **newsock, int flags)
3285{
3286 struct sock *sk = sock->sk;
3287 int err;
3288
3289 err = sock_create_lite(sk->sk_family, sk->sk_type, sk->sk_protocol,
3290 newsock);
3291 if (err < 0)
3292 goto done;
3293
3294 err = sock->ops->accept(sock, *newsock, flags);
3295 if (err < 0) {
3296 sock_release(*newsock);
Tony Battersbyfa8705b2007-10-10 21:09:04 -07003297 *newsock = NULL;
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003298 goto done;
3299 }
3300
3301 (*newsock)->ops = sock->ops;
Wei Yongjun1b085342008-12-18 19:35:10 -08003302 __module_get((*newsock)->ops->owner);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003303
3304done:
3305 return err;
3306}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003307EXPORT_SYMBOL(kernel_accept);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003308
3309int kernel_connect(struct socket *sock, struct sockaddr *addr, int addrlen,
YOSHIFUJI Hideaki4768fbc2007-02-09 23:25:31 +09003310 int flags)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003311{
3312 return sock->ops->connect(sock, addr, addrlen, flags);
3313}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003314EXPORT_SYMBOL(kernel_connect);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003315
3316int kernel_getsockname(struct socket *sock, struct sockaddr *addr,
3317 int *addrlen)
3318{
3319 return sock->ops->getname(sock, addr, addrlen, 0);
3320}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003321EXPORT_SYMBOL(kernel_getsockname);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003322
3323int kernel_getpeername(struct socket *sock, struct sockaddr *addr,
3324 int *addrlen)
3325{
3326 return sock->ops->getname(sock, addr, addrlen, 1);
3327}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003328EXPORT_SYMBOL(kernel_getpeername);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003329
3330int kernel_getsockopt(struct socket *sock, int level, int optname,
3331 char *optval, int *optlen)
3332{
3333 mm_segment_t oldfs = get_fs();
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003334 char __user *uoptval;
3335 int __user *uoptlen;
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003336 int err;
3337
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003338 uoptval = (char __user __force *) optval;
3339 uoptlen = (int __user __force *) optlen;
3340
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003341 set_fs(KERNEL_DS);
3342 if (level == SOL_SOCKET)
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003343 err = sock_getsockopt(sock, level, optname, uoptval, uoptlen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003344 else
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003345 err = sock->ops->getsockopt(sock, level, optname, uoptval,
3346 uoptlen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003347 set_fs(oldfs);
3348 return err;
3349}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003350EXPORT_SYMBOL(kernel_getsockopt);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003351
3352int kernel_setsockopt(struct socket *sock, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07003353 char *optval, unsigned int optlen)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003354{
3355 mm_segment_t oldfs = get_fs();
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003356 char __user *uoptval;
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003357 int err;
3358
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003359 uoptval = (char __user __force *) optval;
3360
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003361 set_fs(KERNEL_DS);
3362 if (level == SOL_SOCKET)
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003363 err = sock_setsockopt(sock, level, optname, uoptval, optlen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003364 else
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003365 err = sock->ops->setsockopt(sock, level, optname, uoptval,
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003366 optlen);
3367 set_fs(oldfs);
3368 return err;
3369}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003370EXPORT_SYMBOL(kernel_setsockopt);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003371
3372int kernel_sendpage(struct socket *sock, struct page *page, int offset,
3373 size_t size, int flags)
3374{
Herbert Xuf8451722010-05-24 00:12:34 -07003375 sock_update_classid(sock->sk);
3376
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003377 if (sock->ops->sendpage)
3378 return sock->ops->sendpage(sock, page, offset, size, flags);
3379
3380 return sock_no_sendpage(sock, page, offset, size, flags);
3381}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003382EXPORT_SYMBOL(kernel_sendpage);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003383
3384int kernel_sock_ioctl(struct socket *sock, int cmd, unsigned long arg)
3385{
3386 mm_segment_t oldfs = get_fs();
3387 int err;
3388
3389 set_fs(KERNEL_DS);
3390 err = sock->ops->ioctl(sock, cmd, arg);
3391 set_fs(oldfs);
3392
3393 return err;
3394}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003395EXPORT_SYMBOL(kernel_sock_ioctl);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003396
Trond Myklebust91cf45f2007-11-12 18:10:39 -08003397int kernel_sock_shutdown(struct socket *sock, enum sock_shutdown_cmd how)
3398{
3399 return sock->ops->shutdown(sock, how);
3400}
Trond Myklebust91cf45f2007-11-12 18:10:39 -08003401EXPORT_SYMBOL(kernel_sock_shutdown);
Harout Hedeshianff12c742014-03-04 07:31:47 -07003402
3403int sockev_register_notify(struct notifier_block *nb)
3404{
3405 return blocking_notifier_chain_register(&sockev_notifier_list, nb);
3406}
3407EXPORT_SYMBOL(sockev_register_notify);
3408
3409int sockev_unregister_notify(struct notifier_block *nb)
3410{
3411 return blocking_notifier_chain_unregister(&sockev_notifier_list, nb);
3412}
3413EXPORT_SYMBOL(sockev_unregister_notify);