blob: 5cac1c707755e4c2d9768f510504b2351745b5ef [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * NET An implementation of the SOCKET network access protocol.
3 *
4 * Version: @(#)socket.c 1.1.93 18/02/95
5 *
6 * Authors: Orest Zborowski, <obz@Kodak.COM>
Jesper Juhl02c30a82005-05-05 16:16:16 -07007 * Ross Biro
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
9 *
10 * Fixes:
11 * Anonymous : NOTSOCK/BADF cleanup. Error fix in
12 * shutdown()
13 * Alan Cox : verify_area() fixes
14 * Alan Cox : Removed DDI
15 * Jonathan Kamens : SOCK_DGRAM reconnect bug
16 * Alan Cox : Moved a load of checks to the very
17 * top level.
18 * Alan Cox : Move address structures to/from user
19 * mode above the protocol layers.
20 * Rob Janssen : Allow 0 length sends.
21 * Alan Cox : Asynchronous I/O support (cribbed from the
22 * tty drivers).
23 * Niibe Yutaka : Asynchronous I/O for writes (4.4BSD style)
24 * Jeff Uphoff : Made max number of sockets command-line
25 * configurable.
26 * Matti Aarnio : Made the number of sockets dynamic,
27 * to be allocated when needed, and mr.
28 * Uphoff's max is used as max to be
29 * allowed to allocate.
30 * Linus : Argh. removed all the socket allocation
31 * altogether: it's in the inode now.
32 * Alan Cox : Made sock_alloc()/sock_release() public
33 * for NetROM and future kernel nfsd type
34 * stuff.
35 * Alan Cox : sendmsg/recvmsg basics.
36 * Tom Dyas : Export net symbols.
37 * Marcin Dalecki : Fixed problems with CONFIG_NET="n".
38 * Alan Cox : Added thread locking to sys_* calls
39 * for sockets. May have errors at the
40 * moment.
41 * Kevin Buhr : Fixed the dumb errors in the above.
42 * Andi Kleen : Some small cleanups, optimizations,
43 * and fixed a copy_from_user() bug.
44 * Tigran Aivazian : sys_send(args) calls sys_sendto(args, NULL, 0)
Stephen Hemminger89bddce2006-09-01 00:19:31 -070045 * Tigran Aivazian : Made listen(2) backlog sanity checks
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 * protocol-independent
47 *
48 *
49 * This program is free software; you can redistribute it and/or
50 * modify it under the terms of the GNU General Public License
51 * as published by the Free Software Foundation; either version
52 * 2 of the License, or (at your option) any later version.
53 *
54 *
55 * This module is effectively the top level interface to the BSD socket
Stephen Hemminger89bddce2006-09-01 00:19:31 -070056 * paradigm.
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 *
58 * Based upon Swansea University Computer Society NET3.039
59 */
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#include <linux/socket.h>
63#include <linux/file.h>
64#include <linux/net.h>
65#include <linux/interrupt.h>
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -070066#include <linux/thread_info.h>
Stephen Hemminger55737fd2006-09-01 00:23:39 -070067#include <linux/rcupdate.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#include <linux/netdevice.h>
69#include <linux/proc_fs.h>
70#include <linux/seq_file.h>
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -080071#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#include <linux/wanrouter.h>
73#include <linux/if_bridge.h>
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -030074#include <linux/if_frad.h>
75#include <linux/if_vlan.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#include <linux/init.h>
77#include <linux/poll.h>
78#include <linux/cache.h>
79#include <linux/module.h>
80#include <linux/highmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#include <linux/mount.h>
82#include <linux/security.h>
83#include <linux/syscalls.h>
84#include <linux/compat.h>
85#include <linux/kmod.h>
David Woodhouse3ec3b2f2005-05-17 12:08:48 +010086#include <linux/audit.h>
Adrian Bunkd86b5e02006-01-21 00:46:55 +010087#include <linux/wireless.h>
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -070088#include <linux/nsproxy.h>
Nick Black1fd7317d2009-09-22 16:43:33 -070089#include <linux/magic.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090090#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92#include <asm/uaccess.h>
93#include <asm/unistd.h>
94
95#include <net/compat.h>
David S. Miller87de87d2008-06-03 09:14:03 -070096#include <net/wext.h>
Herbert Xuf8451722010-05-24 00:12:34 -070097#include <net/cls_cgroup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99#include <net/sock.h>
100#include <linux/netfilter.h>
101
Arnd Bergmann6b960182009-11-06 23:10:54 -0800102#include <linux/if_tun.h>
103#include <linux/ipv6_route.h>
104#include <linux/route.h>
Arnd Bergmann6b960182009-11-06 23:10:54 -0800105#include <linux/sockios.h>
106#include <linux/atalk.h>
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108static int sock_no_open(struct inode *irrelevant, struct file *dontcare);
Badari Pulavarty027445c2006-09-30 23:28:46 -0700109static ssize_t sock_aio_read(struct kiocb *iocb, const struct iovec *iov,
110 unsigned long nr_segs, loff_t pos);
111static ssize_t sock_aio_write(struct kiocb *iocb, const struct iovec *iov,
112 unsigned long nr_segs, loff_t pos);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700113static int sock_mmap(struct file *file, struct vm_area_struct *vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
115static int sock_close(struct inode *inode, struct file *file);
116static unsigned int sock_poll(struct file *file,
117 struct poll_table_struct *wait);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700118static long sock_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800119#ifdef CONFIG_COMPAT
120static long compat_sock_ioctl(struct file *file,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700121 unsigned int cmd, unsigned long arg);
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800122#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123static int sock_fasync(int fd, struct file *filp, int on);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124static ssize_t sock_sendpage(struct file *file, struct page *page,
125 int offset, size_t size, loff_t *ppos, int more);
Jens Axboe9c55e012007-11-06 23:30:13 -0800126static ssize_t sock_splice_read(struct file *file, loff_t *ppos,
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700127 struct pipe_inode_info *pipe, size_t len,
Jens Axboe9c55e012007-11-06 23:30:13 -0800128 unsigned int flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130/*
131 * Socket files have a set of 'special' operations as well as the generic file ones. These don't appear
132 * in the operation structures but are done directly via the socketcall() multiplexor.
133 */
134
Arjan van de Venda7071d2007-02-12 00:55:36 -0800135static const struct file_operations socket_file_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 .owner = THIS_MODULE,
137 .llseek = no_llseek,
138 .aio_read = sock_aio_read,
139 .aio_write = sock_aio_write,
140 .poll = sock_poll,
141 .unlocked_ioctl = sock_ioctl,
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800142#ifdef CONFIG_COMPAT
143 .compat_ioctl = compat_sock_ioctl,
144#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 .mmap = sock_mmap,
146 .open = sock_no_open, /* special open code to disallow open via /proc */
147 .release = sock_close,
148 .fasync = sock_fasync,
Jens Axboe5274f052006-03-30 15:15:30 +0200149 .sendpage = sock_sendpage,
150 .splice_write = generic_splice_sendpage,
Jens Axboe9c55e012007-11-06 23:30:13 -0800151 .splice_read = sock_splice_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152};
153
154/*
155 * The protocol list. Each protocol is registered in here.
156 */
157
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158static DEFINE_SPINLOCK(net_family_lock);
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
stephen hemminger11165f12010-10-18 14:27:29 +0000212static int move_addr_to_user(struct sockaddr *kaddr, int klen,
213 void __user *uaddr, int __user *ulen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
215 int err;
216 int len;
217
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700218 err = get_user(len, ulen);
219 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 return err;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700221 if (len > klen)
222 len = klen;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -0700223 if (len < 0 || len > sizeof(struct sockaddr_storage))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700225 if (len) {
Steve Grubbd6fe3942006-03-30 12:20:22 -0500226 if (audit_sockaddr(klen, kaddr))
227 return -ENOMEM;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700228 if (copy_to_user(uaddr, kaddr, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 return -EFAULT;
230 }
231 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700232 * "fromlen shall refer to the value before truncation.."
233 * 1003.1g
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 */
235 return __put_user(klen, ulen);
236}
237
Christoph Lametere18b8902006-12-06 20:33:20 -0800238static struct kmem_cache *sock_inode_cachep __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
240static struct inode *sock_alloc_inode(struct super_block *sb)
241{
242 struct socket_alloc *ei;
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 */
Al Viro7de9c6ee2010-10-23 11:11:40 -0400380 ihold(path.dentry->d_inode);
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);
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400483 inode->i_ino = get_next_ino();
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700484 inode->i_mode = S_IFSOCK | S_IRWXUGO;
David Howells8192b0c2008-11-14 10:39:10 +1100485 inode->i_uid = current_fsuid();
486 inode->i_gid = current_fsgid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Eric Dumazet4e694892009-04-04 16:41:09 -0700488 percpu_add(sockets_in_use, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 return sock;
490}
491
492/*
493 * In theory you can't get an open on this inode, but /proc provides
494 * a back door. Remember to keep it shut otherwise you'll let the
495 * creepy crawlies in.
496 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498static int sock_no_open(struct inode *irrelevant, struct file *dontcare)
499{
500 return -ENXIO;
501}
502
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800503const struct file_operations bad_sock_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 .owner = THIS_MODULE,
505 .open = sock_no_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200506 .llseek = noop_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507};
508
509/**
510 * sock_release - close a socket
511 * @sock: socket to close
512 *
513 * The socket is released from the protocol stack if it has a release
514 * callback, and the inode is then released if the socket is bound to
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700515 * an inode not a file.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700517
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518void sock_release(struct socket *sock)
519{
520 if (sock->ops) {
521 struct module *owner = sock->ops->owner;
522
523 sock->ops->release(sock);
524 sock->ops = NULL;
525 module_put(owner);
526 }
527
Eric Dumazet43815482010-04-29 11:01:49 +0000528 if (sock->wq->fasync_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 printk(KERN_ERR "sock_release: fasync list not empty!\n");
530
Eric Dumazet4e694892009-04-04 16:41:09 -0700531 percpu_sub(sockets_in_use, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 if (!sock->file) {
533 iput(SOCK_INODE(sock));
534 return;
535 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700536 sock->file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700538EXPORT_SYMBOL(sock_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
Oliver Hartkopp2244d072010-08-17 08:59:14 +0000540int sock_tx_timestamp(struct sock *sk, __u8 *tx_flags)
Patrick Ohly20d49472009-02-12 05:03:38 +0000541{
Oliver Hartkopp2244d072010-08-17 08:59:14 +0000542 *tx_flags = 0;
Patrick Ohly20d49472009-02-12 05:03:38 +0000543 if (sock_flag(sk, SOCK_TIMESTAMPING_TX_HARDWARE))
Oliver Hartkopp2244d072010-08-17 08:59:14 +0000544 *tx_flags |= SKBTX_HW_TSTAMP;
Patrick Ohly20d49472009-02-12 05:03:38 +0000545 if (sock_flag(sk, SOCK_TIMESTAMPING_TX_SOFTWARE))
Oliver Hartkopp2244d072010-08-17 08:59:14 +0000546 *tx_flags |= SKBTX_SW_TSTAMP;
Patrick Ohly20d49472009-02-12 05:03:38 +0000547 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
stephen hemminger11165f12010-10-18 14:27:29 +0000666static inline void sock_recv_drops(struct msghdr *msg, struct sock *sk,
667 struct sk_buff *skb)
Neil Horman3b885782009-10-12 13:26:31 -0700668{
669 if (sock_flag(sk, SOCK_RXQ_OVFL) && skb && skb->dropcount)
670 put_cmsg(msg, SOL_SOCKET, SO_RXQ_OVFL,
671 sizeof(__u32), &skb->dropcount);
672}
673
Eric Dumazet767dd032010-04-28 19:14:43 +0000674void __sock_recv_ts_and_drops(struct msghdr *msg, struct sock *sk,
Neil Horman3b885782009-10-12 13:26:31 -0700675 struct sk_buff *skb)
676{
677 sock_recv_timestamp(msg, sk, skb);
678 sock_recv_drops(msg, sk, skb);
679}
Eric Dumazet767dd032010-04-28 19:14:43 +0000680EXPORT_SYMBOL_GPL(__sock_recv_ts_and_drops);
Neil Horman3b885782009-10-12 13:26:31 -0700681
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -0700682static inline int __sock_recvmsg_nosec(struct kiocb *iocb, struct socket *sock,
683 struct msghdr *msg, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 struct sock_iocb *si = kiocb_to_siocb(iocb);
686
Herbert Xuf8451722010-05-24 00:12:34 -0700687 sock_update_classid(sock->sk);
688
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 si->sock = sock;
690 si->scm = NULL;
691 si->msg = msg;
692 si->size = size;
693 si->flags = flags;
694
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 return sock->ops->recvmsg(iocb, sock, msg, size, flags);
696}
697
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -0700698static inline int __sock_recvmsg(struct kiocb *iocb, struct socket *sock,
699 struct msghdr *msg, size_t size, int flags)
700{
701 int err = security_socket_recvmsg(sock, msg, size, flags);
702
703 return err ?: __sock_recvmsg_nosec(iocb, sock, msg, size, flags);
704}
705
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700706int sock_recvmsg(struct socket *sock, struct msghdr *msg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 size_t size, int flags)
708{
709 struct kiocb iocb;
710 struct sock_iocb siocb;
711 int ret;
712
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700713 init_sync_kiocb(&iocb, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 iocb.private = &siocb;
715 ret = __sock_recvmsg(&iocb, sock, msg, size, flags);
716 if (-EIOCBQUEUED == ret)
717 ret = wait_on_sync_kiocb(&iocb);
718 return ret;
719}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700720EXPORT_SYMBOL(sock_recvmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -0700722static int sock_recvmsg_nosec(struct socket *sock, struct msghdr *msg,
723 size_t size, int flags)
724{
725 struct kiocb iocb;
726 struct sock_iocb siocb;
727 int ret;
728
729 init_sync_kiocb(&iocb, NULL);
730 iocb.private = &siocb;
731 ret = __sock_recvmsg_nosec(&iocb, sock, msg, size, flags);
732 if (-EIOCBQUEUED == ret)
733 ret = wait_on_sync_kiocb(&iocb);
734 return ret;
735}
736
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700737int kernel_recvmsg(struct socket *sock, struct msghdr *msg,
738 struct kvec *vec, size_t num, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739{
740 mm_segment_t oldfs = get_fs();
741 int result;
742
743 set_fs(KERNEL_DS);
744 /*
745 * the following is safe, since for compiler definitions of kvec and
746 * iovec are identical, yielding the same in-core layout and alignment
747 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700748 msg->msg_iov = (struct iovec *)vec, msg->msg_iovlen = num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 result = sock_recvmsg(sock, msg, size, flags);
750 set_fs(oldfs);
751 return result;
752}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700753EXPORT_SYMBOL(kernel_recvmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
755static void sock_aio_dtor(struct kiocb *iocb)
756{
757 kfree(iocb->private);
758}
759
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -0300760static ssize_t sock_sendpage(struct file *file, struct page *page,
761 int offset, size_t size, loff_t *ppos, int more)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762{
763 struct socket *sock;
764 int flags;
765
Eric Dumazetb69aee02005-09-06 14:42:45 -0700766 sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
768 flags = !(file->f_flags & O_NONBLOCK) ? 0 : MSG_DONTWAIT;
769 if (more)
770 flags |= MSG_MORE;
771
Linus Torvaldse6949582009-08-13 08:28:36 -0700772 return kernel_sendpage(sock, page, offset, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773}
774
Jens Axboe9c55e012007-11-06 23:30:13 -0800775static ssize_t sock_splice_read(struct file *file, loff_t *ppos,
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700776 struct pipe_inode_info *pipe, size_t len,
Jens Axboe9c55e012007-11-06 23:30:13 -0800777 unsigned int flags)
778{
779 struct socket *sock = file->private_data;
780
Rémi Denis-Courmont997b37d2008-02-15 02:35:45 -0800781 if (unlikely(!sock->ops->splice_read))
782 return -EINVAL;
783
Herbert Xuf8451722010-05-24 00:12:34 -0700784 sock_update_classid(sock->sk);
785
Jens Axboe9c55e012007-11-06 23:30:13 -0800786 return sock->ops->splice_read(sock, ppos, pipe, len, flags);
787}
788
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800789static struct sock_iocb *alloc_sock_iocb(struct kiocb *iocb,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700790 struct sock_iocb *siocb)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800791{
792 if (!is_sync_kiocb(iocb)) {
793 siocb = kmalloc(sizeof(*siocb), GFP_KERNEL);
794 if (!siocb)
795 return NULL;
796 iocb->ki_dtor = sock_aio_dtor;
797 }
798
799 siocb->kiocb = iocb;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800800 iocb->private = siocb;
801 return siocb;
802}
803
804static ssize_t do_sock_read(struct msghdr *msg, struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -0700805 struct file *file, const struct iovec *iov,
806 unsigned long nr_segs)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800807{
808 struct socket *sock = file->private_data;
809 size_t size = 0;
810 int i;
811
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700812 for (i = 0; i < nr_segs; i++)
813 size += iov[i].iov_len;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800814
815 msg->msg_name = NULL;
816 msg->msg_namelen = 0;
817 msg->msg_control = NULL;
818 msg->msg_controllen = 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700819 msg->msg_iov = (struct iovec *)iov;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800820 msg->msg_iovlen = nr_segs;
821 msg->msg_flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
822
823 return __sock_recvmsg(iocb, sock, msg, size, msg->msg_flags);
824}
825
Badari Pulavarty027445c2006-09-30 23:28:46 -0700826static ssize_t sock_aio_read(struct kiocb *iocb, const struct iovec *iov,
827 unsigned long nr_segs, loff_t pos)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800828{
829 struct sock_iocb siocb, *x;
830
831 if (pos != 0)
832 return -ESPIPE;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700833
834 if (iocb->ki_left == 0) /* Match SYS5 behaviour */
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800835 return 0;
836
Badari Pulavarty027445c2006-09-30 23:28:46 -0700837
838 x = alloc_sock_iocb(iocb, &siocb);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800839 if (!x)
840 return -ENOMEM;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700841 return do_sock_read(&x->async_msg, iocb, iocb->ki_filp, iov, nr_segs);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800842}
843
844static ssize_t do_sock_write(struct msghdr *msg, struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -0700845 struct file *file, const struct iovec *iov,
846 unsigned long nr_segs)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800847{
848 struct socket *sock = file->private_data;
849 size_t size = 0;
850 int i;
851
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700852 for (i = 0; i < nr_segs; i++)
853 size += iov[i].iov_len;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800854
855 msg->msg_name = NULL;
856 msg->msg_namelen = 0;
857 msg->msg_control = NULL;
858 msg->msg_controllen = 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700859 msg->msg_iov = (struct iovec *)iov;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800860 msg->msg_iovlen = nr_segs;
861 msg->msg_flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
862 if (sock->type == SOCK_SEQPACKET)
863 msg->msg_flags |= MSG_EOR;
864
865 return __sock_sendmsg(iocb, sock, msg, size);
866}
867
Badari Pulavarty027445c2006-09-30 23:28:46 -0700868static ssize_t sock_aio_write(struct kiocb *iocb, const struct iovec *iov,
869 unsigned long nr_segs, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870{
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800871 struct sock_iocb siocb, *x;
872
873 if (pos != 0)
874 return -ESPIPE;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700875
Badari Pulavarty027445c2006-09-30 23:28:46 -0700876 x = alloc_sock_iocb(iocb, &siocb);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800877 if (!x)
878 return -ENOMEM;
879
Badari Pulavarty027445c2006-09-30 23:28:46 -0700880 return do_sock_write(&x->async_msg, iocb, iocb->ki_filp, iov, nr_segs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881}
882
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883/*
884 * Atomic setting of ioctl hooks to avoid race
885 * with module unload.
886 */
887
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800888static DEFINE_MUTEX(br_ioctl_mutex);
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700889static int (*br_ioctl_hook) (struct net *, unsigned int cmd, void __user *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
Eric W. Biederman881d9662007-09-17 11:56:21 -0700891void brioctl_set(int (*hook) (struct net *, unsigned int, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800893 mutex_lock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 br_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800895 mutex_unlock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896}
897EXPORT_SYMBOL(brioctl_set);
898
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800899static DEFINE_MUTEX(vlan_ioctl_mutex);
Eric W. Biederman881d9662007-09-17 11:56:21 -0700900static int (*vlan_ioctl_hook) (struct net *, void __user *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
Eric W. Biederman881d9662007-09-17 11:56:21 -0700902void vlan_ioctl_set(int (*hook) (struct net *, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800904 mutex_lock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 vlan_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800906 mutex_unlock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907}
908EXPORT_SYMBOL(vlan_ioctl_set);
909
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800910static DEFINE_MUTEX(dlci_ioctl_mutex);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700911static int (*dlci_ioctl_hook) (unsigned int, void __user *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700913void dlci_ioctl_set(int (*hook) (unsigned int, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800915 mutex_lock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 dlci_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800917 mutex_unlock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918}
919EXPORT_SYMBOL(dlci_ioctl_set);
920
Arnd Bergmann6b960182009-11-06 23:10:54 -0800921static long sock_do_ioctl(struct net *net, struct socket *sock,
922 unsigned int cmd, unsigned long arg)
923{
924 int err;
925 void __user *argp = (void __user *)arg;
926
927 err = sock->ops->ioctl(sock, cmd, arg);
928
929 /*
930 * If this ioctl is unknown try to hand it down
931 * to the NIC driver.
932 */
933 if (err == -ENOIOCTLCMD)
934 err = dev_ioctl(net, cmd, argp);
935
936 return err;
937}
938
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939/*
940 * With an ioctl, arg may well be a user mode pointer, but we don't know
941 * what to do with it - that's up to the protocol still.
942 */
943
944static long sock_ioctl(struct file *file, unsigned cmd, unsigned long arg)
945{
946 struct socket *sock;
Eric W. Biederman881d9662007-09-17 11:56:21 -0700947 struct sock *sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 void __user *argp = (void __user *)arg;
949 int pid, err;
Eric W. Biederman881d9662007-09-17 11:56:21 -0700950 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
Eric Dumazetb69aee02005-09-06 14:42:45 -0700952 sock = file->private_data;
Eric W. Biederman881d9662007-09-17 11:56:21 -0700953 sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900954 net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 if (cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15)) {
Eric W. Biederman881d9662007-09-17 11:56:21 -0700956 err = dev_ioctl(net, cmd, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 } else
Johannes Berg3d23e342009-09-29 23:27:28 +0200958#ifdef CONFIG_WEXT_CORE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 if (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST) {
Eric W. Biederman881d9662007-09-17 11:56:21 -0700960 err = dev_ioctl(net, cmd, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 } else
Johannes Berg3d23e342009-09-29 23:27:28 +0200962#endif
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700963 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 case FIOSETOWN:
965 case SIOCSPGRP:
966 err = -EFAULT;
967 if (get_user(pid, (int __user *)argp))
968 break;
969 err = f_setown(sock->file, pid, 1);
970 break;
971 case FIOGETOWN:
972 case SIOCGPGRP:
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700973 err = put_user(f_getown(sock->file),
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700974 (int __user *)argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 break;
976 case SIOCGIFBR:
977 case SIOCSIFBR:
978 case SIOCBRADDBR:
979 case SIOCBRDELBR:
980 err = -ENOPKG;
981 if (!br_ioctl_hook)
982 request_module("bridge");
983
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800984 mutex_lock(&br_ioctl_mutex);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700985 if (br_ioctl_hook)
Eric W. Biederman881d9662007-09-17 11:56:21 -0700986 err = br_ioctl_hook(net, cmd, argp);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800987 mutex_unlock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 break;
989 case SIOCGIFVLAN:
990 case SIOCSIFVLAN:
991 err = -ENOPKG;
992 if (!vlan_ioctl_hook)
993 request_module("8021q");
994
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800995 mutex_lock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 if (vlan_ioctl_hook)
Eric W. Biederman881d9662007-09-17 11:56:21 -0700997 err = vlan_ioctl_hook(net, argp);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800998 mutex_unlock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 case SIOCADDDLCI:
1001 case SIOCDELDLCI:
1002 err = -ENOPKG;
1003 if (!dlci_ioctl_hook)
1004 request_module("dlci");
1005
Pavel Emelyanov7512cbf2008-03-21 15:58:52 -07001006 mutex_lock(&dlci_ioctl_mutex);
1007 if (dlci_ioctl_hook)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 err = dlci_ioctl_hook(cmd, argp);
Pavel Emelyanov7512cbf2008-03-21 15:58:52 -07001009 mutex_unlock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 break;
1011 default:
Arnd Bergmann6b960182009-11-06 23:10:54 -08001012 err = sock_do_ioctl(net, sock, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001014 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 return err;
1016}
1017
1018int sock_create_lite(int family, int type, int protocol, struct socket **res)
1019{
1020 int err;
1021 struct socket *sock = NULL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001022
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 err = security_socket_create(family, type, protocol, 1);
1024 if (err)
1025 goto out;
1026
1027 sock = sock_alloc();
1028 if (!sock) {
1029 err = -ENOMEM;
1030 goto out;
1031 }
1032
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 sock->type = type;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001034 err = security_socket_post_create(sock, family, type, protocol, 1);
1035 if (err)
1036 goto out_release;
1037
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038out:
1039 *res = sock;
1040 return err;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001041out_release:
1042 sock_release(sock);
1043 sock = NULL;
1044 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001046EXPORT_SYMBOL(sock_create_lite);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
1048/* No kernel lock held - perfect */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001049static unsigned int sock_poll(struct file *file, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050{
1051 struct socket *sock;
1052
1053 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001054 * We can't return errors to poll, so it's either yes or no.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 */
Eric Dumazetb69aee02005-09-06 14:42:45 -07001056 sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 return sock->ops->poll(file, sock, wait);
1058}
1059
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001060static int sock_mmap(struct file *file, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061{
Eric Dumazetb69aee02005-09-06 14:42:45 -07001062 struct socket *sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063
1064 return sock->ops->mmap(file, sock, vma);
1065}
1066
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001067static int sock_close(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068{
1069 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001070 * It was possible the inode is NULL we were
1071 * closing an unfinished socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 */
1073
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001074 if (!inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 printk(KERN_DEBUG "sock_close: NULL inode\n");
1076 return 0;
1077 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 sock_release(SOCKET_I(inode));
1079 return 0;
1080}
1081
1082/*
1083 * Update the socket async list
1084 *
1085 * Fasync_list locking strategy.
1086 *
1087 * 1. fasync_list is modified only under process context socket lock
1088 * i.e. under semaphore.
1089 * 2. fasync_list is used under read_lock(&sk->sk_callback_lock)
Eric Dumazet989a2972010-04-14 09:55:35 +00001090 * or under socket lock
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 */
1092
1093static int sock_fasync(int fd, struct file *filp, int on)
1094{
Eric Dumazet989a2972010-04-14 09:55:35 +00001095 struct socket *sock = filp->private_data;
1096 struct sock *sk = sock->sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
Eric Dumazet989a2972010-04-14 09:55:35 +00001098 if (sk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100
1101 lock_sock(sk);
1102
Eric Dumazet43815482010-04-29 11:01:49 +00001103 fasync_helper(fd, filp, on, &sock->wq->fasync_list);
Eric Dumazet989a2972010-04-14 09:55:35 +00001104
Eric Dumazet43815482010-04-29 11:01:49 +00001105 if (!sock->wq->fasync_list)
Eric Dumazet989a2972010-04-14 09:55:35 +00001106 sock_reset_flag(sk, SOCK_FASYNC);
Jonathan Corbet76398422009-02-01 14:26:59 -07001107 else
Eric Dumazetbcdce712009-10-06 17:28:29 -07001108 sock_set_flag(sk, SOCK_FASYNC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
Eric Dumazet989a2972010-04-14 09:55:35 +00001110 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 return 0;
1112}
1113
Eric Dumazet43815482010-04-29 11:01:49 +00001114/* This function may be called only under socket lock or callback_lock or rcu_lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115
1116int sock_wake_async(struct socket *sock, int how, int band)
1117{
Eric Dumazet43815482010-04-29 11:01:49 +00001118 struct socket_wq *wq;
1119
1120 if (!sock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 return -1;
Eric Dumazet43815482010-04-29 11:01:49 +00001122 rcu_read_lock();
1123 wq = rcu_dereference(sock->wq);
1124 if (!wq || !wq->fasync_list) {
1125 rcu_read_unlock();
1126 return -1;
1127 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001128 switch (how) {
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001129 case SOCK_WAKE_WAITD:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 if (test_bit(SOCK_ASYNC_WAITDATA, &sock->flags))
1131 break;
1132 goto call_kill;
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001133 case SOCK_WAKE_SPACE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 if (!test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sock->flags))
1135 break;
1136 /* fall through */
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001137 case SOCK_WAKE_IO:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001138call_kill:
Eric Dumazet43815482010-04-29 11:01:49 +00001139 kill_fasync(&wq->fasync_list, SIGIO, band);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 break;
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001141 case SOCK_WAKE_URG:
Eric Dumazet43815482010-04-29 11:01:49 +00001142 kill_fasync(&wq->fasync_list, SIGURG, band);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 }
Eric Dumazet43815482010-04-29 11:01:49 +00001144 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 return 0;
1146}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001147EXPORT_SYMBOL(sock_wake_async);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001149static int __sock_create(struct net *net, int family, int type, int protocol,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001150 struct socket **res, int kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151{
1152 int err;
1153 struct socket *sock;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001154 const struct net_proto_family *pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155
1156 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001157 * Check protocol is in range
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 */
1159 if (family < 0 || family >= NPROTO)
1160 return -EAFNOSUPPORT;
1161 if (type < 0 || type >= SOCK_MAX)
1162 return -EINVAL;
1163
1164 /* Compatibility.
1165
1166 This uglymoron is moved from INET layer to here to avoid
1167 deadlock in module load.
1168 */
1169 if (family == PF_INET && type == SOCK_PACKET) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001170 static int warned;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 if (!warned) {
1172 warned = 1;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001173 printk(KERN_INFO "%s uses obsolete (PF_INET,SOCK_PACKET)\n",
1174 current->comm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 }
1176 family = PF_PACKET;
1177 }
1178
1179 err = security_socket_create(family, type, protocol, kern);
1180 if (err)
1181 return err;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001182
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001183 /*
1184 * Allocate the socket and allow the family to set things up. if
1185 * the protocol is 0, the family is instructed to select an appropriate
1186 * default.
1187 */
1188 sock = sock_alloc();
1189 if (!sock) {
1190 if (net_ratelimit())
1191 printk(KERN_WARNING "socket: no more sockets\n");
1192 return -ENFILE; /* Not exactly a match, but its the
1193 closest posix thing */
1194 }
1195
1196 sock->type = type;
1197
Johannes Berg95a5afc2008-10-16 15:24:51 -07001198#ifdef CONFIG_MODULES
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001199 /* Attempt to load a protocol module if the find failed.
1200 *
1201 * 12/09/1996 Marcin: But! this makes REALLY only sense, if the user
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 * requested real, full-featured networking support upon configuration.
1203 * Otherwise module support will break!
1204 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001205 if (net_families[family] == NULL)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001206 request_module("net-pf-%d", family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207#endif
1208
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001209 rcu_read_lock();
1210 pf = rcu_dereference(net_families[family]);
1211 err = -EAFNOSUPPORT;
1212 if (!pf)
1213 goto out_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
1215 /*
1216 * We will call the ->create function, that possibly is in a loadable
1217 * module, so we have to bump that loadable module refcnt first.
1218 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001219 if (!try_module_get(pf->owner))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 goto out_release;
1221
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001222 /* Now protected by module ref count */
1223 rcu_read_unlock();
1224
Eric Paris3f378b62009-11-05 22:18:14 -08001225 err = pf->create(net, sock, protocol, kern);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001226 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 goto out_module_put;
Frank Filza79af592005-09-27 15:23:38 -07001228
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 /*
1230 * Now to bump the refcnt of the [loadable] module that owns this
1231 * socket at sock_release time we decrement its refcnt.
1232 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001233 if (!try_module_get(sock->ops->owner))
1234 goto out_module_busy;
1235
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 /*
1237 * Now that we're done with the ->create function, the [loadable]
1238 * module can have its refcnt decremented
1239 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001240 module_put(pf->owner);
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001241 err = security_socket_post_create(sock, family, type, protocol, kern);
1242 if (err)
Herbert Xu3b185522007-08-15 14:46:02 -07001243 goto out_sock_release;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001244 *res = sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001246 return 0;
1247
1248out_module_busy:
1249 err = -EAFNOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250out_module_put:
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001251 sock->ops = NULL;
1252 module_put(pf->owner);
1253out_sock_release:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 sock_release(sock);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001255 return err;
1256
1257out_release:
1258 rcu_read_unlock();
1259 goto out_sock_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260}
1261
1262int sock_create(int family, int type, int protocol, struct socket **res)
1263{
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001264 return __sock_create(current->nsproxy->net_ns, family, type, protocol, res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001266EXPORT_SYMBOL(sock_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
1268int sock_create_kern(int family, int type, int protocol, struct socket **res)
1269{
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001270 return __sock_create(&init_net, family, type, protocol, res, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001272EXPORT_SYMBOL(sock_create_kern);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001274SYSCALL_DEFINE3(socket, int, family, int, type, int, protocol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275{
1276 int retval;
1277 struct socket *sock;
Ulrich Dreppera677a032008-07-23 21:29:17 -07001278 int flags;
1279
Ulrich Dreppere38b36f2008-07-23 21:29:42 -07001280 /* Check the SOCK_* constants for consistency. */
1281 BUILD_BUG_ON(SOCK_CLOEXEC != O_CLOEXEC);
1282 BUILD_BUG_ON((SOCK_MAX | SOCK_TYPE_MASK) != SOCK_TYPE_MASK);
1283 BUILD_BUG_ON(SOCK_CLOEXEC & SOCK_TYPE_MASK);
1284 BUILD_BUG_ON(SOCK_NONBLOCK & SOCK_TYPE_MASK);
1285
Ulrich Dreppera677a032008-07-23 21:29:17 -07001286 flags = type & ~SOCK_TYPE_MASK;
Ulrich Drepper77d27202008-07-23 21:29:35 -07001287 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Dreppera677a032008-07-23 21:29:17 -07001288 return -EINVAL;
1289 type &= SOCK_TYPE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001291 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1292 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1293
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 retval = sock_create(family, type, protocol, &sock);
1295 if (retval < 0)
1296 goto out;
1297
Ulrich Drepper77d27202008-07-23 21:29:35 -07001298 retval = sock_map_fd(sock, flags & (O_CLOEXEC | O_NONBLOCK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 if (retval < 0)
1300 goto out_release;
1301
1302out:
1303 /* It may be already another descriptor 8) Not kernel problem. */
1304 return retval;
1305
1306out_release:
1307 sock_release(sock);
1308 return retval;
1309}
1310
1311/*
1312 * Create a pair of connected sockets.
1313 */
1314
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001315SYSCALL_DEFINE4(socketpair, int, family, int, type, int, protocol,
1316 int __user *, usockvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317{
1318 struct socket *sock1, *sock2;
1319 int fd1, fd2, err;
Al Virodb349502007-02-07 01:48:00 -05001320 struct file *newfile1, *newfile2;
Ulrich Dreppera677a032008-07-23 21:29:17 -07001321 int flags;
1322
1323 flags = type & ~SOCK_TYPE_MASK;
Ulrich Drepper77d27202008-07-23 21:29:35 -07001324 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Dreppera677a032008-07-23 21:29:17 -07001325 return -EINVAL;
1326 type &= SOCK_TYPE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001328 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1329 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1330
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 /*
1332 * Obtain the first socket and check if the underlying protocol
1333 * supports the socketpair call.
1334 */
1335
1336 err = sock_create(family, type, protocol, &sock1);
1337 if (err < 0)
1338 goto out;
1339
1340 err = sock_create(family, type, protocol, &sock2);
1341 if (err < 0)
1342 goto out_release_1;
1343
1344 err = sock1->ops->socketpair(sock1, sock2);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001345 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 goto out_release_both;
1347
Al Viro7cbe66b2009-08-05 19:59:08 +04001348 fd1 = sock_alloc_file(sock1, &newfile1, flags);
David S. Millerbf3c23d2007-10-29 21:54:02 -07001349 if (unlikely(fd1 < 0)) {
1350 err = fd1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 goto out_release_both;
David S. Millerbf3c23d2007-10-29 21:54:02 -07001352 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
Al Viro7cbe66b2009-08-05 19:59:08 +04001354 fd2 = sock_alloc_file(sock2, &newfile2, flags);
Al Viro198de4d2009-08-05 19:29:23 +04001355 if (unlikely(fd2 < 0)) {
1356 err = fd2;
1357 fput(newfile1);
1358 put_unused_fd(fd1);
1359 sock_release(sock2);
1360 goto out;
Al Virodb349502007-02-07 01:48:00 -05001361 }
1362
Al Viro157cf642008-12-14 04:57:47 -05001363 audit_fd_pair(fd1, fd2);
Al Virodb349502007-02-07 01:48:00 -05001364 fd_install(fd1, newfile1);
1365 fd_install(fd2, newfile2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 /* fd1 and fd2 may be already another descriptors.
1367 * Not kernel problem.
1368 */
1369
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001370 err = put_user(fd1, &usockvec[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 if (!err)
1372 err = put_user(fd2, &usockvec[1]);
1373 if (!err)
1374 return 0;
1375
1376 sys_close(fd2);
1377 sys_close(fd1);
1378 return err;
1379
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380out_release_both:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001381 sock_release(sock2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382out_release_1:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001383 sock_release(sock1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384out:
1385 return err;
1386}
1387
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388/*
1389 * Bind a name to a socket. Nothing much to do here since it's
1390 * the protocol's responsibility to handle the local address.
1391 *
1392 * We move the socket address to kernel space before we call
1393 * the protocol layer (having also checked the address is ok).
1394 */
1395
Heiko Carstens20f37032009-01-14 14:14:23 +01001396SYSCALL_DEFINE3(bind, int, fd, struct sockaddr __user *, umyaddr, int, addrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397{
1398 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001399 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001400 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001402 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001403 if (sock) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001404 err = move_addr_to_kernel(umyaddr, addrlen, (struct sockaddr *)&address);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001405 if (err >= 0) {
1406 err = security_socket_bind(sock,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001407 (struct sockaddr *)&address,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001408 addrlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001409 if (!err)
1410 err = sock->ops->bind(sock,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001411 (struct sockaddr *)
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001412 &address, addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 }
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001414 fput_light(sock->file, fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001415 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 return err;
1417}
1418
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419/*
1420 * Perform a listen. Basically, we allow the protocol to do anything
1421 * necessary for a listen, and if that works, we mark the socket as
1422 * ready for listening.
1423 */
1424
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001425SYSCALL_DEFINE2(listen, int, fd, int, backlog)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426{
1427 struct socket *sock;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001428 int err, fput_needed;
Pavel Emelyanovb8e1f9b2007-12-08 00:12:33 -08001429 int somaxconn;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001430
1431 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1432 if (sock) {
Pavel Emelyanov8efa6e92008-03-31 19:41:14 -07001433 somaxconn = sock_net(sock->sk)->core.sysctl_somaxconn;
Pavel Emelyanovb8e1f9b2007-12-08 00:12:33 -08001434 if ((unsigned)backlog > somaxconn)
1435 backlog = somaxconn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436
1437 err = security_socket_listen(sock, backlog);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001438 if (!err)
1439 err = sock->ops->listen(sock, backlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001441 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 }
1443 return err;
1444}
1445
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446/*
1447 * For accept, we attempt to create a new socket, set up the link
1448 * with the client, wake up the client, then return the new
1449 * connected fd. We collect the address of the connector in kernel
1450 * space and move it to user at the very end. This is unclean because
1451 * we open the socket then return an error.
1452 *
1453 * 1003.1g adds the ability to recvmsg() to query connection pending
1454 * status to recvmsg. We need to add that support in a way thats
1455 * clean when we restucture accept also.
1456 */
1457
Heiko Carstens20f37032009-01-14 14:14:23 +01001458SYSCALL_DEFINE4(accept4, int, fd, struct sockaddr __user *, upeer_sockaddr,
1459 int __user *, upeer_addrlen, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460{
1461 struct socket *sock, *newsock;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001462 struct file *newfile;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001463 int err, len, newfd, fput_needed;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001464 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
Ulrich Drepper77d27202008-07-23 21:29:35 -07001466 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001467 return -EINVAL;
1468
1469 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1470 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1471
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001472 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 if (!sock)
1474 goto out;
1475
1476 err = -ENFILE;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001477 newsock = sock_alloc();
1478 if (!newsock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 goto out_put;
1480
1481 newsock->type = sock->type;
1482 newsock->ops = sock->ops;
1483
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 /*
1485 * We don't need try_module_get here, as the listening socket (sock)
1486 * has the protocol module (sock->ops->owner) held.
1487 */
1488 __module_get(newsock->ops->owner);
1489
Al Viro7cbe66b2009-08-05 19:59:08 +04001490 newfd = sock_alloc_file(newsock, &newfile, flags);
David S. Miller39d8c1b2006-03-20 17:13:49 -08001491 if (unlikely(newfd < 0)) {
1492 err = newfd;
David S. Miller9a1875e2006-04-01 12:48:36 -08001493 sock_release(newsock);
1494 goto out_put;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001495 }
1496
Frank Filza79af592005-09-27 15:23:38 -07001497 err = security_socket_accept(sock, newsock);
1498 if (err)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001499 goto out_fd;
Frank Filza79af592005-09-27 15:23:38 -07001500
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 err = sock->ops->accept(sock, newsock, sock->file->f_flags);
1502 if (err < 0)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001503 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504
1505 if (upeer_sockaddr) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001506 if (newsock->ops->getname(newsock, (struct sockaddr *)&address,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001507 &len, 2) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 err = -ECONNABORTED;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001509 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 }
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001511 err = move_addr_to_user((struct sockaddr *)&address,
1512 len, upeer_sockaddr, upeer_addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 if (err < 0)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001514 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 }
1516
1517 /* File flags are not inherited via accept() unlike another OSes. */
1518
David S. Miller39d8c1b2006-03-20 17:13:49 -08001519 fd_install(newfd, newfile);
1520 err = newfd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001523 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524out:
1525 return err;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001526out_fd:
David S. Miller9606a212006-04-01 01:00:14 -08001527 fput(newfile);
David S. Miller39d8c1b2006-03-20 17:13:49 -08001528 put_unused_fd(newfd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 goto out_put;
1530}
1531
Heiko Carstens20f37032009-01-14 14:14:23 +01001532SYSCALL_DEFINE3(accept, int, fd, struct sockaddr __user *, upeer_sockaddr,
1533 int __user *, upeer_addrlen)
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001534{
Ulrich Drepperde11def2008-11-19 15:36:14 -08001535 return sys_accept4(fd, upeer_sockaddr, upeer_addrlen, 0);
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001536}
1537
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538/*
1539 * Attempt to connect to a socket with the server address. The address
1540 * is in user space so we verify it is OK and move it to kernel space.
1541 *
1542 * For 1003.1g we need to add clean support for a bind to AF_UNSPEC to
1543 * break bindings
1544 *
1545 * NOTE: 1003.1g draft 6.3 is broken with respect to AX.25/NetROM and
1546 * other SEQPACKET protocols that take time to connect() as it doesn't
1547 * include the -EINPROGRESS status for such sockets.
1548 */
1549
Heiko Carstens20f37032009-01-14 14:14:23 +01001550SYSCALL_DEFINE3(connect, int, fd, struct sockaddr __user *, uservaddr,
1551 int, addrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552{
1553 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001554 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001555 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001557 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 if (!sock)
1559 goto out;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001560 err = move_addr_to_kernel(uservaddr, addrlen, (struct sockaddr *)&address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 if (err < 0)
1562 goto out_put;
1563
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001564 err =
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001565 security_socket_connect(sock, (struct sockaddr *)&address, addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 if (err)
1567 goto out_put;
1568
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001569 err = sock->ops->connect(sock, (struct sockaddr *)&address, addrlen,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 sock->file->f_flags);
1571out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001572 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573out:
1574 return err;
1575}
1576
1577/*
1578 * Get the local address ('name') of a socket object. Move the obtained
1579 * name to user space.
1580 */
1581
Heiko Carstens20f37032009-01-14 14:14:23 +01001582SYSCALL_DEFINE3(getsockname, int, fd, struct sockaddr __user *, usockaddr,
1583 int __user *, usockaddr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584{
1585 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001586 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001587 int len, err, fput_needed;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001588
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001589 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 if (!sock)
1591 goto out;
1592
1593 err = security_socket_getsockname(sock);
1594 if (err)
1595 goto out_put;
1596
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001597 err = sock->ops->getname(sock, (struct sockaddr *)&address, &len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 if (err)
1599 goto out_put;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001600 err = move_addr_to_user((struct sockaddr *)&address, len, usockaddr, usockaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601
1602out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001603 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604out:
1605 return err;
1606}
1607
1608/*
1609 * Get the remote address ('name') of a socket object. Move the obtained
1610 * name to user space.
1611 */
1612
Heiko Carstens20f37032009-01-14 14:14:23 +01001613SYSCALL_DEFINE3(getpeername, int, fd, struct sockaddr __user *, usockaddr,
1614 int __user *, usockaddr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615{
1616 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001617 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001618 int len, err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001620 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1621 if (sock != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 err = security_socket_getpeername(sock);
1623 if (err) {
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001624 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 return err;
1626 }
1627
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001628 err =
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001629 sock->ops->getname(sock, (struct sockaddr *)&address, &len,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001630 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 if (!err)
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001632 err = move_addr_to_user((struct sockaddr *)&address, len, usockaddr,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001633 usockaddr_len);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001634 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 }
1636 return err;
1637}
1638
1639/*
1640 * Send a datagram to a given address. We move the address into kernel
1641 * space and check the user space data area is readable before invoking
1642 * the protocol.
1643 */
1644
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001645SYSCALL_DEFINE6(sendto, int, fd, void __user *, buff, size_t, len,
1646 unsigned, flags, struct sockaddr __user *, addr,
1647 int, addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648{
1649 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001650 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 int err;
1652 struct msghdr msg;
1653 struct iovec iov;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001654 int fput_needed;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001655
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001656 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1657 if (!sock)
David S. Miller4387ff72007-02-08 15:06:08 -08001658 goto out;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001659
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001660 iov.iov_base = buff;
1661 iov.iov_len = len;
1662 msg.msg_name = NULL;
1663 msg.msg_iov = &iov;
1664 msg.msg_iovlen = 1;
1665 msg.msg_control = NULL;
1666 msg.msg_controllen = 0;
1667 msg.msg_namelen = 0;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001668 if (addr) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001669 err = move_addr_to_kernel(addr, addr_len, (struct sockaddr *)&address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 if (err < 0)
1671 goto out_put;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001672 msg.msg_name = (struct sockaddr *)&address;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001673 msg.msg_namelen = addr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 }
1675 if (sock->file->f_flags & O_NONBLOCK)
1676 flags |= MSG_DONTWAIT;
1677 msg.msg_flags = flags;
1678 err = sock_sendmsg(sock, &msg, len);
1679
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001680out_put:
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001681 fput_light(sock->file, fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08001682out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 return err;
1684}
1685
1686/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001687 * Send a datagram down a socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 */
1689
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001690SYSCALL_DEFINE4(send, int, fd, void __user *, buff, size_t, len,
1691 unsigned, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692{
1693 return sys_sendto(fd, buff, len, flags, NULL, 0);
1694}
1695
1696/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001697 * Receive a frame from the socket and optionally record the address of the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 * sender. We verify the buffers are writable and if needed move the
1699 * sender address from kernel to user space.
1700 */
1701
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001702SYSCALL_DEFINE6(recvfrom, int, fd, void __user *, ubuf, size_t, size,
1703 unsigned, flags, struct sockaddr __user *, addr,
1704 int __user *, addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705{
1706 struct socket *sock;
1707 struct iovec iov;
1708 struct msghdr msg;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001709 struct sockaddr_storage address;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001710 int err, err2;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001711 int fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001713 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 if (!sock)
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001715 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001717 msg.msg_control = NULL;
1718 msg.msg_controllen = 0;
1719 msg.msg_iovlen = 1;
1720 msg.msg_iov = &iov;
1721 iov.iov_len = size;
1722 iov.iov_base = ubuf;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001723 msg.msg_name = (struct sockaddr *)&address;
1724 msg.msg_namelen = sizeof(address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 if (sock->file->f_flags & O_NONBLOCK)
1726 flags |= MSG_DONTWAIT;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001727 err = sock_recvmsg(sock, &msg, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001729 if (err >= 0 && addr != NULL) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001730 err2 = move_addr_to_user((struct sockaddr *)&address,
1731 msg.msg_namelen, addr, addr_len);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001732 if (err2 < 0)
1733 err = err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 }
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001735
1736 fput_light(sock->file, fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08001737out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 return err;
1739}
1740
1741/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001742 * Receive a datagram from a socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 */
1744
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001745asmlinkage long sys_recv(int fd, void __user *ubuf, size_t size,
1746 unsigned flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747{
1748 return sys_recvfrom(fd, ubuf, size, flags, NULL, NULL);
1749}
1750
1751/*
1752 * Set a socket option. Because we don't know the option lengths we have
1753 * to pass the user mode parameter for the protocols to sort out.
1754 */
1755
Heiko Carstens20f37032009-01-14 14:14:23 +01001756SYSCALL_DEFINE5(setsockopt, int, fd, int, level, int, optname,
1757 char __user *, optval, int, optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001759 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 struct socket *sock;
1761
1762 if (optlen < 0)
1763 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001764
1765 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1766 if (sock != NULL) {
1767 err = security_socket_setsockopt(sock, level, optname);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001768 if (err)
1769 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770
1771 if (level == SOL_SOCKET)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001772 err =
1773 sock_setsockopt(sock, level, optname, optval,
1774 optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 else
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001776 err =
1777 sock->ops->setsockopt(sock, level, optname, optval,
1778 optlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001779out_put:
1780 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 }
1782 return err;
1783}
1784
1785/*
1786 * Get a socket option. Because we don't know the option lengths we have
1787 * to pass a user mode parameter for the protocols to sort out.
1788 */
1789
Heiko Carstens20f37032009-01-14 14:14:23 +01001790SYSCALL_DEFINE5(getsockopt, int, fd, int, level, int, optname,
1791 char __user *, optval, int __user *, optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001793 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 struct socket *sock;
1795
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001796 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1797 if (sock != NULL) {
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001798 err = security_socket_getsockopt(sock, level, optname);
1799 if (err)
1800 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801
1802 if (level == SOL_SOCKET)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001803 err =
1804 sock_getsockopt(sock, level, optname, optval,
1805 optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 else
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001807 err =
1808 sock->ops->getsockopt(sock, level, optname, optval,
1809 optlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001810out_put:
1811 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 }
1813 return err;
1814}
1815
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816/*
1817 * Shutdown a socket.
1818 */
1819
Heiko Carstens754fe8d2009-01-14 14:14:09 +01001820SYSCALL_DEFINE2(shutdown, int, fd, int, how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001822 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 struct socket *sock;
1824
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001825 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1826 if (sock != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 err = security_socket_shutdown(sock, how);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001828 if (!err)
1829 err = sock->ops->shutdown(sock, how);
1830 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 }
1832 return err;
1833}
1834
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001835/* A couple of helpful macros for getting the address of the 32/64 bit
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 * fields which are the same type (int / unsigned) on our platforms.
1837 */
1838#define COMPAT_MSG(msg, member) ((MSG_CMSG_COMPAT & flags) ? &msg##_compat->member : &msg->member)
1839#define COMPAT_NAMELEN(msg) COMPAT_MSG(msg, msg_namelen)
1840#define COMPAT_FLAGS(msg) COMPAT_MSG(msg, msg_flags)
1841
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842/*
1843 * BSD sendmsg interface
1844 */
1845
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001846SYSCALL_DEFINE3(sendmsg, int, fd, struct msghdr __user *, msg, unsigned, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001848 struct compat_msghdr __user *msg_compat =
1849 (struct compat_msghdr __user *)msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001851 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 struct iovec iovstack[UIO_FASTIOV], *iov = iovstack;
Alex Williamsonb9d717a2005-09-26 14:28:02 -07001853 unsigned char ctl[sizeof(struct cmsghdr) + 20]
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001854 __attribute__ ((aligned(sizeof(__kernel_size_t))));
1855 /* 20 is size of ipv6_pktinfo */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 unsigned char *ctl_buf = ctl;
1857 struct msghdr msg_sys;
1858 int err, ctl_len, iov_size, total_len;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001859 int fput_needed;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001860
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 err = -EFAULT;
1862 if (MSG_CMSG_COMPAT & flags) {
1863 if (get_compat_msghdr(&msg_sys, msg_compat))
1864 return -EFAULT;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001865 } else if (copy_from_user(&msg_sys, msg, sizeof(struct msghdr)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 return -EFAULT;
1867
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001868 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001869 if (!sock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 goto out;
1871
1872 /* do not move before msg_sys is valid */
1873 err = -EMSGSIZE;
1874 if (msg_sys.msg_iovlen > UIO_MAXIOV)
1875 goto out_put;
1876
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001877 /* Check whether to allocate the iovec area */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 err = -ENOMEM;
1879 iov_size = msg_sys.msg_iovlen * sizeof(struct iovec);
1880 if (msg_sys.msg_iovlen > UIO_FASTIOV) {
1881 iov = sock_kmalloc(sock->sk, iov_size, GFP_KERNEL);
1882 if (!iov)
1883 goto out_put;
1884 }
1885
1886 /* This will also move the address data into kernel space */
1887 if (MSG_CMSG_COMPAT & flags) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001888 err = verify_compat_iovec(&msg_sys, iov,
1889 (struct sockaddr *)&address,
1890 VERIFY_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 } else
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001892 err = verify_iovec(&msg_sys, iov,
1893 (struct sockaddr *)&address,
1894 VERIFY_READ);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001895 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 goto out_freeiov;
1897 total_len = err;
1898
1899 err = -ENOBUFS;
1900
1901 if (msg_sys.msg_controllen > INT_MAX)
1902 goto out_freeiov;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001903 ctl_len = msg_sys.msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 if ((MSG_CMSG_COMPAT & flags) && ctl_len) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001905 err =
1906 cmsghdr_from_user_compat_to_kern(&msg_sys, sock->sk, ctl,
1907 sizeof(ctl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 if (err)
1909 goto out_freeiov;
1910 ctl_buf = msg_sys.msg_control;
Al Viro8920e8f2005-09-07 18:28:51 -07001911 ctl_len = msg_sys.msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 } else if (ctl_len) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001913 if (ctl_len > sizeof(ctl)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 ctl_buf = sock_kmalloc(sock->sk, ctl_len, GFP_KERNEL);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001915 if (ctl_buf == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 goto out_freeiov;
1917 }
1918 err = -EFAULT;
1919 /*
1920 * Careful! Before this, msg_sys.msg_control contains a user pointer.
1921 * Afterwards, it will be a kernel pointer. Thus the compiler-assisted
1922 * checking falls down on this.
1923 */
Namhyung Kimfb8621b2010-09-07 03:55:00 +00001924 if (copy_from_user(ctl_buf,
1925 (void __user __force *)msg_sys.msg_control,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001926 ctl_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 goto out_freectl;
1928 msg_sys.msg_control = ctl_buf;
1929 }
1930 msg_sys.msg_flags = flags;
1931
1932 if (sock->file->f_flags & O_NONBLOCK)
1933 msg_sys.msg_flags |= MSG_DONTWAIT;
1934 err = sock_sendmsg(sock, &msg_sys, total_len);
1935
1936out_freectl:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001937 if (ctl_buf != ctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 sock_kfree_s(sock->sk, ctl_buf, ctl_len);
1939out_freeiov:
1940 if (iov != iovstack)
1941 sock_kfree_s(sock->sk, iov, iov_size);
1942out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001943 fput_light(sock->file, fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001944out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 return err;
1946}
1947
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07001948static int __sys_recvmsg(struct socket *sock, struct msghdr __user *msg,
1949 struct msghdr *msg_sys, unsigned flags, int nosec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001951 struct compat_msghdr __user *msg_compat =
1952 (struct compat_msghdr __user *)msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 struct iovec iovstack[UIO_FASTIOV];
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001954 struct iovec *iov = iovstack;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 unsigned long cmsg_ptr;
1956 int err, iov_size, total_len, len;
1957
1958 /* kernel mode address */
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001959 struct sockaddr_storage addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960
1961 /* user mode address pointers */
1962 struct sockaddr __user *uaddr;
1963 int __user *uaddr_len;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001964
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 if (MSG_CMSG_COMPAT & flags) {
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07001966 if (get_compat_msghdr(msg_sys, msg_compat))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 return -EFAULT;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001968 } else if (copy_from_user(msg_sys, msg, sizeof(struct msghdr)))
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001969 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 err = -EMSGSIZE;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07001972 if (msg_sys->msg_iovlen > UIO_MAXIOV)
1973 goto out;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001974
1975 /* Check whether to allocate the iovec area */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 err = -ENOMEM;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07001977 iov_size = msg_sys->msg_iovlen * sizeof(struct iovec);
1978 if (msg_sys->msg_iovlen > UIO_FASTIOV) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 iov = sock_kmalloc(sock->sk, iov_size, GFP_KERNEL);
1980 if (!iov)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07001981 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 }
1983
1984 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001985 * Save the user-mode address (verify_iovec will change the
1986 * kernel msghdr to use the kernel address space)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001988
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07001989 uaddr = (__force void __user *)msg_sys->msg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 uaddr_len = COMPAT_NAMELEN(msg);
1991 if (MSG_CMSG_COMPAT & flags) {
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07001992 err = verify_compat_iovec(msg_sys, iov,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001993 (struct sockaddr *)&addr,
1994 VERIFY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 } else
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07001996 err = verify_iovec(msg_sys, iov,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001997 (struct sockaddr *)&addr,
1998 VERIFY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 if (err < 0)
2000 goto out_freeiov;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002001 total_len = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002003 cmsg_ptr = (unsigned long)msg_sys->msg_control;
2004 msg_sys->msg_flags = flags & (MSG_CMSG_CLOEXEC|MSG_CMSG_COMPAT);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002005
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 if (sock->file->f_flags & O_NONBLOCK)
2007 flags |= MSG_DONTWAIT;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002008 err = (nosec ? sock_recvmsg_nosec : sock_recvmsg)(sock, msg_sys,
2009 total_len, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 if (err < 0)
2011 goto out_freeiov;
2012 len = err;
2013
2014 if (uaddr != NULL) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07002015 err = move_addr_to_user((struct sockaddr *)&addr,
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002016 msg_sys->msg_namelen, uaddr,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002017 uaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 if (err < 0)
2019 goto out_freeiov;
2020 }
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002021 err = __put_user((msg_sys->msg_flags & ~MSG_CMSG_COMPAT),
David S. Miller37f7f422005-09-16 16:51:01 -07002022 COMPAT_FLAGS(msg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 if (err)
2024 goto out_freeiov;
2025 if (MSG_CMSG_COMPAT & flags)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002026 err = __put_user((unsigned long)msg_sys->msg_control - cmsg_ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 &msg_compat->msg_controllen);
2028 else
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002029 err = __put_user((unsigned long)msg_sys->msg_control - cmsg_ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 &msg->msg_controllen);
2031 if (err)
2032 goto out_freeiov;
2033 err = len;
2034
2035out_freeiov:
2036 if (iov != iovstack)
2037 sock_kfree_s(sock->sk, iov, iov_size);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002038out:
2039 return err;
2040}
2041
2042/*
2043 * BSD recvmsg interface
2044 */
2045
2046SYSCALL_DEFINE3(recvmsg, int, fd, struct msghdr __user *, msg,
2047 unsigned int, flags)
2048{
2049 int fput_needed, err;
2050 struct msghdr msg_sys;
2051 struct socket *sock = sockfd_lookup_light(fd, &err, &fput_needed);
2052
2053 if (!sock)
2054 goto out;
2055
2056 err = __sys_recvmsg(sock, msg, &msg_sys, flags, 0);
2057
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002058 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059out:
2060 return err;
2061}
2062
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002063/*
2064 * Linux recvmmsg interface
2065 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002067int __sys_recvmmsg(int fd, struct mmsghdr __user *mmsg, unsigned int vlen,
2068 unsigned int flags, struct timespec *timeout)
2069{
2070 int fput_needed, err, datagrams;
2071 struct socket *sock;
2072 struct mmsghdr __user *entry;
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002073 struct compat_mmsghdr __user *compat_entry;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002074 struct msghdr msg_sys;
2075 struct timespec end_time;
2076
2077 if (timeout &&
2078 poll_select_set_timeout(&end_time, timeout->tv_sec,
2079 timeout->tv_nsec))
2080 return -EINVAL;
2081
2082 datagrams = 0;
2083
2084 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2085 if (!sock)
2086 return err;
2087
2088 err = sock_error(sock->sk);
2089 if (err)
2090 goto out_put;
2091
2092 entry = mmsg;
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002093 compat_entry = (struct compat_mmsghdr __user *)mmsg;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002094
2095 while (datagrams < vlen) {
2096 /*
2097 * No need to ask LSM for more than the first datagram.
2098 */
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002099 if (MSG_CMSG_COMPAT & flags) {
2100 err = __sys_recvmsg(sock, (struct msghdr __user *)compat_entry,
2101 &msg_sys, flags, datagrams);
2102 if (err < 0)
2103 break;
2104 err = __put_user(err, &compat_entry->msg_len);
2105 ++compat_entry;
2106 } else {
2107 err = __sys_recvmsg(sock, (struct msghdr __user *)entry,
2108 &msg_sys, flags, datagrams);
2109 if (err < 0)
2110 break;
2111 err = put_user(err, &entry->msg_len);
2112 ++entry;
2113 }
2114
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002115 if (err)
2116 break;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002117 ++datagrams;
2118
Brandon L Black71c5c152010-03-26 16:18:03 +00002119 /* MSG_WAITFORONE turns on MSG_DONTWAIT after one packet */
2120 if (flags & MSG_WAITFORONE)
2121 flags |= MSG_DONTWAIT;
2122
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002123 if (timeout) {
2124 ktime_get_ts(timeout);
2125 *timeout = timespec_sub(end_time, *timeout);
2126 if (timeout->tv_sec < 0) {
2127 timeout->tv_sec = timeout->tv_nsec = 0;
2128 break;
2129 }
2130
2131 /* Timeout, return less than vlen datagrams */
2132 if (timeout->tv_nsec == 0 && timeout->tv_sec == 0)
2133 break;
2134 }
2135
2136 /* Out of band data, return right away */
2137 if (msg_sys.msg_flags & MSG_OOB)
2138 break;
2139 }
2140
2141out_put:
2142 fput_light(sock->file, fput_needed);
2143
2144 if (err == 0)
2145 return datagrams;
2146
2147 if (datagrams != 0) {
2148 /*
2149 * We may return less entries than requested (vlen) if the
2150 * sock is non block and there aren't enough datagrams...
2151 */
2152 if (err != -EAGAIN) {
2153 /*
2154 * ... or if recvmsg returns an error after we
2155 * received some datagrams, where we record the
2156 * error to return on the next call or if the
2157 * app asks about it using getsockopt(SO_ERROR).
2158 */
2159 sock->sk->sk_err = -err;
2160 }
2161
2162 return datagrams;
2163 }
2164
2165 return err;
2166}
2167
2168SYSCALL_DEFINE5(recvmmsg, int, fd, struct mmsghdr __user *, mmsg,
2169 unsigned int, vlen, unsigned int, flags,
2170 struct timespec __user *, timeout)
2171{
2172 int datagrams;
2173 struct timespec timeout_sys;
2174
2175 if (!timeout)
2176 return __sys_recvmmsg(fd, mmsg, vlen, flags, NULL);
2177
2178 if (copy_from_user(&timeout_sys, timeout, sizeof(timeout_sys)))
2179 return -EFAULT;
2180
2181 datagrams = __sys_recvmmsg(fd, mmsg, vlen, flags, &timeout_sys);
2182
2183 if (datagrams > 0 &&
2184 copy_to_user(timeout, &timeout_sys, sizeof(timeout_sys)))
2185 datagrams = -EFAULT;
2186
2187 return datagrams;
2188}
2189
2190#ifdef __ARCH_WANT_SYS_SOCKETCALL
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191/* Argument list sizes for sys_socketcall */
2192#define AL(x) ((x) * sizeof(unsigned long))
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002193static const unsigned char nargs[20] = {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002194 AL(0), AL(3), AL(3), AL(3), AL(2), AL(3),
2195 AL(3), AL(3), AL(4), AL(4), AL(4), AL(6),
2196 AL(6), AL(2), AL(5), AL(5), AL(3), AL(3),
2197 AL(4), AL(5)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002198};
2199
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200#undef AL
2201
2202/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002203 * System call vectors.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 *
2205 * Argument checking cleaned up. Saved 20% in size.
2206 * This function doesn't need to set the kernel lock because
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002207 * it is set by the callees.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 */
2209
Heiko Carstens3e0fa652009-01-14 14:14:24 +01002210SYSCALL_DEFINE2(socketcall, int, call, unsigned long __user *, args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211{
2212 unsigned long a[6];
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002213 unsigned long a0, a1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 int err;
Arjan van de Ven47379052009-09-28 12:57:44 -07002215 unsigned int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002217 if (call < 1 || call > SYS_RECVMMSG)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 return -EINVAL;
2219
Arjan van de Ven47379052009-09-28 12:57:44 -07002220 len = nargs[call];
2221 if (len > sizeof(a))
2222 return -EINVAL;
2223
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 /* copy_from_user should be SMP safe. */
Arjan van de Ven47379052009-09-28 12:57:44 -07002225 if (copy_from_user(a, args, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 return -EFAULT;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002227
Al Virof3298dc2008-12-10 03:16:51 -05002228 audit_socketcall(nargs[call] / sizeof(unsigned long), a);
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002229
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002230 a0 = a[0];
2231 a1 = a[1];
2232
2233 switch (call) {
2234 case SYS_SOCKET:
2235 err = sys_socket(a0, a1, a[2]);
2236 break;
2237 case SYS_BIND:
2238 err = sys_bind(a0, (struct sockaddr __user *)a1, a[2]);
2239 break;
2240 case SYS_CONNECT:
2241 err = sys_connect(a0, (struct sockaddr __user *)a1, a[2]);
2242 break;
2243 case SYS_LISTEN:
2244 err = sys_listen(a0, a1);
2245 break;
2246 case SYS_ACCEPT:
Ulrich Drepperde11def2008-11-19 15:36:14 -08002247 err = sys_accept4(a0, (struct sockaddr __user *)a1,
2248 (int __user *)a[2], 0);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002249 break;
2250 case SYS_GETSOCKNAME:
2251 err =
2252 sys_getsockname(a0, (struct sockaddr __user *)a1,
2253 (int __user *)a[2]);
2254 break;
2255 case SYS_GETPEERNAME:
2256 err =
2257 sys_getpeername(a0, (struct sockaddr __user *)a1,
2258 (int __user *)a[2]);
2259 break;
2260 case SYS_SOCKETPAIR:
2261 err = sys_socketpair(a0, a1, a[2], (int __user *)a[3]);
2262 break;
2263 case SYS_SEND:
2264 err = sys_send(a0, (void __user *)a1, a[2], a[3]);
2265 break;
2266 case SYS_SENDTO:
2267 err = sys_sendto(a0, (void __user *)a1, a[2], a[3],
2268 (struct sockaddr __user *)a[4], a[5]);
2269 break;
2270 case SYS_RECV:
2271 err = sys_recv(a0, (void __user *)a1, a[2], a[3]);
2272 break;
2273 case SYS_RECVFROM:
2274 err = sys_recvfrom(a0, (void __user *)a1, a[2], a[3],
2275 (struct sockaddr __user *)a[4],
2276 (int __user *)a[5]);
2277 break;
2278 case SYS_SHUTDOWN:
2279 err = sys_shutdown(a0, a1);
2280 break;
2281 case SYS_SETSOCKOPT:
2282 err = sys_setsockopt(a0, a1, a[2], (char __user *)a[3], a[4]);
2283 break;
2284 case SYS_GETSOCKOPT:
2285 err =
2286 sys_getsockopt(a0, a1, a[2], (char __user *)a[3],
2287 (int __user *)a[4]);
2288 break;
2289 case SYS_SENDMSG:
2290 err = sys_sendmsg(a0, (struct msghdr __user *)a1, a[2]);
2291 break;
2292 case SYS_RECVMSG:
2293 err = sys_recvmsg(a0, (struct msghdr __user *)a1, a[2]);
2294 break;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002295 case SYS_RECVMMSG:
2296 err = sys_recvmmsg(a0, (struct mmsghdr __user *)a1, a[2], a[3],
2297 (struct timespec __user *)a[4]);
2298 break;
Ulrich Drepperde11def2008-11-19 15:36:14 -08002299 case SYS_ACCEPT4:
2300 err = sys_accept4(a0, (struct sockaddr __user *)a1,
2301 (int __user *)a[2], a[3]);
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07002302 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002303 default:
2304 err = -EINVAL;
2305 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 }
2307 return err;
2308}
2309
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002310#endif /* __ARCH_WANT_SYS_SOCKETCALL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002312/**
2313 * sock_register - add a socket protocol handler
2314 * @ops: description of protocol
2315 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 * This function is called by a protocol handler that wants to
2317 * advertise its address family, and have it linked into the
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002318 * socket interface. The value ops->family coresponds to the
2319 * socket system call protocol family.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 */
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002321int sock_register(const struct net_proto_family *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322{
2323 int err;
2324
2325 if (ops->family >= NPROTO) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002326 printk(KERN_CRIT "protocol %d >= NPROTO(%d)\n", ops->family,
2327 NPROTO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 return -ENOBUFS;
2329 }
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002330
2331 spin_lock(&net_family_lock);
2332 if (net_families[ops->family])
2333 err = -EEXIST;
2334 else {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002335 net_families[ops->family] = ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 err = 0;
2337 }
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002338 spin_unlock(&net_family_lock);
2339
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002340 printk(KERN_INFO "NET: Registered protocol family %d\n", ops->family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 return err;
2342}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002343EXPORT_SYMBOL(sock_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002345/**
2346 * sock_unregister - remove a protocol handler
2347 * @family: protocol family to remove
2348 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 * This function is called by a protocol handler that wants to
2350 * remove its address family, and have it unlinked from the
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002351 * new socket creation.
2352 *
2353 * If protocol handler is a module, then it can use module reference
2354 * counts to protect against new references. If protocol handler is not
2355 * a module then it needs to provide its own protection in
2356 * the ops->create routine.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 */
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002358void sock_unregister(int family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359{
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002360 BUG_ON(family < 0 || family >= NPROTO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002362 spin_lock(&net_family_lock);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002363 net_families[family] = NULL;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002364 spin_unlock(&net_family_lock);
2365
2366 synchronize_rcu();
2367
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002368 printk(KERN_INFO "NET: Unregistered protocol family %d\n", family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002370EXPORT_SYMBOL(sock_unregister);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371
Andi Kleen77d76ea2005-12-22 12:43:42 -08002372static int __init sock_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373{
2374 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002375 * Initialize sock SLAB cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002377
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 sk_init();
2379
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002381 * Initialize skbuff SLAB cache
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 */
2383 skb_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384
2385 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002386 * Initialize the protocols module.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 */
2388
2389 init_inodecache();
2390 register_filesystem(&sock_fs_type);
2391 sock_mnt = kern_mount(&sock_fs_type);
Andi Kleen77d76ea2005-12-22 12:43:42 -08002392
2393 /* The real protocol initialization is performed in later initcalls.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 */
2395
2396#ifdef CONFIG_NETFILTER
2397 netfilter_init();
2398#endif
David S. Millercbeb3212005-12-22 12:58:55 -08002399
Richard Cochranc1f19b52010-07-17 08:49:36 +00002400#ifdef CONFIG_NETWORK_PHY_TIMESTAMPING
2401 skb_timestamping_init();
2402#endif
2403
David S. Millercbeb3212005-12-22 12:58:55 -08002404 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405}
2406
Andi Kleen77d76ea2005-12-22 12:43:42 -08002407core_initcall(sock_init); /* early initcall */
2408
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409#ifdef CONFIG_PROC_FS
2410void socket_seq_show(struct seq_file *seq)
2411{
2412 int cpu;
2413 int counter = 0;
2414
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -07002415 for_each_possible_cpu(cpu)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002416 counter += per_cpu(sockets_in_use, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417
2418 /* It can be negative, by the way. 8) */
2419 if (counter < 0)
2420 counter = 0;
2421
2422 seq_printf(seq, "sockets: used %d\n", counter);
2423}
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002424#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425
Shaun Pereira89bbfc92006-03-21 23:58:08 -08002426#ifdef CONFIG_COMPAT
Arnd Bergmann6b960182009-11-06 23:10:54 -08002427static int do_siocgstamp(struct net *net, struct socket *sock,
2428 unsigned int cmd, struct compat_timeval __user *up)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002429{
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002430 mm_segment_t old_fs = get_fs();
2431 struct timeval ktv;
2432 int err;
2433
2434 set_fs(KERNEL_DS);
Arnd Bergmann6b960182009-11-06 23:10:54 -08002435 err = sock_do_ioctl(net, sock, cmd, (unsigned long)&ktv);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002436 set_fs(old_fs);
2437 if (!err) {
2438 err = put_user(ktv.tv_sec, &up->tv_sec);
2439 err |= __put_user(ktv.tv_usec, &up->tv_usec);
2440 }
2441 return err;
2442}
2443
Arnd Bergmann6b960182009-11-06 23:10:54 -08002444static int do_siocgstampns(struct net *net, struct socket *sock,
2445 unsigned int cmd, struct compat_timespec __user *up)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002446{
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002447 mm_segment_t old_fs = get_fs();
2448 struct timespec kts;
2449 int err;
2450
2451 set_fs(KERNEL_DS);
Arnd Bergmann6b960182009-11-06 23:10:54 -08002452 err = sock_do_ioctl(net, sock, cmd, (unsigned long)&kts);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002453 set_fs(old_fs);
2454 if (!err) {
2455 err = put_user(kts.tv_sec, &up->tv_sec);
2456 err |= __put_user(kts.tv_nsec, &up->tv_nsec);
2457 }
2458 return err;
2459}
2460
Arnd Bergmann6b960182009-11-06 23:10:54 -08002461static int dev_ifname32(struct net *net, struct compat_ifreq __user *uifr32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002462{
2463 struct ifreq __user *uifr;
2464 int err;
2465
2466 uifr = compat_alloc_user_space(sizeof(struct ifreq));
Arnd Bergmann6b960182009-11-06 23:10:54 -08002467 if (copy_in_user(uifr, uifr32, sizeof(struct compat_ifreq)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002468 return -EFAULT;
2469
Arnd Bergmann6b960182009-11-06 23:10:54 -08002470 err = dev_ioctl(net, SIOCGIFNAME, uifr);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002471 if (err)
2472 return err;
2473
Arnd Bergmann6b960182009-11-06 23:10:54 -08002474 if (copy_in_user(uifr32, uifr, sizeof(struct compat_ifreq)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002475 return -EFAULT;
2476
2477 return 0;
2478}
2479
Arnd Bergmann6b960182009-11-06 23:10:54 -08002480static int dev_ifconf(struct net *net, struct compat_ifconf __user *uifc32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002481{
Arnd Bergmann6b960182009-11-06 23:10:54 -08002482 struct compat_ifconf ifc32;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002483 struct ifconf ifc;
2484 struct ifconf __user *uifc;
Arnd Bergmann6b960182009-11-06 23:10:54 -08002485 struct compat_ifreq __user *ifr32;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002486 struct ifreq __user *ifr;
2487 unsigned int i, j;
2488 int err;
2489
Arnd Bergmann6b960182009-11-06 23:10:54 -08002490 if (copy_from_user(&ifc32, uifc32, sizeof(struct compat_ifconf)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002491 return -EFAULT;
2492
2493 if (ifc32.ifcbuf == 0) {
2494 ifc32.ifc_len = 0;
2495 ifc.ifc_len = 0;
2496 ifc.ifc_req = NULL;
2497 uifc = compat_alloc_user_space(sizeof(struct ifconf));
2498 } else {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002499 size_t len = ((ifc32.ifc_len / sizeof(struct compat_ifreq)) + 1) *
2500 sizeof(struct ifreq);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002501 uifc = compat_alloc_user_space(sizeof(struct ifconf) + len);
2502 ifc.ifc_len = len;
2503 ifr = ifc.ifc_req = (void __user *)(uifc + 1);
2504 ifr32 = compat_ptr(ifc32.ifcbuf);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002505 for (i = 0; i < ifc32.ifc_len; i += sizeof(struct compat_ifreq)) {
Arnd Bergmann6b960182009-11-06 23:10:54 -08002506 if (copy_in_user(ifr, ifr32, sizeof(struct compat_ifreq)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002507 return -EFAULT;
2508 ifr++;
2509 ifr32++;
2510 }
2511 }
2512 if (copy_to_user(uifc, &ifc, sizeof(struct ifconf)))
2513 return -EFAULT;
2514
Arnd Bergmann6b960182009-11-06 23:10:54 -08002515 err = dev_ioctl(net, SIOCGIFCONF, uifc);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002516 if (err)
2517 return err;
2518
2519 if (copy_from_user(&ifc, uifc, sizeof(struct ifconf)))
2520 return -EFAULT;
2521
2522 ifr = ifc.ifc_req;
2523 ifr32 = compat_ptr(ifc32.ifcbuf);
2524 for (i = 0, j = 0;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002525 i + sizeof(struct compat_ifreq) <= ifc32.ifc_len && j < ifc.ifc_len;
2526 i += sizeof(struct compat_ifreq), j += sizeof(struct ifreq)) {
2527 if (copy_in_user(ifr32, ifr, sizeof(struct compat_ifreq)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002528 return -EFAULT;
2529 ifr32++;
2530 ifr++;
2531 }
2532
2533 if (ifc32.ifcbuf == 0) {
2534 /* Translate from 64-bit structure multiple to
2535 * a 32-bit one.
2536 */
2537 i = ifc.ifc_len;
Arnd Bergmann6b960182009-11-06 23:10:54 -08002538 i = ((i / sizeof(struct ifreq)) * sizeof(struct compat_ifreq));
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002539 ifc32.ifc_len = i;
2540 } else {
2541 ifc32.ifc_len = i;
2542 }
Arnd Bergmann6b960182009-11-06 23:10:54 -08002543 if (copy_to_user(uifc32, &ifc32, sizeof(struct compat_ifconf)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002544 return -EFAULT;
2545
2546 return 0;
2547}
2548
Arnd Bergmann6b960182009-11-06 23:10:54 -08002549static int ethtool_ioctl(struct net *net, struct compat_ifreq __user *ifr32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002550{
2551 struct ifreq __user *ifr;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002552 u32 data;
2553 void __user *datap;
2554
2555 ifr = compat_alloc_user_space(sizeof(*ifr));
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002556
2557 if (copy_in_user(&ifr->ifr_name, &ifr32->ifr_name, IFNAMSIZ))
2558 return -EFAULT;
2559
2560 if (get_user(data, &ifr32->ifr_ifru.ifru_data))
2561 return -EFAULT;
2562
2563 datap = compat_ptr(data);
2564 if (put_user(datap, &ifr->ifr_ifru.ifru_data))
2565 return -EFAULT;
2566
Arnd Bergmann6b960182009-11-06 23:10:54 -08002567 return dev_ioctl(net, SIOCETHTOOL, ifr);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002568}
2569
Arnd Bergmann7a50a242009-11-08 20:57:03 -08002570static int compat_siocwandev(struct net *net, struct compat_ifreq __user *uifr32)
2571{
2572 void __user *uptr;
2573 compat_uptr_t uptr32;
2574 struct ifreq __user *uifr;
2575
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002576 uifr = compat_alloc_user_space(sizeof(*uifr));
Arnd Bergmann7a50a242009-11-08 20:57:03 -08002577 if (copy_in_user(uifr, uifr32, sizeof(struct compat_ifreq)))
2578 return -EFAULT;
2579
2580 if (get_user(uptr32, &uifr32->ifr_settings.ifs_ifsu))
2581 return -EFAULT;
2582
2583 uptr = compat_ptr(uptr32);
2584
2585 if (put_user(uptr, &uifr->ifr_settings.ifs_ifsu.raw_hdlc))
2586 return -EFAULT;
2587
2588 return dev_ioctl(net, SIOCWANDEV, uifr);
2589}
2590
Arnd Bergmann6b960182009-11-06 23:10:54 -08002591static int bond_ioctl(struct net *net, unsigned int cmd,
2592 struct compat_ifreq __user *ifr32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002593{
2594 struct ifreq kifr;
2595 struct ifreq __user *uifr;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002596 mm_segment_t old_fs;
2597 int err;
2598 u32 data;
2599 void __user *datap;
2600
2601 switch (cmd) {
2602 case SIOCBONDENSLAVE:
2603 case SIOCBONDRELEASE:
2604 case SIOCBONDSETHWADDR:
2605 case SIOCBONDCHANGEACTIVE:
Arnd Bergmann6b960182009-11-06 23:10:54 -08002606 if (copy_from_user(&kifr, ifr32, sizeof(struct compat_ifreq)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002607 return -EFAULT;
2608
2609 old_fs = get_fs();
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002610 set_fs(KERNEL_DS);
Arnd Bergmann6b960182009-11-06 23:10:54 -08002611 err = dev_ioctl(net, cmd, &kifr);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002612 set_fs(old_fs);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002613
2614 return err;
2615 case SIOCBONDSLAVEINFOQUERY:
2616 case SIOCBONDINFOQUERY:
2617 uifr = compat_alloc_user_space(sizeof(*uifr));
2618 if (copy_in_user(&uifr->ifr_name, &ifr32->ifr_name, IFNAMSIZ))
2619 return -EFAULT;
2620
2621 if (get_user(data, &ifr32->ifr_ifru.ifru_data))
2622 return -EFAULT;
2623
2624 datap = compat_ptr(data);
2625 if (put_user(datap, &uifr->ifr_ifru.ifru_data))
2626 return -EFAULT;
2627
Arnd Bergmann6b960182009-11-06 23:10:54 -08002628 return dev_ioctl(net, cmd, uifr);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002629 default:
2630 return -EINVAL;
Joe Perchesccbd6a52010-05-14 10:58:26 +00002631 }
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002632}
2633
Arnd Bergmann6b960182009-11-06 23:10:54 -08002634static int siocdevprivate_ioctl(struct net *net, unsigned int cmd,
2635 struct compat_ifreq __user *u_ifreq32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002636{
2637 struct ifreq __user *u_ifreq64;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002638 char tmp_buf[IFNAMSIZ];
2639 void __user *data64;
2640 u32 data32;
2641
2642 if (copy_from_user(&tmp_buf[0], &(u_ifreq32->ifr_ifrn.ifrn_name[0]),
2643 IFNAMSIZ))
2644 return -EFAULT;
2645 if (__get_user(data32, &u_ifreq32->ifr_ifru.ifru_data))
2646 return -EFAULT;
2647 data64 = compat_ptr(data32);
2648
2649 u_ifreq64 = compat_alloc_user_space(sizeof(*u_ifreq64));
2650
2651 /* Don't check these user accesses, just let that get trapped
2652 * in the ioctl handler instead.
2653 */
2654 if (copy_to_user(&u_ifreq64->ifr_ifrn.ifrn_name[0], &tmp_buf[0],
2655 IFNAMSIZ))
2656 return -EFAULT;
2657 if (__put_user(data64, &u_ifreq64->ifr_ifru.ifru_data))
2658 return -EFAULT;
2659
Arnd Bergmann6b960182009-11-06 23:10:54 -08002660 return dev_ioctl(net, cmd, u_ifreq64);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002661}
2662
Arnd Bergmann6b960182009-11-06 23:10:54 -08002663static int dev_ifsioc(struct net *net, struct socket *sock,
2664 unsigned int cmd, struct compat_ifreq __user *uifr32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002665{
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002666 struct ifreq __user *uifr;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002667 int err;
2668
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002669 uifr = compat_alloc_user_space(sizeof(*uifr));
2670 if (copy_in_user(uifr, uifr32, sizeof(*uifr32)))
2671 return -EFAULT;
2672
2673 err = sock_do_ioctl(net, sock, cmd, (unsigned long)uifr);
2674
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002675 if (!err) {
2676 switch (cmd) {
2677 case SIOCGIFFLAGS:
2678 case SIOCGIFMETRIC:
2679 case SIOCGIFMTU:
2680 case SIOCGIFMEM:
2681 case SIOCGIFHWADDR:
2682 case SIOCGIFINDEX:
2683 case SIOCGIFADDR:
2684 case SIOCGIFBRDADDR:
2685 case SIOCGIFDSTADDR:
2686 case SIOCGIFNETMASK:
Arnd Bergmannfab25322009-11-08 20:56:21 -08002687 case SIOCGIFPFLAGS:
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002688 case SIOCGIFTXQLEN:
Arnd Bergmannfab25322009-11-08 20:56:21 -08002689 case SIOCGMIIPHY:
2690 case SIOCGMIIREG:
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002691 if (copy_in_user(uifr32, uifr, sizeof(*uifr32)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002692 err = -EFAULT;
2693 break;
2694 }
2695 }
2696 return err;
2697}
2698
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002699static int compat_sioc_ifmap(struct net *net, unsigned int cmd,
2700 struct compat_ifreq __user *uifr32)
2701{
2702 struct ifreq ifr;
2703 struct compat_ifmap __user *uifmap32;
2704 mm_segment_t old_fs;
2705 int err;
2706
2707 uifmap32 = &uifr32->ifr_ifru.ifru_map;
2708 err = copy_from_user(&ifr, uifr32, sizeof(ifr.ifr_name));
2709 err |= __get_user(ifr.ifr_map.mem_start, &uifmap32->mem_start);
2710 err |= __get_user(ifr.ifr_map.mem_end, &uifmap32->mem_end);
2711 err |= __get_user(ifr.ifr_map.base_addr, &uifmap32->base_addr);
2712 err |= __get_user(ifr.ifr_map.irq, &uifmap32->irq);
2713 err |= __get_user(ifr.ifr_map.dma, &uifmap32->dma);
2714 err |= __get_user(ifr.ifr_map.port, &uifmap32->port);
2715 if (err)
2716 return -EFAULT;
2717
2718 old_fs = get_fs();
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002719 set_fs(KERNEL_DS);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002720 err = dev_ioctl(net, cmd, (void __user *)&ifr);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002721 set_fs(old_fs);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002722
2723 if (cmd == SIOCGIFMAP && !err) {
2724 err = copy_to_user(uifr32, &ifr, sizeof(ifr.ifr_name));
2725 err |= __put_user(ifr.ifr_map.mem_start, &uifmap32->mem_start);
2726 err |= __put_user(ifr.ifr_map.mem_end, &uifmap32->mem_end);
2727 err |= __put_user(ifr.ifr_map.base_addr, &uifmap32->base_addr);
2728 err |= __put_user(ifr.ifr_map.irq, &uifmap32->irq);
2729 err |= __put_user(ifr.ifr_map.dma, &uifmap32->dma);
2730 err |= __put_user(ifr.ifr_map.port, &uifmap32->port);
2731 if (err)
2732 err = -EFAULT;
2733 }
2734 return err;
2735}
2736
2737static int compat_siocshwtstamp(struct net *net, struct compat_ifreq __user *uifr32)
2738{
2739 void __user *uptr;
2740 compat_uptr_t uptr32;
2741 struct ifreq __user *uifr;
2742
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002743 uifr = compat_alloc_user_space(sizeof(*uifr));
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002744 if (copy_in_user(uifr, uifr32, sizeof(struct compat_ifreq)))
2745 return -EFAULT;
2746
2747 if (get_user(uptr32, &uifr32->ifr_data))
2748 return -EFAULT;
2749
2750 uptr = compat_ptr(uptr32);
2751
2752 if (put_user(uptr, &uifr->ifr_data))
2753 return -EFAULT;
2754
2755 return dev_ioctl(net, SIOCSHWTSTAMP, uifr);
2756}
2757
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002758struct rtentry32 {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002759 u32 rt_pad1;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002760 struct sockaddr rt_dst; /* target address */
2761 struct sockaddr rt_gateway; /* gateway addr (RTF_GATEWAY) */
2762 struct sockaddr rt_genmask; /* target network mask (IP) */
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002763 unsigned short rt_flags;
2764 short rt_pad2;
2765 u32 rt_pad3;
2766 unsigned char rt_tos;
2767 unsigned char rt_class;
2768 short rt_pad4;
2769 short rt_metric; /* +1 for binary compatibility! */
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002770 /* char * */ u32 rt_dev; /* forcing the device at add */
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002771 u32 rt_mtu; /* per route MTU/Window */
2772 u32 rt_window; /* Window clamping */
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002773 unsigned short rt_irtt; /* Initial RTT */
2774};
2775
2776struct in6_rtmsg32 {
2777 struct in6_addr rtmsg_dst;
2778 struct in6_addr rtmsg_src;
2779 struct in6_addr rtmsg_gateway;
2780 u32 rtmsg_type;
2781 u16 rtmsg_dst_len;
2782 u16 rtmsg_src_len;
2783 u32 rtmsg_metric;
2784 u32 rtmsg_info;
2785 u32 rtmsg_flags;
2786 s32 rtmsg_ifindex;
2787};
2788
Arnd Bergmann6b960182009-11-06 23:10:54 -08002789static int routing_ioctl(struct net *net, struct socket *sock,
2790 unsigned int cmd, void __user *argp)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002791{
2792 int ret;
2793 void *r = NULL;
2794 struct in6_rtmsg r6;
2795 struct rtentry r4;
2796 char devname[16];
2797 u32 rtdev;
2798 mm_segment_t old_fs = get_fs();
2799
Arnd Bergmann6b960182009-11-06 23:10:54 -08002800 if (sock && sock->sk && sock->sk->sk_family == AF_INET6) { /* ipv6 */
2801 struct in6_rtmsg32 __user *ur6 = argp;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002802 ret = copy_from_user(&r6.rtmsg_dst, &(ur6->rtmsg_dst),
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002803 3 * sizeof(struct in6_addr));
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002804 ret |= __get_user(r6.rtmsg_type, &(ur6->rtmsg_type));
2805 ret |= __get_user(r6.rtmsg_dst_len, &(ur6->rtmsg_dst_len));
2806 ret |= __get_user(r6.rtmsg_src_len, &(ur6->rtmsg_src_len));
2807 ret |= __get_user(r6.rtmsg_metric, &(ur6->rtmsg_metric));
2808 ret |= __get_user(r6.rtmsg_info, &(ur6->rtmsg_info));
2809 ret |= __get_user(r6.rtmsg_flags, &(ur6->rtmsg_flags));
2810 ret |= __get_user(r6.rtmsg_ifindex, &(ur6->rtmsg_ifindex));
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002811
2812 r = (void *) &r6;
2813 } else { /* ipv4 */
Arnd Bergmann6b960182009-11-06 23:10:54 -08002814 struct rtentry32 __user *ur4 = argp;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002815 ret = copy_from_user(&r4.rt_dst, &(ur4->rt_dst),
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002816 3 * sizeof(struct sockaddr));
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002817 ret |= __get_user(r4.rt_flags, &(ur4->rt_flags));
2818 ret |= __get_user(r4.rt_metric, &(ur4->rt_metric));
2819 ret |= __get_user(r4.rt_mtu, &(ur4->rt_mtu));
2820 ret |= __get_user(r4.rt_window, &(ur4->rt_window));
2821 ret |= __get_user(r4.rt_irtt, &(ur4->rt_irtt));
2822 ret |= __get_user(rtdev, &(ur4->rt_dev));
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002823 if (rtdev) {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002824 ret |= copy_from_user(devname, compat_ptr(rtdev), 15);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002825 r4.rt_dev = devname; devname[15] = 0;
2826 } else
2827 r4.rt_dev = NULL;
2828
2829 r = (void *) &r4;
2830 }
2831
2832 if (ret) {
2833 ret = -EFAULT;
2834 goto out;
2835 }
2836
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002837 set_fs(KERNEL_DS);
Arnd Bergmann6b960182009-11-06 23:10:54 -08002838 ret = sock_do_ioctl(net, sock, cmd, (unsigned long) r);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002839 set_fs(old_fs);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002840
2841out:
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002842 return ret;
2843}
2844
2845/* Since old style bridge ioctl's endup using SIOCDEVPRIVATE
2846 * for some operations; this forces use of the newer bridge-utils that
2847 * use compatiable ioctls
2848 */
Arnd Bergmann6b960182009-11-06 23:10:54 -08002849static int old_bridge_ioctl(compat_ulong_t __user *argp)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002850{
Arnd Bergmann6b960182009-11-06 23:10:54 -08002851 compat_ulong_t tmp;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002852
Arnd Bergmann6b960182009-11-06 23:10:54 -08002853 if (get_user(tmp, argp))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002854 return -EFAULT;
2855 if (tmp == BRCTL_GET_VERSION)
2856 return BRCTL_VERSION + 1;
2857 return -EINVAL;
2858}
2859
Arnd Bergmann6b960182009-11-06 23:10:54 -08002860static int compat_sock_ioctl_trans(struct file *file, struct socket *sock,
2861 unsigned int cmd, unsigned long arg)
2862{
2863 void __user *argp = compat_ptr(arg);
2864 struct sock *sk = sock->sk;
2865 struct net *net = sock_net(sk);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002866
Arnd Bergmann6b960182009-11-06 23:10:54 -08002867 if (cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15))
2868 return siocdevprivate_ioctl(net, cmd, argp);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002869
Arnd Bergmann6b960182009-11-06 23:10:54 -08002870 switch (cmd) {
2871 case SIOCSIFBR:
2872 case SIOCGIFBR:
2873 return old_bridge_ioctl(argp);
2874 case SIOCGIFNAME:
2875 return dev_ifname32(net, argp);
2876 case SIOCGIFCONF:
2877 return dev_ifconf(net, argp);
2878 case SIOCETHTOOL:
2879 return ethtool_ioctl(net, argp);
Arnd Bergmann7a50a242009-11-08 20:57:03 -08002880 case SIOCWANDEV:
2881 return compat_siocwandev(net, argp);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002882 case SIOCGIFMAP:
2883 case SIOCSIFMAP:
2884 return compat_sioc_ifmap(net, cmd, argp);
Arnd Bergmann6b960182009-11-06 23:10:54 -08002885 case SIOCBONDENSLAVE:
2886 case SIOCBONDRELEASE:
2887 case SIOCBONDSETHWADDR:
2888 case SIOCBONDSLAVEINFOQUERY:
2889 case SIOCBONDINFOQUERY:
2890 case SIOCBONDCHANGEACTIVE:
2891 return bond_ioctl(net, cmd, argp);
2892 case SIOCADDRT:
2893 case SIOCDELRT:
2894 return routing_ioctl(net, sock, cmd, argp);
2895 case SIOCGSTAMP:
2896 return do_siocgstamp(net, sock, cmd, argp);
2897 case SIOCGSTAMPNS:
2898 return do_siocgstampns(net, sock, cmd, argp);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002899 case SIOCSHWTSTAMP:
2900 return compat_siocshwtstamp(net, argp);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002901
Arnd Bergmann6b960182009-11-06 23:10:54 -08002902 case FIOSETOWN:
2903 case SIOCSPGRP:
2904 case FIOGETOWN:
2905 case SIOCGPGRP:
2906 case SIOCBRADDBR:
2907 case SIOCBRDELBR:
2908 case SIOCGIFVLAN:
2909 case SIOCSIFVLAN:
2910 case SIOCADDDLCI:
2911 case SIOCDELDLCI:
2912 return sock_ioctl(file, cmd, arg);
2913
2914 case SIOCGIFFLAGS:
2915 case SIOCSIFFLAGS:
2916 case SIOCGIFMETRIC:
2917 case SIOCSIFMETRIC:
2918 case SIOCGIFMTU:
2919 case SIOCSIFMTU:
2920 case SIOCGIFMEM:
2921 case SIOCSIFMEM:
2922 case SIOCGIFHWADDR:
2923 case SIOCSIFHWADDR:
2924 case SIOCADDMULTI:
2925 case SIOCDELMULTI:
2926 case SIOCGIFINDEX:
Arnd Bergmann6b960182009-11-06 23:10:54 -08002927 case SIOCGIFADDR:
2928 case SIOCSIFADDR:
2929 case SIOCSIFHWBROADCAST:
Arnd Bergmann6b960182009-11-06 23:10:54 -08002930 case SIOCDIFADDR:
Arnd Bergmann6b960182009-11-06 23:10:54 -08002931 case SIOCGIFBRDADDR:
2932 case SIOCSIFBRDADDR:
2933 case SIOCGIFDSTADDR:
2934 case SIOCSIFDSTADDR:
2935 case SIOCGIFNETMASK:
2936 case SIOCSIFNETMASK:
2937 case SIOCSIFPFLAGS:
2938 case SIOCGIFPFLAGS:
2939 case SIOCGIFTXQLEN:
2940 case SIOCSIFTXQLEN:
2941 case SIOCBRADDIF:
2942 case SIOCBRDELIF:
Arnd Bergmann9177efd2009-11-06 08:09:09 +00002943 case SIOCSIFNAME:
2944 case SIOCGMIIPHY:
2945 case SIOCGMIIREG:
2946 case SIOCSMIIREG:
Arnd Bergmann6b960182009-11-06 23:10:54 -08002947 return dev_ifsioc(net, sock, cmd, argp);
Arnd Bergmann9177efd2009-11-06 08:09:09 +00002948
Arnd Bergmann6b960182009-11-06 23:10:54 -08002949 case SIOCSARP:
2950 case SIOCGARP:
2951 case SIOCDARP:
Arnd Bergmann6b960182009-11-06 23:10:54 -08002952 case SIOCATMARK:
Arnd Bergmann9177efd2009-11-06 08:09:09 +00002953 return sock_do_ioctl(net, sock, cmd, arg);
2954 }
2955
2956 /* Prevent warning from compat_sys_ioctl, these always
2957 * result in -EINVAL in the native case anyway. */
2958 switch (cmd) {
2959 case SIOCRTMSG:
2960 case SIOCGIFCOUNT:
Arnd Bergmann6b960182009-11-06 23:10:54 -08002961 case SIOCSRARP:
2962 case SIOCGRARP:
2963 case SIOCDRARP:
Arnd Bergmann9177efd2009-11-06 08:09:09 +00002964 case SIOCSIFLINK:
2965 case SIOCGIFSLAVE:
2966 case SIOCSIFSLAVE:
2967 return -EINVAL;
Arnd Bergmann6b960182009-11-06 23:10:54 -08002968 }
2969
2970 return -ENOIOCTLCMD;
2971}
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002972
Shaun Pereira89bbfc92006-03-21 23:58:08 -08002973static long compat_sock_ioctl(struct file *file, unsigned cmd,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002974 unsigned long arg)
Shaun Pereira89bbfc92006-03-21 23:58:08 -08002975{
2976 struct socket *sock = file->private_data;
2977 int ret = -ENOIOCTLCMD;
David S. Miller87de87d2008-06-03 09:14:03 -07002978 struct sock *sk;
2979 struct net *net;
2980
2981 sk = sock->sk;
2982 net = sock_net(sk);
Shaun Pereira89bbfc92006-03-21 23:58:08 -08002983
2984 if (sock->ops->compat_ioctl)
2985 ret = sock->ops->compat_ioctl(sock, cmd, arg);
2986
David S. Miller87de87d2008-06-03 09:14:03 -07002987 if (ret == -ENOIOCTLCMD &&
2988 (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST))
2989 ret = compat_wext_handle_ioctl(net, cmd, arg);
2990
Arnd Bergmann6b960182009-11-06 23:10:54 -08002991 if (ret == -ENOIOCTLCMD)
2992 ret = compat_sock_ioctl_trans(file, sock, cmd, arg);
2993
Shaun Pereira89bbfc92006-03-21 23:58:08 -08002994 return ret;
2995}
2996#endif
2997
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07002998int kernel_bind(struct socket *sock, struct sockaddr *addr, int addrlen)
2999{
3000 return sock->ops->bind(sock, addr, addrlen);
3001}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003002EXPORT_SYMBOL(kernel_bind);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003003
3004int kernel_listen(struct socket *sock, int backlog)
3005{
3006 return sock->ops->listen(sock, backlog);
3007}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003008EXPORT_SYMBOL(kernel_listen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003009
3010int kernel_accept(struct socket *sock, struct socket **newsock, int flags)
3011{
3012 struct sock *sk = sock->sk;
3013 int err;
3014
3015 err = sock_create_lite(sk->sk_family, sk->sk_type, sk->sk_protocol,
3016 newsock);
3017 if (err < 0)
3018 goto done;
3019
3020 err = sock->ops->accept(sock, *newsock, flags);
3021 if (err < 0) {
3022 sock_release(*newsock);
Tony Battersbyfa8705b2007-10-10 21:09:04 -07003023 *newsock = NULL;
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003024 goto done;
3025 }
3026
3027 (*newsock)->ops = sock->ops;
Wei Yongjun1b085342008-12-18 19:35:10 -08003028 __module_get((*newsock)->ops->owner);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003029
3030done:
3031 return err;
3032}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003033EXPORT_SYMBOL(kernel_accept);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003034
3035int kernel_connect(struct socket *sock, struct sockaddr *addr, int addrlen,
YOSHIFUJI Hideaki4768fbc2007-02-09 23:25:31 +09003036 int flags)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003037{
3038 return sock->ops->connect(sock, addr, addrlen, flags);
3039}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003040EXPORT_SYMBOL(kernel_connect);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003041
3042int kernel_getsockname(struct socket *sock, struct sockaddr *addr,
3043 int *addrlen)
3044{
3045 return sock->ops->getname(sock, addr, addrlen, 0);
3046}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003047EXPORT_SYMBOL(kernel_getsockname);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003048
3049int kernel_getpeername(struct socket *sock, struct sockaddr *addr,
3050 int *addrlen)
3051{
3052 return sock->ops->getname(sock, addr, addrlen, 1);
3053}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003054EXPORT_SYMBOL(kernel_getpeername);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003055
3056int kernel_getsockopt(struct socket *sock, int level, int optname,
3057 char *optval, int *optlen)
3058{
3059 mm_segment_t oldfs = get_fs();
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003060 char __user *uoptval;
3061 int __user *uoptlen;
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003062 int err;
3063
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003064 uoptval = (char __user __force *) optval;
3065 uoptlen = (int __user __force *) optlen;
3066
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003067 set_fs(KERNEL_DS);
3068 if (level == SOL_SOCKET)
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003069 err = sock_getsockopt(sock, level, optname, uoptval, uoptlen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003070 else
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003071 err = sock->ops->getsockopt(sock, level, optname, uoptval,
3072 uoptlen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003073 set_fs(oldfs);
3074 return err;
3075}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003076EXPORT_SYMBOL(kernel_getsockopt);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003077
3078int kernel_setsockopt(struct socket *sock, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07003079 char *optval, unsigned int optlen)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003080{
3081 mm_segment_t oldfs = get_fs();
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003082 char __user *uoptval;
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003083 int err;
3084
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003085 uoptval = (char __user __force *) optval;
3086
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003087 set_fs(KERNEL_DS);
3088 if (level == SOL_SOCKET)
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003089 err = sock_setsockopt(sock, level, optname, uoptval, optlen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003090 else
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003091 err = sock->ops->setsockopt(sock, level, optname, uoptval,
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003092 optlen);
3093 set_fs(oldfs);
3094 return err;
3095}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003096EXPORT_SYMBOL(kernel_setsockopt);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003097
3098int kernel_sendpage(struct socket *sock, struct page *page, int offset,
3099 size_t size, int flags)
3100{
Herbert Xuf8451722010-05-24 00:12:34 -07003101 sock_update_classid(sock->sk);
3102
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003103 if (sock->ops->sendpage)
3104 return sock->ops->sendpage(sock, page, offset, size, flags);
3105
3106 return sock_no_sendpage(sock, page, offset, size, flags);
3107}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003108EXPORT_SYMBOL(kernel_sendpage);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003109
3110int kernel_sock_ioctl(struct socket *sock, int cmd, unsigned long arg)
3111{
3112 mm_segment_t oldfs = get_fs();
3113 int err;
3114
3115 set_fs(KERNEL_DS);
3116 err = sock->ops->ioctl(sock, cmd, arg);
3117 set_fs(oldfs);
3118
3119 return err;
3120}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003121EXPORT_SYMBOL(kernel_sock_ioctl);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003122
Trond Myklebust91cf45f2007-11-12 18:10:39 -08003123int kernel_sock_shutdown(struct socket *sock, enum sock_shutdown_cmd how)
3124{
3125 return sock->ops->shutdown(sock, how);
3126}
Trond Myklebust91cf45f2007-11-12 18:10:39 -08003127EXPORT_SYMBOL(kernel_sock_shutdown);