blob: 879933aaed4c07ecd9cdad1809939ff729a588a7 [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/if_bridge.h>
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -030073#include <linux/if_frad.h>
74#include <linux/if_vlan.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070075#include <linux/init.h>
76#include <linux/poll.h>
77#include <linux/cache.h>
78#include <linux/module.h>
79#include <linux/highmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070080#include <linux/mount.h>
81#include <linux/security.h>
82#include <linux/syscalls.h>
83#include <linux/compat.h>
84#include <linux/kmod.h>
David Woodhouse3ec3b2f2005-05-17 12:08:48 +010085#include <linux/audit.h>
Adrian Bunkd86b5e02006-01-21 00:46:55 +010086#include <linux/wireless.h>
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -070087#include <linux/nsproxy.h>
Nick Black1fd7317d2009-09-22 16:43:33 -070088#include <linux/magic.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090089#include <linux/slab.h>
Masatake YAMATO600e1772012-08-29 10:44:29 +000090#include <linux/xattr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92#include <asm/uaccess.h>
93#include <asm/unistd.h>
94
95#include <net/compat.h>
David S. Miller87de87d2008-06-03 09:14:03 -070096#include <net/wext.h>
Herbert Xuf8451722010-05-24 00:12:34 -070097#include <net/cls_cgroup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99#include <net/sock.h>
100#include <linux/netfilter.h>
101
Arnd Bergmann6b960182009-11-06 23:10:54 -0800102#include <linux/if_tun.h>
103#include <linux/ipv6_route.h>
104#include <linux/route.h>
Arnd Bergmann6b960182009-11-06 23:10:54 -0800105#include <linux/sockios.h>
106#include <linux/atalk.h>
Eliezer Tamir076bb0c2013-07-10 17:13:17 +0300107#include <net/busy_poll.h>
Eliezer Tamir06021292013-06-10 11:39:50 +0300108
Cong Wange0d10952013-08-01 11:10:25 +0800109#ifdef CONFIG_NET_RX_BUSY_POLL
Eliezer Tamir64b0dc52013-07-10 17:13:36 +0300110unsigned int sysctl_net_busy_read __read_mostly;
111unsigned int sysctl_net_busy_poll __read_mostly;
Eliezer Tamir06021292013-06-10 11:39:50 +0300112#endif
Arnd Bergmann6b960182009-11-06 23:10:54 -0800113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114static int sock_no_open(struct inode *irrelevant, struct file *dontcare);
Badari Pulavarty027445c2006-09-30 23:28:46 -0700115static ssize_t sock_aio_read(struct kiocb *iocb, const struct iovec *iov,
116 unsigned long nr_segs, loff_t pos);
117static ssize_t sock_aio_write(struct kiocb *iocb, const struct iovec *iov,
118 unsigned long nr_segs, loff_t pos);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700119static int sock_mmap(struct file *file, struct vm_area_struct *vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
121static int sock_close(struct inode *inode, struct file *file);
122static unsigned int sock_poll(struct file *file,
123 struct poll_table_struct *wait);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700124static long sock_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800125#ifdef CONFIG_COMPAT
126static long compat_sock_ioctl(struct file *file,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700127 unsigned int cmd, unsigned long arg);
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800128#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129static int sock_fasync(int fd, struct file *filp, int on);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130static ssize_t sock_sendpage(struct file *file, struct page *page,
131 int offset, size_t size, loff_t *ppos, int more);
Jens Axboe9c55e012007-11-06 23:30:13 -0800132static ssize_t sock_splice_read(struct file *file, loff_t *ppos,
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700133 struct pipe_inode_info *pipe, size_t len,
Jens Axboe9c55e012007-11-06 23:30:13 -0800134 unsigned int flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136/*
137 * Socket files have a set of 'special' operations as well as the generic file ones. These don't appear
138 * in the operation structures but are done directly via the socketcall() multiplexor.
139 */
140
Arjan van de Venda7071d2007-02-12 00:55:36 -0800141static const struct file_operations socket_file_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 .owner = THIS_MODULE,
143 .llseek = no_llseek,
144 .aio_read = sock_aio_read,
145 .aio_write = sock_aio_write,
146 .poll = sock_poll,
147 .unlocked_ioctl = sock_ioctl,
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800148#ifdef CONFIG_COMPAT
149 .compat_ioctl = compat_sock_ioctl,
150#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 .mmap = sock_mmap,
152 .open = sock_no_open, /* special open code to disallow open via /proc */
153 .release = sock_close,
154 .fasync = sock_fasync,
Jens Axboe5274f052006-03-30 15:15:30 +0200155 .sendpage = sock_sendpage,
156 .splice_write = generic_splice_sendpage,
Jens Axboe9c55e012007-11-06 23:30:13 -0800157 .splice_read = sock_splice_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158};
159
160/*
161 * The protocol list. Each protocol is registered in here.
162 */
163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164static DEFINE_SPINLOCK(net_family_lock);
Eric Dumazet190683a2010-11-10 10:50:44 +0000165static const struct net_proto_family __rcu *net_families[NPROTO] __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167/*
168 * Statistics counters of the socket lists
169 */
170
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700171static DEFINE_PER_CPU(int, sockets_in_use);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700174 * Support routines.
175 * Move socket addresses back and forth across the kernel/user
176 * divide and look after the messy bits.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 */
178
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179/**
180 * move_addr_to_kernel - copy a socket address into kernel space
181 * @uaddr: Address in user space
182 * @kaddr: Address in kernel space
183 * @ulen: Length in user space
184 *
185 * The address is copied into kernel space. If the provided address is
186 * too long an error code of -EINVAL is returned. If the copy gives
187 * invalid addresses -EFAULT is returned. On a success 0 is returned.
188 */
189
Maciej Żenczykowski43db3622012-03-11 12:51:50 +0000190int move_addr_to_kernel(void __user *uaddr, int ulen, struct sockaddr_storage *kaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191{
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -0700192 if (ulen < 0 || ulen > sizeof(struct sockaddr_storage))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700194 if (ulen == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 return 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700196 if (copy_from_user(kaddr, uaddr, ulen))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 return -EFAULT;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +0100198 return audit_sockaddr(ulen, kaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199}
200
201/**
202 * move_addr_to_user - copy an address to user space
203 * @kaddr: kernel space address
204 * @klen: length of address in kernel
205 * @uaddr: user space address
206 * @ulen: pointer to user length field
207 *
208 * The value pointed to by ulen on entry is the buffer length available.
209 * This is overwritten with the buffer space used. -EINVAL is returned
210 * if an overlong buffer is specified or a negative buffer size. -EFAULT
211 * is returned if either the buffer or the length field are not
212 * accessible.
213 * After copying the data up to the limit the user specifies, the true
214 * length of the data is written over the length limit the user
215 * specified. Zero is returned for a success.
216 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700217
Maciej Żenczykowski43db3622012-03-11 12:51:50 +0000218static int move_addr_to_user(struct sockaddr_storage *kaddr, int klen,
stephen hemminger11165f12010-10-18 14:27:29 +0000219 void __user *uaddr, int __user *ulen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220{
221 int err;
222 int len;
223
Hannes Frederic Sowa68c6beb2013-11-21 03:14:34 +0100224 BUG_ON(klen > sizeof(struct sockaddr_storage));
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700225 err = get_user(len, ulen);
226 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 return err;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700228 if (len > klen)
229 len = klen;
Hannes Frederic Sowa68c6beb2013-11-21 03:14:34 +0100230 if (len < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700232 if (len) {
Steve Grubbd6fe3942006-03-30 12:20:22 -0500233 if (audit_sockaddr(klen, kaddr))
234 return -ENOMEM;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700235 if (copy_to_user(uaddr, kaddr, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 return -EFAULT;
237 }
238 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700239 * "fromlen shall refer to the value before truncation.."
240 * 1003.1g
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 */
242 return __put_user(klen, ulen);
243}
244
Christoph Lametere18b8902006-12-06 20:33:20 -0800245static struct kmem_cache *sock_inode_cachep __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
247static struct inode *sock_alloc_inode(struct super_block *sb)
248{
249 struct socket_alloc *ei;
Eric Dumazeteaefd112011-02-18 03:26:36 +0000250 struct socket_wq *wq;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700251
Christoph Lametere94b1762006-12-06 20:33:17 -0800252 ei = kmem_cache_alloc(sock_inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 if (!ei)
254 return NULL;
Eric Dumazeteaefd112011-02-18 03:26:36 +0000255 wq = kmalloc(sizeof(*wq), GFP_KERNEL);
256 if (!wq) {
Eric Dumazet43815482010-04-29 11:01:49 +0000257 kmem_cache_free(sock_inode_cachep, ei);
258 return NULL;
259 }
Eric Dumazeteaefd112011-02-18 03:26:36 +0000260 init_waitqueue_head(&wq->wait);
261 wq->fasync_list = NULL;
262 RCU_INIT_POINTER(ei->socket.wq, wq);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 ei->socket.state = SS_UNCONNECTED;
265 ei->socket.flags = 0;
266 ei->socket.ops = NULL;
267 ei->socket.sk = NULL;
268 ei->socket.file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
270 return &ei->vfs_inode;
271}
272
273static void sock_destroy_inode(struct inode *inode)
274{
Eric Dumazet43815482010-04-29 11:01:49 +0000275 struct socket_alloc *ei;
Eric Dumazeteaefd112011-02-18 03:26:36 +0000276 struct socket_wq *wq;
Eric Dumazet43815482010-04-29 11:01:49 +0000277
278 ei = container_of(inode, struct socket_alloc, vfs_inode);
Eric Dumazeteaefd112011-02-18 03:26:36 +0000279 wq = rcu_dereference_protected(ei->socket.wq, 1);
Lai Jiangshan61845222011-03-18 12:10:25 +0800280 kfree_rcu(wq, rcu);
Eric Dumazet43815482010-04-29 11:01:49 +0000281 kmem_cache_free(sock_inode_cachep, ei);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282}
283
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700284static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285{
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700286 struct socket_alloc *ei = (struct socket_alloc *)foo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Christoph Lametera35afb82007-05-16 22:10:57 -0700288 inode_init_once(&ei->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289}
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291static int init_inodecache(void)
292{
293 sock_inode_cachep = kmem_cache_create("sock_inode_cache",
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700294 sizeof(struct socket_alloc),
295 0,
296 (SLAB_HWCACHE_ALIGN |
297 SLAB_RECLAIM_ACCOUNT |
298 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +0900299 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 if (sock_inode_cachep == NULL)
301 return -ENOMEM;
302 return 0;
303}
304
Alexey Dobriyanb87221d2009-09-21 17:01:09 -0700305static const struct super_operations sockfs_ops = {
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700306 .alloc_inode = sock_alloc_inode,
307 .destroy_inode = sock_destroy_inode,
308 .statfs = simple_statfs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309};
310
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700311/*
312 * sockfs_dname() is called from d_path().
313 */
314static char *sockfs_dname(struct dentry *dentry, char *buffer, int buflen)
315{
316 return dynamic_dname(dentry, buffer, buflen, "socket:[%lu]",
317 dentry->d_inode->i_ino);
318}
319
Al Viro3ba13d12009-02-20 06:02:22 +0000320static const struct dentry_operations sockfs_dentry_operations = {
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700321 .d_dname = sockfs_dname,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322};
323
Al Viroc74a1cb2011-01-12 16:59:34 -0500324static struct dentry *sockfs_mount(struct file_system_type *fs_type,
325 int flags, const char *dev_name, void *data)
326{
327 return mount_pseudo(fs_type, "socket:", &sockfs_ops,
328 &sockfs_dentry_operations, SOCKFS_MAGIC);
329}
330
331static struct vfsmount *sock_mnt __read_mostly;
332
333static struct file_system_type sock_fs_type = {
334 .name = "sockfs",
335 .mount = sockfs_mount,
336 .kill_sb = kill_anon_super,
337};
338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339/*
340 * Obtains the first available file descriptor and sets it up for use.
341 *
David S. Miller39d8c1b2006-03-20 17:13:49 -0800342 * These functions create file structures and maps them to fd space
343 * of the current process. On success it returns file descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 * and file struct implicitly stored in sock->file.
345 * Note that another thread may close file descriptor before we return
346 * from this function. We use the fact that now we do not refer
347 * to socket after mapping. If one day we will need it, this
348 * function will increment ref. count on file by 1.
349 *
350 * In any case returned fd MAY BE not valid!
351 * This race condition is unavoidable
352 * with shared fd spaces, we cannot solve it inside kernel,
353 * but we take care of internal coherence yet.
354 */
355
Linus Torvaldsaab174f2012-10-02 20:25:04 -0700356struct file *sock_alloc_file(struct socket *sock, int flags, const char *dname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357{
Al Viro7cbe66b2009-08-05 19:59:08 +0400358 struct qstr name = { .name = "" };
Al Viro2c48b9c2009-08-09 00:52:35 +0400359 struct path path;
Al Viro7cbe66b2009-08-05 19:59:08 +0400360 struct file *file;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800361
Masatake YAMATO600e1772012-08-29 10:44:29 +0000362 if (dname) {
363 name.name = dname;
364 name.len = strlen(name.name);
365 } else if (sock->sk) {
366 name.name = sock->sk->sk_prot_creator->name;
367 name.len = strlen(name.name);
368 }
Nick Piggin4b936882011-01-07 17:50:07 +1100369 path.dentry = d_alloc_pseudo(sock_mnt->mnt_sb, &name);
Al Viro28407632012-08-17 23:54:15 -0400370 if (unlikely(!path.dentry))
371 return ERR_PTR(-ENOMEM);
Al Viro2c48b9c2009-08-09 00:52:35 +0400372 path.mnt = mntget(sock_mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
Al Viro2c48b9c2009-08-09 00:52:35 +0400374 d_instantiate(path.dentry, SOCK_INODE(sock));
Al Virocc3808f2009-08-06 09:43:59 +0400375 SOCK_INODE(sock)->i_fop = &socket_file_ops;
376
Al Viro2c48b9c2009-08-09 00:52:35 +0400377 file = alloc_file(&path, FMODE_READ | FMODE_WRITE,
Al Virocc3808f2009-08-06 09:43:59 +0400378 &socket_file_ops);
Anatol Pomozov39b65252012-09-12 20:11:55 -0700379 if (unlikely(IS_ERR(file))) {
Al Virocc3808f2009-08-06 09:43:59 +0400380 /* drop dentry, keep inode */
Al Viro7de9c6ee2010-10-23 11:11:40 -0400381 ihold(path.dentry->d_inode);
Al Viro2c48b9c2009-08-09 00:52:35 +0400382 path_put(&path);
Anatol Pomozov39b65252012-09-12 20:11:55 -0700383 return file;
Al Virocc3808f2009-08-06 09:43:59 +0400384 }
David S. Miller39d8c1b2006-03-20 17:13:49 -0800385
386 sock->file = file;
Ulrich Drepper77d27202008-07-23 21:29:35 -0700387 file->f_flags = O_RDWR | (flags & O_NONBLOCK);
David S. Miller39d8c1b2006-03-20 17:13:49 -0800388 file->private_data = sock;
Al Viro28407632012-08-17 23:54:15 -0400389 return file;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800390}
Al Viro56b31d12012-08-18 00:25:51 -0400391EXPORT_SYMBOL(sock_alloc_file);
David S. Miller39d8c1b2006-03-20 17:13:49 -0800392
Al Viro56b31d12012-08-18 00:25:51 -0400393static int sock_map_fd(struct socket *sock, int flags)
David S. Miller39d8c1b2006-03-20 17:13:49 -0800394{
395 struct file *newfile;
Al Viro28407632012-08-17 23:54:15 -0400396 int fd = get_unused_fd_flags(flags);
397 if (unlikely(fd < 0))
398 return fd;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800399
Linus Torvaldsaab174f2012-10-02 20:25:04 -0700400 newfile = sock_alloc_file(sock, flags, NULL);
Al Viro28407632012-08-17 23:54:15 -0400401 if (likely(!IS_ERR(newfile))) {
David S. Miller39d8c1b2006-03-20 17:13:49 -0800402 fd_install(fd, newfile);
Al Viro28407632012-08-17 23:54:15 -0400403 return fd;
404 }
Al Viro7cbe66b2009-08-05 19:59:08 +0400405
Al Viro28407632012-08-17 23:54:15 -0400406 put_unused_fd(fd);
407 return PTR_ERR(newfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408}
409
John Fastabend406a3c62012-07-20 10:39:25 +0000410struct socket *sock_from_file(struct file *file, int *err)
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800411{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800412 if (file->f_op == &socket_file_ops)
413 return file->private_data; /* set in sock_map_fd */
414
Eric Dumazet23bb80d2007-02-08 14:59:57 -0800415 *err = -ENOTSOCK;
416 return NULL;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800417}
John Fastabend406a3c62012-07-20 10:39:25 +0000418EXPORT_SYMBOL(sock_from_file);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420/**
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700421 * sockfd_lookup - Go from a file number to its socket slot
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 * @fd: file handle
423 * @err: pointer to an error code return
424 *
425 * The file handle passed in is locked and the socket it is bound
426 * too is returned. If an error occurs the err pointer is overwritten
427 * with a negative errno code and NULL is returned. The function checks
428 * for both invalid handles and passing a handle which is not a socket.
429 *
430 * On a success the socket object pointer is returned.
431 */
432
433struct socket *sockfd_lookup(int fd, int *err)
434{
435 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 struct socket *sock;
437
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700438 file = fget(fd);
439 if (!file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 *err = -EBADF;
441 return NULL;
442 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700443
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800444 sock = sock_from_file(file, err);
445 if (!sock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 fput(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 return sock;
448}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700449EXPORT_SYMBOL(sockfd_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800451static struct socket *sockfd_lookup_light(int fd, int *err, int *fput_needed)
452{
453 struct file *file;
454 struct socket *sock;
455
Hua Zhong36725582006-04-19 15:25:02 -0700456 *err = -EBADF;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800457 file = fget_light(fd, fput_needed);
458 if (file) {
459 sock = sock_from_file(file, err);
460 if (sock)
461 return sock;
462 fput_light(file, *fput_needed);
463 }
464 return NULL;
465}
466
Masatake YAMATO600e1772012-08-29 10:44:29 +0000467#define XATTR_SOCKPROTONAME_SUFFIX "sockprotoname"
468#define XATTR_NAME_SOCKPROTONAME (XATTR_SYSTEM_PREFIX XATTR_SOCKPROTONAME_SUFFIX)
469#define XATTR_NAME_SOCKPROTONAME_LEN (sizeof(XATTR_NAME_SOCKPROTONAME)-1)
470static ssize_t sockfs_getxattr(struct dentry *dentry,
471 const char *name, void *value, size_t size)
472{
473 const char *proto_name;
474 size_t proto_size;
475 int error;
476
477 error = -ENODATA;
478 if (!strncmp(name, XATTR_NAME_SOCKPROTONAME, XATTR_NAME_SOCKPROTONAME_LEN)) {
479 proto_name = dentry->d_name.name;
480 proto_size = strlen(proto_name);
481
482 if (value) {
483 error = -ERANGE;
484 if (proto_size + 1 > size)
485 goto out;
486
487 strncpy(value, proto_name, proto_size + 1);
488 }
489 error = proto_size + 1;
490 }
491
492out:
493 return error;
494}
495
496static ssize_t sockfs_listxattr(struct dentry *dentry, char *buffer,
497 size_t size)
498{
499 ssize_t len;
500 ssize_t used = 0;
501
502 len = security_inode_listsecurity(dentry->d_inode, buffer, size);
503 if (len < 0)
504 return len;
505 used += len;
506 if (buffer) {
507 if (size < used)
508 return -ERANGE;
509 buffer += len;
510 }
511
512 len = (XATTR_NAME_SOCKPROTONAME_LEN + 1);
513 used += len;
514 if (buffer) {
515 if (size < used)
516 return -ERANGE;
517 memcpy(buffer, XATTR_NAME_SOCKPROTONAME, len);
518 buffer += len;
519 }
520
521 return used;
522}
523
524static const struct inode_operations sockfs_inode_ops = {
525 .getxattr = sockfs_getxattr,
526 .listxattr = sockfs_listxattr,
527};
528
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529/**
530 * sock_alloc - allocate a socket
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700531 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 * Allocate a new inode and socket object. The two are bound together
533 * and initialised. The socket is then returned. If we are out of inodes
534 * NULL is returned.
535 */
536
537static struct socket *sock_alloc(void)
538{
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700539 struct inode *inode;
540 struct socket *sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Eric Dumazeta209dfc2011-07-26 11:36:34 +0200542 inode = new_inode_pseudo(sock_mnt->mnt_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 if (!inode)
544 return NULL;
545
546 sock = SOCKET_I(inode);
547
Eric Dumazet29a020d2009-09-15 02:39:20 -0700548 kmemcheck_annotate_bitfield(sock, type);
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400549 inode->i_ino = get_next_ino();
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700550 inode->i_mode = S_IFSOCK | S_IRWXUGO;
David Howells8192b0c2008-11-14 10:39:10 +1100551 inode->i_uid = current_fsuid();
552 inode->i_gid = current_fsgid();
Masatake YAMATO600e1772012-08-29 10:44:29 +0000553 inode->i_op = &sockfs_inode_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Alex Shi19e8d692012-05-14 14:15:31 -0700555 this_cpu_add(sockets_in_use, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 return sock;
557}
558
559/*
560 * In theory you can't get an open on this inode, but /proc provides
561 * a back door. Remember to keep it shut otherwise you'll let the
562 * creepy crawlies in.
563 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700564
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565static int sock_no_open(struct inode *irrelevant, struct file *dontcare)
566{
567 return -ENXIO;
568}
569
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800570const struct file_operations bad_sock_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 .owner = THIS_MODULE,
572 .open = sock_no_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200573 .llseek = noop_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574};
575
576/**
577 * sock_release - close a socket
578 * @sock: socket to close
579 *
580 * The socket is released from the protocol stack if it has a release
581 * callback, and the inode is then released if the socket is bound to
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700582 * an inode not a file.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700584
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585void sock_release(struct socket *sock)
586{
587 if (sock->ops) {
588 struct module *owner = sock->ops->owner;
589
590 sock->ops->release(sock);
591 sock->ops = NULL;
592 module_put(owner);
593 }
594
Eric Dumazeteaefd112011-02-18 03:26:36 +0000595 if (rcu_dereference_protected(sock->wq, 1)->fasync_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 printk(KERN_ERR "sock_release: fasync list not empty!\n");
597
Mikulas Patockab09e7862012-07-19 06:13:36 +0000598 if (test_bit(SOCK_EXTERNALLY_ALLOCATED, &sock->flags))
599 return;
600
Alex Shi19e8d692012-05-14 14:15:31 -0700601 this_cpu_sub(sockets_in_use, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 if (!sock->file) {
603 iput(SOCK_INODE(sock));
604 return;
605 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700606 sock->file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700608EXPORT_SYMBOL(sock_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Daniel Borkmannbf84a012013-04-14 08:08:13 +0000610void sock_tx_timestamp(struct sock *sk, __u8 *tx_flags)
Patrick Ohly20d49472009-02-12 05:03:38 +0000611{
Oliver Hartkopp2244d072010-08-17 08:59:14 +0000612 *tx_flags = 0;
Patrick Ohly20d49472009-02-12 05:03:38 +0000613 if (sock_flag(sk, SOCK_TIMESTAMPING_TX_HARDWARE))
Oliver Hartkopp2244d072010-08-17 08:59:14 +0000614 *tx_flags |= SKBTX_HW_TSTAMP;
Patrick Ohly20d49472009-02-12 05:03:38 +0000615 if (sock_flag(sk, SOCK_TIMESTAMPING_TX_SOFTWARE))
Oliver Hartkopp2244d072010-08-17 08:59:14 +0000616 *tx_flags |= SKBTX_SW_TSTAMP;
Johannes Berg6e3e9392011-11-09 10:15:42 +0100617 if (sock_flag(sk, SOCK_WIFI_STATUS))
618 *tx_flags |= SKBTX_WIFI_STATUS;
Patrick Ohly20d49472009-02-12 05:03:38 +0000619}
620EXPORT_SYMBOL(sock_tx_timestamp);
621
Anton Blanchard228e5482011-05-02 20:21:35 +0000622static inline int __sock_sendmsg_nosec(struct kiocb *iocb, struct socket *sock,
623 struct msghdr *msg, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624{
625 struct sock_iocb *si = kiocb_to_siocb(iocb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
627 si->sock = sock;
628 si->scm = NULL;
629 si->msg = msg;
630 si->size = size;
631
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 return sock->ops->sendmsg(iocb, sock, msg, size);
633}
634
Anton Blanchard228e5482011-05-02 20:21:35 +0000635static inline int __sock_sendmsg(struct kiocb *iocb, struct socket *sock,
636 struct msghdr *msg, size_t size)
637{
638 int err = security_socket_sendmsg(sock, msg, size);
639
640 return err ?: __sock_sendmsg_nosec(iocb, sock, msg, size);
641}
642
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643int sock_sendmsg(struct socket *sock, struct msghdr *msg, size_t size)
644{
645 struct kiocb iocb;
646 struct sock_iocb siocb;
647 int ret;
648
649 init_sync_kiocb(&iocb, NULL);
650 iocb.private = &siocb;
651 ret = __sock_sendmsg(&iocb, sock, msg, size);
652 if (-EIOCBQUEUED == ret)
653 ret = wait_on_sync_kiocb(&iocb);
654 return ret;
655}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700656EXPORT_SYMBOL(sock_sendmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
Eric Dumazet894dc242011-07-26 02:39:41 +0000658static int sock_sendmsg_nosec(struct socket *sock, struct msghdr *msg, size_t size)
Anton Blanchard228e5482011-05-02 20:21:35 +0000659{
660 struct kiocb iocb;
661 struct sock_iocb siocb;
662 int ret;
663
664 init_sync_kiocb(&iocb, NULL);
665 iocb.private = &siocb;
666 ret = __sock_sendmsg_nosec(&iocb, sock, msg, size);
667 if (-EIOCBQUEUED == ret)
668 ret = wait_on_sync_kiocb(&iocb);
669 return ret;
670}
671
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672int kernel_sendmsg(struct socket *sock, struct msghdr *msg,
673 struct kvec *vec, size_t num, size_t size)
674{
675 mm_segment_t oldfs = get_fs();
676 int result;
677
678 set_fs(KERNEL_DS);
679 /*
680 * the following is safe, since for compiler definitions of kvec and
681 * iovec are identical, yielding the same in-core layout and alignment
682 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700683 msg->msg_iov = (struct iovec *)vec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 msg->msg_iovlen = num;
685 result = sock_sendmsg(sock, msg, size);
686 set_fs(oldfs);
687 return result;
688}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700689EXPORT_SYMBOL(kernel_sendmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700691/*
692 * called from sock_recv_timestamp() if sock_flag(sk, SOCK_RCVTSTAMP)
693 */
694void __sock_recv_timestamp(struct msghdr *msg, struct sock *sk,
695 struct sk_buff *skb)
696{
Patrick Ohly20d49472009-02-12 05:03:38 +0000697 int need_software_tstamp = sock_flag(sk, SOCK_RCVTSTAMP);
698 struct timespec ts[3];
699 int empty = 1;
700 struct skb_shared_hwtstamps *shhwtstamps =
701 skb_hwtstamps(skb);
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700702
Patrick Ohly20d49472009-02-12 05:03:38 +0000703 /* Race occurred between timestamp enabling and packet
704 receiving. Fill in the current time for now. */
705 if (need_software_tstamp && skb->tstamp.tv64 == 0)
706 __net_timestamp(skb);
707
708 if (need_software_tstamp) {
709 if (!sock_flag(sk, SOCK_RCVTSTAMPNS)) {
710 struct timeval tv;
711 skb_get_timestamp(skb, &tv);
712 put_cmsg(msg, SOL_SOCKET, SCM_TIMESTAMP,
713 sizeof(tv), &tv);
714 } else {
Hagen Paul Pfeifer842509b2010-04-06 05:39:52 +0000715 skb_get_timestampns(skb, &ts[0]);
Patrick Ohly20d49472009-02-12 05:03:38 +0000716 put_cmsg(msg, SOL_SOCKET, SCM_TIMESTAMPNS,
Hagen Paul Pfeifer842509b2010-04-06 05:39:52 +0000717 sizeof(ts[0]), &ts[0]);
Patrick Ohly20d49472009-02-12 05:03:38 +0000718 }
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700719 }
Patrick Ohly20d49472009-02-12 05:03:38 +0000720
721
722 memset(ts, 0, sizeof(ts));
Daniel Borkmann6e94d1e2013-04-16 01:29:10 +0000723 if (sock_flag(sk, SOCK_TIMESTAMPING_SOFTWARE) &&
724 ktime_to_timespec_cond(skb->tstamp, ts + 0))
Patrick Ohly20d49472009-02-12 05:03:38 +0000725 empty = 0;
Patrick Ohly20d49472009-02-12 05:03:38 +0000726 if (shhwtstamps) {
727 if (sock_flag(sk, SOCK_TIMESTAMPING_SYS_HARDWARE) &&
Daniel Borkmann6e94d1e2013-04-16 01:29:10 +0000728 ktime_to_timespec_cond(shhwtstamps->syststamp, ts + 1))
Patrick Ohly20d49472009-02-12 05:03:38 +0000729 empty = 0;
730 if (sock_flag(sk, SOCK_TIMESTAMPING_RAW_HARDWARE) &&
Daniel Borkmann6e94d1e2013-04-16 01:29:10 +0000731 ktime_to_timespec_cond(shhwtstamps->hwtstamp, ts + 2))
Patrick Ohly20d49472009-02-12 05:03:38 +0000732 empty = 0;
733 }
734 if (!empty)
735 put_cmsg(msg, SOL_SOCKET,
736 SCM_TIMESTAMPING, sizeof(ts), &ts);
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700737}
Arnaldo Carvalho de Melo7c81fd82007-03-10 00:39:35 -0300738EXPORT_SYMBOL_GPL(__sock_recv_timestamp);
739
Johannes Berg6e3e9392011-11-09 10:15:42 +0100740void __sock_recv_wifi_status(struct msghdr *msg, struct sock *sk,
741 struct sk_buff *skb)
742{
743 int ack;
744
745 if (!sock_flag(sk, SOCK_WIFI_STATUS))
746 return;
747 if (!skb->wifi_acked_valid)
748 return;
749
750 ack = skb->wifi_acked;
751
752 put_cmsg(msg, SOL_SOCKET, SCM_WIFI_STATUS, sizeof(ack), &ack);
753}
754EXPORT_SYMBOL_GPL(__sock_recv_wifi_status);
755
stephen hemminger11165f12010-10-18 14:27:29 +0000756static inline void sock_recv_drops(struct msghdr *msg, struct sock *sk,
757 struct sk_buff *skb)
Neil Horman3b885782009-10-12 13:26:31 -0700758{
759 if (sock_flag(sk, SOCK_RXQ_OVFL) && skb && skb->dropcount)
760 put_cmsg(msg, SOL_SOCKET, SO_RXQ_OVFL,
761 sizeof(__u32), &skb->dropcount);
762}
763
Eric Dumazet767dd032010-04-28 19:14:43 +0000764void __sock_recv_ts_and_drops(struct msghdr *msg, struct sock *sk,
Neil Horman3b885782009-10-12 13:26:31 -0700765 struct sk_buff *skb)
766{
767 sock_recv_timestamp(msg, sk, skb);
768 sock_recv_drops(msg, sk, skb);
769}
Eric Dumazet767dd032010-04-28 19:14:43 +0000770EXPORT_SYMBOL_GPL(__sock_recv_ts_and_drops);
Neil Horman3b885782009-10-12 13:26:31 -0700771
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -0700772static inline int __sock_recvmsg_nosec(struct kiocb *iocb, struct socket *sock,
773 struct msghdr *msg, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 struct sock_iocb *si = kiocb_to_siocb(iocb);
776
777 si->sock = sock;
778 si->scm = NULL;
779 si->msg = msg;
780 si->size = size;
781 si->flags = flags;
782
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 return sock->ops->recvmsg(iocb, sock, msg, size, flags);
784}
785
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -0700786static inline int __sock_recvmsg(struct kiocb *iocb, struct socket *sock,
787 struct msghdr *msg, size_t size, int flags)
788{
789 int err = security_socket_recvmsg(sock, msg, size, flags);
790
791 return err ?: __sock_recvmsg_nosec(iocb, sock, msg, size, flags);
792}
793
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700794int sock_recvmsg(struct socket *sock, struct msghdr *msg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 size_t size, int flags)
796{
797 struct kiocb iocb;
798 struct sock_iocb siocb;
799 int ret;
800
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700801 init_sync_kiocb(&iocb, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 iocb.private = &siocb;
803 ret = __sock_recvmsg(&iocb, sock, msg, size, flags);
804 if (-EIOCBQUEUED == ret)
805 ret = wait_on_sync_kiocb(&iocb);
806 return ret;
807}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700808EXPORT_SYMBOL(sock_recvmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -0700810static int sock_recvmsg_nosec(struct socket *sock, struct msghdr *msg,
811 size_t size, int flags)
812{
813 struct kiocb iocb;
814 struct sock_iocb siocb;
815 int ret;
816
817 init_sync_kiocb(&iocb, NULL);
818 iocb.private = &siocb;
819 ret = __sock_recvmsg_nosec(&iocb, sock, msg, size, flags);
820 if (-EIOCBQUEUED == ret)
821 ret = wait_on_sync_kiocb(&iocb);
822 return ret;
823}
824
Martin Lucinac1249c02010-12-10 00:04:05 +0000825/**
826 * kernel_recvmsg - Receive a message from a socket (kernel space)
827 * @sock: The socket to receive the message from
828 * @msg: Received message
829 * @vec: Input s/g array for message data
830 * @num: Size of input s/g array
831 * @size: Number of bytes to read
832 * @flags: Message flags (MSG_DONTWAIT, etc...)
833 *
834 * On return the msg structure contains the scatter/gather array passed in the
835 * vec argument. The array is modified so that it consists of the unfilled
836 * portion of the original array.
837 *
838 * The returned value is the total number of bytes received, or an error.
839 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700840int kernel_recvmsg(struct socket *sock, struct msghdr *msg,
841 struct kvec *vec, size_t num, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842{
843 mm_segment_t oldfs = get_fs();
844 int result;
845
846 set_fs(KERNEL_DS);
847 /*
848 * the following is safe, since for compiler definitions of kvec and
849 * iovec are identical, yielding the same in-core layout and alignment
850 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700851 msg->msg_iov = (struct iovec *)vec, msg->msg_iovlen = num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 result = sock_recvmsg(sock, msg, size, flags);
853 set_fs(oldfs);
854 return result;
855}
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700856EXPORT_SYMBOL(kernel_recvmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -0300858static ssize_t sock_sendpage(struct file *file, struct page *page,
859 int offset, size_t size, loff_t *ppos, int more)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860{
861 struct socket *sock;
862 int flags;
863
Eric Dumazetb69aee02005-09-06 14:42:45 -0700864 sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
Eric Dumazet35f9c092012-04-05 03:05:35 +0000866 flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
867 /* more is a combination of MSG_MORE and MSG_SENDPAGE_NOTLAST */
868 flags |= more;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
Linus Torvaldse6949582009-08-13 08:28:36 -0700870 return kernel_sendpage(sock, page, offset, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871}
872
Jens Axboe9c55e012007-11-06 23:30:13 -0800873static ssize_t sock_splice_read(struct file *file, loff_t *ppos,
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700874 struct pipe_inode_info *pipe, size_t len,
Jens Axboe9c55e012007-11-06 23:30:13 -0800875 unsigned int flags)
876{
877 struct socket *sock = file->private_data;
878
Rémi Denis-Courmont997b37d2008-02-15 02:35:45 -0800879 if (unlikely(!sock->ops->splice_read))
880 return -EINVAL;
881
Jens Axboe9c55e012007-11-06 23:30:13 -0800882 return sock->ops->splice_read(sock, ppos, pipe, len, flags);
883}
884
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800885static struct sock_iocb *alloc_sock_iocb(struct kiocb *iocb,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700886 struct sock_iocb *siocb)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800887{
Kent Overstreetd29c4452013-03-18 11:09:26 -0700888 if (!is_sync_kiocb(iocb))
889 BUG();
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800890
891 siocb->kiocb = iocb;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800892 iocb->private = siocb;
893 return siocb;
894}
895
896static ssize_t do_sock_read(struct msghdr *msg, struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -0700897 struct file *file, const struct iovec *iov,
898 unsigned long nr_segs)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800899{
900 struct socket *sock = file->private_data;
901 size_t size = 0;
902 int i;
903
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700904 for (i = 0; i < nr_segs; i++)
905 size += iov[i].iov_len;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800906
907 msg->msg_name = NULL;
908 msg->msg_namelen = 0;
909 msg->msg_control = NULL;
910 msg->msg_controllen = 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700911 msg->msg_iov = (struct iovec *)iov;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800912 msg->msg_iovlen = nr_segs;
913 msg->msg_flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
914
915 return __sock_recvmsg(iocb, sock, msg, size, msg->msg_flags);
916}
917
Badari Pulavarty027445c2006-09-30 23:28:46 -0700918static ssize_t sock_aio_read(struct kiocb *iocb, const struct iovec *iov,
919 unsigned long nr_segs, loff_t pos)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800920{
921 struct sock_iocb siocb, *x;
922
923 if (pos != 0)
924 return -ESPIPE;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700925
Kent Overstreet73a70752013-05-09 15:03:42 -0700926 if (iocb->ki_nbytes == 0) /* Match SYS5 behaviour */
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800927 return 0;
928
Badari Pulavarty027445c2006-09-30 23:28:46 -0700929
930 x = alloc_sock_iocb(iocb, &siocb);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800931 if (!x)
932 return -ENOMEM;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700933 return do_sock_read(&x->async_msg, iocb, iocb->ki_filp, iov, nr_segs);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800934}
935
936static ssize_t do_sock_write(struct msghdr *msg, struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -0700937 struct file *file, const struct iovec *iov,
938 unsigned long nr_segs)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800939{
940 struct socket *sock = file->private_data;
941 size_t size = 0;
942 int i;
943
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700944 for (i = 0; i < nr_segs; i++)
945 size += iov[i].iov_len;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800946
947 msg->msg_name = NULL;
948 msg->msg_namelen = 0;
949 msg->msg_control = NULL;
950 msg->msg_controllen = 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700951 msg->msg_iov = (struct iovec *)iov;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800952 msg->msg_iovlen = nr_segs;
953 msg->msg_flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
954 if (sock->type == SOCK_SEQPACKET)
955 msg->msg_flags |= MSG_EOR;
956
957 return __sock_sendmsg(iocb, sock, msg, size);
958}
959
Badari Pulavarty027445c2006-09-30 23:28:46 -0700960static ssize_t sock_aio_write(struct kiocb *iocb, const struct iovec *iov,
961 unsigned long nr_segs, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962{
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800963 struct sock_iocb siocb, *x;
964
965 if (pos != 0)
966 return -ESPIPE;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700967
Badari Pulavarty027445c2006-09-30 23:28:46 -0700968 x = alloc_sock_iocb(iocb, &siocb);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800969 if (!x)
970 return -ENOMEM;
971
Badari Pulavarty027445c2006-09-30 23:28:46 -0700972 return do_sock_write(&x->async_msg, iocb, iocb->ki_filp, iov, nr_segs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973}
974
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975/*
976 * Atomic setting of ioctl hooks to avoid race
977 * with module unload.
978 */
979
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800980static DEFINE_MUTEX(br_ioctl_mutex);
Eric Dumazetc6d409c2010-06-03 20:03:40 -0700981static int (*br_ioctl_hook) (struct net *, unsigned int cmd, void __user *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
Eric W. Biederman881d9662007-09-17 11:56:21 -0700983void brioctl_set(int (*hook) (struct net *, unsigned int, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800985 mutex_lock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 br_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800987 mutex_unlock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988}
989EXPORT_SYMBOL(brioctl_set);
990
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800991static DEFINE_MUTEX(vlan_ioctl_mutex);
Eric W. Biederman881d9662007-09-17 11:56:21 -0700992static int (*vlan_ioctl_hook) (struct net *, void __user *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993
Eric W. Biederman881d9662007-09-17 11:56:21 -0700994void vlan_ioctl_set(int (*hook) (struct net *, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800996 mutex_lock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 vlan_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800998 mutex_unlock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999}
1000EXPORT_SYMBOL(vlan_ioctl_set);
1001
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001002static DEFINE_MUTEX(dlci_ioctl_mutex);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001003static int (*dlci_ioctl_hook) (unsigned int, void __user *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001005void dlci_ioctl_set(int (*hook) (unsigned int, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001007 mutex_lock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 dlci_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001009 mutex_unlock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010}
1011EXPORT_SYMBOL(dlci_ioctl_set);
1012
Arnd Bergmann6b960182009-11-06 23:10:54 -08001013static long sock_do_ioctl(struct net *net, struct socket *sock,
1014 unsigned int cmd, unsigned long arg)
1015{
1016 int err;
1017 void __user *argp = (void __user *)arg;
1018
1019 err = sock->ops->ioctl(sock, cmd, arg);
1020
1021 /*
1022 * If this ioctl is unknown try to hand it down
1023 * to the NIC driver.
1024 */
1025 if (err == -ENOIOCTLCMD)
1026 err = dev_ioctl(net, cmd, argp);
1027
1028 return err;
1029}
1030
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031/*
1032 * With an ioctl, arg may well be a user mode pointer, but we don't know
1033 * what to do with it - that's up to the protocol still.
1034 */
1035
1036static long sock_ioctl(struct file *file, unsigned cmd, unsigned long arg)
1037{
1038 struct socket *sock;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001039 struct sock *sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 void __user *argp = (void __user *)arg;
1041 int pid, err;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001042 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043
Eric Dumazetb69aee02005-09-06 14:42:45 -07001044 sock = file->private_data;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001045 sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001046 net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 if (cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15)) {
Eric W. Biederman881d9662007-09-17 11:56:21 -07001048 err = dev_ioctl(net, cmd, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 } else
Johannes Berg3d23e342009-09-29 23:27:28 +02001050#ifdef CONFIG_WEXT_CORE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 if (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST) {
Eric W. Biederman881d9662007-09-17 11:56:21 -07001052 err = dev_ioctl(net, cmd, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 } else
Johannes Berg3d23e342009-09-29 23:27:28 +02001054#endif
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001055 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 case FIOSETOWN:
1057 case SIOCSPGRP:
1058 err = -EFAULT;
1059 if (get_user(pid, (int __user *)argp))
1060 break;
1061 err = f_setown(sock->file, pid, 1);
1062 break;
1063 case FIOGETOWN:
1064 case SIOCGPGRP:
Eric W. Biederman609d7fa2006-10-02 02:17:15 -07001065 err = put_user(f_getown(sock->file),
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001066 (int __user *)argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 break;
1068 case SIOCGIFBR:
1069 case SIOCSIFBR:
1070 case SIOCBRADDBR:
1071 case SIOCBRDELBR:
1072 err = -ENOPKG;
1073 if (!br_ioctl_hook)
1074 request_module("bridge");
1075
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001076 mutex_lock(&br_ioctl_mutex);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001077 if (br_ioctl_hook)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001078 err = br_ioctl_hook(net, cmd, argp);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001079 mutex_unlock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 break;
1081 case SIOCGIFVLAN:
1082 case SIOCSIFVLAN:
1083 err = -ENOPKG;
1084 if (!vlan_ioctl_hook)
1085 request_module("8021q");
1086
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001087 mutex_lock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 if (vlan_ioctl_hook)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001089 err = vlan_ioctl_hook(net, argp);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001090 mutex_unlock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 case SIOCADDDLCI:
1093 case SIOCDELDLCI:
1094 err = -ENOPKG;
1095 if (!dlci_ioctl_hook)
1096 request_module("dlci");
1097
Pavel Emelyanov7512cbf2008-03-21 15:58:52 -07001098 mutex_lock(&dlci_ioctl_mutex);
1099 if (dlci_ioctl_hook)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 err = dlci_ioctl_hook(cmd, argp);
Pavel Emelyanov7512cbf2008-03-21 15:58:52 -07001101 mutex_unlock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 break;
1103 default:
Arnd Bergmann6b960182009-11-06 23:10:54 -08001104 err = sock_do_ioctl(net, sock, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001106 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 return err;
1108}
1109
1110int sock_create_lite(int family, int type, int protocol, struct socket **res)
1111{
1112 int err;
1113 struct socket *sock = NULL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001114
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 err = security_socket_create(family, type, protocol, 1);
1116 if (err)
1117 goto out;
1118
1119 sock = sock_alloc();
1120 if (!sock) {
1121 err = -ENOMEM;
1122 goto out;
1123 }
1124
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 sock->type = type;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001126 err = security_socket_post_create(sock, family, type, protocol, 1);
1127 if (err)
1128 goto out_release;
1129
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130out:
1131 *res = sock;
1132 return err;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001133out_release:
1134 sock_release(sock);
1135 sock = NULL;
1136 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001138EXPORT_SYMBOL(sock_create_lite);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
1140/* No kernel lock held - perfect */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001141static unsigned int sock_poll(struct file *file, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142{
Eliezer Tamircbf55002013-07-08 16:20:34 +03001143 unsigned int busy_flag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 struct socket *sock;
1145
1146 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001147 * We can't return errors to poll, so it's either yes or no.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 */
Eric Dumazetb69aee02005-09-06 14:42:45 -07001149 sock = file->private_data;
Eliezer Tamir2d48d672013-06-24 10:28:03 +03001150
Eliezer Tamircbf55002013-07-08 16:20:34 +03001151 if (sk_can_busy_loop(sock->sk)) {
Eliezer Tamir2d48d672013-06-24 10:28:03 +03001152 /* this socket can poll_ll so tell the system call */
Eliezer Tamircbf55002013-07-08 16:20:34 +03001153 busy_flag = POLL_BUSY_LOOP;
Eliezer Tamir2d48d672013-06-24 10:28:03 +03001154
1155 /* once, only if requested by syscall */
Eliezer Tamircbf55002013-07-08 16:20:34 +03001156 if (wait && (wait->_key & POLL_BUSY_LOOP))
1157 sk_busy_loop(sock->sk, 1);
Eliezer Tamir2d48d672013-06-24 10:28:03 +03001158 }
1159
Eliezer Tamircbf55002013-07-08 16:20:34 +03001160 return busy_flag | sock->ops->poll(file, sock, wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161}
1162
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001163static int sock_mmap(struct file *file, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164{
Eric Dumazetb69aee02005-09-06 14:42:45 -07001165 struct socket *sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166
1167 return sock->ops->mmap(file, sock, vma);
1168}
1169
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001170static int sock_close(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 sock_release(SOCKET_I(inode));
1173 return 0;
1174}
1175
1176/*
1177 * Update the socket async list
1178 *
1179 * Fasync_list locking strategy.
1180 *
1181 * 1. fasync_list is modified only under process context socket lock
1182 * i.e. under semaphore.
1183 * 2. fasync_list is used under read_lock(&sk->sk_callback_lock)
Eric Dumazet989a2972010-04-14 09:55:35 +00001184 * or under socket lock
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 */
1186
1187static int sock_fasync(int fd, struct file *filp, int on)
1188{
Eric Dumazet989a2972010-04-14 09:55:35 +00001189 struct socket *sock = filp->private_data;
1190 struct sock *sk = sock->sk;
Eric Dumazeteaefd112011-02-18 03:26:36 +00001191 struct socket_wq *wq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
Eric Dumazet989a2972010-04-14 09:55:35 +00001193 if (sk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195
1196 lock_sock(sk);
Eric Dumazeteaefd112011-02-18 03:26:36 +00001197 wq = rcu_dereference_protected(sock->wq, sock_owned_by_user(sk));
1198 fasync_helper(fd, filp, on, &wq->fasync_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
Eric Dumazeteaefd112011-02-18 03:26:36 +00001200 if (!wq->fasync_list)
Eric Dumazet989a2972010-04-14 09:55:35 +00001201 sock_reset_flag(sk, SOCK_FASYNC);
Jonathan Corbet76398422009-02-01 14:26:59 -07001202 else
Eric Dumazetbcdce712009-10-06 17:28:29 -07001203 sock_set_flag(sk, SOCK_FASYNC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
Eric Dumazet989a2972010-04-14 09:55:35 +00001205 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 return 0;
1207}
1208
Eric Dumazet43815482010-04-29 11:01:49 +00001209/* This function may be called only under socket lock or callback_lock or rcu_lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210
1211int sock_wake_async(struct socket *sock, int how, int band)
1212{
Eric Dumazet43815482010-04-29 11:01:49 +00001213 struct socket_wq *wq;
1214
1215 if (!sock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 return -1;
Eric Dumazet43815482010-04-29 11:01:49 +00001217 rcu_read_lock();
1218 wq = rcu_dereference(sock->wq);
1219 if (!wq || !wq->fasync_list) {
1220 rcu_read_unlock();
1221 return -1;
1222 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001223 switch (how) {
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001224 case SOCK_WAKE_WAITD:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 if (test_bit(SOCK_ASYNC_WAITDATA, &sock->flags))
1226 break;
1227 goto call_kill;
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001228 case SOCK_WAKE_SPACE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 if (!test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sock->flags))
1230 break;
1231 /* fall through */
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001232 case SOCK_WAKE_IO:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001233call_kill:
Eric Dumazet43815482010-04-29 11:01:49 +00001234 kill_fasync(&wq->fasync_list, SIGIO, band);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 break;
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001236 case SOCK_WAKE_URG:
Eric Dumazet43815482010-04-29 11:01:49 +00001237 kill_fasync(&wq->fasync_list, SIGURG, band);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 }
Eric Dumazet43815482010-04-29 11:01:49 +00001239 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 return 0;
1241}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001242EXPORT_SYMBOL(sock_wake_async);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243
Pavel Emelyanov721db932010-09-29 16:06:32 +04001244int __sock_create(struct net *net, int family, int type, int protocol,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001245 struct socket **res, int kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246{
1247 int err;
1248 struct socket *sock;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001249 const struct net_proto_family *pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250
1251 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001252 * Check protocol is in range
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 */
1254 if (family < 0 || family >= NPROTO)
1255 return -EAFNOSUPPORT;
1256 if (type < 0 || type >= SOCK_MAX)
1257 return -EINVAL;
1258
1259 /* Compatibility.
1260
1261 This uglymoron is moved from INET layer to here to avoid
1262 deadlock in module load.
1263 */
1264 if (family == PF_INET && type == SOCK_PACKET) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001265 static int warned;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 if (!warned) {
1267 warned = 1;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001268 printk(KERN_INFO "%s uses obsolete (PF_INET,SOCK_PACKET)\n",
1269 current->comm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 }
1271 family = PF_PACKET;
1272 }
1273
1274 err = security_socket_create(family, type, protocol, kern);
1275 if (err)
1276 return err;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001277
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001278 /*
1279 * Allocate the socket and allow the family to set things up. if
1280 * the protocol is 0, the family is instructed to select an appropriate
1281 * default.
1282 */
1283 sock = sock_alloc();
1284 if (!sock) {
Joe Perchese87cc472012-05-13 21:56:26 +00001285 net_warn_ratelimited("socket: no more sockets\n");
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001286 return -ENFILE; /* Not exactly a match, but its the
1287 closest posix thing */
1288 }
1289
1290 sock->type = type;
1291
Johannes Berg95a5afc2008-10-16 15:24:51 -07001292#ifdef CONFIG_MODULES
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001293 /* Attempt to load a protocol module if the find failed.
1294 *
1295 * 12/09/1996 Marcin: But! this makes REALLY only sense, if the user
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 * requested real, full-featured networking support upon configuration.
1297 * Otherwise module support will break!
1298 */
Eric Dumazet190683a2010-11-10 10:50:44 +00001299 if (rcu_access_pointer(net_families[family]) == NULL)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001300 request_module("net-pf-%d", family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301#endif
1302
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001303 rcu_read_lock();
1304 pf = rcu_dereference(net_families[family]);
1305 err = -EAFNOSUPPORT;
1306 if (!pf)
1307 goto out_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
1309 /*
1310 * We will call the ->create function, that possibly is in a loadable
1311 * module, so we have to bump that loadable module refcnt first.
1312 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001313 if (!try_module_get(pf->owner))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 goto out_release;
1315
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001316 /* Now protected by module ref count */
1317 rcu_read_unlock();
1318
Eric Paris3f378b62009-11-05 22:18:14 -08001319 err = pf->create(net, sock, protocol, kern);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001320 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 goto out_module_put;
Frank Filza79af592005-09-27 15:23:38 -07001322
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 /*
1324 * Now to bump the refcnt of the [loadable] module that owns this
1325 * socket at sock_release time we decrement its refcnt.
1326 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001327 if (!try_module_get(sock->ops->owner))
1328 goto out_module_busy;
1329
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 /*
1331 * Now that we're done with the ->create function, the [loadable]
1332 * module can have its refcnt decremented
1333 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001334 module_put(pf->owner);
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001335 err = security_socket_post_create(sock, family, type, protocol, kern);
1336 if (err)
Herbert Xu3b185522007-08-15 14:46:02 -07001337 goto out_sock_release;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001338 *res = sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001340 return 0;
1341
1342out_module_busy:
1343 err = -EAFNOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344out_module_put:
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001345 sock->ops = NULL;
1346 module_put(pf->owner);
1347out_sock_release:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 sock_release(sock);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001349 return err;
1350
1351out_release:
1352 rcu_read_unlock();
1353 goto out_sock_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354}
Pavel Emelyanov721db932010-09-29 16:06:32 +04001355EXPORT_SYMBOL(__sock_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
1357int sock_create(int family, int type, int protocol, struct socket **res)
1358{
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001359 return __sock_create(current->nsproxy->net_ns, family, type, protocol, res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001361EXPORT_SYMBOL(sock_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362
1363int sock_create_kern(int family, int type, int protocol, struct socket **res)
1364{
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001365 return __sock_create(&init_net, family, type, protocol, res, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001367EXPORT_SYMBOL(sock_create_kern);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001369SYSCALL_DEFINE3(socket, int, family, int, type, int, protocol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370{
1371 int retval;
1372 struct socket *sock;
Ulrich Dreppera677a032008-07-23 21:29:17 -07001373 int flags;
1374
Ulrich Dreppere38b36f2008-07-23 21:29:42 -07001375 /* Check the SOCK_* constants for consistency. */
1376 BUILD_BUG_ON(SOCK_CLOEXEC != O_CLOEXEC);
1377 BUILD_BUG_ON((SOCK_MAX | SOCK_TYPE_MASK) != SOCK_TYPE_MASK);
1378 BUILD_BUG_ON(SOCK_CLOEXEC & SOCK_TYPE_MASK);
1379 BUILD_BUG_ON(SOCK_NONBLOCK & SOCK_TYPE_MASK);
1380
Ulrich Dreppera677a032008-07-23 21:29:17 -07001381 flags = type & ~SOCK_TYPE_MASK;
Ulrich Drepper77d27202008-07-23 21:29:35 -07001382 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Dreppera677a032008-07-23 21:29:17 -07001383 return -EINVAL;
1384 type &= SOCK_TYPE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001386 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1387 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1388
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 retval = sock_create(family, type, protocol, &sock);
1390 if (retval < 0)
1391 goto out;
1392
Ulrich Drepper77d27202008-07-23 21:29:35 -07001393 retval = sock_map_fd(sock, flags & (O_CLOEXEC | O_NONBLOCK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 if (retval < 0)
1395 goto out_release;
1396
1397out:
1398 /* It may be already another descriptor 8) Not kernel problem. */
1399 return retval;
1400
1401out_release:
1402 sock_release(sock);
1403 return retval;
1404}
1405
1406/*
1407 * Create a pair of connected sockets.
1408 */
1409
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001410SYSCALL_DEFINE4(socketpair, int, family, int, type, int, protocol,
1411 int __user *, usockvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412{
1413 struct socket *sock1, *sock2;
1414 int fd1, fd2, err;
Al Virodb349502007-02-07 01:48:00 -05001415 struct file *newfile1, *newfile2;
Ulrich Dreppera677a032008-07-23 21:29:17 -07001416 int flags;
1417
1418 flags = type & ~SOCK_TYPE_MASK;
Ulrich Drepper77d27202008-07-23 21:29:35 -07001419 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Dreppera677a032008-07-23 21:29:17 -07001420 return -EINVAL;
1421 type &= SOCK_TYPE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001423 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1424 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1425
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 /*
1427 * Obtain the first socket and check if the underlying protocol
1428 * supports the socketpair call.
1429 */
1430
1431 err = sock_create(family, type, protocol, &sock1);
1432 if (err < 0)
1433 goto out;
1434
1435 err = sock_create(family, type, protocol, &sock2);
1436 if (err < 0)
1437 goto out_release_1;
1438
1439 err = sock1->ops->socketpair(sock1, sock2);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001440 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 goto out_release_both;
1442
Al Viro28407632012-08-17 23:54:15 -04001443 fd1 = get_unused_fd_flags(flags);
David S. Millerbf3c23d2007-10-29 21:54:02 -07001444 if (unlikely(fd1 < 0)) {
1445 err = fd1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 goto out_release_both;
David S. Millerbf3c23d2007-10-29 21:54:02 -07001447 }
Yann Droneaudd73aa282013-12-09 22:42:20 +01001448
Al Viro28407632012-08-17 23:54:15 -04001449 fd2 = get_unused_fd_flags(flags);
Al Viro198de4d2009-08-05 19:29:23 +04001450 if (unlikely(fd2 < 0)) {
1451 err = fd2;
Yann Droneaudd73aa282013-12-09 22:42:20 +01001452 goto out_put_unused_1;
Al Viro28407632012-08-17 23:54:15 -04001453 }
1454
Linus Torvaldsaab174f2012-10-02 20:25:04 -07001455 newfile1 = sock_alloc_file(sock1, flags, NULL);
Al Viro28407632012-08-17 23:54:15 -04001456 if (unlikely(IS_ERR(newfile1))) {
1457 err = PTR_ERR(newfile1);
Yann Droneaudd73aa282013-12-09 22:42:20 +01001458 goto out_put_unused_both;
Al Viro28407632012-08-17 23:54:15 -04001459 }
1460
Linus Torvaldsaab174f2012-10-02 20:25:04 -07001461 newfile2 = sock_alloc_file(sock2, flags, NULL);
Al Viro28407632012-08-17 23:54:15 -04001462 if (IS_ERR(newfile2)) {
1463 err = PTR_ERR(newfile2);
Yann Droneaudd73aa282013-12-09 22:42:20 +01001464 goto out_fput_1;
Al Virodb349502007-02-07 01:48:00 -05001465 }
1466
Yann Droneaudd73aa282013-12-09 22:42:20 +01001467 err = put_user(fd1, &usockvec[0]);
1468 if (err)
1469 goto out_fput_both;
1470
1471 err = put_user(fd2, &usockvec[1]);
1472 if (err)
1473 goto out_fput_both;
1474
Al Viro157cf642008-12-14 04:57:47 -05001475 audit_fd_pair(fd1, fd2);
Yann Droneaudd73aa282013-12-09 22:42:20 +01001476
Al Virodb349502007-02-07 01:48:00 -05001477 fd_install(fd1, newfile1);
1478 fd_install(fd2, newfile2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 /* fd1 and fd2 may be already another descriptors.
1480 * Not kernel problem.
1481 */
1482
Yann Droneaudd73aa282013-12-09 22:42:20 +01001483 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484
Yann Droneaudd73aa282013-12-09 22:42:20 +01001485out_fput_both:
1486 fput(newfile2);
1487 fput(newfile1);
1488 put_unused_fd(fd2);
1489 put_unused_fd(fd1);
1490 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491
Yann Droneaudd73aa282013-12-09 22:42:20 +01001492out_fput_1:
1493 fput(newfile1);
1494 put_unused_fd(fd2);
1495 put_unused_fd(fd1);
1496 sock_release(sock2);
1497 goto out;
1498
1499out_put_unused_both:
1500 put_unused_fd(fd2);
1501out_put_unused_1:
1502 put_unused_fd(fd1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503out_release_both:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001504 sock_release(sock2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505out_release_1:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001506 sock_release(sock1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507out:
1508 return err;
1509}
1510
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511/*
1512 * Bind a name to a socket. Nothing much to do here since it's
1513 * the protocol's responsibility to handle the local address.
1514 *
1515 * We move the socket address to kernel space before we call
1516 * the protocol layer (having also checked the address is ok).
1517 */
1518
Heiko Carstens20f37032009-01-14 14:14:23 +01001519SYSCALL_DEFINE3(bind, int, fd, struct sockaddr __user *, umyaddr, int, addrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520{
1521 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001522 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001523 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001525 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001526 if (sock) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001527 err = move_addr_to_kernel(umyaddr, addrlen, &address);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001528 if (err >= 0) {
1529 err = security_socket_bind(sock,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001530 (struct sockaddr *)&address,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001531 addrlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001532 if (!err)
1533 err = sock->ops->bind(sock,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001534 (struct sockaddr *)
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001535 &address, addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 }
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001537 fput_light(sock->file, fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001538 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 return err;
1540}
1541
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542/*
1543 * Perform a listen. Basically, we allow the protocol to do anything
1544 * necessary for a listen, and if that works, we mark the socket as
1545 * ready for listening.
1546 */
1547
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001548SYSCALL_DEFINE2(listen, int, fd, int, backlog)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549{
1550 struct socket *sock;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001551 int err, fput_needed;
Pavel Emelyanovb8e1f9b2007-12-08 00:12:33 -08001552 int somaxconn;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001553
1554 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1555 if (sock) {
Pavel Emelyanov8efa6e92008-03-31 19:41:14 -07001556 somaxconn = sock_net(sock->sk)->core.sysctl_somaxconn;
Eric Dumazet95c96172012-04-15 05:58:06 +00001557 if ((unsigned int)backlog > somaxconn)
Pavel Emelyanovb8e1f9b2007-12-08 00:12:33 -08001558 backlog = somaxconn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559
1560 err = security_socket_listen(sock, backlog);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001561 if (!err)
1562 err = sock->ops->listen(sock, backlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001564 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 }
1566 return err;
1567}
1568
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569/*
1570 * For accept, we attempt to create a new socket, set up the link
1571 * with the client, wake up the client, then return the new
1572 * connected fd. We collect the address of the connector in kernel
1573 * space and move it to user at the very end. This is unclean because
1574 * we open the socket then return an error.
1575 *
1576 * 1003.1g adds the ability to recvmsg() to query connection pending
1577 * status to recvmsg. We need to add that support in a way thats
1578 * clean when we restucture accept also.
1579 */
1580
Heiko Carstens20f37032009-01-14 14:14:23 +01001581SYSCALL_DEFINE4(accept4, int, fd, struct sockaddr __user *, upeer_sockaddr,
1582 int __user *, upeer_addrlen, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583{
1584 struct socket *sock, *newsock;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001585 struct file *newfile;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001586 int err, len, newfd, fput_needed;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001587 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588
Ulrich Drepper77d27202008-07-23 21:29:35 -07001589 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001590 return -EINVAL;
1591
1592 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1593 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1594
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001595 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 if (!sock)
1597 goto out;
1598
1599 err = -ENFILE;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07001600 newsock = sock_alloc();
1601 if (!newsock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 goto out_put;
1603
1604 newsock->type = sock->type;
1605 newsock->ops = sock->ops;
1606
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 /*
1608 * We don't need try_module_get here, as the listening socket (sock)
1609 * has the protocol module (sock->ops->owner) held.
1610 */
1611 __module_get(newsock->ops->owner);
1612
Al Viro28407632012-08-17 23:54:15 -04001613 newfd = get_unused_fd_flags(flags);
David S. Miller39d8c1b2006-03-20 17:13:49 -08001614 if (unlikely(newfd < 0)) {
1615 err = newfd;
David S. Miller9a1875e2006-04-01 12:48:36 -08001616 sock_release(newsock);
1617 goto out_put;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001618 }
Linus Torvaldsaab174f2012-10-02 20:25:04 -07001619 newfile = sock_alloc_file(newsock, flags, sock->sk->sk_prot_creator->name);
Al Viro28407632012-08-17 23:54:15 -04001620 if (unlikely(IS_ERR(newfile))) {
1621 err = PTR_ERR(newfile);
1622 put_unused_fd(newfd);
1623 sock_release(newsock);
1624 goto out_put;
1625 }
David S. Miller39d8c1b2006-03-20 17:13:49 -08001626
Frank Filza79af592005-09-27 15:23:38 -07001627 err = security_socket_accept(sock, newsock);
1628 if (err)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001629 goto out_fd;
Frank Filza79af592005-09-27 15:23:38 -07001630
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 err = sock->ops->accept(sock, newsock, sock->file->f_flags);
1632 if (err < 0)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001633 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
1635 if (upeer_sockaddr) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001636 if (newsock->ops->getname(newsock, (struct sockaddr *)&address,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001637 &len, 2) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 err = -ECONNABORTED;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001639 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 }
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001641 err = move_addr_to_user(&address,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001642 len, upeer_sockaddr, upeer_addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 if (err < 0)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001644 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 }
1646
1647 /* File flags are not inherited via accept() unlike another OSes. */
1648
David S. Miller39d8c1b2006-03-20 17:13:49 -08001649 fd_install(newfd, newfile);
1650 err = newfd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001653 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654out:
1655 return err;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001656out_fd:
David S. Miller9606a212006-04-01 01:00:14 -08001657 fput(newfile);
David S. Miller39d8c1b2006-03-20 17:13:49 -08001658 put_unused_fd(newfd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 goto out_put;
1660}
1661
Heiko Carstens20f37032009-01-14 14:14:23 +01001662SYSCALL_DEFINE3(accept, int, fd, struct sockaddr __user *, upeer_sockaddr,
1663 int __user *, upeer_addrlen)
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001664{
Ulrich Drepperde11def2008-11-19 15:36:14 -08001665 return sys_accept4(fd, upeer_sockaddr, upeer_addrlen, 0);
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001666}
1667
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668/*
1669 * Attempt to connect to a socket with the server address. The address
1670 * is in user space so we verify it is OK and move it to kernel space.
1671 *
1672 * For 1003.1g we need to add clean support for a bind to AF_UNSPEC to
1673 * break bindings
1674 *
1675 * NOTE: 1003.1g draft 6.3 is broken with respect to AX.25/NetROM and
1676 * other SEQPACKET protocols that take time to connect() as it doesn't
1677 * include the -EINPROGRESS status for such sockets.
1678 */
1679
Heiko Carstens20f37032009-01-14 14:14:23 +01001680SYSCALL_DEFINE3(connect, int, fd, struct sockaddr __user *, uservaddr,
1681 int, addrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682{
1683 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001684 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001685 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001687 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 if (!sock)
1689 goto out;
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001690 err = move_addr_to_kernel(uservaddr, addrlen, &address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 if (err < 0)
1692 goto out_put;
1693
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001694 err =
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001695 security_socket_connect(sock, (struct sockaddr *)&address, addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 if (err)
1697 goto out_put;
1698
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001699 err = sock->ops->connect(sock, (struct sockaddr *)&address, addrlen,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 sock->file->f_flags);
1701out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001702 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703out:
1704 return err;
1705}
1706
1707/*
1708 * Get the local address ('name') of a socket object. Move the obtained
1709 * name to user space.
1710 */
1711
Heiko Carstens20f37032009-01-14 14:14:23 +01001712SYSCALL_DEFINE3(getsockname, int, fd, struct sockaddr __user *, usockaddr,
1713 int __user *, usockaddr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714{
1715 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001716 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001717 int len, err, fput_needed;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001718
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001719 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 if (!sock)
1721 goto out;
1722
1723 err = security_socket_getsockname(sock);
1724 if (err)
1725 goto out_put;
1726
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001727 err = sock->ops->getname(sock, (struct sockaddr *)&address, &len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 if (err)
1729 goto out_put;
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001730 err = move_addr_to_user(&address, len, usockaddr, usockaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731
1732out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001733 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734out:
1735 return err;
1736}
1737
1738/*
1739 * Get the remote address ('name') of a socket object. Move the obtained
1740 * name to user space.
1741 */
1742
Heiko Carstens20f37032009-01-14 14:14:23 +01001743SYSCALL_DEFINE3(getpeername, int, fd, struct sockaddr __user *, usockaddr,
1744 int __user *, usockaddr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745{
1746 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001747 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001748 int len, err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001750 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1751 if (sock != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 err = security_socket_getpeername(sock);
1753 if (err) {
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001754 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 return err;
1756 }
1757
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001758 err =
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001759 sock->ops->getname(sock, (struct sockaddr *)&address, &len,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001760 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 if (!err)
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001762 err = move_addr_to_user(&address, len, usockaddr,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001763 usockaddr_len);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001764 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 }
1766 return err;
1767}
1768
1769/*
1770 * Send a datagram to a given address. We move the address into kernel
1771 * space and check the user space data area is readable before invoking
1772 * the protocol.
1773 */
1774
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001775SYSCALL_DEFINE6(sendto, int, fd, void __user *, buff, size_t, len,
Eric Dumazet95c96172012-04-15 05:58:06 +00001776 unsigned int, flags, struct sockaddr __user *, addr,
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001777 int, addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778{
1779 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001780 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 int err;
1782 struct msghdr msg;
1783 struct iovec iov;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001784 int fput_needed;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001785
Linus Torvalds253eacc2010-10-30 16:43:10 -07001786 if (len > INT_MAX)
1787 len = INT_MAX;
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001788 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1789 if (!sock)
David S. Miller4387ff72007-02-08 15:06:08 -08001790 goto out;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001791
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001792 iov.iov_base = buff;
1793 iov.iov_len = len;
1794 msg.msg_name = NULL;
1795 msg.msg_iov = &iov;
1796 msg.msg_iovlen = 1;
1797 msg.msg_control = NULL;
1798 msg.msg_controllen = 0;
1799 msg.msg_namelen = 0;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001800 if (addr) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001801 err = move_addr_to_kernel(addr, addr_len, &address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 if (err < 0)
1803 goto out_put;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001804 msg.msg_name = (struct sockaddr *)&address;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001805 msg.msg_namelen = addr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 }
1807 if (sock->file->f_flags & O_NONBLOCK)
1808 flags |= MSG_DONTWAIT;
1809 msg.msg_flags = flags;
1810 err = sock_sendmsg(sock, &msg, len);
1811
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001812out_put:
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001813 fput_light(sock->file, fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08001814out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 return err;
1816}
1817
1818/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001819 * Send a datagram down a socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 */
1821
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001822SYSCALL_DEFINE4(send, int, fd, void __user *, buff, size_t, len,
Eric Dumazet95c96172012-04-15 05:58:06 +00001823 unsigned int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824{
1825 return sys_sendto(fd, buff, len, flags, NULL, 0);
1826}
1827
1828/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001829 * Receive a frame from the socket and optionally record the address of the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 * sender. We verify the buffers are writable and if needed move the
1831 * sender address from kernel to user space.
1832 */
1833
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001834SYSCALL_DEFINE6(recvfrom, int, fd, void __user *, ubuf, size_t, size,
Eric Dumazet95c96172012-04-15 05:58:06 +00001835 unsigned int, flags, struct sockaddr __user *, addr,
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001836 int __user *, addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837{
1838 struct socket *sock;
1839 struct iovec iov;
1840 struct msghdr msg;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001841 struct sockaddr_storage address;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001842 int err, err2;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001843 int fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844
Linus Torvalds253eacc2010-10-30 16:43:10 -07001845 if (size > INT_MAX)
1846 size = INT_MAX;
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001847 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 if (!sock)
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001849 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001851 msg.msg_control = NULL;
1852 msg.msg_controllen = 0;
1853 msg.msg_iovlen = 1;
1854 msg.msg_iov = &iov;
1855 iov.iov_len = size;
1856 iov.iov_base = ubuf;
Hannes Frederic Sowaf3d33422013-11-21 03:14:22 +01001857 /* Save some cycles and don't copy the address if not needed */
1858 msg.msg_name = addr ? (struct sockaddr *)&address : NULL;
1859 /* We assume all kernel code knows the size of sockaddr_storage */
1860 msg.msg_namelen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 if (sock->file->f_flags & O_NONBLOCK)
1862 flags |= MSG_DONTWAIT;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001863 err = sock_recvmsg(sock, &msg, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001865 if (err >= 0 && addr != NULL) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00001866 err2 = move_addr_to_user(&address,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001867 msg.msg_namelen, addr, addr_len);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001868 if (err2 < 0)
1869 err = err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 }
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001871
1872 fput_light(sock->file, fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08001873out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 return err;
1875}
1876
1877/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001878 * Receive a datagram from a socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 */
1880
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001881asmlinkage long sys_recv(int fd, void __user *ubuf, size_t size,
Eric Dumazet95c96172012-04-15 05:58:06 +00001882 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883{
1884 return sys_recvfrom(fd, ubuf, size, flags, NULL, NULL);
1885}
1886
1887/*
1888 * Set a socket option. Because we don't know the option lengths we have
1889 * to pass the user mode parameter for the protocols to sort out.
1890 */
1891
Heiko Carstens20f37032009-01-14 14:14:23 +01001892SYSCALL_DEFINE5(setsockopt, int, fd, int, level, int, optname,
1893 char __user *, optval, int, optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001895 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 struct socket *sock;
1897
1898 if (optlen < 0)
1899 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001900
1901 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1902 if (sock != NULL) {
1903 err = security_socket_setsockopt(sock, level, optname);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001904 if (err)
1905 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906
1907 if (level == SOL_SOCKET)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001908 err =
1909 sock_setsockopt(sock, level, optname, optval,
1910 optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 else
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001912 err =
1913 sock->ops->setsockopt(sock, level, optname, optval,
1914 optlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001915out_put:
1916 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 }
1918 return err;
1919}
1920
1921/*
1922 * Get a socket option. Because we don't know the option lengths we have
1923 * to pass a user mode parameter for the protocols to sort out.
1924 */
1925
Heiko Carstens20f37032009-01-14 14:14:23 +01001926SYSCALL_DEFINE5(getsockopt, int, fd, int, level, int, optname,
1927 char __user *, optval, int __user *, optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001929 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 struct socket *sock;
1931
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001932 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1933 if (sock != NULL) {
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001934 err = security_socket_getsockopt(sock, level, optname);
1935 if (err)
1936 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937
1938 if (level == SOL_SOCKET)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001939 err =
1940 sock_getsockopt(sock, level, optname, optval,
1941 optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 else
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001943 err =
1944 sock->ops->getsockopt(sock, level, optname, optval,
1945 optlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001946out_put:
1947 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 }
1949 return err;
1950}
1951
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952/*
1953 * Shutdown a socket.
1954 */
1955
Heiko Carstens754fe8d2009-01-14 14:14:09 +01001956SYSCALL_DEFINE2(shutdown, int, fd, int, how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001958 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 struct socket *sock;
1960
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001961 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1962 if (sock != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 err = security_socket_shutdown(sock, how);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001964 if (!err)
1965 err = sock->ops->shutdown(sock, how);
1966 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 }
1968 return err;
1969}
1970
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001971/* A couple of helpful macros for getting the address of the 32/64 bit
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 * fields which are the same type (int / unsigned) on our platforms.
1973 */
1974#define COMPAT_MSG(msg, member) ((MSG_CMSG_COMPAT & flags) ? &msg##_compat->member : &msg->member)
1975#define COMPAT_NAMELEN(msg) COMPAT_MSG(msg, msg_namelen)
1976#define COMPAT_FLAGS(msg) COMPAT_MSG(msg, msg_flags)
1977
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00001978struct used_address {
1979 struct sockaddr_storage name;
1980 unsigned int name_len;
1981};
1982
Dan Carpenter1661bf32013-10-03 00:27:20 +03001983static int copy_msghdr_from_user(struct msghdr *kmsg,
1984 struct msghdr __user *umsg)
1985{
1986 if (copy_from_user(kmsg, umsg, sizeof(struct msghdr)))
1987 return -EFAULT;
1988 if (kmsg->msg_namelen > sizeof(struct sockaddr_storage))
Dan Carpenterdb31c552013-11-27 15:40:21 +03001989 kmsg->msg_namelen = sizeof(struct sockaddr_storage);
Dan Carpenter1661bf32013-10-03 00:27:20 +03001990 return 0;
1991}
1992
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00001993static int ___sys_sendmsg(struct socket *sock, struct msghdr __user *msg,
Eric Dumazet95c96172012-04-15 05:58:06 +00001994 struct msghdr *msg_sys, unsigned int flags,
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00001995 struct used_address *used_address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001997 struct compat_msghdr __user *msg_compat =
1998 (struct compat_msghdr __user *)msg;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001999 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 struct iovec iovstack[UIO_FASTIOV], *iov = iovstack;
Alex Williamsonb9d717a2005-09-26 14:28:02 -07002001 unsigned char ctl[sizeof(struct cmsghdr) + 20]
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002002 __attribute__ ((aligned(sizeof(__kernel_size_t))));
2003 /* 20 is size of ipv6_pktinfo */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 unsigned char *ctl_buf = ctl;
Eric Dumazeta74e9102012-04-20 20:04:01 +02002005 int err, ctl_len, total_len;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002006
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 err = -EFAULT;
2008 if (MSG_CMSG_COMPAT & flags) {
Anton Blanchard228e5482011-05-02 20:21:35 +00002009 if (get_compat_msghdr(msg_sys, msg_compat))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 return -EFAULT;
Dan Carpenter1661bf32013-10-03 00:27:20 +03002011 } else {
2012 err = copy_msghdr_from_user(msg_sys, msg);
2013 if (err)
2014 return err;
2015 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016
Anton Blanchard228e5482011-05-02 20:21:35 +00002017 if (msg_sys->msg_iovlen > UIO_FASTIOV) {
Eric Dumazeta74e9102012-04-20 20:04:01 +02002018 err = -EMSGSIZE;
2019 if (msg_sys->msg_iovlen > UIO_MAXIOV)
2020 goto out;
2021 err = -ENOMEM;
2022 iov = kmalloc(msg_sys->msg_iovlen * sizeof(struct iovec),
2023 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 if (!iov)
Anton Blanchard228e5482011-05-02 20:21:35 +00002025 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 }
2027
2028 /* This will also move the address data into kernel space */
2029 if (MSG_CMSG_COMPAT & flags) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00002030 err = verify_compat_iovec(msg_sys, iov, &address, VERIFY_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 } else
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00002032 err = verify_iovec(msg_sys, iov, &address, VERIFY_READ);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002033 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 goto out_freeiov;
2035 total_len = err;
2036
2037 err = -ENOBUFS;
2038
Anton Blanchard228e5482011-05-02 20:21:35 +00002039 if (msg_sys->msg_controllen > INT_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 goto out_freeiov;
Anton Blanchard228e5482011-05-02 20:21:35 +00002041 ctl_len = msg_sys->msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 if ((MSG_CMSG_COMPAT & flags) && ctl_len) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002043 err =
Anton Blanchard228e5482011-05-02 20:21:35 +00002044 cmsghdr_from_user_compat_to_kern(msg_sys, sock->sk, ctl,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002045 sizeof(ctl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 if (err)
2047 goto out_freeiov;
Anton Blanchard228e5482011-05-02 20:21:35 +00002048 ctl_buf = msg_sys->msg_control;
2049 ctl_len = msg_sys->msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 } else if (ctl_len) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002051 if (ctl_len > sizeof(ctl)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 ctl_buf = sock_kmalloc(sock->sk, ctl_len, GFP_KERNEL);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002053 if (ctl_buf == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 goto out_freeiov;
2055 }
2056 err = -EFAULT;
2057 /*
Anton Blanchard228e5482011-05-02 20:21:35 +00002058 * Careful! Before this, msg_sys->msg_control contains a user pointer.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 * Afterwards, it will be a kernel pointer. Thus the compiler-assisted
2060 * checking falls down on this.
2061 */
Namhyung Kimfb8621b2010-09-07 03:55:00 +00002062 if (copy_from_user(ctl_buf,
Anton Blanchard228e5482011-05-02 20:21:35 +00002063 (void __user __force *)msg_sys->msg_control,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002064 ctl_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 goto out_freectl;
Anton Blanchard228e5482011-05-02 20:21:35 +00002066 msg_sys->msg_control = ctl_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 }
Anton Blanchard228e5482011-05-02 20:21:35 +00002068 msg_sys->msg_flags = flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069
2070 if (sock->file->f_flags & O_NONBLOCK)
Anton Blanchard228e5482011-05-02 20:21:35 +00002071 msg_sys->msg_flags |= MSG_DONTWAIT;
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002072 /*
2073 * If this is sendmmsg() and current destination address is same as
2074 * previously succeeded address, omit asking LSM's decision.
2075 * used_address->name_len is initialized to UINT_MAX so that the first
2076 * destination address never matches.
2077 */
Mathieu Desnoyersbc909d92011-08-24 19:45:03 -07002078 if (used_address && msg_sys->msg_name &&
2079 used_address->name_len == msg_sys->msg_namelen &&
2080 !memcmp(&used_address->name, msg_sys->msg_name,
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002081 used_address->name_len)) {
2082 err = sock_sendmsg_nosec(sock, msg_sys, total_len);
2083 goto out_freectl;
2084 }
2085 err = sock_sendmsg(sock, msg_sys, total_len);
2086 /*
2087 * If this is sendmmsg() and sending to current destination address was
2088 * successful, remember it.
2089 */
2090 if (used_address && err >= 0) {
2091 used_address->name_len = msg_sys->msg_namelen;
Mathieu Desnoyersbc909d92011-08-24 19:45:03 -07002092 if (msg_sys->msg_name)
2093 memcpy(&used_address->name, msg_sys->msg_name,
2094 used_address->name_len);
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002095 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096
2097out_freectl:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002098 if (ctl_buf != ctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 sock_kfree_s(sock->sk, ctl_buf, ctl_len);
2100out_freeiov:
2101 if (iov != iovstack)
Eric Dumazeta74e9102012-04-20 20:04:01 +02002102 kfree(iov);
Anton Blanchard228e5482011-05-02 20:21:35 +00002103out:
2104 return err;
2105}
2106
2107/*
2108 * BSD sendmsg interface
2109 */
2110
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002111long __sys_sendmsg(int fd, struct msghdr __user *msg, unsigned flags)
Anton Blanchard228e5482011-05-02 20:21:35 +00002112{
2113 int fput_needed, err;
2114 struct msghdr msg_sys;
Andy Lutomirski1be374a2013-05-22 14:07:44 -07002115 struct socket *sock;
Anton Blanchard228e5482011-05-02 20:21:35 +00002116
Andy Lutomirski1be374a2013-05-22 14:07:44 -07002117 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Anton Blanchard228e5482011-05-02 20:21:35 +00002118 if (!sock)
2119 goto out;
2120
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002121 err = ___sys_sendmsg(sock, msg, &msg_sys, flags, NULL);
Anton Blanchard228e5482011-05-02 20:21:35 +00002122
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002123 fput_light(sock->file, fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002124out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 return err;
2126}
2127
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002128SYSCALL_DEFINE3(sendmsg, int, fd, struct msghdr __user *, msg, unsigned int, flags)
2129{
2130 if (flags & MSG_CMSG_COMPAT)
2131 return -EINVAL;
2132 return __sys_sendmsg(fd, msg, flags);
2133}
2134
Anton Blanchard228e5482011-05-02 20:21:35 +00002135/*
2136 * Linux sendmmsg interface
2137 */
2138
2139int __sys_sendmmsg(int fd, struct mmsghdr __user *mmsg, unsigned int vlen,
2140 unsigned int flags)
2141{
2142 int fput_needed, err, datagrams;
2143 struct socket *sock;
2144 struct mmsghdr __user *entry;
2145 struct compat_mmsghdr __user *compat_entry;
2146 struct msghdr msg_sys;
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002147 struct used_address used_address;
Anton Blanchard228e5482011-05-02 20:21:35 +00002148
Anton Blanchard98382f42011-08-04 14:07:39 +00002149 if (vlen > UIO_MAXIOV)
2150 vlen = UIO_MAXIOV;
Anton Blanchard228e5482011-05-02 20:21:35 +00002151
2152 datagrams = 0;
2153
2154 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2155 if (!sock)
2156 return err;
2157
Tetsuo Handac71d8eb2011-08-04 14:07:40 +00002158 used_address.name_len = UINT_MAX;
Anton Blanchard228e5482011-05-02 20:21:35 +00002159 entry = mmsg;
2160 compat_entry = (struct compat_mmsghdr __user *)mmsg;
Anton Blanchard728ffb82011-08-04 14:07:38 +00002161 err = 0;
Anton Blanchard228e5482011-05-02 20:21:35 +00002162
2163 while (datagrams < vlen) {
Anton Blanchard228e5482011-05-02 20:21:35 +00002164 if (MSG_CMSG_COMPAT & flags) {
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002165 err = ___sys_sendmsg(sock, (struct msghdr __user *)compat_entry,
2166 &msg_sys, flags, &used_address);
Anton Blanchard228e5482011-05-02 20:21:35 +00002167 if (err < 0)
2168 break;
2169 err = __put_user(err, &compat_entry->msg_len);
2170 ++compat_entry;
2171 } else {
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002172 err = ___sys_sendmsg(sock,
2173 (struct msghdr __user *)entry,
2174 &msg_sys, flags, &used_address);
Anton Blanchard228e5482011-05-02 20:21:35 +00002175 if (err < 0)
2176 break;
2177 err = put_user(err, &entry->msg_len);
2178 ++entry;
2179 }
2180
2181 if (err)
2182 break;
2183 ++datagrams;
2184 }
2185
Anton Blanchard228e5482011-05-02 20:21:35 +00002186 fput_light(sock->file, fput_needed);
2187
Anton Blanchard728ffb82011-08-04 14:07:38 +00002188 /* We only return an error if no datagrams were able to be sent */
2189 if (datagrams != 0)
Anton Blanchard228e5482011-05-02 20:21:35 +00002190 return datagrams;
2191
Anton Blanchard228e5482011-05-02 20:21:35 +00002192 return err;
2193}
2194
2195SYSCALL_DEFINE4(sendmmsg, int, fd, struct mmsghdr __user *, mmsg,
2196 unsigned int, vlen, unsigned int, flags)
2197{
Andy Lutomirski1be374a2013-05-22 14:07:44 -07002198 if (flags & MSG_CMSG_COMPAT)
2199 return -EINVAL;
Anton Blanchard228e5482011-05-02 20:21:35 +00002200 return __sys_sendmmsg(fd, mmsg, vlen, flags);
2201}
2202
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002203static int ___sys_recvmsg(struct socket *sock, struct msghdr __user *msg,
Eric Dumazet95c96172012-04-15 05:58:06 +00002204 struct msghdr *msg_sys, unsigned int flags, int nosec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002206 struct compat_msghdr __user *msg_compat =
2207 (struct compat_msghdr __user *)msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 struct iovec iovstack[UIO_FASTIOV];
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002209 struct iovec *iov = iovstack;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 unsigned long cmsg_ptr;
Eric Dumazeta74e9102012-04-20 20:04:01 +02002211 int err, total_len, len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212
2213 /* kernel mode address */
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07002214 struct sockaddr_storage addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215
2216 /* user mode address pointers */
2217 struct sockaddr __user *uaddr;
2218 int __user *uaddr_len;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002219
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 if (MSG_CMSG_COMPAT & flags) {
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002221 if (get_compat_msghdr(msg_sys, msg_compat))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 return -EFAULT;
Dan Carpenter1661bf32013-10-03 00:27:20 +03002223 } else {
2224 err = copy_msghdr_from_user(msg_sys, msg);
2225 if (err)
2226 return err;
2227 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002229 if (msg_sys->msg_iovlen > UIO_FASTIOV) {
Eric Dumazeta74e9102012-04-20 20:04:01 +02002230 err = -EMSGSIZE;
2231 if (msg_sys->msg_iovlen > UIO_MAXIOV)
2232 goto out;
2233 err = -ENOMEM;
2234 iov = kmalloc(msg_sys->msg_iovlen * sizeof(struct iovec),
2235 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 if (!iov)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002237 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 }
2239
Hannes Frederic Sowaf3d33422013-11-21 03:14:22 +01002240 /* Save the user-mode address (verify_iovec will change the
2241 * kernel msghdr to use the kernel address space)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 */
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002243 uaddr = (__force void __user *)msg_sys->msg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 uaddr_len = COMPAT_NAMELEN(msg);
Hannes Frederic Sowaf3d33422013-11-21 03:14:22 +01002245 if (MSG_CMSG_COMPAT & flags)
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00002246 err = verify_compat_iovec(msg_sys, iov, &addr, VERIFY_WRITE);
Hannes Frederic Sowaf3d33422013-11-21 03:14:22 +01002247 else
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00002248 err = verify_iovec(msg_sys, iov, &addr, VERIFY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 if (err < 0)
2250 goto out_freeiov;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002251 total_len = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002253 cmsg_ptr = (unsigned long)msg_sys->msg_control;
2254 msg_sys->msg_flags = flags & (MSG_CMSG_CLOEXEC|MSG_CMSG_COMPAT);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002255
Hannes Frederic Sowaf3d33422013-11-21 03:14:22 +01002256 /* We assume all kernel code knows the size of sockaddr_storage */
2257 msg_sys->msg_namelen = 0;
2258
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 if (sock->file->f_flags & O_NONBLOCK)
2260 flags |= MSG_DONTWAIT;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002261 err = (nosec ? sock_recvmsg_nosec : sock_recvmsg)(sock, msg_sys,
2262 total_len, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 if (err < 0)
2264 goto out_freeiov;
2265 len = err;
2266
2267 if (uaddr != NULL) {
Maciej Żenczykowski43db3622012-03-11 12:51:50 +00002268 err = move_addr_to_user(&addr,
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002269 msg_sys->msg_namelen, uaddr,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002270 uaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 if (err < 0)
2272 goto out_freeiov;
2273 }
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002274 err = __put_user((msg_sys->msg_flags & ~MSG_CMSG_COMPAT),
David S. Miller37f7f422005-09-16 16:51:01 -07002275 COMPAT_FLAGS(msg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 if (err)
2277 goto out_freeiov;
2278 if (MSG_CMSG_COMPAT & flags)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002279 err = __put_user((unsigned long)msg_sys->msg_control - cmsg_ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 &msg_compat->msg_controllen);
2281 else
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002282 err = __put_user((unsigned long)msg_sys->msg_control - cmsg_ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 &msg->msg_controllen);
2284 if (err)
2285 goto out_freeiov;
2286 err = len;
2287
2288out_freeiov:
2289 if (iov != iovstack)
Eric Dumazeta74e9102012-04-20 20:04:01 +02002290 kfree(iov);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002291out:
2292 return err;
2293}
2294
2295/*
2296 * BSD recvmsg interface
2297 */
2298
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002299long __sys_recvmsg(int fd, struct msghdr __user *msg, unsigned flags)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002300{
2301 int fput_needed, err;
2302 struct msghdr msg_sys;
Andy Lutomirski1be374a2013-05-22 14:07:44 -07002303 struct socket *sock;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002304
Andy Lutomirski1be374a2013-05-22 14:07:44 -07002305 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002306 if (!sock)
2307 goto out;
2308
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002309 err = ___sys_recvmsg(sock, msg, &msg_sys, flags, 0);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002310
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002311 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312out:
2313 return err;
2314}
2315
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002316SYSCALL_DEFINE3(recvmsg, int, fd, struct msghdr __user *, msg,
2317 unsigned int, flags)
2318{
2319 if (flags & MSG_CMSG_COMPAT)
2320 return -EINVAL;
2321 return __sys_recvmsg(fd, msg, flags);
2322}
2323
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002324/*
2325 * Linux recvmmsg interface
2326 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002328int __sys_recvmmsg(int fd, struct mmsghdr __user *mmsg, unsigned int vlen,
2329 unsigned int flags, struct timespec *timeout)
2330{
2331 int fput_needed, err, datagrams;
2332 struct socket *sock;
2333 struct mmsghdr __user *entry;
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002334 struct compat_mmsghdr __user *compat_entry;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002335 struct msghdr msg_sys;
2336 struct timespec end_time;
2337
2338 if (timeout &&
2339 poll_select_set_timeout(&end_time, timeout->tv_sec,
2340 timeout->tv_nsec))
2341 return -EINVAL;
2342
2343 datagrams = 0;
2344
2345 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2346 if (!sock)
2347 return err;
2348
2349 err = sock_error(sock->sk);
2350 if (err)
2351 goto out_put;
2352
2353 entry = mmsg;
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002354 compat_entry = (struct compat_mmsghdr __user *)mmsg;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002355
2356 while (datagrams < vlen) {
2357 /*
2358 * No need to ask LSM for more than the first datagram.
2359 */
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002360 if (MSG_CMSG_COMPAT & flags) {
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002361 err = ___sys_recvmsg(sock, (struct msghdr __user *)compat_entry,
2362 &msg_sys, flags & ~MSG_WAITFORONE,
2363 datagrams);
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002364 if (err < 0)
2365 break;
2366 err = __put_user(err, &compat_entry->msg_len);
2367 ++compat_entry;
2368 } else {
Andy Lutomirskia7526eb2013-06-05 19:38:26 +00002369 err = ___sys_recvmsg(sock,
2370 (struct msghdr __user *)entry,
2371 &msg_sys, flags & ~MSG_WAITFORONE,
2372 datagrams);
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002373 if (err < 0)
2374 break;
2375 err = put_user(err, &entry->msg_len);
2376 ++entry;
2377 }
2378
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002379 if (err)
2380 break;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002381 ++datagrams;
2382
Brandon L Black71c5c152010-03-26 16:18:03 +00002383 /* MSG_WAITFORONE turns on MSG_DONTWAIT after one packet */
2384 if (flags & MSG_WAITFORONE)
2385 flags |= MSG_DONTWAIT;
2386
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002387 if (timeout) {
2388 ktime_get_ts(timeout);
2389 *timeout = timespec_sub(end_time, *timeout);
2390 if (timeout->tv_sec < 0) {
2391 timeout->tv_sec = timeout->tv_nsec = 0;
2392 break;
2393 }
2394
2395 /* Timeout, return less than vlen datagrams */
2396 if (timeout->tv_nsec == 0 && timeout->tv_sec == 0)
2397 break;
2398 }
2399
2400 /* Out of band data, return right away */
2401 if (msg_sys.msg_flags & MSG_OOB)
2402 break;
2403 }
2404
2405out_put:
2406 fput_light(sock->file, fput_needed);
2407
2408 if (err == 0)
2409 return datagrams;
2410
2411 if (datagrams != 0) {
2412 /*
2413 * We may return less entries than requested (vlen) if the
2414 * sock is non block and there aren't enough datagrams...
2415 */
2416 if (err != -EAGAIN) {
2417 /*
2418 * ... or if recvmsg returns an error after we
2419 * received some datagrams, where we record the
2420 * error to return on the next call or if the
2421 * app asks about it using getsockopt(SO_ERROR).
2422 */
2423 sock->sk->sk_err = -err;
2424 }
2425
2426 return datagrams;
2427 }
2428
2429 return err;
2430}
2431
2432SYSCALL_DEFINE5(recvmmsg, int, fd, struct mmsghdr __user *, mmsg,
2433 unsigned int, vlen, unsigned int, flags,
2434 struct timespec __user *, timeout)
2435{
2436 int datagrams;
2437 struct timespec timeout_sys;
2438
Andy Lutomirski1be374a2013-05-22 14:07:44 -07002439 if (flags & MSG_CMSG_COMPAT)
2440 return -EINVAL;
2441
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002442 if (!timeout)
2443 return __sys_recvmmsg(fd, mmsg, vlen, flags, NULL);
2444
2445 if (copy_from_user(&timeout_sys, timeout, sizeof(timeout_sys)))
2446 return -EFAULT;
2447
2448 datagrams = __sys_recvmmsg(fd, mmsg, vlen, flags, &timeout_sys);
2449
2450 if (datagrams > 0 &&
2451 copy_to_user(timeout, &timeout_sys, sizeof(timeout_sys)))
2452 datagrams = -EFAULT;
2453
2454 return datagrams;
2455}
2456
2457#ifdef __ARCH_WANT_SYS_SOCKETCALL
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458/* Argument list sizes for sys_socketcall */
2459#define AL(x) ((x) * sizeof(unsigned long))
Anton Blanchard228e5482011-05-02 20:21:35 +00002460static const unsigned char nargs[21] = {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002461 AL(0), AL(3), AL(3), AL(3), AL(2), AL(3),
2462 AL(3), AL(3), AL(4), AL(4), AL(4), AL(6),
2463 AL(6), AL(2), AL(5), AL(5), AL(3), AL(3),
Anton Blanchard228e5482011-05-02 20:21:35 +00002464 AL(4), AL(5), AL(4)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002465};
2466
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467#undef AL
2468
2469/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002470 * System call vectors.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471 *
2472 * Argument checking cleaned up. Saved 20% in size.
2473 * This function doesn't need to set the kernel lock because
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002474 * it is set by the callees.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 */
2476
Heiko Carstens3e0fa652009-01-14 14:14:24 +01002477SYSCALL_DEFINE2(socketcall, int, call, unsigned long __user *, args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478{
Chen Gang2950fa92013-04-07 16:55:23 +08002479 unsigned long a[AUDITSC_ARGS];
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002480 unsigned long a0, a1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 int err;
Arjan van de Ven47379052009-09-28 12:57:44 -07002482 unsigned int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483
Anton Blanchard228e5482011-05-02 20:21:35 +00002484 if (call < 1 || call > SYS_SENDMMSG)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485 return -EINVAL;
2486
Arjan van de Ven47379052009-09-28 12:57:44 -07002487 len = nargs[call];
2488 if (len > sizeof(a))
2489 return -EINVAL;
2490
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 /* copy_from_user should be SMP safe. */
Arjan van de Ven47379052009-09-28 12:57:44 -07002492 if (copy_from_user(a, args, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 return -EFAULT;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002494
Chen Gang2950fa92013-04-07 16:55:23 +08002495 err = audit_socketcall(nargs[call] / sizeof(unsigned long), a);
2496 if (err)
2497 return err;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002498
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002499 a0 = a[0];
2500 a1 = a[1];
2501
2502 switch (call) {
2503 case SYS_SOCKET:
2504 err = sys_socket(a0, a1, a[2]);
2505 break;
2506 case SYS_BIND:
2507 err = sys_bind(a0, (struct sockaddr __user *)a1, a[2]);
2508 break;
2509 case SYS_CONNECT:
2510 err = sys_connect(a0, (struct sockaddr __user *)a1, a[2]);
2511 break;
2512 case SYS_LISTEN:
2513 err = sys_listen(a0, a1);
2514 break;
2515 case SYS_ACCEPT:
Ulrich Drepperde11def2008-11-19 15:36:14 -08002516 err = sys_accept4(a0, (struct sockaddr __user *)a1,
2517 (int __user *)a[2], 0);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002518 break;
2519 case SYS_GETSOCKNAME:
2520 err =
2521 sys_getsockname(a0, (struct sockaddr __user *)a1,
2522 (int __user *)a[2]);
2523 break;
2524 case SYS_GETPEERNAME:
2525 err =
2526 sys_getpeername(a0, (struct sockaddr __user *)a1,
2527 (int __user *)a[2]);
2528 break;
2529 case SYS_SOCKETPAIR:
2530 err = sys_socketpair(a0, a1, a[2], (int __user *)a[3]);
2531 break;
2532 case SYS_SEND:
2533 err = sys_send(a0, (void __user *)a1, a[2], a[3]);
2534 break;
2535 case SYS_SENDTO:
2536 err = sys_sendto(a0, (void __user *)a1, a[2], a[3],
2537 (struct sockaddr __user *)a[4], a[5]);
2538 break;
2539 case SYS_RECV:
2540 err = sys_recv(a0, (void __user *)a1, a[2], a[3]);
2541 break;
2542 case SYS_RECVFROM:
2543 err = sys_recvfrom(a0, (void __user *)a1, a[2], a[3],
2544 (struct sockaddr __user *)a[4],
2545 (int __user *)a[5]);
2546 break;
2547 case SYS_SHUTDOWN:
2548 err = sys_shutdown(a0, a1);
2549 break;
2550 case SYS_SETSOCKOPT:
2551 err = sys_setsockopt(a0, a1, a[2], (char __user *)a[3], a[4]);
2552 break;
2553 case SYS_GETSOCKOPT:
2554 err =
2555 sys_getsockopt(a0, a1, a[2], (char __user *)a[3],
2556 (int __user *)a[4]);
2557 break;
2558 case SYS_SENDMSG:
2559 err = sys_sendmsg(a0, (struct msghdr __user *)a1, a[2]);
2560 break;
Anton Blanchard228e5482011-05-02 20:21:35 +00002561 case SYS_SENDMMSG:
2562 err = sys_sendmmsg(a0, (struct mmsghdr __user *)a1, a[2], a[3]);
2563 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002564 case SYS_RECVMSG:
2565 err = sys_recvmsg(a0, (struct msghdr __user *)a1, a[2]);
2566 break;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002567 case SYS_RECVMMSG:
2568 err = sys_recvmmsg(a0, (struct mmsghdr __user *)a1, a[2], a[3],
2569 (struct timespec __user *)a[4]);
2570 break;
Ulrich Drepperde11def2008-11-19 15:36:14 -08002571 case SYS_ACCEPT4:
2572 err = sys_accept4(a0, (struct sockaddr __user *)a1,
2573 (int __user *)a[2], a[3]);
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07002574 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002575 default:
2576 err = -EINVAL;
2577 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578 }
2579 return err;
2580}
2581
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002582#endif /* __ARCH_WANT_SYS_SOCKETCALL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002584/**
2585 * sock_register - add a socket protocol handler
2586 * @ops: description of protocol
2587 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588 * This function is called by a protocol handler that wants to
2589 * advertise its address family, and have it linked into the
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002590 * socket interface. The value ops->family coresponds to the
2591 * socket system call protocol family.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 */
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002593int sock_register(const struct net_proto_family *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594{
2595 int err;
2596
2597 if (ops->family >= NPROTO) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002598 printk(KERN_CRIT "protocol %d >= NPROTO(%d)\n", ops->family,
2599 NPROTO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600 return -ENOBUFS;
2601 }
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002602
2603 spin_lock(&net_family_lock);
Eric Dumazet190683a2010-11-10 10:50:44 +00002604 if (rcu_dereference_protected(net_families[ops->family],
2605 lockdep_is_held(&net_family_lock)))
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002606 err = -EEXIST;
2607 else {
Eric Dumazetcf778b02012-01-12 04:41:32 +00002608 rcu_assign_pointer(net_families[ops->family], ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609 err = 0;
2610 }
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002611 spin_unlock(&net_family_lock);
2612
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002613 printk(KERN_INFO "NET: Registered protocol family %d\n", ops->family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 return err;
2615}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002616EXPORT_SYMBOL(sock_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002618/**
2619 * sock_unregister - remove a protocol handler
2620 * @family: protocol family to remove
2621 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 * This function is called by a protocol handler that wants to
2623 * remove its address family, and have it unlinked from the
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002624 * new socket creation.
2625 *
2626 * If protocol handler is a module, then it can use module reference
2627 * counts to protect against new references. If protocol handler is not
2628 * a module then it needs to provide its own protection in
2629 * the ops->create routine.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630 */
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002631void sock_unregister(int family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632{
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002633 BUG_ON(family < 0 || family >= NPROTO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002635 spin_lock(&net_family_lock);
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00002636 RCU_INIT_POINTER(net_families[family], NULL);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002637 spin_unlock(&net_family_lock);
2638
2639 synchronize_rcu();
2640
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002641 printk(KERN_INFO "NET: Unregistered protocol family %d\n", family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002643EXPORT_SYMBOL(sock_unregister);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644
Andi Kleen77d76ea2005-12-22 12:43:42 -08002645static int __init sock_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646{
Nick Pigginb3e19d92011-01-07 17:50:11 +11002647 int err;
Eric W. Biederman2ca794e2012-04-19 13:20:32 +00002648 /*
2649 * Initialize the network sysctl infrastructure.
2650 */
2651 err = net_sysctl_init();
2652 if (err)
2653 goto out;
Nick Pigginb3e19d92011-01-07 17:50:11 +11002654
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002656 * Initialize skbuff SLAB cache
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657 */
2658 skb_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659
2660 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002661 * Initialize the protocols module.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662 */
2663
2664 init_inodecache();
Nick Pigginb3e19d92011-01-07 17:50:11 +11002665
2666 err = register_filesystem(&sock_fs_type);
2667 if (err)
2668 goto out_fs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 sock_mnt = kern_mount(&sock_fs_type);
Nick Pigginb3e19d92011-01-07 17:50:11 +11002670 if (IS_ERR(sock_mnt)) {
2671 err = PTR_ERR(sock_mnt);
2672 goto out_mount;
2673 }
Andi Kleen77d76ea2005-12-22 12:43:42 -08002674
2675 /* The real protocol initialization is performed in later initcalls.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 */
2677
2678#ifdef CONFIG_NETFILTER
Pablo Neira Ayuso6d11cfd2013-05-22 22:42:36 +00002679 err = netfilter_init();
2680 if (err)
2681 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682#endif
David S. Millercbeb3212005-12-22 12:58:55 -08002683
Richard Cochranc1f19b52010-07-17 08:49:36 +00002684#ifdef CONFIG_NETWORK_PHY_TIMESTAMPING
2685 skb_timestamping_init();
2686#endif
2687
Nick Pigginb3e19d92011-01-07 17:50:11 +11002688out:
2689 return err;
2690
2691out_mount:
2692 unregister_filesystem(&sock_fs_type);
2693out_fs:
2694 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695}
2696
Andi Kleen77d76ea2005-12-22 12:43:42 -08002697core_initcall(sock_init); /* early initcall */
2698
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699#ifdef CONFIG_PROC_FS
2700void socket_seq_show(struct seq_file *seq)
2701{
2702 int cpu;
2703 int counter = 0;
2704
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -07002705 for_each_possible_cpu(cpu)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002706 counter += per_cpu(sockets_in_use, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707
2708 /* It can be negative, by the way. 8) */
2709 if (counter < 0)
2710 counter = 0;
2711
2712 seq_printf(seq, "sockets: used %d\n", counter);
2713}
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002714#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715
Shaun Pereira89bbfc92006-03-21 23:58:08 -08002716#ifdef CONFIG_COMPAT
Arnd Bergmann6b960182009-11-06 23:10:54 -08002717static int do_siocgstamp(struct net *net, struct socket *sock,
H. Peter Anvin644595f2012-02-19 17:51:59 -08002718 unsigned int cmd, void __user *up)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002719{
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002720 mm_segment_t old_fs = get_fs();
2721 struct timeval ktv;
2722 int err;
2723
2724 set_fs(KERNEL_DS);
Arnd Bergmann6b960182009-11-06 23:10:54 -08002725 err = sock_do_ioctl(net, sock, cmd, (unsigned long)&ktv);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002726 set_fs(old_fs);
H. Peter Anvin644595f2012-02-19 17:51:59 -08002727 if (!err)
Mikulas Patockaed6fe9d2012-09-01 12:34:07 -04002728 err = compat_put_timeval(&ktv, up);
H. Peter Anvin644595f2012-02-19 17:51:59 -08002729
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002730 return err;
2731}
2732
Arnd Bergmann6b960182009-11-06 23:10:54 -08002733static int do_siocgstampns(struct net *net, struct socket *sock,
H. Peter Anvin644595f2012-02-19 17:51:59 -08002734 unsigned int cmd, void __user *up)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002735{
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002736 mm_segment_t old_fs = get_fs();
2737 struct timespec kts;
2738 int err;
2739
2740 set_fs(KERNEL_DS);
Arnd Bergmann6b960182009-11-06 23:10:54 -08002741 err = sock_do_ioctl(net, sock, cmd, (unsigned long)&kts);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002742 set_fs(old_fs);
H. Peter Anvin644595f2012-02-19 17:51:59 -08002743 if (!err)
Mikulas Patockaed6fe9d2012-09-01 12:34:07 -04002744 err = compat_put_timespec(&kts, up);
H. Peter Anvin644595f2012-02-19 17:51:59 -08002745
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002746 return err;
2747}
2748
Arnd Bergmann6b960182009-11-06 23:10:54 -08002749static int dev_ifname32(struct net *net, struct compat_ifreq __user *uifr32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002750{
2751 struct ifreq __user *uifr;
2752 int err;
2753
2754 uifr = compat_alloc_user_space(sizeof(struct ifreq));
Arnd Bergmann6b960182009-11-06 23:10:54 -08002755 if (copy_in_user(uifr, uifr32, sizeof(struct compat_ifreq)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002756 return -EFAULT;
2757
Arnd Bergmann6b960182009-11-06 23:10:54 -08002758 err = dev_ioctl(net, SIOCGIFNAME, uifr);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002759 if (err)
2760 return err;
2761
Arnd Bergmann6b960182009-11-06 23:10:54 -08002762 if (copy_in_user(uifr32, uifr, sizeof(struct compat_ifreq)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002763 return -EFAULT;
2764
2765 return 0;
2766}
2767
Arnd Bergmann6b960182009-11-06 23:10:54 -08002768static int dev_ifconf(struct net *net, struct compat_ifconf __user *uifc32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002769{
Arnd Bergmann6b960182009-11-06 23:10:54 -08002770 struct compat_ifconf ifc32;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002771 struct ifconf ifc;
2772 struct ifconf __user *uifc;
Arnd Bergmann6b960182009-11-06 23:10:54 -08002773 struct compat_ifreq __user *ifr32;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002774 struct ifreq __user *ifr;
2775 unsigned int i, j;
2776 int err;
2777
Arnd Bergmann6b960182009-11-06 23:10:54 -08002778 if (copy_from_user(&ifc32, uifc32, sizeof(struct compat_ifconf)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002779 return -EFAULT;
2780
Mathias Krause43da5f22012-08-15 11:31:57 +00002781 memset(&ifc, 0, sizeof(ifc));
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002782 if (ifc32.ifcbuf == 0) {
2783 ifc32.ifc_len = 0;
2784 ifc.ifc_len = 0;
2785 ifc.ifc_req = NULL;
2786 uifc = compat_alloc_user_space(sizeof(struct ifconf));
2787 } else {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002788 size_t len = ((ifc32.ifc_len / sizeof(struct compat_ifreq)) + 1) *
2789 sizeof(struct ifreq);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002790 uifc = compat_alloc_user_space(sizeof(struct ifconf) + len);
2791 ifc.ifc_len = len;
2792 ifr = ifc.ifc_req = (void __user *)(uifc + 1);
2793 ifr32 = compat_ptr(ifc32.ifcbuf);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002794 for (i = 0; i < ifc32.ifc_len; i += sizeof(struct compat_ifreq)) {
Arnd Bergmann6b960182009-11-06 23:10:54 -08002795 if (copy_in_user(ifr, ifr32, sizeof(struct compat_ifreq)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002796 return -EFAULT;
2797 ifr++;
2798 ifr32++;
2799 }
2800 }
2801 if (copy_to_user(uifc, &ifc, sizeof(struct ifconf)))
2802 return -EFAULT;
2803
Arnd Bergmann6b960182009-11-06 23:10:54 -08002804 err = dev_ioctl(net, SIOCGIFCONF, uifc);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002805 if (err)
2806 return err;
2807
2808 if (copy_from_user(&ifc, uifc, sizeof(struct ifconf)))
2809 return -EFAULT;
2810
2811 ifr = ifc.ifc_req;
2812 ifr32 = compat_ptr(ifc32.ifcbuf);
2813 for (i = 0, j = 0;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002814 i + sizeof(struct compat_ifreq) <= ifc32.ifc_len && j < ifc.ifc_len;
2815 i += sizeof(struct compat_ifreq), j += sizeof(struct ifreq)) {
2816 if (copy_in_user(ifr32, ifr, sizeof(struct compat_ifreq)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002817 return -EFAULT;
2818 ifr32++;
2819 ifr++;
2820 }
2821
2822 if (ifc32.ifcbuf == 0) {
2823 /* Translate from 64-bit structure multiple to
2824 * a 32-bit one.
2825 */
2826 i = ifc.ifc_len;
Arnd Bergmann6b960182009-11-06 23:10:54 -08002827 i = ((i / sizeof(struct ifreq)) * sizeof(struct compat_ifreq));
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002828 ifc32.ifc_len = i;
2829 } else {
2830 ifc32.ifc_len = i;
2831 }
Arnd Bergmann6b960182009-11-06 23:10:54 -08002832 if (copy_to_user(uifc32, &ifc32, sizeof(struct compat_ifconf)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002833 return -EFAULT;
2834
2835 return 0;
2836}
2837
Arnd Bergmann6b960182009-11-06 23:10:54 -08002838static int ethtool_ioctl(struct net *net, struct compat_ifreq __user *ifr32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002839{
Ben Hutchings3a7da392011-03-17 07:34:32 +00002840 struct compat_ethtool_rxnfc __user *compat_rxnfc;
2841 bool convert_in = false, convert_out = false;
2842 size_t buf_size = ALIGN(sizeof(struct ifreq), 8);
2843 struct ethtool_rxnfc __user *rxnfc;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002844 struct ifreq __user *ifr;
Ben Hutchings3a7da392011-03-17 07:34:32 +00002845 u32 rule_cnt = 0, actual_rule_cnt;
2846 u32 ethcmd;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002847 u32 data;
Ben Hutchings3a7da392011-03-17 07:34:32 +00002848 int ret;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002849
2850 if (get_user(data, &ifr32->ifr_ifru.ifru_data))
2851 return -EFAULT;
2852
Ben Hutchings3a7da392011-03-17 07:34:32 +00002853 compat_rxnfc = compat_ptr(data);
2854
2855 if (get_user(ethcmd, &compat_rxnfc->cmd))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002856 return -EFAULT;
2857
Ben Hutchings3a7da392011-03-17 07:34:32 +00002858 /* Most ethtool structures are defined without padding.
2859 * Unfortunately struct ethtool_rxnfc is an exception.
2860 */
2861 switch (ethcmd) {
2862 default:
2863 break;
2864 case ETHTOOL_GRXCLSRLALL:
2865 /* Buffer size is variable */
2866 if (get_user(rule_cnt, &compat_rxnfc->rule_cnt))
2867 return -EFAULT;
2868 if (rule_cnt > KMALLOC_MAX_SIZE / sizeof(u32))
2869 return -ENOMEM;
2870 buf_size += rule_cnt * sizeof(u32);
2871 /* fall through */
2872 case ETHTOOL_GRXRINGS:
2873 case ETHTOOL_GRXCLSRLCNT:
2874 case ETHTOOL_GRXCLSRULE:
Ben Hutchings55664f32012-01-03 12:04:51 +00002875 case ETHTOOL_SRXCLSRLINS:
Ben Hutchings3a7da392011-03-17 07:34:32 +00002876 convert_out = true;
2877 /* fall through */
2878 case ETHTOOL_SRXCLSRLDEL:
Ben Hutchings3a7da392011-03-17 07:34:32 +00002879 buf_size += sizeof(struct ethtool_rxnfc);
2880 convert_in = true;
2881 break;
2882 }
2883
2884 ifr = compat_alloc_user_space(buf_size);
Stephen Hemminger954b1242013-02-11 06:22:28 +00002885 rxnfc = (void __user *)ifr + ALIGN(sizeof(struct ifreq), 8);
Ben Hutchings3a7da392011-03-17 07:34:32 +00002886
2887 if (copy_in_user(&ifr->ifr_name, &ifr32->ifr_name, IFNAMSIZ))
2888 return -EFAULT;
2889
2890 if (put_user(convert_in ? rxnfc : compat_ptr(data),
2891 &ifr->ifr_ifru.ifru_data))
2892 return -EFAULT;
2893
2894 if (convert_in) {
Alexander Duyck127fe532011-04-08 18:01:59 +00002895 /* We expect there to be holes between fs.m_ext and
Ben Hutchings3a7da392011-03-17 07:34:32 +00002896 * fs.ring_cookie and at the end of fs, but nowhere else.
2897 */
Alexander Duyck127fe532011-04-08 18:01:59 +00002898 BUILD_BUG_ON(offsetof(struct compat_ethtool_rxnfc, fs.m_ext) +
2899 sizeof(compat_rxnfc->fs.m_ext) !=
2900 offsetof(struct ethtool_rxnfc, fs.m_ext) +
2901 sizeof(rxnfc->fs.m_ext));
Ben Hutchings3a7da392011-03-17 07:34:32 +00002902 BUILD_BUG_ON(
2903 offsetof(struct compat_ethtool_rxnfc, fs.location) -
2904 offsetof(struct compat_ethtool_rxnfc, fs.ring_cookie) !=
2905 offsetof(struct ethtool_rxnfc, fs.location) -
2906 offsetof(struct ethtool_rxnfc, fs.ring_cookie));
2907
2908 if (copy_in_user(rxnfc, compat_rxnfc,
Stephen Hemminger954b1242013-02-11 06:22:28 +00002909 (void __user *)(&rxnfc->fs.m_ext + 1) -
2910 (void __user *)rxnfc) ||
Ben Hutchings3a7da392011-03-17 07:34:32 +00002911 copy_in_user(&rxnfc->fs.ring_cookie,
2912 &compat_rxnfc->fs.ring_cookie,
Stephen Hemminger954b1242013-02-11 06:22:28 +00002913 (void __user *)(&rxnfc->fs.location + 1) -
2914 (void __user *)&rxnfc->fs.ring_cookie) ||
Ben Hutchings3a7da392011-03-17 07:34:32 +00002915 copy_in_user(&rxnfc->rule_cnt, &compat_rxnfc->rule_cnt,
2916 sizeof(rxnfc->rule_cnt)))
2917 return -EFAULT;
2918 }
2919
2920 ret = dev_ioctl(net, SIOCETHTOOL, ifr);
2921 if (ret)
2922 return ret;
2923
2924 if (convert_out) {
2925 if (copy_in_user(compat_rxnfc, rxnfc,
Stephen Hemminger954b1242013-02-11 06:22:28 +00002926 (const void __user *)(&rxnfc->fs.m_ext + 1) -
2927 (const void __user *)rxnfc) ||
Ben Hutchings3a7da392011-03-17 07:34:32 +00002928 copy_in_user(&compat_rxnfc->fs.ring_cookie,
2929 &rxnfc->fs.ring_cookie,
Stephen Hemminger954b1242013-02-11 06:22:28 +00002930 (const void __user *)(&rxnfc->fs.location + 1) -
2931 (const void __user *)&rxnfc->fs.ring_cookie) ||
Ben Hutchings3a7da392011-03-17 07:34:32 +00002932 copy_in_user(&compat_rxnfc->rule_cnt, &rxnfc->rule_cnt,
2933 sizeof(rxnfc->rule_cnt)))
2934 return -EFAULT;
2935
2936 if (ethcmd == ETHTOOL_GRXCLSRLALL) {
2937 /* As an optimisation, we only copy the actual
2938 * number of rules that the underlying
2939 * function returned. Since Mallory might
2940 * change the rule count in user memory, we
2941 * check that it is less than the rule count
2942 * originally given (as the user buffer size),
2943 * which has been range-checked.
2944 */
2945 if (get_user(actual_rule_cnt, &rxnfc->rule_cnt))
2946 return -EFAULT;
2947 if (actual_rule_cnt < rule_cnt)
2948 rule_cnt = actual_rule_cnt;
2949 if (copy_in_user(&compat_rxnfc->rule_locs[0],
2950 &rxnfc->rule_locs[0],
2951 rule_cnt * sizeof(u32)))
2952 return -EFAULT;
2953 }
2954 }
2955
2956 return 0;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002957}
2958
Arnd Bergmann7a50a242009-11-08 20:57:03 -08002959static int compat_siocwandev(struct net *net, struct compat_ifreq __user *uifr32)
2960{
2961 void __user *uptr;
2962 compat_uptr_t uptr32;
2963 struct ifreq __user *uifr;
2964
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002965 uifr = compat_alloc_user_space(sizeof(*uifr));
Arnd Bergmann7a50a242009-11-08 20:57:03 -08002966 if (copy_in_user(uifr, uifr32, sizeof(struct compat_ifreq)))
2967 return -EFAULT;
2968
2969 if (get_user(uptr32, &uifr32->ifr_settings.ifs_ifsu))
2970 return -EFAULT;
2971
2972 uptr = compat_ptr(uptr32);
2973
2974 if (put_user(uptr, &uifr->ifr_settings.ifs_ifsu.raw_hdlc))
2975 return -EFAULT;
2976
2977 return dev_ioctl(net, SIOCWANDEV, uifr);
2978}
2979
Arnd Bergmann6b960182009-11-06 23:10:54 -08002980static int bond_ioctl(struct net *net, unsigned int cmd,
2981 struct compat_ifreq __user *ifr32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002982{
2983 struct ifreq kifr;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002984 mm_segment_t old_fs;
2985 int err;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002986
2987 switch (cmd) {
2988 case SIOCBONDENSLAVE:
2989 case SIOCBONDRELEASE:
2990 case SIOCBONDSETHWADDR:
2991 case SIOCBONDCHANGEACTIVE:
Arnd Bergmann6b960182009-11-06 23:10:54 -08002992 if (copy_from_user(&kifr, ifr32, sizeof(struct compat_ifreq)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002993 return -EFAULT;
2994
2995 old_fs = get_fs();
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002996 set_fs(KERNEL_DS);
stephen hemmingerc3f52ae2011-02-23 09:06:48 +00002997 err = dev_ioctl(net, cmd,
2998 (struct ifreq __user __force *) &kifr);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07002999 set_fs(old_fs);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003000
3001 return err;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003002 default:
Linus Torvalds07d106d2012-01-05 15:40:12 -08003003 return -ENOIOCTLCMD;
Joe Perchesccbd6a52010-05-14 10:58:26 +00003004 }
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003005}
3006
Ben Hutchings590d4692013-11-18 17:04:13 +00003007/* Handle ioctls that use ifreq::ifr_data and just need struct ifreq converted */
3008static int compat_ifr_data_ioctl(struct net *net, unsigned int cmd,
Arnd Bergmann6b960182009-11-06 23:10:54 -08003009 struct compat_ifreq __user *u_ifreq32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003010{
3011 struct ifreq __user *u_ifreq64;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003012 char tmp_buf[IFNAMSIZ];
3013 void __user *data64;
3014 u32 data32;
3015
3016 if (copy_from_user(&tmp_buf[0], &(u_ifreq32->ifr_ifrn.ifrn_name[0]),
3017 IFNAMSIZ))
3018 return -EFAULT;
Ben Hutchings417c3522013-11-18 17:04:58 +00003019 if (get_user(data32, &u_ifreq32->ifr_ifru.ifru_data))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003020 return -EFAULT;
3021 data64 = compat_ptr(data32);
3022
3023 u_ifreq64 = compat_alloc_user_space(sizeof(*u_ifreq64));
3024
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003025 if (copy_to_user(&u_ifreq64->ifr_ifrn.ifrn_name[0], &tmp_buf[0],
3026 IFNAMSIZ))
3027 return -EFAULT;
Ben Hutchings417c3522013-11-18 17:04:58 +00003028 if (put_user(data64, &u_ifreq64->ifr_ifru.ifru_data))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003029 return -EFAULT;
3030
Arnd Bergmann6b960182009-11-06 23:10:54 -08003031 return dev_ioctl(net, cmd, u_ifreq64);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003032}
3033
Arnd Bergmann6b960182009-11-06 23:10:54 -08003034static int dev_ifsioc(struct net *net, struct socket *sock,
3035 unsigned int cmd, struct compat_ifreq __user *uifr32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003036{
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003037 struct ifreq __user *uifr;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003038 int err;
3039
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003040 uifr = compat_alloc_user_space(sizeof(*uifr));
3041 if (copy_in_user(uifr, uifr32, sizeof(*uifr32)))
3042 return -EFAULT;
3043
3044 err = sock_do_ioctl(net, sock, cmd, (unsigned long)uifr);
3045
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003046 if (!err) {
3047 switch (cmd) {
3048 case SIOCGIFFLAGS:
3049 case SIOCGIFMETRIC:
3050 case SIOCGIFMTU:
3051 case SIOCGIFMEM:
3052 case SIOCGIFHWADDR:
3053 case SIOCGIFINDEX:
3054 case SIOCGIFADDR:
3055 case SIOCGIFBRDADDR:
3056 case SIOCGIFDSTADDR:
3057 case SIOCGIFNETMASK:
Arnd Bergmannfab25322009-11-08 20:56:21 -08003058 case SIOCGIFPFLAGS:
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003059 case SIOCGIFTXQLEN:
Arnd Bergmannfab25322009-11-08 20:56:21 -08003060 case SIOCGMIIPHY:
3061 case SIOCGMIIREG:
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003062 if (copy_in_user(uifr32, uifr, sizeof(*uifr32)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003063 err = -EFAULT;
3064 break;
3065 }
3066 }
3067 return err;
3068}
3069
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003070static int compat_sioc_ifmap(struct net *net, unsigned int cmd,
3071 struct compat_ifreq __user *uifr32)
3072{
3073 struct ifreq ifr;
3074 struct compat_ifmap __user *uifmap32;
3075 mm_segment_t old_fs;
3076 int err;
3077
3078 uifmap32 = &uifr32->ifr_ifru.ifru_map;
3079 err = copy_from_user(&ifr, uifr32, sizeof(ifr.ifr_name));
Mathieu Desnoyers3ddc5b42013-09-11 14:23:18 -07003080 err |= get_user(ifr.ifr_map.mem_start, &uifmap32->mem_start);
3081 err |= get_user(ifr.ifr_map.mem_end, &uifmap32->mem_end);
3082 err |= get_user(ifr.ifr_map.base_addr, &uifmap32->base_addr);
3083 err |= get_user(ifr.ifr_map.irq, &uifmap32->irq);
3084 err |= get_user(ifr.ifr_map.dma, &uifmap32->dma);
3085 err |= get_user(ifr.ifr_map.port, &uifmap32->port);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003086 if (err)
3087 return -EFAULT;
3088
3089 old_fs = get_fs();
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003090 set_fs(KERNEL_DS);
stephen hemmingerc3f52ae2011-02-23 09:06:48 +00003091 err = dev_ioctl(net, cmd, (void __user __force *)&ifr);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003092 set_fs(old_fs);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003093
3094 if (cmd == SIOCGIFMAP && !err) {
3095 err = copy_to_user(uifr32, &ifr, sizeof(ifr.ifr_name));
Mathieu Desnoyers3ddc5b42013-09-11 14:23:18 -07003096 err |= put_user(ifr.ifr_map.mem_start, &uifmap32->mem_start);
3097 err |= put_user(ifr.ifr_map.mem_end, &uifmap32->mem_end);
3098 err |= put_user(ifr.ifr_map.base_addr, &uifmap32->base_addr);
3099 err |= put_user(ifr.ifr_map.irq, &uifmap32->irq);
3100 err |= put_user(ifr.ifr_map.dma, &uifmap32->dma);
3101 err |= put_user(ifr.ifr_map.port, &uifmap32->port);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003102 if (err)
3103 err = -EFAULT;
3104 }
3105 return err;
3106}
3107
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003108struct rtentry32 {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003109 u32 rt_pad1;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003110 struct sockaddr rt_dst; /* target address */
3111 struct sockaddr rt_gateway; /* gateway addr (RTF_GATEWAY) */
3112 struct sockaddr rt_genmask; /* target network mask (IP) */
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003113 unsigned short rt_flags;
3114 short rt_pad2;
3115 u32 rt_pad3;
3116 unsigned char rt_tos;
3117 unsigned char rt_class;
3118 short rt_pad4;
3119 short rt_metric; /* +1 for binary compatibility! */
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003120 /* char * */ u32 rt_dev; /* forcing the device at add */
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003121 u32 rt_mtu; /* per route MTU/Window */
3122 u32 rt_window; /* Window clamping */
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003123 unsigned short rt_irtt; /* Initial RTT */
3124};
3125
3126struct in6_rtmsg32 {
3127 struct in6_addr rtmsg_dst;
3128 struct in6_addr rtmsg_src;
3129 struct in6_addr rtmsg_gateway;
3130 u32 rtmsg_type;
3131 u16 rtmsg_dst_len;
3132 u16 rtmsg_src_len;
3133 u32 rtmsg_metric;
3134 u32 rtmsg_info;
3135 u32 rtmsg_flags;
3136 s32 rtmsg_ifindex;
3137};
3138
Arnd Bergmann6b960182009-11-06 23:10:54 -08003139static int routing_ioctl(struct net *net, struct socket *sock,
3140 unsigned int cmd, void __user *argp)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003141{
3142 int ret;
3143 void *r = NULL;
3144 struct in6_rtmsg r6;
3145 struct rtentry r4;
3146 char devname[16];
3147 u32 rtdev;
3148 mm_segment_t old_fs = get_fs();
3149
Arnd Bergmann6b960182009-11-06 23:10:54 -08003150 if (sock && sock->sk && sock->sk->sk_family == AF_INET6) { /* ipv6 */
3151 struct in6_rtmsg32 __user *ur6 = argp;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003152 ret = copy_from_user(&r6.rtmsg_dst, &(ur6->rtmsg_dst),
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003153 3 * sizeof(struct in6_addr));
Mathieu Desnoyers3ddc5b42013-09-11 14:23:18 -07003154 ret |= get_user(r6.rtmsg_type, &(ur6->rtmsg_type));
3155 ret |= get_user(r6.rtmsg_dst_len, &(ur6->rtmsg_dst_len));
3156 ret |= get_user(r6.rtmsg_src_len, &(ur6->rtmsg_src_len));
3157 ret |= get_user(r6.rtmsg_metric, &(ur6->rtmsg_metric));
3158 ret |= get_user(r6.rtmsg_info, &(ur6->rtmsg_info));
3159 ret |= get_user(r6.rtmsg_flags, &(ur6->rtmsg_flags));
3160 ret |= get_user(r6.rtmsg_ifindex, &(ur6->rtmsg_ifindex));
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003161
3162 r = (void *) &r6;
3163 } else { /* ipv4 */
Arnd Bergmann6b960182009-11-06 23:10:54 -08003164 struct rtentry32 __user *ur4 = argp;
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003165 ret = copy_from_user(&r4.rt_dst, &(ur4->rt_dst),
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003166 3 * sizeof(struct sockaddr));
Mathieu Desnoyers3ddc5b42013-09-11 14:23:18 -07003167 ret |= get_user(r4.rt_flags, &(ur4->rt_flags));
3168 ret |= get_user(r4.rt_metric, &(ur4->rt_metric));
3169 ret |= get_user(r4.rt_mtu, &(ur4->rt_mtu));
3170 ret |= get_user(r4.rt_window, &(ur4->rt_window));
3171 ret |= get_user(r4.rt_irtt, &(ur4->rt_irtt));
3172 ret |= get_user(rtdev, &(ur4->rt_dev));
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003173 if (rtdev) {
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003174 ret |= copy_from_user(devname, compat_ptr(rtdev), 15);
stephen hemmingerc3f52ae2011-02-23 09:06:48 +00003175 r4.rt_dev = (char __user __force *)devname;
3176 devname[15] = 0;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003177 } else
3178 r4.rt_dev = NULL;
3179
3180 r = (void *) &r4;
3181 }
3182
3183 if (ret) {
3184 ret = -EFAULT;
3185 goto out;
3186 }
3187
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003188 set_fs(KERNEL_DS);
Arnd Bergmann6b960182009-11-06 23:10:54 -08003189 ret = sock_do_ioctl(net, sock, cmd, (unsigned long) r);
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003190 set_fs(old_fs);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003191
3192out:
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003193 return ret;
3194}
3195
3196/* Since old style bridge ioctl's endup using SIOCDEVPRIVATE
3197 * for some operations; this forces use of the newer bridge-utils that
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003198 * use compatible ioctls
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003199 */
Arnd Bergmann6b960182009-11-06 23:10:54 -08003200static int old_bridge_ioctl(compat_ulong_t __user *argp)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003201{
Arnd Bergmann6b960182009-11-06 23:10:54 -08003202 compat_ulong_t tmp;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003203
Arnd Bergmann6b960182009-11-06 23:10:54 -08003204 if (get_user(tmp, argp))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003205 return -EFAULT;
3206 if (tmp == BRCTL_GET_VERSION)
3207 return BRCTL_VERSION + 1;
3208 return -EINVAL;
3209}
3210
Arnd Bergmann6b960182009-11-06 23:10:54 -08003211static int compat_sock_ioctl_trans(struct file *file, struct socket *sock,
3212 unsigned int cmd, unsigned long arg)
3213{
3214 void __user *argp = compat_ptr(arg);
3215 struct sock *sk = sock->sk;
3216 struct net *net = sock_net(sk);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003217
Arnd Bergmann6b960182009-11-06 23:10:54 -08003218 if (cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15))
Ben Hutchings590d4692013-11-18 17:04:13 +00003219 return compat_ifr_data_ioctl(net, cmd, argp);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003220
Arnd Bergmann6b960182009-11-06 23:10:54 -08003221 switch (cmd) {
3222 case SIOCSIFBR:
3223 case SIOCGIFBR:
3224 return old_bridge_ioctl(argp);
3225 case SIOCGIFNAME:
3226 return dev_ifname32(net, argp);
3227 case SIOCGIFCONF:
3228 return dev_ifconf(net, argp);
3229 case SIOCETHTOOL:
3230 return ethtool_ioctl(net, argp);
Arnd Bergmann7a50a242009-11-08 20:57:03 -08003231 case SIOCWANDEV:
3232 return compat_siocwandev(net, argp);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003233 case SIOCGIFMAP:
3234 case SIOCSIFMAP:
3235 return compat_sioc_ifmap(net, cmd, argp);
Arnd Bergmann6b960182009-11-06 23:10:54 -08003236 case SIOCBONDENSLAVE:
3237 case SIOCBONDRELEASE:
3238 case SIOCBONDSETHWADDR:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003239 case SIOCBONDCHANGEACTIVE:
3240 return bond_ioctl(net, cmd, argp);
3241 case SIOCADDRT:
3242 case SIOCDELRT:
3243 return routing_ioctl(net, sock, cmd, argp);
3244 case SIOCGSTAMP:
3245 return do_siocgstamp(net, sock, cmd, argp);
3246 case SIOCGSTAMPNS:
3247 return do_siocgstampns(net, sock, cmd, argp);
Ben Hutchings590d4692013-11-18 17:04:13 +00003248 case SIOCBONDSLAVEINFOQUERY:
3249 case SIOCBONDINFOQUERY:
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00003250 case SIOCSHWTSTAMP:
Ben Hutchingsfd468c72013-11-14 01:19:29 +00003251 case SIOCGHWTSTAMP:
Ben Hutchings590d4692013-11-18 17:04:13 +00003252 return compat_ifr_data_ioctl(net, cmd, argp);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003253
Arnd Bergmann6b960182009-11-06 23:10:54 -08003254 case FIOSETOWN:
3255 case SIOCSPGRP:
3256 case FIOGETOWN:
3257 case SIOCGPGRP:
3258 case SIOCBRADDBR:
3259 case SIOCBRDELBR:
3260 case SIOCGIFVLAN:
3261 case SIOCSIFVLAN:
3262 case SIOCADDDLCI:
3263 case SIOCDELDLCI:
3264 return sock_ioctl(file, cmd, arg);
3265
3266 case SIOCGIFFLAGS:
3267 case SIOCSIFFLAGS:
3268 case SIOCGIFMETRIC:
3269 case SIOCSIFMETRIC:
3270 case SIOCGIFMTU:
3271 case SIOCSIFMTU:
3272 case SIOCGIFMEM:
3273 case SIOCSIFMEM:
3274 case SIOCGIFHWADDR:
3275 case SIOCSIFHWADDR:
3276 case SIOCADDMULTI:
3277 case SIOCDELMULTI:
3278 case SIOCGIFINDEX:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003279 case SIOCGIFADDR:
3280 case SIOCSIFADDR:
3281 case SIOCSIFHWBROADCAST:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003282 case SIOCDIFADDR:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003283 case SIOCGIFBRDADDR:
3284 case SIOCSIFBRDADDR:
3285 case SIOCGIFDSTADDR:
3286 case SIOCSIFDSTADDR:
3287 case SIOCGIFNETMASK:
3288 case SIOCSIFNETMASK:
3289 case SIOCSIFPFLAGS:
3290 case SIOCGIFPFLAGS:
3291 case SIOCGIFTXQLEN:
3292 case SIOCSIFTXQLEN:
3293 case SIOCBRADDIF:
3294 case SIOCBRDELIF:
Arnd Bergmann9177efd2009-11-06 08:09:09 +00003295 case SIOCSIFNAME:
3296 case SIOCGMIIPHY:
3297 case SIOCGMIIREG:
3298 case SIOCSMIIREG:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003299 return dev_ifsioc(net, sock, cmd, argp);
Arnd Bergmann9177efd2009-11-06 08:09:09 +00003300
Arnd Bergmann6b960182009-11-06 23:10:54 -08003301 case SIOCSARP:
3302 case SIOCGARP:
3303 case SIOCDARP:
Arnd Bergmann6b960182009-11-06 23:10:54 -08003304 case SIOCATMARK:
Arnd Bergmann9177efd2009-11-06 08:09:09 +00003305 return sock_do_ioctl(net, sock, cmd, arg);
3306 }
3307
Arnd Bergmann6b960182009-11-06 23:10:54 -08003308 return -ENOIOCTLCMD;
3309}
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003310
Eric Dumazet95c96172012-04-15 05:58:06 +00003311static long compat_sock_ioctl(struct file *file, unsigned int cmd,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07003312 unsigned long arg)
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003313{
3314 struct socket *sock = file->private_data;
3315 int ret = -ENOIOCTLCMD;
David S. Miller87de87d2008-06-03 09:14:03 -07003316 struct sock *sk;
3317 struct net *net;
3318
3319 sk = sock->sk;
3320 net = sock_net(sk);
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003321
3322 if (sock->ops->compat_ioctl)
3323 ret = sock->ops->compat_ioctl(sock, cmd, arg);
3324
David S. Miller87de87d2008-06-03 09:14:03 -07003325 if (ret == -ENOIOCTLCMD &&
3326 (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST))
3327 ret = compat_wext_handle_ioctl(net, cmd, arg);
3328
Arnd Bergmann6b960182009-11-06 23:10:54 -08003329 if (ret == -ENOIOCTLCMD)
3330 ret = compat_sock_ioctl_trans(file, sock, cmd, arg);
3331
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003332 return ret;
3333}
3334#endif
3335
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003336int kernel_bind(struct socket *sock, struct sockaddr *addr, int addrlen)
3337{
3338 return sock->ops->bind(sock, addr, addrlen);
3339}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003340EXPORT_SYMBOL(kernel_bind);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003341
3342int kernel_listen(struct socket *sock, int backlog)
3343{
3344 return sock->ops->listen(sock, backlog);
3345}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003346EXPORT_SYMBOL(kernel_listen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003347
3348int kernel_accept(struct socket *sock, struct socket **newsock, int flags)
3349{
3350 struct sock *sk = sock->sk;
3351 int err;
3352
3353 err = sock_create_lite(sk->sk_family, sk->sk_type, sk->sk_protocol,
3354 newsock);
3355 if (err < 0)
3356 goto done;
3357
3358 err = sock->ops->accept(sock, *newsock, flags);
3359 if (err < 0) {
3360 sock_release(*newsock);
Tony Battersbyfa8705b2007-10-10 21:09:04 -07003361 *newsock = NULL;
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003362 goto done;
3363 }
3364
3365 (*newsock)->ops = sock->ops;
Wei Yongjun1b085342008-12-18 19:35:10 -08003366 __module_get((*newsock)->ops->owner);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003367
3368done:
3369 return err;
3370}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003371EXPORT_SYMBOL(kernel_accept);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003372
3373int kernel_connect(struct socket *sock, struct sockaddr *addr, int addrlen,
YOSHIFUJI Hideaki4768fbc2007-02-09 23:25:31 +09003374 int flags)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003375{
3376 return sock->ops->connect(sock, addr, addrlen, flags);
3377}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003378EXPORT_SYMBOL(kernel_connect);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003379
3380int kernel_getsockname(struct socket *sock, struct sockaddr *addr,
3381 int *addrlen)
3382{
3383 return sock->ops->getname(sock, addr, addrlen, 0);
3384}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003385EXPORT_SYMBOL(kernel_getsockname);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003386
3387int kernel_getpeername(struct socket *sock, struct sockaddr *addr,
3388 int *addrlen)
3389{
3390 return sock->ops->getname(sock, addr, addrlen, 1);
3391}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003392EXPORT_SYMBOL(kernel_getpeername);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003393
3394int kernel_getsockopt(struct socket *sock, int level, int optname,
3395 char *optval, int *optlen)
3396{
3397 mm_segment_t oldfs = get_fs();
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003398 char __user *uoptval;
3399 int __user *uoptlen;
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003400 int err;
3401
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003402 uoptval = (char __user __force *) optval;
3403 uoptlen = (int __user __force *) optlen;
3404
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003405 set_fs(KERNEL_DS);
3406 if (level == SOL_SOCKET)
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003407 err = sock_getsockopt(sock, level, optname, uoptval, uoptlen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003408 else
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003409 err = sock->ops->getsockopt(sock, level, optname, uoptval,
3410 uoptlen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003411 set_fs(oldfs);
3412 return err;
3413}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003414EXPORT_SYMBOL(kernel_getsockopt);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003415
3416int kernel_setsockopt(struct socket *sock, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07003417 char *optval, unsigned int optlen)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003418{
3419 mm_segment_t oldfs = get_fs();
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003420 char __user *uoptval;
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003421 int err;
3422
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003423 uoptval = (char __user __force *) optval;
3424
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003425 set_fs(KERNEL_DS);
3426 if (level == SOL_SOCKET)
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003427 err = sock_setsockopt(sock, level, optname, uoptval, optlen);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003428 else
Namhyung Kimfb8621b2010-09-07 03:55:00 +00003429 err = sock->ops->setsockopt(sock, level, optname, uoptval,
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003430 optlen);
3431 set_fs(oldfs);
3432 return err;
3433}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003434EXPORT_SYMBOL(kernel_setsockopt);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003435
3436int kernel_sendpage(struct socket *sock, struct page *page, int offset,
3437 size_t size, int flags)
3438{
3439 if (sock->ops->sendpage)
3440 return sock->ops->sendpage(sock, page, offset, size, flags);
3441
3442 return sock_no_sendpage(sock, page, offset, size, flags);
3443}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003444EXPORT_SYMBOL(kernel_sendpage);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003445
3446int kernel_sock_ioctl(struct socket *sock, int cmd, unsigned long arg)
3447{
3448 mm_segment_t oldfs = get_fs();
3449 int err;
3450
3451 set_fs(KERNEL_DS);
3452 err = sock->ops->ioctl(sock, cmd, arg);
3453 set_fs(oldfs);
3454
3455 return err;
3456}
Eric Dumazetc6d409c2010-06-03 20:03:40 -07003457EXPORT_SYMBOL(kernel_sock_ioctl);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003458
Trond Myklebust91cf45f2007-11-12 18:10:39 -08003459int kernel_sock_shutdown(struct socket *sock, enum sock_shutdown_cmd how)
3460{
3461 return sock->ops->shutdown(sock, how);
3462}
Trond Myklebust91cf45f2007-11-12 18:10:39 -08003463EXPORT_SYMBOL(kernel_sock_shutdown);