blob: d92c490e66fa84e432f11086642c091f5831da65 [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>
Masatake YAMATO600e1772012-08-29 10:44:29 +000091#include <linux/xattr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93#include <asm/uaccess.h>
94#include <asm/unistd.h>
95
96#include <net/compat.h>
David S. Miller87de87d2008-06-03 09:14:03 -070097#include <net/wext.h>
Herbert Xuf8451722010-05-24 00:12:34 -070098#include <net/cls_cgroup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100#include <net/sock.h>
101#include <linux/netfilter.h>
102
Arnd Bergmann6b960182009-11-06 23:10:54 -0800103#include <linux/if_tun.h>
104#include <linux/ipv6_route.h>
105#include <linux/route.h>
Arnd Bergmann6b960182009-11-06 23:10:54 -0800106#include <linux/sockios.h>
107#include <linux/atalk.h>
108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109static int sock_no_open(struct inode *irrelevant, struct file *dontcare);
Badari Pulavarty027445c2006-09-30 23:28:46 -0700110static ssize_t sock_aio_read(struct kiocb *iocb, const struct iovec *iov,
111 unsigned long nr_segs, loff_t pos);
112static ssize_t sock_aio_write(struct kiocb *iocb, const struct iovec *iov,
113 unsigned long nr_segs, loff_t pos);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700114static int sock_mmap(struct file *file, struct vm_area_struct *vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
116static int sock_close(struct inode *inode, struct file *file);
117static unsigned int sock_poll(struct file *file,
118 struct poll_table_struct *wait);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700119static long sock_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800120#ifdef CONFIG_COMPAT
121static long compat_sock_ioctl(struct file *file,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700122 unsigned int cmd, unsigned long arg);
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800123#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124static int sock_fasync(int fd, struct file *filp, int on);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125static ssize_t sock_sendpage(struct file *file, struct page *page,
126 int offset, size_t size, loff_t *ppos, int more);
Jens Axboe9c55e012007-11-06 23:30:13 -0800127static ssize_t sock_splice_read(struct file *file, loff_t *ppos,
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700128 struct pipe_inode_info *pipe, size_t len,
Jens Axboe9c55e012007-11-06 23:30:13 -0800129 unsigned int flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131/*
132 * Socket files have a set of 'special' operations as well as the generic file ones. These don't appear
133 * in the operation structures but are done directly via the socketcall() multiplexor.
134 */
135
Arjan van de Venda7071d2007-02-12 00:55:36 -0800136static const struct file_operations socket_file_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 .owner = THIS_MODULE,
138 .llseek = no_llseek,
139 .aio_read = sock_aio_read,
140 .aio_write = sock_aio_write,
141 .poll = sock_poll,
142 .unlocked_ioctl = sock_ioctl,
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800143#ifdef CONFIG_COMPAT
144 .compat_ioctl = compat_sock_ioctl,
145#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 .mmap = sock_mmap,
147 .open = sock_no_open, /* special open code to disallow open via /proc */
148 .release = sock_close,
149 .fasync = sock_fasync,
Jens Axboe5274f052006-03-30 15:15:30 +0200150 .sendpage = sock_sendpage,
151 .splice_write = generic_splice_sendpage,
Jens Axboe9c55e012007-11-06 23:30:13 -0800152 .splice_read = sock_splice_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153};
154
155/*
156 * The protocol list. Each protocol is registered in here.
157 */
158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159static DEFINE_SPINLOCK(net_family_lock);
Eric Dumazet190683a2010-11-10 10:50:44 +0000160static const struct net_proto_family __rcu *net_families[NPROTO] __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162/*
163 * Statistics counters of the socket lists
164 */
165
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700166static DEFINE_PER_CPU(int, sockets_in_use);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
168/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700169 * Support routines.
170 * Move socket addresses back and forth across the kernel/user
171 * divide and look after the messy bits.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 */
173
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174/**
175 * move_addr_to_kernel - copy a socket address into kernel space
176 * @uaddr: Address in user space
177 * @kaddr: Address in kernel space
178 * @ulen: Length in user space
179 *
180 * The address is copied into kernel space. If the provided address is
181 * too long an error code of -EINVAL is returned. If the copy gives
182 * invalid addresses -EFAULT is returned. On a success 0 is returned.
183 */
184
Maciej Żenczykowski43db3622012-03-11 12:51:50 +0000185int move_addr_to_kernel(void __user *uaddr, int ulen, struct sockaddr_storage *kaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186{
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -0700187 if (ulen < 0 || ulen > sizeof(struct sockaddr_storage))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700189 if (ulen == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 return 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700191 if (copy_from_user(kaddr, uaddr, ulen))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 return -EFAULT;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +0100193 return audit_sockaddr(ulen, kaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194}
195
196/**
197 * move_addr_to_user - copy an address to user space
198 * @kaddr: kernel space address
199 * @klen: length of address in kernel
200 * @uaddr: user space address
201 * @ulen: pointer to user length field
202 *
203 * The value pointed to by ulen on entry is the buffer length available.
204 * This is overwritten with the buffer space used. -EINVAL is returned
205 * if an overlong buffer is specified or a negative buffer size. -EFAULT
206 * is returned if either the buffer or the length field are not
207 * accessible.
208 * After copying the data up to the limit the user specifies, the true
209 * length of the data is written over the length limit the user
210 * specified. Zero is returned for a success.
211 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700212
Maciej Żenczykowski43db3622012-03-11 12:51:50 +0000213static int move_addr_to_user(struct sockaddr_storage *kaddr, int klen,
stephen hemminger11165f12010-10-18 14:27:29 +0000214 void __user *uaddr, int __user *ulen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215{
216 int err;
217 int len;
218
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700219 err = get_user(len, ulen);
220 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 return err;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700222 if (len > klen)
223 len = klen;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -0700224 if (len < 0 || len > sizeof(struct sockaddr_storage))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700226 if (len) {
Steve Grubbd6fe3942006-03-30 12:20:22 -0500227 if (audit_sockaddr(klen, kaddr))
228 return -ENOMEM;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700229 if (copy_to_user(uaddr, kaddr, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 return -EFAULT;
231 }
232 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700233 * "fromlen shall refer to the value before truncation.."
234 * 1003.1g
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 */
236 return __put_user(klen, ulen);
237}
238
Christoph Lametere18b8902006-12-06 20:33:20 -0800239static struct kmem_cache *sock_inode_cachep __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
241static struct inode *sock_alloc_inode(struct super_block *sb)
242{
243 struct socket_alloc *ei;
Eric Dumazeteaefd112011-02-18 03:26:36 +0000244 struct socket_wq *wq;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700245
Christoph Lametere94b1762006-12-06 20:33:17 -0800246 ei = kmem_cache_alloc(sock_inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 if (!ei)
248 return NULL;
Eric Dumazeteaefd112011-02-18 03:26:36 +0000249 wq = kmalloc(sizeof(*wq), GFP_KERNEL);
250 if (!wq) {
Eric Dumazet43815482010-04-29 11:01:49 +0000251 kmem_cache_free(sock_inode_cachep, ei);
252 return NULL;
253 }
Eric Dumazeteaefd112011-02-18 03:26:36 +0000254 init_waitqueue_head(&wq->wait);
255 wq->fasync_list = NULL;
256 RCU_INIT_POINTER(ei->socket.wq, wq);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700257
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 ei->socket.state = SS_UNCONNECTED;
259 ei->socket.flags = 0;
260 ei->socket.ops = NULL;
261 ei->socket.sk = NULL;
262 ei->socket.file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
264 return &ei->vfs_inode;
265}
266
267static void sock_destroy_inode(struct inode *inode)
268{
Eric Dumazet43815482010-04-29 11:01:49 +0000269 struct socket_alloc *ei;
Eric Dumazeteaefd112011-02-18 03:26:36 +0000270 struct socket_wq *wq;
Eric Dumazet43815482010-04-29 11:01:49 +0000271
272 ei = container_of(inode, struct socket_alloc, vfs_inode);
Eric Dumazeteaefd112011-02-18 03:26:36 +0000273 wq = rcu_dereference_protected(ei->socket.wq, 1);
Lai Jiangshan61845222011-03-18 12:10:25 +0800274 kfree_rcu(wq, rcu);
Eric Dumazet43815482010-04-29 11:01:49 +0000275 kmem_cache_free(sock_inode_cachep, ei);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276}
277
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700278static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279{
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700280 struct socket_alloc *ei = (struct socket_alloc *)foo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Christoph Lametera35afb82007-05-16 22:10:57 -0700282 inode_init_once(&ei->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283}
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700284
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285static int init_inodecache(void)
286{
287 sock_inode_cachep = kmem_cache_create("sock_inode_cache",
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700288 sizeof(struct socket_alloc),
289 0,
290 (SLAB_HWCACHE_ALIGN |
291 SLAB_RECLAIM_ACCOUNT |
292 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +0900293 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 if (sock_inode_cachep == NULL)
295 return -ENOMEM;
296 return 0;
297}
298
Alexey Dobriyanb87221d2009-09-21 17:01:09 -0700299static const struct super_operations sockfs_ops = {
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700300 .alloc_inode = sock_alloc_inode,
301 .destroy_inode = sock_destroy_inode,
302 .statfs = simple_statfs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303};
304
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700305/*
306 * sockfs_dname() is called from d_path().
307 */
308static char *sockfs_dname(struct dentry *dentry, char *buffer, int buflen)
309{
310 return dynamic_dname(dentry, buffer, buflen, "socket:[%lu]",
311 dentry->d_inode->i_ino);
312}
313
Al Viro3ba13d12009-02-20 06:02:22 +0000314static const struct dentry_operations sockfs_dentry_operations = {
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700315 .d_dname = sockfs_dname,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316};
317
Al Viroc74a1cb2011-01-12 16:59:34 -0500318static struct dentry *sockfs_mount(struct file_system_type *fs_type,
319 int flags, const char *dev_name, void *data)
320{
321 return mount_pseudo(fs_type, "socket:", &sockfs_ops,
322 &sockfs_dentry_operations, SOCKFS_MAGIC);
323}
324
325static struct vfsmount *sock_mnt __read_mostly;
326
327static struct file_system_type sock_fs_type = {
328 .name = "sockfs",
329 .mount = sockfs_mount,
330 .kill_sb = kill_anon_super,
331};
332
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333/*
334 * Obtains the first available file descriptor and sets it up for use.
335 *
David S. Miller39d8c1b2006-03-20 17:13:49 -0800336 * These functions create file structures and maps them to fd space
337 * of the current process. On success it returns file descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 * and file struct implicitly stored in sock->file.
339 * Note that another thread may close file descriptor before we return
340 * from this function. We use the fact that now we do not refer
341 * to socket after mapping. If one day we will need it, this
342 * function will increment ref. count on file by 1.
343 *
344 * In any case returned fd MAY BE not valid!
345 * This race condition is unavoidable
346 * with shared fd spaces, we cannot solve it inside kernel,
347 * but we take care of internal coherence yet.
348 */
349
Linus Torvaldsaab174f2012-10-02 20:25:04 -0700350struct file *sock_alloc_file(struct socket *sock, int flags, const char *dname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351{
Al Viro7cbe66b2009-08-05 19:59:08 +0400352 struct qstr name = { .name = "" };
Al Viro2c48b9c2009-08-09 00:52:35 +0400353 struct path path;
Al Viro7cbe66b2009-08-05 19:59:08 +0400354 struct file *file;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800355
Masatake YAMATO600e1772012-08-29 10:44:29 +0000356 if (dname) {
357 name.name = dname;
358 name.len = strlen(name.name);
359 } else if (sock->sk) {
360 name.name = sock->sk->sk_prot_creator->name;
361 name.len = strlen(name.name);
362 }
Nick Piggin4b936882011-01-07 17:50:07 +1100363 path.dentry = d_alloc_pseudo(sock_mnt->mnt_sb, &name);
Al Viro28407632012-08-17 23:54:15 -0400364 if (unlikely(!path.dentry))
365 return ERR_PTR(-ENOMEM);
Al Viro2c48b9c2009-08-09 00:52:35 +0400366 path.mnt = mntget(sock_mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Al Viro2c48b9c2009-08-09 00:52:35 +0400368 d_instantiate(path.dentry, SOCK_INODE(sock));
Al Virocc3808f2009-08-06 09:43:59 +0400369 SOCK_INODE(sock)->i_fop = &socket_file_ops;
370
Al Viro2c48b9c2009-08-09 00:52:35 +0400371 file = alloc_file(&path, FMODE_READ | FMODE_WRITE,
Al Virocc3808f2009-08-06 09:43:59 +0400372 &socket_file_ops);
373 if (unlikely(!file)) {
374 /* drop dentry, keep inode */
Al Viro7de9c6ee2010-10-23 11:11:40 -0400375 ihold(path.dentry->d_inode);
Al Viro2c48b9c2009-08-09 00:52:35 +0400376 path_put(&path);
Al Viro28407632012-08-17 23:54:15 -0400377 return ERR_PTR(-ENFILE);
Al Virocc3808f2009-08-06 09:43:59 +0400378 }
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;
Al Viro28407632012-08-17 23:54:15 -0400384 return file;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800385}
Al Viro56b31d12012-08-18 00:25:51 -0400386EXPORT_SYMBOL(sock_alloc_file);
David S. Miller39d8c1b2006-03-20 17:13:49 -0800387
Al Viro56b31d12012-08-18 00:25:51 -0400388static int sock_map_fd(struct socket *sock, int flags)
David S. Miller39d8c1b2006-03-20 17:13:49 -0800389{
390 struct file *newfile;
Al Viro28407632012-08-17 23:54:15 -0400391 int fd = get_unused_fd_flags(flags);
392 if (unlikely(fd < 0))
393 return fd;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800394
Linus Torvaldsaab174f2012-10-02 20:25:04 -0700395 newfile = sock_alloc_file(sock, flags, NULL);
Al Viro28407632012-08-17 23:54:15 -0400396 if (likely(!IS_ERR(newfile))) {
David S. Miller39d8c1b2006-03-20 17:13:49 -0800397 fd_install(fd, newfile);
Al Viro28407632012-08-17 23:54:15 -0400398 return fd;
399 }
Al Viro7cbe66b2009-08-05 19:59:08 +0400400
Al Viro28407632012-08-17 23:54:15 -0400401 put_unused_fd(fd);
402 return PTR_ERR(newfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403}
404
John Fastabend406a3c62012-07-20 10:39:25 +0000405struct socket *sock_from_file(struct file *file, int *err)
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800406{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800407 if (file->f_op == &socket_file_ops)
408 return file->private_data; /* set in sock_map_fd */
409
Eric Dumazet23bb80d2007-02-08 14:59:57 -0800410 *err = -ENOTSOCK;
411 return NULL;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800412}
John Fastabend406a3c62012-07-20 10:39:25 +0000413EXPORT_SYMBOL(sock_from_file);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800414
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415/**
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700416 * sockfd_lookup - Go from a file number to its socket slot
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 * @fd: file handle
418 * @err: pointer to an error code return
419 *
420 * The file handle passed in is locked and the socket it is bound
421 * too is returned. If an error occurs the err pointer is overwritten
422 * with a negative errno code and NULL is returned. The function checks
423 * for both invalid handles and passing a handle which is not a socket.
424 *
425 * On a success the socket object pointer is returned.
426 */
427
428struct socket *sockfd_lookup(int fd, int *err)
429{
430 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 struct socket *sock;
432
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700433 file = fget(fd);
434 if (!file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 *err = -EBADF;
436 return NULL;
437 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700438
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800439 sock = sock_from_file(file, err);
440 if (!sock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 fput(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 return sock;
443}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700444EXPORT_SYMBOL(sockfd_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800446static struct socket *sockfd_lookup_light(int fd, int *err, int *fput_needed)
447{
448 struct file *file;
449 struct socket *sock;
450
Hua Zhong36725582006-04-19 15:25:02 -0700451 *err = -EBADF;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800452 file = fget_light(fd, fput_needed);
453 if (file) {
454 sock = sock_from_file(file, err);
455 if (sock)
456 return sock;
457 fput_light(file, *fput_needed);
458 }
459 return NULL;
460}
461
Masatake YAMATO600e1772012-08-29 10:44:29 +0000462#define XATTR_SOCKPROTONAME_SUFFIX "sockprotoname"
463#define XATTR_NAME_SOCKPROTONAME (XATTR_SYSTEM_PREFIX XATTR_SOCKPROTONAME_SUFFIX)
464#define XATTR_NAME_SOCKPROTONAME_LEN (sizeof(XATTR_NAME_SOCKPROTONAME)-1)
465static ssize_t sockfs_getxattr(struct dentry *dentry,
466 const char *name, void *value, size_t size)
467{
468 const char *proto_name;
469 size_t proto_size;
470 int error;
471
472 error = -ENODATA;
473 if (!strncmp(name, XATTR_NAME_SOCKPROTONAME, XATTR_NAME_SOCKPROTONAME_LEN)) {
474 proto_name = dentry->d_name.name;
475 proto_size = strlen(proto_name);
476
477 if (value) {
478 error = -ERANGE;
479 if (proto_size + 1 > size)
480 goto out;
481
482 strncpy(value, proto_name, proto_size + 1);
483 }
484 error = proto_size + 1;
485 }
486
487out:
488 return error;
489}
490
491static ssize_t sockfs_listxattr(struct dentry *dentry, char *buffer,
492 size_t size)
493{
494 ssize_t len;
495 ssize_t used = 0;
496
497 len = security_inode_listsecurity(dentry->d_inode, buffer, size);
498 if (len < 0)
499 return len;
500 used += len;
501 if (buffer) {
502 if (size < used)
503 return -ERANGE;
504 buffer += len;
505 }
506
507 len = (XATTR_NAME_SOCKPROTONAME_LEN + 1);
508 used += len;
509 if (buffer) {
510 if (size < used)
511 return -ERANGE;
512 memcpy(buffer, XATTR_NAME_SOCKPROTONAME, len);
513 buffer += len;
514 }
515
516 return used;
517}
518
519static const struct inode_operations sockfs_inode_ops = {
520 .getxattr = sockfs_getxattr,
521 .listxattr = sockfs_listxattr,
522};
523
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524/**
525 * sock_alloc - allocate a socket
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700526 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 * Allocate a new inode and socket object. The two are bound together
528 * and initialised. The socket is then returned. If we are out of inodes
529 * NULL is returned.
530 */
531
532static struct socket *sock_alloc(void)
533{
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700534 struct inode *inode;
535 struct socket *sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
Eric Dumazeta209dfc2011-07-26 11:36:34 +0200537 inode = new_inode_pseudo(sock_mnt->mnt_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 if (!inode)
539 return NULL;
540
541 sock = SOCKET_I(inode);
542
Eric Dumazet29a020d2009-09-15 02:39:20 -0700543 kmemcheck_annotate_bitfield(sock, type);
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400544 inode->i_ino = get_next_ino();
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700545 inode->i_mode = S_IFSOCK | S_IRWXUGO;
David Howells8192b0c2008-11-14 10:39:10 +1100546 inode->i_uid = current_fsuid();
547 inode->i_gid = current_fsgid();
Masatake YAMATO600e1772012-08-29 10:44:29 +0000548 inode->i_op = &sockfs_inode_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
Alex Shi19e8d692012-05-14 14:15:31 -0700550 this_cpu_add(sockets_in_use, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 return sock;
552}
553
554/*
555 * In theory you can't get an open on this inode, but /proc provides
556 * a back door. Remember to keep it shut otherwise you'll let the
557 * creepy crawlies in.
558 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700559
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560static int sock_no_open(struct inode *irrelevant, struct file *dontcare)
561{
562 return -ENXIO;
563}
564
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800565const struct file_operations bad_sock_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 .owner = THIS_MODULE,
567 .open = sock_no_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200568 .llseek = noop_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569};
570
571/**
572 * sock_release - close a socket
573 * @sock: socket to close
574 *
575 * The socket is released from the protocol stack if it has a release
576 * callback, and the inode is then released if the socket is bound to
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700577 * an inode not a file.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700579
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580void sock_release(struct socket *sock)
581{
582 if (sock->ops) {
583 struct module *owner = sock->ops->owner;
584
585 sock->ops->release(sock);
586 sock->ops = NULL;
587 module_put(owner);
588 }
589
Eric Dumazeteaefd112011-02-18 03:26:36 +0000590 if (rcu_dereference_protected(sock->wq, 1)->fasync_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 printk(KERN_ERR "sock_release: fasync list not empty!\n");
592
Mikulas Patockab09e7862012-07-19 06:13:36 +0000593 if (test_bit(SOCK_EXTERNALLY_ALLOCATED, &sock->flags))
594 return;
595
Alex Shi19e8d692012-05-14 14:15:31 -0700596 this_cpu_sub(sockets_in_use, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 if (!sock->file) {
598 iput(SOCK_INODE(sock));
599 return;
600 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700601 sock->file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700603EXPORT_SYMBOL(sock_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
Oliver Hartkopp2244d072010-08-17 08:59:14 +0000605int sock_tx_timestamp(struct sock *sk, __u8 *tx_flags)
Patrick Ohly20d49472009-02-12 05:03:38 +0000606{
Oliver Hartkopp2244d072010-08-17 08:59:14 +0000607 *tx_flags = 0;
Patrick Ohly20d49472009-02-12 05:03:38 +0000608 if (sock_flag(sk, SOCK_TIMESTAMPING_TX_HARDWARE))
Oliver Hartkopp2244d072010-08-17 08:59:14 +0000609 *tx_flags |= SKBTX_HW_TSTAMP;
Patrick Ohly20d49472009-02-12 05:03:38 +0000610 if (sock_flag(sk, SOCK_TIMESTAMPING_TX_SOFTWARE))
Oliver Hartkopp2244d072010-08-17 08:59:14 +0000611 *tx_flags |= SKBTX_SW_TSTAMP;
Johannes Berg6e3e9392011-11-09 10:15:42 +0100612 if (sock_flag(sk, SOCK_WIFI_STATUS))
613 *tx_flags |= SKBTX_WIFI_STATUS;
Patrick Ohly20d49472009-02-12 05:03:38 +0000614 return 0;
615}
616EXPORT_SYMBOL(sock_tx_timestamp);
617
Anton Blanchard228e5482011-05-02 20:21:35 +0000618static inline int __sock_sendmsg_nosec(struct kiocb *iocb, struct socket *sock,
619 struct msghdr *msg, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620{
621 struct sock_iocb *si = kiocb_to_siocb(iocb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Herbert Xuf8451722010-05-24 00:12:34 -0700623 sock_update_classid(sock->sk);
624
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 si->sock = sock;
626 si->scm = NULL;
627 si->msg = msg;
628 si->size = size;
629
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 return sock->ops->sendmsg(iocb, sock, msg, size);
631}
632
Anton Blanchard228e5482011-05-02 20:21:35 +0000633static inline int __sock_sendmsg(struct kiocb *iocb, struct socket *sock,
634 struct msghdr *msg, size_t size)
635{
636 int err = security_socket_sendmsg(sock, msg, size);
637
638 return err ?: __sock_sendmsg_nosec(iocb, sock, msg, size);
639}
640
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641int sock_sendmsg(struct socket *sock, struct msghdr *msg, size_t size)
642{
643 struct kiocb iocb;
644 struct sock_iocb siocb;
645 int ret;
646
647 init_sync_kiocb(&iocb, NULL);
648 iocb.private = &siocb;
649 ret = __sock_sendmsg(&iocb, sock, msg, size);
650 if (-EIOCBQUEUED == ret)
651 ret = wait_on_sync_kiocb(&iocb);
652 return ret;
653}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700654EXPORT_SYMBOL(sock_sendmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
Eric Dumazet894dc242011-07-26 02:39:41 +0000656static int sock_sendmsg_nosec(struct socket *sock, struct msghdr *msg, size_t size)
Anton Blanchard228e5482011-05-02 20:21:35 +0000657{
658 struct kiocb iocb;
659 struct sock_iocb siocb;
660 int ret;
661
662 init_sync_kiocb(&iocb, NULL);
663 iocb.private = &siocb;
664 ret = __sock_sendmsg_nosec(&iocb, sock, msg, size);
665 if (-EIOCBQUEUED == ret)
666 ret = wait_on_sync_kiocb(&iocb);
667 return ret;
668}
669
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670int kernel_sendmsg(struct socket *sock, struct msghdr *msg,
671 struct kvec *vec, size_t num, size_t size)
672{
673 mm_segment_t oldfs = get_fs();
674 int result;
675
676 set_fs(KERNEL_DS);
677 /*
678 * the following is safe, since for compiler definitions of kvec and
679 * iovec are identical, yielding the same in-core layout and alignment
680 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700681 msg->msg_iov = (struct iovec *)vec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 msg->msg_iovlen = num;
683 result = sock_sendmsg(sock, msg, size);
684 set_fs(oldfs);
685 return result;
686}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700687EXPORT_SYMBOL(kernel_sendmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
Patrick Ohly20d49472009-02-12 05:03:38 +0000689static int ktime2ts(ktime_t kt, struct timespec *ts)
690{
691 if (kt.tv64) {
692 *ts = ktime_to_timespec(kt);
693 return 1;
694 } else {
695 return 0;
696 }
697}
698
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700699/*
700 * called from sock_recv_timestamp() if sock_flag(sk, SOCK_RCVTSTAMP)
701 */
702void __sock_recv_timestamp(struct msghdr *msg, struct sock *sk,
703 struct sk_buff *skb)
704{
Patrick Ohly20d49472009-02-12 05:03:38 +0000705 int need_software_tstamp = sock_flag(sk, SOCK_RCVTSTAMP);
706 struct timespec ts[3];
707 int empty = 1;
708 struct skb_shared_hwtstamps *shhwtstamps =
709 skb_hwtstamps(skb);
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700710
Patrick Ohly20d49472009-02-12 05:03:38 +0000711 /* Race occurred between timestamp enabling and packet
712 receiving. Fill in the current time for now. */
713 if (need_software_tstamp && skb->tstamp.tv64 == 0)
714 __net_timestamp(skb);
715
716 if (need_software_tstamp) {
717 if (!sock_flag(sk, SOCK_RCVTSTAMPNS)) {
718 struct timeval tv;
719 skb_get_timestamp(skb, &tv);
720 put_cmsg(msg, SOL_SOCKET, SCM_TIMESTAMP,
721 sizeof(tv), &tv);
722 } else {
Hagen Paul Pfeifer842509b2010-04-06 05:39:52 +0000723 skb_get_timestampns(skb, &ts[0]);
Patrick Ohly20d49472009-02-12 05:03:38 +0000724 put_cmsg(msg, SOL_SOCKET, SCM_TIMESTAMPNS,
Hagen Paul Pfeifer842509b2010-04-06 05:39:52 +0000725 sizeof(ts[0]), &ts[0]);
Patrick Ohly20d49472009-02-12 05:03:38 +0000726 }
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700727 }
Patrick Ohly20d49472009-02-12 05:03:38 +0000728
729
730 memset(ts, 0, sizeof(ts));
731 if (skb->tstamp.tv64 &&
732 sock_flag(sk, SOCK_TIMESTAMPING_SOFTWARE)) {
733 skb_get_timestampns(skb, ts + 0);
734 empty = 0;
735 }
736 if (shhwtstamps) {
737 if (sock_flag(sk, SOCK_TIMESTAMPING_SYS_HARDWARE) &&
738 ktime2ts(shhwtstamps->syststamp, ts + 1))
739 empty = 0;
740 if (sock_flag(sk, SOCK_TIMESTAMPING_RAW_HARDWARE) &&
741 ktime2ts(shhwtstamps->hwtstamp, ts + 2))
742 empty = 0;
743 }
744 if (!empty)
745 put_cmsg(msg, SOL_SOCKET,
746 SCM_TIMESTAMPING, sizeof(ts), &ts);
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700747}
Arnaldo Carvalho de Melo7c81fd82007-03-10 00:39:35 -0300748EXPORT_SYMBOL_GPL(__sock_recv_timestamp);
749
Johannes Berg6e3e9392011-11-09 10:15:42 +0100750void __sock_recv_wifi_status(struct msghdr *msg, struct sock *sk,
751 struct sk_buff *skb)
752{
753 int ack;
754
755 if (!sock_flag(sk, SOCK_WIFI_STATUS))
756 return;
757 if (!skb->wifi_acked_valid)
758 return;
759
760 ack = skb->wifi_acked;
761
762 put_cmsg(msg, SOL_SOCKET, SCM_WIFI_STATUS, sizeof(ack), &ack);
763}
764EXPORT_SYMBOL_GPL(__sock_recv_wifi_status);
765
stephen hemminger11165f12010-10-18 14:27:29 +0000766static inline void sock_recv_drops(struct msghdr *msg, struct sock *sk,
767 struct sk_buff *skb)
Neil Horman3b885782009-10-12 13:26:31 -0700768{
769 if (sock_flag(sk, SOCK_RXQ_OVFL) && skb && skb->dropcount)
770 put_cmsg(msg, SOL_SOCKET, SO_RXQ_OVFL,
771 sizeof(__u32), &skb->dropcount);
772}
773
Eric Dumazet767dd032010-04-28 19:14:43 +0000774void __sock_recv_ts_and_drops(struct msghdr *msg, struct sock *sk,
Neil Horman3b885782009-10-12 13:26:31 -0700775 struct sk_buff *skb)
776{
777 sock_recv_timestamp(msg, sk, skb);
778 sock_recv_drops(msg, sk, skb);
779}
Eric Dumazet767dd032010-04-28 19:14:43 +0000780EXPORT_SYMBOL_GPL(__sock_recv_ts_and_drops);
Neil Horman3b885782009-10-12 13:26:31 -0700781
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -0700782static inline int __sock_recvmsg_nosec(struct kiocb *iocb, struct socket *sock,
783 struct msghdr *msg, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 struct sock_iocb *si = kiocb_to_siocb(iocb);
786
Herbert Xuf8451722010-05-24 00:12:34 -0700787 sock_update_classid(sock->sk);
788
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 si->sock = sock;
790 si->scm = NULL;
791 si->msg = msg;
792 si->size = size;
793 si->flags = flags;
794
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 return sock->ops->recvmsg(iocb, sock, msg, size, flags);
796}
797
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -0700798static inline int __sock_recvmsg(struct kiocb *iocb, struct socket *sock,
799 struct msghdr *msg, size_t size, int flags)
800{
801 int err = security_socket_recvmsg(sock, msg, size, flags);
802
803 return err ?: __sock_recvmsg_nosec(iocb, sock, msg, size, flags);
804}
805
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700806int sock_recvmsg(struct socket *sock, struct msghdr *msg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 size_t size, int flags)
808{
809 struct kiocb iocb;
810 struct sock_iocb siocb;
811 int ret;
812
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700813 init_sync_kiocb(&iocb, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 iocb.private = &siocb;
815 ret = __sock_recvmsg(&iocb, sock, msg, size, flags);
816 if (-EIOCBQUEUED == ret)
817 ret = wait_on_sync_kiocb(&iocb);
818 return ret;
819}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700820EXPORT_SYMBOL(sock_recvmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -0700822static int sock_recvmsg_nosec(struct socket *sock, struct msghdr *msg,
823 size_t size, int flags)
824{
825 struct kiocb iocb;
826 struct sock_iocb siocb;
827 int ret;
828
829 init_sync_kiocb(&iocb, NULL);
830 iocb.private = &siocb;
831 ret = __sock_recvmsg_nosec(&iocb, sock, msg, size, flags);
832 if (-EIOCBQUEUED == ret)
833 ret = wait_on_sync_kiocb(&iocb);
834 return ret;
835}
836
Martin Lucinac1249c02010-12-10 00:04:05 +0000837/**
838 * kernel_recvmsg - Receive a message from a socket (kernel space)
839 * @sock: The socket to receive the message from
840 * @msg: Received message
841 * @vec: Input s/g array for message data
842 * @num: Size of input s/g array
843 * @size: Number of bytes to read
844 * @flags: Message flags (MSG_DONTWAIT, etc...)
845 *
846 * On return the msg structure contains the scatter/gather array passed in the
847 * vec argument. The array is modified so that it consists of the unfilled
848 * portion of the original array.
849 *
850 * The returned value is the total number of bytes received, or an error.
851 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700852int kernel_recvmsg(struct socket *sock, struct msghdr *msg,
853 struct kvec *vec, size_t num, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854{
855 mm_segment_t oldfs = get_fs();
856 int result;
857
858 set_fs(KERNEL_DS);
859 /*
860 * the following is safe, since for compiler definitions of kvec and
861 * iovec are identical, yielding the same in-core layout and alignment
862 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700863 msg->msg_iov = (struct iovec *)vec, msg->msg_iovlen = num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 result = sock_recvmsg(sock, msg, size, flags);
865 set_fs(oldfs);
866 return result;
867}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700868EXPORT_SYMBOL(kernel_recvmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
870static void sock_aio_dtor(struct kiocb *iocb)
871{
872 kfree(iocb->private);
873}
874
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -0300875static ssize_t sock_sendpage(struct file *file, struct page *page,
876 int offset, size_t size, loff_t *ppos, int more)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877{
878 struct socket *sock;
879 int flags;
880
Eric Dumazetb69aee02005-09-06 14:42:45 -0700881 sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
Eric Dumazet35f9c092012-04-05 03:05:35 +0000883 flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
884 /* more is a combination of MSG_MORE and MSG_SENDPAGE_NOTLAST */
885 flags |= more;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
Linus Torvaldse6949582009-08-13 08:28:36 -0700887 return kernel_sendpage(sock, page, offset, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888}
889
Jens Axboe9c55e012007-11-06 23:30:13 -0800890static ssize_t sock_splice_read(struct file *file, loff_t *ppos,
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700891 struct pipe_inode_info *pipe, size_t len,
Jens Axboe9c55e012007-11-06 23:30:13 -0800892 unsigned int flags)
893{
894 struct socket *sock = file->private_data;
895
Rémi Denis-Courmont997b37d2008-02-15 02:35:45 -0800896 if (unlikely(!sock->ops->splice_read))
897 return -EINVAL;
898
Herbert Xuf8451722010-05-24 00:12:34 -0700899 sock_update_classid(sock->sk);
900
Jens Axboe9c55e012007-11-06 23:30:13 -0800901 return sock->ops->splice_read(sock, ppos, pipe, len, flags);
902}
903
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800904static struct sock_iocb *alloc_sock_iocb(struct kiocb *iocb,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700905 struct sock_iocb *siocb)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800906{
907 if (!is_sync_kiocb(iocb)) {
908 siocb = kmalloc(sizeof(*siocb), GFP_KERNEL);
909 if (!siocb)
910 return NULL;
911 iocb->ki_dtor = sock_aio_dtor;
912 }
913
914 siocb->kiocb = iocb;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800915 iocb->private = siocb;
916 return siocb;
917}
918
919static ssize_t do_sock_read(struct msghdr *msg, struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -0700920 struct file *file, const struct iovec *iov,
921 unsigned long nr_segs)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800922{
923 struct socket *sock = file->private_data;
924 size_t size = 0;
925 int i;
926
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700927 for (i = 0; i < nr_segs; i++)
928 size += iov[i].iov_len;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800929
930 msg->msg_name = NULL;
931 msg->msg_namelen = 0;
932 msg->msg_control = NULL;
933 msg->msg_controllen = 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700934 msg->msg_iov = (struct iovec *)iov;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800935 msg->msg_iovlen = nr_segs;
936 msg->msg_flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
937
938 return __sock_recvmsg(iocb, sock, msg, size, msg->msg_flags);
939}
940
Badari Pulavarty027445c2006-09-30 23:28:46 -0700941static ssize_t sock_aio_read(struct kiocb *iocb, const struct iovec *iov,
942 unsigned long nr_segs, loff_t pos)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800943{
944 struct sock_iocb siocb, *x;
945
946 if (pos != 0)
947 return -ESPIPE;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700948
949 if (iocb->ki_left == 0) /* Match SYS5 behaviour */
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800950 return 0;
951
Badari Pulavarty027445c2006-09-30 23:28:46 -0700952
953 x = alloc_sock_iocb(iocb, &siocb);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800954 if (!x)
955 return -ENOMEM;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700956 return do_sock_read(&x->async_msg, iocb, iocb->ki_filp, iov, nr_segs);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800957}
958
959static ssize_t do_sock_write(struct msghdr *msg, struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -0700960 struct file *file, const struct iovec *iov,
961 unsigned long nr_segs)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800962{
963 struct socket *sock = file->private_data;
964 size_t size = 0;
965 int i;
966
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700967 for (i = 0; i < nr_segs; i++)
968 size += iov[i].iov_len;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800969
970 msg->msg_name = NULL;
971 msg->msg_namelen = 0;
972 msg->msg_control = NULL;
973 msg->msg_controllen = 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700974 msg->msg_iov = (struct iovec *)iov;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800975 msg->msg_iovlen = nr_segs;
976 msg->msg_flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
977 if (sock->type == SOCK_SEQPACKET)
978 msg->msg_flags |= MSG_EOR;
979
980 return __sock_sendmsg(iocb, sock, msg, size);
981}
982
Badari Pulavarty027445c2006-09-30 23:28:46 -0700983static ssize_t sock_aio_write(struct kiocb *iocb, const struct iovec *iov,
984 unsigned long nr_segs, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985{
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800986 struct sock_iocb siocb, *x;
987
988 if (pos != 0)
989 return -ESPIPE;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700990
Badari Pulavarty027445c2006-09-30 23:28:46 -0700991 x = alloc_sock_iocb(iocb, &siocb);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800992 if (!x)
993 return -ENOMEM;
994
Badari Pulavarty027445c2006-09-30 23:28:46 -0700995 return do_sock_write(&x->async_msg, iocb, iocb->ki_filp, iov, nr_segs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996}
997
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998/*
999 * Atomic setting of ioctl hooks to avoid race
1000 * with module unload.
1001 */
1002
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001003static DEFINE_MUTEX(br_ioctl_mutex);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001004static int (*br_ioctl_hook) (struct net *, unsigned int cmd, void __user *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
Eric W. Biederman881d9662007-09-17 11:56:21 -07001006void brioctl_set(int (*hook) (struct net *, unsigned int, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001008 mutex_lock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 br_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001010 mutex_unlock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011}
1012EXPORT_SYMBOL(brioctl_set);
1013
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001014static DEFINE_MUTEX(vlan_ioctl_mutex);
Eric W. Biederman881d9662007-09-17 11:56:21 -07001015static int (*vlan_ioctl_hook) (struct net *, void __user *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
Eric W. Biederman881d9662007-09-17 11:56:21 -07001017void vlan_ioctl_set(int (*hook) (struct net *, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001019 mutex_lock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 vlan_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001021 mutex_unlock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022}
1023EXPORT_SYMBOL(vlan_ioctl_set);
1024
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001025static DEFINE_MUTEX(dlci_ioctl_mutex);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001026static int (*dlci_ioctl_hook) (unsigned int, void __user *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001028void dlci_ioctl_set(int (*hook) (unsigned int, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001030 mutex_lock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 dlci_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001032 mutex_unlock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033}
1034EXPORT_SYMBOL(dlci_ioctl_set);
1035
Arnd Bergmann6b960182009-11-06 23:10:54 -08001036static long sock_do_ioctl(struct net *net, struct socket *sock,
1037 unsigned int cmd, unsigned long arg)
1038{
1039 int err;
1040 void __user *argp = (void __user *)arg;
1041
1042 err = sock->ops->ioctl(sock, cmd, arg);
1043
1044 /*
1045 * If this ioctl is unknown try to hand it down
1046 * to the NIC driver.
1047 */
1048 if (err == -ENOIOCTLCMD)
1049 err = dev_ioctl(net, cmd, argp);
1050
1051 return err;
1052}
1053
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054/*
1055 * With an ioctl, arg may well be a user mode pointer, but we don't know
1056 * what to do with it - that's up to the protocol still.
1057 */
1058
1059static long sock_ioctl(struct file *file, unsigned cmd, unsigned long arg)
1060{
1061 struct socket *sock;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001062 struct sock *sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 void __user *argp = (void __user *)arg;
1064 int pid, err;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001065 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066
Eric Dumazetb69aee02005-09-06 14:42:45 -07001067 sock = file->private_data;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001068 sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001069 net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 if (cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15)) {
Eric W. Biederman881d9662007-09-17 11:56:21 -07001071 err = dev_ioctl(net, cmd, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 } else
Johannes Berg3d23e342009-09-29 23:27:28 +02001073#ifdef CONFIG_WEXT_CORE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 if (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST) {
Eric W. Biederman881d9662007-09-17 11:56:21 -07001075 err = dev_ioctl(net, cmd, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 } else
Johannes Berg3d23e342009-09-29 23:27:28 +02001077#endif
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001078 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 case FIOSETOWN:
1080 case SIOCSPGRP:
1081 err = -EFAULT;
1082 if (get_user(pid, (int __user *)argp))
1083 break;
1084 err = f_setown(sock->file, pid, 1);
1085 break;
1086 case FIOGETOWN:
1087 case SIOCGPGRP:
Eric W. Biederman609d7fa2006-10-02 02:17:15 -07001088 err = put_user(f_getown(sock->file),
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001089 (int __user *)argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 break;
1091 case SIOCGIFBR:
1092 case SIOCSIFBR:
1093 case SIOCBRADDBR:
1094 case SIOCBRDELBR:
1095 err = -ENOPKG;
1096 if (!br_ioctl_hook)
1097 request_module("bridge");
1098
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001099 mutex_lock(&br_ioctl_mutex);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001100 if (br_ioctl_hook)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001101 err = br_ioctl_hook(net, cmd, argp);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001102 mutex_unlock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 break;
1104 case SIOCGIFVLAN:
1105 case SIOCSIFVLAN:
1106 err = -ENOPKG;
1107 if (!vlan_ioctl_hook)
1108 request_module("8021q");
1109
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001110 mutex_lock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 if (vlan_ioctl_hook)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001112 err = vlan_ioctl_hook(net, argp);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001113 mutex_unlock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 case SIOCADDDLCI:
1116 case SIOCDELDLCI:
1117 err = -ENOPKG;
1118 if (!dlci_ioctl_hook)
1119 request_module("dlci");
1120
Pavel Emelyanov7512cbf2008-03-21 15:58:52 -07001121 mutex_lock(&dlci_ioctl_mutex);
1122 if (dlci_ioctl_hook)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 err = dlci_ioctl_hook(cmd, argp);
Pavel Emelyanov7512cbf2008-03-21 15:58:52 -07001124 mutex_unlock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 break;
1126 default:
Arnd Bergmann6b960182009-11-06 23:10:54 -08001127 err = sock_do_ioctl(net, sock, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001129 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 return err;
1131}
1132
1133int sock_create_lite(int family, int type, int protocol, struct socket **res)
1134{
1135 int err;
1136 struct socket *sock = NULL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001137
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 err = security_socket_create(family, type, protocol, 1);
1139 if (err)
1140 goto out;
1141
1142 sock = sock_alloc();
1143 if (!sock) {
1144 err = -ENOMEM;
1145 goto out;
1146 }
1147
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 sock->type = type;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001149 err = security_socket_post_create(sock, family, type, protocol, 1);
1150 if (err)
1151 goto out_release;
1152
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153out:
1154 *res = sock;
1155 return err;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001156out_release:
1157 sock_release(sock);
1158 sock = NULL;
1159 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001161EXPORT_SYMBOL(sock_create_lite);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
1163/* No kernel lock held - perfect */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001164static unsigned int sock_poll(struct file *file, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165{
1166 struct socket *sock;
1167
1168 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001169 * We can't return errors to poll, so it's either yes or no.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 */
Eric Dumazetb69aee02005-09-06 14:42:45 -07001171 sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 return sock->ops->poll(file, sock, wait);
1173}
1174
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001175static int sock_mmap(struct file *file, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176{
Eric Dumazetb69aee02005-09-06 14:42:45 -07001177 struct socket *sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178
1179 return sock->ops->mmap(file, sock, vma);
1180}
1181
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001182static int sock_close(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183{
1184 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001185 * It was possible the inode is NULL we were
1186 * closing an unfinished socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 */
1188
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001189 if (!inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 printk(KERN_DEBUG "sock_close: NULL inode\n");
1191 return 0;
1192 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 sock_release(SOCKET_I(inode));
1194 return 0;
1195}
1196
1197/*
1198 * Update the socket async list
1199 *
1200 * Fasync_list locking strategy.
1201 *
1202 * 1. fasync_list is modified only under process context socket lock
1203 * i.e. under semaphore.
1204 * 2. fasync_list is used under read_lock(&sk->sk_callback_lock)
Eric Dumazet989a2972010-04-14 09:55:35 +00001205 * or under socket lock
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 */
1207
1208static int sock_fasync(int fd, struct file *filp, int on)
1209{
Eric Dumazet989a2972010-04-14 09:55:35 +00001210 struct socket *sock = filp->private_data;
1211 struct sock *sk = sock->sk;
Eric Dumazeteaefd112011-02-18 03:26:36 +00001212 struct socket_wq *wq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
Eric Dumazet989a2972010-04-14 09:55:35 +00001214 if (sk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
1217 lock_sock(sk);
Eric Dumazeteaefd112011-02-18 03:26:36 +00001218 wq = rcu_dereference_protected(sock->wq, sock_owned_by_user(sk));
1219 fasync_helper(fd, filp, on, &wq->fasync_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
Eric Dumazeteaefd112011-02-18 03:26:36 +00001221 if (!wq->fasync_list)
Eric Dumazet989a2972010-04-14 09:55:35 +00001222 sock_reset_flag(sk, SOCK_FASYNC);
Jonathan Corbet76398422009-02-01 14:26:59 -07001223 else
Eric Dumazetbcdce712009-10-06 17:28:29 -07001224 sock_set_flag(sk, SOCK_FASYNC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225
Eric Dumazet989a2972010-04-14 09:55:35 +00001226 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 return 0;
1228}
1229
Eric Dumazet43815482010-04-29 11:01:49 +00001230/* This function may be called only under socket lock or callback_lock or rcu_lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231
1232int sock_wake_async(struct socket *sock, int how, int band)
1233{
Eric Dumazet43815482010-04-29 11:01:49 +00001234 struct socket_wq *wq;
1235
1236 if (!sock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 return -1;
Eric Dumazet43815482010-04-29 11:01:49 +00001238 rcu_read_lock();
1239 wq = rcu_dereference(sock->wq);
1240 if (!wq || !wq->fasync_list) {
1241 rcu_read_unlock();
1242 return -1;
1243 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001244 switch (how) {
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001245 case SOCK_WAKE_WAITD:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 if (test_bit(SOCK_ASYNC_WAITDATA, &sock->flags))
1247 break;
1248 goto call_kill;
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001249 case SOCK_WAKE_SPACE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 if (!test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sock->flags))
1251 break;
1252 /* fall through */
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001253 case SOCK_WAKE_IO:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001254call_kill:
Eric Dumazet43815482010-04-29 11:01:49 +00001255 kill_fasync(&wq->fasync_list, SIGIO, band);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 break;
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001257 case SOCK_WAKE_URG:
Eric Dumazet43815482010-04-29 11:01:49 +00001258 kill_fasync(&wq->fasync_list, SIGURG, band);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 }
Eric Dumazet43815482010-04-29 11:01:49 +00001260 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 return 0;
1262}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001263EXPORT_SYMBOL(sock_wake_async);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
Pavel Emelyanov721db932010-09-29 16:06:32 +04001265int __sock_create(struct net *net, int family, int type, int protocol,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001266 struct socket **res, int kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267{
1268 int err;
1269 struct socket *sock;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001270 const struct net_proto_family *pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271
1272 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001273 * Check protocol is in range
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 */
1275 if (family < 0 || family >= NPROTO)
1276 return -EAFNOSUPPORT;
1277 if (type < 0 || type >= SOCK_MAX)
1278 return -EINVAL;
1279
1280 /* Compatibility.
1281
1282 This uglymoron is moved from INET layer to here to avoid
1283 deadlock in module load.
1284 */
1285 if (family == PF_INET && type == SOCK_PACKET) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001286 static int warned;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 if (!warned) {
1288 warned = 1;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001289 printk(KERN_INFO "%s uses obsolete (PF_INET,SOCK_PACKET)\n",
1290 current->comm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 }
1292 family = PF_PACKET;
1293 }
1294
1295 err = security_socket_create(family, type, protocol, kern);
1296 if (err)
1297 return err;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001298
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001299 /*
1300 * Allocate the socket and allow the family to set things up. if
1301 * the protocol is 0, the family is instructed to select an appropriate
1302 * default.
1303 */
1304 sock = sock_alloc();
1305 if (!sock) {
Joe Perchese87cc472012-05-13 21:56:26 +00001306 net_warn_ratelimited("socket: no more sockets\n");
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001307 return -ENFILE; /* Not exactly a match, but its the
1308 closest posix thing */
1309 }
1310
1311 sock->type = type;
1312
Johannes Berg95a5afc2008-10-16 15:24:51 -07001313#ifdef CONFIG_MODULES
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001314 /* Attempt to load a protocol module if the find failed.
1315 *
1316 * 12/09/1996 Marcin: But! this makes REALLY only sense, if the user
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 * requested real, full-featured networking support upon configuration.
1318 * Otherwise module support will break!
1319 */
Eric Dumazet190683a2010-11-10 10:50:44 +00001320 if (rcu_access_pointer(net_families[family]) == NULL)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001321 request_module("net-pf-%d", family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322#endif
1323
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001324 rcu_read_lock();
1325 pf = rcu_dereference(net_families[family]);
1326 err = -EAFNOSUPPORT;
1327 if (!pf)
1328 goto out_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
1330 /*
1331 * We will call the ->create function, that possibly is in a loadable
1332 * module, so we have to bump that loadable module refcnt first.
1333 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001334 if (!try_module_get(pf->owner))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 goto out_release;
1336
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001337 /* Now protected by module ref count */
1338 rcu_read_unlock();
1339
Eric Paris3f378b62009-11-05 22:18:14 -08001340 err = pf->create(net, sock, protocol, kern);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001341 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 goto out_module_put;
Frank Filza79af592005-09-27 15:23:38 -07001343
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 /*
1345 * Now to bump the refcnt of the [loadable] module that owns this
1346 * socket at sock_release time we decrement its refcnt.
1347 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001348 if (!try_module_get(sock->ops->owner))
1349 goto out_module_busy;
1350
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 /*
1352 * Now that we're done with the ->create function, the [loadable]
1353 * module can have its refcnt decremented
1354 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001355 module_put(pf->owner);
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001356 err = security_socket_post_create(sock, family, type, protocol, kern);
1357 if (err)
Herbert Xu3b185522007-08-15 14:46:02 -07001358 goto out_sock_release;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001359 *res = sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001361 return 0;
1362
1363out_module_busy:
1364 err = -EAFNOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365out_module_put:
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001366 sock->ops = NULL;
1367 module_put(pf->owner);
1368out_sock_release:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 sock_release(sock);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001370 return err;
1371
1372out_release:
1373 rcu_read_unlock();
1374 goto out_sock_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375}
Pavel Emelyanov721db932010-09-29 16:06:32 +04001376EXPORT_SYMBOL(__sock_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377
1378int sock_create(int family, int type, int protocol, struct socket **res)
1379{
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001380 return __sock_create(current->nsproxy->net_ns, family, type, protocol, res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001382EXPORT_SYMBOL(sock_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383
1384int sock_create_kern(int family, int type, int protocol, struct socket **res)
1385{
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001386 return __sock_create(&init_net, family, type, protocol, res, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001388EXPORT_SYMBOL(sock_create_kern);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001390SYSCALL_DEFINE3(socket, int, family, int, type, int, protocol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391{
1392 int retval;
1393 struct socket *sock;
Ulrich Dreppera677a032008-07-23 21:29:17 -07001394 int flags;
1395
Ulrich Dreppere38b36f2008-07-23 21:29:42 -07001396 /* Check the SOCK_* constants for consistency. */
1397 BUILD_BUG_ON(SOCK_CLOEXEC != O_CLOEXEC);
1398 BUILD_BUG_ON((SOCK_MAX | SOCK_TYPE_MASK) != SOCK_TYPE_MASK);
1399 BUILD_BUG_ON(SOCK_CLOEXEC & SOCK_TYPE_MASK);
1400 BUILD_BUG_ON(SOCK_NONBLOCK & SOCK_TYPE_MASK);
1401
Ulrich Dreppera677a032008-07-23 21:29:17 -07001402 flags = type & ~SOCK_TYPE_MASK;
Ulrich Drepper77d27202008-07-23 21:29:35 -07001403 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Dreppera677a032008-07-23 21:29:17 -07001404 return -EINVAL;
1405 type &= SOCK_TYPE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001407 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1408 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1409
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 retval = sock_create(family, type, protocol, &sock);
1411 if (retval < 0)
1412 goto out;
1413
Ulrich Drepper77d27202008-07-23 21:29:35 -07001414 retval = sock_map_fd(sock, flags & (O_CLOEXEC | O_NONBLOCK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 if (retval < 0)
1416 goto out_release;
1417
1418out:
1419 /* It may be already another descriptor 8) Not kernel problem. */
1420 return retval;
1421
1422out_release:
1423 sock_release(sock);
1424 return retval;
1425}
1426
1427/*
1428 * Create a pair of connected sockets.
1429 */
1430
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001431SYSCALL_DEFINE4(socketpair, int, family, int, type, int, protocol,
1432 int __user *, usockvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433{
1434 struct socket *sock1, *sock2;
1435 int fd1, fd2, err;
Al Virodb349502007-02-07 01:48:00 -05001436 struct file *newfile1, *newfile2;
Ulrich Dreppera677a032008-07-23 21:29:17 -07001437 int flags;
1438
1439 flags = type & ~SOCK_TYPE_MASK;
Ulrich Drepper77d27202008-07-23 21:29:35 -07001440 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Dreppera677a032008-07-23 21:29:17 -07001441 return -EINVAL;
1442 type &= SOCK_TYPE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001444 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1445 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1446
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 /*
1448 * Obtain the first socket and check if the underlying protocol
1449 * supports the socketpair call.
1450 */
1451
1452 err = sock_create(family, type, protocol, &sock1);
1453 if (err < 0)
1454 goto out;
1455
1456 err = sock_create(family, type, protocol, &sock2);
1457 if (err < 0)
1458 goto out_release_1;
1459
1460 err = sock1->ops->socketpair(sock1, sock2);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001461 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 goto out_release_both;
1463
Al Viro28407632012-08-17 23:54:15 -04001464 fd1 = get_unused_fd_flags(flags);
David S. Millerbf3c23d2007-10-29 21:54:02 -07001465 if (unlikely(fd1 < 0)) {
1466 err = fd1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 goto out_release_both;
David S. Millerbf3c23d2007-10-29 21:54:02 -07001468 }
Al Viro28407632012-08-17 23:54:15 -04001469 fd2 = get_unused_fd_flags(flags);
Al Viro198de4d2009-08-05 19:29:23 +04001470 if (unlikely(fd2 < 0)) {
1471 err = fd2;
Al Viro28407632012-08-17 23:54:15 -04001472 put_unused_fd(fd1);
1473 goto out_release_both;
1474 }
1475
Linus Torvaldsaab174f2012-10-02 20:25:04 -07001476 newfile1 = sock_alloc_file(sock1, flags, NULL);
Al Viro28407632012-08-17 23:54:15 -04001477 if (unlikely(IS_ERR(newfile1))) {
1478 err = PTR_ERR(newfile1);
1479 put_unused_fd(fd1);
1480 put_unused_fd(fd2);
1481 goto out_release_both;
1482 }
1483
Linus Torvaldsaab174f2012-10-02 20:25:04 -07001484 newfile2 = sock_alloc_file(sock2, flags, NULL);
Al Viro28407632012-08-17 23:54:15 -04001485 if (IS_ERR(newfile2)) {
1486 err = PTR_ERR(newfile2);
Al Viro198de4d2009-08-05 19:29:23 +04001487 fput(newfile1);
1488 put_unused_fd(fd1);
Al Viro28407632012-08-17 23:54:15 -04001489 put_unused_fd(fd2);
Al Viro198de4d2009-08-05 19:29:23 +04001490 sock_release(sock2);
1491 goto out;
Al Virodb349502007-02-07 01:48:00 -05001492 }
1493
Al Viro157cf642008-12-14 04:57:47 -05001494 audit_fd_pair(fd1, fd2);
Al Virodb349502007-02-07 01:48:00 -05001495 fd_install(fd1, newfile1);
1496 fd_install(fd2, newfile2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 /* fd1 and fd2 may be already another descriptors.
1498 * Not kernel problem.
1499 */
1500
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001501 err = put_user(fd1, &usockvec[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 if (!err)
1503 err = put_user(fd2, &usockvec[1]);
1504 if (!err)
1505 return 0;
1506
1507 sys_close(fd2);
1508 sys_close(fd1);
1509 return err;
1510
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511out_release_both:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001512 sock_release(sock2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513out_release_1:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001514 sock_release(sock1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515out:
1516 return err;
1517}
1518
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519/*
1520 * Bind a name to a socket. Nothing much to do here since it's
1521 * the protocol's responsibility to handle the local address.
1522 *
1523 * We move the socket address to kernel space before we call
1524 * the protocol layer (having also checked the address is ok).
1525 */
1526
Heiko Carstens20f37032009-01-14 14:14:23 +01001527SYSCALL_DEFINE3(bind, int, fd, struct sockaddr __user *, umyaddr, int, addrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528{
1529 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001530 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001531 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001533 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001534 if (sock) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001535 err = move_addr_to_kernel(umyaddr, addrlen, &address);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001536 if (err >= 0) {
1537 err = security_socket_bind(sock,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001538 (struct sockaddr *)&address,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001539 addrlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001540 if (!err)
1541 err = sock->ops->bind(sock,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001542 (struct sockaddr *)
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001543 &address, addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 }
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001545 fput_light(sock->file, fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001546 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 return err;
1548}
1549
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550/*
1551 * Perform a listen. Basically, we allow the protocol to do anything
1552 * necessary for a listen, and if that works, we mark the socket as
1553 * ready for listening.
1554 */
1555
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001556SYSCALL_DEFINE2(listen, int, fd, int, backlog)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557{
1558 struct socket *sock;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001559 int err, fput_needed;
Pavel Emelyanovb8e1f9b2007-12-08 00:12:33 -08001560 int somaxconn;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001561
1562 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1563 if (sock) {
Pavel Emelyanov8efa6e92008-03-31 19:41:14 -07001564 somaxconn = sock_net(sock->sk)->core.sysctl_somaxconn;
Eric Dumazet95c96172012-04-15 05:58:06 +00001565 if ((unsigned int)backlog > somaxconn)
Pavel Emelyanovb8e1f9b2007-12-08 00:12:33 -08001566 backlog = somaxconn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
1568 err = security_socket_listen(sock, backlog);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001569 if (!err)
1570 err = sock->ops->listen(sock, backlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001572 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 }
1574 return err;
1575}
1576
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577/*
1578 * For accept, we attempt to create a new socket, set up the link
1579 * with the client, wake up the client, then return the new
1580 * connected fd. We collect the address of the connector in kernel
1581 * space and move it to user at the very end. This is unclean because
1582 * we open the socket then return an error.
1583 *
1584 * 1003.1g adds the ability to recvmsg() to query connection pending
1585 * status to recvmsg. We need to add that support in a way thats
1586 * clean when we restucture accept also.
1587 */
1588
Heiko Carstens20f37032009-01-14 14:14:23 +01001589SYSCALL_DEFINE4(accept4, int, fd, struct sockaddr __user *, upeer_sockaddr,
1590 int __user *, upeer_addrlen, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591{
1592 struct socket *sock, *newsock;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001593 struct file *newfile;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001594 int err, len, newfd, fput_needed;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001595 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596
Ulrich Drepper77d27202008-07-23 21:29:35 -07001597 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001598 return -EINVAL;
1599
1600 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1601 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1602
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001603 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 if (!sock)
1605 goto out;
1606
1607 err = -ENFILE;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001608 newsock = sock_alloc();
1609 if (!newsock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 goto out_put;
1611
1612 newsock->type = sock->type;
1613 newsock->ops = sock->ops;
1614
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 /*
1616 * We don't need try_module_get here, as the listening socket (sock)
1617 * has the protocol module (sock->ops->owner) held.
1618 */
1619 __module_get(newsock->ops->owner);
1620
Al Viro28407632012-08-17 23:54:15 -04001621 newfd = get_unused_fd_flags(flags);
David S. Miller39d8c1b2006-03-20 17:13:49 -08001622 if (unlikely(newfd < 0)) {
1623 err = newfd;
David S. Miller9a1875e2006-04-01 12:48:36 -08001624 sock_release(newsock);
1625 goto out_put;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001626 }
Linus Torvaldsaab174f2012-10-02 20:25:04 -07001627 newfile = sock_alloc_file(newsock, flags, sock->sk->sk_prot_creator->name);
Al Viro28407632012-08-17 23:54:15 -04001628 if (unlikely(IS_ERR(newfile))) {
1629 err = PTR_ERR(newfile);
1630 put_unused_fd(newfd);
1631 sock_release(newsock);
1632 goto out_put;
1633 }
David S. Miller39d8c1b2006-03-20 17:13:49 -08001634
Frank Filza79af592005-09-27 15:23:38 -07001635 err = security_socket_accept(sock, newsock);
1636 if (err)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001637 goto out_fd;
Frank Filza79af592005-09-27 15:23:38 -07001638
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 err = sock->ops->accept(sock, newsock, sock->file->f_flags);
1640 if (err < 0)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001641 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642
1643 if (upeer_sockaddr) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001644 if (newsock->ops->getname(newsock, (struct sockaddr *)&address,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001645 &len, 2) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 err = -ECONNABORTED;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001647 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 }
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001649 err = move_addr_to_user(&address,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001650 len, upeer_sockaddr, upeer_addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 if (err < 0)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001652 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 }
1654
1655 /* File flags are not inherited via accept() unlike another OSes. */
1656
David S. Miller39d8c1b2006-03-20 17:13:49 -08001657 fd_install(newfd, newfile);
1658 err = newfd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001661 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662out:
1663 return err;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001664out_fd:
David S. Miller9606a212006-04-01 01:00:14 -08001665 fput(newfile);
David S. Miller39d8c1b2006-03-20 17:13:49 -08001666 put_unused_fd(newfd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 goto out_put;
1668}
1669
Heiko Carstens20f37032009-01-14 14:14:23 +01001670SYSCALL_DEFINE3(accept, int, fd, struct sockaddr __user *, upeer_sockaddr,
1671 int __user *, upeer_addrlen)
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001672{
Ulrich Drepperde11def2008-11-19 15:36:14 -08001673 return sys_accept4(fd, upeer_sockaddr, upeer_addrlen, 0);
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001674}
1675
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676/*
1677 * Attempt to connect to a socket with the server address. The address
1678 * is in user space so we verify it is OK and move it to kernel space.
1679 *
1680 * For 1003.1g we need to add clean support for a bind to AF_UNSPEC to
1681 * break bindings
1682 *
1683 * NOTE: 1003.1g draft 6.3 is broken with respect to AX.25/NetROM and
1684 * other SEQPACKET protocols that take time to connect() as it doesn't
1685 * include the -EINPROGRESS status for such sockets.
1686 */
1687
Heiko Carstens20f37032009-01-14 14:14:23 +01001688SYSCALL_DEFINE3(connect, int, fd, struct sockaddr __user *, uservaddr,
1689 int, addrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690{
1691 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001692 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001693 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001695 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 if (!sock)
1697 goto out;
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001698 err = move_addr_to_kernel(uservaddr, addrlen, &address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 if (err < 0)
1700 goto out_put;
1701
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001702 err =
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001703 security_socket_connect(sock, (struct sockaddr *)&address, addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 if (err)
1705 goto out_put;
1706
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001707 err = sock->ops->connect(sock, (struct sockaddr *)&address, addrlen,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 sock->file->f_flags);
1709out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001710 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711out:
1712 return err;
1713}
1714
1715/*
1716 * Get the local address ('name') of a socket object. Move the obtained
1717 * name to user space.
1718 */
1719
Heiko Carstens20f37032009-01-14 14:14:23 +01001720SYSCALL_DEFINE3(getsockname, int, fd, struct sockaddr __user *, usockaddr,
1721 int __user *, usockaddr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722{
1723 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001724 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001725 int len, err, fput_needed;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001726
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001727 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 if (!sock)
1729 goto out;
1730
1731 err = security_socket_getsockname(sock);
1732 if (err)
1733 goto out_put;
1734
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001735 err = sock->ops->getname(sock, (struct sockaddr *)&address, &len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 if (err)
1737 goto out_put;
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001738 err = move_addr_to_user(&address, len, usockaddr, usockaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739
1740out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001741 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742out:
1743 return err;
1744}
1745
1746/*
1747 * Get the remote address ('name') of a socket object. Move the obtained
1748 * name to user space.
1749 */
1750
Heiko Carstens20f37032009-01-14 14:14:23 +01001751SYSCALL_DEFINE3(getpeername, int, fd, struct sockaddr __user *, usockaddr,
1752 int __user *, usockaddr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753{
1754 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001755 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001756 int len, err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001758 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1759 if (sock != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 err = security_socket_getpeername(sock);
1761 if (err) {
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001762 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 return err;
1764 }
1765
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001766 err =
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001767 sock->ops->getname(sock, (struct sockaddr *)&address, &len,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001768 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 if (!err)
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001770 err = move_addr_to_user(&address, len, usockaddr,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001771 usockaddr_len);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001772 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 }
1774 return err;
1775}
1776
1777/*
1778 * Send a datagram to a given address. We move the address into kernel
1779 * space and check the user space data area is readable before invoking
1780 * the protocol.
1781 */
1782
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001783SYSCALL_DEFINE6(sendto, int, fd, void __user *, buff, size_t, len,
Eric Dumazet95c96172012-04-15 05:58:06 +00001784 unsigned int, flags, struct sockaddr __user *, addr,
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001785 int, addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786{
1787 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001788 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 int err;
1790 struct msghdr msg;
1791 struct iovec iov;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001792 int fput_needed;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001793
Linus Torvalds253eacc2010-10-30 16:43:10 -07001794 if (len > INT_MAX)
1795 len = INT_MAX;
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001796 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1797 if (!sock)
David S. Miller4387ff72007-02-08 15:06:08 -08001798 goto out;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001799
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001800 iov.iov_base = buff;
1801 iov.iov_len = len;
1802 msg.msg_name = NULL;
1803 msg.msg_iov = &iov;
1804 msg.msg_iovlen = 1;
1805 msg.msg_control = NULL;
1806 msg.msg_controllen = 0;
1807 msg.msg_namelen = 0;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001808 if (addr) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001809 err = move_addr_to_kernel(addr, addr_len, &address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 if (err < 0)
1811 goto out_put;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001812 msg.msg_name = (struct sockaddr *)&address;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001813 msg.msg_namelen = addr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 }
1815 if (sock->file->f_flags & O_NONBLOCK)
1816 flags |= MSG_DONTWAIT;
1817 msg.msg_flags = flags;
1818 err = sock_sendmsg(sock, &msg, len);
1819
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001820out_put:
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001821 fput_light(sock->file, fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08001822out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 return err;
1824}
1825
1826/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001827 * Send a datagram down a socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 */
1829
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001830SYSCALL_DEFINE4(send, int, fd, void __user *, buff, size_t, len,
Eric Dumazet95c96172012-04-15 05:58:06 +00001831 unsigned int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832{
1833 return sys_sendto(fd, buff, len, flags, NULL, 0);
1834}
1835
1836/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001837 * Receive a frame from the socket and optionally record the address of the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 * sender. We verify the buffers are writable and if needed move the
1839 * sender address from kernel to user space.
1840 */
1841
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001842SYSCALL_DEFINE6(recvfrom, int, fd, void __user *, ubuf, size_t, size,
Eric Dumazet95c96172012-04-15 05:58:06 +00001843 unsigned int, flags, struct sockaddr __user *, addr,
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001844 int __user *, addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845{
1846 struct socket *sock;
1847 struct iovec iov;
1848 struct msghdr msg;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001849 struct sockaddr_storage address;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001850 int err, err2;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001851 int fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852
Linus Torvalds253eacc2010-10-30 16:43:10 -07001853 if (size > INT_MAX)
1854 size = INT_MAX;
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001855 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 if (!sock)
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001857 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001859 msg.msg_control = NULL;
1860 msg.msg_controllen = 0;
1861 msg.msg_iovlen = 1;
1862 msg.msg_iov = &iov;
1863 iov.iov_len = size;
1864 iov.iov_base = ubuf;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001865 msg.msg_name = (struct sockaddr *)&address;
1866 msg.msg_namelen = sizeof(address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 if (sock->file->f_flags & O_NONBLOCK)
1868 flags |= MSG_DONTWAIT;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001869 err = sock_recvmsg(sock, &msg, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001871 if (err >= 0 && addr != NULL) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001872 err2 = move_addr_to_user(&address,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001873 msg.msg_namelen, addr, addr_len);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001874 if (err2 < 0)
1875 err = err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 }
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001877
1878 fput_light(sock->file, fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08001879out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 return err;
1881}
1882
1883/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001884 * Receive a datagram from a socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 */
1886
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001887asmlinkage long sys_recv(int fd, void __user *ubuf, size_t size,
Eric Dumazet95c96172012-04-15 05:58:06 +00001888 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889{
1890 return sys_recvfrom(fd, ubuf, size, flags, NULL, NULL);
1891}
1892
1893/*
1894 * Set a socket option. Because we don't know the option lengths we have
1895 * to pass the user mode parameter for the protocols to sort out.
1896 */
1897
Heiko Carstens20f37032009-01-14 14:14:23 +01001898SYSCALL_DEFINE5(setsockopt, int, fd, int, level, int, optname,
1899 char __user *, optval, int, optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001901 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 struct socket *sock;
1903
1904 if (optlen < 0)
1905 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001906
1907 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1908 if (sock != NULL) {
1909 err = security_socket_setsockopt(sock, level, optname);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001910 if (err)
1911 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912
1913 if (level == SOL_SOCKET)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001914 err =
1915 sock_setsockopt(sock, level, optname, optval,
1916 optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 else
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001918 err =
1919 sock->ops->setsockopt(sock, level, optname, optval,
1920 optlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001921out_put:
1922 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 }
1924 return err;
1925}
1926
1927/*
1928 * Get a socket option. Because we don't know the option lengths we have
1929 * to pass a user mode parameter for the protocols to sort out.
1930 */
1931
Heiko Carstens20f37032009-01-14 14:14:23 +01001932SYSCALL_DEFINE5(getsockopt, int, fd, int, level, int, optname,
1933 char __user *, optval, int __user *, optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001935 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 struct socket *sock;
1937
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001938 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1939 if (sock != NULL) {
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001940 err = security_socket_getsockopt(sock, level, optname);
1941 if (err)
1942 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943
1944 if (level == SOL_SOCKET)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001945 err =
1946 sock_getsockopt(sock, level, optname, optval,
1947 optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 else
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001949 err =
1950 sock->ops->getsockopt(sock, level, optname, optval,
1951 optlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001952out_put:
1953 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 }
1955 return err;
1956}
1957
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958/*
1959 * Shutdown a socket.
1960 */
1961
Heiko Carstens754fe8d2009-01-14 14:14:09 +01001962SYSCALL_DEFINE2(shutdown, int, fd, int, how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001964 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 struct socket *sock;
1966
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001967 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1968 if (sock != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 err = security_socket_shutdown(sock, how);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001970 if (!err)
1971 err = sock->ops->shutdown(sock, how);
1972 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 }
1974 return err;
1975}
1976
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001977/* A couple of helpful macros for getting the address of the 32/64 bit
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 * fields which are the same type (int / unsigned) on our platforms.
1979 */
1980#define COMPAT_MSG(msg, member) ((MSG_CMSG_COMPAT & flags) ? &msg##_compat->member : &msg->member)
1981#define COMPAT_NAMELEN(msg) COMPAT_MSG(msg, msg_namelen)
1982#define COMPAT_FLAGS(msg) COMPAT_MSG(msg, msg_flags)
1983
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00001984struct used_address {
1985 struct sockaddr_storage name;
1986 unsigned int name_len;
1987};
1988
Anton Blanchard228e5482011-05-02 20:21:35 +00001989static int __sys_sendmsg(struct socket *sock, struct msghdr __user *msg,
Eric Dumazet95c96172012-04-15 05:58:06 +00001990 struct msghdr *msg_sys, unsigned int flags,
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00001991 struct used_address *used_address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001993 struct compat_msghdr __user *msg_compat =
1994 (struct compat_msghdr __user *)msg;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001995 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 struct iovec iovstack[UIO_FASTIOV], *iov = iovstack;
Alex Williamsonb9d717a2005-09-26 14:28:02 -07001997 unsigned char ctl[sizeof(struct cmsghdr) + 20]
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001998 __attribute__ ((aligned(sizeof(__kernel_size_t))));
1999 /* 20 is size of ipv6_pktinfo */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 unsigned char *ctl_buf = ctl;
Eric Dumazeta74e9102012-04-20 20:04:01 +02002001 int err, ctl_len, total_len;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002002
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 err = -EFAULT;
2004 if (MSG_CMSG_COMPAT & flags) {
Anton Blanchard228e5482011-05-02 20:21:35 +00002005 if (get_compat_msghdr(msg_sys, msg_compat))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 return -EFAULT;
Anton Blanchard228e5482011-05-02 20:21:35 +00002007 } else if (copy_from_user(msg_sys, msg, sizeof(struct msghdr)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 return -EFAULT;
2009
Anton Blanchard228e5482011-05-02 20:21:35 +00002010 if (msg_sys->msg_iovlen > UIO_FASTIOV) {
Eric Dumazeta74e9102012-04-20 20:04:01 +02002011 err = -EMSGSIZE;
2012 if (msg_sys->msg_iovlen > UIO_MAXIOV)
2013 goto out;
2014 err = -ENOMEM;
2015 iov = kmalloc(msg_sys->msg_iovlen * sizeof(struct iovec),
2016 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 if (!iov)
Anton Blanchard228e5482011-05-02 20:21:35 +00002018 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 }
2020
2021 /* This will also move the address data into kernel space */
2022 if (MSG_CMSG_COMPAT & flags) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00002023 err = verify_compat_iovec(msg_sys, iov, &address, VERIFY_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 } else
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00002025 err = verify_iovec(msg_sys, iov, &address, VERIFY_READ);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002026 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 goto out_freeiov;
2028 total_len = err;
2029
2030 err = -ENOBUFS;
2031
Anton Blanchard228e5482011-05-02 20:21:35 +00002032 if (msg_sys->msg_controllen > INT_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 goto out_freeiov;
Anton Blanchard228e5482011-05-02 20:21:35 +00002034 ctl_len = msg_sys->msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 if ((MSG_CMSG_COMPAT & flags) && ctl_len) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002036 err =
Anton Blanchard228e5482011-05-02 20:21:35 +00002037 cmsghdr_from_user_compat_to_kern(msg_sys, sock->sk, ctl,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002038 sizeof(ctl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 if (err)
2040 goto out_freeiov;
Anton Blanchard228e5482011-05-02 20:21:35 +00002041 ctl_buf = msg_sys->msg_control;
2042 ctl_len = msg_sys->msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 } else if (ctl_len) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002044 if (ctl_len > sizeof(ctl)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 ctl_buf = sock_kmalloc(sock->sk, ctl_len, GFP_KERNEL);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002046 if (ctl_buf == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 goto out_freeiov;
2048 }
2049 err = -EFAULT;
2050 /*
Anton Blanchard228e5482011-05-02 20:21:35 +00002051 * Careful! Before this, msg_sys->msg_control contains a user pointer.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 * Afterwards, it will be a kernel pointer. Thus the compiler-assisted
2053 * checking falls down on this.
2054 */
Namhyung Kimfb8621b2010-09-07 03:55:00 +00002055 if (copy_from_user(ctl_buf,
Anton Blanchard228e5482011-05-02 20:21:35 +00002056 (void __user __force *)msg_sys->msg_control,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002057 ctl_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 goto out_freectl;
Anton Blanchard228e5482011-05-02 20:21:35 +00002059 msg_sys->msg_control = ctl_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 }
Anton Blanchard228e5482011-05-02 20:21:35 +00002061 msg_sys->msg_flags = flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062
2063 if (sock->file->f_flags & O_NONBLOCK)
Anton Blanchard228e5482011-05-02 20:21:35 +00002064 msg_sys->msg_flags |= MSG_DONTWAIT;
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002065 /*
2066 * If this is sendmmsg() and current destination address is same as
2067 * previously succeeded address, omit asking LSM's decision.
2068 * used_address->name_len is initialized to UINT_MAX so that the first
2069 * destination address never matches.
2070 */
Mathieu Desnoyersbc909d92011-08-24 19:45:03 -07002071 if (used_address && msg_sys->msg_name &&
2072 used_address->name_len == msg_sys->msg_namelen &&
2073 !memcmp(&used_address->name, msg_sys->msg_name,
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002074 used_address->name_len)) {
2075 err = sock_sendmsg_nosec(sock, msg_sys, total_len);
2076 goto out_freectl;
2077 }
2078 err = sock_sendmsg(sock, msg_sys, total_len);
2079 /*
2080 * If this is sendmmsg() and sending to current destination address was
2081 * successful, remember it.
2082 */
2083 if (used_address && err >= 0) {
2084 used_address->name_len = msg_sys->msg_namelen;
Mathieu Desnoyersbc909d92011-08-24 19:45:03 -07002085 if (msg_sys->msg_name)
2086 memcpy(&used_address->name, msg_sys->msg_name,
2087 used_address->name_len);
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002088 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089
2090out_freectl:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002091 if (ctl_buf != ctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 sock_kfree_s(sock->sk, ctl_buf, ctl_len);
2093out_freeiov:
2094 if (iov != iovstack)
Eric Dumazeta74e9102012-04-20 20:04:01 +02002095 kfree(iov);
Anton Blanchard228e5482011-05-02 20:21:35 +00002096out:
2097 return err;
2098}
2099
2100/*
2101 * BSD sendmsg interface
2102 */
2103
Eric Dumazet95c96172012-04-15 05:58:06 +00002104SYSCALL_DEFINE3(sendmsg, int, fd, struct msghdr __user *, msg, unsigned int, flags)
Anton Blanchard228e5482011-05-02 20:21:35 +00002105{
2106 int fput_needed, err;
2107 struct msghdr msg_sys;
2108 struct socket *sock = sockfd_lookup_light(fd, &err, &fput_needed);
2109
2110 if (!sock)
2111 goto out;
2112
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002113 err = __sys_sendmsg(sock, msg, &msg_sys, flags, NULL);
Anton Blanchard228e5482011-05-02 20:21:35 +00002114
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002115 fput_light(sock->file, fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002116out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 return err;
2118}
2119
Anton Blanchard228e5482011-05-02 20:21:35 +00002120/*
2121 * Linux sendmmsg interface
2122 */
2123
2124int __sys_sendmmsg(int fd, struct mmsghdr __user *mmsg, unsigned int vlen,
2125 unsigned int flags)
2126{
2127 int fput_needed, err, datagrams;
2128 struct socket *sock;
2129 struct mmsghdr __user *entry;
2130 struct compat_mmsghdr __user *compat_entry;
2131 struct msghdr msg_sys;
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002132 struct used_address used_address;
Anton Blanchard228e5482011-05-02 20:21:35 +00002133
Anton Blanchard98382f42011-08-04 14:07:39 +00002134 if (vlen > UIO_MAXIOV)
2135 vlen = UIO_MAXIOV;
Anton Blanchard228e5482011-05-02 20:21:35 +00002136
2137 datagrams = 0;
2138
2139 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2140 if (!sock)
2141 return err;
2142
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002143 used_address.name_len = UINT_MAX;
Anton Blanchard228e5482011-05-02 20:21:35 +00002144 entry = mmsg;
2145 compat_entry = (struct compat_mmsghdr __user *)mmsg;
Anton Blanchard728ffb82011-08-04 14:07:38 +00002146 err = 0;
Anton Blanchard228e5482011-05-02 20:21:35 +00002147
2148 while (datagrams < vlen) {
Anton Blanchard228e5482011-05-02 20:21:35 +00002149 if (MSG_CMSG_COMPAT & flags) {
2150 err = __sys_sendmsg(sock, (struct msghdr __user *)compat_entry,
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002151 &msg_sys, flags, &used_address);
Anton Blanchard228e5482011-05-02 20:21:35 +00002152 if (err < 0)
2153 break;
2154 err = __put_user(err, &compat_entry->msg_len);
2155 ++compat_entry;
2156 } else {
2157 err = __sys_sendmsg(sock, (struct msghdr __user *)entry,
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002158 &msg_sys, flags, &used_address);
Anton Blanchard228e5482011-05-02 20:21:35 +00002159 if (err < 0)
2160 break;
2161 err = put_user(err, &entry->msg_len);
2162 ++entry;
2163 }
2164
2165 if (err)
2166 break;
2167 ++datagrams;
2168 }
2169
Anton Blanchard228e5482011-05-02 20:21:35 +00002170 fput_light(sock->file, fput_needed);
2171
Anton Blanchard728ffb82011-08-04 14:07:38 +00002172 /* We only return an error if no datagrams were able to be sent */
2173 if (datagrams != 0)
Anton Blanchard228e5482011-05-02 20:21:35 +00002174 return datagrams;
2175
Anton Blanchard228e5482011-05-02 20:21:35 +00002176 return err;
2177}
2178
2179SYSCALL_DEFINE4(sendmmsg, int, fd, struct mmsghdr __user *, mmsg,
2180 unsigned int, vlen, unsigned int, flags)
2181{
2182 return __sys_sendmmsg(fd, mmsg, vlen, flags);
2183}
2184
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002185static int __sys_recvmsg(struct socket *sock, struct msghdr __user *msg,
Eric Dumazet95c96172012-04-15 05:58:06 +00002186 struct msghdr *msg_sys, unsigned int flags, int nosec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002188 struct compat_msghdr __user *msg_compat =
2189 (struct compat_msghdr __user *)msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 struct iovec iovstack[UIO_FASTIOV];
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002191 struct iovec *iov = iovstack;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 unsigned long cmsg_ptr;
Eric Dumazeta74e9102012-04-20 20:04:01 +02002193 int err, total_len, len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194
2195 /* kernel mode address */
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07002196 struct sockaddr_storage addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197
2198 /* user mode address pointers */
2199 struct sockaddr __user *uaddr;
2200 int __user *uaddr_len;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002201
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 if (MSG_CMSG_COMPAT & flags) {
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002203 if (get_compat_msghdr(msg_sys, msg_compat))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 return -EFAULT;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002205 } else if (copy_from_user(msg_sys, msg, sizeof(struct msghdr)))
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002206 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002208 if (msg_sys->msg_iovlen > UIO_FASTIOV) {
Eric Dumazeta74e9102012-04-20 20:04:01 +02002209 err = -EMSGSIZE;
2210 if (msg_sys->msg_iovlen > UIO_MAXIOV)
2211 goto out;
2212 err = -ENOMEM;
2213 iov = kmalloc(msg_sys->msg_iovlen * sizeof(struct iovec),
2214 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 if (!iov)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002216 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 }
2218
2219 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002220 * Save the user-mode address (verify_iovec will change the
2221 * kernel msghdr to use the kernel address space)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002223
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002224 uaddr = (__force void __user *)msg_sys->msg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 uaddr_len = COMPAT_NAMELEN(msg);
2226 if (MSG_CMSG_COMPAT & flags) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00002227 err = verify_compat_iovec(msg_sys, iov, &addr, VERIFY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 } else
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00002229 err = verify_iovec(msg_sys, iov, &addr, VERIFY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 if (err < 0)
2231 goto out_freeiov;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002232 total_len = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002234 cmsg_ptr = (unsigned long)msg_sys->msg_control;
2235 msg_sys->msg_flags = flags & (MSG_CMSG_CLOEXEC|MSG_CMSG_COMPAT);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002236
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 if (sock->file->f_flags & O_NONBLOCK)
2238 flags |= MSG_DONTWAIT;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002239 err = (nosec ? sock_recvmsg_nosec : sock_recvmsg)(sock, msg_sys,
2240 total_len, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 if (err < 0)
2242 goto out_freeiov;
2243 len = err;
2244
2245 if (uaddr != NULL) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00002246 err = move_addr_to_user(&addr,
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002247 msg_sys->msg_namelen, uaddr,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002248 uaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 if (err < 0)
2250 goto out_freeiov;
2251 }
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002252 err = __put_user((msg_sys->msg_flags & ~MSG_CMSG_COMPAT),
David S. Miller37f7f422005-09-16 16:51:01 -07002253 COMPAT_FLAGS(msg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 if (err)
2255 goto out_freeiov;
2256 if (MSG_CMSG_COMPAT & flags)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002257 err = __put_user((unsigned long)msg_sys->msg_control - cmsg_ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 &msg_compat->msg_controllen);
2259 else
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002260 err = __put_user((unsigned long)msg_sys->msg_control - cmsg_ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 &msg->msg_controllen);
2262 if (err)
2263 goto out_freeiov;
2264 err = len;
2265
2266out_freeiov:
2267 if (iov != iovstack)
Eric Dumazeta74e9102012-04-20 20:04:01 +02002268 kfree(iov);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002269out:
2270 return err;
2271}
2272
2273/*
2274 * BSD recvmsg interface
2275 */
2276
2277SYSCALL_DEFINE3(recvmsg, int, fd, struct msghdr __user *, msg,
2278 unsigned int, flags)
2279{
2280 int fput_needed, err;
2281 struct msghdr msg_sys;
2282 struct socket *sock = sockfd_lookup_light(fd, &err, &fput_needed);
2283
2284 if (!sock)
2285 goto out;
2286
2287 err = __sys_recvmsg(sock, msg, &msg_sys, flags, 0);
2288
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002289 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290out:
2291 return err;
2292}
2293
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002294/*
2295 * Linux recvmmsg interface
2296 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002298int __sys_recvmmsg(int fd, struct mmsghdr __user *mmsg, unsigned int vlen,
2299 unsigned int flags, struct timespec *timeout)
2300{
2301 int fput_needed, err, datagrams;
2302 struct socket *sock;
2303 struct mmsghdr __user *entry;
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002304 struct compat_mmsghdr __user *compat_entry;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002305 struct msghdr msg_sys;
2306 struct timespec end_time;
2307
2308 if (timeout &&
2309 poll_select_set_timeout(&end_time, timeout->tv_sec,
2310 timeout->tv_nsec))
2311 return -EINVAL;
2312
2313 datagrams = 0;
2314
2315 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2316 if (!sock)
2317 return err;
2318
2319 err = sock_error(sock->sk);
2320 if (err)
2321 goto out_put;
2322
2323 entry = mmsg;
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002324 compat_entry = (struct compat_mmsghdr __user *)mmsg;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002325
2326 while (datagrams < vlen) {
2327 /*
2328 * No need to ask LSM for more than the first datagram.
2329 */
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002330 if (MSG_CMSG_COMPAT & flags) {
2331 err = __sys_recvmsg(sock, (struct msghdr __user *)compat_entry,
Anton Blanchardb9eb8b82011-05-17 15:38:57 -04002332 &msg_sys, flags & ~MSG_WAITFORONE,
2333 datagrams);
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002334 if (err < 0)
2335 break;
2336 err = __put_user(err, &compat_entry->msg_len);
2337 ++compat_entry;
2338 } else {
2339 err = __sys_recvmsg(sock, (struct msghdr __user *)entry,
Anton Blanchardb9eb8b82011-05-17 15:38:57 -04002340 &msg_sys, flags & ~MSG_WAITFORONE,
2341 datagrams);
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002342 if (err < 0)
2343 break;
2344 err = put_user(err, &entry->msg_len);
2345 ++entry;
2346 }
2347
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002348 if (err)
2349 break;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002350 ++datagrams;
2351
Brandon L Black71c5c152010-03-26 16:18:03 +00002352 /* MSG_WAITFORONE turns on MSG_DONTWAIT after one packet */
2353 if (flags & MSG_WAITFORONE)
2354 flags |= MSG_DONTWAIT;
2355
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002356 if (timeout) {
2357 ktime_get_ts(timeout);
2358 *timeout = timespec_sub(end_time, *timeout);
2359 if (timeout->tv_sec < 0) {
2360 timeout->tv_sec = timeout->tv_nsec = 0;
2361 break;
2362 }
2363
2364 /* Timeout, return less than vlen datagrams */
2365 if (timeout->tv_nsec == 0 && timeout->tv_sec == 0)
2366 break;
2367 }
2368
2369 /* Out of band data, return right away */
2370 if (msg_sys.msg_flags & MSG_OOB)
2371 break;
2372 }
2373
2374out_put:
2375 fput_light(sock->file, fput_needed);
2376
2377 if (err == 0)
2378 return datagrams;
2379
2380 if (datagrams != 0) {
2381 /*
2382 * We may return less entries than requested (vlen) if the
2383 * sock is non block and there aren't enough datagrams...
2384 */
2385 if (err != -EAGAIN) {
2386 /*
2387 * ... or if recvmsg returns an error after we
2388 * received some datagrams, where we record the
2389 * error to return on the next call or if the
2390 * app asks about it using getsockopt(SO_ERROR).
2391 */
2392 sock->sk->sk_err = -err;
2393 }
2394
2395 return datagrams;
2396 }
2397
2398 return err;
2399}
2400
2401SYSCALL_DEFINE5(recvmmsg, int, fd, struct mmsghdr __user *, mmsg,
2402 unsigned int, vlen, unsigned int, flags,
2403 struct timespec __user *, timeout)
2404{
2405 int datagrams;
2406 struct timespec timeout_sys;
2407
2408 if (!timeout)
2409 return __sys_recvmmsg(fd, mmsg, vlen, flags, NULL);
2410
2411 if (copy_from_user(&timeout_sys, timeout, sizeof(timeout_sys)))
2412 return -EFAULT;
2413
2414 datagrams = __sys_recvmmsg(fd, mmsg, vlen, flags, &timeout_sys);
2415
2416 if (datagrams > 0 &&
2417 copy_to_user(timeout, &timeout_sys, sizeof(timeout_sys)))
2418 datagrams = -EFAULT;
2419
2420 return datagrams;
2421}
2422
2423#ifdef __ARCH_WANT_SYS_SOCKETCALL
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424/* Argument list sizes for sys_socketcall */
2425#define AL(x) ((x) * sizeof(unsigned long))
Anton Blanchard228e5482011-05-02 20:21:35 +00002426static const unsigned char nargs[21] = {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002427 AL(0), AL(3), AL(3), AL(3), AL(2), AL(3),
2428 AL(3), AL(3), AL(4), AL(4), AL(4), AL(6),
2429 AL(6), AL(2), AL(5), AL(5), AL(3), AL(3),
Anton Blanchard228e5482011-05-02 20:21:35 +00002430 AL(4), AL(5), AL(4)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002431};
2432
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433#undef AL
2434
2435/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002436 * System call vectors.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 *
2438 * Argument checking cleaned up. Saved 20% in size.
2439 * This function doesn't need to set the kernel lock because
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002440 * it is set by the callees.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 */
2442
Heiko Carstens3e0fa652009-01-14 14:14:24 +01002443SYSCALL_DEFINE2(socketcall, int, call, unsigned long __user *, args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444{
2445 unsigned long a[6];
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002446 unsigned long a0, a1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 int err;
Arjan van de Ven47379052009-09-28 12:57:44 -07002448 unsigned int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449
Anton Blanchard228e5482011-05-02 20:21:35 +00002450 if (call < 1 || call > SYS_SENDMMSG)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 return -EINVAL;
2452
Arjan van de Ven47379052009-09-28 12:57:44 -07002453 len = nargs[call];
2454 if (len > sizeof(a))
2455 return -EINVAL;
2456
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 /* copy_from_user should be SMP safe. */
Arjan van de Ven47379052009-09-28 12:57:44 -07002458 if (copy_from_user(a, args, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 return -EFAULT;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002460
Al Virof3298dc2008-12-10 03:16:51 -05002461 audit_socketcall(nargs[call] / sizeof(unsigned long), a);
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002462
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002463 a0 = a[0];
2464 a1 = a[1];
2465
2466 switch (call) {
2467 case SYS_SOCKET:
2468 err = sys_socket(a0, a1, a[2]);
2469 break;
2470 case SYS_BIND:
2471 err = sys_bind(a0, (struct sockaddr __user *)a1, a[2]);
2472 break;
2473 case SYS_CONNECT:
2474 err = sys_connect(a0, (struct sockaddr __user *)a1, a[2]);
2475 break;
2476 case SYS_LISTEN:
2477 err = sys_listen(a0, a1);
2478 break;
2479 case SYS_ACCEPT:
Ulrich Drepperde11def2008-11-19 15:36:14 -08002480 err = sys_accept4(a0, (struct sockaddr __user *)a1,
2481 (int __user *)a[2], 0);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002482 break;
2483 case SYS_GETSOCKNAME:
2484 err =
2485 sys_getsockname(a0, (struct sockaddr __user *)a1,
2486 (int __user *)a[2]);
2487 break;
2488 case SYS_GETPEERNAME:
2489 err =
2490 sys_getpeername(a0, (struct sockaddr __user *)a1,
2491 (int __user *)a[2]);
2492 break;
2493 case SYS_SOCKETPAIR:
2494 err = sys_socketpair(a0, a1, a[2], (int __user *)a[3]);
2495 break;
2496 case SYS_SEND:
2497 err = sys_send(a0, (void __user *)a1, a[2], a[3]);
2498 break;
2499 case SYS_SENDTO:
2500 err = sys_sendto(a0, (void __user *)a1, a[2], a[3],
2501 (struct sockaddr __user *)a[4], a[5]);
2502 break;
2503 case SYS_RECV:
2504 err = sys_recv(a0, (void __user *)a1, a[2], a[3]);
2505 break;
2506 case SYS_RECVFROM:
2507 err = sys_recvfrom(a0, (void __user *)a1, a[2], a[3],
2508 (struct sockaddr __user *)a[4],
2509 (int __user *)a[5]);
2510 break;
2511 case SYS_SHUTDOWN:
2512 err = sys_shutdown(a0, a1);
2513 break;
2514 case SYS_SETSOCKOPT:
2515 err = sys_setsockopt(a0, a1, a[2], (char __user *)a[3], a[4]);
2516 break;
2517 case SYS_GETSOCKOPT:
2518 err =
2519 sys_getsockopt(a0, a1, a[2], (char __user *)a[3],
2520 (int __user *)a[4]);
2521 break;
2522 case SYS_SENDMSG:
2523 err = sys_sendmsg(a0, (struct msghdr __user *)a1, a[2]);
2524 break;
Anton Blanchard228e5482011-05-02 20:21:35 +00002525 case SYS_SENDMMSG:
2526 err = sys_sendmmsg(a0, (struct mmsghdr __user *)a1, a[2], a[3]);
2527 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002528 case SYS_RECVMSG:
2529 err = sys_recvmsg(a0, (struct msghdr __user *)a1, a[2]);
2530 break;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002531 case SYS_RECVMMSG:
2532 err = sys_recvmmsg(a0, (struct mmsghdr __user *)a1, a[2], a[3],
2533 (struct timespec __user *)a[4]);
2534 break;
Ulrich Drepperde11def2008-11-19 15:36:14 -08002535 case SYS_ACCEPT4:
2536 err = sys_accept4(a0, (struct sockaddr __user *)a1,
2537 (int __user *)a[2], a[3]);
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07002538 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002539 default:
2540 err = -EINVAL;
2541 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542 }
2543 return err;
2544}
2545
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002546#endif /* __ARCH_WANT_SYS_SOCKETCALL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002548/**
2549 * sock_register - add a socket protocol handler
2550 * @ops: description of protocol
2551 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 * This function is called by a protocol handler that wants to
2553 * advertise its address family, and have it linked into the
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002554 * socket interface. The value ops->family coresponds to the
2555 * socket system call protocol family.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 */
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002557int sock_register(const struct net_proto_family *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558{
2559 int err;
2560
2561 if (ops->family >= NPROTO) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002562 printk(KERN_CRIT "protocol %d >= NPROTO(%d)\n", ops->family,
2563 NPROTO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564 return -ENOBUFS;
2565 }
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002566
2567 spin_lock(&net_family_lock);
Eric Dumazet190683a2010-11-10 10:50:44 +00002568 if (rcu_dereference_protected(net_families[ops->family],
2569 lockdep_is_held(&net_family_lock)))
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002570 err = -EEXIST;
2571 else {
Eric Dumazetcf778b02012-01-12 04:41:32 +00002572 rcu_assign_pointer(net_families[ops->family], ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573 err = 0;
2574 }
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002575 spin_unlock(&net_family_lock);
2576
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002577 printk(KERN_INFO "NET: Registered protocol family %d\n", ops->family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578 return err;
2579}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002580EXPORT_SYMBOL(sock_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002582/**
2583 * sock_unregister - remove a protocol handler
2584 * @family: protocol family to remove
2585 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586 * This function is called by a protocol handler that wants to
2587 * remove its address family, and have it unlinked from the
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002588 * new socket creation.
2589 *
2590 * If protocol handler is a module, then it can use module reference
2591 * counts to protect against new references. If protocol handler is not
2592 * a module then it needs to provide its own protection in
2593 * the ops->create routine.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 */
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002595void sock_unregister(int family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596{
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002597 BUG_ON(family < 0 || family >= NPROTO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002599 spin_lock(&net_family_lock);
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00002600 RCU_INIT_POINTER(net_families[family], NULL);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002601 spin_unlock(&net_family_lock);
2602
2603 synchronize_rcu();
2604
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002605 printk(KERN_INFO "NET: Unregistered protocol family %d\n", family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002607EXPORT_SYMBOL(sock_unregister);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608
Andi Kleen77d76ea2005-12-22 12:43:42 -08002609static int __init sock_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610{
Nick Pigginb3e19d92011-01-07 17:50:11 +11002611 int err;
Eric W. Biederman2ca794e2012-04-19 13:20:32 +00002612 /*
2613 * Initialize the network sysctl infrastructure.
2614 */
2615 err = net_sysctl_init();
2616 if (err)
2617 goto out;
Nick Pigginb3e19d92011-01-07 17:50:11 +11002618
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002620 * Initialize skbuff SLAB cache
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621 */
2622 skb_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623
2624 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002625 * Initialize the protocols module.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626 */
2627
2628 init_inodecache();
Nick Pigginb3e19d92011-01-07 17:50:11 +11002629
2630 err = register_filesystem(&sock_fs_type);
2631 if (err)
2632 goto out_fs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633 sock_mnt = kern_mount(&sock_fs_type);
Nick Pigginb3e19d92011-01-07 17:50:11 +11002634 if (IS_ERR(sock_mnt)) {
2635 err = PTR_ERR(sock_mnt);
2636 goto out_mount;
2637 }
Andi Kleen77d76ea2005-12-22 12:43:42 -08002638
2639 /* The real protocol initialization is performed in later initcalls.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 */
2641
2642#ifdef CONFIG_NETFILTER
2643 netfilter_init();
2644#endif
David S. Millercbeb3212005-12-22 12:58:55 -08002645
Richard Cochranc1f19b52010-07-17 08:49:36 +00002646#ifdef CONFIG_NETWORK_PHY_TIMESTAMPING
2647 skb_timestamping_init();
2648#endif
2649
Nick Pigginb3e19d92011-01-07 17:50:11 +11002650out:
2651 return err;
2652
2653out_mount:
2654 unregister_filesystem(&sock_fs_type);
2655out_fs:
2656 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657}
2658
Andi Kleen77d76ea2005-12-22 12:43:42 -08002659core_initcall(sock_init); /* early initcall */
2660
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661#ifdef CONFIG_PROC_FS
2662void socket_seq_show(struct seq_file *seq)
2663{
2664 int cpu;
2665 int counter = 0;
2666
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -07002667 for_each_possible_cpu(cpu)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002668 counter += per_cpu(sockets_in_use, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669
2670 /* It can be negative, by the way. 8) */
2671 if (counter < 0)
2672 counter = 0;
2673
2674 seq_printf(seq, "sockets: used %d\n", counter);
2675}
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002676#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677
Shaun Pereira89bbfc92006-03-21 23:58:08 -08002678#ifdef CONFIG_COMPAT
Arnd Bergmann6b960182009-11-06 23:10:54 -08002679static int do_siocgstamp(struct net *net, struct socket *sock,
H. Peter Anvin644595f2012-02-19 17:51:59 -08002680 unsigned int cmd, void __user *up)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002681{
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002682 mm_segment_t old_fs = get_fs();
2683 struct timeval ktv;
2684 int err;
2685
2686 set_fs(KERNEL_DS);
Arnd Bergmann6b960182009-11-06 23:10:54 -08002687 err = sock_do_ioctl(net, sock, cmd, (unsigned long)&ktv);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002688 set_fs(old_fs);
H. Peter Anvin644595f2012-02-19 17:51:59 -08002689 if (!err)
Mikulas Patockaed6fe9d2012-09-01 12:34:07 -04002690 err = compat_put_timeval(&ktv, up);
H. Peter Anvin644595f2012-02-19 17:51:59 -08002691
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002692 return err;
2693}
2694
Arnd Bergmann6b960182009-11-06 23:10:54 -08002695static int do_siocgstampns(struct net *net, struct socket *sock,
H. Peter Anvin644595f2012-02-19 17:51:59 -08002696 unsigned int cmd, void __user *up)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002697{
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002698 mm_segment_t old_fs = get_fs();
2699 struct timespec kts;
2700 int err;
2701
2702 set_fs(KERNEL_DS);
Arnd Bergmann6b960182009-11-06 23:10:54 -08002703 err = sock_do_ioctl(net, sock, cmd, (unsigned long)&kts);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002704 set_fs(old_fs);
H. Peter Anvin644595f2012-02-19 17:51:59 -08002705 if (!err)
Mikulas Patockaed6fe9d2012-09-01 12:34:07 -04002706 err = compat_put_timespec(&kts, up);
H. Peter Anvin644595f2012-02-19 17:51:59 -08002707
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002708 return err;
2709}
2710
Arnd Bergmann6b960182009-11-06 23:10:54 -08002711static int dev_ifname32(struct net *net, struct compat_ifreq __user *uifr32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002712{
2713 struct ifreq __user *uifr;
2714 int err;
2715
2716 uifr = compat_alloc_user_space(sizeof(struct ifreq));
Arnd Bergmann6b960182009-11-06 23:10:54 -08002717 if (copy_in_user(uifr, uifr32, sizeof(struct compat_ifreq)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002718 return -EFAULT;
2719
Arnd Bergmann6b960182009-11-06 23:10:54 -08002720 err = dev_ioctl(net, SIOCGIFNAME, uifr);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002721 if (err)
2722 return err;
2723
Arnd Bergmann6b960182009-11-06 23:10:54 -08002724 if (copy_in_user(uifr32, uifr, sizeof(struct compat_ifreq)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002725 return -EFAULT;
2726
2727 return 0;
2728}
2729
Arnd Bergmann6b960182009-11-06 23:10:54 -08002730static int dev_ifconf(struct net *net, struct compat_ifconf __user *uifc32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002731{
Arnd Bergmann6b960182009-11-06 23:10:54 -08002732 struct compat_ifconf ifc32;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002733 struct ifconf ifc;
2734 struct ifconf __user *uifc;
Arnd Bergmann6b960182009-11-06 23:10:54 -08002735 struct compat_ifreq __user *ifr32;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002736 struct ifreq __user *ifr;
2737 unsigned int i, j;
2738 int err;
2739
Arnd Bergmann6b960182009-11-06 23:10:54 -08002740 if (copy_from_user(&ifc32, uifc32, sizeof(struct compat_ifconf)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002741 return -EFAULT;
2742
Mathias Krause43da5f22012-08-15 11:31:57 +00002743 memset(&ifc, 0, sizeof(ifc));
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002744 if (ifc32.ifcbuf == 0) {
2745 ifc32.ifc_len = 0;
2746 ifc.ifc_len = 0;
2747 ifc.ifc_req = NULL;
2748 uifc = compat_alloc_user_space(sizeof(struct ifconf));
2749 } else {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002750 size_t len = ((ifc32.ifc_len / sizeof(struct compat_ifreq)) + 1) *
2751 sizeof(struct ifreq);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002752 uifc = compat_alloc_user_space(sizeof(struct ifconf) + len);
2753 ifc.ifc_len = len;
2754 ifr = ifc.ifc_req = (void __user *)(uifc + 1);
2755 ifr32 = compat_ptr(ifc32.ifcbuf);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002756 for (i = 0; i < ifc32.ifc_len; i += sizeof(struct compat_ifreq)) {
Arnd Bergmann6b960182009-11-06 23:10:54 -08002757 if (copy_in_user(ifr, ifr32, sizeof(struct compat_ifreq)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002758 return -EFAULT;
2759 ifr++;
2760 ifr32++;
2761 }
2762 }
2763 if (copy_to_user(uifc, &ifc, sizeof(struct ifconf)))
2764 return -EFAULT;
2765
Arnd Bergmann6b960182009-11-06 23:10:54 -08002766 err = dev_ioctl(net, SIOCGIFCONF, uifc);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002767 if (err)
2768 return err;
2769
2770 if (copy_from_user(&ifc, uifc, sizeof(struct ifconf)))
2771 return -EFAULT;
2772
2773 ifr = ifc.ifc_req;
2774 ifr32 = compat_ptr(ifc32.ifcbuf);
2775 for (i = 0, j = 0;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002776 i + sizeof(struct compat_ifreq) <= ifc32.ifc_len && j < ifc.ifc_len;
2777 i += sizeof(struct compat_ifreq), j += sizeof(struct ifreq)) {
2778 if (copy_in_user(ifr32, ifr, sizeof(struct compat_ifreq)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002779 return -EFAULT;
2780 ifr32++;
2781 ifr++;
2782 }
2783
2784 if (ifc32.ifcbuf == 0) {
2785 /* Translate from 64-bit structure multiple to
2786 * a 32-bit one.
2787 */
2788 i = ifc.ifc_len;
Arnd Bergmann6b960182009-11-06 23:10:54 -08002789 i = ((i / sizeof(struct ifreq)) * sizeof(struct compat_ifreq));
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002790 ifc32.ifc_len = i;
2791 } else {
2792 ifc32.ifc_len = i;
2793 }
Arnd Bergmann6b960182009-11-06 23:10:54 -08002794 if (copy_to_user(uifc32, &ifc32, sizeof(struct compat_ifconf)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002795 return -EFAULT;
2796
2797 return 0;
2798}
2799
Arnd Bergmann6b960182009-11-06 23:10:54 -08002800static int ethtool_ioctl(struct net *net, struct compat_ifreq __user *ifr32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002801{
Ben Hutchings3a7da392011-03-17 07:34:32 +00002802 struct compat_ethtool_rxnfc __user *compat_rxnfc;
2803 bool convert_in = false, convert_out = false;
2804 size_t buf_size = ALIGN(sizeof(struct ifreq), 8);
2805 struct ethtool_rxnfc __user *rxnfc;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002806 struct ifreq __user *ifr;
Ben Hutchings3a7da392011-03-17 07:34:32 +00002807 u32 rule_cnt = 0, actual_rule_cnt;
2808 u32 ethcmd;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002809 u32 data;
Ben Hutchings3a7da392011-03-17 07:34:32 +00002810 int ret;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002811
2812 if (get_user(data, &ifr32->ifr_ifru.ifru_data))
2813 return -EFAULT;
2814
Ben Hutchings3a7da392011-03-17 07:34:32 +00002815 compat_rxnfc = compat_ptr(data);
2816
2817 if (get_user(ethcmd, &compat_rxnfc->cmd))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002818 return -EFAULT;
2819
Ben Hutchings3a7da392011-03-17 07:34:32 +00002820 /* Most ethtool structures are defined without padding.
2821 * Unfortunately struct ethtool_rxnfc is an exception.
2822 */
2823 switch (ethcmd) {
2824 default:
2825 break;
2826 case ETHTOOL_GRXCLSRLALL:
2827 /* Buffer size is variable */
2828 if (get_user(rule_cnt, &compat_rxnfc->rule_cnt))
2829 return -EFAULT;
2830 if (rule_cnt > KMALLOC_MAX_SIZE / sizeof(u32))
2831 return -ENOMEM;
2832 buf_size += rule_cnt * sizeof(u32);
2833 /* fall through */
2834 case ETHTOOL_GRXRINGS:
2835 case ETHTOOL_GRXCLSRLCNT:
2836 case ETHTOOL_GRXCLSRULE:
Ben Hutchings55664f32012-01-03 12:04:51 +00002837 case ETHTOOL_SRXCLSRLINS:
Ben Hutchings3a7da392011-03-17 07:34:32 +00002838 convert_out = true;
2839 /* fall through */
2840 case ETHTOOL_SRXCLSRLDEL:
Ben Hutchings3a7da392011-03-17 07:34:32 +00002841 buf_size += sizeof(struct ethtool_rxnfc);
2842 convert_in = true;
2843 break;
2844 }
2845
2846 ifr = compat_alloc_user_space(buf_size);
2847 rxnfc = (void *)ifr + ALIGN(sizeof(struct ifreq), 8);
2848
2849 if (copy_in_user(&ifr->ifr_name, &ifr32->ifr_name, IFNAMSIZ))
2850 return -EFAULT;
2851
2852 if (put_user(convert_in ? rxnfc : compat_ptr(data),
2853 &ifr->ifr_ifru.ifru_data))
2854 return -EFAULT;
2855
2856 if (convert_in) {
Alexander Duyck127fe532011-04-08 18:01:59 +00002857 /* We expect there to be holes between fs.m_ext and
Ben Hutchings3a7da392011-03-17 07:34:32 +00002858 * fs.ring_cookie and at the end of fs, but nowhere else.
2859 */
Alexander Duyck127fe532011-04-08 18:01:59 +00002860 BUILD_BUG_ON(offsetof(struct compat_ethtool_rxnfc, fs.m_ext) +
2861 sizeof(compat_rxnfc->fs.m_ext) !=
2862 offsetof(struct ethtool_rxnfc, fs.m_ext) +
2863 sizeof(rxnfc->fs.m_ext));
Ben Hutchings3a7da392011-03-17 07:34:32 +00002864 BUILD_BUG_ON(
2865 offsetof(struct compat_ethtool_rxnfc, fs.location) -
2866 offsetof(struct compat_ethtool_rxnfc, fs.ring_cookie) !=
2867 offsetof(struct ethtool_rxnfc, fs.location) -
2868 offsetof(struct ethtool_rxnfc, fs.ring_cookie));
2869
2870 if (copy_in_user(rxnfc, compat_rxnfc,
Alexander Duyck127fe532011-04-08 18:01:59 +00002871 (void *)(&rxnfc->fs.m_ext + 1) -
Ben Hutchings3a7da392011-03-17 07:34:32 +00002872 (void *)rxnfc) ||
2873 copy_in_user(&rxnfc->fs.ring_cookie,
2874 &compat_rxnfc->fs.ring_cookie,
2875 (void *)(&rxnfc->fs.location + 1) -
2876 (void *)&rxnfc->fs.ring_cookie) ||
2877 copy_in_user(&rxnfc->rule_cnt, &compat_rxnfc->rule_cnt,
2878 sizeof(rxnfc->rule_cnt)))
2879 return -EFAULT;
2880 }
2881
2882 ret = dev_ioctl(net, SIOCETHTOOL, ifr);
2883 if (ret)
2884 return ret;
2885
2886 if (convert_out) {
2887 if (copy_in_user(compat_rxnfc, rxnfc,
Alexander Duyck127fe532011-04-08 18:01:59 +00002888 (const void *)(&rxnfc->fs.m_ext + 1) -
Ben Hutchings3a7da392011-03-17 07:34:32 +00002889 (const void *)rxnfc) ||
2890 copy_in_user(&compat_rxnfc->fs.ring_cookie,
2891 &rxnfc->fs.ring_cookie,
2892 (const void *)(&rxnfc->fs.location + 1) -
2893 (const void *)&rxnfc->fs.ring_cookie) ||
2894 copy_in_user(&compat_rxnfc->rule_cnt, &rxnfc->rule_cnt,
2895 sizeof(rxnfc->rule_cnt)))
2896 return -EFAULT;
2897
2898 if (ethcmd == ETHTOOL_GRXCLSRLALL) {
2899 /* As an optimisation, we only copy the actual
2900 * number of rules that the underlying
2901 * function returned. Since Mallory might
2902 * change the rule count in user memory, we
2903 * check that it is less than the rule count
2904 * originally given (as the user buffer size),
2905 * which has been range-checked.
2906 */
2907 if (get_user(actual_rule_cnt, &rxnfc->rule_cnt))
2908 return -EFAULT;
2909 if (actual_rule_cnt < rule_cnt)
2910 rule_cnt = actual_rule_cnt;
2911 if (copy_in_user(&compat_rxnfc->rule_locs[0],
2912 &rxnfc->rule_locs[0],
2913 rule_cnt * sizeof(u32)))
2914 return -EFAULT;
2915 }
2916 }
2917
2918 return 0;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002919}
2920
Arnd Bergmann7a50a242009-11-08 20:57:03 -08002921static int compat_siocwandev(struct net *net, struct compat_ifreq __user *uifr32)
2922{
2923 void __user *uptr;
2924 compat_uptr_t uptr32;
2925 struct ifreq __user *uifr;
2926
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002927 uifr = compat_alloc_user_space(sizeof(*uifr));
Arnd Bergmann7a50a242009-11-08 20:57:03 -08002928 if (copy_in_user(uifr, uifr32, sizeof(struct compat_ifreq)))
2929 return -EFAULT;
2930
2931 if (get_user(uptr32, &uifr32->ifr_settings.ifs_ifsu))
2932 return -EFAULT;
2933
2934 uptr = compat_ptr(uptr32);
2935
2936 if (put_user(uptr, &uifr->ifr_settings.ifs_ifsu.raw_hdlc))
2937 return -EFAULT;
2938
2939 return dev_ioctl(net, SIOCWANDEV, uifr);
2940}
2941
Arnd Bergmann6b960182009-11-06 23:10:54 -08002942static int bond_ioctl(struct net *net, unsigned int cmd,
2943 struct compat_ifreq __user *ifr32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002944{
2945 struct ifreq kifr;
2946 struct ifreq __user *uifr;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002947 mm_segment_t old_fs;
2948 int err;
2949 u32 data;
2950 void __user *datap;
2951
2952 switch (cmd) {
2953 case SIOCBONDENSLAVE:
2954 case SIOCBONDRELEASE:
2955 case SIOCBONDSETHWADDR:
2956 case SIOCBONDCHANGEACTIVE:
Arnd Bergmann6b960182009-11-06 23:10:54 -08002957 if (copy_from_user(&kifr, ifr32, sizeof(struct compat_ifreq)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002958 return -EFAULT;
2959
2960 old_fs = get_fs();
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002961 set_fs(KERNEL_DS);
stephen hemmingerc3f52ae2011-02-23 09:06:48 +00002962 err = dev_ioctl(net, cmd,
2963 (struct ifreq __user __force *) &kifr);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002964 set_fs(old_fs);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002965
2966 return err;
2967 case SIOCBONDSLAVEINFOQUERY:
2968 case SIOCBONDINFOQUERY:
2969 uifr = compat_alloc_user_space(sizeof(*uifr));
2970 if (copy_in_user(&uifr->ifr_name, &ifr32->ifr_name, IFNAMSIZ))
2971 return -EFAULT;
2972
2973 if (get_user(data, &ifr32->ifr_ifru.ifru_data))
2974 return -EFAULT;
2975
2976 datap = compat_ptr(data);
2977 if (put_user(datap, &uifr->ifr_ifru.ifru_data))
2978 return -EFAULT;
2979
Arnd Bergmann6b960182009-11-06 23:10:54 -08002980 return dev_ioctl(net, cmd, uifr);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002981 default:
Linus Torvalds07d106d2012-01-05 15:40:12 -08002982 return -ENOIOCTLCMD;
Joe Perchesccbd6a52010-05-14 10:58:26 +00002983 }
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002984}
2985
Arnd Bergmann6b960182009-11-06 23:10:54 -08002986static int siocdevprivate_ioctl(struct net *net, unsigned int cmd,
2987 struct compat_ifreq __user *u_ifreq32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002988{
2989 struct ifreq __user *u_ifreq64;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002990 char tmp_buf[IFNAMSIZ];
2991 void __user *data64;
2992 u32 data32;
2993
2994 if (copy_from_user(&tmp_buf[0], &(u_ifreq32->ifr_ifrn.ifrn_name[0]),
2995 IFNAMSIZ))
2996 return -EFAULT;
2997 if (__get_user(data32, &u_ifreq32->ifr_ifru.ifru_data))
2998 return -EFAULT;
2999 data64 = compat_ptr(data32);
3000
3001 u_ifreq64 = compat_alloc_user_space(sizeof(*u_ifreq64));
3002
3003 /* Don't check these user accesses, just let that get trapped
3004 * in the ioctl handler instead.
3005 */
3006 if (copy_to_user(&u_ifreq64->ifr_ifrn.ifrn_name[0], &tmp_buf[0],
3007 IFNAMSIZ))
3008 return -EFAULT;
3009 if (__put_user(data64, &u_ifreq64->ifr_ifru.ifru_data))
3010 return -EFAULT;
3011
Arnd Bergmann6b960182009-11-06 23:10:54 -08003012 return dev_ioctl(net, cmd, u_ifreq64);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003013}
3014
Arnd Bergmann6b960182009-11-06 23:10:54 -08003015static int dev_ifsioc(struct net *net, struct socket *sock,
3016 unsigned int cmd, struct compat_ifreq __user *uifr32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003017{
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003018 struct ifreq __user *uifr;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003019 int err;
3020
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003021 uifr = compat_alloc_user_space(sizeof(*uifr));
3022 if (copy_in_user(uifr, uifr32, sizeof(*uifr32)))
3023 return -EFAULT;
3024
3025 err = sock_do_ioctl(net, sock, cmd, (unsigned long)uifr);
3026
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003027 if (!err) {
3028 switch (cmd) {
3029 case SIOCGIFFLAGS:
3030 case SIOCGIFMETRIC:
3031 case SIOCGIFMTU:
3032 case SIOCGIFMEM:
3033 case SIOCGIFHWADDR:
3034 case SIOCGIFINDEX:
3035 case SIOCGIFADDR:
3036 case SIOCGIFBRDADDR:
3037 case SIOCGIFDSTADDR:
3038 case SIOCGIFNETMASK:
Arnd Bergmannfab25322009-11-08 20:56:21 -08003039 case SIOCGIFPFLAGS:
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003040 case SIOCGIFTXQLEN:
Arnd Bergmannfab25322009-11-08 20:56:21 -08003041 case SIOCGMIIPHY:
3042 case SIOCGMIIREG:
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003043 if (copy_in_user(uifr32, uifr, sizeof(*uifr32)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003044 err = -EFAULT;
3045 break;
3046 }
3047 }
3048 return err;
3049}
3050
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003051static int compat_sioc_ifmap(struct net *net, unsigned int cmd,
3052 struct compat_ifreq __user *uifr32)
3053{
3054 struct ifreq ifr;
3055 struct compat_ifmap __user *uifmap32;
3056 mm_segment_t old_fs;
3057 int err;
3058
3059 uifmap32 = &uifr32->ifr_ifru.ifru_map;
3060 err = copy_from_user(&ifr, uifr32, sizeof(ifr.ifr_name));
3061 err |= __get_user(ifr.ifr_map.mem_start, &uifmap32->mem_start);
3062 err |= __get_user(ifr.ifr_map.mem_end, &uifmap32->mem_end);
3063 err |= __get_user(ifr.ifr_map.base_addr, &uifmap32->base_addr);
3064 err |= __get_user(ifr.ifr_map.irq, &uifmap32->irq);
3065 err |= __get_user(ifr.ifr_map.dma, &uifmap32->dma);
3066 err |= __get_user(ifr.ifr_map.port, &uifmap32->port);
3067 if (err)
3068 return -EFAULT;
3069
3070 old_fs = get_fs();
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003071 set_fs(KERNEL_DS);
stephen hemmingerc3f52ae2011-02-23 09:06:48 +00003072 err = dev_ioctl(net, cmd, (void __user __force *)&ifr);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003073 set_fs(old_fs);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003074
3075 if (cmd == SIOCGIFMAP && !err) {
3076 err = copy_to_user(uifr32, &ifr, sizeof(ifr.ifr_name));
3077 err |= __put_user(ifr.ifr_map.mem_start, &uifmap32->mem_start);
3078 err |= __put_user(ifr.ifr_map.mem_end, &uifmap32->mem_end);
3079 err |= __put_user(ifr.ifr_map.base_addr, &uifmap32->base_addr);
3080 err |= __put_user(ifr.ifr_map.irq, &uifmap32->irq);
3081 err |= __put_user(ifr.ifr_map.dma, &uifmap32->dma);
3082 err |= __put_user(ifr.ifr_map.port, &uifmap32->port);
3083 if (err)
3084 err = -EFAULT;
3085 }
3086 return err;
3087}
3088
3089static int compat_siocshwtstamp(struct net *net, struct compat_ifreq __user *uifr32)
3090{
3091 void __user *uptr;
3092 compat_uptr_t uptr32;
3093 struct ifreq __user *uifr;
3094
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003095 uifr = compat_alloc_user_space(sizeof(*uifr));
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003096 if (copy_in_user(uifr, uifr32, sizeof(struct compat_ifreq)))
3097 return -EFAULT;
3098
3099 if (get_user(uptr32, &uifr32->ifr_data))
3100 return -EFAULT;
3101
3102 uptr = compat_ptr(uptr32);
3103
3104 if (put_user(uptr, &uifr->ifr_data))
3105 return -EFAULT;
3106
3107 return dev_ioctl(net, SIOCSHWTSTAMP, uifr);
3108}
3109
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003110struct rtentry32 {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003111 u32 rt_pad1;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003112 struct sockaddr rt_dst; /* target address */
3113 struct sockaddr rt_gateway; /* gateway addr (RTF_GATEWAY) */
3114 struct sockaddr rt_genmask; /* target network mask (IP) */
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003115 unsigned short rt_flags;
3116 short rt_pad2;
3117 u32 rt_pad3;
3118 unsigned char rt_tos;
3119 unsigned char rt_class;
3120 short rt_pad4;
3121 short rt_metric; /* +1 for binary compatibility! */
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003122 /* char * */ u32 rt_dev; /* forcing the device at add */
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003123 u32 rt_mtu; /* per route MTU/Window */
3124 u32 rt_window; /* Window clamping */
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003125 unsigned short rt_irtt; /* Initial RTT */
3126};
3127
3128struct in6_rtmsg32 {
3129 struct in6_addr rtmsg_dst;
3130 struct in6_addr rtmsg_src;
3131 struct in6_addr rtmsg_gateway;
3132 u32 rtmsg_type;
3133 u16 rtmsg_dst_len;
3134 u16 rtmsg_src_len;
3135 u32 rtmsg_metric;
3136 u32 rtmsg_info;
3137 u32 rtmsg_flags;
3138 s32 rtmsg_ifindex;
3139};
3140
Arnd Bergmann6b960182009-11-06 23:10:54 -08003141static int routing_ioctl(struct net *net, struct socket *sock,
3142 unsigned int cmd, void __user *argp)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003143{
3144 int ret;
3145 void *r = NULL;
3146 struct in6_rtmsg r6;
3147 struct rtentry r4;
3148 char devname[16];
3149 u32 rtdev;
3150 mm_segment_t old_fs = get_fs();
3151
Arnd Bergmann6b960182009-11-06 23:10:54 -08003152 if (sock && sock->sk && sock->sk->sk_family == AF_INET6) { /* ipv6 */
3153 struct in6_rtmsg32 __user *ur6 = argp;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003154 ret = copy_from_user(&r6.rtmsg_dst, &(ur6->rtmsg_dst),
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003155 3 * sizeof(struct in6_addr));
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003156 ret |= __get_user(r6.rtmsg_type, &(ur6->rtmsg_type));
3157 ret |= __get_user(r6.rtmsg_dst_len, &(ur6->rtmsg_dst_len));
3158 ret |= __get_user(r6.rtmsg_src_len, &(ur6->rtmsg_src_len));
3159 ret |= __get_user(r6.rtmsg_metric, &(ur6->rtmsg_metric));
3160 ret |= __get_user(r6.rtmsg_info, &(ur6->rtmsg_info));
3161 ret |= __get_user(r6.rtmsg_flags, &(ur6->rtmsg_flags));
3162 ret |= __get_user(r6.rtmsg_ifindex, &(ur6->rtmsg_ifindex));
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003163
3164 r = (void *) &r6;
3165 } else { /* ipv4 */
Arnd Bergmann6b960182009-11-06 23:10:54 -08003166 struct rtentry32 __user *ur4 = argp;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003167 ret = copy_from_user(&r4.rt_dst, &(ur4->rt_dst),
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003168 3 * sizeof(struct sockaddr));
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003169 ret |= __get_user(r4.rt_flags, &(ur4->rt_flags));
3170 ret |= __get_user(r4.rt_metric, &(ur4->rt_metric));
3171 ret |= __get_user(r4.rt_mtu, &(ur4->rt_mtu));
3172 ret |= __get_user(r4.rt_window, &(ur4->rt_window));
3173 ret |= __get_user(r4.rt_irtt, &(ur4->rt_irtt));
3174 ret |= __get_user(rtdev, &(ur4->rt_dev));
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003175 if (rtdev) {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003176 ret |= copy_from_user(devname, compat_ptr(rtdev), 15);
stephen hemmingerc3f52ae2011-02-23 09:06:48 +00003177 r4.rt_dev = (char __user __force *)devname;
3178 devname[15] = 0;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003179 } else
3180 r4.rt_dev = NULL;
3181
3182 r = (void *) &r4;
3183 }
3184
3185 if (ret) {
3186 ret = -EFAULT;
3187 goto out;
3188 }
3189
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003190 set_fs(KERNEL_DS);
Arnd Bergmann6b960182009-11-06 23:10:54 -08003191 ret = sock_do_ioctl(net, sock, cmd, (unsigned long) r);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003192 set_fs(old_fs);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003193
3194out:
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003195 return ret;
3196}
3197
3198/* Since old style bridge ioctl's endup using SIOCDEVPRIVATE
3199 * for some operations; this forces use of the newer bridge-utils that
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003200 * use compatible ioctls
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003201 */
Arnd Bergmann6b960182009-11-06 23:10:54 -08003202static int old_bridge_ioctl(compat_ulong_t __user *argp)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003203{
Arnd Bergmann6b960182009-11-06 23:10:54 -08003204 compat_ulong_t tmp;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003205
Arnd Bergmann6b960182009-11-06 23:10:54 -08003206 if (get_user(tmp, argp))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003207 return -EFAULT;
3208 if (tmp == BRCTL_GET_VERSION)
3209 return BRCTL_VERSION + 1;
3210 return -EINVAL;
3211}
3212
Arnd Bergmann6b960182009-11-06 23:10:54 -08003213static int compat_sock_ioctl_trans(struct file *file, struct socket *sock,
3214 unsigned int cmd, unsigned long arg)
3215{
3216 void __user *argp = compat_ptr(arg);
3217 struct sock *sk = sock->sk;
3218 struct net *net = sock_net(sk);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003219
Arnd Bergmann6b960182009-11-06 23:10:54 -08003220 if (cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15))
3221 return siocdevprivate_ioctl(net, cmd, argp);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003222
Arnd Bergmann6b960182009-11-06 23:10:54 -08003223 switch (cmd) {
3224 case SIOCSIFBR:
3225 case SIOCGIFBR:
3226 return old_bridge_ioctl(argp);
3227 case SIOCGIFNAME:
3228 return dev_ifname32(net, argp);
3229 case SIOCGIFCONF:
3230 return dev_ifconf(net, argp);
3231 case SIOCETHTOOL:
3232 return ethtool_ioctl(net, argp);
Arnd Bergmann7a50a242009-11-08 20:57:03 -08003233 case SIOCWANDEV:
3234 return compat_siocwandev(net, argp);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003235 case SIOCGIFMAP:
3236 case SIOCSIFMAP:
3237 return compat_sioc_ifmap(net, cmd, argp);
Arnd Bergmann6b960182009-11-06 23:10:54 -08003238 case SIOCBONDENSLAVE:
3239 case SIOCBONDRELEASE:
3240 case SIOCBONDSETHWADDR:
3241 case SIOCBONDSLAVEINFOQUERY:
3242 case SIOCBONDINFOQUERY:
3243 case SIOCBONDCHANGEACTIVE:
3244 return bond_ioctl(net, cmd, argp);
3245 case SIOCADDRT:
3246 case SIOCDELRT:
3247 return routing_ioctl(net, sock, cmd, argp);
3248 case SIOCGSTAMP:
3249 return do_siocgstamp(net, sock, cmd, argp);
3250 case SIOCGSTAMPNS:
3251 return do_siocgstampns(net, sock, cmd, argp);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003252 case SIOCSHWTSTAMP:
3253 return compat_siocshwtstamp(net, argp);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003254
Arnd Bergmann6b960182009-11-06 23:10:54 -08003255 case FIOSETOWN:
3256 case SIOCSPGRP:
3257 case FIOGETOWN:
3258 case SIOCGPGRP:
3259 case SIOCBRADDBR:
3260 case SIOCBRDELBR:
3261 case SIOCGIFVLAN:
3262 case SIOCSIFVLAN:
3263 case SIOCADDDLCI:
3264 case SIOCDELDLCI:
3265 return sock_ioctl(file, cmd, arg);
3266
3267 case SIOCGIFFLAGS:
3268 case SIOCSIFFLAGS:
3269 case SIOCGIFMETRIC:
3270 case SIOCSIFMETRIC:
3271 case SIOCGIFMTU:
3272 case SIOCSIFMTU:
3273 case SIOCGIFMEM:
3274 case SIOCSIFMEM:
3275 case SIOCGIFHWADDR:
3276 case SIOCSIFHWADDR:
3277 case SIOCADDMULTI:
3278 case SIOCDELMULTI:
3279 case SIOCGIFINDEX:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003280 case SIOCGIFADDR:
3281 case SIOCSIFADDR:
3282 case SIOCSIFHWBROADCAST:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003283 case SIOCDIFADDR:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003284 case SIOCGIFBRDADDR:
3285 case SIOCSIFBRDADDR:
3286 case SIOCGIFDSTADDR:
3287 case SIOCSIFDSTADDR:
3288 case SIOCGIFNETMASK:
3289 case SIOCSIFNETMASK:
3290 case SIOCSIFPFLAGS:
3291 case SIOCGIFPFLAGS:
3292 case SIOCGIFTXQLEN:
3293 case SIOCSIFTXQLEN:
3294 case SIOCBRADDIF:
3295 case SIOCBRDELIF:
Arnd Bergmann9177efd2009-11-06 08:09:09 +00003296 case SIOCSIFNAME:
3297 case SIOCGMIIPHY:
3298 case SIOCGMIIREG:
3299 case SIOCSMIIREG:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003300 return dev_ifsioc(net, sock, cmd, argp);
Arnd Bergmann9177efd2009-11-06 08:09:09 +00003301
Arnd Bergmann6b960182009-11-06 23:10:54 -08003302 case SIOCSARP:
3303 case SIOCGARP:
3304 case SIOCDARP:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003305 case SIOCATMARK:
Arnd Bergmann9177efd2009-11-06 08:09:09 +00003306 return sock_do_ioctl(net, sock, cmd, arg);
3307 }
3308
Arnd Bergmann6b960182009-11-06 23:10:54 -08003309 return -ENOIOCTLCMD;
3310}
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003311
Eric Dumazet95c96172012-04-15 05:58:06 +00003312static long compat_sock_ioctl(struct file *file, unsigned int cmd,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07003313 unsigned long arg)
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003314{
3315 struct socket *sock = file->private_data;
3316 int ret = -ENOIOCTLCMD;
David S. Miller87de87d2008-06-03 09:14:03 -07003317 struct sock *sk;
3318 struct net *net;
3319
3320 sk = sock->sk;
3321 net = sock_net(sk);
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003322
3323 if (sock->ops->compat_ioctl)
3324 ret = sock->ops->compat_ioctl(sock, cmd, arg);
3325
David S. Miller87de87d2008-06-03 09:14:03 -07003326 if (ret == -ENOIOCTLCMD &&
3327 (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST))
3328 ret = compat_wext_handle_ioctl(net, cmd, arg);
3329
Arnd Bergmann6b960182009-11-06 23:10:54 -08003330 if (ret == -ENOIOCTLCMD)
3331 ret = compat_sock_ioctl_trans(file, sock, cmd, arg);
3332
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003333 return ret;
3334}
3335#endif
3336
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003337int kernel_bind(struct socket *sock, struct sockaddr *addr, int addrlen)
3338{
3339 return sock->ops->bind(sock, addr, addrlen);
3340}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003341EXPORT_SYMBOL(kernel_bind);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003342
3343int kernel_listen(struct socket *sock, int backlog)
3344{
3345 return sock->ops->listen(sock, backlog);
3346}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003347EXPORT_SYMBOL(kernel_listen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003348
3349int kernel_accept(struct socket *sock, struct socket **newsock, int flags)
3350{
3351 struct sock *sk = sock->sk;
3352 int err;
3353
3354 err = sock_create_lite(sk->sk_family, sk->sk_type, sk->sk_protocol,
3355 newsock);
3356 if (err < 0)
3357 goto done;
3358
3359 err = sock->ops->accept(sock, *newsock, flags);
3360 if (err < 0) {
3361 sock_release(*newsock);
Tony Battersbyfa8705b2007-10-10 21:09:04 -07003362 *newsock = NULL;
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003363 goto done;
3364 }
3365
3366 (*newsock)->ops = sock->ops;
Wei Yongjun1b085342008-12-18 19:35:10 -08003367 __module_get((*newsock)->ops->owner);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003368
3369done:
3370 return err;
3371}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003372EXPORT_SYMBOL(kernel_accept);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003373
3374int kernel_connect(struct socket *sock, struct sockaddr *addr, int addrlen,
YOSHIFUJI Hideaki4768fbc2007-02-09 23:25:31 +09003375 int flags)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003376{
3377 return sock->ops->connect(sock, addr, addrlen, flags);
3378}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003379EXPORT_SYMBOL(kernel_connect);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003380
3381int kernel_getsockname(struct socket *sock, struct sockaddr *addr,
3382 int *addrlen)
3383{
3384 return sock->ops->getname(sock, addr, addrlen, 0);
3385}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003386EXPORT_SYMBOL(kernel_getsockname);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003387
3388int kernel_getpeername(struct socket *sock, struct sockaddr *addr,
3389 int *addrlen)
3390{
3391 return sock->ops->getname(sock, addr, addrlen, 1);
3392}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003393EXPORT_SYMBOL(kernel_getpeername);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003394
3395int kernel_getsockopt(struct socket *sock, int level, int optname,
3396 char *optval, int *optlen)
3397{
3398 mm_segment_t oldfs = get_fs();
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003399 char __user *uoptval;
3400 int __user *uoptlen;
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003401 int err;
3402
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003403 uoptval = (char __user __force *) optval;
3404 uoptlen = (int __user __force *) optlen;
3405
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003406 set_fs(KERNEL_DS);
3407 if (level == SOL_SOCKET)
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003408 err = sock_getsockopt(sock, level, optname, uoptval, uoptlen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003409 else
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003410 err = sock->ops->getsockopt(sock, level, optname, uoptval,
3411 uoptlen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003412 set_fs(oldfs);
3413 return err;
3414}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003415EXPORT_SYMBOL(kernel_getsockopt);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003416
3417int kernel_setsockopt(struct socket *sock, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07003418 char *optval, unsigned int optlen)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003419{
3420 mm_segment_t oldfs = get_fs();
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003421 char __user *uoptval;
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003422 int err;
3423
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003424 uoptval = (char __user __force *) optval;
3425
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003426 set_fs(KERNEL_DS);
3427 if (level == SOL_SOCKET)
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003428 err = sock_setsockopt(sock, level, optname, uoptval, optlen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003429 else
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003430 err = sock->ops->setsockopt(sock, level, optname, uoptval,
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003431 optlen);
3432 set_fs(oldfs);
3433 return err;
3434}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003435EXPORT_SYMBOL(kernel_setsockopt);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003436
3437int kernel_sendpage(struct socket *sock, struct page *page, int offset,
3438 size_t size, int flags)
3439{
Herbert Xuf8451722010-05-24 00:12:34 -07003440 sock_update_classid(sock->sk);
3441
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003442 if (sock->ops->sendpage)
3443 return sock->ops->sendpage(sock, page, offset, size, flags);
3444
3445 return sock_no_sendpage(sock, page, offset, size, flags);
3446}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003447EXPORT_SYMBOL(kernel_sendpage);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003448
3449int kernel_sock_ioctl(struct socket *sock, int cmd, unsigned long arg)
3450{
3451 mm_segment_t oldfs = get_fs();
3452 int err;
3453
3454 set_fs(KERNEL_DS);
3455 err = sock->ops->ioctl(sock, cmd, arg);
3456 set_fs(oldfs);
3457
3458 return err;
3459}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003460EXPORT_SYMBOL(kernel_sock_ioctl);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003461
Trond Myklebust91cf45f2007-11-12 18:10:39 -08003462int kernel_sock_shutdown(struct socket *sock, enum sock_shutdown_cmd how)
3463{
3464 return sock->ops->shutdown(sock, how);
3465}
Trond Myklebust91cf45f2007-11-12 18:10:39 -08003466EXPORT_SYMBOL(kernel_sock_shutdown);