blob: 62c7729527ff916447623a40d4966f7ba24663f1 [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>
Ulrich Drepperc019bbc2008-07-23 21:29:21 -070072#include <linux/thread_info.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070073#include <linux/wanrouter.h>
74#include <linux/if_bridge.h>
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -030075#include <linux/if_frad.h>
76#include <linux/if_vlan.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070077#include <linux/init.h>
78#include <linux/poll.h>
79#include <linux/cache.h>
80#include <linux/module.h>
81#include <linux/highmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070082#include <linux/mount.h>
83#include <linux/security.h>
84#include <linux/syscalls.h>
85#include <linux/compat.h>
86#include <linux/kmod.h>
David Woodhouse3ec3b2f2005-05-17 12:08:48 +010087#include <linux/audit.h>
Adrian Bunkd86b5e02006-01-21 00:46:55 +010088#include <linux/wireless.h>
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -070089#include <linux/nsproxy.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
100static int sock_no_open(struct inode *irrelevant, struct file *dontcare);
Badari Pulavarty027445c2006-09-30 23:28:46 -0700101static ssize_t sock_aio_read(struct kiocb *iocb, const struct iovec *iov,
102 unsigned long nr_segs, loff_t pos);
103static ssize_t sock_aio_write(struct kiocb *iocb, const struct iovec *iov,
104 unsigned long nr_segs, loff_t pos);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700105static int sock_mmap(struct file *file, struct vm_area_struct *vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
107static int sock_close(struct inode *inode, struct file *file);
108static unsigned int sock_poll(struct file *file,
109 struct poll_table_struct *wait);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700110static long sock_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800111#ifdef CONFIG_COMPAT
112static long compat_sock_ioctl(struct file *file,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700113 unsigned int cmd, unsigned long arg);
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800114#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115static int sock_fasync(int fd, struct file *filp, int on);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116static ssize_t sock_sendpage(struct file *file, struct page *page,
117 int offset, size_t size, loff_t *ppos, int more);
Jens Axboe9c55e012007-11-06 23:30:13 -0800118static ssize_t sock_splice_read(struct file *file, loff_t *ppos,
119 struct pipe_inode_info *pipe, size_t len,
120 unsigned int flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122/*
123 * Socket files have a set of 'special' operations as well as the generic file ones. These don't appear
124 * in the operation structures but are done directly via the socketcall() multiplexor.
125 */
126
Arjan van de Venda7071d2007-02-12 00:55:36 -0800127static const struct file_operations socket_file_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 .owner = THIS_MODULE,
129 .llseek = no_llseek,
130 .aio_read = sock_aio_read,
131 .aio_write = sock_aio_write,
132 .poll = sock_poll,
133 .unlocked_ioctl = sock_ioctl,
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800134#ifdef CONFIG_COMPAT
135 .compat_ioctl = compat_sock_ioctl,
136#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 .mmap = sock_mmap,
138 .open = sock_no_open, /* special open code to disallow open via /proc */
139 .release = sock_close,
140 .fasync = sock_fasync,
Jens Axboe5274f052006-03-30 15:15:30 +0200141 .sendpage = sock_sendpage,
142 .splice_write = generic_splice_sendpage,
Jens Axboe9c55e012007-11-06 23:30:13 -0800143 .splice_read = sock_splice_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144};
145
146/*
147 * The protocol list. Each protocol is registered in here.
148 */
149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150static DEFINE_SPINLOCK(net_family_lock);
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -0700151static const struct net_proto_family *net_families[NPROTO] __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153/*
154 * Statistics counters of the socket lists
155 */
156
157static DEFINE_PER_CPU(int, sockets_in_use) = 0;
158
159/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700160 * Support routines.
161 * Move socket addresses back and forth across the kernel/user
162 * divide and look after the messy bits.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 */
164
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700165#define MAX_SOCK_ADDR 128 /* 108 for Unix domain -
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 16 for IP, 16 for IPX,
167 24 for IPv6,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700168 about 80 for AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 must be at least one bigger than
170 the AF_UNIX size (see net/unix/af_unix.c
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700171 :unix_mkname()).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700173
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174/**
175 * move_addr_to_kernel - copy a socket address into kernel space
176 * @uaddr: Address in user space
177 * @kaddr: Address in kernel space
178 * @ulen: Length in user space
179 *
180 * The address is copied into kernel space. If the provided address is
181 * too long an error code of -EINVAL is returned. If the copy gives
182 * invalid addresses -EFAULT is returned. On a success 0 is returned.
183 */
184
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -0700185int move_addr_to_kernel(void __user *uaddr, int ulen, struct sockaddr *kaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186{
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -0700187 if (ulen < 0 || ulen > sizeof(struct sockaddr_storage))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700189 if (ulen == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 return 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700191 if (copy_from_user(kaddr, uaddr, ulen))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 return -EFAULT;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +0100193 return audit_sockaddr(ulen, kaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194}
195
196/**
197 * move_addr_to_user - copy an address to user space
198 * @kaddr: kernel space address
199 * @klen: length of address in kernel
200 * @uaddr: user space address
201 * @ulen: pointer to user length field
202 *
203 * The value pointed to by ulen on entry is the buffer length available.
204 * This is overwritten with the buffer space used. -EINVAL is returned
205 * if an overlong buffer is specified or a negative buffer size. -EFAULT
206 * is returned if either the buffer or the length field are not
207 * accessible.
208 * After copying the data up to the limit the user specifies, the true
209 * length of the data is written over the length limit the user
210 * specified. Zero is returned for a success.
211 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700212
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -0700213int move_addr_to_user(struct sockaddr *kaddr, int klen, void __user *uaddr,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700214 int __user *ulen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215{
216 int err;
217 int len;
218
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700219 err = get_user(len, ulen);
220 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 return err;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700222 if (len > klen)
223 len = klen;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -0700224 if (len < 0 || len > sizeof(struct sockaddr_storage))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700226 if (len) {
Steve Grubbd6fe3942006-03-30 12:20:22 -0500227 if (audit_sockaddr(klen, kaddr))
228 return -ENOMEM;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700229 if (copy_to_user(uaddr, kaddr, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 return -EFAULT;
231 }
232 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700233 * "fromlen shall refer to the value before truncation.."
234 * 1003.1g
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 */
236 return __put_user(klen, ulen);
237}
238
239#define SOCKFS_MAGIC 0x534F434B
240
Christoph Lametere18b8902006-12-06 20:33:20 -0800241static struct kmem_cache *sock_inode_cachep __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
243static struct inode *sock_alloc_inode(struct super_block *sb)
244{
245 struct socket_alloc *ei;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700246
Christoph Lametere94b1762006-12-06 20:33:17 -0800247 ei = kmem_cache_alloc(sock_inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 if (!ei)
249 return NULL;
250 init_waitqueue_head(&ei->socket.wait);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700251
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 ei->socket.fasync_list = NULL;
253 ei->socket.state = SS_UNCONNECTED;
254 ei->socket.flags = 0;
255 ei->socket.ops = NULL;
256 ei->socket.sk = NULL;
257 ei->socket.file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
259 return &ei->vfs_inode;
260}
261
262static void sock_destroy_inode(struct inode *inode)
263{
264 kmem_cache_free(sock_inode_cachep,
265 container_of(inode, struct socket_alloc, vfs_inode));
266}
267
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700268static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269{
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700270 struct socket_alloc *ei = (struct socket_alloc *)foo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
Christoph Lametera35afb82007-05-16 22:10:57 -0700272 inode_init_once(&ei->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273}
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275static int init_inodecache(void)
276{
277 sock_inode_cachep = kmem_cache_create("sock_inode_cache",
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700278 sizeof(struct socket_alloc),
279 0,
280 (SLAB_HWCACHE_ALIGN |
281 SLAB_RECLAIM_ACCOUNT |
282 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +0900283 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 if (sock_inode_cachep == NULL)
285 return -ENOMEM;
286 return 0;
287}
288
289static struct super_operations sockfs_ops = {
290 .alloc_inode = sock_alloc_inode,
291 .destroy_inode =sock_destroy_inode,
292 .statfs = simple_statfs,
293};
294
David Howells454e2392006-06-23 02:02:57 -0700295static int sockfs_get_sb(struct file_system_type *fs_type,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700296 int flags, const char *dev_name, void *data,
297 struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298{
David Howells454e2392006-06-23 02:02:57 -0700299 return get_sb_pseudo(fs_type, "socket:", &sockfs_ops, SOCKFS_MAGIC,
300 mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301}
302
Eric Dumazetba899662005-08-26 12:05:31 -0700303static struct vfsmount *sock_mnt __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
305static struct file_system_type sock_fs_type = {
306 .name = "sockfs",
307 .get_sb = sockfs_get_sb,
308 .kill_sb = kill_anon_super,
309};
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311static int sockfs_delete_dentry(struct dentry *dentry)
312{
Eric Dumazet304e61e2006-12-06 20:38:49 -0800313 /*
314 * At creation time, we pretended this dentry was hashed
315 * (by clearing DCACHE_UNHASHED bit in d_flags)
316 * At delete time, we restore the truth : not hashed.
317 * (so that dput() can proceed correctly)
318 */
319 dentry->d_flags |= DCACHE_UNHASHED;
320 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321}
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700322
323/*
324 * sockfs_dname() is called from d_path().
325 */
326static char *sockfs_dname(struct dentry *dentry, char *buffer, int buflen)
327{
328 return dynamic_dname(dentry, buffer, buflen, "socket:[%lu]",
329 dentry->d_inode->i_ino);
330}
331
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332static struct dentry_operations sockfs_dentry_operations = {
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700333 .d_delete = sockfs_delete_dentry,
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700334 .d_dname = sockfs_dname,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335};
336
337/*
338 * Obtains the first available file descriptor and sets it up for use.
339 *
David S. Miller39d8c1b2006-03-20 17:13:49 -0800340 * These functions create file structures and maps them to fd space
341 * of the current process. On success it returns file descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 * and file struct implicitly stored in sock->file.
343 * Note that another thread may close file descriptor before we return
344 * from this function. We use the fact that now we do not refer
345 * to socket after mapping. If one day we will need it, this
346 * function will increment ref. count on file by 1.
347 *
348 * In any case returned fd MAY BE not valid!
349 * This race condition is unavoidable
350 * with shared fd spaces, we cannot solve it inside kernel,
351 * but we take care of internal coherence yet.
352 */
353
Ulrich Dreppera677a032008-07-23 21:29:17 -0700354static int sock_alloc_fd(struct file **filep, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355{
356 int fd;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800357
Ulrich Dreppera677a032008-07-23 21:29:17 -0700358 fd = get_unused_fd_flags(flags);
David S. Miller39d8c1b2006-03-20 17:13:49 -0800359 if (likely(fd >= 0)) {
360 struct file *file = get_empty_filp();
361
362 *filep = file;
363 if (unlikely(!file)) {
364 put_unused_fd(fd);
365 return -ENFILE;
366 }
367 } else
368 *filep = NULL;
369 return fd;
370}
371
Ulrich Drepper77d27202008-07-23 21:29:35 -0700372static int sock_attach_fd(struct socket *sock, struct file *file, int flags)
David S. Miller39d8c1b2006-03-20 17:13:49 -0800373{
Dave Hansence8d2cd2007-10-16 23:31:13 -0700374 struct dentry *dentry;
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700375 struct qstr name = { .name = "" };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
Dave Hansence8d2cd2007-10-16 23:31:13 -0700377 dentry = d_alloc(sock_mnt->mnt_sb->s_root, &name);
378 if (unlikely(!dentry))
David S. Miller39d8c1b2006-03-20 17:13:49 -0800379 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
Dave Hansence8d2cd2007-10-16 23:31:13 -0700381 dentry->d_op = &sockfs_dentry_operations;
Eric Dumazet304e61e2006-12-06 20:38:49 -0800382 /*
383 * We dont want to push this dentry into global dentry hash table.
384 * We pretend dentry is already hashed, by unsetting DCACHE_UNHASHED
385 * This permits a working /proc/$pid/fd/XXX on sockets
386 */
Dave Hansence8d2cd2007-10-16 23:31:13 -0700387 dentry->d_flags &= ~DCACHE_UNHASHED;
388 d_instantiate(dentry, SOCK_INODE(sock));
David S. Miller39d8c1b2006-03-20 17:13:49 -0800389
390 sock->file = file;
Dave Hansence8d2cd2007-10-16 23:31:13 -0700391 init_file(file, sock_mnt, dentry, FMODE_READ | FMODE_WRITE,
392 &socket_file_ops);
393 SOCK_INODE(sock)->i_fop = &socket_file_ops;
Ulrich Drepper77d27202008-07-23 21:29:35 -0700394 file->f_flags = O_RDWR | (flags & O_NONBLOCK);
David S. Miller39d8c1b2006-03-20 17:13:49 -0800395 file->f_pos = 0;
396 file->private_data = sock;
397
398 return 0;
399}
400
Ulrich Dreppera677a032008-07-23 21:29:17 -0700401int sock_map_fd(struct socket *sock, int flags)
David S. Miller39d8c1b2006-03-20 17:13:49 -0800402{
403 struct file *newfile;
Ulrich Dreppera677a032008-07-23 21:29:17 -0700404 int fd = sock_alloc_fd(&newfile, flags);
David S. Miller39d8c1b2006-03-20 17:13:49 -0800405
406 if (likely(fd >= 0)) {
Ulrich Drepper77d27202008-07-23 21:29:35 -0700407 int err = sock_attach_fd(sock, newfile, flags);
David S. Miller39d8c1b2006-03-20 17:13:49 -0800408
409 if (unlikely(err < 0)) {
410 put_filp(newfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 put_unused_fd(fd);
David S. Miller39d8c1b2006-03-20 17:13:49 -0800412 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 }
David S. Miller39d8c1b2006-03-20 17:13:49 -0800414 fd_install(fd, newfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 return fd;
417}
418
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800419static struct socket *sock_from_file(struct file *file, int *err)
420{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800421 if (file->f_op == &socket_file_ops)
422 return file->private_data; /* set in sock_map_fd */
423
Eric Dumazet23bb80d2007-02-08 14:59:57 -0800424 *err = -ENOTSOCK;
425 return NULL;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800426}
427
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428/**
429 * sockfd_lookup - Go from a file number to its socket slot
430 * @fd: file handle
431 * @err: pointer to an error code return
432 *
433 * The file handle passed in is locked and the socket it is bound
434 * too is returned. If an error occurs the err pointer is overwritten
435 * with a negative errno code and NULL is returned. The function checks
436 * for both invalid handles and passing a handle which is not a socket.
437 *
438 * On a success the socket object pointer is returned.
439 */
440
441struct socket *sockfd_lookup(int fd, int *err)
442{
443 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 struct socket *sock;
445
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700446 file = fget(fd);
447 if (!file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 *err = -EBADF;
449 return NULL;
450 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700451
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800452 sock = sock_from_file(file, err);
453 if (!sock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 fput(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 return sock;
456}
457
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800458static struct socket *sockfd_lookup_light(int fd, int *err, int *fput_needed)
459{
460 struct file *file;
461 struct socket *sock;
462
Hua Zhong36725582006-04-19 15:25:02 -0700463 *err = -EBADF;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800464 file = fget_light(fd, fput_needed);
465 if (file) {
466 sock = sock_from_file(file, err);
467 if (sock)
468 return sock;
469 fput_light(file, *fput_needed);
470 }
471 return NULL;
472}
473
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474/**
475 * sock_alloc - allocate a socket
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700476 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 * Allocate a new inode and socket object. The two are bound together
478 * and initialised. The socket is then returned. If we are out of inodes
479 * NULL is returned.
480 */
481
482static struct socket *sock_alloc(void)
483{
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700484 struct inode *inode;
485 struct socket *sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
487 inode = new_inode(sock_mnt->mnt_sb);
488 if (!inode)
489 return NULL;
490
491 sock = SOCKET_I(inode);
492
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700493 inode->i_mode = S_IFSOCK | S_IRWXUGO;
David Howells8192b0c2008-11-14 10:39:10 +1100494 inode->i_uid = current_fsuid();
495 inode->i_gid = current_fsgid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
497 get_cpu_var(sockets_in_use)++;
498 put_cpu_var(sockets_in_use);
499 return sock;
500}
501
502/*
503 * In theory you can't get an open on this inode, but /proc provides
504 * a back door. Remember to keep it shut otherwise you'll let the
505 * creepy crawlies in.
506 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700507
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508static int sock_no_open(struct inode *irrelevant, struct file *dontcare)
509{
510 return -ENXIO;
511}
512
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800513const struct file_operations bad_sock_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 .owner = THIS_MODULE,
515 .open = sock_no_open,
516};
517
518/**
519 * sock_release - close a socket
520 * @sock: socket to close
521 *
522 * The socket is released from the protocol stack if it has a release
523 * callback, and the inode is then released if the socket is bound to
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700524 * an inode not a file.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700526
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527void sock_release(struct socket *sock)
528{
529 if (sock->ops) {
530 struct module *owner = sock->ops->owner;
531
532 sock->ops->release(sock);
533 sock->ops = NULL;
534 module_put(owner);
535 }
536
537 if (sock->fasync_list)
538 printk(KERN_ERR "sock_release: fasync list not empty!\n");
539
540 get_cpu_var(sockets_in_use)--;
541 put_cpu_var(sockets_in_use);
542 if (!sock->file) {
543 iput(SOCK_INODE(sock));
544 return;
545 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700546 sock->file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547}
548
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700549static inline int __sock_sendmsg(struct kiocb *iocb, struct socket *sock,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 struct msghdr *msg, size_t size)
551{
552 struct sock_iocb *si = kiocb_to_siocb(iocb);
553 int err;
554
555 si->sock = sock;
556 si->scm = NULL;
557 si->msg = msg;
558 si->size = size;
559
560 err = security_socket_sendmsg(sock, msg, size);
561 if (err)
562 return err;
563
564 return sock->ops->sendmsg(iocb, sock, msg, size);
565}
566
567int sock_sendmsg(struct socket *sock, struct msghdr *msg, size_t size)
568{
569 struct kiocb iocb;
570 struct sock_iocb siocb;
571 int ret;
572
573 init_sync_kiocb(&iocb, NULL);
574 iocb.private = &siocb;
575 ret = __sock_sendmsg(&iocb, sock, msg, size);
576 if (-EIOCBQUEUED == ret)
577 ret = wait_on_sync_kiocb(&iocb);
578 return ret;
579}
580
581int kernel_sendmsg(struct socket *sock, struct msghdr *msg,
582 struct kvec *vec, size_t num, size_t size)
583{
584 mm_segment_t oldfs = get_fs();
585 int result;
586
587 set_fs(KERNEL_DS);
588 /*
589 * the following is safe, since for compiler definitions of kvec and
590 * iovec are identical, yielding the same in-core layout and alignment
591 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700592 msg->msg_iov = (struct iovec *)vec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 msg->msg_iovlen = num;
594 result = sock_sendmsg(sock, msg, size);
595 set_fs(oldfs);
596 return result;
597}
598
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700599/*
600 * called from sock_recv_timestamp() if sock_flag(sk, SOCK_RCVTSTAMP)
601 */
602void __sock_recv_timestamp(struct msghdr *msg, struct sock *sk,
603 struct sk_buff *skb)
604{
605 ktime_t kt = skb->tstamp;
606
607 if (!sock_flag(sk, SOCK_RCVTSTAMPNS)) {
608 struct timeval tv;
609 /* Race occurred between timestamp enabling and packet
610 receiving. Fill in the current time for now. */
611 if (kt.tv64 == 0)
612 kt = ktime_get_real();
613 skb->tstamp = kt;
614 tv = ktime_to_timeval(kt);
615 put_cmsg(msg, SOL_SOCKET, SCM_TIMESTAMP, sizeof(tv), &tv);
616 } else {
617 struct timespec ts;
618 /* Race occurred between timestamp enabling and packet
619 receiving. Fill in the current time for now. */
620 if (kt.tv64 == 0)
621 kt = ktime_get_real();
622 skb->tstamp = kt;
623 ts = ktime_to_timespec(kt);
624 put_cmsg(msg, SOL_SOCKET, SCM_TIMESTAMPNS, sizeof(ts), &ts);
625 }
626}
627
Arnaldo Carvalho de Melo7c81fd82007-03-10 00:39:35 -0300628EXPORT_SYMBOL_GPL(__sock_recv_timestamp);
629
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700630static inline int __sock_recvmsg(struct kiocb *iocb, struct socket *sock,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 struct msghdr *msg, size_t size, int flags)
632{
633 int err;
634 struct sock_iocb *si = kiocb_to_siocb(iocb);
635
636 si->sock = sock;
637 si->scm = NULL;
638 si->msg = msg;
639 si->size = size;
640 si->flags = flags;
641
642 err = security_socket_recvmsg(sock, msg, size, flags);
643 if (err)
644 return err;
645
646 return sock->ops->recvmsg(iocb, sock, msg, size, flags);
647}
648
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700649int sock_recvmsg(struct socket *sock, struct msghdr *msg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 size_t size, int flags)
651{
652 struct kiocb iocb;
653 struct sock_iocb siocb;
654 int ret;
655
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700656 init_sync_kiocb(&iocb, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 iocb.private = &siocb;
658 ret = __sock_recvmsg(&iocb, sock, msg, size, flags);
659 if (-EIOCBQUEUED == ret)
660 ret = wait_on_sync_kiocb(&iocb);
661 return ret;
662}
663
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700664int kernel_recvmsg(struct socket *sock, struct msghdr *msg,
665 struct kvec *vec, size_t num, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666{
667 mm_segment_t oldfs = get_fs();
668 int result;
669
670 set_fs(KERNEL_DS);
671 /*
672 * the following is safe, since for compiler definitions of kvec and
673 * iovec are identical, yielding the same in-core layout and alignment
674 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700675 msg->msg_iov = (struct iovec *)vec, msg->msg_iovlen = num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 result = sock_recvmsg(sock, msg, size, flags);
677 set_fs(oldfs);
678 return result;
679}
680
681static void sock_aio_dtor(struct kiocb *iocb)
682{
683 kfree(iocb->private);
684}
685
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -0300686static ssize_t sock_sendpage(struct file *file, struct page *page,
687 int offset, size_t size, loff_t *ppos, int more)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688{
689 struct socket *sock;
690 int flags;
691
Eric Dumazetb69aee02005-09-06 14:42:45 -0700692 sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
694 flags = !(file->f_flags & O_NONBLOCK) ? 0 : MSG_DONTWAIT;
695 if (more)
696 flags |= MSG_MORE;
697
698 return sock->ops->sendpage(sock, page, offset, size, flags);
699}
700
Jens Axboe9c55e012007-11-06 23:30:13 -0800701static ssize_t sock_splice_read(struct file *file, loff_t *ppos,
702 struct pipe_inode_info *pipe, size_t len,
703 unsigned int flags)
704{
705 struct socket *sock = file->private_data;
706
Rémi Denis-Courmont997b37d2008-02-15 02:35:45 -0800707 if (unlikely(!sock->ops->splice_read))
708 return -EINVAL;
709
Jens Axboe9c55e012007-11-06 23:30:13 -0800710 return sock->ops->splice_read(sock, ppos, pipe, len, flags);
711}
712
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800713static struct sock_iocb *alloc_sock_iocb(struct kiocb *iocb,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700714 struct sock_iocb *siocb)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800715{
716 if (!is_sync_kiocb(iocb)) {
717 siocb = kmalloc(sizeof(*siocb), GFP_KERNEL);
718 if (!siocb)
719 return NULL;
720 iocb->ki_dtor = sock_aio_dtor;
721 }
722
723 siocb->kiocb = iocb;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800724 iocb->private = siocb;
725 return siocb;
726}
727
728static ssize_t do_sock_read(struct msghdr *msg, struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -0700729 struct file *file, const struct iovec *iov,
730 unsigned long nr_segs)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800731{
732 struct socket *sock = file->private_data;
733 size_t size = 0;
734 int i;
735
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700736 for (i = 0; i < nr_segs; i++)
737 size += iov[i].iov_len;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800738
739 msg->msg_name = NULL;
740 msg->msg_namelen = 0;
741 msg->msg_control = NULL;
742 msg->msg_controllen = 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700743 msg->msg_iov = (struct iovec *)iov;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800744 msg->msg_iovlen = nr_segs;
745 msg->msg_flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
746
747 return __sock_recvmsg(iocb, sock, msg, size, msg->msg_flags);
748}
749
Badari Pulavarty027445c2006-09-30 23:28:46 -0700750static ssize_t sock_aio_read(struct kiocb *iocb, const struct iovec *iov,
751 unsigned long nr_segs, loff_t pos)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800752{
753 struct sock_iocb siocb, *x;
754
755 if (pos != 0)
756 return -ESPIPE;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700757
758 if (iocb->ki_left == 0) /* Match SYS5 behaviour */
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800759 return 0;
760
Badari Pulavarty027445c2006-09-30 23:28:46 -0700761
762 x = alloc_sock_iocb(iocb, &siocb);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800763 if (!x)
764 return -ENOMEM;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700765 return do_sock_read(&x->async_msg, iocb, iocb->ki_filp, iov, nr_segs);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800766}
767
768static ssize_t do_sock_write(struct msghdr *msg, struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -0700769 struct file *file, const struct iovec *iov,
770 unsigned long nr_segs)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800771{
772 struct socket *sock = file->private_data;
773 size_t size = 0;
774 int i;
775
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700776 for (i = 0; i < nr_segs; i++)
777 size += iov[i].iov_len;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800778
779 msg->msg_name = NULL;
780 msg->msg_namelen = 0;
781 msg->msg_control = NULL;
782 msg->msg_controllen = 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700783 msg->msg_iov = (struct iovec *)iov;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800784 msg->msg_iovlen = nr_segs;
785 msg->msg_flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
786 if (sock->type == SOCK_SEQPACKET)
787 msg->msg_flags |= MSG_EOR;
788
789 return __sock_sendmsg(iocb, sock, msg, size);
790}
791
Badari Pulavarty027445c2006-09-30 23:28:46 -0700792static ssize_t sock_aio_write(struct kiocb *iocb, const struct iovec *iov,
793 unsigned long nr_segs, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794{
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800795 struct sock_iocb siocb, *x;
796
797 if (pos != 0)
798 return -ESPIPE;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700799
Badari Pulavarty027445c2006-09-30 23:28:46 -0700800 x = alloc_sock_iocb(iocb, &siocb);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800801 if (!x)
802 return -ENOMEM;
803
Badari Pulavarty027445c2006-09-30 23:28:46 -0700804 return do_sock_write(&x->async_msg, iocb, iocb->ki_filp, iov, nr_segs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805}
806
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807/*
808 * Atomic setting of ioctl hooks to avoid race
809 * with module unload.
810 */
811
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800812static DEFINE_MUTEX(br_ioctl_mutex);
Eric W. Biederman881d9662007-09-17 11:56:21 -0700813static int (*br_ioctl_hook) (struct net *, unsigned int cmd, void __user *arg) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
Eric W. Biederman881d9662007-09-17 11:56:21 -0700815void brioctl_set(int (*hook) (struct net *, unsigned int, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800817 mutex_lock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 br_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800819 mutex_unlock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820}
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700821
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822EXPORT_SYMBOL(brioctl_set);
823
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800824static DEFINE_MUTEX(vlan_ioctl_mutex);
Eric W. Biederman881d9662007-09-17 11:56:21 -0700825static int (*vlan_ioctl_hook) (struct net *, void __user *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
Eric W. Biederman881d9662007-09-17 11:56:21 -0700827void vlan_ioctl_set(int (*hook) (struct net *, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800829 mutex_lock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 vlan_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800831 mutex_unlock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832}
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700833
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834EXPORT_SYMBOL(vlan_ioctl_set);
835
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800836static DEFINE_MUTEX(dlci_ioctl_mutex);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700837static int (*dlci_ioctl_hook) (unsigned int, void __user *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700839void dlci_ioctl_set(int (*hook) (unsigned int, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800841 mutex_lock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 dlci_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800843 mutex_unlock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844}
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700845
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846EXPORT_SYMBOL(dlci_ioctl_set);
847
848/*
849 * With an ioctl, arg may well be a user mode pointer, but we don't know
850 * what to do with it - that's up to the protocol still.
851 */
852
853static long sock_ioctl(struct file *file, unsigned cmd, unsigned long arg)
854{
855 struct socket *sock;
Eric W. Biederman881d9662007-09-17 11:56:21 -0700856 struct sock *sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 void __user *argp = (void __user *)arg;
858 int pid, err;
Eric W. Biederman881d9662007-09-17 11:56:21 -0700859 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860
Eric Dumazetb69aee02005-09-06 14:42:45 -0700861 sock = file->private_data;
Eric W. Biederman881d9662007-09-17 11:56:21 -0700862 sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900863 net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 if (cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15)) {
Eric W. Biederman881d9662007-09-17 11:56:21 -0700865 err = dev_ioctl(net, cmd, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 } else
Adrian Bunkd86b5e02006-01-21 00:46:55 +0100867#ifdef CONFIG_WIRELESS_EXT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 if (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST) {
Eric W. Biederman881d9662007-09-17 11:56:21 -0700869 err = dev_ioctl(net, cmd, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 } else
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700871#endif /* CONFIG_WIRELESS_EXT */
872 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 case FIOSETOWN:
874 case SIOCSPGRP:
875 err = -EFAULT;
876 if (get_user(pid, (int __user *)argp))
877 break;
878 err = f_setown(sock->file, pid, 1);
879 break;
880 case FIOGETOWN:
881 case SIOCGPGRP:
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700882 err = put_user(f_getown(sock->file),
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700883 (int __user *)argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 break;
885 case SIOCGIFBR:
886 case SIOCSIFBR:
887 case SIOCBRADDBR:
888 case SIOCBRDELBR:
889 err = -ENOPKG;
890 if (!br_ioctl_hook)
891 request_module("bridge");
892
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800893 mutex_lock(&br_ioctl_mutex);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700894 if (br_ioctl_hook)
Eric W. Biederman881d9662007-09-17 11:56:21 -0700895 err = br_ioctl_hook(net, cmd, argp);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800896 mutex_unlock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 break;
898 case SIOCGIFVLAN:
899 case SIOCSIFVLAN:
900 err = -ENOPKG;
901 if (!vlan_ioctl_hook)
902 request_module("8021q");
903
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800904 mutex_lock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 if (vlan_ioctl_hook)
Eric W. Biederman881d9662007-09-17 11:56:21 -0700906 err = vlan_ioctl_hook(net, argp);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800907 mutex_unlock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 case SIOCADDDLCI:
910 case SIOCDELDLCI:
911 err = -ENOPKG;
912 if (!dlci_ioctl_hook)
913 request_module("dlci");
914
Pavel Emelyanov7512cbf2008-03-21 15:58:52 -0700915 mutex_lock(&dlci_ioctl_mutex);
916 if (dlci_ioctl_hook)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 err = dlci_ioctl_hook(cmd, argp);
Pavel Emelyanov7512cbf2008-03-21 15:58:52 -0700918 mutex_unlock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 break;
920 default:
921 err = sock->ops->ioctl(sock, cmd, arg);
Christoph Hellwigb5e5fa52006-01-03 14:18:33 -0800922
923 /*
924 * If this ioctl is unknown try to hand it down
925 * to the NIC driver.
926 */
927 if (err == -ENOIOCTLCMD)
Eric W. Biederman881d9662007-09-17 11:56:21 -0700928 err = dev_ioctl(net, cmd, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700930 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 return err;
932}
933
934int sock_create_lite(int family, int type, int protocol, struct socket **res)
935{
936 int err;
937 struct socket *sock = NULL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700938
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 err = security_socket_create(family, type, protocol, 1);
940 if (err)
941 goto out;
942
943 sock = sock_alloc();
944 if (!sock) {
945 err = -ENOMEM;
946 goto out;
947 }
948
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 sock->type = type;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -0700950 err = security_socket_post_create(sock, family, type, protocol, 1);
951 if (err)
952 goto out_release;
953
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954out:
955 *res = sock;
956 return err;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -0700957out_release:
958 sock_release(sock);
959 sock = NULL;
960 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961}
962
963/* No kernel lock held - perfect */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700964static unsigned int sock_poll(struct file *file, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965{
966 struct socket *sock;
967
968 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700969 * We can't return errors to poll, so it's either yes or no.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 */
Eric Dumazetb69aee02005-09-06 14:42:45 -0700971 sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 return sock->ops->poll(file, sock, wait);
973}
974
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700975static int sock_mmap(struct file *file, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976{
Eric Dumazetb69aee02005-09-06 14:42:45 -0700977 struct socket *sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
979 return sock->ops->mmap(file, sock, vma);
980}
981
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -0300982static int sock_close(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983{
984 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700985 * It was possible the inode is NULL we were
986 * closing an unfinished socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 */
988
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700989 if (!inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 printk(KERN_DEBUG "sock_close: NULL inode\n");
991 return 0;
992 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 sock_release(SOCKET_I(inode));
994 return 0;
995}
996
997/*
998 * Update the socket async list
999 *
1000 * Fasync_list locking strategy.
1001 *
1002 * 1. fasync_list is modified only under process context socket lock
1003 * i.e. under semaphore.
1004 * 2. fasync_list is used under read_lock(&sk->sk_callback_lock)
1005 * or under socket lock.
1006 * 3. fasync_list can be used from softirq context, so that
1007 * modification under socket lock have to be enhanced with
1008 * write_lock_bh(&sk->sk_callback_lock).
1009 * --ANK (990710)
1010 */
1011
1012static int sock_fasync(int fd, struct file *filp, int on)
1013{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001014 struct fasync_struct *fa, *fna = NULL, **prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 struct socket *sock;
1016 struct sock *sk;
1017
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001018 if (on) {
Kris Katterjohn8b3a7002006-01-11 15:56:43 -08001019 fna = kmalloc(sizeof(struct fasync_struct), GFP_KERNEL);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001020 if (fna == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 return -ENOMEM;
1022 }
1023
Eric Dumazetb69aee02005-09-06 14:42:45 -07001024 sock = filp->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001026 sk = sock->sk;
1027 if (sk == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 kfree(fna);
1029 return -EINVAL;
1030 }
1031
1032 lock_sock(sk);
1033
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001034 prev = &(sock->fasync_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001036 for (fa = *prev; fa != NULL; prev = &fa->fa_next, fa = *prev)
1037 if (fa->fa_file == filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 break;
1039
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001040 if (on) {
1041 if (fa != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 write_lock_bh(&sk->sk_callback_lock);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001043 fa->fa_fd = fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 write_unlock_bh(&sk->sk_callback_lock);
1045
1046 kfree(fna);
1047 goto out;
1048 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001049 fna->fa_file = filp;
1050 fna->fa_fd = fd;
1051 fna->magic = FASYNC_MAGIC;
1052 fna->fa_next = sock->fasync_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 write_lock_bh(&sk->sk_callback_lock);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001054 sock->fasync_list = fna;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 write_unlock_bh(&sk->sk_callback_lock);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001056 } else {
1057 if (fa != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 write_lock_bh(&sk->sk_callback_lock);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001059 *prev = fa->fa_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 write_unlock_bh(&sk->sk_callback_lock);
1061 kfree(fa);
1062 }
1063 }
1064
1065out:
1066 release_sock(sock->sk);
1067 return 0;
1068}
1069
1070/* This function may be called only under socket lock or callback_lock */
1071
1072int sock_wake_async(struct socket *sock, int how, int band)
1073{
1074 if (!sock || !sock->fasync_list)
1075 return -1;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001076 switch (how) {
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001077 case SOCK_WAKE_WAITD:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 if (test_bit(SOCK_ASYNC_WAITDATA, &sock->flags))
1079 break;
1080 goto call_kill;
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001081 case SOCK_WAKE_SPACE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 if (!test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sock->flags))
1083 break;
1084 /* fall through */
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001085 case SOCK_WAKE_IO:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001086call_kill:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 __kill_fasync(sock->fasync_list, SIGIO, band);
1088 break;
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001089 case SOCK_WAKE_URG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 __kill_fasync(sock->fasync_list, SIGURG, band);
1091 }
1092 return 0;
1093}
1094
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001095static int __sock_create(struct net *net, int family, int type, int protocol,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001096 struct socket **res, int kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097{
1098 int err;
1099 struct socket *sock;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001100 const struct net_proto_family *pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
1102 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001103 * Check protocol is in range
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 */
1105 if (family < 0 || family >= NPROTO)
1106 return -EAFNOSUPPORT;
1107 if (type < 0 || type >= SOCK_MAX)
1108 return -EINVAL;
1109
1110 /* Compatibility.
1111
1112 This uglymoron is moved from INET layer to here to avoid
1113 deadlock in module load.
1114 */
1115 if (family == PF_INET && type == SOCK_PACKET) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001116 static int warned;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 if (!warned) {
1118 warned = 1;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001119 printk(KERN_INFO "%s uses obsolete (PF_INET,SOCK_PACKET)\n",
1120 current->comm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 }
1122 family = PF_PACKET;
1123 }
1124
1125 err = security_socket_create(family, type, protocol, kern);
1126 if (err)
1127 return err;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001128
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001129 /*
1130 * Allocate the socket and allow the family to set things up. if
1131 * the protocol is 0, the family is instructed to select an appropriate
1132 * default.
1133 */
1134 sock = sock_alloc();
1135 if (!sock) {
1136 if (net_ratelimit())
1137 printk(KERN_WARNING "socket: no more sockets\n");
1138 return -ENFILE; /* Not exactly a match, but its the
1139 closest posix thing */
1140 }
1141
1142 sock->type = type;
1143
Johannes Berg95a5afc2008-10-16 15:24:51 -07001144#ifdef CONFIG_MODULES
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001145 /* Attempt to load a protocol module if the find failed.
1146 *
1147 * 12/09/1996 Marcin: But! this makes REALLY only sense, if the user
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 * requested real, full-featured networking support upon configuration.
1149 * Otherwise module support will break!
1150 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001151 if (net_families[family] == NULL)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001152 request_module("net-pf-%d", family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153#endif
1154
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001155 rcu_read_lock();
1156 pf = rcu_dereference(net_families[family]);
1157 err = -EAFNOSUPPORT;
1158 if (!pf)
1159 goto out_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
1161 /*
1162 * We will call the ->create function, that possibly is in a loadable
1163 * module, so we have to bump that loadable module refcnt first.
1164 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001165 if (!try_module_get(pf->owner))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 goto out_release;
1167
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001168 /* Now protected by module ref count */
1169 rcu_read_unlock();
1170
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001171 err = pf->create(net, sock, protocol);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001172 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 goto out_module_put;
Frank Filza79af592005-09-27 15:23:38 -07001174
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 /*
1176 * Now to bump the refcnt of the [loadable] module that owns this
1177 * socket at sock_release time we decrement its refcnt.
1178 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001179 if (!try_module_get(sock->ops->owner))
1180 goto out_module_busy;
1181
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 /*
1183 * Now that we're done with the ->create function, the [loadable]
1184 * module can have its refcnt decremented
1185 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001186 module_put(pf->owner);
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001187 err = security_socket_post_create(sock, family, type, protocol, kern);
1188 if (err)
Herbert Xu3b185522007-08-15 14:46:02 -07001189 goto out_sock_release;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001190 *res = sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001192 return 0;
1193
1194out_module_busy:
1195 err = -EAFNOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196out_module_put:
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001197 sock->ops = NULL;
1198 module_put(pf->owner);
1199out_sock_release:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 sock_release(sock);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001201 return err;
1202
1203out_release:
1204 rcu_read_unlock();
1205 goto out_sock_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206}
1207
1208int sock_create(int family, int type, int protocol, struct socket **res)
1209{
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001210 return __sock_create(current->nsproxy->net_ns, family, type, protocol, res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211}
1212
1213int sock_create_kern(int family, int type, int protocol, struct socket **res)
1214{
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001215 return __sock_create(&init_net, family, type, protocol, res, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216}
1217
1218asmlinkage long sys_socket(int family, int type, int protocol)
1219{
1220 int retval;
1221 struct socket *sock;
Ulrich Dreppera677a032008-07-23 21:29:17 -07001222 int flags;
1223
Ulrich Dreppere38b36f2008-07-23 21:29:42 -07001224 /* Check the SOCK_* constants for consistency. */
1225 BUILD_BUG_ON(SOCK_CLOEXEC != O_CLOEXEC);
1226 BUILD_BUG_ON((SOCK_MAX | SOCK_TYPE_MASK) != SOCK_TYPE_MASK);
1227 BUILD_BUG_ON(SOCK_CLOEXEC & SOCK_TYPE_MASK);
1228 BUILD_BUG_ON(SOCK_NONBLOCK & SOCK_TYPE_MASK);
1229
Ulrich Dreppera677a032008-07-23 21:29:17 -07001230 flags = type & ~SOCK_TYPE_MASK;
Ulrich Drepper77d27202008-07-23 21:29:35 -07001231 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Dreppera677a032008-07-23 21:29:17 -07001232 return -EINVAL;
1233 type &= SOCK_TYPE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001235 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1236 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1237
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 retval = sock_create(family, type, protocol, &sock);
1239 if (retval < 0)
1240 goto out;
1241
Ulrich Drepper77d27202008-07-23 21:29:35 -07001242 retval = sock_map_fd(sock, flags & (O_CLOEXEC | O_NONBLOCK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 if (retval < 0)
1244 goto out_release;
1245
1246out:
1247 /* It may be already another descriptor 8) Not kernel problem. */
1248 return retval;
1249
1250out_release:
1251 sock_release(sock);
1252 return retval;
1253}
1254
1255/*
1256 * Create a pair of connected sockets.
1257 */
1258
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001259asmlinkage long sys_socketpair(int family, int type, int protocol,
1260 int __user *usockvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261{
1262 struct socket *sock1, *sock2;
1263 int fd1, fd2, err;
Al Virodb349502007-02-07 01:48:00 -05001264 struct file *newfile1, *newfile2;
Ulrich Dreppera677a032008-07-23 21:29:17 -07001265 int flags;
1266
1267 flags = type & ~SOCK_TYPE_MASK;
Ulrich Drepper77d27202008-07-23 21:29:35 -07001268 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Dreppera677a032008-07-23 21:29:17 -07001269 return -EINVAL;
1270 type &= SOCK_TYPE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001272 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1273 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1274
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 /*
1276 * Obtain the first socket and check if the underlying protocol
1277 * supports the socketpair call.
1278 */
1279
1280 err = sock_create(family, type, protocol, &sock1);
1281 if (err < 0)
1282 goto out;
1283
1284 err = sock_create(family, type, protocol, &sock2);
1285 if (err < 0)
1286 goto out_release_1;
1287
1288 err = sock1->ops->socketpair(sock1, sock2);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001289 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 goto out_release_both;
1291
Ulrich Dreppera677a032008-07-23 21:29:17 -07001292 fd1 = sock_alloc_fd(&newfile1, flags & O_CLOEXEC);
David S. Millerbf3c23d2007-10-29 21:54:02 -07001293 if (unlikely(fd1 < 0)) {
1294 err = fd1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 goto out_release_both;
David S. Millerbf3c23d2007-10-29 21:54:02 -07001296 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297
Ulrich Dreppera677a032008-07-23 21:29:17 -07001298 fd2 = sock_alloc_fd(&newfile2, flags & O_CLOEXEC);
Al Virodb349502007-02-07 01:48:00 -05001299 if (unlikely(fd2 < 0)) {
David S. Millerbf3c23d2007-10-29 21:54:02 -07001300 err = fd2;
Al Virodb349502007-02-07 01:48:00 -05001301 put_filp(newfile1);
1302 put_unused_fd(fd1);
1303 goto out_release_both;
1304 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305
Ulrich Drepper77d27202008-07-23 21:29:35 -07001306 err = sock_attach_fd(sock1, newfile1, flags & O_NONBLOCK);
Al Virodb349502007-02-07 01:48:00 -05001307 if (unlikely(err < 0)) {
1308 goto out_fd2;
1309 }
1310
Ulrich Drepper77d27202008-07-23 21:29:35 -07001311 err = sock_attach_fd(sock2, newfile2, flags & O_NONBLOCK);
Al Virodb349502007-02-07 01:48:00 -05001312 if (unlikely(err < 0)) {
1313 fput(newfile1);
1314 goto out_fd1;
1315 }
1316
1317 err = audit_fd_pair(fd1, fd2);
1318 if (err < 0) {
1319 fput(newfile1);
1320 fput(newfile2);
1321 goto out_fd;
1322 }
1323
1324 fd_install(fd1, newfile1);
1325 fd_install(fd2, newfile2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 /* fd1 and fd2 may be already another descriptors.
1327 * Not kernel problem.
1328 */
1329
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001330 err = put_user(fd1, &usockvec[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 if (!err)
1332 err = put_user(fd2, &usockvec[1]);
1333 if (!err)
1334 return 0;
1335
1336 sys_close(fd2);
1337 sys_close(fd1);
1338 return err;
1339
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340out_release_both:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001341 sock_release(sock2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342out_release_1:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001343 sock_release(sock1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344out:
1345 return err;
Al Virodb349502007-02-07 01:48:00 -05001346
1347out_fd2:
1348 put_filp(newfile1);
1349 sock_release(sock1);
1350out_fd1:
1351 put_filp(newfile2);
1352 sock_release(sock2);
1353out_fd:
1354 put_unused_fd(fd1);
1355 put_unused_fd(fd2);
1356 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357}
1358
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359/*
1360 * Bind a name to a socket. Nothing much to do here since it's
1361 * the protocol's responsibility to handle the local address.
1362 *
1363 * We move the socket address to kernel space before we call
1364 * the protocol layer (having also checked the address is ok).
1365 */
1366
1367asmlinkage long sys_bind(int fd, struct sockaddr __user *umyaddr, int addrlen)
1368{
1369 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001370 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001371 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001373 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001374 if (sock) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001375 err = move_addr_to_kernel(umyaddr, addrlen, (struct sockaddr *)&address);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001376 if (err >= 0) {
1377 err = security_socket_bind(sock,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001378 (struct sockaddr *)&address,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001379 addrlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001380 if (!err)
1381 err = sock->ops->bind(sock,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001382 (struct sockaddr *)
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001383 &address, addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 }
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001385 fput_light(sock->file, fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001386 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 return err;
1388}
1389
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390/*
1391 * Perform a listen. Basically, we allow the protocol to do anything
1392 * necessary for a listen, and if that works, we mark the socket as
1393 * ready for listening.
1394 */
1395
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396asmlinkage long sys_listen(int fd, int backlog)
1397{
1398 struct socket *sock;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001399 int err, fput_needed;
Pavel Emelyanovb8e1f9b2007-12-08 00:12:33 -08001400 int somaxconn;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001401
1402 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1403 if (sock) {
Pavel Emelyanov8efa6e92008-03-31 19:41:14 -07001404 somaxconn = sock_net(sock->sk)->core.sysctl_somaxconn;
Pavel Emelyanovb8e1f9b2007-12-08 00:12:33 -08001405 if ((unsigned)backlog > somaxconn)
1406 backlog = somaxconn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407
1408 err = security_socket_listen(sock, backlog);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001409 if (!err)
1410 err = sock->ops->listen(sock, backlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001412 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 }
1414 return err;
1415}
1416
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417/*
1418 * For accept, we attempt to create a new socket, set up the link
1419 * with the client, wake up the client, then return the new
1420 * connected fd. We collect the address of the connector in kernel
1421 * space and move it to user at the very end. This is unclean because
1422 * we open the socket then return an error.
1423 *
1424 * 1003.1g adds the ability to recvmsg() to query connection pending
1425 * status to recvmsg. We need to add that support in a way thats
1426 * clean when we restucture accept also.
1427 */
1428
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001429long do_accept(int fd, struct sockaddr __user *upeer_sockaddr,
1430 int __user *upeer_addrlen, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431{
1432 struct socket *sock, *newsock;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001433 struct file *newfile;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001434 int err, len, newfd, fput_needed;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001435 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436
Ulrich Drepper77d27202008-07-23 21:29:35 -07001437 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001438 return -EINVAL;
1439
1440 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1441 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1442
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001443 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 if (!sock)
1445 goto out;
1446
1447 err = -ENFILE;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001448 if (!(newsock = sock_alloc()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 goto out_put;
1450
1451 newsock->type = sock->type;
1452 newsock->ops = sock->ops;
1453
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 /*
1455 * We don't need try_module_get here, as the listening socket (sock)
1456 * has the protocol module (sock->ops->owner) held.
1457 */
1458 __module_get(newsock->ops->owner);
1459
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001460 newfd = sock_alloc_fd(&newfile, flags & O_CLOEXEC);
David S. Miller39d8c1b2006-03-20 17:13:49 -08001461 if (unlikely(newfd < 0)) {
1462 err = newfd;
David S. Miller9a1875e2006-04-01 12:48:36 -08001463 sock_release(newsock);
1464 goto out_put;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001465 }
1466
Ulrich Drepper77d27202008-07-23 21:29:35 -07001467 err = sock_attach_fd(newsock, newfile, flags & O_NONBLOCK);
David S. Miller39d8c1b2006-03-20 17:13:49 -08001468 if (err < 0)
Alexey Dobriyan79f4f642007-03-26 14:09:52 -07001469 goto out_fd_simple;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001470
Frank Filza79af592005-09-27 15:23:38 -07001471 err = security_socket_accept(sock, newsock);
1472 if (err)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001473 goto out_fd;
Frank Filza79af592005-09-27 15:23:38 -07001474
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 err = sock->ops->accept(sock, newsock, sock->file->f_flags);
1476 if (err < 0)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001477 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478
1479 if (upeer_sockaddr) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001480 if (newsock->ops->getname(newsock, (struct sockaddr *)&address,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001481 &len, 2) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 err = -ECONNABORTED;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001483 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 }
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001485 err = move_addr_to_user((struct sockaddr *)&address,
1486 len, upeer_sockaddr, upeer_addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 if (err < 0)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001488 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 }
1490
1491 /* File flags are not inherited via accept() unlike another OSes. */
1492
David S. Miller39d8c1b2006-03-20 17:13:49 -08001493 fd_install(newfd, newfile);
1494 err = newfd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495
1496 security_socket_post_accept(sock, newsock);
1497
1498out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001499 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500out:
1501 return err;
Alexey Dobriyan79f4f642007-03-26 14:09:52 -07001502out_fd_simple:
1503 sock_release(newsock);
1504 put_filp(newfile);
1505 put_unused_fd(newfd);
1506 goto out_put;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001507out_fd:
David S. Miller9606a212006-04-01 01:00:14 -08001508 fput(newfile);
David S. Miller39d8c1b2006-03-20 17:13:49 -08001509 put_unused_fd(newfd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 goto out_put;
1511}
1512
Michael Kerrisk2d4c8262008-09-22 13:57:49 -07001513#if 0
Ulrich Drepperc019bbc2008-07-23 21:29:21 -07001514#ifdef HAVE_SET_RESTORE_SIGMASK
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001515asmlinkage long sys_paccept(int fd, struct sockaddr __user *upeer_sockaddr,
1516 int __user *upeer_addrlen,
1517 const sigset_t __user *sigmask,
1518 size_t sigsetsize, int flags)
1519{
1520 sigset_t ksigmask, sigsaved;
1521 int ret;
1522
1523 if (sigmask) {
1524 /* XXX: Don't preclude handling different sized sigset_t's. */
1525 if (sigsetsize != sizeof(sigset_t))
1526 return -EINVAL;
1527 if (copy_from_user(&ksigmask, sigmask, sizeof(ksigmask)))
1528 return -EFAULT;
1529
1530 sigdelsetmask(&ksigmask, sigmask(SIGKILL)|sigmask(SIGSTOP));
1531 sigprocmask(SIG_SETMASK, &ksigmask, &sigsaved);
1532 }
1533
1534 ret = do_accept(fd, upeer_sockaddr, upeer_addrlen, flags);
1535
1536 if (ret < 0 && signal_pending(current)) {
1537 /*
1538 * Don't restore the signal mask yet. Let do_signal() deliver
1539 * the signal on the way back to userspace, before the signal
1540 * mask is restored.
1541 */
1542 if (sigmask) {
1543 memcpy(&current->saved_sigmask, &sigsaved,
1544 sizeof(sigsaved));
1545 set_restore_sigmask();
1546 }
1547 } else if (sigmask)
1548 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
1549
1550 return ret;
1551}
Ulrich Drepperc019bbc2008-07-23 21:29:21 -07001552#else
1553asmlinkage long sys_paccept(int fd, struct sockaddr __user *upeer_sockaddr,
1554 int __user *upeer_addrlen,
1555 const sigset_t __user *sigmask,
1556 size_t sigsetsize, int flags)
1557{
1558 /* The platform does not support restoring the signal mask in the
1559 * return path. So we do not allow using paccept() with a signal
1560 * mask. */
1561 if (sigmask)
1562 return -EINVAL;
1563
1564 return do_accept(fd, upeer_sockaddr, upeer_addrlen, flags);
1565}
1566#endif
Michael Kerrisk2d4c8262008-09-22 13:57:49 -07001567#endif
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001568
1569asmlinkage long sys_accept(int fd, struct sockaddr __user *upeer_sockaddr,
1570 int __user *upeer_addrlen)
1571{
1572 return do_accept(fd, upeer_sockaddr, upeer_addrlen, 0);
1573}
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
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001587asmlinkage long sys_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
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001619asmlinkage long sys_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
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001650asmlinkage long sys_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
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001682asmlinkage long sys_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
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001727asmlinkage long sys_send(int fd, void __user *buff, size_t len, unsigned flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728{
1729 return sys_sendto(fd, buff, len, flags, NULL, 0);
1730}
1731
1732/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001733 * Receive a frame from the socket and optionally record the address of the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 * sender. We verify the buffers are writable and if needed move the
1735 * sender address from kernel to user space.
1736 */
1737
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001738asmlinkage long sys_recvfrom(int fd, void __user *ubuf, size_t size,
1739 unsigned flags, struct sockaddr __user *addr,
1740 int __user *addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741{
1742 struct socket *sock;
1743 struct iovec iov;
1744 struct msghdr msg;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001745 struct sockaddr_storage address;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001746 int err, err2;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001747 int fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001749 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 if (!sock)
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001751 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001753 msg.msg_control = NULL;
1754 msg.msg_controllen = 0;
1755 msg.msg_iovlen = 1;
1756 msg.msg_iov = &iov;
1757 iov.iov_len = size;
1758 iov.iov_base = ubuf;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001759 msg.msg_name = (struct sockaddr *)&address;
1760 msg.msg_namelen = sizeof(address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 if (sock->file->f_flags & O_NONBLOCK)
1762 flags |= MSG_DONTWAIT;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001763 err = sock_recvmsg(sock, &msg, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001765 if (err >= 0 && addr != NULL) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001766 err2 = move_addr_to_user((struct sockaddr *)&address,
1767 msg.msg_namelen, addr, addr_len);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001768 if (err2 < 0)
1769 err = err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 }
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001771
1772 fput_light(sock->file, fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08001773out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 return err;
1775}
1776
1777/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001778 * Receive a datagram from a socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 */
1780
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001781asmlinkage long sys_recv(int fd, void __user *ubuf, size_t size,
1782 unsigned flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783{
1784 return sys_recvfrom(fd, ubuf, size, flags, NULL, NULL);
1785}
1786
1787/*
1788 * Set a socket option. Because we don't know the option lengths we have
1789 * to pass the user mode parameter for the protocols to sort out.
1790 */
1791
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001792asmlinkage long sys_setsockopt(int fd, int level, int optname,
1793 char __user *optval, int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001795 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 struct socket *sock;
1797
1798 if (optlen < 0)
1799 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001800
1801 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1802 if (sock != NULL) {
1803 err = security_socket_setsockopt(sock, level, optname);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001804 if (err)
1805 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806
1807 if (level == SOL_SOCKET)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001808 err =
1809 sock_setsockopt(sock, level, optname, optval,
1810 optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 else
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001812 err =
1813 sock->ops->setsockopt(sock, level, optname, optval,
1814 optlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001815out_put:
1816 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 }
1818 return err;
1819}
1820
1821/*
1822 * Get a socket option. Because we don't know the option lengths we have
1823 * to pass a user mode parameter for the protocols to sort out.
1824 */
1825
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001826asmlinkage long sys_getsockopt(int fd, int level, int optname,
1827 char __user *optval, int __user *optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001829 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 struct socket *sock;
1831
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001832 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1833 if (sock != NULL) {
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001834 err = security_socket_getsockopt(sock, level, optname);
1835 if (err)
1836 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837
1838 if (level == SOL_SOCKET)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001839 err =
1840 sock_getsockopt(sock, level, optname, optval,
1841 optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 else
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001843 err =
1844 sock->ops->getsockopt(sock, level, optname, optval,
1845 optlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001846out_put:
1847 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 }
1849 return err;
1850}
1851
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852/*
1853 * Shutdown a socket.
1854 */
1855
1856asmlinkage long sys_shutdown(int fd, int how)
1857{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001858 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 struct socket *sock;
1860
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001861 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1862 if (sock != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 err = security_socket_shutdown(sock, how);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001864 if (!err)
1865 err = sock->ops->shutdown(sock, how);
1866 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 }
1868 return err;
1869}
1870
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001871/* A couple of helpful macros for getting the address of the 32/64 bit
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 * fields which are the same type (int / unsigned) on our platforms.
1873 */
1874#define COMPAT_MSG(msg, member) ((MSG_CMSG_COMPAT & flags) ? &msg##_compat->member : &msg->member)
1875#define COMPAT_NAMELEN(msg) COMPAT_MSG(msg, msg_namelen)
1876#define COMPAT_FLAGS(msg) COMPAT_MSG(msg, msg_flags)
1877
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878/*
1879 * BSD sendmsg interface
1880 */
1881
1882asmlinkage long sys_sendmsg(int fd, struct msghdr __user *msg, unsigned flags)
1883{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001884 struct compat_msghdr __user *msg_compat =
1885 (struct compat_msghdr __user *)msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001887 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 struct iovec iovstack[UIO_FASTIOV], *iov = iovstack;
Alex Williamsonb9d717a2005-09-26 14:28:02 -07001889 unsigned char ctl[sizeof(struct cmsghdr) + 20]
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001890 __attribute__ ((aligned(sizeof(__kernel_size_t))));
1891 /* 20 is size of ipv6_pktinfo */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 unsigned char *ctl_buf = ctl;
1893 struct msghdr msg_sys;
1894 int err, ctl_len, iov_size, total_len;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001895 int fput_needed;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001896
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 err = -EFAULT;
1898 if (MSG_CMSG_COMPAT & flags) {
1899 if (get_compat_msghdr(&msg_sys, msg_compat))
1900 return -EFAULT;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001901 }
1902 else if (copy_from_user(&msg_sys, msg, sizeof(struct msghdr)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 return -EFAULT;
1904
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001905 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001906 if (!sock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 goto out;
1908
1909 /* do not move before msg_sys is valid */
1910 err = -EMSGSIZE;
1911 if (msg_sys.msg_iovlen > UIO_MAXIOV)
1912 goto out_put;
1913
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001914 /* Check whether to allocate the iovec area */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 err = -ENOMEM;
1916 iov_size = msg_sys.msg_iovlen * sizeof(struct iovec);
1917 if (msg_sys.msg_iovlen > UIO_FASTIOV) {
1918 iov = sock_kmalloc(sock->sk, iov_size, GFP_KERNEL);
1919 if (!iov)
1920 goto out_put;
1921 }
1922
1923 /* This will also move the address data into kernel space */
1924 if (MSG_CMSG_COMPAT & flags) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001925 err = verify_compat_iovec(&msg_sys, iov,
1926 (struct sockaddr *)&address,
1927 VERIFY_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 } else
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001929 err = verify_iovec(&msg_sys, iov,
1930 (struct sockaddr *)&address,
1931 VERIFY_READ);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001932 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 goto out_freeiov;
1934 total_len = err;
1935
1936 err = -ENOBUFS;
1937
1938 if (msg_sys.msg_controllen > INT_MAX)
1939 goto out_freeiov;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001940 ctl_len = msg_sys.msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 if ((MSG_CMSG_COMPAT & flags) && ctl_len) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001942 err =
1943 cmsghdr_from_user_compat_to_kern(&msg_sys, sock->sk, ctl,
1944 sizeof(ctl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 if (err)
1946 goto out_freeiov;
1947 ctl_buf = msg_sys.msg_control;
Al Viro8920e8f2005-09-07 18:28:51 -07001948 ctl_len = msg_sys.msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 } else if (ctl_len) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001950 if (ctl_len > sizeof(ctl)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 ctl_buf = sock_kmalloc(sock->sk, ctl_len, GFP_KERNEL);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001952 if (ctl_buf == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 goto out_freeiov;
1954 }
1955 err = -EFAULT;
1956 /*
1957 * Careful! Before this, msg_sys.msg_control contains a user pointer.
1958 * Afterwards, it will be a kernel pointer. Thus the compiler-assisted
1959 * checking falls down on this.
1960 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001961 if (copy_from_user(ctl_buf, (void __user *)msg_sys.msg_control,
1962 ctl_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 goto out_freectl;
1964 msg_sys.msg_control = ctl_buf;
1965 }
1966 msg_sys.msg_flags = flags;
1967
1968 if (sock->file->f_flags & O_NONBLOCK)
1969 msg_sys.msg_flags |= MSG_DONTWAIT;
1970 err = sock_sendmsg(sock, &msg_sys, total_len);
1971
1972out_freectl:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001973 if (ctl_buf != ctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 sock_kfree_s(sock->sk, ctl_buf, ctl_len);
1975out_freeiov:
1976 if (iov != iovstack)
1977 sock_kfree_s(sock->sk, iov, iov_size);
1978out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001979 fput_light(sock->file, fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001980out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 return err;
1982}
1983
1984/*
1985 * BSD recvmsg interface
1986 */
1987
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001988asmlinkage long sys_recvmsg(int fd, struct msghdr __user *msg,
1989 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001991 struct compat_msghdr __user *msg_compat =
1992 (struct compat_msghdr __user *)msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 struct socket *sock;
1994 struct iovec iovstack[UIO_FASTIOV];
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001995 struct iovec *iov = iovstack;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 struct msghdr msg_sys;
1997 unsigned long cmsg_ptr;
1998 int err, iov_size, total_len, len;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001999 int fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000
2001 /* kernel mode address */
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07002002 struct sockaddr_storage addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003
2004 /* user mode address pointers */
2005 struct sockaddr __user *uaddr;
2006 int __user *uaddr_len;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002007
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 if (MSG_CMSG_COMPAT & flags) {
2009 if (get_compat_msghdr(&msg_sys, msg_compat))
2010 return -EFAULT;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002011 }
2012 else if (copy_from_user(&msg_sys, msg, sizeof(struct msghdr)))
2013 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002015 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 if (!sock)
2017 goto out;
2018
2019 err = -EMSGSIZE;
2020 if (msg_sys.msg_iovlen > UIO_MAXIOV)
2021 goto out_put;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002022
2023 /* Check whether to allocate the iovec area */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 err = -ENOMEM;
2025 iov_size = msg_sys.msg_iovlen * sizeof(struct iovec);
2026 if (msg_sys.msg_iovlen > UIO_FASTIOV) {
2027 iov = sock_kmalloc(sock->sk, iov_size, GFP_KERNEL);
2028 if (!iov)
2029 goto out_put;
2030 }
2031
2032 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002033 * Save the user-mode address (verify_iovec will change the
2034 * kernel msghdr to use the kernel address space)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002036
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07002037 uaddr = (__force void __user *)msg_sys.msg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 uaddr_len = COMPAT_NAMELEN(msg);
2039 if (MSG_CMSG_COMPAT & flags) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07002040 err = verify_compat_iovec(&msg_sys, iov,
2041 (struct sockaddr *)&addr,
2042 VERIFY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 } else
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07002044 err = verify_iovec(&msg_sys, iov,
2045 (struct sockaddr *)&addr,
2046 VERIFY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 if (err < 0)
2048 goto out_freeiov;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002049 total_len = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050
2051 cmsg_ptr = (unsigned long)msg_sys.msg_control;
Ulrich Drepper4a195422007-07-15 23:40:34 -07002052 msg_sys.msg_flags = flags & (MSG_CMSG_CLOEXEC|MSG_CMSG_COMPAT);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002053
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 if (sock->file->f_flags & O_NONBLOCK)
2055 flags |= MSG_DONTWAIT;
2056 err = sock_recvmsg(sock, &msg_sys, total_len, flags);
2057 if (err < 0)
2058 goto out_freeiov;
2059 len = err;
2060
2061 if (uaddr != NULL) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07002062 err = move_addr_to_user((struct sockaddr *)&addr,
2063 msg_sys.msg_namelen, uaddr,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002064 uaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 if (err < 0)
2066 goto out_freeiov;
2067 }
David S. Miller37f7f422005-09-16 16:51:01 -07002068 err = __put_user((msg_sys.msg_flags & ~MSG_CMSG_COMPAT),
2069 COMPAT_FLAGS(msg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 if (err)
2071 goto out_freeiov;
2072 if (MSG_CMSG_COMPAT & flags)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002073 err = __put_user((unsigned long)msg_sys.msg_control - cmsg_ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 &msg_compat->msg_controllen);
2075 else
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002076 err = __put_user((unsigned long)msg_sys.msg_control - cmsg_ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 &msg->msg_controllen);
2078 if (err)
2079 goto out_freeiov;
2080 err = len;
2081
2082out_freeiov:
2083 if (iov != iovstack)
2084 sock_kfree_s(sock->sk, iov, iov_size);
2085out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002086 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087out:
2088 return err;
2089}
2090
2091#ifdef __ARCH_WANT_SYS_SOCKETCALL
2092
2093/* Argument list sizes for sys_socketcall */
2094#define AL(x) ((x) * sizeof(unsigned long))
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07002095static const unsigned char nargs[19]={
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002096 AL(0),AL(3),AL(3),AL(3),AL(2),AL(3),
2097 AL(3),AL(3),AL(4),AL(4),AL(4),AL(6),
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07002098 AL(6),AL(2),AL(5),AL(5),AL(3),AL(3),
2099 AL(6)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002100};
2101
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102#undef AL
2103
2104/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002105 * System call vectors.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 *
2107 * Argument checking cleaned up. Saved 20% in size.
2108 * This function doesn't need to set the kernel lock because
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002109 * it is set by the callees.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 */
2111
2112asmlinkage long sys_socketcall(int call, unsigned long __user *args)
2113{
2114 unsigned long a[6];
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002115 unsigned long a0, a1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 int err;
2117
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07002118 if (call < 1 || call > SYS_PACCEPT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 return -EINVAL;
2120
2121 /* copy_from_user should be SMP safe. */
2122 if (copy_from_user(a, args, nargs[call]))
2123 return -EFAULT;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002124
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002125 err = audit_socketcall(nargs[call] / sizeof(unsigned long), a);
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002126 if (err)
2127 return err;
2128
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002129 a0 = a[0];
2130 a1 = a[1];
2131
2132 switch (call) {
2133 case SYS_SOCKET:
2134 err = sys_socket(a0, a1, a[2]);
2135 break;
2136 case SYS_BIND:
2137 err = sys_bind(a0, (struct sockaddr __user *)a1, a[2]);
2138 break;
2139 case SYS_CONNECT:
2140 err = sys_connect(a0, (struct sockaddr __user *)a1, a[2]);
2141 break;
2142 case SYS_LISTEN:
2143 err = sys_listen(a0, a1);
2144 break;
2145 case SYS_ACCEPT:
2146 err =
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07002147 do_accept(a0, (struct sockaddr __user *)a1,
2148 (int __user *)a[2], 0);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002149 break;
2150 case SYS_GETSOCKNAME:
2151 err =
2152 sys_getsockname(a0, (struct sockaddr __user *)a1,
2153 (int __user *)a[2]);
2154 break;
2155 case SYS_GETPEERNAME:
2156 err =
2157 sys_getpeername(a0, (struct sockaddr __user *)a1,
2158 (int __user *)a[2]);
2159 break;
2160 case SYS_SOCKETPAIR:
2161 err = sys_socketpair(a0, a1, a[2], (int __user *)a[3]);
2162 break;
2163 case SYS_SEND:
2164 err = sys_send(a0, (void __user *)a1, a[2], a[3]);
2165 break;
2166 case SYS_SENDTO:
2167 err = sys_sendto(a0, (void __user *)a1, a[2], a[3],
2168 (struct sockaddr __user *)a[4], a[5]);
2169 break;
2170 case SYS_RECV:
2171 err = sys_recv(a0, (void __user *)a1, a[2], a[3]);
2172 break;
2173 case SYS_RECVFROM:
2174 err = sys_recvfrom(a0, (void __user *)a1, a[2], a[3],
2175 (struct sockaddr __user *)a[4],
2176 (int __user *)a[5]);
2177 break;
2178 case SYS_SHUTDOWN:
2179 err = sys_shutdown(a0, a1);
2180 break;
2181 case SYS_SETSOCKOPT:
2182 err = sys_setsockopt(a0, a1, a[2], (char __user *)a[3], a[4]);
2183 break;
2184 case SYS_GETSOCKOPT:
2185 err =
2186 sys_getsockopt(a0, a1, a[2], (char __user *)a[3],
2187 (int __user *)a[4]);
2188 break;
2189 case SYS_SENDMSG:
2190 err = sys_sendmsg(a0, (struct msghdr __user *)a1, a[2]);
2191 break;
2192 case SYS_RECVMSG:
2193 err = sys_recvmsg(a0, (struct msghdr __user *)a1, a[2]);
2194 break;
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07002195 case SYS_PACCEPT:
2196 err =
2197 sys_paccept(a0, (struct sockaddr __user *)a1,
2198 (int __user *)a[2],
2199 (const sigset_t __user *) a[3],
2200 a[4], a[5]);
2201 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002202 default:
2203 err = -EINVAL;
2204 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 }
2206 return err;
2207}
2208
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002209#endif /* __ARCH_WANT_SYS_SOCKETCALL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002211/**
2212 * sock_register - add a socket protocol handler
2213 * @ops: description of protocol
2214 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 * This function is called by a protocol handler that wants to
2216 * advertise its address family, and have it linked into the
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002217 * socket interface. The value ops->family coresponds to the
2218 * socket system call protocol family.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 */
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002220int sock_register(const struct net_proto_family *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221{
2222 int err;
2223
2224 if (ops->family >= NPROTO) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002225 printk(KERN_CRIT "protocol %d >= NPROTO(%d)\n", ops->family,
2226 NPROTO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 return -ENOBUFS;
2228 }
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002229
2230 spin_lock(&net_family_lock);
2231 if (net_families[ops->family])
2232 err = -EEXIST;
2233 else {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002234 net_families[ops->family] = ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 err = 0;
2236 }
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002237 spin_unlock(&net_family_lock);
2238
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002239 printk(KERN_INFO "NET: Registered protocol family %d\n", ops->family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 return err;
2241}
2242
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002243/**
2244 * sock_unregister - remove a protocol handler
2245 * @family: protocol family to remove
2246 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 * This function is called by a protocol handler that wants to
2248 * remove its address family, and have it unlinked from the
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002249 * new socket creation.
2250 *
2251 * If protocol handler is a module, then it can use module reference
2252 * counts to protect against new references. If protocol handler is not
2253 * a module then it needs to provide its own protection in
2254 * the ops->create routine.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 */
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002256void sock_unregister(int family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257{
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002258 BUG_ON(family < 0 || family >= NPROTO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002260 spin_lock(&net_family_lock);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002261 net_families[family] = NULL;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002262 spin_unlock(&net_family_lock);
2263
2264 synchronize_rcu();
2265
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002266 printk(KERN_INFO "NET: Unregistered protocol family %d\n", family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267}
2268
Andi Kleen77d76ea2005-12-22 12:43:42 -08002269static int __init sock_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270{
2271 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002272 * Initialize sock SLAB cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002274
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 sk_init();
2276
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002278 * Initialize skbuff SLAB cache
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 */
2280 skb_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281
2282 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002283 * Initialize the protocols module.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 */
2285
2286 init_inodecache();
2287 register_filesystem(&sock_fs_type);
2288 sock_mnt = kern_mount(&sock_fs_type);
Andi Kleen77d76ea2005-12-22 12:43:42 -08002289
2290 /* The real protocol initialization is performed in later initcalls.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 */
2292
2293#ifdef CONFIG_NETFILTER
2294 netfilter_init();
2295#endif
David S. Millercbeb3212005-12-22 12:58:55 -08002296
2297 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298}
2299
Andi Kleen77d76ea2005-12-22 12:43:42 -08002300core_initcall(sock_init); /* early initcall */
2301
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302#ifdef CONFIG_PROC_FS
2303void socket_seq_show(struct seq_file *seq)
2304{
2305 int cpu;
2306 int counter = 0;
2307
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -07002308 for_each_possible_cpu(cpu)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002309 counter += per_cpu(sockets_in_use, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310
2311 /* It can be negative, by the way. 8) */
2312 if (counter < 0)
2313 counter = 0;
2314
2315 seq_printf(seq, "sockets: used %d\n", counter);
2316}
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002317#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318
Shaun Pereira89bbfc92006-03-21 23:58:08 -08002319#ifdef CONFIG_COMPAT
2320static long compat_sock_ioctl(struct file *file, unsigned cmd,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002321 unsigned long arg)
Shaun Pereira89bbfc92006-03-21 23:58:08 -08002322{
2323 struct socket *sock = file->private_data;
2324 int ret = -ENOIOCTLCMD;
David S. Miller87de87d2008-06-03 09:14:03 -07002325 struct sock *sk;
2326 struct net *net;
2327
2328 sk = sock->sk;
2329 net = sock_net(sk);
Shaun Pereira89bbfc92006-03-21 23:58:08 -08002330
2331 if (sock->ops->compat_ioctl)
2332 ret = sock->ops->compat_ioctl(sock, cmd, arg);
2333
David S. Miller87de87d2008-06-03 09:14:03 -07002334 if (ret == -ENOIOCTLCMD &&
2335 (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST))
2336 ret = compat_wext_handle_ioctl(net, cmd, arg);
2337
Shaun Pereira89bbfc92006-03-21 23:58:08 -08002338 return ret;
2339}
2340#endif
2341
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07002342int kernel_bind(struct socket *sock, struct sockaddr *addr, int addrlen)
2343{
2344 return sock->ops->bind(sock, addr, addrlen);
2345}
2346
2347int kernel_listen(struct socket *sock, int backlog)
2348{
2349 return sock->ops->listen(sock, backlog);
2350}
2351
2352int kernel_accept(struct socket *sock, struct socket **newsock, int flags)
2353{
2354 struct sock *sk = sock->sk;
2355 int err;
2356
2357 err = sock_create_lite(sk->sk_family, sk->sk_type, sk->sk_protocol,
2358 newsock);
2359 if (err < 0)
2360 goto done;
2361
2362 err = sock->ops->accept(sock, *newsock, flags);
2363 if (err < 0) {
2364 sock_release(*newsock);
Tony Battersbyfa8705b2007-10-10 21:09:04 -07002365 *newsock = NULL;
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07002366 goto done;
2367 }
2368
2369 (*newsock)->ops = sock->ops;
2370
2371done:
2372 return err;
2373}
2374
2375int kernel_connect(struct socket *sock, struct sockaddr *addr, int addrlen,
YOSHIFUJI Hideaki4768fbc2007-02-09 23:25:31 +09002376 int flags)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07002377{
2378 return sock->ops->connect(sock, addr, addrlen, flags);
2379}
2380
2381int kernel_getsockname(struct socket *sock, struct sockaddr *addr,
2382 int *addrlen)
2383{
2384 return sock->ops->getname(sock, addr, addrlen, 0);
2385}
2386
2387int kernel_getpeername(struct socket *sock, struct sockaddr *addr,
2388 int *addrlen)
2389{
2390 return sock->ops->getname(sock, addr, addrlen, 1);
2391}
2392
2393int kernel_getsockopt(struct socket *sock, int level, int optname,
2394 char *optval, int *optlen)
2395{
2396 mm_segment_t oldfs = get_fs();
2397 int err;
2398
2399 set_fs(KERNEL_DS);
2400 if (level == SOL_SOCKET)
2401 err = sock_getsockopt(sock, level, optname, optval, optlen);
2402 else
2403 err = sock->ops->getsockopt(sock, level, optname, optval,
2404 optlen);
2405 set_fs(oldfs);
2406 return err;
2407}
2408
2409int kernel_setsockopt(struct socket *sock, int level, int optname,
2410 char *optval, int optlen)
2411{
2412 mm_segment_t oldfs = get_fs();
2413 int err;
2414
2415 set_fs(KERNEL_DS);
2416 if (level == SOL_SOCKET)
2417 err = sock_setsockopt(sock, level, optname, optval, optlen);
2418 else
2419 err = sock->ops->setsockopt(sock, level, optname, optval,
2420 optlen);
2421 set_fs(oldfs);
2422 return err;
2423}
2424
2425int kernel_sendpage(struct socket *sock, struct page *page, int offset,
2426 size_t size, int flags)
2427{
2428 if (sock->ops->sendpage)
2429 return sock->ops->sendpage(sock, page, offset, size, flags);
2430
2431 return sock_no_sendpage(sock, page, offset, size, flags);
2432}
2433
2434int kernel_sock_ioctl(struct socket *sock, int cmd, unsigned long arg)
2435{
2436 mm_segment_t oldfs = get_fs();
2437 int err;
2438
2439 set_fs(KERNEL_DS);
2440 err = sock->ops->ioctl(sock, cmd, arg);
2441 set_fs(oldfs);
2442
2443 return err;
2444}
2445
Trond Myklebust91cf45f2007-11-12 18:10:39 -08002446int kernel_sock_shutdown(struct socket *sock, enum sock_shutdown_cmd how)
2447{
2448 return sock->ops->shutdown(sock, how);
2449}
2450
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451EXPORT_SYMBOL(sock_create);
2452EXPORT_SYMBOL(sock_create_kern);
2453EXPORT_SYMBOL(sock_create_lite);
2454EXPORT_SYMBOL(sock_map_fd);
2455EXPORT_SYMBOL(sock_recvmsg);
2456EXPORT_SYMBOL(sock_register);
2457EXPORT_SYMBOL(sock_release);
2458EXPORT_SYMBOL(sock_sendmsg);
2459EXPORT_SYMBOL(sock_unregister);
2460EXPORT_SYMBOL(sock_wake_async);
2461EXPORT_SYMBOL(sockfd_lookup);
2462EXPORT_SYMBOL(kernel_sendmsg);
2463EXPORT_SYMBOL(kernel_recvmsg);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07002464EXPORT_SYMBOL(kernel_bind);
2465EXPORT_SYMBOL(kernel_listen);
2466EXPORT_SYMBOL(kernel_accept);
2467EXPORT_SYMBOL(kernel_connect);
2468EXPORT_SYMBOL(kernel_getsockname);
2469EXPORT_SYMBOL(kernel_getpeername);
2470EXPORT_SYMBOL(kernel_getsockopt);
2471EXPORT_SYMBOL(kernel_setsockopt);
2472EXPORT_SYMBOL(kernel_sendpage);
2473EXPORT_SYMBOL(kernel_sock_ioctl);
Trond Myklebust91cf45f2007-11-12 18:10:39 -08002474EXPORT_SYMBOL(kernel_sock_shutdown);