blob: 91d0c0254ffe7113e98e90a24bd7a824424e9a7f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * NET An implementation of the SOCKET network access protocol.
3 *
4 * Version: @(#)socket.c 1.1.93 18/02/95
5 *
6 * Authors: Orest Zborowski, <obz@Kodak.COM>
Jesper Juhl02c30a82005-05-05 16:16:16 -07007 * Ross Biro
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
9 *
10 * Fixes:
11 * Anonymous : NOTSOCK/BADF cleanup. Error fix in
12 * shutdown()
13 * Alan Cox : verify_area() fixes
14 * Alan Cox : Removed DDI
15 * Jonathan Kamens : SOCK_DGRAM reconnect bug
16 * Alan Cox : Moved a load of checks to the very
17 * top level.
18 * Alan Cox : Move address structures to/from user
19 * mode above the protocol layers.
20 * Rob Janssen : Allow 0 length sends.
21 * Alan Cox : Asynchronous I/O support (cribbed from the
22 * tty drivers).
23 * Niibe Yutaka : Asynchronous I/O for writes (4.4BSD style)
24 * Jeff Uphoff : Made max number of sockets command-line
25 * configurable.
26 * Matti Aarnio : Made the number of sockets dynamic,
27 * to be allocated when needed, and mr.
28 * Uphoff's max is used as max to be
29 * allowed to allocate.
30 * Linus : Argh. removed all the socket allocation
31 * altogether: it's in the inode now.
32 * Alan Cox : Made sock_alloc()/sock_release() public
33 * for NetROM and future kernel nfsd type
34 * stuff.
35 * Alan Cox : sendmsg/recvmsg basics.
36 * Tom Dyas : Export net symbols.
37 * Marcin Dalecki : Fixed problems with CONFIG_NET="n".
38 * Alan Cox : Added thread locking to sys_* calls
39 * for sockets. May have errors at the
40 * moment.
41 * Kevin Buhr : Fixed the dumb errors in the above.
42 * Andi Kleen : Some small cleanups, optimizations,
43 * and fixed a copy_from_user() bug.
44 * Tigran Aivazian : sys_send(args) calls sys_sendto(args, NULL, 0)
Stephen Hemminger89bddce2006-09-01 00:19:31 -070045 * Tigran Aivazian : Made listen(2) backlog sanity checks
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 * protocol-independent
47 *
48 *
49 * This program is free software; you can redistribute it and/or
50 * modify it under the terms of the GNU General Public License
51 * as published by the Free Software Foundation; either version
52 * 2 of the License, or (at your option) any later version.
53 *
54 *
55 * This module is effectively the top level interface to the BSD socket
Stephen Hemminger89bddce2006-09-01 00:19:31 -070056 * paradigm.
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 *
58 * Based upon Swansea University Computer Society NET3.039
59 */
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#include <linux/socket.h>
63#include <linux/file.h>
64#include <linux/net.h>
65#include <linux/interrupt.h>
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -070066#include <linux/thread_info.h>
Stephen Hemminger55737fd2006-09-01 00:23:39 -070067#include <linux/rcupdate.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#include <linux/netdevice.h>
69#include <linux/proc_fs.h>
70#include <linux/seq_file.h>
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -080071#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#include <linux/wanrouter.h>
73#include <linux/if_bridge.h>
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -030074#include <linux/if_frad.h>
75#include <linux/if_vlan.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#include <linux/init.h>
77#include <linux/poll.h>
78#include <linux/cache.h>
79#include <linux/module.h>
80#include <linux/highmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#include <linux/mount.h>
82#include <linux/security.h>
83#include <linux/syscalls.h>
84#include <linux/compat.h>
85#include <linux/kmod.h>
David Woodhouse3ec3b2f2005-05-17 12:08:48 +010086#include <linux/audit.h>
Adrian Bunkd86b5e02006-01-21 00:46:55 +010087#include <linux/wireless.h>
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -070088#include <linux/nsproxy.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
90#include <asm/uaccess.h>
91#include <asm/unistd.h>
92
93#include <net/compat.h>
David S. Miller87de87d2008-06-03 09:14:03 -070094#include <net/wext.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96#include <net/sock.h>
97#include <linux/netfilter.h>
98
99static int sock_no_open(struct inode *irrelevant, struct file *dontcare);
Badari Pulavarty027445c2006-09-30 23:28:46 -0700100static ssize_t sock_aio_read(struct kiocb *iocb, const struct iovec *iov,
101 unsigned long nr_segs, loff_t pos);
102static ssize_t sock_aio_write(struct kiocb *iocb, const struct iovec *iov,
103 unsigned long nr_segs, loff_t pos);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700104static int sock_mmap(struct file *file, struct vm_area_struct *vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
106static int sock_close(struct inode *inode, struct file *file);
107static unsigned int sock_poll(struct file *file,
108 struct poll_table_struct *wait);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700109static long sock_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800110#ifdef CONFIG_COMPAT
111static long compat_sock_ioctl(struct file *file,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700112 unsigned int cmd, unsigned long arg);
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800113#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114static int sock_fasync(int fd, struct file *filp, int on);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115static ssize_t sock_sendpage(struct file *file, struct page *page,
116 int offset, size_t size, loff_t *ppos, int more);
Jens Axboe9c55e012007-11-06 23:30:13 -0800117static ssize_t sock_splice_read(struct file *file, loff_t *ppos,
118 struct pipe_inode_info *pipe, size_t len,
119 unsigned int flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121/*
122 * Socket files have a set of 'special' operations as well as the generic file ones. These don't appear
123 * in the operation structures but are done directly via the socketcall() multiplexor.
124 */
125
Arjan van de Venda7071d2007-02-12 00:55:36 -0800126static const struct file_operations socket_file_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 .owner = THIS_MODULE,
128 .llseek = no_llseek,
129 .aio_read = sock_aio_read,
130 .aio_write = sock_aio_write,
131 .poll = sock_poll,
132 .unlocked_ioctl = sock_ioctl,
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800133#ifdef CONFIG_COMPAT
134 .compat_ioctl = compat_sock_ioctl,
135#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 .mmap = sock_mmap,
137 .open = sock_no_open, /* special open code to disallow open via /proc */
138 .release = sock_close,
139 .fasync = sock_fasync,
Jens Axboe5274f052006-03-30 15:15:30 +0200140 .sendpage = sock_sendpage,
141 .splice_write = generic_splice_sendpage,
Jens Axboe9c55e012007-11-06 23:30:13 -0800142 .splice_read = sock_splice_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143};
144
145/*
146 * The protocol list. Each protocol is registered in here.
147 */
148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149static DEFINE_SPINLOCK(net_family_lock);
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -0700150static const struct net_proto_family *net_families[NPROTO] __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152/*
153 * Statistics counters of the socket lists
154 */
155
156static DEFINE_PER_CPU(int, sockets_in_use) = 0;
157
158/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700159 * Support routines.
160 * Move socket addresses back and forth across the kernel/user
161 * divide and look after the messy bits.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 */
163
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700164#define MAX_SOCK_ADDR 128 /* 108 for Unix domain -
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 16 for IP, 16 for IPX,
166 24 for IPv6,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700167 about 80 for AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 must be at least one bigger than
169 the AF_UNIX size (see net/unix/af_unix.c
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700170 :unix_mkname()).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700172
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173/**
174 * move_addr_to_kernel - copy a socket address into kernel space
175 * @uaddr: Address in user space
176 * @kaddr: Address in kernel space
177 * @ulen: Length in user space
178 *
179 * The address is copied into kernel space. If the provided address is
180 * too long an error code of -EINVAL is returned. If the copy gives
181 * invalid addresses -EFAULT is returned. On a success 0 is returned.
182 */
183
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -0700184int move_addr_to_kernel(void __user *uaddr, int ulen, struct sockaddr *kaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185{
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -0700186 if (ulen < 0 || ulen > sizeof(struct sockaddr_storage))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700188 if (ulen == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 return 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700190 if (copy_from_user(kaddr, uaddr, ulen))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 return -EFAULT;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +0100192 return audit_sockaddr(ulen, kaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193}
194
195/**
196 * move_addr_to_user - copy an address to user space
197 * @kaddr: kernel space address
198 * @klen: length of address in kernel
199 * @uaddr: user space address
200 * @ulen: pointer to user length field
201 *
202 * The value pointed to by ulen on entry is the buffer length available.
203 * This is overwritten with the buffer space used. -EINVAL is returned
204 * if an overlong buffer is specified or a negative buffer size. -EFAULT
205 * is returned if either the buffer or the length field are not
206 * accessible.
207 * After copying the data up to the limit the user specifies, the true
208 * length of the data is written over the length limit the user
209 * specified. Zero is returned for a success.
210 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700211
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -0700212int move_addr_to_user(struct sockaddr *kaddr, int klen, void __user *uaddr,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700213 int __user *ulen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
215 int err;
216 int len;
217
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700218 err = get_user(len, ulen);
219 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 return err;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700221 if (len > klen)
222 len = klen;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -0700223 if (len < 0 || len > sizeof(struct sockaddr_storage))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700225 if (len) {
Steve Grubbd6fe3942006-03-30 12:20:22 -0500226 if (audit_sockaddr(klen, kaddr))
227 return -ENOMEM;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700228 if (copy_to_user(uaddr, kaddr, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 return -EFAULT;
230 }
231 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700232 * "fromlen shall refer to the value before truncation.."
233 * 1003.1g
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 */
235 return __put_user(klen, ulen);
236}
237
238#define SOCKFS_MAGIC 0x534F434B
239
Christoph Lametere18b8902006-12-06 20:33:20 -0800240static struct kmem_cache *sock_inode_cachep __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
242static struct inode *sock_alloc_inode(struct super_block *sb)
243{
244 struct socket_alloc *ei;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700245
Christoph Lametere94b1762006-12-06 20:33:17 -0800246 ei = kmem_cache_alloc(sock_inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 if (!ei)
248 return NULL;
249 init_waitqueue_head(&ei->socket.wait);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700250
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 ei->socket.fasync_list = NULL;
252 ei->socket.state = SS_UNCONNECTED;
253 ei->socket.flags = 0;
254 ei->socket.ops = NULL;
255 ei->socket.sk = NULL;
256 ei->socket.file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
258 return &ei->vfs_inode;
259}
260
261static void sock_destroy_inode(struct inode *inode)
262{
263 kmem_cache_free(sock_inode_cachep,
264 container_of(inode, struct socket_alloc, vfs_inode));
265}
266
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700267static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268{
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700269 struct socket_alloc *ei = (struct socket_alloc *)foo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Christoph Lametera35afb82007-05-16 22:10:57 -0700271 inode_init_once(&ei->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272}
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700273
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274static int init_inodecache(void)
275{
276 sock_inode_cachep = kmem_cache_create("sock_inode_cache",
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700277 sizeof(struct socket_alloc),
278 0,
279 (SLAB_HWCACHE_ALIGN |
280 SLAB_RECLAIM_ACCOUNT |
281 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +0900282 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 if (sock_inode_cachep == NULL)
284 return -ENOMEM;
285 return 0;
286}
287
288static struct super_operations sockfs_ops = {
289 .alloc_inode = sock_alloc_inode,
290 .destroy_inode =sock_destroy_inode,
291 .statfs = simple_statfs,
292};
293
David Howells454e2392006-06-23 02:02:57 -0700294static int sockfs_get_sb(struct file_system_type *fs_type,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700295 int flags, const char *dev_name, void *data,
296 struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297{
David Howells454e2392006-06-23 02:02:57 -0700298 return get_sb_pseudo(fs_type, "socket:", &sockfs_ops, SOCKFS_MAGIC,
299 mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300}
301
Eric Dumazetba899662005-08-26 12:05:31 -0700302static struct vfsmount *sock_mnt __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
304static struct file_system_type sock_fs_type = {
305 .name = "sockfs",
306 .get_sb = sockfs_get_sb,
307 .kill_sb = kill_anon_super,
308};
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310static int sockfs_delete_dentry(struct dentry *dentry)
311{
Eric Dumazet304e61e2006-12-06 20:38:49 -0800312 /*
313 * At creation time, we pretended this dentry was hashed
314 * (by clearing DCACHE_UNHASHED bit in d_flags)
315 * At delete time, we restore the truth : not hashed.
316 * (so that dput() can proceed correctly)
317 */
318 dentry->d_flags |= DCACHE_UNHASHED;
319 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320}
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700321
322/*
323 * sockfs_dname() is called from d_path().
324 */
325static char *sockfs_dname(struct dentry *dentry, char *buffer, int buflen)
326{
327 return dynamic_dname(dentry, buffer, buflen, "socket:[%lu]",
328 dentry->d_inode->i_ino);
329}
330
Al Viro3ba13d12009-02-20 06:02:22 +0000331static const struct dentry_operations sockfs_dentry_operations = {
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700332 .d_delete = sockfs_delete_dentry,
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700333 .d_dname = sockfs_dname,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334};
335
336/*
337 * Obtains the first available file descriptor and sets it up for use.
338 *
David S. Miller39d8c1b2006-03-20 17:13:49 -0800339 * These functions create file structures and maps them to fd space
340 * of the current process. On success it returns file descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 * and file struct implicitly stored in sock->file.
342 * Note that another thread may close file descriptor before we return
343 * from this function. We use the fact that now we do not refer
344 * to socket after mapping. If one day we will need it, this
345 * function will increment ref. count on file by 1.
346 *
347 * In any case returned fd MAY BE not valid!
348 * This race condition is unavoidable
349 * with shared fd spaces, we cannot solve it inside kernel,
350 * but we take care of internal coherence yet.
351 */
352
Ulrich Dreppera677a032008-07-23 21:29:17 -0700353static int sock_alloc_fd(struct file **filep, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354{
355 int fd;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800356
Ulrich Dreppera677a032008-07-23 21:29:17 -0700357 fd = get_unused_fd_flags(flags);
David S. Miller39d8c1b2006-03-20 17:13:49 -0800358 if (likely(fd >= 0)) {
359 struct file *file = get_empty_filp();
360
361 *filep = file;
362 if (unlikely(!file)) {
363 put_unused_fd(fd);
364 return -ENFILE;
365 }
366 } else
367 *filep = NULL;
368 return fd;
369}
370
Ulrich Drepper77d27202008-07-23 21:29:35 -0700371static int sock_attach_fd(struct socket *sock, struct file *file, int flags)
David S. Miller39d8c1b2006-03-20 17:13:49 -0800372{
Dave Hansence8d2cd2007-10-16 23:31:13 -0700373 struct dentry *dentry;
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700374 struct qstr name = { .name = "" };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Dave Hansence8d2cd2007-10-16 23:31:13 -0700376 dentry = d_alloc(sock_mnt->mnt_sb->s_root, &name);
377 if (unlikely(!dentry))
David S. Miller39d8c1b2006-03-20 17:13:49 -0800378 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
Dave Hansence8d2cd2007-10-16 23:31:13 -0700380 dentry->d_op = &sockfs_dentry_operations;
Eric Dumazet304e61e2006-12-06 20:38:49 -0800381 /*
382 * We dont want to push this dentry into global dentry hash table.
383 * We pretend dentry is already hashed, by unsetting DCACHE_UNHASHED
384 * This permits a working /proc/$pid/fd/XXX on sockets
385 */
Dave Hansence8d2cd2007-10-16 23:31:13 -0700386 dentry->d_flags &= ~DCACHE_UNHASHED;
387 d_instantiate(dentry, SOCK_INODE(sock));
David S. Miller39d8c1b2006-03-20 17:13:49 -0800388
389 sock->file = file;
Dave Hansence8d2cd2007-10-16 23:31:13 -0700390 init_file(file, sock_mnt, dentry, FMODE_READ | FMODE_WRITE,
391 &socket_file_ops);
392 SOCK_INODE(sock)->i_fop = &socket_file_ops;
Ulrich Drepper77d27202008-07-23 21:29:35 -0700393 file->f_flags = O_RDWR | (flags & O_NONBLOCK);
David S. Miller39d8c1b2006-03-20 17:13:49 -0800394 file->f_pos = 0;
395 file->private_data = sock;
396
397 return 0;
398}
399
Ulrich Dreppera677a032008-07-23 21:29:17 -0700400int sock_map_fd(struct socket *sock, int flags)
David S. Miller39d8c1b2006-03-20 17:13:49 -0800401{
402 struct file *newfile;
Ulrich Dreppera677a032008-07-23 21:29:17 -0700403 int fd = sock_alloc_fd(&newfile, flags);
David S. Miller39d8c1b2006-03-20 17:13:49 -0800404
405 if (likely(fd >= 0)) {
Ulrich Drepper77d27202008-07-23 21:29:35 -0700406 int err = sock_attach_fd(sock, newfile, flags);
David S. Miller39d8c1b2006-03-20 17:13:49 -0800407
408 if (unlikely(err < 0)) {
409 put_filp(newfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 put_unused_fd(fd);
David S. Miller39d8c1b2006-03-20 17:13:49 -0800411 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 }
David S. Miller39d8c1b2006-03-20 17:13:49 -0800413 fd_install(fd, newfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 return fd;
416}
417
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800418static struct socket *sock_from_file(struct file *file, int *err)
419{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800420 if (file->f_op == &socket_file_ops)
421 return file->private_data; /* set in sock_map_fd */
422
Eric Dumazet23bb80d2007-02-08 14:59:57 -0800423 *err = -ENOTSOCK;
424 return NULL;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800425}
426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427/**
428 * sockfd_lookup - Go from a file number to its socket slot
429 * @fd: file handle
430 * @err: pointer to an error code return
431 *
432 * The file handle passed in is locked and the socket it is bound
433 * too is returned. If an error occurs the err pointer is overwritten
434 * with a negative errno code and NULL is returned. The function checks
435 * for both invalid handles and passing a handle which is not a socket.
436 *
437 * On a success the socket object pointer is returned.
438 */
439
440struct socket *sockfd_lookup(int fd, int *err)
441{
442 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 struct socket *sock;
444
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700445 file = fget(fd);
446 if (!file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 *err = -EBADF;
448 return NULL;
449 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700450
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800451 sock = sock_from_file(file, err);
452 if (!sock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 fput(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 return sock;
455}
456
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800457static struct socket *sockfd_lookup_light(int fd, int *err, int *fput_needed)
458{
459 struct file *file;
460 struct socket *sock;
461
Hua Zhong36725582006-04-19 15:25:02 -0700462 *err = -EBADF;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800463 file = fget_light(fd, fput_needed);
464 if (file) {
465 sock = sock_from_file(file, err);
466 if (sock)
467 return sock;
468 fput_light(file, *fput_needed);
469 }
470 return NULL;
471}
472
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473/**
474 * sock_alloc - allocate a socket
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700475 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 * Allocate a new inode and socket object. The two are bound together
477 * and initialised. The socket is then returned. If we are out of inodes
478 * NULL is returned.
479 */
480
481static struct socket *sock_alloc(void)
482{
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700483 struct inode *inode;
484 struct socket *sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
486 inode = new_inode(sock_mnt->mnt_sb);
487 if (!inode)
488 return NULL;
489
490 sock = SOCKET_I(inode);
491
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700492 inode->i_mode = S_IFSOCK | S_IRWXUGO;
David Howells8192b0c2008-11-14 10:39:10 +1100493 inode->i_uid = current_fsuid();
494 inode->i_gid = current_fsgid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
496 get_cpu_var(sockets_in_use)++;
497 put_cpu_var(sockets_in_use);
498 return sock;
499}
500
501/*
502 * In theory you can't get an open on this inode, but /proc provides
503 * a back door. Remember to keep it shut otherwise you'll let the
504 * creepy crawlies in.
505 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700506
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507static int sock_no_open(struct inode *irrelevant, struct file *dontcare)
508{
509 return -ENXIO;
510}
511
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800512const struct file_operations bad_sock_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 .owner = THIS_MODULE,
514 .open = sock_no_open,
515};
516
517/**
518 * sock_release - close a socket
519 * @sock: socket to close
520 *
521 * The socket is released from the protocol stack if it has a release
522 * callback, and the inode is then released if the socket is bound to
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700523 * an inode not a file.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700525
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526void sock_release(struct socket *sock)
527{
528 if (sock->ops) {
529 struct module *owner = sock->ops->owner;
530
531 sock->ops->release(sock);
532 sock->ops = NULL;
533 module_put(owner);
534 }
535
536 if (sock->fasync_list)
537 printk(KERN_ERR "sock_release: fasync list not empty!\n");
538
539 get_cpu_var(sockets_in_use)--;
540 put_cpu_var(sockets_in_use);
541 if (!sock->file) {
542 iput(SOCK_INODE(sock));
543 return;
544 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700545 sock->file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546}
547
Patrick Ohly20d49472009-02-12 05:03:38 +0000548int sock_tx_timestamp(struct msghdr *msg, struct sock *sk,
549 union skb_shared_tx *shtx)
550{
551 shtx->flags = 0;
552 if (sock_flag(sk, SOCK_TIMESTAMPING_TX_HARDWARE))
553 shtx->hardware = 1;
554 if (sock_flag(sk, SOCK_TIMESTAMPING_TX_SOFTWARE))
555 shtx->software = 1;
556 return 0;
557}
558EXPORT_SYMBOL(sock_tx_timestamp);
559
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700560static inline int __sock_sendmsg(struct kiocb *iocb, struct socket *sock,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 struct msghdr *msg, size_t size)
562{
563 struct sock_iocb *si = kiocb_to_siocb(iocb);
564 int err;
565
566 si->sock = sock;
567 si->scm = NULL;
568 si->msg = msg;
569 si->size = size;
570
571 err = security_socket_sendmsg(sock, msg, size);
572 if (err)
573 return err;
574
575 return sock->ops->sendmsg(iocb, sock, msg, size);
576}
577
578int sock_sendmsg(struct socket *sock, struct msghdr *msg, size_t size)
579{
580 struct kiocb iocb;
581 struct sock_iocb siocb;
582 int ret;
583
584 init_sync_kiocb(&iocb, NULL);
585 iocb.private = &siocb;
586 ret = __sock_sendmsg(&iocb, sock, msg, size);
587 if (-EIOCBQUEUED == ret)
588 ret = wait_on_sync_kiocb(&iocb);
589 return ret;
590}
591
592int kernel_sendmsg(struct socket *sock, struct msghdr *msg,
593 struct kvec *vec, size_t num, size_t size)
594{
595 mm_segment_t oldfs = get_fs();
596 int result;
597
598 set_fs(KERNEL_DS);
599 /*
600 * the following is safe, since for compiler definitions of kvec and
601 * iovec are identical, yielding the same in-core layout and alignment
602 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700603 msg->msg_iov = (struct iovec *)vec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 msg->msg_iovlen = num;
605 result = sock_sendmsg(sock, msg, size);
606 set_fs(oldfs);
607 return result;
608}
609
Patrick Ohly20d49472009-02-12 05:03:38 +0000610static int ktime2ts(ktime_t kt, struct timespec *ts)
611{
612 if (kt.tv64) {
613 *ts = ktime_to_timespec(kt);
614 return 1;
615 } else {
616 return 0;
617 }
618}
619
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700620/*
621 * called from sock_recv_timestamp() if sock_flag(sk, SOCK_RCVTSTAMP)
622 */
623void __sock_recv_timestamp(struct msghdr *msg, struct sock *sk,
624 struct sk_buff *skb)
625{
Patrick Ohly20d49472009-02-12 05:03:38 +0000626 int need_software_tstamp = sock_flag(sk, SOCK_RCVTSTAMP);
627 struct timespec ts[3];
628 int empty = 1;
629 struct skb_shared_hwtstamps *shhwtstamps =
630 skb_hwtstamps(skb);
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700631
Patrick Ohly20d49472009-02-12 05:03:38 +0000632 /* Race occurred between timestamp enabling and packet
633 receiving. Fill in the current time for now. */
634 if (need_software_tstamp && skb->tstamp.tv64 == 0)
635 __net_timestamp(skb);
636
637 if (need_software_tstamp) {
638 if (!sock_flag(sk, SOCK_RCVTSTAMPNS)) {
639 struct timeval tv;
640 skb_get_timestamp(skb, &tv);
641 put_cmsg(msg, SOL_SOCKET, SCM_TIMESTAMP,
642 sizeof(tv), &tv);
643 } else {
644 struct timespec ts;
645 skb_get_timestampns(skb, &ts);
646 put_cmsg(msg, SOL_SOCKET, SCM_TIMESTAMPNS,
647 sizeof(ts), &ts);
648 }
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700649 }
Patrick Ohly20d49472009-02-12 05:03:38 +0000650
651
652 memset(ts, 0, sizeof(ts));
653 if (skb->tstamp.tv64 &&
654 sock_flag(sk, SOCK_TIMESTAMPING_SOFTWARE)) {
655 skb_get_timestampns(skb, ts + 0);
656 empty = 0;
657 }
658 if (shhwtstamps) {
659 if (sock_flag(sk, SOCK_TIMESTAMPING_SYS_HARDWARE) &&
660 ktime2ts(shhwtstamps->syststamp, ts + 1))
661 empty = 0;
662 if (sock_flag(sk, SOCK_TIMESTAMPING_RAW_HARDWARE) &&
663 ktime2ts(shhwtstamps->hwtstamp, ts + 2))
664 empty = 0;
665 }
666 if (!empty)
667 put_cmsg(msg, SOL_SOCKET,
668 SCM_TIMESTAMPING, sizeof(ts), &ts);
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700669}
670
Arnaldo Carvalho de Melo7c81fd82007-03-10 00:39:35 -0300671EXPORT_SYMBOL_GPL(__sock_recv_timestamp);
672
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700673static inline int __sock_recvmsg(struct kiocb *iocb, struct socket *sock,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 struct msghdr *msg, size_t size, int flags)
675{
676 int err;
677 struct sock_iocb *si = kiocb_to_siocb(iocb);
678
679 si->sock = sock;
680 si->scm = NULL;
681 si->msg = msg;
682 si->size = size;
683 si->flags = flags;
684
685 err = security_socket_recvmsg(sock, msg, size, flags);
686 if (err)
687 return err;
688
689 return sock->ops->recvmsg(iocb, sock, msg, size, flags);
690}
691
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700692int sock_recvmsg(struct socket *sock, struct msghdr *msg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 size_t size, int flags)
694{
695 struct kiocb iocb;
696 struct sock_iocb siocb;
697 int ret;
698
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700699 init_sync_kiocb(&iocb, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 iocb.private = &siocb;
701 ret = __sock_recvmsg(&iocb, sock, msg, size, flags);
702 if (-EIOCBQUEUED == ret)
703 ret = wait_on_sync_kiocb(&iocb);
704 return ret;
705}
706
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700707int kernel_recvmsg(struct socket *sock, struct msghdr *msg,
708 struct kvec *vec, size_t num, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709{
710 mm_segment_t oldfs = get_fs();
711 int result;
712
713 set_fs(KERNEL_DS);
714 /*
715 * the following is safe, since for compiler definitions of kvec and
716 * iovec are identical, yielding the same in-core layout and alignment
717 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700718 msg->msg_iov = (struct iovec *)vec, msg->msg_iovlen = num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 result = sock_recvmsg(sock, msg, size, flags);
720 set_fs(oldfs);
721 return result;
722}
723
724static void sock_aio_dtor(struct kiocb *iocb)
725{
726 kfree(iocb->private);
727}
728
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -0300729static ssize_t sock_sendpage(struct file *file, struct page *page,
730 int offset, size_t size, loff_t *ppos, int more)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731{
732 struct socket *sock;
733 int flags;
734
Eric Dumazetb69aee02005-09-06 14:42:45 -0700735 sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
737 flags = !(file->f_flags & O_NONBLOCK) ? 0 : MSG_DONTWAIT;
738 if (more)
739 flags |= MSG_MORE;
740
741 return sock->ops->sendpage(sock, page, offset, size, flags);
742}
743
Jens Axboe9c55e012007-11-06 23:30:13 -0800744static ssize_t sock_splice_read(struct file *file, loff_t *ppos,
745 struct pipe_inode_info *pipe, size_t len,
746 unsigned int flags)
747{
748 struct socket *sock = file->private_data;
749
Rémi Denis-Courmont997b37d2008-02-15 02:35:45 -0800750 if (unlikely(!sock->ops->splice_read))
751 return -EINVAL;
752
Jens Axboe9c55e012007-11-06 23:30:13 -0800753 return sock->ops->splice_read(sock, ppos, pipe, len, flags);
754}
755
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800756static struct sock_iocb *alloc_sock_iocb(struct kiocb *iocb,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700757 struct sock_iocb *siocb)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800758{
759 if (!is_sync_kiocb(iocb)) {
760 siocb = kmalloc(sizeof(*siocb), GFP_KERNEL);
761 if (!siocb)
762 return NULL;
763 iocb->ki_dtor = sock_aio_dtor;
764 }
765
766 siocb->kiocb = iocb;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800767 iocb->private = siocb;
768 return siocb;
769}
770
771static ssize_t do_sock_read(struct msghdr *msg, struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -0700772 struct file *file, const struct iovec *iov,
773 unsigned long nr_segs)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800774{
775 struct socket *sock = file->private_data;
776 size_t size = 0;
777 int i;
778
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700779 for (i = 0; i < nr_segs; i++)
780 size += iov[i].iov_len;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800781
782 msg->msg_name = NULL;
783 msg->msg_namelen = 0;
784 msg->msg_control = NULL;
785 msg->msg_controllen = 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700786 msg->msg_iov = (struct iovec *)iov;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800787 msg->msg_iovlen = nr_segs;
788 msg->msg_flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
789
790 return __sock_recvmsg(iocb, sock, msg, size, msg->msg_flags);
791}
792
Badari Pulavarty027445c2006-09-30 23:28:46 -0700793static ssize_t sock_aio_read(struct kiocb *iocb, const struct iovec *iov,
794 unsigned long nr_segs, loff_t pos)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800795{
796 struct sock_iocb siocb, *x;
797
798 if (pos != 0)
799 return -ESPIPE;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700800
801 if (iocb->ki_left == 0) /* Match SYS5 behaviour */
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800802 return 0;
803
Badari Pulavarty027445c2006-09-30 23:28:46 -0700804
805 x = alloc_sock_iocb(iocb, &siocb);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800806 if (!x)
807 return -ENOMEM;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700808 return do_sock_read(&x->async_msg, iocb, iocb->ki_filp, iov, nr_segs);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800809}
810
811static ssize_t do_sock_write(struct msghdr *msg, struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -0700812 struct file *file, const struct iovec *iov,
813 unsigned long nr_segs)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800814{
815 struct socket *sock = file->private_data;
816 size_t size = 0;
817 int i;
818
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700819 for (i = 0; i < nr_segs; i++)
820 size += iov[i].iov_len;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800821
822 msg->msg_name = NULL;
823 msg->msg_namelen = 0;
824 msg->msg_control = NULL;
825 msg->msg_controllen = 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700826 msg->msg_iov = (struct iovec *)iov;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800827 msg->msg_iovlen = nr_segs;
828 msg->msg_flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
829 if (sock->type == SOCK_SEQPACKET)
830 msg->msg_flags |= MSG_EOR;
831
832 return __sock_sendmsg(iocb, sock, msg, size);
833}
834
Badari Pulavarty027445c2006-09-30 23:28:46 -0700835static ssize_t sock_aio_write(struct kiocb *iocb, const struct iovec *iov,
836 unsigned long nr_segs, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837{
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800838 struct sock_iocb siocb, *x;
839
840 if (pos != 0)
841 return -ESPIPE;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700842
Badari Pulavarty027445c2006-09-30 23:28:46 -0700843 x = alloc_sock_iocb(iocb, &siocb);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800844 if (!x)
845 return -ENOMEM;
846
Badari Pulavarty027445c2006-09-30 23:28:46 -0700847 return do_sock_write(&x->async_msg, iocb, iocb->ki_filp, iov, nr_segs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848}
849
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850/*
851 * Atomic setting of ioctl hooks to avoid race
852 * with module unload.
853 */
854
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800855static DEFINE_MUTEX(br_ioctl_mutex);
Eric W. Biederman881d9662007-09-17 11:56:21 -0700856static int (*br_ioctl_hook) (struct net *, unsigned int cmd, void __user *arg) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
Eric W. Biederman881d9662007-09-17 11:56:21 -0700858void brioctl_set(int (*hook) (struct net *, unsigned int, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800860 mutex_lock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 br_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800862 mutex_unlock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863}
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700864
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865EXPORT_SYMBOL(brioctl_set);
866
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800867static DEFINE_MUTEX(vlan_ioctl_mutex);
Eric W. Biederman881d9662007-09-17 11:56:21 -0700868static int (*vlan_ioctl_hook) (struct net *, void __user *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
Eric W. Biederman881d9662007-09-17 11:56:21 -0700870void vlan_ioctl_set(int (*hook) (struct net *, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800872 mutex_lock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 vlan_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800874 mutex_unlock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875}
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700876
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877EXPORT_SYMBOL(vlan_ioctl_set);
878
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800879static DEFINE_MUTEX(dlci_ioctl_mutex);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700880static int (*dlci_ioctl_hook) (unsigned int, void __user *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700882void dlci_ioctl_set(int (*hook) (unsigned int, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800884 mutex_lock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 dlci_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800886 mutex_unlock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887}
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700888
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889EXPORT_SYMBOL(dlci_ioctl_set);
890
891/*
892 * With an ioctl, arg may well be a user mode pointer, but we don't know
893 * what to do with it - that's up to the protocol still.
894 */
895
896static long sock_ioctl(struct file *file, unsigned cmd, unsigned long arg)
897{
898 struct socket *sock;
Eric W. Biederman881d9662007-09-17 11:56:21 -0700899 struct sock *sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 void __user *argp = (void __user *)arg;
901 int pid, err;
Eric W. Biederman881d9662007-09-17 11:56:21 -0700902 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
Eric Dumazetb69aee02005-09-06 14:42:45 -0700904 sock = file->private_data;
Eric W. Biederman881d9662007-09-17 11:56:21 -0700905 sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900906 net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 if (cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15)) {
Eric W. Biederman881d9662007-09-17 11:56:21 -0700908 err = dev_ioctl(net, cmd, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 } else
Adrian Bunkd86b5e02006-01-21 00:46:55 +0100910#ifdef CONFIG_WIRELESS_EXT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 if (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST) {
Eric W. Biederman881d9662007-09-17 11:56:21 -0700912 err = dev_ioctl(net, cmd, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 } else
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700914#endif /* CONFIG_WIRELESS_EXT */
915 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 case FIOSETOWN:
917 case SIOCSPGRP:
918 err = -EFAULT;
919 if (get_user(pid, (int __user *)argp))
920 break;
921 err = f_setown(sock->file, pid, 1);
922 break;
923 case FIOGETOWN:
924 case SIOCGPGRP:
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700925 err = put_user(f_getown(sock->file),
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700926 (int __user *)argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 break;
928 case SIOCGIFBR:
929 case SIOCSIFBR:
930 case SIOCBRADDBR:
931 case SIOCBRDELBR:
932 err = -ENOPKG;
933 if (!br_ioctl_hook)
934 request_module("bridge");
935
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800936 mutex_lock(&br_ioctl_mutex);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700937 if (br_ioctl_hook)
Eric W. Biederman881d9662007-09-17 11:56:21 -0700938 err = br_ioctl_hook(net, cmd, argp);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800939 mutex_unlock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 break;
941 case SIOCGIFVLAN:
942 case SIOCSIFVLAN:
943 err = -ENOPKG;
944 if (!vlan_ioctl_hook)
945 request_module("8021q");
946
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800947 mutex_lock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 if (vlan_ioctl_hook)
Eric W. Biederman881d9662007-09-17 11:56:21 -0700949 err = vlan_ioctl_hook(net, argp);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800950 mutex_unlock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 case SIOCADDDLCI:
953 case SIOCDELDLCI:
954 err = -ENOPKG;
955 if (!dlci_ioctl_hook)
956 request_module("dlci");
957
Pavel Emelyanov7512cbf2008-03-21 15:58:52 -0700958 mutex_lock(&dlci_ioctl_mutex);
959 if (dlci_ioctl_hook)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 err = dlci_ioctl_hook(cmd, argp);
Pavel Emelyanov7512cbf2008-03-21 15:58:52 -0700961 mutex_unlock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 break;
963 default:
964 err = sock->ops->ioctl(sock, cmd, arg);
Christoph Hellwigb5e5fa52006-01-03 14:18:33 -0800965
966 /*
967 * If this ioctl is unknown try to hand it down
968 * to the NIC driver.
969 */
970 if (err == -ENOIOCTLCMD)
Eric W. Biederman881d9662007-09-17 11:56:21 -0700971 err = dev_ioctl(net, cmd, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700973 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 return err;
975}
976
977int sock_create_lite(int family, int type, int protocol, struct socket **res)
978{
979 int err;
980 struct socket *sock = NULL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700981
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 err = security_socket_create(family, type, protocol, 1);
983 if (err)
984 goto out;
985
986 sock = sock_alloc();
987 if (!sock) {
988 err = -ENOMEM;
989 goto out;
990 }
991
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 sock->type = type;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -0700993 err = security_socket_post_create(sock, family, type, protocol, 1);
994 if (err)
995 goto out_release;
996
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997out:
998 *res = sock;
999 return err;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001000out_release:
1001 sock_release(sock);
1002 sock = NULL;
1003 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004}
1005
1006/* No kernel lock held - perfect */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001007static unsigned int sock_poll(struct file *file, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008{
1009 struct socket *sock;
1010
1011 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001012 * We can't return errors to poll, so it's either yes or no.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 */
Eric Dumazetb69aee02005-09-06 14:42:45 -07001014 sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 return sock->ops->poll(file, sock, wait);
1016}
1017
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001018static int sock_mmap(struct file *file, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019{
Eric Dumazetb69aee02005-09-06 14:42:45 -07001020 struct socket *sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021
1022 return sock->ops->mmap(file, sock, vma);
1023}
1024
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001025static int sock_close(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026{
1027 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001028 * It was possible the inode is NULL we were
1029 * closing an unfinished socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 */
1031
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001032 if (!inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 printk(KERN_DEBUG "sock_close: NULL inode\n");
1034 return 0;
1035 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 sock_release(SOCKET_I(inode));
1037 return 0;
1038}
1039
1040/*
1041 * Update the socket async list
1042 *
1043 * Fasync_list locking strategy.
1044 *
1045 * 1. fasync_list is modified only under process context socket lock
1046 * i.e. under semaphore.
1047 * 2. fasync_list is used under read_lock(&sk->sk_callback_lock)
1048 * or under socket lock.
1049 * 3. fasync_list can be used from softirq context, so that
1050 * modification under socket lock have to be enhanced with
1051 * write_lock_bh(&sk->sk_callback_lock).
1052 * --ANK (990710)
1053 */
1054
1055static int sock_fasync(int fd, struct file *filp, int on)
1056{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001057 struct fasync_struct *fa, *fna = NULL, **prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 struct socket *sock;
1059 struct sock *sk;
1060
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001061 if (on) {
Kris Katterjohn8b3a7002006-01-11 15:56:43 -08001062 fna = kmalloc(sizeof(struct fasync_struct), GFP_KERNEL);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001063 if (fna == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 return -ENOMEM;
1065 }
1066
Eric Dumazetb69aee02005-09-06 14:42:45 -07001067 sock = filp->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001069 sk = sock->sk;
1070 if (sk == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 kfree(fna);
1072 return -EINVAL;
1073 }
1074
1075 lock_sock(sk);
1076
Jonathan Corbet76398422009-02-01 14:26:59 -07001077 spin_lock(&filp->f_lock);
1078 if (on)
1079 filp->f_flags |= FASYNC;
1080 else
1081 filp->f_flags &= ~FASYNC;
1082 spin_unlock(&filp->f_lock);
1083
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001084 prev = &(sock->fasync_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001086 for (fa = *prev; fa != NULL; prev = &fa->fa_next, fa = *prev)
1087 if (fa->fa_file == filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 break;
1089
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001090 if (on) {
1091 if (fa != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 write_lock_bh(&sk->sk_callback_lock);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001093 fa->fa_fd = fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 write_unlock_bh(&sk->sk_callback_lock);
1095
1096 kfree(fna);
1097 goto out;
1098 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001099 fna->fa_file = filp;
1100 fna->fa_fd = fd;
1101 fna->magic = FASYNC_MAGIC;
1102 fna->fa_next = sock->fasync_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 write_lock_bh(&sk->sk_callback_lock);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001104 sock->fasync_list = fna;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 write_unlock_bh(&sk->sk_callback_lock);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001106 } else {
1107 if (fa != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 write_lock_bh(&sk->sk_callback_lock);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001109 *prev = fa->fa_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 write_unlock_bh(&sk->sk_callback_lock);
1111 kfree(fa);
1112 }
1113 }
1114
1115out:
1116 release_sock(sock->sk);
1117 return 0;
1118}
1119
1120/* This function may be called only under socket lock or callback_lock */
1121
1122int sock_wake_async(struct socket *sock, int how, int band)
1123{
1124 if (!sock || !sock->fasync_list)
1125 return -1;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001126 switch (how) {
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001127 case SOCK_WAKE_WAITD:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 if (test_bit(SOCK_ASYNC_WAITDATA, &sock->flags))
1129 break;
1130 goto call_kill;
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001131 case SOCK_WAKE_SPACE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 if (!test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sock->flags))
1133 break;
1134 /* fall through */
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001135 case SOCK_WAKE_IO:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001136call_kill:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 __kill_fasync(sock->fasync_list, SIGIO, band);
1138 break;
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001139 case SOCK_WAKE_URG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 __kill_fasync(sock->fasync_list, SIGURG, band);
1141 }
1142 return 0;
1143}
1144
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001145static int __sock_create(struct net *net, int family, int type, int protocol,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001146 struct socket **res, int kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147{
1148 int err;
1149 struct socket *sock;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001150 const struct net_proto_family *pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151
1152 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001153 * Check protocol is in range
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 */
1155 if (family < 0 || family >= NPROTO)
1156 return -EAFNOSUPPORT;
1157 if (type < 0 || type >= SOCK_MAX)
1158 return -EINVAL;
1159
1160 /* Compatibility.
1161
1162 This uglymoron is moved from INET layer to here to avoid
1163 deadlock in module load.
1164 */
1165 if (family == PF_INET && type == SOCK_PACKET) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001166 static int warned;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 if (!warned) {
1168 warned = 1;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001169 printk(KERN_INFO "%s uses obsolete (PF_INET,SOCK_PACKET)\n",
1170 current->comm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 }
1172 family = PF_PACKET;
1173 }
1174
1175 err = security_socket_create(family, type, protocol, kern);
1176 if (err)
1177 return err;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001178
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001179 /*
1180 * Allocate the socket and allow the family to set things up. if
1181 * the protocol is 0, the family is instructed to select an appropriate
1182 * default.
1183 */
1184 sock = sock_alloc();
1185 if (!sock) {
1186 if (net_ratelimit())
1187 printk(KERN_WARNING "socket: no more sockets\n");
1188 return -ENFILE; /* Not exactly a match, but its the
1189 closest posix thing */
1190 }
1191
1192 sock->type = type;
1193
Johannes Berg95a5afc2008-10-16 15:24:51 -07001194#ifdef CONFIG_MODULES
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001195 /* Attempt to load a protocol module if the find failed.
1196 *
1197 * 12/09/1996 Marcin: But! this makes REALLY only sense, if the user
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 * requested real, full-featured networking support upon configuration.
1199 * Otherwise module support will break!
1200 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001201 if (net_families[family] == NULL)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001202 request_module("net-pf-%d", family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203#endif
1204
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001205 rcu_read_lock();
1206 pf = rcu_dereference(net_families[family]);
1207 err = -EAFNOSUPPORT;
1208 if (!pf)
1209 goto out_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210
1211 /*
1212 * We will call the ->create function, that possibly is in a loadable
1213 * module, so we have to bump that loadable module refcnt first.
1214 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001215 if (!try_module_get(pf->owner))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 goto out_release;
1217
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001218 /* Now protected by module ref count */
1219 rcu_read_unlock();
1220
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001221 err = pf->create(net, sock, protocol);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001222 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 goto out_module_put;
Frank Filza79af592005-09-27 15:23:38 -07001224
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 /*
1226 * Now to bump the refcnt of the [loadable] module that owns this
1227 * socket at sock_release time we decrement its refcnt.
1228 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001229 if (!try_module_get(sock->ops->owner))
1230 goto out_module_busy;
1231
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 /*
1233 * Now that we're done with the ->create function, the [loadable]
1234 * module can have its refcnt decremented
1235 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001236 module_put(pf->owner);
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001237 err = security_socket_post_create(sock, family, type, protocol, kern);
1238 if (err)
Herbert Xu3b185522007-08-15 14:46:02 -07001239 goto out_sock_release;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001240 *res = sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001242 return 0;
1243
1244out_module_busy:
1245 err = -EAFNOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246out_module_put:
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001247 sock->ops = NULL;
1248 module_put(pf->owner);
1249out_sock_release:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 sock_release(sock);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001251 return err;
1252
1253out_release:
1254 rcu_read_unlock();
1255 goto out_sock_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256}
1257
1258int sock_create(int family, int type, int protocol, struct socket **res)
1259{
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001260 return __sock_create(current->nsproxy->net_ns, family, type, protocol, res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261}
1262
1263int sock_create_kern(int family, int type, int protocol, struct socket **res)
1264{
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001265 return __sock_create(&init_net, family, type, protocol, res, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266}
1267
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001268SYSCALL_DEFINE3(socket, int, family, int, type, int, protocol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269{
1270 int retval;
1271 struct socket *sock;
Ulrich Dreppera677a032008-07-23 21:29:17 -07001272 int flags;
1273
Ulrich Dreppere38b36f2008-07-23 21:29:42 -07001274 /* Check the SOCK_* constants for consistency. */
1275 BUILD_BUG_ON(SOCK_CLOEXEC != O_CLOEXEC);
1276 BUILD_BUG_ON((SOCK_MAX | SOCK_TYPE_MASK) != SOCK_TYPE_MASK);
1277 BUILD_BUG_ON(SOCK_CLOEXEC & SOCK_TYPE_MASK);
1278 BUILD_BUG_ON(SOCK_NONBLOCK & SOCK_TYPE_MASK);
1279
Ulrich Dreppera677a032008-07-23 21:29:17 -07001280 flags = type & ~SOCK_TYPE_MASK;
Ulrich Drepper77d27202008-07-23 21:29:35 -07001281 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Dreppera677a032008-07-23 21:29:17 -07001282 return -EINVAL;
1283 type &= SOCK_TYPE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001285 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1286 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1287
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 retval = sock_create(family, type, protocol, &sock);
1289 if (retval < 0)
1290 goto out;
1291
Ulrich Drepper77d27202008-07-23 21:29:35 -07001292 retval = sock_map_fd(sock, flags & (O_CLOEXEC | O_NONBLOCK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 if (retval < 0)
1294 goto out_release;
1295
1296out:
1297 /* It may be already another descriptor 8) Not kernel problem. */
1298 return retval;
1299
1300out_release:
1301 sock_release(sock);
1302 return retval;
1303}
1304
1305/*
1306 * Create a pair of connected sockets.
1307 */
1308
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001309SYSCALL_DEFINE4(socketpair, int, family, int, type, int, protocol,
1310 int __user *, usockvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311{
1312 struct socket *sock1, *sock2;
1313 int fd1, fd2, err;
Al Virodb349502007-02-07 01:48:00 -05001314 struct file *newfile1, *newfile2;
Ulrich Dreppera677a032008-07-23 21:29:17 -07001315 int flags;
1316
1317 flags = type & ~SOCK_TYPE_MASK;
Ulrich Drepper77d27202008-07-23 21:29:35 -07001318 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Dreppera677a032008-07-23 21:29:17 -07001319 return -EINVAL;
1320 type &= SOCK_TYPE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001322 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1323 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1324
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 /*
1326 * Obtain the first socket and check if the underlying protocol
1327 * supports the socketpair call.
1328 */
1329
1330 err = sock_create(family, type, protocol, &sock1);
1331 if (err < 0)
1332 goto out;
1333
1334 err = sock_create(family, type, protocol, &sock2);
1335 if (err < 0)
1336 goto out_release_1;
1337
1338 err = sock1->ops->socketpair(sock1, sock2);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001339 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 goto out_release_both;
1341
Ulrich Dreppera677a032008-07-23 21:29:17 -07001342 fd1 = sock_alloc_fd(&newfile1, flags & O_CLOEXEC);
David S. Millerbf3c23d2007-10-29 21:54:02 -07001343 if (unlikely(fd1 < 0)) {
1344 err = fd1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 goto out_release_both;
David S. Millerbf3c23d2007-10-29 21:54:02 -07001346 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347
Ulrich Dreppera677a032008-07-23 21:29:17 -07001348 fd2 = sock_alloc_fd(&newfile2, flags & O_CLOEXEC);
Al Virodb349502007-02-07 01:48:00 -05001349 if (unlikely(fd2 < 0)) {
David S. Millerbf3c23d2007-10-29 21:54:02 -07001350 err = fd2;
Al Virodb349502007-02-07 01:48:00 -05001351 put_filp(newfile1);
1352 put_unused_fd(fd1);
1353 goto out_release_both;
1354 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355
Ulrich Drepper77d27202008-07-23 21:29:35 -07001356 err = sock_attach_fd(sock1, newfile1, flags & O_NONBLOCK);
Al Virodb349502007-02-07 01:48:00 -05001357 if (unlikely(err < 0)) {
1358 goto out_fd2;
1359 }
1360
Ulrich Drepper77d27202008-07-23 21:29:35 -07001361 err = sock_attach_fd(sock2, newfile2, flags & O_NONBLOCK);
Al Virodb349502007-02-07 01:48:00 -05001362 if (unlikely(err < 0)) {
1363 fput(newfile1);
1364 goto out_fd1;
1365 }
1366
Al Viro157cf642008-12-14 04:57:47 -05001367 audit_fd_pair(fd1, fd2);
Al Virodb349502007-02-07 01:48:00 -05001368 fd_install(fd1, newfile1);
1369 fd_install(fd2, newfile2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 /* fd1 and fd2 may be already another descriptors.
1371 * Not kernel problem.
1372 */
1373
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001374 err = put_user(fd1, &usockvec[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 if (!err)
1376 err = put_user(fd2, &usockvec[1]);
1377 if (!err)
1378 return 0;
1379
1380 sys_close(fd2);
1381 sys_close(fd1);
1382 return err;
1383
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384out_release_both:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001385 sock_release(sock2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386out_release_1:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001387 sock_release(sock1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388out:
1389 return err;
Al Virodb349502007-02-07 01:48:00 -05001390
1391out_fd2:
1392 put_filp(newfile1);
1393 sock_release(sock1);
1394out_fd1:
1395 put_filp(newfile2);
1396 sock_release(sock2);
Al Virodb349502007-02-07 01:48:00 -05001397 put_unused_fd(fd1);
1398 put_unused_fd(fd2);
1399 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400}
1401
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402/*
1403 * Bind a name to a socket. Nothing much to do here since it's
1404 * the protocol's responsibility to handle the local address.
1405 *
1406 * We move the socket address to kernel space before we call
1407 * the protocol layer (having also checked the address is ok).
1408 */
1409
Heiko Carstens20f37032009-01-14 14:14:23 +01001410SYSCALL_DEFINE3(bind, int, fd, struct sockaddr __user *, umyaddr, int, addrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411{
1412 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001413 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001414 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001416 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001417 if (sock) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001418 err = move_addr_to_kernel(umyaddr, addrlen, (struct sockaddr *)&address);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001419 if (err >= 0) {
1420 err = security_socket_bind(sock,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001421 (struct sockaddr *)&address,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001422 addrlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001423 if (!err)
1424 err = sock->ops->bind(sock,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001425 (struct sockaddr *)
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001426 &address, addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 }
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001428 fput_light(sock->file, fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001429 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 return err;
1431}
1432
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433/*
1434 * Perform a listen. Basically, we allow the protocol to do anything
1435 * necessary for a listen, and if that works, we mark the socket as
1436 * ready for listening.
1437 */
1438
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001439SYSCALL_DEFINE2(listen, int, fd, int, backlog)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440{
1441 struct socket *sock;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001442 int err, fput_needed;
Pavel Emelyanovb8e1f9b2007-12-08 00:12:33 -08001443 int somaxconn;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001444
1445 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1446 if (sock) {
Pavel Emelyanov8efa6e92008-03-31 19:41:14 -07001447 somaxconn = sock_net(sock->sk)->core.sysctl_somaxconn;
Pavel Emelyanovb8e1f9b2007-12-08 00:12:33 -08001448 if ((unsigned)backlog > somaxconn)
1449 backlog = somaxconn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450
1451 err = security_socket_listen(sock, backlog);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001452 if (!err)
1453 err = sock->ops->listen(sock, backlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001455 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 }
1457 return err;
1458}
1459
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460/*
1461 * For accept, we attempt to create a new socket, set up the link
1462 * with the client, wake up the client, then return the new
1463 * connected fd. We collect the address of the connector in kernel
1464 * space and move it to user at the very end. This is unclean because
1465 * we open the socket then return an error.
1466 *
1467 * 1003.1g adds the ability to recvmsg() to query connection pending
1468 * status to recvmsg. We need to add that support in a way thats
1469 * clean when we restucture accept also.
1470 */
1471
Heiko Carstens20f37032009-01-14 14:14:23 +01001472SYSCALL_DEFINE4(accept4, int, fd, struct sockaddr __user *, upeer_sockaddr,
1473 int __user *, upeer_addrlen, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474{
1475 struct socket *sock, *newsock;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001476 struct file *newfile;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001477 int err, len, newfd, fput_needed;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001478 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479
Ulrich Drepper77d27202008-07-23 21:29:35 -07001480 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001481 return -EINVAL;
1482
1483 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1484 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1485
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001486 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 if (!sock)
1488 goto out;
1489
1490 err = -ENFILE;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001491 if (!(newsock = sock_alloc()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 goto out_put;
1493
1494 newsock->type = sock->type;
1495 newsock->ops = sock->ops;
1496
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 /*
1498 * We don't need try_module_get here, as the listening socket (sock)
1499 * has the protocol module (sock->ops->owner) held.
1500 */
1501 __module_get(newsock->ops->owner);
1502
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001503 newfd = sock_alloc_fd(&newfile, flags & O_CLOEXEC);
David S. Miller39d8c1b2006-03-20 17:13:49 -08001504 if (unlikely(newfd < 0)) {
1505 err = newfd;
David S. Miller9a1875e2006-04-01 12:48:36 -08001506 sock_release(newsock);
1507 goto out_put;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001508 }
1509
Ulrich Drepper77d27202008-07-23 21:29:35 -07001510 err = sock_attach_fd(newsock, newfile, flags & O_NONBLOCK);
David S. Miller39d8c1b2006-03-20 17:13:49 -08001511 if (err < 0)
Alexey Dobriyan79f4f642007-03-26 14:09:52 -07001512 goto out_fd_simple;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001513
Frank Filza79af592005-09-27 15:23:38 -07001514 err = security_socket_accept(sock, newsock);
1515 if (err)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001516 goto out_fd;
Frank Filza79af592005-09-27 15:23:38 -07001517
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 err = sock->ops->accept(sock, newsock, sock->file->f_flags);
1519 if (err < 0)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001520 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521
1522 if (upeer_sockaddr) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001523 if (newsock->ops->getname(newsock, (struct sockaddr *)&address,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001524 &len, 2) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 err = -ECONNABORTED;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001526 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 }
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001528 err = move_addr_to_user((struct sockaddr *)&address,
1529 len, upeer_sockaddr, upeer_addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 if (err < 0)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001531 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 }
1533
1534 /* File flags are not inherited via accept() unlike another OSes. */
1535
David S. Miller39d8c1b2006-03-20 17:13:49 -08001536 fd_install(newfd, newfile);
1537 err = newfd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001540 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541out:
1542 return err;
Alexey Dobriyan79f4f642007-03-26 14:09:52 -07001543out_fd_simple:
1544 sock_release(newsock);
1545 put_filp(newfile);
1546 put_unused_fd(newfd);
1547 goto out_put;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001548out_fd:
David S. Miller9606a212006-04-01 01:00:14 -08001549 fput(newfile);
David S. Miller39d8c1b2006-03-20 17:13:49 -08001550 put_unused_fd(newfd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 goto out_put;
1552}
1553
Heiko Carstens20f37032009-01-14 14:14:23 +01001554SYSCALL_DEFINE3(accept, int, fd, struct sockaddr __user *, upeer_sockaddr,
1555 int __user *, upeer_addrlen)
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001556{
Ulrich Drepperde11def2008-11-19 15:36:14 -08001557 return sys_accept4(fd, upeer_sockaddr, upeer_addrlen, 0);
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07001558}
1559
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560/*
1561 * Attempt to connect to a socket with the server address. The address
1562 * is in user space so we verify it is OK and move it to kernel space.
1563 *
1564 * For 1003.1g we need to add clean support for a bind to AF_UNSPEC to
1565 * break bindings
1566 *
1567 * NOTE: 1003.1g draft 6.3 is broken with respect to AX.25/NetROM and
1568 * other SEQPACKET protocols that take time to connect() as it doesn't
1569 * include the -EINPROGRESS status for such sockets.
1570 */
1571
Heiko Carstens20f37032009-01-14 14:14:23 +01001572SYSCALL_DEFINE3(connect, int, fd, struct sockaddr __user *, uservaddr,
1573 int, addrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574{
1575 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001576 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001577 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001579 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 if (!sock)
1581 goto out;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001582 err = move_addr_to_kernel(uservaddr, addrlen, (struct sockaddr *)&address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 if (err < 0)
1584 goto out_put;
1585
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001586 err =
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001587 security_socket_connect(sock, (struct sockaddr *)&address, addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 if (err)
1589 goto out_put;
1590
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001591 err = sock->ops->connect(sock, (struct sockaddr *)&address, addrlen,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 sock->file->f_flags);
1593out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001594 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595out:
1596 return err;
1597}
1598
1599/*
1600 * Get the local address ('name') of a socket object. Move the obtained
1601 * name to user space.
1602 */
1603
Heiko Carstens20f37032009-01-14 14:14:23 +01001604SYSCALL_DEFINE3(getsockname, int, fd, struct sockaddr __user *, usockaddr,
1605 int __user *, usockaddr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606{
1607 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001608 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001609 int len, err, fput_needed;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001610
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001611 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 if (!sock)
1613 goto out;
1614
1615 err = security_socket_getsockname(sock);
1616 if (err)
1617 goto out_put;
1618
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001619 err = sock->ops->getname(sock, (struct sockaddr *)&address, &len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 if (err)
1621 goto out_put;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001622 err = move_addr_to_user((struct sockaddr *)&address, len, usockaddr, usockaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623
1624out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001625 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626out:
1627 return err;
1628}
1629
1630/*
1631 * Get the remote address ('name') of a socket object. Move the obtained
1632 * name to user space.
1633 */
1634
Heiko Carstens20f37032009-01-14 14:14:23 +01001635SYSCALL_DEFINE3(getpeername, int, fd, struct sockaddr __user *, usockaddr,
1636 int __user *, usockaddr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637{
1638 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001639 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001640 int len, err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001642 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1643 if (sock != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 err = security_socket_getpeername(sock);
1645 if (err) {
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001646 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 return err;
1648 }
1649
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001650 err =
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001651 sock->ops->getname(sock, (struct sockaddr *)&address, &len,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001652 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 if (!err)
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001654 err = move_addr_to_user((struct sockaddr *)&address, len, usockaddr,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001655 usockaddr_len);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001656 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 }
1658 return err;
1659}
1660
1661/*
1662 * Send a datagram to a given address. We move the address into kernel
1663 * space and check the user space data area is readable before invoking
1664 * the protocol.
1665 */
1666
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001667SYSCALL_DEFINE6(sendto, int, fd, void __user *, buff, size_t, len,
1668 unsigned, flags, struct sockaddr __user *, addr,
1669 int, addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670{
1671 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001672 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 int err;
1674 struct msghdr msg;
1675 struct iovec iov;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001676 int fput_needed;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001677
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001678 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1679 if (!sock)
David S. Miller4387ff72007-02-08 15:06:08 -08001680 goto out;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001681
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001682 iov.iov_base = buff;
1683 iov.iov_len = len;
1684 msg.msg_name = NULL;
1685 msg.msg_iov = &iov;
1686 msg.msg_iovlen = 1;
1687 msg.msg_control = NULL;
1688 msg.msg_controllen = 0;
1689 msg.msg_namelen = 0;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001690 if (addr) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001691 err = move_addr_to_kernel(addr, addr_len, (struct sockaddr *)&address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 if (err < 0)
1693 goto out_put;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001694 msg.msg_name = (struct sockaddr *)&address;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001695 msg.msg_namelen = addr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 }
1697 if (sock->file->f_flags & O_NONBLOCK)
1698 flags |= MSG_DONTWAIT;
1699 msg.msg_flags = flags;
1700 err = sock_sendmsg(sock, &msg, len);
1701
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001702out_put:
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001703 fput_light(sock->file, fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08001704out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 return err;
1706}
1707
1708/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001709 * Send a datagram down a socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 */
1711
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001712SYSCALL_DEFINE4(send, int, fd, void __user *, buff, size_t, len,
1713 unsigned, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714{
1715 return sys_sendto(fd, buff, len, flags, NULL, 0);
1716}
1717
1718/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001719 * Receive a frame from the socket and optionally record the address of the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 * sender. We verify the buffers are writable and if needed move the
1721 * sender address from kernel to user space.
1722 */
1723
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001724SYSCALL_DEFINE6(recvfrom, int, fd, void __user *, ubuf, size_t, size,
1725 unsigned, flags, struct sockaddr __user *, addr,
1726 int __user *, addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727{
1728 struct socket *sock;
1729 struct iovec iov;
1730 struct msghdr msg;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001731 struct sockaddr_storage address;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001732 int err, err2;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001733 int fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001735 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 if (!sock)
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001737 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001739 msg.msg_control = NULL;
1740 msg.msg_controllen = 0;
1741 msg.msg_iovlen = 1;
1742 msg.msg_iov = &iov;
1743 iov.iov_len = size;
1744 iov.iov_base = ubuf;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001745 msg.msg_name = (struct sockaddr *)&address;
1746 msg.msg_namelen = sizeof(address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 if (sock->file->f_flags & O_NONBLOCK)
1748 flags |= MSG_DONTWAIT;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001749 err = sock_recvmsg(sock, &msg, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001751 if (err >= 0 && addr != NULL) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001752 err2 = move_addr_to_user((struct sockaddr *)&address,
1753 msg.msg_namelen, addr, addr_len);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001754 if (err2 < 0)
1755 err = err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 }
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001757
1758 fput_light(sock->file, fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08001759out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 return err;
1761}
1762
1763/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001764 * Receive a datagram from a socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 */
1766
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001767asmlinkage long sys_recv(int fd, void __user *ubuf, size_t size,
1768 unsigned flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769{
1770 return sys_recvfrom(fd, ubuf, size, flags, NULL, NULL);
1771}
1772
1773/*
1774 * Set a socket option. Because we don't know the option lengths we have
1775 * to pass the user mode parameter for the protocols to sort out.
1776 */
1777
Heiko Carstens20f37032009-01-14 14:14:23 +01001778SYSCALL_DEFINE5(setsockopt, int, fd, int, level, int, optname,
1779 char __user *, optval, int, optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001781 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 struct socket *sock;
1783
1784 if (optlen < 0)
1785 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001786
1787 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1788 if (sock != NULL) {
1789 err = security_socket_setsockopt(sock, level, optname);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001790 if (err)
1791 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792
1793 if (level == SOL_SOCKET)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001794 err =
1795 sock_setsockopt(sock, level, optname, optval,
1796 optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 else
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001798 err =
1799 sock->ops->setsockopt(sock, level, optname, optval,
1800 optlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001801out_put:
1802 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 }
1804 return err;
1805}
1806
1807/*
1808 * Get a socket option. Because we don't know the option lengths we have
1809 * to pass a user mode parameter for the protocols to sort out.
1810 */
1811
Heiko Carstens20f37032009-01-14 14:14:23 +01001812SYSCALL_DEFINE5(getsockopt, int, fd, int, level, int, optname,
1813 char __user *, optval, int __user *, optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001815 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 struct socket *sock;
1817
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001818 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1819 if (sock != NULL) {
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001820 err = security_socket_getsockopt(sock, level, optname);
1821 if (err)
1822 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823
1824 if (level == SOL_SOCKET)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001825 err =
1826 sock_getsockopt(sock, level, optname, optval,
1827 optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 else
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001829 err =
1830 sock->ops->getsockopt(sock, level, optname, optval,
1831 optlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001832out_put:
1833 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 }
1835 return err;
1836}
1837
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838/*
1839 * Shutdown a socket.
1840 */
1841
Heiko Carstens754fe8d2009-01-14 14:14:09 +01001842SYSCALL_DEFINE2(shutdown, int, fd, int, how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001844 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 struct socket *sock;
1846
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001847 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1848 if (sock != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 err = security_socket_shutdown(sock, how);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001850 if (!err)
1851 err = sock->ops->shutdown(sock, how);
1852 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 }
1854 return err;
1855}
1856
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001857/* A couple of helpful macros for getting the address of the 32/64 bit
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 * fields which are the same type (int / unsigned) on our platforms.
1859 */
1860#define COMPAT_MSG(msg, member) ((MSG_CMSG_COMPAT & flags) ? &msg##_compat->member : &msg->member)
1861#define COMPAT_NAMELEN(msg) COMPAT_MSG(msg, msg_namelen)
1862#define COMPAT_FLAGS(msg) COMPAT_MSG(msg, msg_flags)
1863
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864/*
1865 * BSD sendmsg interface
1866 */
1867
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001868SYSCALL_DEFINE3(sendmsg, int, fd, struct msghdr __user *, msg, unsigned, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001870 struct compat_msghdr __user *msg_compat =
1871 (struct compat_msghdr __user *)msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001873 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 struct iovec iovstack[UIO_FASTIOV], *iov = iovstack;
Alex Williamsonb9d717a2005-09-26 14:28:02 -07001875 unsigned char ctl[sizeof(struct cmsghdr) + 20]
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001876 __attribute__ ((aligned(sizeof(__kernel_size_t))));
1877 /* 20 is size of ipv6_pktinfo */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 unsigned char *ctl_buf = ctl;
1879 struct msghdr msg_sys;
1880 int err, ctl_len, iov_size, total_len;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001881 int fput_needed;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001882
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 err = -EFAULT;
1884 if (MSG_CMSG_COMPAT & flags) {
1885 if (get_compat_msghdr(&msg_sys, msg_compat))
1886 return -EFAULT;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001887 }
1888 else if (copy_from_user(&msg_sys, msg, sizeof(struct msghdr)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 return -EFAULT;
1890
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001891 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001892 if (!sock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 goto out;
1894
1895 /* do not move before msg_sys is valid */
1896 err = -EMSGSIZE;
1897 if (msg_sys.msg_iovlen > UIO_MAXIOV)
1898 goto out_put;
1899
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001900 /* Check whether to allocate the iovec area */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 err = -ENOMEM;
1902 iov_size = msg_sys.msg_iovlen * sizeof(struct iovec);
1903 if (msg_sys.msg_iovlen > UIO_FASTIOV) {
1904 iov = sock_kmalloc(sock->sk, iov_size, GFP_KERNEL);
1905 if (!iov)
1906 goto out_put;
1907 }
1908
1909 /* This will also move the address data into kernel space */
1910 if (MSG_CMSG_COMPAT & flags) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001911 err = verify_compat_iovec(&msg_sys, iov,
1912 (struct sockaddr *)&address,
1913 VERIFY_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 } else
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001915 err = verify_iovec(&msg_sys, iov,
1916 (struct sockaddr *)&address,
1917 VERIFY_READ);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001918 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 goto out_freeiov;
1920 total_len = err;
1921
1922 err = -ENOBUFS;
1923
1924 if (msg_sys.msg_controllen > INT_MAX)
1925 goto out_freeiov;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001926 ctl_len = msg_sys.msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 if ((MSG_CMSG_COMPAT & flags) && ctl_len) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001928 err =
1929 cmsghdr_from_user_compat_to_kern(&msg_sys, sock->sk, ctl,
1930 sizeof(ctl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 if (err)
1932 goto out_freeiov;
1933 ctl_buf = msg_sys.msg_control;
Al Viro8920e8f2005-09-07 18:28:51 -07001934 ctl_len = msg_sys.msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 } else if (ctl_len) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001936 if (ctl_len > sizeof(ctl)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 ctl_buf = sock_kmalloc(sock->sk, ctl_len, GFP_KERNEL);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001938 if (ctl_buf == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 goto out_freeiov;
1940 }
1941 err = -EFAULT;
1942 /*
1943 * Careful! Before this, msg_sys.msg_control contains a user pointer.
1944 * Afterwards, it will be a kernel pointer. Thus the compiler-assisted
1945 * checking falls down on this.
1946 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001947 if (copy_from_user(ctl_buf, (void __user *)msg_sys.msg_control,
1948 ctl_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 goto out_freectl;
1950 msg_sys.msg_control = ctl_buf;
1951 }
1952 msg_sys.msg_flags = flags;
1953
1954 if (sock->file->f_flags & O_NONBLOCK)
1955 msg_sys.msg_flags |= MSG_DONTWAIT;
1956 err = sock_sendmsg(sock, &msg_sys, total_len);
1957
1958out_freectl:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001959 if (ctl_buf != ctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 sock_kfree_s(sock->sk, ctl_buf, ctl_len);
1961out_freeiov:
1962 if (iov != iovstack)
1963 sock_kfree_s(sock->sk, iov, iov_size);
1964out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001965 fput_light(sock->file, fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001966out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 return err;
1968}
1969
1970/*
1971 * BSD recvmsg interface
1972 */
1973
Heiko Carstens3e0fa652009-01-14 14:14:24 +01001974SYSCALL_DEFINE3(recvmsg, int, fd, struct msghdr __user *, msg,
1975 unsigned int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001977 struct compat_msghdr __user *msg_compat =
1978 (struct compat_msghdr __user *)msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 struct socket *sock;
1980 struct iovec iovstack[UIO_FASTIOV];
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001981 struct iovec *iov = iovstack;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 struct msghdr msg_sys;
1983 unsigned long cmsg_ptr;
1984 int err, iov_size, total_len, len;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001985 int fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986
1987 /* kernel mode address */
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001988 struct sockaddr_storage addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989
1990 /* user mode address pointers */
1991 struct sockaddr __user *uaddr;
1992 int __user *uaddr_len;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001993
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 if (MSG_CMSG_COMPAT & flags) {
1995 if (get_compat_msghdr(&msg_sys, msg_compat))
1996 return -EFAULT;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001997 }
1998 else if (copy_from_user(&msg_sys, msg, sizeof(struct msghdr)))
1999 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002001 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 if (!sock)
2003 goto out;
2004
2005 err = -EMSGSIZE;
2006 if (msg_sys.msg_iovlen > UIO_MAXIOV)
2007 goto out_put;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002008
2009 /* Check whether to allocate the iovec area */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 err = -ENOMEM;
2011 iov_size = msg_sys.msg_iovlen * sizeof(struct iovec);
2012 if (msg_sys.msg_iovlen > UIO_FASTIOV) {
2013 iov = sock_kmalloc(sock->sk, iov_size, GFP_KERNEL);
2014 if (!iov)
2015 goto out_put;
2016 }
2017
2018 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002019 * Save the user-mode address (verify_iovec will change the
2020 * kernel msghdr to use the kernel address space)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002022
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07002023 uaddr = (__force void __user *)msg_sys.msg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 uaddr_len = COMPAT_NAMELEN(msg);
2025 if (MSG_CMSG_COMPAT & flags) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07002026 err = verify_compat_iovec(&msg_sys, iov,
2027 (struct sockaddr *)&addr,
2028 VERIFY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 } else
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07002030 err = verify_iovec(&msg_sys, iov,
2031 (struct sockaddr *)&addr,
2032 VERIFY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 if (err < 0)
2034 goto out_freeiov;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002035 total_len = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036
2037 cmsg_ptr = (unsigned long)msg_sys.msg_control;
Ulrich Drepper4a195422007-07-15 23:40:34 -07002038 msg_sys.msg_flags = flags & (MSG_CMSG_CLOEXEC|MSG_CMSG_COMPAT);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002039
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 if (sock->file->f_flags & O_NONBLOCK)
2041 flags |= MSG_DONTWAIT;
2042 err = sock_recvmsg(sock, &msg_sys, total_len, flags);
2043 if (err < 0)
2044 goto out_freeiov;
2045 len = err;
2046
2047 if (uaddr != NULL) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07002048 err = move_addr_to_user((struct sockaddr *)&addr,
2049 msg_sys.msg_namelen, uaddr,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002050 uaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 if (err < 0)
2052 goto out_freeiov;
2053 }
David S. Miller37f7f422005-09-16 16:51:01 -07002054 err = __put_user((msg_sys.msg_flags & ~MSG_CMSG_COMPAT),
2055 COMPAT_FLAGS(msg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 if (err)
2057 goto out_freeiov;
2058 if (MSG_CMSG_COMPAT & flags)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002059 err = __put_user((unsigned long)msg_sys.msg_control - cmsg_ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 &msg_compat->msg_controllen);
2061 else
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002062 err = __put_user((unsigned long)msg_sys.msg_control - cmsg_ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 &msg->msg_controllen);
2064 if (err)
2065 goto out_freeiov;
2066 err = len;
2067
2068out_freeiov:
2069 if (iov != iovstack)
2070 sock_kfree_s(sock->sk, iov, iov_size);
2071out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002072 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073out:
2074 return err;
2075}
2076
2077#ifdef __ARCH_WANT_SYS_SOCKETCALL
2078
2079/* Argument list sizes for sys_socketcall */
2080#define AL(x) ((x) * sizeof(unsigned long))
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07002081static const unsigned char nargs[19]={
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002082 AL(0),AL(3),AL(3),AL(3),AL(2),AL(3),
2083 AL(3),AL(3),AL(4),AL(4),AL(4),AL(6),
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07002084 AL(6),AL(2),AL(5),AL(5),AL(3),AL(3),
Ulrich Drepperde11def2008-11-19 15:36:14 -08002085 AL(4)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002086};
2087
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088#undef AL
2089
2090/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002091 * System call vectors.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 *
2093 * Argument checking cleaned up. Saved 20% in size.
2094 * This function doesn't need to set the kernel lock because
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002095 * it is set by the callees.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 */
2097
Heiko Carstens3e0fa652009-01-14 14:14:24 +01002098SYSCALL_DEFINE2(socketcall, int, call, unsigned long __user *, args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099{
2100 unsigned long a[6];
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002101 unsigned long a0, a1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 int err;
2103
Ulrich Drepperde11def2008-11-19 15:36:14 -08002104 if (call < 1 || call > SYS_ACCEPT4)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 return -EINVAL;
2106
2107 /* copy_from_user should be SMP safe. */
2108 if (copy_from_user(a, args, nargs[call]))
2109 return -EFAULT;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002110
Al Virof3298dc2008-12-10 03:16:51 -05002111 audit_socketcall(nargs[call] / sizeof(unsigned long), a);
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002112
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002113 a0 = a[0];
2114 a1 = a[1];
2115
2116 switch (call) {
2117 case SYS_SOCKET:
2118 err = sys_socket(a0, a1, a[2]);
2119 break;
2120 case SYS_BIND:
2121 err = sys_bind(a0, (struct sockaddr __user *)a1, a[2]);
2122 break;
2123 case SYS_CONNECT:
2124 err = sys_connect(a0, (struct sockaddr __user *)a1, a[2]);
2125 break;
2126 case SYS_LISTEN:
2127 err = sys_listen(a0, a1);
2128 break;
2129 case SYS_ACCEPT:
Ulrich Drepperde11def2008-11-19 15:36:14 -08002130 err = sys_accept4(a0, (struct sockaddr __user *)a1,
2131 (int __user *)a[2], 0);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002132 break;
2133 case SYS_GETSOCKNAME:
2134 err =
2135 sys_getsockname(a0, (struct sockaddr __user *)a1,
2136 (int __user *)a[2]);
2137 break;
2138 case SYS_GETPEERNAME:
2139 err =
2140 sys_getpeername(a0, (struct sockaddr __user *)a1,
2141 (int __user *)a[2]);
2142 break;
2143 case SYS_SOCKETPAIR:
2144 err = sys_socketpair(a0, a1, a[2], (int __user *)a[3]);
2145 break;
2146 case SYS_SEND:
2147 err = sys_send(a0, (void __user *)a1, a[2], a[3]);
2148 break;
2149 case SYS_SENDTO:
2150 err = sys_sendto(a0, (void __user *)a1, a[2], a[3],
2151 (struct sockaddr __user *)a[4], a[5]);
2152 break;
2153 case SYS_RECV:
2154 err = sys_recv(a0, (void __user *)a1, a[2], a[3]);
2155 break;
2156 case SYS_RECVFROM:
2157 err = sys_recvfrom(a0, (void __user *)a1, a[2], a[3],
2158 (struct sockaddr __user *)a[4],
2159 (int __user *)a[5]);
2160 break;
2161 case SYS_SHUTDOWN:
2162 err = sys_shutdown(a0, a1);
2163 break;
2164 case SYS_SETSOCKOPT:
2165 err = sys_setsockopt(a0, a1, a[2], (char __user *)a[3], a[4]);
2166 break;
2167 case SYS_GETSOCKOPT:
2168 err =
2169 sys_getsockopt(a0, a1, a[2], (char __user *)a[3],
2170 (int __user *)a[4]);
2171 break;
2172 case SYS_SENDMSG:
2173 err = sys_sendmsg(a0, (struct msghdr __user *)a1, a[2]);
2174 break;
2175 case SYS_RECVMSG:
2176 err = sys_recvmsg(a0, (struct msghdr __user *)a1, a[2]);
2177 break;
Ulrich Drepperde11def2008-11-19 15:36:14 -08002178 case SYS_ACCEPT4:
2179 err = sys_accept4(a0, (struct sockaddr __user *)a1,
2180 (int __user *)a[2], a[3]);
Ulrich Drepperaaca0bd2008-07-23 21:29:20 -07002181 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002182 default:
2183 err = -EINVAL;
2184 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 }
2186 return err;
2187}
2188
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002189#endif /* __ARCH_WANT_SYS_SOCKETCALL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002191/**
2192 * sock_register - add a socket protocol handler
2193 * @ops: description of protocol
2194 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 * This function is called by a protocol handler that wants to
2196 * advertise its address family, and have it linked into the
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002197 * socket interface. The value ops->family coresponds to the
2198 * socket system call protocol family.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 */
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002200int sock_register(const struct net_proto_family *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201{
2202 int err;
2203
2204 if (ops->family >= NPROTO) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002205 printk(KERN_CRIT "protocol %d >= NPROTO(%d)\n", ops->family,
2206 NPROTO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 return -ENOBUFS;
2208 }
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002209
2210 spin_lock(&net_family_lock);
2211 if (net_families[ops->family])
2212 err = -EEXIST;
2213 else {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002214 net_families[ops->family] = ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 err = 0;
2216 }
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002217 spin_unlock(&net_family_lock);
2218
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002219 printk(KERN_INFO "NET: Registered protocol family %d\n", ops->family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 return err;
2221}
2222
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002223/**
2224 * sock_unregister - remove a protocol handler
2225 * @family: protocol family to remove
2226 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 * This function is called by a protocol handler that wants to
2228 * remove its address family, and have it unlinked from the
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002229 * new socket creation.
2230 *
2231 * If protocol handler is a module, then it can use module reference
2232 * counts to protect against new references. If protocol handler is not
2233 * a module then it needs to provide its own protection in
2234 * the ops->create routine.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 */
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002236void sock_unregister(int family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237{
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002238 BUG_ON(family < 0 || family >= NPROTO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002240 spin_lock(&net_family_lock);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002241 net_families[family] = NULL;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002242 spin_unlock(&net_family_lock);
2243
2244 synchronize_rcu();
2245
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002246 printk(KERN_INFO "NET: Unregistered protocol family %d\n", family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247}
2248
Andi Kleen77d76ea2005-12-22 12:43:42 -08002249static int __init sock_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250{
2251 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002252 * Initialize sock SLAB cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002254
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 sk_init();
2256
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002258 * Initialize skbuff SLAB cache
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 */
2260 skb_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261
2262 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002263 * Initialize the protocols module.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 */
2265
2266 init_inodecache();
2267 register_filesystem(&sock_fs_type);
2268 sock_mnt = kern_mount(&sock_fs_type);
Andi Kleen77d76ea2005-12-22 12:43:42 -08002269
2270 /* The real protocol initialization is performed in later initcalls.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 */
2272
2273#ifdef CONFIG_NETFILTER
2274 netfilter_init();
2275#endif
David S. Millercbeb3212005-12-22 12:58:55 -08002276
2277 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278}
2279
Andi Kleen77d76ea2005-12-22 12:43:42 -08002280core_initcall(sock_init); /* early initcall */
2281
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282#ifdef CONFIG_PROC_FS
2283void socket_seq_show(struct seq_file *seq)
2284{
2285 int cpu;
2286 int counter = 0;
2287
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -07002288 for_each_possible_cpu(cpu)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002289 counter += per_cpu(sockets_in_use, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290
2291 /* It can be negative, by the way. 8) */
2292 if (counter < 0)
2293 counter = 0;
2294
2295 seq_printf(seq, "sockets: used %d\n", counter);
2296}
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002297#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298
Shaun Pereira89bbfc92006-03-21 23:58:08 -08002299#ifdef CONFIG_COMPAT
2300static long compat_sock_ioctl(struct file *file, unsigned cmd,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002301 unsigned long arg)
Shaun Pereira89bbfc92006-03-21 23:58:08 -08002302{
2303 struct socket *sock = file->private_data;
2304 int ret = -ENOIOCTLCMD;
David S. Miller87de87d2008-06-03 09:14:03 -07002305 struct sock *sk;
2306 struct net *net;
2307
2308 sk = sock->sk;
2309 net = sock_net(sk);
Shaun Pereira89bbfc92006-03-21 23:58:08 -08002310
2311 if (sock->ops->compat_ioctl)
2312 ret = sock->ops->compat_ioctl(sock, cmd, arg);
2313
David S. Miller87de87d2008-06-03 09:14:03 -07002314 if (ret == -ENOIOCTLCMD &&
2315 (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST))
2316 ret = compat_wext_handle_ioctl(net, cmd, arg);
2317
Shaun Pereira89bbfc92006-03-21 23:58:08 -08002318 return ret;
2319}
2320#endif
2321
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07002322int kernel_bind(struct socket *sock, struct sockaddr *addr, int addrlen)
2323{
2324 return sock->ops->bind(sock, addr, addrlen);
2325}
2326
2327int kernel_listen(struct socket *sock, int backlog)
2328{
2329 return sock->ops->listen(sock, backlog);
2330}
2331
2332int kernel_accept(struct socket *sock, struct socket **newsock, int flags)
2333{
2334 struct sock *sk = sock->sk;
2335 int err;
2336
2337 err = sock_create_lite(sk->sk_family, sk->sk_type, sk->sk_protocol,
2338 newsock);
2339 if (err < 0)
2340 goto done;
2341
2342 err = sock->ops->accept(sock, *newsock, flags);
2343 if (err < 0) {
2344 sock_release(*newsock);
Tony Battersbyfa8705b2007-10-10 21:09:04 -07002345 *newsock = NULL;
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07002346 goto done;
2347 }
2348
2349 (*newsock)->ops = sock->ops;
Wei Yongjun1b085342008-12-18 19:35:10 -08002350 __module_get((*newsock)->ops->owner);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07002351
2352done:
2353 return err;
2354}
2355
2356int kernel_connect(struct socket *sock, struct sockaddr *addr, int addrlen,
YOSHIFUJI Hideaki4768fbc2007-02-09 23:25:31 +09002357 int flags)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07002358{
2359 return sock->ops->connect(sock, addr, addrlen, flags);
2360}
2361
2362int kernel_getsockname(struct socket *sock, struct sockaddr *addr,
2363 int *addrlen)
2364{
2365 return sock->ops->getname(sock, addr, addrlen, 0);
2366}
2367
2368int kernel_getpeername(struct socket *sock, struct sockaddr *addr,
2369 int *addrlen)
2370{
2371 return sock->ops->getname(sock, addr, addrlen, 1);
2372}
2373
2374int kernel_getsockopt(struct socket *sock, int level, int optname,
2375 char *optval, int *optlen)
2376{
2377 mm_segment_t oldfs = get_fs();
2378 int err;
2379
2380 set_fs(KERNEL_DS);
2381 if (level == SOL_SOCKET)
2382 err = sock_getsockopt(sock, level, optname, optval, optlen);
2383 else
2384 err = sock->ops->getsockopt(sock, level, optname, optval,
2385 optlen);
2386 set_fs(oldfs);
2387 return err;
2388}
2389
2390int kernel_setsockopt(struct socket *sock, int level, int optname,
2391 char *optval, int optlen)
2392{
2393 mm_segment_t oldfs = get_fs();
2394 int err;
2395
2396 set_fs(KERNEL_DS);
2397 if (level == SOL_SOCKET)
2398 err = sock_setsockopt(sock, level, optname, optval, optlen);
2399 else
2400 err = sock->ops->setsockopt(sock, level, optname, optval,
2401 optlen);
2402 set_fs(oldfs);
2403 return err;
2404}
2405
2406int kernel_sendpage(struct socket *sock, struct page *page, int offset,
2407 size_t size, int flags)
2408{
2409 if (sock->ops->sendpage)
2410 return sock->ops->sendpage(sock, page, offset, size, flags);
2411
2412 return sock_no_sendpage(sock, page, offset, size, flags);
2413}
2414
2415int kernel_sock_ioctl(struct socket *sock, int cmd, unsigned long arg)
2416{
2417 mm_segment_t oldfs = get_fs();
2418 int err;
2419
2420 set_fs(KERNEL_DS);
2421 err = sock->ops->ioctl(sock, cmd, arg);
2422 set_fs(oldfs);
2423
2424 return err;
2425}
2426
Trond Myklebust91cf45f2007-11-12 18:10:39 -08002427int kernel_sock_shutdown(struct socket *sock, enum sock_shutdown_cmd how)
2428{
2429 return sock->ops->shutdown(sock, how);
2430}
2431
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432EXPORT_SYMBOL(sock_create);
2433EXPORT_SYMBOL(sock_create_kern);
2434EXPORT_SYMBOL(sock_create_lite);
2435EXPORT_SYMBOL(sock_map_fd);
2436EXPORT_SYMBOL(sock_recvmsg);
2437EXPORT_SYMBOL(sock_register);
2438EXPORT_SYMBOL(sock_release);
2439EXPORT_SYMBOL(sock_sendmsg);
2440EXPORT_SYMBOL(sock_unregister);
2441EXPORT_SYMBOL(sock_wake_async);
2442EXPORT_SYMBOL(sockfd_lookup);
2443EXPORT_SYMBOL(kernel_sendmsg);
2444EXPORT_SYMBOL(kernel_recvmsg);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07002445EXPORT_SYMBOL(kernel_bind);
2446EXPORT_SYMBOL(kernel_listen);
2447EXPORT_SYMBOL(kernel_accept);
2448EXPORT_SYMBOL(kernel_connect);
2449EXPORT_SYMBOL(kernel_getsockname);
2450EXPORT_SYMBOL(kernel_getpeername);
2451EXPORT_SYMBOL(kernel_getsockopt);
2452EXPORT_SYMBOL(kernel_setsockopt);
2453EXPORT_SYMBOL(kernel_sendpage);
2454EXPORT_SYMBOL(kernel_sock_ioctl);
Trond Myklebust91cf45f2007-11-12 18:10:39 -08002455EXPORT_SYMBOL(kernel_sock_shutdown);