blob: dbfdfa96d29b850c2f9a198cd494069772dbafc6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * NET An implementation of the SOCKET network access protocol.
3 *
4 * Version: @(#)socket.c 1.1.93 18/02/95
5 *
6 * Authors: Orest Zborowski, <obz@Kodak.COM>
Jesper Juhl02c30a82005-05-05 16:16:16 -07007 * Ross Biro
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
9 *
10 * Fixes:
11 * Anonymous : NOTSOCK/BADF cleanup. Error fix in
12 * shutdown()
13 * Alan Cox : verify_area() fixes
14 * Alan Cox : Removed DDI
15 * Jonathan Kamens : SOCK_DGRAM reconnect bug
16 * Alan Cox : Moved a load of checks to the very
17 * top level.
18 * Alan Cox : Move address structures to/from user
19 * mode above the protocol layers.
20 * Rob Janssen : Allow 0 length sends.
21 * Alan Cox : Asynchronous I/O support (cribbed from the
22 * tty drivers).
23 * Niibe Yutaka : Asynchronous I/O for writes (4.4BSD style)
24 * Jeff Uphoff : Made max number of sockets command-line
25 * configurable.
26 * Matti Aarnio : Made the number of sockets dynamic,
27 * to be allocated when needed, and mr.
28 * Uphoff's max is used as max to be
29 * allowed to allocate.
30 * Linus : Argh. removed all the socket allocation
31 * altogether: it's in the inode now.
32 * Alan Cox : Made sock_alloc()/sock_release() public
33 * for NetROM and future kernel nfsd type
34 * stuff.
35 * Alan Cox : sendmsg/recvmsg basics.
36 * Tom Dyas : Export net symbols.
37 * Marcin Dalecki : Fixed problems with CONFIG_NET="n".
38 * Alan Cox : Added thread locking to sys_* calls
39 * for sockets. May have errors at the
40 * moment.
41 * Kevin Buhr : Fixed the dumb errors in the above.
42 * Andi Kleen : Some small cleanups, optimizations,
43 * and fixed a copy_from_user() bug.
44 * Tigran Aivazian : sys_send(args) calls sys_sendto(args, NULL, 0)
Stephen Hemminger89bddce2006-09-01 00:19:31 -070045 * Tigran Aivazian : Made listen(2) backlog sanity checks
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 * protocol-independent
47 *
48 *
49 * This program is free software; you can redistribute it and/or
50 * modify it under the terms of the GNU General Public License
51 * as published by the Free Software Foundation; either version
52 * 2 of the License, or (at your option) any later version.
53 *
54 *
55 * This module is effectively the top level interface to the BSD socket
Stephen Hemminger89bddce2006-09-01 00:19:31 -070056 * paradigm.
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 *
58 * Based upon Swansea University Computer Society NET3.039
59 */
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#include <linux/socket.h>
63#include <linux/file.h>
64#include <linux/net.h>
65#include <linux/interrupt.h>
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -070066#include <linux/thread_info.h>
Stephen Hemminger55737fd2006-09-01 00:23:39 -070067#include <linux/rcupdate.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#include <linux/netdevice.h>
69#include <linux/proc_fs.h>
70#include <linux/seq_file.h>
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -080071#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#include <linux/wanrouter.h>
73#include <linux/if_bridge.h>
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -030074#include <linux/if_frad.h>
75#include <linux/if_vlan.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#include <linux/init.h>
77#include <linux/poll.h>
78#include <linux/cache.h>
79#include <linux/module.h>
80#include <linux/highmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#include <linux/mount.h>
82#include <linux/security.h>
83#include <linux/syscalls.h>
84#include <linux/compat.h>
85#include <linux/kmod.h>
David Woodhouse3ec3b2f2005-05-17 12:08:48 +010086#include <linux/audit.h>
Adrian Bunkd86b5e02006-01-21 00:46:55 +010087#include <linux/wireless.h>
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -070088#include <linux/nsproxy.h>
Nick Black1fd7317d2009-09-22 16:43:33 -070089#include <linux/magic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
91#include <asm/uaccess.h>
92#include <asm/unistd.h>
93
94#include <net/compat.h>
David S. Miller87de87d2008-06-03 09:14:03 -070095#include <net/wext.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
97#include <net/sock.h>
98#include <linux/netfilter.h>
99
Arnd Bergmann6b960182009-11-06 23:10:54 -0800100#include <linux/if_tun.h>
101#include <linux/ipv6_route.h>
102#include <linux/route.h>
Arnd Bergmann6b960182009-11-06 23:10:54 -0800103#include <linux/sockios.h>
104#include <linux/atalk.h>
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106static int sock_no_open(struct inode *irrelevant, struct file *dontcare);
Badari Pulavarty027445c2006-09-30 23:28:46 -0700107static ssize_t sock_aio_read(struct kiocb *iocb, const struct iovec *iov,
108 unsigned long nr_segs, loff_t pos);
109static ssize_t sock_aio_write(struct kiocb *iocb, const struct iovec *iov,
110 unsigned long nr_segs, loff_t pos);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700111static int sock_mmap(struct file *file, struct vm_area_struct *vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
113static int sock_close(struct inode *inode, struct file *file);
114static unsigned int sock_poll(struct file *file,
115 struct poll_table_struct *wait);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700116static long sock_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800117#ifdef CONFIG_COMPAT
118static long compat_sock_ioctl(struct file *file,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700119 unsigned int cmd, unsigned long arg);
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800120#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121static int sock_fasync(int fd, struct file *filp, int on);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122static ssize_t sock_sendpage(struct file *file, struct page *page,
123 int offset, size_t size, loff_t *ppos, int more);
Jens Axboe9c55e012007-11-06 23:30:13 -0800124static ssize_t sock_splice_read(struct file *file, loff_t *ppos,
125 struct pipe_inode_info *pipe, size_t len,
126 unsigned int flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128/*
129 * Socket files have a set of 'special' operations as well as the generic file ones. These don't appear
130 * in the operation structures but are done directly via the socketcall() multiplexor.
131 */
132
Arjan van de Venda7071d2007-02-12 00:55:36 -0800133static const struct file_operations socket_file_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 .owner = THIS_MODULE,
135 .llseek = no_llseek,
136 .aio_read = sock_aio_read,
137 .aio_write = sock_aio_write,
138 .poll = sock_poll,
139 .unlocked_ioctl = sock_ioctl,
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800140#ifdef CONFIG_COMPAT
141 .compat_ioctl = compat_sock_ioctl,
142#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 .mmap = sock_mmap,
144 .open = sock_no_open, /* special open code to disallow open via /proc */
145 .release = sock_close,
146 .fasync = sock_fasync,
Jens Axboe5274f052006-03-30 15:15:30 +0200147 .sendpage = sock_sendpage,
148 .splice_write = generic_splice_sendpage,
Jens Axboe9c55e012007-11-06 23:30:13 -0800149 .splice_read = sock_splice_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150};
151
152/*
153 * The protocol list. Each protocol is registered in here.
154 */
155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156static DEFINE_SPINLOCK(net_family_lock);
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -0700157static const struct net_proto_family *net_families[NPROTO] __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159/*
160 * Statistics counters of the socket lists
161 */
162
163static DEFINE_PER_CPU(int, sockets_in_use) = 0;
164
165/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700166 * Support routines.
167 * Move socket addresses back and forth across the kernel/user
168 * divide and look after the messy bits.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 */
170
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700171#define MAX_SOCK_ADDR 128 /* 108 for Unix domain -
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 16 for IP, 16 for IPX,
173 24 for IPv6,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700174 about 80 for AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 must be at least one bigger than
176 the AF_UNIX size (see net/unix/af_unix.c
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700177 :unix_mkname()).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180/**
181 * move_addr_to_kernel - copy a socket address into kernel space
182 * @uaddr: Address in user space
183 * @kaddr: Address in kernel space
184 * @ulen: Length in user space
185 *
186 * The address is copied into kernel space. If the provided address is
187 * too long an error code of -EINVAL is returned. If the copy gives
188 * invalid addresses -EFAULT is returned. On a success 0 is returned.
189 */
190
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -0700191int move_addr_to_kernel(void __user *uaddr, int ulen, struct sockaddr *kaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192{
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -0700193 if (ulen < 0 || ulen > sizeof(struct sockaddr_storage))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700195 if (ulen == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 return 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700197 if (copy_from_user(kaddr, uaddr, ulen))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 return -EFAULT;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +0100199 return audit_sockaddr(ulen, kaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200}
201
202/**
203 * move_addr_to_user - copy an address to user space
204 * @kaddr: kernel space address
205 * @klen: length of address in kernel
206 * @uaddr: user space address
207 * @ulen: pointer to user length field
208 *
209 * The value pointed to by ulen on entry is the buffer length available.
210 * This is overwritten with the buffer space used. -EINVAL is returned
211 * if an overlong buffer is specified or a negative buffer size. -EFAULT
212 * is returned if either the buffer or the length field are not
213 * accessible.
214 * After copying the data up to the limit the user specifies, the true
215 * length of the data is written over the length limit the user
216 * specified. Zero is returned for a success.
217 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700218
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -0700219int move_addr_to_user(struct sockaddr *kaddr, int klen, void __user *uaddr,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700220 int __user *ulen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221{
222 int err;
223 int len;
224
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;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -0700230 if (len < 0 || len > sizeof(struct sockaddr_storage))
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;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700250
Christoph Lametere94b1762006-12-06 20:33:17 -0800251 ei = kmem_cache_alloc(sock_inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 if (!ei)
253 return NULL;
254 init_waitqueue_head(&ei->socket.wait);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 ei->socket.fasync_list = NULL;
257 ei->socket.state = SS_UNCONNECTED;
258 ei->socket.flags = 0;
259 ei->socket.ops = NULL;
260 ei->socket.sk = NULL;
261 ei->socket.file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
263 return &ei->vfs_inode;
264}
265
266static void sock_destroy_inode(struct inode *inode)
267{
268 kmem_cache_free(sock_inode_cachep,
269 container_of(inode, struct socket_alloc, vfs_inode));
270}
271
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700272static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273{
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700274 struct socket_alloc *ei = (struct socket_alloc *)foo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Christoph Lametera35afb82007-05-16 22:10:57 -0700276 inode_init_once(&ei->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277}
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700278
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279static int init_inodecache(void)
280{
281 sock_inode_cachep = kmem_cache_create("sock_inode_cache",
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700282 sizeof(struct socket_alloc),
283 0,
284 (SLAB_HWCACHE_ALIGN |
285 SLAB_RECLAIM_ACCOUNT |
286 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +0900287 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 if (sock_inode_cachep == NULL)
289 return -ENOMEM;
290 return 0;
291}
292
Alexey Dobriyanb87221d2009-09-21 17:01:09 -0700293static const struct super_operations sockfs_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 .alloc_inode = sock_alloc_inode,
295 .destroy_inode =sock_destroy_inode,
296 .statfs = simple_statfs,
297};
298
David Howells454e2392006-06-23 02:02:57 -0700299static int sockfs_get_sb(struct file_system_type *fs_type,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700300 int flags, const char *dev_name, void *data,
301 struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302{
David Howells454e2392006-06-23 02:02:57 -0700303 return get_sb_pseudo(fs_type, "socket:", &sockfs_ops, SOCKFS_MAGIC,
304 mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305}
306
Eric Dumazetba899662005-08-26 12:05:31 -0700307static struct vfsmount *sock_mnt __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
309static struct file_system_type sock_fs_type = {
310 .name = "sockfs",
311 .get_sb = sockfs_get_sb,
312 .kill_sb = kill_anon_super,
313};
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700314
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315static int sockfs_delete_dentry(struct dentry *dentry)
316{
Eric Dumazet304e61e2006-12-06 20:38:49 -0800317 /*
318 * At creation time, we pretended this dentry was hashed
319 * (by clearing DCACHE_UNHASHED bit in d_flags)
320 * At delete time, we restore the truth : not hashed.
321 * (so that dput() can proceed correctly)
322 */
323 dentry->d_flags |= DCACHE_UNHASHED;
324 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325}
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700326
327/*
328 * sockfs_dname() is called from d_path().
329 */
330static char *sockfs_dname(struct dentry *dentry, char *buffer, int buflen)
331{
332 return dynamic_dname(dentry, buffer, buflen, "socket:[%lu]",
333 dentry->d_inode->i_ino);
334}
335
Al Viro3ba13d12009-02-20 06:02:22 +0000336static const struct dentry_operations sockfs_dentry_operations = {
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700337 .d_delete = sockfs_delete_dentry,
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700338 .d_dname = sockfs_dname,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339};
340
341/*
342 * Obtains the first available file descriptor and sets it up for use.
343 *
David S. Miller39d8c1b2006-03-20 17:13:49 -0800344 * These functions create file structures and maps them to fd space
345 * of the current process. On success it returns file descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 * and file struct implicitly stored in sock->file.
347 * Note that another thread may close file descriptor before we return
348 * from this function. We use the fact that now we do not refer
349 * to socket after mapping. If one day we will need it, this
350 * function will increment ref. count on file by 1.
351 *
352 * In any case returned fd MAY BE not valid!
353 * This race condition is unavoidable
354 * with shared fd spaces, we cannot solve it inside kernel,
355 * but we take care of internal coherence yet.
356 */
357
Al Viro7cbe66b2009-08-05 19:59:08 +0400358static int sock_alloc_file(struct socket *sock, struct file **f, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359{
Al Viro7cbe66b2009-08-05 19:59:08 +0400360 struct qstr name = { .name = "" };
Al Viro2c48b9c2009-08-09 00:52:35 +0400361 struct path path;
Al Viro7cbe66b2009-08-05 19:59:08 +0400362 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 int fd;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800364
Ulrich Dreppera677a032008-07-23 21:29:17 -0700365 fd = get_unused_fd_flags(flags);
Al Viro7cbe66b2009-08-05 19:59:08 +0400366 if (unlikely(fd < 0))
367 return fd;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800368
Al Viro2c48b9c2009-08-09 00:52:35 +0400369 path.dentry = d_alloc(sock_mnt->mnt_sb->s_root, &name);
370 if (unlikely(!path.dentry)) {
Al Viro7cbe66b2009-08-05 19:59:08 +0400371 put_unused_fd(fd);
David S. Miller39d8c1b2006-03-20 17:13:49 -0800372 return -ENOMEM;
Al Viro7cbe66b2009-08-05 19:59:08 +0400373 }
Al Viro2c48b9c2009-08-09 00:52:35 +0400374 path.mnt = mntget(sock_mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Al Viro2c48b9c2009-08-09 00:52:35 +0400376 path.dentry->d_op = &sockfs_dentry_operations;
Eric Dumazet304e61e2006-12-06 20:38:49 -0800377 /*
378 * We dont want to push this dentry into global dentry hash table.
379 * We pretend dentry is already hashed, by unsetting DCACHE_UNHASHED
380 * This permits a working /proc/$pid/fd/XXX on sockets
381 */
Al Viro2c48b9c2009-08-09 00:52:35 +0400382 path.dentry->d_flags &= ~DCACHE_UNHASHED;
383 d_instantiate(path.dentry, SOCK_INODE(sock));
Al Virocc3808f2009-08-06 09:43:59 +0400384 SOCK_INODE(sock)->i_fop = &socket_file_ops;
385
Al Viro2c48b9c2009-08-09 00:52:35 +0400386 file = alloc_file(&path, FMODE_READ | FMODE_WRITE,
Al Virocc3808f2009-08-06 09:43:59 +0400387 &socket_file_ops);
388 if (unlikely(!file)) {
389 /* drop dentry, keep inode */
390 atomic_inc(&path.dentry->d_inode->i_count);
Al Viro2c48b9c2009-08-09 00:52:35 +0400391 path_put(&path);
Al Virocc3808f2009-08-06 09:43:59 +0400392 put_unused_fd(fd);
393 return -ENFILE;
394 }
David S. Miller39d8c1b2006-03-20 17:13:49 -0800395
396 sock->file = file;
Ulrich Drepper77d27202008-07-23 21:29:35 -0700397 file->f_flags = O_RDWR | (flags & O_NONBLOCK);
David S. Miller39d8c1b2006-03-20 17:13:49 -0800398 file->f_pos = 0;
399 file->private_data = sock;
400
Al Viro7cbe66b2009-08-05 19:59:08 +0400401 *f = file;
402 return fd;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800403}
404
Ulrich Dreppera677a032008-07-23 21:29:17 -0700405int sock_map_fd(struct socket *sock, int flags)
David S. Miller39d8c1b2006-03-20 17:13:49 -0800406{
407 struct file *newfile;
Al Viro7cbe66b2009-08-05 19:59:08 +0400408 int fd = sock_alloc_file(sock, &newfile, flags);
David S. Miller39d8c1b2006-03-20 17:13:49 -0800409
Al Viro7cbe66b2009-08-05 19:59:08 +0400410 if (likely(fd >= 0))
David S. Miller39d8c1b2006-03-20 17:13:49 -0800411 fd_install(fd, newfile);
Al Viro7cbe66b2009-08-05 19:59:08 +0400412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 return fd;
414}
415
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800416static struct socket *sock_from_file(struct file *file, int *err)
417{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800418 if (file->f_op == &socket_file_ops)
419 return file->private_data; /* set in sock_map_fd */
420
Eric Dumazet23bb80d2007-02-08 14:59:57 -0800421 *err = -ENOTSOCK;
422 return NULL;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800423}
424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425/**
426 * sockfd_lookup - Go from a file number to its socket slot
427 * @fd: file handle
428 * @err: pointer to an error code return
429 *
430 * The file handle passed in is locked and the socket it is bound
431 * too is returned. If an error occurs the err pointer is overwritten
432 * with a negative errno code and NULL is returned. The function checks
433 * for both invalid handles and passing a handle which is not a socket.
434 *
435 * On a success the socket object pointer is returned.
436 */
437
438struct socket *sockfd_lookup(int fd, int *err)
439{
440 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 struct socket *sock;
442
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700443 file = fget(fd);
444 if (!file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 *err = -EBADF;
446 return NULL;
447 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700448
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800449 sock = sock_from_file(file, err);
450 if (!sock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 fput(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 return sock;
453}
454
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800455static struct socket *sockfd_lookup_light(int fd, int *err, int *fput_needed)
456{
457 struct file *file;
458 struct socket *sock;
459
Hua Zhong36725582006-04-19 15:25:02 -0700460 *err = -EBADF;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800461 file = fget_light(fd, fput_needed);
462 if (file) {
463 sock = sock_from_file(file, err);
464 if (sock)
465 return sock;
466 fput_light(file, *fput_needed);
467 }
468 return NULL;
469}
470
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471/**
472 * sock_alloc - allocate a socket
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700473 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 * Allocate a new inode and socket object. The two are bound together
475 * and initialised. The socket is then returned. If we are out of inodes
476 * NULL is returned.
477 */
478
479static struct socket *sock_alloc(void)
480{
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700481 struct inode *inode;
482 struct socket *sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
484 inode = new_inode(sock_mnt->mnt_sb);
485 if (!inode)
486 return NULL;
487
488 sock = SOCKET_I(inode);
489
Eric Dumazet29a020d2009-09-15 02:39:20 -0700490 kmemcheck_annotate_bitfield(sock, type);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700491 inode->i_mode = S_IFSOCK | S_IRWXUGO;
David Howells8192b0c2008-11-14 10:39:10 +1100492 inode->i_uid = current_fsuid();
493 inode->i_gid = current_fsgid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
Eric Dumazet4e694892009-04-04 16:41:09 -0700495 percpu_add(sockets_in_use, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 return sock;
497}
498
499/*
500 * In theory you can't get an open on this inode, but /proc provides
501 * a back door. Remember to keep it shut otherwise you'll let the
502 * creepy crawlies in.
503 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700504
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505static int sock_no_open(struct inode *irrelevant, struct file *dontcare)
506{
507 return -ENXIO;
508}
509
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800510const struct file_operations bad_sock_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 .owner = THIS_MODULE,
512 .open = sock_no_open,
513};
514
515/**
516 * sock_release - close a socket
517 * @sock: socket to close
518 *
519 * The socket is released from the protocol stack if it has a release
520 * callback, and the inode is then released if the socket is bound to
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700521 * an inode not a file.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700523
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524void sock_release(struct socket *sock)
525{
526 if (sock->ops) {
527 struct module *owner = sock->ops->owner;
528
529 sock->ops->release(sock);
530 sock->ops = NULL;
531 module_put(owner);
532 }
533
534 if (sock->fasync_list)
535 printk(KERN_ERR "sock_release: fasync list not empty!\n");
536
Eric Dumazet4e694892009-04-04 16:41:09 -0700537 percpu_sub(sockets_in_use, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 if (!sock->file) {
539 iput(SOCK_INODE(sock));
540 return;
541 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700542 sock->file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543}
544
Patrick Ohly20d49472009-02-12 05:03:38 +0000545int sock_tx_timestamp(struct msghdr *msg, struct sock *sk,
546 union skb_shared_tx *shtx)
547{
548 shtx->flags = 0;
549 if (sock_flag(sk, SOCK_TIMESTAMPING_TX_HARDWARE))
550 shtx->hardware = 1;
551 if (sock_flag(sk, SOCK_TIMESTAMPING_TX_SOFTWARE))
552 shtx->software = 1;
553 return 0;
554}
555EXPORT_SYMBOL(sock_tx_timestamp);
556
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700557static inline int __sock_sendmsg(struct kiocb *iocb, struct socket *sock,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 struct msghdr *msg, size_t size)
559{
560 struct sock_iocb *si = kiocb_to_siocb(iocb);
561 int err;
562
563 si->sock = sock;
564 si->scm = NULL;
565 si->msg = msg;
566 si->size = size;
567
568 err = security_socket_sendmsg(sock, msg, size);
569 if (err)
570 return err;
571
572 return sock->ops->sendmsg(iocb, sock, msg, size);
573}
574
575int sock_sendmsg(struct socket *sock, struct msghdr *msg, size_t size)
576{
577 struct kiocb iocb;
578 struct sock_iocb siocb;
579 int ret;
580
581 init_sync_kiocb(&iocb, NULL);
582 iocb.private = &siocb;
583 ret = __sock_sendmsg(&iocb, sock, msg, size);
584 if (-EIOCBQUEUED == ret)
585 ret = wait_on_sync_kiocb(&iocb);
586 return ret;
587}
588
589int kernel_sendmsg(struct socket *sock, struct msghdr *msg,
590 struct kvec *vec, size_t num, size_t size)
591{
592 mm_segment_t oldfs = get_fs();
593 int result;
594
595 set_fs(KERNEL_DS);
596 /*
597 * the following is safe, since for compiler definitions of kvec and
598 * iovec are identical, yielding the same in-core layout and alignment
599 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700600 msg->msg_iov = (struct iovec *)vec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 msg->msg_iovlen = num;
602 result = sock_sendmsg(sock, msg, size);
603 set_fs(oldfs);
604 return result;
605}
606
Patrick Ohly20d49472009-02-12 05:03:38 +0000607static int ktime2ts(ktime_t kt, struct timespec *ts)
608{
609 if (kt.tv64) {
610 *ts = ktime_to_timespec(kt);
611 return 1;
612 } else {
613 return 0;
614 }
615}
616
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700617/*
618 * called from sock_recv_timestamp() if sock_flag(sk, SOCK_RCVTSTAMP)
619 */
620void __sock_recv_timestamp(struct msghdr *msg, struct sock *sk,
621 struct sk_buff *skb)
622{
Patrick Ohly20d49472009-02-12 05:03:38 +0000623 int need_software_tstamp = sock_flag(sk, SOCK_RCVTSTAMP);
624 struct timespec ts[3];
625 int empty = 1;
626 struct skb_shared_hwtstamps *shhwtstamps =
627 skb_hwtstamps(skb);
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700628
Patrick Ohly20d49472009-02-12 05:03:38 +0000629 /* Race occurred between timestamp enabling and packet
630 receiving. Fill in the current time for now. */
631 if (need_software_tstamp && skb->tstamp.tv64 == 0)
632 __net_timestamp(skb);
633
634 if (need_software_tstamp) {
635 if (!sock_flag(sk, SOCK_RCVTSTAMPNS)) {
636 struct timeval tv;
637 skb_get_timestamp(skb, &tv);
638 put_cmsg(msg, SOL_SOCKET, SCM_TIMESTAMP,
639 sizeof(tv), &tv);
640 } else {
641 struct timespec ts;
642 skb_get_timestampns(skb, &ts);
643 put_cmsg(msg, SOL_SOCKET, SCM_TIMESTAMPNS,
644 sizeof(ts), &ts);
645 }
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700646 }
Patrick Ohly20d49472009-02-12 05:03:38 +0000647
648
649 memset(ts, 0, sizeof(ts));
650 if (skb->tstamp.tv64 &&
651 sock_flag(sk, SOCK_TIMESTAMPING_SOFTWARE)) {
652 skb_get_timestampns(skb, ts + 0);
653 empty = 0;
654 }
655 if (shhwtstamps) {
656 if (sock_flag(sk, SOCK_TIMESTAMPING_SYS_HARDWARE) &&
657 ktime2ts(shhwtstamps->syststamp, ts + 1))
658 empty = 0;
659 if (sock_flag(sk, SOCK_TIMESTAMPING_RAW_HARDWARE) &&
660 ktime2ts(shhwtstamps->hwtstamp, ts + 2))
661 empty = 0;
662 }
663 if (!empty)
664 put_cmsg(msg, SOL_SOCKET,
665 SCM_TIMESTAMPING, sizeof(ts), &ts);
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700666}
667
Arnaldo Carvalho de Melo7c81fd82007-03-10 00:39:35 -0300668EXPORT_SYMBOL_GPL(__sock_recv_timestamp);
669
Neil Horman3b885782009-10-12 13:26:31 -0700670inline void sock_recv_drops(struct msghdr *msg, struct sock *sk, struct sk_buff *skb)
671{
672 if (sock_flag(sk, SOCK_RXQ_OVFL) && skb && skb->dropcount)
673 put_cmsg(msg, SOL_SOCKET, SO_RXQ_OVFL,
674 sizeof(__u32), &skb->dropcount);
675}
676
677void sock_recv_ts_and_drops(struct msghdr *msg, struct sock *sk,
678 struct sk_buff *skb)
679{
680 sock_recv_timestamp(msg, sk, skb);
681 sock_recv_drops(msg, sk, skb);
682}
683EXPORT_SYMBOL_GPL(sock_recv_ts_and_drops);
684
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -0700685static inline int __sock_recvmsg_nosec(struct kiocb *iocb, struct socket *sock,
686 struct msghdr *msg, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 struct sock_iocb *si = kiocb_to_siocb(iocb);
689
690 si->sock = sock;
691 si->scm = NULL;
692 si->msg = msg;
693 si->size = size;
694 si->flags = flags;
695
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 return sock->ops->recvmsg(iocb, sock, msg, size, flags);
697}
698
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -0700699static inline int __sock_recvmsg(struct kiocb *iocb, struct socket *sock,
700 struct msghdr *msg, size_t size, int flags)
701{
702 int err = security_socket_recvmsg(sock, msg, size, flags);
703
704 return err ?: __sock_recvmsg_nosec(iocb, sock, msg, size, flags);
705}
706
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700707int sock_recvmsg(struct socket *sock, struct msghdr *msg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 size_t size, int flags)
709{
710 struct kiocb iocb;
711 struct sock_iocb siocb;
712 int ret;
713
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700714 init_sync_kiocb(&iocb, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 iocb.private = &siocb;
716 ret = __sock_recvmsg(&iocb, sock, msg, size, flags);
717 if (-EIOCBQUEUED == ret)
718 ret = wait_on_sync_kiocb(&iocb);
719 return ret;
720}
721
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -0700722static int sock_recvmsg_nosec(struct socket *sock, struct msghdr *msg,
723 size_t size, int flags)
724{
725 struct kiocb iocb;
726 struct sock_iocb siocb;
727 int ret;
728
729 init_sync_kiocb(&iocb, NULL);
730 iocb.private = &siocb;
731 ret = __sock_recvmsg_nosec(&iocb, sock, msg, size, flags);
732 if (-EIOCBQUEUED == ret)
733 ret = wait_on_sync_kiocb(&iocb);
734 return ret;
735}
736
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700737int kernel_recvmsg(struct socket *sock, struct msghdr *msg,
738 struct kvec *vec, size_t num, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739{
740 mm_segment_t oldfs = get_fs();
741 int result;
742
743 set_fs(KERNEL_DS);
744 /*
745 * the following is safe, since for compiler definitions of kvec and
746 * iovec are identical, yielding the same in-core layout and alignment
747 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700748 msg->msg_iov = (struct iovec *)vec, msg->msg_iovlen = num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 result = sock_recvmsg(sock, msg, size, flags);
750 set_fs(oldfs);
751 return result;
752}
753
754static void sock_aio_dtor(struct kiocb *iocb)
755{
756 kfree(iocb->private);
757}
758
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -0300759static ssize_t sock_sendpage(struct file *file, struct page *page,
760 int offset, size_t size, loff_t *ppos, int more)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761{
762 struct socket *sock;
763 int flags;
764
Eric Dumazetb69aee02005-09-06 14:42:45 -0700765 sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
767 flags = !(file->f_flags & O_NONBLOCK) ? 0 : MSG_DONTWAIT;
768 if (more)
769 flags |= MSG_MORE;
770
Linus Torvaldse6949582009-08-13 08:28:36 -0700771 return kernel_sendpage(sock, page, offset, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772}
773
Jens Axboe9c55e012007-11-06 23:30:13 -0800774static ssize_t sock_splice_read(struct file *file, loff_t *ppos,
775 struct pipe_inode_info *pipe, size_t len,
776 unsigned int flags)
777{
778 struct socket *sock = file->private_data;
779
Rémi Denis-Courmont997b37d2008-02-15 02:35:45 -0800780 if (unlikely(!sock->ops->splice_read))
781 return -EINVAL;
782
Jens Axboe9c55e012007-11-06 23:30:13 -0800783 return sock->ops->splice_read(sock, ppos, pipe, len, flags);
784}
785
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800786static struct sock_iocb *alloc_sock_iocb(struct kiocb *iocb,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700787 struct sock_iocb *siocb)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800788{
789 if (!is_sync_kiocb(iocb)) {
790 siocb = kmalloc(sizeof(*siocb), GFP_KERNEL);
791 if (!siocb)
792 return NULL;
793 iocb->ki_dtor = sock_aio_dtor;
794 }
795
796 siocb->kiocb = iocb;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800797 iocb->private = siocb;
798 return siocb;
799}
800
801static ssize_t do_sock_read(struct msghdr *msg, struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -0700802 struct file *file, const struct iovec *iov,
803 unsigned long nr_segs)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800804{
805 struct socket *sock = file->private_data;
806 size_t size = 0;
807 int i;
808
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700809 for (i = 0; i < nr_segs; i++)
810 size += iov[i].iov_len;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800811
812 msg->msg_name = NULL;
813 msg->msg_namelen = 0;
814 msg->msg_control = NULL;
815 msg->msg_controllen = 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700816 msg->msg_iov = (struct iovec *)iov;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800817 msg->msg_iovlen = nr_segs;
818 msg->msg_flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
819
820 return __sock_recvmsg(iocb, sock, msg, size, msg->msg_flags);
821}
822
Badari Pulavarty027445c2006-09-30 23:28:46 -0700823static ssize_t sock_aio_read(struct kiocb *iocb, const struct iovec *iov,
824 unsigned long nr_segs, loff_t pos)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800825{
826 struct sock_iocb siocb, *x;
827
828 if (pos != 0)
829 return -ESPIPE;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700830
831 if (iocb->ki_left == 0) /* Match SYS5 behaviour */
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800832 return 0;
833
Badari Pulavarty027445c2006-09-30 23:28:46 -0700834
835 x = alloc_sock_iocb(iocb, &siocb);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800836 if (!x)
837 return -ENOMEM;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700838 return do_sock_read(&x->async_msg, iocb, iocb->ki_filp, iov, nr_segs);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800839}
840
841static ssize_t do_sock_write(struct msghdr *msg, struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -0700842 struct file *file, const struct iovec *iov,
843 unsigned long nr_segs)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800844{
845 struct socket *sock = file->private_data;
846 size_t size = 0;
847 int i;
848
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700849 for (i = 0; i < nr_segs; i++)
850 size += iov[i].iov_len;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800851
852 msg->msg_name = NULL;
853 msg->msg_namelen = 0;
854 msg->msg_control = NULL;
855 msg->msg_controllen = 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700856 msg->msg_iov = (struct iovec *)iov;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800857 msg->msg_iovlen = nr_segs;
858 msg->msg_flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
859 if (sock->type == SOCK_SEQPACKET)
860 msg->msg_flags |= MSG_EOR;
861
862 return __sock_sendmsg(iocb, sock, msg, size);
863}
864
Badari Pulavarty027445c2006-09-30 23:28:46 -0700865static ssize_t sock_aio_write(struct kiocb *iocb, const struct iovec *iov,
866 unsigned long nr_segs, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867{
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800868 struct sock_iocb siocb, *x;
869
870 if (pos != 0)
871 return -ESPIPE;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700872
Badari Pulavarty027445c2006-09-30 23:28:46 -0700873 x = alloc_sock_iocb(iocb, &siocb);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800874 if (!x)
875 return -ENOMEM;
876
Badari Pulavarty027445c2006-09-30 23:28:46 -0700877 return do_sock_write(&x->async_msg, iocb, iocb->ki_filp, iov, nr_segs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878}
879
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880/*
881 * Atomic setting of ioctl hooks to avoid race
882 * with module unload.
883 */
884
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800885static DEFINE_MUTEX(br_ioctl_mutex);
Eric W. Biederman881d9662007-09-17 11:56:21 -0700886static int (*br_ioctl_hook) (struct net *, unsigned int cmd, void __user *arg) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
Eric W. Biederman881d9662007-09-17 11:56:21 -0700888void brioctl_set(int (*hook) (struct net *, unsigned int, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800890 mutex_lock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 br_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800892 mutex_unlock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893}
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700894
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895EXPORT_SYMBOL(brioctl_set);
896
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800897static DEFINE_MUTEX(vlan_ioctl_mutex);
Eric W. Biederman881d9662007-09-17 11:56:21 -0700898static int (*vlan_ioctl_hook) (struct net *, void __user *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
Eric W. Biederman881d9662007-09-17 11:56:21 -0700900void vlan_ioctl_set(int (*hook) (struct net *, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800902 mutex_lock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 vlan_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800904 mutex_unlock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905}
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700906
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907EXPORT_SYMBOL(vlan_ioctl_set);
908
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800909static DEFINE_MUTEX(dlci_ioctl_mutex);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700910static int (*dlci_ioctl_hook) (unsigned int, void __user *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700912void dlci_ioctl_set(int (*hook) (unsigned int, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800914 mutex_lock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 dlci_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800916 mutex_unlock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917}
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700918
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919EXPORT_SYMBOL(dlci_ioctl_set);
920
Arnd Bergmann6b960182009-11-06 23:10:54 -0800921static long sock_do_ioctl(struct net *net, struct socket *sock,
922 unsigned int cmd, unsigned long arg)
923{
924 int err;
925 void __user *argp = (void __user *)arg;
926
927 err = sock->ops->ioctl(sock, cmd, arg);
928
929 /*
930 * If this ioctl is unknown try to hand it down
931 * to the NIC driver.
932 */
933 if (err == -ENOIOCTLCMD)
934 err = dev_ioctl(net, cmd, argp);
935
936 return err;
937}
938
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939/*
940 * With an ioctl, arg may well be a user mode pointer, but we don't know
941 * what to do with it - that's up to the protocol still.
942 */
943
944static long sock_ioctl(struct file *file, unsigned cmd, unsigned long arg)
945{
946 struct socket *sock;
Eric W. Biederman881d9662007-09-17 11:56:21 -0700947 struct sock *sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 void __user *argp = (void __user *)arg;
949 int pid, err;
Eric W. Biederman881d9662007-09-17 11:56:21 -0700950 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
Eric Dumazetb69aee02005-09-06 14:42:45 -0700952 sock = file->private_data;
Eric W. Biederman881d9662007-09-17 11:56:21 -0700953 sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900954 net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 if (cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15)) {
Eric W. Biederman881d9662007-09-17 11:56:21 -0700956 err = dev_ioctl(net, cmd, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 } else
Johannes Berg3d23e342009-09-29 23:27:28 +0200958#ifdef CONFIG_WEXT_CORE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 if (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST) {
Eric W. Biederman881d9662007-09-17 11:56:21 -0700960 err = dev_ioctl(net, cmd, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 } else
Johannes Berg3d23e342009-09-29 23:27:28 +0200962#endif
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700963 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 case FIOSETOWN:
965 case SIOCSPGRP:
966 err = -EFAULT;
967 if (get_user(pid, (int __user *)argp))
968 break;
969 err = f_setown(sock->file, pid, 1);
970 break;
971 case FIOGETOWN:
972 case SIOCGPGRP:
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700973 err = put_user(f_getown(sock->file),
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700974 (int __user *)argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 break;
976 case SIOCGIFBR:
977 case SIOCSIFBR:
978 case SIOCBRADDBR:
979 case SIOCBRDELBR:
980 err = -ENOPKG;
981 if (!br_ioctl_hook)
982 request_module("bridge");
983
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800984 mutex_lock(&br_ioctl_mutex);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700985 if (br_ioctl_hook)
Eric W. Biederman881d9662007-09-17 11:56:21 -0700986 err = br_ioctl_hook(net, cmd, argp);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800987 mutex_unlock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 break;
989 case SIOCGIFVLAN:
990 case SIOCSIFVLAN:
991 err = -ENOPKG;
992 if (!vlan_ioctl_hook)
993 request_module("8021q");
994
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800995 mutex_lock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 if (vlan_ioctl_hook)
Eric W. Biederman881d9662007-09-17 11:56:21 -0700997 err = vlan_ioctl_hook(net, argp);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800998 mutex_unlock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 case SIOCADDDLCI:
1001 case SIOCDELDLCI:
1002 err = -ENOPKG;
1003 if (!dlci_ioctl_hook)
1004 request_module("dlci");
1005
Pavel Emelyanov7512cbf2008-03-21 15:58:52 -07001006 mutex_lock(&dlci_ioctl_mutex);
1007 if (dlci_ioctl_hook)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 err = dlci_ioctl_hook(cmd, argp);
Pavel Emelyanov7512cbf2008-03-21 15:58:52 -07001009 mutex_unlock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 break;
1011 default:
Arnd Bergmann6b960182009-11-06 23:10:54 -08001012 err = sock_do_ioctl(net, sock, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001014 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 return err;
1016}
1017
1018int sock_create_lite(int family, int type, int protocol, struct socket **res)
1019{
1020 int err;
1021 struct socket *sock = NULL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001022
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 err = security_socket_create(family, type, protocol, 1);
1024 if (err)
1025 goto out;
1026
1027 sock = sock_alloc();
1028 if (!sock) {
1029 err = -ENOMEM;
1030 goto out;
1031 }
1032
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 sock->type = type;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001034 err = security_socket_post_create(sock, family, type, protocol, 1);
1035 if (err)
1036 goto out_release;
1037
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038out:
1039 *res = sock;
1040 return err;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001041out_release:
1042 sock_release(sock);
1043 sock = NULL;
1044 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045}
1046
1047/* No kernel lock held - perfect */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001048static unsigned int sock_poll(struct file *file, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049{
1050 struct socket *sock;
1051
1052 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001053 * We can't return errors to poll, so it's either yes or no.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 */
Eric Dumazetb69aee02005-09-06 14:42:45 -07001055 sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 return sock->ops->poll(file, sock, wait);
1057}
1058
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001059static int sock_mmap(struct file *file, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060{
Eric Dumazetb69aee02005-09-06 14:42:45 -07001061 struct socket *sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062
1063 return sock->ops->mmap(file, sock, vma);
1064}
1065
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001066static int sock_close(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067{
1068 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001069 * It was possible the inode is NULL we were
1070 * closing an unfinished socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 */
1072
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001073 if (!inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 printk(KERN_DEBUG "sock_close: NULL inode\n");
1075 return 0;
1076 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 sock_release(SOCKET_I(inode));
1078 return 0;
1079}
1080
1081/*
1082 * Update the socket async list
1083 *
1084 * Fasync_list locking strategy.
1085 *
1086 * 1. fasync_list is modified only under process context socket lock
1087 * i.e. under semaphore.
1088 * 2. fasync_list is used under read_lock(&sk->sk_callback_lock)
1089 * or under socket lock.
1090 * 3. fasync_list can be used from softirq context, so that
1091 * modification under socket lock have to be enhanced with
1092 * write_lock_bh(&sk->sk_callback_lock).
1093 * --ANK (990710)
1094 */
1095
1096static int sock_fasync(int fd, struct file *filp, int on)
1097{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001098 struct fasync_struct *fa, *fna = NULL, **prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 struct socket *sock;
1100 struct sock *sk;
1101
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001102 if (on) {
Kris Katterjohn8b3a7002006-01-11 15:56:43 -08001103 fna = kmalloc(sizeof(struct fasync_struct), GFP_KERNEL);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001104 if (fna == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 return -ENOMEM;
1106 }
1107
Eric Dumazetb69aee02005-09-06 14:42:45 -07001108 sock = filp->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001110 sk = sock->sk;
1111 if (sk == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 kfree(fna);
1113 return -EINVAL;
1114 }
1115
1116 lock_sock(sk);
1117
Jonathan Corbet76398422009-02-01 14:26:59 -07001118 spin_lock(&filp->f_lock);
1119 if (on)
1120 filp->f_flags |= FASYNC;
1121 else
1122 filp->f_flags &= ~FASYNC;
1123 spin_unlock(&filp->f_lock);
1124
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001125 prev = &(sock->fasync_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001127 for (fa = *prev; fa != NULL; prev = &fa->fa_next, fa = *prev)
1128 if (fa->fa_file == filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 break;
1130
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001131 if (on) {
1132 if (fa != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 write_lock_bh(&sk->sk_callback_lock);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001134 fa->fa_fd = fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 write_unlock_bh(&sk->sk_callback_lock);
1136
1137 kfree(fna);
1138 goto out;
1139 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001140 fna->fa_file = filp;
1141 fna->fa_fd = fd;
1142 fna->magic = FASYNC_MAGIC;
1143 fna->fa_next = sock->fasync_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 write_lock_bh(&sk->sk_callback_lock);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001145 sock->fasync_list = fna;
Eric Dumazetbcdce712009-10-06 17:28:29 -07001146 sock_set_flag(sk, SOCK_FASYNC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 write_unlock_bh(&sk->sk_callback_lock);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001148 } else {
1149 if (fa != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 write_lock_bh(&sk->sk_callback_lock);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001151 *prev = fa->fa_next;
Eric Dumazetbcdce712009-10-06 17:28:29 -07001152 if (!sock->fasync_list)
1153 sock_reset_flag(sk, SOCK_FASYNC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 write_unlock_bh(&sk->sk_callback_lock);
1155 kfree(fa);
1156 }
1157 }
1158
1159out:
1160 release_sock(sock->sk);
1161 return 0;
1162}
1163
1164/* This function may be called only under socket lock or callback_lock */
1165
1166int sock_wake_async(struct socket *sock, int how, int band)
1167{
1168 if (!sock || !sock->fasync_list)
1169 return -1;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001170 switch (how) {
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001171 case SOCK_WAKE_WAITD:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 if (test_bit(SOCK_ASYNC_WAITDATA, &sock->flags))
1173 break;
1174 goto call_kill;
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001175 case SOCK_WAKE_SPACE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 if (!test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sock->flags))
1177 break;
1178 /* fall through */
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001179 case SOCK_WAKE_IO:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001180call_kill:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 __kill_fasync(sock->fasync_list, SIGIO, band);
1182 break;
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001183 case SOCK_WAKE_URG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 __kill_fasync(sock->fasync_list, SIGURG, band);
1185 }
1186 return 0;
1187}
1188
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001189static int __sock_create(struct net *net, int family, int type, int protocol,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001190 struct socket **res, int kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191{
1192 int err;
1193 struct socket *sock;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001194 const struct net_proto_family *pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195
1196 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001197 * Check protocol is in range
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 */
1199 if (family < 0 || family >= NPROTO)
1200 return -EAFNOSUPPORT;
1201 if (type < 0 || type >= SOCK_MAX)
1202 return -EINVAL;
1203
1204 /* Compatibility.
1205
1206 This uglymoron is moved from INET layer to here to avoid
1207 deadlock in module load.
1208 */
1209 if (family == PF_INET && type == SOCK_PACKET) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001210 static int warned;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 if (!warned) {
1212 warned = 1;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001213 printk(KERN_INFO "%s uses obsolete (PF_INET,SOCK_PACKET)\n",
1214 current->comm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 }
1216 family = PF_PACKET;
1217 }
1218
1219 err = security_socket_create(family, type, protocol, kern);
1220 if (err)
1221 return err;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001222
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001223 /*
1224 * Allocate the socket and allow the family to set things up. if
1225 * the protocol is 0, the family is instructed to select an appropriate
1226 * default.
1227 */
1228 sock = sock_alloc();
1229 if (!sock) {
1230 if (net_ratelimit())
1231 printk(KERN_WARNING "socket: no more sockets\n");
1232 return -ENFILE; /* Not exactly a match, but its the
1233 closest posix thing */
1234 }
1235
1236 sock->type = type;
1237
Johannes Berg95a5afc2008-10-16 15:24:51 -07001238#ifdef CONFIG_MODULES
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001239 /* Attempt to load a protocol module if the find failed.
1240 *
1241 * 12/09/1996 Marcin: But! this makes REALLY only sense, if the user
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 * requested real, full-featured networking support upon configuration.
1243 * Otherwise module support will break!
1244 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001245 if (net_families[family] == NULL)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001246 request_module("net-pf-%d", family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247#endif
1248
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001249 rcu_read_lock();
1250 pf = rcu_dereference(net_families[family]);
1251 err = -EAFNOSUPPORT;
1252 if (!pf)
1253 goto out_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254
1255 /*
1256 * We will call the ->create function, that possibly is in a loadable
1257 * module, so we have to bump that loadable module refcnt first.
1258 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001259 if (!try_module_get(pf->owner))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 goto out_release;
1261
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001262 /* Now protected by module ref count */
1263 rcu_read_unlock();
1264
Eric Paris3f378b62009-11-05 22:18:14 -08001265 err = pf->create(net, sock, protocol, kern);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001266 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 goto out_module_put;
Frank Filza79af592005-09-27 15:23:38 -07001268
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 /*
1270 * Now to bump the refcnt of the [loadable] module that owns this
1271 * socket at sock_release time we decrement its refcnt.
1272 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001273 if (!try_module_get(sock->ops->owner))
1274 goto out_module_busy;
1275
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 /*
1277 * Now that we're done with the ->create function, the [loadable]
1278 * module can have its refcnt decremented
1279 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001280 module_put(pf->owner);
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001281 err = security_socket_post_create(sock, family, type, protocol, kern);
1282 if (err)
Herbert Xu3b185522007-08-15 14:46:02 -07001283 goto out_sock_release;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001284 *res = sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001286 return 0;
1287
1288out_module_busy:
1289 err = -EAFNOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290out_module_put:
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001291 sock->ops = NULL;
1292 module_put(pf->owner);
1293out_sock_release:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 sock_release(sock);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001295 return err;
1296
1297out_release:
1298 rcu_read_unlock();
1299 goto out_sock_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300}
1301
1302int sock_create(int family, int type, int protocol, struct socket **res)
1303{
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001304 return __sock_create(current->nsproxy->net_ns, family, type, protocol, res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305}
1306
1307int sock_create_kern(int family, int type, int protocol, struct socket **res)
1308{
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001309 return __sock_create(&init_net, family, type, protocol, res, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310}
1311
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001312SYSCALL_DEFINE3(socket, int, family, int, type, int, protocol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313{
1314 int retval;
1315 struct socket *sock;
Ulrich Dreppera677a032008-07-23 21:29:17 -07001316 int flags;
1317
Ulrich Dreppere38b36f2008-07-23 21:29:42 -07001318 /* Check the SOCK_* constants for consistency. */
1319 BUILD_BUG_ON(SOCK_CLOEXEC != O_CLOEXEC);
1320 BUILD_BUG_ON((SOCK_MAX | SOCK_TYPE_MASK) != SOCK_TYPE_MASK);
1321 BUILD_BUG_ON(SOCK_CLOEXEC & SOCK_TYPE_MASK);
1322 BUILD_BUG_ON(SOCK_NONBLOCK & SOCK_TYPE_MASK);
1323
Ulrich Dreppera677a032008-07-23 21:29:17 -07001324 flags = type & ~SOCK_TYPE_MASK;
Ulrich Drepper77d27202008-07-23 21:29:35 -07001325 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Dreppera677a032008-07-23 21:29:17 -07001326 return -EINVAL;
1327 type &= SOCK_TYPE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001329 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1330 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1331
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 retval = sock_create(family, type, protocol, &sock);
1333 if (retval < 0)
1334 goto out;
1335
Ulrich Drepper77d27202008-07-23 21:29:35 -07001336 retval = sock_map_fd(sock, flags & (O_CLOEXEC | O_NONBLOCK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 if (retval < 0)
1338 goto out_release;
1339
1340out:
1341 /* It may be already another descriptor 8) Not kernel problem. */
1342 return retval;
1343
1344out_release:
1345 sock_release(sock);
1346 return retval;
1347}
1348
1349/*
1350 * Create a pair of connected sockets.
1351 */
1352
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001353SYSCALL_DEFINE4(socketpair, int, family, int, type, int, protocol,
1354 int __user *, usockvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355{
1356 struct socket *sock1, *sock2;
1357 int fd1, fd2, err;
Al Virodb349502007-02-07 01:48:00 -05001358 struct file *newfile1, *newfile2;
Ulrich Dreppera677a032008-07-23 21:29:17 -07001359 int flags;
1360
1361 flags = type & ~SOCK_TYPE_MASK;
Ulrich Drepper77d27202008-07-23 21:29:35 -07001362 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Dreppera677a032008-07-23 21:29:17 -07001363 return -EINVAL;
1364 type &= SOCK_TYPE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001366 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1367 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1368
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 /*
1370 * Obtain the first socket and check if the underlying protocol
1371 * supports the socketpair call.
1372 */
1373
1374 err = sock_create(family, type, protocol, &sock1);
1375 if (err < 0)
1376 goto out;
1377
1378 err = sock_create(family, type, protocol, &sock2);
1379 if (err < 0)
1380 goto out_release_1;
1381
1382 err = sock1->ops->socketpair(sock1, sock2);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001383 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 goto out_release_both;
1385
Al Viro7cbe66b2009-08-05 19:59:08 +04001386 fd1 = sock_alloc_file(sock1, &newfile1, flags);
David S. Millerbf3c23d2007-10-29 21:54:02 -07001387 if (unlikely(fd1 < 0)) {
1388 err = fd1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 goto out_release_both;
David S. Millerbf3c23d2007-10-29 21:54:02 -07001390 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
Al Viro7cbe66b2009-08-05 19:59:08 +04001392 fd2 = sock_alloc_file(sock2, &newfile2, flags);
Al Viro198de4d2009-08-05 19:29:23 +04001393 if (unlikely(fd2 < 0)) {
1394 err = fd2;
1395 fput(newfile1);
1396 put_unused_fd(fd1);
1397 sock_release(sock2);
1398 goto out;
Al Virodb349502007-02-07 01:48:00 -05001399 }
1400
Al Viro157cf642008-12-14 04:57:47 -05001401 audit_fd_pair(fd1, fd2);
Al Virodb349502007-02-07 01:48:00 -05001402 fd_install(fd1, newfile1);
1403 fd_install(fd2, newfile2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 /* fd1 and fd2 may be already another descriptors.
1405 * Not kernel problem.
1406 */
1407
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001408 err = put_user(fd1, &usockvec[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 if (!err)
1410 err = put_user(fd2, &usockvec[1]);
1411 if (!err)
1412 return 0;
1413
1414 sys_close(fd2);
1415 sys_close(fd1);
1416 return err;
1417
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418out_release_both:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001419 sock_release(sock2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420out_release_1:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001421 sock_release(sock1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422out:
1423 return err;
1424}
1425
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426/*
1427 * Bind a name to a socket. Nothing much to do here since it's
1428 * the protocol's responsibility to handle the local address.
1429 *
1430 * We move the socket address to kernel space before we call
1431 * the protocol layer (having also checked the address is ok).
1432 */
1433
Heiko Carstens20f37032009-01-14 14:14:23 +01001434SYSCALL_DEFINE3(bind, int, fd, struct sockaddr __user *, umyaddr, int, addrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435{
1436 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001437 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001438 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001440 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001441 if (sock) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001442 err = move_addr_to_kernel(umyaddr, addrlen, (struct sockaddr *)&address);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001443 if (err >= 0) {
1444 err = security_socket_bind(sock,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001445 (struct sockaddr *)&address,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001446 addrlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001447 if (!err)
1448 err = sock->ops->bind(sock,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001449 (struct sockaddr *)
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001450 &address, addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 }
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001452 fput_light(sock->file, fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001453 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 return err;
1455}
1456
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457/*
1458 * Perform a listen. Basically, we allow the protocol to do anything
1459 * necessary for a listen, and if that works, we mark the socket as
1460 * ready for listening.
1461 */
1462
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001463SYSCALL_DEFINE2(listen, int, fd, int, backlog)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464{
1465 struct socket *sock;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001466 int err, fput_needed;
Pavel Emelyanovb8e1f9b2007-12-08 00:12:33 -08001467 int somaxconn;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001468
1469 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1470 if (sock) {
Pavel Emelyanov8efa6e92008-03-31 19:41:14 -07001471 somaxconn = sock_net(sock->sk)->core.sysctl_somaxconn;
Pavel Emelyanovb8e1f9b2007-12-08 00:12:33 -08001472 if ((unsigned)backlog > somaxconn)
1473 backlog = somaxconn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474
1475 err = security_socket_listen(sock, backlog);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001476 if (!err)
1477 err = sock->ops->listen(sock, backlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001479 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 }
1481 return err;
1482}
1483
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484/*
1485 * For accept, we attempt to create a new socket, set up the link
1486 * with the client, wake up the client, then return the new
1487 * connected fd. We collect the address of the connector in kernel
1488 * space and move it to user at the very end. This is unclean because
1489 * we open the socket then return an error.
1490 *
1491 * 1003.1g adds the ability to recvmsg() to query connection pending
1492 * status to recvmsg. We need to add that support in a way thats
1493 * clean when we restucture accept also.
1494 */
1495
Heiko Carstens20f37032009-01-14 14:14:23 +01001496SYSCALL_DEFINE4(accept4, int, fd, struct sockaddr __user *, upeer_sockaddr,
1497 int __user *, upeer_addrlen, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498{
1499 struct socket *sock, *newsock;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001500 struct file *newfile;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001501 int err, len, newfd, fput_needed;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001502 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
Ulrich Drepper77d27202008-07-23 21:29:35 -07001504 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001505 return -EINVAL;
1506
1507 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1508 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1509
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001510 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 if (!sock)
1512 goto out;
1513
1514 err = -ENFILE;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001515 if (!(newsock = sock_alloc()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 goto out_put;
1517
1518 newsock->type = sock->type;
1519 newsock->ops = sock->ops;
1520
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 /*
1522 * We don't need try_module_get here, as the listening socket (sock)
1523 * has the protocol module (sock->ops->owner) held.
1524 */
1525 __module_get(newsock->ops->owner);
1526
Al Viro7cbe66b2009-08-05 19:59:08 +04001527 newfd = sock_alloc_file(newsock, &newfile, flags);
David S. Miller39d8c1b2006-03-20 17:13:49 -08001528 if (unlikely(newfd < 0)) {
1529 err = newfd;
David S. Miller9a1875e2006-04-01 12:48:36 -08001530 sock_release(newsock);
1531 goto out_put;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001532 }
1533
Frank Filza79af592005-09-27 15:23:38 -07001534 err = security_socket_accept(sock, newsock);
1535 if (err)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001536 goto out_fd;
Frank Filza79af592005-09-27 15:23:38 -07001537
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 err = sock->ops->accept(sock, newsock, sock->file->f_flags);
1539 if (err < 0)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001540 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541
1542 if (upeer_sockaddr) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001543 if (newsock->ops->getname(newsock, (struct sockaddr *)&address,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001544 &len, 2) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 err = -ECONNABORTED;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001546 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 }
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001548 err = move_addr_to_user((struct sockaddr *)&address,
1549 len, upeer_sockaddr, upeer_addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 if (err < 0)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001551 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 }
1553
1554 /* File flags are not inherited via accept() unlike another OSes. */
1555
David S. Miller39d8c1b2006-03-20 17:13:49 -08001556 fd_install(newfd, newfile);
1557 err = newfd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001560 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561out:
1562 return err;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001563out_fd:
David S. Miller9606a212006-04-01 01:00:14 -08001564 fput(newfile);
David S. Miller39d8c1b2006-03-20 17:13:49 -08001565 put_unused_fd(newfd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 goto out_put;
1567}
1568
Heiko Carstens20f37032009-01-14 14:14:23 +01001569SYSCALL_DEFINE3(accept, int, fd, struct sockaddr __user *, upeer_sockaddr,
1570 int __user *, upeer_addrlen)
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001571{
Ulrich Drepperde11def2008-11-19 15:36:14 -08001572 return sys_accept4(fd, upeer_sockaddr, upeer_addrlen, 0);
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001573}
1574
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575/*
1576 * Attempt to connect to a socket with the server address. The address
1577 * is in user space so we verify it is OK and move it to kernel space.
1578 *
1579 * For 1003.1g we need to add clean support for a bind to AF_UNSPEC to
1580 * break bindings
1581 *
1582 * NOTE: 1003.1g draft 6.3 is broken with respect to AX.25/NetROM and
1583 * other SEQPACKET protocols that take time to connect() as it doesn't
1584 * include the -EINPROGRESS status for such sockets.
1585 */
1586
Heiko Carstens20f37032009-01-14 14:14:23 +01001587SYSCALL_DEFINE3(connect, int, fd, struct sockaddr __user *, uservaddr,
1588 int, addrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589{
1590 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001591 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001592 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001594 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 if (!sock)
1596 goto out;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001597 err = move_addr_to_kernel(uservaddr, addrlen, (struct sockaddr *)&address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 if (err < 0)
1599 goto out_put;
1600
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001601 err =
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001602 security_socket_connect(sock, (struct sockaddr *)&address, addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 if (err)
1604 goto out_put;
1605
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001606 err = sock->ops->connect(sock, (struct sockaddr *)&address, addrlen,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 sock->file->f_flags);
1608out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001609 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610out:
1611 return err;
1612}
1613
1614/*
1615 * Get the local address ('name') of a socket object. Move the obtained
1616 * name to user space.
1617 */
1618
Heiko Carstens20f37032009-01-14 14:14:23 +01001619SYSCALL_DEFINE3(getsockname, int, fd, struct sockaddr __user *, usockaddr,
1620 int __user *, usockaddr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621{
1622 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001623 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001624 int len, err, fput_needed;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001625
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001626 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 if (!sock)
1628 goto out;
1629
1630 err = security_socket_getsockname(sock);
1631 if (err)
1632 goto out_put;
1633
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001634 err = sock->ops->getname(sock, (struct sockaddr *)&address, &len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 if (err)
1636 goto out_put;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001637 err = move_addr_to_user((struct sockaddr *)&address, len, usockaddr, usockaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638
1639out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001640 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641out:
1642 return err;
1643}
1644
1645/*
1646 * Get the remote address ('name') of a socket object. Move the obtained
1647 * name to user space.
1648 */
1649
Heiko Carstens20f37032009-01-14 14:14:23 +01001650SYSCALL_DEFINE3(getpeername, int, fd, struct sockaddr __user *, usockaddr,
1651 int __user *, usockaddr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652{
1653 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001654 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001655 int len, err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001657 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1658 if (sock != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 err = security_socket_getpeername(sock);
1660 if (err) {
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001661 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 return err;
1663 }
1664
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001665 err =
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001666 sock->ops->getname(sock, (struct sockaddr *)&address, &len,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001667 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 if (!err)
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001669 err = move_addr_to_user((struct sockaddr *)&address, len, usockaddr,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001670 usockaddr_len);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001671 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 }
1673 return err;
1674}
1675
1676/*
1677 * Send a datagram to a given address. We move the address into kernel
1678 * space and check the user space data area is readable before invoking
1679 * the protocol.
1680 */
1681
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001682SYSCALL_DEFINE6(sendto, int, fd, void __user *, buff, size_t, len,
1683 unsigned, flags, struct sockaddr __user *, addr,
1684 int, addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685{
1686 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001687 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 int err;
1689 struct msghdr msg;
1690 struct iovec iov;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001691 int fput_needed;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001692
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001693 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1694 if (!sock)
David S. Miller4387ff72007-02-08 15:06:08 -08001695 goto out;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001696
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001697 iov.iov_base = buff;
1698 iov.iov_len = len;
1699 msg.msg_name = NULL;
1700 msg.msg_iov = &iov;
1701 msg.msg_iovlen = 1;
1702 msg.msg_control = NULL;
1703 msg.msg_controllen = 0;
1704 msg.msg_namelen = 0;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001705 if (addr) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001706 err = move_addr_to_kernel(addr, addr_len, (struct sockaddr *)&address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 if (err < 0)
1708 goto out_put;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001709 msg.msg_name = (struct sockaddr *)&address;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001710 msg.msg_namelen = addr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 }
1712 if (sock->file->f_flags & O_NONBLOCK)
1713 flags |= MSG_DONTWAIT;
1714 msg.msg_flags = flags;
1715 err = sock_sendmsg(sock, &msg, len);
1716
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001717out_put:
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001718 fput_light(sock->file, fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08001719out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 return err;
1721}
1722
1723/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001724 * Send a datagram down a socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 */
1726
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001727SYSCALL_DEFINE4(send, int, fd, void __user *, buff, size_t, len,
1728 unsigned, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729{
1730 return sys_sendto(fd, buff, len, flags, NULL, 0);
1731}
1732
1733/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001734 * Receive a frame from the socket and optionally record the address of the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 * sender. We verify the buffers are writable and if needed move the
1736 * sender address from kernel to user space.
1737 */
1738
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001739SYSCALL_DEFINE6(recvfrom, int, fd, void __user *, ubuf, size_t, size,
1740 unsigned, flags, struct sockaddr __user *, addr,
1741 int __user *, addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742{
1743 struct socket *sock;
1744 struct iovec iov;
1745 struct msghdr msg;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001746 struct sockaddr_storage address;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001747 int err, err2;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001748 int fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001750 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 if (!sock)
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001752 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001754 msg.msg_control = NULL;
1755 msg.msg_controllen = 0;
1756 msg.msg_iovlen = 1;
1757 msg.msg_iov = &iov;
1758 iov.iov_len = size;
1759 iov.iov_base = ubuf;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001760 msg.msg_name = (struct sockaddr *)&address;
1761 msg.msg_namelen = sizeof(address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 if (sock->file->f_flags & O_NONBLOCK)
1763 flags |= MSG_DONTWAIT;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001764 err = sock_recvmsg(sock, &msg, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001766 if (err >= 0 && addr != NULL) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001767 err2 = move_addr_to_user((struct sockaddr *)&address,
1768 msg.msg_namelen, addr, addr_len);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001769 if (err2 < 0)
1770 err = err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 }
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001772
1773 fput_light(sock->file, fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08001774out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 return err;
1776}
1777
1778/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001779 * Receive a datagram from a socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 */
1781
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001782asmlinkage long sys_recv(int fd, void __user *ubuf, size_t size,
1783 unsigned flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784{
1785 return sys_recvfrom(fd, ubuf, size, flags, NULL, NULL);
1786}
1787
1788/*
1789 * Set a socket option. Because we don't know the option lengths we have
1790 * to pass the user mode parameter for the protocols to sort out.
1791 */
1792
Heiko Carstens20f37032009-01-14 14:14:23 +01001793SYSCALL_DEFINE5(setsockopt, int, fd, int, level, int, optname,
1794 char __user *, optval, int, optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001796 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 struct socket *sock;
1798
1799 if (optlen < 0)
1800 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001801
1802 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1803 if (sock != NULL) {
1804 err = security_socket_setsockopt(sock, level, optname);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001805 if (err)
1806 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807
1808 if (level == SOL_SOCKET)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001809 err =
1810 sock_setsockopt(sock, level, optname, optval,
1811 optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 else
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001813 err =
1814 sock->ops->setsockopt(sock, level, optname, optval,
1815 optlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001816out_put:
1817 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 }
1819 return err;
1820}
1821
1822/*
1823 * Get a socket option. Because we don't know the option lengths we have
1824 * to pass a user mode parameter for the protocols to sort out.
1825 */
1826
Heiko Carstens20f37032009-01-14 14:14:23 +01001827SYSCALL_DEFINE5(getsockopt, int, fd, int, level, int, optname,
1828 char __user *, optval, int __user *, optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001830 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 struct socket *sock;
1832
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001833 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1834 if (sock != NULL) {
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001835 err = security_socket_getsockopt(sock, level, optname);
1836 if (err)
1837 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838
1839 if (level == SOL_SOCKET)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001840 err =
1841 sock_getsockopt(sock, level, optname, optval,
1842 optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 else
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001844 err =
1845 sock->ops->getsockopt(sock, level, optname, optval,
1846 optlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001847out_put:
1848 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 }
1850 return err;
1851}
1852
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853/*
1854 * Shutdown a socket.
1855 */
1856
Heiko Carstens754fe8d2009-01-14 14:14:09 +01001857SYSCALL_DEFINE2(shutdown, int, fd, int, how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001859 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 struct socket *sock;
1861
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001862 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1863 if (sock != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 err = security_socket_shutdown(sock, how);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001865 if (!err)
1866 err = sock->ops->shutdown(sock, how);
1867 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 }
1869 return err;
1870}
1871
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001872/* A couple of helpful macros for getting the address of the 32/64 bit
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 * fields which are the same type (int / unsigned) on our platforms.
1874 */
1875#define COMPAT_MSG(msg, member) ((MSG_CMSG_COMPAT & flags) ? &msg##_compat->member : &msg->member)
1876#define COMPAT_NAMELEN(msg) COMPAT_MSG(msg, msg_namelen)
1877#define COMPAT_FLAGS(msg) COMPAT_MSG(msg, msg_flags)
1878
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879/*
1880 * BSD sendmsg interface
1881 */
1882
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001883SYSCALL_DEFINE3(sendmsg, int, fd, struct msghdr __user *, msg, unsigned, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001885 struct compat_msghdr __user *msg_compat =
1886 (struct compat_msghdr __user *)msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001888 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 struct iovec iovstack[UIO_FASTIOV], *iov = iovstack;
Alex Williamsonb9d717a2005-09-26 14:28:02 -07001890 unsigned char ctl[sizeof(struct cmsghdr) + 20]
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001891 __attribute__ ((aligned(sizeof(__kernel_size_t))));
1892 /* 20 is size of ipv6_pktinfo */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 unsigned char *ctl_buf = ctl;
1894 struct msghdr msg_sys;
1895 int err, ctl_len, iov_size, total_len;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001896 int fput_needed;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001897
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 err = -EFAULT;
1899 if (MSG_CMSG_COMPAT & flags) {
1900 if (get_compat_msghdr(&msg_sys, msg_compat))
1901 return -EFAULT;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001902 }
1903 else if (copy_from_user(&msg_sys, msg, sizeof(struct msghdr)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 return -EFAULT;
1905
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001906 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001907 if (!sock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 goto out;
1909
1910 /* do not move before msg_sys is valid */
1911 err = -EMSGSIZE;
1912 if (msg_sys.msg_iovlen > UIO_MAXIOV)
1913 goto out_put;
1914
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001915 /* Check whether to allocate the iovec area */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 err = -ENOMEM;
1917 iov_size = msg_sys.msg_iovlen * sizeof(struct iovec);
1918 if (msg_sys.msg_iovlen > UIO_FASTIOV) {
1919 iov = sock_kmalloc(sock->sk, iov_size, GFP_KERNEL);
1920 if (!iov)
1921 goto out_put;
1922 }
1923
1924 /* This will also move the address data into kernel space */
1925 if (MSG_CMSG_COMPAT & flags) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001926 err = verify_compat_iovec(&msg_sys, iov,
1927 (struct sockaddr *)&address,
1928 VERIFY_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 } else
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001930 err = verify_iovec(&msg_sys, iov,
1931 (struct sockaddr *)&address,
1932 VERIFY_READ);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001933 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 goto out_freeiov;
1935 total_len = err;
1936
1937 err = -ENOBUFS;
1938
1939 if (msg_sys.msg_controllen > INT_MAX)
1940 goto out_freeiov;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001941 ctl_len = msg_sys.msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 if ((MSG_CMSG_COMPAT & flags) && ctl_len) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001943 err =
1944 cmsghdr_from_user_compat_to_kern(&msg_sys, sock->sk, ctl,
1945 sizeof(ctl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 if (err)
1947 goto out_freeiov;
1948 ctl_buf = msg_sys.msg_control;
Al Viro8920e8f2005-09-07 18:28:51 -07001949 ctl_len = msg_sys.msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 } else if (ctl_len) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001951 if (ctl_len > sizeof(ctl)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 ctl_buf = sock_kmalloc(sock->sk, ctl_len, GFP_KERNEL);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001953 if (ctl_buf == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 goto out_freeiov;
1955 }
1956 err = -EFAULT;
1957 /*
1958 * Careful! Before this, msg_sys.msg_control contains a user pointer.
1959 * Afterwards, it will be a kernel pointer. Thus the compiler-assisted
1960 * checking falls down on this.
1961 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001962 if (copy_from_user(ctl_buf, (void __user *)msg_sys.msg_control,
1963 ctl_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 goto out_freectl;
1965 msg_sys.msg_control = ctl_buf;
1966 }
1967 msg_sys.msg_flags = flags;
1968
1969 if (sock->file->f_flags & O_NONBLOCK)
1970 msg_sys.msg_flags |= MSG_DONTWAIT;
1971 err = sock_sendmsg(sock, &msg_sys, total_len);
1972
1973out_freectl:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001974 if (ctl_buf != ctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 sock_kfree_s(sock->sk, ctl_buf, ctl_len);
1976out_freeiov:
1977 if (iov != iovstack)
1978 sock_kfree_s(sock->sk, iov, iov_size);
1979out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001980 fput_light(sock->file, fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001981out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 return err;
1983}
1984
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07001985static int __sys_recvmsg(struct socket *sock, struct msghdr __user *msg,
1986 struct msghdr *msg_sys, unsigned flags, int nosec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001988 struct compat_msghdr __user *msg_compat =
1989 (struct compat_msghdr __user *)msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 struct iovec iovstack[UIO_FASTIOV];
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001991 struct iovec *iov = iovstack;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 unsigned long cmsg_ptr;
1993 int err, iov_size, total_len, len;
1994
1995 /* kernel mode address */
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001996 struct sockaddr_storage addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997
1998 /* user mode address pointers */
1999 struct sockaddr __user *uaddr;
2000 int __user *uaddr_len;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002001
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 if (MSG_CMSG_COMPAT & flags) {
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002003 if (get_compat_msghdr(msg_sys, msg_compat))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 return -EFAULT;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002005 }
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002006 else if (copy_from_user(msg_sys, msg, sizeof(struct msghdr)))
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002007 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 err = -EMSGSIZE;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002010 if (msg_sys->msg_iovlen > UIO_MAXIOV)
2011 goto out;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002012
2013 /* Check whether to allocate the iovec area */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 err = -ENOMEM;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002015 iov_size = msg_sys->msg_iovlen * sizeof(struct iovec);
2016 if (msg_sys->msg_iovlen > UIO_FASTIOV) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 iov = sock_kmalloc(sock->sk, iov_size, GFP_KERNEL);
2018 if (!iov)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002019 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 }
2021
2022 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002023 * Save the user-mode address (verify_iovec will change the
2024 * kernel msghdr to use the kernel address space)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002026
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002027 uaddr = (__force void __user *)msg_sys->msg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 uaddr_len = COMPAT_NAMELEN(msg);
2029 if (MSG_CMSG_COMPAT & flags) {
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002030 err = verify_compat_iovec(msg_sys, iov,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07002031 (struct sockaddr *)&addr,
2032 VERIFY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 } else
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002034 err = verify_iovec(msg_sys, iov,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07002035 (struct sockaddr *)&addr,
2036 VERIFY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 if (err < 0)
2038 goto out_freeiov;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002039 total_len = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002041 cmsg_ptr = (unsigned long)msg_sys->msg_control;
2042 msg_sys->msg_flags = flags & (MSG_CMSG_CLOEXEC|MSG_CMSG_COMPAT);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002043
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 if (sock->file->f_flags & O_NONBLOCK)
2045 flags |= MSG_DONTWAIT;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002046 err = (nosec ? sock_recvmsg_nosec : sock_recvmsg)(sock, msg_sys,
2047 total_len, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 if (err < 0)
2049 goto out_freeiov;
2050 len = err;
2051
2052 if (uaddr != NULL) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07002053 err = move_addr_to_user((struct sockaddr *)&addr,
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002054 msg_sys->msg_namelen, uaddr,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002055 uaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 if (err < 0)
2057 goto out_freeiov;
2058 }
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002059 err = __put_user((msg_sys->msg_flags & ~MSG_CMSG_COMPAT),
David S. Miller37f7f422005-09-16 16:51:01 -07002060 COMPAT_FLAGS(msg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 if (err)
2062 goto out_freeiov;
2063 if (MSG_CMSG_COMPAT & flags)
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002064 err = __put_user((unsigned long)msg_sys->msg_control - cmsg_ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 &msg_compat->msg_controllen);
2066 else
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002067 err = __put_user((unsigned long)msg_sys->msg_control - cmsg_ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 &msg->msg_controllen);
2069 if (err)
2070 goto out_freeiov;
2071 err = len;
2072
2073out_freeiov:
2074 if (iov != iovstack)
2075 sock_kfree_s(sock->sk, iov, iov_size);
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002076out:
2077 return err;
2078}
2079
2080/*
2081 * BSD recvmsg interface
2082 */
2083
2084SYSCALL_DEFINE3(recvmsg, int, fd, struct msghdr __user *, msg,
2085 unsigned int, flags)
2086{
2087 int fput_needed, err;
2088 struct msghdr msg_sys;
2089 struct socket *sock = sockfd_lookup_light(fd, &err, &fput_needed);
2090
2091 if (!sock)
2092 goto out;
2093
2094 err = __sys_recvmsg(sock, msg, &msg_sys, flags, 0);
2095
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002096 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097out:
2098 return err;
2099}
2100
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002101/*
2102 * Linux recvmmsg interface
2103 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002105int __sys_recvmmsg(int fd, struct mmsghdr __user *mmsg, unsigned int vlen,
2106 unsigned int flags, struct timespec *timeout)
2107{
2108 int fput_needed, err, datagrams;
2109 struct socket *sock;
2110 struct mmsghdr __user *entry;
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002111 struct compat_mmsghdr __user *compat_entry;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002112 struct msghdr msg_sys;
2113 struct timespec end_time;
2114
2115 if (timeout &&
2116 poll_select_set_timeout(&end_time, timeout->tv_sec,
2117 timeout->tv_nsec))
2118 return -EINVAL;
2119
2120 datagrams = 0;
2121
2122 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2123 if (!sock)
2124 return err;
2125
2126 err = sock_error(sock->sk);
2127 if (err)
2128 goto out_put;
2129
2130 entry = mmsg;
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002131 compat_entry = (struct compat_mmsghdr __user *)mmsg;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002132
2133 while (datagrams < vlen) {
2134 /*
2135 * No need to ask LSM for more than the first datagram.
2136 */
Jean-Mickael Guerind7256d02009-12-01 08:47:26 +00002137 if (MSG_CMSG_COMPAT & flags) {
2138 err = __sys_recvmsg(sock, (struct msghdr __user *)compat_entry,
2139 &msg_sys, flags, datagrams);
2140 if (err < 0)
2141 break;
2142 err = __put_user(err, &compat_entry->msg_len);
2143 ++compat_entry;
2144 } else {
2145 err = __sys_recvmsg(sock, (struct msghdr __user *)entry,
2146 &msg_sys, flags, datagrams);
2147 if (err < 0)
2148 break;
2149 err = put_user(err, &entry->msg_len);
2150 ++entry;
2151 }
2152
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002153 if (err)
2154 break;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002155 ++datagrams;
2156
2157 if (timeout) {
2158 ktime_get_ts(timeout);
2159 *timeout = timespec_sub(end_time, *timeout);
2160 if (timeout->tv_sec < 0) {
2161 timeout->tv_sec = timeout->tv_nsec = 0;
2162 break;
2163 }
2164
2165 /* Timeout, return less than vlen datagrams */
2166 if (timeout->tv_nsec == 0 && timeout->tv_sec == 0)
2167 break;
2168 }
2169
2170 /* Out of band data, return right away */
2171 if (msg_sys.msg_flags & MSG_OOB)
2172 break;
2173 }
2174
2175out_put:
2176 fput_light(sock->file, fput_needed);
2177
2178 if (err == 0)
2179 return datagrams;
2180
2181 if (datagrams != 0) {
2182 /*
2183 * We may return less entries than requested (vlen) if the
2184 * sock is non block and there aren't enough datagrams...
2185 */
2186 if (err != -EAGAIN) {
2187 /*
2188 * ... or if recvmsg returns an error after we
2189 * received some datagrams, where we record the
2190 * error to return on the next call or if the
2191 * app asks about it using getsockopt(SO_ERROR).
2192 */
2193 sock->sk->sk_err = -err;
2194 }
2195
2196 return datagrams;
2197 }
2198
2199 return err;
2200}
2201
2202SYSCALL_DEFINE5(recvmmsg, int, fd, struct mmsghdr __user *, mmsg,
2203 unsigned int, vlen, unsigned int, flags,
2204 struct timespec __user *, timeout)
2205{
2206 int datagrams;
2207 struct timespec timeout_sys;
2208
2209 if (!timeout)
2210 return __sys_recvmmsg(fd, mmsg, vlen, flags, NULL);
2211
2212 if (copy_from_user(&timeout_sys, timeout, sizeof(timeout_sys)))
2213 return -EFAULT;
2214
2215 datagrams = __sys_recvmmsg(fd, mmsg, vlen, flags, &timeout_sys);
2216
2217 if (datagrams > 0 &&
2218 copy_to_user(timeout, &timeout_sys, sizeof(timeout_sys)))
2219 datagrams = -EFAULT;
2220
2221 return datagrams;
2222}
2223
2224#ifdef __ARCH_WANT_SYS_SOCKETCALL
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225/* Argument list sizes for sys_socketcall */
2226#define AL(x) ((x) * sizeof(unsigned long))
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002227static const unsigned char nargs[20] = {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002228 AL(0),AL(3),AL(3),AL(3),AL(2),AL(3),
2229 AL(3),AL(3),AL(4),AL(4),AL(4),AL(6),
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07002230 AL(6),AL(2),AL(5),AL(5),AL(3),AL(3),
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002231 AL(4),AL(5)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002232};
2233
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234#undef AL
2235
2236/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002237 * System call vectors.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 *
2239 * Argument checking cleaned up. Saved 20% in size.
2240 * This function doesn't need to set the kernel lock because
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002241 * it is set by the callees.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 */
2243
Heiko Carstens3e0fa652009-01-14 14:14:24 +01002244SYSCALL_DEFINE2(socketcall, int, call, unsigned long __user *, args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245{
2246 unsigned long a[6];
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002247 unsigned long a0, a1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 int err;
Arjan van de Ven47379052009-09-28 12:57:44 -07002249 unsigned int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002251 if (call < 1 || call > SYS_RECVMMSG)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 return -EINVAL;
2253
Arjan van de Ven47379052009-09-28 12:57:44 -07002254 len = nargs[call];
2255 if (len > sizeof(a))
2256 return -EINVAL;
2257
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 /* copy_from_user should be SMP safe. */
Arjan van de Ven47379052009-09-28 12:57:44 -07002259 if (copy_from_user(a, args, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 return -EFAULT;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002261
Al Virof3298dc2008-12-10 03:16:51 -05002262 audit_socketcall(nargs[call] / sizeof(unsigned long), a);
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002263
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002264 a0 = a[0];
2265 a1 = a[1];
2266
2267 switch (call) {
2268 case SYS_SOCKET:
2269 err = sys_socket(a0, a1, a[2]);
2270 break;
2271 case SYS_BIND:
2272 err = sys_bind(a0, (struct sockaddr __user *)a1, a[2]);
2273 break;
2274 case SYS_CONNECT:
2275 err = sys_connect(a0, (struct sockaddr __user *)a1, a[2]);
2276 break;
2277 case SYS_LISTEN:
2278 err = sys_listen(a0, a1);
2279 break;
2280 case SYS_ACCEPT:
Ulrich Drepperde11def2008-11-19 15:36:14 -08002281 err = sys_accept4(a0, (struct sockaddr __user *)a1,
2282 (int __user *)a[2], 0);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002283 break;
2284 case SYS_GETSOCKNAME:
2285 err =
2286 sys_getsockname(a0, (struct sockaddr __user *)a1,
2287 (int __user *)a[2]);
2288 break;
2289 case SYS_GETPEERNAME:
2290 err =
2291 sys_getpeername(a0, (struct sockaddr __user *)a1,
2292 (int __user *)a[2]);
2293 break;
2294 case SYS_SOCKETPAIR:
2295 err = sys_socketpair(a0, a1, a[2], (int __user *)a[3]);
2296 break;
2297 case SYS_SEND:
2298 err = sys_send(a0, (void __user *)a1, a[2], a[3]);
2299 break;
2300 case SYS_SENDTO:
2301 err = sys_sendto(a0, (void __user *)a1, a[2], a[3],
2302 (struct sockaddr __user *)a[4], a[5]);
2303 break;
2304 case SYS_RECV:
2305 err = sys_recv(a0, (void __user *)a1, a[2], a[3]);
2306 break;
2307 case SYS_RECVFROM:
2308 err = sys_recvfrom(a0, (void __user *)a1, a[2], a[3],
2309 (struct sockaddr __user *)a[4],
2310 (int __user *)a[5]);
2311 break;
2312 case SYS_SHUTDOWN:
2313 err = sys_shutdown(a0, a1);
2314 break;
2315 case SYS_SETSOCKOPT:
2316 err = sys_setsockopt(a0, a1, a[2], (char __user *)a[3], a[4]);
2317 break;
2318 case SYS_GETSOCKOPT:
2319 err =
2320 sys_getsockopt(a0, a1, a[2], (char __user *)a[3],
2321 (int __user *)a[4]);
2322 break;
2323 case SYS_SENDMSG:
2324 err = sys_sendmsg(a0, (struct msghdr __user *)a1, a[2]);
2325 break;
2326 case SYS_RECVMSG:
2327 err = sys_recvmsg(a0, (struct msghdr __user *)a1, a[2]);
2328 break;
Arnaldo Carvalho de Meloa2e27252009-10-12 23:40:10 -07002329 case SYS_RECVMMSG:
2330 err = sys_recvmmsg(a0, (struct mmsghdr __user *)a1, a[2], a[3],
2331 (struct timespec __user *)a[4]);
2332 break;
Ulrich Drepperde11def2008-11-19 15:36:14 -08002333 case SYS_ACCEPT4:
2334 err = sys_accept4(a0, (struct sockaddr __user *)a1,
2335 (int __user *)a[2], a[3]);
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07002336 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002337 default:
2338 err = -EINVAL;
2339 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 }
2341 return err;
2342}
2343
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002344#endif /* __ARCH_WANT_SYS_SOCKETCALL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002346/**
2347 * sock_register - add a socket protocol handler
2348 * @ops: description of protocol
2349 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 * This function is called by a protocol handler that wants to
2351 * advertise its address family, and have it linked into the
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002352 * socket interface. The value ops->family coresponds to the
2353 * socket system call protocol family.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 */
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002355int sock_register(const struct net_proto_family *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356{
2357 int err;
2358
2359 if (ops->family >= NPROTO) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002360 printk(KERN_CRIT "protocol %d >= NPROTO(%d)\n", ops->family,
2361 NPROTO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 return -ENOBUFS;
2363 }
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002364
2365 spin_lock(&net_family_lock);
2366 if (net_families[ops->family])
2367 err = -EEXIST;
2368 else {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002369 net_families[ops->family] = ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 err = 0;
2371 }
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002372 spin_unlock(&net_family_lock);
2373
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002374 printk(KERN_INFO "NET: Registered protocol family %d\n", ops->family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 return err;
2376}
2377
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002378/**
2379 * sock_unregister - remove a protocol handler
2380 * @family: protocol family to remove
2381 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 * This function is called by a protocol handler that wants to
2383 * remove its address family, and have it unlinked from the
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002384 * new socket creation.
2385 *
2386 * If protocol handler is a module, then it can use module reference
2387 * counts to protect against new references. If protocol handler is not
2388 * a module then it needs to provide its own protection in
2389 * the ops->create routine.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 */
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002391void sock_unregister(int family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392{
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002393 BUG_ON(family < 0 || family >= NPROTO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002395 spin_lock(&net_family_lock);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002396 net_families[family] = NULL;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002397 spin_unlock(&net_family_lock);
2398
2399 synchronize_rcu();
2400
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002401 printk(KERN_INFO "NET: Unregistered protocol family %d\n", family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402}
2403
Andi Kleen77d76ea2005-12-22 12:43:42 -08002404static int __init sock_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405{
2406 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002407 * Initialize sock SLAB cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002409
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410 sk_init();
2411
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002413 * Initialize skbuff SLAB cache
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414 */
2415 skb_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416
2417 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002418 * Initialize the protocols module.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 */
2420
2421 init_inodecache();
2422 register_filesystem(&sock_fs_type);
2423 sock_mnt = kern_mount(&sock_fs_type);
Andi Kleen77d76ea2005-12-22 12:43:42 -08002424
2425 /* The real protocol initialization is performed in later initcalls.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426 */
2427
2428#ifdef CONFIG_NETFILTER
2429 netfilter_init();
2430#endif
David S. Millercbeb3212005-12-22 12:58:55 -08002431
2432 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433}
2434
Andi Kleen77d76ea2005-12-22 12:43:42 -08002435core_initcall(sock_init); /* early initcall */
2436
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437#ifdef CONFIG_PROC_FS
2438void socket_seq_show(struct seq_file *seq)
2439{
2440 int cpu;
2441 int counter = 0;
2442
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -07002443 for_each_possible_cpu(cpu)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002444 counter += per_cpu(sockets_in_use, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445
2446 /* It can be negative, by the way. 8) */
2447 if (counter < 0)
2448 counter = 0;
2449
2450 seq_printf(seq, "sockets: used %d\n", counter);
2451}
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002452#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453
Shaun Pereira89bbfc92006-03-21 23:58:08 -08002454#ifdef CONFIG_COMPAT
Arnd Bergmann6b960182009-11-06 23:10:54 -08002455static int do_siocgstamp(struct net *net, struct socket *sock,
2456 unsigned int cmd, struct compat_timeval __user *up)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002457{
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002458 mm_segment_t old_fs = get_fs();
2459 struct timeval ktv;
2460 int err;
2461
2462 set_fs(KERNEL_DS);
Arnd Bergmann6b960182009-11-06 23:10:54 -08002463 err = sock_do_ioctl(net, sock, cmd, (unsigned long)&ktv);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002464 set_fs(old_fs);
2465 if (!err) {
2466 err = put_user(ktv.tv_sec, &up->tv_sec);
2467 err |= __put_user(ktv.tv_usec, &up->tv_usec);
2468 }
2469 return err;
2470}
2471
Arnd Bergmann6b960182009-11-06 23:10:54 -08002472static int do_siocgstampns(struct net *net, struct socket *sock,
2473 unsigned int cmd, struct compat_timespec __user *up)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002474{
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002475 mm_segment_t old_fs = get_fs();
2476 struct timespec kts;
2477 int err;
2478
2479 set_fs(KERNEL_DS);
Arnd Bergmann6b960182009-11-06 23:10:54 -08002480 err = sock_do_ioctl(net, sock, cmd, (unsigned long)&kts);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002481 set_fs(old_fs);
2482 if (!err) {
2483 err = put_user(kts.tv_sec, &up->tv_sec);
2484 err |= __put_user(kts.tv_nsec, &up->tv_nsec);
2485 }
2486 return err;
2487}
2488
Arnd Bergmann6b960182009-11-06 23:10:54 -08002489static int dev_ifname32(struct net *net, struct compat_ifreq __user *uifr32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002490{
2491 struct ifreq __user *uifr;
2492 int err;
2493
2494 uifr = compat_alloc_user_space(sizeof(struct ifreq));
Arnd Bergmann6b960182009-11-06 23:10:54 -08002495 if (copy_in_user(uifr, uifr32, sizeof(struct compat_ifreq)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002496 return -EFAULT;
2497
Arnd Bergmann6b960182009-11-06 23:10:54 -08002498 err = dev_ioctl(net, SIOCGIFNAME, uifr);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002499 if (err)
2500 return err;
2501
Arnd Bergmann6b960182009-11-06 23:10:54 -08002502 if (copy_in_user(uifr32, uifr, sizeof(struct compat_ifreq)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002503 return -EFAULT;
2504
2505 return 0;
2506}
2507
Arnd Bergmann6b960182009-11-06 23:10:54 -08002508static int dev_ifconf(struct net *net, struct compat_ifconf __user *uifc32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002509{
Arnd Bergmann6b960182009-11-06 23:10:54 -08002510 struct compat_ifconf ifc32;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002511 struct ifconf ifc;
2512 struct ifconf __user *uifc;
Arnd Bergmann6b960182009-11-06 23:10:54 -08002513 struct compat_ifreq __user *ifr32;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002514 struct ifreq __user *ifr;
2515 unsigned int i, j;
2516 int err;
2517
Arnd Bergmann6b960182009-11-06 23:10:54 -08002518 if (copy_from_user(&ifc32, uifc32, sizeof(struct compat_ifconf)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002519 return -EFAULT;
2520
2521 if (ifc32.ifcbuf == 0) {
2522 ifc32.ifc_len = 0;
2523 ifc.ifc_len = 0;
2524 ifc.ifc_req = NULL;
2525 uifc = compat_alloc_user_space(sizeof(struct ifconf));
2526 } else {
Arnd Bergmann6b960182009-11-06 23:10:54 -08002527 size_t len =((ifc32.ifc_len / sizeof (struct compat_ifreq)) + 1) *
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002528 sizeof (struct ifreq);
2529 uifc = compat_alloc_user_space(sizeof(struct ifconf) + len);
2530 ifc.ifc_len = len;
2531 ifr = ifc.ifc_req = (void __user *)(uifc + 1);
2532 ifr32 = compat_ptr(ifc32.ifcbuf);
Arnd Bergmann6b960182009-11-06 23:10:54 -08002533 for (i = 0; i < ifc32.ifc_len; i += sizeof (struct compat_ifreq)) {
2534 if (copy_in_user(ifr, ifr32, sizeof(struct compat_ifreq)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002535 return -EFAULT;
2536 ifr++;
2537 ifr32++;
2538 }
2539 }
2540 if (copy_to_user(uifc, &ifc, sizeof(struct ifconf)))
2541 return -EFAULT;
2542
Arnd Bergmann6b960182009-11-06 23:10:54 -08002543 err = dev_ioctl(net, SIOCGIFCONF, uifc);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002544 if (err)
2545 return err;
2546
2547 if (copy_from_user(&ifc, uifc, sizeof(struct ifconf)))
2548 return -EFAULT;
2549
2550 ifr = ifc.ifc_req;
2551 ifr32 = compat_ptr(ifc32.ifcbuf);
2552 for (i = 0, j = 0;
Arnd Bergmann6b960182009-11-06 23:10:54 -08002553 i + sizeof (struct compat_ifreq) <= ifc32.ifc_len && j < ifc.ifc_len;
2554 i += sizeof (struct compat_ifreq), j += sizeof (struct ifreq)) {
2555 if (copy_in_user(ifr32, ifr, sizeof (struct compat_ifreq)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002556 return -EFAULT;
2557 ifr32++;
2558 ifr++;
2559 }
2560
2561 if (ifc32.ifcbuf == 0) {
2562 /* Translate from 64-bit structure multiple to
2563 * a 32-bit one.
2564 */
2565 i = ifc.ifc_len;
Arnd Bergmann6b960182009-11-06 23:10:54 -08002566 i = ((i / sizeof(struct ifreq)) * sizeof(struct compat_ifreq));
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002567 ifc32.ifc_len = i;
2568 } else {
2569 ifc32.ifc_len = i;
2570 }
Arnd Bergmann6b960182009-11-06 23:10:54 -08002571 if (copy_to_user(uifc32, &ifc32, sizeof(struct compat_ifconf)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002572 return -EFAULT;
2573
2574 return 0;
2575}
2576
Arnd Bergmann6b960182009-11-06 23:10:54 -08002577static int ethtool_ioctl(struct net *net, struct compat_ifreq __user *ifr32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002578{
2579 struct ifreq __user *ifr;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002580 u32 data;
2581 void __user *datap;
2582
2583 ifr = compat_alloc_user_space(sizeof(*ifr));
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002584
2585 if (copy_in_user(&ifr->ifr_name, &ifr32->ifr_name, IFNAMSIZ))
2586 return -EFAULT;
2587
2588 if (get_user(data, &ifr32->ifr_ifru.ifru_data))
2589 return -EFAULT;
2590
2591 datap = compat_ptr(data);
2592 if (put_user(datap, &ifr->ifr_ifru.ifru_data))
2593 return -EFAULT;
2594
Arnd Bergmann6b960182009-11-06 23:10:54 -08002595 return dev_ioctl(net, SIOCETHTOOL, ifr);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002596}
2597
Arnd Bergmann7a50a242009-11-08 20:57:03 -08002598static int compat_siocwandev(struct net *net, struct compat_ifreq __user *uifr32)
2599{
2600 void __user *uptr;
2601 compat_uptr_t uptr32;
2602 struct ifreq __user *uifr;
2603
2604 uifr = compat_alloc_user_space(sizeof (*uifr));
2605 if (copy_in_user(uifr, uifr32, sizeof(struct compat_ifreq)))
2606 return -EFAULT;
2607
2608 if (get_user(uptr32, &uifr32->ifr_settings.ifs_ifsu))
2609 return -EFAULT;
2610
2611 uptr = compat_ptr(uptr32);
2612
2613 if (put_user(uptr, &uifr->ifr_settings.ifs_ifsu.raw_hdlc))
2614 return -EFAULT;
2615
2616 return dev_ioctl(net, SIOCWANDEV, uifr);
2617}
2618
Arnd Bergmann6b960182009-11-06 23:10:54 -08002619static int bond_ioctl(struct net *net, unsigned int cmd,
2620 struct compat_ifreq __user *ifr32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002621{
2622 struct ifreq kifr;
2623 struct ifreq __user *uifr;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002624 mm_segment_t old_fs;
2625 int err;
2626 u32 data;
2627 void __user *datap;
2628
2629 switch (cmd) {
2630 case SIOCBONDENSLAVE:
2631 case SIOCBONDRELEASE:
2632 case SIOCBONDSETHWADDR:
2633 case SIOCBONDCHANGEACTIVE:
Arnd Bergmann6b960182009-11-06 23:10:54 -08002634 if (copy_from_user(&kifr, ifr32, sizeof(struct compat_ifreq)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002635 return -EFAULT;
2636
2637 old_fs = get_fs();
2638 set_fs (KERNEL_DS);
Arnd Bergmann6b960182009-11-06 23:10:54 -08002639 err = dev_ioctl(net, cmd, &kifr);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002640 set_fs (old_fs);
2641
2642 return err;
2643 case SIOCBONDSLAVEINFOQUERY:
2644 case SIOCBONDINFOQUERY:
2645 uifr = compat_alloc_user_space(sizeof(*uifr));
2646 if (copy_in_user(&uifr->ifr_name, &ifr32->ifr_name, IFNAMSIZ))
2647 return -EFAULT;
2648
2649 if (get_user(data, &ifr32->ifr_ifru.ifru_data))
2650 return -EFAULT;
2651
2652 datap = compat_ptr(data);
2653 if (put_user(datap, &uifr->ifr_ifru.ifru_data))
2654 return -EFAULT;
2655
Arnd Bergmann6b960182009-11-06 23:10:54 -08002656 return dev_ioctl(net, cmd, uifr);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002657 default:
2658 return -EINVAL;
2659 };
2660}
2661
Arnd Bergmann6b960182009-11-06 23:10:54 -08002662static int siocdevprivate_ioctl(struct net *net, unsigned int cmd,
2663 struct compat_ifreq __user *u_ifreq32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002664{
2665 struct ifreq __user *u_ifreq64;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002666 char tmp_buf[IFNAMSIZ];
2667 void __user *data64;
2668 u32 data32;
2669
2670 if (copy_from_user(&tmp_buf[0], &(u_ifreq32->ifr_ifrn.ifrn_name[0]),
2671 IFNAMSIZ))
2672 return -EFAULT;
2673 if (__get_user(data32, &u_ifreq32->ifr_ifru.ifru_data))
2674 return -EFAULT;
2675 data64 = compat_ptr(data32);
2676
2677 u_ifreq64 = compat_alloc_user_space(sizeof(*u_ifreq64));
2678
2679 /* Don't check these user accesses, just let that get trapped
2680 * in the ioctl handler instead.
2681 */
2682 if (copy_to_user(&u_ifreq64->ifr_ifrn.ifrn_name[0], &tmp_buf[0],
2683 IFNAMSIZ))
2684 return -EFAULT;
2685 if (__put_user(data64, &u_ifreq64->ifr_ifru.ifru_data))
2686 return -EFAULT;
2687
Arnd Bergmann6b960182009-11-06 23:10:54 -08002688 return dev_ioctl(net, cmd, u_ifreq64);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002689}
2690
Arnd Bergmann6b960182009-11-06 23:10:54 -08002691static int dev_ifsioc(struct net *net, struct socket *sock,
2692 unsigned int cmd, struct compat_ifreq __user *uifr32)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002693{
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002694 struct ifreq __user *uifr;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002695 int err;
2696
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002697 uifr = compat_alloc_user_space(sizeof(*uifr));
2698 if (copy_in_user(uifr, uifr32, sizeof(*uifr32)))
2699 return -EFAULT;
2700
2701 err = sock_do_ioctl(net, sock, cmd, (unsigned long)uifr);
2702
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002703 if (!err) {
2704 switch (cmd) {
2705 case SIOCGIFFLAGS:
2706 case SIOCGIFMETRIC:
2707 case SIOCGIFMTU:
2708 case SIOCGIFMEM:
2709 case SIOCGIFHWADDR:
2710 case SIOCGIFINDEX:
2711 case SIOCGIFADDR:
2712 case SIOCGIFBRDADDR:
2713 case SIOCGIFDSTADDR:
2714 case SIOCGIFNETMASK:
Arnd Bergmannfab25322009-11-08 20:56:21 -08002715 case SIOCGIFPFLAGS:
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002716 case SIOCGIFTXQLEN:
Arnd Bergmannfab25322009-11-08 20:56:21 -08002717 case SIOCGMIIPHY:
2718 case SIOCGMIIREG:
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002719 if (copy_in_user(uifr32, uifr, sizeof(*uifr32)))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002720 err = -EFAULT;
2721 break;
2722 }
2723 }
2724 return err;
2725}
2726
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002727static int compat_sioc_ifmap(struct net *net, unsigned int cmd,
2728 struct compat_ifreq __user *uifr32)
2729{
2730 struct ifreq ifr;
2731 struct compat_ifmap __user *uifmap32;
2732 mm_segment_t old_fs;
2733 int err;
2734
2735 uifmap32 = &uifr32->ifr_ifru.ifru_map;
2736 err = copy_from_user(&ifr, uifr32, sizeof(ifr.ifr_name));
2737 err |= __get_user(ifr.ifr_map.mem_start, &uifmap32->mem_start);
2738 err |= __get_user(ifr.ifr_map.mem_end, &uifmap32->mem_end);
2739 err |= __get_user(ifr.ifr_map.base_addr, &uifmap32->base_addr);
2740 err |= __get_user(ifr.ifr_map.irq, &uifmap32->irq);
2741 err |= __get_user(ifr.ifr_map.dma, &uifmap32->dma);
2742 err |= __get_user(ifr.ifr_map.port, &uifmap32->port);
2743 if (err)
2744 return -EFAULT;
2745
2746 old_fs = get_fs();
2747 set_fs (KERNEL_DS);
2748 err = dev_ioctl(net, cmd, (void __user *)&ifr);
2749 set_fs (old_fs);
2750
2751 if (cmd == SIOCGIFMAP && !err) {
2752 err = copy_to_user(uifr32, &ifr, sizeof(ifr.ifr_name));
2753 err |= __put_user(ifr.ifr_map.mem_start, &uifmap32->mem_start);
2754 err |= __put_user(ifr.ifr_map.mem_end, &uifmap32->mem_end);
2755 err |= __put_user(ifr.ifr_map.base_addr, &uifmap32->base_addr);
2756 err |= __put_user(ifr.ifr_map.irq, &uifmap32->irq);
2757 err |= __put_user(ifr.ifr_map.dma, &uifmap32->dma);
2758 err |= __put_user(ifr.ifr_map.port, &uifmap32->port);
2759 if (err)
2760 err = -EFAULT;
2761 }
2762 return err;
2763}
2764
2765static int compat_siocshwtstamp(struct net *net, struct compat_ifreq __user *uifr32)
2766{
2767 void __user *uptr;
2768 compat_uptr_t uptr32;
2769 struct ifreq __user *uifr;
2770
2771 uifr = compat_alloc_user_space(sizeof (*uifr));
2772 if (copy_in_user(uifr, uifr32, sizeof(struct compat_ifreq)))
2773 return -EFAULT;
2774
2775 if (get_user(uptr32, &uifr32->ifr_data))
2776 return -EFAULT;
2777
2778 uptr = compat_ptr(uptr32);
2779
2780 if (put_user(uptr, &uifr->ifr_data))
2781 return -EFAULT;
2782
2783 return dev_ioctl(net, SIOCSHWTSTAMP, uifr);
2784}
2785
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002786struct rtentry32 {
2787 u32 rt_pad1;
2788 struct sockaddr rt_dst; /* target address */
2789 struct sockaddr rt_gateway; /* gateway addr (RTF_GATEWAY) */
2790 struct sockaddr rt_genmask; /* target network mask (IP) */
2791 unsigned short rt_flags;
2792 short rt_pad2;
2793 u32 rt_pad3;
2794 unsigned char rt_tos;
2795 unsigned char rt_class;
2796 short rt_pad4;
2797 short rt_metric; /* +1 for binary compatibility! */
2798 /* char * */ u32 rt_dev; /* forcing the device at add */
2799 u32 rt_mtu; /* per route MTU/Window */
2800 u32 rt_window; /* Window clamping */
2801 unsigned short rt_irtt; /* Initial RTT */
2802};
2803
2804struct in6_rtmsg32 {
2805 struct in6_addr rtmsg_dst;
2806 struct in6_addr rtmsg_src;
2807 struct in6_addr rtmsg_gateway;
2808 u32 rtmsg_type;
2809 u16 rtmsg_dst_len;
2810 u16 rtmsg_src_len;
2811 u32 rtmsg_metric;
2812 u32 rtmsg_info;
2813 u32 rtmsg_flags;
2814 s32 rtmsg_ifindex;
2815};
2816
Arnd Bergmann6b960182009-11-06 23:10:54 -08002817static int routing_ioctl(struct net *net, struct socket *sock,
2818 unsigned int cmd, void __user *argp)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002819{
2820 int ret;
2821 void *r = NULL;
2822 struct in6_rtmsg r6;
2823 struct rtentry r4;
2824 char devname[16];
2825 u32 rtdev;
2826 mm_segment_t old_fs = get_fs();
2827
Arnd Bergmann6b960182009-11-06 23:10:54 -08002828 if (sock && sock->sk && sock->sk->sk_family == AF_INET6) { /* ipv6 */
2829 struct in6_rtmsg32 __user *ur6 = argp;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002830 ret = copy_from_user (&r6.rtmsg_dst, &(ur6->rtmsg_dst),
2831 3 * sizeof(struct in6_addr));
2832 ret |= __get_user (r6.rtmsg_type, &(ur6->rtmsg_type));
2833 ret |= __get_user (r6.rtmsg_dst_len, &(ur6->rtmsg_dst_len));
2834 ret |= __get_user (r6.rtmsg_src_len, &(ur6->rtmsg_src_len));
2835 ret |= __get_user (r6.rtmsg_metric, &(ur6->rtmsg_metric));
2836 ret |= __get_user (r6.rtmsg_info, &(ur6->rtmsg_info));
2837 ret |= __get_user (r6.rtmsg_flags, &(ur6->rtmsg_flags));
2838 ret |= __get_user (r6.rtmsg_ifindex, &(ur6->rtmsg_ifindex));
2839
2840 r = (void *) &r6;
2841 } else { /* ipv4 */
Arnd Bergmann6b960182009-11-06 23:10:54 -08002842 struct rtentry32 __user *ur4 = argp;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002843 ret = copy_from_user (&r4.rt_dst, &(ur4->rt_dst),
2844 3 * sizeof(struct sockaddr));
2845 ret |= __get_user (r4.rt_flags, &(ur4->rt_flags));
2846 ret |= __get_user (r4.rt_metric, &(ur4->rt_metric));
2847 ret |= __get_user (r4.rt_mtu, &(ur4->rt_mtu));
2848 ret |= __get_user (r4.rt_window, &(ur4->rt_window));
2849 ret |= __get_user (r4.rt_irtt, &(ur4->rt_irtt));
2850 ret |= __get_user (rtdev, &(ur4->rt_dev));
2851 if (rtdev) {
2852 ret |= copy_from_user (devname, compat_ptr(rtdev), 15);
2853 r4.rt_dev = devname; devname[15] = 0;
2854 } else
2855 r4.rt_dev = NULL;
2856
2857 r = (void *) &r4;
2858 }
2859
2860 if (ret) {
2861 ret = -EFAULT;
2862 goto out;
2863 }
2864
2865 set_fs (KERNEL_DS);
Arnd Bergmann6b960182009-11-06 23:10:54 -08002866 ret = sock_do_ioctl(net, sock, cmd, (unsigned long) r);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002867 set_fs (old_fs);
2868
2869out:
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002870 return ret;
2871}
2872
2873/* Since old style bridge ioctl's endup using SIOCDEVPRIVATE
2874 * for some operations; this forces use of the newer bridge-utils that
2875 * use compatiable ioctls
2876 */
Arnd Bergmann6b960182009-11-06 23:10:54 -08002877static int old_bridge_ioctl(compat_ulong_t __user *argp)
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002878{
Arnd Bergmann6b960182009-11-06 23:10:54 -08002879 compat_ulong_t tmp;
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002880
Arnd Bergmann6b960182009-11-06 23:10:54 -08002881 if (get_user(tmp, argp))
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002882 return -EFAULT;
2883 if (tmp == BRCTL_GET_VERSION)
2884 return BRCTL_VERSION + 1;
2885 return -EINVAL;
2886}
2887
Arnd Bergmann6b960182009-11-06 23:10:54 -08002888static int compat_sock_ioctl_trans(struct file *file, struct socket *sock,
2889 unsigned int cmd, unsigned long arg)
2890{
2891 void __user *argp = compat_ptr(arg);
2892 struct sock *sk = sock->sk;
2893 struct net *net = sock_net(sk);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002894
Arnd Bergmann6b960182009-11-06 23:10:54 -08002895 if (cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15))
2896 return siocdevprivate_ioctl(net, cmd, argp);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002897
Arnd Bergmann6b960182009-11-06 23:10:54 -08002898 switch (cmd) {
2899 case SIOCSIFBR:
2900 case SIOCGIFBR:
2901 return old_bridge_ioctl(argp);
2902 case SIOCGIFNAME:
2903 return dev_ifname32(net, argp);
2904 case SIOCGIFCONF:
2905 return dev_ifconf(net, argp);
2906 case SIOCETHTOOL:
2907 return ethtool_ioctl(net, argp);
Arnd Bergmann7a50a242009-11-08 20:57:03 -08002908 case SIOCWANDEV:
2909 return compat_siocwandev(net, argp);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002910 case SIOCGIFMAP:
2911 case SIOCSIFMAP:
2912 return compat_sioc_ifmap(net, cmd, argp);
Arnd Bergmann6b960182009-11-06 23:10:54 -08002913 case SIOCBONDENSLAVE:
2914 case SIOCBONDRELEASE:
2915 case SIOCBONDSETHWADDR:
2916 case SIOCBONDSLAVEINFOQUERY:
2917 case SIOCBONDINFOQUERY:
2918 case SIOCBONDCHANGEACTIVE:
2919 return bond_ioctl(net, cmd, argp);
2920 case SIOCADDRT:
2921 case SIOCDELRT:
2922 return routing_ioctl(net, sock, cmd, argp);
2923 case SIOCGSTAMP:
2924 return do_siocgstamp(net, sock, cmd, argp);
2925 case SIOCGSTAMPNS:
2926 return do_siocgstampns(net, sock, cmd, argp);
Arnd Bergmanna2116ed2009-11-11 03:39:40 +00002927 case SIOCSHWTSTAMP:
2928 return compat_siocshwtstamp(net, argp);
Arnd Bergmann7a2293872009-11-06 23:00:29 -08002929
Arnd Bergmann6b960182009-11-06 23:10:54 -08002930 case FIOSETOWN:
2931 case SIOCSPGRP:
2932 case FIOGETOWN:
2933 case SIOCGPGRP:
2934 case SIOCBRADDBR:
2935 case SIOCBRDELBR:
2936 case SIOCGIFVLAN:
2937 case SIOCSIFVLAN:
2938 case SIOCADDDLCI:
2939 case SIOCDELDLCI:
2940 return sock_ioctl(file, cmd, arg);
2941
2942 case SIOCGIFFLAGS:
2943 case SIOCSIFFLAGS:
2944 case SIOCGIFMETRIC:
2945 case SIOCSIFMETRIC:
2946 case SIOCGIFMTU:
2947 case SIOCSIFMTU:
2948 case SIOCGIFMEM:
2949 case SIOCSIFMEM:
2950 case SIOCGIFHWADDR:
2951 case SIOCSIFHWADDR:
2952 case SIOCADDMULTI:
2953 case SIOCDELMULTI:
2954 case SIOCGIFINDEX:
Arnd Bergmann6b960182009-11-06 23:10:54 -08002955 case SIOCGIFADDR:
2956 case SIOCSIFADDR:
2957 case SIOCSIFHWBROADCAST:
Arnd Bergmann6b960182009-11-06 23:10:54 -08002958 case SIOCDIFADDR:
Arnd Bergmann6b960182009-11-06 23:10:54 -08002959 case SIOCGIFBRDADDR:
2960 case SIOCSIFBRDADDR:
2961 case SIOCGIFDSTADDR:
2962 case SIOCSIFDSTADDR:
2963 case SIOCGIFNETMASK:
2964 case SIOCSIFNETMASK:
2965 case SIOCSIFPFLAGS:
2966 case SIOCGIFPFLAGS:
2967 case SIOCGIFTXQLEN:
2968 case SIOCSIFTXQLEN:
2969 case SIOCBRADDIF:
2970 case SIOCBRDELIF:
Arnd Bergmann9177efd2009-11-06 08:09:09 +00002971 case SIOCSIFNAME:
2972 case SIOCGMIIPHY:
2973 case SIOCGMIIREG:
2974 case SIOCSMIIREG:
Arnd Bergmann6b960182009-11-06 23:10:54 -08002975 return dev_ifsioc(net, sock, cmd, argp);
Arnd Bergmann9177efd2009-11-06 08:09:09 +00002976
Arnd Bergmann6b960182009-11-06 23:10:54 -08002977 case SIOCSARP:
2978 case SIOCGARP:
2979 case SIOCDARP:
Arnd Bergmann6b960182009-11-06 23:10:54 -08002980 case SIOCATMARK:
Arnd Bergmann9177efd2009-11-06 08:09:09 +00002981 return sock_do_ioctl(net, sock, cmd, arg);
2982 }
2983
2984 /* Prevent warning from compat_sys_ioctl, these always
2985 * result in -EINVAL in the native case anyway. */
2986 switch (cmd) {
2987 case SIOCRTMSG:
2988 case SIOCGIFCOUNT:
Arnd Bergmann6b960182009-11-06 23:10:54 -08002989 case SIOCSRARP:
2990 case SIOCGRARP:
2991 case SIOCDRARP:
Arnd Bergmann9177efd2009-11-06 08:09:09 +00002992 case SIOCSIFLINK:
2993 case SIOCGIFSLAVE:
2994 case SIOCSIFSLAVE:
2995 return -EINVAL;
Arnd Bergmann6b960182009-11-06 23:10:54 -08002996 }
2997
2998 return -ENOIOCTLCMD;
2999}
Arnd Bergmann7a2293872009-11-06 23:00:29 -08003000
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003001static long compat_sock_ioctl(struct file *file, unsigned cmd,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07003002 unsigned long arg)
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003003{
3004 struct socket *sock = file->private_data;
3005 int ret = -ENOIOCTLCMD;
David S. Miller87de87d2008-06-03 09:14:03 -07003006 struct sock *sk;
3007 struct net *net;
3008
3009 sk = sock->sk;
3010 net = sock_net(sk);
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003011
3012 if (sock->ops->compat_ioctl)
3013 ret = sock->ops->compat_ioctl(sock, cmd, arg);
3014
David S. Miller87de87d2008-06-03 09:14:03 -07003015 if (ret == -ENOIOCTLCMD &&
3016 (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST))
3017 ret = compat_wext_handle_ioctl(net, cmd, arg);
3018
Arnd Bergmann6b960182009-11-06 23:10:54 -08003019 if (ret == -ENOIOCTLCMD)
3020 ret = compat_sock_ioctl_trans(file, sock, cmd, arg);
3021
Shaun Pereira89bbfc92006-03-21 23:58:08 -08003022 return ret;
3023}
3024#endif
3025
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003026int kernel_bind(struct socket *sock, struct sockaddr *addr, int addrlen)
3027{
3028 return sock->ops->bind(sock, addr, addrlen);
3029}
3030
3031int kernel_listen(struct socket *sock, int backlog)
3032{
3033 return sock->ops->listen(sock, backlog);
3034}
3035
3036int kernel_accept(struct socket *sock, struct socket **newsock, int flags)
3037{
3038 struct sock *sk = sock->sk;
3039 int err;
3040
3041 err = sock_create_lite(sk->sk_family, sk->sk_type, sk->sk_protocol,
3042 newsock);
3043 if (err < 0)
3044 goto done;
3045
3046 err = sock->ops->accept(sock, *newsock, flags);
3047 if (err < 0) {
3048 sock_release(*newsock);
Tony Battersbyfa8705b2007-10-10 21:09:04 -07003049 *newsock = NULL;
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003050 goto done;
3051 }
3052
3053 (*newsock)->ops = sock->ops;
Wei Yongjun1b085342008-12-18 19:35:10 -08003054 __module_get((*newsock)->ops->owner);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003055
3056done:
3057 return err;
3058}
3059
3060int kernel_connect(struct socket *sock, struct sockaddr *addr, int addrlen,
YOSHIFUJI Hideaki4768fbc2007-02-09 23:25:31 +09003061 int flags)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003062{
3063 return sock->ops->connect(sock, addr, addrlen, flags);
3064}
3065
3066int kernel_getsockname(struct socket *sock, struct sockaddr *addr,
3067 int *addrlen)
3068{
3069 return sock->ops->getname(sock, addr, addrlen, 0);
3070}
3071
3072int kernel_getpeername(struct socket *sock, struct sockaddr *addr,
3073 int *addrlen)
3074{
3075 return sock->ops->getname(sock, addr, addrlen, 1);
3076}
3077
3078int kernel_getsockopt(struct socket *sock, int level, int optname,
3079 char *optval, int *optlen)
3080{
3081 mm_segment_t oldfs = get_fs();
3082 int err;
3083
3084 set_fs(KERNEL_DS);
3085 if (level == SOL_SOCKET)
3086 err = sock_getsockopt(sock, level, optname, optval, optlen);
3087 else
3088 err = sock->ops->getsockopt(sock, level, optname, optval,
3089 optlen);
3090 set_fs(oldfs);
3091 return err;
3092}
3093
3094int kernel_setsockopt(struct socket *sock, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07003095 char *optval, unsigned int optlen)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003096{
3097 mm_segment_t oldfs = get_fs();
3098 int err;
3099
3100 set_fs(KERNEL_DS);
3101 if (level == SOL_SOCKET)
3102 err = sock_setsockopt(sock, level, optname, optval, optlen);
3103 else
3104 err = sock->ops->setsockopt(sock, level, optname, optval,
3105 optlen);
3106 set_fs(oldfs);
3107 return err;
3108}
3109
3110int kernel_sendpage(struct socket *sock, struct page *page, int offset,
3111 size_t size, int flags)
3112{
3113 if (sock->ops->sendpage)
3114 return sock->ops->sendpage(sock, page, offset, size, flags);
3115
3116 return sock_no_sendpage(sock, page, offset, size, flags);
3117}
3118
3119int kernel_sock_ioctl(struct socket *sock, int cmd, unsigned long arg)
3120{
3121 mm_segment_t oldfs = get_fs();
3122 int err;
3123
3124 set_fs(KERNEL_DS);
3125 err = sock->ops->ioctl(sock, cmd, arg);
3126 set_fs(oldfs);
3127
3128 return err;
3129}
3130
Trond Myklebust91cf45f2007-11-12 18:10:39 -08003131int kernel_sock_shutdown(struct socket *sock, enum sock_shutdown_cmd how)
3132{
3133 return sock->ops->shutdown(sock, how);
3134}
3135
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136EXPORT_SYMBOL(sock_create);
3137EXPORT_SYMBOL(sock_create_kern);
3138EXPORT_SYMBOL(sock_create_lite);
3139EXPORT_SYMBOL(sock_map_fd);
3140EXPORT_SYMBOL(sock_recvmsg);
3141EXPORT_SYMBOL(sock_register);
3142EXPORT_SYMBOL(sock_release);
3143EXPORT_SYMBOL(sock_sendmsg);
3144EXPORT_SYMBOL(sock_unregister);
3145EXPORT_SYMBOL(sock_wake_async);
3146EXPORT_SYMBOL(sockfd_lookup);
3147EXPORT_SYMBOL(kernel_sendmsg);
3148EXPORT_SYMBOL(kernel_recvmsg);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07003149EXPORT_SYMBOL(kernel_bind);
3150EXPORT_SYMBOL(kernel_listen);
3151EXPORT_SYMBOL(kernel_accept);
3152EXPORT_SYMBOL(kernel_connect);
3153EXPORT_SYMBOL(kernel_getsockname);
3154EXPORT_SYMBOL(kernel_getpeername);
3155EXPORT_SYMBOL(kernel_getsockopt);
3156EXPORT_SYMBOL(kernel_setsockopt);
3157EXPORT_SYMBOL(kernel_sendpage);
3158EXPORT_SYMBOL(kernel_sock_ioctl);
Trond Myklebust91cf45f2007-11-12 18:10:39 -08003159EXPORT_SYMBOL(kernel_sock_shutdown);