blob: ed50255143d546f5d54cc01ece787eb86ab6cb1f [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
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -0700184int move_addr_to_kernel(void __user *uaddr, int ulen, struct sockaddr *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
stephen hemminger11165f12010-10-18 14:27:29 +0000212static int move_addr_to_user(struct sockaddr *kaddr, int klen,
213 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
Eric Dumazet43815482010-04-29 11:01:49 +0000266
Eric Dumazet43815482010-04-29 11:01:49 +0000267
Eric Dumazet43815482010-04-29 11:01:49 +0000268static void wq_free_rcu(struct rcu_head *head)
269{
270 struct socket_wq *wq = container_of(head, struct socket_wq, rcu);
271
272 kfree(wq);
273}
274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275static void sock_destroy_inode(struct inode *inode)
276{
Eric Dumazet43815482010-04-29 11:01:49 +0000277 struct socket_alloc *ei;
Eric Dumazeteaefd112011-02-18 03:26:36 +0000278 struct socket_wq *wq;
Eric Dumazet43815482010-04-29 11:01:49 +0000279
280 ei = container_of(inode, struct socket_alloc, vfs_inode);
Eric Dumazeteaefd112011-02-18 03:26:36 +0000281 wq = rcu_dereference_protected(ei->socket.wq, 1);
282 call_rcu(&wq->rcu, wq_free_rcu);
Eric Dumazet43815482010-04-29 11:01:49 +0000283 kmem_cache_free(sock_inode_cachep, ei);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284}
285
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700286static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287{
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700288 struct socket_alloc *ei = (struct socket_alloc *)foo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
Christoph Lametera35afb82007-05-16 22:10:57 -0700290 inode_init_once(&ei->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291}
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700292
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293static int init_inodecache(void)
294{
295 sock_inode_cachep = kmem_cache_create("sock_inode_cache",
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700296 sizeof(struct socket_alloc),
297 0,
298 (SLAB_HWCACHE_ALIGN |
299 SLAB_RECLAIM_ACCOUNT |
300 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +0900301 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 if (sock_inode_cachep == NULL)
303 return -ENOMEM;
304 return 0;
305}
306
Alexey Dobriyanb87221d2009-09-21 17:01:09 -0700307static const struct super_operations sockfs_ops = {
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700308 .alloc_inode = sock_alloc_inode,
309 .destroy_inode = sock_destroy_inode,
310 .statfs = simple_statfs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311};
312
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700313/*
314 * sockfs_dname() is called from d_path().
315 */
316static char *sockfs_dname(struct dentry *dentry, char *buffer, int buflen)
317{
318 return dynamic_dname(dentry, buffer, buflen, "socket:[%lu]",
319 dentry->d_inode->i_ino);
320}
321
Al Viro3ba13d12009-02-20 06:02:22 +0000322static const struct dentry_operations sockfs_dentry_operations = {
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700323 .d_dname = sockfs_dname,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324};
325
Al Viroc74a1cb2011-01-12 16:59:34 -0500326static struct dentry *sockfs_mount(struct file_system_type *fs_type,
327 int flags, const char *dev_name, void *data)
328{
329 return mount_pseudo(fs_type, "socket:", &sockfs_ops,
330 &sockfs_dentry_operations, SOCKFS_MAGIC);
331}
332
333static struct vfsmount *sock_mnt __read_mostly;
334
335static struct file_system_type sock_fs_type = {
336 .name = "sockfs",
337 .mount = sockfs_mount,
338 .kill_sb = kill_anon_super,
339};
340
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341/*
342 * Obtains the first available file descriptor and sets it up for use.
343 *
David S. Miller39d8c1b2006-03-20 17:13:49 -0800344 * These functions create file structures and maps them to fd space
345 * of the current process. On success it returns file descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 * and file struct implicitly stored in sock->file.
347 * Note that another thread may close file descriptor before we return
348 * from this function. We use the fact that now we do not refer
349 * to socket after mapping. If one day we will need it, this
350 * function will increment ref. count on file by 1.
351 *
352 * In any case returned fd MAY BE not valid!
353 * This race condition is unavoidable
354 * with shared fd spaces, we cannot solve it inside kernel,
355 * but we take care of internal coherence yet.
356 */
357
Al Viro7cbe66b2009-08-05 19:59:08 +0400358static int sock_alloc_file(struct socket *sock, struct file **f, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359{
Al Viro7cbe66b2009-08-05 19:59:08 +0400360 struct qstr name = { .name = "" };
Al Viro2c48b9c2009-08-09 00:52:35 +0400361 struct path path;
Al Viro7cbe66b2009-08-05 19:59:08 +0400362 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 int fd;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800364
Ulrich Dreppera677a032008-07-23 21:29:17 -0700365 fd = get_unused_fd_flags(flags);
Al Viro7cbe66b2009-08-05 19:59:08 +0400366 if (unlikely(fd < 0))
367 return fd;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800368
Nick Piggin4b936882011-01-07 17:50:07 +1100369 path.dentry = d_alloc_pseudo(sock_mnt->mnt_sb, &name);
Al Viro2c48b9c2009-08-09 00:52:35 +0400370 if (unlikely(!path.dentry)) {
Al Viro7cbe66b2009-08-05 19:59:08 +0400371 put_unused_fd(fd);
David S. Miller39d8c1b2006-03-20 17:13:49 -0800372 return -ENOMEM;
Al Viro7cbe66b2009-08-05 19:59:08 +0400373 }
Al Viro2c48b9c2009-08-09 00:52:35 +0400374 path.mnt = mntget(sock_mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Al Viro2c48b9c2009-08-09 00:52:35 +0400376 d_instantiate(path.dentry, SOCK_INODE(sock));
Al Virocc3808f2009-08-06 09:43:59 +0400377 SOCK_INODE(sock)->i_fop = &socket_file_ops;
378
Al Viro2c48b9c2009-08-09 00:52:35 +0400379 file = alloc_file(&path, FMODE_READ | FMODE_WRITE,
Al Virocc3808f2009-08-06 09:43:59 +0400380 &socket_file_ops);
381 if (unlikely(!file)) {
382 /* drop dentry, keep inode */
Al Viro7de9c6ee2010-10-23 11:11:40 -0400383 ihold(path.dentry->d_inode);
Al Viro2c48b9c2009-08-09 00:52:35 +0400384 path_put(&path);
Al Virocc3808f2009-08-06 09:43:59 +0400385 put_unused_fd(fd);
386 return -ENFILE;
387 }
David S. Miller39d8c1b2006-03-20 17:13:49 -0800388
389 sock->file = file;
Ulrich Drepper77d27202008-07-23 21:29:35 -0700390 file->f_flags = O_RDWR | (flags & O_NONBLOCK);
David S. Miller39d8c1b2006-03-20 17:13:49 -0800391 file->f_pos = 0;
392 file->private_data = sock;
393
Al Viro7cbe66b2009-08-05 19:59:08 +0400394 *f = file;
395 return fd;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800396}
397
Ulrich Dreppera677a032008-07-23 21:29:17 -0700398int sock_map_fd(struct socket *sock, int flags)
David S. Miller39d8c1b2006-03-20 17:13:49 -0800399{
400 struct file *newfile;
Al Viro7cbe66b2009-08-05 19:59:08 +0400401 int fd = sock_alloc_file(sock, &newfile, flags);
David S. Miller39d8c1b2006-03-20 17:13:49 -0800402
Al Viro7cbe66b2009-08-05 19:59:08 +0400403 if (likely(fd >= 0))
David S. Miller39d8c1b2006-03-20 17:13:49 -0800404 fd_install(fd, newfile);
Al Viro7cbe66b2009-08-05 19:59:08 +0400405
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 return fd;
407}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700408EXPORT_SYMBOL(sock_map_fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800410static struct socket *sock_from_file(struct file *file, int *err)
411{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800412 if (file->f_op == &socket_file_ops)
413 return file->private_data; /* set in sock_map_fd */
414
Eric Dumazet23bb80d2007-02-08 14:59:57 -0800415 *err = -ENOTSOCK;
416 return NULL;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800417}
418
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419/**
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700420 * sockfd_lookup - Go from a file number to its socket slot
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 * @fd: file handle
422 * @err: pointer to an error code return
423 *
424 * The file handle passed in is locked and the socket it is bound
425 * too is returned. If an error occurs the err pointer is overwritten
426 * with a negative errno code and NULL is returned. The function checks
427 * for both invalid handles and passing a handle which is not a socket.
428 *
429 * On a success the socket object pointer is returned.
430 */
431
432struct socket *sockfd_lookup(int fd, int *err)
433{
434 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 struct socket *sock;
436
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700437 file = fget(fd);
438 if (!file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 *err = -EBADF;
440 return NULL;
441 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700442
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800443 sock = sock_from_file(file, err);
444 if (!sock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 fput(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 return sock;
447}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700448EXPORT_SYMBOL(sockfd_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800450static struct socket *sockfd_lookup_light(int fd, int *err, int *fput_needed)
451{
452 struct file *file;
453 struct socket *sock;
454
Hua Zhong36725582006-04-19 15:25:02 -0700455 *err = -EBADF;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800456 file = fget_light(fd, fput_needed);
457 if (file) {
458 sock = sock_from_file(file, err);
459 if (sock)
460 return sock;
461 fput_light(file, *fput_needed);
462 }
463 return NULL;
464}
465
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466/**
467 * sock_alloc - allocate a socket
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700468 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 * Allocate a new inode and socket object. The two are bound together
470 * and initialised. The socket is then returned. If we are out of inodes
471 * NULL is returned.
472 */
473
474static struct socket *sock_alloc(void)
475{
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700476 struct inode *inode;
477 struct socket *sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
479 inode = new_inode(sock_mnt->mnt_sb);
480 if (!inode)
481 return NULL;
482
483 sock = SOCKET_I(inode);
484
Eric Dumazet29a020d2009-09-15 02:39:20 -0700485 kmemcheck_annotate_bitfield(sock, type);
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400486 inode->i_ino = get_next_ino();
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700487 inode->i_mode = S_IFSOCK | S_IRWXUGO;
David Howells8192b0c2008-11-14 10:39:10 +1100488 inode->i_uid = current_fsuid();
489 inode->i_gid = current_fsgid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
Eric Dumazet4e694892009-04-04 16:41:09 -0700491 percpu_add(sockets_in_use, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 return sock;
493}
494
495/*
496 * In theory you can't get an open on this inode, but /proc provides
497 * a back door. Remember to keep it shut otherwise you'll let the
498 * creepy crawlies in.
499 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700500
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501static int sock_no_open(struct inode *irrelevant, struct file *dontcare)
502{
503 return -ENXIO;
504}
505
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800506const struct file_operations bad_sock_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 .owner = THIS_MODULE,
508 .open = sock_no_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200509 .llseek = noop_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510};
511
512/**
513 * sock_release - close a socket
514 * @sock: socket to close
515 *
516 * The socket is released from the protocol stack if it has a release
517 * callback, and the inode is then released if the socket is bound to
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700518 * an inode not a file.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521void sock_release(struct socket *sock)
522{
523 if (sock->ops) {
524 struct module *owner = sock->ops->owner;
525
526 sock->ops->release(sock);
527 sock->ops = NULL;
528 module_put(owner);
529 }
530
Eric Dumazeteaefd112011-02-18 03:26:36 +0000531 if (rcu_dereference_protected(sock->wq, 1)->fasync_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 printk(KERN_ERR "sock_release: fasync list not empty!\n");
533
Eric Dumazet4e694892009-04-04 16:41:09 -0700534 percpu_sub(sockets_in_use, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 if (!sock->file) {
536 iput(SOCK_INODE(sock));
537 return;
538 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700539 sock->file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700541EXPORT_SYMBOL(sock_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Oliver Hartkopp2244d072010-08-17 08:59:14 +0000543int sock_tx_timestamp(struct sock *sk, __u8 *tx_flags)
Patrick Ohly20d49472009-02-12 05:03:38 +0000544{
Oliver Hartkopp2244d072010-08-17 08:59:14 +0000545 *tx_flags = 0;
Patrick Ohly20d49472009-02-12 05:03:38 +0000546 if (sock_flag(sk, SOCK_TIMESTAMPING_TX_HARDWARE))
Oliver Hartkopp2244d072010-08-17 08:59:14 +0000547 *tx_flags |= SKBTX_HW_TSTAMP;
Patrick Ohly20d49472009-02-12 05:03:38 +0000548 if (sock_flag(sk, SOCK_TIMESTAMPING_TX_SOFTWARE))
Oliver Hartkopp2244d072010-08-17 08:59:14 +0000549 *tx_flags |= SKBTX_SW_TSTAMP;
Patrick Ohly20d49472009-02-12 05:03:38 +0000550 return 0;
551}
552EXPORT_SYMBOL(sock_tx_timestamp);
553
Anton Blanchard228e5482011-05-02 20:21:35 +0000554static inline int __sock_sendmsg_nosec(struct kiocb *iocb, struct socket *sock,
555 struct msghdr *msg, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556{
557 struct sock_iocb *si = kiocb_to_siocb(iocb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Herbert Xuf8451722010-05-24 00:12:34 -0700559 sock_update_classid(sock->sk);
560
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 si->sock = sock;
562 si->scm = NULL;
563 si->msg = msg;
564 si->size = size;
565
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 return sock->ops->sendmsg(iocb, sock, msg, size);
567}
568
Anton Blanchard228e5482011-05-02 20:21:35 +0000569static inline int __sock_sendmsg(struct kiocb *iocb, struct socket *sock,
570 struct msghdr *msg, size_t size)
571{
572 int err = security_socket_sendmsg(sock, msg, size);
573
574 return err ?: __sock_sendmsg_nosec(iocb, sock, msg, size);
575}
576
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577int sock_sendmsg(struct socket *sock, struct msghdr *msg, size_t size)
578{
579 struct kiocb iocb;
580 struct sock_iocb siocb;
581 int ret;
582
583 init_sync_kiocb(&iocb, NULL);
584 iocb.private = &siocb;
585 ret = __sock_sendmsg(&iocb, sock, msg, size);
586 if (-EIOCBQUEUED == ret)
587 ret = wait_on_sync_kiocb(&iocb);
588 return ret;
589}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700590EXPORT_SYMBOL(sock_sendmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
Anton Blanchard228e5482011-05-02 20:21:35 +0000592int sock_sendmsg_nosec(struct socket *sock, struct msghdr *msg, size_t size)
593{
594 struct kiocb iocb;
595 struct sock_iocb siocb;
596 int ret;
597
598 init_sync_kiocb(&iocb, NULL);
599 iocb.private = &siocb;
600 ret = __sock_sendmsg_nosec(&iocb, sock, msg, size);
601 if (-EIOCBQUEUED == ret)
602 ret = wait_on_sync_kiocb(&iocb);
603 return ret;
604}
605
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606int kernel_sendmsg(struct socket *sock, struct msghdr *msg,
607 struct kvec *vec, size_t num, size_t size)
608{
609 mm_segment_t oldfs = get_fs();
610 int result;
611
612 set_fs(KERNEL_DS);
613 /*
614 * the following is safe, since for compiler definitions of kvec and
615 * iovec are identical, yielding the same in-core layout and alignment
616 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700617 msg->msg_iov = (struct iovec *)vec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 msg->msg_iovlen = num;
619 result = sock_sendmsg(sock, msg, size);
620 set_fs(oldfs);
621 return result;
622}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700623EXPORT_SYMBOL(kernel_sendmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
Patrick Ohly20d49472009-02-12 05:03:38 +0000625static int ktime2ts(ktime_t kt, struct timespec *ts)
626{
627 if (kt.tv64) {
628 *ts = ktime_to_timespec(kt);
629 return 1;
630 } else {
631 return 0;
632 }
633}
634
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700635/*
636 * called from sock_recv_timestamp() if sock_flag(sk, SOCK_RCVTSTAMP)
637 */
638void __sock_recv_timestamp(struct msghdr *msg, struct sock *sk,
639 struct sk_buff *skb)
640{
Patrick Ohly20d49472009-02-12 05:03:38 +0000641 int need_software_tstamp = sock_flag(sk, SOCK_RCVTSTAMP);
642 struct timespec ts[3];
643 int empty = 1;
644 struct skb_shared_hwtstamps *shhwtstamps =
645 skb_hwtstamps(skb);
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700646
Patrick Ohly20d49472009-02-12 05:03:38 +0000647 /* Race occurred between timestamp enabling and packet
648 receiving. Fill in the current time for now. */
649 if (need_software_tstamp && skb->tstamp.tv64 == 0)
650 __net_timestamp(skb);
651
652 if (need_software_tstamp) {
653 if (!sock_flag(sk, SOCK_RCVTSTAMPNS)) {
654 struct timeval tv;
655 skb_get_timestamp(skb, &tv);
656 put_cmsg(msg, SOL_SOCKET, SCM_TIMESTAMP,
657 sizeof(tv), &tv);
658 } else {
Hagen Paul Pfeifer842509b2010-04-06 05:39:52 +0000659 skb_get_timestampns(skb, &ts[0]);
Patrick Ohly20d49472009-02-12 05:03:38 +0000660 put_cmsg(msg, SOL_SOCKET, SCM_TIMESTAMPNS,
Hagen Paul Pfeifer842509b2010-04-06 05:39:52 +0000661 sizeof(ts[0]), &ts[0]);
Patrick Ohly20d49472009-02-12 05:03:38 +0000662 }
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700663 }
Patrick Ohly20d49472009-02-12 05:03:38 +0000664
665
666 memset(ts, 0, sizeof(ts));
667 if (skb->tstamp.tv64 &&
668 sock_flag(sk, SOCK_TIMESTAMPING_SOFTWARE)) {
669 skb_get_timestampns(skb, ts + 0);
670 empty = 0;
671 }
672 if (shhwtstamps) {
673 if (sock_flag(sk, SOCK_TIMESTAMPING_SYS_HARDWARE) &&
674 ktime2ts(shhwtstamps->syststamp, ts + 1))
675 empty = 0;
676 if (sock_flag(sk, SOCK_TIMESTAMPING_RAW_HARDWARE) &&
677 ktime2ts(shhwtstamps->hwtstamp, ts + 2))
678 empty = 0;
679 }
680 if (!empty)
681 put_cmsg(msg, SOL_SOCKET,
682 SCM_TIMESTAMPING, sizeof(ts), &ts);
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700683}
Arnaldo Carvalho de Melo7c81fd82007-03-10 00:39:35 -0300684EXPORT_SYMBOL_GPL(__sock_recv_timestamp);
685
stephen hemminger11165f12010-10-18 14:27:29 +0000686static inline void sock_recv_drops(struct msghdr *msg, struct sock *sk,
687 struct sk_buff *skb)
Neil Horman3b885782009-10-12 13:26:31 -0700688{
689 if (sock_flag(sk, SOCK_RXQ_OVFL) && skb && skb->dropcount)
690 put_cmsg(msg, SOL_SOCKET, SO_RXQ_OVFL,
691 sizeof(__u32), &skb->dropcount);
692}
693
Eric Dumazet767dd032010-04-28 19:14:43 +0000694void __sock_recv_ts_and_drops(struct msghdr *msg, struct sock *sk,
Neil Horman3b885782009-10-12 13:26:31 -0700695 struct sk_buff *skb)
696{
697 sock_recv_timestamp(msg, sk, skb);
698 sock_recv_drops(msg, sk, skb);
699}
Eric Dumazet767dd032010-04-28 19:14:43 +0000700EXPORT_SYMBOL_GPL(__sock_recv_ts_and_drops);
Neil Horman3b885782009-10-12 13:26:31 -0700701
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -0700702static inline int __sock_recvmsg_nosec(struct kiocb *iocb, struct socket *sock,
703 struct msghdr *msg, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 struct sock_iocb *si = kiocb_to_siocb(iocb);
706
Herbert Xuf8451722010-05-24 00:12:34 -0700707 sock_update_classid(sock->sk);
708
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 si->sock = sock;
710 si->scm = NULL;
711 si->msg = msg;
712 si->size = size;
713 si->flags = flags;
714
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 return sock->ops->recvmsg(iocb, sock, msg, size, flags);
716}
717
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -0700718static inline int __sock_recvmsg(struct kiocb *iocb, struct socket *sock,
719 struct msghdr *msg, size_t size, int flags)
720{
721 int err = security_socket_recvmsg(sock, msg, size, flags);
722
723 return err ?: __sock_recvmsg_nosec(iocb, sock, msg, size, flags);
724}
725
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700726int sock_recvmsg(struct socket *sock, struct msghdr *msg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 size_t size, int flags)
728{
729 struct kiocb iocb;
730 struct sock_iocb siocb;
731 int ret;
732
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700733 init_sync_kiocb(&iocb, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 iocb.private = &siocb;
735 ret = __sock_recvmsg(&iocb, sock, msg, size, flags);
736 if (-EIOCBQUEUED == ret)
737 ret = wait_on_sync_kiocb(&iocb);
738 return ret;
739}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700740EXPORT_SYMBOL(sock_recvmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -0700742static int sock_recvmsg_nosec(struct socket *sock, struct msghdr *msg,
743 size_t size, int flags)
744{
745 struct kiocb iocb;
746 struct sock_iocb siocb;
747 int ret;
748
749 init_sync_kiocb(&iocb, NULL);
750 iocb.private = &siocb;
751 ret = __sock_recvmsg_nosec(&iocb, sock, msg, size, flags);
752 if (-EIOCBQUEUED == ret)
753 ret = wait_on_sync_kiocb(&iocb);
754 return ret;
755}
756
Martin Lucinac1249c02010-12-10 00:04:05 +0000757/**
758 * kernel_recvmsg - Receive a message from a socket (kernel space)
759 * @sock: The socket to receive the message from
760 * @msg: Received message
761 * @vec: Input s/g array for message data
762 * @num: Size of input s/g array
763 * @size: Number of bytes to read
764 * @flags: Message flags (MSG_DONTWAIT, etc...)
765 *
766 * On return the msg structure contains the scatter/gather array passed in the
767 * vec argument. The array is modified so that it consists of the unfilled
768 * portion of the original array.
769 *
770 * The returned value is the total number of bytes received, or an error.
771 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700772int kernel_recvmsg(struct socket *sock, struct msghdr *msg,
773 struct kvec *vec, size_t num, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774{
775 mm_segment_t oldfs = get_fs();
776 int result;
777
778 set_fs(KERNEL_DS);
779 /*
780 * the following is safe, since for compiler definitions of kvec and
781 * iovec are identical, yielding the same in-core layout and alignment
782 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700783 msg->msg_iov = (struct iovec *)vec, msg->msg_iovlen = num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 result = sock_recvmsg(sock, msg, size, flags);
785 set_fs(oldfs);
786 return result;
787}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700788EXPORT_SYMBOL(kernel_recvmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
790static void sock_aio_dtor(struct kiocb *iocb)
791{
792 kfree(iocb->private);
793}
794
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -0300795static ssize_t sock_sendpage(struct file *file, struct page *page,
796 int offset, size_t size, loff_t *ppos, int more)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797{
798 struct socket *sock;
799 int flags;
800
Eric Dumazetb69aee02005-09-06 14:42:45 -0700801 sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
803 flags = !(file->f_flags & O_NONBLOCK) ? 0 : MSG_DONTWAIT;
804 if (more)
805 flags |= MSG_MORE;
806
Linus Torvaldse6949582009-08-13 08:28:36 -0700807 return kernel_sendpage(sock, page, offset, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808}
809
Jens Axboe9c55e012007-11-06 23:30:13 -0800810static ssize_t sock_splice_read(struct file *file, loff_t *ppos,
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700811 struct pipe_inode_info *pipe, size_t len,
Jens Axboe9c55e012007-11-06 23:30:13 -0800812 unsigned int flags)
813{
814 struct socket *sock = file->private_data;
815
Rémi Denis-Courmont997b37d2008-02-15 02:35:45 -0800816 if (unlikely(!sock->ops->splice_read))
817 return -EINVAL;
818
Herbert Xuf8451722010-05-24 00:12:34 -0700819 sock_update_classid(sock->sk);
820
Jens Axboe9c55e012007-11-06 23:30:13 -0800821 return sock->ops->splice_read(sock, ppos, pipe, len, flags);
822}
823
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800824static struct sock_iocb *alloc_sock_iocb(struct kiocb *iocb,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700825 struct sock_iocb *siocb)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800826{
827 if (!is_sync_kiocb(iocb)) {
828 siocb = kmalloc(sizeof(*siocb), GFP_KERNEL);
829 if (!siocb)
830 return NULL;
831 iocb->ki_dtor = sock_aio_dtor;
832 }
833
834 siocb->kiocb = iocb;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800835 iocb->private = siocb;
836 return siocb;
837}
838
839static ssize_t do_sock_read(struct msghdr *msg, struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -0700840 struct file *file, const struct iovec *iov,
841 unsigned long nr_segs)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800842{
843 struct socket *sock = file->private_data;
844 size_t size = 0;
845 int i;
846
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700847 for (i = 0; i < nr_segs; i++)
848 size += iov[i].iov_len;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800849
850 msg->msg_name = NULL;
851 msg->msg_namelen = 0;
852 msg->msg_control = NULL;
853 msg->msg_controllen = 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700854 msg->msg_iov = (struct iovec *)iov;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800855 msg->msg_iovlen = nr_segs;
856 msg->msg_flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
857
858 return __sock_recvmsg(iocb, sock, msg, size, msg->msg_flags);
859}
860
Badari Pulavarty027445c2006-09-30 23:28:46 -0700861static ssize_t sock_aio_read(struct kiocb *iocb, const struct iovec *iov,
862 unsigned long nr_segs, loff_t pos)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800863{
864 struct sock_iocb siocb, *x;
865
866 if (pos != 0)
867 return -ESPIPE;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700868
869 if (iocb->ki_left == 0) /* Match SYS5 behaviour */
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800870 return 0;
871
Badari Pulavarty027445c2006-09-30 23:28:46 -0700872
873 x = alloc_sock_iocb(iocb, &siocb);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800874 if (!x)
875 return -ENOMEM;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700876 return do_sock_read(&x->async_msg, iocb, iocb->ki_filp, iov, nr_segs);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800877}
878
879static ssize_t do_sock_write(struct msghdr *msg, struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -0700880 struct file *file, const struct iovec *iov,
881 unsigned long nr_segs)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800882{
883 struct socket *sock = file->private_data;
884 size_t size = 0;
885 int i;
886
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700887 for (i = 0; i < nr_segs; i++)
888 size += iov[i].iov_len;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800889
890 msg->msg_name = NULL;
891 msg->msg_namelen = 0;
892 msg->msg_control = NULL;
893 msg->msg_controllen = 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700894 msg->msg_iov = (struct iovec *)iov;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800895 msg->msg_iovlen = nr_segs;
896 msg->msg_flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
897 if (sock->type == SOCK_SEQPACKET)
898 msg->msg_flags |= MSG_EOR;
899
900 return __sock_sendmsg(iocb, sock, msg, size);
901}
902
Badari Pulavarty027445c2006-09-30 23:28:46 -0700903static ssize_t sock_aio_write(struct kiocb *iocb, const struct iovec *iov,
904 unsigned long nr_segs, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905{
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800906 struct sock_iocb siocb, *x;
907
908 if (pos != 0)
909 return -ESPIPE;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700910
Badari Pulavarty027445c2006-09-30 23:28:46 -0700911 x = alloc_sock_iocb(iocb, &siocb);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800912 if (!x)
913 return -ENOMEM;
914
Badari Pulavarty027445c2006-09-30 23:28:46 -0700915 return do_sock_write(&x->async_msg, iocb, iocb->ki_filp, iov, nr_segs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916}
917
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918/*
919 * Atomic setting of ioctl hooks to avoid race
920 * with module unload.
921 */
922
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800923static DEFINE_MUTEX(br_ioctl_mutex);
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700924static int (*br_ioctl_hook) (struct net *, unsigned int cmd, void __user *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
Eric W. Biederman881d9662007-09-17 11:56:21 -0700926void brioctl_set(int (*hook) (struct net *, unsigned int, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800928 mutex_lock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 br_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800930 mutex_unlock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931}
932EXPORT_SYMBOL(brioctl_set);
933
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800934static DEFINE_MUTEX(vlan_ioctl_mutex);
Eric W. Biederman881d9662007-09-17 11:56:21 -0700935static int (*vlan_ioctl_hook) (struct net *, void __user *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
Eric W. Biederman881d9662007-09-17 11:56:21 -0700937void vlan_ioctl_set(int (*hook) (struct net *, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800939 mutex_lock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 vlan_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800941 mutex_unlock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942}
943EXPORT_SYMBOL(vlan_ioctl_set);
944
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800945static DEFINE_MUTEX(dlci_ioctl_mutex);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700946static int (*dlci_ioctl_hook) (unsigned int, void __user *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700948void dlci_ioctl_set(int (*hook) (unsigned int, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800950 mutex_lock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 dlci_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800952 mutex_unlock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953}
954EXPORT_SYMBOL(dlci_ioctl_set);
955
Arnd Bergmann6b960182009-11-06 23:10:54 -0800956static long sock_do_ioctl(struct net *net, struct socket *sock,
957 unsigned int cmd, unsigned long arg)
958{
959 int err;
960 void __user *argp = (void __user *)arg;
961
962 err = sock->ops->ioctl(sock, cmd, arg);
963
964 /*
965 * If this ioctl is unknown try to hand it down
966 * to the NIC driver.
967 */
968 if (err == -ENOIOCTLCMD)
969 err = dev_ioctl(net, cmd, argp);
970
971 return err;
972}
973
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974/*
975 * With an ioctl, arg may well be a user mode pointer, but we don't know
976 * what to do with it - that's up to the protocol still.
977 */
978
979static long sock_ioctl(struct file *file, unsigned cmd, unsigned long arg)
980{
981 struct socket *sock;
Eric W. Biederman881d9662007-09-17 11:56:21 -0700982 struct sock *sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 void __user *argp = (void __user *)arg;
984 int pid, err;
Eric W. Biederman881d9662007-09-17 11:56:21 -0700985 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
Eric Dumazetb69aee02005-09-06 14:42:45 -0700987 sock = file->private_data;
Eric W. Biederman881d9662007-09-17 11:56:21 -0700988 sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900989 net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 if (cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15)) {
Eric W. Biederman881d9662007-09-17 11:56:21 -0700991 err = dev_ioctl(net, cmd, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 } else
Johannes Berg3d23e342009-09-29 23:27:28 +0200993#ifdef CONFIG_WEXT_CORE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 if (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST) {
Eric W. Biederman881d9662007-09-17 11:56:21 -0700995 err = dev_ioctl(net, cmd, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 } else
Johannes Berg3d23e342009-09-29 23:27:28 +0200997#endif
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700998 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 case FIOSETOWN:
1000 case SIOCSPGRP:
1001 err = -EFAULT;
1002 if (get_user(pid, (int __user *)argp))
1003 break;
1004 err = f_setown(sock->file, pid, 1);
1005 break;
1006 case FIOGETOWN:
1007 case SIOCGPGRP:
Eric W. Biederman609d7fa2006-10-02 02:17:15 -07001008 err = put_user(f_getown(sock->file),
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001009 (int __user *)argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 break;
1011 case SIOCGIFBR:
1012 case SIOCSIFBR:
1013 case SIOCBRADDBR:
1014 case SIOCBRDELBR:
1015 err = -ENOPKG;
1016 if (!br_ioctl_hook)
1017 request_module("bridge");
1018
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001019 mutex_lock(&br_ioctl_mutex);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001020 if (br_ioctl_hook)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001021 err = br_ioctl_hook(net, cmd, argp);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001022 mutex_unlock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 break;
1024 case SIOCGIFVLAN:
1025 case SIOCSIFVLAN:
1026 err = -ENOPKG;
1027 if (!vlan_ioctl_hook)
1028 request_module("8021q");
1029
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001030 mutex_lock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 if (vlan_ioctl_hook)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001032 err = vlan_ioctl_hook(net, argp);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001033 mutex_unlock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 case SIOCADDDLCI:
1036 case SIOCDELDLCI:
1037 err = -ENOPKG;
1038 if (!dlci_ioctl_hook)
1039 request_module("dlci");
1040
Pavel Emelyanov7512cbf2008-03-21 15:58:52 -07001041 mutex_lock(&dlci_ioctl_mutex);
1042 if (dlci_ioctl_hook)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 err = dlci_ioctl_hook(cmd, argp);
Pavel Emelyanov7512cbf2008-03-21 15:58:52 -07001044 mutex_unlock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 break;
1046 default:
Arnd Bergmann6b960182009-11-06 23:10:54 -08001047 err = sock_do_ioctl(net, sock, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001049 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 return err;
1051}
1052
1053int sock_create_lite(int family, int type, int protocol, struct socket **res)
1054{
1055 int err;
1056 struct socket *sock = NULL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001057
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 err = security_socket_create(family, type, protocol, 1);
1059 if (err)
1060 goto out;
1061
1062 sock = sock_alloc();
1063 if (!sock) {
1064 err = -ENOMEM;
1065 goto out;
1066 }
1067
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 sock->type = type;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001069 err = security_socket_post_create(sock, family, type, protocol, 1);
1070 if (err)
1071 goto out_release;
1072
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073out:
1074 *res = sock;
1075 return err;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001076out_release:
1077 sock_release(sock);
1078 sock = NULL;
1079 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001081EXPORT_SYMBOL(sock_create_lite);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
1083/* No kernel lock held - perfect */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001084static unsigned int sock_poll(struct file *file, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085{
1086 struct socket *sock;
1087
1088 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001089 * We can't return errors to poll, so it's either yes or no.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 */
Eric Dumazetb69aee02005-09-06 14:42:45 -07001091 sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 return sock->ops->poll(file, sock, wait);
1093}
1094
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001095static int sock_mmap(struct file *file, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096{
Eric Dumazetb69aee02005-09-06 14:42:45 -07001097 struct socket *sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
1099 return sock->ops->mmap(file, sock, vma);
1100}
1101
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001102static int sock_close(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103{
1104 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001105 * It was possible the inode is NULL we were
1106 * closing an unfinished socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 */
1108
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001109 if (!inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 printk(KERN_DEBUG "sock_close: NULL inode\n");
1111 return 0;
1112 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 sock_release(SOCKET_I(inode));
1114 return 0;
1115}
1116
1117/*
1118 * Update the socket async list
1119 *
1120 * Fasync_list locking strategy.
1121 *
1122 * 1. fasync_list is modified only under process context socket lock
1123 * i.e. under semaphore.
1124 * 2. fasync_list is used under read_lock(&sk->sk_callback_lock)
Eric Dumazet989a2972010-04-14 09:55:35 +00001125 * or under socket lock
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 */
1127
1128static int sock_fasync(int fd, struct file *filp, int on)
1129{
Eric Dumazet989a2972010-04-14 09:55:35 +00001130 struct socket *sock = filp->private_data;
1131 struct sock *sk = sock->sk;
Eric Dumazeteaefd112011-02-18 03:26:36 +00001132 struct socket_wq *wq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133
Eric Dumazet989a2972010-04-14 09:55:35 +00001134 if (sk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136
1137 lock_sock(sk);
Eric Dumazeteaefd112011-02-18 03:26:36 +00001138 wq = rcu_dereference_protected(sock->wq, sock_owned_by_user(sk));
1139 fasync_helper(fd, filp, on, &wq->fasync_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140
Eric Dumazeteaefd112011-02-18 03:26:36 +00001141 if (!wq->fasync_list)
Eric Dumazet989a2972010-04-14 09:55:35 +00001142 sock_reset_flag(sk, SOCK_FASYNC);
Jonathan Corbet76398422009-02-01 14:26:59 -07001143 else
Eric Dumazetbcdce712009-10-06 17:28:29 -07001144 sock_set_flag(sk, SOCK_FASYNC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
Eric Dumazet989a2972010-04-14 09:55:35 +00001146 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 return 0;
1148}
1149
Eric Dumazet43815482010-04-29 11:01:49 +00001150/* This function may be called only under socket lock or callback_lock or rcu_lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151
1152int sock_wake_async(struct socket *sock, int how, int band)
1153{
Eric Dumazet43815482010-04-29 11:01:49 +00001154 struct socket_wq *wq;
1155
1156 if (!sock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 return -1;
Eric Dumazet43815482010-04-29 11:01:49 +00001158 rcu_read_lock();
1159 wq = rcu_dereference(sock->wq);
1160 if (!wq || !wq->fasync_list) {
1161 rcu_read_unlock();
1162 return -1;
1163 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001164 switch (how) {
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001165 case SOCK_WAKE_WAITD:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 if (test_bit(SOCK_ASYNC_WAITDATA, &sock->flags))
1167 break;
1168 goto call_kill;
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001169 case SOCK_WAKE_SPACE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 if (!test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sock->flags))
1171 break;
1172 /* fall through */
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001173 case SOCK_WAKE_IO:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001174call_kill:
Eric Dumazet43815482010-04-29 11:01:49 +00001175 kill_fasync(&wq->fasync_list, SIGIO, band);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 break;
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001177 case SOCK_WAKE_URG:
Eric Dumazet43815482010-04-29 11:01:49 +00001178 kill_fasync(&wq->fasync_list, SIGURG, band);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 }
Eric Dumazet43815482010-04-29 11:01:49 +00001180 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 return 0;
1182}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001183EXPORT_SYMBOL(sock_wake_async);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184
Pavel Emelyanov721db932010-09-29 16:06:32 +04001185int __sock_create(struct net *net, int family, int type, int protocol,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001186 struct socket **res, int kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187{
1188 int err;
1189 struct socket *sock;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001190 const struct net_proto_family *pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
1192 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001193 * Check protocol is in range
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 */
1195 if (family < 0 || family >= NPROTO)
1196 return -EAFNOSUPPORT;
1197 if (type < 0 || type >= SOCK_MAX)
1198 return -EINVAL;
1199
1200 /* Compatibility.
1201
1202 This uglymoron is moved from INET layer to here to avoid
1203 deadlock in module load.
1204 */
1205 if (family == PF_INET && type == SOCK_PACKET) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001206 static int warned;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 if (!warned) {
1208 warned = 1;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001209 printk(KERN_INFO "%s uses obsolete (PF_INET,SOCK_PACKET)\n",
1210 current->comm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 }
1212 family = PF_PACKET;
1213 }
1214
1215 err = security_socket_create(family, type, protocol, kern);
1216 if (err)
1217 return err;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001218
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001219 /*
1220 * Allocate the socket and allow the family to set things up. if
1221 * the protocol is 0, the family is instructed to select an appropriate
1222 * default.
1223 */
1224 sock = sock_alloc();
1225 if (!sock) {
1226 if (net_ratelimit())
1227 printk(KERN_WARNING "socket: no more sockets\n");
1228 return -ENFILE; /* Not exactly a match, but its the
1229 closest posix thing */
1230 }
1231
1232 sock->type = type;
1233
Johannes Berg95a5afc2008-10-16 15:24:51 -07001234#ifdef CONFIG_MODULES
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001235 /* Attempt to load a protocol module if the find failed.
1236 *
1237 * 12/09/1996 Marcin: But! this makes REALLY only sense, if the user
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 * requested real, full-featured networking support upon configuration.
1239 * Otherwise module support will break!
1240 */
Eric Dumazet190683a2010-11-10 10:50:44 +00001241 if (rcu_access_pointer(net_families[family]) == NULL)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001242 request_module("net-pf-%d", family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243#endif
1244
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001245 rcu_read_lock();
1246 pf = rcu_dereference(net_families[family]);
1247 err = -EAFNOSUPPORT;
1248 if (!pf)
1249 goto out_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250
1251 /*
1252 * We will call the ->create function, that possibly is in a loadable
1253 * module, so we have to bump that loadable module refcnt first.
1254 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001255 if (!try_module_get(pf->owner))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 goto out_release;
1257
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001258 /* Now protected by module ref count */
1259 rcu_read_unlock();
1260
Eric Paris3f378b62009-11-05 22:18:14 -08001261 err = pf->create(net, sock, protocol, kern);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001262 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 goto out_module_put;
Frank Filza79af592005-09-27 15:23:38 -07001264
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 /*
1266 * Now to bump the refcnt of the [loadable] module that owns this
1267 * socket at sock_release time we decrement its refcnt.
1268 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001269 if (!try_module_get(sock->ops->owner))
1270 goto out_module_busy;
1271
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 /*
1273 * Now that we're done with the ->create function, the [loadable]
1274 * module can have its refcnt decremented
1275 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001276 module_put(pf->owner);
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001277 err = security_socket_post_create(sock, family, type, protocol, kern);
1278 if (err)
Herbert Xu3b185522007-08-15 14:46:02 -07001279 goto out_sock_release;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001280 *res = sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001282 return 0;
1283
1284out_module_busy:
1285 err = -EAFNOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286out_module_put:
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001287 sock->ops = NULL;
1288 module_put(pf->owner);
1289out_sock_release:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 sock_release(sock);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001291 return err;
1292
1293out_release:
1294 rcu_read_unlock();
1295 goto out_sock_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296}
Pavel Emelyanov721db932010-09-29 16:06:32 +04001297EXPORT_SYMBOL(__sock_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298
1299int sock_create(int family, int type, int protocol, struct socket **res)
1300{
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001301 return __sock_create(current->nsproxy->net_ns, family, type, protocol, res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001303EXPORT_SYMBOL(sock_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
1305int sock_create_kern(int family, int type, int protocol, struct socket **res)
1306{
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001307 return __sock_create(&init_net, family, type, protocol, res, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001309EXPORT_SYMBOL(sock_create_kern);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001311SYSCALL_DEFINE3(socket, int, family, int, type, int, protocol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312{
1313 int retval;
1314 struct socket *sock;
Ulrich Dreppera677a032008-07-23 21:29:17 -07001315 int flags;
1316
Ulrich Dreppere38b36f2008-07-23 21:29:42 -07001317 /* Check the SOCK_* constants for consistency. */
1318 BUILD_BUG_ON(SOCK_CLOEXEC != O_CLOEXEC);
1319 BUILD_BUG_ON((SOCK_MAX | SOCK_TYPE_MASK) != SOCK_TYPE_MASK);
1320 BUILD_BUG_ON(SOCK_CLOEXEC & SOCK_TYPE_MASK);
1321 BUILD_BUG_ON(SOCK_NONBLOCK & SOCK_TYPE_MASK);
1322
Ulrich Dreppera677a032008-07-23 21:29:17 -07001323 flags = type & ~SOCK_TYPE_MASK;
Ulrich Drepper77d27202008-07-23 21:29:35 -07001324 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Dreppera677a032008-07-23 21:29:17 -07001325 return -EINVAL;
1326 type &= SOCK_TYPE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001328 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1329 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1330
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 retval = sock_create(family, type, protocol, &sock);
1332 if (retval < 0)
1333 goto out;
1334
Ulrich Drepper77d27202008-07-23 21:29:35 -07001335 retval = sock_map_fd(sock, flags & (O_CLOEXEC | O_NONBLOCK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 if (retval < 0)
1337 goto out_release;
1338
1339out:
1340 /* It may be already another descriptor 8) Not kernel problem. */
1341 return retval;
1342
1343out_release:
1344 sock_release(sock);
1345 return retval;
1346}
1347
1348/*
1349 * Create a pair of connected sockets.
1350 */
1351
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001352SYSCALL_DEFINE4(socketpair, int, family, int, type, int, protocol,
1353 int __user *, usockvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354{
1355 struct socket *sock1, *sock2;
1356 int fd1, fd2, err;
Al Virodb349502007-02-07 01:48:00 -05001357 struct file *newfile1, *newfile2;
Ulrich Dreppera677a032008-07-23 21:29:17 -07001358 int flags;
1359
1360 flags = type & ~SOCK_TYPE_MASK;
Ulrich Drepper77d27202008-07-23 21:29:35 -07001361 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Dreppera677a032008-07-23 21:29:17 -07001362 return -EINVAL;
1363 type &= SOCK_TYPE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001365 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1366 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1367
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 /*
1369 * Obtain the first socket and check if the underlying protocol
1370 * supports the socketpair call.
1371 */
1372
1373 err = sock_create(family, type, protocol, &sock1);
1374 if (err < 0)
1375 goto out;
1376
1377 err = sock_create(family, type, protocol, &sock2);
1378 if (err < 0)
1379 goto out_release_1;
1380
1381 err = sock1->ops->socketpair(sock1, sock2);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001382 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 goto out_release_both;
1384
Al Viro7cbe66b2009-08-05 19:59:08 +04001385 fd1 = sock_alloc_file(sock1, &newfile1, flags);
David S. Millerbf3c23d2007-10-29 21:54:02 -07001386 if (unlikely(fd1 < 0)) {
1387 err = fd1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 goto out_release_both;
David S. Millerbf3c23d2007-10-29 21:54:02 -07001389 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
Al Viro7cbe66b2009-08-05 19:59:08 +04001391 fd2 = sock_alloc_file(sock2, &newfile2, flags);
Al Viro198de4d2009-08-05 19:29:23 +04001392 if (unlikely(fd2 < 0)) {
1393 err = fd2;
1394 fput(newfile1);
1395 put_unused_fd(fd1);
1396 sock_release(sock2);
1397 goto out;
Al Virodb349502007-02-07 01:48:00 -05001398 }
1399
Al Viro157cf642008-12-14 04:57:47 -05001400 audit_fd_pair(fd1, fd2);
Al Virodb349502007-02-07 01:48:00 -05001401 fd_install(fd1, newfile1);
1402 fd_install(fd2, newfile2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 /* fd1 and fd2 may be already another descriptors.
1404 * Not kernel problem.
1405 */
1406
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001407 err = put_user(fd1, &usockvec[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 if (!err)
1409 err = put_user(fd2, &usockvec[1]);
1410 if (!err)
1411 return 0;
1412
1413 sys_close(fd2);
1414 sys_close(fd1);
1415 return err;
1416
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417out_release_both:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001418 sock_release(sock2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419out_release_1:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001420 sock_release(sock1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421out:
1422 return err;
1423}
1424
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425/*
1426 * Bind a name to a socket. Nothing much to do here since it's
1427 * the protocol's responsibility to handle the local address.
1428 *
1429 * We move the socket address to kernel space before we call
1430 * the protocol layer (having also checked the address is ok).
1431 */
1432
Heiko Carstens20f37032009-01-14 14:14:23 +01001433SYSCALL_DEFINE3(bind, int, fd, struct sockaddr __user *, umyaddr, int, addrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434{
1435 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001436 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001437 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001439 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001440 if (sock) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001441 err = move_addr_to_kernel(umyaddr, addrlen, (struct sockaddr *)&address);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001442 if (err >= 0) {
1443 err = security_socket_bind(sock,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001444 (struct sockaddr *)&address,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001445 addrlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001446 if (!err)
1447 err = sock->ops->bind(sock,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001448 (struct sockaddr *)
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001449 &address, addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 }
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001451 fput_light(sock->file, fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001452 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 return err;
1454}
1455
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456/*
1457 * Perform a listen. Basically, we allow the protocol to do anything
1458 * necessary for a listen, and if that works, we mark the socket as
1459 * ready for listening.
1460 */
1461
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001462SYSCALL_DEFINE2(listen, int, fd, int, backlog)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463{
1464 struct socket *sock;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001465 int err, fput_needed;
Pavel Emelyanovb8e1f9b2007-12-08 00:12:33 -08001466 int somaxconn;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001467
1468 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1469 if (sock) {
Pavel Emelyanov8efa6e92008-03-31 19:41:14 -07001470 somaxconn = sock_net(sock->sk)->core.sysctl_somaxconn;
Pavel Emelyanovb8e1f9b2007-12-08 00:12:33 -08001471 if ((unsigned)backlog > somaxconn)
1472 backlog = somaxconn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473
1474 err = security_socket_listen(sock, backlog);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001475 if (!err)
1476 err = sock->ops->listen(sock, backlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001478 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 }
1480 return err;
1481}
1482
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483/*
1484 * For accept, we attempt to create a new socket, set up the link
1485 * with the client, wake up the client, then return the new
1486 * connected fd. We collect the address of the connector in kernel
1487 * space and move it to user at the very end. This is unclean because
1488 * we open the socket then return an error.
1489 *
1490 * 1003.1g adds the ability to recvmsg() to query connection pending
1491 * status to recvmsg. We need to add that support in a way thats
1492 * clean when we restucture accept also.
1493 */
1494
Heiko Carstens20f37032009-01-14 14:14:23 +01001495SYSCALL_DEFINE4(accept4, int, fd, struct sockaddr __user *, upeer_sockaddr,
1496 int __user *, upeer_addrlen, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497{
1498 struct socket *sock, *newsock;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001499 struct file *newfile;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001500 int err, len, newfd, fput_needed;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001501 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502
Ulrich Drepper77d27202008-07-23 21:29:35 -07001503 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001504 return -EINVAL;
1505
1506 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1507 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1508
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001509 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 if (!sock)
1511 goto out;
1512
1513 err = -ENFILE;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001514 newsock = sock_alloc();
1515 if (!newsock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 goto out_put;
1517
1518 newsock->type = sock->type;
1519 newsock->ops = sock->ops;
1520
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 /*
1522 * We don't need try_module_get here, as the listening socket (sock)
1523 * has the protocol module (sock->ops->owner) held.
1524 */
1525 __module_get(newsock->ops->owner);
1526
Al Viro7cbe66b2009-08-05 19:59:08 +04001527 newfd = sock_alloc_file(newsock, &newfile, flags);
David S. Miller39d8c1b2006-03-20 17:13:49 -08001528 if (unlikely(newfd < 0)) {
1529 err = newfd;
David S. Miller9a1875e2006-04-01 12:48:36 -08001530 sock_release(newsock);
1531 goto out_put;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001532 }
1533
Frank Filza79af592005-09-27 15:23:38 -07001534 err = security_socket_accept(sock, newsock);
1535 if (err)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001536 goto out_fd;
Frank Filza79af592005-09-27 15:23:38 -07001537
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 err = sock->ops->accept(sock, newsock, sock->file->f_flags);
1539 if (err < 0)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001540 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541
1542 if (upeer_sockaddr) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001543 if (newsock->ops->getname(newsock, (struct sockaddr *)&address,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001544 &len, 2) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 err = -ECONNABORTED;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001546 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 }
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001548 err = move_addr_to_user((struct sockaddr *)&address,
1549 len, upeer_sockaddr, upeer_addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 if (err < 0)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001551 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 }
1553
1554 /* File flags are not inherited via accept() unlike another OSes. */
1555
David S. Miller39d8c1b2006-03-20 17:13:49 -08001556 fd_install(newfd, newfile);
1557 err = newfd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001560 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561out:
1562 return err;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001563out_fd:
David S. Miller9606a212006-04-01 01:00:14 -08001564 fput(newfile);
David S. Miller39d8c1b2006-03-20 17:13:49 -08001565 put_unused_fd(newfd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 goto out_put;
1567}
1568
Heiko Carstens20f37032009-01-14 14:14:23 +01001569SYSCALL_DEFINE3(accept, int, fd, struct sockaddr __user *, upeer_sockaddr,
1570 int __user *, upeer_addrlen)
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001571{
Ulrich Drepperde11def2008-11-19 15:36:14 -08001572 return sys_accept4(fd, upeer_sockaddr, upeer_addrlen, 0);
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001573}
1574
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575/*
1576 * Attempt to connect to a socket with the server address. The address
1577 * is in user space so we verify it is OK and move it to kernel space.
1578 *
1579 * For 1003.1g we need to add clean support for a bind to AF_UNSPEC to
1580 * break bindings
1581 *
1582 * NOTE: 1003.1g draft 6.3 is broken with respect to AX.25/NetROM and
1583 * other SEQPACKET protocols that take time to connect() as it doesn't
1584 * include the -EINPROGRESS status for such sockets.
1585 */
1586
Heiko Carstens20f37032009-01-14 14:14:23 +01001587SYSCALL_DEFINE3(connect, int, fd, struct sockaddr __user *, uservaddr,
1588 int, addrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589{
1590 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001591 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001592 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001594 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 if (!sock)
1596 goto out;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001597 err = move_addr_to_kernel(uservaddr, addrlen, (struct sockaddr *)&address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 if (err < 0)
1599 goto out_put;
1600
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001601 err =
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001602 security_socket_connect(sock, (struct sockaddr *)&address, addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 if (err)
1604 goto out_put;
1605
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001606 err = sock->ops->connect(sock, (struct sockaddr *)&address, addrlen,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 sock->file->f_flags);
1608out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001609 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610out:
1611 return err;
1612}
1613
1614/*
1615 * Get the local address ('name') of a socket object. Move the obtained
1616 * name to user space.
1617 */
1618
Heiko Carstens20f37032009-01-14 14:14:23 +01001619SYSCALL_DEFINE3(getsockname, int, fd, struct sockaddr __user *, usockaddr,
1620 int __user *, usockaddr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621{
1622 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001623 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001624 int len, err, fput_needed;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001625
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001626 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 if (!sock)
1628 goto out;
1629
1630 err = security_socket_getsockname(sock);
1631 if (err)
1632 goto out_put;
1633
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001634 err = sock->ops->getname(sock, (struct sockaddr *)&address, &len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 if (err)
1636 goto out_put;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001637 err = move_addr_to_user((struct sockaddr *)&address, len, usockaddr, usockaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638
1639out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001640 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641out:
1642 return err;
1643}
1644
1645/*
1646 * Get the remote address ('name') of a socket object. Move the obtained
1647 * name to user space.
1648 */
1649
Heiko Carstens20f37032009-01-14 14:14:23 +01001650SYSCALL_DEFINE3(getpeername, int, fd, struct sockaddr __user *, usockaddr,
1651 int __user *, usockaddr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652{
1653 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001654 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001655 int len, err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001657 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1658 if (sock != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 err = security_socket_getpeername(sock);
1660 if (err) {
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001661 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 return err;
1663 }
1664
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001665 err =
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001666 sock->ops->getname(sock, (struct sockaddr *)&address, &len,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001667 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 if (!err)
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001669 err = move_addr_to_user((struct sockaddr *)&address, len, usockaddr,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001670 usockaddr_len);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001671 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 }
1673 return err;
1674}
1675
1676/*
1677 * Send a datagram to a given address. We move the address into kernel
1678 * space and check the user space data area is readable before invoking
1679 * the protocol.
1680 */
1681
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001682SYSCALL_DEFINE6(sendto, int, fd, void __user *, buff, size_t, len,
1683 unsigned, flags, struct sockaddr __user *, addr,
1684 int, addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685{
1686 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001687 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 int err;
1689 struct msghdr msg;
1690 struct iovec iov;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001691 int fput_needed;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001692
Linus Torvalds253eacc2010-10-30 16:43:10 -07001693 if (len > INT_MAX)
1694 len = INT_MAX;
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001695 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1696 if (!sock)
David S. Miller4387ff72007-02-08 15:06:08 -08001697 goto out;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001698
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001699 iov.iov_base = buff;
1700 iov.iov_len = len;
1701 msg.msg_name = NULL;
1702 msg.msg_iov = &iov;
1703 msg.msg_iovlen = 1;
1704 msg.msg_control = NULL;
1705 msg.msg_controllen = 0;
1706 msg.msg_namelen = 0;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001707 if (addr) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001708 err = move_addr_to_kernel(addr, addr_len, (struct sockaddr *)&address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 if (err < 0)
1710 goto out_put;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001711 msg.msg_name = (struct sockaddr *)&address;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001712 msg.msg_namelen = addr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 }
1714 if (sock->file->f_flags & O_NONBLOCK)
1715 flags |= MSG_DONTWAIT;
1716 msg.msg_flags = flags;
1717 err = sock_sendmsg(sock, &msg, len);
1718
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001719out_put:
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001720 fput_light(sock->file, fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08001721out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 return err;
1723}
1724
1725/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001726 * Send a datagram down a socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 */
1728
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001729SYSCALL_DEFINE4(send, int, fd, void __user *, buff, size_t, len,
1730 unsigned, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731{
1732 return sys_sendto(fd, buff, len, flags, NULL, 0);
1733}
1734
1735/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001736 * Receive a frame from the socket and optionally record the address of the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 * sender. We verify the buffers are writable and if needed move the
1738 * sender address from kernel to user space.
1739 */
1740
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001741SYSCALL_DEFINE6(recvfrom, int, fd, void __user *, ubuf, size_t, size,
1742 unsigned, flags, struct sockaddr __user *, addr,
1743 int __user *, addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744{
1745 struct socket *sock;
1746 struct iovec iov;
1747 struct msghdr msg;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001748 struct sockaddr_storage address;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001749 int err, err2;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001750 int fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751
Linus Torvalds253eacc2010-10-30 16:43:10 -07001752 if (size > INT_MAX)
1753 size = INT_MAX;
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001754 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 if (!sock)
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001756 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001758 msg.msg_control = NULL;
1759 msg.msg_controllen = 0;
1760 msg.msg_iovlen = 1;
1761 msg.msg_iov = &iov;
1762 iov.iov_len = size;
1763 iov.iov_base = ubuf;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001764 msg.msg_name = (struct sockaddr *)&address;
1765 msg.msg_namelen = sizeof(address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 if (sock->file->f_flags & O_NONBLOCK)
1767 flags |= MSG_DONTWAIT;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001768 err = sock_recvmsg(sock, &msg, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001770 if (err >= 0 && addr != NULL) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001771 err2 = move_addr_to_user((struct sockaddr *)&address,
1772 msg.msg_namelen, addr, addr_len);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001773 if (err2 < 0)
1774 err = err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 }
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001776
1777 fput_light(sock->file, fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08001778out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 return err;
1780}
1781
1782/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001783 * Receive a datagram from a socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 */
1785
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001786asmlinkage long sys_recv(int fd, void __user *ubuf, size_t size,
1787 unsigned flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788{
1789 return sys_recvfrom(fd, ubuf, size, flags, NULL, NULL);
1790}
1791
1792/*
1793 * Set a socket option. Because we don't know the option lengths we have
1794 * to pass the user mode parameter for the protocols to sort out.
1795 */
1796
Heiko Carstens20f37032009-01-14 14:14:23 +01001797SYSCALL_DEFINE5(setsockopt, int, fd, int, level, int, optname,
1798 char __user *, optval, int, optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001800 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 struct socket *sock;
1802
1803 if (optlen < 0)
1804 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001805
1806 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1807 if (sock != NULL) {
1808 err = security_socket_setsockopt(sock, level, optname);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001809 if (err)
1810 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811
1812 if (level == SOL_SOCKET)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001813 err =
1814 sock_setsockopt(sock, level, optname, optval,
1815 optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 else
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001817 err =
1818 sock->ops->setsockopt(sock, level, optname, optval,
1819 optlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001820out_put:
1821 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 }
1823 return err;
1824}
1825
1826/*
1827 * Get a socket option. Because we don't know the option lengths we have
1828 * to pass a user mode parameter for the protocols to sort out.
1829 */
1830
Heiko Carstens20f37032009-01-14 14:14:23 +01001831SYSCALL_DEFINE5(getsockopt, int, fd, int, level, int, optname,
1832 char __user *, optval, int __user *, optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001834 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 struct socket *sock;
1836
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001837 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1838 if (sock != NULL) {
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001839 err = security_socket_getsockopt(sock, level, optname);
1840 if (err)
1841 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842
1843 if (level == SOL_SOCKET)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001844 err =
1845 sock_getsockopt(sock, level, optname, optval,
1846 optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 else
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001848 err =
1849 sock->ops->getsockopt(sock, level, optname, optval,
1850 optlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001851out_put:
1852 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 }
1854 return err;
1855}
1856
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857/*
1858 * Shutdown a socket.
1859 */
1860
Heiko Carstens754fe8d2009-01-14 14:14:09 +01001861SYSCALL_DEFINE2(shutdown, int, fd, int, how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001863 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 struct socket *sock;
1865
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001866 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1867 if (sock != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 err = security_socket_shutdown(sock, how);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001869 if (!err)
1870 err = sock->ops->shutdown(sock, how);
1871 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 }
1873 return err;
1874}
1875
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001876/* A couple of helpful macros for getting the address of the 32/64 bit
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 * fields which are the same type (int / unsigned) on our platforms.
1878 */
1879#define COMPAT_MSG(msg, member) ((MSG_CMSG_COMPAT & flags) ? &msg##_compat->member : &msg->member)
1880#define COMPAT_NAMELEN(msg) COMPAT_MSG(msg, msg_namelen)
1881#define COMPAT_FLAGS(msg) COMPAT_MSG(msg, msg_flags)
1882
Anton Blanchard228e5482011-05-02 20:21:35 +00001883static int __sys_sendmsg(struct socket *sock, struct msghdr __user *msg,
1884 struct msghdr *msg_sys, unsigned flags, int nosec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001886 struct compat_msghdr __user *msg_compat =
1887 (struct compat_msghdr __user *)msg;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001888 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 struct iovec iovstack[UIO_FASTIOV], *iov = iovstack;
Alex Williamsonb9d717a2005-09-26 14:28:02 -07001890 unsigned char ctl[sizeof(struct cmsghdr) + 20]
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001891 __attribute__ ((aligned(sizeof(__kernel_size_t))));
1892 /* 20 is size of ipv6_pktinfo */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 unsigned char *ctl_buf = ctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 int err, ctl_len, iov_size, total_len;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001895
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 err = -EFAULT;
1897 if (MSG_CMSG_COMPAT & flags) {
Anton Blanchard228e5482011-05-02 20:21:35 +00001898 if (get_compat_msghdr(msg_sys, msg_compat))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 return -EFAULT;
Anton Blanchard228e5482011-05-02 20:21:35 +00001900 } else if (copy_from_user(msg_sys, msg, sizeof(struct msghdr)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 return -EFAULT;
1902
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 /* do not move before msg_sys is valid */
1904 err = -EMSGSIZE;
Anton Blanchard228e5482011-05-02 20:21:35 +00001905 if (msg_sys->msg_iovlen > UIO_MAXIOV)
1906 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001908 /* Check whether to allocate the iovec area */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 err = -ENOMEM;
Anton Blanchard228e5482011-05-02 20:21:35 +00001910 iov_size = msg_sys->msg_iovlen * sizeof(struct iovec);
1911 if (msg_sys->msg_iovlen > UIO_FASTIOV) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 iov = sock_kmalloc(sock->sk, iov_size, GFP_KERNEL);
1913 if (!iov)
Anton Blanchard228e5482011-05-02 20:21:35 +00001914 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 }
1916
1917 /* This will also move the address data into kernel space */
1918 if (MSG_CMSG_COMPAT & flags) {
Anton Blanchard228e5482011-05-02 20:21:35 +00001919 err = verify_compat_iovec(msg_sys, iov,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001920 (struct sockaddr *)&address,
1921 VERIFY_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 } else
Anton Blanchard228e5482011-05-02 20:21:35 +00001923 err = verify_iovec(msg_sys, iov,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001924 (struct sockaddr *)&address,
1925 VERIFY_READ);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001926 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 goto out_freeiov;
1928 total_len = err;
1929
1930 err = -ENOBUFS;
1931
Anton Blanchard228e5482011-05-02 20:21:35 +00001932 if (msg_sys->msg_controllen > INT_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 goto out_freeiov;
Anton Blanchard228e5482011-05-02 20:21:35 +00001934 ctl_len = msg_sys->msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 if ((MSG_CMSG_COMPAT & flags) && ctl_len) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001936 err =
Anton Blanchard228e5482011-05-02 20:21:35 +00001937 cmsghdr_from_user_compat_to_kern(msg_sys, sock->sk, ctl,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001938 sizeof(ctl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 if (err)
1940 goto out_freeiov;
Anton Blanchard228e5482011-05-02 20:21:35 +00001941 ctl_buf = msg_sys->msg_control;
1942 ctl_len = msg_sys->msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 } else if (ctl_len) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001944 if (ctl_len > sizeof(ctl)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 ctl_buf = sock_kmalloc(sock->sk, ctl_len, GFP_KERNEL);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001946 if (ctl_buf == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 goto out_freeiov;
1948 }
1949 err = -EFAULT;
1950 /*
Anton Blanchard228e5482011-05-02 20:21:35 +00001951 * Careful! Before this, msg_sys->msg_control contains a user pointer.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 * Afterwards, it will be a kernel pointer. Thus the compiler-assisted
1953 * checking falls down on this.
1954 */
Namhyung Kimfb8621b2010-09-07 03:55:00 +00001955 if (copy_from_user(ctl_buf,
Anton Blanchard228e5482011-05-02 20:21:35 +00001956 (void __user __force *)msg_sys->msg_control,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001957 ctl_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 goto out_freectl;
Anton Blanchard228e5482011-05-02 20:21:35 +00001959 msg_sys->msg_control = ctl_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 }
Anton Blanchard228e5482011-05-02 20:21:35 +00001961 msg_sys->msg_flags = flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962
1963 if (sock->file->f_flags & O_NONBLOCK)
Anton Blanchard228e5482011-05-02 20:21:35 +00001964 msg_sys->msg_flags |= MSG_DONTWAIT;
1965 err = (nosec ? sock_sendmsg_nosec : sock_sendmsg)(sock, msg_sys,
1966 total_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967
1968out_freectl:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001969 if (ctl_buf != ctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 sock_kfree_s(sock->sk, ctl_buf, ctl_len);
1971out_freeiov:
1972 if (iov != iovstack)
1973 sock_kfree_s(sock->sk, iov, iov_size);
Anton Blanchard228e5482011-05-02 20:21:35 +00001974out:
1975 return err;
1976}
1977
1978/*
1979 * BSD sendmsg interface
1980 */
1981
1982SYSCALL_DEFINE3(sendmsg, int, fd, struct msghdr __user *, msg, unsigned, flags)
1983{
1984 int fput_needed, err;
1985 struct msghdr msg_sys;
1986 struct socket *sock = sockfd_lookup_light(fd, &err, &fput_needed);
1987
1988 if (!sock)
1989 goto out;
1990
1991 err = __sys_sendmsg(sock, msg, &msg_sys, flags, 0);
1992
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001993 fput_light(sock->file, fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001994out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 return err;
1996}
1997
Anton Blanchard228e5482011-05-02 20:21:35 +00001998/*
1999 * Linux sendmmsg interface
2000 */
2001
2002int __sys_sendmmsg(int fd, struct mmsghdr __user *mmsg, unsigned int vlen,
2003 unsigned int flags)
2004{
2005 int fput_needed, err, datagrams;
2006 struct socket *sock;
2007 struct mmsghdr __user *entry;
2008 struct compat_mmsghdr __user *compat_entry;
2009 struct msghdr msg_sys;
2010
2011 datagrams = 0;
2012
2013 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2014 if (!sock)
2015 return err;
2016
2017 err = sock_error(sock->sk);
2018 if (err)
2019 goto out_put;
2020
2021 entry = mmsg;
2022 compat_entry = (struct compat_mmsghdr __user *)mmsg;
2023
2024 while (datagrams < vlen) {
2025 /*
2026 * No need to ask LSM for more than the first datagram.
2027 */
2028 if (MSG_CMSG_COMPAT & flags) {
2029 err = __sys_sendmsg(sock, (struct msghdr __user *)compat_entry,
2030 &msg_sys, flags, datagrams);
2031 if (err < 0)
2032 break;
2033 err = __put_user(err, &compat_entry->msg_len);
2034 ++compat_entry;
2035 } else {
2036 err = __sys_sendmsg(sock, (struct msghdr __user *)entry,
2037 &msg_sys, flags, datagrams);
2038 if (err < 0)
2039 break;
2040 err = put_user(err, &entry->msg_len);
2041 ++entry;
2042 }
2043
2044 if (err)
2045 break;
2046 ++datagrams;
2047 }
2048
2049out_put:
2050 fput_light(sock->file, fput_needed);
2051
2052 if (err == 0)
2053 return datagrams;
2054
2055 if (datagrams != 0) {
2056 /*
2057 * We may send less entries than requested (vlen) if the
2058 * sock is non blocking...
2059 */
2060 if (err != -EAGAIN) {
2061 /*
2062 * ... or if sendmsg returns an error after we
2063 * send some datagrams, where we record the
2064 * error to return on the next call or if the
2065 * app asks about it using getsockopt(SO_ERROR).
2066 */
2067 sock->sk->sk_err = -err;
2068 }
2069
2070 return datagrams;
2071 }
2072
2073 return err;
2074}
2075
2076SYSCALL_DEFINE4(sendmmsg, int, fd, struct mmsghdr __user *, mmsg,
2077 unsigned int, vlen, unsigned int, flags)
2078{
2079 return __sys_sendmmsg(fd, mmsg, vlen, flags);
2080}
2081
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002082static int __sys_recvmsg(struct socket *sock, struct msghdr __user *msg,
2083 struct msghdr *msg_sys, unsigned flags, int nosec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002085 struct compat_msghdr __user *msg_compat =
2086 (struct compat_msghdr __user *)msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 struct iovec iovstack[UIO_FASTIOV];
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002088 struct iovec *iov = iovstack;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 unsigned long cmsg_ptr;
2090 int err, iov_size, total_len, len;
2091
2092 /* kernel mode address */
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07002093 struct sockaddr_storage addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094
2095 /* user mode address pointers */
2096 struct sockaddr __user *uaddr;
2097 int __user *uaddr_len;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002098
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 if (MSG_CMSG_COMPAT & flags) {
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002100 if (get_compat_msghdr(msg_sys, msg_compat))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 return -EFAULT;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002102 } else if (copy_from_user(msg_sys, msg, sizeof(struct msghdr)))
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002103 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 err = -EMSGSIZE;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002106 if (msg_sys->msg_iovlen > UIO_MAXIOV)
2107 goto out;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002108
2109 /* Check whether to allocate the iovec area */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 err = -ENOMEM;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002111 iov_size = msg_sys->msg_iovlen * sizeof(struct iovec);
2112 if (msg_sys->msg_iovlen > UIO_FASTIOV) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 iov = sock_kmalloc(sock->sk, iov_size, GFP_KERNEL);
2114 if (!iov)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002115 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 }
2117
2118 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002119 * Save the user-mode address (verify_iovec will change the
2120 * kernel msghdr to use the kernel address space)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002122
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002123 uaddr = (__force void __user *)msg_sys->msg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 uaddr_len = COMPAT_NAMELEN(msg);
2125 if (MSG_CMSG_COMPAT & flags) {
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002126 err = verify_compat_iovec(msg_sys, iov,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07002127 (struct sockaddr *)&addr,
2128 VERIFY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 } else
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002130 err = verify_iovec(msg_sys, iov,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07002131 (struct sockaddr *)&addr,
2132 VERIFY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 if (err < 0)
2134 goto out_freeiov;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002135 total_len = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002137 cmsg_ptr = (unsigned long)msg_sys->msg_control;
2138 msg_sys->msg_flags = flags & (MSG_CMSG_CLOEXEC|MSG_CMSG_COMPAT);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002139
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 if (sock->file->f_flags & O_NONBLOCK)
2141 flags |= MSG_DONTWAIT;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002142 err = (nosec ? sock_recvmsg_nosec : sock_recvmsg)(sock, msg_sys,
2143 total_len, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 if (err < 0)
2145 goto out_freeiov;
2146 len = err;
2147
2148 if (uaddr != NULL) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07002149 err = move_addr_to_user((struct sockaddr *)&addr,
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002150 msg_sys->msg_namelen, uaddr,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002151 uaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 if (err < 0)
2153 goto out_freeiov;
2154 }
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002155 err = __put_user((msg_sys->msg_flags & ~MSG_CMSG_COMPAT),
David S. Miller37f7f422005-09-16 16:51:01 -07002156 COMPAT_FLAGS(msg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 if (err)
2158 goto out_freeiov;
2159 if (MSG_CMSG_COMPAT & flags)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002160 err = __put_user((unsigned long)msg_sys->msg_control - cmsg_ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 &msg_compat->msg_controllen);
2162 else
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002163 err = __put_user((unsigned long)msg_sys->msg_control - cmsg_ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 &msg->msg_controllen);
2165 if (err)
2166 goto out_freeiov;
2167 err = len;
2168
2169out_freeiov:
2170 if (iov != iovstack)
2171 sock_kfree_s(sock->sk, iov, iov_size);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002172out:
2173 return err;
2174}
2175
2176/*
2177 * BSD recvmsg interface
2178 */
2179
2180SYSCALL_DEFINE3(recvmsg, int, fd, struct msghdr __user *, msg,
2181 unsigned int, flags)
2182{
2183 int fput_needed, err;
2184 struct msghdr msg_sys;
2185 struct socket *sock = sockfd_lookup_light(fd, &err, &fput_needed);
2186
2187 if (!sock)
2188 goto out;
2189
2190 err = __sys_recvmsg(sock, msg, &msg_sys, flags, 0);
2191
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002192 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193out:
2194 return err;
2195}
2196
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002197/*
2198 * Linux recvmmsg interface
2199 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002201int __sys_recvmmsg(int fd, struct mmsghdr __user *mmsg, unsigned int vlen,
2202 unsigned int flags, struct timespec *timeout)
2203{
2204 int fput_needed, err, datagrams;
2205 struct socket *sock;
2206 struct mmsghdr __user *entry;
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002207 struct compat_mmsghdr __user *compat_entry;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002208 struct msghdr msg_sys;
2209 struct timespec end_time;
2210
2211 if (timeout &&
2212 poll_select_set_timeout(&end_time, timeout->tv_sec,
2213 timeout->tv_nsec))
2214 return -EINVAL;
2215
2216 datagrams = 0;
2217
2218 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2219 if (!sock)
2220 return err;
2221
2222 err = sock_error(sock->sk);
2223 if (err)
2224 goto out_put;
2225
2226 entry = mmsg;
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002227 compat_entry = (struct compat_mmsghdr __user *)mmsg;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002228
2229 while (datagrams < vlen) {
2230 /*
2231 * No need to ask LSM for more than the first datagram.
2232 */
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002233 if (MSG_CMSG_COMPAT & flags) {
2234 err = __sys_recvmsg(sock, (struct msghdr __user *)compat_entry,
2235 &msg_sys, flags, datagrams);
2236 if (err < 0)
2237 break;
2238 err = __put_user(err, &compat_entry->msg_len);
2239 ++compat_entry;
2240 } else {
2241 err = __sys_recvmsg(sock, (struct msghdr __user *)entry,
2242 &msg_sys, flags, datagrams);
2243 if (err < 0)
2244 break;
2245 err = put_user(err, &entry->msg_len);
2246 ++entry;
2247 }
2248
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002249 if (err)
2250 break;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002251 ++datagrams;
2252
Brandon L Black71c5c152010-03-26 16:18:03 +00002253 /* MSG_WAITFORONE turns on MSG_DONTWAIT after one packet */
2254 if (flags & MSG_WAITFORONE)
2255 flags |= MSG_DONTWAIT;
2256
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002257 if (timeout) {
2258 ktime_get_ts(timeout);
2259 *timeout = timespec_sub(end_time, *timeout);
2260 if (timeout->tv_sec < 0) {
2261 timeout->tv_sec = timeout->tv_nsec = 0;
2262 break;
2263 }
2264
2265 /* Timeout, return less than vlen datagrams */
2266 if (timeout->tv_nsec == 0 && timeout->tv_sec == 0)
2267 break;
2268 }
2269
2270 /* Out of band data, return right away */
2271 if (msg_sys.msg_flags & MSG_OOB)
2272 break;
2273 }
2274
2275out_put:
2276 fput_light(sock->file, fput_needed);
2277
2278 if (err == 0)
2279 return datagrams;
2280
2281 if (datagrams != 0) {
2282 /*
2283 * We may return less entries than requested (vlen) if the
2284 * sock is non block and there aren't enough datagrams...
2285 */
2286 if (err != -EAGAIN) {
2287 /*
2288 * ... or if recvmsg returns an error after we
2289 * received some datagrams, where we record the
2290 * error to return on the next call or if the
2291 * app asks about it using getsockopt(SO_ERROR).
2292 */
2293 sock->sk->sk_err = -err;
2294 }
2295
2296 return datagrams;
2297 }
2298
2299 return err;
2300}
2301
2302SYSCALL_DEFINE5(recvmmsg, int, fd, struct mmsghdr __user *, mmsg,
2303 unsigned int, vlen, unsigned int, flags,
2304 struct timespec __user *, timeout)
2305{
2306 int datagrams;
2307 struct timespec timeout_sys;
2308
2309 if (!timeout)
2310 return __sys_recvmmsg(fd, mmsg, vlen, flags, NULL);
2311
2312 if (copy_from_user(&timeout_sys, timeout, sizeof(timeout_sys)))
2313 return -EFAULT;
2314
2315 datagrams = __sys_recvmmsg(fd, mmsg, vlen, flags, &timeout_sys);
2316
2317 if (datagrams > 0 &&
2318 copy_to_user(timeout, &timeout_sys, sizeof(timeout_sys)))
2319 datagrams = -EFAULT;
2320
2321 return datagrams;
2322}
2323
2324#ifdef __ARCH_WANT_SYS_SOCKETCALL
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325/* Argument list sizes for sys_socketcall */
2326#define AL(x) ((x) * sizeof(unsigned long))
Anton Blanchard228e5482011-05-02 20:21:35 +00002327static const unsigned char nargs[21] = {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002328 AL(0), AL(3), AL(3), AL(3), AL(2), AL(3),
2329 AL(3), AL(3), AL(4), AL(4), AL(4), AL(6),
2330 AL(6), AL(2), AL(5), AL(5), AL(3), AL(3),
Anton Blanchard228e5482011-05-02 20:21:35 +00002331 AL(4), AL(5), AL(4)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002332};
2333
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334#undef AL
2335
2336/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002337 * System call vectors.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 *
2339 * Argument checking cleaned up. Saved 20% in size.
2340 * This function doesn't need to set the kernel lock because
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002341 * it is set by the callees.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342 */
2343
Heiko Carstens3e0fa652009-01-14 14:14:24 +01002344SYSCALL_DEFINE2(socketcall, int, call, unsigned long __user *, args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345{
2346 unsigned long a[6];
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002347 unsigned long a0, a1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348 int err;
Arjan van de Ven47379052009-09-28 12:57:44 -07002349 unsigned int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350
Anton Blanchard228e5482011-05-02 20:21:35 +00002351 if (call < 1 || call > SYS_SENDMMSG)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 return -EINVAL;
2353
Arjan van de Ven47379052009-09-28 12:57:44 -07002354 len = nargs[call];
2355 if (len > sizeof(a))
2356 return -EINVAL;
2357
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 /* copy_from_user should be SMP safe. */
Arjan van de Ven47379052009-09-28 12:57:44 -07002359 if (copy_from_user(a, args, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360 return -EFAULT;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002361
Al Virof3298dc2008-12-10 03:16:51 -05002362 audit_socketcall(nargs[call] / sizeof(unsigned long), a);
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002363
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002364 a0 = a[0];
2365 a1 = a[1];
2366
2367 switch (call) {
2368 case SYS_SOCKET:
2369 err = sys_socket(a0, a1, a[2]);
2370 break;
2371 case SYS_BIND:
2372 err = sys_bind(a0, (struct sockaddr __user *)a1, a[2]);
2373 break;
2374 case SYS_CONNECT:
2375 err = sys_connect(a0, (struct sockaddr __user *)a1, a[2]);
2376 break;
2377 case SYS_LISTEN:
2378 err = sys_listen(a0, a1);
2379 break;
2380 case SYS_ACCEPT:
Ulrich Drepperde11def2008-11-19 15:36:14 -08002381 err = sys_accept4(a0, (struct sockaddr __user *)a1,
2382 (int __user *)a[2], 0);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002383 break;
2384 case SYS_GETSOCKNAME:
2385 err =
2386 sys_getsockname(a0, (struct sockaddr __user *)a1,
2387 (int __user *)a[2]);
2388 break;
2389 case SYS_GETPEERNAME:
2390 err =
2391 sys_getpeername(a0, (struct sockaddr __user *)a1,
2392 (int __user *)a[2]);
2393 break;
2394 case SYS_SOCKETPAIR:
2395 err = sys_socketpair(a0, a1, a[2], (int __user *)a[3]);
2396 break;
2397 case SYS_SEND:
2398 err = sys_send(a0, (void __user *)a1, a[2], a[3]);
2399 break;
2400 case SYS_SENDTO:
2401 err = sys_sendto(a0, (void __user *)a1, a[2], a[3],
2402 (struct sockaddr __user *)a[4], a[5]);
2403 break;
2404 case SYS_RECV:
2405 err = sys_recv(a0, (void __user *)a1, a[2], a[3]);
2406 break;
2407 case SYS_RECVFROM:
2408 err = sys_recvfrom(a0, (void __user *)a1, a[2], a[3],
2409 (struct sockaddr __user *)a[4],
2410 (int __user *)a[5]);
2411 break;
2412 case SYS_SHUTDOWN:
2413 err = sys_shutdown(a0, a1);
2414 break;
2415 case SYS_SETSOCKOPT:
2416 err = sys_setsockopt(a0, a1, a[2], (char __user *)a[3], a[4]);
2417 break;
2418 case SYS_GETSOCKOPT:
2419 err =
2420 sys_getsockopt(a0, a1, a[2], (char __user *)a[3],
2421 (int __user *)a[4]);
2422 break;
2423 case SYS_SENDMSG:
2424 err = sys_sendmsg(a0, (struct msghdr __user *)a1, a[2]);
2425 break;
Anton Blanchard228e5482011-05-02 20:21:35 +00002426 case SYS_SENDMMSG:
2427 err = sys_sendmmsg(a0, (struct mmsghdr __user *)a1, a[2], a[3]);
2428 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002429 case SYS_RECVMSG:
2430 err = sys_recvmsg(a0, (struct msghdr __user *)a1, a[2]);
2431 break;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002432 case SYS_RECVMMSG:
2433 err = sys_recvmmsg(a0, (struct mmsghdr __user *)a1, a[2], a[3],
2434 (struct timespec __user *)a[4]);
2435 break;
Ulrich Drepperde11def2008-11-19 15:36:14 -08002436 case SYS_ACCEPT4:
2437 err = sys_accept4(a0, (struct sockaddr __user *)a1,
2438 (int __user *)a[2], a[3]);
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07002439 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002440 default:
2441 err = -EINVAL;
2442 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 }
2444 return err;
2445}
2446
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002447#endif /* __ARCH_WANT_SYS_SOCKETCALL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002449/**
2450 * sock_register - add a socket protocol handler
2451 * @ops: description of protocol
2452 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453 * This function is called by a protocol handler that wants to
2454 * advertise its address family, and have it linked into the
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002455 * socket interface. The value ops->family coresponds to the
2456 * socket system call protocol family.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 */
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002458int sock_register(const struct net_proto_family *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459{
2460 int err;
2461
2462 if (ops->family >= NPROTO) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002463 printk(KERN_CRIT "protocol %d >= NPROTO(%d)\n", ops->family,
2464 NPROTO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465 return -ENOBUFS;
2466 }
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002467
2468 spin_lock(&net_family_lock);
Eric Dumazet190683a2010-11-10 10:50:44 +00002469 if (rcu_dereference_protected(net_families[ops->family],
2470 lockdep_is_held(&net_family_lock)))
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002471 err = -EEXIST;
2472 else {
Eric Dumazet190683a2010-11-10 10:50:44 +00002473 rcu_assign_pointer(net_families[ops->family], ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474 err = 0;
2475 }
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002476 spin_unlock(&net_family_lock);
2477
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002478 printk(KERN_INFO "NET: Registered protocol family %d\n", ops->family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479 return err;
2480}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002481EXPORT_SYMBOL(sock_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002483/**
2484 * sock_unregister - remove a protocol handler
2485 * @family: protocol family to remove
2486 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 * This function is called by a protocol handler that wants to
2488 * remove its address family, and have it unlinked from the
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002489 * new socket creation.
2490 *
2491 * If protocol handler is a module, then it can use module reference
2492 * counts to protect against new references. If protocol handler is not
2493 * a module then it needs to provide its own protection in
2494 * the ops->create routine.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495 */
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002496void sock_unregister(int family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497{
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002498 BUG_ON(family < 0 || family >= NPROTO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002500 spin_lock(&net_family_lock);
Eric Dumazet190683a2010-11-10 10:50:44 +00002501 rcu_assign_pointer(net_families[family], NULL);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002502 spin_unlock(&net_family_lock);
2503
2504 synchronize_rcu();
2505
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002506 printk(KERN_INFO "NET: Unregistered protocol family %d\n", family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002508EXPORT_SYMBOL(sock_unregister);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509
Andi Kleen77d76ea2005-12-22 12:43:42 -08002510static int __init sock_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511{
Nick Pigginb3e19d92011-01-07 17:50:11 +11002512 int err;
2513
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002515 * Initialize sock SLAB cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002517
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 sk_init();
2519
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002521 * Initialize skbuff SLAB cache
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522 */
2523 skb_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524
2525 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002526 * Initialize the protocols module.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527 */
2528
2529 init_inodecache();
Nick Pigginb3e19d92011-01-07 17:50:11 +11002530
2531 err = register_filesystem(&sock_fs_type);
2532 if (err)
2533 goto out_fs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534 sock_mnt = kern_mount(&sock_fs_type);
Nick Pigginb3e19d92011-01-07 17:50:11 +11002535 if (IS_ERR(sock_mnt)) {
2536 err = PTR_ERR(sock_mnt);
2537 goto out_mount;
2538 }
Andi Kleen77d76ea2005-12-22 12:43:42 -08002539
2540 /* The real protocol initialization is performed in later initcalls.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 */
2542
2543#ifdef CONFIG_NETFILTER
2544 netfilter_init();
2545#endif
David S. Millercbeb3212005-12-22 12:58:55 -08002546
Richard Cochranc1f19b52010-07-17 08:49:36 +00002547#ifdef CONFIG_NETWORK_PHY_TIMESTAMPING
2548 skb_timestamping_init();
2549#endif
2550
Nick Pigginb3e19d92011-01-07 17:50:11 +11002551out:
2552 return err;
2553
2554out_mount:
2555 unregister_filesystem(&sock_fs_type);
2556out_fs:
2557 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558}
2559
Andi Kleen77d76ea2005-12-22 12:43:42 -08002560core_initcall(sock_init); /* early initcall */
2561
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562#ifdef CONFIG_PROC_FS
2563void socket_seq_show(struct seq_file *seq)
2564{
2565 int cpu;
2566 int counter = 0;
2567
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -07002568 for_each_possible_cpu(cpu)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002569 counter += per_cpu(sockets_in_use, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570
2571 /* It can be negative, by the way. 8) */
2572 if (counter < 0)
2573 counter = 0;
2574
2575 seq_printf(seq, "sockets: used %d\n", counter);
2576}
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002577#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578
Shaun Pereira89bbfc92006-03-21 23:58:08 -08002579#ifdef CONFIG_COMPAT
Arnd Bergmann6b960182009-11-06 23:10:54 -08002580static int do_siocgstamp(struct net *net, struct socket *sock,
2581 unsigned int cmd, struct compat_timeval __user *up)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002582{
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002583 mm_segment_t old_fs = get_fs();
2584 struct timeval ktv;
2585 int err;
2586
2587 set_fs(KERNEL_DS);
Arnd Bergmann6b960182009-11-06 23:10:54 -08002588 err = sock_do_ioctl(net, sock, cmd, (unsigned long)&ktv);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002589 set_fs(old_fs);
2590 if (!err) {
2591 err = put_user(ktv.tv_sec, &up->tv_sec);
2592 err |= __put_user(ktv.tv_usec, &up->tv_usec);
2593 }
2594 return err;
2595}
2596
Arnd Bergmann6b960182009-11-06 23:10:54 -08002597static int do_siocgstampns(struct net *net, struct socket *sock,
2598 unsigned int cmd, struct compat_timespec __user *up)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002599{
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002600 mm_segment_t old_fs = get_fs();
2601 struct timespec kts;
2602 int err;
2603
2604 set_fs(KERNEL_DS);
Arnd Bergmann6b960182009-11-06 23:10:54 -08002605 err = sock_do_ioctl(net, sock, cmd, (unsigned long)&kts);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002606 set_fs(old_fs);
2607 if (!err) {
2608 err = put_user(kts.tv_sec, &up->tv_sec);
2609 err |= __put_user(kts.tv_nsec, &up->tv_nsec);
2610 }
2611 return err;
2612}
2613
Arnd Bergmann6b960182009-11-06 23:10:54 -08002614static int dev_ifname32(struct net *net, struct compat_ifreq __user *uifr32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002615{
2616 struct ifreq __user *uifr;
2617 int err;
2618
2619 uifr = compat_alloc_user_space(sizeof(struct ifreq));
Arnd Bergmann6b960182009-11-06 23:10:54 -08002620 if (copy_in_user(uifr, uifr32, sizeof(struct compat_ifreq)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002621 return -EFAULT;
2622
Arnd Bergmann6b960182009-11-06 23:10:54 -08002623 err = dev_ioctl(net, SIOCGIFNAME, uifr);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002624 if (err)
2625 return err;
2626
Arnd Bergmann6b960182009-11-06 23:10:54 -08002627 if (copy_in_user(uifr32, uifr, sizeof(struct compat_ifreq)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002628 return -EFAULT;
2629
2630 return 0;
2631}
2632
Arnd Bergmann6b960182009-11-06 23:10:54 -08002633static int dev_ifconf(struct net *net, struct compat_ifconf __user *uifc32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002634{
Arnd Bergmann6b960182009-11-06 23:10:54 -08002635 struct compat_ifconf ifc32;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002636 struct ifconf ifc;
2637 struct ifconf __user *uifc;
Arnd Bergmann6b960182009-11-06 23:10:54 -08002638 struct compat_ifreq __user *ifr32;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002639 struct ifreq __user *ifr;
2640 unsigned int i, j;
2641 int err;
2642
Arnd Bergmann6b960182009-11-06 23:10:54 -08002643 if (copy_from_user(&ifc32, uifc32, sizeof(struct compat_ifconf)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002644 return -EFAULT;
2645
2646 if (ifc32.ifcbuf == 0) {
2647 ifc32.ifc_len = 0;
2648 ifc.ifc_len = 0;
2649 ifc.ifc_req = NULL;
2650 uifc = compat_alloc_user_space(sizeof(struct ifconf));
2651 } else {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002652 size_t len = ((ifc32.ifc_len / sizeof(struct compat_ifreq)) + 1) *
2653 sizeof(struct ifreq);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002654 uifc = compat_alloc_user_space(sizeof(struct ifconf) + len);
2655 ifc.ifc_len = len;
2656 ifr = ifc.ifc_req = (void __user *)(uifc + 1);
2657 ifr32 = compat_ptr(ifc32.ifcbuf);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002658 for (i = 0; i < ifc32.ifc_len; i += sizeof(struct compat_ifreq)) {
Arnd Bergmann6b960182009-11-06 23:10:54 -08002659 if (copy_in_user(ifr, ifr32, sizeof(struct compat_ifreq)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002660 return -EFAULT;
2661 ifr++;
2662 ifr32++;
2663 }
2664 }
2665 if (copy_to_user(uifc, &ifc, sizeof(struct ifconf)))
2666 return -EFAULT;
2667
Arnd Bergmann6b960182009-11-06 23:10:54 -08002668 err = dev_ioctl(net, SIOCGIFCONF, uifc);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002669 if (err)
2670 return err;
2671
2672 if (copy_from_user(&ifc, uifc, sizeof(struct ifconf)))
2673 return -EFAULT;
2674
2675 ifr = ifc.ifc_req;
2676 ifr32 = compat_ptr(ifc32.ifcbuf);
2677 for (i = 0, j = 0;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002678 i + sizeof(struct compat_ifreq) <= ifc32.ifc_len && j < ifc.ifc_len;
2679 i += sizeof(struct compat_ifreq), j += sizeof(struct ifreq)) {
2680 if (copy_in_user(ifr32, ifr, sizeof(struct compat_ifreq)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002681 return -EFAULT;
2682 ifr32++;
2683 ifr++;
2684 }
2685
2686 if (ifc32.ifcbuf == 0) {
2687 /* Translate from 64-bit structure multiple to
2688 * a 32-bit one.
2689 */
2690 i = ifc.ifc_len;
Arnd Bergmann6b960182009-11-06 23:10:54 -08002691 i = ((i / sizeof(struct ifreq)) * sizeof(struct compat_ifreq));
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002692 ifc32.ifc_len = i;
2693 } else {
2694 ifc32.ifc_len = i;
2695 }
Arnd Bergmann6b960182009-11-06 23:10:54 -08002696 if (copy_to_user(uifc32, &ifc32, sizeof(struct compat_ifconf)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002697 return -EFAULT;
2698
2699 return 0;
2700}
2701
Arnd Bergmann6b960182009-11-06 23:10:54 -08002702static int ethtool_ioctl(struct net *net, struct compat_ifreq __user *ifr32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002703{
Ben Hutchings3a7da392011-03-17 07:34:32 +00002704 struct compat_ethtool_rxnfc __user *compat_rxnfc;
2705 bool convert_in = false, convert_out = false;
2706 size_t buf_size = ALIGN(sizeof(struct ifreq), 8);
2707 struct ethtool_rxnfc __user *rxnfc;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002708 struct ifreq __user *ifr;
Ben Hutchings3a7da392011-03-17 07:34:32 +00002709 u32 rule_cnt = 0, actual_rule_cnt;
2710 u32 ethcmd;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002711 u32 data;
Ben Hutchings3a7da392011-03-17 07:34:32 +00002712 int ret;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002713
2714 if (get_user(data, &ifr32->ifr_ifru.ifru_data))
2715 return -EFAULT;
2716
Ben Hutchings3a7da392011-03-17 07:34:32 +00002717 compat_rxnfc = compat_ptr(data);
2718
2719 if (get_user(ethcmd, &compat_rxnfc->cmd))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002720 return -EFAULT;
2721
Ben Hutchings3a7da392011-03-17 07:34:32 +00002722 /* Most ethtool structures are defined without padding.
2723 * Unfortunately struct ethtool_rxnfc is an exception.
2724 */
2725 switch (ethcmd) {
2726 default:
2727 break;
2728 case ETHTOOL_GRXCLSRLALL:
2729 /* Buffer size is variable */
2730 if (get_user(rule_cnt, &compat_rxnfc->rule_cnt))
2731 return -EFAULT;
2732 if (rule_cnt > KMALLOC_MAX_SIZE / sizeof(u32))
2733 return -ENOMEM;
2734 buf_size += rule_cnt * sizeof(u32);
2735 /* fall through */
2736 case ETHTOOL_GRXRINGS:
2737 case ETHTOOL_GRXCLSRLCNT:
2738 case ETHTOOL_GRXCLSRULE:
2739 convert_out = true;
2740 /* fall through */
2741 case ETHTOOL_SRXCLSRLDEL:
2742 case ETHTOOL_SRXCLSRLINS:
2743 buf_size += sizeof(struct ethtool_rxnfc);
2744 convert_in = true;
2745 break;
2746 }
2747
2748 ifr = compat_alloc_user_space(buf_size);
2749 rxnfc = (void *)ifr + ALIGN(sizeof(struct ifreq), 8);
2750
2751 if (copy_in_user(&ifr->ifr_name, &ifr32->ifr_name, IFNAMSIZ))
2752 return -EFAULT;
2753
2754 if (put_user(convert_in ? rxnfc : compat_ptr(data),
2755 &ifr->ifr_ifru.ifru_data))
2756 return -EFAULT;
2757
2758 if (convert_in) {
Alexander Duyck127fe532011-04-08 18:01:59 +00002759 /* We expect there to be holes between fs.m_ext and
Ben Hutchings3a7da392011-03-17 07:34:32 +00002760 * fs.ring_cookie and at the end of fs, but nowhere else.
2761 */
Alexander Duyck127fe532011-04-08 18:01:59 +00002762 BUILD_BUG_ON(offsetof(struct compat_ethtool_rxnfc, fs.m_ext) +
2763 sizeof(compat_rxnfc->fs.m_ext) !=
2764 offsetof(struct ethtool_rxnfc, fs.m_ext) +
2765 sizeof(rxnfc->fs.m_ext));
Ben Hutchings3a7da392011-03-17 07:34:32 +00002766 BUILD_BUG_ON(
2767 offsetof(struct compat_ethtool_rxnfc, fs.location) -
2768 offsetof(struct compat_ethtool_rxnfc, fs.ring_cookie) !=
2769 offsetof(struct ethtool_rxnfc, fs.location) -
2770 offsetof(struct ethtool_rxnfc, fs.ring_cookie));
2771
2772 if (copy_in_user(rxnfc, compat_rxnfc,
Alexander Duyck127fe532011-04-08 18:01:59 +00002773 (void *)(&rxnfc->fs.m_ext + 1) -
Ben Hutchings3a7da392011-03-17 07:34:32 +00002774 (void *)rxnfc) ||
2775 copy_in_user(&rxnfc->fs.ring_cookie,
2776 &compat_rxnfc->fs.ring_cookie,
2777 (void *)(&rxnfc->fs.location + 1) -
2778 (void *)&rxnfc->fs.ring_cookie) ||
2779 copy_in_user(&rxnfc->rule_cnt, &compat_rxnfc->rule_cnt,
2780 sizeof(rxnfc->rule_cnt)))
2781 return -EFAULT;
2782 }
2783
2784 ret = dev_ioctl(net, SIOCETHTOOL, ifr);
2785 if (ret)
2786 return ret;
2787
2788 if (convert_out) {
2789 if (copy_in_user(compat_rxnfc, rxnfc,
Alexander Duyck127fe532011-04-08 18:01:59 +00002790 (const void *)(&rxnfc->fs.m_ext + 1) -
Ben Hutchings3a7da392011-03-17 07:34:32 +00002791 (const void *)rxnfc) ||
2792 copy_in_user(&compat_rxnfc->fs.ring_cookie,
2793 &rxnfc->fs.ring_cookie,
2794 (const void *)(&rxnfc->fs.location + 1) -
2795 (const void *)&rxnfc->fs.ring_cookie) ||
2796 copy_in_user(&compat_rxnfc->rule_cnt, &rxnfc->rule_cnt,
2797 sizeof(rxnfc->rule_cnt)))
2798 return -EFAULT;
2799
2800 if (ethcmd == ETHTOOL_GRXCLSRLALL) {
2801 /* As an optimisation, we only copy the actual
2802 * number of rules that the underlying
2803 * function returned. Since Mallory might
2804 * change the rule count in user memory, we
2805 * check that it is less than the rule count
2806 * originally given (as the user buffer size),
2807 * which has been range-checked.
2808 */
2809 if (get_user(actual_rule_cnt, &rxnfc->rule_cnt))
2810 return -EFAULT;
2811 if (actual_rule_cnt < rule_cnt)
2812 rule_cnt = actual_rule_cnt;
2813 if (copy_in_user(&compat_rxnfc->rule_locs[0],
2814 &rxnfc->rule_locs[0],
2815 rule_cnt * sizeof(u32)))
2816 return -EFAULT;
2817 }
2818 }
2819
2820 return 0;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002821}
2822
Arnd Bergmann7a50a242009-11-08 20:57:03 -08002823static int compat_siocwandev(struct net *net, struct compat_ifreq __user *uifr32)
2824{
2825 void __user *uptr;
2826 compat_uptr_t uptr32;
2827 struct ifreq __user *uifr;
2828
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002829 uifr = compat_alloc_user_space(sizeof(*uifr));
Arnd Bergmann7a50a242009-11-08 20:57:03 -08002830 if (copy_in_user(uifr, uifr32, sizeof(struct compat_ifreq)))
2831 return -EFAULT;
2832
2833 if (get_user(uptr32, &uifr32->ifr_settings.ifs_ifsu))
2834 return -EFAULT;
2835
2836 uptr = compat_ptr(uptr32);
2837
2838 if (put_user(uptr, &uifr->ifr_settings.ifs_ifsu.raw_hdlc))
2839 return -EFAULT;
2840
2841 return dev_ioctl(net, SIOCWANDEV, uifr);
2842}
2843
Arnd Bergmann6b960182009-11-06 23:10:54 -08002844static int bond_ioctl(struct net *net, unsigned int cmd,
2845 struct compat_ifreq __user *ifr32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002846{
2847 struct ifreq kifr;
2848 struct ifreq __user *uifr;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002849 mm_segment_t old_fs;
2850 int err;
2851 u32 data;
2852 void __user *datap;
2853
2854 switch (cmd) {
2855 case SIOCBONDENSLAVE:
2856 case SIOCBONDRELEASE:
2857 case SIOCBONDSETHWADDR:
2858 case SIOCBONDCHANGEACTIVE:
Arnd Bergmann6b960182009-11-06 23:10:54 -08002859 if (copy_from_user(&kifr, ifr32, sizeof(struct compat_ifreq)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002860 return -EFAULT;
2861
2862 old_fs = get_fs();
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002863 set_fs(KERNEL_DS);
stephen hemmingerc3f52ae2011-02-23 09:06:48 +00002864 err = dev_ioctl(net, cmd,
2865 (struct ifreq __user __force *) &kifr);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002866 set_fs(old_fs);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002867
2868 return err;
2869 case SIOCBONDSLAVEINFOQUERY:
2870 case SIOCBONDINFOQUERY:
2871 uifr = compat_alloc_user_space(sizeof(*uifr));
2872 if (copy_in_user(&uifr->ifr_name, &ifr32->ifr_name, IFNAMSIZ))
2873 return -EFAULT;
2874
2875 if (get_user(data, &ifr32->ifr_ifru.ifru_data))
2876 return -EFAULT;
2877
2878 datap = compat_ptr(data);
2879 if (put_user(datap, &uifr->ifr_ifru.ifru_data))
2880 return -EFAULT;
2881
Arnd Bergmann6b960182009-11-06 23:10:54 -08002882 return dev_ioctl(net, cmd, uifr);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002883 default:
2884 return -EINVAL;
Joe Perchesccbd6a52010-05-14 10:58:26 +00002885 }
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002886}
2887
Arnd Bergmann6b960182009-11-06 23:10:54 -08002888static int siocdevprivate_ioctl(struct net *net, unsigned int cmd,
2889 struct compat_ifreq __user *u_ifreq32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002890{
2891 struct ifreq __user *u_ifreq64;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002892 char tmp_buf[IFNAMSIZ];
2893 void __user *data64;
2894 u32 data32;
2895
2896 if (copy_from_user(&tmp_buf[0], &(u_ifreq32->ifr_ifrn.ifrn_name[0]),
2897 IFNAMSIZ))
2898 return -EFAULT;
2899 if (__get_user(data32, &u_ifreq32->ifr_ifru.ifru_data))
2900 return -EFAULT;
2901 data64 = compat_ptr(data32);
2902
2903 u_ifreq64 = compat_alloc_user_space(sizeof(*u_ifreq64));
2904
2905 /* Don't check these user accesses, just let that get trapped
2906 * in the ioctl handler instead.
2907 */
2908 if (copy_to_user(&u_ifreq64->ifr_ifrn.ifrn_name[0], &tmp_buf[0],
2909 IFNAMSIZ))
2910 return -EFAULT;
2911 if (__put_user(data64, &u_ifreq64->ifr_ifru.ifru_data))
2912 return -EFAULT;
2913
Arnd Bergmann6b960182009-11-06 23:10:54 -08002914 return dev_ioctl(net, cmd, u_ifreq64);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002915}
2916
Arnd Bergmann6b960182009-11-06 23:10:54 -08002917static int dev_ifsioc(struct net *net, struct socket *sock,
2918 unsigned int cmd, struct compat_ifreq __user *uifr32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002919{
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002920 struct ifreq __user *uifr;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002921 int err;
2922
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002923 uifr = compat_alloc_user_space(sizeof(*uifr));
2924 if (copy_in_user(uifr, uifr32, sizeof(*uifr32)))
2925 return -EFAULT;
2926
2927 err = sock_do_ioctl(net, sock, cmd, (unsigned long)uifr);
2928
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002929 if (!err) {
2930 switch (cmd) {
2931 case SIOCGIFFLAGS:
2932 case SIOCGIFMETRIC:
2933 case SIOCGIFMTU:
2934 case SIOCGIFMEM:
2935 case SIOCGIFHWADDR:
2936 case SIOCGIFINDEX:
2937 case SIOCGIFADDR:
2938 case SIOCGIFBRDADDR:
2939 case SIOCGIFDSTADDR:
2940 case SIOCGIFNETMASK:
Arnd Bergmannfab25322009-11-08 20:56:21 -08002941 case SIOCGIFPFLAGS:
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002942 case SIOCGIFTXQLEN:
Arnd Bergmannfab25322009-11-08 20:56:21 -08002943 case SIOCGMIIPHY:
2944 case SIOCGMIIREG:
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002945 if (copy_in_user(uifr32, uifr, sizeof(*uifr32)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002946 err = -EFAULT;
2947 break;
2948 }
2949 }
2950 return err;
2951}
2952
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002953static int compat_sioc_ifmap(struct net *net, unsigned int cmd,
2954 struct compat_ifreq __user *uifr32)
2955{
2956 struct ifreq ifr;
2957 struct compat_ifmap __user *uifmap32;
2958 mm_segment_t old_fs;
2959 int err;
2960
2961 uifmap32 = &uifr32->ifr_ifru.ifru_map;
2962 err = copy_from_user(&ifr, uifr32, sizeof(ifr.ifr_name));
2963 err |= __get_user(ifr.ifr_map.mem_start, &uifmap32->mem_start);
2964 err |= __get_user(ifr.ifr_map.mem_end, &uifmap32->mem_end);
2965 err |= __get_user(ifr.ifr_map.base_addr, &uifmap32->base_addr);
2966 err |= __get_user(ifr.ifr_map.irq, &uifmap32->irq);
2967 err |= __get_user(ifr.ifr_map.dma, &uifmap32->dma);
2968 err |= __get_user(ifr.ifr_map.port, &uifmap32->port);
2969 if (err)
2970 return -EFAULT;
2971
2972 old_fs = get_fs();
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002973 set_fs(KERNEL_DS);
stephen hemmingerc3f52ae2011-02-23 09:06:48 +00002974 err = dev_ioctl(net, cmd, (void __user __force *)&ifr);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002975 set_fs(old_fs);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002976
2977 if (cmd == SIOCGIFMAP && !err) {
2978 err = copy_to_user(uifr32, &ifr, sizeof(ifr.ifr_name));
2979 err |= __put_user(ifr.ifr_map.mem_start, &uifmap32->mem_start);
2980 err |= __put_user(ifr.ifr_map.mem_end, &uifmap32->mem_end);
2981 err |= __put_user(ifr.ifr_map.base_addr, &uifmap32->base_addr);
2982 err |= __put_user(ifr.ifr_map.irq, &uifmap32->irq);
2983 err |= __put_user(ifr.ifr_map.dma, &uifmap32->dma);
2984 err |= __put_user(ifr.ifr_map.port, &uifmap32->port);
2985 if (err)
2986 err = -EFAULT;
2987 }
2988 return err;
2989}
2990
2991static int compat_siocshwtstamp(struct net *net, struct compat_ifreq __user *uifr32)
2992{
2993 void __user *uptr;
2994 compat_uptr_t uptr32;
2995 struct ifreq __user *uifr;
2996
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002997 uifr = compat_alloc_user_space(sizeof(*uifr));
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002998 if (copy_in_user(uifr, uifr32, sizeof(struct compat_ifreq)))
2999 return -EFAULT;
3000
3001 if (get_user(uptr32, &uifr32->ifr_data))
3002 return -EFAULT;
3003
3004 uptr = compat_ptr(uptr32);
3005
3006 if (put_user(uptr, &uifr->ifr_data))
3007 return -EFAULT;
3008
3009 return dev_ioctl(net, SIOCSHWTSTAMP, uifr);
3010}
3011
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003012struct rtentry32 {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003013 u32 rt_pad1;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003014 struct sockaddr rt_dst; /* target address */
3015 struct sockaddr rt_gateway; /* gateway addr (RTF_GATEWAY) */
3016 struct sockaddr rt_genmask; /* target network mask (IP) */
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003017 unsigned short rt_flags;
3018 short rt_pad2;
3019 u32 rt_pad3;
3020 unsigned char rt_tos;
3021 unsigned char rt_class;
3022 short rt_pad4;
3023 short rt_metric; /* +1 for binary compatibility! */
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003024 /* char * */ u32 rt_dev; /* forcing the device at add */
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003025 u32 rt_mtu; /* per route MTU/Window */
3026 u32 rt_window; /* Window clamping */
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003027 unsigned short rt_irtt; /* Initial RTT */
3028};
3029
3030struct in6_rtmsg32 {
3031 struct in6_addr rtmsg_dst;
3032 struct in6_addr rtmsg_src;
3033 struct in6_addr rtmsg_gateway;
3034 u32 rtmsg_type;
3035 u16 rtmsg_dst_len;
3036 u16 rtmsg_src_len;
3037 u32 rtmsg_metric;
3038 u32 rtmsg_info;
3039 u32 rtmsg_flags;
3040 s32 rtmsg_ifindex;
3041};
3042
Arnd Bergmann6b960182009-11-06 23:10:54 -08003043static int routing_ioctl(struct net *net, struct socket *sock,
3044 unsigned int cmd, void __user *argp)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003045{
3046 int ret;
3047 void *r = NULL;
3048 struct in6_rtmsg r6;
3049 struct rtentry r4;
3050 char devname[16];
3051 u32 rtdev;
3052 mm_segment_t old_fs = get_fs();
3053
Arnd Bergmann6b960182009-11-06 23:10:54 -08003054 if (sock && sock->sk && sock->sk->sk_family == AF_INET6) { /* ipv6 */
3055 struct in6_rtmsg32 __user *ur6 = argp;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003056 ret = copy_from_user(&r6.rtmsg_dst, &(ur6->rtmsg_dst),
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003057 3 * sizeof(struct in6_addr));
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003058 ret |= __get_user(r6.rtmsg_type, &(ur6->rtmsg_type));
3059 ret |= __get_user(r6.rtmsg_dst_len, &(ur6->rtmsg_dst_len));
3060 ret |= __get_user(r6.rtmsg_src_len, &(ur6->rtmsg_src_len));
3061 ret |= __get_user(r6.rtmsg_metric, &(ur6->rtmsg_metric));
3062 ret |= __get_user(r6.rtmsg_info, &(ur6->rtmsg_info));
3063 ret |= __get_user(r6.rtmsg_flags, &(ur6->rtmsg_flags));
3064 ret |= __get_user(r6.rtmsg_ifindex, &(ur6->rtmsg_ifindex));
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003065
3066 r = (void *) &r6;
3067 } else { /* ipv4 */
Arnd Bergmann6b960182009-11-06 23:10:54 -08003068 struct rtentry32 __user *ur4 = argp;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003069 ret = copy_from_user(&r4.rt_dst, &(ur4->rt_dst),
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003070 3 * sizeof(struct sockaddr));
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003071 ret |= __get_user(r4.rt_flags, &(ur4->rt_flags));
3072 ret |= __get_user(r4.rt_metric, &(ur4->rt_metric));
3073 ret |= __get_user(r4.rt_mtu, &(ur4->rt_mtu));
3074 ret |= __get_user(r4.rt_window, &(ur4->rt_window));
3075 ret |= __get_user(r4.rt_irtt, &(ur4->rt_irtt));
3076 ret |= __get_user(rtdev, &(ur4->rt_dev));
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003077 if (rtdev) {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003078 ret |= copy_from_user(devname, compat_ptr(rtdev), 15);
stephen hemmingerc3f52ae2011-02-23 09:06:48 +00003079 r4.rt_dev = (char __user __force *)devname;
3080 devname[15] = 0;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003081 } else
3082 r4.rt_dev = NULL;
3083
3084 r = (void *) &r4;
3085 }
3086
3087 if (ret) {
3088 ret = -EFAULT;
3089 goto out;
3090 }
3091
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003092 set_fs(KERNEL_DS);
Arnd Bergmann6b960182009-11-06 23:10:54 -08003093 ret = sock_do_ioctl(net, sock, cmd, (unsigned long) r);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003094 set_fs(old_fs);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003095
3096out:
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003097 return ret;
3098}
3099
3100/* Since old style bridge ioctl's endup using SIOCDEVPRIVATE
3101 * for some operations; this forces use of the newer bridge-utils that
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003102 * use compatible ioctls
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003103 */
Arnd Bergmann6b960182009-11-06 23:10:54 -08003104static int old_bridge_ioctl(compat_ulong_t __user *argp)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003105{
Arnd Bergmann6b960182009-11-06 23:10:54 -08003106 compat_ulong_t tmp;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003107
Arnd Bergmann6b960182009-11-06 23:10:54 -08003108 if (get_user(tmp, argp))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003109 return -EFAULT;
3110 if (tmp == BRCTL_GET_VERSION)
3111 return BRCTL_VERSION + 1;
3112 return -EINVAL;
3113}
3114
Arnd Bergmann6b960182009-11-06 23:10:54 -08003115static int compat_sock_ioctl_trans(struct file *file, struct socket *sock,
3116 unsigned int cmd, unsigned long arg)
3117{
3118 void __user *argp = compat_ptr(arg);
3119 struct sock *sk = sock->sk;
3120 struct net *net = sock_net(sk);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003121
Arnd Bergmann6b960182009-11-06 23:10:54 -08003122 if (cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15))
3123 return siocdevprivate_ioctl(net, cmd, argp);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003124
Arnd Bergmann6b960182009-11-06 23:10:54 -08003125 switch (cmd) {
3126 case SIOCSIFBR:
3127 case SIOCGIFBR:
3128 return old_bridge_ioctl(argp);
3129 case SIOCGIFNAME:
3130 return dev_ifname32(net, argp);
3131 case SIOCGIFCONF:
3132 return dev_ifconf(net, argp);
3133 case SIOCETHTOOL:
3134 return ethtool_ioctl(net, argp);
Arnd Bergmann7a50a242009-11-08 20:57:03 -08003135 case SIOCWANDEV:
3136 return compat_siocwandev(net, argp);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003137 case SIOCGIFMAP:
3138 case SIOCSIFMAP:
3139 return compat_sioc_ifmap(net, cmd, argp);
Arnd Bergmann6b960182009-11-06 23:10:54 -08003140 case SIOCBONDENSLAVE:
3141 case SIOCBONDRELEASE:
3142 case SIOCBONDSETHWADDR:
3143 case SIOCBONDSLAVEINFOQUERY:
3144 case SIOCBONDINFOQUERY:
3145 case SIOCBONDCHANGEACTIVE:
3146 return bond_ioctl(net, cmd, argp);
3147 case SIOCADDRT:
3148 case SIOCDELRT:
3149 return routing_ioctl(net, sock, cmd, argp);
3150 case SIOCGSTAMP:
3151 return do_siocgstamp(net, sock, cmd, argp);
3152 case SIOCGSTAMPNS:
3153 return do_siocgstampns(net, sock, cmd, argp);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003154 case SIOCSHWTSTAMP:
3155 return compat_siocshwtstamp(net, argp);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003156
Arnd Bergmann6b960182009-11-06 23:10:54 -08003157 case FIOSETOWN:
3158 case SIOCSPGRP:
3159 case FIOGETOWN:
3160 case SIOCGPGRP:
3161 case SIOCBRADDBR:
3162 case SIOCBRDELBR:
3163 case SIOCGIFVLAN:
3164 case SIOCSIFVLAN:
3165 case SIOCADDDLCI:
3166 case SIOCDELDLCI:
3167 return sock_ioctl(file, cmd, arg);
3168
3169 case SIOCGIFFLAGS:
3170 case SIOCSIFFLAGS:
3171 case SIOCGIFMETRIC:
3172 case SIOCSIFMETRIC:
3173 case SIOCGIFMTU:
3174 case SIOCSIFMTU:
3175 case SIOCGIFMEM:
3176 case SIOCSIFMEM:
3177 case SIOCGIFHWADDR:
3178 case SIOCSIFHWADDR:
3179 case SIOCADDMULTI:
3180 case SIOCDELMULTI:
3181 case SIOCGIFINDEX:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003182 case SIOCGIFADDR:
3183 case SIOCSIFADDR:
3184 case SIOCSIFHWBROADCAST:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003185 case SIOCDIFADDR:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003186 case SIOCGIFBRDADDR:
3187 case SIOCSIFBRDADDR:
3188 case SIOCGIFDSTADDR:
3189 case SIOCSIFDSTADDR:
3190 case SIOCGIFNETMASK:
3191 case SIOCSIFNETMASK:
3192 case SIOCSIFPFLAGS:
3193 case SIOCGIFPFLAGS:
3194 case SIOCGIFTXQLEN:
3195 case SIOCSIFTXQLEN:
3196 case SIOCBRADDIF:
3197 case SIOCBRDELIF:
Arnd Bergmann9177efd2009-11-06 08:09:09 +00003198 case SIOCSIFNAME:
3199 case SIOCGMIIPHY:
3200 case SIOCGMIIREG:
3201 case SIOCSMIIREG:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003202 return dev_ifsioc(net, sock, cmd, argp);
Arnd Bergmann9177efd2009-11-06 08:09:09 +00003203
Arnd Bergmann6b960182009-11-06 23:10:54 -08003204 case SIOCSARP:
3205 case SIOCGARP:
3206 case SIOCDARP:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003207 case SIOCATMARK:
Arnd Bergmann9177efd2009-11-06 08:09:09 +00003208 return sock_do_ioctl(net, sock, cmd, arg);
3209 }
3210
3211 /* Prevent warning from compat_sys_ioctl, these always
3212 * result in -EINVAL in the native case anyway. */
3213 switch (cmd) {
3214 case SIOCRTMSG:
3215 case SIOCGIFCOUNT:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003216 case SIOCSRARP:
3217 case SIOCGRARP:
3218 case SIOCDRARP:
Arnd Bergmann9177efd2009-11-06 08:09:09 +00003219 case SIOCSIFLINK:
3220 case SIOCGIFSLAVE:
3221 case SIOCSIFSLAVE:
3222 return -EINVAL;
Arnd Bergmann6b960182009-11-06 23:10:54 -08003223 }
3224
3225 return -ENOIOCTLCMD;
3226}
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003227
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003228static long compat_sock_ioctl(struct file *file, unsigned cmd,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07003229 unsigned long arg)
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003230{
3231 struct socket *sock = file->private_data;
3232 int ret = -ENOIOCTLCMD;
David S. Miller87de87d2008-06-03 09:14:03 -07003233 struct sock *sk;
3234 struct net *net;
3235
3236 sk = sock->sk;
3237 net = sock_net(sk);
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003238
3239 if (sock->ops->compat_ioctl)
3240 ret = sock->ops->compat_ioctl(sock, cmd, arg);
3241
David S. Miller87de87d2008-06-03 09:14:03 -07003242 if (ret == -ENOIOCTLCMD &&
3243 (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST))
3244 ret = compat_wext_handle_ioctl(net, cmd, arg);
3245
Arnd Bergmann6b960182009-11-06 23:10:54 -08003246 if (ret == -ENOIOCTLCMD)
3247 ret = compat_sock_ioctl_trans(file, sock, cmd, arg);
3248
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003249 return ret;
3250}
3251#endif
3252
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003253int kernel_bind(struct socket *sock, struct sockaddr *addr, int addrlen)
3254{
3255 return sock->ops->bind(sock, addr, addrlen);
3256}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003257EXPORT_SYMBOL(kernel_bind);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003258
3259int kernel_listen(struct socket *sock, int backlog)
3260{
3261 return sock->ops->listen(sock, backlog);
3262}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003263EXPORT_SYMBOL(kernel_listen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003264
3265int kernel_accept(struct socket *sock, struct socket **newsock, int flags)
3266{
3267 struct sock *sk = sock->sk;
3268 int err;
3269
3270 err = sock_create_lite(sk->sk_family, sk->sk_type, sk->sk_protocol,
3271 newsock);
3272 if (err < 0)
3273 goto done;
3274
3275 err = sock->ops->accept(sock, *newsock, flags);
3276 if (err < 0) {
3277 sock_release(*newsock);
Tony Battersbyfa8705b2007-10-10 21:09:04 -07003278 *newsock = NULL;
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003279 goto done;
3280 }
3281
3282 (*newsock)->ops = sock->ops;
Wei Yongjun1b085342008-12-18 19:35:10 -08003283 __module_get((*newsock)->ops->owner);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003284
3285done:
3286 return err;
3287}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003288EXPORT_SYMBOL(kernel_accept);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003289
3290int kernel_connect(struct socket *sock, struct sockaddr *addr, int addrlen,
YOSHIFUJI Hideaki4768fbc2007-02-09 23:25:31 +09003291 int flags)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003292{
3293 return sock->ops->connect(sock, addr, addrlen, flags);
3294}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003295EXPORT_SYMBOL(kernel_connect);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003296
3297int kernel_getsockname(struct socket *sock, struct sockaddr *addr,
3298 int *addrlen)
3299{
3300 return sock->ops->getname(sock, addr, addrlen, 0);
3301}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003302EXPORT_SYMBOL(kernel_getsockname);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003303
3304int kernel_getpeername(struct socket *sock, struct sockaddr *addr,
3305 int *addrlen)
3306{
3307 return sock->ops->getname(sock, addr, addrlen, 1);
3308}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003309EXPORT_SYMBOL(kernel_getpeername);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003310
3311int kernel_getsockopt(struct socket *sock, int level, int optname,
3312 char *optval, int *optlen)
3313{
3314 mm_segment_t oldfs = get_fs();
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003315 char __user *uoptval;
3316 int __user *uoptlen;
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003317 int err;
3318
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003319 uoptval = (char __user __force *) optval;
3320 uoptlen = (int __user __force *) optlen;
3321
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003322 set_fs(KERNEL_DS);
3323 if (level == SOL_SOCKET)
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003324 err = sock_getsockopt(sock, level, optname, uoptval, uoptlen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003325 else
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003326 err = sock->ops->getsockopt(sock, level, optname, uoptval,
3327 uoptlen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003328 set_fs(oldfs);
3329 return err;
3330}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003331EXPORT_SYMBOL(kernel_getsockopt);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003332
3333int kernel_setsockopt(struct socket *sock, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07003334 char *optval, unsigned int optlen)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003335{
3336 mm_segment_t oldfs = get_fs();
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003337 char __user *uoptval;
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003338 int err;
3339
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003340 uoptval = (char __user __force *) optval;
3341
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003342 set_fs(KERNEL_DS);
3343 if (level == SOL_SOCKET)
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003344 err = sock_setsockopt(sock, level, optname, uoptval, optlen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003345 else
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003346 err = sock->ops->setsockopt(sock, level, optname, uoptval,
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003347 optlen);
3348 set_fs(oldfs);
3349 return err;
3350}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003351EXPORT_SYMBOL(kernel_setsockopt);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003352
3353int kernel_sendpage(struct socket *sock, struct page *page, int offset,
3354 size_t size, int flags)
3355{
Herbert Xuf8451722010-05-24 00:12:34 -07003356 sock_update_classid(sock->sk);
3357
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003358 if (sock->ops->sendpage)
3359 return sock->ops->sendpage(sock, page, offset, size, flags);
3360
3361 return sock_no_sendpage(sock, page, offset, size, flags);
3362}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003363EXPORT_SYMBOL(kernel_sendpage);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003364
3365int kernel_sock_ioctl(struct socket *sock, int cmd, unsigned long arg)
3366{
3367 mm_segment_t oldfs = get_fs();
3368 int err;
3369
3370 set_fs(KERNEL_DS);
3371 err = sock->ops->ioctl(sock, cmd, arg);
3372 set_fs(oldfs);
3373
3374 return err;
3375}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003376EXPORT_SYMBOL(kernel_sock_ioctl);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003377
Trond Myklebust91cf45f2007-11-12 18:10:39 -08003378int kernel_sock_shutdown(struct socket *sock, enum sock_shutdown_cmd how)
3379{
3380 return sock->ops->shutdown(sock, how);
3381}
Trond Myklebust91cf45f2007-11-12 18:10:39 -08003382EXPORT_SYMBOL(kernel_sock_shutdown);