blob: a14ec19164b6ec48c83cc61c1de6004c84887c4e [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 Black1fd7317d2009-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 Viro28407632012-08-17 23:54:15 -0400349static struct file *sock_alloc_file(struct socket *sock, 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;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800354
Nick Piggin4b936882011-01-07 17:50:07 +1100355 path.dentry = d_alloc_pseudo(sock_mnt->mnt_sb, &name);
Al Viro28407632012-08-17 23:54:15 -0400356 if (unlikely(!path.dentry))
357 return ERR_PTR(-ENOMEM);
Al Viro2c48b9c2009-08-09 00:52:35 +0400358 path.mnt = mntget(sock_mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
Al Viro2c48b9c2009-08-09 00:52:35 +0400360 d_instantiate(path.dentry, SOCK_INODE(sock));
Al Virocc3808f2009-08-06 09:43:59 +0400361 SOCK_INODE(sock)->i_fop = &socket_file_ops;
362
Al Viro2c48b9c2009-08-09 00:52:35 +0400363 file = alloc_file(&path, FMODE_READ | FMODE_WRITE,
Al Virocc3808f2009-08-06 09:43:59 +0400364 &socket_file_ops);
365 if (unlikely(!file)) {
366 /* drop dentry, keep inode */
Al Viro7de9c6ee2010-10-23 11:11:40 -0400367 ihold(path.dentry->d_inode);
Al Viro2c48b9c2009-08-09 00:52:35 +0400368 path_put(&path);
Al Viro28407632012-08-17 23:54:15 -0400369 return ERR_PTR(-ENFILE);
Al Virocc3808f2009-08-06 09:43:59 +0400370 }
David S. Miller39d8c1b2006-03-20 17:13:49 -0800371
372 sock->file = file;
Ulrich Drepper77d27202008-07-23 21:29:35 -0700373 file->f_flags = O_RDWR | (flags & O_NONBLOCK);
David S. Miller39d8c1b2006-03-20 17:13:49 -0800374 file->f_pos = 0;
375 file->private_data = sock;
Al Viro28407632012-08-17 23:54:15 -0400376 return file;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800377}
378
Ulrich Dreppera677a032008-07-23 21:29:17 -0700379int sock_map_fd(struct socket *sock, int flags)
David S. Miller39d8c1b2006-03-20 17:13:49 -0800380{
381 struct file *newfile;
Al Viro28407632012-08-17 23:54:15 -0400382 int fd = get_unused_fd_flags(flags);
383 if (unlikely(fd < 0))
384 return fd;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800385
Al Viro28407632012-08-17 23:54:15 -0400386 newfile = sock_alloc_file(sock, flags);
387 if (likely(!IS_ERR(newfile))) {
David S. Miller39d8c1b2006-03-20 17:13:49 -0800388 fd_install(fd, newfile);
Al Viro28407632012-08-17 23:54:15 -0400389 return fd;
390 }
Al Viro7cbe66b2009-08-05 19:59:08 +0400391
Al Viro28407632012-08-17 23:54:15 -0400392 put_unused_fd(fd);
393 return PTR_ERR(newfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700395EXPORT_SYMBOL(sock_map_fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
John Fastabend406a3c62012-07-20 10:39:25 +0000397struct socket *sock_from_file(struct file *file, int *err)
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800398{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800399 if (file->f_op == &socket_file_ops)
400 return file->private_data; /* set in sock_map_fd */
401
Eric Dumazet23bb80d2007-02-08 14:59:57 -0800402 *err = -ENOTSOCK;
403 return NULL;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800404}
John Fastabend406a3c62012-07-20 10:39:25 +0000405EXPORT_SYMBOL(sock_from_file);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407/**
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700408 * sockfd_lookup - Go from a file number to its socket slot
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 * @fd: file handle
410 * @err: pointer to an error code return
411 *
412 * The file handle passed in is locked and the socket it is bound
413 * too is returned. If an error occurs the err pointer is overwritten
414 * with a negative errno code and NULL is returned. The function checks
415 * for both invalid handles and passing a handle which is not a socket.
416 *
417 * On a success the socket object pointer is returned.
418 */
419
420struct socket *sockfd_lookup(int fd, int *err)
421{
422 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 struct socket *sock;
424
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700425 file = fget(fd);
426 if (!file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 *err = -EBADF;
428 return NULL;
429 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700430
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800431 sock = sock_from_file(file, err);
432 if (!sock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 fput(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 return sock;
435}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700436EXPORT_SYMBOL(sockfd_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800438static struct socket *sockfd_lookup_light(int fd, int *err, int *fput_needed)
439{
440 struct file *file;
441 struct socket *sock;
442
Hua Zhong36725582006-04-19 15:25:02 -0700443 *err = -EBADF;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800444 file = fget_light(fd, fput_needed);
445 if (file) {
446 sock = sock_from_file(file, err);
447 if (sock)
448 return sock;
449 fput_light(file, *fput_needed);
450 }
451 return NULL;
452}
453
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454/**
455 * sock_alloc - allocate a socket
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700456 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 * Allocate a new inode and socket object. The two are bound together
458 * and initialised. The socket is then returned. If we are out of inodes
459 * NULL is returned.
460 */
461
462static struct socket *sock_alloc(void)
463{
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700464 struct inode *inode;
465 struct socket *sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
Eric Dumazeta209dfc2011-07-26 11:36:34 +0200467 inode = new_inode_pseudo(sock_mnt->mnt_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 if (!inode)
469 return NULL;
470
471 sock = SOCKET_I(inode);
472
Eric Dumazet29a020d2009-09-15 02:39:20 -0700473 kmemcheck_annotate_bitfield(sock, type);
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400474 inode->i_ino = get_next_ino();
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700475 inode->i_mode = S_IFSOCK | S_IRWXUGO;
David Howells8192b0c2008-11-14 10:39:10 +1100476 inode->i_uid = current_fsuid();
477 inode->i_gid = current_fsgid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
Alex Shi19e8d692012-05-14 14:15:31 -0700479 this_cpu_add(sockets_in_use, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 return sock;
481}
482
483/*
484 * In theory you can't get an open on this inode, but /proc provides
485 * a back door. Remember to keep it shut otherwise you'll let the
486 * creepy crawlies in.
487 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700488
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489static int sock_no_open(struct inode *irrelevant, struct file *dontcare)
490{
491 return -ENXIO;
492}
493
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800494const struct file_operations bad_sock_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 .owner = THIS_MODULE,
496 .open = sock_no_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200497 .llseek = noop_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498};
499
500/**
501 * sock_release - close a socket
502 * @sock: socket to close
503 *
504 * The socket is released from the protocol stack if it has a release
505 * callback, and the inode is then released if the socket is bound to
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700506 * an inode not a file.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700508
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509void sock_release(struct socket *sock)
510{
511 if (sock->ops) {
512 struct module *owner = sock->ops->owner;
513
514 sock->ops->release(sock);
515 sock->ops = NULL;
516 module_put(owner);
517 }
518
Eric Dumazeteaefd112011-02-18 03:26:36 +0000519 if (rcu_dereference_protected(sock->wq, 1)->fasync_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 printk(KERN_ERR "sock_release: fasync list not empty!\n");
521
Mikulas Patockab09e7862012-07-19 06:13:36 +0000522 if (test_bit(SOCK_EXTERNALLY_ALLOCATED, &sock->flags))
523 return;
524
Alex Shi19e8d692012-05-14 14:15:31 -0700525 this_cpu_sub(sockets_in_use, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 if (!sock->file) {
527 iput(SOCK_INODE(sock));
528 return;
529 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700530 sock->file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700532EXPORT_SYMBOL(sock_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
Oliver Hartkopp2244d072010-08-17 08:59:14 +0000534int sock_tx_timestamp(struct sock *sk, __u8 *tx_flags)
Patrick Ohly20d49472009-02-12 05:03:38 +0000535{
Oliver Hartkopp2244d072010-08-17 08:59:14 +0000536 *tx_flags = 0;
Patrick Ohly20d49472009-02-12 05:03:38 +0000537 if (sock_flag(sk, SOCK_TIMESTAMPING_TX_HARDWARE))
Oliver Hartkopp2244d072010-08-17 08:59:14 +0000538 *tx_flags |= SKBTX_HW_TSTAMP;
Patrick Ohly20d49472009-02-12 05:03:38 +0000539 if (sock_flag(sk, SOCK_TIMESTAMPING_TX_SOFTWARE))
Oliver Hartkopp2244d072010-08-17 08:59:14 +0000540 *tx_flags |= SKBTX_SW_TSTAMP;
Johannes Berg6e3e9392011-11-09 10:15:42 +0100541 if (sock_flag(sk, SOCK_WIFI_STATUS))
542 *tx_flags |= SKBTX_WIFI_STATUS;
Patrick Ohly20d49472009-02-12 05:03:38 +0000543 return 0;
544}
545EXPORT_SYMBOL(sock_tx_timestamp);
546
Anton Blanchard228e5482011-05-02 20:21:35 +0000547static inline int __sock_sendmsg_nosec(struct kiocb *iocb, struct socket *sock,
548 struct msghdr *msg, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549{
550 struct sock_iocb *si = kiocb_to_siocb(iocb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
Herbert Xuf8451722010-05-24 00:12:34 -0700552 sock_update_classid(sock->sk);
553
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 si->sock = sock;
555 si->scm = NULL;
556 si->msg = msg;
557 si->size = size;
558
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 return sock->ops->sendmsg(iocb, sock, msg, size);
560}
561
Anton Blanchard228e5482011-05-02 20:21:35 +0000562static inline int __sock_sendmsg(struct kiocb *iocb, struct socket *sock,
563 struct msghdr *msg, size_t size)
564{
565 int err = security_socket_sendmsg(sock, msg, size);
566
567 return err ?: __sock_sendmsg_nosec(iocb, sock, msg, size);
568}
569
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570int sock_sendmsg(struct socket *sock, struct msghdr *msg, size_t size)
571{
572 struct kiocb iocb;
573 struct sock_iocb siocb;
574 int ret;
575
576 init_sync_kiocb(&iocb, NULL);
577 iocb.private = &siocb;
578 ret = __sock_sendmsg(&iocb, sock, msg, size);
579 if (-EIOCBQUEUED == ret)
580 ret = wait_on_sync_kiocb(&iocb);
581 return ret;
582}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700583EXPORT_SYMBOL(sock_sendmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
Eric Dumazet894dc242011-07-26 02:39:41 +0000585static int sock_sendmsg_nosec(struct socket *sock, struct msghdr *msg, size_t size)
Anton Blanchard228e5482011-05-02 20:21:35 +0000586{
587 struct kiocb iocb;
588 struct sock_iocb siocb;
589 int ret;
590
591 init_sync_kiocb(&iocb, NULL);
592 iocb.private = &siocb;
593 ret = __sock_sendmsg_nosec(&iocb, sock, msg, size);
594 if (-EIOCBQUEUED == ret)
595 ret = wait_on_sync_kiocb(&iocb);
596 return ret;
597}
598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599int kernel_sendmsg(struct socket *sock, struct msghdr *msg,
600 struct kvec *vec, size_t num, size_t size)
601{
602 mm_segment_t oldfs = get_fs();
603 int result;
604
605 set_fs(KERNEL_DS);
606 /*
607 * the following is safe, since for compiler definitions of kvec and
608 * iovec are identical, yielding the same in-core layout and alignment
609 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700610 msg->msg_iov = (struct iovec *)vec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 msg->msg_iovlen = num;
612 result = sock_sendmsg(sock, msg, size);
613 set_fs(oldfs);
614 return result;
615}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700616EXPORT_SYMBOL(kernel_sendmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
Patrick Ohly20d49472009-02-12 05:03:38 +0000618static int ktime2ts(ktime_t kt, struct timespec *ts)
619{
620 if (kt.tv64) {
621 *ts = ktime_to_timespec(kt);
622 return 1;
623 } else {
624 return 0;
625 }
626}
627
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700628/*
629 * called from sock_recv_timestamp() if sock_flag(sk, SOCK_RCVTSTAMP)
630 */
631void __sock_recv_timestamp(struct msghdr *msg, struct sock *sk,
632 struct sk_buff *skb)
633{
Patrick Ohly20d49472009-02-12 05:03:38 +0000634 int need_software_tstamp = sock_flag(sk, SOCK_RCVTSTAMP);
635 struct timespec ts[3];
636 int empty = 1;
637 struct skb_shared_hwtstamps *shhwtstamps =
638 skb_hwtstamps(skb);
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700639
Patrick Ohly20d49472009-02-12 05:03:38 +0000640 /* Race occurred between timestamp enabling and packet
641 receiving. Fill in the current time for now. */
642 if (need_software_tstamp && skb->tstamp.tv64 == 0)
643 __net_timestamp(skb);
644
645 if (need_software_tstamp) {
646 if (!sock_flag(sk, SOCK_RCVTSTAMPNS)) {
647 struct timeval tv;
648 skb_get_timestamp(skb, &tv);
649 put_cmsg(msg, SOL_SOCKET, SCM_TIMESTAMP,
650 sizeof(tv), &tv);
651 } else {
Hagen Paul Pfeifer842509b2010-04-06 05:39:52 +0000652 skb_get_timestampns(skb, &ts[0]);
Patrick Ohly20d49472009-02-12 05:03:38 +0000653 put_cmsg(msg, SOL_SOCKET, SCM_TIMESTAMPNS,
Hagen Paul Pfeifer842509b2010-04-06 05:39:52 +0000654 sizeof(ts[0]), &ts[0]);
Patrick Ohly20d49472009-02-12 05:03:38 +0000655 }
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700656 }
Patrick Ohly20d49472009-02-12 05:03:38 +0000657
658
659 memset(ts, 0, sizeof(ts));
660 if (skb->tstamp.tv64 &&
661 sock_flag(sk, SOCK_TIMESTAMPING_SOFTWARE)) {
662 skb_get_timestampns(skb, ts + 0);
663 empty = 0;
664 }
665 if (shhwtstamps) {
666 if (sock_flag(sk, SOCK_TIMESTAMPING_SYS_HARDWARE) &&
667 ktime2ts(shhwtstamps->syststamp, ts + 1))
668 empty = 0;
669 if (sock_flag(sk, SOCK_TIMESTAMPING_RAW_HARDWARE) &&
670 ktime2ts(shhwtstamps->hwtstamp, ts + 2))
671 empty = 0;
672 }
673 if (!empty)
674 put_cmsg(msg, SOL_SOCKET,
675 SCM_TIMESTAMPING, sizeof(ts), &ts);
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700676}
Arnaldo Carvalho de Melo7c81fd82007-03-10 00:39:35 -0300677EXPORT_SYMBOL_GPL(__sock_recv_timestamp);
678
Johannes Berg6e3e9392011-11-09 10:15:42 +0100679void __sock_recv_wifi_status(struct msghdr *msg, struct sock *sk,
680 struct sk_buff *skb)
681{
682 int ack;
683
684 if (!sock_flag(sk, SOCK_WIFI_STATUS))
685 return;
686 if (!skb->wifi_acked_valid)
687 return;
688
689 ack = skb->wifi_acked;
690
691 put_cmsg(msg, SOL_SOCKET, SCM_WIFI_STATUS, sizeof(ack), &ack);
692}
693EXPORT_SYMBOL_GPL(__sock_recv_wifi_status);
694
stephen hemminger11165f12010-10-18 14:27:29 +0000695static inline void sock_recv_drops(struct msghdr *msg, struct sock *sk,
696 struct sk_buff *skb)
Neil Horman3b885782009-10-12 13:26:31 -0700697{
698 if (sock_flag(sk, SOCK_RXQ_OVFL) && skb && skb->dropcount)
699 put_cmsg(msg, SOL_SOCKET, SO_RXQ_OVFL,
700 sizeof(__u32), &skb->dropcount);
701}
702
Eric Dumazet767dd032010-04-28 19:14:43 +0000703void __sock_recv_ts_and_drops(struct msghdr *msg, struct sock *sk,
Neil Horman3b885782009-10-12 13:26:31 -0700704 struct sk_buff *skb)
705{
706 sock_recv_timestamp(msg, sk, skb);
707 sock_recv_drops(msg, sk, skb);
708}
Eric Dumazet767dd032010-04-28 19:14:43 +0000709EXPORT_SYMBOL_GPL(__sock_recv_ts_and_drops);
Neil Horman3b885782009-10-12 13:26:31 -0700710
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -0700711static inline int __sock_recvmsg_nosec(struct kiocb *iocb, struct socket *sock,
712 struct msghdr *msg, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 struct sock_iocb *si = kiocb_to_siocb(iocb);
715
Herbert Xuf8451722010-05-24 00:12:34 -0700716 sock_update_classid(sock->sk);
717
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 si->sock = sock;
719 si->scm = NULL;
720 si->msg = msg;
721 si->size = size;
722 si->flags = flags;
723
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 return sock->ops->recvmsg(iocb, sock, msg, size, flags);
725}
726
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -0700727static inline int __sock_recvmsg(struct kiocb *iocb, struct socket *sock,
728 struct msghdr *msg, size_t size, int flags)
729{
730 int err = security_socket_recvmsg(sock, msg, size, flags);
731
732 return err ?: __sock_recvmsg_nosec(iocb, sock, msg, size, flags);
733}
734
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700735int sock_recvmsg(struct socket *sock, struct msghdr *msg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 size_t size, int flags)
737{
738 struct kiocb iocb;
739 struct sock_iocb siocb;
740 int ret;
741
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700742 init_sync_kiocb(&iocb, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 iocb.private = &siocb;
744 ret = __sock_recvmsg(&iocb, sock, msg, size, flags);
745 if (-EIOCBQUEUED == ret)
746 ret = wait_on_sync_kiocb(&iocb);
747 return ret;
748}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700749EXPORT_SYMBOL(sock_recvmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -0700751static int sock_recvmsg_nosec(struct socket *sock, struct msghdr *msg,
752 size_t size, int flags)
753{
754 struct kiocb iocb;
755 struct sock_iocb siocb;
756 int ret;
757
758 init_sync_kiocb(&iocb, NULL);
759 iocb.private = &siocb;
760 ret = __sock_recvmsg_nosec(&iocb, sock, msg, size, flags);
761 if (-EIOCBQUEUED == ret)
762 ret = wait_on_sync_kiocb(&iocb);
763 return ret;
764}
765
Martin Lucinac1249c02010-12-10 00:04:05 +0000766/**
767 * kernel_recvmsg - Receive a message from a socket (kernel space)
768 * @sock: The socket to receive the message from
769 * @msg: Received message
770 * @vec: Input s/g array for message data
771 * @num: Size of input s/g array
772 * @size: Number of bytes to read
773 * @flags: Message flags (MSG_DONTWAIT, etc...)
774 *
775 * On return the msg structure contains the scatter/gather array passed in the
776 * vec argument. The array is modified so that it consists of the unfilled
777 * portion of the original array.
778 *
779 * The returned value is the total number of bytes received, or an error.
780 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700781int kernel_recvmsg(struct socket *sock, struct msghdr *msg,
782 struct kvec *vec, size_t num, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783{
784 mm_segment_t oldfs = get_fs();
785 int result;
786
787 set_fs(KERNEL_DS);
788 /*
789 * the following is safe, since for compiler definitions of kvec and
790 * iovec are identical, yielding the same in-core layout and alignment
791 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700792 msg->msg_iov = (struct iovec *)vec, msg->msg_iovlen = num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 result = sock_recvmsg(sock, msg, size, flags);
794 set_fs(oldfs);
795 return result;
796}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700797EXPORT_SYMBOL(kernel_recvmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
799static void sock_aio_dtor(struct kiocb *iocb)
800{
801 kfree(iocb->private);
802}
803
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -0300804static ssize_t sock_sendpage(struct file *file, struct page *page,
805 int offset, size_t size, loff_t *ppos, int more)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806{
807 struct socket *sock;
808 int flags;
809
Eric Dumazetb69aee02005-09-06 14:42:45 -0700810 sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
Eric Dumazet35f9c092012-04-05 03:05:35 +0000812 flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
813 /* more is a combination of MSG_MORE and MSG_SENDPAGE_NOTLAST */
814 flags |= more;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
Linus Torvaldse6949582009-08-13 08:28:36 -0700816 return kernel_sendpage(sock, page, offset, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817}
818
Jens Axboe9c55e012007-11-06 23:30:13 -0800819static ssize_t sock_splice_read(struct file *file, loff_t *ppos,
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700820 struct pipe_inode_info *pipe, size_t len,
Jens Axboe9c55e012007-11-06 23:30:13 -0800821 unsigned int flags)
822{
823 struct socket *sock = file->private_data;
824
Rémi Denis-Courmont997b37d2008-02-15 02:35:45 -0800825 if (unlikely(!sock->ops->splice_read))
826 return -EINVAL;
827
Herbert Xuf8451722010-05-24 00:12:34 -0700828 sock_update_classid(sock->sk);
829
Jens Axboe9c55e012007-11-06 23:30:13 -0800830 return sock->ops->splice_read(sock, ppos, pipe, len, flags);
831}
832
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800833static struct sock_iocb *alloc_sock_iocb(struct kiocb *iocb,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700834 struct sock_iocb *siocb)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800835{
836 if (!is_sync_kiocb(iocb)) {
837 siocb = kmalloc(sizeof(*siocb), GFP_KERNEL);
838 if (!siocb)
839 return NULL;
840 iocb->ki_dtor = sock_aio_dtor;
841 }
842
843 siocb->kiocb = iocb;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800844 iocb->private = siocb;
845 return siocb;
846}
847
848static ssize_t do_sock_read(struct msghdr *msg, struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -0700849 struct file *file, const struct iovec *iov,
850 unsigned long nr_segs)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800851{
852 struct socket *sock = file->private_data;
853 size_t size = 0;
854 int i;
855
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700856 for (i = 0; i < nr_segs; i++)
857 size += iov[i].iov_len;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800858
859 msg->msg_name = NULL;
860 msg->msg_namelen = 0;
861 msg->msg_control = NULL;
862 msg->msg_controllen = 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700863 msg->msg_iov = (struct iovec *)iov;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800864 msg->msg_iovlen = nr_segs;
865 msg->msg_flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
866
867 return __sock_recvmsg(iocb, sock, msg, size, msg->msg_flags);
868}
869
Badari Pulavarty027445c2006-09-30 23:28:46 -0700870static ssize_t sock_aio_read(struct kiocb *iocb, const struct iovec *iov,
871 unsigned long nr_segs, loff_t pos)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800872{
873 struct sock_iocb siocb, *x;
874
875 if (pos != 0)
876 return -ESPIPE;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700877
878 if (iocb->ki_left == 0) /* Match SYS5 behaviour */
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800879 return 0;
880
Badari Pulavarty027445c2006-09-30 23:28:46 -0700881
882 x = alloc_sock_iocb(iocb, &siocb);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800883 if (!x)
884 return -ENOMEM;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700885 return do_sock_read(&x->async_msg, iocb, iocb->ki_filp, iov, nr_segs);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800886}
887
888static ssize_t do_sock_write(struct msghdr *msg, struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -0700889 struct file *file, const struct iovec *iov,
890 unsigned long nr_segs)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800891{
892 struct socket *sock = file->private_data;
893 size_t size = 0;
894 int i;
895
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700896 for (i = 0; i < nr_segs; i++)
897 size += iov[i].iov_len;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800898
899 msg->msg_name = NULL;
900 msg->msg_namelen = 0;
901 msg->msg_control = NULL;
902 msg->msg_controllen = 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700903 msg->msg_iov = (struct iovec *)iov;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800904 msg->msg_iovlen = nr_segs;
905 msg->msg_flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
906 if (sock->type == SOCK_SEQPACKET)
907 msg->msg_flags |= MSG_EOR;
908
909 return __sock_sendmsg(iocb, sock, msg, size);
910}
911
Badari Pulavarty027445c2006-09-30 23:28:46 -0700912static ssize_t sock_aio_write(struct kiocb *iocb, const struct iovec *iov,
913 unsigned long nr_segs, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914{
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800915 struct sock_iocb siocb, *x;
916
917 if (pos != 0)
918 return -ESPIPE;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700919
Badari Pulavarty027445c2006-09-30 23:28:46 -0700920 x = alloc_sock_iocb(iocb, &siocb);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800921 if (!x)
922 return -ENOMEM;
923
Badari Pulavarty027445c2006-09-30 23:28:46 -0700924 return do_sock_write(&x->async_msg, iocb, iocb->ki_filp, iov, nr_segs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925}
926
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927/*
928 * Atomic setting of ioctl hooks to avoid race
929 * with module unload.
930 */
931
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800932static DEFINE_MUTEX(br_ioctl_mutex);
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700933static int (*br_ioctl_hook) (struct net *, unsigned int cmd, void __user *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
Eric W. Biederman881d9662007-09-17 11:56:21 -0700935void brioctl_set(int (*hook) (struct net *, unsigned int, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800937 mutex_lock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 br_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800939 mutex_unlock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940}
941EXPORT_SYMBOL(brioctl_set);
942
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800943static DEFINE_MUTEX(vlan_ioctl_mutex);
Eric W. Biederman881d9662007-09-17 11:56:21 -0700944static int (*vlan_ioctl_hook) (struct net *, void __user *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
Eric W. Biederman881d9662007-09-17 11:56:21 -0700946void vlan_ioctl_set(int (*hook) (struct net *, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800948 mutex_lock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 vlan_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800950 mutex_unlock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951}
952EXPORT_SYMBOL(vlan_ioctl_set);
953
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800954static DEFINE_MUTEX(dlci_ioctl_mutex);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700955static int (*dlci_ioctl_hook) (unsigned int, void __user *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700957void dlci_ioctl_set(int (*hook) (unsigned int, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800959 mutex_lock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 dlci_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800961 mutex_unlock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962}
963EXPORT_SYMBOL(dlci_ioctl_set);
964
Arnd Bergmann6b960182009-11-06 23:10:54 -0800965static long sock_do_ioctl(struct net *net, struct socket *sock,
966 unsigned int cmd, unsigned long arg)
967{
968 int err;
969 void __user *argp = (void __user *)arg;
970
971 err = sock->ops->ioctl(sock, cmd, arg);
972
973 /*
974 * If this ioctl is unknown try to hand it down
975 * to the NIC driver.
976 */
977 if (err == -ENOIOCTLCMD)
978 err = dev_ioctl(net, cmd, argp);
979
980 return err;
981}
982
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983/*
984 * With an ioctl, arg may well be a user mode pointer, but we don't know
985 * what to do with it - that's up to the protocol still.
986 */
987
988static long sock_ioctl(struct file *file, unsigned cmd, unsigned long arg)
989{
990 struct socket *sock;
Eric W. Biederman881d9662007-09-17 11:56:21 -0700991 struct sock *sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 void __user *argp = (void __user *)arg;
993 int pid, err;
Eric W. Biederman881d9662007-09-17 11:56:21 -0700994 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
Eric Dumazetb69aee02005-09-06 14:42:45 -0700996 sock = file->private_data;
Eric W. Biederman881d9662007-09-17 11:56:21 -0700997 sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900998 net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 if (cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15)) {
Eric W. Biederman881d9662007-09-17 11:56:21 -07001000 err = dev_ioctl(net, cmd, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 } else
Johannes Berg3d23e342009-09-29 23:27:28 +02001002#ifdef CONFIG_WEXT_CORE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 if (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST) {
Eric W. Biederman881d9662007-09-17 11:56:21 -07001004 err = dev_ioctl(net, cmd, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 } else
Johannes Berg3d23e342009-09-29 23:27:28 +02001006#endif
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001007 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 case FIOSETOWN:
1009 case SIOCSPGRP:
1010 err = -EFAULT;
1011 if (get_user(pid, (int __user *)argp))
1012 break;
1013 err = f_setown(sock->file, pid, 1);
1014 break;
1015 case FIOGETOWN:
1016 case SIOCGPGRP:
Eric W. Biederman609d7fa2006-10-02 02:17:15 -07001017 err = put_user(f_getown(sock->file),
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001018 (int __user *)argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 break;
1020 case SIOCGIFBR:
1021 case SIOCSIFBR:
1022 case SIOCBRADDBR:
1023 case SIOCBRDELBR:
1024 err = -ENOPKG;
1025 if (!br_ioctl_hook)
1026 request_module("bridge");
1027
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001028 mutex_lock(&br_ioctl_mutex);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001029 if (br_ioctl_hook)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001030 err = br_ioctl_hook(net, cmd, argp);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001031 mutex_unlock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 break;
1033 case SIOCGIFVLAN:
1034 case SIOCSIFVLAN:
1035 err = -ENOPKG;
1036 if (!vlan_ioctl_hook)
1037 request_module("8021q");
1038
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001039 mutex_lock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 if (vlan_ioctl_hook)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001041 err = vlan_ioctl_hook(net, argp);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001042 mutex_unlock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 case SIOCADDDLCI:
1045 case SIOCDELDLCI:
1046 err = -ENOPKG;
1047 if (!dlci_ioctl_hook)
1048 request_module("dlci");
1049
Pavel Emelyanov7512cbf2008-03-21 15:58:52 -07001050 mutex_lock(&dlci_ioctl_mutex);
1051 if (dlci_ioctl_hook)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 err = dlci_ioctl_hook(cmd, argp);
Pavel Emelyanov7512cbf2008-03-21 15:58:52 -07001053 mutex_unlock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 break;
1055 default:
Arnd Bergmann6b960182009-11-06 23:10:54 -08001056 err = sock_do_ioctl(net, sock, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001058 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 return err;
1060}
1061
1062int sock_create_lite(int family, int type, int protocol, struct socket **res)
1063{
1064 int err;
1065 struct socket *sock = NULL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001066
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 err = security_socket_create(family, type, protocol, 1);
1068 if (err)
1069 goto out;
1070
1071 sock = sock_alloc();
1072 if (!sock) {
1073 err = -ENOMEM;
1074 goto out;
1075 }
1076
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 sock->type = type;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001078 err = security_socket_post_create(sock, family, type, protocol, 1);
1079 if (err)
1080 goto out_release;
1081
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082out:
1083 *res = sock;
1084 return err;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001085out_release:
1086 sock_release(sock);
1087 sock = NULL;
1088 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001090EXPORT_SYMBOL(sock_create_lite);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091
1092/* No kernel lock held - perfect */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001093static unsigned int sock_poll(struct file *file, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094{
1095 struct socket *sock;
1096
1097 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001098 * We can't return errors to poll, so it's either yes or no.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 */
Eric Dumazetb69aee02005-09-06 14:42:45 -07001100 sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 return sock->ops->poll(file, sock, wait);
1102}
1103
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001104static int sock_mmap(struct file *file, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105{
Eric Dumazetb69aee02005-09-06 14:42:45 -07001106 struct socket *sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107
1108 return sock->ops->mmap(file, sock, vma);
1109}
1110
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001111static int sock_close(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112{
1113 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001114 * It was possible the inode is NULL we were
1115 * closing an unfinished socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 */
1117
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001118 if (!inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 printk(KERN_DEBUG "sock_close: NULL inode\n");
1120 return 0;
1121 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 sock_release(SOCKET_I(inode));
1123 return 0;
1124}
1125
1126/*
1127 * Update the socket async list
1128 *
1129 * Fasync_list locking strategy.
1130 *
1131 * 1. fasync_list is modified only under process context socket lock
1132 * i.e. under semaphore.
1133 * 2. fasync_list is used under read_lock(&sk->sk_callback_lock)
Eric Dumazet989a2972010-04-14 09:55:35 +00001134 * or under socket lock
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 */
1136
1137static int sock_fasync(int fd, struct file *filp, int on)
1138{
Eric Dumazet989a2972010-04-14 09:55:35 +00001139 struct socket *sock = filp->private_data;
1140 struct sock *sk = sock->sk;
Eric Dumazeteaefd112011-02-18 03:26:36 +00001141 struct socket_wq *wq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142
Eric Dumazet989a2972010-04-14 09:55:35 +00001143 if (sk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
1146 lock_sock(sk);
Eric Dumazeteaefd112011-02-18 03:26:36 +00001147 wq = rcu_dereference_protected(sock->wq, sock_owned_by_user(sk));
1148 fasync_helper(fd, filp, on, &wq->fasync_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149
Eric Dumazeteaefd112011-02-18 03:26:36 +00001150 if (!wq->fasync_list)
Eric Dumazet989a2972010-04-14 09:55:35 +00001151 sock_reset_flag(sk, SOCK_FASYNC);
Jonathan Corbet76398422009-02-01 14:26:59 -07001152 else
Eric Dumazetbcdce712009-10-06 17:28:29 -07001153 sock_set_flag(sk, SOCK_FASYNC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154
Eric Dumazet989a2972010-04-14 09:55:35 +00001155 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 return 0;
1157}
1158
Eric Dumazet43815482010-04-29 11:01:49 +00001159/* This function may be called only under socket lock or callback_lock or rcu_lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
1161int sock_wake_async(struct socket *sock, int how, int band)
1162{
Eric Dumazet43815482010-04-29 11:01:49 +00001163 struct socket_wq *wq;
1164
1165 if (!sock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 return -1;
Eric Dumazet43815482010-04-29 11:01:49 +00001167 rcu_read_lock();
1168 wq = rcu_dereference(sock->wq);
1169 if (!wq || !wq->fasync_list) {
1170 rcu_read_unlock();
1171 return -1;
1172 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001173 switch (how) {
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001174 case SOCK_WAKE_WAITD:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 if (test_bit(SOCK_ASYNC_WAITDATA, &sock->flags))
1176 break;
1177 goto call_kill;
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001178 case SOCK_WAKE_SPACE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 if (!test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sock->flags))
1180 break;
1181 /* fall through */
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001182 case SOCK_WAKE_IO:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001183call_kill:
Eric Dumazet43815482010-04-29 11:01:49 +00001184 kill_fasync(&wq->fasync_list, SIGIO, band);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 break;
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001186 case SOCK_WAKE_URG:
Eric Dumazet43815482010-04-29 11:01:49 +00001187 kill_fasync(&wq->fasync_list, SIGURG, band);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 }
Eric Dumazet43815482010-04-29 11:01:49 +00001189 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 return 0;
1191}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001192EXPORT_SYMBOL(sock_wake_async);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
Pavel Emelyanov721db932010-09-29 16:06:32 +04001194int __sock_create(struct net *net, int family, int type, int protocol,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001195 struct socket **res, int kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196{
1197 int err;
1198 struct socket *sock;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001199 const struct net_proto_family *pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
1201 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001202 * Check protocol is in range
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 */
1204 if (family < 0 || family >= NPROTO)
1205 return -EAFNOSUPPORT;
1206 if (type < 0 || type >= SOCK_MAX)
1207 return -EINVAL;
1208
1209 /* Compatibility.
1210
1211 This uglymoron is moved from INET layer to here to avoid
1212 deadlock in module load.
1213 */
1214 if (family == PF_INET && type == SOCK_PACKET) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001215 static int warned;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 if (!warned) {
1217 warned = 1;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001218 printk(KERN_INFO "%s uses obsolete (PF_INET,SOCK_PACKET)\n",
1219 current->comm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 }
1221 family = PF_PACKET;
1222 }
1223
1224 err = security_socket_create(family, type, protocol, kern);
1225 if (err)
1226 return err;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001227
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001228 /*
1229 * Allocate the socket and allow the family to set things up. if
1230 * the protocol is 0, the family is instructed to select an appropriate
1231 * default.
1232 */
1233 sock = sock_alloc();
1234 if (!sock) {
Joe Perchese87cc472012-05-13 21:56:26 +00001235 net_warn_ratelimited("socket: no more sockets\n");
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001236 return -ENFILE; /* Not exactly a match, but its the
1237 closest posix thing */
1238 }
1239
1240 sock->type = type;
1241
Johannes Berg95a5afc2008-10-16 15:24:51 -07001242#ifdef CONFIG_MODULES
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001243 /* Attempt to load a protocol module if the find failed.
1244 *
1245 * 12/09/1996 Marcin: But! this makes REALLY only sense, if the user
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 * requested real, full-featured networking support upon configuration.
1247 * Otherwise module support will break!
1248 */
Eric Dumazet190683a2010-11-10 10:50:44 +00001249 if (rcu_access_pointer(net_families[family]) == NULL)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001250 request_module("net-pf-%d", family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251#endif
1252
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001253 rcu_read_lock();
1254 pf = rcu_dereference(net_families[family]);
1255 err = -EAFNOSUPPORT;
1256 if (!pf)
1257 goto out_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
1259 /*
1260 * We will call the ->create function, that possibly is in a loadable
1261 * module, so we have to bump that loadable module refcnt first.
1262 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001263 if (!try_module_get(pf->owner))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 goto out_release;
1265
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001266 /* Now protected by module ref count */
1267 rcu_read_unlock();
1268
Eric Paris3f378b62009-11-05 22:18:14 -08001269 err = pf->create(net, sock, protocol, kern);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001270 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 goto out_module_put;
Frank Filza79af592005-09-27 15:23:38 -07001272
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 /*
1274 * Now to bump the refcnt of the [loadable] module that owns this
1275 * socket at sock_release time we decrement its refcnt.
1276 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001277 if (!try_module_get(sock->ops->owner))
1278 goto out_module_busy;
1279
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 /*
1281 * Now that we're done with the ->create function, the [loadable]
1282 * module can have its refcnt decremented
1283 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001284 module_put(pf->owner);
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001285 err = security_socket_post_create(sock, family, type, protocol, kern);
1286 if (err)
Herbert Xu3b185522007-08-15 14:46:02 -07001287 goto out_sock_release;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001288 *res = sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001290 return 0;
1291
1292out_module_busy:
1293 err = -EAFNOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294out_module_put:
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001295 sock->ops = NULL;
1296 module_put(pf->owner);
1297out_sock_release:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 sock_release(sock);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001299 return err;
1300
1301out_release:
1302 rcu_read_unlock();
1303 goto out_sock_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304}
Pavel Emelyanov721db932010-09-29 16:06:32 +04001305EXPORT_SYMBOL(__sock_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
1307int sock_create(int family, int type, int protocol, struct socket **res)
1308{
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001309 return __sock_create(current->nsproxy->net_ns, family, type, protocol, res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001311EXPORT_SYMBOL(sock_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
1313int sock_create_kern(int family, int type, int protocol, struct socket **res)
1314{
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001315 return __sock_create(&init_net, family, type, protocol, res, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001317EXPORT_SYMBOL(sock_create_kern);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001319SYSCALL_DEFINE3(socket, int, family, int, type, int, protocol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320{
1321 int retval;
1322 struct socket *sock;
Ulrich Dreppera677a032008-07-23 21:29:17 -07001323 int flags;
1324
Ulrich Dreppere38b36f2008-07-23 21:29:42 -07001325 /* Check the SOCK_* constants for consistency. */
1326 BUILD_BUG_ON(SOCK_CLOEXEC != O_CLOEXEC);
1327 BUILD_BUG_ON((SOCK_MAX | SOCK_TYPE_MASK) != SOCK_TYPE_MASK);
1328 BUILD_BUG_ON(SOCK_CLOEXEC & SOCK_TYPE_MASK);
1329 BUILD_BUG_ON(SOCK_NONBLOCK & SOCK_TYPE_MASK);
1330
Ulrich Dreppera677a032008-07-23 21:29:17 -07001331 flags = type & ~SOCK_TYPE_MASK;
Ulrich Drepper77d27202008-07-23 21:29:35 -07001332 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Dreppera677a032008-07-23 21:29:17 -07001333 return -EINVAL;
1334 type &= SOCK_TYPE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001336 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1337 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1338
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 retval = sock_create(family, type, protocol, &sock);
1340 if (retval < 0)
1341 goto out;
1342
Ulrich Drepper77d27202008-07-23 21:29:35 -07001343 retval = sock_map_fd(sock, flags & (O_CLOEXEC | O_NONBLOCK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 if (retval < 0)
1345 goto out_release;
1346
1347out:
1348 /* It may be already another descriptor 8) Not kernel problem. */
1349 return retval;
1350
1351out_release:
1352 sock_release(sock);
1353 return retval;
1354}
1355
1356/*
1357 * Create a pair of connected sockets.
1358 */
1359
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001360SYSCALL_DEFINE4(socketpair, int, family, int, type, int, protocol,
1361 int __user *, usockvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362{
1363 struct socket *sock1, *sock2;
1364 int fd1, fd2, err;
Al Virodb349502007-02-07 01:48:00 -05001365 struct file *newfile1, *newfile2;
Ulrich Dreppera677a032008-07-23 21:29:17 -07001366 int flags;
1367
1368 flags = type & ~SOCK_TYPE_MASK;
Ulrich Drepper77d27202008-07-23 21:29:35 -07001369 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Dreppera677a032008-07-23 21:29:17 -07001370 return -EINVAL;
1371 type &= SOCK_TYPE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001373 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1374 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1375
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 /*
1377 * Obtain the first socket and check if the underlying protocol
1378 * supports the socketpair call.
1379 */
1380
1381 err = sock_create(family, type, protocol, &sock1);
1382 if (err < 0)
1383 goto out;
1384
1385 err = sock_create(family, type, protocol, &sock2);
1386 if (err < 0)
1387 goto out_release_1;
1388
1389 err = sock1->ops->socketpair(sock1, sock2);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001390 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 goto out_release_both;
1392
Al Viro28407632012-08-17 23:54:15 -04001393 fd1 = get_unused_fd_flags(flags);
David S. Millerbf3c23d2007-10-29 21:54:02 -07001394 if (unlikely(fd1 < 0)) {
1395 err = fd1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 goto out_release_both;
David S. Millerbf3c23d2007-10-29 21:54:02 -07001397 }
Al Viro28407632012-08-17 23:54:15 -04001398 fd2 = get_unused_fd_flags(flags);
Al Viro198de4d2009-08-05 19:29:23 +04001399 if (unlikely(fd2 < 0)) {
1400 err = fd2;
Al Viro28407632012-08-17 23:54:15 -04001401 put_unused_fd(fd1);
1402 goto out_release_both;
1403 }
1404
1405 newfile1 = sock_alloc_file(sock1, flags);
1406 if (unlikely(IS_ERR(newfile1))) {
1407 err = PTR_ERR(newfile1);
1408 put_unused_fd(fd1);
1409 put_unused_fd(fd2);
1410 goto out_release_both;
1411 }
1412
1413 newfile2 = sock_alloc_file(sock2, flags);
1414 if (IS_ERR(newfile2)) {
1415 err = PTR_ERR(newfile2);
Al Viro198de4d2009-08-05 19:29:23 +04001416 fput(newfile1);
1417 put_unused_fd(fd1);
Al Viro28407632012-08-17 23:54:15 -04001418 put_unused_fd(fd2);
Al Viro198de4d2009-08-05 19:29:23 +04001419 sock_release(sock2);
1420 goto out;
Al Virodb349502007-02-07 01:48:00 -05001421 }
1422
Al Viro157cf642008-12-14 04:57:47 -05001423 audit_fd_pair(fd1, fd2);
Al Virodb349502007-02-07 01:48:00 -05001424 fd_install(fd1, newfile1);
1425 fd_install(fd2, newfile2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 /* fd1 and fd2 may be already another descriptors.
1427 * Not kernel problem.
1428 */
1429
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001430 err = put_user(fd1, &usockvec[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 if (!err)
1432 err = put_user(fd2, &usockvec[1]);
1433 if (!err)
1434 return 0;
1435
1436 sys_close(fd2);
1437 sys_close(fd1);
1438 return err;
1439
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440out_release_both:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001441 sock_release(sock2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442out_release_1:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001443 sock_release(sock1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444out:
1445 return err;
1446}
1447
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448/*
1449 * Bind a name to a socket. Nothing much to do here since it's
1450 * the protocol's responsibility to handle the local address.
1451 *
1452 * We move the socket address to kernel space before we call
1453 * the protocol layer (having also checked the address is ok).
1454 */
1455
Heiko Carstens20f37032009-01-14 14:14:23 +01001456SYSCALL_DEFINE3(bind, int, fd, struct sockaddr __user *, umyaddr, int, addrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457{
1458 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001459 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001460 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001462 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001463 if (sock) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001464 err = move_addr_to_kernel(umyaddr, addrlen, &address);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001465 if (err >= 0) {
1466 err = security_socket_bind(sock,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001467 (struct sockaddr *)&address,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001468 addrlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001469 if (!err)
1470 err = sock->ops->bind(sock,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001471 (struct sockaddr *)
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001472 &address, addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 }
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001474 fput_light(sock->file, fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001475 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 return err;
1477}
1478
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479/*
1480 * Perform a listen. Basically, we allow the protocol to do anything
1481 * necessary for a listen, and if that works, we mark the socket as
1482 * ready for listening.
1483 */
1484
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001485SYSCALL_DEFINE2(listen, int, fd, int, backlog)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486{
1487 struct socket *sock;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001488 int err, fput_needed;
Pavel Emelyanovb8e1f9b2007-12-08 00:12:33 -08001489 int somaxconn;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001490
1491 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1492 if (sock) {
Pavel Emelyanov8efa6e92008-03-31 19:41:14 -07001493 somaxconn = sock_net(sock->sk)->core.sysctl_somaxconn;
Eric Dumazet95c96172012-04-15 05:58:06 +00001494 if ((unsigned int)backlog > somaxconn)
Pavel Emelyanovb8e1f9b2007-12-08 00:12:33 -08001495 backlog = somaxconn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
1497 err = security_socket_listen(sock, backlog);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001498 if (!err)
1499 err = sock->ops->listen(sock, backlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001501 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 }
1503 return err;
1504}
1505
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506/*
1507 * For accept, we attempt to create a new socket, set up the link
1508 * with the client, wake up the client, then return the new
1509 * connected fd. We collect the address of the connector in kernel
1510 * space and move it to user at the very end. This is unclean because
1511 * we open the socket then return an error.
1512 *
1513 * 1003.1g adds the ability to recvmsg() to query connection pending
1514 * status to recvmsg. We need to add that support in a way thats
1515 * clean when we restucture accept also.
1516 */
1517
Heiko Carstens20f37032009-01-14 14:14:23 +01001518SYSCALL_DEFINE4(accept4, int, fd, struct sockaddr __user *, upeer_sockaddr,
1519 int __user *, upeer_addrlen, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520{
1521 struct socket *sock, *newsock;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001522 struct file *newfile;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001523 int err, len, newfd, fput_needed;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001524 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525
Ulrich Drepper77d27202008-07-23 21:29:35 -07001526 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001527 return -EINVAL;
1528
1529 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1530 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1531
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001532 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 if (!sock)
1534 goto out;
1535
1536 err = -ENFILE;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001537 newsock = sock_alloc();
1538 if (!newsock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 goto out_put;
1540
1541 newsock->type = sock->type;
1542 newsock->ops = sock->ops;
1543
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 /*
1545 * We don't need try_module_get here, as the listening socket (sock)
1546 * has the protocol module (sock->ops->owner) held.
1547 */
1548 __module_get(newsock->ops->owner);
1549
Al Viro28407632012-08-17 23:54:15 -04001550 newfd = get_unused_fd_flags(flags);
David S. Miller39d8c1b2006-03-20 17:13:49 -08001551 if (unlikely(newfd < 0)) {
1552 err = newfd;
David S. Miller9a1875e2006-04-01 12:48:36 -08001553 sock_release(newsock);
1554 goto out_put;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001555 }
Al Viro28407632012-08-17 23:54:15 -04001556 newfile = sock_alloc_file(newsock, flags);
1557 if (unlikely(IS_ERR(newfile))) {
1558 err = PTR_ERR(newfile);
1559 put_unused_fd(newfd);
1560 sock_release(newsock);
1561 goto out_put;
1562 }
David S. Miller39d8c1b2006-03-20 17:13:49 -08001563
Frank Filza79af592005-09-27 15:23:38 -07001564 err = security_socket_accept(sock, newsock);
1565 if (err)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001566 goto out_fd;
Frank Filza79af592005-09-27 15:23:38 -07001567
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 err = sock->ops->accept(sock, newsock, sock->file->f_flags);
1569 if (err < 0)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001570 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
1572 if (upeer_sockaddr) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001573 if (newsock->ops->getname(newsock, (struct sockaddr *)&address,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001574 &len, 2) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 err = -ECONNABORTED;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001576 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 }
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001578 err = move_addr_to_user(&address,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001579 len, upeer_sockaddr, upeer_addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 if (err < 0)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001581 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 }
1583
1584 /* File flags are not inherited via accept() unlike another OSes. */
1585
David S. Miller39d8c1b2006-03-20 17:13:49 -08001586 fd_install(newfd, newfile);
1587 err = newfd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001590 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591out:
1592 return err;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001593out_fd:
David S. Miller9606a212006-04-01 01:00:14 -08001594 fput(newfile);
David S. Miller39d8c1b2006-03-20 17:13:49 -08001595 put_unused_fd(newfd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 goto out_put;
1597}
1598
Heiko Carstens20f37032009-01-14 14:14:23 +01001599SYSCALL_DEFINE3(accept, int, fd, struct sockaddr __user *, upeer_sockaddr,
1600 int __user *, upeer_addrlen)
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001601{
Ulrich Drepperde11def2008-11-19 15:36:14 -08001602 return sys_accept4(fd, upeer_sockaddr, upeer_addrlen, 0);
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001603}
1604
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605/*
1606 * Attempt to connect to a socket with the server address. The address
1607 * is in user space so we verify it is OK and move it to kernel space.
1608 *
1609 * For 1003.1g we need to add clean support for a bind to AF_UNSPEC to
1610 * break bindings
1611 *
1612 * NOTE: 1003.1g draft 6.3 is broken with respect to AX.25/NetROM and
1613 * other SEQPACKET protocols that take time to connect() as it doesn't
1614 * include the -EINPROGRESS status for such sockets.
1615 */
1616
Heiko Carstens20f37032009-01-14 14:14:23 +01001617SYSCALL_DEFINE3(connect, int, fd, struct sockaddr __user *, uservaddr,
1618 int, addrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619{
1620 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001621 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001622 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001624 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 if (!sock)
1626 goto out;
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001627 err = move_addr_to_kernel(uservaddr, addrlen, &address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 if (err < 0)
1629 goto out_put;
1630
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001631 err =
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001632 security_socket_connect(sock, (struct sockaddr *)&address, addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 if (err)
1634 goto out_put;
1635
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001636 err = sock->ops->connect(sock, (struct sockaddr *)&address, addrlen,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 sock->file->f_flags);
1638out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001639 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640out:
1641 return err;
1642}
1643
1644/*
1645 * Get the local address ('name') of a socket object. Move the obtained
1646 * name to user space.
1647 */
1648
Heiko Carstens20f37032009-01-14 14:14:23 +01001649SYSCALL_DEFINE3(getsockname, int, fd, struct sockaddr __user *, usockaddr,
1650 int __user *, usockaddr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651{
1652 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001653 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001654 int len, err, fput_needed;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001655
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001656 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 if (!sock)
1658 goto out;
1659
1660 err = security_socket_getsockname(sock);
1661 if (err)
1662 goto out_put;
1663
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001664 err = sock->ops->getname(sock, (struct sockaddr *)&address, &len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 if (err)
1666 goto out_put;
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001667 err = move_addr_to_user(&address, len, usockaddr, usockaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668
1669out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001670 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671out:
1672 return err;
1673}
1674
1675/*
1676 * Get the remote address ('name') of a socket object. Move the obtained
1677 * name to user space.
1678 */
1679
Heiko Carstens20f37032009-01-14 14:14:23 +01001680SYSCALL_DEFINE3(getpeername, int, fd, struct sockaddr __user *, usockaddr,
1681 int __user *, usockaddr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682{
1683 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001684 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001685 int len, err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001687 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1688 if (sock != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 err = security_socket_getpeername(sock);
1690 if (err) {
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001691 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 return err;
1693 }
1694
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001695 err =
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001696 sock->ops->getname(sock, (struct sockaddr *)&address, &len,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001697 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 if (!err)
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001699 err = move_addr_to_user(&address, len, usockaddr,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001700 usockaddr_len);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001701 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 }
1703 return err;
1704}
1705
1706/*
1707 * Send a datagram to a given address. We move the address into kernel
1708 * space and check the user space data area is readable before invoking
1709 * the protocol.
1710 */
1711
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001712SYSCALL_DEFINE6(sendto, int, fd, void __user *, buff, size_t, len,
Eric Dumazet95c96172012-04-15 05:58:06 +00001713 unsigned int, flags, struct sockaddr __user *, addr,
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001714 int, addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715{
1716 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001717 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 int err;
1719 struct msghdr msg;
1720 struct iovec iov;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001721 int fput_needed;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001722
Linus Torvalds253eacc2010-10-30 16:43:10 -07001723 if (len > INT_MAX)
1724 len = INT_MAX;
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001725 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1726 if (!sock)
David S. Miller4387ff72007-02-08 15:06:08 -08001727 goto out;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001728
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001729 iov.iov_base = buff;
1730 iov.iov_len = len;
1731 msg.msg_name = NULL;
1732 msg.msg_iov = &iov;
1733 msg.msg_iovlen = 1;
1734 msg.msg_control = NULL;
1735 msg.msg_controllen = 0;
1736 msg.msg_namelen = 0;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001737 if (addr) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001738 err = move_addr_to_kernel(addr, addr_len, &address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 if (err < 0)
1740 goto out_put;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001741 msg.msg_name = (struct sockaddr *)&address;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001742 msg.msg_namelen = addr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 }
1744 if (sock->file->f_flags & O_NONBLOCK)
1745 flags |= MSG_DONTWAIT;
1746 msg.msg_flags = flags;
1747 err = sock_sendmsg(sock, &msg, len);
1748
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001749out_put:
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001750 fput_light(sock->file, fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08001751out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 return err;
1753}
1754
1755/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001756 * Send a datagram down a socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 */
1758
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001759SYSCALL_DEFINE4(send, int, fd, void __user *, buff, size_t, len,
Eric Dumazet95c96172012-04-15 05:58:06 +00001760 unsigned int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761{
1762 return sys_sendto(fd, buff, len, flags, NULL, 0);
1763}
1764
1765/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001766 * Receive a frame from the socket and optionally record the address of the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 * sender. We verify the buffers are writable and if needed move the
1768 * sender address from kernel to user space.
1769 */
1770
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001771SYSCALL_DEFINE6(recvfrom, int, fd, void __user *, ubuf, size_t, size,
Eric Dumazet95c96172012-04-15 05:58:06 +00001772 unsigned int, flags, struct sockaddr __user *, addr,
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001773 int __user *, addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774{
1775 struct socket *sock;
1776 struct iovec iov;
1777 struct msghdr msg;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001778 struct sockaddr_storage address;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001779 int err, err2;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001780 int fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781
Linus Torvalds253eacc2010-10-30 16:43:10 -07001782 if (size > INT_MAX)
1783 size = INT_MAX;
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001784 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 if (!sock)
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001786 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001788 msg.msg_control = NULL;
1789 msg.msg_controllen = 0;
1790 msg.msg_iovlen = 1;
1791 msg.msg_iov = &iov;
1792 iov.iov_len = size;
1793 iov.iov_base = ubuf;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001794 msg.msg_name = (struct sockaddr *)&address;
1795 msg.msg_namelen = sizeof(address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 if (sock->file->f_flags & O_NONBLOCK)
1797 flags |= MSG_DONTWAIT;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001798 err = sock_recvmsg(sock, &msg, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001800 if (err >= 0 && addr != NULL) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001801 err2 = move_addr_to_user(&address,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001802 msg.msg_namelen, addr, addr_len);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001803 if (err2 < 0)
1804 err = err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 }
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001806
1807 fput_light(sock->file, fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08001808out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 return err;
1810}
1811
1812/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001813 * Receive a datagram from a socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 */
1815
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001816asmlinkage long sys_recv(int fd, void __user *ubuf, size_t size,
Eric Dumazet95c96172012-04-15 05:58:06 +00001817 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818{
1819 return sys_recvfrom(fd, ubuf, size, flags, NULL, NULL);
1820}
1821
1822/*
1823 * Set a socket option. Because we don't know the option lengths we have
1824 * to pass the user mode parameter for the protocols to sort out.
1825 */
1826
Heiko Carstens20f37032009-01-14 14:14:23 +01001827SYSCALL_DEFINE5(setsockopt, int, fd, int, level, int, optname,
1828 char __user *, optval, int, optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001830 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 struct socket *sock;
1832
1833 if (optlen < 0)
1834 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001835
1836 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1837 if (sock != NULL) {
1838 err = security_socket_setsockopt(sock, level, optname);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001839 if (err)
1840 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841
1842 if (level == SOL_SOCKET)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001843 err =
1844 sock_setsockopt(sock, level, optname, optval,
1845 optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 else
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001847 err =
1848 sock->ops->setsockopt(sock, level, optname, optval,
1849 optlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001850out_put:
1851 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 }
1853 return err;
1854}
1855
1856/*
1857 * Get a socket option. Because we don't know the option lengths we have
1858 * to pass a user mode parameter for the protocols to sort out.
1859 */
1860
Heiko Carstens20f37032009-01-14 14:14:23 +01001861SYSCALL_DEFINE5(getsockopt, int, fd, int, level, int, optname,
1862 char __user *, optval, int __user *, optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001864 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 struct socket *sock;
1866
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001867 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1868 if (sock != NULL) {
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001869 err = security_socket_getsockopt(sock, level, optname);
1870 if (err)
1871 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872
1873 if (level == SOL_SOCKET)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001874 err =
1875 sock_getsockopt(sock, level, optname, optval,
1876 optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 else
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001878 err =
1879 sock->ops->getsockopt(sock, level, optname, optval,
1880 optlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001881out_put:
1882 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 }
1884 return err;
1885}
1886
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887/*
1888 * Shutdown a socket.
1889 */
1890
Heiko Carstens754fe8d2009-01-14 14:14:09 +01001891SYSCALL_DEFINE2(shutdown, int, fd, int, how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001893 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 struct socket *sock;
1895
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001896 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1897 if (sock != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 err = security_socket_shutdown(sock, how);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001899 if (!err)
1900 err = sock->ops->shutdown(sock, how);
1901 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 }
1903 return err;
1904}
1905
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001906/* A couple of helpful macros for getting the address of the 32/64 bit
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 * fields which are the same type (int / unsigned) on our platforms.
1908 */
1909#define COMPAT_MSG(msg, member) ((MSG_CMSG_COMPAT & flags) ? &msg##_compat->member : &msg->member)
1910#define COMPAT_NAMELEN(msg) COMPAT_MSG(msg, msg_namelen)
1911#define COMPAT_FLAGS(msg) COMPAT_MSG(msg, msg_flags)
1912
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00001913struct used_address {
1914 struct sockaddr_storage name;
1915 unsigned int name_len;
1916};
1917
Anton Blanchard228e5482011-05-02 20:21:35 +00001918static int __sys_sendmsg(struct socket *sock, struct msghdr __user *msg,
Eric Dumazet95c96172012-04-15 05:58:06 +00001919 struct msghdr *msg_sys, unsigned int flags,
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00001920 struct used_address *used_address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001922 struct compat_msghdr __user *msg_compat =
1923 (struct compat_msghdr __user *)msg;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001924 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 struct iovec iovstack[UIO_FASTIOV], *iov = iovstack;
Alex Williamsonb9d717a2005-09-26 14:28:02 -07001926 unsigned char ctl[sizeof(struct cmsghdr) + 20]
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001927 __attribute__ ((aligned(sizeof(__kernel_size_t))));
1928 /* 20 is size of ipv6_pktinfo */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 unsigned char *ctl_buf = ctl;
Eric Dumazeta74e9102012-04-20 20:04:01 +02001930 int err, ctl_len, total_len;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001931
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 err = -EFAULT;
1933 if (MSG_CMSG_COMPAT & flags) {
Anton Blanchard228e5482011-05-02 20:21:35 +00001934 if (get_compat_msghdr(msg_sys, msg_compat))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 return -EFAULT;
Anton Blanchard228e5482011-05-02 20:21:35 +00001936 } else if (copy_from_user(msg_sys, msg, sizeof(struct msghdr)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 return -EFAULT;
1938
Anton Blanchard228e5482011-05-02 20:21:35 +00001939 if (msg_sys->msg_iovlen > UIO_FASTIOV) {
Eric Dumazeta74e9102012-04-20 20:04:01 +02001940 err = -EMSGSIZE;
1941 if (msg_sys->msg_iovlen > UIO_MAXIOV)
1942 goto out;
1943 err = -ENOMEM;
1944 iov = kmalloc(msg_sys->msg_iovlen * sizeof(struct iovec),
1945 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 if (!iov)
Anton Blanchard228e5482011-05-02 20:21:35 +00001947 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 }
1949
1950 /* This will also move the address data into kernel space */
1951 if (MSG_CMSG_COMPAT & flags) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001952 err = verify_compat_iovec(msg_sys, iov, &address, VERIFY_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 } else
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001954 err = verify_iovec(msg_sys, iov, &address, VERIFY_READ);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001955 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 goto out_freeiov;
1957 total_len = err;
1958
1959 err = -ENOBUFS;
1960
Anton Blanchard228e5482011-05-02 20:21:35 +00001961 if (msg_sys->msg_controllen > INT_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 goto out_freeiov;
Anton Blanchard228e5482011-05-02 20:21:35 +00001963 ctl_len = msg_sys->msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 if ((MSG_CMSG_COMPAT & flags) && ctl_len) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001965 err =
Anton Blanchard228e5482011-05-02 20:21:35 +00001966 cmsghdr_from_user_compat_to_kern(msg_sys, sock->sk, ctl,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001967 sizeof(ctl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 if (err)
1969 goto out_freeiov;
Anton Blanchard228e5482011-05-02 20:21:35 +00001970 ctl_buf = msg_sys->msg_control;
1971 ctl_len = msg_sys->msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 } else if (ctl_len) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001973 if (ctl_len > sizeof(ctl)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 ctl_buf = sock_kmalloc(sock->sk, ctl_len, GFP_KERNEL);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001975 if (ctl_buf == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 goto out_freeiov;
1977 }
1978 err = -EFAULT;
1979 /*
Anton Blanchard228e5482011-05-02 20:21:35 +00001980 * Careful! Before this, msg_sys->msg_control contains a user pointer.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 * Afterwards, it will be a kernel pointer. Thus the compiler-assisted
1982 * checking falls down on this.
1983 */
Namhyung Kimfb8621b2010-09-07 03:55:00 +00001984 if (copy_from_user(ctl_buf,
Anton Blanchard228e5482011-05-02 20:21:35 +00001985 (void __user __force *)msg_sys->msg_control,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001986 ctl_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 goto out_freectl;
Anton Blanchard228e5482011-05-02 20:21:35 +00001988 msg_sys->msg_control = ctl_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 }
Anton Blanchard228e5482011-05-02 20:21:35 +00001990 msg_sys->msg_flags = flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991
1992 if (sock->file->f_flags & O_NONBLOCK)
Anton Blanchard228e5482011-05-02 20:21:35 +00001993 msg_sys->msg_flags |= MSG_DONTWAIT;
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00001994 /*
1995 * If this is sendmmsg() and current destination address is same as
1996 * previously succeeded address, omit asking LSM's decision.
1997 * used_address->name_len is initialized to UINT_MAX so that the first
1998 * destination address never matches.
1999 */
Mathieu Desnoyersbc909d92011-08-24 19:45:03 -07002000 if (used_address && msg_sys->msg_name &&
2001 used_address->name_len == msg_sys->msg_namelen &&
2002 !memcmp(&used_address->name, msg_sys->msg_name,
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002003 used_address->name_len)) {
2004 err = sock_sendmsg_nosec(sock, msg_sys, total_len);
2005 goto out_freectl;
2006 }
2007 err = sock_sendmsg(sock, msg_sys, total_len);
2008 /*
2009 * If this is sendmmsg() and sending to current destination address was
2010 * successful, remember it.
2011 */
2012 if (used_address && err >= 0) {
2013 used_address->name_len = msg_sys->msg_namelen;
Mathieu Desnoyersbc909d92011-08-24 19:45:03 -07002014 if (msg_sys->msg_name)
2015 memcpy(&used_address->name, msg_sys->msg_name,
2016 used_address->name_len);
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002017 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018
2019out_freectl:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002020 if (ctl_buf != ctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 sock_kfree_s(sock->sk, ctl_buf, ctl_len);
2022out_freeiov:
2023 if (iov != iovstack)
Eric Dumazeta74e9102012-04-20 20:04:01 +02002024 kfree(iov);
Anton Blanchard228e5482011-05-02 20:21:35 +00002025out:
2026 return err;
2027}
2028
2029/*
2030 * BSD sendmsg interface
2031 */
2032
Eric Dumazet95c96172012-04-15 05:58:06 +00002033SYSCALL_DEFINE3(sendmsg, int, fd, struct msghdr __user *, msg, unsigned int, flags)
Anton Blanchard228e5482011-05-02 20:21:35 +00002034{
2035 int fput_needed, err;
2036 struct msghdr msg_sys;
2037 struct socket *sock = sockfd_lookup_light(fd, &err, &fput_needed);
2038
2039 if (!sock)
2040 goto out;
2041
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002042 err = __sys_sendmsg(sock, msg, &msg_sys, flags, NULL);
Anton Blanchard228e5482011-05-02 20:21:35 +00002043
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002044 fput_light(sock->file, fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002045out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 return err;
2047}
2048
Anton Blanchard228e5482011-05-02 20:21:35 +00002049/*
2050 * Linux sendmmsg interface
2051 */
2052
2053int __sys_sendmmsg(int fd, struct mmsghdr __user *mmsg, unsigned int vlen,
2054 unsigned int flags)
2055{
2056 int fput_needed, err, datagrams;
2057 struct socket *sock;
2058 struct mmsghdr __user *entry;
2059 struct compat_mmsghdr __user *compat_entry;
2060 struct msghdr msg_sys;
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002061 struct used_address used_address;
Anton Blanchard228e5482011-05-02 20:21:35 +00002062
Anton Blanchard98382f42011-08-04 14:07:39 +00002063 if (vlen > UIO_MAXIOV)
2064 vlen = UIO_MAXIOV;
Anton Blanchard228e5482011-05-02 20:21:35 +00002065
2066 datagrams = 0;
2067
2068 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2069 if (!sock)
2070 return err;
2071
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002072 used_address.name_len = UINT_MAX;
Anton Blanchard228e5482011-05-02 20:21:35 +00002073 entry = mmsg;
2074 compat_entry = (struct compat_mmsghdr __user *)mmsg;
Anton Blanchard728ffb82011-08-04 14:07:38 +00002075 err = 0;
Anton Blanchard228e5482011-05-02 20:21:35 +00002076
2077 while (datagrams < vlen) {
Anton Blanchard228e5482011-05-02 20:21:35 +00002078 if (MSG_CMSG_COMPAT & flags) {
2079 err = __sys_sendmsg(sock, (struct msghdr __user *)compat_entry,
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002080 &msg_sys, flags, &used_address);
Anton Blanchard228e5482011-05-02 20:21:35 +00002081 if (err < 0)
2082 break;
2083 err = __put_user(err, &compat_entry->msg_len);
2084 ++compat_entry;
2085 } else {
2086 err = __sys_sendmsg(sock, (struct msghdr __user *)entry,
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002087 &msg_sys, flags, &used_address);
Anton Blanchard228e5482011-05-02 20:21:35 +00002088 if (err < 0)
2089 break;
2090 err = put_user(err, &entry->msg_len);
2091 ++entry;
2092 }
2093
2094 if (err)
2095 break;
2096 ++datagrams;
2097 }
2098
Anton Blanchard228e5482011-05-02 20:21:35 +00002099 fput_light(sock->file, fput_needed);
2100
Anton Blanchard728ffb82011-08-04 14:07:38 +00002101 /* We only return an error if no datagrams were able to be sent */
2102 if (datagrams != 0)
Anton Blanchard228e5482011-05-02 20:21:35 +00002103 return datagrams;
2104
Anton Blanchard228e5482011-05-02 20:21:35 +00002105 return err;
2106}
2107
2108SYSCALL_DEFINE4(sendmmsg, int, fd, struct mmsghdr __user *, mmsg,
2109 unsigned int, vlen, unsigned int, flags)
2110{
2111 return __sys_sendmmsg(fd, mmsg, vlen, flags);
2112}
2113
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002114static int __sys_recvmsg(struct socket *sock, struct msghdr __user *msg,
Eric Dumazet95c96172012-04-15 05:58:06 +00002115 struct msghdr *msg_sys, unsigned int flags, int nosec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002117 struct compat_msghdr __user *msg_compat =
2118 (struct compat_msghdr __user *)msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 struct iovec iovstack[UIO_FASTIOV];
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002120 struct iovec *iov = iovstack;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 unsigned long cmsg_ptr;
Eric Dumazeta74e9102012-04-20 20:04:01 +02002122 int err, total_len, len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123
2124 /* kernel mode address */
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07002125 struct sockaddr_storage addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126
2127 /* user mode address pointers */
2128 struct sockaddr __user *uaddr;
2129 int __user *uaddr_len;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002130
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 if (MSG_CMSG_COMPAT & flags) {
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002132 if (get_compat_msghdr(msg_sys, msg_compat))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 return -EFAULT;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002134 } else if (copy_from_user(msg_sys, msg, sizeof(struct msghdr)))
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002135 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002137 if (msg_sys->msg_iovlen > UIO_FASTIOV) {
Eric Dumazeta74e9102012-04-20 20:04:01 +02002138 err = -EMSGSIZE;
2139 if (msg_sys->msg_iovlen > UIO_MAXIOV)
2140 goto out;
2141 err = -ENOMEM;
2142 iov = kmalloc(msg_sys->msg_iovlen * sizeof(struct iovec),
2143 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 if (!iov)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002145 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 }
2147
2148 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002149 * Save the user-mode address (verify_iovec will change the
2150 * kernel msghdr to use the kernel address space)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002152
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002153 uaddr = (__force void __user *)msg_sys->msg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 uaddr_len = COMPAT_NAMELEN(msg);
2155 if (MSG_CMSG_COMPAT & flags) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00002156 err = verify_compat_iovec(msg_sys, iov, &addr, VERIFY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 } else
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00002158 err = verify_iovec(msg_sys, iov, &addr, VERIFY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 if (err < 0)
2160 goto out_freeiov;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002161 total_len = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002163 cmsg_ptr = (unsigned long)msg_sys->msg_control;
2164 msg_sys->msg_flags = flags & (MSG_CMSG_CLOEXEC|MSG_CMSG_COMPAT);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002165
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 if (sock->file->f_flags & O_NONBLOCK)
2167 flags |= MSG_DONTWAIT;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002168 err = (nosec ? sock_recvmsg_nosec : sock_recvmsg)(sock, msg_sys,
2169 total_len, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 if (err < 0)
2171 goto out_freeiov;
2172 len = err;
2173
2174 if (uaddr != NULL) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00002175 err = move_addr_to_user(&addr,
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002176 msg_sys->msg_namelen, uaddr,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002177 uaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 if (err < 0)
2179 goto out_freeiov;
2180 }
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002181 err = __put_user((msg_sys->msg_flags & ~MSG_CMSG_COMPAT),
David S. Miller37f7f422005-09-16 16:51:01 -07002182 COMPAT_FLAGS(msg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 if (err)
2184 goto out_freeiov;
2185 if (MSG_CMSG_COMPAT & flags)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002186 err = __put_user((unsigned long)msg_sys->msg_control - cmsg_ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 &msg_compat->msg_controllen);
2188 else
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002189 err = __put_user((unsigned long)msg_sys->msg_control - cmsg_ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 &msg->msg_controllen);
2191 if (err)
2192 goto out_freeiov;
2193 err = len;
2194
2195out_freeiov:
2196 if (iov != iovstack)
Eric Dumazeta74e9102012-04-20 20:04:01 +02002197 kfree(iov);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002198out:
2199 return err;
2200}
2201
2202/*
2203 * BSD recvmsg interface
2204 */
2205
2206SYSCALL_DEFINE3(recvmsg, int, fd, struct msghdr __user *, msg,
2207 unsigned int, flags)
2208{
2209 int fput_needed, err;
2210 struct msghdr msg_sys;
2211 struct socket *sock = sockfd_lookup_light(fd, &err, &fput_needed);
2212
2213 if (!sock)
2214 goto out;
2215
2216 err = __sys_recvmsg(sock, msg, &msg_sys, flags, 0);
2217
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002218 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219out:
2220 return err;
2221}
2222
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002223/*
2224 * Linux recvmmsg interface
2225 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002227int __sys_recvmmsg(int fd, struct mmsghdr __user *mmsg, unsigned int vlen,
2228 unsigned int flags, struct timespec *timeout)
2229{
2230 int fput_needed, err, datagrams;
2231 struct socket *sock;
2232 struct mmsghdr __user *entry;
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002233 struct compat_mmsghdr __user *compat_entry;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002234 struct msghdr msg_sys;
2235 struct timespec end_time;
2236
2237 if (timeout &&
2238 poll_select_set_timeout(&end_time, timeout->tv_sec,
2239 timeout->tv_nsec))
2240 return -EINVAL;
2241
2242 datagrams = 0;
2243
2244 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2245 if (!sock)
2246 return err;
2247
2248 err = sock_error(sock->sk);
2249 if (err)
2250 goto out_put;
2251
2252 entry = mmsg;
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002253 compat_entry = (struct compat_mmsghdr __user *)mmsg;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002254
2255 while (datagrams < vlen) {
2256 /*
2257 * No need to ask LSM for more than the first datagram.
2258 */
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002259 if (MSG_CMSG_COMPAT & flags) {
2260 err = __sys_recvmsg(sock, (struct msghdr __user *)compat_entry,
Anton Blanchardb9eb8b82011-05-17 15:38:57 -04002261 &msg_sys, flags & ~MSG_WAITFORONE,
2262 datagrams);
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002263 if (err < 0)
2264 break;
2265 err = __put_user(err, &compat_entry->msg_len);
2266 ++compat_entry;
2267 } else {
2268 err = __sys_recvmsg(sock, (struct msghdr __user *)entry,
Anton Blanchardb9eb8b82011-05-17 15:38:57 -04002269 &msg_sys, flags & ~MSG_WAITFORONE,
2270 datagrams);
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002271 if (err < 0)
2272 break;
2273 err = put_user(err, &entry->msg_len);
2274 ++entry;
2275 }
2276
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002277 if (err)
2278 break;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002279 ++datagrams;
2280
Brandon L Black71c5c152010-03-26 16:18:03 +00002281 /* MSG_WAITFORONE turns on MSG_DONTWAIT after one packet */
2282 if (flags & MSG_WAITFORONE)
2283 flags |= MSG_DONTWAIT;
2284
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002285 if (timeout) {
2286 ktime_get_ts(timeout);
2287 *timeout = timespec_sub(end_time, *timeout);
2288 if (timeout->tv_sec < 0) {
2289 timeout->tv_sec = timeout->tv_nsec = 0;
2290 break;
2291 }
2292
2293 /* Timeout, return less than vlen datagrams */
2294 if (timeout->tv_nsec == 0 && timeout->tv_sec == 0)
2295 break;
2296 }
2297
2298 /* Out of band data, return right away */
2299 if (msg_sys.msg_flags & MSG_OOB)
2300 break;
2301 }
2302
2303out_put:
2304 fput_light(sock->file, fput_needed);
2305
2306 if (err == 0)
2307 return datagrams;
2308
2309 if (datagrams != 0) {
2310 /*
2311 * We may return less entries than requested (vlen) if the
2312 * sock is non block and there aren't enough datagrams...
2313 */
2314 if (err != -EAGAIN) {
2315 /*
2316 * ... or if recvmsg returns an error after we
2317 * received some datagrams, where we record the
2318 * error to return on the next call or if the
2319 * app asks about it using getsockopt(SO_ERROR).
2320 */
2321 sock->sk->sk_err = -err;
2322 }
2323
2324 return datagrams;
2325 }
2326
2327 return err;
2328}
2329
2330SYSCALL_DEFINE5(recvmmsg, int, fd, struct mmsghdr __user *, mmsg,
2331 unsigned int, vlen, unsigned int, flags,
2332 struct timespec __user *, timeout)
2333{
2334 int datagrams;
2335 struct timespec timeout_sys;
2336
2337 if (!timeout)
2338 return __sys_recvmmsg(fd, mmsg, vlen, flags, NULL);
2339
2340 if (copy_from_user(&timeout_sys, timeout, sizeof(timeout_sys)))
2341 return -EFAULT;
2342
2343 datagrams = __sys_recvmmsg(fd, mmsg, vlen, flags, &timeout_sys);
2344
2345 if (datagrams > 0 &&
2346 copy_to_user(timeout, &timeout_sys, sizeof(timeout_sys)))
2347 datagrams = -EFAULT;
2348
2349 return datagrams;
2350}
2351
2352#ifdef __ARCH_WANT_SYS_SOCKETCALL
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353/* Argument list sizes for sys_socketcall */
2354#define AL(x) ((x) * sizeof(unsigned long))
Anton Blanchard228e5482011-05-02 20:21:35 +00002355static const unsigned char nargs[21] = {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002356 AL(0), AL(3), AL(3), AL(3), AL(2), AL(3),
2357 AL(3), AL(3), AL(4), AL(4), AL(4), AL(6),
2358 AL(6), AL(2), AL(5), AL(5), AL(3), AL(3),
Anton Blanchard228e5482011-05-02 20:21:35 +00002359 AL(4), AL(5), AL(4)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002360};
2361
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362#undef AL
2363
2364/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002365 * System call vectors.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 *
2367 * Argument checking cleaned up. Saved 20% in size.
2368 * This function doesn't need to set the kernel lock because
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002369 * it is set by the callees.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 */
2371
Heiko Carstens3e0fa652009-01-14 14:14:24 +01002372SYSCALL_DEFINE2(socketcall, int, call, unsigned long __user *, args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373{
2374 unsigned long a[6];
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002375 unsigned long a0, a1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 int err;
Arjan van de Ven47379052009-09-28 12:57:44 -07002377 unsigned int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378
Anton Blanchard228e5482011-05-02 20:21:35 +00002379 if (call < 1 || call > SYS_SENDMMSG)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 return -EINVAL;
2381
Arjan van de Ven47379052009-09-28 12:57:44 -07002382 len = nargs[call];
2383 if (len > sizeof(a))
2384 return -EINVAL;
2385
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 /* copy_from_user should be SMP safe. */
Arjan van de Ven47379052009-09-28 12:57:44 -07002387 if (copy_from_user(a, args, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 return -EFAULT;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002389
Al Virof3298dc2008-12-10 03:16:51 -05002390 audit_socketcall(nargs[call] / sizeof(unsigned long), a);
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002391
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002392 a0 = a[0];
2393 a1 = a[1];
2394
2395 switch (call) {
2396 case SYS_SOCKET:
2397 err = sys_socket(a0, a1, a[2]);
2398 break;
2399 case SYS_BIND:
2400 err = sys_bind(a0, (struct sockaddr __user *)a1, a[2]);
2401 break;
2402 case SYS_CONNECT:
2403 err = sys_connect(a0, (struct sockaddr __user *)a1, a[2]);
2404 break;
2405 case SYS_LISTEN:
2406 err = sys_listen(a0, a1);
2407 break;
2408 case SYS_ACCEPT:
Ulrich Drepperde11def2008-11-19 15:36:14 -08002409 err = sys_accept4(a0, (struct sockaddr __user *)a1,
2410 (int __user *)a[2], 0);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002411 break;
2412 case SYS_GETSOCKNAME:
2413 err =
2414 sys_getsockname(a0, (struct sockaddr __user *)a1,
2415 (int __user *)a[2]);
2416 break;
2417 case SYS_GETPEERNAME:
2418 err =
2419 sys_getpeername(a0, (struct sockaddr __user *)a1,
2420 (int __user *)a[2]);
2421 break;
2422 case SYS_SOCKETPAIR:
2423 err = sys_socketpair(a0, a1, a[2], (int __user *)a[3]);
2424 break;
2425 case SYS_SEND:
2426 err = sys_send(a0, (void __user *)a1, a[2], a[3]);
2427 break;
2428 case SYS_SENDTO:
2429 err = sys_sendto(a0, (void __user *)a1, a[2], a[3],
2430 (struct sockaddr __user *)a[4], a[5]);
2431 break;
2432 case SYS_RECV:
2433 err = sys_recv(a0, (void __user *)a1, a[2], a[3]);
2434 break;
2435 case SYS_RECVFROM:
2436 err = sys_recvfrom(a0, (void __user *)a1, a[2], a[3],
2437 (struct sockaddr __user *)a[4],
2438 (int __user *)a[5]);
2439 break;
2440 case SYS_SHUTDOWN:
2441 err = sys_shutdown(a0, a1);
2442 break;
2443 case SYS_SETSOCKOPT:
2444 err = sys_setsockopt(a0, a1, a[2], (char __user *)a[3], a[4]);
2445 break;
2446 case SYS_GETSOCKOPT:
2447 err =
2448 sys_getsockopt(a0, a1, a[2], (char __user *)a[3],
2449 (int __user *)a[4]);
2450 break;
2451 case SYS_SENDMSG:
2452 err = sys_sendmsg(a0, (struct msghdr __user *)a1, a[2]);
2453 break;
Anton Blanchard228e5482011-05-02 20:21:35 +00002454 case SYS_SENDMMSG:
2455 err = sys_sendmmsg(a0, (struct mmsghdr __user *)a1, a[2], a[3]);
2456 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002457 case SYS_RECVMSG:
2458 err = sys_recvmsg(a0, (struct msghdr __user *)a1, a[2]);
2459 break;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002460 case SYS_RECVMMSG:
2461 err = sys_recvmmsg(a0, (struct mmsghdr __user *)a1, a[2], a[3],
2462 (struct timespec __user *)a[4]);
2463 break;
Ulrich Drepperde11def2008-11-19 15:36:14 -08002464 case SYS_ACCEPT4:
2465 err = sys_accept4(a0, (struct sockaddr __user *)a1,
2466 (int __user *)a[2], a[3]);
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07002467 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002468 default:
2469 err = -EINVAL;
2470 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471 }
2472 return err;
2473}
2474
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002475#endif /* __ARCH_WANT_SYS_SOCKETCALL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002477/**
2478 * sock_register - add a socket protocol handler
2479 * @ops: description of protocol
2480 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 * This function is called by a protocol handler that wants to
2482 * advertise its address family, and have it linked into the
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002483 * socket interface. The value ops->family coresponds to the
2484 * socket system call protocol family.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485 */
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002486int sock_register(const struct net_proto_family *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487{
2488 int err;
2489
2490 if (ops->family >= NPROTO) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002491 printk(KERN_CRIT "protocol %d >= NPROTO(%d)\n", ops->family,
2492 NPROTO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 return -ENOBUFS;
2494 }
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002495
2496 spin_lock(&net_family_lock);
Eric Dumazet190683a2010-11-10 10:50:44 +00002497 if (rcu_dereference_protected(net_families[ops->family],
2498 lockdep_is_held(&net_family_lock)))
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002499 err = -EEXIST;
2500 else {
Eric Dumazetcf778b02012-01-12 04:41:32 +00002501 rcu_assign_pointer(net_families[ops->family], ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502 err = 0;
2503 }
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002504 spin_unlock(&net_family_lock);
2505
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002506 printk(KERN_INFO "NET: Registered protocol family %d\n", ops->family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507 return err;
2508}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002509EXPORT_SYMBOL(sock_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002511/**
2512 * sock_unregister - remove a protocol handler
2513 * @family: protocol family to remove
2514 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 * This function is called by a protocol handler that wants to
2516 * remove its address family, and have it unlinked from the
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002517 * new socket creation.
2518 *
2519 * If protocol handler is a module, then it can use module reference
2520 * counts to protect against new references. If protocol handler is not
2521 * a module then it needs to provide its own protection in
2522 * the ops->create routine.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 */
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002524void sock_unregister(int family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525{
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002526 BUG_ON(family < 0 || family >= NPROTO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002528 spin_lock(&net_family_lock);
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00002529 RCU_INIT_POINTER(net_families[family], NULL);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002530 spin_unlock(&net_family_lock);
2531
2532 synchronize_rcu();
2533
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002534 printk(KERN_INFO "NET: Unregistered protocol family %d\n", family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002536EXPORT_SYMBOL(sock_unregister);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537
Andi Kleen77d76ea2005-12-22 12:43:42 -08002538static int __init sock_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539{
Nick Pigginb3e19d92011-01-07 17:50:11 +11002540 int err;
Eric W. Biederman2ca794e2012-04-19 13:20:32 +00002541 /*
2542 * Initialize the network sysctl infrastructure.
2543 */
2544 err = net_sysctl_init();
2545 if (err)
2546 goto out;
Nick Pigginb3e19d92011-01-07 17:50:11 +11002547
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002549 * Initialize sock SLAB cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002551
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 sk_init();
2553
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002555 * Initialize skbuff SLAB cache
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 */
2557 skb_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558
2559 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002560 * Initialize the protocols module.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561 */
2562
2563 init_inodecache();
Nick Pigginb3e19d92011-01-07 17:50:11 +11002564
2565 err = register_filesystem(&sock_fs_type);
2566 if (err)
2567 goto out_fs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 sock_mnt = kern_mount(&sock_fs_type);
Nick Pigginb3e19d92011-01-07 17:50:11 +11002569 if (IS_ERR(sock_mnt)) {
2570 err = PTR_ERR(sock_mnt);
2571 goto out_mount;
2572 }
Andi Kleen77d76ea2005-12-22 12:43:42 -08002573
2574 /* The real protocol initialization is performed in later initcalls.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 */
2576
2577#ifdef CONFIG_NETFILTER
2578 netfilter_init();
2579#endif
David S. Millercbeb3212005-12-22 12:58:55 -08002580
Richard Cochranc1f19b52010-07-17 08:49:36 +00002581#ifdef CONFIG_NETWORK_PHY_TIMESTAMPING
2582 skb_timestamping_init();
2583#endif
2584
Nick Pigginb3e19d92011-01-07 17:50:11 +11002585out:
2586 return err;
2587
2588out_mount:
2589 unregister_filesystem(&sock_fs_type);
2590out_fs:
2591 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592}
2593
Andi Kleen77d76ea2005-12-22 12:43:42 -08002594core_initcall(sock_init); /* early initcall */
2595
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596#ifdef CONFIG_PROC_FS
2597void socket_seq_show(struct seq_file *seq)
2598{
2599 int cpu;
2600 int counter = 0;
2601
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -07002602 for_each_possible_cpu(cpu)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002603 counter += per_cpu(sockets_in_use, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604
2605 /* It can be negative, by the way. 8) */
2606 if (counter < 0)
2607 counter = 0;
2608
2609 seq_printf(seq, "sockets: used %d\n", counter);
2610}
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002611#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612
Shaun Pereira89bbfc92006-03-21 23:58:08 -08002613#ifdef CONFIG_COMPAT
Arnd Bergmann6b960182009-11-06 23:10:54 -08002614static int do_siocgstamp(struct net *net, struct socket *sock,
H. Peter Anvin644595f2012-02-19 17:51:59 -08002615 unsigned int cmd, void __user *up)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002616{
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002617 mm_segment_t old_fs = get_fs();
2618 struct timeval ktv;
2619 int err;
2620
2621 set_fs(KERNEL_DS);
Arnd Bergmann6b960182009-11-06 23:10:54 -08002622 err = sock_do_ioctl(net, sock, cmd, (unsigned long)&ktv);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002623 set_fs(old_fs);
H. Peter Anvin644595f2012-02-19 17:51:59 -08002624 if (!err)
Mikulas Patockaed6fe9d2012-09-01 12:34:07 -04002625 err = compat_put_timeval(&ktv, up);
H. Peter Anvin644595f2012-02-19 17:51:59 -08002626
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002627 return err;
2628}
2629
Arnd Bergmann6b960182009-11-06 23:10:54 -08002630static int do_siocgstampns(struct net *net, struct socket *sock,
H. Peter Anvin644595f2012-02-19 17:51:59 -08002631 unsigned int cmd, void __user *up)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002632{
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002633 mm_segment_t old_fs = get_fs();
2634 struct timespec kts;
2635 int err;
2636
2637 set_fs(KERNEL_DS);
Arnd Bergmann6b960182009-11-06 23:10:54 -08002638 err = sock_do_ioctl(net, sock, cmd, (unsigned long)&kts);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002639 set_fs(old_fs);
H. Peter Anvin644595f2012-02-19 17:51:59 -08002640 if (!err)
Mikulas Patockaed6fe9d2012-09-01 12:34:07 -04002641 err = compat_put_timespec(&kts, up);
H. Peter Anvin644595f2012-02-19 17:51:59 -08002642
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002643 return err;
2644}
2645
Arnd Bergmann6b960182009-11-06 23:10:54 -08002646static int dev_ifname32(struct net *net, struct compat_ifreq __user *uifr32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002647{
2648 struct ifreq __user *uifr;
2649 int err;
2650
2651 uifr = compat_alloc_user_space(sizeof(struct ifreq));
Arnd Bergmann6b960182009-11-06 23:10:54 -08002652 if (copy_in_user(uifr, uifr32, sizeof(struct compat_ifreq)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002653 return -EFAULT;
2654
Arnd Bergmann6b960182009-11-06 23:10:54 -08002655 err = dev_ioctl(net, SIOCGIFNAME, uifr);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002656 if (err)
2657 return err;
2658
Arnd Bergmann6b960182009-11-06 23:10:54 -08002659 if (copy_in_user(uifr32, uifr, sizeof(struct compat_ifreq)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002660 return -EFAULT;
2661
2662 return 0;
2663}
2664
Arnd Bergmann6b960182009-11-06 23:10:54 -08002665static int dev_ifconf(struct net *net, struct compat_ifconf __user *uifc32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002666{
Arnd Bergmann6b960182009-11-06 23:10:54 -08002667 struct compat_ifconf ifc32;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002668 struct ifconf ifc;
2669 struct ifconf __user *uifc;
Arnd Bergmann6b960182009-11-06 23:10:54 -08002670 struct compat_ifreq __user *ifr32;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002671 struct ifreq __user *ifr;
2672 unsigned int i, j;
2673 int err;
2674
Arnd Bergmann6b960182009-11-06 23:10:54 -08002675 if (copy_from_user(&ifc32, uifc32, sizeof(struct compat_ifconf)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002676 return -EFAULT;
2677
Mathias Krause43da5f22012-08-15 11:31:57 +00002678 memset(&ifc, 0, sizeof(ifc));
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002679 if (ifc32.ifcbuf == 0) {
2680 ifc32.ifc_len = 0;
2681 ifc.ifc_len = 0;
2682 ifc.ifc_req = NULL;
2683 uifc = compat_alloc_user_space(sizeof(struct ifconf));
2684 } else {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002685 size_t len = ((ifc32.ifc_len / sizeof(struct compat_ifreq)) + 1) *
2686 sizeof(struct ifreq);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002687 uifc = compat_alloc_user_space(sizeof(struct ifconf) + len);
2688 ifc.ifc_len = len;
2689 ifr = ifc.ifc_req = (void __user *)(uifc + 1);
2690 ifr32 = compat_ptr(ifc32.ifcbuf);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002691 for (i = 0; i < ifc32.ifc_len; i += sizeof(struct compat_ifreq)) {
Arnd Bergmann6b960182009-11-06 23:10:54 -08002692 if (copy_in_user(ifr, ifr32, sizeof(struct compat_ifreq)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002693 return -EFAULT;
2694 ifr++;
2695 ifr32++;
2696 }
2697 }
2698 if (copy_to_user(uifc, &ifc, sizeof(struct ifconf)))
2699 return -EFAULT;
2700
Arnd Bergmann6b960182009-11-06 23:10:54 -08002701 err = dev_ioctl(net, SIOCGIFCONF, uifc);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002702 if (err)
2703 return err;
2704
2705 if (copy_from_user(&ifc, uifc, sizeof(struct ifconf)))
2706 return -EFAULT;
2707
2708 ifr = ifc.ifc_req;
2709 ifr32 = compat_ptr(ifc32.ifcbuf);
2710 for (i = 0, j = 0;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002711 i + sizeof(struct compat_ifreq) <= ifc32.ifc_len && j < ifc.ifc_len;
2712 i += sizeof(struct compat_ifreq), j += sizeof(struct ifreq)) {
2713 if (copy_in_user(ifr32, ifr, sizeof(struct compat_ifreq)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002714 return -EFAULT;
2715 ifr32++;
2716 ifr++;
2717 }
2718
2719 if (ifc32.ifcbuf == 0) {
2720 /* Translate from 64-bit structure multiple to
2721 * a 32-bit one.
2722 */
2723 i = ifc.ifc_len;
Arnd Bergmann6b960182009-11-06 23:10:54 -08002724 i = ((i / sizeof(struct ifreq)) * sizeof(struct compat_ifreq));
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002725 ifc32.ifc_len = i;
2726 } else {
2727 ifc32.ifc_len = i;
2728 }
Arnd Bergmann6b960182009-11-06 23:10:54 -08002729 if (copy_to_user(uifc32, &ifc32, sizeof(struct compat_ifconf)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002730 return -EFAULT;
2731
2732 return 0;
2733}
2734
Arnd Bergmann6b960182009-11-06 23:10:54 -08002735static int ethtool_ioctl(struct net *net, struct compat_ifreq __user *ifr32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002736{
Ben Hutchings3a7da392011-03-17 07:34:32 +00002737 struct compat_ethtool_rxnfc __user *compat_rxnfc;
2738 bool convert_in = false, convert_out = false;
2739 size_t buf_size = ALIGN(sizeof(struct ifreq), 8);
2740 struct ethtool_rxnfc __user *rxnfc;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002741 struct ifreq __user *ifr;
Ben Hutchings3a7da392011-03-17 07:34:32 +00002742 u32 rule_cnt = 0, actual_rule_cnt;
2743 u32 ethcmd;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002744 u32 data;
Ben Hutchings3a7da392011-03-17 07:34:32 +00002745 int ret;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002746
2747 if (get_user(data, &ifr32->ifr_ifru.ifru_data))
2748 return -EFAULT;
2749
Ben Hutchings3a7da392011-03-17 07:34:32 +00002750 compat_rxnfc = compat_ptr(data);
2751
2752 if (get_user(ethcmd, &compat_rxnfc->cmd))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002753 return -EFAULT;
2754
Ben Hutchings3a7da392011-03-17 07:34:32 +00002755 /* Most ethtool structures are defined without padding.
2756 * Unfortunately struct ethtool_rxnfc is an exception.
2757 */
2758 switch (ethcmd) {
2759 default:
2760 break;
2761 case ETHTOOL_GRXCLSRLALL:
2762 /* Buffer size is variable */
2763 if (get_user(rule_cnt, &compat_rxnfc->rule_cnt))
2764 return -EFAULT;
2765 if (rule_cnt > KMALLOC_MAX_SIZE / sizeof(u32))
2766 return -ENOMEM;
2767 buf_size += rule_cnt * sizeof(u32);
2768 /* fall through */
2769 case ETHTOOL_GRXRINGS:
2770 case ETHTOOL_GRXCLSRLCNT:
2771 case ETHTOOL_GRXCLSRULE:
Ben Hutchings55664f32012-01-03 12:04:51 +00002772 case ETHTOOL_SRXCLSRLINS:
Ben Hutchings3a7da392011-03-17 07:34:32 +00002773 convert_out = true;
2774 /* fall through */
2775 case ETHTOOL_SRXCLSRLDEL:
Ben Hutchings3a7da392011-03-17 07:34:32 +00002776 buf_size += sizeof(struct ethtool_rxnfc);
2777 convert_in = true;
2778 break;
2779 }
2780
2781 ifr = compat_alloc_user_space(buf_size);
2782 rxnfc = (void *)ifr + ALIGN(sizeof(struct ifreq), 8);
2783
2784 if (copy_in_user(&ifr->ifr_name, &ifr32->ifr_name, IFNAMSIZ))
2785 return -EFAULT;
2786
2787 if (put_user(convert_in ? rxnfc : compat_ptr(data),
2788 &ifr->ifr_ifru.ifru_data))
2789 return -EFAULT;
2790
2791 if (convert_in) {
Alexander Duyck127fe532011-04-08 18:01:59 +00002792 /* We expect there to be holes between fs.m_ext and
Ben Hutchings3a7da392011-03-17 07:34:32 +00002793 * fs.ring_cookie and at the end of fs, but nowhere else.
2794 */
Alexander Duyck127fe532011-04-08 18:01:59 +00002795 BUILD_BUG_ON(offsetof(struct compat_ethtool_rxnfc, fs.m_ext) +
2796 sizeof(compat_rxnfc->fs.m_ext) !=
2797 offsetof(struct ethtool_rxnfc, fs.m_ext) +
2798 sizeof(rxnfc->fs.m_ext));
Ben Hutchings3a7da392011-03-17 07:34:32 +00002799 BUILD_BUG_ON(
2800 offsetof(struct compat_ethtool_rxnfc, fs.location) -
2801 offsetof(struct compat_ethtool_rxnfc, fs.ring_cookie) !=
2802 offsetof(struct ethtool_rxnfc, fs.location) -
2803 offsetof(struct ethtool_rxnfc, fs.ring_cookie));
2804
2805 if (copy_in_user(rxnfc, compat_rxnfc,
Alexander Duyck127fe532011-04-08 18:01:59 +00002806 (void *)(&rxnfc->fs.m_ext + 1) -
Ben Hutchings3a7da392011-03-17 07:34:32 +00002807 (void *)rxnfc) ||
2808 copy_in_user(&rxnfc->fs.ring_cookie,
2809 &compat_rxnfc->fs.ring_cookie,
2810 (void *)(&rxnfc->fs.location + 1) -
2811 (void *)&rxnfc->fs.ring_cookie) ||
2812 copy_in_user(&rxnfc->rule_cnt, &compat_rxnfc->rule_cnt,
2813 sizeof(rxnfc->rule_cnt)))
2814 return -EFAULT;
2815 }
2816
2817 ret = dev_ioctl(net, SIOCETHTOOL, ifr);
2818 if (ret)
2819 return ret;
2820
2821 if (convert_out) {
2822 if (copy_in_user(compat_rxnfc, rxnfc,
Alexander Duyck127fe532011-04-08 18:01:59 +00002823 (const void *)(&rxnfc->fs.m_ext + 1) -
Ben Hutchings3a7da392011-03-17 07:34:32 +00002824 (const void *)rxnfc) ||
2825 copy_in_user(&compat_rxnfc->fs.ring_cookie,
2826 &rxnfc->fs.ring_cookie,
2827 (const void *)(&rxnfc->fs.location + 1) -
2828 (const void *)&rxnfc->fs.ring_cookie) ||
2829 copy_in_user(&compat_rxnfc->rule_cnt, &rxnfc->rule_cnt,
2830 sizeof(rxnfc->rule_cnt)))
2831 return -EFAULT;
2832
2833 if (ethcmd == ETHTOOL_GRXCLSRLALL) {
2834 /* As an optimisation, we only copy the actual
2835 * number of rules that the underlying
2836 * function returned. Since Mallory might
2837 * change the rule count in user memory, we
2838 * check that it is less than the rule count
2839 * originally given (as the user buffer size),
2840 * which has been range-checked.
2841 */
2842 if (get_user(actual_rule_cnt, &rxnfc->rule_cnt))
2843 return -EFAULT;
2844 if (actual_rule_cnt < rule_cnt)
2845 rule_cnt = actual_rule_cnt;
2846 if (copy_in_user(&compat_rxnfc->rule_locs[0],
2847 &rxnfc->rule_locs[0],
2848 rule_cnt * sizeof(u32)))
2849 return -EFAULT;
2850 }
2851 }
2852
2853 return 0;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002854}
2855
Arnd Bergmann7a50a242009-11-08 20:57:03 -08002856static int compat_siocwandev(struct net *net, struct compat_ifreq __user *uifr32)
2857{
2858 void __user *uptr;
2859 compat_uptr_t uptr32;
2860 struct ifreq __user *uifr;
2861
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002862 uifr = compat_alloc_user_space(sizeof(*uifr));
Arnd Bergmann7a50a242009-11-08 20:57:03 -08002863 if (copy_in_user(uifr, uifr32, sizeof(struct compat_ifreq)))
2864 return -EFAULT;
2865
2866 if (get_user(uptr32, &uifr32->ifr_settings.ifs_ifsu))
2867 return -EFAULT;
2868
2869 uptr = compat_ptr(uptr32);
2870
2871 if (put_user(uptr, &uifr->ifr_settings.ifs_ifsu.raw_hdlc))
2872 return -EFAULT;
2873
2874 return dev_ioctl(net, SIOCWANDEV, uifr);
2875}
2876
Arnd Bergmann6b960182009-11-06 23:10:54 -08002877static int bond_ioctl(struct net *net, unsigned int cmd,
2878 struct compat_ifreq __user *ifr32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002879{
2880 struct ifreq kifr;
2881 struct ifreq __user *uifr;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002882 mm_segment_t old_fs;
2883 int err;
2884 u32 data;
2885 void __user *datap;
2886
2887 switch (cmd) {
2888 case SIOCBONDENSLAVE:
2889 case SIOCBONDRELEASE:
2890 case SIOCBONDSETHWADDR:
2891 case SIOCBONDCHANGEACTIVE:
Arnd Bergmann6b960182009-11-06 23:10:54 -08002892 if (copy_from_user(&kifr, ifr32, sizeof(struct compat_ifreq)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002893 return -EFAULT;
2894
2895 old_fs = get_fs();
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002896 set_fs(KERNEL_DS);
stephen hemmingerc3f52ae2011-02-23 09:06:48 +00002897 err = dev_ioctl(net, cmd,
2898 (struct ifreq __user __force *) &kifr);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002899 set_fs(old_fs);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002900
2901 return err;
2902 case SIOCBONDSLAVEINFOQUERY:
2903 case SIOCBONDINFOQUERY:
2904 uifr = compat_alloc_user_space(sizeof(*uifr));
2905 if (copy_in_user(&uifr->ifr_name, &ifr32->ifr_name, IFNAMSIZ))
2906 return -EFAULT;
2907
2908 if (get_user(data, &ifr32->ifr_ifru.ifru_data))
2909 return -EFAULT;
2910
2911 datap = compat_ptr(data);
2912 if (put_user(datap, &uifr->ifr_ifru.ifru_data))
2913 return -EFAULT;
2914
Arnd Bergmann6b960182009-11-06 23:10:54 -08002915 return dev_ioctl(net, cmd, uifr);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002916 default:
Linus Torvalds07d106d2012-01-05 15:40:12 -08002917 return -ENOIOCTLCMD;
Joe Perchesccbd6a52010-05-14 10:58:26 +00002918 }
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002919}
2920
Arnd Bergmann6b960182009-11-06 23:10:54 -08002921static int siocdevprivate_ioctl(struct net *net, unsigned int cmd,
2922 struct compat_ifreq __user *u_ifreq32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002923{
2924 struct ifreq __user *u_ifreq64;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002925 char tmp_buf[IFNAMSIZ];
2926 void __user *data64;
2927 u32 data32;
2928
2929 if (copy_from_user(&tmp_buf[0], &(u_ifreq32->ifr_ifrn.ifrn_name[0]),
2930 IFNAMSIZ))
2931 return -EFAULT;
2932 if (__get_user(data32, &u_ifreq32->ifr_ifru.ifru_data))
2933 return -EFAULT;
2934 data64 = compat_ptr(data32);
2935
2936 u_ifreq64 = compat_alloc_user_space(sizeof(*u_ifreq64));
2937
2938 /* Don't check these user accesses, just let that get trapped
2939 * in the ioctl handler instead.
2940 */
2941 if (copy_to_user(&u_ifreq64->ifr_ifrn.ifrn_name[0], &tmp_buf[0],
2942 IFNAMSIZ))
2943 return -EFAULT;
2944 if (__put_user(data64, &u_ifreq64->ifr_ifru.ifru_data))
2945 return -EFAULT;
2946
Arnd Bergmann6b960182009-11-06 23:10:54 -08002947 return dev_ioctl(net, cmd, u_ifreq64);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002948}
2949
Arnd Bergmann6b960182009-11-06 23:10:54 -08002950static int dev_ifsioc(struct net *net, struct socket *sock,
2951 unsigned int cmd, struct compat_ifreq __user *uifr32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002952{
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002953 struct ifreq __user *uifr;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002954 int err;
2955
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002956 uifr = compat_alloc_user_space(sizeof(*uifr));
2957 if (copy_in_user(uifr, uifr32, sizeof(*uifr32)))
2958 return -EFAULT;
2959
2960 err = sock_do_ioctl(net, sock, cmd, (unsigned long)uifr);
2961
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002962 if (!err) {
2963 switch (cmd) {
2964 case SIOCGIFFLAGS:
2965 case SIOCGIFMETRIC:
2966 case SIOCGIFMTU:
2967 case SIOCGIFMEM:
2968 case SIOCGIFHWADDR:
2969 case SIOCGIFINDEX:
2970 case SIOCGIFADDR:
2971 case SIOCGIFBRDADDR:
2972 case SIOCGIFDSTADDR:
2973 case SIOCGIFNETMASK:
Arnd Bergmannfab25322009-11-08 20:56:21 -08002974 case SIOCGIFPFLAGS:
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002975 case SIOCGIFTXQLEN:
Arnd Bergmannfab25322009-11-08 20:56:21 -08002976 case SIOCGMIIPHY:
2977 case SIOCGMIIREG:
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002978 if (copy_in_user(uifr32, uifr, sizeof(*uifr32)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002979 err = -EFAULT;
2980 break;
2981 }
2982 }
2983 return err;
2984}
2985
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002986static int compat_sioc_ifmap(struct net *net, unsigned int cmd,
2987 struct compat_ifreq __user *uifr32)
2988{
2989 struct ifreq ifr;
2990 struct compat_ifmap __user *uifmap32;
2991 mm_segment_t old_fs;
2992 int err;
2993
2994 uifmap32 = &uifr32->ifr_ifru.ifru_map;
2995 err = copy_from_user(&ifr, uifr32, sizeof(ifr.ifr_name));
2996 err |= __get_user(ifr.ifr_map.mem_start, &uifmap32->mem_start);
2997 err |= __get_user(ifr.ifr_map.mem_end, &uifmap32->mem_end);
2998 err |= __get_user(ifr.ifr_map.base_addr, &uifmap32->base_addr);
2999 err |= __get_user(ifr.ifr_map.irq, &uifmap32->irq);
3000 err |= __get_user(ifr.ifr_map.dma, &uifmap32->dma);
3001 err |= __get_user(ifr.ifr_map.port, &uifmap32->port);
3002 if (err)
3003 return -EFAULT;
3004
3005 old_fs = get_fs();
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003006 set_fs(KERNEL_DS);
stephen hemmingerc3f52ae2011-02-23 09:06:48 +00003007 err = dev_ioctl(net, cmd, (void __user __force *)&ifr);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003008 set_fs(old_fs);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003009
3010 if (cmd == SIOCGIFMAP && !err) {
3011 err = copy_to_user(uifr32, &ifr, sizeof(ifr.ifr_name));
3012 err |= __put_user(ifr.ifr_map.mem_start, &uifmap32->mem_start);
3013 err |= __put_user(ifr.ifr_map.mem_end, &uifmap32->mem_end);
3014 err |= __put_user(ifr.ifr_map.base_addr, &uifmap32->base_addr);
3015 err |= __put_user(ifr.ifr_map.irq, &uifmap32->irq);
3016 err |= __put_user(ifr.ifr_map.dma, &uifmap32->dma);
3017 err |= __put_user(ifr.ifr_map.port, &uifmap32->port);
3018 if (err)
3019 err = -EFAULT;
3020 }
3021 return err;
3022}
3023
3024static int compat_siocshwtstamp(struct net *net, struct compat_ifreq __user *uifr32)
3025{
3026 void __user *uptr;
3027 compat_uptr_t uptr32;
3028 struct ifreq __user *uifr;
3029
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003030 uifr = compat_alloc_user_space(sizeof(*uifr));
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003031 if (copy_in_user(uifr, uifr32, sizeof(struct compat_ifreq)))
3032 return -EFAULT;
3033
3034 if (get_user(uptr32, &uifr32->ifr_data))
3035 return -EFAULT;
3036
3037 uptr = compat_ptr(uptr32);
3038
3039 if (put_user(uptr, &uifr->ifr_data))
3040 return -EFAULT;
3041
3042 return dev_ioctl(net, SIOCSHWTSTAMP, uifr);
3043}
3044
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003045struct rtentry32 {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003046 u32 rt_pad1;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003047 struct sockaddr rt_dst; /* target address */
3048 struct sockaddr rt_gateway; /* gateway addr (RTF_GATEWAY) */
3049 struct sockaddr rt_genmask; /* target network mask (IP) */
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003050 unsigned short rt_flags;
3051 short rt_pad2;
3052 u32 rt_pad3;
3053 unsigned char rt_tos;
3054 unsigned char rt_class;
3055 short rt_pad4;
3056 short rt_metric; /* +1 for binary compatibility! */
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003057 /* char * */ u32 rt_dev; /* forcing the device at add */
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003058 u32 rt_mtu; /* per route MTU/Window */
3059 u32 rt_window; /* Window clamping */
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003060 unsigned short rt_irtt; /* Initial RTT */
3061};
3062
3063struct in6_rtmsg32 {
3064 struct in6_addr rtmsg_dst;
3065 struct in6_addr rtmsg_src;
3066 struct in6_addr rtmsg_gateway;
3067 u32 rtmsg_type;
3068 u16 rtmsg_dst_len;
3069 u16 rtmsg_src_len;
3070 u32 rtmsg_metric;
3071 u32 rtmsg_info;
3072 u32 rtmsg_flags;
3073 s32 rtmsg_ifindex;
3074};
3075
Arnd Bergmann6b960182009-11-06 23:10:54 -08003076static int routing_ioctl(struct net *net, struct socket *sock,
3077 unsigned int cmd, void __user *argp)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003078{
3079 int ret;
3080 void *r = NULL;
3081 struct in6_rtmsg r6;
3082 struct rtentry r4;
3083 char devname[16];
3084 u32 rtdev;
3085 mm_segment_t old_fs = get_fs();
3086
Arnd Bergmann6b960182009-11-06 23:10:54 -08003087 if (sock && sock->sk && sock->sk->sk_family == AF_INET6) { /* ipv6 */
3088 struct in6_rtmsg32 __user *ur6 = argp;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003089 ret = copy_from_user(&r6.rtmsg_dst, &(ur6->rtmsg_dst),
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003090 3 * sizeof(struct in6_addr));
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003091 ret |= __get_user(r6.rtmsg_type, &(ur6->rtmsg_type));
3092 ret |= __get_user(r6.rtmsg_dst_len, &(ur6->rtmsg_dst_len));
3093 ret |= __get_user(r6.rtmsg_src_len, &(ur6->rtmsg_src_len));
3094 ret |= __get_user(r6.rtmsg_metric, &(ur6->rtmsg_metric));
3095 ret |= __get_user(r6.rtmsg_info, &(ur6->rtmsg_info));
3096 ret |= __get_user(r6.rtmsg_flags, &(ur6->rtmsg_flags));
3097 ret |= __get_user(r6.rtmsg_ifindex, &(ur6->rtmsg_ifindex));
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003098
3099 r = (void *) &r6;
3100 } else { /* ipv4 */
Arnd Bergmann6b960182009-11-06 23:10:54 -08003101 struct rtentry32 __user *ur4 = argp;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003102 ret = copy_from_user(&r4.rt_dst, &(ur4->rt_dst),
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003103 3 * sizeof(struct sockaddr));
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003104 ret |= __get_user(r4.rt_flags, &(ur4->rt_flags));
3105 ret |= __get_user(r4.rt_metric, &(ur4->rt_metric));
3106 ret |= __get_user(r4.rt_mtu, &(ur4->rt_mtu));
3107 ret |= __get_user(r4.rt_window, &(ur4->rt_window));
3108 ret |= __get_user(r4.rt_irtt, &(ur4->rt_irtt));
3109 ret |= __get_user(rtdev, &(ur4->rt_dev));
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003110 if (rtdev) {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003111 ret |= copy_from_user(devname, compat_ptr(rtdev), 15);
stephen hemmingerc3f52ae2011-02-23 09:06:48 +00003112 r4.rt_dev = (char __user __force *)devname;
3113 devname[15] = 0;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003114 } else
3115 r4.rt_dev = NULL;
3116
3117 r = (void *) &r4;
3118 }
3119
3120 if (ret) {
3121 ret = -EFAULT;
3122 goto out;
3123 }
3124
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003125 set_fs(KERNEL_DS);
Arnd Bergmann6b960182009-11-06 23:10:54 -08003126 ret = sock_do_ioctl(net, sock, cmd, (unsigned long) r);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003127 set_fs(old_fs);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003128
3129out:
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003130 return ret;
3131}
3132
3133/* Since old style bridge ioctl's endup using SIOCDEVPRIVATE
3134 * for some operations; this forces use of the newer bridge-utils that
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003135 * use compatible ioctls
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003136 */
Arnd Bergmann6b960182009-11-06 23:10:54 -08003137static int old_bridge_ioctl(compat_ulong_t __user *argp)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003138{
Arnd Bergmann6b960182009-11-06 23:10:54 -08003139 compat_ulong_t tmp;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003140
Arnd Bergmann6b960182009-11-06 23:10:54 -08003141 if (get_user(tmp, argp))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003142 return -EFAULT;
3143 if (tmp == BRCTL_GET_VERSION)
3144 return BRCTL_VERSION + 1;
3145 return -EINVAL;
3146}
3147
Arnd Bergmann6b960182009-11-06 23:10:54 -08003148static int compat_sock_ioctl_trans(struct file *file, struct socket *sock,
3149 unsigned int cmd, unsigned long arg)
3150{
3151 void __user *argp = compat_ptr(arg);
3152 struct sock *sk = sock->sk;
3153 struct net *net = sock_net(sk);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003154
Arnd Bergmann6b960182009-11-06 23:10:54 -08003155 if (cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15))
3156 return siocdevprivate_ioctl(net, cmd, argp);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003157
Arnd Bergmann6b960182009-11-06 23:10:54 -08003158 switch (cmd) {
3159 case SIOCSIFBR:
3160 case SIOCGIFBR:
3161 return old_bridge_ioctl(argp);
3162 case SIOCGIFNAME:
3163 return dev_ifname32(net, argp);
3164 case SIOCGIFCONF:
3165 return dev_ifconf(net, argp);
3166 case SIOCETHTOOL:
3167 return ethtool_ioctl(net, argp);
Arnd Bergmann7a50a242009-11-08 20:57:03 -08003168 case SIOCWANDEV:
3169 return compat_siocwandev(net, argp);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003170 case SIOCGIFMAP:
3171 case SIOCSIFMAP:
3172 return compat_sioc_ifmap(net, cmd, argp);
Arnd Bergmann6b960182009-11-06 23:10:54 -08003173 case SIOCBONDENSLAVE:
3174 case SIOCBONDRELEASE:
3175 case SIOCBONDSETHWADDR:
3176 case SIOCBONDSLAVEINFOQUERY:
3177 case SIOCBONDINFOQUERY:
3178 case SIOCBONDCHANGEACTIVE:
3179 return bond_ioctl(net, cmd, argp);
3180 case SIOCADDRT:
3181 case SIOCDELRT:
3182 return routing_ioctl(net, sock, cmd, argp);
3183 case SIOCGSTAMP:
3184 return do_siocgstamp(net, sock, cmd, argp);
3185 case SIOCGSTAMPNS:
3186 return do_siocgstampns(net, sock, cmd, argp);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003187 case SIOCSHWTSTAMP:
3188 return compat_siocshwtstamp(net, argp);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003189
Arnd Bergmann6b960182009-11-06 23:10:54 -08003190 case FIOSETOWN:
3191 case SIOCSPGRP:
3192 case FIOGETOWN:
3193 case SIOCGPGRP:
3194 case SIOCBRADDBR:
3195 case SIOCBRDELBR:
3196 case SIOCGIFVLAN:
3197 case SIOCSIFVLAN:
3198 case SIOCADDDLCI:
3199 case SIOCDELDLCI:
3200 return sock_ioctl(file, cmd, arg);
3201
3202 case SIOCGIFFLAGS:
3203 case SIOCSIFFLAGS:
3204 case SIOCGIFMETRIC:
3205 case SIOCSIFMETRIC:
3206 case SIOCGIFMTU:
3207 case SIOCSIFMTU:
3208 case SIOCGIFMEM:
3209 case SIOCSIFMEM:
3210 case SIOCGIFHWADDR:
3211 case SIOCSIFHWADDR:
3212 case SIOCADDMULTI:
3213 case SIOCDELMULTI:
3214 case SIOCGIFINDEX:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003215 case SIOCGIFADDR:
3216 case SIOCSIFADDR:
3217 case SIOCSIFHWBROADCAST:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003218 case SIOCDIFADDR:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003219 case SIOCGIFBRDADDR:
3220 case SIOCSIFBRDADDR:
3221 case SIOCGIFDSTADDR:
3222 case SIOCSIFDSTADDR:
3223 case SIOCGIFNETMASK:
3224 case SIOCSIFNETMASK:
3225 case SIOCSIFPFLAGS:
3226 case SIOCGIFPFLAGS:
3227 case SIOCGIFTXQLEN:
3228 case SIOCSIFTXQLEN:
3229 case SIOCBRADDIF:
3230 case SIOCBRDELIF:
Arnd Bergmann9177efd2009-11-06 08:09:09 +00003231 case SIOCSIFNAME:
3232 case SIOCGMIIPHY:
3233 case SIOCGMIIREG:
3234 case SIOCSMIIREG:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003235 return dev_ifsioc(net, sock, cmd, argp);
Arnd Bergmann9177efd2009-11-06 08:09:09 +00003236
Arnd Bergmann6b960182009-11-06 23:10:54 -08003237 case SIOCSARP:
3238 case SIOCGARP:
3239 case SIOCDARP:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003240 case SIOCATMARK:
Arnd Bergmann9177efd2009-11-06 08:09:09 +00003241 return sock_do_ioctl(net, sock, cmd, arg);
3242 }
3243
Arnd Bergmann6b960182009-11-06 23:10:54 -08003244 return -ENOIOCTLCMD;
3245}
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003246
Eric Dumazet95c96172012-04-15 05:58:06 +00003247static long compat_sock_ioctl(struct file *file, unsigned int cmd,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07003248 unsigned long arg)
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003249{
3250 struct socket *sock = file->private_data;
3251 int ret = -ENOIOCTLCMD;
David S. Miller87de87d2008-06-03 09:14:03 -07003252 struct sock *sk;
3253 struct net *net;
3254
3255 sk = sock->sk;
3256 net = sock_net(sk);
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003257
3258 if (sock->ops->compat_ioctl)
3259 ret = sock->ops->compat_ioctl(sock, cmd, arg);
3260
David S. Miller87de87d2008-06-03 09:14:03 -07003261 if (ret == -ENOIOCTLCMD &&
3262 (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST))
3263 ret = compat_wext_handle_ioctl(net, cmd, arg);
3264
Arnd Bergmann6b960182009-11-06 23:10:54 -08003265 if (ret == -ENOIOCTLCMD)
3266 ret = compat_sock_ioctl_trans(file, sock, cmd, arg);
3267
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003268 return ret;
3269}
3270#endif
3271
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003272int kernel_bind(struct socket *sock, struct sockaddr *addr, int addrlen)
3273{
3274 return sock->ops->bind(sock, addr, addrlen);
3275}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003276EXPORT_SYMBOL(kernel_bind);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003277
3278int kernel_listen(struct socket *sock, int backlog)
3279{
3280 return sock->ops->listen(sock, backlog);
3281}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003282EXPORT_SYMBOL(kernel_listen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003283
3284int kernel_accept(struct socket *sock, struct socket **newsock, int flags)
3285{
3286 struct sock *sk = sock->sk;
3287 int err;
3288
3289 err = sock_create_lite(sk->sk_family, sk->sk_type, sk->sk_protocol,
3290 newsock);
3291 if (err < 0)
3292 goto done;
3293
3294 err = sock->ops->accept(sock, *newsock, flags);
3295 if (err < 0) {
3296 sock_release(*newsock);
Tony Battersbyfa8705b2007-10-10 21:09:04 -07003297 *newsock = NULL;
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003298 goto done;
3299 }
3300
3301 (*newsock)->ops = sock->ops;
Wei Yongjun1b085342008-12-18 19:35:10 -08003302 __module_get((*newsock)->ops->owner);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003303
3304done:
3305 return err;
3306}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003307EXPORT_SYMBOL(kernel_accept);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003308
3309int kernel_connect(struct socket *sock, struct sockaddr *addr, int addrlen,
YOSHIFUJI Hideaki4768fbc2007-02-09 23:25:31 +09003310 int flags)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003311{
3312 return sock->ops->connect(sock, addr, addrlen, flags);
3313}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003314EXPORT_SYMBOL(kernel_connect);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003315
3316int kernel_getsockname(struct socket *sock, struct sockaddr *addr,
3317 int *addrlen)
3318{
3319 return sock->ops->getname(sock, addr, addrlen, 0);
3320}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003321EXPORT_SYMBOL(kernel_getsockname);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003322
3323int kernel_getpeername(struct socket *sock, struct sockaddr *addr,
3324 int *addrlen)
3325{
3326 return sock->ops->getname(sock, addr, addrlen, 1);
3327}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003328EXPORT_SYMBOL(kernel_getpeername);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003329
3330int kernel_getsockopt(struct socket *sock, int level, int optname,
3331 char *optval, int *optlen)
3332{
3333 mm_segment_t oldfs = get_fs();
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003334 char __user *uoptval;
3335 int __user *uoptlen;
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003336 int err;
3337
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003338 uoptval = (char __user __force *) optval;
3339 uoptlen = (int __user __force *) optlen;
3340
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003341 set_fs(KERNEL_DS);
3342 if (level == SOL_SOCKET)
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003343 err = sock_getsockopt(sock, level, optname, uoptval, uoptlen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003344 else
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003345 err = sock->ops->getsockopt(sock, level, optname, uoptval,
3346 uoptlen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003347 set_fs(oldfs);
3348 return err;
3349}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003350EXPORT_SYMBOL(kernel_getsockopt);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003351
3352int kernel_setsockopt(struct socket *sock, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07003353 char *optval, unsigned int optlen)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003354{
3355 mm_segment_t oldfs = get_fs();
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003356 char __user *uoptval;
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003357 int err;
3358
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003359 uoptval = (char __user __force *) optval;
3360
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003361 set_fs(KERNEL_DS);
3362 if (level == SOL_SOCKET)
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003363 err = sock_setsockopt(sock, level, optname, uoptval, optlen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003364 else
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003365 err = sock->ops->setsockopt(sock, level, optname, uoptval,
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003366 optlen);
3367 set_fs(oldfs);
3368 return err;
3369}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003370EXPORT_SYMBOL(kernel_setsockopt);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003371
3372int kernel_sendpage(struct socket *sock, struct page *page, int offset,
3373 size_t size, int flags)
3374{
Herbert Xuf8451722010-05-24 00:12:34 -07003375 sock_update_classid(sock->sk);
3376
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003377 if (sock->ops->sendpage)
3378 return sock->ops->sendpage(sock, page, offset, size, flags);
3379
3380 return sock_no_sendpage(sock, page, offset, size, flags);
3381}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003382EXPORT_SYMBOL(kernel_sendpage);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003383
3384int kernel_sock_ioctl(struct socket *sock, int cmd, unsigned long arg)
3385{
3386 mm_segment_t oldfs = get_fs();
3387 int err;
3388
3389 set_fs(KERNEL_DS);
3390 err = sock->ops->ioctl(sock, cmd, arg);
3391 set_fs(oldfs);
3392
3393 return err;
3394}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003395EXPORT_SYMBOL(kernel_sock_ioctl);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003396
Trond Myklebust91cf45f2007-11-12 18:10:39 -08003397int kernel_sock_shutdown(struct socket *sock, enum sock_shutdown_cmd how)
3398{
3399 return sock->ops->shutdown(sock, how);
3400}
Trond Myklebust91cf45f2007-11-12 18:10:39 -08003401EXPORT_SYMBOL(kernel_sock_shutdown);