blob: 3eec3f76b49c5a8b9035430463231fa7a72a660c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * NET An implementation of the SOCKET network access protocol.
3 *
4 * Version: @(#)socket.c 1.1.93 18/02/95
5 *
6 * Authors: Orest Zborowski, <obz@Kodak.COM>
Jesper Juhl02c30a82005-05-05 16:16:16 -07007 * Ross Biro
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
9 *
10 * Fixes:
11 * Anonymous : NOTSOCK/BADF cleanup. Error fix in
12 * shutdown()
13 * Alan Cox : verify_area() fixes
14 * Alan Cox : Removed DDI
15 * Jonathan Kamens : SOCK_DGRAM reconnect bug
16 * Alan Cox : Moved a load of checks to the very
17 * top level.
18 * Alan Cox : Move address structures to/from user
19 * mode above the protocol layers.
20 * Rob Janssen : Allow 0 length sends.
21 * Alan Cox : Asynchronous I/O support (cribbed from the
22 * tty drivers).
23 * Niibe Yutaka : Asynchronous I/O for writes (4.4BSD style)
24 * Jeff Uphoff : Made max number of sockets command-line
25 * configurable.
26 * Matti Aarnio : Made the number of sockets dynamic,
27 * to be allocated when needed, and mr.
28 * Uphoff's max is used as max to be
29 * allowed to allocate.
30 * Linus : Argh. removed all the socket allocation
31 * altogether: it's in the inode now.
32 * Alan Cox : Made sock_alloc()/sock_release() public
33 * for NetROM and future kernel nfsd type
34 * stuff.
35 * Alan Cox : sendmsg/recvmsg basics.
36 * Tom Dyas : Export net symbols.
37 * Marcin Dalecki : Fixed problems with CONFIG_NET="n".
38 * Alan Cox : Added thread locking to sys_* calls
39 * for sockets. May have errors at the
40 * moment.
41 * Kevin Buhr : Fixed the dumb errors in the above.
42 * Andi Kleen : Some small cleanups, optimizations,
43 * and fixed a copy_from_user() bug.
44 * Tigran Aivazian : sys_send(args) calls sys_sendto(args, NULL, 0)
Stephen Hemminger89bddce2006-09-01 00:19:31 -070045 * Tigran Aivazian : Made listen(2) backlog sanity checks
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 * protocol-independent
47 *
48 *
49 * This program is free software; you can redistribute it and/or
50 * modify it under the terms of the GNU General Public License
51 * as published by the Free Software Foundation; either version
52 * 2 of the License, or (at your option) any later version.
53 *
54 *
55 * This module is effectively the top level interface to the BSD socket
Stephen Hemminger89bddce2006-09-01 00:19:31 -070056 * paradigm.
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 *
58 * Based upon Swansea University Computer Society NET3.039
59 */
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#include <linux/socket.h>
63#include <linux/file.h>
64#include <linux/net.h>
65#include <linux/interrupt.h>
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -070066#include <linux/thread_info.h>
Stephen Hemminger55737fd2006-09-01 00:23:39 -070067#include <linux/rcupdate.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#include <linux/netdevice.h>
69#include <linux/proc_fs.h>
70#include <linux/seq_file.h>
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -080071#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#include <linux/if_bridge.h>
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -030073#include <linux/if_frad.h>
74#include <linux/if_vlan.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070075#include <linux/init.h>
76#include <linux/poll.h>
77#include <linux/cache.h>
78#include <linux/module.h>
79#include <linux/highmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070080#include <linux/mount.h>
81#include <linux/security.h>
82#include <linux/syscalls.h>
83#include <linux/compat.h>
84#include <linux/kmod.h>
David Woodhouse3ec3b2f2005-05-17 12:08:48 +010085#include <linux/audit.h>
Adrian Bunkd86b5e02006-01-21 00:46:55 +010086#include <linux/wireless.h>
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -070087#include <linux/nsproxy.h>
Nick Black1fd7317d2009-09-22 16:43:33 -070088#include <linux/magic.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090089#include <linux/slab.h>
Masatake YAMATO600e1772012-08-29 10:44:29 +000090#include <linux/xattr.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>
Eliezer Tamir06021292013-06-10 11:39:50 +0300107#include <net/ll_poll.h>
108
109#ifdef CONFIG_NET_LL_RX_POLL
Eliezer Tamireb6db622013-06-14 16:33:25 +0300110unsigned int sysctl_net_ll_poll __read_mostly;
Eliezer Tamir06021292013-06-10 11:39:50 +0300111#endif
Arnd Bergmann6b960182009-11-06 23:10:54 -0800112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113static int sock_no_open(struct inode *irrelevant, struct file *dontcare);
Badari Pulavarty027445c2006-09-30 23:28:46 -0700114static ssize_t sock_aio_read(struct kiocb *iocb, const struct iovec *iov,
115 unsigned long nr_segs, loff_t pos);
116static ssize_t sock_aio_write(struct kiocb *iocb, const struct iovec *iov,
117 unsigned long nr_segs, loff_t pos);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700118static int sock_mmap(struct file *file, struct vm_area_struct *vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120static int sock_close(struct inode *inode, struct file *file);
121static unsigned int sock_poll(struct file *file,
122 struct poll_table_struct *wait);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700123static long sock_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800124#ifdef CONFIG_COMPAT
125static long compat_sock_ioctl(struct file *file,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700126 unsigned int cmd, unsigned long arg);
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800127#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128static int sock_fasync(int fd, struct file *filp, int on);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129static ssize_t sock_sendpage(struct file *file, struct page *page,
130 int offset, size_t size, loff_t *ppos, int more);
Jens Axboe9c55e012007-11-06 23:30:13 -0800131static ssize_t sock_splice_read(struct file *file, loff_t *ppos,
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700132 struct pipe_inode_info *pipe, size_t len,
Jens Axboe9c55e012007-11-06 23:30:13 -0800133 unsigned int flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135/*
136 * Socket files have a set of 'special' operations as well as the generic file ones. These don't appear
137 * in the operation structures but are done directly via the socketcall() multiplexor.
138 */
139
Arjan van de Venda7071d2007-02-12 00:55:36 -0800140static const struct file_operations socket_file_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 .owner = THIS_MODULE,
142 .llseek = no_llseek,
143 .aio_read = sock_aio_read,
144 .aio_write = sock_aio_write,
145 .poll = sock_poll,
146 .unlocked_ioctl = sock_ioctl,
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800147#ifdef CONFIG_COMPAT
148 .compat_ioctl = compat_sock_ioctl,
149#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 .mmap = sock_mmap,
151 .open = sock_no_open, /* special open code to disallow open via /proc */
152 .release = sock_close,
153 .fasync = sock_fasync,
Jens Axboe5274f052006-03-30 15:15:30 +0200154 .sendpage = sock_sendpage,
155 .splice_write = generic_splice_sendpage,
Jens Axboe9c55e012007-11-06 23:30:13 -0800156 .splice_read = sock_splice_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157};
158
159/*
160 * The protocol list. Each protocol is registered in here.
161 */
162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163static DEFINE_SPINLOCK(net_family_lock);
Eric Dumazet190683a2010-11-10 10:50:44 +0000164static const struct net_proto_family __rcu *net_families[NPROTO] __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166/*
167 * Statistics counters of the socket lists
168 */
169
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700170static DEFINE_PER_CPU(int, sockets_in_use);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
172/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700173 * Support routines.
174 * Move socket addresses back and forth across the kernel/user
175 * divide and look after the messy bits.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 */
177
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178/**
179 * move_addr_to_kernel - copy a socket address into kernel space
180 * @uaddr: Address in user space
181 * @kaddr: Address in kernel space
182 * @ulen: Length in user space
183 *
184 * The address is copied into kernel space. If the provided address is
185 * too long an error code of -EINVAL is returned. If the copy gives
186 * invalid addresses -EFAULT is returned. On a success 0 is returned.
187 */
188
Maciej Żenczykowski43db3622012-03-11 12:51:50 +0000189int move_addr_to_kernel(void __user *uaddr, int ulen, struct sockaddr_storage *kaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190{
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -0700191 if (ulen < 0 || ulen > sizeof(struct sockaddr_storage))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700193 if (ulen == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 return 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700195 if (copy_from_user(kaddr, uaddr, ulen))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 return -EFAULT;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +0100197 return audit_sockaddr(ulen, kaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198}
199
200/**
201 * move_addr_to_user - copy an address to user space
202 * @kaddr: kernel space address
203 * @klen: length of address in kernel
204 * @uaddr: user space address
205 * @ulen: pointer to user length field
206 *
207 * The value pointed to by ulen on entry is the buffer length available.
208 * This is overwritten with the buffer space used. -EINVAL is returned
209 * if an overlong buffer is specified or a negative buffer size. -EFAULT
210 * is returned if either the buffer or the length field are not
211 * accessible.
212 * After copying the data up to the limit the user specifies, the true
213 * length of the data is written over the length limit the user
214 * specified. Zero is returned for a success.
215 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700216
Maciej Żenczykowski43db3622012-03-11 12:51:50 +0000217static int move_addr_to_user(struct sockaddr_storage *kaddr, int klen,
stephen hemminger11165f12010-10-18 14:27:29 +0000218 void __user *uaddr, int __user *ulen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219{
220 int err;
221 int len;
222
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700223 err = get_user(len, ulen);
224 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 return err;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700226 if (len > klen)
227 len = klen;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -0700228 if (len < 0 || len > sizeof(struct sockaddr_storage))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700230 if (len) {
Steve Grubbd6fe3942006-03-30 12:20:22 -0500231 if (audit_sockaddr(klen, kaddr))
232 return -ENOMEM;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700233 if (copy_to_user(uaddr, kaddr, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 return -EFAULT;
235 }
236 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700237 * "fromlen shall refer to the value before truncation.."
238 * 1003.1g
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 */
240 return __put_user(klen, ulen);
241}
242
Christoph Lametere18b8902006-12-06 20:33:20 -0800243static struct kmem_cache *sock_inode_cachep __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
245static struct inode *sock_alloc_inode(struct super_block *sb)
246{
247 struct socket_alloc *ei;
Eric Dumazeteaefd112011-02-18 03:26:36 +0000248 struct socket_wq *wq;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700249
Christoph Lametere94b1762006-12-06 20:33:17 -0800250 ei = kmem_cache_alloc(sock_inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 if (!ei)
252 return NULL;
Eric Dumazeteaefd112011-02-18 03:26:36 +0000253 wq = kmalloc(sizeof(*wq), GFP_KERNEL);
254 if (!wq) {
Eric Dumazet43815482010-04-29 11:01:49 +0000255 kmem_cache_free(sock_inode_cachep, ei);
256 return NULL;
257 }
Eric Dumazeteaefd112011-02-18 03:26:36 +0000258 init_waitqueue_head(&wq->wait);
259 wq->fasync_list = NULL;
260 RCU_INIT_POINTER(ei->socket.wq, wq);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700261
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 ei->socket.state = SS_UNCONNECTED;
263 ei->socket.flags = 0;
264 ei->socket.ops = NULL;
265 ei->socket.sk = NULL;
266 ei->socket.file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
268 return &ei->vfs_inode;
269}
270
271static void sock_destroy_inode(struct inode *inode)
272{
Eric Dumazet43815482010-04-29 11:01:49 +0000273 struct socket_alloc *ei;
Eric Dumazeteaefd112011-02-18 03:26:36 +0000274 struct socket_wq *wq;
Eric Dumazet43815482010-04-29 11:01:49 +0000275
276 ei = container_of(inode, struct socket_alloc, vfs_inode);
Eric Dumazeteaefd112011-02-18 03:26:36 +0000277 wq = rcu_dereference_protected(ei->socket.wq, 1);
Lai Jiangshan61845222011-03-18 12:10:25 +0800278 kfree_rcu(wq, rcu);
Eric Dumazet43815482010-04-29 11:01:49 +0000279 kmem_cache_free(sock_inode_cachep, ei);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280}
281
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700282static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283{
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700284 struct socket_alloc *ei = (struct socket_alloc *)foo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
Christoph Lametera35afb82007-05-16 22:10:57 -0700286 inode_init_once(&ei->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287}
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700288
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289static int init_inodecache(void)
290{
291 sock_inode_cachep = kmem_cache_create("sock_inode_cache",
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700292 sizeof(struct socket_alloc),
293 0,
294 (SLAB_HWCACHE_ALIGN |
295 SLAB_RECLAIM_ACCOUNT |
296 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +0900297 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 if (sock_inode_cachep == NULL)
299 return -ENOMEM;
300 return 0;
301}
302
Alexey Dobriyanb87221d2009-09-21 17:01:09 -0700303static const struct super_operations sockfs_ops = {
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700304 .alloc_inode = sock_alloc_inode,
305 .destroy_inode = sock_destroy_inode,
306 .statfs = simple_statfs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307};
308
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700309/*
310 * sockfs_dname() is called from d_path().
311 */
312static char *sockfs_dname(struct dentry *dentry, char *buffer, int buflen)
313{
314 return dynamic_dname(dentry, buffer, buflen, "socket:[%lu]",
315 dentry->d_inode->i_ino);
316}
317
Al Viro3ba13d12009-02-20 06:02:22 +0000318static const struct dentry_operations sockfs_dentry_operations = {
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700319 .d_dname = sockfs_dname,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320};
321
Al Viroc74a1cb2011-01-12 16:59:34 -0500322static struct dentry *sockfs_mount(struct file_system_type *fs_type,
323 int flags, const char *dev_name, void *data)
324{
325 return mount_pseudo(fs_type, "socket:", &sockfs_ops,
326 &sockfs_dentry_operations, SOCKFS_MAGIC);
327}
328
329static struct vfsmount *sock_mnt __read_mostly;
330
331static struct file_system_type sock_fs_type = {
332 .name = "sockfs",
333 .mount = sockfs_mount,
334 .kill_sb = kill_anon_super,
335};
336
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337/*
338 * Obtains the first available file descriptor and sets it up for use.
339 *
David S. Miller39d8c1b2006-03-20 17:13:49 -0800340 * These functions create file structures and maps them to fd space
341 * of the current process. On success it returns file descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 * and file struct implicitly stored in sock->file.
343 * Note that another thread may close file descriptor before we return
344 * from this function. We use the fact that now we do not refer
345 * to socket after mapping. If one day we will need it, this
346 * function will increment ref. count on file by 1.
347 *
348 * In any case returned fd MAY BE not valid!
349 * This race condition is unavoidable
350 * with shared fd spaces, we cannot solve it inside kernel,
351 * but we take care of internal coherence yet.
352 */
353
Linus Torvaldsaab174f2012-10-02 20:25:04 -0700354struct file *sock_alloc_file(struct socket *sock, int flags, const char *dname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355{
Al Viro7cbe66b2009-08-05 19:59:08 +0400356 struct qstr name = { .name = "" };
Al Viro2c48b9c2009-08-09 00:52:35 +0400357 struct path path;
Al Viro7cbe66b2009-08-05 19:59:08 +0400358 struct file *file;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800359
Masatake YAMATO600e1772012-08-29 10:44:29 +0000360 if (dname) {
361 name.name = dname;
362 name.len = strlen(name.name);
363 } else if (sock->sk) {
364 name.name = sock->sk->sk_prot_creator->name;
365 name.len = strlen(name.name);
366 }
Nick Piggin4b936882011-01-07 17:50:07 +1100367 path.dentry = d_alloc_pseudo(sock_mnt->mnt_sb, &name);
Al Viro28407632012-08-17 23:54:15 -0400368 if (unlikely(!path.dentry))
369 return ERR_PTR(-ENOMEM);
Al Viro2c48b9c2009-08-09 00:52:35 +0400370 path.mnt = mntget(sock_mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Al Viro2c48b9c2009-08-09 00:52:35 +0400372 d_instantiate(path.dentry, SOCK_INODE(sock));
Al Virocc3808f2009-08-06 09:43:59 +0400373 SOCK_INODE(sock)->i_fop = &socket_file_ops;
374
Al Viro2c48b9c2009-08-09 00:52:35 +0400375 file = alloc_file(&path, FMODE_READ | FMODE_WRITE,
Al Virocc3808f2009-08-06 09:43:59 +0400376 &socket_file_ops);
Anatol Pomozov39b65252012-09-12 20:11:55 -0700377 if (unlikely(IS_ERR(file))) {
Al Virocc3808f2009-08-06 09:43:59 +0400378 /* drop dentry, keep inode */
Al Viro7de9c6ee2010-10-23 11:11:40 -0400379 ihold(path.dentry->d_inode);
Al Viro2c48b9c2009-08-09 00:52:35 +0400380 path_put(&path);
Anatol Pomozov39b65252012-09-12 20:11:55 -0700381 return file;
Al Virocc3808f2009-08-06 09:43:59 +0400382 }
David S. Miller39d8c1b2006-03-20 17:13:49 -0800383
384 sock->file = file;
Ulrich Drepper77d27202008-07-23 21:29:35 -0700385 file->f_flags = O_RDWR | (flags & O_NONBLOCK);
David S. Miller39d8c1b2006-03-20 17:13:49 -0800386 file->private_data = sock;
Al Viro28407632012-08-17 23:54:15 -0400387 return file;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800388}
Al Viro56b31d12012-08-18 00:25:51 -0400389EXPORT_SYMBOL(sock_alloc_file);
David S. Miller39d8c1b2006-03-20 17:13:49 -0800390
Al Viro56b31d12012-08-18 00:25:51 -0400391static int sock_map_fd(struct socket *sock, int flags)
David S. Miller39d8c1b2006-03-20 17:13:49 -0800392{
393 struct file *newfile;
Al Viro28407632012-08-17 23:54:15 -0400394 int fd = get_unused_fd_flags(flags);
395 if (unlikely(fd < 0))
396 return fd;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800397
Linus Torvaldsaab174f2012-10-02 20:25:04 -0700398 newfile = sock_alloc_file(sock, flags, NULL);
Al Viro28407632012-08-17 23:54:15 -0400399 if (likely(!IS_ERR(newfile))) {
David S. Miller39d8c1b2006-03-20 17:13:49 -0800400 fd_install(fd, newfile);
Al Viro28407632012-08-17 23:54:15 -0400401 return fd;
402 }
Al Viro7cbe66b2009-08-05 19:59:08 +0400403
Al Viro28407632012-08-17 23:54:15 -0400404 put_unused_fd(fd);
405 return PTR_ERR(newfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406}
407
John Fastabend406a3c62012-07-20 10:39:25 +0000408struct socket *sock_from_file(struct file *file, int *err)
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800409{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800410 if (file->f_op == &socket_file_ops)
411 return file->private_data; /* set in sock_map_fd */
412
Eric Dumazet23bb80d2007-02-08 14:59:57 -0800413 *err = -ENOTSOCK;
414 return NULL;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800415}
John Fastabend406a3c62012-07-20 10:39:25 +0000416EXPORT_SYMBOL(sock_from_file);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800417
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418/**
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700419 * sockfd_lookup - Go from a file number to its socket slot
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 * @fd: file handle
421 * @err: pointer to an error code return
422 *
423 * The file handle passed in is locked and the socket it is bound
424 * too is returned. If an error occurs the err pointer is overwritten
425 * with a negative errno code and NULL is returned. The function checks
426 * for both invalid handles and passing a handle which is not a socket.
427 *
428 * On a success the socket object pointer is returned.
429 */
430
431struct socket *sockfd_lookup(int fd, int *err)
432{
433 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 struct socket *sock;
435
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700436 file = fget(fd);
437 if (!file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 *err = -EBADF;
439 return NULL;
440 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700441
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800442 sock = sock_from_file(file, err);
443 if (!sock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 fput(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 return sock;
446}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700447EXPORT_SYMBOL(sockfd_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800449static struct socket *sockfd_lookup_light(int fd, int *err, int *fput_needed)
450{
451 struct file *file;
452 struct socket *sock;
453
Hua Zhong36725582006-04-19 15:25:02 -0700454 *err = -EBADF;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800455 file = fget_light(fd, fput_needed);
456 if (file) {
457 sock = sock_from_file(file, err);
458 if (sock)
459 return sock;
460 fput_light(file, *fput_needed);
461 }
462 return NULL;
463}
464
Masatake YAMATO600e1772012-08-29 10:44:29 +0000465#define XATTR_SOCKPROTONAME_SUFFIX "sockprotoname"
466#define XATTR_NAME_SOCKPROTONAME (XATTR_SYSTEM_PREFIX XATTR_SOCKPROTONAME_SUFFIX)
467#define XATTR_NAME_SOCKPROTONAME_LEN (sizeof(XATTR_NAME_SOCKPROTONAME)-1)
468static ssize_t sockfs_getxattr(struct dentry *dentry,
469 const char *name, void *value, size_t size)
470{
471 const char *proto_name;
472 size_t proto_size;
473 int error;
474
475 error = -ENODATA;
476 if (!strncmp(name, XATTR_NAME_SOCKPROTONAME, XATTR_NAME_SOCKPROTONAME_LEN)) {
477 proto_name = dentry->d_name.name;
478 proto_size = strlen(proto_name);
479
480 if (value) {
481 error = -ERANGE;
482 if (proto_size + 1 > size)
483 goto out;
484
485 strncpy(value, proto_name, proto_size + 1);
486 }
487 error = proto_size + 1;
488 }
489
490out:
491 return error;
492}
493
494static ssize_t sockfs_listxattr(struct dentry *dentry, char *buffer,
495 size_t size)
496{
497 ssize_t len;
498 ssize_t used = 0;
499
500 len = security_inode_listsecurity(dentry->d_inode, buffer, size);
501 if (len < 0)
502 return len;
503 used += len;
504 if (buffer) {
505 if (size < used)
506 return -ERANGE;
507 buffer += len;
508 }
509
510 len = (XATTR_NAME_SOCKPROTONAME_LEN + 1);
511 used += len;
512 if (buffer) {
513 if (size < used)
514 return -ERANGE;
515 memcpy(buffer, XATTR_NAME_SOCKPROTONAME, len);
516 buffer += len;
517 }
518
519 return used;
520}
521
522static const struct inode_operations sockfs_inode_ops = {
523 .getxattr = sockfs_getxattr,
524 .listxattr = sockfs_listxattr,
525};
526
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527/**
528 * sock_alloc - allocate a socket
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700529 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 * Allocate a new inode and socket object. The two are bound together
531 * and initialised. The socket is then returned. If we are out of inodes
532 * NULL is returned.
533 */
534
535static struct socket *sock_alloc(void)
536{
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700537 struct inode *inode;
538 struct socket *sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
Eric Dumazeta209dfc2011-07-26 11:36:34 +0200540 inode = new_inode_pseudo(sock_mnt->mnt_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 if (!inode)
542 return NULL;
543
544 sock = SOCKET_I(inode);
545
Eric Dumazet29a020d2009-09-15 02:39:20 -0700546 kmemcheck_annotate_bitfield(sock, type);
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400547 inode->i_ino = get_next_ino();
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700548 inode->i_mode = S_IFSOCK | S_IRWXUGO;
David Howells8192b0c2008-11-14 10:39:10 +1100549 inode->i_uid = current_fsuid();
550 inode->i_gid = current_fsgid();
Masatake YAMATO600e1772012-08-29 10:44:29 +0000551 inode->i_op = &sockfs_inode_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
Alex Shi19e8d692012-05-14 14:15:31 -0700553 this_cpu_add(sockets_in_use, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 return sock;
555}
556
557/*
558 * In theory you can't get an open on this inode, but /proc provides
559 * a back door. Remember to keep it shut otherwise you'll let the
560 * creepy crawlies in.
561 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700562
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563static int sock_no_open(struct inode *irrelevant, struct file *dontcare)
564{
565 return -ENXIO;
566}
567
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800568const struct file_operations bad_sock_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 .owner = THIS_MODULE,
570 .open = sock_no_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200571 .llseek = noop_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572};
573
574/**
575 * sock_release - close a socket
576 * @sock: socket to close
577 *
578 * The socket is released from the protocol stack if it has a release
579 * callback, and the inode is then released if the socket is bound to
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700580 * an inode not a file.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700582
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583void sock_release(struct socket *sock)
584{
585 if (sock->ops) {
586 struct module *owner = sock->ops->owner;
587
588 sock->ops->release(sock);
589 sock->ops = NULL;
590 module_put(owner);
591 }
592
Eric Dumazeteaefd112011-02-18 03:26:36 +0000593 if (rcu_dereference_protected(sock->wq, 1)->fasync_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 printk(KERN_ERR "sock_release: fasync list not empty!\n");
595
Mikulas Patockab09e7862012-07-19 06:13:36 +0000596 if (test_bit(SOCK_EXTERNALLY_ALLOCATED, &sock->flags))
597 return;
598
Alex Shi19e8d692012-05-14 14:15:31 -0700599 this_cpu_sub(sockets_in_use, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 if (!sock->file) {
601 iput(SOCK_INODE(sock));
602 return;
603 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700604 sock->file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700606EXPORT_SYMBOL(sock_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
Daniel Borkmannbf84a012013-04-14 08:08:13 +0000608void sock_tx_timestamp(struct sock *sk, __u8 *tx_flags)
Patrick Ohly20d49472009-02-12 05:03:38 +0000609{
Oliver Hartkopp2244d072010-08-17 08:59:14 +0000610 *tx_flags = 0;
Patrick Ohly20d49472009-02-12 05:03:38 +0000611 if (sock_flag(sk, SOCK_TIMESTAMPING_TX_HARDWARE))
Oliver Hartkopp2244d072010-08-17 08:59:14 +0000612 *tx_flags |= SKBTX_HW_TSTAMP;
Patrick Ohly20d49472009-02-12 05:03:38 +0000613 if (sock_flag(sk, SOCK_TIMESTAMPING_TX_SOFTWARE))
Oliver Hartkopp2244d072010-08-17 08:59:14 +0000614 *tx_flags |= SKBTX_SW_TSTAMP;
Johannes Berg6e3e9392011-11-09 10:15:42 +0100615 if (sock_flag(sk, SOCK_WIFI_STATUS))
616 *tx_flags |= SKBTX_WIFI_STATUS;
Patrick Ohly20d49472009-02-12 05:03:38 +0000617}
618EXPORT_SYMBOL(sock_tx_timestamp);
619
Anton Blanchard228e5482011-05-02 20:21:35 +0000620static inline int __sock_sendmsg_nosec(struct kiocb *iocb, struct socket *sock,
621 struct msghdr *msg, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622{
623 struct sock_iocb *si = kiocb_to_siocb(iocb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
625 si->sock = sock;
626 si->scm = NULL;
627 si->msg = msg;
628 si->size = size;
629
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 return sock->ops->sendmsg(iocb, sock, msg, size);
631}
632
Anton Blanchard228e5482011-05-02 20:21:35 +0000633static inline int __sock_sendmsg(struct kiocb *iocb, struct socket *sock,
634 struct msghdr *msg, size_t size)
635{
636 int err = security_socket_sendmsg(sock, msg, size);
637
638 return err ?: __sock_sendmsg_nosec(iocb, sock, msg, size);
639}
640
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641int sock_sendmsg(struct socket *sock, struct msghdr *msg, size_t size)
642{
643 struct kiocb iocb;
644 struct sock_iocb siocb;
645 int ret;
646
647 init_sync_kiocb(&iocb, NULL);
648 iocb.private = &siocb;
649 ret = __sock_sendmsg(&iocb, sock, msg, size);
650 if (-EIOCBQUEUED == ret)
651 ret = wait_on_sync_kiocb(&iocb);
652 return ret;
653}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700654EXPORT_SYMBOL(sock_sendmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
Eric Dumazet894dc242011-07-26 02:39:41 +0000656static int sock_sendmsg_nosec(struct socket *sock, struct msghdr *msg, size_t size)
Anton Blanchard228e5482011-05-02 20:21:35 +0000657{
658 struct kiocb iocb;
659 struct sock_iocb siocb;
660 int ret;
661
662 init_sync_kiocb(&iocb, NULL);
663 iocb.private = &siocb;
664 ret = __sock_sendmsg_nosec(&iocb, sock, msg, size);
665 if (-EIOCBQUEUED == ret)
666 ret = wait_on_sync_kiocb(&iocb);
667 return ret;
668}
669
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670int kernel_sendmsg(struct socket *sock, struct msghdr *msg,
671 struct kvec *vec, size_t num, size_t size)
672{
673 mm_segment_t oldfs = get_fs();
674 int result;
675
676 set_fs(KERNEL_DS);
677 /*
678 * the following is safe, since for compiler definitions of kvec and
679 * iovec are identical, yielding the same in-core layout and alignment
680 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700681 msg->msg_iov = (struct iovec *)vec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 msg->msg_iovlen = num;
683 result = sock_sendmsg(sock, msg, size);
684 set_fs(oldfs);
685 return result;
686}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700687EXPORT_SYMBOL(kernel_sendmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700689/*
690 * called from sock_recv_timestamp() if sock_flag(sk, SOCK_RCVTSTAMP)
691 */
692void __sock_recv_timestamp(struct msghdr *msg, struct sock *sk,
693 struct sk_buff *skb)
694{
Patrick Ohly20d49472009-02-12 05:03:38 +0000695 int need_software_tstamp = sock_flag(sk, SOCK_RCVTSTAMP);
696 struct timespec ts[3];
697 int empty = 1;
698 struct skb_shared_hwtstamps *shhwtstamps =
699 skb_hwtstamps(skb);
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700700
Patrick Ohly20d49472009-02-12 05:03:38 +0000701 /* Race occurred between timestamp enabling and packet
702 receiving. Fill in the current time for now. */
703 if (need_software_tstamp && skb->tstamp.tv64 == 0)
704 __net_timestamp(skb);
705
706 if (need_software_tstamp) {
707 if (!sock_flag(sk, SOCK_RCVTSTAMPNS)) {
708 struct timeval tv;
709 skb_get_timestamp(skb, &tv);
710 put_cmsg(msg, SOL_SOCKET, SCM_TIMESTAMP,
711 sizeof(tv), &tv);
712 } else {
Hagen Paul Pfeifer842509b2010-04-06 05:39:52 +0000713 skb_get_timestampns(skb, &ts[0]);
Patrick Ohly20d49472009-02-12 05:03:38 +0000714 put_cmsg(msg, SOL_SOCKET, SCM_TIMESTAMPNS,
Hagen Paul Pfeifer842509b2010-04-06 05:39:52 +0000715 sizeof(ts[0]), &ts[0]);
Patrick Ohly20d49472009-02-12 05:03:38 +0000716 }
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700717 }
Patrick Ohly20d49472009-02-12 05:03:38 +0000718
719
720 memset(ts, 0, sizeof(ts));
Daniel Borkmann6e94d1e2013-04-16 01:29:10 +0000721 if (sock_flag(sk, SOCK_TIMESTAMPING_SOFTWARE) &&
722 ktime_to_timespec_cond(skb->tstamp, ts + 0))
Patrick Ohly20d49472009-02-12 05:03:38 +0000723 empty = 0;
Patrick Ohly20d49472009-02-12 05:03:38 +0000724 if (shhwtstamps) {
725 if (sock_flag(sk, SOCK_TIMESTAMPING_SYS_HARDWARE) &&
Daniel Borkmann6e94d1e2013-04-16 01:29:10 +0000726 ktime_to_timespec_cond(shhwtstamps->syststamp, ts + 1))
Patrick Ohly20d49472009-02-12 05:03:38 +0000727 empty = 0;
728 if (sock_flag(sk, SOCK_TIMESTAMPING_RAW_HARDWARE) &&
Daniel Borkmann6e94d1e2013-04-16 01:29:10 +0000729 ktime_to_timespec_cond(shhwtstamps->hwtstamp, ts + 2))
Patrick Ohly20d49472009-02-12 05:03:38 +0000730 empty = 0;
731 }
732 if (!empty)
733 put_cmsg(msg, SOL_SOCKET,
734 SCM_TIMESTAMPING, sizeof(ts), &ts);
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700735}
Arnaldo Carvalho de Melo7c81fd82007-03-10 00:39:35 -0300736EXPORT_SYMBOL_GPL(__sock_recv_timestamp);
737
Johannes Berg6e3e9392011-11-09 10:15:42 +0100738void __sock_recv_wifi_status(struct msghdr *msg, struct sock *sk,
739 struct sk_buff *skb)
740{
741 int ack;
742
743 if (!sock_flag(sk, SOCK_WIFI_STATUS))
744 return;
745 if (!skb->wifi_acked_valid)
746 return;
747
748 ack = skb->wifi_acked;
749
750 put_cmsg(msg, SOL_SOCKET, SCM_WIFI_STATUS, sizeof(ack), &ack);
751}
752EXPORT_SYMBOL_GPL(__sock_recv_wifi_status);
753
stephen hemminger11165f12010-10-18 14:27:29 +0000754static inline void sock_recv_drops(struct msghdr *msg, struct sock *sk,
755 struct sk_buff *skb)
Neil Horman3b885782009-10-12 13:26:31 -0700756{
757 if (sock_flag(sk, SOCK_RXQ_OVFL) && skb && skb->dropcount)
758 put_cmsg(msg, SOL_SOCKET, SO_RXQ_OVFL,
759 sizeof(__u32), &skb->dropcount);
760}
761
Eric Dumazet767dd032010-04-28 19:14:43 +0000762void __sock_recv_ts_and_drops(struct msghdr *msg, struct sock *sk,
Neil Horman3b885782009-10-12 13:26:31 -0700763 struct sk_buff *skb)
764{
765 sock_recv_timestamp(msg, sk, skb);
766 sock_recv_drops(msg, sk, skb);
767}
Eric Dumazet767dd032010-04-28 19:14:43 +0000768EXPORT_SYMBOL_GPL(__sock_recv_ts_and_drops);
Neil Horman3b885782009-10-12 13:26:31 -0700769
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -0700770static inline int __sock_recvmsg_nosec(struct kiocb *iocb, struct socket *sock,
771 struct msghdr *msg, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 struct sock_iocb *si = kiocb_to_siocb(iocb);
774
775 si->sock = sock;
776 si->scm = NULL;
777 si->msg = msg;
778 si->size = size;
779 si->flags = flags;
780
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 return sock->ops->recvmsg(iocb, sock, msg, size, flags);
782}
783
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -0700784static inline int __sock_recvmsg(struct kiocb *iocb, struct socket *sock,
785 struct msghdr *msg, size_t size, int flags)
786{
787 int err = security_socket_recvmsg(sock, msg, size, flags);
788
789 return err ?: __sock_recvmsg_nosec(iocb, sock, msg, size, flags);
790}
791
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700792int sock_recvmsg(struct socket *sock, struct msghdr *msg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 size_t size, int flags)
794{
795 struct kiocb iocb;
796 struct sock_iocb siocb;
797 int ret;
798
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700799 init_sync_kiocb(&iocb, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 iocb.private = &siocb;
801 ret = __sock_recvmsg(&iocb, sock, msg, size, flags);
802 if (-EIOCBQUEUED == ret)
803 ret = wait_on_sync_kiocb(&iocb);
804 return ret;
805}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700806EXPORT_SYMBOL(sock_recvmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -0700808static int sock_recvmsg_nosec(struct socket *sock, struct msghdr *msg,
809 size_t size, int flags)
810{
811 struct kiocb iocb;
812 struct sock_iocb siocb;
813 int ret;
814
815 init_sync_kiocb(&iocb, NULL);
816 iocb.private = &siocb;
817 ret = __sock_recvmsg_nosec(&iocb, sock, msg, size, flags);
818 if (-EIOCBQUEUED == ret)
819 ret = wait_on_sync_kiocb(&iocb);
820 return ret;
821}
822
Martin Lucinac1249c02010-12-10 00:04:05 +0000823/**
824 * kernel_recvmsg - Receive a message from a socket (kernel space)
825 * @sock: The socket to receive the message from
826 * @msg: Received message
827 * @vec: Input s/g array for message data
828 * @num: Size of input s/g array
829 * @size: Number of bytes to read
830 * @flags: Message flags (MSG_DONTWAIT, etc...)
831 *
832 * On return the msg structure contains the scatter/gather array passed in the
833 * vec argument. The array is modified so that it consists of the unfilled
834 * portion of the original array.
835 *
836 * The returned value is the total number of bytes received, or an error.
837 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700838int kernel_recvmsg(struct socket *sock, struct msghdr *msg,
839 struct kvec *vec, size_t num, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840{
841 mm_segment_t oldfs = get_fs();
842 int result;
843
844 set_fs(KERNEL_DS);
845 /*
846 * the following is safe, since for compiler definitions of kvec and
847 * iovec are identical, yielding the same in-core layout and alignment
848 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700849 msg->msg_iov = (struct iovec *)vec, msg->msg_iovlen = num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 result = sock_recvmsg(sock, msg, size, flags);
851 set_fs(oldfs);
852 return result;
853}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700854EXPORT_SYMBOL(kernel_recvmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
856static void sock_aio_dtor(struct kiocb *iocb)
857{
858 kfree(iocb->private);
859}
860
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -0300861static ssize_t sock_sendpage(struct file *file, struct page *page,
862 int offset, size_t size, loff_t *ppos, int more)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863{
864 struct socket *sock;
865 int flags;
866
Eric Dumazetb69aee02005-09-06 14:42:45 -0700867 sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
Eric Dumazet35f9c092012-04-05 03:05:35 +0000869 flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
870 /* more is a combination of MSG_MORE and MSG_SENDPAGE_NOTLAST */
871 flags |= more;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
Linus Torvaldse6949582009-08-13 08:28:36 -0700873 return kernel_sendpage(sock, page, offset, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874}
875
Jens Axboe9c55e012007-11-06 23:30:13 -0800876static ssize_t sock_splice_read(struct file *file, loff_t *ppos,
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700877 struct pipe_inode_info *pipe, size_t len,
Jens Axboe9c55e012007-11-06 23:30:13 -0800878 unsigned int flags)
879{
880 struct socket *sock = file->private_data;
881
Rémi Denis-Courmont997b37d2008-02-15 02:35:45 -0800882 if (unlikely(!sock->ops->splice_read))
883 return -EINVAL;
884
Jens Axboe9c55e012007-11-06 23:30:13 -0800885 return sock->ops->splice_read(sock, ppos, pipe, len, flags);
886}
887
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800888static struct sock_iocb *alloc_sock_iocb(struct kiocb *iocb,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700889 struct sock_iocb *siocb)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800890{
891 if (!is_sync_kiocb(iocb)) {
892 siocb = kmalloc(sizeof(*siocb), GFP_KERNEL);
893 if (!siocb)
894 return NULL;
895 iocb->ki_dtor = sock_aio_dtor;
896 }
897
898 siocb->kiocb = iocb;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800899 iocb->private = siocb;
900 return siocb;
901}
902
903static ssize_t do_sock_read(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
922 return __sock_recvmsg(iocb, sock, msg, size, msg->msg_flags);
923}
924
Badari Pulavarty027445c2006-09-30 23:28:46 -0700925static ssize_t sock_aio_read(struct kiocb *iocb, const struct iovec *iov,
926 unsigned long nr_segs, loff_t pos)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800927{
928 struct sock_iocb siocb, *x;
929
930 if (pos != 0)
931 return -ESPIPE;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700932
933 if (iocb->ki_left == 0) /* Match SYS5 behaviour */
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800934 return 0;
935
Badari Pulavarty027445c2006-09-30 23:28:46 -0700936
937 x = alloc_sock_iocb(iocb, &siocb);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800938 if (!x)
939 return -ENOMEM;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700940 return do_sock_read(&x->async_msg, iocb, iocb->ki_filp, iov, nr_segs);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800941}
942
943static ssize_t do_sock_write(struct msghdr *msg, struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -0700944 struct file *file, const struct iovec *iov,
945 unsigned long nr_segs)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800946{
947 struct socket *sock = file->private_data;
948 size_t size = 0;
949 int i;
950
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700951 for (i = 0; i < nr_segs; i++)
952 size += iov[i].iov_len;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800953
954 msg->msg_name = NULL;
955 msg->msg_namelen = 0;
956 msg->msg_control = NULL;
957 msg->msg_controllen = 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700958 msg->msg_iov = (struct iovec *)iov;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800959 msg->msg_iovlen = nr_segs;
960 msg->msg_flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
961 if (sock->type == SOCK_SEQPACKET)
962 msg->msg_flags |= MSG_EOR;
963
964 return __sock_sendmsg(iocb, sock, msg, size);
965}
966
Badari Pulavarty027445c2006-09-30 23:28:46 -0700967static ssize_t sock_aio_write(struct kiocb *iocb, const struct iovec *iov,
968 unsigned long nr_segs, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969{
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800970 struct sock_iocb siocb, *x;
971
972 if (pos != 0)
973 return -ESPIPE;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700974
Badari Pulavarty027445c2006-09-30 23:28:46 -0700975 x = alloc_sock_iocb(iocb, &siocb);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800976 if (!x)
977 return -ENOMEM;
978
Badari Pulavarty027445c2006-09-30 23:28:46 -0700979 return do_sock_write(&x->async_msg, iocb, iocb->ki_filp, iov, nr_segs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980}
981
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982/*
983 * Atomic setting of ioctl hooks to avoid race
984 * with module unload.
985 */
986
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800987static DEFINE_MUTEX(br_ioctl_mutex);
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700988static int (*br_ioctl_hook) (struct net *, unsigned int cmd, void __user *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
Eric W. Biederman881d9662007-09-17 11:56:21 -0700990void brioctl_set(int (*hook) (struct net *, unsigned int, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800992 mutex_lock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 br_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800994 mutex_unlock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995}
996EXPORT_SYMBOL(brioctl_set);
997
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800998static DEFINE_MUTEX(vlan_ioctl_mutex);
Eric W. Biederman881d9662007-09-17 11:56:21 -0700999static int (*vlan_ioctl_hook) (struct net *, void __user *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
Eric W. Biederman881d9662007-09-17 11:56:21 -07001001void vlan_ioctl_set(int (*hook) (struct net *, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001003 mutex_lock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 vlan_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001005 mutex_unlock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006}
1007EXPORT_SYMBOL(vlan_ioctl_set);
1008
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001009static DEFINE_MUTEX(dlci_ioctl_mutex);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001010static int (*dlci_ioctl_hook) (unsigned int, void __user *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001012void dlci_ioctl_set(int (*hook) (unsigned int, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001014 mutex_lock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 dlci_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001016 mutex_unlock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017}
1018EXPORT_SYMBOL(dlci_ioctl_set);
1019
Arnd Bergmann6b960182009-11-06 23:10:54 -08001020static long sock_do_ioctl(struct net *net, struct socket *sock,
1021 unsigned int cmd, unsigned long arg)
1022{
1023 int err;
1024 void __user *argp = (void __user *)arg;
1025
1026 err = sock->ops->ioctl(sock, cmd, arg);
1027
1028 /*
1029 * If this ioctl is unknown try to hand it down
1030 * to the NIC driver.
1031 */
1032 if (err == -ENOIOCTLCMD)
1033 err = dev_ioctl(net, cmd, argp);
1034
1035 return err;
1036}
1037
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038/*
1039 * With an ioctl, arg may well be a user mode pointer, but we don't know
1040 * what to do with it - that's up to the protocol still.
1041 */
1042
1043static long sock_ioctl(struct file *file, unsigned cmd, unsigned long arg)
1044{
1045 struct socket *sock;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001046 struct sock *sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 void __user *argp = (void __user *)arg;
1048 int pid, err;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001049 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050
Eric Dumazetb69aee02005-09-06 14:42:45 -07001051 sock = file->private_data;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001052 sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001053 net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 if (cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15)) {
Eric W. Biederman881d9662007-09-17 11:56:21 -07001055 err = dev_ioctl(net, cmd, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 } else
Johannes Berg3d23e342009-09-29 23:27:28 +02001057#ifdef CONFIG_WEXT_CORE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 if (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST) {
Eric W. Biederman881d9662007-09-17 11:56:21 -07001059 err = dev_ioctl(net, cmd, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 } else
Johannes Berg3d23e342009-09-29 23:27:28 +02001061#endif
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001062 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 case FIOSETOWN:
1064 case SIOCSPGRP:
1065 err = -EFAULT;
1066 if (get_user(pid, (int __user *)argp))
1067 break;
1068 err = f_setown(sock->file, pid, 1);
1069 break;
1070 case FIOGETOWN:
1071 case SIOCGPGRP:
Eric W. Biederman609d7fa2006-10-02 02:17:15 -07001072 err = put_user(f_getown(sock->file),
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001073 (int __user *)argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 break;
1075 case SIOCGIFBR:
1076 case SIOCSIFBR:
1077 case SIOCBRADDBR:
1078 case SIOCBRDELBR:
1079 err = -ENOPKG;
1080 if (!br_ioctl_hook)
1081 request_module("bridge");
1082
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001083 mutex_lock(&br_ioctl_mutex);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001084 if (br_ioctl_hook)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001085 err = br_ioctl_hook(net, cmd, argp);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001086 mutex_unlock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 break;
1088 case SIOCGIFVLAN:
1089 case SIOCSIFVLAN:
1090 err = -ENOPKG;
1091 if (!vlan_ioctl_hook)
1092 request_module("8021q");
1093
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001094 mutex_lock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 if (vlan_ioctl_hook)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001096 err = vlan_ioctl_hook(net, argp);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001097 mutex_unlock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 case SIOCADDDLCI:
1100 case SIOCDELDLCI:
1101 err = -ENOPKG;
1102 if (!dlci_ioctl_hook)
1103 request_module("dlci");
1104
Pavel Emelyanov7512cbf2008-03-21 15:58:52 -07001105 mutex_lock(&dlci_ioctl_mutex);
1106 if (dlci_ioctl_hook)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 err = dlci_ioctl_hook(cmd, argp);
Pavel Emelyanov7512cbf2008-03-21 15:58:52 -07001108 mutex_unlock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 break;
1110 default:
Arnd Bergmann6b960182009-11-06 23:10:54 -08001111 err = sock_do_ioctl(net, sock, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001113 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 return err;
1115}
1116
1117int sock_create_lite(int family, int type, int protocol, struct socket **res)
1118{
1119 int err;
1120 struct socket *sock = NULL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001121
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 err = security_socket_create(family, type, protocol, 1);
1123 if (err)
1124 goto out;
1125
1126 sock = sock_alloc();
1127 if (!sock) {
1128 err = -ENOMEM;
1129 goto out;
1130 }
1131
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 sock->type = type;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001133 err = security_socket_post_create(sock, family, type, protocol, 1);
1134 if (err)
1135 goto out_release;
1136
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137out:
1138 *res = sock;
1139 return err;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001140out_release:
1141 sock_release(sock);
1142 sock = NULL;
1143 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001145EXPORT_SYMBOL(sock_create_lite);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
1147/* No kernel lock held - perfect */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001148static unsigned int sock_poll(struct file *file, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149{
1150 struct socket *sock;
1151
1152 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001153 * We can't return errors to poll, so it's either yes or no.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 */
Eric Dumazetb69aee02005-09-06 14:42:45 -07001155 sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 return sock->ops->poll(file, sock, wait);
1157}
1158
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001159static int sock_mmap(struct file *file, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160{
Eric Dumazetb69aee02005-09-06 14:42:45 -07001161 struct socket *sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
1163 return sock->ops->mmap(file, sock, vma);
1164}
1165
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001166static int sock_close(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 sock_release(SOCKET_I(inode));
1169 return 0;
1170}
1171
1172/*
1173 * Update the socket async list
1174 *
1175 * Fasync_list locking strategy.
1176 *
1177 * 1. fasync_list is modified only under process context socket lock
1178 * i.e. under semaphore.
1179 * 2. fasync_list is used under read_lock(&sk->sk_callback_lock)
Eric Dumazet989a2972010-04-14 09:55:35 +00001180 * or under socket lock
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 */
1182
1183static int sock_fasync(int fd, struct file *filp, int on)
1184{
Eric Dumazet989a2972010-04-14 09:55:35 +00001185 struct socket *sock = filp->private_data;
1186 struct sock *sk = sock->sk;
Eric Dumazeteaefd112011-02-18 03:26:36 +00001187 struct socket_wq *wq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188
Eric Dumazet989a2972010-04-14 09:55:35 +00001189 if (sk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
1192 lock_sock(sk);
Eric Dumazeteaefd112011-02-18 03:26:36 +00001193 wq = rcu_dereference_protected(sock->wq, sock_owned_by_user(sk));
1194 fasync_helper(fd, filp, on, &wq->fasync_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195
Eric Dumazeteaefd112011-02-18 03:26:36 +00001196 if (!wq->fasync_list)
Eric Dumazet989a2972010-04-14 09:55:35 +00001197 sock_reset_flag(sk, SOCK_FASYNC);
Jonathan Corbet76398422009-02-01 14:26:59 -07001198 else
Eric Dumazetbcdce712009-10-06 17:28:29 -07001199 sock_set_flag(sk, SOCK_FASYNC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
Eric Dumazet989a2972010-04-14 09:55:35 +00001201 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 return 0;
1203}
1204
Eric Dumazet43815482010-04-29 11:01:49 +00001205/* This function may be called only under socket lock or callback_lock or rcu_lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
1207int sock_wake_async(struct socket *sock, int how, int band)
1208{
Eric Dumazet43815482010-04-29 11:01:49 +00001209 struct socket_wq *wq;
1210
1211 if (!sock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 return -1;
Eric Dumazet43815482010-04-29 11:01:49 +00001213 rcu_read_lock();
1214 wq = rcu_dereference(sock->wq);
1215 if (!wq || !wq->fasync_list) {
1216 rcu_read_unlock();
1217 return -1;
1218 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001219 switch (how) {
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001220 case SOCK_WAKE_WAITD:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 if (test_bit(SOCK_ASYNC_WAITDATA, &sock->flags))
1222 break;
1223 goto call_kill;
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001224 case SOCK_WAKE_SPACE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 if (!test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sock->flags))
1226 break;
1227 /* fall through */
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001228 case SOCK_WAKE_IO:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001229call_kill:
Eric Dumazet43815482010-04-29 11:01:49 +00001230 kill_fasync(&wq->fasync_list, SIGIO, band);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 break;
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001232 case SOCK_WAKE_URG:
Eric Dumazet43815482010-04-29 11:01:49 +00001233 kill_fasync(&wq->fasync_list, SIGURG, band);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 }
Eric Dumazet43815482010-04-29 11:01:49 +00001235 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 return 0;
1237}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001238EXPORT_SYMBOL(sock_wake_async);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239
Pavel Emelyanov721db932010-09-29 16:06:32 +04001240int __sock_create(struct net *net, int family, int type, int protocol,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001241 struct socket **res, int kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242{
1243 int err;
1244 struct socket *sock;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001245 const struct net_proto_family *pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246
1247 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001248 * Check protocol is in range
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 */
1250 if (family < 0 || family >= NPROTO)
1251 return -EAFNOSUPPORT;
1252 if (type < 0 || type >= SOCK_MAX)
1253 return -EINVAL;
1254
1255 /* Compatibility.
1256
1257 This uglymoron is moved from INET layer to here to avoid
1258 deadlock in module load.
1259 */
1260 if (family == PF_INET && type == SOCK_PACKET) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001261 static int warned;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 if (!warned) {
1263 warned = 1;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001264 printk(KERN_INFO "%s uses obsolete (PF_INET,SOCK_PACKET)\n",
1265 current->comm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 }
1267 family = PF_PACKET;
1268 }
1269
1270 err = security_socket_create(family, type, protocol, kern);
1271 if (err)
1272 return err;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001273
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001274 /*
1275 * Allocate the socket and allow the family to set things up. if
1276 * the protocol is 0, the family is instructed to select an appropriate
1277 * default.
1278 */
1279 sock = sock_alloc();
1280 if (!sock) {
Joe Perchese87cc472012-05-13 21:56:26 +00001281 net_warn_ratelimited("socket: no more sockets\n");
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001282 return -ENFILE; /* Not exactly a match, but its the
1283 closest posix thing */
1284 }
1285
1286 sock->type = type;
1287
Johannes Berg95a5afc2008-10-16 15:24:51 -07001288#ifdef CONFIG_MODULES
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001289 /* Attempt to load a protocol module if the find failed.
1290 *
1291 * 12/09/1996 Marcin: But! this makes REALLY only sense, if the user
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 * requested real, full-featured networking support upon configuration.
1293 * Otherwise module support will break!
1294 */
Eric Dumazet190683a2010-11-10 10:50:44 +00001295 if (rcu_access_pointer(net_families[family]) == NULL)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001296 request_module("net-pf-%d", family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297#endif
1298
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001299 rcu_read_lock();
1300 pf = rcu_dereference(net_families[family]);
1301 err = -EAFNOSUPPORT;
1302 if (!pf)
1303 goto out_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
1305 /*
1306 * We will call the ->create function, that possibly is in a loadable
1307 * module, so we have to bump that loadable module refcnt first.
1308 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001309 if (!try_module_get(pf->owner))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 goto out_release;
1311
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001312 /* Now protected by module ref count */
1313 rcu_read_unlock();
1314
Eric Paris3f378b62009-11-05 22:18:14 -08001315 err = pf->create(net, sock, protocol, kern);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001316 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 goto out_module_put;
Frank Filza79af592005-09-27 15:23:38 -07001318
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 /*
1320 * Now to bump the refcnt of the [loadable] module that owns this
1321 * socket at sock_release time we decrement its refcnt.
1322 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001323 if (!try_module_get(sock->ops->owner))
1324 goto out_module_busy;
1325
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 /*
1327 * Now that we're done with the ->create function, the [loadable]
1328 * module can have its refcnt decremented
1329 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001330 module_put(pf->owner);
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001331 err = security_socket_post_create(sock, family, type, protocol, kern);
1332 if (err)
Herbert Xu3b185522007-08-15 14:46:02 -07001333 goto out_sock_release;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001334 *res = sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001336 return 0;
1337
1338out_module_busy:
1339 err = -EAFNOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340out_module_put:
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001341 sock->ops = NULL;
1342 module_put(pf->owner);
1343out_sock_release:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 sock_release(sock);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001345 return err;
1346
1347out_release:
1348 rcu_read_unlock();
1349 goto out_sock_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350}
Pavel Emelyanov721db932010-09-29 16:06:32 +04001351EXPORT_SYMBOL(__sock_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352
1353int sock_create(int family, int type, int protocol, struct socket **res)
1354{
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001355 return __sock_create(current->nsproxy->net_ns, family, type, protocol, res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001357EXPORT_SYMBOL(sock_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358
1359int sock_create_kern(int family, int type, int protocol, struct socket **res)
1360{
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001361 return __sock_create(&init_net, family, type, protocol, res, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001363EXPORT_SYMBOL(sock_create_kern);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001365SYSCALL_DEFINE3(socket, int, family, int, type, int, protocol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366{
1367 int retval;
1368 struct socket *sock;
Ulrich Dreppera677a032008-07-23 21:29:17 -07001369 int flags;
1370
Ulrich Dreppere38b36f2008-07-23 21:29:42 -07001371 /* Check the SOCK_* constants for consistency. */
1372 BUILD_BUG_ON(SOCK_CLOEXEC != O_CLOEXEC);
1373 BUILD_BUG_ON((SOCK_MAX | SOCK_TYPE_MASK) != SOCK_TYPE_MASK);
1374 BUILD_BUG_ON(SOCK_CLOEXEC & SOCK_TYPE_MASK);
1375 BUILD_BUG_ON(SOCK_NONBLOCK & SOCK_TYPE_MASK);
1376
Ulrich Dreppera677a032008-07-23 21:29:17 -07001377 flags = type & ~SOCK_TYPE_MASK;
Ulrich Drepper77d27202008-07-23 21:29:35 -07001378 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Dreppera677a032008-07-23 21:29:17 -07001379 return -EINVAL;
1380 type &= SOCK_TYPE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001382 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1383 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1384
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 retval = sock_create(family, type, protocol, &sock);
1386 if (retval < 0)
1387 goto out;
1388
Ulrich Drepper77d27202008-07-23 21:29:35 -07001389 retval = sock_map_fd(sock, flags & (O_CLOEXEC | O_NONBLOCK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 if (retval < 0)
1391 goto out_release;
1392
1393out:
1394 /* It may be already another descriptor 8) Not kernel problem. */
1395 return retval;
1396
1397out_release:
1398 sock_release(sock);
1399 return retval;
1400}
1401
1402/*
1403 * Create a pair of connected sockets.
1404 */
1405
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001406SYSCALL_DEFINE4(socketpair, int, family, int, type, int, protocol,
1407 int __user *, usockvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408{
1409 struct socket *sock1, *sock2;
1410 int fd1, fd2, err;
Al Virodb349502007-02-07 01:48:00 -05001411 struct file *newfile1, *newfile2;
Ulrich Dreppera677a032008-07-23 21:29:17 -07001412 int flags;
1413
1414 flags = type & ~SOCK_TYPE_MASK;
Ulrich Drepper77d27202008-07-23 21:29:35 -07001415 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Dreppera677a032008-07-23 21:29:17 -07001416 return -EINVAL;
1417 type &= SOCK_TYPE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001419 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1420 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1421
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 /*
1423 * Obtain the first socket and check if the underlying protocol
1424 * supports the socketpair call.
1425 */
1426
1427 err = sock_create(family, type, protocol, &sock1);
1428 if (err < 0)
1429 goto out;
1430
1431 err = sock_create(family, type, protocol, &sock2);
1432 if (err < 0)
1433 goto out_release_1;
1434
1435 err = sock1->ops->socketpair(sock1, sock2);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001436 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 goto out_release_both;
1438
Al Viro28407632012-08-17 23:54:15 -04001439 fd1 = get_unused_fd_flags(flags);
David S. Millerbf3c23d2007-10-29 21:54:02 -07001440 if (unlikely(fd1 < 0)) {
1441 err = fd1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 goto out_release_both;
David S. Millerbf3c23d2007-10-29 21:54:02 -07001443 }
Al Viro28407632012-08-17 23:54:15 -04001444 fd2 = get_unused_fd_flags(flags);
Al Viro198de4d2009-08-05 19:29:23 +04001445 if (unlikely(fd2 < 0)) {
1446 err = fd2;
Al Viro28407632012-08-17 23:54:15 -04001447 put_unused_fd(fd1);
1448 goto out_release_both;
1449 }
1450
Linus Torvaldsaab174f2012-10-02 20:25:04 -07001451 newfile1 = sock_alloc_file(sock1, flags, NULL);
Al Viro28407632012-08-17 23:54:15 -04001452 if (unlikely(IS_ERR(newfile1))) {
1453 err = PTR_ERR(newfile1);
1454 put_unused_fd(fd1);
1455 put_unused_fd(fd2);
1456 goto out_release_both;
1457 }
1458
Linus Torvaldsaab174f2012-10-02 20:25:04 -07001459 newfile2 = sock_alloc_file(sock2, flags, NULL);
Al Viro28407632012-08-17 23:54:15 -04001460 if (IS_ERR(newfile2)) {
1461 err = PTR_ERR(newfile2);
Al Viro198de4d2009-08-05 19:29:23 +04001462 fput(newfile1);
1463 put_unused_fd(fd1);
Al Viro28407632012-08-17 23:54:15 -04001464 put_unused_fd(fd2);
Al Viro198de4d2009-08-05 19:29:23 +04001465 sock_release(sock2);
1466 goto out;
Al Virodb349502007-02-07 01:48:00 -05001467 }
1468
Al Viro157cf642008-12-14 04:57:47 -05001469 audit_fd_pair(fd1, fd2);
Al Virodb349502007-02-07 01:48:00 -05001470 fd_install(fd1, newfile1);
1471 fd_install(fd2, newfile2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 /* fd1 and fd2 may be already another descriptors.
1473 * Not kernel problem.
1474 */
1475
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001476 err = put_user(fd1, &usockvec[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 if (!err)
1478 err = put_user(fd2, &usockvec[1]);
1479 if (!err)
1480 return 0;
1481
1482 sys_close(fd2);
1483 sys_close(fd1);
1484 return err;
1485
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486out_release_both:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001487 sock_release(sock2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488out_release_1:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001489 sock_release(sock1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490out:
1491 return err;
1492}
1493
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494/*
1495 * Bind a name to a socket. Nothing much to do here since it's
1496 * the protocol's responsibility to handle the local address.
1497 *
1498 * We move the socket address to kernel space before we call
1499 * the protocol layer (having also checked the address is ok).
1500 */
1501
Heiko Carstens20f37032009-01-14 14:14:23 +01001502SYSCALL_DEFINE3(bind, int, fd, struct sockaddr __user *, umyaddr, int, addrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503{
1504 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001505 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001506 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001508 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001509 if (sock) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001510 err = move_addr_to_kernel(umyaddr, addrlen, &address);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001511 if (err >= 0) {
1512 err = security_socket_bind(sock,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001513 (struct sockaddr *)&address,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001514 addrlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001515 if (!err)
1516 err = sock->ops->bind(sock,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001517 (struct sockaddr *)
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001518 &address, addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 }
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001520 fput_light(sock->file, fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001521 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 return err;
1523}
1524
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525/*
1526 * Perform a listen. Basically, we allow the protocol to do anything
1527 * necessary for a listen, and if that works, we mark the socket as
1528 * ready for listening.
1529 */
1530
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001531SYSCALL_DEFINE2(listen, int, fd, int, backlog)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532{
1533 struct socket *sock;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001534 int err, fput_needed;
Pavel Emelyanovb8e1f9b2007-12-08 00:12:33 -08001535 int somaxconn;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001536
1537 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1538 if (sock) {
Pavel Emelyanov8efa6e92008-03-31 19:41:14 -07001539 somaxconn = sock_net(sock->sk)->core.sysctl_somaxconn;
Eric Dumazet95c96172012-04-15 05:58:06 +00001540 if ((unsigned int)backlog > somaxconn)
Pavel Emelyanovb8e1f9b2007-12-08 00:12:33 -08001541 backlog = somaxconn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542
1543 err = security_socket_listen(sock, backlog);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001544 if (!err)
1545 err = sock->ops->listen(sock, backlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001547 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 }
1549 return err;
1550}
1551
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552/*
1553 * For accept, we attempt to create a new socket, set up the link
1554 * with the client, wake up the client, then return the new
1555 * connected fd. We collect the address of the connector in kernel
1556 * space and move it to user at the very end. This is unclean because
1557 * we open the socket then return an error.
1558 *
1559 * 1003.1g adds the ability to recvmsg() to query connection pending
1560 * status to recvmsg. We need to add that support in a way thats
1561 * clean when we restucture accept also.
1562 */
1563
Heiko Carstens20f37032009-01-14 14:14:23 +01001564SYSCALL_DEFINE4(accept4, int, fd, struct sockaddr __user *, upeer_sockaddr,
1565 int __user *, upeer_addrlen, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566{
1567 struct socket *sock, *newsock;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001568 struct file *newfile;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001569 int err, len, newfd, fput_needed;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001570 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
Ulrich Drepper77d27202008-07-23 21:29:35 -07001572 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001573 return -EINVAL;
1574
1575 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1576 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1577
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001578 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 if (!sock)
1580 goto out;
1581
1582 err = -ENFILE;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001583 newsock = sock_alloc();
1584 if (!newsock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 goto out_put;
1586
1587 newsock->type = sock->type;
1588 newsock->ops = sock->ops;
1589
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 /*
1591 * We don't need try_module_get here, as the listening socket (sock)
1592 * has the protocol module (sock->ops->owner) held.
1593 */
1594 __module_get(newsock->ops->owner);
1595
Al Viro28407632012-08-17 23:54:15 -04001596 newfd = get_unused_fd_flags(flags);
David S. Miller39d8c1b2006-03-20 17:13:49 -08001597 if (unlikely(newfd < 0)) {
1598 err = newfd;
David S. Miller9a1875e2006-04-01 12:48:36 -08001599 sock_release(newsock);
1600 goto out_put;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001601 }
Linus Torvaldsaab174f2012-10-02 20:25:04 -07001602 newfile = sock_alloc_file(newsock, flags, sock->sk->sk_prot_creator->name);
Al Viro28407632012-08-17 23:54:15 -04001603 if (unlikely(IS_ERR(newfile))) {
1604 err = PTR_ERR(newfile);
1605 put_unused_fd(newfd);
1606 sock_release(newsock);
1607 goto out_put;
1608 }
David S. Miller39d8c1b2006-03-20 17:13:49 -08001609
Frank Filza79af592005-09-27 15:23:38 -07001610 err = security_socket_accept(sock, newsock);
1611 if (err)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001612 goto out_fd;
Frank Filza79af592005-09-27 15:23:38 -07001613
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 err = sock->ops->accept(sock, newsock, sock->file->f_flags);
1615 if (err < 0)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001616 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617
1618 if (upeer_sockaddr) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001619 if (newsock->ops->getname(newsock, (struct sockaddr *)&address,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001620 &len, 2) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 err = -ECONNABORTED;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001622 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 }
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001624 err = move_addr_to_user(&address,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001625 len, upeer_sockaddr, upeer_addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 if (err < 0)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001627 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 }
1629
1630 /* File flags are not inherited via accept() unlike another OSes. */
1631
David S. Miller39d8c1b2006-03-20 17:13:49 -08001632 fd_install(newfd, newfile);
1633 err = newfd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001636 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637out:
1638 return err;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001639out_fd:
David S. Miller9606a212006-04-01 01:00:14 -08001640 fput(newfile);
David S. Miller39d8c1b2006-03-20 17:13:49 -08001641 put_unused_fd(newfd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 goto out_put;
1643}
1644
Heiko Carstens20f37032009-01-14 14:14:23 +01001645SYSCALL_DEFINE3(accept, int, fd, struct sockaddr __user *, upeer_sockaddr,
1646 int __user *, upeer_addrlen)
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001647{
Ulrich Drepperde11def2008-11-19 15:36:14 -08001648 return sys_accept4(fd, upeer_sockaddr, upeer_addrlen, 0);
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001649}
1650
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651/*
1652 * Attempt to connect to a socket with the server address. The address
1653 * is in user space so we verify it is OK and move it to kernel space.
1654 *
1655 * For 1003.1g we need to add clean support for a bind to AF_UNSPEC to
1656 * break bindings
1657 *
1658 * NOTE: 1003.1g draft 6.3 is broken with respect to AX.25/NetROM and
1659 * other SEQPACKET protocols that take time to connect() as it doesn't
1660 * include the -EINPROGRESS status for such sockets.
1661 */
1662
Heiko Carstens20f37032009-01-14 14:14:23 +01001663SYSCALL_DEFINE3(connect, int, fd, struct sockaddr __user *, uservaddr,
1664 int, addrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665{
1666 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001667 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001668 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001670 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 if (!sock)
1672 goto out;
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001673 err = move_addr_to_kernel(uservaddr, addrlen, &address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 if (err < 0)
1675 goto out_put;
1676
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001677 err =
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001678 security_socket_connect(sock, (struct sockaddr *)&address, addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 if (err)
1680 goto out_put;
1681
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001682 err = sock->ops->connect(sock, (struct sockaddr *)&address, addrlen,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 sock->file->f_flags);
1684out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001685 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686out:
1687 return err;
1688}
1689
1690/*
1691 * Get the local address ('name') of a socket object. Move the obtained
1692 * name to user space.
1693 */
1694
Heiko Carstens20f37032009-01-14 14:14:23 +01001695SYSCALL_DEFINE3(getsockname, int, fd, struct sockaddr __user *, usockaddr,
1696 int __user *, usockaddr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697{
1698 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001699 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001700 int len, err, fput_needed;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001701
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001702 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 if (!sock)
1704 goto out;
1705
1706 err = security_socket_getsockname(sock);
1707 if (err)
1708 goto out_put;
1709
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001710 err = sock->ops->getname(sock, (struct sockaddr *)&address, &len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 if (err)
1712 goto out_put;
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001713 err = move_addr_to_user(&address, len, usockaddr, usockaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714
1715out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001716 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717out:
1718 return err;
1719}
1720
1721/*
1722 * Get the remote address ('name') of a socket object. Move the obtained
1723 * name to user space.
1724 */
1725
Heiko Carstens20f37032009-01-14 14:14:23 +01001726SYSCALL_DEFINE3(getpeername, int, fd, struct sockaddr __user *, usockaddr,
1727 int __user *, usockaddr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728{
1729 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001730 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001731 int len, err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001733 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1734 if (sock != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 err = security_socket_getpeername(sock);
1736 if (err) {
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001737 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 return err;
1739 }
1740
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001741 err =
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001742 sock->ops->getname(sock, (struct sockaddr *)&address, &len,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001743 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 if (!err)
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001745 err = move_addr_to_user(&address, len, usockaddr,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001746 usockaddr_len);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001747 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 }
1749 return err;
1750}
1751
1752/*
1753 * Send a datagram to a given address. We move the address into kernel
1754 * space and check the user space data area is readable before invoking
1755 * the protocol.
1756 */
1757
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001758SYSCALL_DEFINE6(sendto, int, fd, void __user *, buff, size_t, len,
Eric Dumazet95c96172012-04-15 05:58:06 +00001759 unsigned int, flags, struct sockaddr __user *, addr,
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001760 int, addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761{
1762 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001763 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 int err;
1765 struct msghdr msg;
1766 struct iovec iov;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001767 int fput_needed;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001768
Linus Torvalds253eacc2010-10-30 16:43:10 -07001769 if (len > INT_MAX)
1770 len = INT_MAX;
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001771 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1772 if (!sock)
David S. Miller4387ff72007-02-08 15:06:08 -08001773 goto out;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001774
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001775 iov.iov_base = buff;
1776 iov.iov_len = len;
1777 msg.msg_name = NULL;
1778 msg.msg_iov = &iov;
1779 msg.msg_iovlen = 1;
1780 msg.msg_control = NULL;
1781 msg.msg_controllen = 0;
1782 msg.msg_namelen = 0;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001783 if (addr) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001784 err = move_addr_to_kernel(addr, addr_len, &address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 if (err < 0)
1786 goto out_put;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001787 msg.msg_name = (struct sockaddr *)&address;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001788 msg.msg_namelen = addr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 }
1790 if (sock->file->f_flags & O_NONBLOCK)
1791 flags |= MSG_DONTWAIT;
1792 msg.msg_flags = flags;
1793 err = sock_sendmsg(sock, &msg, len);
1794
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001795out_put:
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001796 fput_light(sock->file, fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08001797out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 return err;
1799}
1800
1801/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001802 * Send a datagram down a socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 */
1804
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001805SYSCALL_DEFINE4(send, int, fd, void __user *, buff, size_t, len,
Eric Dumazet95c96172012-04-15 05:58:06 +00001806 unsigned int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807{
1808 return sys_sendto(fd, buff, len, flags, NULL, 0);
1809}
1810
1811/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001812 * Receive a frame from the socket and optionally record the address of the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 * sender. We verify the buffers are writable and if needed move the
1814 * sender address from kernel to user space.
1815 */
1816
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001817SYSCALL_DEFINE6(recvfrom, int, fd, void __user *, ubuf, size_t, size,
Eric Dumazet95c96172012-04-15 05:58:06 +00001818 unsigned int, flags, struct sockaddr __user *, addr,
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001819 int __user *, addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820{
1821 struct socket *sock;
1822 struct iovec iov;
1823 struct msghdr msg;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001824 struct sockaddr_storage address;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001825 int err, err2;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001826 int fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827
Linus Torvalds253eacc2010-10-30 16:43:10 -07001828 if (size > INT_MAX)
1829 size = INT_MAX;
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001830 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 if (!sock)
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001832 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001834 msg.msg_control = NULL;
1835 msg.msg_controllen = 0;
1836 msg.msg_iovlen = 1;
1837 msg.msg_iov = &iov;
1838 iov.iov_len = size;
1839 iov.iov_base = ubuf;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001840 msg.msg_name = (struct sockaddr *)&address;
1841 msg.msg_namelen = sizeof(address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 if (sock->file->f_flags & O_NONBLOCK)
1843 flags |= MSG_DONTWAIT;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001844 err = sock_recvmsg(sock, &msg, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001846 if (err >= 0 && addr != NULL) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001847 err2 = move_addr_to_user(&address,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001848 msg.msg_namelen, addr, addr_len);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001849 if (err2 < 0)
1850 err = err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 }
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001852
1853 fput_light(sock->file, fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08001854out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 return err;
1856}
1857
1858/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001859 * Receive a datagram from a socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 */
1861
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001862asmlinkage long sys_recv(int fd, void __user *ubuf, size_t size,
Eric Dumazet95c96172012-04-15 05:58:06 +00001863 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864{
1865 return sys_recvfrom(fd, ubuf, size, flags, NULL, NULL);
1866}
1867
1868/*
1869 * Set a socket option. Because we don't know the option lengths we have
1870 * to pass the user mode parameter for the protocols to sort out.
1871 */
1872
Heiko Carstens20f37032009-01-14 14:14:23 +01001873SYSCALL_DEFINE5(setsockopt, int, fd, int, level, int, optname,
1874 char __user *, optval, int, optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001876 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 struct socket *sock;
1878
1879 if (optlen < 0)
1880 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001881
1882 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1883 if (sock != NULL) {
1884 err = security_socket_setsockopt(sock, level, optname);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001885 if (err)
1886 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887
1888 if (level == SOL_SOCKET)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001889 err =
1890 sock_setsockopt(sock, level, optname, optval,
1891 optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 else
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001893 err =
1894 sock->ops->setsockopt(sock, level, optname, optval,
1895 optlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001896out_put:
1897 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 }
1899 return err;
1900}
1901
1902/*
1903 * Get a socket option. Because we don't know the option lengths we have
1904 * to pass a user mode parameter for the protocols to sort out.
1905 */
1906
Heiko Carstens20f37032009-01-14 14:14:23 +01001907SYSCALL_DEFINE5(getsockopt, int, fd, int, level, int, optname,
1908 char __user *, optval, int __user *, optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001910 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 struct socket *sock;
1912
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001913 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1914 if (sock != NULL) {
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001915 err = security_socket_getsockopt(sock, level, optname);
1916 if (err)
1917 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918
1919 if (level == SOL_SOCKET)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001920 err =
1921 sock_getsockopt(sock, level, optname, optval,
1922 optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 else
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001924 err =
1925 sock->ops->getsockopt(sock, level, optname, optval,
1926 optlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001927out_put:
1928 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 }
1930 return err;
1931}
1932
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933/*
1934 * Shutdown a socket.
1935 */
1936
Heiko Carstens754fe8d2009-01-14 14:14:09 +01001937SYSCALL_DEFINE2(shutdown, int, fd, int, how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001939 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 struct socket *sock;
1941
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001942 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1943 if (sock != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 err = security_socket_shutdown(sock, how);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001945 if (!err)
1946 err = sock->ops->shutdown(sock, how);
1947 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 }
1949 return err;
1950}
1951
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001952/* A couple of helpful macros for getting the address of the 32/64 bit
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 * fields which are the same type (int / unsigned) on our platforms.
1954 */
1955#define COMPAT_MSG(msg, member) ((MSG_CMSG_COMPAT & flags) ? &msg##_compat->member : &msg->member)
1956#define COMPAT_NAMELEN(msg) COMPAT_MSG(msg, msg_namelen)
1957#define COMPAT_FLAGS(msg) COMPAT_MSG(msg, msg_flags)
1958
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00001959struct used_address {
1960 struct sockaddr_storage name;
1961 unsigned int name_len;
1962};
1963
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00001964static int ___sys_sendmsg(struct socket *sock, struct msghdr __user *msg,
Eric Dumazet95c96172012-04-15 05:58:06 +00001965 struct msghdr *msg_sys, unsigned int flags,
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00001966 struct used_address *used_address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001968 struct compat_msghdr __user *msg_compat =
1969 (struct compat_msghdr __user *)msg;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001970 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 struct iovec iovstack[UIO_FASTIOV], *iov = iovstack;
Alex Williamsonb9d717a2005-09-26 14:28:02 -07001972 unsigned char ctl[sizeof(struct cmsghdr) + 20]
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001973 __attribute__ ((aligned(sizeof(__kernel_size_t))));
1974 /* 20 is size of ipv6_pktinfo */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 unsigned char *ctl_buf = ctl;
Eric Dumazeta74e9102012-04-20 20:04:01 +02001976 int err, ctl_len, total_len;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001977
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 err = -EFAULT;
1979 if (MSG_CMSG_COMPAT & flags) {
Anton Blanchard228e5482011-05-02 20:21:35 +00001980 if (get_compat_msghdr(msg_sys, msg_compat))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 return -EFAULT;
Anton Blanchard228e5482011-05-02 20:21:35 +00001982 } else if (copy_from_user(msg_sys, msg, sizeof(struct msghdr)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 return -EFAULT;
1984
Anton Blanchard228e5482011-05-02 20:21:35 +00001985 if (msg_sys->msg_iovlen > UIO_FASTIOV) {
Eric Dumazeta74e9102012-04-20 20:04:01 +02001986 err = -EMSGSIZE;
1987 if (msg_sys->msg_iovlen > UIO_MAXIOV)
1988 goto out;
1989 err = -ENOMEM;
1990 iov = kmalloc(msg_sys->msg_iovlen * sizeof(struct iovec),
1991 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 if (!iov)
Anton Blanchard228e5482011-05-02 20:21:35 +00001993 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 }
1995
1996 /* This will also move the address data into kernel space */
1997 if (MSG_CMSG_COMPAT & flags) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001998 err = verify_compat_iovec(msg_sys, iov, &address, VERIFY_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 } else
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00002000 err = verify_iovec(msg_sys, iov, &address, VERIFY_READ);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002001 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 goto out_freeiov;
2003 total_len = err;
2004
2005 err = -ENOBUFS;
2006
Anton Blanchard228e5482011-05-02 20:21:35 +00002007 if (msg_sys->msg_controllen > INT_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 goto out_freeiov;
Anton Blanchard228e5482011-05-02 20:21:35 +00002009 ctl_len = msg_sys->msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 if ((MSG_CMSG_COMPAT & flags) && ctl_len) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002011 err =
Anton Blanchard228e5482011-05-02 20:21:35 +00002012 cmsghdr_from_user_compat_to_kern(msg_sys, sock->sk, ctl,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002013 sizeof(ctl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 if (err)
2015 goto out_freeiov;
Anton Blanchard228e5482011-05-02 20:21:35 +00002016 ctl_buf = msg_sys->msg_control;
2017 ctl_len = msg_sys->msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 } else if (ctl_len) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002019 if (ctl_len > sizeof(ctl)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 ctl_buf = sock_kmalloc(sock->sk, ctl_len, GFP_KERNEL);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002021 if (ctl_buf == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 goto out_freeiov;
2023 }
2024 err = -EFAULT;
2025 /*
Anton Blanchard228e5482011-05-02 20:21:35 +00002026 * Careful! Before this, msg_sys->msg_control contains a user pointer.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 * Afterwards, it will be a kernel pointer. Thus the compiler-assisted
2028 * checking falls down on this.
2029 */
Namhyung Kimfb8621b2010-09-07 03:55:00 +00002030 if (copy_from_user(ctl_buf,
Anton Blanchard228e5482011-05-02 20:21:35 +00002031 (void __user __force *)msg_sys->msg_control,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002032 ctl_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 goto out_freectl;
Anton Blanchard228e5482011-05-02 20:21:35 +00002034 msg_sys->msg_control = ctl_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 }
Anton Blanchard228e5482011-05-02 20:21:35 +00002036 msg_sys->msg_flags = flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037
2038 if (sock->file->f_flags & O_NONBLOCK)
Anton Blanchard228e5482011-05-02 20:21:35 +00002039 msg_sys->msg_flags |= MSG_DONTWAIT;
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002040 /*
2041 * If this is sendmmsg() and current destination address is same as
2042 * previously succeeded address, omit asking LSM's decision.
2043 * used_address->name_len is initialized to UINT_MAX so that the first
2044 * destination address never matches.
2045 */
Mathieu Desnoyersbc909d92011-08-24 19:45:03 -07002046 if (used_address && msg_sys->msg_name &&
2047 used_address->name_len == msg_sys->msg_namelen &&
2048 !memcmp(&used_address->name, msg_sys->msg_name,
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002049 used_address->name_len)) {
2050 err = sock_sendmsg_nosec(sock, msg_sys, total_len);
2051 goto out_freectl;
2052 }
2053 err = sock_sendmsg(sock, msg_sys, total_len);
2054 /*
2055 * If this is sendmmsg() and sending to current destination address was
2056 * successful, remember it.
2057 */
2058 if (used_address && err >= 0) {
2059 used_address->name_len = msg_sys->msg_namelen;
Mathieu Desnoyersbc909d92011-08-24 19:45:03 -07002060 if (msg_sys->msg_name)
2061 memcpy(&used_address->name, msg_sys->msg_name,
2062 used_address->name_len);
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002063 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064
2065out_freectl:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002066 if (ctl_buf != ctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 sock_kfree_s(sock->sk, ctl_buf, ctl_len);
2068out_freeiov:
2069 if (iov != iovstack)
Eric Dumazeta74e9102012-04-20 20:04:01 +02002070 kfree(iov);
Anton Blanchard228e5482011-05-02 20:21:35 +00002071out:
2072 return err;
2073}
2074
2075/*
2076 * BSD sendmsg interface
2077 */
2078
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002079long __sys_sendmsg(int fd, struct msghdr __user *msg, unsigned flags)
Anton Blanchard228e5482011-05-02 20:21:35 +00002080{
2081 int fput_needed, err;
2082 struct msghdr msg_sys;
Andy Lutomirski1be374a2013-05-22 14:07:44 -07002083 struct socket *sock;
Anton Blanchard228e5482011-05-02 20:21:35 +00002084
Andy Lutomirski1be374a2013-05-22 14:07:44 -07002085 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Anton Blanchard228e5482011-05-02 20:21:35 +00002086 if (!sock)
2087 goto out;
2088
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002089 err = ___sys_sendmsg(sock, msg, &msg_sys, flags, NULL);
Anton Blanchard228e5482011-05-02 20:21:35 +00002090
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002091 fput_light(sock->file, fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002092out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 return err;
2094}
2095
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002096SYSCALL_DEFINE3(sendmsg, int, fd, struct msghdr __user *, msg, unsigned int, flags)
2097{
2098 if (flags & MSG_CMSG_COMPAT)
2099 return -EINVAL;
2100 return __sys_sendmsg(fd, msg, flags);
2101}
2102
Anton Blanchard228e5482011-05-02 20:21:35 +00002103/*
2104 * Linux sendmmsg interface
2105 */
2106
2107int __sys_sendmmsg(int fd, struct mmsghdr __user *mmsg, unsigned int vlen,
2108 unsigned int flags)
2109{
2110 int fput_needed, err, datagrams;
2111 struct socket *sock;
2112 struct mmsghdr __user *entry;
2113 struct compat_mmsghdr __user *compat_entry;
2114 struct msghdr msg_sys;
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002115 struct used_address used_address;
Anton Blanchard228e5482011-05-02 20:21:35 +00002116
Anton Blanchard98382f42011-08-04 14:07:39 +00002117 if (vlen > UIO_MAXIOV)
2118 vlen = UIO_MAXIOV;
Anton Blanchard228e5482011-05-02 20:21:35 +00002119
2120 datagrams = 0;
2121
2122 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2123 if (!sock)
2124 return err;
2125
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002126 used_address.name_len = UINT_MAX;
Anton Blanchard228e5482011-05-02 20:21:35 +00002127 entry = mmsg;
2128 compat_entry = (struct compat_mmsghdr __user *)mmsg;
Anton Blanchard728ffb82011-08-04 14:07:38 +00002129 err = 0;
Anton Blanchard228e5482011-05-02 20:21:35 +00002130
2131 while (datagrams < vlen) {
Anton Blanchard228e5482011-05-02 20:21:35 +00002132 if (MSG_CMSG_COMPAT & flags) {
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002133 err = ___sys_sendmsg(sock, (struct msghdr __user *)compat_entry,
2134 &msg_sys, flags, &used_address);
Anton Blanchard228e5482011-05-02 20:21:35 +00002135 if (err < 0)
2136 break;
2137 err = __put_user(err, &compat_entry->msg_len);
2138 ++compat_entry;
2139 } else {
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002140 err = ___sys_sendmsg(sock,
2141 (struct msghdr __user *)entry,
2142 &msg_sys, flags, &used_address);
Anton Blanchard228e5482011-05-02 20:21:35 +00002143 if (err < 0)
2144 break;
2145 err = put_user(err, &entry->msg_len);
2146 ++entry;
2147 }
2148
2149 if (err)
2150 break;
2151 ++datagrams;
2152 }
2153
Anton Blanchard228e5482011-05-02 20:21:35 +00002154 fput_light(sock->file, fput_needed);
2155
Anton Blanchard728ffb82011-08-04 14:07:38 +00002156 /* We only return an error if no datagrams were able to be sent */
2157 if (datagrams != 0)
Anton Blanchard228e5482011-05-02 20:21:35 +00002158 return datagrams;
2159
Anton Blanchard228e5482011-05-02 20:21:35 +00002160 return err;
2161}
2162
2163SYSCALL_DEFINE4(sendmmsg, int, fd, struct mmsghdr __user *, mmsg,
2164 unsigned int, vlen, unsigned int, flags)
2165{
Andy Lutomirski1be374a2013-05-22 14:07:44 -07002166 if (flags & MSG_CMSG_COMPAT)
2167 return -EINVAL;
Anton Blanchard228e5482011-05-02 20:21:35 +00002168 return __sys_sendmmsg(fd, mmsg, vlen, flags);
2169}
2170
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002171static int ___sys_recvmsg(struct socket *sock, struct msghdr __user *msg,
Eric Dumazet95c96172012-04-15 05:58:06 +00002172 struct msghdr *msg_sys, unsigned int flags, int nosec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002174 struct compat_msghdr __user *msg_compat =
2175 (struct compat_msghdr __user *)msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 struct iovec iovstack[UIO_FASTIOV];
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002177 struct iovec *iov = iovstack;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 unsigned long cmsg_ptr;
Eric Dumazeta74e9102012-04-20 20:04:01 +02002179 int err, total_len, len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180
2181 /* kernel mode address */
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07002182 struct sockaddr_storage addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183
2184 /* user mode address pointers */
2185 struct sockaddr __user *uaddr;
2186 int __user *uaddr_len;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002187
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 if (MSG_CMSG_COMPAT & flags) {
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002189 if (get_compat_msghdr(msg_sys, msg_compat))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 return -EFAULT;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002191 } else if (copy_from_user(msg_sys, msg, sizeof(struct msghdr)))
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002192 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002194 if (msg_sys->msg_iovlen > UIO_FASTIOV) {
Eric Dumazeta74e9102012-04-20 20:04:01 +02002195 err = -EMSGSIZE;
2196 if (msg_sys->msg_iovlen > UIO_MAXIOV)
2197 goto out;
2198 err = -ENOMEM;
2199 iov = kmalloc(msg_sys->msg_iovlen * sizeof(struct iovec),
2200 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 if (!iov)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002202 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 }
2204
2205 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002206 * Save the user-mode address (verify_iovec will change the
2207 * kernel msghdr to use the kernel address space)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002209
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002210 uaddr = (__force void __user *)msg_sys->msg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 uaddr_len = COMPAT_NAMELEN(msg);
2212 if (MSG_CMSG_COMPAT & flags) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00002213 err = verify_compat_iovec(msg_sys, iov, &addr, VERIFY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 } else
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00002215 err = verify_iovec(msg_sys, iov, &addr, VERIFY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 if (err < 0)
2217 goto out_freeiov;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002218 total_len = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002220 cmsg_ptr = (unsigned long)msg_sys->msg_control;
2221 msg_sys->msg_flags = flags & (MSG_CMSG_CLOEXEC|MSG_CMSG_COMPAT);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002222
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 if (sock->file->f_flags & O_NONBLOCK)
2224 flags |= MSG_DONTWAIT;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002225 err = (nosec ? sock_recvmsg_nosec : sock_recvmsg)(sock, msg_sys,
2226 total_len, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 if (err < 0)
2228 goto out_freeiov;
2229 len = err;
2230
2231 if (uaddr != NULL) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00002232 err = move_addr_to_user(&addr,
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002233 msg_sys->msg_namelen, uaddr,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002234 uaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 if (err < 0)
2236 goto out_freeiov;
2237 }
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002238 err = __put_user((msg_sys->msg_flags & ~MSG_CMSG_COMPAT),
David S. Miller37f7f422005-09-16 16:51:01 -07002239 COMPAT_FLAGS(msg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 if (err)
2241 goto out_freeiov;
2242 if (MSG_CMSG_COMPAT & flags)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002243 err = __put_user((unsigned long)msg_sys->msg_control - cmsg_ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 &msg_compat->msg_controllen);
2245 else
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002246 err = __put_user((unsigned long)msg_sys->msg_control - cmsg_ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 &msg->msg_controllen);
2248 if (err)
2249 goto out_freeiov;
2250 err = len;
2251
2252out_freeiov:
2253 if (iov != iovstack)
Eric Dumazeta74e9102012-04-20 20:04:01 +02002254 kfree(iov);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002255out:
2256 return err;
2257}
2258
2259/*
2260 * BSD recvmsg interface
2261 */
2262
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002263long __sys_recvmsg(int fd, struct msghdr __user *msg, unsigned flags)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002264{
2265 int fput_needed, err;
2266 struct msghdr msg_sys;
Andy Lutomirski1be374a2013-05-22 14:07:44 -07002267 struct socket *sock;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002268
Andy Lutomirski1be374a2013-05-22 14:07:44 -07002269 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002270 if (!sock)
2271 goto out;
2272
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002273 err = ___sys_recvmsg(sock, msg, &msg_sys, flags, 0);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002274
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002275 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276out:
2277 return err;
2278}
2279
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002280SYSCALL_DEFINE3(recvmsg, int, fd, struct msghdr __user *, msg,
2281 unsigned int, flags)
2282{
2283 if (flags & MSG_CMSG_COMPAT)
2284 return -EINVAL;
2285 return __sys_recvmsg(fd, msg, flags);
2286}
2287
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002288/*
2289 * Linux recvmmsg interface
2290 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002292int __sys_recvmmsg(int fd, struct mmsghdr __user *mmsg, unsigned int vlen,
2293 unsigned int flags, struct timespec *timeout)
2294{
2295 int fput_needed, err, datagrams;
2296 struct socket *sock;
2297 struct mmsghdr __user *entry;
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002298 struct compat_mmsghdr __user *compat_entry;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002299 struct msghdr msg_sys;
2300 struct timespec end_time;
2301
2302 if (timeout &&
2303 poll_select_set_timeout(&end_time, timeout->tv_sec,
2304 timeout->tv_nsec))
2305 return -EINVAL;
2306
2307 datagrams = 0;
2308
2309 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2310 if (!sock)
2311 return err;
2312
2313 err = sock_error(sock->sk);
2314 if (err)
2315 goto out_put;
2316
2317 entry = mmsg;
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002318 compat_entry = (struct compat_mmsghdr __user *)mmsg;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002319
2320 while (datagrams < vlen) {
2321 /*
2322 * No need to ask LSM for more than the first datagram.
2323 */
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002324 if (MSG_CMSG_COMPAT & flags) {
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002325 err = ___sys_recvmsg(sock, (struct msghdr __user *)compat_entry,
2326 &msg_sys, flags & ~MSG_WAITFORONE,
2327 datagrams);
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002328 if (err < 0)
2329 break;
2330 err = __put_user(err, &compat_entry->msg_len);
2331 ++compat_entry;
2332 } else {
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002333 err = ___sys_recvmsg(sock,
2334 (struct msghdr __user *)entry,
2335 &msg_sys, flags & ~MSG_WAITFORONE,
2336 datagrams);
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002337 if (err < 0)
2338 break;
2339 err = put_user(err, &entry->msg_len);
2340 ++entry;
2341 }
2342
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002343 if (err)
2344 break;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002345 ++datagrams;
2346
Brandon L Black71c5c152010-03-26 16:18:03 +00002347 /* MSG_WAITFORONE turns on MSG_DONTWAIT after one packet */
2348 if (flags & MSG_WAITFORONE)
2349 flags |= MSG_DONTWAIT;
2350
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002351 if (timeout) {
2352 ktime_get_ts(timeout);
2353 *timeout = timespec_sub(end_time, *timeout);
2354 if (timeout->tv_sec < 0) {
2355 timeout->tv_sec = timeout->tv_nsec = 0;
2356 break;
2357 }
2358
2359 /* Timeout, return less than vlen datagrams */
2360 if (timeout->tv_nsec == 0 && timeout->tv_sec == 0)
2361 break;
2362 }
2363
2364 /* Out of band data, return right away */
2365 if (msg_sys.msg_flags & MSG_OOB)
2366 break;
2367 }
2368
2369out_put:
2370 fput_light(sock->file, fput_needed);
2371
2372 if (err == 0)
2373 return datagrams;
2374
2375 if (datagrams != 0) {
2376 /*
2377 * We may return less entries than requested (vlen) if the
2378 * sock is non block and there aren't enough datagrams...
2379 */
2380 if (err != -EAGAIN) {
2381 /*
2382 * ... or if recvmsg returns an error after we
2383 * received some datagrams, where we record the
2384 * error to return on the next call or if the
2385 * app asks about it using getsockopt(SO_ERROR).
2386 */
2387 sock->sk->sk_err = -err;
2388 }
2389
2390 return datagrams;
2391 }
2392
2393 return err;
2394}
2395
2396SYSCALL_DEFINE5(recvmmsg, int, fd, struct mmsghdr __user *, mmsg,
2397 unsigned int, vlen, unsigned int, flags,
2398 struct timespec __user *, timeout)
2399{
2400 int datagrams;
2401 struct timespec timeout_sys;
2402
Andy Lutomirski1be374a2013-05-22 14:07:44 -07002403 if (flags & MSG_CMSG_COMPAT)
2404 return -EINVAL;
2405
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002406 if (!timeout)
2407 return __sys_recvmmsg(fd, mmsg, vlen, flags, NULL);
2408
2409 if (copy_from_user(&timeout_sys, timeout, sizeof(timeout_sys)))
2410 return -EFAULT;
2411
2412 datagrams = __sys_recvmmsg(fd, mmsg, vlen, flags, &timeout_sys);
2413
2414 if (datagrams > 0 &&
2415 copy_to_user(timeout, &timeout_sys, sizeof(timeout_sys)))
2416 datagrams = -EFAULT;
2417
2418 return datagrams;
2419}
2420
2421#ifdef __ARCH_WANT_SYS_SOCKETCALL
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422/* Argument list sizes for sys_socketcall */
2423#define AL(x) ((x) * sizeof(unsigned long))
Anton Blanchard228e5482011-05-02 20:21:35 +00002424static const unsigned char nargs[21] = {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002425 AL(0), AL(3), AL(3), AL(3), AL(2), AL(3),
2426 AL(3), AL(3), AL(4), AL(4), AL(4), AL(6),
2427 AL(6), AL(2), AL(5), AL(5), AL(3), AL(3),
Anton Blanchard228e5482011-05-02 20:21:35 +00002428 AL(4), AL(5), AL(4)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002429};
2430
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431#undef AL
2432
2433/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002434 * System call vectors.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 *
2436 * Argument checking cleaned up. Saved 20% in size.
2437 * This function doesn't need to set the kernel lock because
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002438 * it is set by the callees.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 */
2440
Heiko Carstens3e0fa652009-01-14 14:14:24 +01002441SYSCALL_DEFINE2(socketcall, int, call, unsigned long __user *, args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442{
Chen Gang2950fa92013-04-07 16:55:23 +08002443 unsigned long a[AUDITSC_ARGS];
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002444 unsigned long a0, a1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 int err;
Arjan van de Ven47379052009-09-28 12:57:44 -07002446 unsigned int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447
Anton Blanchard228e5482011-05-02 20:21:35 +00002448 if (call < 1 || call > SYS_SENDMMSG)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 return -EINVAL;
2450
Arjan van de Ven47379052009-09-28 12:57:44 -07002451 len = nargs[call];
2452 if (len > sizeof(a))
2453 return -EINVAL;
2454
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455 /* copy_from_user should be SMP safe. */
Arjan van de Ven47379052009-09-28 12:57:44 -07002456 if (copy_from_user(a, args, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 return -EFAULT;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002458
Chen Gang2950fa92013-04-07 16:55:23 +08002459 err = audit_socketcall(nargs[call] / sizeof(unsigned long), a);
2460 if (err)
2461 return err;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002462
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002463 a0 = a[0];
2464 a1 = a[1];
2465
2466 switch (call) {
2467 case SYS_SOCKET:
2468 err = sys_socket(a0, a1, a[2]);
2469 break;
2470 case SYS_BIND:
2471 err = sys_bind(a0, (struct sockaddr __user *)a1, a[2]);
2472 break;
2473 case SYS_CONNECT:
2474 err = sys_connect(a0, (struct sockaddr __user *)a1, a[2]);
2475 break;
2476 case SYS_LISTEN:
2477 err = sys_listen(a0, a1);
2478 break;
2479 case SYS_ACCEPT:
Ulrich Drepperde11def2008-11-19 15:36:14 -08002480 err = sys_accept4(a0, (struct sockaddr __user *)a1,
2481 (int __user *)a[2], 0);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002482 break;
2483 case SYS_GETSOCKNAME:
2484 err =
2485 sys_getsockname(a0, (struct sockaddr __user *)a1,
2486 (int __user *)a[2]);
2487 break;
2488 case SYS_GETPEERNAME:
2489 err =
2490 sys_getpeername(a0, (struct sockaddr __user *)a1,
2491 (int __user *)a[2]);
2492 break;
2493 case SYS_SOCKETPAIR:
2494 err = sys_socketpair(a0, a1, a[2], (int __user *)a[3]);
2495 break;
2496 case SYS_SEND:
2497 err = sys_send(a0, (void __user *)a1, a[2], a[3]);
2498 break;
2499 case SYS_SENDTO:
2500 err = sys_sendto(a0, (void __user *)a1, a[2], a[3],
2501 (struct sockaddr __user *)a[4], a[5]);
2502 break;
2503 case SYS_RECV:
2504 err = sys_recv(a0, (void __user *)a1, a[2], a[3]);
2505 break;
2506 case SYS_RECVFROM:
2507 err = sys_recvfrom(a0, (void __user *)a1, a[2], a[3],
2508 (struct sockaddr __user *)a[4],
2509 (int __user *)a[5]);
2510 break;
2511 case SYS_SHUTDOWN:
2512 err = sys_shutdown(a0, a1);
2513 break;
2514 case SYS_SETSOCKOPT:
2515 err = sys_setsockopt(a0, a1, a[2], (char __user *)a[3], a[4]);
2516 break;
2517 case SYS_GETSOCKOPT:
2518 err =
2519 sys_getsockopt(a0, a1, a[2], (char __user *)a[3],
2520 (int __user *)a[4]);
2521 break;
2522 case SYS_SENDMSG:
2523 err = sys_sendmsg(a0, (struct msghdr __user *)a1, a[2]);
2524 break;
Anton Blanchard228e5482011-05-02 20:21:35 +00002525 case SYS_SENDMMSG:
2526 err = sys_sendmmsg(a0, (struct mmsghdr __user *)a1, a[2], a[3]);
2527 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002528 case SYS_RECVMSG:
2529 err = sys_recvmsg(a0, (struct msghdr __user *)a1, a[2]);
2530 break;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002531 case SYS_RECVMMSG:
2532 err = sys_recvmmsg(a0, (struct mmsghdr __user *)a1, a[2], a[3],
2533 (struct timespec __user *)a[4]);
2534 break;
Ulrich Drepperde11def2008-11-19 15:36:14 -08002535 case SYS_ACCEPT4:
2536 err = sys_accept4(a0, (struct sockaddr __user *)a1,
2537 (int __user *)a[2], a[3]);
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07002538 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002539 default:
2540 err = -EINVAL;
2541 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542 }
2543 return err;
2544}
2545
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002546#endif /* __ARCH_WANT_SYS_SOCKETCALL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002548/**
2549 * sock_register - add a socket protocol handler
2550 * @ops: description of protocol
2551 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 * This function is called by a protocol handler that wants to
2553 * advertise its address family, and have it linked into the
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002554 * socket interface. The value ops->family coresponds to the
2555 * socket system call protocol family.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 */
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002557int sock_register(const struct net_proto_family *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558{
2559 int err;
2560
2561 if (ops->family >= NPROTO) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002562 printk(KERN_CRIT "protocol %d >= NPROTO(%d)\n", ops->family,
2563 NPROTO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564 return -ENOBUFS;
2565 }
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002566
2567 spin_lock(&net_family_lock);
Eric Dumazet190683a2010-11-10 10:50:44 +00002568 if (rcu_dereference_protected(net_families[ops->family],
2569 lockdep_is_held(&net_family_lock)))
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002570 err = -EEXIST;
2571 else {
Eric Dumazetcf778b02012-01-12 04:41:32 +00002572 rcu_assign_pointer(net_families[ops->family], ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573 err = 0;
2574 }
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002575 spin_unlock(&net_family_lock);
2576
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002577 printk(KERN_INFO "NET: Registered protocol family %d\n", ops->family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578 return err;
2579}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002580EXPORT_SYMBOL(sock_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002582/**
2583 * sock_unregister - remove a protocol handler
2584 * @family: protocol family to remove
2585 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586 * This function is called by a protocol handler that wants to
2587 * remove its address family, and have it unlinked from the
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002588 * new socket creation.
2589 *
2590 * If protocol handler is a module, then it can use module reference
2591 * counts to protect against new references. If protocol handler is not
2592 * a module then it needs to provide its own protection in
2593 * the ops->create routine.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 */
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002595void sock_unregister(int family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596{
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002597 BUG_ON(family < 0 || family >= NPROTO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002599 spin_lock(&net_family_lock);
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00002600 RCU_INIT_POINTER(net_families[family], NULL);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002601 spin_unlock(&net_family_lock);
2602
2603 synchronize_rcu();
2604
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002605 printk(KERN_INFO "NET: Unregistered protocol family %d\n", family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002607EXPORT_SYMBOL(sock_unregister);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608
Andi Kleen77d76ea2005-12-22 12:43:42 -08002609static int __init sock_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610{
Nick Pigginb3e19d92011-01-07 17:50:11 +11002611 int err;
Eric W. Biederman2ca794e2012-04-19 13:20:32 +00002612 /*
2613 * Initialize the network sysctl infrastructure.
2614 */
2615 err = net_sysctl_init();
2616 if (err)
2617 goto out;
Nick Pigginb3e19d92011-01-07 17:50:11 +11002618
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002620 * Initialize skbuff SLAB cache
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621 */
2622 skb_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623
2624 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002625 * Initialize the protocols module.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626 */
2627
2628 init_inodecache();
Nick Pigginb3e19d92011-01-07 17:50:11 +11002629
2630 err = register_filesystem(&sock_fs_type);
2631 if (err)
2632 goto out_fs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633 sock_mnt = kern_mount(&sock_fs_type);
Nick Pigginb3e19d92011-01-07 17:50:11 +11002634 if (IS_ERR(sock_mnt)) {
2635 err = PTR_ERR(sock_mnt);
2636 goto out_mount;
2637 }
Andi Kleen77d76ea2005-12-22 12:43:42 -08002638
2639 /* The real protocol initialization is performed in later initcalls.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 */
2641
2642#ifdef CONFIG_NETFILTER
Pablo Neira Ayuso6d11cfd2013-05-22 22:42:36 +00002643 err = netfilter_init();
2644 if (err)
2645 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646#endif
David S. Millercbeb3212005-12-22 12:58:55 -08002647
Richard Cochranc1f19b52010-07-17 08:49:36 +00002648#ifdef CONFIG_NETWORK_PHY_TIMESTAMPING
2649 skb_timestamping_init();
2650#endif
2651
Nick Pigginb3e19d92011-01-07 17:50:11 +11002652out:
2653 return err;
2654
2655out_mount:
2656 unregister_filesystem(&sock_fs_type);
2657out_fs:
2658 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659}
2660
Andi Kleen77d76ea2005-12-22 12:43:42 -08002661core_initcall(sock_init); /* early initcall */
2662
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663#ifdef CONFIG_PROC_FS
2664void socket_seq_show(struct seq_file *seq)
2665{
2666 int cpu;
2667 int counter = 0;
2668
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -07002669 for_each_possible_cpu(cpu)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002670 counter += per_cpu(sockets_in_use, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671
2672 /* It can be negative, by the way. 8) */
2673 if (counter < 0)
2674 counter = 0;
2675
2676 seq_printf(seq, "sockets: used %d\n", counter);
2677}
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002678#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679
Shaun Pereira89bbfc92006-03-21 23:58:08 -08002680#ifdef CONFIG_COMPAT
Arnd Bergmann6b960182009-11-06 23:10:54 -08002681static int do_siocgstamp(struct net *net, struct socket *sock,
H. Peter Anvin644595f2012-02-19 17:51:59 -08002682 unsigned int cmd, void __user *up)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002683{
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002684 mm_segment_t old_fs = get_fs();
2685 struct timeval ktv;
2686 int err;
2687
2688 set_fs(KERNEL_DS);
Arnd Bergmann6b960182009-11-06 23:10:54 -08002689 err = sock_do_ioctl(net, sock, cmd, (unsigned long)&ktv);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002690 set_fs(old_fs);
H. Peter Anvin644595f2012-02-19 17:51:59 -08002691 if (!err)
Mikulas Patockaed6fe9d2012-09-01 12:34:07 -04002692 err = compat_put_timeval(&ktv, up);
H. Peter Anvin644595f2012-02-19 17:51:59 -08002693
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002694 return err;
2695}
2696
Arnd Bergmann6b960182009-11-06 23:10:54 -08002697static int do_siocgstampns(struct net *net, struct socket *sock,
H. Peter Anvin644595f2012-02-19 17:51:59 -08002698 unsigned int cmd, void __user *up)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002699{
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002700 mm_segment_t old_fs = get_fs();
2701 struct timespec kts;
2702 int err;
2703
2704 set_fs(KERNEL_DS);
Arnd Bergmann6b960182009-11-06 23:10:54 -08002705 err = sock_do_ioctl(net, sock, cmd, (unsigned long)&kts);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002706 set_fs(old_fs);
H. Peter Anvin644595f2012-02-19 17:51:59 -08002707 if (!err)
Mikulas Patockaed6fe9d2012-09-01 12:34:07 -04002708 err = compat_put_timespec(&kts, up);
H. Peter Anvin644595f2012-02-19 17:51:59 -08002709
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002710 return err;
2711}
2712
Arnd Bergmann6b960182009-11-06 23:10:54 -08002713static int dev_ifname32(struct net *net, struct compat_ifreq __user *uifr32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002714{
2715 struct ifreq __user *uifr;
2716 int err;
2717
2718 uifr = compat_alloc_user_space(sizeof(struct ifreq));
Arnd Bergmann6b960182009-11-06 23:10:54 -08002719 if (copy_in_user(uifr, uifr32, sizeof(struct compat_ifreq)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002720 return -EFAULT;
2721
Arnd Bergmann6b960182009-11-06 23:10:54 -08002722 err = dev_ioctl(net, SIOCGIFNAME, uifr);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002723 if (err)
2724 return err;
2725
Arnd Bergmann6b960182009-11-06 23:10:54 -08002726 if (copy_in_user(uifr32, uifr, sizeof(struct compat_ifreq)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002727 return -EFAULT;
2728
2729 return 0;
2730}
2731
Arnd Bergmann6b960182009-11-06 23:10:54 -08002732static int dev_ifconf(struct net *net, struct compat_ifconf __user *uifc32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002733{
Arnd Bergmann6b960182009-11-06 23:10:54 -08002734 struct compat_ifconf ifc32;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002735 struct ifconf ifc;
2736 struct ifconf __user *uifc;
Arnd Bergmann6b960182009-11-06 23:10:54 -08002737 struct compat_ifreq __user *ifr32;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002738 struct ifreq __user *ifr;
2739 unsigned int i, j;
2740 int err;
2741
Arnd Bergmann6b960182009-11-06 23:10:54 -08002742 if (copy_from_user(&ifc32, uifc32, sizeof(struct compat_ifconf)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002743 return -EFAULT;
2744
Mathias Krause43da5f22012-08-15 11:31:57 +00002745 memset(&ifc, 0, sizeof(ifc));
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002746 if (ifc32.ifcbuf == 0) {
2747 ifc32.ifc_len = 0;
2748 ifc.ifc_len = 0;
2749 ifc.ifc_req = NULL;
2750 uifc = compat_alloc_user_space(sizeof(struct ifconf));
2751 } else {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002752 size_t len = ((ifc32.ifc_len / sizeof(struct compat_ifreq)) + 1) *
2753 sizeof(struct ifreq);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002754 uifc = compat_alloc_user_space(sizeof(struct ifconf) + len);
2755 ifc.ifc_len = len;
2756 ifr = ifc.ifc_req = (void __user *)(uifc + 1);
2757 ifr32 = compat_ptr(ifc32.ifcbuf);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002758 for (i = 0; i < ifc32.ifc_len; i += sizeof(struct compat_ifreq)) {
Arnd Bergmann6b960182009-11-06 23:10:54 -08002759 if (copy_in_user(ifr, ifr32, sizeof(struct compat_ifreq)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002760 return -EFAULT;
2761 ifr++;
2762 ifr32++;
2763 }
2764 }
2765 if (copy_to_user(uifc, &ifc, sizeof(struct ifconf)))
2766 return -EFAULT;
2767
Arnd Bergmann6b960182009-11-06 23:10:54 -08002768 err = dev_ioctl(net, SIOCGIFCONF, uifc);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002769 if (err)
2770 return err;
2771
2772 if (copy_from_user(&ifc, uifc, sizeof(struct ifconf)))
2773 return -EFAULT;
2774
2775 ifr = ifc.ifc_req;
2776 ifr32 = compat_ptr(ifc32.ifcbuf);
2777 for (i = 0, j = 0;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002778 i + sizeof(struct compat_ifreq) <= ifc32.ifc_len && j < ifc.ifc_len;
2779 i += sizeof(struct compat_ifreq), j += sizeof(struct ifreq)) {
2780 if (copy_in_user(ifr32, ifr, sizeof(struct compat_ifreq)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002781 return -EFAULT;
2782 ifr32++;
2783 ifr++;
2784 }
2785
2786 if (ifc32.ifcbuf == 0) {
2787 /* Translate from 64-bit structure multiple to
2788 * a 32-bit one.
2789 */
2790 i = ifc.ifc_len;
Arnd Bergmann6b960182009-11-06 23:10:54 -08002791 i = ((i / sizeof(struct ifreq)) * sizeof(struct compat_ifreq));
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002792 ifc32.ifc_len = i;
2793 } else {
2794 ifc32.ifc_len = i;
2795 }
Arnd Bergmann6b960182009-11-06 23:10:54 -08002796 if (copy_to_user(uifc32, &ifc32, sizeof(struct compat_ifconf)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002797 return -EFAULT;
2798
2799 return 0;
2800}
2801
Arnd Bergmann6b960182009-11-06 23:10:54 -08002802static int ethtool_ioctl(struct net *net, struct compat_ifreq __user *ifr32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002803{
Ben Hutchings3a7da392011-03-17 07:34:32 +00002804 struct compat_ethtool_rxnfc __user *compat_rxnfc;
2805 bool convert_in = false, convert_out = false;
2806 size_t buf_size = ALIGN(sizeof(struct ifreq), 8);
2807 struct ethtool_rxnfc __user *rxnfc;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002808 struct ifreq __user *ifr;
Ben Hutchings3a7da392011-03-17 07:34:32 +00002809 u32 rule_cnt = 0, actual_rule_cnt;
2810 u32 ethcmd;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002811 u32 data;
Ben Hutchings3a7da392011-03-17 07:34:32 +00002812 int ret;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002813
2814 if (get_user(data, &ifr32->ifr_ifru.ifru_data))
2815 return -EFAULT;
2816
Ben Hutchings3a7da392011-03-17 07:34:32 +00002817 compat_rxnfc = compat_ptr(data);
2818
2819 if (get_user(ethcmd, &compat_rxnfc->cmd))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002820 return -EFAULT;
2821
Ben Hutchings3a7da392011-03-17 07:34:32 +00002822 /* Most ethtool structures are defined without padding.
2823 * Unfortunately struct ethtool_rxnfc is an exception.
2824 */
2825 switch (ethcmd) {
2826 default:
2827 break;
2828 case ETHTOOL_GRXCLSRLALL:
2829 /* Buffer size is variable */
2830 if (get_user(rule_cnt, &compat_rxnfc->rule_cnt))
2831 return -EFAULT;
2832 if (rule_cnt > KMALLOC_MAX_SIZE / sizeof(u32))
2833 return -ENOMEM;
2834 buf_size += rule_cnt * sizeof(u32);
2835 /* fall through */
2836 case ETHTOOL_GRXRINGS:
2837 case ETHTOOL_GRXCLSRLCNT:
2838 case ETHTOOL_GRXCLSRULE:
Ben Hutchings55664f32012-01-03 12:04:51 +00002839 case ETHTOOL_SRXCLSRLINS:
Ben Hutchings3a7da392011-03-17 07:34:32 +00002840 convert_out = true;
2841 /* fall through */
2842 case ETHTOOL_SRXCLSRLDEL:
Ben Hutchings3a7da392011-03-17 07:34:32 +00002843 buf_size += sizeof(struct ethtool_rxnfc);
2844 convert_in = true;
2845 break;
2846 }
2847
2848 ifr = compat_alloc_user_space(buf_size);
Stephen Hemminger954b1242013-02-11 06:22:28 +00002849 rxnfc = (void __user *)ifr + ALIGN(sizeof(struct ifreq), 8);
Ben Hutchings3a7da392011-03-17 07:34:32 +00002850
2851 if (copy_in_user(&ifr->ifr_name, &ifr32->ifr_name, IFNAMSIZ))
2852 return -EFAULT;
2853
2854 if (put_user(convert_in ? rxnfc : compat_ptr(data),
2855 &ifr->ifr_ifru.ifru_data))
2856 return -EFAULT;
2857
2858 if (convert_in) {
Alexander Duyck127fe532011-04-08 18:01:59 +00002859 /* We expect there to be holes between fs.m_ext and
Ben Hutchings3a7da392011-03-17 07:34:32 +00002860 * fs.ring_cookie and at the end of fs, but nowhere else.
2861 */
Alexander Duyck127fe532011-04-08 18:01:59 +00002862 BUILD_BUG_ON(offsetof(struct compat_ethtool_rxnfc, fs.m_ext) +
2863 sizeof(compat_rxnfc->fs.m_ext) !=
2864 offsetof(struct ethtool_rxnfc, fs.m_ext) +
2865 sizeof(rxnfc->fs.m_ext));
Ben Hutchings3a7da392011-03-17 07:34:32 +00002866 BUILD_BUG_ON(
2867 offsetof(struct compat_ethtool_rxnfc, fs.location) -
2868 offsetof(struct compat_ethtool_rxnfc, fs.ring_cookie) !=
2869 offsetof(struct ethtool_rxnfc, fs.location) -
2870 offsetof(struct ethtool_rxnfc, fs.ring_cookie));
2871
2872 if (copy_in_user(rxnfc, compat_rxnfc,
Stephen Hemminger954b1242013-02-11 06:22:28 +00002873 (void __user *)(&rxnfc->fs.m_ext + 1) -
2874 (void __user *)rxnfc) ||
Ben Hutchings3a7da392011-03-17 07:34:32 +00002875 copy_in_user(&rxnfc->fs.ring_cookie,
2876 &compat_rxnfc->fs.ring_cookie,
Stephen Hemminger954b1242013-02-11 06:22:28 +00002877 (void __user *)(&rxnfc->fs.location + 1) -
2878 (void __user *)&rxnfc->fs.ring_cookie) ||
Ben Hutchings3a7da392011-03-17 07:34:32 +00002879 copy_in_user(&rxnfc->rule_cnt, &compat_rxnfc->rule_cnt,
2880 sizeof(rxnfc->rule_cnt)))
2881 return -EFAULT;
2882 }
2883
2884 ret = dev_ioctl(net, SIOCETHTOOL, ifr);
2885 if (ret)
2886 return ret;
2887
2888 if (convert_out) {
2889 if (copy_in_user(compat_rxnfc, rxnfc,
Stephen Hemminger954b1242013-02-11 06:22:28 +00002890 (const void __user *)(&rxnfc->fs.m_ext + 1) -
2891 (const void __user *)rxnfc) ||
Ben Hutchings3a7da392011-03-17 07:34:32 +00002892 copy_in_user(&compat_rxnfc->fs.ring_cookie,
2893 &rxnfc->fs.ring_cookie,
Stephen Hemminger954b1242013-02-11 06:22:28 +00002894 (const void __user *)(&rxnfc->fs.location + 1) -
2895 (const void __user *)&rxnfc->fs.ring_cookie) ||
Ben Hutchings3a7da392011-03-17 07:34:32 +00002896 copy_in_user(&compat_rxnfc->rule_cnt, &rxnfc->rule_cnt,
2897 sizeof(rxnfc->rule_cnt)))
2898 return -EFAULT;
2899
2900 if (ethcmd == ETHTOOL_GRXCLSRLALL) {
2901 /* As an optimisation, we only copy the actual
2902 * number of rules that the underlying
2903 * function returned. Since Mallory might
2904 * change the rule count in user memory, we
2905 * check that it is less than the rule count
2906 * originally given (as the user buffer size),
2907 * which has been range-checked.
2908 */
2909 if (get_user(actual_rule_cnt, &rxnfc->rule_cnt))
2910 return -EFAULT;
2911 if (actual_rule_cnt < rule_cnt)
2912 rule_cnt = actual_rule_cnt;
2913 if (copy_in_user(&compat_rxnfc->rule_locs[0],
2914 &rxnfc->rule_locs[0],
2915 rule_cnt * sizeof(u32)))
2916 return -EFAULT;
2917 }
2918 }
2919
2920 return 0;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002921}
2922
Arnd Bergmann7a50a242009-11-08 20:57:03 -08002923static int compat_siocwandev(struct net *net, struct compat_ifreq __user *uifr32)
2924{
2925 void __user *uptr;
2926 compat_uptr_t uptr32;
2927 struct ifreq __user *uifr;
2928
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002929 uifr = compat_alloc_user_space(sizeof(*uifr));
Arnd Bergmann7a50a242009-11-08 20:57:03 -08002930 if (copy_in_user(uifr, uifr32, sizeof(struct compat_ifreq)))
2931 return -EFAULT;
2932
2933 if (get_user(uptr32, &uifr32->ifr_settings.ifs_ifsu))
2934 return -EFAULT;
2935
2936 uptr = compat_ptr(uptr32);
2937
2938 if (put_user(uptr, &uifr->ifr_settings.ifs_ifsu.raw_hdlc))
2939 return -EFAULT;
2940
2941 return dev_ioctl(net, SIOCWANDEV, uifr);
2942}
2943
Arnd Bergmann6b960182009-11-06 23:10:54 -08002944static int bond_ioctl(struct net *net, unsigned int cmd,
2945 struct compat_ifreq __user *ifr32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002946{
2947 struct ifreq kifr;
2948 struct ifreq __user *uifr;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002949 mm_segment_t old_fs;
2950 int err;
2951 u32 data;
2952 void __user *datap;
2953
2954 switch (cmd) {
2955 case SIOCBONDENSLAVE:
2956 case SIOCBONDRELEASE:
2957 case SIOCBONDSETHWADDR:
2958 case SIOCBONDCHANGEACTIVE:
Arnd Bergmann6b960182009-11-06 23:10:54 -08002959 if (copy_from_user(&kifr, ifr32, sizeof(struct compat_ifreq)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002960 return -EFAULT;
2961
2962 old_fs = get_fs();
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002963 set_fs(KERNEL_DS);
stephen hemmingerc3f52ae2011-02-23 09:06:48 +00002964 err = dev_ioctl(net, cmd,
2965 (struct ifreq __user __force *) &kifr);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002966 set_fs(old_fs);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002967
2968 return err;
2969 case SIOCBONDSLAVEINFOQUERY:
2970 case SIOCBONDINFOQUERY:
2971 uifr = compat_alloc_user_space(sizeof(*uifr));
2972 if (copy_in_user(&uifr->ifr_name, &ifr32->ifr_name, IFNAMSIZ))
2973 return -EFAULT;
2974
2975 if (get_user(data, &ifr32->ifr_ifru.ifru_data))
2976 return -EFAULT;
2977
2978 datap = compat_ptr(data);
2979 if (put_user(datap, &uifr->ifr_ifru.ifru_data))
2980 return -EFAULT;
2981
Arnd Bergmann6b960182009-11-06 23:10:54 -08002982 return dev_ioctl(net, cmd, uifr);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002983 default:
Linus Torvalds07d106d2012-01-05 15:40:12 -08002984 return -ENOIOCTLCMD;
Joe Perchesccbd6a52010-05-14 10:58:26 +00002985 }
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002986}
2987
Arnd Bergmann6b960182009-11-06 23:10:54 -08002988static int siocdevprivate_ioctl(struct net *net, unsigned int cmd,
2989 struct compat_ifreq __user *u_ifreq32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002990{
2991 struct ifreq __user *u_ifreq64;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002992 char tmp_buf[IFNAMSIZ];
2993 void __user *data64;
2994 u32 data32;
2995
2996 if (copy_from_user(&tmp_buf[0], &(u_ifreq32->ifr_ifrn.ifrn_name[0]),
2997 IFNAMSIZ))
2998 return -EFAULT;
2999 if (__get_user(data32, &u_ifreq32->ifr_ifru.ifru_data))
3000 return -EFAULT;
3001 data64 = compat_ptr(data32);
3002
3003 u_ifreq64 = compat_alloc_user_space(sizeof(*u_ifreq64));
3004
3005 /* Don't check these user accesses, just let that get trapped
3006 * in the ioctl handler instead.
3007 */
3008 if (copy_to_user(&u_ifreq64->ifr_ifrn.ifrn_name[0], &tmp_buf[0],
3009 IFNAMSIZ))
3010 return -EFAULT;
3011 if (__put_user(data64, &u_ifreq64->ifr_ifru.ifru_data))
3012 return -EFAULT;
3013
Arnd Bergmann6b960182009-11-06 23:10:54 -08003014 return dev_ioctl(net, cmd, u_ifreq64);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003015}
3016
Arnd Bergmann6b960182009-11-06 23:10:54 -08003017static int dev_ifsioc(struct net *net, struct socket *sock,
3018 unsigned int cmd, struct compat_ifreq __user *uifr32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003019{
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003020 struct ifreq __user *uifr;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003021 int err;
3022
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003023 uifr = compat_alloc_user_space(sizeof(*uifr));
3024 if (copy_in_user(uifr, uifr32, sizeof(*uifr32)))
3025 return -EFAULT;
3026
3027 err = sock_do_ioctl(net, sock, cmd, (unsigned long)uifr);
3028
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003029 if (!err) {
3030 switch (cmd) {
3031 case SIOCGIFFLAGS:
3032 case SIOCGIFMETRIC:
3033 case SIOCGIFMTU:
3034 case SIOCGIFMEM:
3035 case SIOCGIFHWADDR:
3036 case SIOCGIFINDEX:
3037 case SIOCGIFADDR:
3038 case SIOCGIFBRDADDR:
3039 case SIOCGIFDSTADDR:
3040 case SIOCGIFNETMASK:
Arnd Bergmannfab25322009-11-08 20:56:21 -08003041 case SIOCGIFPFLAGS:
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003042 case SIOCGIFTXQLEN:
Arnd Bergmannfab25322009-11-08 20:56:21 -08003043 case SIOCGMIIPHY:
3044 case SIOCGMIIREG:
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003045 if (copy_in_user(uifr32, uifr, sizeof(*uifr32)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003046 err = -EFAULT;
3047 break;
3048 }
3049 }
3050 return err;
3051}
3052
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003053static int compat_sioc_ifmap(struct net *net, unsigned int cmd,
3054 struct compat_ifreq __user *uifr32)
3055{
3056 struct ifreq ifr;
3057 struct compat_ifmap __user *uifmap32;
3058 mm_segment_t old_fs;
3059 int err;
3060
3061 uifmap32 = &uifr32->ifr_ifru.ifru_map;
3062 err = copy_from_user(&ifr, uifr32, sizeof(ifr.ifr_name));
3063 err |= __get_user(ifr.ifr_map.mem_start, &uifmap32->mem_start);
3064 err |= __get_user(ifr.ifr_map.mem_end, &uifmap32->mem_end);
3065 err |= __get_user(ifr.ifr_map.base_addr, &uifmap32->base_addr);
3066 err |= __get_user(ifr.ifr_map.irq, &uifmap32->irq);
3067 err |= __get_user(ifr.ifr_map.dma, &uifmap32->dma);
3068 err |= __get_user(ifr.ifr_map.port, &uifmap32->port);
3069 if (err)
3070 return -EFAULT;
3071
3072 old_fs = get_fs();
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003073 set_fs(KERNEL_DS);
stephen hemmingerc3f52ae2011-02-23 09:06:48 +00003074 err = dev_ioctl(net, cmd, (void __user __force *)&ifr);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003075 set_fs(old_fs);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003076
3077 if (cmd == SIOCGIFMAP && !err) {
3078 err = copy_to_user(uifr32, &ifr, sizeof(ifr.ifr_name));
3079 err |= __put_user(ifr.ifr_map.mem_start, &uifmap32->mem_start);
3080 err |= __put_user(ifr.ifr_map.mem_end, &uifmap32->mem_end);
3081 err |= __put_user(ifr.ifr_map.base_addr, &uifmap32->base_addr);
3082 err |= __put_user(ifr.ifr_map.irq, &uifmap32->irq);
3083 err |= __put_user(ifr.ifr_map.dma, &uifmap32->dma);
3084 err |= __put_user(ifr.ifr_map.port, &uifmap32->port);
3085 if (err)
3086 err = -EFAULT;
3087 }
3088 return err;
3089}
3090
3091static int compat_siocshwtstamp(struct net *net, struct compat_ifreq __user *uifr32)
3092{
3093 void __user *uptr;
3094 compat_uptr_t uptr32;
3095 struct ifreq __user *uifr;
3096
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003097 uifr = compat_alloc_user_space(sizeof(*uifr));
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003098 if (copy_in_user(uifr, uifr32, sizeof(struct compat_ifreq)))
3099 return -EFAULT;
3100
3101 if (get_user(uptr32, &uifr32->ifr_data))
3102 return -EFAULT;
3103
3104 uptr = compat_ptr(uptr32);
3105
3106 if (put_user(uptr, &uifr->ifr_data))
3107 return -EFAULT;
3108
3109 return dev_ioctl(net, SIOCSHWTSTAMP, uifr);
3110}
3111
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003112struct rtentry32 {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003113 u32 rt_pad1;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003114 struct sockaddr rt_dst; /* target address */
3115 struct sockaddr rt_gateway; /* gateway addr (RTF_GATEWAY) */
3116 struct sockaddr rt_genmask; /* target network mask (IP) */
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003117 unsigned short rt_flags;
3118 short rt_pad2;
3119 u32 rt_pad3;
3120 unsigned char rt_tos;
3121 unsigned char rt_class;
3122 short rt_pad4;
3123 short rt_metric; /* +1 for binary compatibility! */
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003124 /* char * */ u32 rt_dev; /* forcing the device at add */
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003125 u32 rt_mtu; /* per route MTU/Window */
3126 u32 rt_window; /* Window clamping */
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003127 unsigned short rt_irtt; /* Initial RTT */
3128};
3129
3130struct in6_rtmsg32 {
3131 struct in6_addr rtmsg_dst;
3132 struct in6_addr rtmsg_src;
3133 struct in6_addr rtmsg_gateway;
3134 u32 rtmsg_type;
3135 u16 rtmsg_dst_len;
3136 u16 rtmsg_src_len;
3137 u32 rtmsg_metric;
3138 u32 rtmsg_info;
3139 u32 rtmsg_flags;
3140 s32 rtmsg_ifindex;
3141};
3142
Arnd Bergmann6b960182009-11-06 23:10:54 -08003143static int routing_ioctl(struct net *net, struct socket *sock,
3144 unsigned int cmd, void __user *argp)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003145{
3146 int ret;
3147 void *r = NULL;
3148 struct in6_rtmsg r6;
3149 struct rtentry r4;
3150 char devname[16];
3151 u32 rtdev;
3152 mm_segment_t old_fs = get_fs();
3153
Arnd Bergmann6b960182009-11-06 23:10:54 -08003154 if (sock && sock->sk && sock->sk->sk_family == AF_INET6) { /* ipv6 */
3155 struct in6_rtmsg32 __user *ur6 = argp;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003156 ret = copy_from_user(&r6.rtmsg_dst, &(ur6->rtmsg_dst),
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003157 3 * sizeof(struct in6_addr));
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003158 ret |= __get_user(r6.rtmsg_type, &(ur6->rtmsg_type));
3159 ret |= __get_user(r6.rtmsg_dst_len, &(ur6->rtmsg_dst_len));
3160 ret |= __get_user(r6.rtmsg_src_len, &(ur6->rtmsg_src_len));
3161 ret |= __get_user(r6.rtmsg_metric, &(ur6->rtmsg_metric));
3162 ret |= __get_user(r6.rtmsg_info, &(ur6->rtmsg_info));
3163 ret |= __get_user(r6.rtmsg_flags, &(ur6->rtmsg_flags));
3164 ret |= __get_user(r6.rtmsg_ifindex, &(ur6->rtmsg_ifindex));
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003165
3166 r = (void *) &r6;
3167 } else { /* ipv4 */
Arnd Bergmann6b960182009-11-06 23:10:54 -08003168 struct rtentry32 __user *ur4 = argp;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003169 ret = copy_from_user(&r4.rt_dst, &(ur4->rt_dst),
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003170 3 * sizeof(struct sockaddr));
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003171 ret |= __get_user(r4.rt_flags, &(ur4->rt_flags));
3172 ret |= __get_user(r4.rt_metric, &(ur4->rt_metric));
3173 ret |= __get_user(r4.rt_mtu, &(ur4->rt_mtu));
3174 ret |= __get_user(r4.rt_window, &(ur4->rt_window));
3175 ret |= __get_user(r4.rt_irtt, &(ur4->rt_irtt));
3176 ret |= __get_user(rtdev, &(ur4->rt_dev));
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003177 if (rtdev) {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003178 ret |= copy_from_user(devname, compat_ptr(rtdev), 15);
stephen hemmingerc3f52ae2011-02-23 09:06:48 +00003179 r4.rt_dev = (char __user __force *)devname;
3180 devname[15] = 0;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003181 } else
3182 r4.rt_dev = NULL;
3183
3184 r = (void *) &r4;
3185 }
3186
3187 if (ret) {
3188 ret = -EFAULT;
3189 goto out;
3190 }
3191
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003192 set_fs(KERNEL_DS);
Arnd Bergmann6b960182009-11-06 23:10:54 -08003193 ret = sock_do_ioctl(net, sock, cmd, (unsigned long) r);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003194 set_fs(old_fs);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003195
3196out:
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003197 return ret;
3198}
3199
3200/* Since old style bridge ioctl's endup using SIOCDEVPRIVATE
3201 * for some operations; this forces use of the newer bridge-utils that
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003202 * use compatible ioctls
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003203 */
Arnd Bergmann6b960182009-11-06 23:10:54 -08003204static int old_bridge_ioctl(compat_ulong_t __user *argp)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003205{
Arnd Bergmann6b960182009-11-06 23:10:54 -08003206 compat_ulong_t tmp;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003207
Arnd Bergmann6b960182009-11-06 23:10:54 -08003208 if (get_user(tmp, argp))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003209 return -EFAULT;
3210 if (tmp == BRCTL_GET_VERSION)
3211 return BRCTL_VERSION + 1;
3212 return -EINVAL;
3213}
3214
Arnd Bergmann6b960182009-11-06 23:10:54 -08003215static int compat_sock_ioctl_trans(struct file *file, struct socket *sock,
3216 unsigned int cmd, unsigned long arg)
3217{
3218 void __user *argp = compat_ptr(arg);
3219 struct sock *sk = sock->sk;
3220 struct net *net = sock_net(sk);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003221
Arnd Bergmann6b960182009-11-06 23:10:54 -08003222 if (cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15))
3223 return siocdevprivate_ioctl(net, cmd, argp);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003224
Arnd Bergmann6b960182009-11-06 23:10:54 -08003225 switch (cmd) {
3226 case SIOCSIFBR:
3227 case SIOCGIFBR:
3228 return old_bridge_ioctl(argp);
3229 case SIOCGIFNAME:
3230 return dev_ifname32(net, argp);
3231 case SIOCGIFCONF:
3232 return dev_ifconf(net, argp);
3233 case SIOCETHTOOL:
3234 return ethtool_ioctl(net, argp);
Arnd Bergmann7a50a242009-11-08 20:57:03 -08003235 case SIOCWANDEV:
3236 return compat_siocwandev(net, argp);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003237 case SIOCGIFMAP:
3238 case SIOCSIFMAP:
3239 return compat_sioc_ifmap(net, cmd, argp);
Arnd Bergmann6b960182009-11-06 23:10:54 -08003240 case SIOCBONDENSLAVE:
3241 case SIOCBONDRELEASE:
3242 case SIOCBONDSETHWADDR:
3243 case SIOCBONDSLAVEINFOQUERY:
3244 case SIOCBONDINFOQUERY:
3245 case SIOCBONDCHANGEACTIVE:
3246 return bond_ioctl(net, cmd, argp);
3247 case SIOCADDRT:
3248 case SIOCDELRT:
3249 return routing_ioctl(net, sock, cmd, argp);
3250 case SIOCGSTAMP:
3251 return do_siocgstamp(net, sock, cmd, argp);
3252 case SIOCGSTAMPNS:
3253 return do_siocgstampns(net, sock, cmd, argp);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003254 case SIOCSHWTSTAMP:
3255 return compat_siocshwtstamp(net, argp);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003256
Arnd Bergmann6b960182009-11-06 23:10:54 -08003257 case FIOSETOWN:
3258 case SIOCSPGRP:
3259 case FIOGETOWN:
3260 case SIOCGPGRP:
3261 case SIOCBRADDBR:
3262 case SIOCBRDELBR:
3263 case SIOCGIFVLAN:
3264 case SIOCSIFVLAN:
3265 case SIOCADDDLCI:
3266 case SIOCDELDLCI:
3267 return sock_ioctl(file, cmd, arg);
3268
3269 case SIOCGIFFLAGS:
3270 case SIOCSIFFLAGS:
3271 case SIOCGIFMETRIC:
3272 case SIOCSIFMETRIC:
3273 case SIOCGIFMTU:
3274 case SIOCSIFMTU:
3275 case SIOCGIFMEM:
3276 case SIOCSIFMEM:
3277 case SIOCGIFHWADDR:
3278 case SIOCSIFHWADDR:
3279 case SIOCADDMULTI:
3280 case SIOCDELMULTI:
3281 case SIOCGIFINDEX:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003282 case SIOCGIFADDR:
3283 case SIOCSIFADDR:
3284 case SIOCSIFHWBROADCAST:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003285 case SIOCDIFADDR:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003286 case SIOCGIFBRDADDR:
3287 case SIOCSIFBRDADDR:
3288 case SIOCGIFDSTADDR:
3289 case SIOCSIFDSTADDR:
3290 case SIOCGIFNETMASK:
3291 case SIOCSIFNETMASK:
3292 case SIOCSIFPFLAGS:
3293 case SIOCGIFPFLAGS:
3294 case SIOCGIFTXQLEN:
3295 case SIOCSIFTXQLEN:
3296 case SIOCBRADDIF:
3297 case SIOCBRDELIF:
Arnd Bergmann9177efd2009-11-06 08:09:09 +00003298 case SIOCSIFNAME:
3299 case SIOCGMIIPHY:
3300 case SIOCGMIIREG:
3301 case SIOCSMIIREG:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003302 return dev_ifsioc(net, sock, cmd, argp);
Arnd Bergmann9177efd2009-11-06 08:09:09 +00003303
Arnd Bergmann6b960182009-11-06 23:10:54 -08003304 case SIOCSARP:
3305 case SIOCGARP:
3306 case SIOCDARP:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003307 case SIOCATMARK:
Arnd Bergmann9177efd2009-11-06 08:09:09 +00003308 return sock_do_ioctl(net, sock, cmd, arg);
3309 }
3310
Arnd Bergmann6b960182009-11-06 23:10:54 -08003311 return -ENOIOCTLCMD;
3312}
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003313
Eric Dumazet95c96172012-04-15 05:58:06 +00003314static long compat_sock_ioctl(struct file *file, unsigned int cmd,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07003315 unsigned long arg)
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003316{
3317 struct socket *sock = file->private_data;
3318 int ret = -ENOIOCTLCMD;
David S. Miller87de87d2008-06-03 09:14:03 -07003319 struct sock *sk;
3320 struct net *net;
3321
3322 sk = sock->sk;
3323 net = sock_net(sk);
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003324
3325 if (sock->ops->compat_ioctl)
3326 ret = sock->ops->compat_ioctl(sock, cmd, arg);
3327
David S. Miller87de87d2008-06-03 09:14:03 -07003328 if (ret == -ENOIOCTLCMD &&
3329 (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST))
3330 ret = compat_wext_handle_ioctl(net, cmd, arg);
3331
Arnd Bergmann6b960182009-11-06 23:10:54 -08003332 if (ret == -ENOIOCTLCMD)
3333 ret = compat_sock_ioctl_trans(file, sock, cmd, arg);
3334
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003335 return ret;
3336}
3337#endif
3338
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003339int kernel_bind(struct socket *sock, struct sockaddr *addr, int addrlen)
3340{
3341 return sock->ops->bind(sock, addr, addrlen);
3342}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003343EXPORT_SYMBOL(kernel_bind);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003344
3345int kernel_listen(struct socket *sock, int backlog)
3346{
3347 return sock->ops->listen(sock, backlog);
3348}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003349EXPORT_SYMBOL(kernel_listen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003350
3351int kernel_accept(struct socket *sock, struct socket **newsock, int flags)
3352{
3353 struct sock *sk = sock->sk;
3354 int err;
3355
3356 err = sock_create_lite(sk->sk_family, sk->sk_type, sk->sk_protocol,
3357 newsock);
3358 if (err < 0)
3359 goto done;
3360
3361 err = sock->ops->accept(sock, *newsock, flags);
3362 if (err < 0) {
3363 sock_release(*newsock);
Tony Battersbyfa8705b2007-10-10 21:09:04 -07003364 *newsock = NULL;
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003365 goto done;
3366 }
3367
3368 (*newsock)->ops = sock->ops;
Wei Yongjun1b085342008-12-18 19:35:10 -08003369 __module_get((*newsock)->ops->owner);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003370
3371done:
3372 return err;
3373}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003374EXPORT_SYMBOL(kernel_accept);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003375
3376int kernel_connect(struct socket *sock, struct sockaddr *addr, int addrlen,
YOSHIFUJI Hideaki4768fbc2007-02-09 23:25:31 +09003377 int flags)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003378{
3379 return sock->ops->connect(sock, addr, addrlen, flags);
3380}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003381EXPORT_SYMBOL(kernel_connect);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003382
3383int kernel_getsockname(struct socket *sock, struct sockaddr *addr,
3384 int *addrlen)
3385{
3386 return sock->ops->getname(sock, addr, addrlen, 0);
3387}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003388EXPORT_SYMBOL(kernel_getsockname);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003389
3390int kernel_getpeername(struct socket *sock, struct sockaddr *addr,
3391 int *addrlen)
3392{
3393 return sock->ops->getname(sock, addr, addrlen, 1);
3394}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003395EXPORT_SYMBOL(kernel_getpeername);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003396
3397int kernel_getsockopt(struct socket *sock, int level, int optname,
3398 char *optval, int *optlen)
3399{
3400 mm_segment_t oldfs = get_fs();
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003401 char __user *uoptval;
3402 int __user *uoptlen;
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003403 int err;
3404
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003405 uoptval = (char __user __force *) optval;
3406 uoptlen = (int __user __force *) optlen;
3407
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003408 set_fs(KERNEL_DS);
3409 if (level == SOL_SOCKET)
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003410 err = sock_getsockopt(sock, level, optname, uoptval, uoptlen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003411 else
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003412 err = sock->ops->getsockopt(sock, level, optname, uoptval,
3413 uoptlen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003414 set_fs(oldfs);
3415 return err;
3416}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003417EXPORT_SYMBOL(kernel_getsockopt);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003418
3419int kernel_setsockopt(struct socket *sock, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07003420 char *optval, unsigned int optlen)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003421{
3422 mm_segment_t oldfs = get_fs();
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003423 char __user *uoptval;
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003424 int err;
3425
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003426 uoptval = (char __user __force *) optval;
3427
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003428 set_fs(KERNEL_DS);
3429 if (level == SOL_SOCKET)
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003430 err = sock_setsockopt(sock, level, optname, uoptval, optlen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003431 else
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003432 err = sock->ops->setsockopt(sock, level, optname, uoptval,
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003433 optlen);
3434 set_fs(oldfs);
3435 return err;
3436}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003437EXPORT_SYMBOL(kernel_setsockopt);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003438
3439int kernel_sendpage(struct socket *sock, struct page *page, int offset,
3440 size_t size, int flags)
3441{
3442 if (sock->ops->sendpage)
3443 return sock->ops->sendpage(sock, page, offset, size, flags);
3444
3445 return sock_no_sendpage(sock, page, offset, size, flags);
3446}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003447EXPORT_SYMBOL(kernel_sendpage);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003448
3449int kernel_sock_ioctl(struct socket *sock, int cmd, unsigned long arg)
3450{
3451 mm_segment_t oldfs = get_fs();
3452 int err;
3453
3454 set_fs(KERNEL_DS);
3455 err = sock->ops->ioctl(sock, cmd, arg);
3456 set_fs(oldfs);
3457
3458 return err;
3459}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003460EXPORT_SYMBOL(kernel_sock_ioctl);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003461
Trond Myklebust91cf45f2007-11-12 18:10:39 -08003462int kernel_sock_shutdown(struct socket *sock, enum sock_shutdown_cmd how)
3463{
3464 return sock->ops->shutdown(sock, how);
3465}
Trond Myklebust91cf45f2007-11-12 18:10:39 -08003466EXPORT_SYMBOL(kernel_sock_shutdown);