blob: c2ed7c95ce870a13e86cf4771ae8d07ff9563ce3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * NET An implementation of the SOCKET network access protocol.
3 *
4 * Version: @(#)socket.c 1.1.93 18/02/95
5 *
6 * Authors: Orest Zborowski, <obz@Kodak.COM>
Jesper Juhl02c30a82005-05-05 16:16:16 -07007 * Ross Biro
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
9 *
10 * Fixes:
11 * Anonymous : NOTSOCK/BADF cleanup. Error fix in
12 * shutdown()
13 * Alan Cox : verify_area() fixes
14 * Alan Cox : Removed DDI
15 * Jonathan Kamens : SOCK_DGRAM reconnect bug
16 * Alan Cox : Moved a load of checks to the very
17 * top level.
18 * Alan Cox : Move address structures to/from user
19 * mode above the protocol layers.
20 * Rob Janssen : Allow 0 length sends.
21 * Alan Cox : Asynchronous I/O support (cribbed from the
22 * tty drivers).
23 * Niibe Yutaka : Asynchronous I/O for writes (4.4BSD style)
24 * Jeff Uphoff : Made max number of sockets command-line
25 * configurable.
26 * Matti Aarnio : Made the number of sockets dynamic,
27 * to be allocated when needed, and mr.
28 * Uphoff's max is used as max to be
29 * allowed to allocate.
30 * Linus : Argh. removed all the socket allocation
31 * altogether: it's in the inode now.
32 * Alan Cox : Made sock_alloc()/sock_release() public
33 * for NetROM and future kernel nfsd type
34 * stuff.
35 * Alan Cox : sendmsg/recvmsg basics.
36 * Tom Dyas : Export net symbols.
37 * Marcin Dalecki : Fixed problems with CONFIG_NET="n".
38 * Alan Cox : Added thread locking to sys_* calls
39 * for sockets. May have errors at the
40 * moment.
41 * Kevin Buhr : Fixed the dumb errors in the above.
42 * Andi Kleen : Some small cleanups, optimizations,
43 * and fixed a copy_from_user() bug.
44 * Tigran Aivazian : sys_send(args) calls sys_sendto(args, NULL, 0)
Stephen Hemminger89bddce2006-09-01 00:19:31 -070045 * Tigran Aivazian : Made listen(2) backlog sanity checks
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 * protocol-independent
47 *
48 *
49 * This program is free software; you can redistribute it and/or
50 * modify it under the terms of the GNU General Public License
51 * as published by the Free Software Foundation; either version
52 * 2 of the License, or (at your option) any later version.
53 *
54 *
55 * This module is effectively the top level interface to the BSD socket
Stephen Hemminger89bddce2006-09-01 00:19:31 -070056 * paradigm.
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 *
58 * Based upon Swansea University Computer Society NET3.039
59 */
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#include <linux/socket.h>
63#include <linux/file.h>
64#include <linux/net.h>
65#include <linux/interrupt.h>
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -070066#include <linux/thread_info.h>
Stephen Hemminger55737fd2006-09-01 00:23:39 -070067#include <linux/rcupdate.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#include <linux/netdevice.h>
69#include <linux/proc_fs.h>
70#include <linux/seq_file.h>
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -080071#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#include <linux/wanrouter.h>
73#include <linux/if_bridge.h>
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -030074#include <linux/if_frad.h>
75#include <linux/if_vlan.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#include <linux/init.h>
77#include <linux/poll.h>
78#include <linux/cache.h>
79#include <linux/module.h>
80#include <linux/highmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#include <linux/mount.h>
82#include <linux/security.h>
83#include <linux/syscalls.h>
84#include <linux/compat.h>
85#include <linux/kmod.h>
David Woodhouse3ec3b2f2005-05-17 12:08:48 +010086#include <linux/audit.h>
Adrian Bunkd86b5e02006-01-21 00:46:55 +010087#include <linux/wireless.h>
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -070088#include <linux/nsproxy.h>
Nick Black1fd7317d2009-09-22 16:43:33 -070089#include <linux/magic.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090090#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92#include <asm/uaccess.h>
93#include <asm/unistd.h>
94
95#include <net/compat.h>
David S. Miller87de87d2008-06-03 09:14:03 -070096#include <net/wext.h>
Herbert Xuf8451722010-05-24 00:12:34 -070097#include <net/cls_cgroup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99#include <net/sock.h>
100#include <linux/netfilter.h>
101
Arnd Bergmann6b960182009-11-06 23:10:54 -0800102#include <linux/if_tun.h>
103#include <linux/ipv6_route.h>
104#include <linux/route.h>
Arnd Bergmann6b960182009-11-06 23:10:54 -0800105#include <linux/sockios.h>
106#include <linux/atalk.h>
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108static int sock_no_open(struct inode *irrelevant, struct file *dontcare);
Badari Pulavarty027445c2006-09-30 23:28:46 -0700109static ssize_t sock_aio_read(struct kiocb *iocb, const struct iovec *iov,
110 unsigned long nr_segs, loff_t pos);
111static ssize_t sock_aio_write(struct kiocb *iocb, const struct iovec *iov,
112 unsigned long nr_segs, loff_t pos);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700113static int sock_mmap(struct file *file, struct vm_area_struct *vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
115static int sock_close(struct inode *inode, struct file *file);
116static unsigned int sock_poll(struct file *file,
117 struct poll_table_struct *wait);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700118static long sock_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800119#ifdef CONFIG_COMPAT
120static long compat_sock_ioctl(struct file *file,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700121 unsigned int cmd, unsigned long arg);
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800122#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123static int sock_fasync(int fd, struct file *filp, int on);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124static ssize_t sock_sendpage(struct file *file, struct page *page,
125 int offset, size_t size, loff_t *ppos, int more);
Jens Axboe9c55e012007-11-06 23:30:13 -0800126static ssize_t sock_splice_read(struct file *file, loff_t *ppos,
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700127 struct pipe_inode_info *pipe, size_t len,
Jens Axboe9c55e012007-11-06 23:30:13 -0800128 unsigned int flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130/*
131 * Socket files have a set of 'special' operations as well as the generic file ones. These don't appear
132 * in the operation structures but are done directly via the socketcall() multiplexor.
133 */
134
Arjan van de Venda7071d2007-02-12 00:55:36 -0800135static const struct file_operations socket_file_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 .owner = THIS_MODULE,
137 .llseek = no_llseek,
138 .aio_read = sock_aio_read,
139 .aio_write = sock_aio_write,
140 .poll = sock_poll,
141 .unlocked_ioctl = sock_ioctl,
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800142#ifdef CONFIG_COMPAT
143 .compat_ioctl = compat_sock_ioctl,
144#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 .mmap = sock_mmap,
146 .open = sock_no_open, /* special open code to disallow open via /proc */
147 .release = sock_close,
148 .fasync = sock_fasync,
Jens Axboe5274f052006-03-30 15:15:30 +0200149 .sendpage = sock_sendpage,
150 .splice_write = generic_splice_sendpage,
Jens Axboe9c55e012007-11-06 23:30:13 -0800151 .splice_read = sock_splice_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152};
153
154/*
155 * The protocol list. Each protocol is registered in here.
156 */
157
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158static DEFINE_SPINLOCK(net_family_lock);
Eric Dumazet190683a2010-11-10 10:50:44 +0000159static const struct net_proto_family __rcu *net_families[NPROTO] __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161/*
162 * Statistics counters of the socket lists
163 */
164
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700165static DEFINE_PER_CPU(int, sockets_in_use);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
167/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700168 * Support routines.
169 * Move socket addresses back and forth across the kernel/user
170 * divide and look after the messy bits.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 */
172
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173/**
174 * move_addr_to_kernel - copy a socket address into kernel space
175 * @uaddr: Address in user space
176 * @kaddr: Address in kernel space
177 * @ulen: Length in user space
178 *
179 * The address is copied into kernel space. If the provided address is
180 * too long an error code of -EINVAL is returned. If the copy gives
181 * invalid addresses -EFAULT is returned. On a success 0 is returned.
182 */
183
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -0700184int move_addr_to_kernel(void __user *uaddr, int ulen, struct sockaddr *kaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185{
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -0700186 if (ulen < 0 || ulen > sizeof(struct sockaddr_storage))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700188 if (ulen == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 return 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700190 if (copy_from_user(kaddr, uaddr, ulen))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 return -EFAULT;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +0100192 return audit_sockaddr(ulen, kaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193}
194
195/**
196 * move_addr_to_user - copy an address to user space
197 * @kaddr: kernel space address
198 * @klen: length of address in kernel
199 * @uaddr: user space address
200 * @ulen: pointer to user length field
201 *
202 * The value pointed to by ulen on entry is the buffer length available.
203 * This is overwritten with the buffer space used. -EINVAL is returned
204 * if an overlong buffer is specified or a negative buffer size. -EFAULT
205 * is returned if either the buffer or the length field are not
206 * accessible.
207 * After copying the data up to the limit the user specifies, the true
208 * length of the data is written over the length limit the user
209 * specified. Zero is returned for a success.
210 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700211
stephen hemminger11165f12010-10-18 14:27:29 +0000212static int move_addr_to_user(struct sockaddr *kaddr, int klen,
213 void __user *uaddr, int __user *ulen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
215 int err;
216 int len;
217
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700218 err = get_user(len, ulen);
219 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 return err;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700221 if (len > klen)
222 len = klen;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -0700223 if (len < 0 || len > sizeof(struct sockaddr_storage))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700225 if (len) {
Steve Grubbd6fe3942006-03-30 12:20:22 -0500226 if (audit_sockaddr(klen, kaddr))
227 return -ENOMEM;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700228 if (copy_to_user(uaddr, kaddr, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 return -EFAULT;
230 }
231 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700232 * "fromlen shall refer to the value before truncation.."
233 * 1003.1g
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 */
235 return __put_user(klen, ulen);
236}
237
Christoph Lametere18b8902006-12-06 20:33:20 -0800238static struct kmem_cache *sock_inode_cachep __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
240static struct inode *sock_alloc_inode(struct super_block *sb)
241{
242 struct socket_alloc *ei;
Eric Dumazeteaefd112011-02-18 03:26:36 +0000243 struct socket_wq *wq;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700244
Christoph Lametere94b1762006-12-06 20:33:17 -0800245 ei = kmem_cache_alloc(sock_inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 if (!ei)
247 return NULL;
Eric Dumazeteaefd112011-02-18 03:26:36 +0000248 wq = kmalloc(sizeof(*wq), GFP_KERNEL);
249 if (!wq) {
Eric Dumazet43815482010-04-29 11:01:49 +0000250 kmem_cache_free(sock_inode_cachep, ei);
251 return NULL;
252 }
Eric Dumazeteaefd112011-02-18 03:26:36 +0000253 init_waitqueue_head(&wq->wait);
254 wq->fasync_list = NULL;
255 RCU_INIT_POINTER(ei->socket.wq, wq);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 ei->socket.state = SS_UNCONNECTED;
258 ei->socket.flags = 0;
259 ei->socket.ops = NULL;
260 ei->socket.sk = NULL;
261 ei->socket.file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
263 return &ei->vfs_inode;
264}
265
266static void sock_destroy_inode(struct inode *inode)
267{
Eric Dumazet43815482010-04-29 11:01:49 +0000268 struct socket_alloc *ei;
Eric Dumazeteaefd112011-02-18 03:26:36 +0000269 struct socket_wq *wq;
Eric Dumazet43815482010-04-29 11:01:49 +0000270
271 ei = container_of(inode, struct socket_alloc, vfs_inode);
Eric Dumazeteaefd112011-02-18 03:26:36 +0000272 wq = rcu_dereference_protected(ei->socket.wq, 1);
Lai Jiangshan61845222011-03-18 12:10:25 +0800273 kfree_rcu(wq, rcu);
Eric Dumazet43815482010-04-29 11:01:49 +0000274 kmem_cache_free(sock_inode_cachep, ei);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275}
276
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700277static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278{
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700279 struct socket_alloc *ei = (struct socket_alloc *)foo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Christoph Lametera35afb82007-05-16 22:10:57 -0700281 inode_init_once(&ei->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282}
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284static int init_inodecache(void)
285{
286 sock_inode_cachep = kmem_cache_create("sock_inode_cache",
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700287 sizeof(struct socket_alloc),
288 0,
289 (SLAB_HWCACHE_ALIGN |
290 SLAB_RECLAIM_ACCOUNT |
291 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +0900292 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 if (sock_inode_cachep == NULL)
294 return -ENOMEM;
295 return 0;
296}
297
Alexey Dobriyanb87221d2009-09-21 17:01:09 -0700298static const struct super_operations sockfs_ops = {
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700299 .alloc_inode = sock_alloc_inode,
300 .destroy_inode = sock_destroy_inode,
301 .statfs = simple_statfs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302};
303
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700304/*
305 * sockfs_dname() is called from d_path().
306 */
307static char *sockfs_dname(struct dentry *dentry, char *buffer, int buflen)
308{
309 return dynamic_dname(dentry, buffer, buflen, "socket:[%lu]",
310 dentry->d_inode->i_ino);
311}
312
Al Viro3ba13d12009-02-20 06:02:22 +0000313static const struct dentry_operations sockfs_dentry_operations = {
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700314 .d_dname = sockfs_dname,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315};
316
Al Viroc74a1cb2011-01-12 16:59:34 -0500317static struct dentry *sockfs_mount(struct file_system_type *fs_type,
318 int flags, const char *dev_name, void *data)
319{
320 return mount_pseudo(fs_type, "socket:", &sockfs_ops,
321 &sockfs_dentry_operations, SOCKFS_MAGIC);
322}
323
324static struct vfsmount *sock_mnt __read_mostly;
325
326static struct file_system_type sock_fs_type = {
327 .name = "sockfs",
328 .mount = sockfs_mount,
329 .kill_sb = kill_anon_super,
330};
331
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332/*
333 * Obtains the first available file descriptor and sets it up for use.
334 *
David S. Miller39d8c1b2006-03-20 17:13:49 -0800335 * These functions create file structures and maps them to fd space
336 * of the current process. On success it returns file descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 * and file struct implicitly stored in sock->file.
338 * Note that another thread may close file descriptor before we return
339 * from this function. We use the fact that now we do not refer
340 * to socket after mapping. If one day we will need it, this
341 * function will increment ref. count on file by 1.
342 *
343 * In any case returned fd MAY BE not valid!
344 * This race condition is unavoidable
345 * with shared fd spaces, we cannot solve it inside kernel,
346 * but we take care of internal coherence yet.
347 */
348
Al Viro7cbe66b2009-08-05 19:59:08 +0400349static int sock_alloc_file(struct socket *sock, struct file **f, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350{
Al Viro7cbe66b2009-08-05 19:59:08 +0400351 struct qstr name = { .name = "" };
Al Viro2c48b9c2009-08-09 00:52:35 +0400352 struct path path;
Al Viro7cbe66b2009-08-05 19:59:08 +0400353 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 int fd;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800355
Ulrich Dreppera677a032008-07-23 21:29:17 -0700356 fd = get_unused_fd_flags(flags);
Al Viro7cbe66b2009-08-05 19:59:08 +0400357 if (unlikely(fd < 0))
358 return fd;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800359
Nick Piggin4b936882011-01-07 17:50:07 +1100360 path.dentry = d_alloc_pseudo(sock_mnt->mnt_sb, &name);
Al Viro2c48b9c2009-08-09 00:52:35 +0400361 if (unlikely(!path.dentry)) {
Al Viro7cbe66b2009-08-05 19:59:08 +0400362 put_unused_fd(fd);
David S. Miller39d8c1b2006-03-20 17:13:49 -0800363 return -ENOMEM;
Al Viro7cbe66b2009-08-05 19:59:08 +0400364 }
Al Viro2c48b9c2009-08-09 00:52:35 +0400365 path.mnt = mntget(sock_mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Al Viro2c48b9c2009-08-09 00:52:35 +0400367 d_instantiate(path.dentry, SOCK_INODE(sock));
Al Virocc3808f2009-08-06 09:43:59 +0400368 SOCK_INODE(sock)->i_fop = &socket_file_ops;
369
Al Viro2c48b9c2009-08-09 00:52:35 +0400370 file = alloc_file(&path, FMODE_READ | FMODE_WRITE,
Al Virocc3808f2009-08-06 09:43:59 +0400371 &socket_file_ops);
372 if (unlikely(!file)) {
373 /* drop dentry, keep inode */
Al Viro7de9c6ee2010-10-23 11:11:40 -0400374 ihold(path.dentry->d_inode);
Al Viro2c48b9c2009-08-09 00:52:35 +0400375 path_put(&path);
Al Virocc3808f2009-08-06 09:43:59 +0400376 put_unused_fd(fd);
377 return -ENFILE;
378 }
David S. Miller39d8c1b2006-03-20 17:13:49 -0800379
380 sock->file = file;
Ulrich Drepper77d27202008-07-23 21:29:35 -0700381 file->f_flags = O_RDWR | (flags & O_NONBLOCK);
David S. Miller39d8c1b2006-03-20 17:13:49 -0800382 file->f_pos = 0;
383 file->private_data = sock;
384
Al Viro7cbe66b2009-08-05 19:59:08 +0400385 *f = file;
386 return fd;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800387}
388
Ulrich Dreppera677a032008-07-23 21:29:17 -0700389int sock_map_fd(struct socket *sock, int flags)
David S. Miller39d8c1b2006-03-20 17:13:49 -0800390{
391 struct file *newfile;
Al Viro7cbe66b2009-08-05 19:59:08 +0400392 int fd = sock_alloc_file(sock, &newfile, flags);
David S. Miller39d8c1b2006-03-20 17:13:49 -0800393
Al Viro7cbe66b2009-08-05 19:59:08 +0400394 if (likely(fd >= 0))
David S. Miller39d8c1b2006-03-20 17:13:49 -0800395 fd_install(fd, newfile);
Al Viro7cbe66b2009-08-05 19:59:08 +0400396
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 return fd;
398}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700399EXPORT_SYMBOL(sock_map_fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800401static struct socket *sock_from_file(struct file *file, int *err)
402{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800403 if (file->f_op == &socket_file_ops)
404 return file->private_data; /* set in sock_map_fd */
405
Eric Dumazet23bb80d2007-02-08 14:59:57 -0800406 *err = -ENOTSOCK;
407 return NULL;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800408}
409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410/**
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700411 * sockfd_lookup - Go from a file number to its socket slot
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 * @fd: file handle
413 * @err: pointer to an error code return
414 *
415 * The file handle passed in is locked and the socket it is bound
416 * too is returned. If an error occurs the err pointer is overwritten
417 * with a negative errno code and NULL is returned. The function checks
418 * for both invalid handles and passing a handle which is not a socket.
419 *
420 * On a success the socket object pointer is returned.
421 */
422
423struct socket *sockfd_lookup(int fd, int *err)
424{
425 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 struct socket *sock;
427
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700428 file = fget(fd);
429 if (!file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 *err = -EBADF;
431 return NULL;
432 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700433
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800434 sock = sock_from_file(file, err);
435 if (!sock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 fput(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 return sock;
438}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700439EXPORT_SYMBOL(sockfd_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800441static struct socket *sockfd_lookup_light(int fd, int *err, int *fput_needed)
442{
443 struct file *file;
444 struct socket *sock;
445
Hua Zhong36725582006-04-19 15:25:02 -0700446 *err = -EBADF;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800447 file = fget_light(fd, fput_needed);
448 if (file) {
449 sock = sock_from_file(file, err);
450 if (sock)
451 return sock;
452 fput_light(file, *fput_needed);
453 }
454 return NULL;
455}
456
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457/**
458 * sock_alloc - allocate a socket
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700459 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 * Allocate a new inode and socket object. The two are bound together
461 * and initialised. The socket is then returned. If we are out of inodes
462 * NULL is returned.
463 */
464
465static struct socket *sock_alloc(void)
466{
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700467 struct inode *inode;
468 struct socket *sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
470 inode = new_inode(sock_mnt->mnt_sb);
471 if (!inode)
472 return NULL;
473
474 sock = SOCKET_I(inode);
475
Eric Dumazet29a020d2009-09-15 02:39:20 -0700476 kmemcheck_annotate_bitfield(sock, type);
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400477 inode->i_ino = get_next_ino();
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700478 inode->i_mode = S_IFSOCK | S_IRWXUGO;
David Howells8192b0c2008-11-14 10:39:10 +1100479 inode->i_uid = current_fsuid();
480 inode->i_gid = current_fsgid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
Eric Dumazet4e694892009-04-04 16:41:09 -0700482 percpu_add(sockets_in_use, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 return sock;
484}
485
486/*
487 * In theory you can't get an open on this inode, but /proc provides
488 * a back door. Remember to keep it shut otherwise you'll let the
489 * creepy crawlies in.
490 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700491
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492static int sock_no_open(struct inode *irrelevant, struct file *dontcare)
493{
494 return -ENXIO;
495}
496
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800497const struct file_operations bad_sock_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 .owner = THIS_MODULE,
499 .open = sock_no_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200500 .llseek = noop_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501};
502
503/**
504 * sock_release - close a socket
505 * @sock: socket to close
506 *
507 * The socket is released from the protocol stack if it has a release
508 * callback, and the inode is then released if the socket is bound to
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700509 * an inode not a file.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700511
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512void sock_release(struct socket *sock)
513{
514 if (sock->ops) {
515 struct module *owner = sock->ops->owner;
516
517 sock->ops->release(sock);
518 sock->ops = NULL;
519 module_put(owner);
520 }
521
Eric Dumazeteaefd112011-02-18 03:26:36 +0000522 if (rcu_dereference_protected(sock->wq, 1)->fasync_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 printk(KERN_ERR "sock_release: fasync list not empty!\n");
524
Eric Dumazet4e694892009-04-04 16:41:09 -0700525 percpu_sub(sockets_in_use, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 if (!sock->file) {
527 iput(SOCK_INODE(sock));
528 return;
529 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700530 sock->file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700532EXPORT_SYMBOL(sock_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
Oliver Hartkopp2244d072010-08-17 08:59:14 +0000534int sock_tx_timestamp(struct sock *sk, __u8 *tx_flags)
Patrick Ohly20d49472009-02-12 05:03:38 +0000535{
Oliver Hartkopp2244d072010-08-17 08:59:14 +0000536 *tx_flags = 0;
Patrick Ohly20d49472009-02-12 05:03:38 +0000537 if (sock_flag(sk, SOCK_TIMESTAMPING_TX_HARDWARE))
Oliver Hartkopp2244d072010-08-17 08:59:14 +0000538 *tx_flags |= SKBTX_HW_TSTAMP;
Patrick Ohly20d49472009-02-12 05:03:38 +0000539 if (sock_flag(sk, SOCK_TIMESTAMPING_TX_SOFTWARE))
Oliver Hartkopp2244d072010-08-17 08:59:14 +0000540 *tx_flags |= SKBTX_SW_TSTAMP;
Patrick Ohly20d49472009-02-12 05:03:38 +0000541 return 0;
542}
543EXPORT_SYMBOL(sock_tx_timestamp);
544
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700545static inline int __sock_sendmsg(struct kiocb *iocb, struct socket *sock,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 struct msghdr *msg, size_t size)
547{
548 struct sock_iocb *si = kiocb_to_siocb(iocb);
549 int err;
550
Herbert Xuf8451722010-05-24 00:12:34 -0700551 sock_update_classid(sock->sk);
552
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 si->sock = sock;
554 si->scm = NULL;
555 si->msg = msg;
556 si->size = size;
557
558 err = security_socket_sendmsg(sock, msg, size);
559 if (err)
560 return err;
561
562 return sock->ops->sendmsg(iocb, sock, msg, size);
563}
564
565int sock_sendmsg(struct socket *sock, struct msghdr *msg, size_t size)
566{
567 struct kiocb iocb;
568 struct sock_iocb siocb;
569 int ret;
570
571 init_sync_kiocb(&iocb, NULL);
572 iocb.private = &siocb;
573 ret = __sock_sendmsg(&iocb, sock, msg, size);
574 if (-EIOCBQUEUED == ret)
575 ret = wait_on_sync_kiocb(&iocb);
576 return ret;
577}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700578EXPORT_SYMBOL(sock_sendmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
580int kernel_sendmsg(struct socket *sock, struct msghdr *msg,
581 struct kvec *vec, size_t num, size_t size)
582{
583 mm_segment_t oldfs = get_fs();
584 int result;
585
586 set_fs(KERNEL_DS);
587 /*
588 * the following is safe, since for compiler definitions of kvec and
589 * iovec are identical, yielding the same in-core layout and alignment
590 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700591 msg->msg_iov = (struct iovec *)vec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 msg->msg_iovlen = num;
593 result = sock_sendmsg(sock, msg, size);
594 set_fs(oldfs);
595 return result;
596}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700597EXPORT_SYMBOL(kernel_sendmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Patrick Ohly20d49472009-02-12 05:03:38 +0000599static int ktime2ts(ktime_t kt, struct timespec *ts)
600{
601 if (kt.tv64) {
602 *ts = ktime_to_timespec(kt);
603 return 1;
604 } else {
605 return 0;
606 }
607}
608
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700609/*
610 * called from sock_recv_timestamp() if sock_flag(sk, SOCK_RCVTSTAMP)
611 */
612void __sock_recv_timestamp(struct msghdr *msg, struct sock *sk,
613 struct sk_buff *skb)
614{
Patrick Ohly20d49472009-02-12 05:03:38 +0000615 int need_software_tstamp = sock_flag(sk, SOCK_RCVTSTAMP);
616 struct timespec ts[3];
617 int empty = 1;
618 struct skb_shared_hwtstamps *shhwtstamps =
619 skb_hwtstamps(skb);
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700620
Patrick Ohly20d49472009-02-12 05:03:38 +0000621 /* Race occurred between timestamp enabling and packet
622 receiving. Fill in the current time for now. */
623 if (need_software_tstamp && skb->tstamp.tv64 == 0)
624 __net_timestamp(skb);
625
626 if (need_software_tstamp) {
627 if (!sock_flag(sk, SOCK_RCVTSTAMPNS)) {
628 struct timeval tv;
629 skb_get_timestamp(skb, &tv);
630 put_cmsg(msg, SOL_SOCKET, SCM_TIMESTAMP,
631 sizeof(tv), &tv);
632 } else {
Hagen Paul Pfeifer842509b2010-04-06 05:39:52 +0000633 skb_get_timestampns(skb, &ts[0]);
Patrick Ohly20d49472009-02-12 05:03:38 +0000634 put_cmsg(msg, SOL_SOCKET, SCM_TIMESTAMPNS,
Hagen Paul Pfeifer842509b2010-04-06 05:39:52 +0000635 sizeof(ts[0]), &ts[0]);
Patrick Ohly20d49472009-02-12 05:03:38 +0000636 }
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700637 }
Patrick Ohly20d49472009-02-12 05:03:38 +0000638
639
640 memset(ts, 0, sizeof(ts));
641 if (skb->tstamp.tv64 &&
642 sock_flag(sk, SOCK_TIMESTAMPING_SOFTWARE)) {
643 skb_get_timestampns(skb, ts + 0);
644 empty = 0;
645 }
646 if (shhwtstamps) {
647 if (sock_flag(sk, SOCK_TIMESTAMPING_SYS_HARDWARE) &&
648 ktime2ts(shhwtstamps->syststamp, ts + 1))
649 empty = 0;
650 if (sock_flag(sk, SOCK_TIMESTAMPING_RAW_HARDWARE) &&
651 ktime2ts(shhwtstamps->hwtstamp, ts + 2))
652 empty = 0;
653 }
654 if (!empty)
655 put_cmsg(msg, SOL_SOCKET,
656 SCM_TIMESTAMPING, sizeof(ts), &ts);
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700657}
Arnaldo Carvalho de Melo7c81fd82007-03-10 00:39:35 -0300658EXPORT_SYMBOL_GPL(__sock_recv_timestamp);
659
stephen hemminger11165f12010-10-18 14:27:29 +0000660static inline void sock_recv_drops(struct msghdr *msg, struct sock *sk,
661 struct sk_buff *skb)
Neil Horman3b885782009-10-12 13:26:31 -0700662{
663 if (sock_flag(sk, SOCK_RXQ_OVFL) && skb && skb->dropcount)
664 put_cmsg(msg, SOL_SOCKET, SO_RXQ_OVFL,
665 sizeof(__u32), &skb->dropcount);
666}
667
Eric Dumazet767dd032010-04-28 19:14:43 +0000668void __sock_recv_ts_and_drops(struct msghdr *msg, struct sock *sk,
Neil Horman3b885782009-10-12 13:26:31 -0700669 struct sk_buff *skb)
670{
671 sock_recv_timestamp(msg, sk, skb);
672 sock_recv_drops(msg, sk, skb);
673}
Eric Dumazet767dd032010-04-28 19:14:43 +0000674EXPORT_SYMBOL_GPL(__sock_recv_ts_and_drops);
Neil Horman3b885782009-10-12 13:26:31 -0700675
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -0700676static inline int __sock_recvmsg_nosec(struct kiocb *iocb, struct socket *sock,
677 struct msghdr *msg, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 struct sock_iocb *si = kiocb_to_siocb(iocb);
680
Herbert Xuf8451722010-05-24 00:12:34 -0700681 sock_update_classid(sock->sk);
682
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 si->sock = sock;
684 si->scm = NULL;
685 si->msg = msg;
686 si->size = size;
687 si->flags = flags;
688
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 return sock->ops->recvmsg(iocb, sock, msg, size, flags);
690}
691
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -0700692static inline int __sock_recvmsg(struct kiocb *iocb, struct socket *sock,
693 struct msghdr *msg, size_t size, int flags)
694{
695 int err = security_socket_recvmsg(sock, msg, size, flags);
696
697 return err ?: __sock_recvmsg_nosec(iocb, sock, msg, size, flags);
698}
699
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700700int sock_recvmsg(struct socket *sock, struct msghdr *msg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 size_t size, int flags)
702{
703 struct kiocb iocb;
704 struct sock_iocb siocb;
705 int ret;
706
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700707 init_sync_kiocb(&iocb, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 iocb.private = &siocb;
709 ret = __sock_recvmsg(&iocb, sock, msg, size, flags);
710 if (-EIOCBQUEUED == ret)
711 ret = wait_on_sync_kiocb(&iocb);
712 return ret;
713}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700714EXPORT_SYMBOL(sock_recvmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -0700716static int sock_recvmsg_nosec(struct socket *sock, struct msghdr *msg,
717 size_t size, int flags)
718{
719 struct kiocb iocb;
720 struct sock_iocb siocb;
721 int ret;
722
723 init_sync_kiocb(&iocb, NULL);
724 iocb.private = &siocb;
725 ret = __sock_recvmsg_nosec(&iocb, sock, msg, size, flags);
726 if (-EIOCBQUEUED == ret)
727 ret = wait_on_sync_kiocb(&iocb);
728 return ret;
729}
730
Martin Lucinac1249c02010-12-10 00:04:05 +0000731/**
732 * kernel_recvmsg - Receive a message from a socket (kernel space)
733 * @sock: The socket to receive the message from
734 * @msg: Received message
735 * @vec: Input s/g array for message data
736 * @num: Size of input s/g array
737 * @size: Number of bytes to read
738 * @flags: Message flags (MSG_DONTWAIT, etc...)
739 *
740 * On return the msg structure contains the scatter/gather array passed in the
741 * vec argument. The array is modified so that it consists of the unfilled
742 * portion of the original array.
743 *
744 * The returned value is the total number of bytes received, or an error.
745 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700746int kernel_recvmsg(struct socket *sock, struct msghdr *msg,
747 struct kvec *vec, size_t num, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748{
749 mm_segment_t oldfs = get_fs();
750 int result;
751
752 set_fs(KERNEL_DS);
753 /*
754 * the following is safe, since for compiler definitions of kvec and
755 * iovec are identical, yielding the same in-core layout and alignment
756 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700757 msg->msg_iov = (struct iovec *)vec, msg->msg_iovlen = num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 result = sock_recvmsg(sock, msg, size, flags);
759 set_fs(oldfs);
760 return result;
761}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700762EXPORT_SYMBOL(kernel_recvmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
764static void sock_aio_dtor(struct kiocb *iocb)
765{
766 kfree(iocb->private);
767}
768
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -0300769static ssize_t sock_sendpage(struct file *file, struct page *page,
770 int offset, size_t size, loff_t *ppos, int more)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771{
772 struct socket *sock;
773 int flags;
774
Eric Dumazetb69aee02005-09-06 14:42:45 -0700775 sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
777 flags = !(file->f_flags & O_NONBLOCK) ? 0 : MSG_DONTWAIT;
778 if (more)
779 flags |= MSG_MORE;
780
Linus Torvaldse6949582009-08-13 08:28:36 -0700781 return kernel_sendpage(sock, page, offset, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782}
783
Jens Axboe9c55e012007-11-06 23:30:13 -0800784static ssize_t sock_splice_read(struct file *file, loff_t *ppos,
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700785 struct pipe_inode_info *pipe, size_t len,
Jens Axboe9c55e012007-11-06 23:30:13 -0800786 unsigned int flags)
787{
788 struct socket *sock = file->private_data;
789
Rémi Denis-Courmont997b37d2008-02-15 02:35:45 -0800790 if (unlikely(!sock->ops->splice_read))
791 return -EINVAL;
792
Herbert Xuf8451722010-05-24 00:12:34 -0700793 sock_update_classid(sock->sk);
794
Jens Axboe9c55e012007-11-06 23:30:13 -0800795 return sock->ops->splice_read(sock, ppos, pipe, len, flags);
796}
797
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800798static struct sock_iocb *alloc_sock_iocb(struct kiocb *iocb,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700799 struct sock_iocb *siocb)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800800{
801 if (!is_sync_kiocb(iocb)) {
802 siocb = kmalloc(sizeof(*siocb), GFP_KERNEL);
803 if (!siocb)
804 return NULL;
805 iocb->ki_dtor = sock_aio_dtor;
806 }
807
808 siocb->kiocb = iocb;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800809 iocb->private = siocb;
810 return siocb;
811}
812
813static ssize_t do_sock_read(struct msghdr *msg, struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -0700814 struct file *file, const struct iovec *iov,
815 unsigned long nr_segs)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800816{
817 struct socket *sock = file->private_data;
818 size_t size = 0;
819 int i;
820
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700821 for (i = 0; i < nr_segs; i++)
822 size += iov[i].iov_len;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800823
824 msg->msg_name = NULL;
825 msg->msg_namelen = 0;
826 msg->msg_control = NULL;
827 msg->msg_controllen = 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700828 msg->msg_iov = (struct iovec *)iov;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800829 msg->msg_iovlen = nr_segs;
830 msg->msg_flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
831
832 return __sock_recvmsg(iocb, sock, msg, size, msg->msg_flags);
833}
834
Badari Pulavarty027445c2006-09-30 23:28:46 -0700835static ssize_t sock_aio_read(struct kiocb *iocb, const struct iovec *iov,
836 unsigned long nr_segs, loff_t pos)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800837{
838 struct sock_iocb siocb, *x;
839
840 if (pos != 0)
841 return -ESPIPE;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700842
843 if (iocb->ki_left == 0) /* Match SYS5 behaviour */
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800844 return 0;
845
Badari Pulavarty027445c2006-09-30 23:28:46 -0700846
847 x = alloc_sock_iocb(iocb, &siocb);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800848 if (!x)
849 return -ENOMEM;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700850 return do_sock_read(&x->async_msg, iocb, iocb->ki_filp, iov, nr_segs);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800851}
852
853static ssize_t do_sock_write(struct msghdr *msg, struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -0700854 struct file *file, const struct iovec *iov,
855 unsigned long nr_segs)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800856{
857 struct socket *sock = file->private_data;
858 size_t size = 0;
859 int i;
860
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700861 for (i = 0; i < nr_segs; i++)
862 size += iov[i].iov_len;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800863
864 msg->msg_name = NULL;
865 msg->msg_namelen = 0;
866 msg->msg_control = NULL;
867 msg->msg_controllen = 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700868 msg->msg_iov = (struct iovec *)iov;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800869 msg->msg_iovlen = nr_segs;
870 msg->msg_flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
871 if (sock->type == SOCK_SEQPACKET)
872 msg->msg_flags |= MSG_EOR;
873
874 return __sock_sendmsg(iocb, sock, msg, size);
875}
876
Badari Pulavarty027445c2006-09-30 23:28:46 -0700877static ssize_t sock_aio_write(struct kiocb *iocb, const struct iovec *iov,
878 unsigned long nr_segs, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879{
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800880 struct sock_iocb siocb, *x;
881
882 if (pos != 0)
883 return -ESPIPE;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700884
Badari Pulavarty027445c2006-09-30 23:28:46 -0700885 x = alloc_sock_iocb(iocb, &siocb);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800886 if (!x)
887 return -ENOMEM;
888
Badari Pulavarty027445c2006-09-30 23:28:46 -0700889 return do_sock_write(&x->async_msg, iocb, iocb->ki_filp, iov, nr_segs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890}
891
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892/*
893 * Atomic setting of ioctl hooks to avoid race
894 * with module unload.
895 */
896
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800897static DEFINE_MUTEX(br_ioctl_mutex);
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700898static int (*br_ioctl_hook) (struct net *, unsigned int cmd, void __user *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
Eric W. Biederman881d9662007-09-17 11:56:21 -0700900void brioctl_set(int (*hook) (struct net *, unsigned int, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800902 mutex_lock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 br_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800904 mutex_unlock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905}
906EXPORT_SYMBOL(brioctl_set);
907
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800908static DEFINE_MUTEX(vlan_ioctl_mutex);
Eric W. Biederman881d9662007-09-17 11:56:21 -0700909static int (*vlan_ioctl_hook) (struct net *, void __user *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
Eric W. Biederman881d9662007-09-17 11:56:21 -0700911void vlan_ioctl_set(int (*hook) (struct net *, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800913 mutex_lock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 vlan_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800915 mutex_unlock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916}
917EXPORT_SYMBOL(vlan_ioctl_set);
918
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800919static DEFINE_MUTEX(dlci_ioctl_mutex);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700920static int (*dlci_ioctl_hook) (unsigned int, void __user *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700922void dlci_ioctl_set(int (*hook) (unsigned int, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800924 mutex_lock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 dlci_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800926 mutex_unlock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927}
928EXPORT_SYMBOL(dlci_ioctl_set);
929
Arnd Bergmann6b960182009-11-06 23:10:54 -0800930static long sock_do_ioctl(struct net *net, struct socket *sock,
931 unsigned int cmd, unsigned long arg)
932{
933 int err;
934 void __user *argp = (void __user *)arg;
935
936 err = sock->ops->ioctl(sock, cmd, arg);
937
938 /*
939 * If this ioctl is unknown try to hand it down
940 * to the NIC driver.
941 */
942 if (err == -ENOIOCTLCMD)
943 err = dev_ioctl(net, cmd, argp);
944
945 return err;
946}
947
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948/*
949 * With an ioctl, arg may well be a user mode pointer, but we don't know
950 * what to do with it - that's up to the protocol still.
951 */
952
953static long sock_ioctl(struct file *file, unsigned cmd, unsigned long arg)
954{
955 struct socket *sock;
Eric W. Biederman881d9662007-09-17 11:56:21 -0700956 struct sock *sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 void __user *argp = (void __user *)arg;
958 int pid, err;
Eric W. Biederman881d9662007-09-17 11:56:21 -0700959 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
Eric Dumazetb69aee02005-09-06 14:42:45 -0700961 sock = file->private_data;
Eric W. Biederman881d9662007-09-17 11:56:21 -0700962 sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900963 net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 if (cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15)) {
Eric W. Biederman881d9662007-09-17 11:56:21 -0700965 err = dev_ioctl(net, cmd, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 } else
Johannes Berg3d23e342009-09-29 23:27:28 +0200967#ifdef CONFIG_WEXT_CORE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 if (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST) {
Eric W. Biederman881d9662007-09-17 11:56:21 -0700969 err = dev_ioctl(net, cmd, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 } else
Johannes Berg3d23e342009-09-29 23:27:28 +0200971#endif
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700972 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 case FIOSETOWN:
974 case SIOCSPGRP:
975 err = -EFAULT;
976 if (get_user(pid, (int __user *)argp))
977 break;
978 err = f_setown(sock->file, pid, 1);
979 break;
980 case FIOGETOWN:
981 case SIOCGPGRP:
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700982 err = put_user(f_getown(sock->file),
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700983 (int __user *)argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 break;
985 case SIOCGIFBR:
986 case SIOCSIFBR:
987 case SIOCBRADDBR:
988 case SIOCBRDELBR:
989 err = -ENOPKG;
990 if (!br_ioctl_hook)
991 request_module("bridge");
992
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800993 mutex_lock(&br_ioctl_mutex);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700994 if (br_ioctl_hook)
Eric W. Biederman881d9662007-09-17 11:56:21 -0700995 err = br_ioctl_hook(net, cmd, argp);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800996 mutex_unlock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 break;
998 case SIOCGIFVLAN:
999 case SIOCSIFVLAN:
1000 err = -ENOPKG;
1001 if (!vlan_ioctl_hook)
1002 request_module("8021q");
1003
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001004 mutex_lock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 if (vlan_ioctl_hook)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001006 err = vlan_ioctl_hook(net, argp);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001007 mutex_unlock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 case SIOCADDDLCI:
1010 case SIOCDELDLCI:
1011 err = -ENOPKG;
1012 if (!dlci_ioctl_hook)
1013 request_module("dlci");
1014
Pavel Emelyanov7512cbf2008-03-21 15:58:52 -07001015 mutex_lock(&dlci_ioctl_mutex);
1016 if (dlci_ioctl_hook)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 err = dlci_ioctl_hook(cmd, argp);
Pavel Emelyanov7512cbf2008-03-21 15:58:52 -07001018 mutex_unlock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 break;
1020 default:
Arnd Bergmann6b960182009-11-06 23:10:54 -08001021 err = sock_do_ioctl(net, sock, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001023 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 return err;
1025}
1026
1027int sock_create_lite(int family, int type, int protocol, struct socket **res)
1028{
1029 int err;
1030 struct socket *sock = NULL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001031
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 err = security_socket_create(family, type, protocol, 1);
1033 if (err)
1034 goto out;
1035
1036 sock = sock_alloc();
1037 if (!sock) {
1038 err = -ENOMEM;
1039 goto out;
1040 }
1041
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 sock->type = type;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001043 err = security_socket_post_create(sock, family, type, protocol, 1);
1044 if (err)
1045 goto out_release;
1046
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047out:
1048 *res = sock;
1049 return err;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001050out_release:
1051 sock_release(sock);
1052 sock = NULL;
1053 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001055EXPORT_SYMBOL(sock_create_lite);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
1057/* No kernel lock held - perfect */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001058static unsigned int sock_poll(struct file *file, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059{
1060 struct socket *sock;
1061
1062 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001063 * We can't return errors to poll, so it's either yes or no.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 */
Eric Dumazetb69aee02005-09-06 14:42:45 -07001065 sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 return sock->ops->poll(file, sock, wait);
1067}
1068
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001069static int sock_mmap(struct file *file, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070{
Eric Dumazetb69aee02005-09-06 14:42:45 -07001071 struct socket *sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
1073 return sock->ops->mmap(file, sock, vma);
1074}
1075
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001076static int sock_close(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077{
1078 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001079 * It was possible the inode is NULL we were
1080 * closing an unfinished socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 */
1082
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001083 if (!inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 printk(KERN_DEBUG "sock_close: NULL inode\n");
1085 return 0;
1086 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 sock_release(SOCKET_I(inode));
1088 return 0;
1089}
1090
1091/*
1092 * Update the socket async list
1093 *
1094 * Fasync_list locking strategy.
1095 *
1096 * 1. fasync_list is modified only under process context socket lock
1097 * i.e. under semaphore.
1098 * 2. fasync_list is used under read_lock(&sk->sk_callback_lock)
Eric Dumazet989a2972010-04-14 09:55:35 +00001099 * or under socket lock
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 */
1101
1102static int sock_fasync(int fd, struct file *filp, int on)
1103{
Eric Dumazet989a2972010-04-14 09:55:35 +00001104 struct socket *sock = filp->private_data;
1105 struct sock *sk = sock->sk;
Eric Dumazeteaefd112011-02-18 03:26:36 +00001106 struct socket_wq *wq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107
Eric Dumazet989a2972010-04-14 09:55:35 +00001108 if (sk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110
1111 lock_sock(sk);
Eric Dumazeteaefd112011-02-18 03:26:36 +00001112 wq = rcu_dereference_protected(sock->wq, sock_owned_by_user(sk));
1113 fasync_helper(fd, filp, on, &wq->fasync_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
Eric Dumazeteaefd112011-02-18 03:26:36 +00001115 if (!wq->fasync_list)
Eric Dumazet989a2972010-04-14 09:55:35 +00001116 sock_reset_flag(sk, SOCK_FASYNC);
Jonathan Corbet76398422009-02-01 14:26:59 -07001117 else
Eric Dumazetbcdce712009-10-06 17:28:29 -07001118 sock_set_flag(sk, SOCK_FASYNC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119
Eric Dumazet989a2972010-04-14 09:55:35 +00001120 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 return 0;
1122}
1123
Eric Dumazet43815482010-04-29 11:01:49 +00001124/* This function may be called only under socket lock or callback_lock or rcu_lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125
1126int sock_wake_async(struct socket *sock, int how, int band)
1127{
Eric Dumazet43815482010-04-29 11:01:49 +00001128 struct socket_wq *wq;
1129
1130 if (!sock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 return -1;
Eric Dumazet43815482010-04-29 11:01:49 +00001132 rcu_read_lock();
1133 wq = rcu_dereference(sock->wq);
1134 if (!wq || !wq->fasync_list) {
1135 rcu_read_unlock();
1136 return -1;
1137 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001138 switch (how) {
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001139 case SOCK_WAKE_WAITD:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 if (test_bit(SOCK_ASYNC_WAITDATA, &sock->flags))
1141 break;
1142 goto call_kill;
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001143 case SOCK_WAKE_SPACE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 if (!test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sock->flags))
1145 break;
1146 /* fall through */
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001147 case SOCK_WAKE_IO:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001148call_kill:
Eric Dumazet43815482010-04-29 11:01:49 +00001149 kill_fasync(&wq->fasync_list, SIGIO, band);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 break;
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001151 case SOCK_WAKE_URG:
Eric Dumazet43815482010-04-29 11:01:49 +00001152 kill_fasync(&wq->fasync_list, SIGURG, band);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 }
Eric Dumazet43815482010-04-29 11:01:49 +00001154 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 return 0;
1156}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001157EXPORT_SYMBOL(sock_wake_async);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158
Pavel Emelyanov721db932010-09-29 16:06:32 +04001159int __sock_create(struct net *net, int family, int type, int protocol,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001160 struct socket **res, int kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161{
1162 int err;
1163 struct socket *sock;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001164 const struct net_proto_family *pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165
1166 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001167 * Check protocol is in range
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 */
1169 if (family < 0 || family >= NPROTO)
1170 return -EAFNOSUPPORT;
1171 if (type < 0 || type >= SOCK_MAX)
1172 return -EINVAL;
1173
1174 /* Compatibility.
1175
1176 This uglymoron is moved from INET layer to here to avoid
1177 deadlock in module load.
1178 */
1179 if (family == PF_INET && type == SOCK_PACKET) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001180 static int warned;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 if (!warned) {
1182 warned = 1;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001183 printk(KERN_INFO "%s uses obsolete (PF_INET,SOCK_PACKET)\n",
1184 current->comm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 }
1186 family = PF_PACKET;
1187 }
1188
1189 err = security_socket_create(family, type, protocol, kern);
1190 if (err)
1191 return err;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001192
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001193 /*
1194 * Allocate the socket and allow the family to set things up. if
1195 * the protocol is 0, the family is instructed to select an appropriate
1196 * default.
1197 */
1198 sock = sock_alloc();
1199 if (!sock) {
1200 if (net_ratelimit())
1201 printk(KERN_WARNING "socket: no more sockets\n");
1202 return -ENFILE; /* Not exactly a match, but its the
1203 closest posix thing */
1204 }
1205
1206 sock->type = type;
1207
Johannes Berg95a5afc2008-10-16 15:24:51 -07001208#ifdef CONFIG_MODULES
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001209 /* Attempt to load a protocol module if the find failed.
1210 *
1211 * 12/09/1996 Marcin: But! this makes REALLY only sense, if the user
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 * requested real, full-featured networking support upon configuration.
1213 * Otherwise module support will break!
1214 */
Eric Dumazet190683a2010-11-10 10:50:44 +00001215 if (rcu_access_pointer(net_families[family]) == NULL)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001216 request_module("net-pf-%d", family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217#endif
1218
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001219 rcu_read_lock();
1220 pf = rcu_dereference(net_families[family]);
1221 err = -EAFNOSUPPORT;
1222 if (!pf)
1223 goto out_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
1225 /*
1226 * We will call the ->create function, that possibly is in a loadable
1227 * module, so we have to bump that loadable module refcnt first.
1228 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001229 if (!try_module_get(pf->owner))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 goto out_release;
1231
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001232 /* Now protected by module ref count */
1233 rcu_read_unlock();
1234
Eric Paris3f378b62009-11-05 22:18:14 -08001235 err = pf->create(net, sock, protocol, kern);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001236 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 goto out_module_put;
Frank Filza79af592005-09-27 15:23:38 -07001238
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 /*
1240 * Now to bump the refcnt of the [loadable] module that owns this
1241 * socket at sock_release time we decrement its refcnt.
1242 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001243 if (!try_module_get(sock->ops->owner))
1244 goto out_module_busy;
1245
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 /*
1247 * Now that we're done with the ->create function, the [loadable]
1248 * module can have its refcnt decremented
1249 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001250 module_put(pf->owner);
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001251 err = security_socket_post_create(sock, family, type, protocol, kern);
1252 if (err)
Herbert Xu3b185522007-08-15 14:46:02 -07001253 goto out_sock_release;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001254 *res = sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001256 return 0;
1257
1258out_module_busy:
1259 err = -EAFNOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260out_module_put:
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001261 sock->ops = NULL;
1262 module_put(pf->owner);
1263out_sock_release:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 sock_release(sock);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001265 return err;
1266
1267out_release:
1268 rcu_read_unlock();
1269 goto out_sock_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270}
Pavel Emelyanov721db932010-09-29 16:06:32 +04001271EXPORT_SYMBOL(__sock_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
1273int sock_create(int family, int type, int protocol, struct socket **res)
1274{
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001275 return __sock_create(current->nsproxy->net_ns, family, type, protocol, res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001277EXPORT_SYMBOL(sock_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
1279int sock_create_kern(int family, int type, int protocol, struct socket **res)
1280{
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001281 return __sock_create(&init_net, family, type, protocol, res, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001283EXPORT_SYMBOL(sock_create_kern);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001285SYSCALL_DEFINE3(socket, int, family, int, type, int, protocol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286{
1287 int retval;
1288 struct socket *sock;
Ulrich Dreppera677a032008-07-23 21:29:17 -07001289 int flags;
1290
Ulrich Dreppere38b36f2008-07-23 21:29:42 -07001291 /* Check the SOCK_* constants for consistency. */
1292 BUILD_BUG_ON(SOCK_CLOEXEC != O_CLOEXEC);
1293 BUILD_BUG_ON((SOCK_MAX | SOCK_TYPE_MASK) != SOCK_TYPE_MASK);
1294 BUILD_BUG_ON(SOCK_CLOEXEC & SOCK_TYPE_MASK);
1295 BUILD_BUG_ON(SOCK_NONBLOCK & SOCK_TYPE_MASK);
1296
Ulrich Dreppera677a032008-07-23 21:29:17 -07001297 flags = type & ~SOCK_TYPE_MASK;
Ulrich Drepper77d27202008-07-23 21:29:35 -07001298 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Dreppera677a032008-07-23 21:29:17 -07001299 return -EINVAL;
1300 type &= SOCK_TYPE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001302 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1303 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1304
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 retval = sock_create(family, type, protocol, &sock);
1306 if (retval < 0)
1307 goto out;
1308
Ulrich Drepper77d27202008-07-23 21:29:35 -07001309 retval = sock_map_fd(sock, flags & (O_CLOEXEC | O_NONBLOCK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 if (retval < 0)
1311 goto out_release;
1312
1313out:
1314 /* It may be already another descriptor 8) Not kernel problem. */
1315 return retval;
1316
1317out_release:
1318 sock_release(sock);
1319 return retval;
1320}
1321
1322/*
1323 * Create a pair of connected sockets.
1324 */
1325
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001326SYSCALL_DEFINE4(socketpair, int, family, int, type, int, protocol,
1327 int __user *, usockvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328{
1329 struct socket *sock1, *sock2;
1330 int fd1, fd2, err;
Al Virodb349502007-02-07 01:48:00 -05001331 struct file *newfile1, *newfile2;
Ulrich Dreppera677a032008-07-23 21:29:17 -07001332 int flags;
1333
1334 flags = type & ~SOCK_TYPE_MASK;
Ulrich Drepper77d27202008-07-23 21:29:35 -07001335 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Dreppera677a032008-07-23 21:29:17 -07001336 return -EINVAL;
1337 type &= SOCK_TYPE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001339 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1340 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1341
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 /*
1343 * Obtain the first socket and check if the underlying protocol
1344 * supports the socketpair call.
1345 */
1346
1347 err = sock_create(family, type, protocol, &sock1);
1348 if (err < 0)
1349 goto out;
1350
1351 err = sock_create(family, type, protocol, &sock2);
1352 if (err < 0)
1353 goto out_release_1;
1354
1355 err = sock1->ops->socketpair(sock1, sock2);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001356 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 goto out_release_both;
1358
Al Viro7cbe66b2009-08-05 19:59:08 +04001359 fd1 = sock_alloc_file(sock1, &newfile1, flags);
David S. Millerbf3c23d2007-10-29 21:54:02 -07001360 if (unlikely(fd1 < 0)) {
1361 err = fd1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 goto out_release_both;
David S. Millerbf3c23d2007-10-29 21:54:02 -07001363 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
Al Viro7cbe66b2009-08-05 19:59:08 +04001365 fd2 = sock_alloc_file(sock2, &newfile2, flags);
Al Viro198de4d2009-08-05 19:29:23 +04001366 if (unlikely(fd2 < 0)) {
1367 err = fd2;
1368 fput(newfile1);
1369 put_unused_fd(fd1);
1370 sock_release(sock2);
1371 goto out;
Al Virodb349502007-02-07 01:48:00 -05001372 }
1373
Al Viro157cf642008-12-14 04:57:47 -05001374 audit_fd_pair(fd1, fd2);
Al Virodb349502007-02-07 01:48:00 -05001375 fd_install(fd1, newfile1);
1376 fd_install(fd2, newfile2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 /* fd1 and fd2 may be already another descriptors.
1378 * Not kernel problem.
1379 */
1380
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001381 err = put_user(fd1, &usockvec[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 if (!err)
1383 err = put_user(fd2, &usockvec[1]);
1384 if (!err)
1385 return 0;
1386
1387 sys_close(fd2);
1388 sys_close(fd1);
1389 return err;
1390
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391out_release_both:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001392 sock_release(sock2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393out_release_1:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001394 sock_release(sock1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395out:
1396 return err;
1397}
1398
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399/*
1400 * Bind a name to a socket. Nothing much to do here since it's
1401 * the protocol's responsibility to handle the local address.
1402 *
1403 * We move the socket address to kernel space before we call
1404 * the protocol layer (having also checked the address is ok).
1405 */
1406
Heiko Carstens20f37032009-01-14 14:14:23 +01001407SYSCALL_DEFINE3(bind, int, fd, struct sockaddr __user *, umyaddr, int, addrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408{
1409 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001410 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001411 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001413 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001414 if (sock) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001415 err = move_addr_to_kernel(umyaddr, addrlen, (struct sockaddr *)&address);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001416 if (err >= 0) {
1417 err = security_socket_bind(sock,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001418 (struct sockaddr *)&address,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001419 addrlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001420 if (!err)
1421 err = sock->ops->bind(sock,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001422 (struct sockaddr *)
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001423 &address, addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 }
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001425 fput_light(sock->file, fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001426 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 return err;
1428}
1429
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430/*
1431 * Perform a listen. Basically, we allow the protocol to do anything
1432 * necessary for a listen, and if that works, we mark the socket as
1433 * ready for listening.
1434 */
1435
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001436SYSCALL_DEFINE2(listen, int, fd, int, backlog)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437{
1438 struct socket *sock;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001439 int err, fput_needed;
Pavel Emelyanovb8e1f9b2007-12-08 00:12:33 -08001440 int somaxconn;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001441
1442 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1443 if (sock) {
Pavel Emelyanov8efa6e92008-03-31 19:41:14 -07001444 somaxconn = sock_net(sock->sk)->core.sysctl_somaxconn;
Pavel Emelyanovb8e1f9b2007-12-08 00:12:33 -08001445 if ((unsigned)backlog > somaxconn)
1446 backlog = somaxconn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447
1448 err = security_socket_listen(sock, backlog);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001449 if (!err)
1450 err = sock->ops->listen(sock, backlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001452 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 }
1454 return err;
1455}
1456
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457/*
1458 * For accept, we attempt to create a new socket, set up the link
1459 * with the client, wake up the client, then return the new
1460 * connected fd. We collect the address of the connector in kernel
1461 * space and move it to user at the very end. This is unclean because
1462 * we open the socket then return an error.
1463 *
1464 * 1003.1g adds the ability to recvmsg() to query connection pending
1465 * status to recvmsg. We need to add that support in a way thats
1466 * clean when we restucture accept also.
1467 */
1468
Heiko Carstens20f37032009-01-14 14:14:23 +01001469SYSCALL_DEFINE4(accept4, int, fd, struct sockaddr __user *, upeer_sockaddr,
1470 int __user *, upeer_addrlen, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471{
1472 struct socket *sock, *newsock;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001473 struct file *newfile;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001474 int err, len, newfd, fput_needed;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001475 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476
Ulrich Drepper77d27202008-07-23 21:29:35 -07001477 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001478 return -EINVAL;
1479
1480 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1481 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1482
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001483 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 if (!sock)
1485 goto out;
1486
1487 err = -ENFILE;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001488 newsock = sock_alloc();
1489 if (!newsock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 goto out_put;
1491
1492 newsock->type = sock->type;
1493 newsock->ops = sock->ops;
1494
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 /*
1496 * We don't need try_module_get here, as the listening socket (sock)
1497 * has the protocol module (sock->ops->owner) held.
1498 */
1499 __module_get(newsock->ops->owner);
1500
Al Viro7cbe66b2009-08-05 19:59:08 +04001501 newfd = sock_alloc_file(newsock, &newfile, flags);
David S. Miller39d8c1b2006-03-20 17:13:49 -08001502 if (unlikely(newfd < 0)) {
1503 err = newfd;
David S. Miller9a1875e2006-04-01 12:48:36 -08001504 sock_release(newsock);
1505 goto out_put;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001506 }
1507
Frank Filza79af592005-09-27 15:23:38 -07001508 err = security_socket_accept(sock, newsock);
1509 if (err)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001510 goto out_fd;
Frank Filza79af592005-09-27 15:23:38 -07001511
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 err = sock->ops->accept(sock, newsock, sock->file->f_flags);
1513 if (err < 0)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001514 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515
1516 if (upeer_sockaddr) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001517 if (newsock->ops->getname(newsock, (struct sockaddr *)&address,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001518 &len, 2) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 err = -ECONNABORTED;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001520 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 }
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001522 err = move_addr_to_user((struct sockaddr *)&address,
1523 len, upeer_sockaddr, upeer_addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 if (err < 0)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001525 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 }
1527
1528 /* File flags are not inherited via accept() unlike another OSes. */
1529
David S. Miller39d8c1b2006-03-20 17:13:49 -08001530 fd_install(newfd, newfile);
1531 err = newfd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001534 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535out:
1536 return err;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001537out_fd:
David S. Miller9606a212006-04-01 01:00:14 -08001538 fput(newfile);
David S. Miller39d8c1b2006-03-20 17:13:49 -08001539 put_unused_fd(newfd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 goto out_put;
1541}
1542
Heiko Carstens20f37032009-01-14 14:14:23 +01001543SYSCALL_DEFINE3(accept, int, fd, struct sockaddr __user *, upeer_sockaddr,
1544 int __user *, upeer_addrlen)
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001545{
Ulrich Drepperde11def2008-11-19 15:36:14 -08001546 return sys_accept4(fd, upeer_sockaddr, upeer_addrlen, 0);
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001547}
1548
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549/*
1550 * Attempt to connect to a socket with the server address. The address
1551 * is in user space so we verify it is OK and move it to kernel space.
1552 *
1553 * For 1003.1g we need to add clean support for a bind to AF_UNSPEC to
1554 * break bindings
1555 *
1556 * NOTE: 1003.1g draft 6.3 is broken with respect to AX.25/NetROM and
1557 * other SEQPACKET protocols that take time to connect() as it doesn't
1558 * include the -EINPROGRESS status for such sockets.
1559 */
1560
Heiko Carstens20f37032009-01-14 14:14:23 +01001561SYSCALL_DEFINE3(connect, int, fd, struct sockaddr __user *, uservaddr,
1562 int, addrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563{
1564 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001565 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001566 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001568 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 if (!sock)
1570 goto out;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001571 err = move_addr_to_kernel(uservaddr, addrlen, (struct sockaddr *)&address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 if (err < 0)
1573 goto out_put;
1574
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001575 err =
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001576 security_socket_connect(sock, (struct sockaddr *)&address, addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 if (err)
1578 goto out_put;
1579
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001580 err = sock->ops->connect(sock, (struct sockaddr *)&address, addrlen,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 sock->file->f_flags);
1582out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001583 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584out:
1585 return err;
1586}
1587
1588/*
1589 * Get the local address ('name') of a socket object. Move the obtained
1590 * name to user space.
1591 */
1592
Heiko Carstens20f37032009-01-14 14:14:23 +01001593SYSCALL_DEFINE3(getsockname, int, fd, struct sockaddr __user *, usockaddr,
1594 int __user *, usockaddr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595{
1596 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001597 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001598 int len, err, fput_needed;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001599
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001600 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 if (!sock)
1602 goto out;
1603
1604 err = security_socket_getsockname(sock);
1605 if (err)
1606 goto out_put;
1607
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001608 err = sock->ops->getname(sock, (struct sockaddr *)&address, &len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 if (err)
1610 goto out_put;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001611 err = move_addr_to_user((struct sockaddr *)&address, len, usockaddr, usockaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612
1613out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001614 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615out:
1616 return err;
1617}
1618
1619/*
1620 * Get the remote address ('name') of a socket object. Move the obtained
1621 * name to user space.
1622 */
1623
Heiko Carstens20f37032009-01-14 14:14:23 +01001624SYSCALL_DEFINE3(getpeername, int, fd, struct sockaddr __user *, usockaddr,
1625 int __user *, usockaddr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626{
1627 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001628 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001629 int len, err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001631 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1632 if (sock != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 err = security_socket_getpeername(sock);
1634 if (err) {
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001635 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 return err;
1637 }
1638
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001639 err =
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001640 sock->ops->getname(sock, (struct sockaddr *)&address, &len,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001641 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 if (!err)
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001643 err = move_addr_to_user((struct sockaddr *)&address, len, usockaddr,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001644 usockaddr_len);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001645 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 }
1647 return err;
1648}
1649
1650/*
1651 * Send a datagram to a given address. We move the address into kernel
1652 * space and check the user space data area is readable before invoking
1653 * the protocol.
1654 */
1655
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001656SYSCALL_DEFINE6(sendto, int, fd, void __user *, buff, size_t, len,
1657 unsigned, flags, struct sockaddr __user *, addr,
1658 int, addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659{
1660 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001661 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 int err;
1663 struct msghdr msg;
1664 struct iovec iov;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001665 int fput_needed;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001666
Linus Torvalds253eacc2010-10-30 16:43:10 -07001667 if (len > INT_MAX)
1668 len = INT_MAX;
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001669 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1670 if (!sock)
David S. Miller4387ff72007-02-08 15:06:08 -08001671 goto out;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001672
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001673 iov.iov_base = buff;
1674 iov.iov_len = len;
1675 msg.msg_name = NULL;
1676 msg.msg_iov = &iov;
1677 msg.msg_iovlen = 1;
1678 msg.msg_control = NULL;
1679 msg.msg_controllen = 0;
1680 msg.msg_namelen = 0;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001681 if (addr) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001682 err = move_addr_to_kernel(addr, addr_len, (struct sockaddr *)&address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 if (err < 0)
1684 goto out_put;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001685 msg.msg_name = (struct sockaddr *)&address;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001686 msg.msg_namelen = addr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 }
1688 if (sock->file->f_flags & O_NONBLOCK)
1689 flags |= MSG_DONTWAIT;
1690 msg.msg_flags = flags;
1691 err = sock_sendmsg(sock, &msg, len);
1692
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001693out_put:
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001694 fput_light(sock->file, fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08001695out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 return err;
1697}
1698
1699/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001700 * Send a datagram down a socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 */
1702
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001703SYSCALL_DEFINE4(send, int, fd, void __user *, buff, size_t, len,
1704 unsigned, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705{
1706 return sys_sendto(fd, buff, len, flags, NULL, 0);
1707}
1708
1709/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001710 * Receive a frame from the socket and optionally record the address of the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 * sender. We verify the buffers are writable and if needed move the
1712 * sender address from kernel to user space.
1713 */
1714
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001715SYSCALL_DEFINE6(recvfrom, int, fd, void __user *, ubuf, size_t, size,
1716 unsigned, flags, struct sockaddr __user *, addr,
1717 int __user *, addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718{
1719 struct socket *sock;
1720 struct iovec iov;
1721 struct msghdr msg;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001722 struct sockaddr_storage address;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001723 int err, err2;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001724 int fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725
Linus Torvalds253eacc2010-10-30 16:43:10 -07001726 if (size > INT_MAX)
1727 size = INT_MAX;
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001728 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 if (!sock)
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001730 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001732 msg.msg_control = NULL;
1733 msg.msg_controllen = 0;
1734 msg.msg_iovlen = 1;
1735 msg.msg_iov = &iov;
1736 iov.iov_len = size;
1737 iov.iov_base = ubuf;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001738 msg.msg_name = (struct sockaddr *)&address;
1739 msg.msg_namelen = sizeof(address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 if (sock->file->f_flags & O_NONBLOCK)
1741 flags |= MSG_DONTWAIT;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001742 err = sock_recvmsg(sock, &msg, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001744 if (err >= 0 && addr != NULL) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001745 err2 = move_addr_to_user((struct sockaddr *)&address,
1746 msg.msg_namelen, addr, addr_len);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001747 if (err2 < 0)
1748 err = err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 }
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001750
1751 fput_light(sock->file, fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08001752out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 return err;
1754}
1755
1756/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001757 * Receive a datagram from a socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 */
1759
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001760asmlinkage long sys_recv(int fd, void __user *ubuf, size_t size,
1761 unsigned flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762{
1763 return sys_recvfrom(fd, ubuf, size, flags, NULL, NULL);
1764}
1765
1766/*
1767 * Set a socket option. Because we don't know the option lengths we have
1768 * to pass the user mode parameter for the protocols to sort out.
1769 */
1770
Heiko Carstens20f37032009-01-14 14:14:23 +01001771SYSCALL_DEFINE5(setsockopt, int, fd, int, level, int, optname,
1772 char __user *, optval, int, optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001774 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 struct socket *sock;
1776
1777 if (optlen < 0)
1778 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001779
1780 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1781 if (sock != NULL) {
1782 err = security_socket_setsockopt(sock, level, optname);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001783 if (err)
1784 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785
1786 if (level == SOL_SOCKET)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001787 err =
1788 sock_setsockopt(sock, level, optname, optval,
1789 optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 else
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001791 err =
1792 sock->ops->setsockopt(sock, level, optname, optval,
1793 optlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001794out_put:
1795 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 }
1797 return err;
1798}
1799
1800/*
1801 * Get a socket option. Because we don't know the option lengths we have
1802 * to pass a user mode parameter for the protocols to sort out.
1803 */
1804
Heiko Carstens20f37032009-01-14 14:14:23 +01001805SYSCALL_DEFINE5(getsockopt, int, fd, int, level, int, optname,
1806 char __user *, optval, int __user *, optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001808 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 struct socket *sock;
1810
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001811 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1812 if (sock != NULL) {
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001813 err = security_socket_getsockopt(sock, level, optname);
1814 if (err)
1815 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816
1817 if (level == SOL_SOCKET)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001818 err =
1819 sock_getsockopt(sock, level, optname, optval,
1820 optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 else
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001822 err =
1823 sock->ops->getsockopt(sock, level, optname, optval,
1824 optlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001825out_put:
1826 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 }
1828 return err;
1829}
1830
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831/*
1832 * Shutdown a socket.
1833 */
1834
Heiko Carstens754fe8d2009-01-14 14:14:09 +01001835SYSCALL_DEFINE2(shutdown, int, fd, int, how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001837 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 struct socket *sock;
1839
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001840 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1841 if (sock != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 err = security_socket_shutdown(sock, how);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001843 if (!err)
1844 err = sock->ops->shutdown(sock, how);
1845 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 }
1847 return err;
1848}
1849
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001850/* A couple of helpful macros for getting the address of the 32/64 bit
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 * fields which are the same type (int / unsigned) on our platforms.
1852 */
1853#define COMPAT_MSG(msg, member) ((MSG_CMSG_COMPAT & flags) ? &msg##_compat->member : &msg->member)
1854#define COMPAT_NAMELEN(msg) COMPAT_MSG(msg, msg_namelen)
1855#define COMPAT_FLAGS(msg) COMPAT_MSG(msg, msg_flags)
1856
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857/*
1858 * BSD sendmsg interface
1859 */
1860
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001861SYSCALL_DEFINE3(sendmsg, int, fd, struct msghdr __user *, msg, unsigned, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001863 struct compat_msghdr __user *msg_compat =
1864 (struct compat_msghdr __user *)msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001866 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 struct iovec iovstack[UIO_FASTIOV], *iov = iovstack;
Alex Williamsonb9d717a2005-09-26 14:28:02 -07001868 unsigned char ctl[sizeof(struct cmsghdr) + 20]
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001869 __attribute__ ((aligned(sizeof(__kernel_size_t))));
1870 /* 20 is size of ipv6_pktinfo */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 unsigned char *ctl_buf = ctl;
1872 struct msghdr msg_sys;
1873 int err, ctl_len, iov_size, total_len;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001874 int fput_needed;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001875
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 err = -EFAULT;
1877 if (MSG_CMSG_COMPAT & flags) {
1878 if (get_compat_msghdr(&msg_sys, msg_compat))
1879 return -EFAULT;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001880 } else if (copy_from_user(&msg_sys, msg, sizeof(struct msghdr)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 return -EFAULT;
1882
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001883 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001884 if (!sock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 goto out;
1886
1887 /* do not move before msg_sys is valid */
1888 err = -EMSGSIZE;
1889 if (msg_sys.msg_iovlen > UIO_MAXIOV)
1890 goto out_put;
1891
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001892 /* Check whether to allocate the iovec area */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 err = -ENOMEM;
1894 iov_size = msg_sys.msg_iovlen * sizeof(struct iovec);
1895 if (msg_sys.msg_iovlen > UIO_FASTIOV) {
1896 iov = sock_kmalloc(sock->sk, iov_size, GFP_KERNEL);
1897 if (!iov)
1898 goto out_put;
1899 }
1900
1901 /* This will also move the address data into kernel space */
1902 if (MSG_CMSG_COMPAT & flags) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001903 err = verify_compat_iovec(&msg_sys, iov,
1904 (struct sockaddr *)&address,
1905 VERIFY_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 } else
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001907 err = verify_iovec(&msg_sys, iov,
1908 (struct sockaddr *)&address,
1909 VERIFY_READ);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001910 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 goto out_freeiov;
1912 total_len = err;
1913
1914 err = -ENOBUFS;
1915
1916 if (msg_sys.msg_controllen > INT_MAX)
1917 goto out_freeiov;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001918 ctl_len = msg_sys.msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 if ((MSG_CMSG_COMPAT & flags) && ctl_len) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001920 err =
1921 cmsghdr_from_user_compat_to_kern(&msg_sys, sock->sk, ctl,
1922 sizeof(ctl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 if (err)
1924 goto out_freeiov;
1925 ctl_buf = msg_sys.msg_control;
Al Viro8920e8f2005-09-07 18:28:51 -07001926 ctl_len = msg_sys.msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 } else if (ctl_len) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001928 if (ctl_len > sizeof(ctl)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 ctl_buf = sock_kmalloc(sock->sk, ctl_len, GFP_KERNEL);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001930 if (ctl_buf == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 goto out_freeiov;
1932 }
1933 err = -EFAULT;
1934 /*
1935 * Careful! Before this, msg_sys.msg_control contains a user pointer.
1936 * Afterwards, it will be a kernel pointer. Thus the compiler-assisted
1937 * checking falls down on this.
1938 */
Namhyung Kimfb8621b2010-09-07 03:55:00 +00001939 if (copy_from_user(ctl_buf,
1940 (void __user __force *)msg_sys.msg_control,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001941 ctl_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 goto out_freectl;
1943 msg_sys.msg_control = ctl_buf;
1944 }
1945 msg_sys.msg_flags = flags;
1946
1947 if (sock->file->f_flags & O_NONBLOCK)
1948 msg_sys.msg_flags |= MSG_DONTWAIT;
1949 err = sock_sendmsg(sock, &msg_sys, total_len);
1950
1951out_freectl:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001952 if (ctl_buf != ctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 sock_kfree_s(sock->sk, ctl_buf, ctl_len);
1954out_freeiov:
1955 if (iov != iovstack)
1956 sock_kfree_s(sock->sk, iov, iov_size);
1957out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001958 fput_light(sock->file, fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001959out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 return err;
1961}
1962
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07001963static int __sys_recvmsg(struct socket *sock, struct msghdr __user *msg,
1964 struct msghdr *msg_sys, unsigned flags, int nosec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001966 struct compat_msghdr __user *msg_compat =
1967 (struct compat_msghdr __user *)msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 struct iovec iovstack[UIO_FASTIOV];
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001969 struct iovec *iov = iovstack;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 unsigned long cmsg_ptr;
1971 int err, iov_size, total_len, len;
1972
1973 /* kernel mode address */
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001974 struct sockaddr_storage addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975
1976 /* user mode address pointers */
1977 struct sockaddr __user *uaddr;
1978 int __user *uaddr_len;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001979
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 if (MSG_CMSG_COMPAT & flags) {
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07001981 if (get_compat_msghdr(msg_sys, msg_compat))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 return -EFAULT;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001983 } else if (copy_from_user(msg_sys, msg, sizeof(struct msghdr)))
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001984 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 err = -EMSGSIZE;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07001987 if (msg_sys->msg_iovlen > UIO_MAXIOV)
1988 goto out;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001989
1990 /* Check whether to allocate the iovec area */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 err = -ENOMEM;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07001992 iov_size = msg_sys->msg_iovlen * sizeof(struct iovec);
1993 if (msg_sys->msg_iovlen > UIO_FASTIOV) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 iov = sock_kmalloc(sock->sk, iov_size, GFP_KERNEL);
1995 if (!iov)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07001996 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 }
1998
1999 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002000 * Save the user-mode address (verify_iovec will change the
2001 * kernel msghdr to use the kernel address space)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002003
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002004 uaddr = (__force void __user *)msg_sys->msg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 uaddr_len = COMPAT_NAMELEN(msg);
2006 if (MSG_CMSG_COMPAT & flags) {
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002007 err = verify_compat_iovec(msg_sys, iov,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07002008 (struct sockaddr *)&addr,
2009 VERIFY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 } else
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002011 err = verify_iovec(msg_sys, iov,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07002012 (struct sockaddr *)&addr,
2013 VERIFY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 if (err < 0)
2015 goto out_freeiov;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002016 total_len = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002018 cmsg_ptr = (unsigned long)msg_sys->msg_control;
2019 msg_sys->msg_flags = flags & (MSG_CMSG_CLOEXEC|MSG_CMSG_COMPAT);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002020
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 if (sock->file->f_flags & O_NONBLOCK)
2022 flags |= MSG_DONTWAIT;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002023 err = (nosec ? sock_recvmsg_nosec : sock_recvmsg)(sock, msg_sys,
2024 total_len, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 if (err < 0)
2026 goto out_freeiov;
2027 len = err;
2028
2029 if (uaddr != NULL) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07002030 err = move_addr_to_user((struct sockaddr *)&addr,
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002031 msg_sys->msg_namelen, uaddr,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002032 uaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 if (err < 0)
2034 goto out_freeiov;
2035 }
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002036 err = __put_user((msg_sys->msg_flags & ~MSG_CMSG_COMPAT),
David S. Miller37f7f422005-09-16 16:51:01 -07002037 COMPAT_FLAGS(msg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 if (err)
2039 goto out_freeiov;
2040 if (MSG_CMSG_COMPAT & flags)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002041 err = __put_user((unsigned long)msg_sys->msg_control - cmsg_ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 &msg_compat->msg_controllen);
2043 else
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002044 err = __put_user((unsigned long)msg_sys->msg_control - cmsg_ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 &msg->msg_controllen);
2046 if (err)
2047 goto out_freeiov;
2048 err = len;
2049
2050out_freeiov:
2051 if (iov != iovstack)
2052 sock_kfree_s(sock->sk, iov, iov_size);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002053out:
2054 return err;
2055}
2056
2057/*
2058 * BSD recvmsg interface
2059 */
2060
2061SYSCALL_DEFINE3(recvmsg, int, fd, struct msghdr __user *, msg,
2062 unsigned int, flags)
2063{
2064 int fput_needed, err;
2065 struct msghdr msg_sys;
2066 struct socket *sock = sockfd_lookup_light(fd, &err, &fput_needed);
2067
2068 if (!sock)
2069 goto out;
2070
2071 err = __sys_recvmsg(sock, msg, &msg_sys, flags, 0);
2072
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002073 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074out:
2075 return err;
2076}
2077
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002078/*
2079 * Linux recvmmsg interface
2080 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002082int __sys_recvmmsg(int fd, struct mmsghdr __user *mmsg, unsigned int vlen,
2083 unsigned int flags, struct timespec *timeout)
2084{
2085 int fput_needed, err, datagrams;
2086 struct socket *sock;
2087 struct mmsghdr __user *entry;
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002088 struct compat_mmsghdr __user *compat_entry;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002089 struct msghdr msg_sys;
2090 struct timespec end_time;
2091
2092 if (timeout &&
2093 poll_select_set_timeout(&end_time, timeout->tv_sec,
2094 timeout->tv_nsec))
2095 return -EINVAL;
2096
2097 datagrams = 0;
2098
2099 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2100 if (!sock)
2101 return err;
2102
2103 err = sock_error(sock->sk);
2104 if (err)
2105 goto out_put;
2106
2107 entry = mmsg;
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002108 compat_entry = (struct compat_mmsghdr __user *)mmsg;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002109
2110 while (datagrams < vlen) {
2111 /*
2112 * No need to ask LSM for more than the first datagram.
2113 */
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002114 if (MSG_CMSG_COMPAT & flags) {
2115 err = __sys_recvmsg(sock, (struct msghdr __user *)compat_entry,
2116 &msg_sys, flags, datagrams);
2117 if (err < 0)
2118 break;
2119 err = __put_user(err, &compat_entry->msg_len);
2120 ++compat_entry;
2121 } else {
2122 err = __sys_recvmsg(sock, (struct msghdr __user *)entry,
2123 &msg_sys, flags, datagrams);
2124 if (err < 0)
2125 break;
2126 err = put_user(err, &entry->msg_len);
2127 ++entry;
2128 }
2129
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002130 if (err)
2131 break;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002132 ++datagrams;
2133
Brandon L Black71c5c152010-03-26 16:18:03 +00002134 /* MSG_WAITFORONE turns on MSG_DONTWAIT after one packet */
2135 if (flags & MSG_WAITFORONE)
2136 flags |= MSG_DONTWAIT;
2137
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002138 if (timeout) {
2139 ktime_get_ts(timeout);
2140 *timeout = timespec_sub(end_time, *timeout);
2141 if (timeout->tv_sec < 0) {
2142 timeout->tv_sec = timeout->tv_nsec = 0;
2143 break;
2144 }
2145
2146 /* Timeout, return less than vlen datagrams */
2147 if (timeout->tv_nsec == 0 && timeout->tv_sec == 0)
2148 break;
2149 }
2150
2151 /* Out of band data, return right away */
2152 if (msg_sys.msg_flags & MSG_OOB)
2153 break;
2154 }
2155
2156out_put:
2157 fput_light(sock->file, fput_needed);
2158
2159 if (err == 0)
2160 return datagrams;
2161
2162 if (datagrams != 0) {
2163 /*
2164 * We may return less entries than requested (vlen) if the
2165 * sock is non block and there aren't enough datagrams...
2166 */
2167 if (err != -EAGAIN) {
2168 /*
2169 * ... or if recvmsg returns an error after we
2170 * received some datagrams, where we record the
2171 * error to return on the next call or if the
2172 * app asks about it using getsockopt(SO_ERROR).
2173 */
2174 sock->sk->sk_err = -err;
2175 }
2176
2177 return datagrams;
2178 }
2179
2180 return err;
2181}
2182
2183SYSCALL_DEFINE5(recvmmsg, int, fd, struct mmsghdr __user *, mmsg,
2184 unsigned int, vlen, unsigned int, flags,
2185 struct timespec __user *, timeout)
2186{
2187 int datagrams;
2188 struct timespec timeout_sys;
2189
2190 if (!timeout)
2191 return __sys_recvmmsg(fd, mmsg, vlen, flags, NULL);
2192
2193 if (copy_from_user(&timeout_sys, timeout, sizeof(timeout_sys)))
2194 return -EFAULT;
2195
2196 datagrams = __sys_recvmmsg(fd, mmsg, vlen, flags, &timeout_sys);
2197
2198 if (datagrams > 0 &&
2199 copy_to_user(timeout, &timeout_sys, sizeof(timeout_sys)))
2200 datagrams = -EFAULT;
2201
2202 return datagrams;
2203}
2204
2205#ifdef __ARCH_WANT_SYS_SOCKETCALL
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206/* Argument list sizes for sys_socketcall */
2207#define AL(x) ((x) * sizeof(unsigned long))
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002208static const unsigned char nargs[20] = {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002209 AL(0), AL(3), AL(3), AL(3), AL(2), AL(3),
2210 AL(3), AL(3), AL(4), AL(4), AL(4), AL(6),
2211 AL(6), AL(2), AL(5), AL(5), AL(3), AL(3),
2212 AL(4), AL(5)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002213};
2214
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215#undef AL
2216
2217/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002218 * System call vectors.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 *
2220 * Argument checking cleaned up. Saved 20% in size.
2221 * This function doesn't need to set the kernel lock because
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002222 * it is set by the callees.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 */
2224
Heiko Carstens3e0fa652009-01-14 14:14:24 +01002225SYSCALL_DEFINE2(socketcall, int, call, unsigned long __user *, args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226{
2227 unsigned long a[6];
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002228 unsigned long a0, a1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 int err;
Arjan van de Ven47379052009-09-28 12:57:44 -07002230 unsigned int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002232 if (call < 1 || call > SYS_RECVMMSG)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 return -EINVAL;
2234
Arjan van de Ven47379052009-09-28 12:57:44 -07002235 len = nargs[call];
2236 if (len > sizeof(a))
2237 return -EINVAL;
2238
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 /* copy_from_user should be SMP safe. */
Arjan van de Ven47379052009-09-28 12:57:44 -07002240 if (copy_from_user(a, args, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 return -EFAULT;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002242
Al Virof3298dc2008-12-10 03:16:51 -05002243 audit_socketcall(nargs[call] / sizeof(unsigned long), a);
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002244
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002245 a0 = a[0];
2246 a1 = a[1];
2247
2248 switch (call) {
2249 case SYS_SOCKET:
2250 err = sys_socket(a0, a1, a[2]);
2251 break;
2252 case SYS_BIND:
2253 err = sys_bind(a0, (struct sockaddr __user *)a1, a[2]);
2254 break;
2255 case SYS_CONNECT:
2256 err = sys_connect(a0, (struct sockaddr __user *)a1, a[2]);
2257 break;
2258 case SYS_LISTEN:
2259 err = sys_listen(a0, a1);
2260 break;
2261 case SYS_ACCEPT:
Ulrich Drepperde11def2008-11-19 15:36:14 -08002262 err = sys_accept4(a0, (struct sockaddr __user *)a1,
2263 (int __user *)a[2], 0);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002264 break;
2265 case SYS_GETSOCKNAME:
2266 err =
2267 sys_getsockname(a0, (struct sockaddr __user *)a1,
2268 (int __user *)a[2]);
2269 break;
2270 case SYS_GETPEERNAME:
2271 err =
2272 sys_getpeername(a0, (struct sockaddr __user *)a1,
2273 (int __user *)a[2]);
2274 break;
2275 case SYS_SOCKETPAIR:
2276 err = sys_socketpair(a0, a1, a[2], (int __user *)a[3]);
2277 break;
2278 case SYS_SEND:
2279 err = sys_send(a0, (void __user *)a1, a[2], a[3]);
2280 break;
2281 case SYS_SENDTO:
2282 err = sys_sendto(a0, (void __user *)a1, a[2], a[3],
2283 (struct sockaddr __user *)a[4], a[5]);
2284 break;
2285 case SYS_RECV:
2286 err = sys_recv(a0, (void __user *)a1, a[2], a[3]);
2287 break;
2288 case SYS_RECVFROM:
2289 err = sys_recvfrom(a0, (void __user *)a1, a[2], a[3],
2290 (struct sockaddr __user *)a[4],
2291 (int __user *)a[5]);
2292 break;
2293 case SYS_SHUTDOWN:
2294 err = sys_shutdown(a0, a1);
2295 break;
2296 case SYS_SETSOCKOPT:
2297 err = sys_setsockopt(a0, a1, a[2], (char __user *)a[3], a[4]);
2298 break;
2299 case SYS_GETSOCKOPT:
2300 err =
2301 sys_getsockopt(a0, a1, a[2], (char __user *)a[3],
2302 (int __user *)a[4]);
2303 break;
2304 case SYS_SENDMSG:
2305 err = sys_sendmsg(a0, (struct msghdr __user *)a1, a[2]);
2306 break;
2307 case SYS_RECVMSG:
2308 err = sys_recvmsg(a0, (struct msghdr __user *)a1, a[2]);
2309 break;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002310 case SYS_RECVMMSG:
2311 err = sys_recvmmsg(a0, (struct mmsghdr __user *)a1, a[2], a[3],
2312 (struct timespec __user *)a[4]);
2313 break;
Ulrich Drepperde11def2008-11-19 15:36:14 -08002314 case SYS_ACCEPT4:
2315 err = sys_accept4(a0, (struct sockaddr __user *)a1,
2316 (int __user *)a[2], a[3]);
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07002317 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002318 default:
2319 err = -EINVAL;
2320 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 }
2322 return err;
2323}
2324
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002325#endif /* __ARCH_WANT_SYS_SOCKETCALL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002327/**
2328 * sock_register - add a socket protocol handler
2329 * @ops: description of protocol
2330 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 * This function is called by a protocol handler that wants to
2332 * advertise its address family, and have it linked into the
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002333 * socket interface. The value ops->family coresponds to the
2334 * socket system call protocol family.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 */
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002336int sock_register(const struct net_proto_family *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337{
2338 int err;
2339
2340 if (ops->family >= NPROTO) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002341 printk(KERN_CRIT "protocol %d >= NPROTO(%d)\n", ops->family,
2342 NPROTO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 return -ENOBUFS;
2344 }
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002345
2346 spin_lock(&net_family_lock);
Eric Dumazet190683a2010-11-10 10:50:44 +00002347 if (rcu_dereference_protected(net_families[ops->family],
2348 lockdep_is_held(&net_family_lock)))
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002349 err = -EEXIST;
2350 else {
Eric Dumazet190683a2010-11-10 10:50:44 +00002351 rcu_assign_pointer(net_families[ops->family], ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 err = 0;
2353 }
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002354 spin_unlock(&net_family_lock);
2355
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002356 printk(KERN_INFO "NET: Registered protocol family %d\n", ops->family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 return err;
2358}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002359EXPORT_SYMBOL(sock_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002361/**
2362 * sock_unregister - remove a protocol handler
2363 * @family: protocol family to remove
2364 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 * This function is called by a protocol handler that wants to
2366 * remove its address family, and have it unlinked from the
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002367 * new socket creation.
2368 *
2369 * If protocol handler is a module, then it can use module reference
2370 * counts to protect against new references. If protocol handler is not
2371 * a module then it needs to provide its own protection in
2372 * the ops->create routine.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 */
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002374void sock_unregister(int family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375{
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002376 BUG_ON(family < 0 || family >= NPROTO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002378 spin_lock(&net_family_lock);
Eric Dumazet190683a2010-11-10 10:50:44 +00002379 rcu_assign_pointer(net_families[family], NULL);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002380 spin_unlock(&net_family_lock);
2381
2382 synchronize_rcu();
2383
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002384 printk(KERN_INFO "NET: Unregistered protocol family %d\n", family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002386EXPORT_SYMBOL(sock_unregister);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387
Andi Kleen77d76ea2005-12-22 12:43:42 -08002388static int __init sock_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389{
Nick Pigginb3e19d92011-01-07 17:50:11 +11002390 int err;
2391
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002393 * Initialize sock SLAB cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002395
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 sk_init();
2397
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002399 * Initialize skbuff SLAB cache
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 */
2401 skb_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402
2403 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002404 * Initialize the protocols module.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 */
2406
2407 init_inodecache();
Nick Pigginb3e19d92011-01-07 17:50:11 +11002408
2409 err = register_filesystem(&sock_fs_type);
2410 if (err)
2411 goto out_fs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 sock_mnt = kern_mount(&sock_fs_type);
Nick Pigginb3e19d92011-01-07 17:50:11 +11002413 if (IS_ERR(sock_mnt)) {
2414 err = PTR_ERR(sock_mnt);
2415 goto out_mount;
2416 }
Andi Kleen77d76ea2005-12-22 12:43:42 -08002417
2418 /* The real protocol initialization is performed in later initcalls.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 */
2420
2421#ifdef CONFIG_NETFILTER
2422 netfilter_init();
2423#endif
David S. Millercbeb3212005-12-22 12:58:55 -08002424
Richard Cochranc1f19b52010-07-17 08:49:36 +00002425#ifdef CONFIG_NETWORK_PHY_TIMESTAMPING
2426 skb_timestamping_init();
2427#endif
2428
Nick Pigginb3e19d92011-01-07 17:50:11 +11002429out:
2430 return err;
2431
2432out_mount:
2433 unregister_filesystem(&sock_fs_type);
2434out_fs:
2435 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436}
2437
Andi Kleen77d76ea2005-12-22 12:43:42 -08002438core_initcall(sock_init); /* early initcall */
2439
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440#ifdef CONFIG_PROC_FS
2441void socket_seq_show(struct seq_file *seq)
2442{
2443 int cpu;
2444 int counter = 0;
2445
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -07002446 for_each_possible_cpu(cpu)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002447 counter += per_cpu(sockets_in_use, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448
2449 /* It can be negative, by the way. 8) */
2450 if (counter < 0)
2451 counter = 0;
2452
2453 seq_printf(seq, "sockets: used %d\n", counter);
2454}
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002455#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456
Shaun Pereira89bbfc92006-03-21 23:58:08 -08002457#ifdef CONFIG_COMPAT
Arnd Bergmann6b960182009-11-06 23:10:54 -08002458static int do_siocgstamp(struct net *net, struct socket *sock,
2459 unsigned int cmd, struct compat_timeval __user *up)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002460{
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002461 mm_segment_t old_fs = get_fs();
2462 struct timeval ktv;
2463 int err;
2464
2465 set_fs(KERNEL_DS);
Arnd Bergmann6b960182009-11-06 23:10:54 -08002466 err = sock_do_ioctl(net, sock, cmd, (unsigned long)&ktv);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002467 set_fs(old_fs);
2468 if (!err) {
2469 err = put_user(ktv.tv_sec, &up->tv_sec);
2470 err |= __put_user(ktv.tv_usec, &up->tv_usec);
2471 }
2472 return err;
2473}
2474
Arnd Bergmann6b960182009-11-06 23:10:54 -08002475static int do_siocgstampns(struct net *net, struct socket *sock,
2476 unsigned int cmd, struct compat_timespec __user *up)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002477{
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002478 mm_segment_t old_fs = get_fs();
2479 struct timespec kts;
2480 int err;
2481
2482 set_fs(KERNEL_DS);
Arnd Bergmann6b960182009-11-06 23:10:54 -08002483 err = sock_do_ioctl(net, sock, cmd, (unsigned long)&kts);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002484 set_fs(old_fs);
2485 if (!err) {
2486 err = put_user(kts.tv_sec, &up->tv_sec);
2487 err |= __put_user(kts.tv_nsec, &up->tv_nsec);
2488 }
2489 return err;
2490}
2491
Arnd Bergmann6b960182009-11-06 23:10:54 -08002492static int dev_ifname32(struct net *net, struct compat_ifreq __user *uifr32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002493{
2494 struct ifreq __user *uifr;
2495 int err;
2496
2497 uifr = compat_alloc_user_space(sizeof(struct ifreq));
Arnd Bergmann6b960182009-11-06 23:10:54 -08002498 if (copy_in_user(uifr, uifr32, sizeof(struct compat_ifreq)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002499 return -EFAULT;
2500
Arnd Bergmann6b960182009-11-06 23:10:54 -08002501 err = dev_ioctl(net, SIOCGIFNAME, uifr);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002502 if (err)
2503 return err;
2504
Arnd Bergmann6b960182009-11-06 23:10:54 -08002505 if (copy_in_user(uifr32, uifr, sizeof(struct compat_ifreq)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002506 return -EFAULT;
2507
2508 return 0;
2509}
2510
Arnd Bergmann6b960182009-11-06 23:10:54 -08002511static int dev_ifconf(struct net *net, struct compat_ifconf __user *uifc32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002512{
Arnd Bergmann6b960182009-11-06 23:10:54 -08002513 struct compat_ifconf ifc32;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002514 struct ifconf ifc;
2515 struct ifconf __user *uifc;
Arnd Bergmann6b960182009-11-06 23:10:54 -08002516 struct compat_ifreq __user *ifr32;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002517 struct ifreq __user *ifr;
2518 unsigned int i, j;
2519 int err;
2520
Arnd Bergmann6b960182009-11-06 23:10:54 -08002521 if (copy_from_user(&ifc32, uifc32, sizeof(struct compat_ifconf)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002522 return -EFAULT;
2523
2524 if (ifc32.ifcbuf == 0) {
2525 ifc32.ifc_len = 0;
2526 ifc.ifc_len = 0;
2527 ifc.ifc_req = NULL;
2528 uifc = compat_alloc_user_space(sizeof(struct ifconf));
2529 } else {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002530 size_t len = ((ifc32.ifc_len / sizeof(struct compat_ifreq)) + 1) *
2531 sizeof(struct ifreq);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002532 uifc = compat_alloc_user_space(sizeof(struct ifconf) + len);
2533 ifc.ifc_len = len;
2534 ifr = ifc.ifc_req = (void __user *)(uifc + 1);
2535 ifr32 = compat_ptr(ifc32.ifcbuf);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002536 for (i = 0; i < ifc32.ifc_len; i += sizeof(struct compat_ifreq)) {
Arnd Bergmann6b960182009-11-06 23:10:54 -08002537 if (copy_in_user(ifr, ifr32, sizeof(struct compat_ifreq)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002538 return -EFAULT;
2539 ifr++;
2540 ifr32++;
2541 }
2542 }
2543 if (copy_to_user(uifc, &ifc, sizeof(struct ifconf)))
2544 return -EFAULT;
2545
Arnd Bergmann6b960182009-11-06 23:10:54 -08002546 err = dev_ioctl(net, SIOCGIFCONF, uifc);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002547 if (err)
2548 return err;
2549
2550 if (copy_from_user(&ifc, uifc, sizeof(struct ifconf)))
2551 return -EFAULT;
2552
2553 ifr = ifc.ifc_req;
2554 ifr32 = compat_ptr(ifc32.ifcbuf);
2555 for (i = 0, j = 0;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002556 i + sizeof(struct compat_ifreq) <= ifc32.ifc_len && j < ifc.ifc_len;
2557 i += sizeof(struct compat_ifreq), j += sizeof(struct ifreq)) {
2558 if (copy_in_user(ifr32, ifr, sizeof(struct compat_ifreq)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002559 return -EFAULT;
2560 ifr32++;
2561 ifr++;
2562 }
2563
2564 if (ifc32.ifcbuf == 0) {
2565 /* Translate from 64-bit structure multiple to
2566 * a 32-bit one.
2567 */
2568 i = ifc.ifc_len;
Arnd Bergmann6b960182009-11-06 23:10:54 -08002569 i = ((i / sizeof(struct ifreq)) * sizeof(struct compat_ifreq));
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002570 ifc32.ifc_len = i;
2571 } else {
2572 ifc32.ifc_len = i;
2573 }
Arnd Bergmann6b960182009-11-06 23:10:54 -08002574 if (copy_to_user(uifc32, &ifc32, sizeof(struct compat_ifconf)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002575 return -EFAULT;
2576
2577 return 0;
2578}
2579
Arnd Bergmann6b960182009-11-06 23:10:54 -08002580static int ethtool_ioctl(struct net *net, struct compat_ifreq __user *ifr32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002581{
Ben Hutchings3a7da392011-03-17 07:34:32 +00002582 struct compat_ethtool_rxnfc __user *compat_rxnfc;
2583 bool convert_in = false, convert_out = false;
2584 size_t buf_size = ALIGN(sizeof(struct ifreq), 8);
2585 struct ethtool_rxnfc __user *rxnfc;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002586 struct ifreq __user *ifr;
Ben Hutchings3a7da392011-03-17 07:34:32 +00002587 u32 rule_cnt = 0, actual_rule_cnt;
2588 u32 ethcmd;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002589 u32 data;
Ben Hutchings3a7da392011-03-17 07:34:32 +00002590 int ret;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002591
2592 if (get_user(data, &ifr32->ifr_ifru.ifru_data))
2593 return -EFAULT;
2594
Ben Hutchings3a7da392011-03-17 07:34:32 +00002595 compat_rxnfc = compat_ptr(data);
2596
2597 if (get_user(ethcmd, &compat_rxnfc->cmd))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002598 return -EFAULT;
2599
Ben Hutchings3a7da392011-03-17 07:34:32 +00002600 /* Most ethtool structures are defined without padding.
2601 * Unfortunately struct ethtool_rxnfc is an exception.
2602 */
2603 switch (ethcmd) {
2604 default:
2605 break;
2606 case ETHTOOL_GRXCLSRLALL:
2607 /* Buffer size is variable */
2608 if (get_user(rule_cnt, &compat_rxnfc->rule_cnt))
2609 return -EFAULT;
2610 if (rule_cnt > KMALLOC_MAX_SIZE / sizeof(u32))
2611 return -ENOMEM;
2612 buf_size += rule_cnt * sizeof(u32);
2613 /* fall through */
2614 case ETHTOOL_GRXRINGS:
2615 case ETHTOOL_GRXCLSRLCNT:
2616 case ETHTOOL_GRXCLSRULE:
2617 convert_out = true;
2618 /* fall through */
2619 case ETHTOOL_SRXCLSRLDEL:
2620 case ETHTOOL_SRXCLSRLINS:
2621 buf_size += sizeof(struct ethtool_rxnfc);
2622 convert_in = true;
2623 break;
2624 }
2625
2626 ifr = compat_alloc_user_space(buf_size);
2627 rxnfc = (void *)ifr + ALIGN(sizeof(struct ifreq), 8);
2628
2629 if (copy_in_user(&ifr->ifr_name, &ifr32->ifr_name, IFNAMSIZ))
2630 return -EFAULT;
2631
2632 if (put_user(convert_in ? rxnfc : compat_ptr(data),
2633 &ifr->ifr_ifru.ifru_data))
2634 return -EFAULT;
2635
2636 if (convert_in) {
2637 /* We expect there to be holes between fs.m_u and
2638 * fs.ring_cookie and at the end of fs, but nowhere else.
2639 */
2640 BUILD_BUG_ON(offsetof(struct compat_ethtool_rxnfc, fs.m_u) +
2641 sizeof(compat_rxnfc->fs.m_u) !=
2642 offsetof(struct ethtool_rxnfc, fs.m_u) +
2643 sizeof(rxnfc->fs.m_u));
2644 BUILD_BUG_ON(
2645 offsetof(struct compat_ethtool_rxnfc, fs.location) -
2646 offsetof(struct compat_ethtool_rxnfc, fs.ring_cookie) !=
2647 offsetof(struct ethtool_rxnfc, fs.location) -
2648 offsetof(struct ethtool_rxnfc, fs.ring_cookie));
2649
2650 if (copy_in_user(rxnfc, compat_rxnfc,
2651 (void *)(&rxnfc->fs.m_u + 1) -
2652 (void *)rxnfc) ||
2653 copy_in_user(&rxnfc->fs.ring_cookie,
2654 &compat_rxnfc->fs.ring_cookie,
2655 (void *)(&rxnfc->fs.location + 1) -
2656 (void *)&rxnfc->fs.ring_cookie) ||
2657 copy_in_user(&rxnfc->rule_cnt, &compat_rxnfc->rule_cnt,
2658 sizeof(rxnfc->rule_cnt)))
2659 return -EFAULT;
2660 }
2661
2662 ret = dev_ioctl(net, SIOCETHTOOL, ifr);
2663 if (ret)
2664 return ret;
2665
2666 if (convert_out) {
2667 if (copy_in_user(compat_rxnfc, rxnfc,
2668 (const void *)(&rxnfc->fs.m_u + 1) -
2669 (const void *)rxnfc) ||
2670 copy_in_user(&compat_rxnfc->fs.ring_cookie,
2671 &rxnfc->fs.ring_cookie,
2672 (const void *)(&rxnfc->fs.location + 1) -
2673 (const void *)&rxnfc->fs.ring_cookie) ||
2674 copy_in_user(&compat_rxnfc->rule_cnt, &rxnfc->rule_cnt,
2675 sizeof(rxnfc->rule_cnt)))
2676 return -EFAULT;
2677
2678 if (ethcmd == ETHTOOL_GRXCLSRLALL) {
2679 /* As an optimisation, we only copy the actual
2680 * number of rules that the underlying
2681 * function returned. Since Mallory might
2682 * change the rule count in user memory, we
2683 * check that it is less than the rule count
2684 * originally given (as the user buffer size),
2685 * which has been range-checked.
2686 */
2687 if (get_user(actual_rule_cnt, &rxnfc->rule_cnt))
2688 return -EFAULT;
2689 if (actual_rule_cnt < rule_cnt)
2690 rule_cnt = actual_rule_cnt;
2691 if (copy_in_user(&compat_rxnfc->rule_locs[0],
2692 &rxnfc->rule_locs[0],
2693 rule_cnt * sizeof(u32)))
2694 return -EFAULT;
2695 }
2696 }
2697
2698 return 0;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002699}
2700
Arnd Bergmann7a50a242009-11-08 20:57:03 -08002701static int compat_siocwandev(struct net *net, struct compat_ifreq __user *uifr32)
2702{
2703 void __user *uptr;
2704 compat_uptr_t uptr32;
2705 struct ifreq __user *uifr;
2706
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002707 uifr = compat_alloc_user_space(sizeof(*uifr));
Arnd Bergmann7a50a242009-11-08 20:57:03 -08002708 if (copy_in_user(uifr, uifr32, sizeof(struct compat_ifreq)))
2709 return -EFAULT;
2710
2711 if (get_user(uptr32, &uifr32->ifr_settings.ifs_ifsu))
2712 return -EFAULT;
2713
2714 uptr = compat_ptr(uptr32);
2715
2716 if (put_user(uptr, &uifr->ifr_settings.ifs_ifsu.raw_hdlc))
2717 return -EFAULT;
2718
2719 return dev_ioctl(net, SIOCWANDEV, uifr);
2720}
2721
Arnd Bergmann6b960182009-11-06 23:10:54 -08002722static int bond_ioctl(struct net *net, unsigned int cmd,
2723 struct compat_ifreq __user *ifr32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002724{
2725 struct ifreq kifr;
2726 struct ifreq __user *uifr;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002727 mm_segment_t old_fs;
2728 int err;
2729 u32 data;
2730 void __user *datap;
2731
2732 switch (cmd) {
2733 case SIOCBONDENSLAVE:
2734 case SIOCBONDRELEASE:
2735 case SIOCBONDSETHWADDR:
2736 case SIOCBONDCHANGEACTIVE:
Arnd Bergmann6b960182009-11-06 23:10:54 -08002737 if (copy_from_user(&kifr, ifr32, sizeof(struct compat_ifreq)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002738 return -EFAULT;
2739
2740 old_fs = get_fs();
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002741 set_fs(KERNEL_DS);
stephen hemmingerc3f52ae2011-02-23 09:06:48 +00002742 err = dev_ioctl(net, cmd,
2743 (struct ifreq __user __force *) &kifr);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002744 set_fs(old_fs);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002745
2746 return err;
2747 case SIOCBONDSLAVEINFOQUERY:
2748 case SIOCBONDINFOQUERY:
2749 uifr = compat_alloc_user_space(sizeof(*uifr));
2750 if (copy_in_user(&uifr->ifr_name, &ifr32->ifr_name, IFNAMSIZ))
2751 return -EFAULT;
2752
2753 if (get_user(data, &ifr32->ifr_ifru.ifru_data))
2754 return -EFAULT;
2755
2756 datap = compat_ptr(data);
2757 if (put_user(datap, &uifr->ifr_ifru.ifru_data))
2758 return -EFAULT;
2759
Arnd Bergmann6b960182009-11-06 23:10:54 -08002760 return dev_ioctl(net, cmd, uifr);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002761 default:
2762 return -EINVAL;
Joe Perchesccbd6a52010-05-14 10:58:26 +00002763 }
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002764}
2765
Arnd Bergmann6b960182009-11-06 23:10:54 -08002766static int siocdevprivate_ioctl(struct net *net, unsigned int cmd,
2767 struct compat_ifreq __user *u_ifreq32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002768{
2769 struct ifreq __user *u_ifreq64;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002770 char tmp_buf[IFNAMSIZ];
2771 void __user *data64;
2772 u32 data32;
2773
2774 if (copy_from_user(&tmp_buf[0], &(u_ifreq32->ifr_ifrn.ifrn_name[0]),
2775 IFNAMSIZ))
2776 return -EFAULT;
2777 if (__get_user(data32, &u_ifreq32->ifr_ifru.ifru_data))
2778 return -EFAULT;
2779 data64 = compat_ptr(data32);
2780
2781 u_ifreq64 = compat_alloc_user_space(sizeof(*u_ifreq64));
2782
2783 /* Don't check these user accesses, just let that get trapped
2784 * in the ioctl handler instead.
2785 */
2786 if (copy_to_user(&u_ifreq64->ifr_ifrn.ifrn_name[0], &tmp_buf[0],
2787 IFNAMSIZ))
2788 return -EFAULT;
2789 if (__put_user(data64, &u_ifreq64->ifr_ifru.ifru_data))
2790 return -EFAULT;
2791
Arnd Bergmann6b960182009-11-06 23:10:54 -08002792 return dev_ioctl(net, cmd, u_ifreq64);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002793}
2794
Arnd Bergmann6b960182009-11-06 23:10:54 -08002795static int dev_ifsioc(struct net *net, struct socket *sock,
2796 unsigned int cmd, struct compat_ifreq __user *uifr32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002797{
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002798 struct ifreq __user *uifr;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002799 int err;
2800
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002801 uifr = compat_alloc_user_space(sizeof(*uifr));
2802 if (copy_in_user(uifr, uifr32, sizeof(*uifr32)))
2803 return -EFAULT;
2804
2805 err = sock_do_ioctl(net, sock, cmd, (unsigned long)uifr);
2806
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002807 if (!err) {
2808 switch (cmd) {
2809 case SIOCGIFFLAGS:
2810 case SIOCGIFMETRIC:
2811 case SIOCGIFMTU:
2812 case SIOCGIFMEM:
2813 case SIOCGIFHWADDR:
2814 case SIOCGIFINDEX:
2815 case SIOCGIFADDR:
2816 case SIOCGIFBRDADDR:
2817 case SIOCGIFDSTADDR:
2818 case SIOCGIFNETMASK:
Arnd Bergmannfab25322009-11-08 20:56:21 -08002819 case SIOCGIFPFLAGS:
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002820 case SIOCGIFTXQLEN:
Arnd Bergmannfab25322009-11-08 20:56:21 -08002821 case SIOCGMIIPHY:
2822 case SIOCGMIIREG:
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002823 if (copy_in_user(uifr32, uifr, sizeof(*uifr32)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002824 err = -EFAULT;
2825 break;
2826 }
2827 }
2828 return err;
2829}
2830
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002831static int compat_sioc_ifmap(struct net *net, unsigned int cmd,
2832 struct compat_ifreq __user *uifr32)
2833{
2834 struct ifreq ifr;
2835 struct compat_ifmap __user *uifmap32;
2836 mm_segment_t old_fs;
2837 int err;
2838
2839 uifmap32 = &uifr32->ifr_ifru.ifru_map;
2840 err = copy_from_user(&ifr, uifr32, sizeof(ifr.ifr_name));
2841 err |= __get_user(ifr.ifr_map.mem_start, &uifmap32->mem_start);
2842 err |= __get_user(ifr.ifr_map.mem_end, &uifmap32->mem_end);
2843 err |= __get_user(ifr.ifr_map.base_addr, &uifmap32->base_addr);
2844 err |= __get_user(ifr.ifr_map.irq, &uifmap32->irq);
2845 err |= __get_user(ifr.ifr_map.dma, &uifmap32->dma);
2846 err |= __get_user(ifr.ifr_map.port, &uifmap32->port);
2847 if (err)
2848 return -EFAULT;
2849
2850 old_fs = get_fs();
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002851 set_fs(KERNEL_DS);
stephen hemmingerc3f52ae2011-02-23 09:06:48 +00002852 err = dev_ioctl(net, cmd, (void __user __force *)&ifr);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002853 set_fs(old_fs);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002854
2855 if (cmd == SIOCGIFMAP && !err) {
2856 err = copy_to_user(uifr32, &ifr, sizeof(ifr.ifr_name));
2857 err |= __put_user(ifr.ifr_map.mem_start, &uifmap32->mem_start);
2858 err |= __put_user(ifr.ifr_map.mem_end, &uifmap32->mem_end);
2859 err |= __put_user(ifr.ifr_map.base_addr, &uifmap32->base_addr);
2860 err |= __put_user(ifr.ifr_map.irq, &uifmap32->irq);
2861 err |= __put_user(ifr.ifr_map.dma, &uifmap32->dma);
2862 err |= __put_user(ifr.ifr_map.port, &uifmap32->port);
2863 if (err)
2864 err = -EFAULT;
2865 }
2866 return err;
2867}
2868
2869static int compat_siocshwtstamp(struct net *net, struct compat_ifreq __user *uifr32)
2870{
2871 void __user *uptr;
2872 compat_uptr_t uptr32;
2873 struct ifreq __user *uifr;
2874
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002875 uifr = compat_alloc_user_space(sizeof(*uifr));
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002876 if (copy_in_user(uifr, uifr32, sizeof(struct compat_ifreq)))
2877 return -EFAULT;
2878
2879 if (get_user(uptr32, &uifr32->ifr_data))
2880 return -EFAULT;
2881
2882 uptr = compat_ptr(uptr32);
2883
2884 if (put_user(uptr, &uifr->ifr_data))
2885 return -EFAULT;
2886
2887 return dev_ioctl(net, SIOCSHWTSTAMP, uifr);
2888}
2889
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002890struct rtentry32 {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002891 u32 rt_pad1;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002892 struct sockaddr rt_dst; /* target address */
2893 struct sockaddr rt_gateway; /* gateway addr (RTF_GATEWAY) */
2894 struct sockaddr rt_genmask; /* target network mask (IP) */
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002895 unsigned short rt_flags;
2896 short rt_pad2;
2897 u32 rt_pad3;
2898 unsigned char rt_tos;
2899 unsigned char rt_class;
2900 short rt_pad4;
2901 short rt_metric; /* +1 for binary compatibility! */
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002902 /* char * */ u32 rt_dev; /* forcing the device at add */
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002903 u32 rt_mtu; /* per route MTU/Window */
2904 u32 rt_window; /* Window clamping */
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002905 unsigned short rt_irtt; /* Initial RTT */
2906};
2907
2908struct in6_rtmsg32 {
2909 struct in6_addr rtmsg_dst;
2910 struct in6_addr rtmsg_src;
2911 struct in6_addr rtmsg_gateway;
2912 u32 rtmsg_type;
2913 u16 rtmsg_dst_len;
2914 u16 rtmsg_src_len;
2915 u32 rtmsg_metric;
2916 u32 rtmsg_info;
2917 u32 rtmsg_flags;
2918 s32 rtmsg_ifindex;
2919};
2920
Arnd Bergmann6b960182009-11-06 23:10:54 -08002921static int routing_ioctl(struct net *net, struct socket *sock,
2922 unsigned int cmd, void __user *argp)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002923{
2924 int ret;
2925 void *r = NULL;
2926 struct in6_rtmsg r6;
2927 struct rtentry r4;
2928 char devname[16];
2929 u32 rtdev;
2930 mm_segment_t old_fs = get_fs();
2931
Arnd Bergmann6b960182009-11-06 23:10:54 -08002932 if (sock && sock->sk && sock->sk->sk_family == AF_INET6) { /* ipv6 */
2933 struct in6_rtmsg32 __user *ur6 = argp;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002934 ret = copy_from_user(&r6.rtmsg_dst, &(ur6->rtmsg_dst),
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002935 3 * sizeof(struct in6_addr));
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002936 ret |= __get_user(r6.rtmsg_type, &(ur6->rtmsg_type));
2937 ret |= __get_user(r6.rtmsg_dst_len, &(ur6->rtmsg_dst_len));
2938 ret |= __get_user(r6.rtmsg_src_len, &(ur6->rtmsg_src_len));
2939 ret |= __get_user(r6.rtmsg_metric, &(ur6->rtmsg_metric));
2940 ret |= __get_user(r6.rtmsg_info, &(ur6->rtmsg_info));
2941 ret |= __get_user(r6.rtmsg_flags, &(ur6->rtmsg_flags));
2942 ret |= __get_user(r6.rtmsg_ifindex, &(ur6->rtmsg_ifindex));
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002943
2944 r = (void *) &r6;
2945 } else { /* ipv4 */
Arnd Bergmann6b960182009-11-06 23:10:54 -08002946 struct rtentry32 __user *ur4 = argp;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002947 ret = copy_from_user(&r4.rt_dst, &(ur4->rt_dst),
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002948 3 * sizeof(struct sockaddr));
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002949 ret |= __get_user(r4.rt_flags, &(ur4->rt_flags));
2950 ret |= __get_user(r4.rt_metric, &(ur4->rt_metric));
2951 ret |= __get_user(r4.rt_mtu, &(ur4->rt_mtu));
2952 ret |= __get_user(r4.rt_window, &(ur4->rt_window));
2953 ret |= __get_user(r4.rt_irtt, &(ur4->rt_irtt));
2954 ret |= __get_user(rtdev, &(ur4->rt_dev));
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002955 if (rtdev) {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002956 ret |= copy_from_user(devname, compat_ptr(rtdev), 15);
stephen hemmingerc3f52ae2011-02-23 09:06:48 +00002957 r4.rt_dev = (char __user __force *)devname;
2958 devname[15] = 0;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002959 } else
2960 r4.rt_dev = NULL;
2961
2962 r = (void *) &r4;
2963 }
2964
2965 if (ret) {
2966 ret = -EFAULT;
2967 goto out;
2968 }
2969
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002970 set_fs(KERNEL_DS);
Arnd Bergmann6b960182009-11-06 23:10:54 -08002971 ret = sock_do_ioctl(net, sock, cmd, (unsigned long) r);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002972 set_fs(old_fs);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002973
2974out:
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002975 return ret;
2976}
2977
2978/* Since old style bridge ioctl's endup using SIOCDEVPRIVATE
2979 * for some operations; this forces use of the newer bridge-utils that
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002980 * use compatible ioctls
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002981 */
Arnd Bergmann6b960182009-11-06 23:10:54 -08002982static int old_bridge_ioctl(compat_ulong_t __user *argp)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002983{
Arnd Bergmann6b960182009-11-06 23:10:54 -08002984 compat_ulong_t tmp;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002985
Arnd Bergmann6b960182009-11-06 23:10:54 -08002986 if (get_user(tmp, argp))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002987 return -EFAULT;
2988 if (tmp == BRCTL_GET_VERSION)
2989 return BRCTL_VERSION + 1;
2990 return -EINVAL;
2991}
2992
Arnd Bergmann6b960182009-11-06 23:10:54 -08002993static int compat_sock_ioctl_trans(struct file *file, struct socket *sock,
2994 unsigned int cmd, unsigned long arg)
2995{
2996 void __user *argp = compat_ptr(arg);
2997 struct sock *sk = sock->sk;
2998 struct net *net = sock_net(sk);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002999
Arnd Bergmann6b960182009-11-06 23:10:54 -08003000 if (cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15))
3001 return siocdevprivate_ioctl(net, cmd, argp);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003002
Arnd Bergmann6b960182009-11-06 23:10:54 -08003003 switch (cmd) {
3004 case SIOCSIFBR:
3005 case SIOCGIFBR:
3006 return old_bridge_ioctl(argp);
3007 case SIOCGIFNAME:
3008 return dev_ifname32(net, argp);
3009 case SIOCGIFCONF:
3010 return dev_ifconf(net, argp);
3011 case SIOCETHTOOL:
3012 return ethtool_ioctl(net, argp);
Arnd Bergmann7a50a242009-11-08 20:57:03 -08003013 case SIOCWANDEV:
3014 return compat_siocwandev(net, argp);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003015 case SIOCGIFMAP:
3016 case SIOCSIFMAP:
3017 return compat_sioc_ifmap(net, cmd, argp);
Arnd Bergmann6b960182009-11-06 23:10:54 -08003018 case SIOCBONDENSLAVE:
3019 case SIOCBONDRELEASE:
3020 case SIOCBONDSETHWADDR:
3021 case SIOCBONDSLAVEINFOQUERY:
3022 case SIOCBONDINFOQUERY:
3023 case SIOCBONDCHANGEACTIVE:
3024 return bond_ioctl(net, cmd, argp);
3025 case SIOCADDRT:
3026 case SIOCDELRT:
3027 return routing_ioctl(net, sock, cmd, argp);
3028 case SIOCGSTAMP:
3029 return do_siocgstamp(net, sock, cmd, argp);
3030 case SIOCGSTAMPNS:
3031 return do_siocgstampns(net, sock, cmd, argp);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003032 case SIOCSHWTSTAMP:
3033 return compat_siocshwtstamp(net, argp);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003034
Arnd Bergmann6b960182009-11-06 23:10:54 -08003035 case FIOSETOWN:
3036 case SIOCSPGRP:
3037 case FIOGETOWN:
3038 case SIOCGPGRP:
3039 case SIOCBRADDBR:
3040 case SIOCBRDELBR:
3041 case SIOCGIFVLAN:
3042 case SIOCSIFVLAN:
3043 case SIOCADDDLCI:
3044 case SIOCDELDLCI:
3045 return sock_ioctl(file, cmd, arg);
3046
3047 case SIOCGIFFLAGS:
3048 case SIOCSIFFLAGS:
3049 case SIOCGIFMETRIC:
3050 case SIOCSIFMETRIC:
3051 case SIOCGIFMTU:
3052 case SIOCSIFMTU:
3053 case SIOCGIFMEM:
3054 case SIOCSIFMEM:
3055 case SIOCGIFHWADDR:
3056 case SIOCSIFHWADDR:
3057 case SIOCADDMULTI:
3058 case SIOCDELMULTI:
3059 case SIOCGIFINDEX:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003060 case SIOCGIFADDR:
3061 case SIOCSIFADDR:
3062 case SIOCSIFHWBROADCAST:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003063 case SIOCDIFADDR:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003064 case SIOCGIFBRDADDR:
3065 case SIOCSIFBRDADDR:
3066 case SIOCGIFDSTADDR:
3067 case SIOCSIFDSTADDR:
3068 case SIOCGIFNETMASK:
3069 case SIOCSIFNETMASK:
3070 case SIOCSIFPFLAGS:
3071 case SIOCGIFPFLAGS:
3072 case SIOCGIFTXQLEN:
3073 case SIOCSIFTXQLEN:
3074 case SIOCBRADDIF:
3075 case SIOCBRDELIF:
Arnd Bergmann9177efd2009-11-06 08:09:09 +00003076 case SIOCSIFNAME:
3077 case SIOCGMIIPHY:
3078 case SIOCGMIIREG:
3079 case SIOCSMIIREG:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003080 return dev_ifsioc(net, sock, cmd, argp);
Arnd Bergmann9177efd2009-11-06 08:09:09 +00003081
Arnd Bergmann6b960182009-11-06 23:10:54 -08003082 case SIOCSARP:
3083 case SIOCGARP:
3084 case SIOCDARP:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003085 case SIOCATMARK:
Arnd Bergmann9177efd2009-11-06 08:09:09 +00003086 return sock_do_ioctl(net, sock, cmd, arg);
3087 }
3088
3089 /* Prevent warning from compat_sys_ioctl, these always
3090 * result in -EINVAL in the native case anyway. */
3091 switch (cmd) {
3092 case SIOCRTMSG:
3093 case SIOCGIFCOUNT:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003094 case SIOCSRARP:
3095 case SIOCGRARP:
3096 case SIOCDRARP:
Arnd Bergmann9177efd2009-11-06 08:09:09 +00003097 case SIOCSIFLINK:
3098 case SIOCGIFSLAVE:
3099 case SIOCSIFSLAVE:
3100 return -EINVAL;
Arnd Bergmann6b960182009-11-06 23:10:54 -08003101 }
3102
3103 return -ENOIOCTLCMD;
3104}
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003105
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003106static long compat_sock_ioctl(struct file *file, unsigned cmd,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07003107 unsigned long arg)
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003108{
3109 struct socket *sock = file->private_data;
3110 int ret = -ENOIOCTLCMD;
David S. Miller87de87d2008-06-03 09:14:03 -07003111 struct sock *sk;
3112 struct net *net;
3113
3114 sk = sock->sk;
3115 net = sock_net(sk);
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003116
3117 if (sock->ops->compat_ioctl)
3118 ret = sock->ops->compat_ioctl(sock, cmd, arg);
3119
David S. Miller87de87d2008-06-03 09:14:03 -07003120 if (ret == -ENOIOCTLCMD &&
3121 (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST))
3122 ret = compat_wext_handle_ioctl(net, cmd, arg);
3123
Arnd Bergmann6b960182009-11-06 23:10:54 -08003124 if (ret == -ENOIOCTLCMD)
3125 ret = compat_sock_ioctl_trans(file, sock, cmd, arg);
3126
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003127 return ret;
3128}
3129#endif
3130
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003131int kernel_bind(struct socket *sock, struct sockaddr *addr, int addrlen)
3132{
3133 return sock->ops->bind(sock, addr, addrlen);
3134}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003135EXPORT_SYMBOL(kernel_bind);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003136
3137int kernel_listen(struct socket *sock, int backlog)
3138{
3139 return sock->ops->listen(sock, backlog);
3140}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003141EXPORT_SYMBOL(kernel_listen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003142
3143int kernel_accept(struct socket *sock, struct socket **newsock, int flags)
3144{
3145 struct sock *sk = sock->sk;
3146 int err;
3147
3148 err = sock_create_lite(sk->sk_family, sk->sk_type, sk->sk_protocol,
3149 newsock);
3150 if (err < 0)
3151 goto done;
3152
3153 err = sock->ops->accept(sock, *newsock, flags);
3154 if (err < 0) {
3155 sock_release(*newsock);
Tony Battersbyfa8705b2007-10-10 21:09:04 -07003156 *newsock = NULL;
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003157 goto done;
3158 }
3159
3160 (*newsock)->ops = sock->ops;
Wei Yongjun1b085342008-12-18 19:35:10 -08003161 __module_get((*newsock)->ops->owner);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003162
3163done:
3164 return err;
3165}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003166EXPORT_SYMBOL(kernel_accept);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003167
3168int kernel_connect(struct socket *sock, struct sockaddr *addr, int addrlen,
YOSHIFUJI Hideaki4768fbc2007-02-09 23:25:31 +09003169 int flags)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003170{
3171 return sock->ops->connect(sock, addr, addrlen, flags);
3172}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003173EXPORT_SYMBOL(kernel_connect);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003174
3175int kernel_getsockname(struct socket *sock, struct sockaddr *addr,
3176 int *addrlen)
3177{
3178 return sock->ops->getname(sock, addr, addrlen, 0);
3179}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003180EXPORT_SYMBOL(kernel_getsockname);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003181
3182int kernel_getpeername(struct socket *sock, struct sockaddr *addr,
3183 int *addrlen)
3184{
3185 return sock->ops->getname(sock, addr, addrlen, 1);
3186}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003187EXPORT_SYMBOL(kernel_getpeername);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003188
3189int kernel_getsockopt(struct socket *sock, int level, int optname,
3190 char *optval, int *optlen)
3191{
3192 mm_segment_t oldfs = get_fs();
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003193 char __user *uoptval;
3194 int __user *uoptlen;
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003195 int err;
3196
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003197 uoptval = (char __user __force *) optval;
3198 uoptlen = (int __user __force *) optlen;
3199
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003200 set_fs(KERNEL_DS);
3201 if (level == SOL_SOCKET)
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003202 err = sock_getsockopt(sock, level, optname, uoptval, uoptlen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003203 else
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003204 err = sock->ops->getsockopt(sock, level, optname, uoptval,
3205 uoptlen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003206 set_fs(oldfs);
3207 return err;
3208}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003209EXPORT_SYMBOL(kernel_getsockopt);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003210
3211int kernel_setsockopt(struct socket *sock, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07003212 char *optval, unsigned int optlen)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003213{
3214 mm_segment_t oldfs = get_fs();
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003215 char __user *uoptval;
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003216 int err;
3217
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003218 uoptval = (char __user __force *) optval;
3219
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003220 set_fs(KERNEL_DS);
3221 if (level == SOL_SOCKET)
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003222 err = sock_setsockopt(sock, level, optname, uoptval, optlen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003223 else
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003224 err = sock->ops->setsockopt(sock, level, optname, uoptval,
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003225 optlen);
3226 set_fs(oldfs);
3227 return err;
3228}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003229EXPORT_SYMBOL(kernel_setsockopt);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003230
3231int kernel_sendpage(struct socket *sock, struct page *page, int offset,
3232 size_t size, int flags)
3233{
Herbert Xuf8451722010-05-24 00:12:34 -07003234 sock_update_classid(sock->sk);
3235
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003236 if (sock->ops->sendpage)
3237 return sock->ops->sendpage(sock, page, offset, size, flags);
3238
3239 return sock_no_sendpage(sock, page, offset, size, flags);
3240}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003241EXPORT_SYMBOL(kernel_sendpage);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003242
3243int kernel_sock_ioctl(struct socket *sock, int cmd, unsigned long arg)
3244{
3245 mm_segment_t oldfs = get_fs();
3246 int err;
3247
3248 set_fs(KERNEL_DS);
3249 err = sock->ops->ioctl(sock, cmd, arg);
3250 set_fs(oldfs);
3251
3252 return err;
3253}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003254EXPORT_SYMBOL(kernel_sock_ioctl);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003255
Trond Myklebust91cf45f2007-11-12 18:10:39 -08003256int kernel_sock_shutdown(struct socket *sock, enum sock_shutdown_cmd how)
3257{
3258 return sock->ops->shutdown(sock, how);
3259}
Trond Myklebust91cf45f2007-11-12 18:10:39 -08003260EXPORT_SYMBOL(kernel_sock_shutdown);