blob: f37974014356a8671411a94901b849ba3bee73a5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * NET An implementation of the SOCKET network access protocol.
3 *
4 * Version: @(#)socket.c 1.1.93 18/02/95
5 *
6 * Authors: Orest Zborowski, <obz@Kodak.COM>
Jesper Juhl02c30a82005-05-05 16:16:16 -07007 * Ross Biro
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
9 *
10 * Fixes:
11 * Anonymous : NOTSOCK/BADF cleanup. Error fix in
12 * shutdown()
13 * Alan Cox : verify_area() fixes
14 * Alan Cox : Removed DDI
15 * Jonathan Kamens : SOCK_DGRAM reconnect bug
16 * Alan Cox : Moved a load of checks to the very
17 * top level.
18 * Alan Cox : Move address structures to/from user
19 * mode above the protocol layers.
20 * Rob Janssen : Allow 0 length sends.
21 * Alan Cox : Asynchronous I/O support (cribbed from the
22 * tty drivers).
23 * Niibe Yutaka : Asynchronous I/O for writes (4.4BSD style)
24 * Jeff Uphoff : Made max number of sockets command-line
25 * configurable.
26 * Matti Aarnio : Made the number of sockets dynamic,
27 * to be allocated when needed, and mr.
28 * Uphoff's max is used as max to be
29 * allowed to allocate.
30 * Linus : Argh. removed all the socket allocation
31 * altogether: it's in the inode now.
32 * Alan Cox : Made sock_alloc()/sock_release() public
33 * for NetROM and future kernel nfsd type
34 * stuff.
35 * Alan Cox : sendmsg/recvmsg basics.
36 * Tom Dyas : Export net symbols.
37 * Marcin Dalecki : Fixed problems with CONFIG_NET="n".
38 * Alan Cox : Added thread locking to sys_* calls
39 * for sockets. May have errors at the
40 * moment.
41 * Kevin Buhr : Fixed the dumb errors in the above.
42 * Andi Kleen : Some small cleanups, optimizations,
43 * and fixed a copy_from_user() bug.
44 * Tigran Aivazian : sys_send(args) calls sys_sendto(args, NULL, 0)
Stephen Hemminger89bddce2006-09-01 00:19:31 -070045 * Tigran Aivazian : Made listen(2) backlog sanity checks
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 * protocol-independent
47 *
48 *
49 * This program is free software; you can redistribute it and/or
50 * modify it under the terms of the GNU General Public License
51 * as published by the Free Software Foundation; either version
52 * 2 of the License, or (at your option) any later version.
53 *
54 *
55 * This module is effectively the top level interface to the BSD socket
Stephen Hemminger89bddce2006-09-01 00:19:31 -070056 * paradigm.
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 *
58 * Based upon Swansea University Computer Society NET3.039
59 */
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#include <linux/socket.h>
63#include <linux/file.h>
64#include <linux/net.h>
65#include <linux/interrupt.h>
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -070066#include <linux/thread_info.h>
Stephen Hemminger55737fd2006-09-01 00:23:39 -070067#include <linux/rcupdate.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#include <linux/netdevice.h>
69#include <linux/proc_fs.h>
70#include <linux/seq_file.h>
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -080071#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#include <linux/wanrouter.h>
73#include <linux/if_bridge.h>
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -030074#include <linux/if_frad.h>
75#include <linux/if_vlan.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#include <linux/init.h>
77#include <linux/poll.h>
78#include <linux/cache.h>
79#include <linux/module.h>
80#include <linux/highmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#include <linux/mount.h>
82#include <linux/security.h>
83#include <linux/syscalls.h>
84#include <linux/compat.h>
85#include <linux/kmod.h>
David Woodhouse3ec3b2f2005-05-17 12:08:48 +010086#include <linux/audit.h>
Adrian Bunkd86b5e02006-01-21 00:46:55 +010087#include <linux/wireless.h>
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -070088#include <linux/nsproxy.h>
Nick Black1fd73172009-09-22 16:43:33 -070089#include <linux/magic.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090090#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92#include <asm/uaccess.h>
93#include <asm/unistd.h>
94
95#include <net/compat.h>
David S. Miller87de87d2008-06-03 09:14:03 -070096#include <net/wext.h>
Herbert Xuf8451722010-05-24 00:12:34 -070097#include <net/cls_cgroup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99#include <net/sock.h>
100#include <linux/netfilter.h>
101
Arnd Bergmann6b960182009-11-06 23:10:54 -0800102#include <linux/if_tun.h>
103#include <linux/ipv6_route.h>
104#include <linux/route.h>
Arnd Bergmann6b960182009-11-06 23:10:54 -0800105#include <linux/sockios.h>
106#include <linux/atalk.h>
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108static int sock_no_open(struct inode *irrelevant, struct file *dontcare);
Badari Pulavarty027445c2006-09-30 23:28:46 -0700109static ssize_t sock_aio_read(struct kiocb *iocb, const struct iovec *iov,
110 unsigned long nr_segs, loff_t pos);
111static ssize_t sock_aio_write(struct kiocb *iocb, const struct iovec *iov,
112 unsigned long nr_segs, loff_t pos);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700113static int sock_mmap(struct file *file, struct vm_area_struct *vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
115static int sock_close(struct inode *inode, struct file *file);
116static unsigned int sock_poll(struct file *file,
117 struct poll_table_struct *wait);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700118static long sock_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800119#ifdef CONFIG_COMPAT
120static long compat_sock_ioctl(struct file *file,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700121 unsigned int cmd, unsigned long arg);
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800122#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123static int sock_fasync(int fd, struct file *filp, int on);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124static ssize_t sock_sendpage(struct file *file, struct page *page,
125 int offset, size_t size, loff_t *ppos, int more);
Jens Axboe9c55e012007-11-06 23:30:13 -0800126static ssize_t sock_splice_read(struct file *file, loff_t *ppos,
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700127 struct pipe_inode_info *pipe, size_t len,
Jens Axboe9c55e012007-11-06 23:30:13 -0800128 unsigned int flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130/*
131 * Socket files have a set of 'special' operations as well as the generic file ones. These don't appear
132 * in the operation structures but are done directly via the socketcall() multiplexor.
133 */
134
Arjan van de Venda7071d2007-02-12 00:55:36 -0800135static const struct file_operations socket_file_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 .owner = THIS_MODULE,
137 .llseek = no_llseek,
138 .aio_read = sock_aio_read,
139 .aio_write = sock_aio_write,
140 .poll = sock_poll,
141 .unlocked_ioctl = sock_ioctl,
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800142#ifdef CONFIG_COMPAT
143 .compat_ioctl = compat_sock_ioctl,
144#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 .mmap = sock_mmap,
146 .open = sock_no_open, /* special open code to disallow open via /proc */
147 .release = sock_close,
148 .fasync = sock_fasync,
Jens Axboe5274f052006-03-30 15:15:30 +0200149 .sendpage = sock_sendpage,
150 .splice_write = generic_splice_sendpage,
Jens Axboe9c55e012007-11-06 23:30:13 -0800151 .splice_read = sock_splice_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152};
153
154/*
155 * The protocol list. Each protocol is registered in here.
156 */
157
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158static DEFINE_SPINLOCK(net_family_lock);
Eric Dumazet190683a2010-11-10 10:50:44 +0000159static const struct net_proto_family __rcu *net_families[NPROTO] __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161/*
162 * Statistics counters of the socket lists
163 */
164
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700165static DEFINE_PER_CPU(int, sockets_in_use);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
167/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700168 * Support routines.
169 * Move socket addresses back and forth across the kernel/user
170 * divide and look after the messy bits.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 */
172
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173/**
174 * move_addr_to_kernel - copy a socket address into kernel space
175 * @uaddr: Address in user space
176 * @kaddr: Address in kernel space
177 * @ulen: Length in user space
178 *
179 * The address is copied into kernel space. If the provided address is
180 * too long an error code of -EINVAL is returned. If the copy gives
181 * invalid addresses -EFAULT is returned. On a success 0 is returned.
182 */
183
Maciej Żenczykowski43db3622012-03-11 12:51:50 +0000184int move_addr_to_kernel(void __user *uaddr, int ulen, struct sockaddr_storage *kaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185{
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -0700186 if (ulen < 0 || ulen > sizeof(struct sockaddr_storage))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700188 if (ulen == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 return 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700190 if (copy_from_user(kaddr, uaddr, ulen))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 return -EFAULT;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +0100192 return audit_sockaddr(ulen, kaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193}
194
195/**
196 * move_addr_to_user - copy an address to user space
197 * @kaddr: kernel space address
198 * @klen: length of address in kernel
199 * @uaddr: user space address
200 * @ulen: pointer to user length field
201 *
202 * The value pointed to by ulen on entry is the buffer length available.
203 * This is overwritten with the buffer space used. -EINVAL is returned
204 * if an overlong buffer is specified or a negative buffer size. -EFAULT
205 * is returned if either the buffer or the length field are not
206 * accessible.
207 * After copying the data up to the limit the user specifies, the true
208 * length of the data is written over the length limit the user
209 * specified. Zero is returned for a success.
210 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700211
Maciej Żenczykowski43db3622012-03-11 12:51:50 +0000212static int move_addr_to_user(struct sockaddr_storage *kaddr, int klen,
stephen hemminger11165f12010-10-18 14:27:29 +0000213 void __user *uaddr, int __user *ulen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
215 int err;
216 int len;
217
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700218 err = get_user(len, ulen);
219 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 return err;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700221 if (len > klen)
222 len = klen;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -0700223 if (len < 0 || len > sizeof(struct sockaddr_storage))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700225 if (len) {
Steve Grubbd6fe3942006-03-30 12:20:22 -0500226 if (audit_sockaddr(klen, kaddr))
227 return -ENOMEM;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700228 if (copy_to_user(uaddr, kaddr, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 return -EFAULT;
230 }
231 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700232 * "fromlen shall refer to the value before truncation.."
233 * 1003.1g
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 */
235 return __put_user(klen, ulen);
236}
237
Christoph Lametere18b8902006-12-06 20:33:20 -0800238static struct kmem_cache *sock_inode_cachep __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
240static struct inode *sock_alloc_inode(struct super_block *sb)
241{
242 struct socket_alloc *ei;
Eric Dumazeteaefd112011-02-18 03:26:36 +0000243 struct socket_wq *wq;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700244
Christoph Lametere94b1762006-12-06 20:33:17 -0800245 ei = kmem_cache_alloc(sock_inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 if (!ei)
247 return NULL;
Eric Dumazeteaefd112011-02-18 03:26:36 +0000248 wq = kmalloc(sizeof(*wq), GFP_KERNEL);
249 if (!wq) {
Eric Dumazet43815482010-04-29 11:01:49 +0000250 kmem_cache_free(sock_inode_cachep, ei);
251 return NULL;
252 }
Eric Dumazeteaefd112011-02-18 03:26:36 +0000253 init_waitqueue_head(&wq->wait);
254 wq->fasync_list = NULL;
255 RCU_INIT_POINTER(ei->socket.wq, wq);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 ei->socket.state = SS_UNCONNECTED;
258 ei->socket.flags = 0;
259 ei->socket.ops = NULL;
260 ei->socket.sk = NULL;
261 ei->socket.file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
263 return &ei->vfs_inode;
264}
265
266static void sock_destroy_inode(struct inode *inode)
267{
Eric Dumazet43815482010-04-29 11:01:49 +0000268 struct socket_alloc *ei;
Eric Dumazeteaefd112011-02-18 03:26:36 +0000269 struct socket_wq *wq;
Eric Dumazet43815482010-04-29 11:01:49 +0000270
271 ei = container_of(inode, struct socket_alloc, vfs_inode);
Eric Dumazeteaefd112011-02-18 03:26:36 +0000272 wq = rcu_dereference_protected(ei->socket.wq, 1);
Lai Jiangshan61845222011-03-18 12:10:25 +0800273 kfree_rcu(wq, rcu);
Eric Dumazet43815482010-04-29 11:01:49 +0000274 kmem_cache_free(sock_inode_cachep, ei);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275}
276
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700277static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278{
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700279 struct socket_alloc *ei = (struct socket_alloc *)foo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Christoph Lametera35afb82007-05-16 22:10:57 -0700281 inode_init_once(&ei->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282}
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284static int init_inodecache(void)
285{
286 sock_inode_cachep = kmem_cache_create("sock_inode_cache",
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700287 sizeof(struct socket_alloc),
288 0,
289 (SLAB_HWCACHE_ALIGN |
290 SLAB_RECLAIM_ACCOUNT |
291 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +0900292 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 if (sock_inode_cachep == NULL)
294 return -ENOMEM;
295 return 0;
296}
297
Alexey Dobriyanb87221d2009-09-21 17:01:09 -0700298static const struct super_operations sockfs_ops = {
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700299 .alloc_inode = sock_alloc_inode,
300 .destroy_inode = sock_destroy_inode,
301 .statfs = simple_statfs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302};
303
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700304/*
305 * sockfs_dname() is called from d_path().
306 */
307static char *sockfs_dname(struct dentry *dentry, char *buffer, int buflen)
308{
309 return dynamic_dname(dentry, buffer, buflen, "socket:[%lu]",
310 dentry->d_inode->i_ino);
311}
312
Al Viro3ba13d12009-02-20 06:02:22 +0000313static const struct dentry_operations sockfs_dentry_operations = {
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700314 .d_dname = sockfs_dname,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315};
316
Al Viroc74a1cb2011-01-12 16:59:34 -0500317static struct dentry *sockfs_mount(struct file_system_type *fs_type,
318 int flags, const char *dev_name, void *data)
319{
320 return mount_pseudo(fs_type, "socket:", &sockfs_ops,
321 &sockfs_dentry_operations, SOCKFS_MAGIC);
322}
323
324static struct vfsmount *sock_mnt __read_mostly;
325
326static struct file_system_type sock_fs_type = {
327 .name = "sockfs",
328 .mount = sockfs_mount,
329 .kill_sb = kill_anon_super,
330};
331
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332/*
333 * Obtains the first available file descriptor and sets it up for use.
334 *
David S. Miller39d8c1b2006-03-20 17:13:49 -0800335 * These functions create file structures and maps them to fd space
336 * of the current process. On success it returns file descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 * and file struct implicitly stored in sock->file.
338 * Note that another thread may close file descriptor before we return
339 * from this function. We use the fact that now we do not refer
340 * to socket after mapping. If one day we will need it, this
341 * function will increment ref. count on file by 1.
342 *
343 * In any case returned fd MAY BE not valid!
344 * This race condition is unavoidable
345 * with shared fd spaces, we cannot solve it inside kernel,
346 * but we take care of internal coherence yet.
347 */
348
Al Viro7cbe66b2009-08-05 19:59:08 +0400349static int sock_alloc_file(struct socket *sock, struct file **f, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350{
Al Viro7cbe66b2009-08-05 19:59:08 +0400351 struct qstr name = { .name = "" };
Al Viro2c48b9c2009-08-09 00:52:35 +0400352 struct path path;
Al Viro7cbe66b2009-08-05 19:59:08 +0400353 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 int fd;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800355
Ulrich Dreppera677a032008-07-23 21:29:17 -0700356 fd = get_unused_fd_flags(flags);
Al Viro7cbe66b2009-08-05 19:59:08 +0400357 if (unlikely(fd < 0))
358 return fd;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800359
Nick Piggin4b936882011-01-07 17:50:07 +1100360 path.dentry = d_alloc_pseudo(sock_mnt->mnt_sb, &name);
Al Viro2c48b9c2009-08-09 00:52:35 +0400361 if (unlikely(!path.dentry)) {
Al Viro7cbe66b2009-08-05 19:59:08 +0400362 put_unused_fd(fd);
David S. Miller39d8c1b2006-03-20 17:13:49 -0800363 return -ENOMEM;
Al Viro7cbe66b2009-08-05 19:59:08 +0400364 }
Al Viro2c48b9c2009-08-09 00:52:35 +0400365 path.mnt = mntget(sock_mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Al Viro2c48b9c2009-08-09 00:52:35 +0400367 d_instantiate(path.dentry, SOCK_INODE(sock));
Al Virocc3808f2009-08-06 09:43:59 +0400368 SOCK_INODE(sock)->i_fop = &socket_file_ops;
369
Al Viro2c48b9c2009-08-09 00:52:35 +0400370 file = alloc_file(&path, FMODE_READ | FMODE_WRITE,
Al Virocc3808f2009-08-06 09:43:59 +0400371 &socket_file_ops);
372 if (unlikely(!file)) {
373 /* drop dentry, keep inode */
Al Viro7de9c6e2010-10-23 11:11:40 -0400374 ihold(path.dentry->d_inode);
Al Viro2c48b9c2009-08-09 00:52:35 +0400375 path_put(&path);
Al Virocc3808f2009-08-06 09:43:59 +0400376 put_unused_fd(fd);
377 return -ENFILE;
378 }
David S. Miller39d8c1b2006-03-20 17:13:49 -0800379
380 sock->file = file;
Ulrich Drepper77d27202008-07-23 21:29:35 -0700381 file->f_flags = O_RDWR | (flags & O_NONBLOCK);
David S. Miller39d8c1b2006-03-20 17:13:49 -0800382 file->f_pos = 0;
383 file->private_data = sock;
384
Al Viro7cbe66b2009-08-05 19:59:08 +0400385 *f = file;
386 return fd;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800387}
388
Ulrich Dreppera677a032008-07-23 21:29:17 -0700389int sock_map_fd(struct socket *sock, int flags)
David S. Miller39d8c1b2006-03-20 17:13:49 -0800390{
391 struct file *newfile;
Al Viro7cbe66b2009-08-05 19:59:08 +0400392 int fd = sock_alloc_file(sock, &newfile, flags);
David S. Miller39d8c1b2006-03-20 17:13:49 -0800393
Al Viro7cbe66b2009-08-05 19:59:08 +0400394 if (likely(fd >= 0))
David S. Miller39d8c1b2006-03-20 17:13:49 -0800395 fd_install(fd, newfile);
Al Viro7cbe66b2009-08-05 19:59:08 +0400396
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 return fd;
398}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700399EXPORT_SYMBOL(sock_map_fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800401static struct socket *sock_from_file(struct file *file, int *err)
402{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800403 if (file->f_op == &socket_file_ops)
404 return file->private_data; /* set in sock_map_fd */
405
Eric Dumazet23bb80d2007-02-08 14:59:57 -0800406 *err = -ENOTSOCK;
407 return NULL;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800408}
409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410/**
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700411 * sockfd_lookup - Go from a file number to its socket slot
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 * @fd: file handle
413 * @err: pointer to an error code return
414 *
415 * The file handle passed in is locked and the socket it is bound
416 * too is returned. If an error occurs the err pointer is overwritten
417 * with a negative errno code and NULL is returned. The function checks
418 * for both invalid handles and passing a handle which is not a socket.
419 *
420 * On a success the socket object pointer is returned.
421 */
422
423struct socket *sockfd_lookup(int fd, int *err)
424{
425 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 struct socket *sock;
427
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700428 file = fget(fd);
429 if (!file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 *err = -EBADF;
431 return NULL;
432 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700433
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800434 sock = sock_from_file(file, err);
435 if (!sock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 fput(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 return sock;
438}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700439EXPORT_SYMBOL(sockfd_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800441static struct socket *sockfd_lookup_light(int fd, int *err, int *fput_needed)
442{
443 struct file *file;
444 struct socket *sock;
445
Hua Zhong36725582006-04-19 15:25:02 -0700446 *err = -EBADF;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800447 file = fget_light(fd, fput_needed);
448 if (file) {
449 sock = sock_from_file(file, err);
450 if (sock)
451 return sock;
452 fput_light(file, *fput_needed);
453 }
454 return NULL;
455}
456
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457/**
458 * sock_alloc - allocate a socket
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700459 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 * Allocate a new inode and socket object. The two are bound together
461 * and initialised. The socket is then returned. If we are out of inodes
462 * NULL is returned.
463 */
464
465static struct socket *sock_alloc(void)
466{
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700467 struct inode *inode;
468 struct socket *sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
Eric Dumazeta209dfc2011-07-26 11:36:34 +0200470 inode = new_inode_pseudo(sock_mnt->mnt_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 if (!inode)
472 return NULL;
473
474 sock = SOCKET_I(inode);
475
Eric Dumazet29a020d2009-09-15 02:39:20 -0700476 kmemcheck_annotate_bitfield(sock, type);
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400477 inode->i_ino = get_next_ino();
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700478 inode->i_mode = S_IFSOCK | S_IRWXUGO;
David Howells8192b0c2008-11-14 10:39:10 +1100479 inode->i_uid = current_fsuid();
480 inode->i_gid = current_fsgid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
Eric Dumazet4e694892009-04-04 16:41:09 -0700482 percpu_add(sockets_in_use, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 return sock;
484}
485
486/*
487 * In theory you can't get an open on this inode, but /proc provides
488 * a back door. Remember to keep it shut otherwise you'll let the
489 * creepy crawlies in.
490 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700491
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492static int sock_no_open(struct inode *irrelevant, struct file *dontcare)
493{
494 return -ENXIO;
495}
496
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800497const struct file_operations bad_sock_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 .owner = THIS_MODULE,
499 .open = sock_no_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200500 .llseek = noop_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501};
502
503/**
504 * sock_release - close a socket
505 * @sock: socket to close
506 *
507 * The socket is released from the protocol stack if it has a release
508 * callback, and the inode is then released if the socket is bound to
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700509 * an inode not a file.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700511
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512void sock_release(struct socket *sock)
513{
514 if (sock->ops) {
515 struct module *owner = sock->ops->owner;
516
517 sock->ops->release(sock);
518 sock->ops = NULL;
519 module_put(owner);
520 }
521
Eric Dumazeteaefd112011-02-18 03:26:36 +0000522 if (rcu_dereference_protected(sock->wq, 1)->fasync_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 printk(KERN_ERR "sock_release: fasync list not empty!\n");
524
Mikulas Patocka20855fe2012-07-19 06:13:36 +0000525 if (test_bit(SOCK_EXTERNALLY_ALLOCATED, &sock->flags))
526 return;
527
Eric Dumazet4e694892009-04-04 16:41:09 -0700528 percpu_sub(sockets_in_use, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 if (!sock->file) {
530 iput(SOCK_INODE(sock));
531 return;
532 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700533 sock->file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700535EXPORT_SYMBOL(sock_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
Oliver Hartkopp2244d072010-08-17 08:59:14 +0000537int sock_tx_timestamp(struct sock *sk, __u8 *tx_flags)
Patrick Ohly20d49472009-02-12 05:03:38 +0000538{
Oliver Hartkopp2244d072010-08-17 08:59:14 +0000539 *tx_flags = 0;
Patrick Ohly20d49472009-02-12 05:03:38 +0000540 if (sock_flag(sk, SOCK_TIMESTAMPING_TX_HARDWARE))
Oliver Hartkopp2244d072010-08-17 08:59:14 +0000541 *tx_flags |= SKBTX_HW_TSTAMP;
Patrick Ohly20d49472009-02-12 05:03:38 +0000542 if (sock_flag(sk, SOCK_TIMESTAMPING_TX_SOFTWARE))
Oliver Hartkopp2244d072010-08-17 08:59:14 +0000543 *tx_flags |= SKBTX_SW_TSTAMP;
Johannes Berg6e3e9392011-11-09 10:15:42 +0100544 if (sock_flag(sk, SOCK_WIFI_STATUS))
545 *tx_flags |= SKBTX_WIFI_STATUS;
Patrick Ohly20d49472009-02-12 05:03:38 +0000546 return 0;
547}
548EXPORT_SYMBOL(sock_tx_timestamp);
549
Anton Blanchard228e5482011-05-02 20:21:35 +0000550static inline int __sock_sendmsg_nosec(struct kiocb *iocb, struct socket *sock,
551 struct msghdr *msg, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552{
553 struct sock_iocb *si = kiocb_to_siocb(iocb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Herbert Xuf8451722010-05-24 00:12:34 -0700555 sock_update_classid(sock->sk);
556
Neil Horman5bc14212011-11-22 05:10:51 +0000557 sock_update_netprioidx(sock->sk);
558
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 si->sock = sock;
560 si->scm = NULL;
561 si->msg = msg;
562 si->size = size;
563
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 return sock->ops->sendmsg(iocb, sock, msg, size);
565}
566
Anton Blanchard228e5482011-05-02 20:21:35 +0000567static inline int __sock_sendmsg(struct kiocb *iocb, struct socket *sock,
568 struct msghdr *msg, size_t size)
569{
570 int err = security_socket_sendmsg(sock, msg, size);
571
572 return err ?: __sock_sendmsg_nosec(iocb, sock, msg, size);
573}
574
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575int sock_sendmsg(struct socket *sock, struct msghdr *msg, size_t size)
576{
577 struct kiocb iocb;
578 struct sock_iocb siocb;
579 int ret;
580
581 init_sync_kiocb(&iocb, NULL);
582 iocb.private = &siocb;
583 ret = __sock_sendmsg(&iocb, sock, msg, size);
584 if (-EIOCBQUEUED == ret)
585 ret = wait_on_sync_kiocb(&iocb);
586 return ret;
587}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700588EXPORT_SYMBOL(sock_sendmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Eric Dumazet894dc242011-07-26 02:39:41 +0000590static int sock_sendmsg_nosec(struct socket *sock, struct msghdr *msg, size_t size)
Anton Blanchard228e5482011-05-02 20:21:35 +0000591{
592 struct kiocb iocb;
593 struct sock_iocb siocb;
594 int ret;
595
596 init_sync_kiocb(&iocb, NULL);
597 iocb.private = &siocb;
598 ret = __sock_sendmsg_nosec(&iocb, sock, msg, size);
599 if (-EIOCBQUEUED == ret)
600 ret = wait_on_sync_kiocb(&iocb);
601 return ret;
602}
603
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604int kernel_sendmsg(struct socket *sock, struct msghdr *msg,
605 struct kvec *vec, size_t num, size_t size)
606{
607 mm_segment_t oldfs = get_fs();
608 int result;
609
610 set_fs(KERNEL_DS);
611 /*
612 * the following is safe, since for compiler definitions of kvec and
613 * iovec are identical, yielding the same in-core layout and alignment
614 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700615 msg->msg_iov = (struct iovec *)vec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 msg->msg_iovlen = num;
617 result = sock_sendmsg(sock, msg, size);
618 set_fs(oldfs);
619 return result;
620}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700621EXPORT_SYMBOL(kernel_sendmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Patrick Ohly20d49472009-02-12 05:03:38 +0000623static int ktime2ts(ktime_t kt, struct timespec *ts)
624{
625 if (kt.tv64) {
626 *ts = ktime_to_timespec(kt);
627 return 1;
628 } else {
629 return 0;
630 }
631}
632
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700633/*
634 * called from sock_recv_timestamp() if sock_flag(sk, SOCK_RCVTSTAMP)
635 */
636void __sock_recv_timestamp(struct msghdr *msg, struct sock *sk,
637 struct sk_buff *skb)
638{
Patrick Ohly20d49472009-02-12 05:03:38 +0000639 int need_software_tstamp = sock_flag(sk, SOCK_RCVTSTAMP);
640 struct timespec ts[3];
641 int empty = 1;
642 struct skb_shared_hwtstamps *shhwtstamps =
643 skb_hwtstamps(skb);
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700644
Patrick Ohly20d49472009-02-12 05:03:38 +0000645 /* Race occurred between timestamp enabling and packet
646 receiving. Fill in the current time for now. */
647 if (need_software_tstamp && skb->tstamp.tv64 == 0)
648 __net_timestamp(skb);
649
650 if (need_software_tstamp) {
651 if (!sock_flag(sk, SOCK_RCVTSTAMPNS)) {
652 struct timeval tv;
653 skb_get_timestamp(skb, &tv);
654 put_cmsg(msg, SOL_SOCKET, SCM_TIMESTAMP,
655 sizeof(tv), &tv);
656 } else {
Hagen Paul Pfeifer842509b2010-04-06 05:39:52 +0000657 skb_get_timestampns(skb, &ts[0]);
Patrick Ohly20d49472009-02-12 05:03:38 +0000658 put_cmsg(msg, SOL_SOCKET, SCM_TIMESTAMPNS,
Hagen Paul Pfeifer842509b2010-04-06 05:39:52 +0000659 sizeof(ts[0]), &ts[0]);
Patrick Ohly20d49472009-02-12 05:03:38 +0000660 }
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700661 }
Patrick Ohly20d49472009-02-12 05:03:38 +0000662
663
664 memset(ts, 0, sizeof(ts));
665 if (skb->tstamp.tv64 &&
666 sock_flag(sk, SOCK_TIMESTAMPING_SOFTWARE)) {
667 skb_get_timestampns(skb, ts + 0);
668 empty = 0;
669 }
670 if (shhwtstamps) {
671 if (sock_flag(sk, SOCK_TIMESTAMPING_SYS_HARDWARE) &&
672 ktime2ts(shhwtstamps->syststamp, ts + 1))
673 empty = 0;
674 if (sock_flag(sk, SOCK_TIMESTAMPING_RAW_HARDWARE) &&
675 ktime2ts(shhwtstamps->hwtstamp, ts + 2))
676 empty = 0;
677 }
678 if (!empty)
679 put_cmsg(msg, SOL_SOCKET,
680 SCM_TIMESTAMPING, sizeof(ts), &ts);
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700681}
Arnaldo Carvalho de Melo7c81fd82007-03-10 00:39:35 -0300682EXPORT_SYMBOL_GPL(__sock_recv_timestamp);
683
Johannes Berg6e3e9392011-11-09 10:15:42 +0100684void __sock_recv_wifi_status(struct msghdr *msg, struct sock *sk,
685 struct sk_buff *skb)
686{
687 int ack;
688
689 if (!sock_flag(sk, SOCK_WIFI_STATUS))
690 return;
691 if (!skb->wifi_acked_valid)
692 return;
693
694 ack = skb->wifi_acked;
695
696 put_cmsg(msg, SOL_SOCKET, SCM_WIFI_STATUS, sizeof(ack), &ack);
697}
698EXPORT_SYMBOL_GPL(__sock_recv_wifi_status);
699
stephen hemminger11165f12010-10-18 14:27:29 +0000700static inline void sock_recv_drops(struct msghdr *msg, struct sock *sk,
701 struct sk_buff *skb)
Neil Horman3b885782009-10-12 13:26:31 -0700702{
703 if (sock_flag(sk, SOCK_RXQ_OVFL) && skb && skb->dropcount)
704 put_cmsg(msg, SOL_SOCKET, SO_RXQ_OVFL,
705 sizeof(__u32), &skb->dropcount);
706}
707
Eric Dumazet767dd032010-04-28 19:14:43 +0000708void __sock_recv_ts_and_drops(struct msghdr *msg, struct sock *sk,
Neil Horman3b885782009-10-12 13:26:31 -0700709 struct sk_buff *skb)
710{
711 sock_recv_timestamp(msg, sk, skb);
712 sock_recv_drops(msg, sk, skb);
713}
Eric Dumazet767dd032010-04-28 19:14:43 +0000714EXPORT_SYMBOL_GPL(__sock_recv_ts_and_drops);
Neil Horman3b885782009-10-12 13:26:31 -0700715
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -0700716static inline int __sock_recvmsg_nosec(struct kiocb *iocb, struct socket *sock,
717 struct msghdr *msg, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 struct sock_iocb *si = kiocb_to_siocb(iocb);
720
Herbert Xuf8451722010-05-24 00:12:34 -0700721 sock_update_classid(sock->sk);
722
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 si->sock = sock;
724 si->scm = NULL;
725 si->msg = msg;
726 si->size = size;
727 si->flags = flags;
728
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 return sock->ops->recvmsg(iocb, sock, msg, size, flags);
730}
731
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -0700732static inline int __sock_recvmsg(struct kiocb *iocb, struct socket *sock,
733 struct msghdr *msg, size_t size, int flags)
734{
735 int err = security_socket_recvmsg(sock, msg, size, flags);
736
737 return err ?: __sock_recvmsg_nosec(iocb, sock, msg, size, flags);
738}
739
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700740int sock_recvmsg(struct socket *sock, struct msghdr *msg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 size_t size, int flags)
742{
743 struct kiocb iocb;
744 struct sock_iocb siocb;
745 int ret;
746
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700747 init_sync_kiocb(&iocb, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 iocb.private = &siocb;
749 ret = __sock_recvmsg(&iocb, sock, msg, size, flags);
750 if (-EIOCBQUEUED == ret)
751 ret = wait_on_sync_kiocb(&iocb);
752 return ret;
753}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700754EXPORT_SYMBOL(sock_recvmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -0700756static int sock_recvmsg_nosec(struct socket *sock, struct msghdr *msg,
757 size_t size, int flags)
758{
759 struct kiocb iocb;
760 struct sock_iocb siocb;
761 int ret;
762
763 init_sync_kiocb(&iocb, NULL);
764 iocb.private = &siocb;
765 ret = __sock_recvmsg_nosec(&iocb, sock, msg, size, flags);
766 if (-EIOCBQUEUED == ret)
767 ret = wait_on_sync_kiocb(&iocb);
768 return ret;
769}
770
Martin Lucinac1249c02010-12-10 00:04:05 +0000771/**
772 * kernel_recvmsg - Receive a message from a socket (kernel space)
773 * @sock: The socket to receive the message from
774 * @msg: Received message
775 * @vec: Input s/g array for message data
776 * @num: Size of input s/g array
777 * @size: Number of bytes to read
778 * @flags: Message flags (MSG_DONTWAIT, etc...)
779 *
780 * On return the msg structure contains the scatter/gather array passed in the
781 * vec argument. The array is modified so that it consists of the unfilled
782 * portion of the original array.
783 *
784 * The returned value is the total number of bytes received, or an error.
785 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700786int kernel_recvmsg(struct socket *sock, struct msghdr *msg,
787 struct kvec *vec, size_t num, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788{
789 mm_segment_t oldfs = get_fs();
790 int result;
791
792 set_fs(KERNEL_DS);
793 /*
794 * the following is safe, since for compiler definitions of kvec and
795 * iovec are identical, yielding the same in-core layout and alignment
796 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700797 msg->msg_iov = (struct iovec *)vec, msg->msg_iovlen = num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 result = sock_recvmsg(sock, msg, size, flags);
799 set_fs(oldfs);
800 return result;
801}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700802EXPORT_SYMBOL(kernel_recvmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
804static void sock_aio_dtor(struct kiocb *iocb)
805{
806 kfree(iocb->private);
807}
808
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -0300809static ssize_t sock_sendpage(struct file *file, struct page *page,
810 int offset, size_t size, loff_t *ppos, int more)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811{
812 struct socket *sock;
813 int flags;
814
Eric Dumazetb69aee02005-09-06 14:42:45 -0700815 sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
Eric Dumazet35f9c092012-04-05 03:05:35 +0000817 flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
818 /* more is a combination of MSG_MORE and MSG_SENDPAGE_NOTLAST */
819 flags |= more;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
Linus Torvaldse6949582009-08-13 08:28:36 -0700821 return kernel_sendpage(sock, page, offset, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822}
823
Jens Axboe9c55e012007-11-06 23:30:13 -0800824static ssize_t sock_splice_read(struct file *file, loff_t *ppos,
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700825 struct pipe_inode_info *pipe, size_t len,
Jens Axboe9c55e012007-11-06 23:30:13 -0800826 unsigned int flags)
827{
828 struct socket *sock = file->private_data;
829
Rémi Denis-Courmont997b37d2008-02-15 02:35:45 -0800830 if (unlikely(!sock->ops->splice_read))
831 return -EINVAL;
832
Herbert Xuf8451722010-05-24 00:12:34 -0700833 sock_update_classid(sock->sk);
834
Jens Axboe9c55e012007-11-06 23:30:13 -0800835 return sock->ops->splice_read(sock, ppos, pipe, len, flags);
836}
837
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800838static struct sock_iocb *alloc_sock_iocb(struct kiocb *iocb,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700839 struct sock_iocb *siocb)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800840{
841 if (!is_sync_kiocb(iocb)) {
842 siocb = kmalloc(sizeof(*siocb), GFP_KERNEL);
843 if (!siocb)
844 return NULL;
845 iocb->ki_dtor = sock_aio_dtor;
846 }
847
848 siocb->kiocb = iocb;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800849 iocb->private = siocb;
850 return siocb;
851}
852
853static ssize_t do_sock_read(struct msghdr *msg, struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -0700854 struct file *file, const struct iovec *iov,
855 unsigned long nr_segs)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800856{
857 struct socket *sock = file->private_data;
858 size_t size = 0;
859 int i;
860
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700861 for (i = 0; i < nr_segs; i++)
862 size += iov[i].iov_len;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800863
864 msg->msg_name = NULL;
865 msg->msg_namelen = 0;
866 msg->msg_control = NULL;
867 msg->msg_controllen = 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700868 msg->msg_iov = (struct iovec *)iov;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800869 msg->msg_iovlen = nr_segs;
870 msg->msg_flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
871
872 return __sock_recvmsg(iocb, sock, msg, size, msg->msg_flags);
873}
874
Badari Pulavarty027445c2006-09-30 23:28:46 -0700875static ssize_t sock_aio_read(struct kiocb *iocb, const struct iovec *iov,
876 unsigned long nr_segs, loff_t pos)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800877{
878 struct sock_iocb siocb, *x;
879
880 if (pos != 0)
881 return -ESPIPE;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700882
883 if (iocb->ki_left == 0) /* Match SYS5 behaviour */
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800884 return 0;
885
Badari Pulavarty027445c2006-09-30 23:28:46 -0700886
887 x = alloc_sock_iocb(iocb, &siocb);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800888 if (!x)
889 return -ENOMEM;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700890 return do_sock_read(&x->async_msg, iocb, iocb->ki_filp, iov, nr_segs);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800891}
892
893static ssize_t do_sock_write(struct msghdr *msg, struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -0700894 struct file *file, const struct iovec *iov,
895 unsigned long nr_segs)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800896{
897 struct socket *sock = file->private_data;
898 size_t size = 0;
899 int i;
900
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700901 for (i = 0; i < nr_segs; i++)
902 size += iov[i].iov_len;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800903
904 msg->msg_name = NULL;
905 msg->msg_namelen = 0;
906 msg->msg_control = NULL;
907 msg->msg_controllen = 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700908 msg->msg_iov = (struct iovec *)iov;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800909 msg->msg_iovlen = nr_segs;
910 msg->msg_flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
911 if (sock->type == SOCK_SEQPACKET)
912 msg->msg_flags |= MSG_EOR;
913
914 return __sock_sendmsg(iocb, sock, msg, size);
915}
916
Badari Pulavarty027445c2006-09-30 23:28:46 -0700917static ssize_t sock_aio_write(struct kiocb *iocb, const struct iovec *iov,
918 unsigned long nr_segs, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919{
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800920 struct sock_iocb siocb, *x;
921
922 if (pos != 0)
923 return -ESPIPE;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700924
Badari Pulavarty027445c2006-09-30 23:28:46 -0700925 x = alloc_sock_iocb(iocb, &siocb);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800926 if (!x)
927 return -ENOMEM;
928
Badari Pulavarty027445c2006-09-30 23:28:46 -0700929 return do_sock_write(&x->async_msg, iocb, iocb->ki_filp, iov, nr_segs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930}
931
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932/*
933 * Atomic setting of ioctl hooks to avoid race
934 * with module unload.
935 */
936
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800937static DEFINE_MUTEX(br_ioctl_mutex);
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700938static int (*br_ioctl_hook) (struct net *, unsigned int cmd, void __user *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
Eric W. Biederman881d9662007-09-17 11:56:21 -0700940void brioctl_set(int (*hook) (struct net *, unsigned int, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800942 mutex_lock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 br_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800944 mutex_unlock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945}
946EXPORT_SYMBOL(brioctl_set);
947
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800948static DEFINE_MUTEX(vlan_ioctl_mutex);
Eric W. Biederman881d9662007-09-17 11:56:21 -0700949static int (*vlan_ioctl_hook) (struct net *, void __user *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
Eric W. Biederman881d9662007-09-17 11:56:21 -0700951void vlan_ioctl_set(int (*hook) (struct net *, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800953 mutex_lock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 vlan_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800955 mutex_unlock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956}
957EXPORT_SYMBOL(vlan_ioctl_set);
958
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800959static DEFINE_MUTEX(dlci_ioctl_mutex);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700960static int (*dlci_ioctl_hook) (unsigned int, void __user *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700962void dlci_ioctl_set(int (*hook) (unsigned int, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800964 mutex_lock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 dlci_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800966 mutex_unlock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967}
968EXPORT_SYMBOL(dlci_ioctl_set);
969
Arnd Bergmann6b960182009-11-06 23:10:54 -0800970static long sock_do_ioctl(struct net *net, struct socket *sock,
971 unsigned int cmd, unsigned long arg)
972{
973 int err;
974 void __user *argp = (void __user *)arg;
975
976 err = sock->ops->ioctl(sock, cmd, arg);
977
978 /*
979 * If this ioctl is unknown try to hand it down
980 * to the NIC driver.
981 */
982 if (err == -ENOIOCTLCMD)
983 err = dev_ioctl(net, cmd, argp);
984
985 return err;
986}
987
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988/*
989 * With an ioctl, arg may well be a user mode pointer, but we don't know
990 * what to do with it - that's up to the protocol still.
991 */
992
993static long sock_ioctl(struct file *file, unsigned cmd, unsigned long arg)
994{
995 struct socket *sock;
Eric W. Biederman881d9662007-09-17 11:56:21 -0700996 struct sock *sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 void __user *argp = (void __user *)arg;
998 int pid, err;
Eric W. Biederman881d9662007-09-17 11:56:21 -0700999 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
Eric Dumazetb69aee02005-09-06 14:42:45 -07001001 sock = file->private_data;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001002 sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001003 net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 if (cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15)) {
Eric W. Biederman881d9662007-09-17 11:56:21 -07001005 err = dev_ioctl(net, cmd, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 } else
Johannes Berg3d23e342009-09-29 23:27:28 +02001007#ifdef CONFIG_WEXT_CORE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 if (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST) {
Eric W. Biederman881d9662007-09-17 11:56:21 -07001009 err = dev_ioctl(net, cmd, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 } else
Johannes Berg3d23e342009-09-29 23:27:28 +02001011#endif
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001012 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 case FIOSETOWN:
1014 case SIOCSPGRP:
1015 err = -EFAULT;
1016 if (get_user(pid, (int __user *)argp))
1017 break;
1018 err = f_setown(sock->file, pid, 1);
1019 break;
1020 case FIOGETOWN:
1021 case SIOCGPGRP:
Eric W. Biederman609d7fa2006-10-02 02:17:15 -07001022 err = put_user(f_getown(sock->file),
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001023 (int __user *)argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 break;
1025 case SIOCGIFBR:
1026 case SIOCSIFBR:
1027 case SIOCBRADDBR:
1028 case SIOCBRDELBR:
1029 err = -ENOPKG;
1030 if (!br_ioctl_hook)
1031 request_module("bridge");
1032
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001033 mutex_lock(&br_ioctl_mutex);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001034 if (br_ioctl_hook)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001035 err = br_ioctl_hook(net, cmd, argp);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001036 mutex_unlock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 break;
1038 case SIOCGIFVLAN:
1039 case SIOCSIFVLAN:
1040 err = -ENOPKG;
1041 if (!vlan_ioctl_hook)
1042 request_module("8021q");
1043
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001044 mutex_lock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 if (vlan_ioctl_hook)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001046 err = vlan_ioctl_hook(net, argp);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001047 mutex_unlock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 case SIOCADDDLCI:
1050 case SIOCDELDLCI:
1051 err = -ENOPKG;
1052 if (!dlci_ioctl_hook)
1053 request_module("dlci");
1054
Pavel Emelyanov7512cbf2008-03-21 15:58:52 -07001055 mutex_lock(&dlci_ioctl_mutex);
1056 if (dlci_ioctl_hook)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 err = dlci_ioctl_hook(cmd, argp);
Pavel Emelyanov7512cbf2008-03-21 15:58:52 -07001058 mutex_unlock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 break;
1060 default:
Arnd Bergmann6b960182009-11-06 23:10:54 -08001061 err = sock_do_ioctl(net, sock, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001063 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 return err;
1065}
1066
1067int sock_create_lite(int family, int type, int protocol, struct socket **res)
1068{
1069 int err;
1070 struct socket *sock = NULL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001071
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 err = security_socket_create(family, type, protocol, 1);
1073 if (err)
1074 goto out;
1075
1076 sock = sock_alloc();
1077 if (!sock) {
1078 err = -ENOMEM;
1079 goto out;
1080 }
1081
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 sock->type = type;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001083 err = security_socket_post_create(sock, family, type, protocol, 1);
1084 if (err)
1085 goto out_release;
1086
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087out:
1088 *res = sock;
1089 return err;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001090out_release:
1091 sock_release(sock);
1092 sock = NULL;
1093 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001095EXPORT_SYMBOL(sock_create_lite);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
1097/* No kernel lock held - perfect */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001098static unsigned int sock_poll(struct file *file, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099{
1100 struct socket *sock;
1101
1102 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001103 * We can't return errors to poll, so it's either yes or no.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 */
Eric Dumazetb69aee02005-09-06 14:42:45 -07001105 sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 return sock->ops->poll(file, sock, wait);
1107}
1108
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001109static int sock_mmap(struct file *file, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110{
Eric Dumazetb69aee02005-09-06 14:42:45 -07001111 struct socket *sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
1113 return sock->ops->mmap(file, sock, vma);
1114}
1115
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001116static int sock_close(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117{
1118 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001119 * It was possible the inode is NULL we were
1120 * closing an unfinished socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 */
1122
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001123 if (!inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 printk(KERN_DEBUG "sock_close: NULL inode\n");
1125 return 0;
1126 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 sock_release(SOCKET_I(inode));
1128 return 0;
1129}
1130
1131/*
1132 * Update the socket async list
1133 *
1134 * Fasync_list locking strategy.
1135 *
1136 * 1. fasync_list is modified only under process context socket lock
1137 * i.e. under semaphore.
1138 * 2. fasync_list is used under read_lock(&sk->sk_callback_lock)
Eric Dumazet989a2972010-04-14 09:55:35 +00001139 * or under socket lock
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 */
1141
1142static int sock_fasync(int fd, struct file *filp, int on)
1143{
Eric Dumazet989a2972010-04-14 09:55:35 +00001144 struct socket *sock = filp->private_data;
1145 struct sock *sk = sock->sk;
Eric Dumazeteaefd112011-02-18 03:26:36 +00001146 struct socket_wq *wq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
Eric Dumazet989a2972010-04-14 09:55:35 +00001148 if (sk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150
1151 lock_sock(sk);
Eric Dumazeteaefd112011-02-18 03:26:36 +00001152 wq = rcu_dereference_protected(sock->wq, sock_owned_by_user(sk));
1153 fasync_helper(fd, filp, on, &wq->fasync_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154
Eric Dumazeteaefd112011-02-18 03:26:36 +00001155 if (!wq->fasync_list)
Eric Dumazet989a2972010-04-14 09:55:35 +00001156 sock_reset_flag(sk, SOCK_FASYNC);
Jonathan Corbet76398422009-02-01 14:26:59 -07001157 else
Eric Dumazetbcdce712009-10-06 17:28:29 -07001158 sock_set_flag(sk, SOCK_FASYNC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
Eric Dumazet989a2972010-04-14 09:55:35 +00001160 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 return 0;
1162}
1163
Eric Dumazet43815482010-04-29 11:01:49 +00001164/* This function may be called only under socket lock or callback_lock or rcu_lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165
1166int sock_wake_async(struct socket *sock, int how, int band)
1167{
Eric Dumazet43815482010-04-29 11:01:49 +00001168 struct socket_wq *wq;
1169
1170 if (!sock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 return -1;
Eric Dumazet43815482010-04-29 11:01:49 +00001172 rcu_read_lock();
1173 wq = rcu_dereference(sock->wq);
1174 if (!wq || !wq->fasync_list) {
1175 rcu_read_unlock();
1176 return -1;
1177 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001178 switch (how) {
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001179 case SOCK_WAKE_WAITD:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 if (test_bit(SOCK_ASYNC_WAITDATA, &sock->flags))
1181 break;
1182 goto call_kill;
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001183 case SOCK_WAKE_SPACE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 if (!test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sock->flags))
1185 break;
1186 /* fall through */
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001187 case SOCK_WAKE_IO:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001188call_kill:
Eric Dumazet43815482010-04-29 11:01:49 +00001189 kill_fasync(&wq->fasync_list, SIGIO, band);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 break;
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001191 case SOCK_WAKE_URG:
Eric Dumazet43815482010-04-29 11:01:49 +00001192 kill_fasync(&wq->fasync_list, SIGURG, band);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 }
Eric Dumazet43815482010-04-29 11:01:49 +00001194 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 return 0;
1196}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001197EXPORT_SYMBOL(sock_wake_async);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198
Pavel Emelyanov721db932010-09-29 16:06:32 +04001199int __sock_create(struct net *net, int family, int type, int protocol,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001200 struct socket **res, int kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201{
1202 int err;
1203 struct socket *sock;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001204 const struct net_proto_family *pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205
1206 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001207 * Check protocol is in range
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 */
1209 if (family < 0 || family >= NPROTO)
1210 return -EAFNOSUPPORT;
1211 if (type < 0 || type >= SOCK_MAX)
1212 return -EINVAL;
1213
1214 /* Compatibility.
1215
1216 This uglymoron is moved from INET layer to here to avoid
1217 deadlock in module load.
1218 */
1219 if (family == PF_INET && type == SOCK_PACKET) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001220 static int warned;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 if (!warned) {
1222 warned = 1;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001223 printk(KERN_INFO "%s uses obsolete (PF_INET,SOCK_PACKET)\n",
1224 current->comm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 }
1226 family = PF_PACKET;
1227 }
1228
1229 err = security_socket_create(family, type, protocol, kern);
1230 if (err)
1231 return err;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001232
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001233 /*
1234 * Allocate the socket and allow the family to set things up. if
1235 * the protocol is 0, the family is instructed to select an appropriate
1236 * default.
1237 */
1238 sock = sock_alloc();
1239 if (!sock) {
1240 if (net_ratelimit())
1241 printk(KERN_WARNING "socket: no more sockets\n");
1242 return -ENFILE; /* Not exactly a match, but its the
1243 closest posix thing */
1244 }
1245
1246 sock->type = type;
1247
Johannes Berg95a5afc2008-10-16 15:24:51 -07001248#ifdef CONFIG_MODULES
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001249 /* Attempt to load a protocol module if the find failed.
1250 *
1251 * 12/09/1996 Marcin: But! this makes REALLY only sense, if the user
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 * requested real, full-featured networking support upon configuration.
1253 * Otherwise module support will break!
1254 */
Eric Dumazet190683a2010-11-10 10:50:44 +00001255 if (rcu_access_pointer(net_families[family]) == NULL)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001256 request_module("net-pf-%d", family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257#endif
1258
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001259 rcu_read_lock();
1260 pf = rcu_dereference(net_families[family]);
1261 err = -EAFNOSUPPORT;
1262 if (!pf)
1263 goto out_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
1265 /*
1266 * We will call the ->create function, that possibly is in a loadable
1267 * module, so we have to bump that loadable module refcnt first.
1268 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001269 if (!try_module_get(pf->owner))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 goto out_release;
1271
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001272 /* Now protected by module ref count */
1273 rcu_read_unlock();
1274
Eric Paris3f378b62009-11-05 22:18:14 -08001275 err = pf->create(net, sock, protocol, kern);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001276 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 goto out_module_put;
Frank Filza79af592005-09-27 15:23:38 -07001278
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 /*
1280 * Now to bump the refcnt of the [loadable] module that owns this
1281 * socket at sock_release time we decrement its refcnt.
1282 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001283 if (!try_module_get(sock->ops->owner))
1284 goto out_module_busy;
1285
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 /*
1287 * Now that we're done with the ->create function, the [loadable]
1288 * module can have its refcnt decremented
1289 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001290 module_put(pf->owner);
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001291 err = security_socket_post_create(sock, family, type, protocol, kern);
1292 if (err)
Herbert Xu3b185522007-08-15 14:46:02 -07001293 goto out_sock_release;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001294 *res = sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001296 return 0;
1297
1298out_module_busy:
1299 err = -EAFNOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300out_module_put:
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001301 sock->ops = NULL;
1302 module_put(pf->owner);
1303out_sock_release:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 sock_release(sock);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001305 return err;
1306
1307out_release:
1308 rcu_read_unlock();
1309 goto out_sock_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310}
Pavel Emelyanov721db932010-09-29 16:06:32 +04001311EXPORT_SYMBOL(__sock_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
1313int sock_create(int family, int type, int protocol, struct socket **res)
1314{
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001315 return __sock_create(current->nsproxy->net_ns, family, type, protocol, res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001317EXPORT_SYMBOL(sock_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
1319int sock_create_kern(int family, int type, int protocol, struct socket **res)
1320{
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001321 return __sock_create(&init_net, family, type, protocol, res, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001323EXPORT_SYMBOL(sock_create_kern);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001325SYSCALL_DEFINE3(socket, int, family, int, type, int, protocol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326{
1327 int retval;
1328 struct socket *sock;
Ulrich Dreppera677a032008-07-23 21:29:17 -07001329 int flags;
1330
Ulrich Dreppere38b36f2008-07-23 21:29:42 -07001331 /* Check the SOCK_* constants for consistency. */
1332 BUILD_BUG_ON(SOCK_CLOEXEC != O_CLOEXEC);
1333 BUILD_BUG_ON((SOCK_MAX | SOCK_TYPE_MASK) != SOCK_TYPE_MASK);
1334 BUILD_BUG_ON(SOCK_CLOEXEC & SOCK_TYPE_MASK);
1335 BUILD_BUG_ON(SOCK_NONBLOCK & SOCK_TYPE_MASK);
1336
Ulrich Dreppera677a032008-07-23 21:29:17 -07001337 flags = type & ~SOCK_TYPE_MASK;
Ulrich Drepper77d27202008-07-23 21:29:35 -07001338 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Dreppera677a032008-07-23 21:29:17 -07001339 return -EINVAL;
1340 type &= SOCK_TYPE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001342 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1343 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1344
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 retval = sock_create(family, type, protocol, &sock);
1346 if (retval < 0)
1347 goto out;
1348
Ulrich Drepper77d27202008-07-23 21:29:35 -07001349 retval = sock_map_fd(sock, flags & (O_CLOEXEC | O_NONBLOCK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 if (retval < 0)
1351 goto out_release;
1352
1353out:
1354 /* It may be already another descriptor 8) Not kernel problem. */
1355 return retval;
1356
1357out_release:
1358 sock_release(sock);
1359 return retval;
1360}
1361
1362/*
1363 * Create a pair of connected sockets.
1364 */
1365
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001366SYSCALL_DEFINE4(socketpair, int, family, int, type, int, protocol,
1367 int __user *, usockvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368{
1369 struct socket *sock1, *sock2;
1370 int fd1, fd2, err;
Al Virodb349502007-02-07 01:48:00 -05001371 struct file *newfile1, *newfile2;
Ulrich Dreppera677a032008-07-23 21:29:17 -07001372 int flags;
1373
1374 flags = type & ~SOCK_TYPE_MASK;
Ulrich Drepper77d27202008-07-23 21:29:35 -07001375 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Dreppera677a032008-07-23 21:29:17 -07001376 return -EINVAL;
1377 type &= SOCK_TYPE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001379 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1380 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1381
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 /*
1383 * Obtain the first socket and check if the underlying protocol
1384 * supports the socketpair call.
1385 */
1386
1387 err = sock_create(family, type, protocol, &sock1);
1388 if (err < 0)
1389 goto out;
1390
1391 err = sock_create(family, type, protocol, &sock2);
1392 if (err < 0)
1393 goto out_release_1;
1394
1395 err = sock1->ops->socketpair(sock1, sock2);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001396 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 goto out_release_both;
1398
Al Viro7cbe66b2009-08-05 19:59:08 +04001399 fd1 = sock_alloc_file(sock1, &newfile1, flags);
David S. Millerbf3c23d2007-10-29 21:54:02 -07001400 if (unlikely(fd1 < 0)) {
1401 err = fd1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 goto out_release_both;
David S. Millerbf3c23d2007-10-29 21:54:02 -07001403 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404
Al Viro7cbe66b2009-08-05 19:59:08 +04001405 fd2 = sock_alloc_file(sock2, &newfile2, flags);
Al Viro198de4d2009-08-05 19:29:23 +04001406 if (unlikely(fd2 < 0)) {
1407 err = fd2;
1408 fput(newfile1);
1409 put_unused_fd(fd1);
1410 sock_release(sock2);
1411 goto out;
Al Virodb349502007-02-07 01:48:00 -05001412 }
1413
Al Viro157cf642008-12-14 04:57:47 -05001414 audit_fd_pair(fd1, fd2);
Al Virodb349502007-02-07 01:48:00 -05001415 fd_install(fd1, newfile1);
1416 fd_install(fd2, newfile2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 /* fd1 and fd2 may be already another descriptors.
1418 * Not kernel problem.
1419 */
1420
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001421 err = put_user(fd1, &usockvec[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 if (!err)
1423 err = put_user(fd2, &usockvec[1]);
1424 if (!err)
1425 return 0;
1426
1427 sys_close(fd2);
1428 sys_close(fd1);
1429 return err;
1430
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431out_release_both:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001432 sock_release(sock2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433out_release_1:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001434 sock_release(sock1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435out:
1436 return err;
1437}
1438
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439/*
1440 * Bind a name to a socket. Nothing much to do here since it's
1441 * the protocol's responsibility to handle the local address.
1442 *
1443 * We move the socket address to kernel space before we call
1444 * the protocol layer (having also checked the address is ok).
1445 */
1446
Heiko Carstens20f37032009-01-14 14:14:23 +01001447SYSCALL_DEFINE3(bind, int, fd, struct sockaddr __user *, umyaddr, int, addrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448{
1449 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001450 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001451 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001453 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001454 if (sock) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001455 err = move_addr_to_kernel(umyaddr, addrlen, &address);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001456 if (err >= 0) {
1457 err = security_socket_bind(sock,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001458 (struct sockaddr *)&address,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001459 addrlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001460 if (!err)
1461 err = sock->ops->bind(sock,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001462 (struct sockaddr *)
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001463 &address, addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 }
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001465 fput_light(sock->file, fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001466 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 return err;
1468}
1469
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470/*
1471 * Perform a listen. Basically, we allow the protocol to do anything
1472 * necessary for a listen, and if that works, we mark the socket as
1473 * ready for listening.
1474 */
1475
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001476SYSCALL_DEFINE2(listen, int, fd, int, backlog)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477{
1478 struct socket *sock;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001479 int err, fput_needed;
Pavel Emelyanovb8e1f9b2007-12-08 00:12:33 -08001480 int somaxconn;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001481
1482 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1483 if (sock) {
Pavel Emelyanov8efa6e92008-03-31 19:41:14 -07001484 somaxconn = sock_net(sock->sk)->core.sysctl_somaxconn;
Pavel Emelyanovb8e1f9b2007-12-08 00:12:33 -08001485 if ((unsigned)backlog > somaxconn)
1486 backlog = somaxconn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487
1488 err = security_socket_listen(sock, backlog);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001489 if (!err)
1490 err = sock->ops->listen(sock, backlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001492 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 }
1494 return err;
1495}
1496
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497/*
1498 * For accept, we attempt to create a new socket, set up the link
1499 * with the client, wake up the client, then return the new
1500 * connected fd. We collect the address of the connector in kernel
1501 * space and move it to user at the very end. This is unclean because
1502 * we open the socket then return an error.
1503 *
1504 * 1003.1g adds the ability to recvmsg() to query connection pending
1505 * status to recvmsg. We need to add that support in a way thats
1506 * clean when we restucture accept also.
1507 */
1508
Heiko Carstens20f37032009-01-14 14:14:23 +01001509SYSCALL_DEFINE4(accept4, int, fd, struct sockaddr __user *, upeer_sockaddr,
1510 int __user *, upeer_addrlen, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511{
1512 struct socket *sock, *newsock;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001513 struct file *newfile;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001514 int err, len, newfd, fput_needed;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001515 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516
Ulrich Drepper77d27202008-07-23 21:29:35 -07001517 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001518 return -EINVAL;
1519
1520 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1521 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1522
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001523 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 if (!sock)
1525 goto out;
1526
1527 err = -ENFILE;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001528 newsock = sock_alloc();
1529 if (!newsock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 goto out_put;
1531
1532 newsock->type = sock->type;
1533 newsock->ops = sock->ops;
1534
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 /*
1536 * We don't need try_module_get here, as the listening socket (sock)
1537 * has the protocol module (sock->ops->owner) held.
1538 */
1539 __module_get(newsock->ops->owner);
1540
Al Viro7cbe66b2009-08-05 19:59:08 +04001541 newfd = sock_alloc_file(newsock, &newfile, flags);
David S. Miller39d8c1b2006-03-20 17:13:49 -08001542 if (unlikely(newfd < 0)) {
1543 err = newfd;
David S. Miller9a1875e2006-04-01 12:48:36 -08001544 sock_release(newsock);
1545 goto out_put;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001546 }
1547
Frank Filza79af592005-09-27 15:23:38 -07001548 err = security_socket_accept(sock, newsock);
1549 if (err)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001550 goto out_fd;
Frank Filza79af592005-09-27 15:23:38 -07001551
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 err = sock->ops->accept(sock, newsock, sock->file->f_flags);
1553 if (err < 0)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001554 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555
1556 if (upeer_sockaddr) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001557 if (newsock->ops->getname(newsock, (struct sockaddr *)&address,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001558 &len, 2) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 err = -ECONNABORTED;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001560 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 }
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001562 err = move_addr_to_user(&address,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001563 len, upeer_sockaddr, upeer_addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 if (err < 0)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001565 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 }
1567
1568 /* File flags are not inherited via accept() unlike another OSes. */
1569
David S. Miller39d8c1b2006-03-20 17:13:49 -08001570 fd_install(newfd, newfile);
1571 err = newfd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001574 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575out:
1576 return err;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001577out_fd:
David S. Miller9606a212006-04-01 01:00:14 -08001578 fput(newfile);
David S. Miller39d8c1b2006-03-20 17:13:49 -08001579 put_unused_fd(newfd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 goto out_put;
1581}
1582
Heiko Carstens20f37032009-01-14 14:14:23 +01001583SYSCALL_DEFINE3(accept, int, fd, struct sockaddr __user *, upeer_sockaddr,
1584 int __user *, upeer_addrlen)
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001585{
Ulrich Drepperde11def2008-11-19 15:36:14 -08001586 return sys_accept4(fd, upeer_sockaddr, upeer_addrlen, 0);
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001587}
1588
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589/*
1590 * Attempt to connect to a socket with the server address. The address
1591 * is in user space so we verify it is OK and move it to kernel space.
1592 *
1593 * For 1003.1g we need to add clean support for a bind to AF_UNSPEC to
1594 * break bindings
1595 *
1596 * NOTE: 1003.1g draft 6.3 is broken with respect to AX.25/NetROM and
1597 * other SEQPACKET protocols that take time to connect() as it doesn't
1598 * include the -EINPROGRESS status for such sockets.
1599 */
1600
Heiko Carstens20f37032009-01-14 14:14:23 +01001601SYSCALL_DEFINE3(connect, int, fd, struct sockaddr __user *, uservaddr,
1602 int, addrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603{
1604 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001605 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001606 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001608 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 if (!sock)
1610 goto out;
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001611 err = move_addr_to_kernel(uservaddr, addrlen, &address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 if (err < 0)
1613 goto out_put;
1614
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001615 err =
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001616 security_socket_connect(sock, (struct sockaddr *)&address, addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 if (err)
1618 goto out_put;
1619
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001620 err = sock->ops->connect(sock, (struct sockaddr *)&address, addrlen,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 sock->file->f_flags);
1622out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001623 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624out:
1625 return err;
1626}
1627
1628/*
1629 * Get the local address ('name') of a socket object. Move the obtained
1630 * name to user space.
1631 */
1632
Heiko Carstens20f37032009-01-14 14:14:23 +01001633SYSCALL_DEFINE3(getsockname, int, fd, struct sockaddr __user *, usockaddr,
1634 int __user *, usockaddr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635{
1636 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001637 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001638 int len, err, fput_needed;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001639
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001640 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 if (!sock)
1642 goto out;
1643
1644 err = security_socket_getsockname(sock);
1645 if (err)
1646 goto out_put;
1647
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001648 err = sock->ops->getname(sock, (struct sockaddr *)&address, &len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 if (err)
1650 goto out_put;
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001651 err = move_addr_to_user(&address, len, usockaddr, usockaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652
1653out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001654 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655out:
1656 return err;
1657}
1658
1659/*
1660 * Get the remote address ('name') of a socket object. Move the obtained
1661 * name to user space.
1662 */
1663
Heiko Carstens20f37032009-01-14 14:14:23 +01001664SYSCALL_DEFINE3(getpeername, int, fd, struct sockaddr __user *, usockaddr,
1665 int __user *, usockaddr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666{
1667 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001668 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001669 int len, err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001671 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1672 if (sock != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 err = security_socket_getpeername(sock);
1674 if (err) {
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001675 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 return err;
1677 }
1678
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001679 err =
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001680 sock->ops->getname(sock, (struct sockaddr *)&address, &len,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001681 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 if (!err)
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001683 err = move_addr_to_user(&address, len, usockaddr,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001684 usockaddr_len);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001685 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 }
1687 return err;
1688}
1689
1690/*
1691 * Send a datagram to a given address. We move the address into kernel
1692 * space and check the user space data area is readable before invoking
1693 * the protocol.
1694 */
1695
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001696SYSCALL_DEFINE6(sendto, int, fd, void __user *, buff, size_t, len,
1697 unsigned, flags, struct sockaddr __user *, addr,
1698 int, addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699{
1700 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001701 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 int err;
1703 struct msghdr msg;
1704 struct iovec iov;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001705 int fput_needed;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001706
Linus Torvalds253eacc2010-10-30 16:43:10 -07001707 if (len > INT_MAX)
1708 len = INT_MAX;
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001709 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1710 if (!sock)
David S. Miller4387ff72007-02-08 15:06:08 -08001711 goto out;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001712
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001713 iov.iov_base = buff;
1714 iov.iov_len = len;
1715 msg.msg_name = NULL;
1716 msg.msg_iov = &iov;
1717 msg.msg_iovlen = 1;
1718 msg.msg_control = NULL;
1719 msg.msg_controllen = 0;
1720 msg.msg_namelen = 0;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001721 if (addr) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001722 err = move_addr_to_kernel(addr, addr_len, &address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 if (err < 0)
1724 goto out_put;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001725 msg.msg_name = (struct sockaddr *)&address;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001726 msg.msg_namelen = addr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 }
1728 if (sock->file->f_flags & O_NONBLOCK)
1729 flags |= MSG_DONTWAIT;
1730 msg.msg_flags = flags;
1731 err = sock_sendmsg(sock, &msg, len);
1732
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001733out_put:
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001734 fput_light(sock->file, fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08001735out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 return err;
1737}
1738
1739/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001740 * Send a datagram down a socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 */
1742
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001743SYSCALL_DEFINE4(send, int, fd, void __user *, buff, size_t, len,
1744 unsigned, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745{
1746 return sys_sendto(fd, buff, len, flags, NULL, 0);
1747}
1748
1749/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001750 * Receive a frame from the socket and optionally record the address of the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 * sender. We verify the buffers are writable and if needed move the
1752 * sender address from kernel to user space.
1753 */
1754
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001755SYSCALL_DEFINE6(recvfrom, int, fd, void __user *, ubuf, size_t, size,
1756 unsigned, flags, struct sockaddr __user *, addr,
1757 int __user *, addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758{
1759 struct socket *sock;
1760 struct iovec iov;
1761 struct msghdr msg;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001762 struct sockaddr_storage address;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001763 int err, err2;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001764 int fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765
Linus Torvalds253eacc2010-10-30 16:43:10 -07001766 if (size > INT_MAX)
1767 size = INT_MAX;
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001768 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 if (!sock)
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001770 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001772 msg.msg_control = NULL;
1773 msg.msg_controllen = 0;
1774 msg.msg_iovlen = 1;
1775 msg.msg_iov = &iov;
1776 iov.iov_len = size;
1777 iov.iov_base = ubuf;
Hannes Frederic Sowa18719a42013-11-21 03:14:22 +01001778 /* Save some cycles and don't copy the address if not needed */
1779 msg.msg_name = addr ? (struct sockaddr *)&address : NULL;
1780 /* We assume all kernel code knows the size of sockaddr_storage */
1781 msg.msg_namelen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 if (sock->file->f_flags & O_NONBLOCK)
1783 flags |= MSG_DONTWAIT;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001784 err = sock_recvmsg(sock, &msg, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001786 if (err >= 0 && addr != NULL) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001787 err2 = move_addr_to_user(&address,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001788 msg.msg_namelen, addr, addr_len);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001789 if (err2 < 0)
1790 err = err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 }
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001792
1793 fput_light(sock->file, fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08001794out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 return err;
1796}
1797
1798/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001799 * Receive a datagram from a socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 */
1801
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001802asmlinkage long sys_recv(int fd, void __user *ubuf, size_t size,
1803 unsigned flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804{
1805 return sys_recvfrom(fd, ubuf, size, flags, NULL, NULL);
1806}
1807
1808/*
1809 * Set a socket option. Because we don't know the option lengths we have
1810 * to pass the user mode parameter for the protocols to sort out.
1811 */
1812
Heiko Carstens20f37032009-01-14 14:14:23 +01001813SYSCALL_DEFINE5(setsockopt, int, fd, int, level, int, optname,
1814 char __user *, optval, int, optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001816 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 struct socket *sock;
1818
1819 if (optlen < 0)
1820 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001821
1822 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1823 if (sock != NULL) {
1824 err = security_socket_setsockopt(sock, level, optname);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001825 if (err)
1826 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827
1828 if (level == SOL_SOCKET)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001829 err =
1830 sock_setsockopt(sock, level, optname, optval,
1831 optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 else
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001833 err =
1834 sock->ops->setsockopt(sock, level, optname, optval,
1835 optlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001836out_put:
1837 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 }
1839 return err;
1840}
1841
1842/*
1843 * Get a socket option. Because we don't know the option lengths we have
1844 * to pass a user mode parameter for the protocols to sort out.
1845 */
1846
Heiko Carstens20f37032009-01-14 14:14:23 +01001847SYSCALL_DEFINE5(getsockopt, int, fd, int, level, int, optname,
1848 char __user *, optval, int __user *, optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001850 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 struct socket *sock;
1852
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001853 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1854 if (sock != NULL) {
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001855 err = security_socket_getsockopt(sock, level, optname);
1856 if (err)
1857 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858
1859 if (level == SOL_SOCKET)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001860 err =
1861 sock_getsockopt(sock, level, optname, optval,
1862 optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 else
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001864 err =
1865 sock->ops->getsockopt(sock, level, optname, optval,
1866 optlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001867out_put:
1868 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 }
1870 return err;
1871}
1872
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873/*
1874 * Shutdown a socket.
1875 */
1876
Heiko Carstens754fe8d2009-01-14 14:14:09 +01001877SYSCALL_DEFINE2(shutdown, int, fd, int, how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001879 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 struct socket *sock;
1881
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001882 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1883 if (sock != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 err = security_socket_shutdown(sock, how);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001885 if (!err)
1886 err = sock->ops->shutdown(sock, how);
1887 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 }
1889 return err;
1890}
1891
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001892/* A couple of helpful macros for getting the address of the 32/64 bit
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 * fields which are the same type (int / unsigned) on our platforms.
1894 */
1895#define COMPAT_MSG(msg, member) ((MSG_CMSG_COMPAT & flags) ? &msg##_compat->member : &msg->member)
1896#define COMPAT_NAMELEN(msg) COMPAT_MSG(msg, msg_namelen)
1897#define COMPAT_FLAGS(msg) COMPAT_MSG(msg, msg_flags)
1898
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00001899struct used_address {
1900 struct sockaddr_storage name;
1901 unsigned int name_len;
1902};
1903
Dan Carpenter5684fac32013-10-03 00:27:20 +03001904static int copy_msghdr_from_user(struct msghdr *kmsg,
1905 struct msghdr __user *umsg)
1906{
1907 if (copy_from_user(kmsg, umsg, sizeof(struct msghdr)))
1908 return -EFAULT;
1909 if (kmsg->msg_namelen > sizeof(struct sockaddr_storage))
1910 return -EINVAL;
1911 return 0;
1912}
1913
Andy Lutomirskic0cc94f2013-05-22 14:07:44 -07001914static int ___sys_sendmsg(struct socket *sock, struct msghdr __user *msg,
1915 struct msghdr *msg_sys, unsigned flags,
1916 struct used_address *used_address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001918 struct compat_msghdr __user *msg_compat =
1919 (struct compat_msghdr __user *)msg;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001920 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 struct iovec iovstack[UIO_FASTIOV], *iov = iovstack;
Alex Williamsonb9d717a2005-09-26 14:28:02 -07001922 unsigned char ctl[sizeof(struct cmsghdr) + 20]
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001923 __attribute__ ((aligned(sizeof(__kernel_size_t))));
1924 /* 20 is size of ipv6_pktinfo */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 unsigned char *ctl_buf = ctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 int err, ctl_len, iov_size, total_len;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001927
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 err = -EFAULT;
1929 if (MSG_CMSG_COMPAT & flags) {
Anton Blanchard228e5482011-05-02 20:21:35 +00001930 if (get_compat_msghdr(msg_sys, msg_compat))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 return -EFAULT;
Dan Carpenter5684fac32013-10-03 00:27:20 +03001932 } else {
1933 err = copy_msghdr_from_user(msg_sys, msg);
1934 if (err)
1935 return err;
1936 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 /* do not move before msg_sys is valid */
1939 err = -EMSGSIZE;
Anton Blanchard228e5482011-05-02 20:21:35 +00001940 if (msg_sys->msg_iovlen > UIO_MAXIOV)
1941 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001943 /* Check whether to allocate the iovec area */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 err = -ENOMEM;
Anton Blanchard228e5482011-05-02 20:21:35 +00001945 iov_size = msg_sys->msg_iovlen * sizeof(struct iovec);
1946 if (msg_sys->msg_iovlen > UIO_FASTIOV) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 iov = sock_kmalloc(sock->sk, iov_size, GFP_KERNEL);
1948 if (!iov)
Anton Blanchard228e5482011-05-02 20:21:35 +00001949 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 }
1951
1952 /* This will also move the address data into kernel space */
1953 if (MSG_CMSG_COMPAT & flags) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001954 err = verify_compat_iovec(msg_sys, iov, &address, VERIFY_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 } else
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001956 err = verify_iovec(msg_sys, iov, &address, VERIFY_READ);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001957 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 goto out_freeiov;
1959 total_len = err;
1960
1961 err = -ENOBUFS;
1962
Anton Blanchard228e5482011-05-02 20:21:35 +00001963 if (msg_sys->msg_controllen > INT_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 goto out_freeiov;
Anton Blanchard228e5482011-05-02 20:21:35 +00001965 ctl_len = msg_sys->msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 if ((MSG_CMSG_COMPAT & flags) && ctl_len) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001967 err =
Anton Blanchard228e5482011-05-02 20:21:35 +00001968 cmsghdr_from_user_compat_to_kern(msg_sys, sock->sk, ctl,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001969 sizeof(ctl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 if (err)
1971 goto out_freeiov;
Anton Blanchard228e5482011-05-02 20:21:35 +00001972 ctl_buf = msg_sys->msg_control;
1973 ctl_len = msg_sys->msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 } else if (ctl_len) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001975 if (ctl_len > sizeof(ctl)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 ctl_buf = sock_kmalloc(sock->sk, ctl_len, GFP_KERNEL);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001977 if (ctl_buf == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 goto out_freeiov;
1979 }
1980 err = -EFAULT;
1981 /*
Anton Blanchard228e5482011-05-02 20:21:35 +00001982 * Careful! Before this, msg_sys->msg_control contains a user pointer.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 * Afterwards, it will be a kernel pointer. Thus the compiler-assisted
1984 * checking falls down on this.
1985 */
Namhyung Kimfb8621b2010-09-07 03:55:00 +00001986 if (copy_from_user(ctl_buf,
Anton Blanchard228e5482011-05-02 20:21:35 +00001987 (void __user __force *)msg_sys->msg_control,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001988 ctl_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 goto out_freectl;
Anton Blanchard228e5482011-05-02 20:21:35 +00001990 msg_sys->msg_control = ctl_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 }
Anton Blanchard228e5482011-05-02 20:21:35 +00001992 msg_sys->msg_flags = flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993
1994 if (sock->file->f_flags & O_NONBLOCK)
Anton Blanchard228e5482011-05-02 20:21:35 +00001995 msg_sys->msg_flags |= MSG_DONTWAIT;
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00001996 /*
1997 * If this is sendmmsg() and current destination address is same as
1998 * previously succeeded address, omit asking LSM's decision.
1999 * used_address->name_len is initialized to UINT_MAX so that the first
2000 * destination address never matches.
2001 */
Mathieu Desnoyersbc909d92011-08-24 19:45:03 -07002002 if (used_address && msg_sys->msg_name &&
2003 used_address->name_len == msg_sys->msg_namelen &&
2004 !memcmp(&used_address->name, msg_sys->msg_name,
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002005 used_address->name_len)) {
2006 err = sock_sendmsg_nosec(sock, msg_sys, total_len);
2007 goto out_freectl;
2008 }
2009 err = sock_sendmsg(sock, msg_sys, total_len);
2010 /*
2011 * If this is sendmmsg() and sending to current destination address was
2012 * successful, remember it.
2013 */
2014 if (used_address && err >= 0) {
2015 used_address->name_len = msg_sys->msg_namelen;
Mathieu Desnoyersbc909d92011-08-24 19:45:03 -07002016 if (msg_sys->msg_name)
2017 memcpy(&used_address->name, msg_sys->msg_name,
2018 used_address->name_len);
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002019 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020
2021out_freectl:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002022 if (ctl_buf != ctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 sock_kfree_s(sock->sk, ctl_buf, ctl_len);
2024out_freeiov:
2025 if (iov != iovstack)
2026 sock_kfree_s(sock->sk, iov, iov_size);
Anton Blanchard228e5482011-05-02 20:21:35 +00002027out:
2028 return err;
2029}
2030
2031/*
2032 * BSD sendmsg interface
2033 */
2034
Andy Lutomirskic0cc94f2013-05-22 14:07:44 -07002035long __sys_sendmsg(int fd, struct msghdr __user *msg, unsigned flags)
Anton Blanchard228e5482011-05-02 20:21:35 +00002036{
2037 int fput_needed, err;
2038 struct msghdr msg_sys;
Andy Lutomirskic0cc94f2013-05-22 14:07:44 -07002039 struct socket *sock;
Anton Blanchard228e5482011-05-02 20:21:35 +00002040
Andy Lutomirskic0cc94f2013-05-22 14:07:44 -07002041 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Anton Blanchard228e5482011-05-02 20:21:35 +00002042 if (!sock)
2043 goto out;
2044
Andy Lutomirskic0cc94f2013-05-22 14:07:44 -07002045 err = ___sys_sendmsg(sock, msg, &msg_sys, flags, NULL);
Anton Blanchard228e5482011-05-02 20:21:35 +00002046
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002047 fput_light(sock->file, fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002048out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 return err;
2050}
2051
Andy Lutomirskic0cc94f2013-05-22 14:07:44 -07002052SYSCALL_DEFINE3(sendmsg, int, fd, struct msghdr __user *, msg, unsigned int, flags)
2053{
2054 if (flags & MSG_CMSG_COMPAT)
2055 return -EINVAL;
2056 return __sys_sendmsg(fd, msg, flags);
2057}
2058
Anton Blanchard228e5482011-05-02 20:21:35 +00002059/*
2060 * Linux sendmmsg interface
2061 */
2062
2063int __sys_sendmmsg(int fd, struct mmsghdr __user *mmsg, unsigned int vlen,
2064 unsigned int flags)
2065{
2066 int fput_needed, err, datagrams;
2067 struct socket *sock;
2068 struct mmsghdr __user *entry;
2069 struct compat_mmsghdr __user *compat_entry;
2070 struct msghdr msg_sys;
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002071 struct used_address used_address;
Anton Blanchard228e5482011-05-02 20:21:35 +00002072
Anton Blanchard98382f42011-08-04 14:07:39 +00002073 if (vlen > UIO_MAXIOV)
2074 vlen = UIO_MAXIOV;
Anton Blanchard228e5482011-05-02 20:21:35 +00002075
2076 datagrams = 0;
2077
2078 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2079 if (!sock)
2080 return err;
2081
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002082 used_address.name_len = UINT_MAX;
Anton Blanchard228e5482011-05-02 20:21:35 +00002083 entry = mmsg;
2084 compat_entry = (struct compat_mmsghdr __user *)mmsg;
Anton Blanchard728ffb82011-08-04 14:07:38 +00002085 err = 0;
Anton Blanchard228e5482011-05-02 20:21:35 +00002086
2087 while (datagrams < vlen) {
Anton Blanchard228e5482011-05-02 20:21:35 +00002088 if (MSG_CMSG_COMPAT & flags) {
Andy Lutomirskic0cc94f2013-05-22 14:07:44 -07002089 err = ___sys_sendmsg(sock, (struct msghdr __user *)compat_entry,
2090 &msg_sys, flags, &used_address);
Anton Blanchard228e5482011-05-02 20:21:35 +00002091 if (err < 0)
2092 break;
2093 err = __put_user(err, &compat_entry->msg_len);
2094 ++compat_entry;
2095 } else {
Andy Lutomirskic0cc94f2013-05-22 14:07:44 -07002096 err = ___sys_sendmsg(sock,
2097 (struct msghdr __user *)entry,
2098 &msg_sys, flags, &used_address);
Anton Blanchard228e5482011-05-02 20:21:35 +00002099 if (err < 0)
2100 break;
2101 err = put_user(err, &entry->msg_len);
2102 ++entry;
2103 }
2104
2105 if (err)
2106 break;
2107 ++datagrams;
2108 }
2109
Anton Blanchard228e5482011-05-02 20:21:35 +00002110 fput_light(sock->file, fput_needed);
2111
Anton Blanchard728ffb82011-08-04 14:07:38 +00002112 /* We only return an error if no datagrams were able to be sent */
2113 if (datagrams != 0)
Anton Blanchard228e5482011-05-02 20:21:35 +00002114 return datagrams;
2115
Anton Blanchard228e5482011-05-02 20:21:35 +00002116 return err;
2117}
2118
2119SYSCALL_DEFINE4(sendmmsg, int, fd, struct mmsghdr __user *, mmsg,
2120 unsigned int, vlen, unsigned int, flags)
2121{
Andy Lutomirskic0cc94f2013-05-22 14:07:44 -07002122 if (flags & MSG_CMSG_COMPAT)
2123 return -EINVAL;
Anton Blanchard228e5482011-05-02 20:21:35 +00002124 return __sys_sendmmsg(fd, mmsg, vlen, flags);
2125}
2126
Andy Lutomirskic0cc94f2013-05-22 14:07:44 -07002127static int ___sys_recvmsg(struct socket *sock, struct msghdr __user *msg,
2128 struct msghdr *msg_sys, unsigned flags, int nosec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002130 struct compat_msghdr __user *msg_compat =
2131 (struct compat_msghdr __user *)msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 struct iovec iovstack[UIO_FASTIOV];
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002133 struct iovec *iov = iovstack;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 unsigned long cmsg_ptr;
2135 int err, iov_size, total_len, len;
2136
2137 /* kernel mode address */
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07002138 struct sockaddr_storage addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139
2140 /* user mode address pointers */
2141 struct sockaddr __user *uaddr;
2142 int __user *uaddr_len;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002143
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 if (MSG_CMSG_COMPAT & flags) {
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002145 if (get_compat_msghdr(msg_sys, msg_compat))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 return -EFAULT;
Dan Carpenter5684fac32013-10-03 00:27:20 +03002147 } else {
2148 err = copy_msghdr_from_user(msg_sys, msg);
2149 if (err)
2150 return err;
2151 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 err = -EMSGSIZE;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002154 if (msg_sys->msg_iovlen > UIO_MAXIOV)
2155 goto out;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002156
2157 /* Check whether to allocate the iovec area */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 err = -ENOMEM;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002159 iov_size = msg_sys->msg_iovlen * sizeof(struct iovec);
2160 if (msg_sys->msg_iovlen > UIO_FASTIOV) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 iov = sock_kmalloc(sock->sk, iov_size, GFP_KERNEL);
2162 if (!iov)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002163 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 }
2165
Hannes Frederic Sowa18719a42013-11-21 03:14:22 +01002166 /* Save the user-mode address (verify_iovec will change the
2167 * kernel msghdr to use the kernel address space)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 */
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002169 uaddr = (__force void __user *)msg_sys->msg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 uaddr_len = COMPAT_NAMELEN(msg);
Hannes Frederic Sowa18719a42013-11-21 03:14:22 +01002171 if (MSG_CMSG_COMPAT & flags)
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00002172 err = verify_compat_iovec(msg_sys, iov, &addr, VERIFY_WRITE);
Hannes Frederic Sowa18719a42013-11-21 03:14:22 +01002173 else
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00002174 err = verify_iovec(msg_sys, iov, &addr, VERIFY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 if (err < 0)
2176 goto out_freeiov;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002177 total_len = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002179 cmsg_ptr = (unsigned long)msg_sys->msg_control;
2180 msg_sys->msg_flags = flags & (MSG_CMSG_CLOEXEC|MSG_CMSG_COMPAT);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002181
Hannes Frederic Sowa18719a42013-11-21 03:14:22 +01002182 /* We assume all kernel code knows the size of sockaddr_storage */
2183 msg_sys->msg_namelen = 0;
2184
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 if (sock->file->f_flags & O_NONBLOCK)
2186 flags |= MSG_DONTWAIT;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002187 err = (nosec ? sock_recvmsg_nosec : sock_recvmsg)(sock, msg_sys,
2188 total_len, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 if (err < 0)
2190 goto out_freeiov;
2191 len = err;
2192
2193 if (uaddr != NULL) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00002194 err = move_addr_to_user(&addr,
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002195 msg_sys->msg_namelen, uaddr,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002196 uaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 if (err < 0)
2198 goto out_freeiov;
2199 }
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002200 err = __put_user((msg_sys->msg_flags & ~MSG_CMSG_COMPAT),
David S. Miller37f7f422005-09-16 16:51:01 -07002201 COMPAT_FLAGS(msg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 if (err)
2203 goto out_freeiov;
2204 if (MSG_CMSG_COMPAT & flags)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002205 err = __put_user((unsigned long)msg_sys->msg_control - cmsg_ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 &msg_compat->msg_controllen);
2207 else
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002208 err = __put_user((unsigned long)msg_sys->msg_control - cmsg_ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 &msg->msg_controllen);
2210 if (err)
2211 goto out_freeiov;
2212 err = len;
2213
2214out_freeiov:
2215 if (iov != iovstack)
2216 sock_kfree_s(sock->sk, iov, iov_size);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002217out:
2218 return err;
2219}
2220
2221/*
2222 * BSD recvmsg interface
2223 */
2224
Andy Lutomirskic0cc94f2013-05-22 14:07:44 -07002225long __sys_recvmsg(int fd, struct msghdr __user *msg, unsigned flags)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002226{
2227 int fput_needed, err;
2228 struct msghdr msg_sys;
Andy Lutomirskic0cc94f2013-05-22 14:07:44 -07002229 struct socket *sock;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002230
Andy Lutomirskic0cc94f2013-05-22 14:07:44 -07002231 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002232 if (!sock)
2233 goto out;
2234
Andy Lutomirskic0cc94f2013-05-22 14:07:44 -07002235 err = ___sys_recvmsg(sock, msg, &msg_sys, flags, 0);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002236
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002237 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238out:
2239 return err;
2240}
2241
Andy Lutomirskic0cc94f2013-05-22 14:07:44 -07002242SYSCALL_DEFINE3(recvmsg, int, fd, struct msghdr __user *, msg,
2243 unsigned int, flags)
2244{
2245 if (flags & MSG_CMSG_COMPAT)
2246 return -EINVAL;
2247 return __sys_recvmsg(fd, msg, flags);
2248}
2249
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002250/*
2251 * Linux recvmmsg interface
2252 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002254int __sys_recvmmsg(int fd, struct mmsghdr __user *mmsg, unsigned int vlen,
2255 unsigned int flags, struct timespec *timeout)
2256{
2257 int fput_needed, err, datagrams;
2258 struct socket *sock;
2259 struct mmsghdr __user *entry;
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002260 struct compat_mmsghdr __user *compat_entry;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002261 struct msghdr msg_sys;
2262 struct timespec end_time;
2263
2264 if (timeout &&
2265 poll_select_set_timeout(&end_time, timeout->tv_sec,
2266 timeout->tv_nsec))
2267 return -EINVAL;
2268
2269 datagrams = 0;
2270
2271 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2272 if (!sock)
2273 return err;
2274
2275 err = sock_error(sock->sk);
2276 if (err)
2277 goto out_put;
2278
2279 entry = mmsg;
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002280 compat_entry = (struct compat_mmsghdr __user *)mmsg;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002281
2282 while (datagrams < vlen) {
2283 /*
2284 * No need to ask LSM for more than the first datagram.
2285 */
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002286 if (MSG_CMSG_COMPAT & flags) {
Andy Lutomirskic0cc94f2013-05-22 14:07:44 -07002287 err = ___sys_recvmsg(sock, (struct msghdr __user *)compat_entry,
2288 &msg_sys, flags & ~MSG_WAITFORONE,
2289 datagrams);
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002290 if (err < 0)
2291 break;
2292 err = __put_user(err, &compat_entry->msg_len);
2293 ++compat_entry;
2294 } else {
Andy Lutomirskic0cc94f2013-05-22 14:07:44 -07002295 err = ___sys_recvmsg(sock,
2296 (struct msghdr __user *)entry,
2297 &msg_sys, flags & ~MSG_WAITFORONE,
2298 datagrams);
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002299 if (err < 0)
2300 break;
2301 err = put_user(err, &entry->msg_len);
2302 ++entry;
2303 }
2304
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002305 if (err)
2306 break;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002307 ++datagrams;
2308
Brandon L Black71c5c152010-03-26 16:18:03 +00002309 /* MSG_WAITFORONE turns on MSG_DONTWAIT after one packet */
2310 if (flags & MSG_WAITFORONE)
2311 flags |= MSG_DONTWAIT;
2312
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002313 if (timeout) {
2314 ktime_get_ts(timeout);
2315 *timeout = timespec_sub(end_time, *timeout);
2316 if (timeout->tv_sec < 0) {
2317 timeout->tv_sec = timeout->tv_nsec = 0;
2318 break;
2319 }
2320
2321 /* Timeout, return less than vlen datagrams */
2322 if (timeout->tv_nsec == 0 && timeout->tv_sec == 0)
2323 break;
2324 }
2325
2326 /* Out of band data, return right away */
2327 if (msg_sys.msg_flags & MSG_OOB)
2328 break;
2329 }
2330
2331out_put:
2332 fput_light(sock->file, fput_needed);
2333
2334 if (err == 0)
2335 return datagrams;
2336
2337 if (datagrams != 0) {
2338 /*
2339 * We may return less entries than requested (vlen) if the
2340 * sock is non block and there aren't enough datagrams...
2341 */
2342 if (err != -EAGAIN) {
2343 /*
2344 * ... or if recvmsg returns an error after we
2345 * received some datagrams, where we record the
2346 * error to return on the next call or if the
2347 * app asks about it using getsockopt(SO_ERROR).
2348 */
2349 sock->sk->sk_err = -err;
2350 }
2351
2352 return datagrams;
2353 }
2354
2355 return err;
2356}
2357
2358SYSCALL_DEFINE5(recvmmsg, int, fd, struct mmsghdr __user *, mmsg,
2359 unsigned int, vlen, unsigned int, flags,
2360 struct timespec __user *, timeout)
2361{
2362 int datagrams;
2363 struct timespec timeout_sys;
2364
Andy Lutomirskic0cc94f2013-05-22 14:07:44 -07002365 if (flags & MSG_CMSG_COMPAT)
2366 return -EINVAL;
2367
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002368 if (!timeout)
2369 return __sys_recvmmsg(fd, mmsg, vlen, flags, NULL);
2370
2371 if (copy_from_user(&timeout_sys, timeout, sizeof(timeout_sys)))
2372 return -EFAULT;
2373
2374 datagrams = __sys_recvmmsg(fd, mmsg, vlen, flags, &timeout_sys);
2375
2376 if (datagrams > 0 &&
2377 copy_to_user(timeout, &timeout_sys, sizeof(timeout_sys)))
2378 datagrams = -EFAULT;
2379
2380 return datagrams;
2381}
2382
2383#ifdef __ARCH_WANT_SYS_SOCKETCALL
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384/* Argument list sizes for sys_socketcall */
2385#define AL(x) ((x) * sizeof(unsigned long))
Anton Blanchard228e5482011-05-02 20:21:35 +00002386static const unsigned char nargs[21] = {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002387 AL(0), AL(3), AL(3), AL(3), AL(2), AL(3),
2388 AL(3), AL(3), AL(4), AL(4), AL(4), AL(6),
2389 AL(6), AL(2), AL(5), AL(5), AL(3), AL(3),
Anton Blanchard228e5482011-05-02 20:21:35 +00002390 AL(4), AL(5), AL(4)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002391};
2392
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393#undef AL
2394
2395/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002396 * System call vectors.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 *
2398 * Argument checking cleaned up. Saved 20% in size.
2399 * This function doesn't need to set the kernel lock because
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002400 * it is set by the callees.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 */
2402
Heiko Carstens3e0fa652009-01-14 14:14:24 +01002403SYSCALL_DEFINE2(socketcall, int, call, unsigned long __user *, args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404{
2405 unsigned long a[6];
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002406 unsigned long a0, a1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407 int err;
Arjan van de Ven47379052009-09-28 12:57:44 -07002408 unsigned int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409
Anton Blanchard228e5482011-05-02 20:21:35 +00002410 if (call < 1 || call > SYS_SENDMMSG)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411 return -EINVAL;
2412
Arjan van de Ven47379052009-09-28 12:57:44 -07002413 len = nargs[call];
2414 if (len > sizeof(a))
2415 return -EINVAL;
2416
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 /* copy_from_user should be SMP safe. */
Arjan van de Ven47379052009-09-28 12:57:44 -07002418 if (copy_from_user(a, args, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 return -EFAULT;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002420
Al Virof3298dc2008-12-10 03:16:51 -05002421 audit_socketcall(nargs[call] / sizeof(unsigned long), a);
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002422
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002423 a0 = a[0];
2424 a1 = a[1];
2425
2426 switch (call) {
2427 case SYS_SOCKET:
2428 err = sys_socket(a0, a1, a[2]);
2429 break;
2430 case SYS_BIND:
2431 err = sys_bind(a0, (struct sockaddr __user *)a1, a[2]);
2432 break;
2433 case SYS_CONNECT:
2434 err = sys_connect(a0, (struct sockaddr __user *)a1, a[2]);
2435 break;
2436 case SYS_LISTEN:
2437 err = sys_listen(a0, a1);
2438 break;
2439 case SYS_ACCEPT:
Ulrich Drepperde11def2008-11-19 15:36:14 -08002440 err = sys_accept4(a0, (struct sockaddr __user *)a1,
2441 (int __user *)a[2], 0);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002442 break;
2443 case SYS_GETSOCKNAME:
2444 err =
2445 sys_getsockname(a0, (struct sockaddr __user *)a1,
2446 (int __user *)a[2]);
2447 break;
2448 case SYS_GETPEERNAME:
2449 err =
2450 sys_getpeername(a0, (struct sockaddr __user *)a1,
2451 (int __user *)a[2]);
2452 break;
2453 case SYS_SOCKETPAIR:
2454 err = sys_socketpair(a0, a1, a[2], (int __user *)a[3]);
2455 break;
2456 case SYS_SEND:
2457 err = sys_send(a0, (void __user *)a1, a[2], a[3]);
2458 break;
2459 case SYS_SENDTO:
2460 err = sys_sendto(a0, (void __user *)a1, a[2], a[3],
2461 (struct sockaddr __user *)a[4], a[5]);
2462 break;
2463 case SYS_RECV:
2464 err = sys_recv(a0, (void __user *)a1, a[2], a[3]);
2465 break;
2466 case SYS_RECVFROM:
2467 err = sys_recvfrom(a0, (void __user *)a1, a[2], a[3],
2468 (struct sockaddr __user *)a[4],
2469 (int __user *)a[5]);
2470 break;
2471 case SYS_SHUTDOWN:
2472 err = sys_shutdown(a0, a1);
2473 break;
2474 case SYS_SETSOCKOPT:
2475 err = sys_setsockopt(a0, a1, a[2], (char __user *)a[3], a[4]);
2476 break;
2477 case SYS_GETSOCKOPT:
2478 err =
2479 sys_getsockopt(a0, a1, a[2], (char __user *)a[3],
2480 (int __user *)a[4]);
2481 break;
2482 case SYS_SENDMSG:
2483 err = sys_sendmsg(a0, (struct msghdr __user *)a1, a[2]);
2484 break;
Anton Blanchard228e5482011-05-02 20:21:35 +00002485 case SYS_SENDMMSG:
2486 err = sys_sendmmsg(a0, (struct mmsghdr __user *)a1, a[2], a[3]);
2487 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002488 case SYS_RECVMSG:
2489 err = sys_recvmsg(a0, (struct msghdr __user *)a1, a[2]);
2490 break;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002491 case SYS_RECVMMSG:
2492 err = sys_recvmmsg(a0, (struct mmsghdr __user *)a1, a[2], a[3],
2493 (struct timespec __user *)a[4]);
2494 break;
Ulrich Drepperde11def2008-11-19 15:36:14 -08002495 case SYS_ACCEPT4:
2496 err = sys_accept4(a0, (struct sockaddr __user *)a1,
2497 (int __user *)a[2], a[3]);
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07002498 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002499 default:
2500 err = -EINVAL;
2501 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502 }
2503 return err;
2504}
2505
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002506#endif /* __ARCH_WANT_SYS_SOCKETCALL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002508/**
2509 * sock_register - add a socket protocol handler
2510 * @ops: description of protocol
2511 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512 * This function is called by a protocol handler that wants to
2513 * advertise its address family, and have it linked into the
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002514 * socket interface. The value ops->family coresponds to the
2515 * socket system call protocol family.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 */
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002517int sock_register(const struct net_proto_family *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518{
2519 int err;
2520
2521 if (ops->family >= NPROTO) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002522 printk(KERN_CRIT "protocol %d >= NPROTO(%d)\n", ops->family,
2523 NPROTO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 return -ENOBUFS;
2525 }
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002526
2527 spin_lock(&net_family_lock);
Eric Dumazet190683a2010-11-10 10:50:44 +00002528 if (rcu_dereference_protected(net_families[ops->family],
2529 lockdep_is_held(&net_family_lock)))
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002530 err = -EEXIST;
2531 else {
Eric Dumazetcf778b02012-01-12 04:41:32 +00002532 rcu_assign_pointer(net_families[ops->family], ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533 err = 0;
2534 }
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002535 spin_unlock(&net_family_lock);
2536
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002537 printk(KERN_INFO "NET: Registered protocol family %d\n", ops->family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 return err;
2539}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002540EXPORT_SYMBOL(sock_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002542/**
2543 * sock_unregister - remove a protocol handler
2544 * @family: protocol family to remove
2545 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 * This function is called by a protocol handler that wants to
2547 * remove its address family, and have it unlinked from the
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002548 * new socket creation.
2549 *
2550 * If protocol handler is a module, then it can use module reference
2551 * counts to protect against new references. If protocol handler is not
2552 * a module then it needs to provide its own protection in
2553 * the ops->create routine.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554 */
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002555void sock_unregister(int family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556{
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002557 BUG_ON(family < 0 || family >= NPROTO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002559 spin_lock(&net_family_lock);
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00002560 RCU_INIT_POINTER(net_families[family], NULL);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002561 spin_unlock(&net_family_lock);
2562
2563 synchronize_rcu();
2564
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002565 printk(KERN_INFO "NET: Unregistered protocol family %d\n", family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002567EXPORT_SYMBOL(sock_unregister);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568
Andi Kleen77d76ea2005-12-22 12:43:42 -08002569static int __init sock_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570{
Nick Pigginb3e19d92011-01-07 17:50:11 +11002571 int err;
2572
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002574 * Initialize sock SLAB cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002576
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577 sk_init();
2578
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002580 * Initialize skbuff SLAB cache
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581 */
2582 skb_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583
2584 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002585 * Initialize the protocols module.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586 */
2587
2588 init_inodecache();
Nick Pigginb3e19d92011-01-07 17:50:11 +11002589
2590 err = register_filesystem(&sock_fs_type);
2591 if (err)
2592 goto out_fs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593 sock_mnt = kern_mount(&sock_fs_type);
Nick Pigginb3e19d92011-01-07 17:50:11 +11002594 if (IS_ERR(sock_mnt)) {
2595 err = PTR_ERR(sock_mnt);
2596 goto out_mount;
2597 }
Andi Kleen77d76ea2005-12-22 12:43:42 -08002598
2599 /* The real protocol initialization is performed in later initcalls.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600 */
2601
2602#ifdef CONFIG_NETFILTER
2603 netfilter_init();
2604#endif
David S. Millercbeb3212005-12-22 12:58:55 -08002605
Richard Cochranc1f19b52010-07-17 08:49:36 +00002606#ifdef CONFIG_NETWORK_PHY_TIMESTAMPING
2607 skb_timestamping_init();
2608#endif
2609
Nick Pigginb3e19d92011-01-07 17:50:11 +11002610out:
2611 return err;
2612
2613out_mount:
2614 unregister_filesystem(&sock_fs_type);
2615out_fs:
2616 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617}
2618
Andi Kleen77d76ea2005-12-22 12:43:42 -08002619core_initcall(sock_init); /* early initcall */
2620
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621#ifdef CONFIG_PROC_FS
2622void socket_seq_show(struct seq_file *seq)
2623{
2624 int cpu;
2625 int counter = 0;
2626
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -07002627 for_each_possible_cpu(cpu)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002628 counter += per_cpu(sockets_in_use, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629
2630 /* It can be negative, by the way. 8) */
2631 if (counter < 0)
2632 counter = 0;
2633
2634 seq_printf(seq, "sockets: used %d\n", counter);
2635}
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002636#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637
Shaun Pereira89bbfc92006-03-21 23:58:08 -08002638#ifdef CONFIG_COMPAT
Arnd Bergmann6b960182009-11-06 23:10:54 -08002639static int do_siocgstamp(struct net *net, struct socket *sock,
H. Peter Anvin644595f2012-02-19 17:51:59 -08002640 unsigned int cmd, void __user *up)
Arnd Bergmann7a229382009-11-06 23:00:29 -08002641{
Arnd Bergmann7a229382009-11-06 23:00:29 -08002642 mm_segment_t old_fs = get_fs();
2643 struct timeval ktv;
2644 int err;
2645
2646 set_fs(KERNEL_DS);
Arnd Bergmann6b960182009-11-06 23:10:54 -08002647 err = sock_do_ioctl(net, sock, cmd, (unsigned long)&ktv);
Arnd Bergmann7a229382009-11-06 23:00:29 -08002648 set_fs(old_fs);
H. Peter Anvin644595f2012-02-19 17:51:59 -08002649 if (!err)
Mikulas Patocka43da4762012-09-01 12:34:07 -04002650 err = compat_put_timeval(&ktv, up);
H. Peter Anvin644595f2012-02-19 17:51:59 -08002651
Arnd Bergmann7a229382009-11-06 23:00:29 -08002652 return err;
2653}
2654
Arnd Bergmann6b960182009-11-06 23:10:54 -08002655static int do_siocgstampns(struct net *net, struct socket *sock,
H. Peter Anvin644595f2012-02-19 17:51:59 -08002656 unsigned int cmd, void __user *up)
Arnd Bergmann7a229382009-11-06 23:00:29 -08002657{
Arnd Bergmann7a229382009-11-06 23:00:29 -08002658 mm_segment_t old_fs = get_fs();
2659 struct timespec kts;
2660 int err;
2661
2662 set_fs(KERNEL_DS);
Arnd Bergmann6b960182009-11-06 23:10:54 -08002663 err = sock_do_ioctl(net, sock, cmd, (unsigned long)&kts);
Arnd Bergmann7a229382009-11-06 23:00:29 -08002664 set_fs(old_fs);
H. Peter Anvin644595f2012-02-19 17:51:59 -08002665 if (!err)
Mikulas Patocka43da4762012-09-01 12:34:07 -04002666 err = compat_put_timespec(&kts, up);
H. Peter Anvin644595f2012-02-19 17:51:59 -08002667
Arnd Bergmann7a229382009-11-06 23:00:29 -08002668 return err;
2669}
2670
Arnd Bergmann6b960182009-11-06 23:10:54 -08002671static int dev_ifname32(struct net *net, struct compat_ifreq __user *uifr32)
Arnd Bergmann7a229382009-11-06 23:00:29 -08002672{
2673 struct ifreq __user *uifr;
2674 int err;
2675
2676 uifr = compat_alloc_user_space(sizeof(struct ifreq));
Arnd Bergmann6b960182009-11-06 23:10:54 -08002677 if (copy_in_user(uifr, uifr32, sizeof(struct compat_ifreq)))
Arnd Bergmann7a229382009-11-06 23:00:29 -08002678 return -EFAULT;
2679
Arnd Bergmann6b960182009-11-06 23:10:54 -08002680 err = dev_ioctl(net, SIOCGIFNAME, uifr);
Arnd Bergmann7a229382009-11-06 23:00:29 -08002681 if (err)
2682 return err;
2683
Arnd Bergmann6b960182009-11-06 23:10:54 -08002684 if (copy_in_user(uifr32, uifr, sizeof(struct compat_ifreq)))
Arnd Bergmann7a229382009-11-06 23:00:29 -08002685 return -EFAULT;
2686
2687 return 0;
2688}
2689
Arnd Bergmann6b960182009-11-06 23:10:54 -08002690static int dev_ifconf(struct net *net, struct compat_ifconf __user *uifc32)
Arnd Bergmann7a229382009-11-06 23:00:29 -08002691{
Arnd Bergmann6b960182009-11-06 23:10:54 -08002692 struct compat_ifconf ifc32;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002693 struct ifconf ifc;
2694 struct ifconf __user *uifc;
Arnd Bergmann6b960182009-11-06 23:10:54 -08002695 struct compat_ifreq __user *ifr32;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002696 struct ifreq __user *ifr;
2697 unsigned int i, j;
2698 int err;
2699
Arnd Bergmann6b960182009-11-06 23:10:54 -08002700 if (copy_from_user(&ifc32, uifc32, sizeof(struct compat_ifconf)))
Arnd Bergmann7a229382009-11-06 23:00:29 -08002701 return -EFAULT;
2702
Mathias Kraused09b3b22012-08-15 11:31:57 +00002703 memset(&ifc, 0, sizeof(ifc));
Arnd Bergmann7a229382009-11-06 23:00:29 -08002704 if (ifc32.ifcbuf == 0) {
2705 ifc32.ifc_len = 0;
2706 ifc.ifc_len = 0;
2707 ifc.ifc_req = NULL;
2708 uifc = compat_alloc_user_space(sizeof(struct ifconf));
2709 } else {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002710 size_t len = ((ifc32.ifc_len / sizeof(struct compat_ifreq)) + 1) *
2711 sizeof(struct ifreq);
Arnd Bergmann7a229382009-11-06 23:00:29 -08002712 uifc = compat_alloc_user_space(sizeof(struct ifconf) + len);
2713 ifc.ifc_len = len;
2714 ifr = ifc.ifc_req = (void __user *)(uifc + 1);
2715 ifr32 = compat_ptr(ifc32.ifcbuf);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002716 for (i = 0; i < ifc32.ifc_len; i += sizeof(struct compat_ifreq)) {
Arnd Bergmann6b960182009-11-06 23:10:54 -08002717 if (copy_in_user(ifr, ifr32, sizeof(struct compat_ifreq)))
Arnd Bergmann7a229382009-11-06 23:00:29 -08002718 return -EFAULT;
2719 ifr++;
2720 ifr32++;
2721 }
2722 }
2723 if (copy_to_user(uifc, &ifc, sizeof(struct ifconf)))
2724 return -EFAULT;
2725
Arnd Bergmann6b960182009-11-06 23:10:54 -08002726 err = dev_ioctl(net, SIOCGIFCONF, uifc);
Arnd Bergmann7a229382009-11-06 23:00:29 -08002727 if (err)
2728 return err;
2729
2730 if (copy_from_user(&ifc, uifc, sizeof(struct ifconf)))
2731 return -EFAULT;
2732
2733 ifr = ifc.ifc_req;
2734 ifr32 = compat_ptr(ifc32.ifcbuf);
2735 for (i = 0, j = 0;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002736 i + sizeof(struct compat_ifreq) <= ifc32.ifc_len && j < ifc.ifc_len;
2737 i += sizeof(struct compat_ifreq), j += sizeof(struct ifreq)) {
2738 if (copy_in_user(ifr32, ifr, sizeof(struct compat_ifreq)))
Arnd Bergmann7a229382009-11-06 23:00:29 -08002739 return -EFAULT;
2740 ifr32++;
2741 ifr++;
2742 }
2743
2744 if (ifc32.ifcbuf == 0) {
2745 /* Translate from 64-bit structure multiple to
2746 * a 32-bit one.
2747 */
2748 i = ifc.ifc_len;
Arnd Bergmann6b960182009-11-06 23:10:54 -08002749 i = ((i / sizeof(struct ifreq)) * sizeof(struct compat_ifreq));
Arnd Bergmann7a229382009-11-06 23:00:29 -08002750 ifc32.ifc_len = i;
2751 } else {
2752 ifc32.ifc_len = i;
2753 }
Arnd Bergmann6b960182009-11-06 23:10:54 -08002754 if (copy_to_user(uifc32, &ifc32, sizeof(struct compat_ifconf)))
Arnd Bergmann7a229382009-11-06 23:00:29 -08002755 return -EFAULT;
2756
2757 return 0;
2758}
2759
Arnd Bergmann6b960182009-11-06 23:10:54 -08002760static int ethtool_ioctl(struct net *net, struct compat_ifreq __user *ifr32)
Arnd Bergmann7a229382009-11-06 23:00:29 -08002761{
Ben Hutchings3a7da392011-03-17 07:34:32 +00002762 struct compat_ethtool_rxnfc __user *compat_rxnfc;
2763 bool convert_in = false, convert_out = false;
2764 size_t buf_size = ALIGN(sizeof(struct ifreq), 8);
2765 struct ethtool_rxnfc __user *rxnfc;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002766 struct ifreq __user *ifr;
Ben Hutchings3a7da392011-03-17 07:34:32 +00002767 u32 rule_cnt = 0, actual_rule_cnt;
2768 u32 ethcmd;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002769 u32 data;
Ben Hutchings3a7da392011-03-17 07:34:32 +00002770 int ret;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002771
2772 if (get_user(data, &ifr32->ifr_ifru.ifru_data))
2773 return -EFAULT;
2774
Ben Hutchings3a7da392011-03-17 07:34:32 +00002775 compat_rxnfc = compat_ptr(data);
2776
2777 if (get_user(ethcmd, &compat_rxnfc->cmd))
Arnd Bergmann7a229382009-11-06 23:00:29 -08002778 return -EFAULT;
2779
Ben Hutchings3a7da392011-03-17 07:34:32 +00002780 /* Most ethtool structures are defined without padding.
2781 * Unfortunately struct ethtool_rxnfc is an exception.
2782 */
2783 switch (ethcmd) {
2784 default:
2785 break;
2786 case ETHTOOL_GRXCLSRLALL:
2787 /* Buffer size is variable */
2788 if (get_user(rule_cnt, &compat_rxnfc->rule_cnt))
2789 return -EFAULT;
2790 if (rule_cnt > KMALLOC_MAX_SIZE / sizeof(u32))
2791 return -ENOMEM;
2792 buf_size += rule_cnt * sizeof(u32);
2793 /* fall through */
2794 case ETHTOOL_GRXRINGS:
2795 case ETHTOOL_GRXCLSRLCNT:
2796 case ETHTOOL_GRXCLSRULE:
Ben Hutchings55664f32012-01-03 12:04:51 +00002797 case ETHTOOL_SRXCLSRLINS:
Ben Hutchings3a7da392011-03-17 07:34:32 +00002798 convert_out = true;
2799 /* fall through */
2800 case ETHTOOL_SRXCLSRLDEL:
Ben Hutchings3a7da392011-03-17 07:34:32 +00002801 buf_size += sizeof(struct ethtool_rxnfc);
2802 convert_in = true;
2803 break;
2804 }
2805
2806 ifr = compat_alloc_user_space(buf_size);
2807 rxnfc = (void *)ifr + ALIGN(sizeof(struct ifreq), 8);
2808
2809 if (copy_in_user(&ifr->ifr_name, &ifr32->ifr_name, IFNAMSIZ))
2810 return -EFAULT;
2811
2812 if (put_user(convert_in ? rxnfc : compat_ptr(data),
2813 &ifr->ifr_ifru.ifru_data))
2814 return -EFAULT;
2815
2816 if (convert_in) {
Alexander Duyck127fe532011-04-08 18:01:59 +00002817 /* We expect there to be holes between fs.m_ext and
Ben Hutchings3a7da392011-03-17 07:34:32 +00002818 * fs.ring_cookie and at the end of fs, but nowhere else.
2819 */
Alexander Duyck127fe532011-04-08 18:01:59 +00002820 BUILD_BUG_ON(offsetof(struct compat_ethtool_rxnfc, fs.m_ext) +
2821 sizeof(compat_rxnfc->fs.m_ext) !=
2822 offsetof(struct ethtool_rxnfc, fs.m_ext) +
2823 sizeof(rxnfc->fs.m_ext));
Ben Hutchings3a7da392011-03-17 07:34:32 +00002824 BUILD_BUG_ON(
2825 offsetof(struct compat_ethtool_rxnfc, fs.location) -
2826 offsetof(struct compat_ethtool_rxnfc, fs.ring_cookie) !=
2827 offsetof(struct ethtool_rxnfc, fs.location) -
2828 offsetof(struct ethtool_rxnfc, fs.ring_cookie));
2829
2830 if (copy_in_user(rxnfc, compat_rxnfc,
Alexander Duyck127fe532011-04-08 18:01:59 +00002831 (void *)(&rxnfc->fs.m_ext + 1) -
Ben Hutchings3a7da392011-03-17 07:34:32 +00002832 (void *)rxnfc) ||
2833 copy_in_user(&rxnfc->fs.ring_cookie,
2834 &compat_rxnfc->fs.ring_cookie,
2835 (void *)(&rxnfc->fs.location + 1) -
2836 (void *)&rxnfc->fs.ring_cookie) ||
2837 copy_in_user(&rxnfc->rule_cnt, &compat_rxnfc->rule_cnt,
2838 sizeof(rxnfc->rule_cnt)))
2839 return -EFAULT;
2840 }
2841
2842 ret = dev_ioctl(net, SIOCETHTOOL, ifr);
2843 if (ret)
2844 return ret;
2845
2846 if (convert_out) {
2847 if (copy_in_user(compat_rxnfc, rxnfc,
Alexander Duyck127fe532011-04-08 18:01:59 +00002848 (const void *)(&rxnfc->fs.m_ext + 1) -
Ben Hutchings3a7da392011-03-17 07:34:32 +00002849 (const void *)rxnfc) ||
2850 copy_in_user(&compat_rxnfc->fs.ring_cookie,
2851 &rxnfc->fs.ring_cookie,
2852 (const void *)(&rxnfc->fs.location + 1) -
2853 (const void *)&rxnfc->fs.ring_cookie) ||
2854 copy_in_user(&compat_rxnfc->rule_cnt, &rxnfc->rule_cnt,
2855 sizeof(rxnfc->rule_cnt)))
2856 return -EFAULT;
2857
2858 if (ethcmd == ETHTOOL_GRXCLSRLALL) {
2859 /* As an optimisation, we only copy the actual
2860 * number of rules that the underlying
2861 * function returned. Since Mallory might
2862 * change the rule count in user memory, we
2863 * check that it is less than the rule count
2864 * originally given (as the user buffer size),
2865 * which has been range-checked.
2866 */
2867 if (get_user(actual_rule_cnt, &rxnfc->rule_cnt))
2868 return -EFAULT;
2869 if (actual_rule_cnt < rule_cnt)
2870 rule_cnt = actual_rule_cnt;
2871 if (copy_in_user(&compat_rxnfc->rule_locs[0],
2872 &rxnfc->rule_locs[0],
2873 rule_cnt * sizeof(u32)))
2874 return -EFAULT;
2875 }
2876 }
2877
2878 return 0;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002879}
2880
Arnd Bergmann7a50a242009-11-08 20:57:03 -08002881static int compat_siocwandev(struct net *net, struct compat_ifreq __user *uifr32)
2882{
2883 void __user *uptr;
2884 compat_uptr_t uptr32;
2885 struct ifreq __user *uifr;
2886
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002887 uifr = compat_alloc_user_space(sizeof(*uifr));
Arnd Bergmann7a50a242009-11-08 20:57:03 -08002888 if (copy_in_user(uifr, uifr32, sizeof(struct compat_ifreq)))
2889 return -EFAULT;
2890
2891 if (get_user(uptr32, &uifr32->ifr_settings.ifs_ifsu))
2892 return -EFAULT;
2893
2894 uptr = compat_ptr(uptr32);
2895
2896 if (put_user(uptr, &uifr->ifr_settings.ifs_ifsu.raw_hdlc))
2897 return -EFAULT;
2898
2899 return dev_ioctl(net, SIOCWANDEV, uifr);
2900}
2901
Arnd Bergmann6b960182009-11-06 23:10:54 -08002902static int bond_ioctl(struct net *net, unsigned int cmd,
2903 struct compat_ifreq __user *ifr32)
Arnd Bergmann7a229382009-11-06 23:00:29 -08002904{
2905 struct ifreq kifr;
2906 struct ifreq __user *uifr;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002907 mm_segment_t old_fs;
2908 int err;
2909 u32 data;
2910 void __user *datap;
2911
2912 switch (cmd) {
2913 case SIOCBONDENSLAVE:
2914 case SIOCBONDRELEASE:
2915 case SIOCBONDSETHWADDR:
2916 case SIOCBONDCHANGEACTIVE:
Arnd Bergmann6b960182009-11-06 23:10:54 -08002917 if (copy_from_user(&kifr, ifr32, sizeof(struct compat_ifreq)))
Arnd Bergmann7a229382009-11-06 23:00:29 -08002918 return -EFAULT;
2919
2920 old_fs = get_fs();
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002921 set_fs(KERNEL_DS);
stephen hemmingerc3f52ae2011-02-23 09:06:48 +00002922 err = dev_ioctl(net, cmd,
2923 (struct ifreq __user __force *) &kifr);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002924 set_fs(old_fs);
Arnd Bergmann7a229382009-11-06 23:00:29 -08002925
2926 return err;
2927 case SIOCBONDSLAVEINFOQUERY:
2928 case SIOCBONDINFOQUERY:
2929 uifr = compat_alloc_user_space(sizeof(*uifr));
2930 if (copy_in_user(&uifr->ifr_name, &ifr32->ifr_name, IFNAMSIZ))
2931 return -EFAULT;
2932
2933 if (get_user(data, &ifr32->ifr_ifru.ifru_data))
2934 return -EFAULT;
2935
2936 datap = compat_ptr(data);
2937 if (put_user(datap, &uifr->ifr_ifru.ifru_data))
2938 return -EFAULT;
2939
Arnd Bergmann6b960182009-11-06 23:10:54 -08002940 return dev_ioctl(net, cmd, uifr);
Arnd Bergmann7a229382009-11-06 23:00:29 -08002941 default:
Linus Torvalds07d106d2012-01-05 15:40:12 -08002942 return -ENOIOCTLCMD;
Joe Perchesccbd6a52010-05-14 10:58:26 +00002943 }
Arnd Bergmann7a229382009-11-06 23:00:29 -08002944}
2945
Arnd Bergmann6b960182009-11-06 23:10:54 -08002946static int siocdevprivate_ioctl(struct net *net, unsigned int cmd,
2947 struct compat_ifreq __user *u_ifreq32)
Arnd Bergmann7a229382009-11-06 23:00:29 -08002948{
2949 struct ifreq __user *u_ifreq64;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002950 char tmp_buf[IFNAMSIZ];
2951 void __user *data64;
2952 u32 data32;
2953
2954 if (copy_from_user(&tmp_buf[0], &(u_ifreq32->ifr_ifrn.ifrn_name[0]),
2955 IFNAMSIZ))
2956 return -EFAULT;
2957 if (__get_user(data32, &u_ifreq32->ifr_ifru.ifru_data))
2958 return -EFAULT;
2959 data64 = compat_ptr(data32);
2960
2961 u_ifreq64 = compat_alloc_user_space(sizeof(*u_ifreq64));
2962
2963 /* Don't check these user accesses, just let that get trapped
2964 * in the ioctl handler instead.
2965 */
2966 if (copy_to_user(&u_ifreq64->ifr_ifrn.ifrn_name[0], &tmp_buf[0],
2967 IFNAMSIZ))
2968 return -EFAULT;
2969 if (__put_user(data64, &u_ifreq64->ifr_ifru.ifru_data))
2970 return -EFAULT;
2971
Arnd Bergmann6b960182009-11-06 23:10:54 -08002972 return dev_ioctl(net, cmd, u_ifreq64);
Arnd Bergmann7a229382009-11-06 23:00:29 -08002973}
2974
Arnd Bergmann6b960182009-11-06 23:10:54 -08002975static int dev_ifsioc(struct net *net, struct socket *sock,
2976 unsigned int cmd, struct compat_ifreq __user *uifr32)
Arnd Bergmann7a229382009-11-06 23:00:29 -08002977{
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002978 struct ifreq __user *uifr;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002979 int err;
2980
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002981 uifr = compat_alloc_user_space(sizeof(*uifr));
2982 if (copy_in_user(uifr, uifr32, sizeof(*uifr32)))
2983 return -EFAULT;
2984
2985 err = sock_do_ioctl(net, sock, cmd, (unsigned long)uifr);
2986
Arnd Bergmann7a229382009-11-06 23:00:29 -08002987 if (!err) {
2988 switch (cmd) {
2989 case SIOCGIFFLAGS:
2990 case SIOCGIFMETRIC:
2991 case SIOCGIFMTU:
2992 case SIOCGIFMEM:
2993 case SIOCGIFHWADDR:
2994 case SIOCGIFINDEX:
2995 case SIOCGIFADDR:
2996 case SIOCGIFBRDADDR:
2997 case SIOCGIFDSTADDR:
2998 case SIOCGIFNETMASK:
Arnd Bergmannfab25322009-11-08 20:56:21 -08002999 case SIOCGIFPFLAGS:
Arnd Bergmann7a229382009-11-06 23:00:29 -08003000 case SIOCGIFTXQLEN:
Arnd Bergmannfab25322009-11-08 20:56:21 -08003001 case SIOCGMIIPHY:
3002 case SIOCGMIIREG:
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003003 if (copy_in_user(uifr32, uifr, sizeof(*uifr32)))
Arnd Bergmann7a229382009-11-06 23:00:29 -08003004 err = -EFAULT;
3005 break;
3006 }
3007 }
3008 return err;
3009}
3010
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003011static int compat_sioc_ifmap(struct net *net, unsigned int cmd,
3012 struct compat_ifreq __user *uifr32)
3013{
3014 struct ifreq ifr;
3015 struct compat_ifmap __user *uifmap32;
3016 mm_segment_t old_fs;
3017 int err;
3018
3019 uifmap32 = &uifr32->ifr_ifru.ifru_map;
3020 err = copy_from_user(&ifr, uifr32, sizeof(ifr.ifr_name));
3021 err |= __get_user(ifr.ifr_map.mem_start, &uifmap32->mem_start);
3022 err |= __get_user(ifr.ifr_map.mem_end, &uifmap32->mem_end);
3023 err |= __get_user(ifr.ifr_map.base_addr, &uifmap32->base_addr);
3024 err |= __get_user(ifr.ifr_map.irq, &uifmap32->irq);
3025 err |= __get_user(ifr.ifr_map.dma, &uifmap32->dma);
3026 err |= __get_user(ifr.ifr_map.port, &uifmap32->port);
3027 if (err)
3028 return -EFAULT;
3029
3030 old_fs = get_fs();
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003031 set_fs(KERNEL_DS);
stephen hemmingerc3f52ae2011-02-23 09:06:48 +00003032 err = dev_ioctl(net, cmd, (void __user __force *)&ifr);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003033 set_fs(old_fs);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003034
3035 if (cmd == SIOCGIFMAP && !err) {
3036 err = copy_to_user(uifr32, &ifr, sizeof(ifr.ifr_name));
3037 err |= __put_user(ifr.ifr_map.mem_start, &uifmap32->mem_start);
3038 err |= __put_user(ifr.ifr_map.mem_end, &uifmap32->mem_end);
3039 err |= __put_user(ifr.ifr_map.base_addr, &uifmap32->base_addr);
3040 err |= __put_user(ifr.ifr_map.irq, &uifmap32->irq);
3041 err |= __put_user(ifr.ifr_map.dma, &uifmap32->dma);
3042 err |= __put_user(ifr.ifr_map.port, &uifmap32->port);
3043 if (err)
3044 err = -EFAULT;
3045 }
3046 return err;
3047}
3048
3049static int compat_siocshwtstamp(struct net *net, struct compat_ifreq __user *uifr32)
3050{
3051 void __user *uptr;
3052 compat_uptr_t uptr32;
3053 struct ifreq __user *uifr;
3054
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003055 uifr = compat_alloc_user_space(sizeof(*uifr));
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003056 if (copy_in_user(uifr, uifr32, sizeof(struct compat_ifreq)))
3057 return -EFAULT;
3058
3059 if (get_user(uptr32, &uifr32->ifr_data))
3060 return -EFAULT;
3061
3062 uptr = compat_ptr(uptr32);
3063
3064 if (put_user(uptr, &uifr->ifr_data))
3065 return -EFAULT;
3066
3067 return dev_ioctl(net, SIOCSHWTSTAMP, uifr);
3068}
3069
Arnd Bergmann7a229382009-11-06 23:00:29 -08003070struct rtentry32 {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003071 u32 rt_pad1;
Arnd Bergmann7a229382009-11-06 23:00:29 -08003072 struct sockaddr rt_dst; /* target address */
3073 struct sockaddr rt_gateway; /* gateway addr (RTF_GATEWAY) */
3074 struct sockaddr rt_genmask; /* target network mask (IP) */
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003075 unsigned short rt_flags;
3076 short rt_pad2;
3077 u32 rt_pad3;
3078 unsigned char rt_tos;
3079 unsigned char rt_class;
3080 short rt_pad4;
3081 short rt_metric; /* +1 for binary compatibility! */
Arnd Bergmann7a229382009-11-06 23:00:29 -08003082 /* char * */ u32 rt_dev; /* forcing the device at add */
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003083 u32 rt_mtu; /* per route MTU/Window */
3084 u32 rt_window; /* Window clamping */
Arnd Bergmann7a229382009-11-06 23:00:29 -08003085 unsigned short rt_irtt; /* Initial RTT */
3086};
3087
3088struct in6_rtmsg32 {
3089 struct in6_addr rtmsg_dst;
3090 struct in6_addr rtmsg_src;
3091 struct in6_addr rtmsg_gateway;
3092 u32 rtmsg_type;
3093 u16 rtmsg_dst_len;
3094 u16 rtmsg_src_len;
3095 u32 rtmsg_metric;
3096 u32 rtmsg_info;
3097 u32 rtmsg_flags;
3098 s32 rtmsg_ifindex;
3099};
3100
Arnd Bergmann6b960182009-11-06 23:10:54 -08003101static int routing_ioctl(struct net *net, struct socket *sock,
3102 unsigned int cmd, void __user *argp)
Arnd Bergmann7a229382009-11-06 23:00:29 -08003103{
3104 int ret;
3105 void *r = NULL;
3106 struct in6_rtmsg r6;
3107 struct rtentry r4;
3108 char devname[16];
3109 u32 rtdev;
3110 mm_segment_t old_fs = get_fs();
3111
Arnd Bergmann6b960182009-11-06 23:10:54 -08003112 if (sock && sock->sk && sock->sk->sk_family == AF_INET6) { /* ipv6 */
3113 struct in6_rtmsg32 __user *ur6 = argp;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003114 ret = copy_from_user(&r6.rtmsg_dst, &(ur6->rtmsg_dst),
Arnd Bergmann7a229382009-11-06 23:00:29 -08003115 3 * sizeof(struct in6_addr));
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003116 ret |= __get_user(r6.rtmsg_type, &(ur6->rtmsg_type));
3117 ret |= __get_user(r6.rtmsg_dst_len, &(ur6->rtmsg_dst_len));
3118 ret |= __get_user(r6.rtmsg_src_len, &(ur6->rtmsg_src_len));
3119 ret |= __get_user(r6.rtmsg_metric, &(ur6->rtmsg_metric));
3120 ret |= __get_user(r6.rtmsg_info, &(ur6->rtmsg_info));
3121 ret |= __get_user(r6.rtmsg_flags, &(ur6->rtmsg_flags));
3122 ret |= __get_user(r6.rtmsg_ifindex, &(ur6->rtmsg_ifindex));
Arnd Bergmann7a229382009-11-06 23:00:29 -08003123
3124 r = (void *) &r6;
3125 } else { /* ipv4 */
Arnd Bergmann6b960182009-11-06 23:10:54 -08003126 struct rtentry32 __user *ur4 = argp;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003127 ret = copy_from_user(&r4.rt_dst, &(ur4->rt_dst),
Arnd Bergmann7a229382009-11-06 23:00:29 -08003128 3 * sizeof(struct sockaddr));
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003129 ret |= __get_user(r4.rt_flags, &(ur4->rt_flags));
3130 ret |= __get_user(r4.rt_metric, &(ur4->rt_metric));
3131 ret |= __get_user(r4.rt_mtu, &(ur4->rt_mtu));
3132 ret |= __get_user(r4.rt_window, &(ur4->rt_window));
3133 ret |= __get_user(r4.rt_irtt, &(ur4->rt_irtt));
3134 ret |= __get_user(rtdev, &(ur4->rt_dev));
Arnd Bergmann7a229382009-11-06 23:00:29 -08003135 if (rtdev) {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003136 ret |= copy_from_user(devname, compat_ptr(rtdev), 15);
stephen hemmingerc3f52ae2011-02-23 09:06:48 +00003137 r4.rt_dev = (char __user __force *)devname;
3138 devname[15] = 0;
Arnd Bergmann7a229382009-11-06 23:00:29 -08003139 } else
3140 r4.rt_dev = NULL;
3141
3142 r = (void *) &r4;
3143 }
3144
3145 if (ret) {
3146 ret = -EFAULT;
3147 goto out;
3148 }
3149
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003150 set_fs(KERNEL_DS);
Arnd Bergmann6b960182009-11-06 23:10:54 -08003151 ret = sock_do_ioctl(net, sock, cmd, (unsigned long) r);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003152 set_fs(old_fs);
Arnd Bergmann7a229382009-11-06 23:00:29 -08003153
3154out:
Arnd Bergmann7a229382009-11-06 23:00:29 -08003155 return ret;
3156}
3157
3158/* Since old style bridge ioctl's endup using SIOCDEVPRIVATE
3159 * for some operations; this forces use of the newer bridge-utils that
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003160 * use compatible ioctls
Arnd Bergmann7a229382009-11-06 23:00:29 -08003161 */
Arnd Bergmann6b960182009-11-06 23:10:54 -08003162static int old_bridge_ioctl(compat_ulong_t __user *argp)
Arnd Bergmann7a229382009-11-06 23:00:29 -08003163{
Arnd Bergmann6b960182009-11-06 23:10:54 -08003164 compat_ulong_t tmp;
Arnd Bergmann7a229382009-11-06 23:00:29 -08003165
Arnd Bergmann6b960182009-11-06 23:10:54 -08003166 if (get_user(tmp, argp))
Arnd Bergmann7a229382009-11-06 23:00:29 -08003167 return -EFAULT;
3168 if (tmp == BRCTL_GET_VERSION)
3169 return BRCTL_VERSION + 1;
3170 return -EINVAL;
3171}
3172
Arnd Bergmann6b960182009-11-06 23:10:54 -08003173static int compat_sock_ioctl_trans(struct file *file, struct socket *sock,
3174 unsigned int cmd, unsigned long arg)
3175{
3176 void __user *argp = compat_ptr(arg);
3177 struct sock *sk = sock->sk;
3178 struct net *net = sock_net(sk);
Arnd Bergmann7a229382009-11-06 23:00:29 -08003179
Arnd Bergmann6b960182009-11-06 23:10:54 -08003180 if (cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15))
3181 return siocdevprivate_ioctl(net, cmd, argp);
Arnd Bergmann7a229382009-11-06 23:00:29 -08003182
Arnd Bergmann6b960182009-11-06 23:10:54 -08003183 switch (cmd) {
3184 case SIOCSIFBR:
3185 case SIOCGIFBR:
3186 return old_bridge_ioctl(argp);
3187 case SIOCGIFNAME:
3188 return dev_ifname32(net, argp);
3189 case SIOCGIFCONF:
3190 return dev_ifconf(net, argp);
3191 case SIOCETHTOOL:
3192 return ethtool_ioctl(net, argp);
Arnd Bergmann7a50a242009-11-08 20:57:03 -08003193 case SIOCWANDEV:
3194 return compat_siocwandev(net, argp);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003195 case SIOCGIFMAP:
3196 case SIOCSIFMAP:
3197 return compat_sioc_ifmap(net, cmd, argp);
Arnd Bergmann6b960182009-11-06 23:10:54 -08003198 case SIOCBONDENSLAVE:
3199 case SIOCBONDRELEASE:
3200 case SIOCBONDSETHWADDR:
3201 case SIOCBONDSLAVEINFOQUERY:
3202 case SIOCBONDINFOQUERY:
3203 case SIOCBONDCHANGEACTIVE:
3204 return bond_ioctl(net, cmd, argp);
3205 case SIOCADDRT:
3206 case SIOCDELRT:
3207 return routing_ioctl(net, sock, cmd, argp);
3208 case SIOCGSTAMP:
3209 return do_siocgstamp(net, sock, cmd, argp);
3210 case SIOCGSTAMPNS:
3211 return do_siocgstampns(net, sock, cmd, argp);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003212 case SIOCSHWTSTAMP:
3213 return compat_siocshwtstamp(net, argp);
Arnd Bergmann7a229382009-11-06 23:00:29 -08003214
Arnd Bergmann6b960182009-11-06 23:10:54 -08003215 case FIOSETOWN:
3216 case SIOCSPGRP:
3217 case FIOGETOWN:
3218 case SIOCGPGRP:
3219 case SIOCBRADDBR:
3220 case SIOCBRDELBR:
3221 case SIOCGIFVLAN:
3222 case SIOCSIFVLAN:
3223 case SIOCADDDLCI:
3224 case SIOCDELDLCI:
3225 return sock_ioctl(file, cmd, arg);
3226
3227 case SIOCGIFFLAGS:
3228 case SIOCSIFFLAGS:
3229 case SIOCGIFMETRIC:
3230 case SIOCSIFMETRIC:
3231 case SIOCGIFMTU:
3232 case SIOCSIFMTU:
3233 case SIOCGIFMEM:
3234 case SIOCSIFMEM:
3235 case SIOCGIFHWADDR:
3236 case SIOCSIFHWADDR:
3237 case SIOCADDMULTI:
3238 case SIOCDELMULTI:
3239 case SIOCGIFINDEX:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003240 case SIOCGIFADDR:
3241 case SIOCSIFADDR:
3242 case SIOCSIFHWBROADCAST:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003243 case SIOCDIFADDR:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003244 case SIOCGIFBRDADDR:
3245 case SIOCSIFBRDADDR:
3246 case SIOCGIFDSTADDR:
3247 case SIOCSIFDSTADDR:
3248 case SIOCGIFNETMASK:
3249 case SIOCSIFNETMASK:
3250 case SIOCSIFPFLAGS:
3251 case SIOCGIFPFLAGS:
3252 case SIOCGIFTXQLEN:
3253 case SIOCSIFTXQLEN:
3254 case SIOCBRADDIF:
3255 case SIOCBRDELIF:
Arnd Bergmann9177efd2009-11-06 08:09:09 +00003256 case SIOCSIFNAME:
3257 case SIOCGMIIPHY:
3258 case SIOCGMIIREG:
3259 case SIOCSMIIREG:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003260 return dev_ifsioc(net, sock, cmd, argp);
Arnd Bergmann9177efd2009-11-06 08:09:09 +00003261
Arnd Bergmann6b960182009-11-06 23:10:54 -08003262 case SIOCSARP:
3263 case SIOCGARP:
3264 case SIOCDARP:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003265 case SIOCATMARK:
Arnd Bergmann9177efd2009-11-06 08:09:09 +00003266 return sock_do_ioctl(net, sock, cmd, arg);
3267 }
3268
Arnd Bergmann6b960182009-11-06 23:10:54 -08003269 return -ENOIOCTLCMD;
3270}
Arnd Bergmann7a229382009-11-06 23:00:29 -08003271
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003272static long compat_sock_ioctl(struct file *file, unsigned cmd,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07003273 unsigned long arg)
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003274{
3275 struct socket *sock = file->private_data;
3276 int ret = -ENOIOCTLCMD;
David S. Miller87de87d2008-06-03 09:14:03 -07003277 struct sock *sk;
3278 struct net *net;
3279
3280 sk = sock->sk;
3281 net = sock_net(sk);
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003282
3283 if (sock->ops->compat_ioctl)
3284 ret = sock->ops->compat_ioctl(sock, cmd, arg);
3285
David S. Miller87de87d2008-06-03 09:14:03 -07003286 if (ret == -ENOIOCTLCMD &&
3287 (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST))
3288 ret = compat_wext_handle_ioctl(net, cmd, arg);
3289
Arnd Bergmann6b960182009-11-06 23:10:54 -08003290 if (ret == -ENOIOCTLCMD)
3291 ret = compat_sock_ioctl_trans(file, sock, cmd, arg);
3292
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003293 return ret;
3294}
3295#endif
3296
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003297int kernel_bind(struct socket *sock, struct sockaddr *addr, int addrlen)
3298{
3299 return sock->ops->bind(sock, addr, addrlen);
3300}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003301EXPORT_SYMBOL(kernel_bind);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003302
3303int kernel_listen(struct socket *sock, int backlog)
3304{
3305 return sock->ops->listen(sock, backlog);
3306}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003307EXPORT_SYMBOL(kernel_listen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003308
3309int kernel_accept(struct socket *sock, struct socket **newsock, int flags)
3310{
3311 struct sock *sk = sock->sk;
3312 int err;
3313
3314 err = sock_create_lite(sk->sk_family, sk->sk_type, sk->sk_protocol,
3315 newsock);
3316 if (err < 0)
3317 goto done;
3318
3319 err = sock->ops->accept(sock, *newsock, flags);
3320 if (err < 0) {
3321 sock_release(*newsock);
Tony Battersbyfa8705b2007-10-10 21:09:04 -07003322 *newsock = NULL;
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003323 goto done;
3324 }
3325
3326 (*newsock)->ops = sock->ops;
Wei Yongjun1b085342008-12-18 19:35:10 -08003327 __module_get((*newsock)->ops->owner);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003328
3329done:
3330 return err;
3331}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003332EXPORT_SYMBOL(kernel_accept);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003333
3334int kernel_connect(struct socket *sock, struct sockaddr *addr, int addrlen,
YOSHIFUJI Hideaki4768fbc2007-02-09 23:25:31 +09003335 int flags)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003336{
3337 return sock->ops->connect(sock, addr, addrlen, flags);
3338}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003339EXPORT_SYMBOL(kernel_connect);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003340
3341int kernel_getsockname(struct socket *sock, struct sockaddr *addr,
3342 int *addrlen)
3343{
3344 return sock->ops->getname(sock, addr, addrlen, 0);
3345}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003346EXPORT_SYMBOL(kernel_getsockname);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003347
3348int kernel_getpeername(struct socket *sock, struct sockaddr *addr,
3349 int *addrlen)
3350{
3351 return sock->ops->getname(sock, addr, addrlen, 1);
3352}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003353EXPORT_SYMBOL(kernel_getpeername);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003354
3355int kernel_getsockopt(struct socket *sock, int level, int optname,
3356 char *optval, int *optlen)
3357{
3358 mm_segment_t oldfs = get_fs();
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003359 char __user *uoptval;
3360 int __user *uoptlen;
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003361 int err;
3362
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003363 uoptval = (char __user __force *) optval;
3364 uoptlen = (int __user __force *) optlen;
3365
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003366 set_fs(KERNEL_DS);
3367 if (level == SOL_SOCKET)
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003368 err = sock_getsockopt(sock, level, optname, uoptval, uoptlen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003369 else
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003370 err = sock->ops->getsockopt(sock, level, optname, uoptval,
3371 uoptlen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003372 set_fs(oldfs);
3373 return err;
3374}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003375EXPORT_SYMBOL(kernel_getsockopt);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003376
3377int kernel_setsockopt(struct socket *sock, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07003378 char *optval, unsigned int optlen)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003379{
3380 mm_segment_t oldfs = get_fs();
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003381 char __user *uoptval;
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003382 int err;
3383
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003384 uoptval = (char __user __force *) optval;
3385
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003386 set_fs(KERNEL_DS);
3387 if (level == SOL_SOCKET)
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003388 err = sock_setsockopt(sock, level, optname, uoptval, optlen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003389 else
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003390 err = sock->ops->setsockopt(sock, level, optname, uoptval,
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003391 optlen);
3392 set_fs(oldfs);
3393 return err;
3394}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003395EXPORT_SYMBOL(kernel_setsockopt);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003396
3397int kernel_sendpage(struct socket *sock, struct page *page, int offset,
3398 size_t size, int flags)
3399{
Herbert Xuf8451722010-05-24 00:12:34 -07003400 sock_update_classid(sock->sk);
3401
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003402 if (sock->ops->sendpage)
3403 return sock->ops->sendpage(sock, page, offset, size, flags);
3404
3405 return sock_no_sendpage(sock, page, offset, size, flags);
3406}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003407EXPORT_SYMBOL(kernel_sendpage);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003408
3409int kernel_sock_ioctl(struct socket *sock, int cmd, unsigned long arg)
3410{
3411 mm_segment_t oldfs = get_fs();
3412 int err;
3413
3414 set_fs(KERNEL_DS);
3415 err = sock->ops->ioctl(sock, cmd, arg);
3416 set_fs(oldfs);
3417
3418 return err;
3419}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003420EXPORT_SYMBOL(kernel_sock_ioctl);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003421
Trond Myklebust91cf45f2007-11-12 18:10:39 -08003422int kernel_sock_shutdown(struct socket *sock, enum sock_shutdown_cmd how)
3423{
3424 return sock->ops->shutdown(sock, how);
3425}
Trond Myklebust91cf45f2007-11-12 18:10:39 -08003426EXPORT_SYMBOL(kernel_sock_shutdown);