blob: 9eac5c3941340c60343233402886780117aa93d3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * NET An implementation of the SOCKET network access protocol.
3 *
4 * Version: @(#)socket.c 1.1.93 18/02/95
5 *
6 * Authors: Orest Zborowski, <obz@Kodak.COM>
Jesper Juhl02c30a82005-05-05 16:16:16 -07007 * Ross Biro
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
9 *
10 * Fixes:
11 * Anonymous : NOTSOCK/BADF cleanup. Error fix in
12 * shutdown()
13 * Alan Cox : verify_area() fixes
14 * Alan Cox : Removed DDI
15 * Jonathan Kamens : SOCK_DGRAM reconnect bug
16 * Alan Cox : Moved a load of checks to the very
17 * top level.
18 * Alan Cox : Move address structures to/from user
19 * mode above the protocol layers.
20 * Rob Janssen : Allow 0 length sends.
21 * Alan Cox : Asynchronous I/O support (cribbed from the
22 * tty drivers).
23 * Niibe Yutaka : Asynchronous I/O for writes (4.4BSD style)
24 * Jeff Uphoff : Made max number of sockets command-line
25 * configurable.
26 * Matti Aarnio : Made the number of sockets dynamic,
27 * to be allocated when needed, and mr.
28 * Uphoff's max is used as max to be
29 * allowed to allocate.
30 * Linus : Argh. removed all the socket allocation
31 * altogether: it's in the inode now.
32 * Alan Cox : Made sock_alloc()/sock_release() public
33 * for NetROM and future kernel nfsd type
34 * stuff.
35 * Alan Cox : sendmsg/recvmsg basics.
36 * Tom Dyas : Export net symbols.
37 * Marcin Dalecki : Fixed problems with CONFIG_NET="n".
38 * Alan Cox : Added thread locking to sys_* calls
39 * for sockets. May have errors at the
40 * moment.
41 * Kevin Buhr : Fixed the dumb errors in the above.
42 * Andi Kleen : Some small cleanups, optimizations,
43 * and fixed a copy_from_user() bug.
44 * Tigran Aivazian : sys_send(args) calls sys_sendto(args, NULL, 0)
Stephen Hemminger89bddce2006-09-01 00:19:31 -070045 * Tigran Aivazian : Made listen(2) backlog sanity checks
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 * protocol-independent
47 *
48 *
49 * This program is free software; you can redistribute it and/or
50 * modify it under the terms of the GNU General Public License
51 * as published by the Free Software Foundation; either version
52 * 2 of the License, or (at your option) any later version.
53 *
54 *
55 * This module is effectively the top level interface to the BSD socket
Stephen Hemminger89bddce2006-09-01 00:19:31 -070056 * paradigm.
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 *
58 * Based upon Swansea University Computer Society NET3.039
59 */
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#include <linux/socket.h>
63#include <linux/file.h>
64#include <linux/net.h>
65#include <linux/interrupt.h>
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -070066#include <linux/thread_info.h>
Stephen Hemminger55737fd2006-09-01 00:23:39 -070067#include <linux/rcupdate.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#include <linux/netdevice.h>
69#include <linux/proc_fs.h>
70#include <linux/seq_file.h>
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -080071#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#include <linux/wanrouter.h>
73#include <linux/if_bridge.h>
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -030074#include <linux/if_frad.h>
75#include <linux/if_vlan.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#include <linux/init.h>
77#include <linux/poll.h>
78#include <linux/cache.h>
79#include <linux/module.h>
80#include <linux/highmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#include <linux/mount.h>
82#include <linux/security.h>
83#include <linux/syscalls.h>
84#include <linux/compat.h>
85#include <linux/kmod.h>
David Woodhouse3ec3b2f2005-05-17 12:08:48 +010086#include <linux/audit.h>
Adrian Bunkd86b5e02006-01-21 00:46:55 +010087#include <linux/wireless.h>
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -070088#include <linux/nsproxy.h>
Nick Black1fd73172009-09-22 16:43:33 -070089#include <linux/magic.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090090#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92#include <asm/uaccess.h>
93#include <asm/unistd.h>
94
95#include <net/compat.h>
David S. Miller87de87d2008-06-03 09:14:03 -070096#include <net/wext.h>
Herbert Xuf8451722010-05-24 00:12:34 -070097#include <net/cls_cgroup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99#include <net/sock.h>
100#include <linux/netfilter.h>
101
Arnd Bergmann6b960182009-11-06 23:10:54 -0800102#include <linux/if_tun.h>
103#include <linux/ipv6_route.h>
104#include <linux/route.h>
Arnd Bergmann6b960182009-11-06 23:10:54 -0800105#include <linux/sockios.h>
106#include <linux/atalk.h>
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108static int sock_no_open(struct inode *irrelevant, struct file *dontcare);
Badari Pulavarty027445c2006-09-30 23:28:46 -0700109static ssize_t sock_aio_read(struct kiocb *iocb, const struct iovec *iov,
110 unsigned long nr_segs, loff_t pos);
111static ssize_t sock_aio_write(struct kiocb *iocb, const struct iovec *iov,
112 unsigned long nr_segs, loff_t pos);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700113static int sock_mmap(struct file *file, struct vm_area_struct *vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
115static int sock_close(struct inode *inode, struct file *file);
116static unsigned int sock_poll(struct file *file,
117 struct poll_table_struct *wait);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700118static long sock_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800119#ifdef CONFIG_COMPAT
120static long compat_sock_ioctl(struct file *file,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700121 unsigned int cmd, unsigned long arg);
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800122#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123static int sock_fasync(int fd, struct file *filp, int on);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124static ssize_t sock_sendpage(struct file *file, struct page *page,
125 int offset, size_t size, loff_t *ppos, int more);
Jens Axboe9c55e012007-11-06 23:30:13 -0800126static ssize_t sock_splice_read(struct file *file, loff_t *ppos,
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700127 struct pipe_inode_info *pipe, size_t len,
Jens Axboe9c55e012007-11-06 23:30:13 -0800128 unsigned int flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130/*
131 * Socket files have a set of 'special' operations as well as the generic file ones. These don't appear
132 * in the operation structures but are done directly via the socketcall() multiplexor.
133 */
134
Arjan van de Venda7071d2007-02-12 00:55:36 -0800135static const struct file_operations socket_file_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 .owner = THIS_MODULE,
137 .llseek = no_llseek,
138 .aio_read = sock_aio_read,
139 .aio_write = sock_aio_write,
140 .poll = sock_poll,
141 .unlocked_ioctl = sock_ioctl,
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800142#ifdef CONFIG_COMPAT
143 .compat_ioctl = compat_sock_ioctl,
144#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 .mmap = sock_mmap,
146 .open = sock_no_open, /* special open code to disallow open via /proc */
147 .release = sock_close,
148 .fasync = sock_fasync,
Jens Axboe5274f052006-03-30 15:15:30 +0200149 .sendpage = sock_sendpage,
150 .splice_write = generic_splice_sendpage,
Jens Axboe9c55e012007-11-06 23:30:13 -0800151 .splice_read = sock_splice_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152};
153
154/*
155 * The protocol list. Each protocol is registered in here.
156 */
157
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158static DEFINE_SPINLOCK(net_family_lock);
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -0700159static const struct net_proto_family *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
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -0700212int move_addr_to_user(struct sockaddr *kaddr, int klen, void __user *uaddr,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700213 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;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700243
Christoph Lametere94b1762006-12-06 20:33:17 -0800244 ei = kmem_cache_alloc(sock_inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 if (!ei)
246 return NULL;
Eric Dumazet43815482010-04-29 11:01:49 +0000247 ei->socket.wq = kmalloc(sizeof(struct socket_wq), GFP_KERNEL);
248 if (!ei->socket.wq) {
249 kmem_cache_free(sock_inode_cachep, ei);
250 return NULL;
251 }
252 init_waitqueue_head(&ei->socket.wq->wait);
253 ei->socket.wq->fasync_list = NULL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 ei->socket.state = SS_UNCONNECTED;
256 ei->socket.flags = 0;
257 ei->socket.ops = NULL;
258 ei->socket.sk = NULL;
259 ei->socket.file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
261 return &ei->vfs_inode;
262}
263
Eric Dumazet43815482010-04-29 11:01:49 +0000264
265static void wq_free_rcu(struct rcu_head *head)
266{
267 struct socket_wq *wq = container_of(head, struct socket_wq, rcu);
268
269 kfree(wq);
270}
271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272static void sock_destroy_inode(struct inode *inode)
273{
Eric Dumazet43815482010-04-29 11:01:49 +0000274 struct socket_alloc *ei;
275
276 ei = container_of(inode, struct socket_alloc, vfs_inode);
277 call_rcu(&ei->socket.wq->rcu, wq_free_rcu);
278 kmem_cache_free(sock_inode_cachep, ei);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279}
280
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700281static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282{
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700283 struct socket_alloc *ei = (struct socket_alloc *)foo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
Christoph Lametera35afb82007-05-16 22:10:57 -0700285 inode_init_once(&ei->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286}
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288static int init_inodecache(void)
289{
290 sock_inode_cachep = kmem_cache_create("sock_inode_cache",
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700291 sizeof(struct socket_alloc),
292 0,
293 (SLAB_HWCACHE_ALIGN |
294 SLAB_RECLAIM_ACCOUNT |
295 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +0900296 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 if (sock_inode_cachep == NULL)
298 return -ENOMEM;
299 return 0;
300}
301
Alexey Dobriyanb87221d2009-09-21 17:01:09 -0700302static const struct super_operations sockfs_ops = {
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700303 .alloc_inode = sock_alloc_inode,
304 .destroy_inode = sock_destroy_inode,
305 .statfs = simple_statfs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306};
307
David Howells454e2392006-06-23 02:02:57 -0700308static int sockfs_get_sb(struct file_system_type *fs_type,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700309 int flags, const char *dev_name, void *data,
310 struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311{
David Howells454e2392006-06-23 02:02:57 -0700312 return get_sb_pseudo(fs_type, "socket:", &sockfs_ops, SOCKFS_MAGIC,
313 mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314}
315
Eric Dumazetba899662005-08-26 12:05:31 -0700316static struct vfsmount *sock_mnt __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
318static struct file_system_type sock_fs_type = {
319 .name = "sockfs",
320 .get_sb = sockfs_get_sb,
321 .kill_sb = kill_anon_super,
322};
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700323
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700324/*
325 * sockfs_dname() is called from d_path().
326 */
327static char *sockfs_dname(struct dentry *dentry, char *buffer, int buflen)
328{
329 return dynamic_dname(dentry, buffer, buflen, "socket:[%lu]",
330 dentry->d_inode->i_ino);
331}
332
Al Viro3ba13d12009-02-20 06:02:22 +0000333static const struct dentry_operations sockfs_dentry_operations = {
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700334 .d_dname = sockfs_dname,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335};
336
337/*
338 * Obtains the first available file descriptor and sets it up for use.
339 *
David S. Miller39d8c1b2006-03-20 17:13:49 -0800340 * These functions create file structures and maps them to fd space
341 * of the current process. On success it returns file descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 * and file struct implicitly stored in sock->file.
343 * Note that another thread may close file descriptor before we return
344 * from this function. We use the fact that now we do not refer
345 * to socket after mapping. If one day we will need it, this
346 * function will increment ref. count on file by 1.
347 *
348 * In any case returned fd MAY BE not valid!
349 * This race condition is unavoidable
350 * with shared fd spaces, we cannot solve it inside kernel,
351 * but we take care of internal coherence yet.
352 */
353
Al Viro7cbe66b2009-08-05 19:59:08 +0400354static int sock_alloc_file(struct socket *sock, struct file **f, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355{
Al Viro7cbe66b2009-08-05 19:59:08 +0400356 struct qstr name = { .name = "" };
Al Viro2c48b9c2009-08-09 00:52:35 +0400357 struct path path;
Al Viro7cbe66b2009-08-05 19:59:08 +0400358 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 int fd;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800360
Ulrich Dreppera677a032008-07-23 21:29:17 -0700361 fd = get_unused_fd_flags(flags);
Al Viro7cbe66b2009-08-05 19:59:08 +0400362 if (unlikely(fd < 0))
363 return fd;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800364
Al Viro2c48b9c2009-08-09 00:52:35 +0400365 path.dentry = d_alloc(sock_mnt->mnt_sb->s_root, &name);
366 if (unlikely(!path.dentry)) {
Al Viro7cbe66b2009-08-05 19:59:08 +0400367 put_unused_fd(fd);
David S. Miller39d8c1b2006-03-20 17:13:49 -0800368 return -ENOMEM;
Al Viro7cbe66b2009-08-05 19:59:08 +0400369 }
Al Viro2c48b9c2009-08-09 00:52:35 +0400370 path.mnt = mntget(sock_mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Al Viro2c48b9c2009-08-09 00:52:35 +0400372 path.dentry->d_op = &sockfs_dentry_operations;
Al Viro2c48b9c2009-08-09 00:52:35 +0400373 d_instantiate(path.dentry, SOCK_INODE(sock));
Al Virocc3808f2009-08-06 09:43:59 +0400374 SOCK_INODE(sock)->i_fop = &socket_file_ops;
375
Al Viro2c48b9c2009-08-09 00:52:35 +0400376 file = alloc_file(&path, FMODE_READ | FMODE_WRITE,
Al Virocc3808f2009-08-06 09:43:59 +0400377 &socket_file_ops);
378 if (unlikely(!file)) {
379 /* drop dentry, keep inode */
380 atomic_inc(&path.dentry->d_inode->i_count);
Al Viro2c48b9c2009-08-09 00:52:35 +0400381 path_put(&path);
Al Virocc3808f2009-08-06 09:43:59 +0400382 put_unused_fd(fd);
383 return -ENFILE;
384 }
David S. Miller39d8c1b2006-03-20 17:13:49 -0800385
386 sock->file = file;
Ulrich Drepper77d27202008-07-23 21:29:35 -0700387 file->f_flags = O_RDWR | (flags & O_NONBLOCK);
David S. Miller39d8c1b2006-03-20 17:13:49 -0800388 file->f_pos = 0;
389 file->private_data = sock;
390
Al Viro7cbe66b2009-08-05 19:59:08 +0400391 *f = file;
392 return fd;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800393}
394
Ulrich Dreppera677a032008-07-23 21:29:17 -0700395int sock_map_fd(struct socket *sock, int flags)
David S. Miller39d8c1b2006-03-20 17:13:49 -0800396{
397 struct file *newfile;
Al Viro7cbe66b2009-08-05 19:59:08 +0400398 int fd = sock_alloc_file(sock, &newfile, flags);
David S. Miller39d8c1b2006-03-20 17:13:49 -0800399
Al Viro7cbe66b2009-08-05 19:59:08 +0400400 if (likely(fd >= 0))
David S. Miller39d8c1b2006-03-20 17:13:49 -0800401 fd_install(fd, newfile);
Al Viro7cbe66b2009-08-05 19:59:08 +0400402
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 return fd;
404}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700405EXPORT_SYMBOL(sock_map_fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800407static struct socket *sock_from_file(struct file *file, int *err)
408{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800409 if (file->f_op == &socket_file_ops)
410 return file->private_data; /* set in sock_map_fd */
411
Eric Dumazet23bb80d2007-02-08 14:59:57 -0800412 *err = -ENOTSOCK;
413 return NULL;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800414}
415
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416/**
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700417 * sockfd_lookup - Go from a file number to its socket slot
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 * @fd: file handle
419 * @err: pointer to an error code return
420 *
421 * The file handle passed in is locked and the socket it is bound
422 * too is returned. If an error occurs the err pointer is overwritten
423 * with a negative errno code and NULL is returned. The function checks
424 * for both invalid handles and passing a handle which is not a socket.
425 *
426 * On a success the socket object pointer is returned.
427 */
428
429struct socket *sockfd_lookup(int fd, int *err)
430{
431 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 struct socket *sock;
433
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700434 file = fget(fd);
435 if (!file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 *err = -EBADF;
437 return NULL;
438 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700439
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800440 sock = sock_from_file(file, err);
441 if (!sock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 fput(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 return sock;
444}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700445EXPORT_SYMBOL(sockfd_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800447static struct socket *sockfd_lookup_light(int fd, int *err, int *fput_needed)
448{
449 struct file *file;
450 struct socket *sock;
451
Hua Zhong36725582006-04-19 15:25:02 -0700452 *err = -EBADF;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800453 file = fget_light(fd, fput_needed);
454 if (file) {
455 sock = sock_from_file(file, err);
456 if (sock)
457 return sock;
458 fput_light(file, *fput_needed);
459 }
460 return NULL;
461}
462
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463/**
464 * sock_alloc - allocate a socket
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700465 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 * Allocate a new inode and socket object. The two are bound together
467 * and initialised. The socket is then returned. If we are out of inodes
468 * NULL is returned.
469 */
470
471static struct socket *sock_alloc(void)
472{
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700473 struct inode *inode;
474 struct socket *sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
476 inode = new_inode(sock_mnt->mnt_sb);
477 if (!inode)
478 return NULL;
479
480 sock = SOCKET_I(inode);
481
Eric Dumazet29a020d2009-09-15 02:39:20 -0700482 kmemcheck_annotate_bitfield(sock, type);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700483 inode->i_mode = S_IFSOCK | S_IRWXUGO;
David Howells8192b0c2008-11-14 10:39:10 +1100484 inode->i_uid = current_fsuid();
485 inode->i_gid = current_fsgid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Eric Dumazet4e694892009-04-04 16:41:09 -0700487 percpu_add(sockets_in_use, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 return sock;
489}
490
491/*
492 * In theory you can't get an open on this inode, but /proc provides
493 * a back door. Remember to keep it shut otherwise you'll let the
494 * creepy crawlies in.
495 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700496
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497static int sock_no_open(struct inode *irrelevant, struct file *dontcare)
498{
499 return -ENXIO;
500}
501
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800502const struct file_operations bad_sock_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 .owner = THIS_MODULE,
504 .open = sock_no_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200505 .llseek = noop_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506};
507
508/**
509 * sock_release - close a socket
510 * @sock: socket to close
511 *
512 * The socket is released from the protocol stack if it has a release
513 * callback, and the inode is then released if the socket is bound to
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700514 * an inode not a file.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700516
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517void sock_release(struct socket *sock)
518{
519 if (sock->ops) {
520 struct module *owner = sock->ops->owner;
521
522 sock->ops->release(sock);
523 sock->ops = NULL;
524 module_put(owner);
525 }
526
Eric Dumazet43815482010-04-29 11:01:49 +0000527 if (sock->wq->fasync_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 printk(KERN_ERR "sock_release: fasync list not empty!\n");
529
Eric Dumazet4e694892009-04-04 16:41:09 -0700530 percpu_sub(sockets_in_use, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 if (!sock->file) {
532 iput(SOCK_INODE(sock));
533 return;
534 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700535 sock->file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700537EXPORT_SYMBOL(sock_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Patrick Ohly20d49472009-02-12 05:03:38 +0000539int sock_tx_timestamp(struct msghdr *msg, struct sock *sk,
540 union skb_shared_tx *shtx)
541{
542 shtx->flags = 0;
543 if (sock_flag(sk, SOCK_TIMESTAMPING_TX_HARDWARE))
544 shtx->hardware = 1;
545 if (sock_flag(sk, SOCK_TIMESTAMPING_TX_SOFTWARE))
546 shtx->software = 1;
547 return 0;
548}
549EXPORT_SYMBOL(sock_tx_timestamp);
550
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700551static inline int __sock_sendmsg(struct kiocb *iocb, struct socket *sock,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 struct msghdr *msg, size_t size)
553{
554 struct sock_iocb *si = kiocb_to_siocb(iocb);
555 int err;
556
Herbert Xuf8451722010-05-24 00:12:34 -0700557 sock_update_classid(sock->sk);
558
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 si->sock = sock;
560 si->scm = NULL;
561 si->msg = msg;
562 si->size = size;
563
564 err = security_socket_sendmsg(sock, msg, size);
565 if (err)
566 return err;
567
568 return sock->ops->sendmsg(iocb, sock, msg, size);
569}
570
571int sock_sendmsg(struct socket *sock, struct msghdr *msg, size_t size)
572{
573 struct kiocb iocb;
574 struct sock_iocb siocb;
575 int ret;
576
577 init_sync_kiocb(&iocb, NULL);
578 iocb.private = &siocb;
579 ret = __sock_sendmsg(&iocb, sock, msg, size);
580 if (-EIOCBQUEUED == ret)
581 ret = wait_on_sync_kiocb(&iocb);
582 return ret;
583}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700584EXPORT_SYMBOL(sock_sendmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
586int kernel_sendmsg(struct socket *sock, struct msghdr *msg,
587 struct kvec *vec, size_t num, size_t size)
588{
589 mm_segment_t oldfs = get_fs();
590 int result;
591
592 set_fs(KERNEL_DS);
593 /*
594 * the following is safe, since for compiler definitions of kvec and
595 * iovec are identical, yielding the same in-core layout and alignment
596 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700597 msg->msg_iov = (struct iovec *)vec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 msg->msg_iovlen = num;
599 result = sock_sendmsg(sock, msg, size);
600 set_fs(oldfs);
601 return result;
602}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700603EXPORT_SYMBOL(kernel_sendmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
Patrick Ohly20d49472009-02-12 05:03:38 +0000605static int ktime2ts(ktime_t kt, struct timespec *ts)
606{
607 if (kt.tv64) {
608 *ts = ktime_to_timespec(kt);
609 return 1;
610 } else {
611 return 0;
612 }
613}
614
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700615/*
616 * called from sock_recv_timestamp() if sock_flag(sk, SOCK_RCVTSTAMP)
617 */
618void __sock_recv_timestamp(struct msghdr *msg, struct sock *sk,
619 struct sk_buff *skb)
620{
Patrick Ohly20d49472009-02-12 05:03:38 +0000621 int need_software_tstamp = sock_flag(sk, SOCK_RCVTSTAMP);
622 struct timespec ts[3];
623 int empty = 1;
624 struct skb_shared_hwtstamps *shhwtstamps =
625 skb_hwtstamps(skb);
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700626
Patrick Ohly20d49472009-02-12 05:03:38 +0000627 /* Race occurred between timestamp enabling and packet
628 receiving. Fill in the current time for now. */
629 if (need_software_tstamp && skb->tstamp.tv64 == 0)
630 __net_timestamp(skb);
631
632 if (need_software_tstamp) {
633 if (!sock_flag(sk, SOCK_RCVTSTAMPNS)) {
634 struct timeval tv;
635 skb_get_timestamp(skb, &tv);
636 put_cmsg(msg, SOL_SOCKET, SCM_TIMESTAMP,
637 sizeof(tv), &tv);
638 } else {
Hagen Paul Pfeifer842509b2010-04-06 05:39:52 +0000639 skb_get_timestampns(skb, &ts[0]);
Patrick Ohly20d49472009-02-12 05:03:38 +0000640 put_cmsg(msg, SOL_SOCKET, SCM_TIMESTAMPNS,
Hagen Paul Pfeifer842509b2010-04-06 05:39:52 +0000641 sizeof(ts[0]), &ts[0]);
Patrick Ohly20d49472009-02-12 05:03:38 +0000642 }
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700643 }
Patrick Ohly20d49472009-02-12 05:03:38 +0000644
645
646 memset(ts, 0, sizeof(ts));
647 if (skb->tstamp.tv64 &&
648 sock_flag(sk, SOCK_TIMESTAMPING_SOFTWARE)) {
649 skb_get_timestampns(skb, ts + 0);
650 empty = 0;
651 }
652 if (shhwtstamps) {
653 if (sock_flag(sk, SOCK_TIMESTAMPING_SYS_HARDWARE) &&
654 ktime2ts(shhwtstamps->syststamp, ts + 1))
655 empty = 0;
656 if (sock_flag(sk, SOCK_TIMESTAMPING_RAW_HARDWARE) &&
657 ktime2ts(shhwtstamps->hwtstamp, ts + 2))
658 empty = 0;
659 }
660 if (!empty)
661 put_cmsg(msg, SOL_SOCKET,
662 SCM_TIMESTAMPING, sizeof(ts), &ts);
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700663}
Arnaldo Carvalho de Melo7c81fd82007-03-10 00:39:35 -0300664EXPORT_SYMBOL_GPL(__sock_recv_timestamp);
665
Neil Horman3b885782009-10-12 13:26:31 -0700666inline void sock_recv_drops(struct msghdr *msg, struct sock *sk, struct sk_buff *skb)
667{
668 if (sock_flag(sk, SOCK_RXQ_OVFL) && skb && skb->dropcount)
669 put_cmsg(msg, SOL_SOCKET, SO_RXQ_OVFL,
670 sizeof(__u32), &skb->dropcount);
671}
672
Eric Dumazet767dd032010-04-28 19:14:43 +0000673void __sock_recv_ts_and_drops(struct msghdr *msg, struct sock *sk,
Neil Horman3b885782009-10-12 13:26:31 -0700674 struct sk_buff *skb)
675{
676 sock_recv_timestamp(msg, sk, skb);
677 sock_recv_drops(msg, sk, skb);
678}
Eric Dumazet767dd032010-04-28 19:14:43 +0000679EXPORT_SYMBOL_GPL(__sock_recv_ts_and_drops);
Neil Horman3b885782009-10-12 13:26:31 -0700680
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -0700681static inline int __sock_recvmsg_nosec(struct kiocb *iocb, struct socket *sock,
682 struct msghdr *msg, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 struct sock_iocb *si = kiocb_to_siocb(iocb);
685
Herbert Xuf8451722010-05-24 00:12:34 -0700686 sock_update_classid(sock->sk);
687
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 si->sock = sock;
689 si->scm = NULL;
690 si->msg = msg;
691 si->size = size;
692 si->flags = flags;
693
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 return sock->ops->recvmsg(iocb, sock, msg, size, flags);
695}
696
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -0700697static inline int __sock_recvmsg(struct kiocb *iocb, struct socket *sock,
698 struct msghdr *msg, size_t size, int flags)
699{
700 int err = security_socket_recvmsg(sock, msg, size, flags);
701
702 return err ?: __sock_recvmsg_nosec(iocb, sock, msg, size, flags);
703}
704
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700705int sock_recvmsg(struct socket *sock, struct msghdr *msg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 size_t size, int flags)
707{
708 struct kiocb iocb;
709 struct sock_iocb siocb;
710 int ret;
711
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700712 init_sync_kiocb(&iocb, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 iocb.private = &siocb;
714 ret = __sock_recvmsg(&iocb, sock, msg, size, flags);
715 if (-EIOCBQUEUED == ret)
716 ret = wait_on_sync_kiocb(&iocb);
717 return ret;
718}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700719EXPORT_SYMBOL(sock_recvmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -0700721static int sock_recvmsg_nosec(struct socket *sock, struct msghdr *msg,
722 size_t size, int flags)
723{
724 struct kiocb iocb;
725 struct sock_iocb siocb;
726 int ret;
727
728 init_sync_kiocb(&iocb, NULL);
729 iocb.private = &siocb;
730 ret = __sock_recvmsg_nosec(&iocb, sock, msg, size, flags);
731 if (-EIOCBQUEUED == ret)
732 ret = wait_on_sync_kiocb(&iocb);
733 return ret;
734}
735
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700736int kernel_recvmsg(struct socket *sock, struct msghdr *msg,
737 struct kvec *vec, size_t num, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738{
739 mm_segment_t oldfs = get_fs();
740 int result;
741
742 set_fs(KERNEL_DS);
743 /*
744 * the following is safe, since for compiler definitions of kvec and
745 * iovec are identical, yielding the same in-core layout and alignment
746 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700747 msg->msg_iov = (struct iovec *)vec, msg->msg_iovlen = num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 result = sock_recvmsg(sock, msg, size, flags);
749 set_fs(oldfs);
750 return result;
751}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700752EXPORT_SYMBOL(kernel_recvmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
754static void sock_aio_dtor(struct kiocb *iocb)
755{
756 kfree(iocb->private);
757}
758
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -0300759static ssize_t sock_sendpage(struct file *file, struct page *page,
760 int offset, size_t size, loff_t *ppos, int more)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761{
762 struct socket *sock;
763 int flags;
764
Eric Dumazetb69aee02005-09-06 14:42:45 -0700765 sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
767 flags = !(file->f_flags & O_NONBLOCK) ? 0 : MSG_DONTWAIT;
768 if (more)
769 flags |= MSG_MORE;
770
Linus Torvaldse6949582009-08-13 08:28:36 -0700771 return kernel_sendpage(sock, page, offset, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772}
773
Jens Axboe9c55e012007-11-06 23:30:13 -0800774static ssize_t sock_splice_read(struct file *file, loff_t *ppos,
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700775 struct pipe_inode_info *pipe, size_t len,
Jens Axboe9c55e012007-11-06 23:30:13 -0800776 unsigned int flags)
777{
778 struct socket *sock = file->private_data;
779
Rémi Denis-Courmont997b37d2008-02-15 02:35:45 -0800780 if (unlikely(!sock->ops->splice_read))
781 return -EINVAL;
782
Herbert Xuf8451722010-05-24 00:12:34 -0700783 sock_update_classid(sock->sk);
784
Jens Axboe9c55e012007-11-06 23:30:13 -0800785 return sock->ops->splice_read(sock, ppos, pipe, len, flags);
786}
787
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800788static struct sock_iocb *alloc_sock_iocb(struct kiocb *iocb,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700789 struct sock_iocb *siocb)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800790{
791 if (!is_sync_kiocb(iocb)) {
792 siocb = kmalloc(sizeof(*siocb), GFP_KERNEL);
793 if (!siocb)
794 return NULL;
795 iocb->ki_dtor = sock_aio_dtor;
796 }
797
798 siocb->kiocb = iocb;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800799 iocb->private = siocb;
800 return siocb;
801}
802
803static ssize_t do_sock_read(struct msghdr *msg, struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -0700804 struct file *file, const struct iovec *iov,
805 unsigned long nr_segs)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800806{
807 struct socket *sock = file->private_data;
808 size_t size = 0;
809 int i;
810
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700811 for (i = 0; i < nr_segs; i++)
812 size += iov[i].iov_len;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800813
814 msg->msg_name = NULL;
815 msg->msg_namelen = 0;
816 msg->msg_control = NULL;
817 msg->msg_controllen = 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700818 msg->msg_iov = (struct iovec *)iov;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800819 msg->msg_iovlen = nr_segs;
820 msg->msg_flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
821
822 return __sock_recvmsg(iocb, sock, msg, size, msg->msg_flags);
823}
824
Badari Pulavarty027445c2006-09-30 23:28:46 -0700825static ssize_t sock_aio_read(struct kiocb *iocb, const struct iovec *iov,
826 unsigned long nr_segs, loff_t pos)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800827{
828 struct sock_iocb siocb, *x;
829
830 if (pos != 0)
831 return -ESPIPE;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700832
833 if (iocb->ki_left == 0) /* Match SYS5 behaviour */
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800834 return 0;
835
Badari Pulavarty027445c2006-09-30 23:28:46 -0700836
837 x = alloc_sock_iocb(iocb, &siocb);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800838 if (!x)
839 return -ENOMEM;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700840 return do_sock_read(&x->async_msg, iocb, iocb->ki_filp, iov, nr_segs);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800841}
842
843static ssize_t do_sock_write(struct msghdr *msg, struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -0700844 struct file *file, const struct iovec *iov,
845 unsigned long nr_segs)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800846{
847 struct socket *sock = file->private_data;
848 size_t size = 0;
849 int i;
850
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700851 for (i = 0; i < nr_segs; i++)
852 size += iov[i].iov_len;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800853
854 msg->msg_name = NULL;
855 msg->msg_namelen = 0;
856 msg->msg_control = NULL;
857 msg->msg_controllen = 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700858 msg->msg_iov = (struct iovec *)iov;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800859 msg->msg_iovlen = nr_segs;
860 msg->msg_flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
861 if (sock->type == SOCK_SEQPACKET)
862 msg->msg_flags |= MSG_EOR;
863
864 return __sock_sendmsg(iocb, sock, msg, size);
865}
866
Badari Pulavarty027445c2006-09-30 23:28:46 -0700867static ssize_t sock_aio_write(struct kiocb *iocb, const struct iovec *iov,
868 unsigned long nr_segs, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869{
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800870 struct sock_iocb siocb, *x;
871
872 if (pos != 0)
873 return -ESPIPE;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700874
Badari Pulavarty027445c2006-09-30 23:28:46 -0700875 x = alloc_sock_iocb(iocb, &siocb);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800876 if (!x)
877 return -ENOMEM;
878
Badari Pulavarty027445c2006-09-30 23:28:46 -0700879 return do_sock_write(&x->async_msg, iocb, iocb->ki_filp, iov, nr_segs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880}
881
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882/*
883 * Atomic setting of ioctl hooks to avoid race
884 * with module unload.
885 */
886
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800887static DEFINE_MUTEX(br_ioctl_mutex);
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700888static int (*br_ioctl_hook) (struct net *, unsigned int cmd, void __user *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
Eric W. Biederman881d9662007-09-17 11:56:21 -0700890void brioctl_set(int (*hook) (struct net *, unsigned int, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800892 mutex_lock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 br_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800894 mutex_unlock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895}
896EXPORT_SYMBOL(brioctl_set);
897
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800898static DEFINE_MUTEX(vlan_ioctl_mutex);
Eric W. Biederman881d9662007-09-17 11:56:21 -0700899static int (*vlan_ioctl_hook) (struct net *, void __user *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900
Eric W. Biederman881d9662007-09-17 11:56:21 -0700901void vlan_ioctl_set(int (*hook) (struct net *, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800903 mutex_lock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 vlan_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800905 mutex_unlock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906}
907EXPORT_SYMBOL(vlan_ioctl_set);
908
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800909static DEFINE_MUTEX(dlci_ioctl_mutex);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700910static int (*dlci_ioctl_hook) (unsigned int, void __user *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700912void dlci_ioctl_set(int (*hook) (unsigned int, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800914 mutex_lock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 dlci_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800916 mutex_unlock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917}
918EXPORT_SYMBOL(dlci_ioctl_set);
919
Arnd Bergmann6b960182009-11-06 23:10:54 -0800920static long sock_do_ioctl(struct net *net, struct socket *sock,
921 unsigned int cmd, unsigned long arg)
922{
923 int err;
924 void __user *argp = (void __user *)arg;
925
926 err = sock->ops->ioctl(sock, cmd, arg);
927
928 /*
929 * If this ioctl is unknown try to hand it down
930 * to the NIC driver.
931 */
932 if (err == -ENOIOCTLCMD)
933 err = dev_ioctl(net, cmd, argp);
934
935 return err;
936}
937
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938/*
939 * With an ioctl, arg may well be a user mode pointer, but we don't know
940 * what to do with it - that's up to the protocol still.
941 */
942
943static long sock_ioctl(struct file *file, unsigned cmd, unsigned long arg)
944{
945 struct socket *sock;
Eric W. Biederman881d9662007-09-17 11:56:21 -0700946 struct sock *sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 void __user *argp = (void __user *)arg;
948 int pid, err;
Eric W. Biederman881d9662007-09-17 11:56:21 -0700949 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
Eric Dumazetb69aee02005-09-06 14:42:45 -0700951 sock = file->private_data;
Eric W. Biederman881d9662007-09-17 11:56:21 -0700952 sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900953 net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 if (cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15)) {
Eric W. Biederman881d9662007-09-17 11:56:21 -0700955 err = dev_ioctl(net, cmd, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 } else
Johannes Berg3d23e342009-09-29 23:27:28 +0200957#ifdef CONFIG_WEXT_CORE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 if (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST) {
Eric W. Biederman881d9662007-09-17 11:56:21 -0700959 err = dev_ioctl(net, cmd, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 } else
Johannes Berg3d23e342009-09-29 23:27:28 +0200961#endif
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700962 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 case FIOSETOWN:
964 case SIOCSPGRP:
965 err = -EFAULT;
966 if (get_user(pid, (int __user *)argp))
967 break;
968 err = f_setown(sock->file, pid, 1);
969 break;
970 case FIOGETOWN:
971 case SIOCGPGRP:
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700972 err = put_user(f_getown(sock->file),
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700973 (int __user *)argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 break;
975 case SIOCGIFBR:
976 case SIOCSIFBR:
977 case SIOCBRADDBR:
978 case SIOCBRDELBR:
979 err = -ENOPKG;
980 if (!br_ioctl_hook)
981 request_module("bridge");
982
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800983 mutex_lock(&br_ioctl_mutex);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700984 if (br_ioctl_hook)
Eric W. Biederman881d9662007-09-17 11:56:21 -0700985 err = br_ioctl_hook(net, cmd, argp);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800986 mutex_unlock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 break;
988 case SIOCGIFVLAN:
989 case SIOCSIFVLAN:
990 err = -ENOPKG;
991 if (!vlan_ioctl_hook)
992 request_module("8021q");
993
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800994 mutex_lock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 if (vlan_ioctl_hook)
Eric W. Biederman881d9662007-09-17 11:56:21 -0700996 err = vlan_ioctl_hook(net, argp);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800997 mutex_unlock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 case SIOCADDDLCI:
1000 case SIOCDELDLCI:
1001 err = -ENOPKG;
1002 if (!dlci_ioctl_hook)
1003 request_module("dlci");
1004
Pavel Emelyanov7512cbf2008-03-21 15:58:52 -07001005 mutex_lock(&dlci_ioctl_mutex);
1006 if (dlci_ioctl_hook)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 err = dlci_ioctl_hook(cmd, argp);
Pavel Emelyanov7512cbf2008-03-21 15:58:52 -07001008 mutex_unlock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 break;
1010 default:
Arnd Bergmann6b960182009-11-06 23:10:54 -08001011 err = sock_do_ioctl(net, sock, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001013 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 return err;
1015}
1016
1017int sock_create_lite(int family, int type, int protocol, struct socket **res)
1018{
1019 int err;
1020 struct socket *sock = NULL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001021
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 err = security_socket_create(family, type, protocol, 1);
1023 if (err)
1024 goto out;
1025
1026 sock = sock_alloc();
1027 if (!sock) {
1028 err = -ENOMEM;
1029 goto out;
1030 }
1031
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 sock->type = type;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001033 err = security_socket_post_create(sock, family, type, protocol, 1);
1034 if (err)
1035 goto out_release;
1036
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037out:
1038 *res = sock;
1039 return err;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001040out_release:
1041 sock_release(sock);
1042 sock = NULL;
1043 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001045EXPORT_SYMBOL(sock_create_lite);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046
1047/* No kernel lock held - perfect */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001048static unsigned int sock_poll(struct file *file, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049{
1050 struct socket *sock;
1051
1052 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001053 * We can't return errors to poll, so it's either yes or no.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 */
Eric Dumazetb69aee02005-09-06 14:42:45 -07001055 sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 return sock->ops->poll(file, sock, wait);
1057}
1058
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001059static int sock_mmap(struct file *file, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060{
Eric Dumazetb69aee02005-09-06 14:42:45 -07001061 struct socket *sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062
1063 return sock->ops->mmap(file, sock, vma);
1064}
1065
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001066static int sock_close(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067{
1068 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001069 * It was possible the inode is NULL we were
1070 * closing an unfinished socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 */
1072
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001073 if (!inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 printk(KERN_DEBUG "sock_close: NULL inode\n");
1075 return 0;
1076 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 sock_release(SOCKET_I(inode));
1078 return 0;
1079}
1080
1081/*
1082 * Update the socket async list
1083 *
1084 * Fasync_list locking strategy.
1085 *
1086 * 1. fasync_list is modified only under process context socket lock
1087 * i.e. under semaphore.
1088 * 2. fasync_list is used under read_lock(&sk->sk_callback_lock)
Eric Dumazet989a2972010-04-14 09:55:35 +00001089 * or under socket lock
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 */
1091
1092static int sock_fasync(int fd, struct file *filp, int on)
1093{
Eric Dumazet989a2972010-04-14 09:55:35 +00001094 struct socket *sock = filp->private_data;
1095 struct sock *sk = sock->sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
Eric Dumazet989a2972010-04-14 09:55:35 +00001097 if (sk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
1100 lock_sock(sk);
1101
Eric Dumazet43815482010-04-29 11:01:49 +00001102 fasync_helper(fd, filp, on, &sock->wq->fasync_list);
Eric Dumazet989a2972010-04-14 09:55:35 +00001103
Eric Dumazet43815482010-04-29 11:01:49 +00001104 if (!sock->wq->fasync_list)
Eric Dumazet989a2972010-04-14 09:55:35 +00001105 sock_reset_flag(sk, SOCK_FASYNC);
Jonathan Corbet76398422009-02-01 14:26:59 -07001106 else
Eric Dumazetbcdce712009-10-06 17:28:29 -07001107 sock_set_flag(sk, SOCK_FASYNC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
Eric Dumazet989a2972010-04-14 09:55:35 +00001109 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 return 0;
1111}
1112
Eric Dumazet43815482010-04-29 11:01:49 +00001113/* This function may be called only under socket lock or callback_lock or rcu_lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
1115int sock_wake_async(struct socket *sock, int how, int band)
1116{
Eric Dumazet43815482010-04-29 11:01:49 +00001117 struct socket_wq *wq;
1118
1119 if (!sock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 return -1;
Eric Dumazet43815482010-04-29 11:01:49 +00001121 rcu_read_lock();
1122 wq = rcu_dereference(sock->wq);
1123 if (!wq || !wq->fasync_list) {
1124 rcu_read_unlock();
1125 return -1;
1126 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001127 switch (how) {
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001128 case SOCK_WAKE_WAITD:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 if (test_bit(SOCK_ASYNC_WAITDATA, &sock->flags))
1130 break;
1131 goto call_kill;
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001132 case SOCK_WAKE_SPACE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 if (!test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sock->flags))
1134 break;
1135 /* fall through */
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001136 case SOCK_WAKE_IO:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001137call_kill:
Eric Dumazet43815482010-04-29 11:01:49 +00001138 kill_fasync(&wq->fasync_list, SIGIO, band);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 break;
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001140 case SOCK_WAKE_URG:
Eric Dumazet43815482010-04-29 11:01:49 +00001141 kill_fasync(&wq->fasync_list, SIGURG, band);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 }
Eric Dumazet43815482010-04-29 11:01:49 +00001143 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 return 0;
1145}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001146EXPORT_SYMBOL(sock_wake_async);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001148static int __sock_create(struct net *net, int family, int type, int protocol,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001149 struct socket **res, int kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150{
1151 int err;
1152 struct socket *sock;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001153 const struct net_proto_family *pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154
1155 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001156 * Check protocol is in range
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 */
1158 if (family < 0 || family >= NPROTO)
1159 return -EAFNOSUPPORT;
1160 if (type < 0 || type >= SOCK_MAX)
1161 return -EINVAL;
1162
1163 /* Compatibility.
1164
1165 This uglymoron is moved from INET layer to here to avoid
1166 deadlock in module load.
1167 */
1168 if (family == PF_INET && type == SOCK_PACKET) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001169 static int warned;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 if (!warned) {
1171 warned = 1;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001172 printk(KERN_INFO "%s uses obsolete (PF_INET,SOCK_PACKET)\n",
1173 current->comm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 }
1175 family = PF_PACKET;
1176 }
1177
1178 err = security_socket_create(family, type, protocol, kern);
1179 if (err)
1180 return err;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001181
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001182 /*
1183 * Allocate the socket and allow the family to set things up. if
1184 * the protocol is 0, the family is instructed to select an appropriate
1185 * default.
1186 */
1187 sock = sock_alloc();
1188 if (!sock) {
1189 if (net_ratelimit())
1190 printk(KERN_WARNING "socket: no more sockets\n");
1191 return -ENFILE; /* Not exactly a match, but its the
1192 closest posix thing */
1193 }
1194
1195 sock->type = type;
1196
Johannes Berg95a5afc2008-10-16 15:24:51 -07001197#ifdef CONFIG_MODULES
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001198 /* Attempt to load a protocol module if the find failed.
1199 *
1200 * 12/09/1996 Marcin: But! this makes REALLY only sense, if the user
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 * requested real, full-featured networking support upon configuration.
1202 * Otherwise module support will break!
1203 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001204 if (net_families[family] == NULL)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001205 request_module("net-pf-%d", family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206#endif
1207
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001208 rcu_read_lock();
1209 pf = rcu_dereference(net_families[family]);
1210 err = -EAFNOSUPPORT;
1211 if (!pf)
1212 goto out_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
1214 /*
1215 * We will call the ->create function, that possibly is in a loadable
1216 * module, so we have to bump that loadable module refcnt first.
1217 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001218 if (!try_module_get(pf->owner))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 goto out_release;
1220
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001221 /* Now protected by module ref count */
1222 rcu_read_unlock();
1223
Eric Paris3f378b62009-11-05 22:18:14 -08001224 err = pf->create(net, sock, protocol, kern);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001225 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 goto out_module_put;
Frank Filza79af592005-09-27 15:23:38 -07001227
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 /*
1229 * Now to bump the refcnt of the [loadable] module that owns this
1230 * socket at sock_release time we decrement its refcnt.
1231 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001232 if (!try_module_get(sock->ops->owner))
1233 goto out_module_busy;
1234
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 /*
1236 * Now that we're done with the ->create function, the [loadable]
1237 * module can have its refcnt decremented
1238 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001239 module_put(pf->owner);
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001240 err = security_socket_post_create(sock, family, type, protocol, kern);
1241 if (err)
Herbert Xu3b185522007-08-15 14:46:02 -07001242 goto out_sock_release;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001243 *res = sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001245 return 0;
1246
1247out_module_busy:
1248 err = -EAFNOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249out_module_put:
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001250 sock->ops = NULL;
1251 module_put(pf->owner);
1252out_sock_release:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 sock_release(sock);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001254 return err;
1255
1256out_release:
1257 rcu_read_unlock();
1258 goto out_sock_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259}
1260
1261int sock_create(int family, int type, int protocol, struct socket **res)
1262{
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001263 return __sock_create(current->nsproxy->net_ns, family, type, protocol, res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001265EXPORT_SYMBOL(sock_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266
1267int sock_create_kern(int family, int type, int protocol, struct socket **res)
1268{
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001269 return __sock_create(&init_net, family, type, protocol, res, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001271EXPORT_SYMBOL(sock_create_kern);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001273SYSCALL_DEFINE3(socket, int, family, int, type, int, protocol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274{
1275 int retval;
1276 struct socket *sock;
Ulrich Dreppera677a032008-07-23 21:29:17 -07001277 int flags;
1278
Ulrich Dreppere38b36f2008-07-23 21:29:42 -07001279 /* Check the SOCK_* constants for consistency. */
1280 BUILD_BUG_ON(SOCK_CLOEXEC != O_CLOEXEC);
1281 BUILD_BUG_ON((SOCK_MAX | SOCK_TYPE_MASK) != SOCK_TYPE_MASK);
1282 BUILD_BUG_ON(SOCK_CLOEXEC & SOCK_TYPE_MASK);
1283 BUILD_BUG_ON(SOCK_NONBLOCK & SOCK_TYPE_MASK);
1284
Ulrich Dreppera677a032008-07-23 21:29:17 -07001285 flags = type & ~SOCK_TYPE_MASK;
Ulrich Drepper77d27202008-07-23 21:29:35 -07001286 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Dreppera677a032008-07-23 21:29:17 -07001287 return -EINVAL;
1288 type &= SOCK_TYPE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001290 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1291 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1292
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 retval = sock_create(family, type, protocol, &sock);
1294 if (retval < 0)
1295 goto out;
1296
Ulrich Drepper77d27202008-07-23 21:29:35 -07001297 retval = sock_map_fd(sock, flags & (O_CLOEXEC | O_NONBLOCK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 if (retval < 0)
1299 goto out_release;
1300
1301out:
1302 /* It may be already another descriptor 8) Not kernel problem. */
1303 return retval;
1304
1305out_release:
1306 sock_release(sock);
1307 return retval;
1308}
1309
1310/*
1311 * Create a pair of connected sockets.
1312 */
1313
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001314SYSCALL_DEFINE4(socketpair, int, family, int, type, int, protocol,
1315 int __user *, usockvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316{
1317 struct socket *sock1, *sock2;
1318 int fd1, fd2, err;
Al Virodb349502007-02-07 01:48:00 -05001319 struct file *newfile1, *newfile2;
Ulrich Dreppera677a032008-07-23 21:29:17 -07001320 int flags;
1321
1322 flags = type & ~SOCK_TYPE_MASK;
Ulrich Drepper77d27202008-07-23 21:29:35 -07001323 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Dreppera677a032008-07-23 21:29:17 -07001324 return -EINVAL;
1325 type &= SOCK_TYPE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001327 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1328 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1329
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 /*
1331 * Obtain the first socket and check if the underlying protocol
1332 * supports the socketpair call.
1333 */
1334
1335 err = sock_create(family, type, protocol, &sock1);
1336 if (err < 0)
1337 goto out;
1338
1339 err = sock_create(family, type, protocol, &sock2);
1340 if (err < 0)
1341 goto out_release_1;
1342
1343 err = sock1->ops->socketpair(sock1, sock2);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001344 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 goto out_release_both;
1346
Al Viro7cbe66b2009-08-05 19:59:08 +04001347 fd1 = sock_alloc_file(sock1, &newfile1, flags);
David S. Millerbf3c23d2007-10-29 21:54:02 -07001348 if (unlikely(fd1 < 0)) {
1349 err = fd1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 goto out_release_both;
David S. Millerbf3c23d2007-10-29 21:54:02 -07001351 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352
Al Viro7cbe66b2009-08-05 19:59:08 +04001353 fd2 = sock_alloc_file(sock2, &newfile2, flags);
Al Viro198de4d2009-08-05 19:29:23 +04001354 if (unlikely(fd2 < 0)) {
1355 err = fd2;
1356 fput(newfile1);
1357 put_unused_fd(fd1);
1358 sock_release(sock2);
1359 goto out;
Al Virodb349502007-02-07 01:48:00 -05001360 }
1361
Al Viro157cf642008-12-14 04:57:47 -05001362 audit_fd_pair(fd1, fd2);
Al Virodb349502007-02-07 01:48:00 -05001363 fd_install(fd1, newfile1);
1364 fd_install(fd2, newfile2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 /* fd1 and fd2 may be already another descriptors.
1366 * Not kernel problem.
1367 */
1368
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001369 err = put_user(fd1, &usockvec[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 if (!err)
1371 err = put_user(fd2, &usockvec[1]);
1372 if (!err)
1373 return 0;
1374
1375 sys_close(fd2);
1376 sys_close(fd1);
1377 return err;
1378
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379out_release_both:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001380 sock_release(sock2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381out_release_1:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001382 sock_release(sock1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383out:
1384 return err;
1385}
1386
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387/*
1388 * Bind a name to a socket. Nothing much to do here since it's
1389 * the protocol's responsibility to handle the local address.
1390 *
1391 * We move the socket address to kernel space before we call
1392 * the protocol layer (having also checked the address is ok).
1393 */
1394
Heiko Carstens20f37032009-01-14 14:14:23 +01001395SYSCALL_DEFINE3(bind, int, fd, struct sockaddr __user *, umyaddr, int, addrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396{
1397 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001398 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001399 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001401 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001402 if (sock) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001403 err = move_addr_to_kernel(umyaddr, addrlen, (struct sockaddr *)&address);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001404 if (err >= 0) {
1405 err = security_socket_bind(sock,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001406 (struct sockaddr *)&address,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001407 addrlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001408 if (!err)
1409 err = sock->ops->bind(sock,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001410 (struct sockaddr *)
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001411 &address, addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 }
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001413 fput_light(sock->file, fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001414 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 return err;
1416}
1417
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418/*
1419 * Perform a listen. Basically, we allow the protocol to do anything
1420 * necessary for a listen, and if that works, we mark the socket as
1421 * ready for listening.
1422 */
1423
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001424SYSCALL_DEFINE2(listen, int, fd, int, backlog)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425{
1426 struct socket *sock;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001427 int err, fput_needed;
Pavel Emelyanovb8e1f9b2007-12-08 00:12:33 -08001428 int somaxconn;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001429
1430 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1431 if (sock) {
Pavel Emelyanov8efa6e92008-03-31 19:41:14 -07001432 somaxconn = sock_net(sock->sk)->core.sysctl_somaxconn;
Pavel Emelyanovb8e1f9b2007-12-08 00:12:33 -08001433 if ((unsigned)backlog > somaxconn)
1434 backlog = somaxconn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435
1436 err = security_socket_listen(sock, backlog);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001437 if (!err)
1438 err = sock->ops->listen(sock, backlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001440 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 }
1442 return err;
1443}
1444
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445/*
1446 * For accept, we attempt to create a new socket, set up the link
1447 * with the client, wake up the client, then return the new
1448 * connected fd. We collect the address of the connector in kernel
1449 * space and move it to user at the very end. This is unclean because
1450 * we open the socket then return an error.
1451 *
1452 * 1003.1g adds the ability to recvmsg() to query connection pending
1453 * status to recvmsg. We need to add that support in a way thats
1454 * clean when we restucture accept also.
1455 */
1456
Heiko Carstens20f37032009-01-14 14:14:23 +01001457SYSCALL_DEFINE4(accept4, int, fd, struct sockaddr __user *, upeer_sockaddr,
1458 int __user *, upeer_addrlen, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459{
1460 struct socket *sock, *newsock;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001461 struct file *newfile;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001462 int err, len, newfd, fput_needed;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001463 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464
Ulrich Drepper77d27202008-07-23 21:29:35 -07001465 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001466 return -EINVAL;
1467
1468 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1469 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1470
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001471 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 if (!sock)
1473 goto out;
1474
1475 err = -ENFILE;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001476 newsock = sock_alloc();
1477 if (!newsock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 goto out_put;
1479
1480 newsock->type = sock->type;
1481 newsock->ops = sock->ops;
1482
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 /*
1484 * We don't need try_module_get here, as the listening socket (sock)
1485 * has the protocol module (sock->ops->owner) held.
1486 */
1487 __module_get(newsock->ops->owner);
1488
Al Viro7cbe66b2009-08-05 19:59:08 +04001489 newfd = sock_alloc_file(newsock, &newfile, flags);
David S. Miller39d8c1b2006-03-20 17:13:49 -08001490 if (unlikely(newfd < 0)) {
1491 err = newfd;
David S. Miller9a1875e2006-04-01 12:48:36 -08001492 sock_release(newsock);
1493 goto out_put;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001494 }
1495
Frank Filza79af592005-09-27 15:23:38 -07001496 err = security_socket_accept(sock, newsock);
1497 if (err)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001498 goto out_fd;
Frank Filza79af592005-09-27 15:23:38 -07001499
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 err = sock->ops->accept(sock, newsock, sock->file->f_flags);
1501 if (err < 0)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001502 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
1504 if (upeer_sockaddr) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001505 if (newsock->ops->getname(newsock, (struct sockaddr *)&address,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001506 &len, 2) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 err = -ECONNABORTED;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001508 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 }
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001510 err = move_addr_to_user((struct sockaddr *)&address,
1511 len, upeer_sockaddr, upeer_addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 if (err < 0)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001513 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 }
1515
1516 /* File flags are not inherited via accept() unlike another OSes. */
1517
David S. Miller39d8c1b2006-03-20 17:13:49 -08001518 fd_install(newfd, newfile);
1519 err = newfd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001522 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523out:
1524 return err;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001525out_fd:
David S. Miller9606a212006-04-01 01:00:14 -08001526 fput(newfile);
David S. Miller39d8c1b2006-03-20 17:13:49 -08001527 put_unused_fd(newfd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 goto out_put;
1529}
1530
Heiko Carstens20f37032009-01-14 14:14:23 +01001531SYSCALL_DEFINE3(accept, int, fd, struct sockaddr __user *, upeer_sockaddr,
1532 int __user *, upeer_addrlen)
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001533{
Ulrich Drepperde11def2008-11-19 15:36:14 -08001534 return sys_accept4(fd, upeer_sockaddr, upeer_addrlen, 0);
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001535}
1536
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537/*
1538 * Attempt to connect to a socket with the server address. The address
1539 * is in user space so we verify it is OK and move it to kernel space.
1540 *
1541 * For 1003.1g we need to add clean support for a bind to AF_UNSPEC to
1542 * break bindings
1543 *
1544 * NOTE: 1003.1g draft 6.3 is broken with respect to AX.25/NetROM and
1545 * other SEQPACKET protocols that take time to connect() as it doesn't
1546 * include the -EINPROGRESS status for such sockets.
1547 */
1548
Heiko Carstens20f37032009-01-14 14:14:23 +01001549SYSCALL_DEFINE3(connect, int, fd, struct sockaddr __user *, uservaddr,
1550 int, addrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551{
1552 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001553 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001554 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001556 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 if (!sock)
1558 goto out;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001559 err = move_addr_to_kernel(uservaddr, addrlen, (struct sockaddr *)&address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 if (err < 0)
1561 goto out_put;
1562
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001563 err =
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001564 security_socket_connect(sock, (struct sockaddr *)&address, addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 if (err)
1566 goto out_put;
1567
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001568 err = sock->ops->connect(sock, (struct sockaddr *)&address, addrlen,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 sock->file->f_flags);
1570out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001571 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572out:
1573 return err;
1574}
1575
1576/*
1577 * Get the local address ('name') of a socket object. Move the obtained
1578 * name to user space.
1579 */
1580
Heiko Carstens20f37032009-01-14 14:14:23 +01001581SYSCALL_DEFINE3(getsockname, int, fd, struct sockaddr __user *, usockaddr,
1582 int __user *, usockaddr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583{
1584 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001585 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001586 int len, err, fput_needed;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001587
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001588 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 if (!sock)
1590 goto out;
1591
1592 err = security_socket_getsockname(sock);
1593 if (err)
1594 goto out_put;
1595
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001596 err = sock->ops->getname(sock, (struct sockaddr *)&address, &len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 if (err)
1598 goto out_put;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001599 err = move_addr_to_user((struct sockaddr *)&address, len, usockaddr, usockaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
1601out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001602 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603out:
1604 return err;
1605}
1606
1607/*
1608 * Get the remote address ('name') of a socket object. Move the obtained
1609 * name to user space.
1610 */
1611
Heiko Carstens20f37032009-01-14 14:14:23 +01001612SYSCALL_DEFINE3(getpeername, int, fd, struct sockaddr __user *, usockaddr,
1613 int __user *, usockaddr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614{
1615 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001616 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001617 int len, err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001619 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1620 if (sock != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 err = security_socket_getpeername(sock);
1622 if (err) {
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001623 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 return err;
1625 }
1626
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001627 err =
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001628 sock->ops->getname(sock, (struct sockaddr *)&address, &len,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001629 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 if (!err)
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001631 err = move_addr_to_user((struct sockaddr *)&address, len, usockaddr,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001632 usockaddr_len);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001633 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 }
1635 return err;
1636}
1637
1638/*
1639 * Send a datagram to a given address. We move the address into kernel
1640 * space and check the user space data area is readable before invoking
1641 * the protocol.
1642 */
1643
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001644SYSCALL_DEFINE6(sendto, int, fd, void __user *, buff, size_t, len,
1645 unsigned, flags, struct sockaddr __user *, addr,
1646 int, addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647{
1648 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001649 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 int err;
1651 struct msghdr msg;
1652 struct iovec iov;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001653 int fput_needed;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001654
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001655 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1656 if (!sock)
David S. Miller4387ff72007-02-08 15:06:08 -08001657 goto out;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001658
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001659 iov.iov_base = buff;
1660 iov.iov_len = len;
1661 msg.msg_name = NULL;
1662 msg.msg_iov = &iov;
1663 msg.msg_iovlen = 1;
1664 msg.msg_control = NULL;
1665 msg.msg_controllen = 0;
1666 msg.msg_namelen = 0;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001667 if (addr) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001668 err = move_addr_to_kernel(addr, addr_len, (struct sockaddr *)&address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 if (err < 0)
1670 goto out_put;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001671 msg.msg_name = (struct sockaddr *)&address;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001672 msg.msg_namelen = addr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 }
1674 if (sock->file->f_flags & O_NONBLOCK)
1675 flags |= MSG_DONTWAIT;
1676 msg.msg_flags = flags;
1677 err = sock_sendmsg(sock, &msg, len);
1678
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001679out_put:
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001680 fput_light(sock->file, fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08001681out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 return err;
1683}
1684
1685/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001686 * Send a datagram down a socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 */
1688
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001689SYSCALL_DEFINE4(send, int, fd, void __user *, buff, size_t, len,
1690 unsigned, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691{
1692 return sys_sendto(fd, buff, len, flags, NULL, 0);
1693}
1694
1695/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001696 * Receive a frame from the socket and optionally record the address of the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 * sender. We verify the buffers are writable and if needed move the
1698 * sender address from kernel to user space.
1699 */
1700
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001701SYSCALL_DEFINE6(recvfrom, int, fd, void __user *, ubuf, size_t, size,
1702 unsigned, flags, struct sockaddr __user *, addr,
1703 int __user *, addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704{
1705 struct socket *sock;
1706 struct iovec iov;
1707 struct msghdr msg;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001708 struct sockaddr_storage address;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001709 int err, err2;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001710 int fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001712 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 if (!sock)
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001714 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001716 msg.msg_control = NULL;
1717 msg.msg_controllen = 0;
1718 msg.msg_iovlen = 1;
1719 msg.msg_iov = &iov;
1720 iov.iov_len = size;
1721 iov.iov_base = ubuf;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001722 msg.msg_name = (struct sockaddr *)&address;
1723 msg.msg_namelen = sizeof(address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 if (sock->file->f_flags & O_NONBLOCK)
1725 flags |= MSG_DONTWAIT;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001726 err = sock_recvmsg(sock, &msg, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001728 if (err >= 0 && addr != NULL) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001729 err2 = move_addr_to_user((struct sockaddr *)&address,
1730 msg.msg_namelen, addr, addr_len);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001731 if (err2 < 0)
1732 err = err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 }
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001734
1735 fput_light(sock->file, fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08001736out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 return err;
1738}
1739
1740/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001741 * Receive a datagram from a socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 */
1743
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001744asmlinkage long sys_recv(int fd, void __user *ubuf, size_t size,
1745 unsigned flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746{
1747 return sys_recvfrom(fd, ubuf, size, flags, NULL, NULL);
1748}
1749
1750/*
1751 * Set a socket option. Because we don't know the option lengths we have
1752 * to pass the user mode parameter for the protocols to sort out.
1753 */
1754
Heiko Carstens20f37032009-01-14 14:14:23 +01001755SYSCALL_DEFINE5(setsockopt, int, fd, int, level, int, optname,
1756 char __user *, optval, int, optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001758 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 struct socket *sock;
1760
1761 if (optlen < 0)
1762 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001763
1764 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1765 if (sock != NULL) {
1766 err = security_socket_setsockopt(sock, level, optname);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001767 if (err)
1768 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769
1770 if (level == SOL_SOCKET)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001771 err =
1772 sock_setsockopt(sock, level, optname, optval,
1773 optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 else
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001775 err =
1776 sock->ops->setsockopt(sock, level, optname, optval,
1777 optlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001778out_put:
1779 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 }
1781 return err;
1782}
1783
1784/*
1785 * Get a socket option. Because we don't know the option lengths we have
1786 * to pass a user mode parameter for the protocols to sort out.
1787 */
1788
Heiko Carstens20f37032009-01-14 14:14:23 +01001789SYSCALL_DEFINE5(getsockopt, int, fd, int, level, int, optname,
1790 char __user *, optval, int __user *, optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001792 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 struct socket *sock;
1794
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001795 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1796 if (sock != NULL) {
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001797 err = security_socket_getsockopt(sock, level, optname);
1798 if (err)
1799 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800
1801 if (level == SOL_SOCKET)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001802 err =
1803 sock_getsockopt(sock, level, optname, optval,
1804 optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 else
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001806 err =
1807 sock->ops->getsockopt(sock, level, optname, optval,
1808 optlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001809out_put:
1810 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 }
1812 return err;
1813}
1814
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815/*
1816 * Shutdown a socket.
1817 */
1818
Heiko Carstens754fe8d2009-01-14 14:14:09 +01001819SYSCALL_DEFINE2(shutdown, int, fd, int, how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001821 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 struct socket *sock;
1823
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001824 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1825 if (sock != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 err = security_socket_shutdown(sock, how);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001827 if (!err)
1828 err = sock->ops->shutdown(sock, how);
1829 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 }
1831 return err;
1832}
1833
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001834/* A couple of helpful macros for getting the address of the 32/64 bit
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 * fields which are the same type (int / unsigned) on our platforms.
1836 */
1837#define COMPAT_MSG(msg, member) ((MSG_CMSG_COMPAT & flags) ? &msg##_compat->member : &msg->member)
1838#define COMPAT_NAMELEN(msg) COMPAT_MSG(msg, msg_namelen)
1839#define COMPAT_FLAGS(msg) COMPAT_MSG(msg, msg_flags)
1840
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841/*
1842 * BSD sendmsg interface
1843 */
1844
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001845SYSCALL_DEFINE3(sendmsg, int, fd, struct msghdr __user *, msg, unsigned, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001847 struct compat_msghdr __user *msg_compat =
1848 (struct compat_msghdr __user *)msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001850 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 struct iovec iovstack[UIO_FASTIOV], *iov = iovstack;
Alex Williamsonb9d717a2005-09-26 14:28:02 -07001852 unsigned char ctl[sizeof(struct cmsghdr) + 20]
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001853 __attribute__ ((aligned(sizeof(__kernel_size_t))));
1854 /* 20 is size of ipv6_pktinfo */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 unsigned char *ctl_buf = ctl;
1856 struct msghdr msg_sys;
1857 int err, ctl_len, iov_size, total_len;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001858 int fput_needed;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001859
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 err = -EFAULT;
1861 if (MSG_CMSG_COMPAT & flags) {
1862 if (get_compat_msghdr(&msg_sys, msg_compat))
1863 return -EFAULT;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001864 } else if (copy_from_user(&msg_sys, msg, sizeof(struct msghdr)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 return -EFAULT;
1866
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001867 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001868 if (!sock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 goto out;
1870
1871 /* do not move before msg_sys is valid */
1872 err = -EMSGSIZE;
1873 if (msg_sys.msg_iovlen > UIO_MAXIOV)
1874 goto out_put;
1875
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001876 /* Check whether to allocate the iovec area */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 err = -ENOMEM;
1878 iov_size = msg_sys.msg_iovlen * sizeof(struct iovec);
1879 if (msg_sys.msg_iovlen > UIO_FASTIOV) {
1880 iov = sock_kmalloc(sock->sk, iov_size, GFP_KERNEL);
1881 if (!iov)
1882 goto out_put;
1883 }
1884
1885 /* This will also move the address data into kernel space */
1886 if (MSG_CMSG_COMPAT & flags) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001887 err = verify_compat_iovec(&msg_sys, iov,
1888 (struct sockaddr *)&address,
1889 VERIFY_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 } else
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001891 err = verify_iovec(&msg_sys, iov,
1892 (struct sockaddr *)&address,
1893 VERIFY_READ);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001894 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 goto out_freeiov;
1896 total_len = err;
1897
1898 err = -ENOBUFS;
1899
1900 if (msg_sys.msg_controllen > INT_MAX)
1901 goto out_freeiov;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001902 ctl_len = msg_sys.msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 if ((MSG_CMSG_COMPAT & flags) && ctl_len) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001904 err =
1905 cmsghdr_from_user_compat_to_kern(&msg_sys, sock->sk, ctl,
1906 sizeof(ctl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 if (err)
1908 goto out_freeiov;
1909 ctl_buf = msg_sys.msg_control;
Al Viro8920e8f2005-09-07 18:28:51 -07001910 ctl_len = msg_sys.msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 } else if (ctl_len) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001912 if (ctl_len > sizeof(ctl)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 ctl_buf = sock_kmalloc(sock->sk, ctl_len, GFP_KERNEL);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001914 if (ctl_buf == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 goto out_freeiov;
1916 }
1917 err = -EFAULT;
1918 /*
1919 * Careful! Before this, msg_sys.msg_control contains a user pointer.
1920 * Afterwards, it will be a kernel pointer. Thus the compiler-assisted
1921 * checking falls down on this.
1922 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001923 if (copy_from_user(ctl_buf, (void __user *)msg_sys.msg_control,
1924 ctl_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 goto out_freectl;
1926 msg_sys.msg_control = ctl_buf;
1927 }
1928 msg_sys.msg_flags = flags;
1929
1930 if (sock->file->f_flags & O_NONBLOCK)
1931 msg_sys.msg_flags |= MSG_DONTWAIT;
1932 err = sock_sendmsg(sock, &msg_sys, total_len);
1933
1934out_freectl:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001935 if (ctl_buf != ctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 sock_kfree_s(sock->sk, ctl_buf, ctl_len);
1937out_freeiov:
1938 if (iov != iovstack)
1939 sock_kfree_s(sock->sk, iov, iov_size);
1940out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001941 fput_light(sock->file, fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001942out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 return err;
1944}
1945
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07001946static int __sys_recvmsg(struct socket *sock, struct msghdr __user *msg,
1947 struct msghdr *msg_sys, unsigned flags, int nosec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001949 struct compat_msghdr __user *msg_compat =
1950 (struct compat_msghdr __user *)msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 struct iovec iovstack[UIO_FASTIOV];
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001952 struct iovec *iov = iovstack;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 unsigned long cmsg_ptr;
1954 int err, iov_size, total_len, len;
1955
1956 /* kernel mode address */
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001957 struct sockaddr_storage addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958
1959 /* user mode address pointers */
1960 struct sockaddr __user *uaddr;
1961 int __user *uaddr_len;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001962
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 if (MSG_CMSG_COMPAT & flags) {
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07001964 if (get_compat_msghdr(msg_sys, msg_compat))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 return -EFAULT;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001966 } else if (copy_from_user(msg_sys, msg, sizeof(struct msghdr)))
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001967 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 err = -EMSGSIZE;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07001970 if (msg_sys->msg_iovlen > UIO_MAXIOV)
1971 goto out;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001972
1973 /* Check whether to allocate the iovec area */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 err = -ENOMEM;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07001975 iov_size = msg_sys->msg_iovlen * sizeof(struct iovec);
1976 if (msg_sys->msg_iovlen > UIO_FASTIOV) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 iov = sock_kmalloc(sock->sk, iov_size, GFP_KERNEL);
1978 if (!iov)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07001979 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 }
1981
1982 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001983 * Save the user-mode address (verify_iovec will change the
1984 * kernel msghdr to use the kernel address space)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001986
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07001987 uaddr = (__force void __user *)msg_sys->msg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 uaddr_len = COMPAT_NAMELEN(msg);
1989 if (MSG_CMSG_COMPAT & flags) {
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07001990 err = verify_compat_iovec(msg_sys, iov,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001991 (struct sockaddr *)&addr,
1992 VERIFY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 } else
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07001994 err = verify_iovec(msg_sys, iov,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001995 (struct sockaddr *)&addr,
1996 VERIFY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 if (err < 0)
1998 goto out_freeiov;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001999 total_len = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002001 cmsg_ptr = (unsigned long)msg_sys->msg_control;
2002 msg_sys->msg_flags = flags & (MSG_CMSG_CLOEXEC|MSG_CMSG_COMPAT);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002003
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 if (sock->file->f_flags & O_NONBLOCK)
2005 flags |= MSG_DONTWAIT;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002006 err = (nosec ? sock_recvmsg_nosec : sock_recvmsg)(sock, msg_sys,
2007 total_len, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 if (err < 0)
2009 goto out_freeiov;
2010 len = err;
2011
2012 if (uaddr != NULL) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07002013 err = move_addr_to_user((struct sockaddr *)&addr,
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002014 msg_sys->msg_namelen, uaddr,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002015 uaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 if (err < 0)
2017 goto out_freeiov;
2018 }
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002019 err = __put_user((msg_sys->msg_flags & ~MSG_CMSG_COMPAT),
David S. Miller37f7f422005-09-16 16:51:01 -07002020 COMPAT_FLAGS(msg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 if (err)
2022 goto out_freeiov;
2023 if (MSG_CMSG_COMPAT & flags)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002024 err = __put_user((unsigned long)msg_sys->msg_control - cmsg_ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 &msg_compat->msg_controllen);
2026 else
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002027 err = __put_user((unsigned long)msg_sys->msg_control - cmsg_ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 &msg->msg_controllen);
2029 if (err)
2030 goto out_freeiov;
2031 err = len;
2032
2033out_freeiov:
2034 if (iov != iovstack)
2035 sock_kfree_s(sock->sk, iov, iov_size);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002036out:
2037 return err;
2038}
2039
2040/*
2041 * BSD recvmsg interface
2042 */
2043
2044SYSCALL_DEFINE3(recvmsg, int, fd, struct msghdr __user *, msg,
2045 unsigned int, flags)
2046{
2047 int fput_needed, err;
2048 struct msghdr msg_sys;
2049 struct socket *sock = sockfd_lookup_light(fd, &err, &fput_needed);
2050
2051 if (!sock)
2052 goto out;
2053
2054 err = __sys_recvmsg(sock, msg, &msg_sys, flags, 0);
2055
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002056 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057out:
2058 return err;
2059}
2060
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002061/*
2062 * Linux recvmmsg interface
2063 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002065int __sys_recvmmsg(int fd, struct mmsghdr __user *mmsg, unsigned int vlen,
2066 unsigned int flags, struct timespec *timeout)
2067{
2068 int fput_needed, err, datagrams;
2069 struct socket *sock;
2070 struct mmsghdr __user *entry;
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002071 struct compat_mmsghdr __user *compat_entry;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002072 struct msghdr msg_sys;
2073 struct timespec end_time;
2074
2075 if (timeout &&
2076 poll_select_set_timeout(&end_time, timeout->tv_sec,
2077 timeout->tv_nsec))
2078 return -EINVAL;
2079
2080 datagrams = 0;
2081
2082 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2083 if (!sock)
2084 return err;
2085
2086 err = sock_error(sock->sk);
2087 if (err)
2088 goto out_put;
2089
2090 entry = mmsg;
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002091 compat_entry = (struct compat_mmsghdr __user *)mmsg;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002092
2093 while (datagrams < vlen) {
2094 /*
2095 * No need to ask LSM for more than the first datagram.
2096 */
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002097 if (MSG_CMSG_COMPAT & flags) {
2098 err = __sys_recvmsg(sock, (struct msghdr __user *)compat_entry,
2099 &msg_sys, flags, datagrams);
2100 if (err < 0)
2101 break;
2102 err = __put_user(err, &compat_entry->msg_len);
2103 ++compat_entry;
2104 } else {
2105 err = __sys_recvmsg(sock, (struct msghdr __user *)entry,
2106 &msg_sys, flags, datagrams);
2107 if (err < 0)
2108 break;
2109 err = put_user(err, &entry->msg_len);
2110 ++entry;
2111 }
2112
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002113 if (err)
2114 break;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002115 ++datagrams;
2116
Brandon L Black71c5c152010-03-26 16:18:03 +00002117 /* MSG_WAITFORONE turns on MSG_DONTWAIT after one packet */
2118 if (flags & MSG_WAITFORONE)
2119 flags |= MSG_DONTWAIT;
2120
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002121 if (timeout) {
2122 ktime_get_ts(timeout);
2123 *timeout = timespec_sub(end_time, *timeout);
2124 if (timeout->tv_sec < 0) {
2125 timeout->tv_sec = timeout->tv_nsec = 0;
2126 break;
2127 }
2128
2129 /* Timeout, return less than vlen datagrams */
2130 if (timeout->tv_nsec == 0 && timeout->tv_sec == 0)
2131 break;
2132 }
2133
2134 /* Out of band data, return right away */
2135 if (msg_sys.msg_flags & MSG_OOB)
2136 break;
2137 }
2138
2139out_put:
2140 fput_light(sock->file, fput_needed);
2141
2142 if (err == 0)
2143 return datagrams;
2144
2145 if (datagrams != 0) {
2146 /*
2147 * We may return less entries than requested (vlen) if the
2148 * sock is non block and there aren't enough datagrams...
2149 */
2150 if (err != -EAGAIN) {
2151 /*
2152 * ... or if recvmsg returns an error after we
2153 * received some datagrams, where we record the
2154 * error to return on the next call or if the
2155 * app asks about it using getsockopt(SO_ERROR).
2156 */
2157 sock->sk->sk_err = -err;
2158 }
2159
2160 return datagrams;
2161 }
2162
2163 return err;
2164}
2165
2166SYSCALL_DEFINE5(recvmmsg, int, fd, struct mmsghdr __user *, mmsg,
2167 unsigned int, vlen, unsigned int, flags,
2168 struct timespec __user *, timeout)
2169{
2170 int datagrams;
2171 struct timespec timeout_sys;
2172
2173 if (!timeout)
2174 return __sys_recvmmsg(fd, mmsg, vlen, flags, NULL);
2175
2176 if (copy_from_user(&timeout_sys, timeout, sizeof(timeout_sys)))
2177 return -EFAULT;
2178
2179 datagrams = __sys_recvmmsg(fd, mmsg, vlen, flags, &timeout_sys);
2180
2181 if (datagrams > 0 &&
2182 copy_to_user(timeout, &timeout_sys, sizeof(timeout_sys)))
2183 datagrams = -EFAULT;
2184
2185 return datagrams;
2186}
2187
2188#ifdef __ARCH_WANT_SYS_SOCKETCALL
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189/* Argument list sizes for sys_socketcall */
2190#define AL(x) ((x) * sizeof(unsigned long))
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002191static const unsigned char nargs[20] = {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002192 AL(0), AL(3), AL(3), AL(3), AL(2), AL(3),
2193 AL(3), AL(3), AL(4), AL(4), AL(4), AL(6),
2194 AL(6), AL(2), AL(5), AL(5), AL(3), AL(3),
2195 AL(4), AL(5)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002196};
2197
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198#undef AL
2199
2200/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002201 * System call vectors.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 *
2203 * Argument checking cleaned up. Saved 20% in size.
2204 * This function doesn't need to set the kernel lock because
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002205 * it is set by the callees.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 */
2207
Heiko Carstens3e0fa652009-01-14 14:14:24 +01002208SYSCALL_DEFINE2(socketcall, int, call, unsigned long __user *, args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209{
2210 unsigned long a[6];
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002211 unsigned long a0, a1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 int err;
Arjan van de Ven47379052009-09-28 12:57:44 -07002213 unsigned int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002215 if (call < 1 || call > SYS_RECVMMSG)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 return -EINVAL;
2217
Arjan van de Ven47379052009-09-28 12:57:44 -07002218 len = nargs[call];
2219 if (len > sizeof(a))
2220 return -EINVAL;
2221
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 /* copy_from_user should be SMP safe. */
Arjan van de Ven47379052009-09-28 12:57:44 -07002223 if (copy_from_user(a, args, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 return -EFAULT;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002225
Al Virof3298dc2008-12-10 03:16:51 -05002226 audit_socketcall(nargs[call] / sizeof(unsigned long), a);
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002227
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002228 a0 = a[0];
2229 a1 = a[1];
2230
2231 switch (call) {
2232 case SYS_SOCKET:
2233 err = sys_socket(a0, a1, a[2]);
2234 break;
2235 case SYS_BIND:
2236 err = sys_bind(a0, (struct sockaddr __user *)a1, a[2]);
2237 break;
2238 case SYS_CONNECT:
2239 err = sys_connect(a0, (struct sockaddr __user *)a1, a[2]);
2240 break;
2241 case SYS_LISTEN:
2242 err = sys_listen(a0, a1);
2243 break;
2244 case SYS_ACCEPT:
Ulrich Drepperde11def2008-11-19 15:36:14 -08002245 err = sys_accept4(a0, (struct sockaddr __user *)a1,
2246 (int __user *)a[2], 0);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002247 break;
2248 case SYS_GETSOCKNAME:
2249 err =
2250 sys_getsockname(a0, (struct sockaddr __user *)a1,
2251 (int __user *)a[2]);
2252 break;
2253 case SYS_GETPEERNAME:
2254 err =
2255 sys_getpeername(a0, (struct sockaddr __user *)a1,
2256 (int __user *)a[2]);
2257 break;
2258 case SYS_SOCKETPAIR:
2259 err = sys_socketpair(a0, a1, a[2], (int __user *)a[3]);
2260 break;
2261 case SYS_SEND:
2262 err = sys_send(a0, (void __user *)a1, a[2], a[3]);
2263 break;
2264 case SYS_SENDTO:
2265 err = sys_sendto(a0, (void __user *)a1, a[2], a[3],
2266 (struct sockaddr __user *)a[4], a[5]);
2267 break;
2268 case SYS_RECV:
2269 err = sys_recv(a0, (void __user *)a1, a[2], a[3]);
2270 break;
2271 case SYS_RECVFROM:
2272 err = sys_recvfrom(a0, (void __user *)a1, a[2], a[3],
2273 (struct sockaddr __user *)a[4],
2274 (int __user *)a[5]);
2275 break;
2276 case SYS_SHUTDOWN:
2277 err = sys_shutdown(a0, a1);
2278 break;
2279 case SYS_SETSOCKOPT:
2280 err = sys_setsockopt(a0, a1, a[2], (char __user *)a[3], a[4]);
2281 break;
2282 case SYS_GETSOCKOPT:
2283 err =
2284 sys_getsockopt(a0, a1, a[2], (char __user *)a[3],
2285 (int __user *)a[4]);
2286 break;
2287 case SYS_SENDMSG:
2288 err = sys_sendmsg(a0, (struct msghdr __user *)a1, a[2]);
2289 break;
2290 case SYS_RECVMSG:
2291 err = sys_recvmsg(a0, (struct msghdr __user *)a1, a[2]);
2292 break;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002293 case SYS_RECVMMSG:
2294 err = sys_recvmmsg(a0, (struct mmsghdr __user *)a1, a[2], a[3],
2295 (struct timespec __user *)a[4]);
2296 break;
Ulrich Drepperde11def2008-11-19 15:36:14 -08002297 case SYS_ACCEPT4:
2298 err = sys_accept4(a0, (struct sockaddr __user *)a1,
2299 (int __user *)a[2], a[3]);
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07002300 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002301 default:
2302 err = -EINVAL;
2303 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 }
2305 return err;
2306}
2307
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002308#endif /* __ARCH_WANT_SYS_SOCKETCALL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002310/**
2311 * sock_register - add a socket protocol handler
2312 * @ops: description of protocol
2313 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 * This function is called by a protocol handler that wants to
2315 * advertise its address family, and have it linked into the
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002316 * socket interface. The value ops->family coresponds to the
2317 * socket system call protocol family.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 */
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002319int sock_register(const struct net_proto_family *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320{
2321 int err;
2322
2323 if (ops->family >= NPROTO) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002324 printk(KERN_CRIT "protocol %d >= NPROTO(%d)\n", ops->family,
2325 NPROTO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 return -ENOBUFS;
2327 }
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002328
2329 spin_lock(&net_family_lock);
2330 if (net_families[ops->family])
2331 err = -EEXIST;
2332 else {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002333 net_families[ops->family] = ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 err = 0;
2335 }
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002336 spin_unlock(&net_family_lock);
2337
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002338 printk(KERN_INFO "NET: Registered protocol family %d\n", ops->family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 return err;
2340}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002341EXPORT_SYMBOL(sock_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002343/**
2344 * sock_unregister - remove a protocol handler
2345 * @family: protocol family to remove
2346 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 * This function is called by a protocol handler that wants to
2348 * remove its address family, and have it unlinked from the
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002349 * new socket creation.
2350 *
2351 * If protocol handler is a module, then it can use module reference
2352 * counts to protect against new references. If protocol handler is not
2353 * a module then it needs to provide its own protection in
2354 * the ops->create routine.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 */
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002356void sock_unregister(int family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357{
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002358 BUG_ON(family < 0 || family >= NPROTO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002360 spin_lock(&net_family_lock);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002361 net_families[family] = NULL;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002362 spin_unlock(&net_family_lock);
2363
2364 synchronize_rcu();
2365
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002366 printk(KERN_INFO "NET: Unregistered protocol family %d\n", family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002368EXPORT_SYMBOL(sock_unregister);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369
Andi Kleen77d76ea2005-12-22 12:43:42 -08002370static int __init sock_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371{
2372 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002373 * Initialize sock SLAB cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002375
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 sk_init();
2377
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002379 * Initialize skbuff SLAB cache
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 */
2381 skb_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382
2383 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002384 * Initialize the protocols module.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 */
2386
2387 init_inodecache();
2388 register_filesystem(&sock_fs_type);
2389 sock_mnt = kern_mount(&sock_fs_type);
Andi Kleen77d76ea2005-12-22 12:43:42 -08002390
2391 /* The real protocol initialization is performed in later initcalls.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392 */
2393
2394#ifdef CONFIG_NETFILTER
2395 netfilter_init();
2396#endif
David S. Millercbeb3212005-12-22 12:58:55 -08002397
Richard Cochranc1f19b52010-07-17 08:49:36 +00002398#ifdef CONFIG_NETWORK_PHY_TIMESTAMPING
2399 skb_timestamping_init();
2400#endif
2401
David S. Millercbeb3212005-12-22 12:58:55 -08002402 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403}
2404
Andi Kleen77d76ea2005-12-22 12:43:42 -08002405core_initcall(sock_init); /* early initcall */
2406
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407#ifdef CONFIG_PROC_FS
2408void socket_seq_show(struct seq_file *seq)
2409{
2410 int cpu;
2411 int counter = 0;
2412
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -07002413 for_each_possible_cpu(cpu)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002414 counter += per_cpu(sockets_in_use, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415
2416 /* It can be negative, by the way. 8) */
2417 if (counter < 0)
2418 counter = 0;
2419
2420 seq_printf(seq, "sockets: used %d\n", counter);
2421}
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002422#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423
Shaun Pereira89bbfc92006-03-21 23:58:08 -08002424#ifdef CONFIG_COMPAT
Arnd Bergmann6b960182009-11-06 23:10:54 -08002425static int do_siocgstamp(struct net *net, struct socket *sock,
2426 unsigned int cmd, struct compat_timeval __user *up)
Arnd Bergmann7a229382009-11-06 23:00:29 -08002427{
Arnd Bergmann7a229382009-11-06 23:00:29 -08002428 mm_segment_t old_fs = get_fs();
2429 struct timeval ktv;
2430 int err;
2431
2432 set_fs(KERNEL_DS);
Arnd Bergmann6b960182009-11-06 23:10:54 -08002433 err = sock_do_ioctl(net, sock, cmd, (unsigned long)&ktv);
Arnd Bergmann7a229382009-11-06 23:00:29 -08002434 set_fs(old_fs);
2435 if (!err) {
2436 err = put_user(ktv.tv_sec, &up->tv_sec);
2437 err |= __put_user(ktv.tv_usec, &up->tv_usec);
2438 }
2439 return err;
2440}
2441
Arnd Bergmann6b960182009-11-06 23:10:54 -08002442static int do_siocgstampns(struct net *net, struct socket *sock,
2443 unsigned int cmd, struct compat_timespec __user *up)
Arnd Bergmann7a229382009-11-06 23:00:29 -08002444{
Arnd Bergmann7a229382009-11-06 23:00:29 -08002445 mm_segment_t old_fs = get_fs();
2446 struct timespec kts;
2447 int err;
2448
2449 set_fs(KERNEL_DS);
Arnd Bergmann6b960182009-11-06 23:10:54 -08002450 err = sock_do_ioctl(net, sock, cmd, (unsigned long)&kts);
Arnd Bergmann7a229382009-11-06 23:00:29 -08002451 set_fs(old_fs);
2452 if (!err) {
2453 err = put_user(kts.tv_sec, &up->tv_sec);
2454 err |= __put_user(kts.tv_nsec, &up->tv_nsec);
2455 }
2456 return err;
2457}
2458
Arnd Bergmann6b960182009-11-06 23:10:54 -08002459static int dev_ifname32(struct net *net, struct compat_ifreq __user *uifr32)
Arnd Bergmann7a229382009-11-06 23:00:29 -08002460{
2461 struct ifreq __user *uifr;
2462 int err;
2463
2464 uifr = compat_alloc_user_space(sizeof(struct ifreq));
Arnd Bergmann6b960182009-11-06 23:10:54 -08002465 if (copy_in_user(uifr, uifr32, sizeof(struct compat_ifreq)))
Arnd Bergmann7a229382009-11-06 23:00:29 -08002466 return -EFAULT;
2467
Arnd Bergmann6b960182009-11-06 23:10:54 -08002468 err = dev_ioctl(net, SIOCGIFNAME, uifr);
Arnd Bergmann7a229382009-11-06 23:00:29 -08002469 if (err)
2470 return err;
2471
Arnd Bergmann6b960182009-11-06 23:10:54 -08002472 if (copy_in_user(uifr32, uifr, sizeof(struct compat_ifreq)))
Arnd Bergmann7a229382009-11-06 23:00:29 -08002473 return -EFAULT;
2474
2475 return 0;
2476}
2477
Arnd Bergmann6b960182009-11-06 23:10:54 -08002478static int dev_ifconf(struct net *net, struct compat_ifconf __user *uifc32)
Arnd Bergmann7a229382009-11-06 23:00:29 -08002479{
Arnd Bergmann6b960182009-11-06 23:10:54 -08002480 struct compat_ifconf ifc32;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002481 struct ifconf ifc;
2482 struct ifconf __user *uifc;
Arnd Bergmann6b960182009-11-06 23:10:54 -08002483 struct compat_ifreq __user *ifr32;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002484 struct ifreq __user *ifr;
2485 unsigned int i, j;
2486 int err;
2487
Arnd Bergmann6b960182009-11-06 23:10:54 -08002488 if (copy_from_user(&ifc32, uifc32, sizeof(struct compat_ifconf)))
Arnd Bergmann7a229382009-11-06 23:00:29 -08002489 return -EFAULT;
2490
2491 if (ifc32.ifcbuf == 0) {
2492 ifc32.ifc_len = 0;
2493 ifc.ifc_len = 0;
2494 ifc.ifc_req = NULL;
2495 uifc = compat_alloc_user_space(sizeof(struct ifconf));
2496 } else {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002497 size_t len = ((ifc32.ifc_len / sizeof(struct compat_ifreq)) + 1) *
2498 sizeof(struct ifreq);
Arnd Bergmann7a229382009-11-06 23:00:29 -08002499 uifc = compat_alloc_user_space(sizeof(struct ifconf) + len);
2500 ifc.ifc_len = len;
2501 ifr = ifc.ifc_req = (void __user *)(uifc + 1);
2502 ifr32 = compat_ptr(ifc32.ifcbuf);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002503 for (i = 0; i < ifc32.ifc_len; i += sizeof(struct compat_ifreq)) {
Arnd Bergmann6b960182009-11-06 23:10:54 -08002504 if (copy_in_user(ifr, ifr32, sizeof(struct compat_ifreq)))
Arnd Bergmann7a229382009-11-06 23:00:29 -08002505 return -EFAULT;
2506 ifr++;
2507 ifr32++;
2508 }
2509 }
2510 if (copy_to_user(uifc, &ifc, sizeof(struct ifconf)))
2511 return -EFAULT;
2512
Arnd Bergmann6b960182009-11-06 23:10:54 -08002513 err = dev_ioctl(net, SIOCGIFCONF, uifc);
Arnd Bergmann7a229382009-11-06 23:00:29 -08002514 if (err)
2515 return err;
2516
2517 if (copy_from_user(&ifc, uifc, sizeof(struct ifconf)))
2518 return -EFAULT;
2519
2520 ifr = ifc.ifc_req;
2521 ifr32 = compat_ptr(ifc32.ifcbuf);
2522 for (i = 0, j = 0;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002523 i + sizeof(struct compat_ifreq) <= ifc32.ifc_len && j < ifc.ifc_len;
2524 i += sizeof(struct compat_ifreq), j += sizeof(struct ifreq)) {
2525 if (copy_in_user(ifr32, ifr, sizeof(struct compat_ifreq)))
Arnd Bergmann7a229382009-11-06 23:00:29 -08002526 return -EFAULT;
2527 ifr32++;
2528 ifr++;
2529 }
2530
2531 if (ifc32.ifcbuf == 0) {
2532 /* Translate from 64-bit structure multiple to
2533 * a 32-bit one.
2534 */
2535 i = ifc.ifc_len;
Arnd Bergmann6b960182009-11-06 23:10:54 -08002536 i = ((i / sizeof(struct ifreq)) * sizeof(struct compat_ifreq));
Arnd Bergmann7a229382009-11-06 23:00:29 -08002537 ifc32.ifc_len = i;
2538 } else {
2539 ifc32.ifc_len = i;
2540 }
Arnd Bergmann6b960182009-11-06 23:10:54 -08002541 if (copy_to_user(uifc32, &ifc32, sizeof(struct compat_ifconf)))
Arnd Bergmann7a229382009-11-06 23:00:29 -08002542 return -EFAULT;
2543
2544 return 0;
2545}
2546
Arnd Bergmann6b960182009-11-06 23:10:54 -08002547static int ethtool_ioctl(struct net *net, struct compat_ifreq __user *ifr32)
Arnd Bergmann7a229382009-11-06 23:00:29 -08002548{
2549 struct ifreq __user *ifr;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002550 u32 data;
2551 void __user *datap;
2552
2553 ifr = compat_alloc_user_space(sizeof(*ifr));
Arnd Bergmann7a229382009-11-06 23:00:29 -08002554
2555 if (copy_in_user(&ifr->ifr_name, &ifr32->ifr_name, IFNAMSIZ))
2556 return -EFAULT;
2557
2558 if (get_user(data, &ifr32->ifr_ifru.ifru_data))
2559 return -EFAULT;
2560
2561 datap = compat_ptr(data);
2562 if (put_user(datap, &ifr->ifr_ifru.ifru_data))
2563 return -EFAULT;
2564
Arnd Bergmann6b960182009-11-06 23:10:54 -08002565 return dev_ioctl(net, SIOCETHTOOL, ifr);
Arnd Bergmann7a229382009-11-06 23:00:29 -08002566}
2567
Arnd Bergmann7a50a242009-11-08 20:57:03 -08002568static int compat_siocwandev(struct net *net, struct compat_ifreq __user *uifr32)
2569{
2570 void __user *uptr;
2571 compat_uptr_t uptr32;
2572 struct ifreq __user *uifr;
2573
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002574 uifr = compat_alloc_user_space(sizeof(*uifr));
Arnd Bergmann7a50a242009-11-08 20:57:03 -08002575 if (copy_in_user(uifr, uifr32, sizeof(struct compat_ifreq)))
2576 return -EFAULT;
2577
2578 if (get_user(uptr32, &uifr32->ifr_settings.ifs_ifsu))
2579 return -EFAULT;
2580
2581 uptr = compat_ptr(uptr32);
2582
2583 if (put_user(uptr, &uifr->ifr_settings.ifs_ifsu.raw_hdlc))
2584 return -EFAULT;
2585
2586 return dev_ioctl(net, SIOCWANDEV, uifr);
2587}
2588
Arnd Bergmann6b960182009-11-06 23:10:54 -08002589static int bond_ioctl(struct net *net, unsigned int cmd,
2590 struct compat_ifreq __user *ifr32)
Arnd Bergmann7a229382009-11-06 23:00:29 -08002591{
2592 struct ifreq kifr;
2593 struct ifreq __user *uifr;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002594 mm_segment_t old_fs;
2595 int err;
2596 u32 data;
2597 void __user *datap;
2598
2599 switch (cmd) {
2600 case SIOCBONDENSLAVE:
2601 case SIOCBONDRELEASE:
2602 case SIOCBONDSETHWADDR:
2603 case SIOCBONDCHANGEACTIVE:
Arnd Bergmann6b960182009-11-06 23:10:54 -08002604 if (copy_from_user(&kifr, ifr32, sizeof(struct compat_ifreq)))
Arnd Bergmann7a229382009-11-06 23:00:29 -08002605 return -EFAULT;
2606
2607 old_fs = get_fs();
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002608 set_fs(KERNEL_DS);
Arnd Bergmann6b960182009-11-06 23:10:54 -08002609 err = dev_ioctl(net, cmd, &kifr);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002610 set_fs(old_fs);
Arnd Bergmann7a229382009-11-06 23:00:29 -08002611
2612 return err;
2613 case SIOCBONDSLAVEINFOQUERY:
2614 case SIOCBONDINFOQUERY:
2615 uifr = compat_alloc_user_space(sizeof(*uifr));
2616 if (copy_in_user(&uifr->ifr_name, &ifr32->ifr_name, IFNAMSIZ))
2617 return -EFAULT;
2618
2619 if (get_user(data, &ifr32->ifr_ifru.ifru_data))
2620 return -EFAULT;
2621
2622 datap = compat_ptr(data);
2623 if (put_user(datap, &uifr->ifr_ifru.ifru_data))
2624 return -EFAULT;
2625
Arnd Bergmann6b960182009-11-06 23:10:54 -08002626 return dev_ioctl(net, cmd, uifr);
Arnd Bergmann7a229382009-11-06 23:00:29 -08002627 default:
2628 return -EINVAL;
Joe Perchesccbd6a52010-05-14 10:58:26 +00002629 }
Arnd Bergmann7a229382009-11-06 23:00:29 -08002630}
2631
Arnd Bergmann6b960182009-11-06 23:10:54 -08002632static int siocdevprivate_ioctl(struct net *net, unsigned int cmd,
2633 struct compat_ifreq __user *u_ifreq32)
Arnd Bergmann7a229382009-11-06 23:00:29 -08002634{
2635 struct ifreq __user *u_ifreq64;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002636 char tmp_buf[IFNAMSIZ];
2637 void __user *data64;
2638 u32 data32;
2639
2640 if (copy_from_user(&tmp_buf[0], &(u_ifreq32->ifr_ifrn.ifrn_name[0]),
2641 IFNAMSIZ))
2642 return -EFAULT;
2643 if (__get_user(data32, &u_ifreq32->ifr_ifru.ifru_data))
2644 return -EFAULT;
2645 data64 = compat_ptr(data32);
2646
2647 u_ifreq64 = compat_alloc_user_space(sizeof(*u_ifreq64));
2648
2649 /* Don't check these user accesses, just let that get trapped
2650 * in the ioctl handler instead.
2651 */
2652 if (copy_to_user(&u_ifreq64->ifr_ifrn.ifrn_name[0], &tmp_buf[0],
2653 IFNAMSIZ))
2654 return -EFAULT;
2655 if (__put_user(data64, &u_ifreq64->ifr_ifru.ifru_data))
2656 return -EFAULT;
2657
Arnd Bergmann6b960182009-11-06 23:10:54 -08002658 return dev_ioctl(net, cmd, u_ifreq64);
Arnd Bergmann7a229382009-11-06 23:00:29 -08002659}
2660
Arnd Bergmann6b960182009-11-06 23:10:54 -08002661static int dev_ifsioc(struct net *net, struct socket *sock,
2662 unsigned int cmd, struct compat_ifreq __user *uifr32)
Arnd Bergmann7a229382009-11-06 23:00:29 -08002663{
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002664 struct ifreq __user *uifr;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002665 int err;
2666
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002667 uifr = compat_alloc_user_space(sizeof(*uifr));
2668 if (copy_in_user(uifr, uifr32, sizeof(*uifr32)))
2669 return -EFAULT;
2670
2671 err = sock_do_ioctl(net, sock, cmd, (unsigned long)uifr);
2672
Arnd Bergmann7a229382009-11-06 23:00:29 -08002673 if (!err) {
2674 switch (cmd) {
2675 case SIOCGIFFLAGS:
2676 case SIOCGIFMETRIC:
2677 case SIOCGIFMTU:
2678 case SIOCGIFMEM:
2679 case SIOCGIFHWADDR:
2680 case SIOCGIFINDEX:
2681 case SIOCGIFADDR:
2682 case SIOCGIFBRDADDR:
2683 case SIOCGIFDSTADDR:
2684 case SIOCGIFNETMASK:
Arnd Bergmannfab25322009-11-08 20:56:21 -08002685 case SIOCGIFPFLAGS:
Arnd Bergmann7a229382009-11-06 23:00:29 -08002686 case SIOCGIFTXQLEN:
Arnd Bergmannfab25322009-11-08 20:56:21 -08002687 case SIOCGMIIPHY:
2688 case SIOCGMIIREG:
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002689 if (copy_in_user(uifr32, uifr, sizeof(*uifr32)))
Arnd Bergmann7a229382009-11-06 23:00:29 -08002690 err = -EFAULT;
2691 break;
2692 }
2693 }
2694 return err;
2695}
2696
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002697static int compat_sioc_ifmap(struct net *net, unsigned int cmd,
2698 struct compat_ifreq __user *uifr32)
2699{
2700 struct ifreq ifr;
2701 struct compat_ifmap __user *uifmap32;
2702 mm_segment_t old_fs;
2703 int err;
2704
2705 uifmap32 = &uifr32->ifr_ifru.ifru_map;
2706 err = copy_from_user(&ifr, uifr32, sizeof(ifr.ifr_name));
2707 err |= __get_user(ifr.ifr_map.mem_start, &uifmap32->mem_start);
2708 err |= __get_user(ifr.ifr_map.mem_end, &uifmap32->mem_end);
2709 err |= __get_user(ifr.ifr_map.base_addr, &uifmap32->base_addr);
2710 err |= __get_user(ifr.ifr_map.irq, &uifmap32->irq);
2711 err |= __get_user(ifr.ifr_map.dma, &uifmap32->dma);
2712 err |= __get_user(ifr.ifr_map.port, &uifmap32->port);
2713 if (err)
2714 return -EFAULT;
2715
2716 old_fs = get_fs();
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002717 set_fs(KERNEL_DS);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002718 err = dev_ioctl(net, cmd, (void __user *)&ifr);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002719 set_fs(old_fs);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002720
2721 if (cmd == SIOCGIFMAP && !err) {
2722 err = copy_to_user(uifr32, &ifr, sizeof(ifr.ifr_name));
2723 err |= __put_user(ifr.ifr_map.mem_start, &uifmap32->mem_start);
2724 err |= __put_user(ifr.ifr_map.mem_end, &uifmap32->mem_end);
2725 err |= __put_user(ifr.ifr_map.base_addr, &uifmap32->base_addr);
2726 err |= __put_user(ifr.ifr_map.irq, &uifmap32->irq);
2727 err |= __put_user(ifr.ifr_map.dma, &uifmap32->dma);
2728 err |= __put_user(ifr.ifr_map.port, &uifmap32->port);
2729 if (err)
2730 err = -EFAULT;
2731 }
2732 return err;
2733}
2734
2735static int compat_siocshwtstamp(struct net *net, struct compat_ifreq __user *uifr32)
2736{
2737 void __user *uptr;
2738 compat_uptr_t uptr32;
2739 struct ifreq __user *uifr;
2740
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002741 uifr = compat_alloc_user_space(sizeof(*uifr));
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002742 if (copy_in_user(uifr, uifr32, sizeof(struct compat_ifreq)))
2743 return -EFAULT;
2744
2745 if (get_user(uptr32, &uifr32->ifr_data))
2746 return -EFAULT;
2747
2748 uptr = compat_ptr(uptr32);
2749
2750 if (put_user(uptr, &uifr->ifr_data))
2751 return -EFAULT;
2752
2753 return dev_ioctl(net, SIOCSHWTSTAMP, uifr);
2754}
2755
Arnd Bergmann7a229382009-11-06 23:00:29 -08002756struct rtentry32 {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002757 u32 rt_pad1;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002758 struct sockaddr rt_dst; /* target address */
2759 struct sockaddr rt_gateway; /* gateway addr (RTF_GATEWAY) */
2760 struct sockaddr rt_genmask; /* target network mask (IP) */
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002761 unsigned short rt_flags;
2762 short rt_pad2;
2763 u32 rt_pad3;
2764 unsigned char rt_tos;
2765 unsigned char rt_class;
2766 short rt_pad4;
2767 short rt_metric; /* +1 for binary compatibility! */
Arnd Bergmann7a229382009-11-06 23:00:29 -08002768 /* char * */ u32 rt_dev; /* forcing the device at add */
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002769 u32 rt_mtu; /* per route MTU/Window */
2770 u32 rt_window; /* Window clamping */
Arnd Bergmann7a229382009-11-06 23:00:29 -08002771 unsigned short rt_irtt; /* Initial RTT */
2772};
2773
2774struct in6_rtmsg32 {
2775 struct in6_addr rtmsg_dst;
2776 struct in6_addr rtmsg_src;
2777 struct in6_addr rtmsg_gateway;
2778 u32 rtmsg_type;
2779 u16 rtmsg_dst_len;
2780 u16 rtmsg_src_len;
2781 u32 rtmsg_metric;
2782 u32 rtmsg_info;
2783 u32 rtmsg_flags;
2784 s32 rtmsg_ifindex;
2785};
2786
Arnd Bergmann6b960182009-11-06 23:10:54 -08002787static int routing_ioctl(struct net *net, struct socket *sock,
2788 unsigned int cmd, void __user *argp)
Arnd Bergmann7a229382009-11-06 23:00:29 -08002789{
2790 int ret;
2791 void *r = NULL;
2792 struct in6_rtmsg r6;
2793 struct rtentry r4;
2794 char devname[16];
2795 u32 rtdev;
2796 mm_segment_t old_fs = get_fs();
2797
Arnd Bergmann6b960182009-11-06 23:10:54 -08002798 if (sock && sock->sk && sock->sk->sk_family == AF_INET6) { /* ipv6 */
2799 struct in6_rtmsg32 __user *ur6 = argp;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002800 ret = copy_from_user(&r6.rtmsg_dst, &(ur6->rtmsg_dst),
Arnd Bergmann7a229382009-11-06 23:00:29 -08002801 3 * sizeof(struct in6_addr));
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002802 ret |= __get_user(r6.rtmsg_type, &(ur6->rtmsg_type));
2803 ret |= __get_user(r6.rtmsg_dst_len, &(ur6->rtmsg_dst_len));
2804 ret |= __get_user(r6.rtmsg_src_len, &(ur6->rtmsg_src_len));
2805 ret |= __get_user(r6.rtmsg_metric, &(ur6->rtmsg_metric));
2806 ret |= __get_user(r6.rtmsg_info, &(ur6->rtmsg_info));
2807 ret |= __get_user(r6.rtmsg_flags, &(ur6->rtmsg_flags));
2808 ret |= __get_user(r6.rtmsg_ifindex, &(ur6->rtmsg_ifindex));
Arnd Bergmann7a229382009-11-06 23:00:29 -08002809
2810 r = (void *) &r6;
2811 } else { /* ipv4 */
Arnd Bergmann6b960182009-11-06 23:10:54 -08002812 struct rtentry32 __user *ur4 = argp;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002813 ret = copy_from_user(&r4.rt_dst, &(ur4->rt_dst),
Arnd Bergmann7a229382009-11-06 23:00:29 -08002814 3 * sizeof(struct sockaddr));
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002815 ret |= __get_user(r4.rt_flags, &(ur4->rt_flags));
2816 ret |= __get_user(r4.rt_metric, &(ur4->rt_metric));
2817 ret |= __get_user(r4.rt_mtu, &(ur4->rt_mtu));
2818 ret |= __get_user(r4.rt_window, &(ur4->rt_window));
2819 ret |= __get_user(r4.rt_irtt, &(ur4->rt_irtt));
2820 ret |= __get_user(rtdev, &(ur4->rt_dev));
Arnd Bergmann7a229382009-11-06 23:00:29 -08002821 if (rtdev) {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002822 ret |= copy_from_user(devname, compat_ptr(rtdev), 15);
Arnd Bergmann7a229382009-11-06 23:00:29 -08002823 r4.rt_dev = devname; devname[15] = 0;
2824 } else
2825 r4.rt_dev = NULL;
2826
2827 r = (void *) &r4;
2828 }
2829
2830 if (ret) {
2831 ret = -EFAULT;
2832 goto out;
2833 }
2834
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002835 set_fs(KERNEL_DS);
Arnd Bergmann6b960182009-11-06 23:10:54 -08002836 ret = sock_do_ioctl(net, sock, cmd, (unsigned long) r);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002837 set_fs(old_fs);
Arnd Bergmann7a229382009-11-06 23:00:29 -08002838
2839out:
Arnd Bergmann7a229382009-11-06 23:00:29 -08002840 return ret;
2841}
2842
2843/* Since old style bridge ioctl's endup using SIOCDEVPRIVATE
2844 * for some operations; this forces use of the newer bridge-utils that
2845 * use compatiable ioctls
2846 */
Arnd Bergmann6b960182009-11-06 23:10:54 -08002847static int old_bridge_ioctl(compat_ulong_t __user *argp)
Arnd Bergmann7a229382009-11-06 23:00:29 -08002848{
Arnd Bergmann6b960182009-11-06 23:10:54 -08002849 compat_ulong_t tmp;
Arnd Bergmann7a229382009-11-06 23:00:29 -08002850
Arnd Bergmann6b960182009-11-06 23:10:54 -08002851 if (get_user(tmp, argp))
Arnd Bergmann7a229382009-11-06 23:00:29 -08002852 return -EFAULT;
2853 if (tmp == BRCTL_GET_VERSION)
2854 return BRCTL_VERSION + 1;
2855 return -EINVAL;
2856}
2857
Arnd Bergmann6b960182009-11-06 23:10:54 -08002858static int compat_sock_ioctl_trans(struct file *file, struct socket *sock,
2859 unsigned int cmd, unsigned long arg)
2860{
2861 void __user *argp = compat_ptr(arg);
2862 struct sock *sk = sock->sk;
2863 struct net *net = sock_net(sk);
Arnd Bergmann7a229382009-11-06 23:00:29 -08002864
Arnd Bergmann6b960182009-11-06 23:10:54 -08002865 if (cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15))
2866 return siocdevprivate_ioctl(net, cmd, argp);
Arnd Bergmann7a229382009-11-06 23:00:29 -08002867
Arnd Bergmann6b960182009-11-06 23:10:54 -08002868 switch (cmd) {
2869 case SIOCSIFBR:
2870 case SIOCGIFBR:
2871 return old_bridge_ioctl(argp);
2872 case SIOCGIFNAME:
2873 return dev_ifname32(net, argp);
2874 case SIOCGIFCONF:
2875 return dev_ifconf(net, argp);
2876 case SIOCETHTOOL:
2877 return ethtool_ioctl(net, argp);
Arnd Bergmann7a50a242009-11-08 20:57:03 -08002878 case SIOCWANDEV:
2879 return compat_siocwandev(net, argp);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002880 case SIOCGIFMAP:
2881 case SIOCSIFMAP:
2882 return compat_sioc_ifmap(net, cmd, argp);
Arnd Bergmann6b960182009-11-06 23:10:54 -08002883 case SIOCBONDENSLAVE:
2884 case SIOCBONDRELEASE:
2885 case SIOCBONDSETHWADDR:
2886 case SIOCBONDSLAVEINFOQUERY:
2887 case SIOCBONDINFOQUERY:
2888 case SIOCBONDCHANGEACTIVE:
2889 return bond_ioctl(net, cmd, argp);
2890 case SIOCADDRT:
2891 case SIOCDELRT:
2892 return routing_ioctl(net, sock, cmd, argp);
2893 case SIOCGSTAMP:
2894 return do_siocgstamp(net, sock, cmd, argp);
2895 case SIOCGSTAMPNS:
2896 return do_siocgstampns(net, sock, cmd, argp);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002897 case SIOCSHWTSTAMP:
2898 return compat_siocshwtstamp(net, argp);
Arnd Bergmann7a229382009-11-06 23:00:29 -08002899
Arnd Bergmann6b960182009-11-06 23:10:54 -08002900 case FIOSETOWN:
2901 case SIOCSPGRP:
2902 case FIOGETOWN:
2903 case SIOCGPGRP:
2904 case SIOCBRADDBR:
2905 case SIOCBRDELBR:
2906 case SIOCGIFVLAN:
2907 case SIOCSIFVLAN:
2908 case SIOCADDDLCI:
2909 case SIOCDELDLCI:
2910 return sock_ioctl(file, cmd, arg);
2911
2912 case SIOCGIFFLAGS:
2913 case SIOCSIFFLAGS:
2914 case SIOCGIFMETRIC:
2915 case SIOCSIFMETRIC:
2916 case SIOCGIFMTU:
2917 case SIOCSIFMTU:
2918 case SIOCGIFMEM:
2919 case SIOCSIFMEM:
2920 case SIOCGIFHWADDR:
2921 case SIOCSIFHWADDR:
2922 case SIOCADDMULTI:
2923 case SIOCDELMULTI:
2924 case SIOCGIFINDEX:
Arnd Bergmann6b960182009-11-06 23:10:54 -08002925 case SIOCGIFADDR:
2926 case SIOCSIFADDR:
2927 case SIOCSIFHWBROADCAST:
Arnd Bergmann6b960182009-11-06 23:10:54 -08002928 case SIOCDIFADDR:
Arnd Bergmann6b960182009-11-06 23:10:54 -08002929 case SIOCGIFBRDADDR:
2930 case SIOCSIFBRDADDR:
2931 case SIOCGIFDSTADDR:
2932 case SIOCSIFDSTADDR:
2933 case SIOCGIFNETMASK:
2934 case SIOCSIFNETMASK:
2935 case SIOCSIFPFLAGS:
2936 case SIOCGIFPFLAGS:
2937 case SIOCGIFTXQLEN:
2938 case SIOCSIFTXQLEN:
2939 case SIOCBRADDIF:
2940 case SIOCBRDELIF:
Arnd Bergmann9177efd2009-11-06 08:09:09 +00002941 case SIOCSIFNAME:
2942 case SIOCGMIIPHY:
2943 case SIOCGMIIREG:
2944 case SIOCSMIIREG:
Arnd Bergmann6b960182009-11-06 23:10:54 -08002945 return dev_ifsioc(net, sock, cmd, argp);
Arnd Bergmann9177efd2009-11-06 08:09:09 +00002946
Arnd Bergmann6b960182009-11-06 23:10:54 -08002947 case SIOCSARP:
2948 case SIOCGARP:
2949 case SIOCDARP:
Arnd Bergmann6b960182009-11-06 23:10:54 -08002950 case SIOCATMARK:
Arnd Bergmann9177efd2009-11-06 08:09:09 +00002951 return sock_do_ioctl(net, sock, cmd, arg);
2952 }
2953
2954 /* Prevent warning from compat_sys_ioctl, these always
2955 * result in -EINVAL in the native case anyway. */
2956 switch (cmd) {
2957 case SIOCRTMSG:
2958 case SIOCGIFCOUNT:
Arnd Bergmann6b960182009-11-06 23:10:54 -08002959 case SIOCSRARP:
2960 case SIOCGRARP:
2961 case SIOCDRARP:
Arnd Bergmann9177efd2009-11-06 08:09:09 +00002962 case SIOCSIFLINK:
2963 case SIOCGIFSLAVE:
2964 case SIOCSIFSLAVE:
2965 return -EINVAL;
Arnd Bergmann6b960182009-11-06 23:10:54 -08002966 }
2967
2968 return -ENOIOCTLCMD;
2969}
Arnd Bergmann7a229382009-11-06 23:00:29 -08002970
Shaun Pereira89bbfc92006-03-21 23:58:08 -08002971static long compat_sock_ioctl(struct file *file, unsigned cmd,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002972 unsigned long arg)
Shaun Pereira89bbfc92006-03-21 23:58:08 -08002973{
2974 struct socket *sock = file->private_data;
2975 int ret = -ENOIOCTLCMD;
David S. Miller87de87d2008-06-03 09:14:03 -07002976 struct sock *sk;
2977 struct net *net;
2978
2979 sk = sock->sk;
2980 net = sock_net(sk);
Shaun Pereira89bbfc92006-03-21 23:58:08 -08002981
2982 if (sock->ops->compat_ioctl)
2983 ret = sock->ops->compat_ioctl(sock, cmd, arg);
2984
David S. Miller87de87d2008-06-03 09:14:03 -07002985 if (ret == -ENOIOCTLCMD &&
2986 (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST))
2987 ret = compat_wext_handle_ioctl(net, cmd, arg);
2988
Arnd Bergmann6b960182009-11-06 23:10:54 -08002989 if (ret == -ENOIOCTLCMD)
2990 ret = compat_sock_ioctl_trans(file, sock, cmd, arg);
2991
Shaun Pereira89bbfc92006-03-21 23:58:08 -08002992 return ret;
2993}
2994#endif
2995
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07002996int kernel_bind(struct socket *sock, struct sockaddr *addr, int addrlen)
2997{
2998 return sock->ops->bind(sock, addr, addrlen);
2999}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003000EXPORT_SYMBOL(kernel_bind);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003001
3002int kernel_listen(struct socket *sock, int backlog)
3003{
3004 return sock->ops->listen(sock, backlog);
3005}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003006EXPORT_SYMBOL(kernel_listen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003007
3008int kernel_accept(struct socket *sock, struct socket **newsock, int flags)
3009{
3010 struct sock *sk = sock->sk;
3011 int err;
3012
3013 err = sock_create_lite(sk->sk_family, sk->sk_type, sk->sk_protocol,
3014 newsock);
3015 if (err < 0)
3016 goto done;
3017
3018 err = sock->ops->accept(sock, *newsock, flags);
3019 if (err < 0) {
3020 sock_release(*newsock);
Tony Battersbyfa8705b2007-10-10 21:09:04 -07003021 *newsock = NULL;
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003022 goto done;
3023 }
3024
3025 (*newsock)->ops = sock->ops;
Wei Yongjun1b085342008-12-18 19:35:10 -08003026 __module_get((*newsock)->ops->owner);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003027
3028done:
3029 return err;
3030}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003031EXPORT_SYMBOL(kernel_accept);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003032
3033int kernel_connect(struct socket *sock, struct sockaddr *addr, int addrlen,
YOSHIFUJI Hideaki4768fbc2007-02-09 23:25:31 +09003034 int flags)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003035{
3036 return sock->ops->connect(sock, addr, addrlen, flags);
3037}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003038EXPORT_SYMBOL(kernel_connect);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003039
3040int kernel_getsockname(struct socket *sock, struct sockaddr *addr,
3041 int *addrlen)
3042{
3043 return sock->ops->getname(sock, addr, addrlen, 0);
3044}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003045EXPORT_SYMBOL(kernel_getsockname);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003046
3047int kernel_getpeername(struct socket *sock, struct sockaddr *addr,
3048 int *addrlen)
3049{
3050 return sock->ops->getname(sock, addr, addrlen, 1);
3051}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003052EXPORT_SYMBOL(kernel_getpeername);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003053
3054int kernel_getsockopt(struct socket *sock, int level, int optname,
3055 char *optval, int *optlen)
3056{
3057 mm_segment_t oldfs = get_fs();
3058 int err;
3059
3060 set_fs(KERNEL_DS);
3061 if (level == SOL_SOCKET)
3062 err = sock_getsockopt(sock, level, optname, optval, optlen);
3063 else
3064 err = sock->ops->getsockopt(sock, level, optname, optval,
3065 optlen);
3066 set_fs(oldfs);
3067 return err;
3068}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003069EXPORT_SYMBOL(kernel_getsockopt);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003070
3071int kernel_setsockopt(struct socket *sock, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07003072 char *optval, unsigned int optlen)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003073{
3074 mm_segment_t oldfs = get_fs();
3075 int err;
3076
3077 set_fs(KERNEL_DS);
3078 if (level == SOL_SOCKET)
3079 err = sock_setsockopt(sock, level, optname, optval, optlen);
3080 else
3081 err = sock->ops->setsockopt(sock, level, optname, optval,
3082 optlen);
3083 set_fs(oldfs);
3084 return err;
3085}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003086EXPORT_SYMBOL(kernel_setsockopt);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003087
3088int kernel_sendpage(struct socket *sock, struct page *page, int offset,
3089 size_t size, int flags)
3090{
Herbert Xuf8451722010-05-24 00:12:34 -07003091 sock_update_classid(sock->sk);
3092
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003093 if (sock->ops->sendpage)
3094 return sock->ops->sendpage(sock, page, offset, size, flags);
3095
3096 return sock_no_sendpage(sock, page, offset, size, flags);
3097}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003098EXPORT_SYMBOL(kernel_sendpage);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003099
3100int kernel_sock_ioctl(struct socket *sock, int cmd, unsigned long arg)
3101{
3102 mm_segment_t oldfs = get_fs();
3103 int err;
3104
3105 set_fs(KERNEL_DS);
3106 err = sock->ops->ioctl(sock, cmd, arg);
3107 set_fs(oldfs);
3108
3109 return err;
3110}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003111EXPORT_SYMBOL(kernel_sock_ioctl);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003112
Trond Myklebust91cf45f2007-11-12 18:10:39 -08003113int kernel_sock_shutdown(struct socket *sock, enum sock_shutdown_cmd how)
3114{
3115 return sock->ops->shutdown(sock, how);
3116}
Trond Myklebust91cf45f2007-11-12 18:10:39 -08003117EXPORT_SYMBOL(kernel_sock_shutdown);