blob: e4ed2359eb43db5277503c9a623d1b2f560c1624 [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
266static void sock_destroy_inode(struct inode *inode)
267{
Eric Dumazet43815482010-04-29 11:01:49 +0000268 struct socket_alloc *ei;
Eric Dumazeteaefd112011-02-18 03:26:36 +0000269 struct socket_wq *wq;
Eric Dumazet43815482010-04-29 11:01:49 +0000270
271 ei = container_of(inode, struct socket_alloc, vfs_inode);
Eric Dumazeteaefd112011-02-18 03:26:36 +0000272 wq = rcu_dereference_protected(ei->socket.wq, 1);
Lai Jiangshan61845222011-03-18 12:10:25 +0800273 kfree_rcu(wq, rcu);
Eric Dumazet43815482010-04-29 11:01:49 +0000274 kmem_cache_free(sock_inode_cachep, ei);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275}
276
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700277static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278{
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700279 struct socket_alloc *ei = (struct socket_alloc *)foo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Christoph Lametera35afb82007-05-16 22:10:57 -0700281 inode_init_once(&ei->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282}
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284static int init_inodecache(void)
285{
286 sock_inode_cachep = kmem_cache_create("sock_inode_cache",
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700287 sizeof(struct socket_alloc),
288 0,
289 (SLAB_HWCACHE_ALIGN |
290 SLAB_RECLAIM_ACCOUNT |
291 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +0900292 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 if (sock_inode_cachep == NULL)
294 return -ENOMEM;
295 return 0;
296}
297
Alexey Dobriyanb87221d2009-09-21 17:01:09 -0700298static const struct super_operations sockfs_ops = {
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700299 .alloc_inode = sock_alloc_inode,
300 .destroy_inode = sock_destroy_inode,
301 .statfs = simple_statfs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302};
303
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700304/*
305 * sockfs_dname() is called from d_path().
306 */
307static char *sockfs_dname(struct dentry *dentry, char *buffer, int buflen)
308{
309 return dynamic_dname(dentry, buffer, buflen, "socket:[%lu]",
310 dentry->d_inode->i_ino);
311}
312
Al Viro3ba13d12009-02-20 06:02:22 +0000313static const struct dentry_operations sockfs_dentry_operations = {
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700314 .d_dname = sockfs_dname,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315};
316
Al Viroc74a1cb2011-01-12 16:59:34 -0500317static struct dentry *sockfs_mount(struct file_system_type *fs_type,
318 int flags, const char *dev_name, void *data)
319{
320 return mount_pseudo(fs_type, "socket:", &sockfs_ops,
321 &sockfs_dentry_operations, SOCKFS_MAGIC);
322}
323
324static struct vfsmount *sock_mnt __read_mostly;
325
326static struct file_system_type sock_fs_type = {
327 .name = "sockfs",
328 .mount = sockfs_mount,
329 .kill_sb = kill_anon_super,
330};
331
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332/*
333 * Obtains the first available file descriptor and sets it up for use.
334 *
David S. Miller39d8c1b2006-03-20 17:13:49 -0800335 * These functions create file structures and maps them to fd space
336 * of the current process. On success it returns file descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 * and file struct implicitly stored in sock->file.
338 * Note that another thread may close file descriptor before we return
339 * from this function. We use the fact that now we do not refer
340 * to socket after mapping. If one day we will need it, this
341 * function will increment ref. count on file by 1.
342 *
343 * In any case returned fd MAY BE not valid!
344 * This race condition is unavoidable
345 * with shared fd spaces, we cannot solve it inside kernel,
346 * but we take care of internal coherence yet.
347 */
348
Al Viro7cbe66b2009-08-05 19:59:08 +0400349static int sock_alloc_file(struct socket *sock, struct file **f, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350{
Al Viro7cbe66b2009-08-05 19:59:08 +0400351 struct qstr name = { .name = "" };
Al Viro2c48b9c2009-08-09 00:52:35 +0400352 struct path path;
Al Viro7cbe66b2009-08-05 19:59:08 +0400353 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 int fd;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800355
Ulrich Dreppera677a032008-07-23 21:29:17 -0700356 fd = get_unused_fd_flags(flags);
Al Viro7cbe66b2009-08-05 19:59:08 +0400357 if (unlikely(fd < 0))
358 return fd;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800359
Nick Piggin4b936882011-01-07 17:50:07 +1100360 path.dentry = d_alloc_pseudo(sock_mnt->mnt_sb, &name);
Al Viro2c48b9c2009-08-09 00:52:35 +0400361 if (unlikely(!path.dentry)) {
Al Viro7cbe66b2009-08-05 19:59:08 +0400362 put_unused_fd(fd);
David S. Miller39d8c1b2006-03-20 17:13:49 -0800363 return -ENOMEM;
Al Viro7cbe66b2009-08-05 19:59:08 +0400364 }
Al Viro2c48b9c2009-08-09 00:52:35 +0400365 path.mnt = mntget(sock_mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Al Viro2c48b9c2009-08-09 00:52:35 +0400367 d_instantiate(path.dentry, SOCK_INODE(sock));
Al Virocc3808f2009-08-06 09:43:59 +0400368 SOCK_INODE(sock)->i_fop = &socket_file_ops;
369
Al Viro2c48b9c2009-08-09 00:52:35 +0400370 file = alloc_file(&path, FMODE_READ | FMODE_WRITE,
Al Virocc3808f2009-08-06 09:43:59 +0400371 &socket_file_ops);
372 if (unlikely(!file)) {
373 /* drop dentry, keep inode */
Al Viro7de9c6ee2010-10-23 11:11:40 -0400374 ihold(path.dentry->d_inode);
Al Viro2c48b9c2009-08-09 00:52:35 +0400375 path_put(&path);
Al Virocc3808f2009-08-06 09:43:59 +0400376 put_unused_fd(fd);
377 return -ENFILE;
378 }
David S. Miller39d8c1b2006-03-20 17:13:49 -0800379
380 sock->file = file;
Ulrich Drepper77d27202008-07-23 21:29:35 -0700381 file->f_flags = O_RDWR | (flags & O_NONBLOCK);
David S. Miller39d8c1b2006-03-20 17:13:49 -0800382 file->f_pos = 0;
383 file->private_data = sock;
384
Al Viro7cbe66b2009-08-05 19:59:08 +0400385 *f = file;
386 return fd;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800387}
388
Ulrich Dreppera677a032008-07-23 21:29:17 -0700389int sock_map_fd(struct socket *sock, int flags)
David S. Miller39d8c1b2006-03-20 17:13:49 -0800390{
391 struct file *newfile;
Al Viro7cbe66b2009-08-05 19:59:08 +0400392 int fd = sock_alloc_file(sock, &newfile, flags);
David S. Miller39d8c1b2006-03-20 17:13:49 -0800393
Al Viro7cbe66b2009-08-05 19:59:08 +0400394 if (likely(fd >= 0))
David S. Miller39d8c1b2006-03-20 17:13:49 -0800395 fd_install(fd, newfile);
Al Viro7cbe66b2009-08-05 19:59:08 +0400396
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 return fd;
398}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700399EXPORT_SYMBOL(sock_map_fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800401static struct socket *sock_from_file(struct file *file, int *err)
402{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800403 if (file->f_op == &socket_file_ops)
404 return file->private_data; /* set in sock_map_fd */
405
Eric Dumazet23bb80d2007-02-08 14:59:57 -0800406 *err = -ENOTSOCK;
407 return NULL;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800408}
409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410/**
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700411 * sockfd_lookup - Go from a file number to its socket slot
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 * @fd: file handle
413 * @err: pointer to an error code return
414 *
415 * The file handle passed in is locked and the socket it is bound
416 * too is returned. If an error occurs the err pointer is overwritten
417 * with a negative errno code and NULL is returned. The function checks
418 * for both invalid handles and passing a handle which is not a socket.
419 *
420 * On a success the socket object pointer is returned.
421 */
422
423struct socket *sockfd_lookup(int fd, int *err)
424{
425 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 struct socket *sock;
427
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700428 file = fget(fd);
429 if (!file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 *err = -EBADF;
431 return NULL;
432 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700433
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800434 sock = sock_from_file(file, err);
435 if (!sock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 fput(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 return sock;
438}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700439EXPORT_SYMBOL(sockfd_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800441static struct socket *sockfd_lookup_light(int fd, int *err, int *fput_needed)
442{
443 struct file *file;
444 struct socket *sock;
445
Hua Zhong36725582006-04-19 15:25:02 -0700446 *err = -EBADF;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800447 file = fget_light(fd, fput_needed);
448 if (file) {
449 sock = sock_from_file(file, err);
450 if (sock)
451 return sock;
452 fput_light(file, *fput_needed);
453 }
454 return NULL;
455}
456
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457/**
458 * sock_alloc - allocate a socket
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700459 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 * Allocate a new inode and socket object. The two are bound together
461 * and initialised. The socket is then returned. If we are out of inodes
462 * NULL is returned.
463 */
464
465static struct socket *sock_alloc(void)
466{
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700467 struct inode *inode;
468 struct socket *sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
Eric Dumazeta209dfc2011-07-26 11:36:34 +0200470 inode = new_inode_pseudo(sock_mnt->mnt_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 if (!inode)
472 return NULL;
473
474 sock = SOCKET_I(inode);
475
Eric Dumazet29a020d2009-09-15 02:39:20 -0700476 kmemcheck_annotate_bitfield(sock, type);
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400477 inode->i_ino = get_next_ino();
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700478 inode->i_mode = S_IFSOCK | S_IRWXUGO;
David Howells8192b0c2008-11-14 10:39:10 +1100479 inode->i_uid = current_fsuid();
480 inode->i_gid = current_fsgid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
Eric Dumazet4e694892009-04-04 16:41:09 -0700482 percpu_add(sockets_in_use, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 return sock;
484}
485
486/*
487 * In theory you can't get an open on this inode, but /proc provides
488 * a back door. Remember to keep it shut otherwise you'll let the
489 * creepy crawlies in.
490 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700491
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492static int sock_no_open(struct inode *irrelevant, struct file *dontcare)
493{
494 return -ENXIO;
495}
496
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800497const struct file_operations bad_sock_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 .owner = THIS_MODULE,
499 .open = sock_no_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200500 .llseek = noop_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501};
502
503/**
504 * sock_release - close a socket
505 * @sock: socket to close
506 *
507 * The socket is released from the protocol stack if it has a release
508 * callback, and the inode is then released if the socket is bound to
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700509 * an inode not a file.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700511
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512void sock_release(struct socket *sock)
513{
514 if (sock->ops) {
515 struct module *owner = sock->ops->owner;
516
517 sock->ops->release(sock);
518 sock->ops = NULL;
519 module_put(owner);
520 }
521
Eric Dumazeteaefd112011-02-18 03:26:36 +0000522 if (rcu_dereference_protected(sock->wq, 1)->fasync_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 printk(KERN_ERR "sock_release: fasync list not empty!\n");
524
Eric Dumazet4e694892009-04-04 16:41:09 -0700525 percpu_sub(sockets_in_use, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 if (!sock->file) {
527 iput(SOCK_INODE(sock));
528 return;
529 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700530 sock->file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700532EXPORT_SYMBOL(sock_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
Oliver Hartkopp2244d072010-08-17 08:59:14 +0000534int sock_tx_timestamp(struct sock *sk, __u8 *tx_flags)
Patrick Ohly20d49472009-02-12 05:03:38 +0000535{
Oliver Hartkopp2244d072010-08-17 08:59:14 +0000536 *tx_flags = 0;
Patrick Ohly20d49472009-02-12 05:03:38 +0000537 if (sock_flag(sk, SOCK_TIMESTAMPING_TX_HARDWARE))
Oliver Hartkopp2244d072010-08-17 08:59:14 +0000538 *tx_flags |= SKBTX_HW_TSTAMP;
Patrick Ohly20d49472009-02-12 05:03:38 +0000539 if (sock_flag(sk, SOCK_TIMESTAMPING_TX_SOFTWARE))
Oliver Hartkopp2244d072010-08-17 08:59:14 +0000540 *tx_flags |= SKBTX_SW_TSTAMP;
Patrick Ohly20d49472009-02-12 05:03:38 +0000541 return 0;
542}
543EXPORT_SYMBOL(sock_tx_timestamp);
544
Anton Blanchard228e5482011-05-02 20:21:35 +0000545static inline int __sock_sendmsg_nosec(struct kiocb *iocb, struct socket *sock,
546 struct msghdr *msg, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547{
548 struct sock_iocb *si = kiocb_to_siocb(iocb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
Herbert Xuf8451722010-05-24 00:12:34 -0700550 sock_update_classid(sock->sk);
551
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 si->sock = sock;
553 si->scm = NULL;
554 si->msg = msg;
555 si->size = size;
556
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 return sock->ops->sendmsg(iocb, sock, msg, size);
558}
559
Anton Blanchard228e5482011-05-02 20:21:35 +0000560static inline int __sock_sendmsg(struct kiocb *iocb, struct socket *sock,
561 struct msghdr *msg, size_t size)
562{
563 int err = security_socket_sendmsg(sock, msg, size);
564
565 return err ?: __sock_sendmsg_nosec(iocb, sock, msg, size);
566}
567
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568int sock_sendmsg(struct socket *sock, struct msghdr *msg, size_t size)
569{
570 struct kiocb iocb;
571 struct sock_iocb siocb;
572 int ret;
573
574 init_sync_kiocb(&iocb, NULL);
575 iocb.private = &siocb;
576 ret = __sock_sendmsg(&iocb, sock, msg, size);
577 if (-EIOCBQUEUED == ret)
578 ret = wait_on_sync_kiocb(&iocb);
579 return ret;
580}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700581EXPORT_SYMBOL(sock_sendmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
Eric Dumazet894dc242011-07-26 02:39:41 +0000583static int sock_sendmsg_nosec(struct socket *sock, struct msghdr *msg, size_t size)
Anton Blanchard228e5482011-05-02 20:21:35 +0000584{
585 struct kiocb iocb;
586 struct sock_iocb siocb;
587 int ret;
588
589 init_sync_kiocb(&iocb, NULL);
590 iocb.private = &siocb;
591 ret = __sock_sendmsg_nosec(&iocb, sock, msg, size);
592 if (-EIOCBQUEUED == ret)
593 ret = wait_on_sync_kiocb(&iocb);
594 return ret;
595}
596
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597int kernel_sendmsg(struct socket *sock, struct msghdr *msg,
598 struct kvec *vec, size_t num, size_t size)
599{
600 mm_segment_t oldfs = get_fs();
601 int result;
602
603 set_fs(KERNEL_DS);
604 /*
605 * the following is safe, since for compiler definitions of kvec and
606 * iovec are identical, yielding the same in-core layout and alignment
607 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700608 msg->msg_iov = (struct iovec *)vec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 msg->msg_iovlen = num;
610 result = sock_sendmsg(sock, msg, size);
611 set_fs(oldfs);
612 return result;
613}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700614EXPORT_SYMBOL(kernel_sendmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
Patrick Ohly20d49472009-02-12 05:03:38 +0000616static int ktime2ts(ktime_t kt, struct timespec *ts)
617{
618 if (kt.tv64) {
619 *ts = ktime_to_timespec(kt);
620 return 1;
621 } else {
622 return 0;
623 }
624}
625
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700626/*
627 * called from sock_recv_timestamp() if sock_flag(sk, SOCK_RCVTSTAMP)
628 */
629void __sock_recv_timestamp(struct msghdr *msg, struct sock *sk,
630 struct sk_buff *skb)
631{
Patrick Ohly20d49472009-02-12 05:03:38 +0000632 int need_software_tstamp = sock_flag(sk, SOCK_RCVTSTAMP);
633 struct timespec ts[3];
634 int empty = 1;
635 struct skb_shared_hwtstamps *shhwtstamps =
636 skb_hwtstamps(skb);
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700637
Patrick Ohly20d49472009-02-12 05:03:38 +0000638 /* Race occurred between timestamp enabling and packet
639 receiving. Fill in the current time for now. */
640 if (need_software_tstamp && skb->tstamp.tv64 == 0)
641 __net_timestamp(skb);
642
643 if (need_software_tstamp) {
644 if (!sock_flag(sk, SOCK_RCVTSTAMPNS)) {
645 struct timeval tv;
646 skb_get_timestamp(skb, &tv);
647 put_cmsg(msg, SOL_SOCKET, SCM_TIMESTAMP,
648 sizeof(tv), &tv);
649 } else {
Hagen Paul Pfeifer842509b2010-04-06 05:39:52 +0000650 skb_get_timestampns(skb, &ts[0]);
Patrick Ohly20d49472009-02-12 05:03:38 +0000651 put_cmsg(msg, SOL_SOCKET, SCM_TIMESTAMPNS,
Hagen Paul Pfeifer842509b2010-04-06 05:39:52 +0000652 sizeof(ts[0]), &ts[0]);
Patrick Ohly20d49472009-02-12 05:03:38 +0000653 }
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700654 }
Patrick Ohly20d49472009-02-12 05:03:38 +0000655
656
657 memset(ts, 0, sizeof(ts));
658 if (skb->tstamp.tv64 &&
659 sock_flag(sk, SOCK_TIMESTAMPING_SOFTWARE)) {
660 skb_get_timestampns(skb, ts + 0);
661 empty = 0;
662 }
663 if (shhwtstamps) {
664 if (sock_flag(sk, SOCK_TIMESTAMPING_SYS_HARDWARE) &&
665 ktime2ts(shhwtstamps->syststamp, ts + 1))
666 empty = 0;
667 if (sock_flag(sk, SOCK_TIMESTAMPING_RAW_HARDWARE) &&
668 ktime2ts(shhwtstamps->hwtstamp, ts + 2))
669 empty = 0;
670 }
671 if (!empty)
672 put_cmsg(msg, SOL_SOCKET,
673 SCM_TIMESTAMPING, sizeof(ts), &ts);
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700674}
Arnaldo Carvalho de Melo7c81fd82007-03-10 00:39:35 -0300675EXPORT_SYMBOL_GPL(__sock_recv_timestamp);
676
stephen hemminger11165f12010-10-18 14:27:29 +0000677static inline void sock_recv_drops(struct msghdr *msg, struct sock *sk,
678 struct sk_buff *skb)
Neil Horman3b885782009-10-12 13:26:31 -0700679{
680 if (sock_flag(sk, SOCK_RXQ_OVFL) && skb && skb->dropcount)
681 put_cmsg(msg, SOL_SOCKET, SO_RXQ_OVFL,
682 sizeof(__u32), &skb->dropcount);
683}
684
Eric Dumazet767dd032010-04-28 19:14:43 +0000685void __sock_recv_ts_and_drops(struct msghdr *msg, struct sock *sk,
Neil Horman3b885782009-10-12 13:26:31 -0700686 struct sk_buff *skb)
687{
688 sock_recv_timestamp(msg, sk, skb);
689 sock_recv_drops(msg, sk, skb);
690}
Eric Dumazet767dd032010-04-28 19:14:43 +0000691EXPORT_SYMBOL_GPL(__sock_recv_ts_and_drops);
Neil Horman3b885782009-10-12 13:26:31 -0700692
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -0700693static inline int __sock_recvmsg_nosec(struct kiocb *iocb, struct socket *sock,
694 struct msghdr *msg, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 struct sock_iocb *si = kiocb_to_siocb(iocb);
697
Herbert Xuf8451722010-05-24 00:12:34 -0700698 sock_update_classid(sock->sk);
699
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 si->sock = sock;
701 si->scm = NULL;
702 si->msg = msg;
703 si->size = size;
704 si->flags = flags;
705
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 return sock->ops->recvmsg(iocb, sock, msg, size, flags);
707}
708
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -0700709static inline int __sock_recvmsg(struct kiocb *iocb, struct socket *sock,
710 struct msghdr *msg, size_t size, int flags)
711{
712 int err = security_socket_recvmsg(sock, msg, size, flags);
713
714 return err ?: __sock_recvmsg_nosec(iocb, sock, msg, size, flags);
715}
716
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700717int sock_recvmsg(struct socket *sock, struct msghdr *msg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 size_t size, int flags)
719{
720 struct kiocb iocb;
721 struct sock_iocb siocb;
722 int ret;
723
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700724 init_sync_kiocb(&iocb, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 iocb.private = &siocb;
726 ret = __sock_recvmsg(&iocb, sock, msg, size, flags);
727 if (-EIOCBQUEUED == ret)
728 ret = wait_on_sync_kiocb(&iocb);
729 return ret;
730}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700731EXPORT_SYMBOL(sock_recvmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -0700733static int sock_recvmsg_nosec(struct socket *sock, struct msghdr *msg,
734 size_t size, int flags)
735{
736 struct kiocb iocb;
737 struct sock_iocb siocb;
738 int ret;
739
740 init_sync_kiocb(&iocb, NULL);
741 iocb.private = &siocb;
742 ret = __sock_recvmsg_nosec(&iocb, sock, msg, size, flags);
743 if (-EIOCBQUEUED == ret)
744 ret = wait_on_sync_kiocb(&iocb);
745 return ret;
746}
747
Martin Lucinac1249c02010-12-10 00:04:05 +0000748/**
749 * kernel_recvmsg - Receive a message from a socket (kernel space)
750 * @sock: The socket to receive the message from
751 * @msg: Received message
752 * @vec: Input s/g array for message data
753 * @num: Size of input s/g array
754 * @size: Number of bytes to read
755 * @flags: Message flags (MSG_DONTWAIT, etc...)
756 *
757 * On return the msg structure contains the scatter/gather array passed in the
758 * vec argument. The array is modified so that it consists of the unfilled
759 * portion of the original array.
760 *
761 * The returned value is the total number of bytes received, or an error.
762 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700763int kernel_recvmsg(struct socket *sock, struct msghdr *msg,
764 struct kvec *vec, size_t num, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765{
766 mm_segment_t oldfs = get_fs();
767 int result;
768
769 set_fs(KERNEL_DS);
770 /*
771 * the following is safe, since for compiler definitions of kvec and
772 * iovec are identical, yielding the same in-core layout and alignment
773 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700774 msg->msg_iov = (struct iovec *)vec, msg->msg_iovlen = num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 result = sock_recvmsg(sock, msg, size, flags);
776 set_fs(oldfs);
777 return result;
778}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700779EXPORT_SYMBOL(kernel_recvmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
781static void sock_aio_dtor(struct kiocb *iocb)
782{
783 kfree(iocb->private);
784}
785
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -0300786static ssize_t sock_sendpage(struct file *file, struct page *page,
787 int offset, size_t size, loff_t *ppos, int more)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788{
789 struct socket *sock;
790 int flags;
791
Eric Dumazetb69aee02005-09-06 14:42:45 -0700792 sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
794 flags = !(file->f_flags & O_NONBLOCK) ? 0 : MSG_DONTWAIT;
795 if (more)
796 flags |= MSG_MORE;
797
Linus Torvaldse6949582009-08-13 08:28:36 -0700798 return kernel_sendpage(sock, page, offset, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799}
800
Jens Axboe9c55e012007-11-06 23:30:13 -0800801static ssize_t sock_splice_read(struct file *file, loff_t *ppos,
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700802 struct pipe_inode_info *pipe, size_t len,
Jens Axboe9c55e012007-11-06 23:30:13 -0800803 unsigned int flags)
804{
805 struct socket *sock = file->private_data;
806
Rémi Denis-Courmont997b37d2008-02-15 02:35:45 -0800807 if (unlikely(!sock->ops->splice_read))
808 return -EINVAL;
809
Herbert Xuf8451722010-05-24 00:12:34 -0700810 sock_update_classid(sock->sk);
811
Jens Axboe9c55e012007-11-06 23:30:13 -0800812 return sock->ops->splice_read(sock, ppos, pipe, len, flags);
813}
814
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800815static struct sock_iocb *alloc_sock_iocb(struct kiocb *iocb,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700816 struct sock_iocb *siocb)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800817{
818 if (!is_sync_kiocb(iocb)) {
819 siocb = kmalloc(sizeof(*siocb), GFP_KERNEL);
820 if (!siocb)
821 return NULL;
822 iocb->ki_dtor = sock_aio_dtor;
823 }
824
825 siocb->kiocb = iocb;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800826 iocb->private = siocb;
827 return siocb;
828}
829
830static ssize_t do_sock_read(struct msghdr *msg, struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -0700831 struct file *file, const struct iovec *iov,
832 unsigned long nr_segs)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800833{
834 struct socket *sock = file->private_data;
835 size_t size = 0;
836 int i;
837
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700838 for (i = 0; i < nr_segs; i++)
839 size += iov[i].iov_len;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800840
841 msg->msg_name = NULL;
842 msg->msg_namelen = 0;
843 msg->msg_control = NULL;
844 msg->msg_controllen = 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700845 msg->msg_iov = (struct iovec *)iov;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800846 msg->msg_iovlen = nr_segs;
847 msg->msg_flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
848
849 return __sock_recvmsg(iocb, sock, msg, size, msg->msg_flags);
850}
851
Badari Pulavarty027445c2006-09-30 23:28:46 -0700852static ssize_t sock_aio_read(struct kiocb *iocb, const struct iovec *iov,
853 unsigned long nr_segs, loff_t pos)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800854{
855 struct sock_iocb siocb, *x;
856
857 if (pos != 0)
858 return -ESPIPE;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700859
860 if (iocb->ki_left == 0) /* Match SYS5 behaviour */
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800861 return 0;
862
Badari Pulavarty027445c2006-09-30 23:28:46 -0700863
864 x = alloc_sock_iocb(iocb, &siocb);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800865 if (!x)
866 return -ENOMEM;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700867 return do_sock_read(&x->async_msg, iocb, iocb->ki_filp, iov, nr_segs);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800868}
869
870static ssize_t do_sock_write(struct msghdr *msg, struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -0700871 struct file *file, const struct iovec *iov,
872 unsigned long nr_segs)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800873{
874 struct socket *sock = file->private_data;
875 size_t size = 0;
876 int i;
877
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700878 for (i = 0; i < nr_segs; i++)
879 size += iov[i].iov_len;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800880
881 msg->msg_name = NULL;
882 msg->msg_namelen = 0;
883 msg->msg_control = NULL;
884 msg->msg_controllen = 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700885 msg->msg_iov = (struct iovec *)iov;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800886 msg->msg_iovlen = nr_segs;
887 msg->msg_flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
888 if (sock->type == SOCK_SEQPACKET)
889 msg->msg_flags |= MSG_EOR;
890
891 return __sock_sendmsg(iocb, sock, msg, size);
892}
893
Badari Pulavarty027445c2006-09-30 23:28:46 -0700894static ssize_t sock_aio_write(struct kiocb *iocb, const struct iovec *iov,
895 unsigned long nr_segs, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896{
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800897 struct sock_iocb siocb, *x;
898
899 if (pos != 0)
900 return -ESPIPE;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700901
Badari Pulavarty027445c2006-09-30 23:28:46 -0700902 x = alloc_sock_iocb(iocb, &siocb);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800903 if (!x)
904 return -ENOMEM;
905
Badari Pulavarty027445c2006-09-30 23:28:46 -0700906 return do_sock_write(&x->async_msg, iocb, iocb->ki_filp, iov, nr_segs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907}
908
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909/*
910 * Atomic setting of ioctl hooks to avoid race
911 * with module unload.
912 */
913
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800914static DEFINE_MUTEX(br_ioctl_mutex);
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700915static int (*br_ioctl_hook) (struct net *, unsigned int cmd, void __user *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916
Eric W. Biederman881d9662007-09-17 11:56:21 -0700917void brioctl_set(int (*hook) (struct net *, unsigned int, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800919 mutex_lock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 br_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800921 mutex_unlock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922}
923EXPORT_SYMBOL(brioctl_set);
924
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800925static DEFINE_MUTEX(vlan_ioctl_mutex);
Eric W. Biederman881d9662007-09-17 11:56:21 -0700926static int (*vlan_ioctl_hook) (struct net *, void __user *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
Eric W. Biederman881d9662007-09-17 11:56:21 -0700928void vlan_ioctl_set(int (*hook) (struct net *, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800930 mutex_lock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 vlan_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800932 mutex_unlock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933}
934EXPORT_SYMBOL(vlan_ioctl_set);
935
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800936static DEFINE_MUTEX(dlci_ioctl_mutex);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700937static int (*dlci_ioctl_hook) (unsigned int, void __user *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700939void dlci_ioctl_set(int (*hook) (unsigned int, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800941 mutex_lock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 dlci_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800943 mutex_unlock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944}
945EXPORT_SYMBOL(dlci_ioctl_set);
946
Arnd Bergmann6b960182009-11-06 23:10:54 -0800947static long sock_do_ioctl(struct net *net, struct socket *sock,
948 unsigned int cmd, unsigned long arg)
949{
950 int err;
951 void __user *argp = (void __user *)arg;
952
953 err = sock->ops->ioctl(sock, cmd, arg);
954
955 /*
956 * If this ioctl is unknown try to hand it down
957 * to the NIC driver.
958 */
959 if (err == -ENOIOCTLCMD)
960 err = dev_ioctl(net, cmd, argp);
961
962 return err;
963}
964
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965/*
966 * With an ioctl, arg may well be a user mode pointer, but we don't know
967 * what to do with it - that's up to the protocol still.
968 */
969
970static long sock_ioctl(struct file *file, unsigned cmd, unsigned long arg)
971{
972 struct socket *sock;
Eric W. Biederman881d9662007-09-17 11:56:21 -0700973 struct sock *sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 void __user *argp = (void __user *)arg;
975 int pid, err;
Eric W. Biederman881d9662007-09-17 11:56:21 -0700976 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
Eric Dumazetb69aee02005-09-06 14:42:45 -0700978 sock = file->private_data;
Eric W. Biederman881d9662007-09-17 11:56:21 -0700979 sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900980 net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 if (cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15)) {
Eric W. Biederman881d9662007-09-17 11:56:21 -0700982 err = dev_ioctl(net, cmd, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 } else
Johannes Berg3d23e342009-09-29 23:27:28 +0200984#ifdef CONFIG_WEXT_CORE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 if (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST) {
Eric W. Biederman881d9662007-09-17 11:56:21 -0700986 err = dev_ioctl(net, cmd, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 } else
Johannes Berg3d23e342009-09-29 23:27:28 +0200988#endif
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700989 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 case FIOSETOWN:
991 case SIOCSPGRP:
992 err = -EFAULT;
993 if (get_user(pid, (int __user *)argp))
994 break;
995 err = f_setown(sock->file, pid, 1);
996 break;
997 case FIOGETOWN:
998 case SIOCGPGRP:
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700999 err = put_user(f_getown(sock->file),
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001000 (int __user *)argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 break;
1002 case SIOCGIFBR:
1003 case SIOCSIFBR:
1004 case SIOCBRADDBR:
1005 case SIOCBRDELBR:
1006 err = -ENOPKG;
1007 if (!br_ioctl_hook)
1008 request_module("bridge");
1009
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001010 mutex_lock(&br_ioctl_mutex);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001011 if (br_ioctl_hook)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001012 err = br_ioctl_hook(net, cmd, argp);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001013 mutex_unlock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 break;
1015 case SIOCGIFVLAN:
1016 case SIOCSIFVLAN:
1017 err = -ENOPKG;
1018 if (!vlan_ioctl_hook)
1019 request_module("8021q");
1020
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001021 mutex_lock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 if (vlan_ioctl_hook)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001023 err = vlan_ioctl_hook(net, argp);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001024 mutex_unlock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 case SIOCADDDLCI:
1027 case SIOCDELDLCI:
1028 err = -ENOPKG;
1029 if (!dlci_ioctl_hook)
1030 request_module("dlci");
1031
Pavel Emelyanov7512cbf2008-03-21 15:58:52 -07001032 mutex_lock(&dlci_ioctl_mutex);
1033 if (dlci_ioctl_hook)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 err = dlci_ioctl_hook(cmd, argp);
Pavel Emelyanov7512cbf2008-03-21 15:58:52 -07001035 mutex_unlock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 break;
1037 default:
Arnd Bergmann6b960182009-11-06 23:10:54 -08001038 err = sock_do_ioctl(net, sock, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001040 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 return err;
1042}
1043
1044int sock_create_lite(int family, int type, int protocol, struct socket **res)
1045{
1046 int err;
1047 struct socket *sock = NULL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001048
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 err = security_socket_create(family, type, protocol, 1);
1050 if (err)
1051 goto out;
1052
1053 sock = sock_alloc();
1054 if (!sock) {
1055 err = -ENOMEM;
1056 goto out;
1057 }
1058
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 sock->type = type;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001060 err = security_socket_post_create(sock, family, type, protocol, 1);
1061 if (err)
1062 goto out_release;
1063
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064out:
1065 *res = sock;
1066 return err;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001067out_release:
1068 sock_release(sock);
1069 sock = NULL;
1070 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001072EXPORT_SYMBOL(sock_create_lite);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
1074/* No kernel lock held - perfect */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001075static unsigned int sock_poll(struct file *file, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076{
1077 struct socket *sock;
1078
1079 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001080 * We can't return errors to poll, so it's either yes or no.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 */
Eric Dumazetb69aee02005-09-06 14:42:45 -07001082 sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 return sock->ops->poll(file, sock, wait);
1084}
1085
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001086static int sock_mmap(struct file *file, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087{
Eric Dumazetb69aee02005-09-06 14:42:45 -07001088 struct socket *sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089
1090 return sock->ops->mmap(file, sock, vma);
1091}
1092
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001093static int sock_close(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094{
1095 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001096 * It was possible the inode is NULL we were
1097 * closing an unfinished socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 */
1099
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001100 if (!inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 printk(KERN_DEBUG "sock_close: NULL inode\n");
1102 return 0;
1103 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 sock_release(SOCKET_I(inode));
1105 return 0;
1106}
1107
1108/*
1109 * Update the socket async list
1110 *
1111 * Fasync_list locking strategy.
1112 *
1113 * 1. fasync_list is modified only under process context socket lock
1114 * i.e. under semaphore.
1115 * 2. fasync_list is used under read_lock(&sk->sk_callback_lock)
Eric Dumazet989a2972010-04-14 09:55:35 +00001116 * or under socket lock
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 */
1118
1119static int sock_fasync(int fd, struct file *filp, int on)
1120{
Eric Dumazet989a2972010-04-14 09:55:35 +00001121 struct socket *sock = filp->private_data;
1122 struct sock *sk = sock->sk;
Eric Dumazeteaefd112011-02-18 03:26:36 +00001123 struct socket_wq *wq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
Eric Dumazet989a2972010-04-14 09:55:35 +00001125 if (sk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
1128 lock_sock(sk);
Eric Dumazeteaefd112011-02-18 03:26:36 +00001129 wq = rcu_dereference_protected(sock->wq, sock_owned_by_user(sk));
1130 fasync_helper(fd, filp, on, &wq->fasync_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131
Eric Dumazeteaefd112011-02-18 03:26:36 +00001132 if (!wq->fasync_list)
Eric Dumazet989a2972010-04-14 09:55:35 +00001133 sock_reset_flag(sk, SOCK_FASYNC);
Jonathan Corbet76398422009-02-01 14:26:59 -07001134 else
Eric Dumazetbcdce712009-10-06 17:28:29 -07001135 sock_set_flag(sk, SOCK_FASYNC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136
Eric Dumazet989a2972010-04-14 09:55:35 +00001137 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 return 0;
1139}
1140
Eric Dumazet43815482010-04-29 11:01:49 +00001141/* This function may be called only under socket lock or callback_lock or rcu_lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142
1143int sock_wake_async(struct socket *sock, int how, int band)
1144{
Eric Dumazet43815482010-04-29 11:01:49 +00001145 struct socket_wq *wq;
1146
1147 if (!sock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 return -1;
Eric Dumazet43815482010-04-29 11:01:49 +00001149 rcu_read_lock();
1150 wq = rcu_dereference(sock->wq);
1151 if (!wq || !wq->fasync_list) {
1152 rcu_read_unlock();
1153 return -1;
1154 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001155 switch (how) {
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001156 case SOCK_WAKE_WAITD:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 if (test_bit(SOCK_ASYNC_WAITDATA, &sock->flags))
1158 break;
1159 goto call_kill;
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001160 case SOCK_WAKE_SPACE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 if (!test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sock->flags))
1162 break;
1163 /* fall through */
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001164 case SOCK_WAKE_IO:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001165call_kill:
Eric Dumazet43815482010-04-29 11:01:49 +00001166 kill_fasync(&wq->fasync_list, SIGIO, band);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 break;
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001168 case SOCK_WAKE_URG:
Eric Dumazet43815482010-04-29 11:01:49 +00001169 kill_fasync(&wq->fasync_list, SIGURG, band);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 }
Eric Dumazet43815482010-04-29 11:01:49 +00001171 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 return 0;
1173}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001174EXPORT_SYMBOL(sock_wake_async);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175
Pavel Emelyanov721db932010-09-29 16:06:32 +04001176int __sock_create(struct net *net, int family, int type, int protocol,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001177 struct socket **res, int kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178{
1179 int err;
1180 struct socket *sock;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001181 const struct net_proto_family *pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182
1183 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001184 * Check protocol is in range
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 */
1186 if (family < 0 || family >= NPROTO)
1187 return -EAFNOSUPPORT;
1188 if (type < 0 || type >= SOCK_MAX)
1189 return -EINVAL;
1190
1191 /* Compatibility.
1192
1193 This uglymoron is moved from INET layer to here to avoid
1194 deadlock in module load.
1195 */
1196 if (family == PF_INET && type == SOCK_PACKET) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001197 static int warned;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 if (!warned) {
1199 warned = 1;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001200 printk(KERN_INFO "%s uses obsolete (PF_INET,SOCK_PACKET)\n",
1201 current->comm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 }
1203 family = PF_PACKET;
1204 }
1205
1206 err = security_socket_create(family, type, protocol, kern);
1207 if (err)
1208 return err;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001209
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001210 /*
1211 * Allocate the socket and allow the family to set things up. if
1212 * the protocol is 0, the family is instructed to select an appropriate
1213 * default.
1214 */
1215 sock = sock_alloc();
1216 if (!sock) {
1217 if (net_ratelimit())
1218 printk(KERN_WARNING "socket: no more sockets\n");
1219 return -ENFILE; /* Not exactly a match, but its the
1220 closest posix thing */
1221 }
1222
1223 sock->type = type;
1224
Johannes Berg95a5afc2008-10-16 15:24:51 -07001225#ifdef CONFIG_MODULES
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001226 /* Attempt to load a protocol module if the find failed.
1227 *
1228 * 12/09/1996 Marcin: But! this makes REALLY only sense, if the user
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 * requested real, full-featured networking support upon configuration.
1230 * Otherwise module support will break!
1231 */
Eric Dumazet190683a2010-11-10 10:50:44 +00001232 if (rcu_access_pointer(net_families[family]) == NULL)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001233 request_module("net-pf-%d", family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234#endif
1235
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001236 rcu_read_lock();
1237 pf = rcu_dereference(net_families[family]);
1238 err = -EAFNOSUPPORT;
1239 if (!pf)
1240 goto out_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241
1242 /*
1243 * We will call the ->create function, that possibly is in a loadable
1244 * module, so we have to bump that loadable module refcnt first.
1245 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001246 if (!try_module_get(pf->owner))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 goto out_release;
1248
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001249 /* Now protected by module ref count */
1250 rcu_read_unlock();
1251
Eric Paris3f378b62009-11-05 22:18:14 -08001252 err = pf->create(net, sock, protocol, kern);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001253 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 goto out_module_put;
Frank Filza79af592005-09-27 15:23:38 -07001255
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 /*
1257 * Now to bump the refcnt of the [loadable] module that owns this
1258 * socket at sock_release time we decrement its refcnt.
1259 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001260 if (!try_module_get(sock->ops->owner))
1261 goto out_module_busy;
1262
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 /*
1264 * Now that we're done with the ->create function, the [loadable]
1265 * module can have its refcnt decremented
1266 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001267 module_put(pf->owner);
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001268 err = security_socket_post_create(sock, family, type, protocol, kern);
1269 if (err)
Herbert Xu3b185522007-08-15 14:46:02 -07001270 goto out_sock_release;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001271 *res = sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001273 return 0;
1274
1275out_module_busy:
1276 err = -EAFNOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277out_module_put:
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001278 sock->ops = NULL;
1279 module_put(pf->owner);
1280out_sock_release:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 sock_release(sock);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001282 return err;
1283
1284out_release:
1285 rcu_read_unlock();
1286 goto out_sock_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287}
Pavel Emelyanov721db932010-09-29 16:06:32 +04001288EXPORT_SYMBOL(__sock_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
1290int sock_create(int family, int type, int protocol, struct socket **res)
1291{
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001292 return __sock_create(current->nsproxy->net_ns, family, type, protocol, res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001294EXPORT_SYMBOL(sock_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
1296int sock_create_kern(int family, int type, int protocol, struct socket **res)
1297{
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001298 return __sock_create(&init_net, family, type, protocol, res, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001300EXPORT_SYMBOL(sock_create_kern);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001302SYSCALL_DEFINE3(socket, int, family, int, type, int, protocol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303{
1304 int retval;
1305 struct socket *sock;
Ulrich Dreppera677a032008-07-23 21:29:17 -07001306 int flags;
1307
Ulrich Dreppere38b36f2008-07-23 21:29:42 -07001308 /* Check the SOCK_* constants for consistency. */
1309 BUILD_BUG_ON(SOCK_CLOEXEC != O_CLOEXEC);
1310 BUILD_BUG_ON((SOCK_MAX | SOCK_TYPE_MASK) != SOCK_TYPE_MASK);
1311 BUILD_BUG_ON(SOCK_CLOEXEC & SOCK_TYPE_MASK);
1312 BUILD_BUG_ON(SOCK_NONBLOCK & SOCK_TYPE_MASK);
1313
Ulrich Dreppera677a032008-07-23 21:29:17 -07001314 flags = type & ~SOCK_TYPE_MASK;
Ulrich Drepper77d27202008-07-23 21:29:35 -07001315 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Dreppera677a032008-07-23 21:29:17 -07001316 return -EINVAL;
1317 type &= SOCK_TYPE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001319 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1320 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1321
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 retval = sock_create(family, type, protocol, &sock);
1323 if (retval < 0)
1324 goto out;
1325
Ulrich Drepper77d27202008-07-23 21:29:35 -07001326 retval = sock_map_fd(sock, flags & (O_CLOEXEC | O_NONBLOCK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 if (retval < 0)
1328 goto out_release;
1329
1330out:
1331 /* It may be already another descriptor 8) Not kernel problem. */
1332 return retval;
1333
1334out_release:
1335 sock_release(sock);
1336 return retval;
1337}
1338
1339/*
1340 * Create a pair of connected sockets.
1341 */
1342
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001343SYSCALL_DEFINE4(socketpair, int, family, int, type, int, protocol,
1344 int __user *, usockvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345{
1346 struct socket *sock1, *sock2;
1347 int fd1, fd2, err;
Al Virodb349502007-02-07 01:48:00 -05001348 struct file *newfile1, *newfile2;
Ulrich Dreppera677a032008-07-23 21:29:17 -07001349 int flags;
1350
1351 flags = type & ~SOCK_TYPE_MASK;
Ulrich Drepper77d27202008-07-23 21:29:35 -07001352 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Dreppera677a032008-07-23 21:29:17 -07001353 return -EINVAL;
1354 type &= SOCK_TYPE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001356 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1357 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1358
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 /*
1360 * Obtain the first socket and check if the underlying protocol
1361 * supports the socketpair call.
1362 */
1363
1364 err = sock_create(family, type, protocol, &sock1);
1365 if (err < 0)
1366 goto out;
1367
1368 err = sock_create(family, type, protocol, &sock2);
1369 if (err < 0)
1370 goto out_release_1;
1371
1372 err = sock1->ops->socketpair(sock1, sock2);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001373 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 goto out_release_both;
1375
Al Viro7cbe66b2009-08-05 19:59:08 +04001376 fd1 = sock_alloc_file(sock1, &newfile1, flags);
David S. Millerbf3c23d2007-10-29 21:54:02 -07001377 if (unlikely(fd1 < 0)) {
1378 err = fd1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 goto out_release_both;
David S. Millerbf3c23d2007-10-29 21:54:02 -07001380 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381
Al Viro7cbe66b2009-08-05 19:59:08 +04001382 fd2 = sock_alloc_file(sock2, &newfile2, flags);
Al Viro198de4d2009-08-05 19:29:23 +04001383 if (unlikely(fd2 < 0)) {
1384 err = fd2;
1385 fput(newfile1);
1386 put_unused_fd(fd1);
1387 sock_release(sock2);
1388 goto out;
Al Virodb349502007-02-07 01:48:00 -05001389 }
1390
Al Viro157cf642008-12-14 04:57:47 -05001391 audit_fd_pair(fd1, fd2);
Al Virodb349502007-02-07 01:48:00 -05001392 fd_install(fd1, newfile1);
1393 fd_install(fd2, newfile2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 /* fd1 and fd2 may be already another descriptors.
1395 * Not kernel problem.
1396 */
1397
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001398 err = put_user(fd1, &usockvec[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 if (!err)
1400 err = put_user(fd2, &usockvec[1]);
1401 if (!err)
1402 return 0;
1403
1404 sys_close(fd2);
1405 sys_close(fd1);
1406 return err;
1407
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408out_release_both:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001409 sock_release(sock2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410out_release_1:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001411 sock_release(sock1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412out:
1413 return err;
1414}
1415
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416/*
1417 * Bind a name to a socket. Nothing much to do here since it's
1418 * the protocol's responsibility to handle the local address.
1419 *
1420 * We move the socket address to kernel space before we call
1421 * the protocol layer (having also checked the address is ok).
1422 */
1423
Heiko Carstens20f37032009-01-14 14:14:23 +01001424SYSCALL_DEFINE3(bind, int, fd, struct sockaddr __user *, umyaddr, int, addrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425{
1426 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001427 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001428 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001430 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001431 if (sock) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001432 err = move_addr_to_kernel(umyaddr, addrlen, (struct sockaddr *)&address);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001433 if (err >= 0) {
1434 err = security_socket_bind(sock,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001435 (struct sockaddr *)&address,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001436 addrlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001437 if (!err)
1438 err = sock->ops->bind(sock,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001439 (struct sockaddr *)
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001440 &address, addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 }
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001442 fput_light(sock->file, fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001443 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 return err;
1445}
1446
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447/*
1448 * Perform a listen. Basically, we allow the protocol to do anything
1449 * necessary for a listen, and if that works, we mark the socket as
1450 * ready for listening.
1451 */
1452
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001453SYSCALL_DEFINE2(listen, int, fd, int, backlog)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454{
1455 struct socket *sock;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001456 int err, fput_needed;
Pavel Emelyanovb8e1f9b2007-12-08 00:12:33 -08001457 int somaxconn;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001458
1459 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1460 if (sock) {
Pavel Emelyanov8efa6e92008-03-31 19:41:14 -07001461 somaxconn = sock_net(sock->sk)->core.sysctl_somaxconn;
Pavel Emelyanovb8e1f9b2007-12-08 00:12:33 -08001462 if ((unsigned)backlog > somaxconn)
1463 backlog = somaxconn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464
1465 err = security_socket_listen(sock, backlog);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001466 if (!err)
1467 err = sock->ops->listen(sock, backlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001469 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 }
1471 return err;
1472}
1473
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474/*
1475 * For accept, we attempt to create a new socket, set up the link
1476 * with the client, wake up the client, then return the new
1477 * connected fd. We collect the address of the connector in kernel
1478 * space and move it to user at the very end. This is unclean because
1479 * we open the socket then return an error.
1480 *
1481 * 1003.1g adds the ability to recvmsg() to query connection pending
1482 * status to recvmsg. We need to add that support in a way thats
1483 * clean when we restucture accept also.
1484 */
1485
Heiko Carstens20f37032009-01-14 14:14:23 +01001486SYSCALL_DEFINE4(accept4, int, fd, struct sockaddr __user *, upeer_sockaddr,
1487 int __user *, upeer_addrlen, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488{
1489 struct socket *sock, *newsock;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001490 struct file *newfile;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001491 int err, len, newfd, fput_needed;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001492 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493
Ulrich Drepper77d27202008-07-23 21:29:35 -07001494 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001495 return -EINVAL;
1496
1497 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1498 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1499
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001500 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 if (!sock)
1502 goto out;
1503
1504 err = -ENFILE;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001505 newsock = sock_alloc();
1506 if (!newsock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 goto out_put;
1508
1509 newsock->type = sock->type;
1510 newsock->ops = sock->ops;
1511
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 /*
1513 * We don't need try_module_get here, as the listening socket (sock)
1514 * has the protocol module (sock->ops->owner) held.
1515 */
1516 __module_get(newsock->ops->owner);
1517
Al Viro7cbe66b2009-08-05 19:59:08 +04001518 newfd = sock_alloc_file(newsock, &newfile, flags);
David S. Miller39d8c1b2006-03-20 17:13:49 -08001519 if (unlikely(newfd < 0)) {
1520 err = newfd;
David S. Miller9a1875e2006-04-01 12:48:36 -08001521 sock_release(newsock);
1522 goto out_put;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001523 }
1524
Frank Filza79af592005-09-27 15:23:38 -07001525 err = security_socket_accept(sock, newsock);
1526 if (err)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001527 goto out_fd;
Frank Filza79af592005-09-27 15:23:38 -07001528
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 err = sock->ops->accept(sock, newsock, sock->file->f_flags);
1530 if (err < 0)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001531 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532
1533 if (upeer_sockaddr) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001534 if (newsock->ops->getname(newsock, (struct sockaddr *)&address,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001535 &len, 2) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 err = -ECONNABORTED;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001537 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 }
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001539 err = move_addr_to_user((struct sockaddr *)&address,
1540 len, upeer_sockaddr, upeer_addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 if (err < 0)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001542 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 }
1544
1545 /* File flags are not inherited via accept() unlike another OSes. */
1546
David S. Miller39d8c1b2006-03-20 17:13:49 -08001547 fd_install(newfd, newfile);
1548 err = newfd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001551 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552out:
1553 return err;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001554out_fd:
David S. Miller9606a212006-04-01 01:00:14 -08001555 fput(newfile);
David S. Miller39d8c1b2006-03-20 17:13:49 -08001556 put_unused_fd(newfd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 goto out_put;
1558}
1559
Heiko Carstens20f37032009-01-14 14:14:23 +01001560SYSCALL_DEFINE3(accept, int, fd, struct sockaddr __user *, upeer_sockaddr,
1561 int __user *, upeer_addrlen)
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001562{
Ulrich Drepperde11def2008-11-19 15:36:14 -08001563 return sys_accept4(fd, upeer_sockaddr, upeer_addrlen, 0);
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001564}
1565
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566/*
1567 * Attempt to connect to a socket with the server address. The address
1568 * is in user space so we verify it is OK and move it to kernel space.
1569 *
1570 * For 1003.1g we need to add clean support for a bind to AF_UNSPEC to
1571 * break bindings
1572 *
1573 * NOTE: 1003.1g draft 6.3 is broken with respect to AX.25/NetROM and
1574 * other SEQPACKET protocols that take time to connect() as it doesn't
1575 * include the -EINPROGRESS status for such sockets.
1576 */
1577
Heiko Carstens20f37032009-01-14 14:14:23 +01001578SYSCALL_DEFINE3(connect, int, fd, struct sockaddr __user *, uservaddr,
1579 int, addrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580{
1581 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001582 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001583 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001585 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 if (!sock)
1587 goto out;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001588 err = move_addr_to_kernel(uservaddr, addrlen, (struct sockaddr *)&address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 if (err < 0)
1590 goto out_put;
1591
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001592 err =
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001593 security_socket_connect(sock, (struct sockaddr *)&address, addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 if (err)
1595 goto out_put;
1596
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001597 err = sock->ops->connect(sock, (struct sockaddr *)&address, addrlen,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 sock->file->f_flags);
1599out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001600 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601out:
1602 return err;
1603}
1604
1605/*
1606 * Get the local address ('name') of a socket object. Move the obtained
1607 * name to user space.
1608 */
1609
Heiko Carstens20f37032009-01-14 14:14:23 +01001610SYSCALL_DEFINE3(getsockname, int, fd, struct sockaddr __user *, usockaddr,
1611 int __user *, usockaddr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612{
1613 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001614 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001615 int len, err, fput_needed;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001616
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001617 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 if (!sock)
1619 goto out;
1620
1621 err = security_socket_getsockname(sock);
1622 if (err)
1623 goto out_put;
1624
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001625 err = sock->ops->getname(sock, (struct sockaddr *)&address, &len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 if (err)
1627 goto out_put;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001628 err = move_addr_to_user((struct sockaddr *)&address, len, usockaddr, usockaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629
1630out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001631 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632out:
1633 return err;
1634}
1635
1636/*
1637 * Get the remote address ('name') of a socket object. Move the obtained
1638 * name to user space.
1639 */
1640
Heiko Carstens20f37032009-01-14 14:14:23 +01001641SYSCALL_DEFINE3(getpeername, int, fd, struct sockaddr __user *, usockaddr,
1642 int __user *, usockaddr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643{
1644 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001645 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001646 int len, err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001648 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1649 if (sock != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 err = security_socket_getpeername(sock);
1651 if (err) {
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001652 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 return err;
1654 }
1655
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001656 err =
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001657 sock->ops->getname(sock, (struct sockaddr *)&address, &len,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001658 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 if (!err)
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001660 err = move_addr_to_user((struct sockaddr *)&address, len, usockaddr,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001661 usockaddr_len);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001662 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 }
1664 return err;
1665}
1666
1667/*
1668 * Send a datagram to a given address. We move the address into kernel
1669 * space and check the user space data area is readable before invoking
1670 * the protocol.
1671 */
1672
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001673SYSCALL_DEFINE6(sendto, int, fd, void __user *, buff, size_t, len,
1674 unsigned, flags, struct sockaddr __user *, addr,
1675 int, addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676{
1677 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001678 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 int err;
1680 struct msghdr msg;
1681 struct iovec iov;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001682 int fput_needed;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001683
Linus Torvalds253eacc2010-10-30 16:43:10 -07001684 if (len > INT_MAX)
1685 len = INT_MAX;
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001686 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1687 if (!sock)
David S. Miller4387ff72007-02-08 15:06:08 -08001688 goto out;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001689
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001690 iov.iov_base = buff;
1691 iov.iov_len = len;
1692 msg.msg_name = NULL;
1693 msg.msg_iov = &iov;
1694 msg.msg_iovlen = 1;
1695 msg.msg_control = NULL;
1696 msg.msg_controllen = 0;
1697 msg.msg_namelen = 0;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001698 if (addr) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001699 err = move_addr_to_kernel(addr, addr_len, (struct sockaddr *)&address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 if (err < 0)
1701 goto out_put;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001702 msg.msg_name = (struct sockaddr *)&address;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001703 msg.msg_namelen = addr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 }
1705 if (sock->file->f_flags & O_NONBLOCK)
1706 flags |= MSG_DONTWAIT;
1707 msg.msg_flags = flags;
1708 err = sock_sendmsg(sock, &msg, len);
1709
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001710out_put:
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001711 fput_light(sock->file, fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08001712out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 return err;
1714}
1715
1716/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001717 * Send a datagram down a socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 */
1719
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001720SYSCALL_DEFINE4(send, int, fd, void __user *, buff, size_t, len,
1721 unsigned, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722{
1723 return sys_sendto(fd, buff, len, flags, NULL, 0);
1724}
1725
1726/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001727 * Receive a frame from the socket and optionally record the address of the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 * sender. We verify the buffers are writable and if needed move the
1729 * sender address from kernel to user space.
1730 */
1731
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001732SYSCALL_DEFINE6(recvfrom, int, fd, void __user *, ubuf, size_t, size,
1733 unsigned, flags, struct sockaddr __user *, addr,
1734 int __user *, addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735{
1736 struct socket *sock;
1737 struct iovec iov;
1738 struct msghdr msg;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001739 struct sockaddr_storage address;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001740 int err, err2;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001741 int fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742
Linus Torvalds253eacc2010-10-30 16:43:10 -07001743 if (size > INT_MAX)
1744 size = INT_MAX;
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001745 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 if (!sock)
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001747 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001749 msg.msg_control = NULL;
1750 msg.msg_controllen = 0;
1751 msg.msg_iovlen = 1;
1752 msg.msg_iov = &iov;
1753 iov.iov_len = size;
1754 iov.iov_base = ubuf;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001755 msg.msg_name = (struct sockaddr *)&address;
1756 msg.msg_namelen = sizeof(address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 if (sock->file->f_flags & O_NONBLOCK)
1758 flags |= MSG_DONTWAIT;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001759 err = sock_recvmsg(sock, &msg, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001761 if (err >= 0 && addr != NULL) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001762 err2 = move_addr_to_user((struct sockaddr *)&address,
1763 msg.msg_namelen, addr, addr_len);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001764 if (err2 < 0)
1765 err = err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 }
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001767
1768 fput_light(sock->file, fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08001769out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 return err;
1771}
1772
1773/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001774 * Receive a datagram from a socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 */
1776
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001777asmlinkage long sys_recv(int fd, void __user *ubuf, size_t size,
1778 unsigned flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779{
1780 return sys_recvfrom(fd, ubuf, size, flags, NULL, NULL);
1781}
1782
1783/*
1784 * Set a socket option. Because we don't know the option lengths we have
1785 * to pass the user mode parameter for the protocols to sort out.
1786 */
1787
Heiko Carstens20f37032009-01-14 14:14:23 +01001788SYSCALL_DEFINE5(setsockopt, int, fd, int, level, int, optname,
1789 char __user *, optval, int, optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001791 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 struct socket *sock;
1793
1794 if (optlen < 0)
1795 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001796
1797 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1798 if (sock != NULL) {
1799 err = security_socket_setsockopt(sock, level, optname);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001800 if (err)
1801 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802
1803 if (level == SOL_SOCKET)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001804 err =
1805 sock_setsockopt(sock, level, optname, optval,
1806 optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 else
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001808 err =
1809 sock->ops->setsockopt(sock, level, optname, optval,
1810 optlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001811out_put:
1812 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 }
1814 return err;
1815}
1816
1817/*
1818 * Get a socket option. Because we don't know the option lengths we have
1819 * to pass a user mode parameter for the protocols to sort out.
1820 */
1821
Heiko Carstens20f37032009-01-14 14:14:23 +01001822SYSCALL_DEFINE5(getsockopt, int, fd, int, level, int, optname,
1823 char __user *, optval, int __user *, optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001825 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 struct socket *sock;
1827
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001828 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1829 if (sock != NULL) {
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001830 err = security_socket_getsockopt(sock, level, optname);
1831 if (err)
1832 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833
1834 if (level == SOL_SOCKET)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001835 err =
1836 sock_getsockopt(sock, level, optname, optval,
1837 optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 else
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001839 err =
1840 sock->ops->getsockopt(sock, level, optname, optval,
1841 optlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001842out_put:
1843 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 }
1845 return err;
1846}
1847
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848/*
1849 * Shutdown a socket.
1850 */
1851
Heiko Carstens754fe8d2009-01-14 14:14:09 +01001852SYSCALL_DEFINE2(shutdown, int, fd, int, how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001854 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 struct socket *sock;
1856
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001857 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1858 if (sock != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 err = security_socket_shutdown(sock, how);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001860 if (!err)
1861 err = sock->ops->shutdown(sock, how);
1862 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 }
1864 return err;
1865}
1866
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001867/* A couple of helpful macros for getting the address of the 32/64 bit
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 * fields which are the same type (int / unsigned) on our platforms.
1869 */
1870#define COMPAT_MSG(msg, member) ((MSG_CMSG_COMPAT & flags) ? &msg##_compat->member : &msg->member)
1871#define COMPAT_NAMELEN(msg) COMPAT_MSG(msg, msg_namelen)
1872#define COMPAT_FLAGS(msg) COMPAT_MSG(msg, msg_flags)
1873
Anton Blanchard228e5482011-05-02 20:21:35 +00001874static int __sys_sendmsg(struct socket *sock, struct msghdr __user *msg,
1875 struct msghdr *msg_sys, unsigned flags, int nosec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001877 struct compat_msghdr __user *msg_compat =
1878 (struct compat_msghdr __user *)msg;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001879 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 struct iovec iovstack[UIO_FASTIOV], *iov = iovstack;
Alex Williamsonb9d717a2005-09-26 14:28:02 -07001881 unsigned char ctl[sizeof(struct cmsghdr) + 20]
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001882 __attribute__ ((aligned(sizeof(__kernel_size_t))));
1883 /* 20 is size of ipv6_pktinfo */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 unsigned char *ctl_buf = ctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 int err, ctl_len, iov_size, total_len;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001886
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 err = -EFAULT;
1888 if (MSG_CMSG_COMPAT & flags) {
Anton Blanchard228e5482011-05-02 20:21:35 +00001889 if (get_compat_msghdr(msg_sys, msg_compat))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 return -EFAULT;
Anton Blanchard228e5482011-05-02 20:21:35 +00001891 } else if (copy_from_user(msg_sys, msg, sizeof(struct msghdr)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 return -EFAULT;
1893
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 /* do not move before msg_sys is valid */
1895 err = -EMSGSIZE;
Anton Blanchard228e5482011-05-02 20:21:35 +00001896 if (msg_sys->msg_iovlen > UIO_MAXIOV)
1897 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001899 /* Check whether to allocate the iovec area */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 err = -ENOMEM;
Anton Blanchard228e5482011-05-02 20:21:35 +00001901 iov_size = msg_sys->msg_iovlen * sizeof(struct iovec);
1902 if (msg_sys->msg_iovlen > UIO_FASTIOV) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 iov = sock_kmalloc(sock->sk, iov_size, GFP_KERNEL);
1904 if (!iov)
Anton Blanchard228e5482011-05-02 20:21:35 +00001905 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 }
1907
1908 /* This will also move the address data into kernel space */
1909 if (MSG_CMSG_COMPAT & flags) {
Anton Blanchard228e5482011-05-02 20:21:35 +00001910 err = verify_compat_iovec(msg_sys, iov,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001911 (struct sockaddr *)&address,
1912 VERIFY_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 } else
Anton Blanchard228e5482011-05-02 20:21:35 +00001914 err = verify_iovec(msg_sys, iov,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001915 (struct sockaddr *)&address,
1916 VERIFY_READ);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001917 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 goto out_freeiov;
1919 total_len = err;
1920
1921 err = -ENOBUFS;
1922
Anton Blanchard228e5482011-05-02 20:21:35 +00001923 if (msg_sys->msg_controllen > INT_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 goto out_freeiov;
Anton Blanchard228e5482011-05-02 20:21:35 +00001925 ctl_len = msg_sys->msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 if ((MSG_CMSG_COMPAT & flags) && ctl_len) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001927 err =
Anton Blanchard228e5482011-05-02 20:21:35 +00001928 cmsghdr_from_user_compat_to_kern(msg_sys, sock->sk, ctl,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001929 sizeof(ctl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 if (err)
1931 goto out_freeiov;
Anton Blanchard228e5482011-05-02 20:21:35 +00001932 ctl_buf = msg_sys->msg_control;
1933 ctl_len = msg_sys->msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 } else if (ctl_len) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001935 if (ctl_len > sizeof(ctl)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 ctl_buf = sock_kmalloc(sock->sk, ctl_len, GFP_KERNEL);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001937 if (ctl_buf == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 goto out_freeiov;
1939 }
1940 err = -EFAULT;
1941 /*
Anton Blanchard228e5482011-05-02 20:21:35 +00001942 * Careful! Before this, msg_sys->msg_control contains a user pointer.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 * Afterwards, it will be a kernel pointer. Thus the compiler-assisted
1944 * checking falls down on this.
1945 */
Namhyung Kimfb8621b2010-09-07 03:55:00 +00001946 if (copy_from_user(ctl_buf,
Anton Blanchard228e5482011-05-02 20:21:35 +00001947 (void __user __force *)msg_sys->msg_control,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001948 ctl_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 goto out_freectl;
Anton Blanchard228e5482011-05-02 20:21:35 +00001950 msg_sys->msg_control = ctl_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 }
Anton Blanchard228e5482011-05-02 20:21:35 +00001952 msg_sys->msg_flags = flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953
1954 if (sock->file->f_flags & O_NONBLOCK)
Anton Blanchard228e5482011-05-02 20:21:35 +00001955 msg_sys->msg_flags |= MSG_DONTWAIT;
1956 err = (nosec ? sock_sendmsg_nosec : sock_sendmsg)(sock, msg_sys,
1957 total_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958
1959out_freectl:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001960 if (ctl_buf != ctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 sock_kfree_s(sock->sk, ctl_buf, ctl_len);
1962out_freeiov:
1963 if (iov != iovstack)
1964 sock_kfree_s(sock->sk, iov, iov_size);
Anton Blanchard228e5482011-05-02 20:21:35 +00001965out:
1966 return err;
1967}
1968
1969/*
1970 * BSD sendmsg interface
1971 */
1972
1973SYSCALL_DEFINE3(sendmsg, int, fd, struct msghdr __user *, msg, unsigned, flags)
1974{
1975 int fput_needed, err;
1976 struct msghdr msg_sys;
1977 struct socket *sock = sockfd_lookup_light(fd, &err, &fput_needed);
1978
1979 if (!sock)
1980 goto out;
1981
1982 err = __sys_sendmsg(sock, msg, &msg_sys, flags, 0);
1983
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001984 fput_light(sock->file, fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001985out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 return err;
1987}
1988
Anton Blanchard228e5482011-05-02 20:21:35 +00001989/*
1990 * Linux sendmmsg interface
1991 */
1992
1993int __sys_sendmmsg(int fd, struct mmsghdr __user *mmsg, unsigned int vlen,
1994 unsigned int flags)
1995{
1996 int fput_needed, err, datagrams;
1997 struct socket *sock;
1998 struct mmsghdr __user *entry;
1999 struct compat_mmsghdr __user *compat_entry;
2000 struct msghdr msg_sys;
2001
2002 datagrams = 0;
2003
2004 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2005 if (!sock)
2006 return err;
2007
Anton Blanchard228e5482011-05-02 20:21:35 +00002008 entry = mmsg;
2009 compat_entry = (struct compat_mmsghdr __user *)mmsg;
Anton Blanchard728ffb82011-08-04 14:07:38 +00002010 err = 0;
Anton Blanchard228e5482011-05-02 20:21:35 +00002011
2012 while (datagrams < vlen) {
2013 /*
2014 * No need to ask LSM for more than the first datagram.
2015 */
2016 if (MSG_CMSG_COMPAT & flags) {
2017 err = __sys_sendmsg(sock, (struct msghdr __user *)compat_entry,
2018 &msg_sys, flags, datagrams);
2019 if (err < 0)
2020 break;
2021 err = __put_user(err, &compat_entry->msg_len);
2022 ++compat_entry;
2023 } else {
2024 err = __sys_sendmsg(sock, (struct msghdr __user *)entry,
2025 &msg_sys, flags, datagrams);
2026 if (err < 0)
2027 break;
2028 err = put_user(err, &entry->msg_len);
2029 ++entry;
2030 }
2031
2032 if (err)
2033 break;
2034 ++datagrams;
2035 }
2036
Anton Blanchard228e5482011-05-02 20:21:35 +00002037 fput_light(sock->file, fput_needed);
2038
Anton Blanchard728ffb82011-08-04 14:07:38 +00002039 /* We only return an error if no datagrams were able to be sent */
2040 if (datagrams != 0)
Anton Blanchard228e5482011-05-02 20:21:35 +00002041 return datagrams;
2042
Anton Blanchard228e5482011-05-02 20:21:35 +00002043 return err;
2044}
2045
2046SYSCALL_DEFINE4(sendmmsg, int, fd, struct mmsghdr __user *, mmsg,
2047 unsigned int, vlen, unsigned int, flags)
2048{
2049 return __sys_sendmmsg(fd, mmsg, vlen, flags);
2050}
2051
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002052static int __sys_recvmsg(struct socket *sock, struct msghdr __user *msg,
2053 struct msghdr *msg_sys, unsigned flags, int nosec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002055 struct compat_msghdr __user *msg_compat =
2056 (struct compat_msghdr __user *)msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 struct iovec iovstack[UIO_FASTIOV];
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002058 struct iovec *iov = iovstack;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 unsigned long cmsg_ptr;
2060 int err, iov_size, total_len, len;
2061
2062 /* kernel mode address */
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07002063 struct sockaddr_storage addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064
2065 /* user mode address pointers */
2066 struct sockaddr __user *uaddr;
2067 int __user *uaddr_len;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002068
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 if (MSG_CMSG_COMPAT & flags) {
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002070 if (get_compat_msghdr(msg_sys, msg_compat))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 return -EFAULT;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002072 } else if (copy_from_user(msg_sys, msg, sizeof(struct msghdr)))
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002073 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 err = -EMSGSIZE;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002076 if (msg_sys->msg_iovlen > UIO_MAXIOV)
2077 goto out;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002078
2079 /* Check whether to allocate the iovec area */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 err = -ENOMEM;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002081 iov_size = msg_sys->msg_iovlen * sizeof(struct iovec);
2082 if (msg_sys->msg_iovlen > UIO_FASTIOV) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 iov = sock_kmalloc(sock->sk, iov_size, GFP_KERNEL);
2084 if (!iov)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002085 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 }
2087
2088 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002089 * Save the user-mode address (verify_iovec will change the
2090 * kernel msghdr to use the kernel address space)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002092
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002093 uaddr = (__force void __user *)msg_sys->msg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 uaddr_len = COMPAT_NAMELEN(msg);
2095 if (MSG_CMSG_COMPAT & flags) {
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002096 err = verify_compat_iovec(msg_sys, iov,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07002097 (struct sockaddr *)&addr,
2098 VERIFY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 } else
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002100 err = verify_iovec(msg_sys, iov,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07002101 (struct sockaddr *)&addr,
2102 VERIFY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 if (err < 0)
2104 goto out_freeiov;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002105 total_len = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002107 cmsg_ptr = (unsigned long)msg_sys->msg_control;
2108 msg_sys->msg_flags = flags & (MSG_CMSG_CLOEXEC|MSG_CMSG_COMPAT);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002109
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 if (sock->file->f_flags & O_NONBLOCK)
2111 flags |= MSG_DONTWAIT;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002112 err = (nosec ? sock_recvmsg_nosec : sock_recvmsg)(sock, msg_sys,
2113 total_len, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 if (err < 0)
2115 goto out_freeiov;
2116 len = err;
2117
2118 if (uaddr != NULL) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07002119 err = move_addr_to_user((struct sockaddr *)&addr,
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002120 msg_sys->msg_namelen, uaddr,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002121 uaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 if (err < 0)
2123 goto out_freeiov;
2124 }
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002125 err = __put_user((msg_sys->msg_flags & ~MSG_CMSG_COMPAT),
David S. Miller37f7f422005-09-16 16:51:01 -07002126 COMPAT_FLAGS(msg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 if (err)
2128 goto out_freeiov;
2129 if (MSG_CMSG_COMPAT & flags)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002130 err = __put_user((unsigned long)msg_sys->msg_control - cmsg_ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 &msg_compat->msg_controllen);
2132 else
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002133 err = __put_user((unsigned long)msg_sys->msg_control - cmsg_ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 &msg->msg_controllen);
2135 if (err)
2136 goto out_freeiov;
2137 err = len;
2138
2139out_freeiov:
2140 if (iov != iovstack)
2141 sock_kfree_s(sock->sk, iov, iov_size);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002142out:
2143 return err;
2144}
2145
2146/*
2147 * BSD recvmsg interface
2148 */
2149
2150SYSCALL_DEFINE3(recvmsg, int, fd, struct msghdr __user *, msg,
2151 unsigned int, flags)
2152{
2153 int fput_needed, err;
2154 struct msghdr msg_sys;
2155 struct socket *sock = sockfd_lookup_light(fd, &err, &fput_needed);
2156
2157 if (!sock)
2158 goto out;
2159
2160 err = __sys_recvmsg(sock, msg, &msg_sys, flags, 0);
2161
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002162 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163out:
2164 return err;
2165}
2166
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002167/*
2168 * Linux recvmmsg interface
2169 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002171int __sys_recvmmsg(int fd, struct mmsghdr __user *mmsg, unsigned int vlen,
2172 unsigned int flags, struct timespec *timeout)
2173{
2174 int fput_needed, err, datagrams;
2175 struct socket *sock;
2176 struct mmsghdr __user *entry;
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002177 struct compat_mmsghdr __user *compat_entry;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002178 struct msghdr msg_sys;
2179 struct timespec end_time;
2180
2181 if (timeout &&
2182 poll_select_set_timeout(&end_time, timeout->tv_sec,
2183 timeout->tv_nsec))
2184 return -EINVAL;
2185
2186 datagrams = 0;
2187
2188 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2189 if (!sock)
2190 return err;
2191
2192 err = sock_error(sock->sk);
2193 if (err)
2194 goto out_put;
2195
2196 entry = mmsg;
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002197 compat_entry = (struct compat_mmsghdr __user *)mmsg;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002198
2199 while (datagrams < vlen) {
2200 /*
2201 * No need to ask LSM for more than the first datagram.
2202 */
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002203 if (MSG_CMSG_COMPAT & flags) {
2204 err = __sys_recvmsg(sock, (struct msghdr __user *)compat_entry,
Anton Blanchardb9eb8b82011-05-17 15:38:57 -04002205 &msg_sys, flags & ~MSG_WAITFORONE,
2206 datagrams);
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002207 if (err < 0)
2208 break;
2209 err = __put_user(err, &compat_entry->msg_len);
2210 ++compat_entry;
2211 } else {
2212 err = __sys_recvmsg(sock, (struct msghdr __user *)entry,
Anton Blanchardb9eb8b82011-05-17 15:38:57 -04002213 &msg_sys, flags & ~MSG_WAITFORONE,
2214 datagrams);
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002215 if (err < 0)
2216 break;
2217 err = put_user(err, &entry->msg_len);
2218 ++entry;
2219 }
2220
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002221 if (err)
2222 break;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002223 ++datagrams;
2224
Brandon L Black71c5c152010-03-26 16:18:03 +00002225 /* MSG_WAITFORONE turns on MSG_DONTWAIT after one packet */
2226 if (flags & MSG_WAITFORONE)
2227 flags |= MSG_DONTWAIT;
2228
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002229 if (timeout) {
2230 ktime_get_ts(timeout);
2231 *timeout = timespec_sub(end_time, *timeout);
2232 if (timeout->tv_sec < 0) {
2233 timeout->tv_sec = timeout->tv_nsec = 0;
2234 break;
2235 }
2236
2237 /* Timeout, return less than vlen datagrams */
2238 if (timeout->tv_nsec == 0 && timeout->tv_sec == 0)
2239 break;
2240 }
2241
2242 /* Out of band data, return right away */
2243 if (msg_sys.msg_flags & MSG_OOB)
2244 break;
2245 }
2246
2247out_put:
2248 fput_light(sock->file, fput_needed);
2249
2250 if (err == 0)
2251 return datagrams;
2252
2253 if (datagrams != 0) {
2254 /*
2255 * We may return less entries than requested (vlen) if the
2256 * sock is non block and there aren't enough datagrams...
2257 */
2258 if (err != -EAGAIN) {
2259 /*
2260 * ... or if recvmsg returns an error after we
2261 * received some datagrams, where we record the
2262 * error to return on the next call or if the
2263 * app asks about it using getsockopt(SO_ERROR).
2264 */
2265 sock->sk->sk_err = -err;
2266 }
2267
2268 return datagrams;
2269 }
2270
2271 return err;
2272}
2273
2274SYSCALL_DEFINE5(recvmmsg, int, fd, struct mmsghdr __user *, mmsg,
2275 unsigned int, vlen, unsigned int, flags,
2276 struct timespec __user *, timeout)
2277{
2278 int datagrams;
2279 struct timespec timeout_sys;
2280
2281 if (!timeout)
2282 return __sys_recvmmsg(fd, mmsg, vlen, flags, NULL);
2283
2284 if (copy_from_user(&timeout_sys, timeout, sizeof(timeout_sys)))
2285 return -EFAULT;
2286
2287 datagrams = __sys_recvmmsg(fd, mmsg, vlen, flags, &timeout_sys);
2288
2289 if (datagrams > 0 &&
2290 copy_to_user(timeout, &timeout_sys, sizeof(timeout_sys)))
2291 datagrams = -EFAULT;
2292
2293 return datagrams;
2294}
2295
2296#ifdef __ARCH_WANT_SYS_SOCKETCALL
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297/* Argument list sizes for sys_socketcall */
2298#define AL(x) ((x) * sizeof(unsigned long))
Anton Blanchard228e5482011-05-02 20:21:35 +00002299static const unsigned char nargs[21] = {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002300 AL(0), AL(3), AL(3), AL(3), AL(2), AL(3),
2301 AL(3), AL(3), AL(4), AL(4), AL(4), AL(6),
2302 AL(6), AL(2), AL(5), AL(5), AL(3), AL(3),
Anton Blanchard228e5482011-05-02 20:21:35 +00002303 AL(4), AL(5), AL(4)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002304};
2305
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306#undef AL
2307
2308/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002309 * System call vectors.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 *
2311 * Argument checking cleaned up. Saved 20% in size.
2312 * This function doesn't need to set the kernel lock because
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002313 * it is set by the callees.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 */
2315
Heiko Carstens3e0fa652009-01-14 14:14:24 +01002316SYSCALL_DEFINE2(socketcall, int, call, unsigned long __user *, args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317{
2318 unsigned long a[6];
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002319 unsigned long a0, a1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 int err;
Arjan van de Ven47379052009-09-28 12:57:44 -07002321 unsigned int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322
Anton Blanchard228e5482011-05-02 20:21:35 +00002323 if (call < 1 || call > SYS_SENDMMSG)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 return -EINVAL;
2325
Arjan van de Ven47379052009-09-28 12:57:44 -07002326 len = nargs[call];
2327 if (len > sizeof(a))
2328 return -EINVAL;
2329
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 /* copy_from_user should be SMP safe. */
Arjan van de Ven47379052009-09-28 12:57:44 -07002331 if (copy_from_user(a, args, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 return -EFAULT;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002333
Al Virof3298dc2008-12-10 03:16:51 -05002334 audit_socketcall(nargs[call] / sizeof(unsigned long), a);
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002335
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002336 a0 = a[0];
2337 a1 = a[1];
2338
2339 switch (call) {
2340 case SYS_SOCKET:
2341 err = sys_socket(a0, a1, a[2]);
2342 break;
2343 case SYS_BIND:
2344 err = sys_bind(a0, (struct sockaddr __user *)a1, a[2]);
2345 break;
2346 case SYS_CONNECT:
2347 err = sys_connect(a0, (struct sockaddr __user *)a1, a[2]);
2348 break;
2349 case SYS_LISTEN:
2350 err = sys_listen(a0, a1);
2351 break;
2352 case SYS_ACCEPT:
Ulrich Drepperde11def2008-11-19 15:36:14 -08002353 err = sys_accept4(a0, (struct sockaddr __user *)a1,
2354 (int __user *)a[2], 0);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002355 break;
2356 case SYS_GETSOCKNAME:
2357 err =
2358 sys_getsockname(a0, (struct sockaddr __user *)a1,
2359 (int __user *)a[2]);
2360 break;
2361 case SYS_GETPEERNAME:
2362 err =
2363 sys_getpeername(a0, (struct sockaddr __user *)a1,
2364 (int __user *)a[2]);
2365 break;
2366 case SYS_SOCKETPAIR:
2367 err = sys_socketpair(a0, a1, a[2], (int __user *)a[3]);
2368 break;
2369 case SYS_SEND:
2370 err = sys_send(a0, (void __user *)a1, a[2], a[3]);
2371 break;
2372 case SYS_SENDTO:
2373 err = sys_sendto(a0, (void __user *)a1, a[2], a[3],
2374 (struct sockaddr __user *)a[4], a[5]);
2375 break;
2376 case SYS_RECV:
2377 err = sys_recv(a0, (void __user *)a1, a[2], a[3]);
2378 break;
2379 case SYS_RECVFROM:
2380 err = sys_recvfrom(a0, (void __user *)a1, a[2], a[3],
2381 (struct sockaddr __user *)a[4],
2382 (int __user *)a[5]);
2383 break;
2384 case SYS_SHUTDOWN:
2385 err = sys_shutdown(a0, a1);
2386 break;
2387 case SYS_SETSOCKOPT:
2388 err = sys_setsockopt(a0, a1, a[2], (char __user *)a[3], a[4]);
2389 break;
2390 case SYS_GETSOCKOPT:
2391 err =
2392 sys_getsockopt(a0, a1, a[2], (char __user *)a[3],
2393 (int __user *)a[4]);
2394 break;
2395 case SYS_SENDMSG:
2396 err = sys_sendmsg(a0, (struct msghdr __user *)a1, a[2]);
2397 break;
Anton Blanchard228e5482011-05-02 20:21:35 +00002398 case SYS_SENDMMSG:
2399 err = sys_sendmmsg(a0, (struct mmsghdr __user *)a1, a[2], a[3]);
2400 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002401 case SYS_RECVMSG:
2402 err = sys_recvmsg(a0, (struct msghdr __user *)a1, a[2]);
2403 break;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002404 case SYS_RECVMMSG:
2405 err = sys_recvmmsg(a0, (struct mmsghdr __user *)a1, a[2], a[3],
2406 (struct timespec __user *)a[4]);
2407 break;
Ulrich Drepperde11def2008-11-19 15:36:14 -08002408 case SYS_ACCEPT4:
2409 err = sys_accept4(a0, (struct sockaddr __user *)a1,
2410 (int __user *)a[2], a[3]);
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07002411 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002412 default:
2413 err = -EINVAL;
2414 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415 }
2416 return err;
2417}
2418
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002419#endif /* __ARCH_WANT_SYS_SOCKETCALL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002421/**
2422 * sock_register - add a socket protocol handler
2423 * @ops: description of protocol
2424 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 * This function is called by a protocol handler that wants to
2426 * advertise its address family, and have it linked into the
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002427 * socket interface. The value ops->family coresponds to the
2428 * socket system call protocol family.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 */
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002430int sock_register(const struct net_proto_family *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431{
2432 int err;
2433
2434 if (ops->family >= NPROTO) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002435 printk(KERN_CRIT "protocol %d >= NPROTO(%d)\n", ops->family,
2436 NPROTO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 return -ENOBUFS;
2438 }
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002439
2440 spin_lock(&net_family_lock);
Eric Dumazet190683a2010-11-10 10:50:44 +00002441 if (rcu_dereference_protected(net_families[ops->family],
2442 lockdep_is_held(&net_family_lock)))
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002443 err = -EEXIST;
2444 else {
Eric Dumazet190683a2010-11-10 10:50:44 +00002445 rcu_assign_pointer(net_families[ops->family], ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446 err = 0;
2447 }
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002448 spin_unlock(&net_family_lock);
2449
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002450 printk(KERN_INFO "NET: Registered protocol family %d\n", ops->family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 return err;
2452}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002453EXPORT_SYMBOL(sock_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002455/**
2456 * sock_unregister - remove a protocol handler
2457 * @family: protocol family to remove
2458 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 * This function is called by a protocol handler that wants to
2460 * remove its address family, and have it unlinked from the
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002461 * new socket creation.
2462 *
2463 * If protocol handler is a module, then it can use module reference
2464 * counts to protect against new references. If protocol handler is not
2465 * a module then it needs to provide its own protection in
2466 * the ops->create routine.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467 */
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002468void sock_unregister(int family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469{
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002470 BUG_ON(family < 0 || family >= NPROTO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002472 spin_lock(&net_family_lock);
Eric Dumazet190683a2010-11-10 10:50:44 +00002473 rcu_assign_pointer(net_families[family], NULL);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002474 spin_unlock(&net_family_lock);
2475
2476 synchronize_rcu();
2477
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002478 printk(KERN_INFO "NET: Unregistered protocol family %d\n", family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002480EXPORT_SYMBOL(sock_unregister);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481
Andi Kleen77d76ea2005-12-22 12:43:42 -08002482static int __init sock_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483{
Nick Pigginb3e19d92011-01-07 17:50:11 +11002484 int err;
2485
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002487 * Initialize sock SLAB cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002489
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490 sk_init();
2491
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002493 * Initialize skbuff SLAB cache
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 */
2495 skb_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496
2497 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002498 * Initialize the protocols module.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499 */
2500
2501 init_inodecache();
Nick Pigginb3e19d92011-01-07 17:50:11 +11002502
2503 err = register_filesystem(&sock_fs_type);
2504 if (err)
2505 goto out_fs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 sock_mnt = kern_mount(&sock_fs_type);
Nick Pigginb3e19d92011-01-07 17:50:11 +11002507 if (IS_ERR(sock_mnt)) {
2508 err = PTR_ERR(sock_mnt);
2509 goto out_mount;
2510 }
Andi Kleen77d76ea2005-12-22 12:43:42 -08002511
2512 /* The real protocol initialization is performed in later initcalls.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 */
2514
2515#ifdef CONFIG_NETFILTER
2516 netfilter_init();
2517#endif
David S. Millercbeb3212005-12-22 12:58:55 -08002518
Richard Cochranc1f19b52010-07-17 08:49:36 +00002519#ifdef CONFIG_NETWORK_PHY_TIMESTAMPING
2520 skb_timestamping_init();
2521#endif
2522
Nick Pigginb3e19d92011-01-07 17:50:11 +11002523out:
2524 return err;
2525
2526out_mount:
2527 unregister_filesystem(&sock_fs_type);
2528out_fs:
2529 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530}
2531
Andi Kleen77d76ea2005-12-22 12:43:42 -08002532core_initcall(sock_init); /* early initcall */
2533
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534#ifdef CONFIG_PROC_FS
2535void socket_seq_show(struct seq_file *seq)
2536{
2537 int cpu;
2538 int counter = 0;
2539
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -07002540 for_each_possible_cpu(cpu)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002541 counter += per_cpu(sockets_in_use, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542
2543 /* It can be negative, by the way. 8) */
2544 if (counter < 0)
2545 counter = 0;
2546
2547 seq_printf(seq, "sockets: used %d\n", counter);
2548}
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002549#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550
Shaun Pereira89bbfc92006-03-21 23:58:08 -08002551#ifdef CONFIG_COMPAT
Arnd Bergmann6b960182009-11-06 23:10:54 -08002552static int do_siocgstamp(struct net *net, struct socket *sock,
2553 unsigned int cmd, struct compat_timeval __user *up)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002554{
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002555 mm_segment_t old_fs = get_fs();
2556 struct timeval ktv;
2557 int err;
2558
2559 set_fs(KERNEL_DS);
Arnd Bergmann6b960182009-11-06 23:10:54 -08002560 err = sock_do_ioctl(net, sock, cmd, (unsigned long)&ktv);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002561 set_fs(old_fs);
2562 if (!err) {
2563 err = put_user(ktv.tv_sec, &up->tv_sec);
2564 err |= __put_user(ktv.tv_usec, &up->tv_usec);
2565 }
2566 return err;
2567}
2568
Arnd Bergmann6b960182009-11-06 23:10:54 -08002569static int do_siocgstampns(struct net *net, struct socket *sock,
2570 unsigned int cmd, struct compat_timespec __user *up)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002571{
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002572 mm_segment_t old_fs = get_fs();
2573 struct timespec kts;
2574 int err;
2575
2576 set_fs(KERNEL_DS);
Arnd Bergmann6b960182009-11-06 23:10:54 -08002577 err = sock_do_ioctl(net, sock, cmd, (unsigned long)&kts);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002578 set_fs(old_fs);
2579 if (!err) {
2580 err = put_user(kts.tv_sec, &up->tv_sec);
2581 err |= __put_user(kts.tv_nsec, &up->tv_nsec);
2582 }
2583 return err;
2584}
2585
Arnd Bergmann6b960182009-11-06 23:10:54 -08002586static int dev_ifname32(struct net *net, struct compat_ifreq __user *uifr32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002587{
2588 struct ifreq __user *uifr;
2589 int err;
2590
2591 uifr = compat_alloc_user_space(sizeof(struct ifreq));
Arnd Bergmann6b960182009-11-06 23:10:54 -08002592 if (copy_in_user(uifr, uifr32, sizeof(struct compat_ifreq)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002593 return -EFAULT;
2594
Arnd Bergmann6b960182009-11-06 23:10:54 -08002595 err = dev_ioctl(net, SIOCGIFNAME, uifr);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002596 if (err)
2597 return err;
2598
Arnd Bergmann6b960182009-11-06 23:10:54 -08002599 if (copy_in_user(uifr32, uifr, sizeof(struct compat_ifreq)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002600 return -EFAULT;
2601
2602 return 0;
2603}
2604
Arnd Bergmann6b960182009-11-06 23:10:54 -08002605static int dev_ifconf(struct net *net, struct compat_ifconf __user *uifc32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002606{
Arnd Bergmann6b960182009-11-06 23:10:54 -08002607 struct compat_ifconf ifc32;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002608 struct ifconf ifc;
2609 struct ifconf __user *uifc;
Arnd Bergmann6b960182009-11-06 23:10:54 -08002610 struct compat_ifreq __user *ifr32;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002611 struct ifreq __user *ifr;
2612 unsigned int i, j;
2613 int err;
2614
Arnd Bergmann6b960182009-11-06 23:10:54 -08002615 if (copy_from_user(&ifc32, uifc32, sizeof(struct compat_ifconf)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002616 return -EFAULT;
2617
2618 if (ifc32.ifcbuf == 0) {
2619 ifc32.ifc_len = 0;
2620 ifc.ifc_len = 0;
2621 ifc.ifc_req = NULL;
2622 uifc = compat_alloc_user_space(sizeof(struct ifconf));
2623 } else {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002624 size_t len = ((ifc32.ifc_len / sizeof(struct compat_ifreq)) + 1) *
2625 sizeof(struct ifreq);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002626 uifc = compat_alloc_user_space(sizeof(struct ifconf) + len);
2627 ifc.ifc_len = len;
2628 ifr = ifc.ifc_req = (void __user *)(uifc + 1);
2629 ifr32 = compat_ptr(ifc32.ifcbuf);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002630 for (i = 0; i < ifc32.ifc_len; i += sizeof(struct compat_ifreq)) {
Arnd Bergmann6b960182009-11-06 23:10:54 -08002631 if (copy_in_user(ifr, ifr32, sizeof(struct compat_ifreq)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002632 return -EFAULT;
2633 ifr++;
2634 ifr32++;
2635 }
2636 }
2637 if (copy_to_user(uifc, &ifc, sizeof(struct ifconf)))
2638 return -EFAULT;
2639
Arnd Bergmann6b960182009-11-06 23:10:54 -08002640 err = dev_ioctl(net, SIOCGIFCONF, uifc);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002641 if (err)
2642 return err;
2643
2644 if (copy_from_user(&ifc, uifc, sizeof(struct ifconf)))
2645 return -EFAULT;
2646
2647 ifr = ifc.ifc_req;
2648 ifr32 = compat_ptr(ifc32.ifcbuf);
2649 for (i = 0, j = 0;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002650 i + sizeof(struct compat_ifreq) <= ifc32.ifc_len && j < ifc.ifc_len;
2651 i += sizeof(struct compat_ifreq), j += sizeof(struct ifreq)) {
2652 if (copy_in_user(ifr32, ifr, sizeof(struct compat_ifreq)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002653 return -EFAULT;
2654 ifr32++;
2655 ifr++;
2656 }
2657
2658 if (ifc32.ifcbuf == 0) {
2659 /* Translate from 64-bit structure multiple to
2660 * a 32-bit one.
2661 */
2662 i = ifc.ifc_len;
Arnd Bergmann6b960182009-11-06 23:10:54 -08002663 i = ((i / sizeof(struct ifreq)) * sizeof(struct compat_ifreq));
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002664 ifc32.ifc_len = i;
2665 } else {
2666 ifc32.ifc_len = i;
2667 }
Arnd Bergmann6b960182009-11-06 23:10:54 -08002668 if (copy_to_user(uifc32, &ifc32, sizeof(struct compat_ifconf)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002669 return -EFAULT;
2670
2671 return 0;
2672}
2673
Arnd Bergmann6b960182009-11-06 23:10:54 -08002674static int ethtool_ioctl(struct net *net, struct compat_ifreq __user *ifr32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002675{
Ben Hutchings3a7da392011-03-17 07:34:32 +00002676 struct compat_ethtool_rxnfc __user *compat_rxnfc;
2677 bool convert_in = false, convert_out = false;
2678 size_t buf_size = ALIGN(sizeof(struct ifreq), 8);
2679 struct ethtool_rxnfc __user *rxnfc;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002680 struct ifreq __user *ifr;
Ben Hutchings3a7da392011-03-17 07:34:32 +00002681 u32 rule_cnt = 0, actual_rule_cnt;
2682 u32 ethcmd;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002683 u32 data;
Ben Hutchings3a7da392011-03-17 07:34:32 +00002684 int ret;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002685
2686 if (get_user(data, &ifr32->ifr_ifru.ifru_data))
2687 return -EFAULT;
2688
Ben Hutchings3a7da392011-03-17 07:34:32 +00002689 compat_rxnfc = compat_ptr(data);
2690
2691 if (get_user(ethcmd, &compat_rxnfc->cmd))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002692 return -EFAULT;
2693
Ben Hutchings3a7da392011-03-17 07:34:32 +00002694 /* Most ethtool structures are defined without padding.
2695 * Unfortunately struct ethtool_rxnfc is an exception.
2696 */
2697 switch (ethcmd) {
2698 default:
2699 break;
2700 case ETHTOOL_GRXCLSRLALL:
2701 /* Buffer size is variable */
2702 if (get_user(rule_cnt, &compat_rxnfc->rule_cnt))
2703 return -EFAULT;
2704 if (rule_cnt > KMALLOC_MAX_SIZE / sizeof(u32))
2705 return -ENOMEM;
2706 buf_size += rule_cnt * sizeof(u32);
2707 /* fall through */
2708 case ETHTOOL_GRXRINGS:
2709 case ETHTOOL_GRXCLSRLCNT:
2710 case ETHTOOL_GRXCLSRULE:
2711 convert_out = true;
2712 /* fall through */
2713 case ETHTOOL_SRXCLSRLDEL:
2714 case ETHTOOL_SRXCLSRLINS:
2715 buf_size += sizeof(struct ethtool_rxnfc);
2716 convert_in = true;
2717 break;
2718 }
2719
2720 ifr = compat_alloc_user_space(buf_size);
2721 rxnfc = (void *)ifr + ALIGN(sizeof(struct ifreq), 8);
2722
2723 if (copy_in_user(&ifr->ifr_name, &ifr32->ifr_name, IFNAMSIZ))
2724 return -EFAULT;
2725
2726 if (put_user(convert_in ? rxnfc : compat_ptr(data),
2727 &ifr->ifr_ifru.ifru_data))
2728 return -EFAULT;
2729
2730 if (convert_in) {
Alexander Duyck127fe532011-04-08 18:01:59 +00002731 /* We expect there to be holes between fs.m_ext and
Ben Hutchings3a7da392011-03-17 07:34:32 +00002732 * fs.ring_cookie and at the end of fs, but nowhere else.
2733 */
Alexander Duyck127fe532011-04-08 18:01:59 +00002734 BUILD_BUG_ON(offsetof(struct compat_ethtool_rxnfc, fs.m_ext) +
2735 sizeof(compat_rxnfc->fs.m_ext) !=
2736 offsetof(struct ethtool_rxnfc, fs.m_ext) +
2737 sizeof(rxnfc->fs.m_ext));
Ben Hutchings3a7da392011-03-17 07:34:32 +00002738 BUILD_BUG_ON(
2739 offsetof(struct compat_ethtool_rxnfc, fs.location) -
2740 offsetof(struct compat_ethtool_rxnfc, fs.ring_cookie) !=
2741 offsetof(struct ethtool_rxnfc, fs.location) -
2742 offsetof(struct ethtool_rxnfc, fs.ring_cookie));
2743
2744 if (copy_in_user(rxnfc, compat_rxnfc,
Alexander Duyck127fe532011-04-08 18:01:59 +00002745 (void *)(&rxnfc->fs.m_ext + 1) -
Ben Hutchings3a7da392011-03-17 07:34:32 +00002746 (void *)rxnfc) ||
2747 copy_in_user(&rxnfc->fs.ring_cookie,
2748 &compat_rxnfc->fs.ring_cookie,
2749 (void *)(&rxnfc->fs.location + 1) -
2750 (void *)&rxnfc->fs.ring_cookie) ||
2751 copy_in_user(&rxnfc->rule_cnt, &compat_rxnfc->rule_cnt,
2752 sizeof(rxnfc->rule_cnt)))
2753 return -EFAULT;
2754 }
2755
2756 ret = dev_ioctl(net, SIOCETHTOOL, ifr);
2757 if (ret)
2758 return ret;
2759
2760 if (convert_out) {
2761 if (copy_in_user(compat_rxnfc, rxnfc,
Alexander Duyck127fe532011-04-08 18:01:59 +00002762 (const void *)(&rxnfc->fs.m_ext + 1) -
Ben Hutchings3a7da392011-03-17 07:34:32 +00002763 (const void *)rxnfc) ||
2764 copy_in_user(&compat_rxnfc->fs.ring_cookie,
2765 &rxnfc->fs.ring_cookie,
2766 (const void *)(&rxnfc->fs.location + 1) -
2767 (const void *)&rxnfc->fs.ring_cookie) ||
2768 copy_in_user(&compat_rxnfc->rule_cnt, &rxnfc->rule_cnt,
2769 sizeof(rxnfc->rule_cnt)))
2770 return -EFAULT;
2771
2772 if (ethcmd == ETHTOOL_GRXCLSRLALL) {
2773 /* As an optimisation, we only copy the actual
2774 * number of rules that the underlying
2775 * function returned. Since Mallory might
2776 * change the rule count in user memory, we
2777 * check that it is less than the rule count
2778 * originally given (as the user buffer size),
2779 * which has been range-checked.
2780 */
2781 if (get_user(actual_rule_cnt, &rxnfc->rule_cnt))
2782 return -EFAULT;
2783 if (actual_rule_cnt < rule_cnt)
2784 rule_cnt = actual_rule_cnt;
2785 if (copy_in_user(&compat_rxnfc->rule_locs[0],
2786 &rxnfc->rule_locs[0],
2787 rule_cnt * sizeof(u32)))
2788 return -EFAULT;
2789 }
2790 }
2791
2792 return 0;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002793}
2794
Arnd Bergmann7a50a242009-11-08 20:57:03 -08002795static int compat_siocwandev(struct net *net, struct compat_ifreq __user *uifr32)
2796{
2797 void __user *uptr;
2798 compat_uptr_t uptr32;
2799 struct ifreq __user *uifr;
2800
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002801 uifr = compat_alloc_user_space(sizeof(*uifr));
Arnd Bergmann7a50a242009-11-08 20:57:03 -08002802 if (copy_in_user(uifr, uifr32, sizeof(struct compat_ifreq)))
2803 return -EFAULT;
2804
2805 if (get_user(uptr32, &uifr32->ifr_settings.ifs_ifsu))
2806 return -EFAULT;
2807
2808 uptr = compat_ptr(uptr32);
2809
2810 if (put_user(uptr, &uifr->ifr_settings.ifs_ifsu.raw_hdlc))
2811 return -EFAULT;
2812
2813 return dev_ioctl(net, SIOCWANDEV, uifr);
2814}
2815
Arnd Bergmann6b960182009-11-06 23:10:54 -08002816static int bond_ioctl(struct net *net, unsigned int cmd,
2817 struct compat_ifreq __user *ifr32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002818{
2819 struct ifreq kifr;
2820 struct ifreq __user *uifr;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002821 mm_segment_t old_fs;
2822 int err;
2823 u32 data;
2824 void __user *datap;
2825
2826 switch (cmd) {
2827 case SIOCBONDENSLAVE:
2828 case SIOCBONDRELEASE:
2829 case SIOCBONDSETHWADDR:
2830 case SIOCBONDCHANGEACTIVE:
Arnd Bergmann6b960182009-11-06 23:10:54 -08002831 if (copy_from_user(&kifr, ifr32, sizeof(struct compat_ifreq)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002832 return -EFAULT;
2833
2834 old_fs = get_fs();
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002835 set_fs(KERNEL_DS);
stephen hemmingerc3f52ae2011-02-23 09:06:48 +00002836 err = dev_ioctl(net, cmd,
2837 (struct ifreq __user __force *) &kifr);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002838 set_fs(old_fs);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002839
2840 return err;
2841 case SIOCBONDSLAVEINFOQUERY:
2842 case SIOCBONDINFOQUERY:
2843 uifr = compat_alloc_user_space(sizeof(*uifr));
2844 if (copy_in_user(&uifr->ifr_name, &ifr32->ifr_name, IFNAMSIZ))
2845 return -EFAULT;
2846
2847 if (get_user(data, &ifr32->ifr_ifru.ifru_data))
2848 return -EFAULT;
2849
2850 datap = compat_ptr(data);
2851 if (put_user(datap, &uifr->ifr_ifru.ifru_data))
2852 return -EFAULT;
2853
Arnd Bergmann6b960182009-11-06 23:10:54 -08002854 return dev_ioctl(net, cmd, uifr);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002855 default:
2856 return -EINVAL;
Joe Perchesccbd6a52010-05-14 10:58:26 +00002857 }
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002858}
2859
Arnd Bergmann6b960182009-11-06 23:10:54 -08002860static int siocdevprivate_ioctl(struct net *net, unsigned int cmd,
2861 struct compat_ifreq __user *u_ifreq32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002862{
2863 struct ifreq __user *u_ifreq64;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002864 char tmp_buf[IFNAMSIZ];
2865 void __user *data64;
2866 u32 data32;
2867
2868 if (copy_from_user(&tmp_buf[0], &(u_ifreq32->ifr_ifrn.ifrn_name[0]),
2869 IFNAMSIZ))
2870 return -EFAULT;
2871 if (__get_user(data32, &u_ifreq32->ifr_ifru.ifru_data))
2872 return -EFAULT;
2873 data64 = compat_ptr(data32);
2874
2875 u_ifreq64 = compat_alloc_user_space(sizeof(*u_ifreq64));
2876
2877 /* Don't check these user accesses, just let that get trapped
2878 * in the ioctl handler instead.
2879 */
2880 if (copy_to_user(&u_ifreq64->ifr_ifrn.ifrn_name[0], &tmp_buf[0],
2881 IFNAMSIZ))
2882 return -EFAULT;
2883 if (__put_user(data64, &u_ifreq64->ifr_ifru.ifru_data))
2884 return -EFAULT;
2885
Arnd Bergmann6b960182009-11-06 23:10:54 -08002886 return dev_ioctl(net, cmd, u_ifreq64);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002887}
2888
Arnd Bergmann6b960182009-11-06 23:10:54 -08002889static int dev_ifsioc(struct net *net, struct socket *sock,
2890 unsigned int cmd, struct compat_ifreq __user *uifr32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002891{
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002892 struct ifreq __user *uifr;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002893 int err;
2894
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002895 uifr = compat_alloc_user_space(sizeof(*uifr));
2896 if (copy_in_user(uifr, uifr32, sizeof(*uifr32)))
2897 return -EFAULT;
2898
2899 err = sock_do_ioctl(net, sock, cmd, (unsigned long)uifr);
2900
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002901 if (!err) {
2902 switch (cmd) {
2903 case SIOCGIFFLAGS:
2904 case SIOCGIFMETRIC:
2905 case SIOCGIFMTU:
2906 case SIOCGIFMEM:
2907 case SIOCGIFHWADDR:
2908 case SIOCGIFINDEX:
2909 case SIOCGIFADDR:
2910 case SIOCGIFBRDADDR:
2911 case SIOCGIFDSTADDR:
2912 case SIOCGIFNETMASK:
Arnd Bergmannfab25322009-11-08 20:56:21 -08002913 case SIOCGIFPFLAGS:
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002914 case SIOCGIFTXQLEN:
Arnd Bergmannfab25322009-11-08 20:56:21 -08002915 case SIOCGMIIPHY:
2916 case SIOCGMIIREG:
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002917 if (copy_in_user(uifr32, uifr, sizeof(*uifr32)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002918 err = -EFAULT;
2919 break;
2920 }
2921 }
2922 return err;
2923}
2924
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002925static int compat_sioc_ifmap(struct net *net, unsigned int cmd,
2926 struct compat_ifreq __user *uifr32)
2927{
2928 struct ifreq ifr;
2929 struct compat_ifmap __user *uifmap32;
2930 mm_segment_t old_fs;
2931 int err;
2932
2933 uifmap32 = &uifr32->ifr_ifru.ifru_map;
2934 err = copy_from_user(&ifr, uifr32, sizeof(ifr.ifr_name));
2935 err |= __get_user(ifr.ifr_map.mem_start, &uifmap32->mem_start);
2936 err |= __get_user(ifr.ifr_map.mem_end, &uifmap32->mem_end);
2937 err |= __get_user(ifr.ifr_map.base_addr, &uifmap32->base_addr);
2938 err |= __get_user(ifr.ifr_map.irq, &uifmap32->irq);
2939 err |= __get_user(ifr.ifr_map.dma, &uifmap32->dma);
2940 err |= __get_user(ifr.ifr_map.port, &uifmap32->port);
2941 if (err)
2942 return -EFAULT;
2943
2944 old_fs = get_fs();
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002945 set_fs(KERNEL_DS);
stephen hemmingerc3f52ae2011-02-23 09:06:48 +00002946 err = dev_ioctl(net, cmd, (void __user __force *)&ifr);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002947 set_fs(old_fs);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002948
2949 if (cmd == SIOCGIFMAP && !err) {
2950 err = copy_to_user(uifr32, &ifr, sizeof(ifr.ifr_name));
2951 err |= __put_user(ifr.ifr_map.mem_start, &uifmap32->mem_start);
2952 err |= __put_user(ifr.ifr_map.mem_end, &uifmap32->mem_end);
2953 err |= __put_user(ifr.ifr_map.base_addr, &uifmap32->base_addr);
2954 err |= __put_user(ifr.ifr_map.irq, &uifmap32->irq);
2955 err |= __put_user(ifr.ifr_map.dma, &uifmap32->dma);
2956 err |= __put_user(ifr.ifr_map.port, &uifmap32->port);
2957 if (err)
2958 err = -EFAULT;
2959 }
2960 return err;
2961}
2962
2963static int compat_siocshwtstamp(struct net *net, struct compat_ifreq __user *uifr32)
2964{
2965 void __user *uptr;
2966 compat_uptr_t uptr32;
2967 struct ifreq __user *uifr;
2968
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002969 uifr = compat_alloc_user_space(sizeof(*uifr));
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002970 if (copy_in_user(uifr, uifr32, sizeof(struct compat_ifreq)))
2971 return -EFAULT;
2972
2973 if (get_user(uptr32, &uifr32->ifr_data))
2974 return -EFAULT;
2975
2976 uptr = compat_ptr(uptr32);
2977
2978 if (put_user(uptr, &uifr->ifr_data))
2979 return -EFAULT;
2980
2981 return dev_ioctl(net, SIOCSHWTSTAMP, uifr);
2982}
2983
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002984struct rtentry32 {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002985 u32 rt_pad1;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002986 struct sockaddr rt_dst; /* target address */
2987 struct sockaddr rt_gateway; /* gateway addr (RTF_GATEWAY) */
2988 struct sockaddr rt_genmask; /* target network mask (IP) */
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002989 unsigned short rt_flags;
2990 short rt_pad2;
2991 u32 rt_pad3;
2992 unsigned char rt_tos;
2993 unsigned char rt_class;
2994 short rt_pad4;
2995 short rt_metric; /* +1 for binary compatibility! */
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002996 /* char * */ u32 rt_dev; /* forcing the device at add */
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002997 u32 rt_mtu; /* per route MTU/Window */
2998 u32 rt_window; /* Window clamping */
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002999 unsigned short rt_irtt; /* Initial RTT */
3000};
3001
3002struct in6_rtmsg32 {
3003 struct in6_addr rtmsg_dst;
3004 struct in6_addr rtmsg_src;
3005 struct in6_addr rtmsg_gateway;
3006 u32 rtmsg_type;
3007 u16 rtmsg_dst_len;
3008 u16 rtmsg_src_len;
3009 u32 rtmsg_metric;
3010 u32 rtmsg_info;
3011 u32 rtmsg_flags;
3012 s32 rtmsg_ifindex;
3013};
3014
Arnd Bergmann6b960182009-11-06 23:10:54 -08003015static int routing_ioctl(struct net *net, struct socket *sock,
3016 unsigned int cmd, void __user *argp)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003017{
3018 int ret;
3019 void *r = NULL;
3020 struct in6_rtmsg r6;
3021 struct rtentry r4;
3022 char devname[16];
3023 u32 rtdev;
3024 mm_segment_t old_fs = get_fs();
3025
Arnd Bergmann6b960182009-11-06 23:10:54 -08003026 if (sock && sock->sk && sock->sk->sk_family == AF_INET6) { /* ipv6 */
3027 struct in6_rtmsg32 __user *ur6 = argp;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003028 ret = copy_from_user(&r6.rtmsg_dst, &(ur6->rtmsg_dst),
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003029 3 * sizeof(struct in6_addr));
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003030 ret |= __get_user(r6.rtmsg_type, &(ur6->rtmsg_type));
3031 ret |= __get_user(r6.rtmsg_dst_len, &(ur6->rtmsg_dst_len));
3032 ret |= __get_user(r6.rtmsg_src_len, &(ur6->rtmsg_src_len));
3033 ret |= __get_user(r6.rtmsg_metric, &(ur6->rtmsg_metric));
3034 ret |= __get_user(r6.rtmsg_info, &(ur6->rtmsg_info));
3035 ret |= __get_user(r6.rtmsg_flags, &(ur6->rtmsg_flags));
3036 ret |= __get_user(r6.rtmsg_ifindex, &(ur6->rtmsg_ifindex));
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003037
3038 r = (void *) &r6;
3039 } else { /* ipv4 */
Arnd Bergmann6b960182009-11-06 23:10:54 -08003040 struct rtentry32 __user *ur4 = argp;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003041 ret = copy_from_user(&r4.rt_dst, &(ur4->rt_dst),
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003042 3 * sizeof(struct sockaddr));
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003043 ret |= __get_user(r4.rt_flags, &(ur4->rt_flags));
3044 ret |= __get_user(r4.rt_metric, &(ur4->rt_metric));
3045 ret |= __get_user(r4.rt_mtu, &(ur4->rt_mtu));
3046 ret |= __get_user(r4.rt_window, &(ur4->rt_window));
3047 ret |= __get_user(r4.rt_irtt, &(ur4->rt_irtt));
3048 ret |= __get_user(rtdev, &(ur4->rt_dev));
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003049 if (rtdev) {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003050 ret |= copy_from_user(devname, compat_ptr(rtdev), 15);
stephen hemmingerc3f52ae2011-02-23 09:06:48 +00003051 r4.rt_dev = (char __user __force *)devname;
3052 devname[15] = 0;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003053 } else
3054 r4.rt_dev = NULL;
3055
3056 r = (void *) &r4;
3057 }
3058
3059 if (ret) {
3060 ret = -EFAULT;
3061 goto out;
3062 }
3063
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003064 set_fs(KERNEL_DS);
Arnd Bergmann6b960182009-11-06 23:10:54 -08003065 ret = sock_do_ioctl(net, sock, cmd, (unsigned long) r);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003066 set_fs(old_fs);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003067
3068out:
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003069 return ret;
3070}
3071
3072/* Since old style bridge ioctl's endup using SIOCDEVPRIVATE
3073 * for some operations; this forces use of the newer bridge-utils that
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003074 * use compatible ioctls
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003075 */
Arnd Bergmann6b960182009-11-06 23:10:54 -08003076static int old_bridge_ioctl(compat_ulong_t __user *argp)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003077{
Arnd Bergmann6b960182009-11-06 23:10:54 -08003078 compat_ulong_t tmp;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003079
Arnd Bergmann6b960182009-11-06 23:10:54 -08003080 if (get_user(tmp, argp))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003081 return -EFAULT;
3082 if (tmp == BRCTL_GET_VERSION)
3083 return BRCTL_VERSION + 1;
3084 return -EINVAL;
3085}
3086
Arnd Bergmann6b960182009-11-06 23:10:54 -08003087static int compat_sock_ioctl_trans(struct file *file, struct socket *sock,
3088 unsigned int cmd, unsigned long arg)
3089{
3090 void __user *argp = compat_ptr(arg);
3091 struct sock *sk = sock->sk;
3092 struct net *net = sock_net(sk);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003093
Arnd Bergmann6b960182009-11-06 23:10:54 -08003094 if (cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15))
3095 return siocdevprivate_ioctl(net, cmd, argp);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003096
Arnd Bergmann6b960182009-11-06 23:10:54 -08003097 switch (cmd) {
3098 case SIOCSIFBR:
3099 case SIOCGIFBR:
3100 return old_bridge_ioctl(argp);
3101 case SIOCGIFNAME:
3102 return dev_ifname32(net, argp);
3103 case SIOCGIFCONF:
3104 return dev_ifconf(net, argp);
3105 case SIOCETHTOOL:
3106 return ethtool_ioctl(net, argp);
Arnd Bergmann7a50a242009-11-08 20:57:03 -08003107 case SIOCWANDEV:
3108 return compat_siocwandev(net, argp);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003109 case SIOCGIFMAP:
3110 case SIOCSIFMAP:
3111 return compat_sioc_ifmap(net, cmd, argp);
Arnd Bergmann6b960182009-11-06 23:10:54 -08003112 case SIOCBONDENSLAVE:
3113 case SIOCBONDRELEASE:
3114 case SIOCBONDSETHWADDR:
3115 case SIOCBONDSLAVEINFOQUERY:
3116 case SIOCBONDINFOQUERY:
3117 case SIOCBONDCHANGEACTIVE:
3118 return bond_ioctl(net, cmd, argp);
3119 case SIOCADDRT:
3120 case SIOCDELRT:
3121 return routing_ioctl(net, sock, cmd, argp);
3122 case SIOCGSTAMP:
3123 return do_siocgstamp(net, sock, cmd, argp);
3124 case SIOCGSTAMPNS:
3125 return do_siocgstampns(net, sock, cmd, argp);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003126 case SIOCSHWTSTAMP:
3127 return compat_siocshwtstamp(net, argp);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003128
Arnd Bergmann6b960182009-11-06 23:10:54 -08003129 case FIOSETOWN:
3130 case SIOCSPGRP:
3131 case FIOGETOWN:
3132 case SIOCGPGRP:
3133 case SIOCBRADDBR:
3134 case SIOCBRDELBR:
3135 case SIOCGIFVLAN:
3136 case SIOCSIFVLAN:
3137 case SIOCADDDLCI:
3138 case SIOCDELDLCI:
3139 return sock_ioctl(file, cmd, arg);
3140
3141 case SIOCGIFFLAGS:
3142 case SIOCSIFFLAGS:
3143 case SIOCGIFMETRIC:
3144 case SIOCSIFMETRIC:
3145 case SIOCGIFMTU:
3146 case SIOCSIFMTU:
3147 case SIOCGIFMEM:
3148 case SIOCSIFMEM:
3149 case SIOCGIFHWADDR:
3150 case SIOCSIFHWADDR:
3151 case SIOCADDMULTI:
3152 case SIOCDELMULTI:
3153 case SIOCGIFINDEX:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003154 case SIOCGIFADDR:
3155 case SIOCSIFADDR:
3156 case SIOCSIFHWBROADCAST:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003157 case SIOCDIFADDR:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003158 case SIOCGIFBRDADDR:
3159 case SIOCSIFBRDADDR:
3160 case SIOCGIFDSTADDR:
3161 case SIOCSIFDSTADDR:
3162 case SIOCGIFNETMASK:
3163 case SIOCSIFNETMASK:
3164 case SIOCSIFPFLAGS:
3165 case SIOCGIFPFLAGS:
3166 case SIOCGIFTXQLEN:
3167 case SIOCSIFTXQLEN:
3168 case SIOCBRADDIF:
3169 case SIOCBRDELIF:
Arnd Bergmann9177efd2009-11-06 08:09:09 +00003170 case SIOCSIFNAME:
3171 case SIOCGMIIPHY:
3172 case SIOCGMIIREG:
3173 case SIOCSMIIREG:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003174 return dev_ifsioc(net, sock, cmd, argp);
Arnd Bergmann9177efd2009-11-06 08:09:09 +00003175
Arnd Bergmann6b960182009-11-06 23:10:54 -08003176 case SIOCSARP:
3177 case SIOCGARP:
3178 case SIOCDARP:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003179 case SIOCATMARK:
Arnd Bergmann9177efd2009-11-06 08:09:09 +00003180 return sock_do_ioctl(net, sock, cmd, arg);
3181 }
3182
3183 /* Prevent warning from compat_sys_ioctl, these always
3184 * result in -EINVAL in the native case anyway. */
3185 switch (cmd) {
3186 case SIOCRTMSG:
3187 case SIOCGIFCOUNT:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003188 case SIOCSRARP:
3189 case SIOCGRARP:
3190 case SIOCDRARP:
Arnd Bergmann9177efd2009-11-06 08:09:09 +00003191 case SIOCSIFLINK:
3192 case SIOCGIFSLAVE:
3193 case SIOCSIFSLAVE:
3194 return -EINVAL;
Arnd Bergmann6b960182009-11-06 23:10:54 -08003195 }
3196
3197 return -ENOIOCTLCMD;
3198}
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003199
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003200static long compat_sock_ioctl(struct file *file, unsigned cmd,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07003201 unsigned long arg)
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003202{
3203 struct socket *sock = file->private_data;
3204 int ret = -ENOIOCTLCMD;
David S. Miller87de87d2008-06-03 09:14:03 -07003205 struct sock *sk;
3206 struct net *net;
3207
3208 sk = sock->sk;
3209 net = sock_net(sk);
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003210
3211 if (sock->ops->compat_ioctl)
3212 ret = sock->ops->compat_ioctl(sock, cmd, arg);
3213
David S. Miller87de87d2008-06-03 09:14:03 -07003214 if (ret == -ENOIOCTLCMD &&
3215 (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST))
3216 ret = compat_wext_handle_ioctl(net, cmd, arg);
3217
Arnd Bergmann6b960182009-11-06 23:10:54 -08003218 if (ret == -ENOIOCTLCMD)
3219 ret = compat_sock_ioctl_trans(file, sock, cmd, arg);
3220
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003221 return ret;
3222}
3223#endif
3224
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003225int kernel_bind(struct socket *sock, struct sockaddr *addr, int addrlen)
3226{
3227 return sock->ops->bind(sock, addr, addrlen);
3228}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003229EXPORT_SYMBOL(kernel_bind);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003230
3231int kernel_listen(struct socket *sock, int backlog)
3232{
3233 return sock->ops->listen(sock, backlog);
3234}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003235EXPORT_SYMBOL(kernel_listen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003236
3237int kernel_accept(struct socket *sock, struct socket **newsock, int flags)
3238{
3239 struct sock *sk = sock->sk;
3240 int err;
3241
3242 err = sock_create_lite(sk->sk_family, sk->sk_type, sk->sk_protocol,
3243 newsock);
3244 if (err < 0)
3245 goto done;
3246
3247 err = sock->ops->accept(sock, *newsock, flags);
3248 if (err < 0) {
3249 sock_release(*newsock);
Tony Battersbyfa8705b2007-10-10 21:09:04 -07003250 *newsock = NULL;
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003251 goto done;
3252 }
3253
3254 (*newsock)->ops = sock->ops;
Wei Yongjun1b085342008-12-18 19:35:10 -08003255 __module_get((*newsock)->ops->owner);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003256
3257done:
3258 return err;
3259}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003260EXPORT_SYMBOL(kernel_accept);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003261
3262int kernel_connect(struct socket *sock, struct sockaddr *addr, int addrlen,
YOSHIFUJI Hideaki4768fbc2007-02-09 23:25:31 +09003263 int flags)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003264{
3265 return sock->ops->connect(sock, addr, addrlen, flags);
3266}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003267EXPORT_SYMBOL(kernel_connect);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003268
3269int kernel_getsockname(struct socket *sock, struct sockaddr *addr,
3270 int *addrlen)
3271{
3272 return sock->ops->getname(sock, addr, addrlen, 0);
3273}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003274EXPORT_SYMBOL(kernel_getsockname);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003275
3276int kernel_getpeername(struct socket *sock, struct sockaddr *addr,
3277 int *addrlen)
3278{
3279 return sock->ops->getname(sock, addr, addrlen, 1);
3280}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003281EXPORT_SYMBOL(kernel_getpeername);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003282
3283int kernel_getsockopt(struct socket *sock, int level, int optname,
3284 char *optval, int *optlen)
3285{
3286 mm_segment_t oldfs = get_fs();
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003287 char __user *uoptval;
3288 int __user *uoptlen;
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003289 int err;
3290
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003291 uoptval = (char __user __force *) optval;
3292 uoptlen = (int __user __force *) optlen;
3293
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003294 set_fs(KERNEL_DS);
3295 if (level == SOL_SOCKET)
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003296 err = sock_getsockopt(sock, level, optname, uoptval, uoptlen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003297 else
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003298 err = sock->ops->getsockopt(sock, level, optname, uoptval,
3299 uoptlen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003300 set_fs(oldfs);
3301 return err;
3302}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003303EXPORT_SYMBOL(kernel_getsockopt);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003304
3305int kernel_setsockopt(struct socket *sock, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07003306 char *optval, unsigned int optlen)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003307{
3308 mm_segment_t oldfs = get_fs();
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003309 char __user *uoptval;
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003310 int err;
3311
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003312 uoptval = (char __user __force *) optval;
3313
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003314 set_fs(KERNEL_DS);
3315 if (level == SOL_SOCKET)
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003316 err = sock_setsockopt(sock, level, optname, uoptval, optlen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003317 else
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003318 err = sock->ops->setsockopt(sock, level, optname, uoptval,
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003319 optlen);
3320 set_fs(oldfs);
3321 return err;
3322}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003323EXPORT_SYMBOL(kernel_setsockopt);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003324
3325int kernel_sendpage(struct socket *sock, struct page *page, int offset,
3326 size_t size, int flags)
3327{
Herbert Xuf8451722010-05-24 00:12:34 -07003328 sock_update_classid(sock->sk);
3329
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003330 if (sock->ops->sendpage)
3331 return sock->ops->sendpage(sock, page, offset, size, flags);
3332
3333 return sock_no_sendpage(sock, page, offset, size, flags);
3334}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003335EXPORT_SYMBOL(kernel_sendpage);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003336
3337int kernel_sock_ioctl(struct socket *sock, int cmd, unsigned long arg)
3338{
3339 mm_segment_t oldfs = get_fs();
3340 int err;
3341
3342 set_fs(KERNEL_DS);
3343 err = sock->ops->ioctl(sock, cmd, arg);
3344 set_fs(oldfs);
3345
3346 return err;
3347}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003348EXPORT_SYMBOL(kernel_sock_ioctl);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003349
Trond Myklebust91cf45f2007-11-12 18:10:39 -08003350int kernel_sock_shutdown(struct socket *sock, enum sock_shutdown_cmd how)
3351{
3352 return sock->ops->shutdown(sock, how);
3353}
Trond Myklebust91cf45f2007-11-12 18:10:39 -08003354EXPORT_SYMBOL(kernel_sock_shutdown);