blob: e628826c3667070a832536ea3a8f183f9d05f7dc [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
Mikulas Patocka7dfde9a2012-07-19 06:13:36 +0000535 if (test_bit(SOCK_EXTERNALLY_ALLOCATED, &sock->flags))
536 return;
537
Eric Dumazet4e694892009-04-04 16:41:09 -0700538 percpu_sub(sockets_in_use, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 if (!sock->file) {
540 iput(SOCK_INODE(sock));
541 return;
542 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700543 sock->file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700545EXPORT_SYMBOL(sock_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
Oliver Hartkopp2244d072010-08-17 08:59:14 +0000547int sock_tx_timestamp(struct sock *sk, __u8 *tx_flags)
Patrick Ohly20d49472009-02-12 05:03:38 +0000548{
Oliver Hartkopp2244d072010-08-17 08:59:14 +0000549 *tx_flags = 0;
Patrick Ohly20d49472009-02-12 05:03:38 +0000550 if (sock_flag(sk, SOCK_TIMESTAMPING_TX_HARDWARE))
Oliver Hartkopp2244d072010-08-17 08:59:14 +0000551 *tx_flags |= SKBTX_HW_TSTAMP;
Patrick Ohly20d49472009-02-12 05:03:38 +0000552 if (sock_flag(sk, SOCK_TIMESTAMPING_TX_SOFTWARE))
Oliver Hartkopp2244d072010-08-17 08:59:14 +0000553 *tx_flags |= SKBTX_SW_TSTAMP;
Johannes Berg6e3e9392011-11-09 10:15:42 +0100554 if (sock_flag(sk, SOCK_WIFI_STATUS))
555 *tx_flags |= SKBTX_WIFI_STATUS;
Patrick Ohly20d49472009-02-12 05:03:38 +0000556 return 0;
557}
558EXPORT_SYMBOL(sock_tx_timestamp);
559
Anton Blanchard228e5482011-05-02 20:21:35 +0000560static inline int __sock_sendmsg_nosec(struct kiocb *iocb, struct socket *sock,
561 struct msghdr *msg, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562{
563 struct sock_iocb *si = kiocb_to_siocb(iocb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
Herbert Xuf8451722010-05-24 00:12:34 -0700565 sock_update_classid(sock->sk);
566
Neil Horman5bc14212011-11-22 05:10:51 +0000567 sock_update_netprioidx(sock->sk);
568
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 si->sock = sock;
570 si->scm = NULL;
571 si->msg = msg;
572 si->size = size;
573
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 return sock->ops->sendmsg(iocb, sock, msg, size);
575}
576
Anton Blanchard228e5482011-05-02 20:21:35 +0000577static inline int __sock_sendmsg(struct kiocb *iocb, struct socket *sock,
578 struct msghdr *msg, size_t size)
579{
580 int err = security_socket_sendmsg(sock, msg, size);
581
582 return err ?: __sock_sendmsg_nosec(iocb, sock, msg, size);
583}
584
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585int sock_sendmsg(struct socket *sock, struct msghdr *msg, size_t size)
586{
587 struct kiocb iocb;
588 struct sock_iocb siocb;
589 int ret;
590
591 init_sync_kiocb(&iocb, NULL);
592 iocb.private = &siocb;
593 ret = __sock_sendmsg(&iocb, sock, msg, size);
594 if (-EIOCBQUEUED == ret)
595 ret = wait_on_sync_kiocb(&iocb);
596 return ret;
597}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700598EXPORT_SYMBOL(sock_sendmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Eric Dumazet894dc242011-07-26 02:39:41 +0000600static int sock_sendmsg_nosec(struct socket *sock, struct msghdr *msg, size_t size)
Anton Blanchard228e5482011-05-02 20:21:35 +0000601{
602 struct kiocb iocb;
603 struct sock_iocb siocb;
604 int ret;
605
606 init_sync_kiocb(&iocb, NULL);
607 iocb.private = &siocb;
608 ret = __sock_sendmsg_nosec(&iocb, sock, msg, size);
609 if (-EIOCBQUEUED == ret)
610 ret = wait_on_sync_kiocb(&iocb);
611 return ret;
612}
613
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614int kernel_sendmsg(struct socket *sock, struct msghdr *msg,
615 struct kvec *vec, size_t num, size_t size)
616{
617 mm_segment_t oldfs = get_fs();
618 int result;
619
620 set_fs(KERNEL_DS);
621 /*
622 * the following is safe, since for compiler definitions of kvec and
623 * iovec are identical, yielding the same in-core layout and alignment
624 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700625 msg->msg_iov = (struct iovec *)vec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 msg->msg_iovlen = num;
627 result = sock_sendmsg(sock, msg, size);
628 set_fs(oldfs);
629 return result;
630}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700631EXPORT_SYMBOL(kernel_sendmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Patrick Ohly20d49472009-02-12 05:03:38 +0000633static int ktime2ts(ktime_t kt, struct timespec *ts)
634{
635 if (kt.tv64) {
636 *ts = ktime_to_timespec(kt);
637 return 1;
638 } else {
639 return 0;
640 }
641}
642
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700643/*
644 * called from sock_recv_timestamp() if sock_flag(sk, SOCK_RCVTSTAMP)
645 */
646void __sock_recv_timestamp(struct msghdr *msg, struct sock *sk,
647 struct sk_buff *skb)
648{
Patrick Ohly20d49472009-02-12 05:03:38 +0000649 int need_software_tstamp = sock_flag(sk, SOCK_RCVTSTAMP);
650 struct timespec ts[3];
651 int empty = 1;
652 struct skb_shared_hwtstamps *shhwtstamps =
653 skb_hwtstamps(skb);
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700654
Patrick Ohly20d49472009-02-12 05:03:38 +0000655 /* Race occurred between timestamp enabling and packet
656 receiving. Fill in the current time for now. */
657 if (need_software_tstamp && skb->tstamp.tv64 == 0)
658 __net_timestamp(skb);
659
660 if (need_software_tstamp) {
661 if (!sock_flag(sk, SOCK_RCVTSTAMPNS)) {
662 struct timeval tv;
663 skb_get_timestamp(skb, &tv);
664 put_cmsg(msg, SOL_SOCKET, SCM_TIMESTAMP,
665 sizeof(tv), &tv);
666 } else {
Hagen Paul Pfeifer842509b2010-04-06 05:39:52 +0000667 skb_get_timestampns(skb, &ts[0]);
Patrick Ohly20d49472009-02-12 05:03:38 +0000668 put_cmsg(msg, SOL_SOCKET, SCM_TIMESTAMPNS,
Hagen Paul Pfeifer842509b2010-04-06 05:39:52 +0000669 sizeof(ts[0]), &ts[0]);
Patrick Ohly20d49472009-02-12 05:03:38 +0000670 }
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700671 }
Patrick Ohly20d49472009-02-12 05:03:38 +0000672
673
674 memset(ts, 0, sizeof(ts));
675 if (skb->tstamp.tv64 &&
676 sock_flag(sk, SOCK_TIMESTAMPING_SOFTWARE)) {
677 skb_get_timestampns(skb, ts + 0);
678 empty = 0;
679 }
680 if (shhwtstamps) {
681 if (sock_flag(sk, SOCK_TIMESTAMPING_SYS_HARDWARE) &&
682 ktime2ts(shhwtstamps->syststamp, ts + 1))
683 empty = 0;
684 if (sock_flag(sk, SOCK_TIMESTAMPING_RAW_HARDWARE) &&
685 ktime2ts(shhwtstamps->hwtstamp, ts + 2))
686 empty = 0;
687 }
688 if (!empty)
689 put_cmsg(msg, SOL_SOCKET,
690 SCM_TIMESTAMPING, sizeof(ts), &ts);
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700691}
Arnaldo Carvalho de Melo7c81fd82007-03-10 00:39:35 -0300692EXPORT_SYMBOL_GPL(__sock_recv_timestamp);
693
Johannes Berg6e3e9392011-11-09 10:15:42 +0100694void __sock_recv_wifi_status(struct msghdr *msg, struct sock *sk,
695 struct sk_buff *skb)
696{
697 int ack;
698
699 if (!sock_flag(sk, SOCK_WIFI_STATUS))
700 return;
701 if (!skb->wifi_acked_valid)
702 return;
703
704 ack = skb->wifi_acked;
705
706 put_cmsg(msg, SOL_SOCKET, SCM_WIFI_STATUS, sizeof(ack), &ack);
707}
708EXPORT_SYMBOL_GPL(__sock_recv_wifi_status);
709
stephen hemminger11165f12010-10-18 14:27:29 +0000710static inline void sock_recv_drops(struct msghdr *msg, struct sock *sk,
711 struct sk_buff *skb)
Neil Horman3b885782009-10-12 13:26:31 -0700712{
713 if (sock_flag(sk, SOCK_RXQ_OVFL) && skb && skb->dropcount)
714 put_cmsg(msg, SOL_SOCKET, SO_RXQ_OVFL,
715 sizeof(__u32), &skb->dropcount);
716}
717
Eric Dumazet767dd032010-04-28 19:14:43 +0000718void __sock_recv_ts_and_drops(struct msghdr *msg, struct sock *sk,
Neil Horman3b885782009-10-12 13:26:31 -0700719 struct sk_buff *skb)
720{
721 sock_recv_timestamp(msg, sk, skb);
722 sock_recv_drops(msg, sk, skb);
723}
Eric Dumazet767dd032010-04-28 19:14:43 +0000724EXPORT_SYMBOL_GPL(__sock_recv_ts_and_drops);
Neil Horman3b885782009-10-12 13:26:31 -0700725
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -0700726static inline int __sock_recvmsg_nosec(struct kiocb *iocb, struct socket *sock,
727 struct msghdr *msg, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 struct sock_iocb *si = kiocb_to_siocb(iocb);
730
Herbert Xuf8451722010-05-24 00:12:34 -0700731 sock_update_classid(sock->sk);
732
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 si->sock = sock;
734 si->scm = NULL;
735 si->msg = msg;
736 si->size = size;
737 si->flags = flags;
738
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 return sock->ops->recvmsg(iocb, sock, msg, size, flags);
740}
741
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -0700742static inline int __sock_recvmsg(struct kiocb *iocb, struct socket *sock,
743 struct msghdr *msg, size_t size, int flags)
744{
745 int err = security_socket_recvmsg(sock, msg, size, flags);
746
747 return err ?: __sock_recvmsg_nosec(iocb, sock, msg, size, flags);
748}
749
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700750int sock_recvmsg(struct socket *sock, struct msghdr *msg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 size_t size, int flags)
752{
753 struct kiocb iocb;
754 struct sock_iocb siocb;
755 int ret;
756
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700757 init_sync_kiocb(&iocb, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 iocb.private = &siocb;
759 ret = __sock_recvmsg(&iocb, sock, msg, size, flags);
760 if (-EIOCBQUEUED == ret)
761 ret = wait_on_sync_kiocb(&iocb);
762 return ret;
763}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700764EXPORT_SYMBOL(sock_recvmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -0700766static int sock_recvmsg_nosec(struct socket *sock, struct msghdr *msg,
767 size_t size, int flags)
768{
769 struct kiocb iocb;
770 struct sock_iocb siocb;
771 int ret;
772
773 init_sync_kiocb(&iocb, NULL);
774 iocb.private = &siocb;
775 ret = __sock_recvmsg_nosec(&iocb, sock, msg, size, flags);
776 if (-EIOCBQUEUED == ret)
777 ret = wait_on_sync_kiocb(&iocb);
778 return ret;
779}
780
Martin Lucinac1249c02010-12-10 00:04:05 +0000781/**
782 * kernel_recvmsg - Receive a message from a socket (kernel space)
783 * @sock: The socket to receive the message from
784 * @msg: Received message
785 * @vec: Input s/g array for message data
786 * @num: Size of input s/g array
787 * @size: Number of bytes to read
788 * @flags: Message flags (MSG_DONTWAIT, etc...)
789 *
790 * On return the msg structure contains the scatter/gather array passed in the
791 * vec argument. The array is modified so that it consists of the unfilled
792 * portion of the original array.
793 *
794 * The returned value is the total number of bytes received, or an error.
795 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700796int kernel_recvmsg(struct socket *sock, struct msghdr *msg,
797 struct kvec *vec, size_t num, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798{
799 mm_segment_t oldfs = get_fs();
800 int result;
801
802 set_fs(KERNEL_DS);
803 /*
804 * the following is safe, since for compiler definitions of kvec and
805 * iovec are identical, yielding the same in-core layout and alignment
806 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700807 msg->msg_iov = (struct iovec *)vec, msg->msg_iovlen = num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 result = sock_recvmsg(sock, msg, size, flags);
809 set_fs(oldfs);
810 return result;
811}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700812EXPORT_SYMBOL(kernel_recvmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
814static void sock_aio_dtor(struct kiocb *iocb)
815{
816 kfree(iocb->private);
817}
818
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -0300819static ssize_t sock_sendpage(struct file *file, struct page *page,
820 int offset, size_t size, loff_t *ppos, int more)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821{
822 struct socket *sock;
823 int flags;
824
Eric Dumazetb69aee02005-09-06 14:42:45 -0700825 sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
Eric Dumazet35f9c092012-04-05 03:05:35 +0000827 flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
828 /* more is a combination of MSG_MORE and MSG_SENDPAGE_NOTLAST */
829 flags |= more;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
Linus Torvaldse6949582009-08-13 08:28:36 -0700831 return kernel_sendpage(sock, page, offset, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832}
833
Jens Axboe9c55e012007-11-06 23:30:13 -0800834static ssize_t sock_splice_read(struct file *file, loff_t *ppos,
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700835 struct pipe_inode_info *pipe, size_t len,
Jens Axboe9c55e012007-11-06 23:30:13 -0800836 unsigned int flags)
837{
838 struct socket *sock = file->private_data;
839
Rémi Denis-Courmont997b37d2008-02-15 02:35:45 -0800840 if (unlikely(!sock->ops->splice_read))
841 return -EINVAL;
842
Herbert Xuf8451722010-05-24 00:12:34 -0700843 sock_update_classid(sock->sk);
844
Jens Axboe9c55e012007-11-06 23:30:13 -0800845 return sock->ops->splice_read(sock, ppos, pipe, len, flags);
846}
847
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800848static struct sock_iocb *alloc_sock_iocb(struct kiocb *iocb,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700849 struct sock_iocb *siocb)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800850{
851 if (!is_sync_kiocb(iocb)) {
852 siocb = kmalloc(sizeof(*siocb), GFP_KERNEL);
853 if (!siocb)
854 return NULL;
855 iocb->ki_dtor = sock_aio_dtor;
856 }
857
858 siocb->kiocb = iocb;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800859 iocb->private = siocb;
860 return siocb;
861}
862
863static ssize_t do_sock_read(struct msghdr *msg, struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -0700864 struct file *file, const struct iovec *iov,
865 unsigned long nr_segs)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800866{
867 struct socket *sock = file->private_data;
868 size_t size = 0;
869 int i;
870
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700871 for (i = 0; i < nr_segs; i++)
872 size += iov[i].iov_len;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800873
874 msg->msg_name = NULL;
875 msg->msg_namelen = 0;
876 msg->msg_control = NULL;
877 msg->msg_controllen = 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700878 msg->msg_iov = (struct iovec *)iov;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800879 msg->msg_iovlen = nr_segs;
880 msg->msg_flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
881
882 return __sock_recvmsg(iocb, sock, msg, size, msg->msg_flags);
883}
884
Badari Pulavarty027445c2006-09-30 23:28:46 -0700885static ssize_t sock_aio_read(struct kiocb *iocb, const struct iovec *iov,
886 unsigned long nr_segs, loff_t pos)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800887{
888 struct sock_iocb siocb, *x;
889
890 if (pos != 0)
891 return -ESPIPE;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700892
893 if (iocb->ki_left == 0) /* Match SYS5 behaviour */
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800894 return 0;
895
Badari Pulavarty027445c2006-09-30 23:28:46 -0700896
897 x = alloc_sock_iocb(iocb, &siocb);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800898 if (!x)
899 return -ENOMEM;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700900 return do_sock_read(&x->async_msg, iocb, iocb->ki_filp, iov, nr_segs);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800901}
902
903static ssize_t do_sock_write(struct msghdr *msg, struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -0700904 struct file *file, const struct iovec *iov,
905 unsigned long nr_segs)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800906{
907 struct socket *sock = file->private_data;
908 size_t size = 0;
909 int i;
910
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700911 for (i = 0; i < nr_segs; i++)
912 size += iov[i].iov_len;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800913
914 msg->msg_name = NULL;
915 msg->msg_namelen = 0;
916 msg->msg_control = NULL;
917 msg->msg_controllen = 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700918 msg->msg_iov = (struct iovec *)iov;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800919 msg->msg_iovlen = nr_segs;
920 msg->msg_flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
921 if (sock->type == SOCK_SEQPACKET)
922 msg->msg_flags |= MSG_EOR;
923
924 return __sock_sendmsg(iocb, sock, msg, size);
925}
926
Badari Pulavarty027445c2006-09-30 23:28:46 -0700927static ssize_t sock_aio_write(struct kiocb *iocb, const struct iovec *iov,
928 unsigned long nr_segs, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929{
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800930 struct sock_iocb siocb, *x;
931
932 if (pos != 0)
933 return -ESPIPE;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700934
Badari Pulavarty027445c2006-09-30 23:28:46 -0700935 x = alloc_sock_iocb(iocb, &siocb);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800936 if (!x)
937 return -ENOMEM;
938
Badari Pulavarty027445c2006-09-30 23:28:46 -0700939 return do_sock_write(&x->async_msg, iocb, iocb->ki_filp, iov, nr_segs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940}
941
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942/*
943 * Atomic setting of ioctl hooks to avoid race
944 * with module unload.
945 */
946
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800947static DEFINE_MUTEX(br_ioctl_mutex);
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700948static int (*br_ioctl_hook) (struct net *, unsigned int cmd, void __user *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949
Eric W. Biederman881d9662007-09-17 11:56:21 -0700950void brioctl_set(int (*hook) (struct net *, unsigned int, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800952 mutex_lock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 br_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800954 mutex_unlock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955}
956EXPORT_SYMBOL(brioctl_set);
957
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800958static DEFINE_MUTEX(vlan_ioctl_mutex);
Eric W. Biederman881d9662007-09-17 11:56:21 -0700959static int (*vlan_ioctl_hook) (struct net *, void __user *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
Eric W. Biederman881d9662007-09-17 11:56:21 -0700961void vlan_ioctl_set(int (*hook) (struct net *, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800963 mutex_lock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 vlan_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800965 mutex_unlock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966}
967EXPORT_SYMBOL(vlan_ioctl_set);
968
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800969static DEFINE_MUTEX(dlci_ioctl_mutex);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700970static int (*dlci_ioctl_hook) (unsigned int, void __user *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700972void dlci_ioctl_set(int (*hook) (unsigned int, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800974 mutex_lock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 dlci_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800976 mutex_unlock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977}
978EXPORT_SYMBOL(dlci_ioctl_set);
979
Arnd Bergmann6b960182009-11-06 23:10:54 -0800980static long sock_do_ioctl(struct net *net, struct socket *sock,
981 unsigned int cmd, unsigned long arg)
982{
983 int err;
984 void __user *argp = (void __user *)arg;
985
986 err = sock->ops->ioctl(sock, cmd, arg);
987
988 /*
989 * If this ioctl is unknown try to hand it down
990 * to the NIC driver.
991 */
992 if (err == -ENOIOCTLCMD)
993 err = dev_ioctl(net, cmd, argp);
994
995 return err;
996}
997
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998/*
999 * With an ioctl, arg may well be a user mode pointer, but we don't know
1000 * what to do with it - that's up to the protocol still.
1001 */
1002
1003static long sock_ioctl(struct file *file, unsigned cmd, unsigned long arg)
1004{
1005 struct socket *sock;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001006 struct sock *sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 void __user *argp = (void __user *)arg;
1008 int pid, err;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001009 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010
Eric Dumazetb69aee02005-09-06 14:42:45 -07001011 sock = file->private_data;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001012 sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001013 net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 if (cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15)) {
Eric W. Biederman881d9662007-09-17 11:56:21 -07001015 err = dev_ioctl(net, cmd, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 } else
Johannes Berg3d23e342009-09-29 23:27:28 +02001017#ifdef CONFIG_WEXT_CORE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 if (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST) {
Eric W. Biederman881d9662007-09-17 11:56:21 -07001019 err = dev_ioctl(net, cmd, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 } else
Johannes Berg3d23e342009-09-29 23:27:28 +02001021#endif
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001022 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 case FIOSETOWN:
1024 case SIOCSPGRP:
1025 err = -EFAULT;
1026 if (get_user(pid, (int __user *)argp))
1027 break;
1028 err = f_setown(sock->file, pid, 1);
1029 break;
1030 case FIOGETOWN:
1031 case SIOCGPGRP:
Eric W. Biederman609d7fa2006-10-02 02:17:15 -07001032 err = put_user(f_getown(sock->file),
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001033 (int __user *)argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 break;
1035 case SIOCGIFBR:
1036 case SIOCSIFBR:
1037 case SIOCBRADDBR:
1038 case SIOCBRDELBR:
1039 err = -ENOPKG;
1040 if (!br_ioctl_hook)
1041 request_module("bridge");
1042
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001043 mutex_lock(&br_ioctl_mutex);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001044 if (br_ioctl_hook)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001045 err = br_ioctl_hook(net, cmd, argp);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001046 mutex_unlock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 break;
1048 case SIOCGIFVLAN:
1049 case SIOCSIFVLAN:
1050 err = -ENOPKG;
1051 if (!vlan_ioctl_hook)
1052 request_module("8021q");
1053
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001054 mutex_lock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 if (vlan_ioctl_hook)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001056 err = vlan_ioctl_hook(net, argp);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001057 mutex_unlock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 case SIOCADDDLCI:
1060 case SIOCDELDLCI:
1061 err = -ENOPKG;
1062 if (!dlci_ioctl_hook)
1063 request_module("dlci");
1064
Pavel Emelyanov7512cbf2008-03-21 15:58:52 -07001065 mutex_lock(&dlci_ioctl_mutex);
1066 if (dlci_ioctl_hook)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 err = dlci_ioctl_hook(cmd, argp);
Pavel Emelyanov7512cbf2008-03-21 15:58:52 -07001068 mutex_unlock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 break;
1070 default:
Arnd Bergmann6b960182009-11-06 23:10:54 -08001071 err = sock_do_ioctl(net, sock, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001073 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 return err;
1075}
1076
1077int sock_create_lite(int family, int type, int protocol, struct socket **res)
1078{
1079 int err;
1080 struct socket *sock = NULL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001081
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 err = security_socket_create(family, type, protocol, 1);
1083 if (err)
1084 goto out;
1085
1086 sock = sock_alloc();
1087 if (!sock) {
1088 err = -ENOMEM;
1089 goto out;
1090 }
1091
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 sock->type = type;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001093 err = security_socket_post_create(sock, family, type, protocol, 1);
1094 if (err)
1095 goto out_release;
1096
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097out:
1098 *res = sock;
1099 return err;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001100out_release:
1101 sock_release(sock);
1102 sock = NULL;
1103 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001105EXPORT_SYMBOL(sock_create_lite);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106
1107/* No kernel lock held - perfect */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001108static unsigned int sock_poll(struct file *file, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109{
1110 struct socket *sock;
1111
1112 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001113 * We can't return errors to poll, so it's either yes or no.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 */
Eric Dumazetb69aee02005-09-06 14:42:45 -07001115 sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 return sock->ops->poll(file, sock, wait);
1117}
1118
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001119static int sock_mmap(struct file *file, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120{
Eric Dumazetb69aee02005-09-06 14:42:45 -07001121 struct socket *sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
1123 return sock->ops->mmap(file, sock, vma);
1124}
1125
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001126static int sock_close(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127{
1128 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001129 * It was possible the inode is NULL we were
1130 * closing an unfinished socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 */
1132
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001133 if (!inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 printk(KERN_DEBUG "sock_close: NULL inode\n");
1135 return 0;
1136 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 sock_release(SOCKET_I(inode));
1138 return 0;
1139}
1140
1141/*
1142 * Update the socket async list
1143 *
1144 * Fasync_list locking strategy.
1145 *
1146 * 1. fasync_list is modified only under process context socket lock
1147 * i.e. under semaphore.
1148 * 2. fasync_list is used under read_lock(&sk->sk_callback_lock)
Eric Dumazet989a2972010-04-14 09:55:35 +00001149 * or under socket lock
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 */
1151
1152static int sock_fasync(int fd, struct file *filp, int on)
1153{
Eric Dumazet989a2972010-04-14 09:55:35 +00001154 struct socket *sock = filp->private_data;
1155 struct sock *sk = sock->sk;
Eric Dumazeteaefd112011-02-18 03:26:36 +00001156 struct socket_wq *wq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
Eric Dumazet989a2972010-04-14 09:55:35 +00001158 if (sk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
1161 lock_sock(sk);
Eric Dumazeteaefd112011-02-18 03:26:36 +00001162 wq = rcu_dereference_protected(sock->wq, sock_owned_by_user(sk));
1163 fasync_helper(fd, filp, on, &wq->fasync_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
Eric Dumazeteaefd112011-02-18 03:26:36 +00001165 if (!wq->fasync_list)
Eric Dumazet989a2972010-04-14 09:55:35 +00001166 sock_reset_flag(sk, SOCK_FASYNC);
Jonathan Corbet76398422009-02-01 14:26:59 -07001167 else
Eric Dumazetbcdce712009-10-06 17:28:29 -07001168 sock_set_flag(sk, SOCK_FASYNC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
Eric Dumazet989a2972010-04-14 09:55:35 +00001170 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 return 0;
1172}
1173
Eric Dumazet43815482010-04-29 11:01:49 +00001174/* This function may be called only under socket lock or callback_lock or rcu_lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175
1176int sock_wake_async(struct socket *sock, int how, int band)
1177{
Eric Dumazet43815482010-04-29 11:01:49 +00001178 struct socket_wq *wq;
1179
1180 if (!sock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 return -1;
Eric Dumazet43815482010-04-29 11:01:49 +00001182 rcu_read_lock();
1183 wq = rcu_dereference(sock->wq);
1184 if (!wq || !wq->fasync_list) {
1185 rcu_read_unlock();
1186 return -1;
1187 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001188 switch (how) {
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001189 case SOCK_WAKE_WAITD:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 if (test_bit(SOCK_ASYNC_WAITDATA, &sock->flags))
1191 break;
1192 goto call_kill;
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001193 case SOCK_WAKE_SPACE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 if (!test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sock->flags))
1195 break;
1196 /* fall through */
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001197 case SOCK_WAKE_IO:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001198call_kill:
Eric Dumazet43815482010-04-29 11:01:49 +00001199 kill_fasync(&wq->fasync_list, SIGIO, band);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 break;
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001201 case SOCK_WAKE_URG:
Eric Dumazet43815482010-04-29 11:01:49 +00001202 kill_fasync(&wq->fasync_list, SIGURG, band);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 }
Eric Dumazet43815482010-04-29 11:01:49 +00001204 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 return 0;
1206}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001207EXPORT_SYMBOL(sock_wake_async);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
Pavel Emelyanov721db932010-09-29 16:06:32 +04001209int __sock_create(struct net *net, int family, int type, int protocol,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001210 struct socket **res, int kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211{
1212 int err;
1213 struct socket *sock;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001214 const struct net_proto_family *pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
1216 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001217 * Check protocol is in range
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 */
1219 if (family < 0 || family >= NPROTO)
1220 return -EAFNOSUPPORT;
1221 if (type < 0 || type >= SOCK_MAX)
1222 return -EINVAL;
1223
1224 /* Compatibility.
1225
1226 This uglymoron is moved from INET layer to here to avoid
1227 deadlock in module load.
1228 */
1229 if (family == PF_INET && type == SOCK_PACKET) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001230 static int warned;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 if (!warned) {
1232 warned = 1;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001233 printk(KERN_INFO "%s uses obsolete (PF_INET,SOCK_PACKET)\n",
1234 current->comm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 }
1236 family = PF_PACKET;
1237 }
1238
1239 err = security_socket_create(family, type, protocol, kern);
1240 if (err)
1241 return err;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001242
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001243 /*
1244 * Allocate the socket and allow the family to set things up. if
1245 * the protocol is 0, the family is instructed to select an appropriate
1246 * default.
1247 */
1248 sock = sock_alloc();
1249 if (!sock) {
1250 if (net_ratelimit())
1251 printk(KERN_WARNING "socket: no more sockets\n");
1252 return -ENFILE; /* Not exactly a match, but its the
1253 closest posix thing */
1254 }
1255
1256 sock->type = type;
1257
Johannes Berg95a5afc2008-10-16 15:24:51 -07001258#ifdef CONFIG_MODULES
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001259 /* Attempt to load a protocol module if the find failed.
1260 *
1261 * 12/09/1996 Marcin: But! this makes REALLY only sense, if the user
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 * requested real, full-featured networking support upon configuration.
1263 * Otherwise module support will break!
1264 */
Eric Dumazet190683a2010-11-10 10:50:44 +00001265 if (rcu_access_pointer(net_families[family]) == NULL)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001266 request_module("net-pf-%d", family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267#endif
1268
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001269 rcu_read_lock();
1270 pf = rcu_dereference(net_families[family]);
1271 err = -EAFNOSUPPORT;
1272 if (!pf)
1273 goto out_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274
1275 /*
1276 * We will call the ->create function, that possibly is in a loadable
1277 * module, so we have to bump that loadable module refcnt first.
1278 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001279 if (!try_module_get(pf->owner))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 goto out_release;
1281
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001282 /* Now protected by module ref count */
1283 rcu_read_unlock();
1284
Eric Paris3f378b62009-11-05 22:18:14 -08001285 err = pf->create(net, sock, protocol, kern);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001286 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 goto out_module_put;
Frank Filza79af592005-09-27 15:23:38 -07001288
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 /*
1290 * Now to bump the refcnt of the [loadable] module that owns this
1291 * socket at sock_release time we decrement its refcnt.
1292 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001293 if (!try_module_get(sock->ops->owner))
1294 goto out_module_busy;
1295
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 /*
1297 * Now that we're done with the ->create function, the [loadable]
1298 * module can have its refcnt decremented
1299 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001300 module_put(pf->owner);
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001301 err = security_socket_post_create(sock, family, type, protocol, kern);
1302 if (err)
Herbert Xu3b185522007-08-15 14:46:02 -07001303 goto out_sock_release;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001304 *res = sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001306 return 0;
1307
1308out_module_busy:
1309 err = -EAFNOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310out_module_put:
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001311 sock->ops = NULL;
1312 module_put(pf->owner);
1313out_sock_release:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 sock_release(sock);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001315 return err;
1316
1317out_release:
1318 rcu_read_unlock();
1319 goto out_sock_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320}
Pavel Emelyanov721db932010-09-29 16:06:32 +04001321EXPORT_SYMBOL(__sock_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
1323int sock_create(int family, int type, int protocol, struct socket **res)
1324{
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001325 return __sock_create(current->nsproxy->net_ns, family, type, protocol, res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001327EXPORT_SYMBOL(sock_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
1329int sock_create_kern(int family, int type, int protocol, struct socket **res)
1330{
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001331 return __sock_create(&init_net, family, type, protocol, res, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001333EXPORT_SYMBOL(sock_create_kern);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001335SYSCALL_DEFINE3(socket, int, family, int, type, int, protocol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336{
1337 int retval;
1338 struct socket *sock;
Ulrich Dreppera677a032008-07-23 21:29:17 -07001339 int flags;
1340
Ulrich Dreppere38b36f2008-07-23 21:29:42 -07001341 /* Check the SOCK_* constants for consistency. */
1342 BUILD_BUG_ON(SOCK_CLOEXEC != O_CLOEXEC);
1343 BUILD_BUG_ON((SOCK_MAX | SOCK_TYPE_MASK) != SOCK_TYPE_MASK);
1344 BUILD_BUG_ON(SOCK_CLOEXEC & SOCK_TYPE_MASK);
1345 BUILD_BUG_ON(SOCK_NONBLOCK & SOCK_TYPE_MASK);
1346
Ulrich Dreppera677a032008-07-23 21:29:17 -07001347 flags = type & ~SOCK_TYPE_MASK;
Ulrich Drepper77d27202008-07-23 21:29:35 -07001348 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Dreppera677a032008-07-23 21:29:17 -07001349 return -EINVAL;
1350 type &= SOCK_TYPE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001352 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1353 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1354
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 retval = sock_create(family, type, protocol, &sock);
1356 if (retval < 0)
1357 goto out;
1358
Harout Hedeshianff12c742014-03-04 07:31:47 -07001359 if (retval == 0)
1360 sockev_notify(SOCKEV_SOCKET, sock);
1361
Ulrich Drepper77d27202008-07-23 21:29:35 -07001362 retval = sock_map_fd(sock, flags & (O_CLOEXEC | O_NONBLOCK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 if (retval < 0)
1364 goto out_release;
1365
1366out:
1367 /* It may be already another descriptor 8) Not kernel problem. */
1368 return retval;
1369
1370out_release:
1371 sock_release(sock);
1372 return retval;
1373}
1374
1375/*
1376 * Create a pair of connected sockets.
1377 */
1378
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001379SYSCALL_DEFINE4(socketpair, int, family, int, type, int, protocol,
1380 int __user *, usockvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381{
1382 struct socket *sock1, *sock2;
1383 int fd1, fd2, err;
Al Virodb349502007-02-07 01:48:00 -05001384 struct file *newfile1, *newfile2;
Ulrich Dreppera677a032008-07-23 21:29:17 -07001385 int flags;
1386
1387 flags = type & ~SOCK_TYPE_MASK;
Ulrich Drepper77d27202008-07-23 21:29:35 -07001388 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Dreppera677a032008-07-23 21:29:17 -07001389 return -EINVAL;
1390 type &= SOCK_TYPE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001392 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1393 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1394
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 /*
1396 * Obtain the first socket and check if the underlying protocol
1397 * supports the socketpair call.
1398 */
1399
1400 err = sock_create(family, type, protocol, &sock1);
1401 if (err < 0)
1402 goto out;
1403
1404 err = sock_create(family, type, protocol, &sock2);
1405 if (err < 0)
1406 goto out_release_1;
1407
1408 err = sock1->ops->socketpair(sock1, sock2);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001409 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 goto out_release_both;
1411
Al Viro7cbe66b2009-08-05 19:59:08 +04001412 fd1 = sock_alloc_file(sock1, &newfile1, flags);
David S. Millerbf3c23d2007-10-29 21:54:02 -07001413 if (unlikely(fd1 < 0)) {
1414 err = fd1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 goto out_release_both;
David S. Millerbf3c23d2007-10-29 21:54:02 -07001416 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417
Al Viro7cbe66b2009-08-05 19:59:08 +04001418 fd2 = sock_alloc_file(sock2, &newfile2, flags);
Al Viro198de4d2009-08-05 19:29:23 +04001419 if (unlikely(fd2 < 0)) {
1420 err = fd2;
1421 fput(newfile1);
1422 put_unused_fd(fd1);
1423 sock_release(sock2);
1424 goto out;
Al Virodb349502007-02-07 01:48:00 -05001425 }
1426
Al Viro157cf642008-12-14 04:57:47 -05001427 audit_fd_pair(fd1, fd2);
Al Virodb349502007-02-07 01:48:00 -05001428 fd_install(fd1, newfile1);
1429 fd_install(fd2, newfile2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 /* fd1 and fd2 may be already another descriptors.
1431 * Not kernel problem.
1432 */
1433
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001434 err = put_user(fd1, &usockvec[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 if (!err)
1436 err = put_user(fd2, &usockvec[1]);
1437 if (!err)
1438 return 0;
1439
1440 sys_close(fd2);
1441 sys_close(fd1);
1442 return err;
1443
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444out_release_both:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001445 sock_release(sock2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446out_release_1:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001447 sock_release(sock1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448out:
1449 return err;
1450}
1451
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452/*
1453 * Bind a name to a socket. Nothing much to do here since it's
1454 * the protocol's responsibility to handle the local address.
1455 *
1456 * We move the socket address to kernel space before we call
1457 * the protocol layer (having also checked the address is ok).
1458 */
1459
Heiko Carstens20f37032009-01-14 14:14:23 +01001460SYSCALL_DEFINE3(bind, int, fd, struct sockaddr __user *, umyaddr, int, addrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461{
1462 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001463 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001464 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001466 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001467 if (sock) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001468 err = move_addr_to_kernel(umyaddr, addrlen, &address);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001469 if (err >= 0) {
1470 err = security_socket_bind(sock,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001471 (struct sockaddr *)&address,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001472 addrlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001473 if (!err)
1474 err = sock->ops->bind(sock,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001475 (struct sockaddr *)
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001476 &address, addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 }
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001478 fput_light(sock->file, fput_needed);
Harout Hedeshianff12c742014-03-04 07:31:47 -07001479 if (!err)
1480 sockev_notify(SOCKEV_BIND, sock);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001481 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 return err;
1483}
1484
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485/*
1486 * Perform a listen. Basically, we allow the protocol to do anything
1487 * necessary for a listen, and if that works, we mark the socket as
1488 * ready for listening.
1489 */
1490
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001491SYSCALL_DEFINE2(listen, int, fd, int, backlog)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492{
1493 struct socket *sock;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001494 int err, fput_needed;
Pavel Emelyanovb8e1f9b2007-12-08 00:12:33 -08001495 int somaxconn;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001496
1497 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1498 if (sock) {
Pavel Emelyanov8efa6e92008-03-31 19:41:14 -07001499 somaxconn = sock_net(sock->sk)->core.sysctl_somaxconn;
Pavel Emelyanovb8e1f9b2007-12-08 00:12:33 -08001500 if ((unsigned)backlog > somaxconn)
1501 backlog = somaxconn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502
1503 err = security_socket_listen(sock, backlog);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001504 if (!err)
1505 err = sock->ops->listen(sock, backlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001507 fput_light(sock->file, fput_needed);
Harout Hedeshianff12c742014-03-04 07:31:47 -07001508 if (!err)
1509 sockev_notify(SOCKEV_LISTEN, sock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 }
1511 return err;
1512}
1513
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514/*
1515 * For accept, we attempt to create a new socket, set up the link
1516 * with the client, wake up the client, then return the new
1517 * connected fd. We collect the address of the connector in kernel
1518 * space and move it to user at the very end. This is unclean because
1519 * we open the socket then return an error.
1520 *
1521 * 1003.1g adds the ability to recvmsg() to query connection pending
1522 * status to recvmsg. We need to add that support in a way thats
1523 * clean when we restucture accept also.
1524 */
1525
Heiko Carstens20f37032009-01-14 14:14:23 +01001526SYSCALL_DEFINE4(accept4, int, fd, struct sockaddr __user *, upeer_sockaddr,
1527 int __user *, upeer_addrlen, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528{
1529 struct socket *sock, *newsock;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001530 struct file *newfile;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001531 int err, len, newfd, fput_needed;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001532 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533
Ulrich Drepper77d27202008-07-23 21:29:35 -07001534 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001535 return -EINVAL;
1536
1537 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1538 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1539
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001540 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 if (!sock)
1542 goto out;
1543
1544 err = -ENFILE;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001545 newsock = sock_alloc();
1546 if (!newsock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 goto out_put;
1548
1549 newsock->type = sock->type;
1550 newsock->ops = sock->ops;
1551
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 /*
1553 * We don't need try_module_get here, as the listening socket (sock)
1554 * has the protocol module (sock->ops->owner) held.
1555 */
1556 __module_get(newsock->ops->owner);
1557
Al Viro7cbe66b2009-08-05 19:59:08 +04001558 newfd = sock_alloc_file(newsock, &newfile, flags);
David S. Miller39d8c1b2006-03-20 17:13:49 -08001559 if (unlikely(newfd < 0)) {
1560 err = newfd;
David S. Miller9a1875e2006-04-01 12:48:36 -08001561 sock_release(newsock);
1562 goto out_put;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001563 }
1564
Frank Filza79af592005-09-27 15:23:38 -07001565 err = security_socket_accept(sock, newsock);
1566 if (err)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001567 goto out_fd;
Frank Filza79af592005-09-27 15:23:38 -07001568
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 err = sock->ops->accept(sock, newsock, sock->file->f_flags);
1570 if (err < 0)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001571 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572
1573 if (upeer_sockaddr) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001574 if (newsock->ops->getname(newsock, (struct sockaddr *)&address,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001575 &len, 2) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 err = -ECONNABORTED;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001577 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 }
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001579 err = move_addr_to_user(&address,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001580 len, upeer_sockaddr, upeer_addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 if (err < 0)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001582 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 }
1584
1585 /* File flags are not inherited via accept() unlike another OSes. */
1586
David S. Miller39d8c1b2006-03-20 17:13:49 -08001587 fd_install(newfd, newfile);
1588 err = newfd;
Harout Hedeshianff12c742014-03-04 07:31:47 -07001589 if (!err)
1590 sockev_notify(SOCKEV_ACCEPT, sock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001592 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593out:
1594 return err;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001595out_fd:
David S. Miller9606a212006-04-01 01:00:14 -08001596 fput(newfile);
David S. Miller39d8c1b2006-03-20 17:13:49 -08001597 put_unused_fd(newfd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 goto out_put;
1599}
1600
Heiko Carstens20f37032009-01-14 14:14:23 +01001601SYSCALL_DEFINE3(accept, int, fd, struct sockaddr __user *, upeer_sockaddr,
1602 int __user *, upeer_addrlen)
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001603{
Ulrich Drepperde11def2008-11-19 15:36:14 -08001604 return sys_accept4(fd, upeer_sockaddr, upeer_addrlen, 0);
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001605}
1606
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607/*
1608 * Attempt to connect to a socket with the server address. The address
1609 * is in user space so we verify it is OK and move it to kernel space.
1610 *
1611 * For 1003.1g we need to add clean support for a bind to AF_UNSPEC to
1612 * break bindings
1613 *
1614 * NOTE: 1003.1g draft 6.3 is broken with respect to AX.25/NetROM and
1615 * other SEQPACKET protocols that take time to connect() as it doesn't
1616 * include the -EINPROGRESS status for such sockets.
1617 */
1618
Heiko Carstens20f37032009-01-14 14:14:23 +01001619SYSCALL_DEFINE3(connect, int, fd, struct sockaddr __user *, uservaddr,
1620 int, addrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621{
1622 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001623 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001624 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001626 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 if (!sock)
1628 goto out;
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001629 err = move_addr_to_kernel(uservaddr, addrlen, &address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 if (err < 0)
1631 goto out_put;
1632
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001633 err =
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001634 security_socket_connect(sock, (struct sockaddr *)&address, addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 if (err)
1636 goto out_put;
1637
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001638 err = sock->ops->connect(sock, (struct sockaddr *)&address, addrlen,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 sock->file->f_flags);
Harout Hedeshianff12c742014-03-04 07:31:47 -07001640 if (!err)
1641 sockev_notify(SOCKEV_CONNECT, sock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001643 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644out:
1645 return err;
1646}
1647
1648/*
1649 * Get the local address ('name') of a socket object. Move the obtained
1650 * name to user space.
1651 */
1652
Heiko Carstens20f37032009-01-14 14:14:23 +01001653SYSCALL_DEFINE3(getsockname, int, fd, struct sockaddr __user *, usockaddr,
1654 int __user *, usockaddr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655{
1656 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001657 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001658 int len, err, fput_needed;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001659
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001660 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 if (!sock)
1662 goto out;
1663
1664 err = security_socket_getsockname(sock);
1665 if (err)
1666 goto out_put;
1667
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001668 err = sock->ops->getname(sock, (struct sockaddr *)&address, &len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 if (err)
1670 goto out_put;
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001671 err = move_addr_to_user(&address, len, usockaddr, usockaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672
1673out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001674 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675out:
1676 return err;
1677}
1678
1679/*
1680 * Get the remote address ('name') of a socket object. Move the obtained
1681 * name to user space.
1682 */
1683
Heiko Carstens20f37032009-01-14 14:14:23 +01001684SYSCALL_DEFINE3(getpeername, int, fd, struct sockaddr __user *, usockaddr,
1685 int __user *, usockaddr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686{
1687 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001688 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001689 int len, err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001691 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1692 if (sock != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 err = security_socket_getpeername(sock);
1694 if (err) {
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001695 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 return err;
1697 }
1698
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001699 err =
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001700 sock->ops->getname(sock, (struct sockaddr *)&address, &len,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001701 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 if (!err)
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001703 err = move_addr_to_user(&address, len, usockaddr,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001704 usockaddr_len);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001705 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 }
1707 return err;
1708}
1709
1710/*
1711 * Send a datagram to a given address. We move the address into kernel
1712 * space and check the user space data area is readable before invoking
1713 * the protocol.
1714 */
1715
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001716SYSCALL_DEFINE6(sendto, int, fd, void __user *, buff, size_t, len,
1717 unsigned, flags, struct sockaddr __user *, addr,
1718 int, addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719{
1720 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001721 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 int err;
1723 struct msghdr msg;
1724 struct iovec iov;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001725 int fput_needed;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001726
Linus Torvalds253eacc2010-10-30 16:43:10 -07001727 if (len > INT_MAX)
1728 len = INT_MAX;
Teow Wan Yee22227262016-07-27 16:00:14 +08001729 if (unlikely(!access_ok(VERIFY_READ, buff, len)))
1730 return -EFAULT;
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001731 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1732 if (!sock)
David S. Miller4387ff72007-02-08 15:06:08 -08001733 goto out;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001734
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001735 iov.iov_base = buff;
1736 iov.iov_len = len;
1737 msg.msg_name = NULL;
1738 msg.msg_iov = &iov;
1739 msg.msg_iovlen = 1;
1740 msg.msg_control = NULL;
1741 msg.msg_controllen = 0;
1742 msg.msg_namelen = 0;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001743 if (addr) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001744 err = move_addr_to_kernel(addr, addr_len, &address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 if (err < 0)
1746 goto out_put;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001747 msg.msg_name = (struct sockaddr *)&address;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001748 msg.msg_namelen = addr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 }
1750 if (sock->file->f_flags & O_NONBLOCK)
1751 flags |= MSG_DONTWAIT;
1752 msg.msg_flags = flags;
1753 err = sock_sendmsg(sock, &msg, len);
1754
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001755out_put:
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001756 fput_light(sock->file, fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08001757out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 return err;
1759}
1760
1761/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001762 * Send a datagram down a socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 */
1764
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001765SYSCALL_DEFINE4(send, int, fd, void __user *, buff, size_t, len,
1766 unsigned, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767{
1768 return sys_sendto(fd, buff, len, flags, NULL, 0);
1769}
1770
1771/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001772 * Receive a frame from the socket and optionally record the address of the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 * sender. We verify the buffers are writable and if needed move the
1774 * sender address from kernel to user space.
1775 */
1776
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001777SYSCALL_DEFINE6(recvfrom, int, fd, void __user *, ubuf, size_t, size,
1778 unsigned, flags, struct sockaddr __user *, addr,
1779 int __user *, addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780{
1781 struct socket *sock;
1782 struct iovec iov;
1783 struct msghdr msg;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001784 struct sockaddr_storage address;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001785 int err, err2;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001786 int fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787
Linus Torvalds253eacc2010-10-30 16:43:10 -07001788 if (size > INT_MAX)
1789 size = INT_MAX;
Teow Wan Yee22227262016-07-27 16:00:14 +08001790 if (unlikely(!access_ok(VERIFY_WRITE, ubuf, size)))
1791 return -EFAULT;
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001792 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 if (!sock)
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001794 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001796 msg.msg_control = NULL;
1797 msg.msg_controllen = 0;
1798 msg.msg_iovlen = 1;
1799 msg.msg_iov = &iov;
1800 iov.iov_len = size;
1801 iov.iov_base = ubuf;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001802 msg.msg_name = (struct sockaddr *)&address;
1803 msg.msg_namelen = sizeof(address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 if (sock->file->f_flags & O_NONBLOCK)
1805 flags |= MSG_DONTWAIT;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001806 err = sock_recvmsg(sock, &msg, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001808 if (err >= 0 && addr != NULL) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001809 err2 = move_addr_to_user(&address,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001810 msg.msg_namelen, addr, addr_len);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001811 if (err2 < 0)
1812 err = err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 }
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001814
1815 fput_light(sock->file, fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08001816out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 return err;
1818}
1819
1820/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001821 * Receive a datagram from a socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 */
1823
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001824asmlinkage long sys_recv(int fd, void __user *ubuf, size_t size,
1825 unsigned flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826{
1827 return sys_recvfrom(fd, ubuf, size, flags, NULL, NULL);
1828}
1829
1830/*
1831 * Set a socket option. Because we don't know the option lengths we have
1832 * to pass the user mode parameter for the protocols to sort out.
1833 */
1834
Heiko Carstens20f37032009-01-14 14:14:23 +01001835SYSCALL_DEFINE5(setsockopt, int, fd, int, level, int, optname,
1836 char __user *, optval, int, optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001838 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 struct socket *sock;
1840
1841 if (optlen < 0)
1842 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001843
1844 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1845 if (sock != NULL) {
1846 err = security_socket_setsockopt(sock, level, optname);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001847 if (err)
1848 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
1850 if (level == SOL_SOCKET)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001851 err =
1852 sock_setsockopt(sock, level, optname, optval,
1853 optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 else
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001855 err =
1856 sock->ops->setsockopt(sock, level, optname, optval,
1857 optlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001858out_put:
1859 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 }
1861 return err;
1862}
1863
1864/*
1865 * Get a socket option. Because we don't know the option lengths we have
1866 * to pass a user mode parameter for the protocols to sort out.
1867 */
1868
Heiko Carstens20f37032009-01-14 14:14:23 +01001869SYSCALL_DEFINE5(getsockopt, int, fd, int, level, int, optname,
1870 char __user *, optval, int __user *, optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001872 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 struct socket *sock;
1874
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001875 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1876 if (sock != NULL) {
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001877 err = security_socket_getsockopt(sock, level, optname);
1878 if (err)
1879 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880
1881 if (level == SOL_SOCKET)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001882 err =
1883 sock_getsockopt(sock, level, optname, optval,
1884 optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 else
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001886 err =
1887 sock->ops->getsockopt(sock, level, optname, optval,
1888 optlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001889out_put:
1890 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 }
1892 return err;
1893}
1894
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895/*
1896 * Shutdown a socket.
1897 */
1898
Heiko Carstens754fe8d2009-01-14 14:14:09 +01001899SYSCALL_DEFINE2(shutdown, int, fd, int, how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001901 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 struct socket *sock;
1903
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001904 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1905 if (sock != NULL) {
Harout Hedeshianff12c742014-03-04 07:31:47 -07001906 sockev_notify(SOCKEV_SHUTDOWN, sock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 err = security_socket_shutdown(sock, how);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001908 if (!err)
1909 err = sock->ops->shutdown(sock, how);
1910 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 }
1912 return err;
1913}
1914
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001915/* A couple of helpful macros for getting the address of the 32/64 bit
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 * fields which are the same type (int / unsigned) on our platforms.
1917 */
1918#define COMPAT_MSG(msg, member) ((MSG_CMSG_COMPAT & flags) ? &msg##_compat->member : &msg->member)
1919#define COMPAT_NAMELEN(msg) COMPAT_MSG(msg, msg_namelen)
1920#define COMPAT_FLAGS(msg) COMPAT_MSG(msg, msg_flags)
1921
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00001922struct used_address {
1923 struct sockaddr_storage name;
1924 unsigned int name_len;
1925};
1926
Anton Blanchard228e5482011-05-02 20:21:35 +00001927static int __sys_sendmsg(struct socket *sock, struct msghdr __user *msg,
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00001928 struct msghdr *msg_sys, unsigned flags,
1929 struct used_address *used_address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001931 struct compat_msghdr __user *msg_compat =
1932 (struct compat_msghdr __user *)msg;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001933 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 struct iovec iovstack[UIO_FASTIOV], *iov = iovstack;
Alex Williamsonb9d717a2005-09-26 14:28:02 -07001935 unsigned char ctl[sizeof(struct cmsghdr) + 20]
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001936 __attribute__ ((aligned(sizeof(__kernel_size_t))));
1937 /* 20 is size of ipv6_pktinfo */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 unsigned char *ctl_buf = ctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 int err, ctl_len, iov_size, total_len;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001940
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 err = -EFAULT;
1942 if (MSG_CMSG_COMPAT & flags) {
Anton Blanchard228e5482011-05-02 20:21:35 +00001943 if (get_compat_msghdr(msg_sys, msg_compat))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 return -EFAULT;
Anton Blanchard228e5482011-05-02 20:21:35 +00001945 } else if (copy_from_user(msg_sys, msg, sizeof(struct msghdr)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 return -EFAULT;
1947
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 /* do not move before msg_sys is valid */
1949 err = -EMSGSIZE;
Anton Blanchard228e5482011-05-02 20:21:35 +00001950 if (msg_sys->msg_iovlen > UIO_MAXIOV)
1951 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001953 /* Check whether to allocate the iovec area */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 err = -ENOMEM;
Anton Blanchard228e5482011-05-02 20:21:35 +00001955 iov_size = msg_sys->msg_iovlen * sizeof(struct iovec);
1956 if (msg_sys->msg_iovlen > UIO_FASTIOV) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 iov = sock_kmalloc(sock->sk, iov_size, GFP_KERNEL);
1958 if (!iov)
Anton Blanchard228e5482011-05-02 20:21:35 +00001959 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 }
1961
1962 /* This will also move the address data into kernel space */
1963 if (MSG_CMSG_COMPAT & flags) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001964 err = verify_compat_iovec(msg_sys, iov, &address, VERIFY_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 } else
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001966 err = verify_iovec(msg_sys, iov, &address, VERIFY_READ);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001967 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 goto out_freeiov;
1969 total_len = err;
1970
1971 err = -ENOBUFS;
1972
Anton Blanchard228e5482011-05-02 20:21:35 +00001973 if (msg_sys->msg_controllen > INT_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 goto out_freeiov;
Anton Blanchard228e5482011-05-02 20:21:35 +00001975 ctl_len = msg_sys->msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 if ((MSG_CMSG_COMPAT & flags) && ctl_len) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001977 err =
Anton Blanchard228e5482011-05-02 20:21:35 +00001978 cmsghdr_from_user_compat_to_kern(msg_sys, sock->sk, ctl,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001979 sizeof(ctl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 if (err)
1981 goto out_freeiov;
Anton Blanchard228e5482011-05-02 20:21:35 +00001982 ctl_buf = msg_sys->msg_control;
1983 ctl_len = msg_sys->msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 } else if (ctl_len) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001985 if (ctl_len > sizeof(ctl)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 ctl_buf = sock_kmalloc(sock->sk, ctl_len, GFP_KERNEL);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001987 if (ctl_buf == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 goto out_freeiov;
1989 }
1990 err = -EFAULT;
1991 /*
Anton Blanchard228e5482011-05-02 20:21:35 +00001992 * Careful! Before this, msg_sys->msg_control contains a user pointer.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 * Afterwards, it will be a kernel pointer. Thus the compiler-assisted
1994 * checking falls down on this.
1995 */
Namhyung Kimfb8621b2010-09-07 03:55:00 +00001996 if (copy_from_user(ctl_buf,
Anton Blanchard228e5482011-05-02 20:21:35 +00001997 (void __user __force *)msg_sys->msg_control,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001998 ctl_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 goto out_freectl;
Anton Blanchard228e5482011-05-02 20:21:35 +00002000 msg_sys->msg_control = ctl_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 }
Anton Blanchard228e5482011-05-02 20:21:35 +00002002 msg_sys->msg_flags = flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003
2004 if (sock->file->f_flags & O_NONBLOCK)
Anton Blanchard228e5482011-05-02 20:21:35 +00002005 msg_sys->msg_flags |= MSG_DONTWAIT;
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002006 /*
2007 * If this is sendmmsg() and current destination address is same as
2008 * previously succeeded address, omit asking LSM's decision.
2009 * used_address->name_len is initialized to UINT_MAX so that the first
2010 * destination address never matches.
2011 */
Mathieu Desnoyersbc909d92011-08-24 19:45:03 -07002012 if (used_address && msg_sys->msg_name &&
2013 used_address->name_len == msg_sys->msg_namelen &&
2014 !memcmp(&used_address->name, msg_sys->msg_name,
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002015 used_address->name_len)) {
2016 err = sock_sendmsg_nosec(sock, msg_sys, total_len);
2017 goto out_freectl;
2018 }
2019 err = sock_sendmsg(sock, msg_sys, total_len);
2020 /*
2021 * If this is sendmmsg() and sending to current destination address was
2022 * successful, remember it.
2023 */
2024 if (used_address && err >= 0) {
2025 used_address->name_len = msg_sys->msg_namelen;
Mathieu Desnoyersbc909d92011-08-24 19:45:03 -07002026 if (msg_sys->msg_name)
2027 memcpy(&used_address->name, msg_sys->msg_name,
2028 used_address->name_len);
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002029 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030
2031out_freectl:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002032 if (ctl_buf != ctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 sock_kfree_s(sock->sk, ctl_buf, ctl_len);
2034out_freeiov:
2035 if (iov != iovstack)
2036 sock_kfree_s(sock->sk, iov, iov_size);
Anton Blanchard228e5482011-05-02 20:21:35 +00002037out:
2038 return err;
2039}
2040
2041/*
2042 * BSD sendmsg interface
2043 */
2044
2045SYSCALL_DEFINE3(sendmsg, int, fd, struct msghdr __user *, msg, unsigned, flags)
2046{
2047 int fput_needed, err;
2048 struct msghdr msg_sys;
2049 struct socket *sock = sockfd_lookup_light(fd, &err, &fput_needed);
2050
2051 if (!sock)
2052 goto out;
2053
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002054 err = __sys_sendmsg(sock, msg, &msg_sys, flags, NULL);
Anton Blanchard228e5482011-05-02 20:21:35 +00002055
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002056 fput_light(sock->file, fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002057out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 return err;
2059}
2060
Anton Blanchard228e5482011-05-02 20:21:35 +00002061/*
2062 * Linux sendmmsg interface
2063 */
2064
2065int __sys_sendmmsg(int fd, struct mmsghdr __user *mmsg, unsigned int vlen,
2066 unsigned int flags)
2067{
2068 int fput_needed, err, datagrams;
2069 struct socket *sock;
2070 struct mmsghdr __user *entry;
2071 struct compat_mmsghdr __user *compat_entry;
2072 struct msghdr msg_sys;
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002073 struct used_address used_address;
Anton Blanchard228e5482011-05-02 20:21:35 +00002074
Anton Blanchard98382f42011-08-04 14:07:39 +00002075 if (vlen > UIO_MAXIOV)
2076 vlen = UIO_MAXIOV;
Anton Blanchard228e5482011-05-02 20:21:35 +00002077
2078 datagrams = 0;
2079
2080 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2081 if (!sock)
2082 return err;
2083
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002084 used_address.name_len = UINT_MAX;
Anton Blanchard228e5482011-05-02 20:21:35 +00002085 entry = mmsg;
2086 compat_entry = (struct compat_mmsghdr __user *)mmsg;
Anton Blanchard728ffb82011-08-04 14:07:38 +00002087 err = 0;
Anton Blanchard228e5482011-05-02 20:21:35 +00002088
2089 while (datagrams < vlen) {
Anton Blanchard228e5482011-05-02 20:21:35 +00002090 if (MSG_CMSG_COMPAT & flags) {
2091 err = __sys_sendmsg(sock, (struct msghdr __user *)compat_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, &compat_entry->msg_len);
2096 ++compat_entry;
2097 } else {
2098 err = __sys_sendmsg(sock, (struct msghdr __user *)entry,
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002099 &msg_sys, flags, &used_address);
Anton Blanchard228e5482011-05-02 20:21:35 +00002100 if (err < 0)
2101 break;
2102 err = put_user(err, &entry->msg_len);
2103 ++entry;
2104 }
2105
2106 if (err)
2107 break;
2108 ++datagrams;
2109 }
2110
Anton Blanchard228e5482011-05-02 20:21:35 +00002111 fput_light(sock->file, fput_needed);
2112
Anton Blanchard728ffb82011-08-04 14:07:38 +00002113 /* We only return an error if no datagrams were able to be sent */
2114 if (datagrams != 0)
Anton Blanchard228e5482011-05-02 20:21:35 +00002115 return datagrams;
2116
Anton Blanchard228e5482011-05-02 20:21:35 +00002117 return err;
2118}
2119
2120SYSCALL_DEFINE4(sendmmsg, int, fd, struct mmsghdr __user *, mmsg,
2121 unsigned int, vlen, unsigned int, flags)
2122{
2123 return __sys_sendmmsg(fd, mmsg, vlen, flags);
2124}
2125
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002126static int __sys_recvmsg(struct socket *sock, struct msghdr __user *msg,
2127 struct msghdr *msg_sys, unsigned flags, int nosec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002129 struct compat_msghdr __user *msg_compat =
2130 (struct compat_msghdr __user *)msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 struct iovec iovstack[UIO_FASTIOV];
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002132 struct iovec *iov = iovstack;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 unsigned long cmsg_ptr;
2134 int err, iov_size, total_len, len;
2135
2136 /* kernel mode address */
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07002137 struct sockaddr_storage addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138
2139 /* user mode address pointers */
2140 struct sockaddr __user *uaddr;
2141 int __user *uaddr_len;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002142
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 if (MSG_CMSG_COMPAT & flags) {
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002144 if (get_compat_msghdr(msg_sys, msg_compat))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 return -EFAULT;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002146 } else if (copy_from_user(msg_sys, msg, sizeof(struct msghdr)))
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002147 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 err = -EMSGSIZE;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002150 if (msg_sys->msg_iovlen > UIO_MAXIOV)
2151 goto out;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002152
2153 /* Check whether to allocate the iovec area */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 err = -ENOMEM;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002155 iov_size = msg_sys->msg_iovlen * sizeof(struct iovec);
2156 if (msg_sys->msg_iovlen > UIO_FASTIOV) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 iov = sock_kmalloc(sock->sk, iov_size, GFP_KERNEL);
2158 if (!iov)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002159 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 }
2161
2162 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002163 * Save the user-mode address (verify_iovec will change the
2164 * kernel msghdr to use the kernel address space)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002166
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002167 uaddr = (__force void __user *)msg_sys->msg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 uaddr_len = COMPAT_NAMELEN(msg);
2169 if (MSG_CMSG_COMPAT & flags) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00002170 err = verify_compat_iovec(msg_sys, iov, &addr, VERIFY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 } else
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00002172 err = verify_iovec(msg_sys, iov, &addr, VERIFY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 if (err < 0)
2174 goto out_freeiov;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002175 total_len = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002177 cmsg_ptr = (unsigned long)msg_sys->msg_control;
2178 msg_sys->msg_flags = flags & (MSG_CMSG_CLOEXEC|MSG_CMSG_COMPAT);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002179
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 if (sock->file->f_flags & O_NONBLOCK)
2181 flags |= MSG_DONTWAIT;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002182 err = (nosec ? sock_recvmsg_nosec : sock_recvmsg)(sock, msg_sys,
2183 total_len, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 if (err < 0)
2185 goto out_freeiov;
2186 len = err;
2187
2188 if (uaddr != NULL) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00002189 err = move_addr_to_user(&addr,
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002190 msg_sys->msg_namelen, uaddr,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002191 uaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 if (err < 0)
2193 goto out_freeiov;
2194 }
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002195 err = __put_user((msg_sys->msg_flags & ~MSG_CMSG_COMPAT),
David S. Miller37f7f422005-09-16 16:51:01 -07002196 COMPAT_FLAGS(msg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 if (err)
2198 goto out_freeiov;
2199 if (MSG_CMSG_COMPAT & flags)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002200 err = __put_user((unsigned long)msg_sys->msg_control - cmsg_ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 &msg_compat->msg_controllen);
2202 else
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002203 err = __put_user((unsigned long)msg_sys->msg_control - cmsg_ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 &msg->msg_controllen);
2205 if (err)
2206 goto out_freeiov;
2207 err = len;
2208
2209out_freeiov:
2210 if (iov != iovstack)
2211 sock_kfree_s(sock->sk, iov, iov_size);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002212out:
2213 return err;
2214}
2215
2216/*
2217 * BSD recvmsg interface
2218 */
2219
2220SYSCALL_DEFINE3(recvmsg, int, fd, struct msghdr __user *, msg,
2221 unsigned int, flags)
2222{
2223 int fput_needed, err;
2224 struct msghdr msg_sys;
2225 struct socket *sock = sockfd_lookup_light(fd, &err, &fput_needed);
2226
2227 if (!sock)
2228 goto out;
2229
2230 err = __sys_recvmsg(sock, msg, &msg_sys, flags, 0);
2231
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002232 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233out:
2234 return err;
2235}
2236
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002237/*
2238 * Linux recvmmsg interface
2239 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002241int __sys_recvmmsg(int fd, struct mmsghdr __user *mmsg, unsigned int vlen,
2242 unsigned int flags, struct timespec *timeout)
2243{
2244 int fput_needed, err, datagrams;
2245 struct socket *sock;
2246 struct mmsghdr __user *entry;
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002247 struct compat_mmsghdr __user *compat_entry;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002248 struct msghdr msg_sys;
2249 struct timespec end_time;
2250
2251 if (timeout &&
2252 poll_select_set_timeout(&end_time, timeout->tv_sec,
2253 timeout->tv_nsec))
2254 return -EINVAL;
2255
2256 datagrams = 0;
2257
2258 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2259 if (!sock)
2260 return err;
2261
2262 err = sock_error(sock->sk);
2263 if (err)
2264 goto out_put;
2265
2266 entry = mmsg;
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002267 compat_entry = (struct compat_mmsghdr __user *)mmsg;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002268
2269 while (datagrams < vlen) {
2270 /*
2271 * No need to ask LSM for more than the first datagram.
2272 */
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002273 if (MSG_CMSG_COMPAT & flags) {
2274 err = __sys_recvmsg(sock, (struct msghdr __user *)compat_entry,
Anton Blanchardb9eb8b82011-05-17 15:38:57 -04002275 &msg_sys, flags & ~MSG_WAITFORONE,
2276 datagrams);
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002277 if (err < 0)
2278 break;
2279 err = __put_user(err, &compat_entry->msg_len);
2280 ++compat_entry;
2281 } else {
2282 err = __sys_recvmsg(sock, (struct msghdr __user *)entry,
Anton Blanchardb9eb8b82011-05-17 15:38:57 -04002283 &msg_sys, flags & ~MSG_WAITFORONE,
2284 datagrams);
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002285 if (err < 0)
2286 break;
2287 err = put_user(err, &entry->msg_len);
2288 ++entry;
2289 }
2290
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002291 if (err)
2292 break;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002293 ++datagrams;
2294
Brandon L Black71c5c152010-03-26 16:18:03 +00002295 /* MSG_WAITFORONE turns on MSG_DONTWAIT after one packet */
2296 if (flags & MSG_WAITFORONE)
2297 flags |= MSG_DONTWAIT;
2298
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002299 if (timeout) {
2300 ktime_get_ts(timeout);
2301 *timeout = timespec_sub(end_time, *timeout);
2302 if (timeout->tv_sec < 0) {
2303 timeout->tv_sec = timeout->tv_nsec = 0;
2304 break;
2305 }
2306
2307 /* Timeout, return less than vlen datagrams */
2308 if (timeout->tv_nsec == 0 && timeout->tv_sec == 0)
2309 break;
2310 }
2311
2312 /* Out of band data, return right away */
2313 if (msg_sys.msg_flags & MSG_OOB)
2314 break;
2315 }
2316
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002317 if (err == 0)
Teow Wan Yeea5204d72016-09-21 17:04:58 +08002318 goto out_put;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002319
Teow Wan Yeea5204d72016-09-21 17:04:58 +08002320 if (datagrams == 0) {
2321 datagrams = err;
2322 goto out_put;
2323 }
2324
2325 /*
2326 * We may return less entries than requested (vlen) if the
2327 * sock is non block and there aren't enough datagrams...
2328 */
2329 if (err != -EAGAIN) {
Arnaldo Carvalho de Melo305ac7b2016-03-14 09:56:35 -03002330 /*
2331 * ... or if recvmsg returns an error after we
2332 * received some datagrams, where we record the
2333 * error to return on the next call or if the
2334 * app asks about it using getsockopt(SO_ERROR).
2335 */
2336 sock->sk->sk_err = -err;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002337 }
Teow Wan Yeea5204d72016-09-21 17:04:58 +08002338out_put:
2339 fput_light(sock->file, fput_needed);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002340
Teow Wan Yeea5204d72016-09-21 17:04:58 +08002341 return datagrams;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002342}
2343
2344SYSCALL_DEFINE5(recvmmsg, int, fd, struct mmsghdr __user *, mmsg,
2345 unsigned int, vlen, unsigned int, flags,
2346 struct timespec __user *, timeout)
2347{
2348 int datagrams;
2349 struct timespec timeout_sys;
2350
2351 if (!timeout)
2352 return __sys_recvmmsg(fd, mmsg, vlen, flags, NULL);
2353
2354 if (copy_from_user(&timeout_sys, timeout, sizeof(timeout_sys)))
2355 return -EFAULT;
2356
2357 datagrams = __sys_recvmmsg(fd, mmsg, vlen, flags, &timeout_sys);
2358
2359 if (datagrams > 0 &&
2360 copy_to_user(timeout, &timeout_sys, sizeof(timeout_sys)))
2361 datagrams = -EFAULT;
2362
2363 return datagrams;
2364}
2365
2366#ifdef __ARCH_WANT_SYS_SOCKETCALL
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367/* Argument list sizes for sys_socketcall */
2368#define AL(x) ((x) * sizeof(unsigned long))
Anton Blanchard228e5482011-05-02 20:21:35 +00002369static const unsigned char nargs[21] = {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002370 AL(0), AL(3), AL(3), AL(3), AL(2), AL(3),
2371 AL(3), AL(3), AL(4), AL(4), AL(4), AL(6),
2372 AL(6), AL(2), AL(5), AL(5), AL(3), AL(3),
Anton Blanchard228e5482011-05-02 20:21:35 +00002373 AL(4), AL(5), AL(4)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002374};
2375
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376#undef AL
2377
2378/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002379 * System call vectors.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 *
2381 * Argument checking cleaned up. Saved 20% in size.
2382 * This function doesn't need to set the kernel lock because
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002383 * it is set by the callees.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 */
2385
Heiko Carstens3e0fa652009-01-14 14:14:24 +01002386SYSCALL_DEFINE2(socketcall, int, call, unsigned long __user *, args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387{
2388 unsigned long a[6];
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002389 unsigned long a0, a1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 int err;
Arjan van de Ven47379052009-09-28 12:57:44 -07002391 unsigned int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392
Anton Blanchard228e5482011-05-02 20:21:35 +00002393 if (call < 1 || call > SYS_SENDMMSG)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 return -EINVAL;
2395
Arjan van de Ven47379052009-09-28 12:57:44 -07002396 len = nargs[call];
2397 if (len > sizeof(a))
2398 return -EINVAL;
2399
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 /* copy_from_user should be SMP safe. */
Arjan van de Ven47379052009-09-28 12:57:44 -07002401 if (copy_from_user(a, args, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 return -EFAULT;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002403
Al Virof3298dc2008-12-10 03:16:51 -05002404 audit_socketcall(nargs[call] / sizeof(unsigned long), a);
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002405
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002406 a0 = a[0];
2407 a1 = a[1];
2408
2409 switch (call) {
2410 case SYS_SOCKET:
2411 err = sys_socket(a0, a1, a[2]);
2412 break;
2413 case SYS_BIND:
2414 err = sys_bind(a0, (struct sockaddr __user *)a1, a[2]);
2415 break;
2416 case SYS_CONNECT:
2417 err = sys_connect(a0, (struct sockaddr __user *)a1, a[2]);
2418 break;
2419 case SYS_LISTEN:
2420 err = sys_listen(a0, a1);
2421 break;
2422 case SYS_ACCEPT:
Ulrich Drepperde11def2008-11-19 15:36:14 -08002423 err = sys_accept4(a0, (struct sockaddr __user *)a1,
2424 (int __user *)a[2], 0);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002425 break;
2426 case SYS_GETSOCKNAME:
2427 err =
2428 sys_getsockname(a0, (struct sockaddr __user *)a1,
2429 (int __user *)a[2]);
2430 break;
2431 case SYS_GETPEERNAME:
2432 err =
2433 sys_getpeername(a0, (struct sockaddr __user *)a1,
2434 (int __user *)a[2]);
2435 break;
2436 case SYS_SOCKETPAIR:
2437 err = sys_socketpair(a0, a1, a[2], (int __user *)a[3]);
2438 break;
2439 case SYS_SEND:
2440 err = sys_send(a0, (void __user *)a1, a[2], a[3]);
2441 break;
2442 case SYS_SENDTO:
2443 err = sys_sendto(a0, (void __user *)a1, a[2], a[3],
2444 (struct sockaddr __user *)a[4], a[5]);
2445 break;
2446 case SYS_RECV:
2447 err = sys_recv(a0, (void __user *)a1, a[2], a[3]);
2448 break;
2449 case SYS_RECVFROM:
2450 err = sys_recvfrom(a0, (void __user *)a1, a[2], a[3],
2451 (struct sockaddr __user *)a[4],
2452 (int __user *)a[5]);
2453 break;
2454 case SYS_SHUTDOWN:
2455 err = sys_shutdown(a0, a1);
2456 break;
2457 case SYS_SETSOCKOPT:
2458 err = sys_setsockopt(a0, a1, a[2], (char __user *)a[3], a[4]);
2459 break;
2460 case SYS_GETSOCKOPT:
2461 err =
2462 sys_getsockopt(a0, a1, a[2], (char __user *)a[3],
2463 (int __user *)a[4]);
2464 break;
2465 case SYS_SENDMSG:
2466 err = sys_sendmsg(a0, (struct msghdr __user *)a1, a[2]);
2467 break;
Anton Blanchard228e5482011-05-02 20:21:35 +00002468 case SYS_SENDMMSG:
2469 err = sys_sendmmsg(a0, (struct mmsghdr __user *)a1, a[2], a[3]);
2470 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002471 case SYS_RECVMSG:
2472 err = sys_recvmsg(a0, (struct msghdr __user *)a1, a[2]);
2473 break;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002474 case SYS_RECVMMSG:
2475 err = sys_recvmmsg(a0, (struct mmsghdr __user *)a1, a[2], a[3],
2476 (struct timespec __user *)a[4]);
2477 break;
Ulrich Drepperde11def2008-11-19 15:36:14 -08002478 case SYS_ACCEPT4:
2479 err = sys_accept4(a0, (struct sockaddr __user *)a1,
2480 (int __user *)a[2], a[3]);
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07002481 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002482 default:
2483 err = -EINVAL;
2484 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485 }
2486 return err;
2487}
2488
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002489#endif /* __ARCH_WANT_SYS_SOCKETCALL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002491/**
2492 * sock_register - add a socket protocol handler
2493 * @ops: description of protocol
2494 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495 * This function is called by a protocol handler that wants to
2496 * advertise its address family, and have it linked into the
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002497 * socket interface. The value ops->family coresponds to the
2498 * socket system call protocol family.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499 */
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002500int sock_register(const struct net_proto_family *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501{
2502 int err;
2503
2504 if (ops->family >= NPROTO) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002505 printk(KERN_CRIT "protocol %d >= NPROTO(%d)\n", ops->family,
2506 NPROTO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507 return -ENOBUFS;
2508 }
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002509
2510 spin_lock(&net_family_lock);
Eric Dumazet190683a2010-11-10 10:50:44 +00002511 if (rcu_dereference_protected(net_families[ops->family],
2512 lockdep_is_held(&net_family_lock)))
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002513 err = -EEXIST;
2514 else {
Eric Dumazetcf778b02012-01-12 04:41:32 +00002515 rcu_assign_pointer(net_families[ops->family], ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 err = 0;
2517 }
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002518 spin_unlock(&net_family_lock);
2519
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002520 printk(KERN_INFO "NET: Registered protocol family %d\n", ops->family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521 return err;
2522}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002523EXPORT_SYMBOL(sock_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002525/**
2526 * sock_unregister - remove a protocol handler
2527 * @family: protocol family to remove
2528 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529 * This function is called by a protocol handler that wants to
2530 * remove its address family, and have it unlinked from the
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002531 * new socket creation.
2532 *
2533 * If protocol handler is a module, then it can use module reference
2534 * counts to protect against new references. If protocol handler is not
2535 * a module then it needs to provide its own protection in
2536 * the ops->create routine.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537 */
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002538void sock_unregister(int family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539{
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002540 BUG_ON(family < 0 || family >= NPROTO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002542 spin_lock(&net_family_lock);
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00002543 RCU_INIT_POINTER(net_families[family], NULL);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002544 spin_unlock(&net_family_lock);
2545
2546 synchronize_rcu();
2547
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002548 printk(KERN_INFO "NET: Unregistered protocol family %d\n", family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002550EXPORT_SYMBOL(sock_unregister);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551
Andi Kleen77d76ea2005-12-22 12:43:42 -08002552static int __init sock_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553{
Nick Pigginb3e19d92011-01-07 17:50:11 +11002554 int err;
2555
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002557 * Initialize sock SLAB cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002559
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560 sk_init();
2561
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002563 * Initialize skbuff SLAB cache
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564 */
2565 skb_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566
2567 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002568 * Initialize the protocols module.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569 */
2570
2571 init_inodecache();
Nick Pigginb3e19d92011-01-07 17:50:11 +11002572
2573 err = register_filesystem(&sock_fs_type);
2574 if (err)
2575 goto out_fs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576 sock_mnt = kern_mount(&sock_fs_type);
Nick Pigginb3e19d92011-01-07 17:50:11 +11002577 if (IS_ERR(sock_mnt)) {
2578 err = PTR_ERR(sock_mnt);
2579 goto out_mount;
2580 }
Andi Kleen77d76ea2005-12-22 12:43:42 -08002581
2582 /* The real protocol initialization is performed in later initcalls.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583 */
2584
2585#ifdef CONFIG_NETFILTER
2586 netfilter_init();
2587#endif
David S. Millercbeb3212005-12-22 12:58:55 -08002588
Richard Cochranc1f19b52010-07-17 08:49:36 +00002589#ifdef CONFIG_NETWORK_PHY_TIMESTAMPING
2590 skb_timestamping_init();
2591#endif
2592
Nick Pigginb3e19d92011-01-07 17:50:11 +11002593out:
2594 return err;
2595
2596out_mount:
2597 unregister_filesystem(&sock_fs_type);
2598out_fs:
2599 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600}
2601
Andi Kleen77d76ea2005-12-22 12:43:42 -08002602core_initcall(sock_init); /* early initcall */
2603
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604#ifdef CONFIG_PROC_FS
2605void socket_seq_show(struct seq_file *seq)
2606{
2607 int cpu;
2608 int counter = 0;
2609
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -07002610 for_each_possible_cpu(cpu)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002611 counter += per_cpu(sockets_in_use, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612
2613 /* It can be negative, by the way. 8) */
2614 if (counter < 0)
2615 counter = 0;
2616
2617 seq_printf(seq, "sockets: used %d\n", counter);
2618}
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002619#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620
Shaun Pereira89bbfc92006-03-21 23:58:08 -08002621#ifdef CONFIG_COMPAT
Arnd Bergmann6b960182009-11-06 23:10:54 -08002622static int do_siocgstamp(struct net *net, struct socket *sock,
H. Peter Anvin644595f2012-02-19 17:51:59 -08002623 unsigned int cmd, void __user *up)
Arnd Bergmann7a229382009-11-06 23:00:29 -08002624{
Arnd Bergmann7a229382009-11-06 23:00:29 -08002625 mm_segment_t old_fs = get_fs();
2626 struct timeval ktv;
2627 int err;
2628
2629 set_fs(KERNEL_DS);
Arnd Bergmann6b960182009-11-06 23:10:54 -08002630 err = sock_do_ioctl(net, sock, cmd, (unsigned long)&ktv);
Arnd Bergmann7a229382009-11-06 23:00:29 -08002631 set_fs(old_fs);
H. Peter Anvin644595f2012-02-19 17:51:59 -08002632 if (!err)
Mikulas Patockaa2e4a212012-09-01 12:34:07 -04002633 err = compat_put_timeval(&ktv, up);
H. Peter Anvin644595f2012-02-19 17:51:59 -08002634
Arnd Bergmann7a229382009-11-06 23:00:29 -08002635 return err;
2636}
2637
Arnd Bergmann6b960182009-11-06 23:10:54 -08002638static int do_siocgstampns(struct net *net, struct socket *sock,
H. Peter Anvin644595f2012-02-19 17:51:59 -08002639 unsigned int cmd, void __user *up)
Arnd Bergmann7a229382009-11-06 23:00:29 -08002640{
Arnd Bergmann7a229382009-11-06 23:00:29 -08002641 mm_segment_t old_fs = get_fs();
2642 struct timespec kts;
2643 int err;
2644
2645 set_fs(KERNEL_DS);
Arnd Bergmann6b960182009-11-06 23:10:54 -08002646 err = sock_do_ioctl(net, sock, cmd, (unsigned long)&kts);
Arnd Bergmann7a229382009-11-06 23:00:29 -08002647 set_fs(old_fs);
H. Peter Anvin644595f2012-02-19 17:51:59 -08002648 if (!err)
Mikulas Patockaa2e4a212012-09-01 12:34:07 -04002649 err = compat_put_timespec(&kts, up);
H. Peter Anvin644595f2012-02-19 17:51:59 -08002650
Arnd Bergmann7a229382009-11-06 23:00:29 -08002651 return err;
2652}
2653
Arnd Bergmann6b960182009-11-06 23:10:54 -08002654static int dev_ifname32(struct net *net, struct compat_ifreq __user *uifr32)
Arnd Bergmann7a229382009-11-06 23:00:29 -08002655{
2656 struct ifreq __user *uifr;
2657 int err;
2658
2659 uifr = compat_alloc_user_space(sizeof(struct ifreq));
Arnd Bergmann6b960182009-11-06 23:10:54 -08002660 if (copy_in_user(uifr, uifr32, sizeof(struct compat_ifreq)))
Arnd Bergmann7a229382009-11-06 23:00:29 -08002661 return -EFAULT;
2662
Arnd Bergmann6b960182009-11-06 23:10:54 -08002663 err = dev_ioctl(net, SIOCGIFNAME, uifr);
Arnd Bergmann7a229382009-11-06 23:00:29 -08002664 if (err)
2665 return err;
2666
Arnd Bergmann6b960182009-11-06 23:10:54 -08002667 if (copy_in_user(uifr32, uifr, sizeof(struct compat_ifreq)))
Arnd Bergmann7a229382009-11-06 23:00:29 -08002668 return -EFAULT;
2669
2670 return 0;
2671}
2672
Arnd Bergmann6b960182009-11-06 23:10:54 -08002673static int dev_ifconf(struct net *net, struct compat_ifconf __user *uifc32)
Arnd Bergmann7a229382009-11-06 23:00:29 -08002674{
Arnd Bergmann6b960182009-11-06 23:10:54 -08002675 struct compat_ifconf ifc32;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002676 struct ifconf ifc;
2677 struct ifconf __user *uifc;
Arnd Bergmann6b960182009-11-06 23:10:54 -08002678 struct compat_ifreq __user *ifr32;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002679 struct ifreq __user *ifr;
2680 unsigned int i, j;
2681 int err;
2682
Arnd Bergmann6b960182009-11-06 23:10:54 -08002683 if (copy_from_user(&ifc32, uifc32, sizeof(struct compat_ifconf)))
Arnd Bergmann7a229382009-11-06 23:00:29 -08002684 return -EFAULT;
2685
Mathias Krausedd65bc82012-08-15 11:31:57 +00002686 memset(&ifc, 0, sizeof(ifc));
Arnd Bergmann7a229382009-11-06 23:00:29 -08002687 if (ifc32.ifcbuf == 0) {
2688 ifc32.ifc_len = 0;
2689 ifc.ifc_len = 0;
2690 ifc.ifc_req = NULL;
2691 uifc = compat_alloc_user_space(sizeof(struct ifconf));
2692 } else {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002693 size_t len = ((ifc32.ifc_len / sizeof(struct compat_ifreq)) + 1) *
2694 sizeof(struct ifreq);
Arnd Bergmann7a229382009-11-06 23:00:29 -08002695 uifc = compat_alloc_user_space(sizeof(struct ifconf) + len);
2696 ifc.ifc_len = len;
2697 ifr = ifc.ifc_req = (void __user *)(uifc + 1);
2698 ifr32 = compat_ptr(ifc32.ifcbuf);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002699 for (i = 0; i < ifc32.ifc_len; i += sizeof(struct compat_ifreq)) {
Arnd Bergmann6b960182009-11-06 23:10:54 -08002700 if (copy_in_user(ifr, ifr32, sizeof(struct compat_ifreq)))
Arnd Bergmann7a229382009-11-06 23:00:29 -08002701 return -EFAULT;
2702 ifr++;
2703 ifr32++;
2704 }
2705 }
2706 if (copy_to_user(uifc, &ifc, sizeof(struct ifconf)))
2707 return -EFAULT;
2708
Arnd Bergmann6b960182009-11-06 23:10:54 -08002709 err = dev_ioctl(net, SIOCGIFCONF, uifc);
Arnd Bergmann7a229382009-11-06 23:00:29 -08002710 if (err)
2711 return err;
2712
2713 if (copy_from_user(&ifc, uifc, sizeof(struct ifconf)))
2714 return -EFAULT;
2715
2716 ifr = ifc.ifc_req;
2717 ifr32 = compat_ptr(ifc32.ifcbuf);
2718 for (i = 0, j = 0;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002719 i + sizeof(struct compat_ifreq) <= ifc32.ifc_len && j < ifc.ifc_len;
2720 i += sizeof(struct compat_ifreq), j += sizeof(struct ifreq)) {
2721 if (copy_in_user(ifr32, ifr, sizeof(struct compat_ifreq)))
Arnd Bergmann7a229382009-11-06 23:00:29 -08002722 return -EFAULT;
2723 ifr32++;
2724 ifr++;
2725 }
2726
2727 if (ifc32.ifcbuf == 0) {
2728 /* Translate from 64-bit structure multiple to
2729 * a 32-bit one.
2730 */
2731 i = ifc.ifc_len;
Arnd Bergmann6b960182009-11-06 23:10:54 -08002732 i = ((i / sizeof(struct ifreq)) * sizeof(struct compat_ifreq));
Arnd Bergmann7a229382009-11-06 23:00:29 -08002733 ifc32.ifc_len = i;
2734 } else {
2735 ifc32.ifc_len = i;
2736 }
Arnd Bergmann6b960182009-11-06 23:10:54 -08002737 if (copy_to_user(uifc32, &ifc32, sizeof(struct compat_ifconf)))
Arnd Bergmann7a229382009-11-06 23:00:29 -08002738 return -EFAULT;
2739
2740 return 0;
2741}
2742
Arnd Bergmann6b960182009-11-06 23:10:54 -08002743static int ethtool_ioctl(struct net *net, struct compat_ifreq __user *ifr32)
Arnd Bergmann7a229382009-11-06 23:00:29 -08002744{
Ben Hutchings3a7da392011-03-17 07:34:32 +00002745 struct compat_ethtool_rxnfc __user *compat_rxnfc;
2746 bool convert_in = false, convert_out = false;
2747 size_t buf_size = ALIGN(sizeof(struct ifreq), 8);
2748 struct ethtool_rxnfc __user *rxnfc;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002749 struct ifreq __user *ifr;
Ben Hutchings3a7da392011-03-17 07:34:32 +00002750 u32 rule_cnt = 0, actual_rule_cnt;
2751 u32 ethcmd;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002752 u32 data;
Ben Hutchings3a7da392011-03-17 07:34:32 +00002753 int ret;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002754
2755 if (get_user(data, &ifr32->ifr_ifru.ifru_data))
2756 return -EFAULT;
2757
Ben Hutchings3a7da392011-03-17 07:34:32 +00002758 compat_rxnfc = compat_ptr(data);
2759
2760 if (get_user(ethcmd, &compat_rxnfc->cmd))
Arnd Bergmann7a229382009-11-06 23:00:29 -08002761 return -EFAULT;
2762
Ben Hutchings3a7da392011-03-17 07:34:32 +00002763 /* Most ethtool structures are defined without padding.
2764 * Unfortunately struct ethtool_rxnfc is an exception.
2765 */
2766 switch (ethcmd) {
2767 default:
2768 break;
2769 case ETHTOOL_GRXCLSRLALL:
2770 /* Buffer size is variable */
2771 if (get_user(rule_cnt, &compat_rxnfc->rule_cnt))
2772 return -EFAULT;
2773 if (rule_cnt > KMALLOC_MAX_SIZE / sizeof(u32))
2774 return -ENOMEM;
2775 buf_size += rule_cnt * sizeof(u32);
2776 /* fall through */
2777 case ETHTOOL_GRXRINGS:
2778 case ETHTOOL_GRXCLSRLCNT:
2779 case ETHTOOL_GRXCLSRULE:
Ben Hutchings55664f32012-01-03 12:04:51 +00002780 case ETHTOOL_SRXCLSRLINS:
Ben Hutchings3a7da392011-03-17 07:34:32 +00002781 convert_out = true;
2782 /* fall through */
2783 case ETHTOOL_SRXCLSRLDEL:
Ben Hutchings3a7da392011-03-17 07:34:32 +00002784 buf_size += sizeof(struct ethtool_rxnfc);
2785 convert_in = true;
2786 break;
2787 }
2788
2789 ifr = compat_alloc_user_space(buf_size);
2790 rxnfc = (void *)ifr + ALIGN(sizeof(struct ifreq), 8);
2791
2792 if (copy_in_user(&ifr->ifr_name, &ifr32->ifr_name, IFNAMSIZ))
2793 return -EFAULT;
2794
2795 if (put_user(convert_in ? rxnfc : compat_ptr(data),
2796 &ifr->ifr_ifru.ifru_data))
2797 return -EFAULT;
2798
2799 if (convert_in) {
Alexander Duyck127fe532011-04-08 18:01:59 +00002800 /* We expect there to be holes between fs.m_ext and
Ben Hutchings3a7da392011-03-17 07:34:32 +00002801 * fs.ring_cookie and at the end of fs, but nowhere else.
2802 */
Alexander Duyck127fe532011-04-08 18:01:59 +00002803 BUILD_BUG_ON(offsetof(struct compat_ethtool_rxnfc, fs.m_ext) +
2804 sizeof(compat_rxnfc->fs.m_ext) !=
2805 offsetof(struct ethtool_rxnfc, fs.m_ext) +
2806 sizeof(rxnfc->fs.m_ext));
Ben Hutchings3a7da392011-03-17 07:34:32 +00002807 BUILD_BUG_ON(
2808 offsetof(struct compat_ethtool_rxnfc, fs.location) -
2809 offsetof(struct compat_ethtool_rxnfc, fs.ring_cookie) !=
2810 offsetof(struct ethtool_rxnfc, fs.location) -
2811 offsetof(struct ethtool_rxnfc, fs.ring_cookie));
2812
2813 if (copy_in_user(rxnfc, compat_rxnfc,
Alexander Duyck127fe532011-04-08 18:01:59 +00002814 (void *)(&rxnfc->fs.m_ext + 1) -
Ben Hutchings3a7da392011-03-17 07:34:32 +00002815 (void *)rxnfc) ||
2816 copy_in_user(&rxnfc->fs.ring_cookie,
2817 &compat_rxnfc->fs.ring_cookie,
2818 (void *)(&rxnfc->fs.location + 1) -
2819 (void *)&rxnfc->fs.ring_cookie) ||
2820 copy_in_user(&rxnfc->rule_cnt, &compat_rxnfc->rule_cnt,
2821 sizeof(rxnfc->rule_cnt)))
2822 return -EFAULT;
2823 }
2824
2825 ret = dev_ioctl(net, SIOCETHTOOL, ifr);
2826 if (ret)
2827 return ret;
2828
2829 if (convert_out) {
2830 if (copy_in_user(compat_rxnfc, rxnfc,
Alexander Duyck127fe532011-04-08 18:01:59 +00002831 (const void *)(&rxnfc->fs.m_ext + 1) -
Ben Hutchings3a7da392011-03-17 07:34:32 +00002832 (const void *)rxnfc) ||
2833 copy_in_user(&compat_rxnfc->fs.ring_cookie,
2834 &rxnfc->fs.ring_cookie,
2835 (const void *)(&rxnfc->fs.location + 1) -
2836 (const void *)&rxnfc->fs.ring_cookie) ||
2837 copy_in_user(&compat_rxnfc->rule_cnt, &rxnfc->rule_cnt,
2838 sizeof(rxnfc->rule_cnt)))
2839 return -EFAULT;
2840
2841 if (ethcmd == ETHTOOL_GRXCLSRLALL) {
2842 /* As an optimisation, we only copy the actual
2843 * number of rules that the underlying
2844 * function returned. Since Mallory might
2845 * change the rule count in user memory, we
2846 * check that it is less than the rule count
2847 * originally given (as the user buffer size),
2848 * which has been range-checked.
2849 */
2850 if (get_user(actual_rule_cnt, &rxnfc->rule_cnt))
2851 return -EFAULT;
2852 if (actual_rule_cnt < rule_cnt)
2853 rule_cnt = actual_rule_cnt;
2854 if (copy_in_user(&compat_rxnfc->rule_locs[0],
2855 &rxnfc->rule_locs[0],
2856 rule_cnt * sizeof(u32)))
2857 return -EFAULT;
2858 }
2859 }
2860
2861 return 0;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002862}
2863
Arnd Bergmann7a50a242009-11-08 20:57:03 -08002864static int compat_siocwandev(struct net *net, struct compat_ifreq __user *uifr32)
2865{
2866 void __user *uptr;
2867 compat_uptr_t uptr32;
2868 struct ifreq __user *uifr;
2869
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002870 uifr = compat_alloc_user_space(sizeof(*uifr));
Arnd Bergmann7a50a242009-11-08 20:57:03 -08002871 if (copy_in_user(uifr, uifr32, sizeof(struct compat_ifreq)))
2872 return -EFAULT;
2873
2874 if (get_user(uptr32, &uifr32->ifr_settings.ifs_ifsu))
2875 return -EFAULT;
2876
2877 uptr = compat_ptr(uptr32);
2878
2879 if (put_user(uptr, &uifr->ifr_settings.ifs_ifsu.raw_hdlc))
2880 return -EFAULT;
2881
2882 return dev_ioctl(net, SIOCWANDEV, uifr);
2883}
2884
Arnd Bergmann6b960182009-11-06 23:10:54 -08002885static int bond_ioctl(struct net *net, unsigned int cmd,
2886 struct compat_ifreq __user *ifr32)
Arnd Bergmann7a229382009-11-06 23:00:29 -08002887{
2888 struct ifreq kifr;
2889 struct ifreq __user *uifr;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002890 mm_segment_t old_fs;
2891 int err;
2892 u32 data;
2893 void __user *datap;
2894
2895 switch (cmd) {
2896 case SIOCBONDENSLAVE:
2897 case SIOCBONDRELEASE:
2898 case SIOCBONDSETHWADDR:
2899 case SIOCBONDCHANGEACTIVE:
Arnd Bergmann6b960182009-11-06 23:10:54 -08002900 if (copy_from_user(&kifr, ifr32, sizeof(struct compat_ifreq)))
Arnd Bergmann7a229382009-11-06 23:00:29 -08002901 return -EFAULT;
2902
2903 old_fs = get_fs();
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002904 set_fs(KERNEL_DS);
stephen hemmingerc3f52ae2011-02-23 09:06:48 +00002905 err = dev_ioctl(net, cmd,
2906 (struct ifreq __user __force *) &kifr);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002907 set_fs(old_fs);
Arnd Bergmann7a229382009-11-06 23:00:29 -08002908
2909 return err;
2910 case SIOCBONDSLAVEINFOQUERY:
2911 case SIOCBONDINFOQUERY:
2912 uifr = compat_alloc_user_space(sizeof(*uifr));
2913 if (copy_in_user(&uifr->ifr_name, &ifr32->ifr_name, IFNAMSIZ))
2914 return -EFAULT;
2915
2916 if (get_user(data, &ifr32->ifr_ifru.ifru_data))
2917 return -EFAULT;
2918
2919 datap = compat_ptr(data);
2920 if (put_user(datap, &uifr->ifr_ifru.ifru_data))
2921 return -EFAULT;
2922
Arnd Bergmann6b960182009-11-06 23:10:54 -08002923 return dev_ioctl(net, cmd, uifr);
Arnd Bergmann7a229382009-11-06 23:00:29 -08002924 default:
Linus Torvalds07d106d2012-01-05 15:40:12 -08002925 return -ENOIOCTLCMD;
Joe Perchesccbd6a52010-05-14 10:58:26 +00002926 }
Arnd Bergmann7a229382009-11-06 23:00:29 -08002927}
2928
Arnd Bergmann6b960182009-11-06 23:10:54 -08002929static int siocdevprivate_ioctl(struct net *net, unsigned int cmd,
2930 struct compat_ifreq __user *u_ifreq32)
Arnd Bergmann7a229382009-11-06 23:00:29 -08002931{
2932 struct ifreq __user *u_ifreq64;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002933 char tmp_buf[IFNAMSIZ];
2934 void __user *data64;
2935 u32 data32;
2936
2937 if (copy_from_user(&tmp_buf[0], &(u_ifreq32->ifr_ifrn.ifrn_name[0]),
2938 IFNAMSIZ))
2939 return -EFAULT;
2940 if (__get_user(data32, &u_ifreq32->ifr_ifru.ifru_data))
2941 return -EFAULT;
2942 data64 = compat_ptr(data32);
2943
2944 u_ifreq64 = compat_alloc_user_space(sizeof(*u_ifreq64));
2945
2946 /* Don't check these user accesses, just let that get trapped
2947 * in the ioctl handler instead.
2948 */
2949 if (copy_to_user(&u_ifreq64->ifr_ifrn.ifrn_name[0], &tmp_buf[0],
2950 IFNAMSIZ))
2951 return -EFAULT;
2952 if (__put_user(data64, &u_ifreq64->ifr_ifru.ifru_data))
2953 return -EFAULT;
2954
Arnd Bergmann6b960182009-11-06 23:10:54 -08002955 return dev_ioctl(net, cmd, u_ifreq64);
Arnd Bergmann7a229382009-11-06 23:00:29 -08002956}
2957
Arnd Bergmann6b960182009-11-06 23:10:54 -08002958static int dev_ifsioc(struct net *net, struct socket *sock,
2959 unsigned int cmd, struct compat_ifreq __user *uifr32)
Arnd Bergmann7a229382009-11-06 23:00:29 -08002960{
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002961 struct ifreq __user *uifr;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002962 int err;
2963
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002964 uifr = compat_alloc_user_space(sizeof(*uifr));
2965 if (copy_in_user(uifr, uifr32, sizeof(*uifr32)))
2966 return -EFAULT;
2967
2968 err = sock_do_ioctl(net, sock, cmd, (unsigned long)uifr);
2969
Arnd Bergmann7a229382009-11-06 23:00:29 -08002970 if (!err) {
2971 switch (cmd) {
2972 case SIOCGIFFLAGS:
2973 case SIOCGIFMETRIC:
2974 case SIOCGIFMTU:
2975 case SIOCGIFMEM:
2976 case SIOCGIFHWADDR:
2977 case SIOCGIFINDEX:
2978 case SIOCGIFADDR:
2979 case SIOCGIFBRDADDR:
2980 case SIOCGIFDSTADDR:
2981 case SIOCGIFNETMASK:
Arnd Bergmannfab25322009-11-08 20:56:21 -08002982 case SIOCGIFPFLAGS:
Arnd Bergmann7a229382009-11-06 23:00:29 -08002983 case SIOCGIFTXQLEN:
Arnd Bergmannfab25322009-11-08 20:56:21 -08002984 case SIOCGMIIPHY:
2985 case SIOCGMIIREG:
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002986 if (copy_in_user(uifr32, uifr, sizeof(*uifr32)))
Arnd Bergmann7a229382009-11-06 23:00:29 -08002987 err = -EFAULT;
2988 break;
2989 }
2990 }
2991 return err;
2992}
2993
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002994static int compat_sioc_ifmap(struct net *net, unsigned int cmd,
2995 struct compat_ifreq __user *uifr32)
2996{
2997 struct ifreq ifr;
2998 struct compat_ifmap __user *uifmap32;
2999 mm_segment_t old_fs;
3000 int err;
3001
3002 uifmap32 = &uifr32->ifr_ifru.ifru_map;
3003 err = copy_from_user(&ifr, uifr32, sizeof(ifr.ifr_name));
3004 err |= __get_user(ifr.ifr_map.mem_start, &uifmap32->mem_start);
3005 err |= __get_user(ifr.ifr_map.mem_end, &uifmap32->mem_end);
3006 err |= __get_user(ifr.ifr_map.base_addr, &uifmap32->base_addr);
3007 err |= __get_user(ifr.ifr_map.irq, &uifmap32->irq);
3008 err |= __get_user(ifr.ifr_map.dma, &uifmap32->dma);
3009 err |= __get_user(ifr.ifr_map.port, &uifmap32->port);
3010 if (err)
3011 return -EFAULT;
3012
3013 old_fs = get_fs();
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003014 set_fs(KERNEL_DS);
stephen hemmingerc3f52ae2011-02-23 09:06:48 +00003015 err = dev_ioctl(net, cmd, (void __user __force *)&ifr);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003016 set_fs(old_fs);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003017
3018 if (cmd == SIOCGIFMAP && !err) {
3019 err = copy_to_user(uifr32, &ifr, sizeof(ifr.ifr_name));
3020 err |= __put_user(ifr.ifr_map.mem_start, &uifmap32->mem_start);
3021 err |= __put_user(ifr.ifr_map.mem_end, &uifmap32->mem_end);
3022 err |= __put_user(ifr.ifr_map.base_addr, &uifmap32->base_addr);
3023 err |= __put_user(ifr.ifr_map.irq, &uifmap32->irq);
3024 err |= __put_user(ifr.ifr_map.dma, &uifmap32->dma);
3025 err |= __put_user(ifr.ifr_map.port, &uifmap32->port);
3026 if (err)
3027 err = -EFAULT;
3028 }
3029 return err;
3030}
3031
3032static int compat_siocshwtstamp(struct net *net, struct compat_ifreq __user *uifr32)
3033{
3034 void __user *uptr;
3035 compat_uptr_t uptr32;
3036 struct ifreq __user *uifr;
3037
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003038 uifr = compat_alloc_user_space(sizeof(*uifr));
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003039 if (copy_in_user(uifr, uifr32, sizeof(struct compat_ifreq)))
3040 return -EFAULT;
3041
3042 if (get_user(uptr32, &uifr32->ifr_data))
3043 return -EFAULT;
3044
3045 uptr = compat_ptr(uptr32);
3046
3047 if (put_user(uptr, &uifr->ifr_data))
3048 return -EFAULT;
3049
3050 return dev_ioctl(net, SIOCSHWTSTAMP, uifr);
3051}
3052
Arnd Bergmann7a229382009-11-06 23:00:29 -08003053struct rtentry32 {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003054 u32 rt_pad1;
Arnd Bergmann7a229382009-11-06 23:00:29 -08003055 struct sockaddr rt_dst; /* target address */
3056 struct sockaddr rt_gateway; /* gateway addr (RTF_GATEWAY) */
3057 struct sockaddr rt_genmask; /* target network mask (IP) */
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003058 unsigned short rt_flags;
3059 short rt_pad2;
3060 u32 rt_pad3;
3061 unsigned char rt_tos;
3062 unsigned char rt_class;
3063 short rt_pad4;
3064 short rt_metric; /* +1 for binary compatibility! */
Arnd Bergmann7a229382009-11-06 23:00:29 -08003065 /* char * */ u32 rt_dev; /* forcing the device at add */
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003066 u32 rt_mtu; /* per route MTU/Window */
3067 u32 rt_window; /* Window clamping */
Arnd Bergmann7a229382009-11-06 23:00:29 -08003068 unsigned short rt_irtt; /* Initial RTT */
3069};
3070
3071struct in6_rtmsg32 {
3072 struct in6_addr rtmsg_dst;
3073 struct in6_addr rtmsg_src;
3074 struct in6_addr rtmsg_gateway;
3075 u32 rtmsg_type;
3076 u16 rtmsg_dst_len;
3077 u16 rtmsg_src_len;
3078 u32 rtmsg_metric;
3079 u32 rtmsg_info;
3080 u32 rtmsg_flags;
3081 s32 rtmsg_ifindex;
3082};
3083
Arnd Bergmann6b960182009-11-06 23:10:54 -08003084static int routing_ioctl(struct net *net, struct socket *sock,
3085 unsigned int cmd, void __user *argp)
Arnd Bergmann7a229382009-11-06 23:00:29 -08003086{
3087 int ret;
3088 void *r = NULL;
3089 struct in6_rtmsg r6;
3090 struct rtentry r4;
3091 char devname[16];
3092 u32 rtdev;
3093 mm_segment_t old_fs = get_fs();
3094
Arnd Bergmann6b960182009-11-06 23:10:54 -08003095 if (sock && sock->sk && sock->sk->sk_family == AF_INET6) { /* ipv6 */
3096 struct in6_rtmsg32 __user *ur6 = argp;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003097 ret = copy_from_user(&r6.rtmsg_dst, &(ur6->rtmsg_dst),
Arnd Bergmann7a229382009-11-06 23:00:29 -08003098 3 * sizeof(struct in6_addr));
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003099 ret |= __get_user(r6.rtmsg_type, &(ur6->rtmsg_type));
3100 ret |= __get_user(r6.rtmsg_dst_len, &(ur6->rtmsg_dst_len));
3101 ret |= __get_user(r6.rtmsg_src_len, &(ur6->rtmsg_src_len));
3102 ret |= __get_user(r6.rtmsg_metric, &(ur6->rtmsg_metric));
3103 ret |= __get_user(r6.rtmsg_info, &(ur6->rtmsg_info));
3104 ret |= __get_user(r6.rtmsg_flags, &(ur6->rtmsg_flags));
3105 ret |= __get_user(r6.rtmsg_ifindex, &(ur6->rtmsg_ifindex));
Arnd Bergmann7a229382009-11-06 23:00:29 -08003106
3107 r = (void *) &r6;
3108 } else { /* ipv4 */
Arnd Bergmann6b960182009-11-06 23:10:54 -08003109 struct rtentry32 __user *ur4 = argp;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003110 ret = copy_from_user(&r4.rt_dst, &(ur4->rt_dst),
Arnd Bergmann7a229382009-11-06 23:00:29 -08003111 3 * sizeof(struct sockaddr));
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003112 ret |= __get_user(r4.rt_flags, &(ur4->rt_flags));
3113 ret |= __get_user(r4.rt_metric, &(ur4->rt_metric));
3114 ret |= __get_user(r4.rt_mtu, &(ur4->rt_mtu));
3115 ret |= __get_user(r4.rt_window, &(ur4->rt_window));
3116 ret |= __get_user(r4.rt_irtt, &(ur4->rt_irtt));
3117 ret |= __get_user(rtdev, &(ur4->rt_dev));
Arnd Bergmann7a229382009-11-06 23:00:29 -08003118 if (rtdev) {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003119 ret |= copy_from_user(devname, compat_ptr(rtdev), 15);
stephen hemmingerc3f52ae2011-02-23 09:06:48 +00003120 r4.rt_dev = (char __user __force *)devname;
3121 devname[15] = 0;
Arnd Bergmann7a229382009-11-06 23:00:29 -08003122 } else
3123 r4.rt_dev = NULL;
3124
3125 r = (void *) &r4;
3126 }
3127
3128 if (ret) {
3129 ret = -EFAULT;
3130 goto out;
3131 }
3132
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003133 set_fs(KERNEL_DS);
Arnd Bergmann6b960182009-11-06 23:10:54 -08003134 ret = sock_do_ioctl(net, sock, cmd, (unsigned long) r);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003135 set_fs(old_fs);
Arnd Bergmann7a229382009-11-06 23:00:29 -08003136
3137out:
Arnd Bergmann7a229382009-11-06 23:00:29 -08003138 return ret;
3139}
3140
3141/* Since old style bridge ioctl's endup using SIOCDEVPRIVATE
3142 * for some operations; this forces use of the newer bridge-utils that
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003143 * use compatible ioctls
Arnd Bergmann7a229382009-11-06 23:00:29 -08003144 */
Arnd Bergmann6b960182009-11-06 23:10:54 -08003145static int old_bridge_ioctl(compat_ulong_t __user *argp)
Arnd Bergmann7a229382009-11-06 23:00:29 -08003146{
Arnd Bergmann6b960182009-11-06 23:10:54 -08003147 compat_ulong_t tmp;
Arnd Bergmann7a229382009-11-06 23:00:29 -08003148
Arnd Bergmann6b960182009-11-06 23:10:54 -08003149 if (get_user(tmp, argp))
Arnd Bergmann7a229382009-11-06 23:00:29 -08003150 return -EFAULT;
3151 if (tmp == BRCTL_GET_VERSION)
3152 return BRCTL_VERSION + 1;
3153 return -EINVAL;
3154}
3155
Arnd Bergmann6b960182009-11-06 23:10:54 -08003156static int compat_sock_ioctl_trans(struct file *file, struct socket *sock,
3157 unsigned int cmd, unsigned long arg)
3158{
3159 void __user *argp = compat_ptr(arg);
3160 struct sock *sk = sock->sk;
3161 struct net *net = sock_net(sk);
Arnd Bergmann7a229382009-11-06 23:00:29 -08003162
Arnd Bergmann6b960182009-11-06 23:10:54 -08003163 if (cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15))
3164 return siocdevprivate_ioctl(net, cmd, argp);
Arnd Bergmann7a229382009-11-06 23:00:29 -08003165
Arnd Bergmann6b960182009-11-06 23:10:54 -08003166 switch (cmd) {
3167 case SIOCSIFBR:
3168 case SIOCGIFBR:
3169 return old_bridge_ioctl(argp);
3170 case SIOCGIFNAME:
3171 return dev_ifname32(net, argp);
3172 case SIOCGIFCONF:
3173 return dev_ifconf(net, argp);
3174 case SIOCETHTOOL:
3175 return ethtool_ioctl(net, argp);
Arnd Bergmann7a50a242009-11-08 20:57:03 -08003176 case SIOCWANDEV:
3177 return compat_siocwandev(net, argp);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003178 case SIOCGIFMAP:
3179 case SIOCSIFMAP:
3180 return compat_sioc_ifmap(net, cmd, argp);
Arnd Bergmann6b960182009-11-06 23:10:54 -08003181 case SIOCBONDENSLAVE:
3182 case SIOCBONDRELEASE:
3183 case SIOCBONDSETHWADDR:
3184 case SIOCBONDSLAVEINFOQUERY:
3185 case SIOCBONDINFOQUERY:
3186 case SIOCBONDCHANGEACTIVE:
3187 return bond_ioctl(net, cmd, argp);
3188 case SIOCADDRT:
3189 case SIOCDELRT:
3190 return routing_ioctl(net, sock, cmd, argp);
3191 case SIOCGSTAMP:
3192 return do_siocgstamp(net, sock, cmd, argp);
3193 case SIOCGSTAMPNS:
3194 return do_siocgstampns(net, sock, cmd, argp);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003195 case SIOCSHWTSTAMP:
3196 return compat_siocshwtstamp(net, argp);
Arnd Bergmann7a229382009-11-06 23:00:29 -08003197
Arnd Bergmann6b960182009-11-06 23:10:54 -08003198 case FIOSETOWN:
3199 case SIOCSPGRP:
3200 case FIOGETOWN:
3201 case SIOCGPGRP:
3202 case SIOCBRADDBR:
3203 case SIOCBRDELBR:
3204 case SIOCGIFVLAN:
3205 case SIOCSIFVLAN:
3206 case SIOCADDDLCI:
3207 case SIOCDELDLCI:
3208 return sock_ioctl(file, cmd, arg);
3209
3210 case SIOCGIFFLAGS:
3211 case SIOCSIFFLAGS:
3212 case SIOCGIFMETRIC:
3213 case SIOCSIFMETRIC:
3214 case SIOCGIFMTU:
3215 case SIOCSIFMTU:
3216 case SIOCGIFMEM:
3217 case SIOCSIFMEM:
3218 case SIOCGIFHWADDR:
3219 case SIOCSIFHWADDR:
3220 case SIOCADDMULTI:
3221 case SIOCDELMULTI:
3222 case SIOCGIFINDEX:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003223 case SIOCGIFADDR:
3224 case SIOCSIFADDR:
3225 case SIOCSIFHWBROADCAST:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003226 case SIOCDIFADDR:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003227 case SIOCGIFBRDADDR:
3228 case SIOCSIFBRDADDR:
3229 case SIOCGIFDSTADDR:
3230 case SIOCSIFDSTADDR:
3231 case SIOCGIFNETMASK:
3232 case SIOCSIFNETMASK:
3233 case SIOCSIFPFLAGS:
3234 case SIOCGIFPFLAGS:
3235 case SIOCGIFTXQLEN:
3236 case SIOCSIFTXQLEN:
3237 case SIOCBRADDIF:
3238 case SIOCBRDELIF:
Arnd Bergmann9177efd2009-11-06 08:09:09 +00003239 case SIOCSIFNAME:
3240 case SIOCGMIIPHY:
3241 case SIOCGMIIREG:
3242 case SIOCSMIIREG:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003243 return dev_ifsioc(net, sock, cmd, argp);
Arnd Bergmann9177efd2009-11-06 08:09:09 +00003244
Arnd Bergmann6b960182009-11-06 23:10:54 -08003245 case SIOCSARP:
3246 case SIOCGARP:
3247 case SIOCDARP:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003248 case SIOCATMARK:
Arnd Bergmann9177efd2009-11-06 08:09:09 +00003249 return sock_do_ioctl(net, sock, cmd, arg);
3250 }
3251
Arnd Bergmann6b960182009-11-06 23:10:54 -08003252 return -ENOIOCTLCMD;
3253}
Arnd Bergmann7a229382009-11-06 23:00:29 -08003254
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003255static long compat_sock_ioctl(struct file *file, unsigned cmd,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07003256 unsigned long arg)
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003257{
3258 struct socket *sock = file->private_data;
3259 int ret = -ENOIOCTLCMD;
David S. Miller87de87d2008-06-03 09:14:03 -07003260 struct sock *sk;
3261 struct net *net;
3262
3263 sk = sock->sk;
3264 net = sock_net(sk);
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003265
3266 if (sock->ops->compat_ioctl)
3267 ret = sock->ops->compat_ioctl(sock, cmd, arg);
3268
David S. Miller87de87d2008-06-03 09:14:03 -07003269 if (ret == -ENOIOCTLCMD &&
3270 (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST))
3271 ret = compat_wext_handle_ioctl(net, cmd, arg);
3272
Arnd Bergmann6b960182009-11-06 23:10:54 -08003273 if (ret == -ENOIOCTLCMD)
3274 ret = compat_sock_ioctl_trans(file, sock, cmd, arg);
3275
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003276 return ret;
3277}
3278#endif
3279
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003280int kernel_bind(struct socket *sock, struct sockaddr *addr, int addrlen)
3281{
3282 return sock->ops->bind(sock, addr, addrlen);
3283}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003284EXPORT_SYMBOL(kernel_bind);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003285
3286int kernel_listen(struct socket *sock, int backlog)
3287{
3288 return sock->ops->listen(sock, backlog);
3289}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003290EXPORT_SYMBOL(kernel_listen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003291
3292int kernel_accept(struct socket *sock, struct socket **newsock, int flags)
3293{
3294 struct sock *sk = sock->sk;
3295 int err;
3296
3297 err = sock_create_lite(sk->sk_family, sk->sk_type, sk->sk_protocol,
3298 newsock);
3299 if (err < 0)
3300 goto done;
3301
3302 err = sock->ops->accept(sock, *newsock, flags);
3303 if (err < 0) {
3304 sock_release(*newsock);
Tony Battersbyfa8705b2007-10-10 21:09:04 -07003305 *newsock = NULL;
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003306 goto done;
3307 }
3308
3309 (*newsock)->ops = sock->ops;
Wei Yongjun1b085342008-12-18 19:35:10 -08003310 __module_get((*newsock)->ops->owner);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003311
3312done:
3313 return err;
3314}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003315EXPORT_SYMBOL(kernel_accept);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003316
3317int kernel_connect(struct socket *sock, struct sockaddr *addr, int addrlen,
YOSHIFUJI Hideaki4768fbc2007-02-09 23:25:31 +09003318 int flags)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003319{
3320 return sock->ops->connect(sock, addr, addrlen, flags);
3321}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003322EXPORT_SYMBOL(kernel_connect);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003323
3324int kernel_getsockname(struct socket *sock, struct sockaddr *addr,
3325 int *addrlen)
3326{
3327 return sock->ops->getname(sock, addr, addrlen, 0);
3328}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003329EXPORT_SYMBOL(kernel_getsockname);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003330
3331int kernel_getpeername(struct socket *sock, struct sockaddr *addr,
3332 int *addrlen)
3333{
3334 return sock->ops->getname(sock, addr, addrlen, 1);
3335}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003336EXPORT_SYMBOL(kernel_getpeername);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003337
3338int kernel_getsockopt(struct socket *sock, int level, int optname,
3339 char *optval, int *optlen)
3340{
3341 mm_segment_t oldfs = get_fs();
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003342 char __user *uoptval;
3343 int __user *uoptlen;
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003344 int err;
3345
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003346 uoptval = (char __user __force *) optval;
3347 uoptlen = (int __user __force *) optlen;
3348
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003349 set_fs(KERNEL_DS);
3350 if (level == SOL_SOCKET)
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003351 err = sock_getsockopt(sock, level, optname, uoptval, uoptlen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003352 else
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003353 err = sock->ops->getsockopt(sock, level, optname, uoptval,
3354 uoptlen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003355 set_fs(oldfs);
3356 return err;
3357}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003358EXPORT_SYMBOL(kernel_getsockopt);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003359
3360int kernel_setsockopt(struct socket *sock, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07003361 char *optval, unsigned int optlen)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003362{
3363 mm_segment_t oldfs = get_fs();
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003364 char __user *uoptval;
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003365 int err;
3366
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003367 uoptval = (char __user __force *) optval;
3368
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003369 set_fs(KERNEL_DS);
3370 if (level == SOL_SOCKET)
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003371 err = sock_setsockopt(sock, level, optname, uoptval, optlen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003372 else
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003373 err = sock->ops->setsockopt(sock, level, optname, uoptval,
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003374 optlen);
3375 set_fs(oldfs);
3376 return err;
3377}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003378EXPORT_SYMBOL(kernel_setsockopt);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003379
3380int kernel_sendpage(struct socket *sock, struct page *page, int offset,
3381 size_t size, int flags)
3382{
Herbert Xuf8451722010-05-24 00:12:34 -07003383 sock_update_classid(sock->sk);
3384
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003385 if (sock->ops->sendpage)
3386 return sock->ops->sendpage(sock, page, offset, size, flags);
3387
3388 return sock_no_sendpage(sock, page, offset, size, flags);
3389}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003390EXPORT_SYMBOL(kernel_sendpage);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003391
3392int kernel_sock_ioctl(struct socket *sock, int cmd, unsigned long arg)
3393{
3394 mm_segment_t oldfs = get_fs();
3395 int err;
3396
3397 set_fs(KERNEL_DS);
3398 err = sock->ops->ioctl(sock, cmd, arg);
3399 set_fs(oldfs);
3400
3401 return err;
3402}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003403EXPORT_SYMBOL(kernel_sock_ioctl);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003404
Trond Myklebust91cf45f2007-11-12 18:10:39 -08003405int kernel_sock_shutdown(struct socket *sock, enum sock_shutdown_cmd how)
3406{
3407 return sock->ops->shutdown(sock, how);
3408}
Trond Myklebust91cf45f2007-11-12 18:10:39 -08003409EXPORT_SYMBOL(kernel_sock_shutdown);
Harout Hedeshianff12c742014-03-04 07:31:47 -07003410
3411int sockev_register_notify(struct notifier_block *nb)
3412{
3413 return blocking_notifier_chain_register(&sockev_notifier_list, nb);
3414}
3415EXPORT_SYMBOL(sockev_register_notify);
3416
3417int sockev_unregister_notify(struct notifier_block *nb)
3418{
3419 return blocking_notifier_chain_unregister(&sockev_notifier_list, nb);
3420}
3421EXPORT_SYMBOL(sockev_unregister_notify);