blob: 64601f900352ff90d9ccea0f0c9b436aa656b840 [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>
Stephen Hemminger55737fd2006-09-01 00:23:39 -070066#include <linux/rcupdate.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#include <linux/netdevice.h>
68#include <linux/proc_fs.h>
69#include <linux/seq_file.h>
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -080070#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070071#include <linux/wanrouter.h>
72#include <linux/if_bridge.h>
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -030073#include <linux/if_frad.h>
74#include <linux/if_vlan.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070075#include <linux/init.h>
76#include <linux/poll.h>
77#include <linux/cache.h>
78#include <linux/module.h>
79#include <linux/highmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070080#include <linux/mount.h>
81#include <linux/security.h>
82#include <linux/syscalls.h>
83#include <linux/compat.h>
84#include <linux/kmod.h>
David Woodhouse3ec3b2f2005-05-17 12:08:48 +010085#include <linux/audit.h>
Adrian Bunkd86b5e02006-01-21 00:46:55 +010086#include <linux/wireless.h>
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -070087#include <linux/nsproxy.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
89#include <asm/uaccess.h>
90#include <asm/unistd.h>
91
92#include <net/compat.h>
David S. Miller87de87d2008-06-03 09:14:03 -070093#include <net/wext.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95#include <net/sock.h>
96#include <linux/netfilter.h>
97
98static int sock_no_open(struct inode *irrelevant, struct file *dontcare);
Badari Pulavarty027445c2006-09-30 23:28:46 -070099static ssize_t sock_aio_read(struct kiocb *iocb, const struct iovec *iov,
100 unsigned long nr_segs, loff_t pos);
101static ssize_t sock_aio_write(struct kiocb *iocb, const struct iovec *iov,
102 unsigned long nr_segs, loff_t pos);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700103static int sock_mmap(struct file *file, struct vm_area_struct *vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
105static int sock_close(struct inode *inode, struct file *file);
106static unsigned int sock_poll(struct file *file,
107 struct poll_table_struct *wait);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700108static long sock_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800109#ifdef CONFIG_COMPAT
110static long compat_sock_ioctl(struct file *file,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700111 unsigned int cmd, unsigned long arg);
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800112#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113static int sock_fasync(int fd, struct file *filp, int on);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114static ssize_t sock_sendpage(struct file *file, struct page *page,
115 int offset, size_t size, loff_t *ppos, int more);
Jens Axboe9c55e012007-11-06 23:30:13 -0800116static ssize_t sock_splice_read(struct file *file, loff_t *ppos,
117 struct pipe_inode_info *pipe, size_t len,
118 unsigned int flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120/*
121 * Socket files have a set of 'special' operations as well as the generic file ones. These don't appear
122 * in the operation structures but are done directly via the socketcall() multiplexor.
123 */
124
Arjan van de Venda7071d2007-02-12 00:55:36 -0800125static const struct file_operations socket_file_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 .owner = THIS_MODULE,
127 .llseek = no_llseek,
128 .aio_read = sock_aio_read,
129 .aio_write = sock_aio_write,
130 .poll = sock_poll,
131 .unlocked_ioctl = sock_ioctl,
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800132#ifdef CONFIG_COMPAT
133 .compat_ioctl = compat_sock_ioctl,
134#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 .mmap = sock_mmap,
136 .open = sock_no_open, /* special open code to disallow open via /proc */
137 .release = sock_close,
138 .fasync = sock_fasync,
Jens Axboe5274f052006-03-30 15:15:30 +0200139 .sendpage = sock_sendpage,
140 .splice_write = generic_splice_sendpage,
Jens Axboe9c55e012007-11-06 23:30:13 -0800141 .splice_read = sock_splice_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142};
143
144/*
145 * The protocol list. Each protocol is registered in here.
146 */
147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148static DEFINE_SPINLOCK(net_family_lock);
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -0700149static const struct net_proto_family *net_families[NPROTO] __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151/*
152 * Statistics counters of the socket lists
153 */
154
155static DEFINE_PER_CPU(int, sockets_in_use) = 0;
156
157/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700158 * Support routines.
159 * Move socket addresses back and forth across the kernel/user
160 * divide and look after the messy bits.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 */
162
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700163#define MAX_SOCK_ADDR 128 /* 108 for Unix domain -
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 16 for IP, 16 for IPX,
165 24 for IPv6,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700166 about 80 for AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 must be at least one bigger than
168 the AF_UNIX size (see net/unix/af_unix.c
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700169 :unix_mkname()).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172/**
173 * move_addr_to_kernel - copy a socket address into kernel space
174 * @uaddr: Address in user space
175 * @kaddr: Address in kernel space
176 * @ulen: Length in user space
177 *
178 * The address is copied into kernel space. If the provided address is
179 * too long an error code of -EINVAL is returned. If the copy gives
180 * invalid addresses -EFAULT is returned. On a success 0 is returned.
181 */
182
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -0700183int move_addr_to_kernel(void __user *uaddr, int ulen, struct sockaddr *kaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184{
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -0700185 if (ulen < 0 || ulen > sizeof(struct sockaddr_storage))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700187 if (ulen == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 return 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700189 if (copy_from_user(kaddr, uaddr, ulen))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 return -EFAULT;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +0100191 return audit_sockaddr(ulen, kaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192}
193
194/**
195 * move_addr_to_user - copy an address to user space
196 * @kaddr: kernel space address
197 * @klen: length of address in kernel
198 * @uaddr: user space address
199 * @ulen: pointer to user length field
200 *
201 * The value pointed to by ulen on entry is the buffer length available.
202 * This is overwritten with the buffer space used. -EINVAL is returned
203 * if an overlong buffer is specified or a negative buffer size. -EFAULT
204 * is returned if either the buffer or the length field are not
205 * accessible.
206 * After copying the data up to the limit the user specifies, the true
207 * length of the data is written over the length limit the user
208 * specified. Zero is returned for a success.
209 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700210
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -0700211int move_addr_to_user(struct sockaddr *kaddr, int klen, void __user *uaddr,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700212 int __user *ulen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213{
214 int err;
215 int len;
216
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700217 err = get_user(len, ulen);
218 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 return err;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700220 if (len > klen)
221 len = klen;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -0700222 if (len < 0 || len > sizeof(struct sockaddr_storage))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700224 if (len) {
Steve Grubbd6fe3942006-03-30 12:20:22 -0500225 if (audit_sockaddr(klen, kaddr))
226 return -ENOMEM;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700227 if (copy_to_user(uaddr, kaddr, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 return -EFAULT;
229 }
230 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700231 * "fromlen shall refer to the value before truncation.."
232 * 1003.1g
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 */
234 return __put_user(klen, ulen);
235}
236
237#define SOCKFS_MAGIC 0x534F434B
238
Christoph Lametere18b8902006-12-06 20:33:20 -0800239static struct kmem_cache *sock_inode_cachep __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
241static struct inode *sock_alloc_inode(struct super_block *sb)
242{
243 struct socket_alloc *ei;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700244
Christoph Lametere94b1762006-12-06 20:33:17 -0800245 ei = kmem_cache_alloc(sock_inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 if (!ei)
247 return NULL;
248 init_waitqueue_head(&ei->socket.wait);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 ei->socket.fasync_list = NULL;
251 ei->socket.state = SS_UNCONNECTED;
252 ei->socket.flags = 0;
253 ei->socket.ops = NULL;
254 ei->socket.sk = NULL;
255 ei->socket.file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
257 return &ei->vfs_inode;
258}
259
260static void sock_destroy_inode(struct inode *inode)
261{
262 kmem_cache_free(sock_inode_cachep,
263 container_of(inode, struct socket_alloc, vfs_inode));
264}
265
Christoph Lameter4ba9b9d2007-10-16 23:25:51 -0700266static void init_once(struct kmem_cache *cachep, void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267{
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700268 struct socket_alloc *ei = (struct socket_alloc *)foo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Christoph Lametera35afb82007-05-16 22:10:57 -0700270 inode_init_once(&ei->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271}
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273static int init_inodecache(void)
274{
275 sock_inode_cachep = kmem_cache_create("sock_inode_cache",
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700276 sizeof(struct socket_alloc),
277 0,
278 (SLAB_HWCACHE_ALIGN |
279 SLAB_RECLAIM_ACCOUNT |
280 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +0900281 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 if (sock_inode_cachep == NULL)
283 return -ENOMEM;
284 return 0;
285}
286
287static struct super_operations sockfs_ops = {
288 .alloc_inode = sock_alloc_inode,
289 .destroy_inode =sock_destroy_inode,
290 .statfs = simple_statfs,
291};
292
David Howells454e2392006-06-23 02:02:57 -0700293static int sockfs_get_sb(struct file_system_type *fs_type,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700294 int flags, const char *dev_name, void *data,
295 struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296{
David Howells454e2392006-06-23 02:02:57 -0700297 return get_sb_pseudo(fs_type, "socket:", &sockfs_ops, SOCKFS_MAGIC,
298 mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299}
300
Eric Dumazetba899662005-08-26 12:05:31 -0700301static struct vfsmount *sock_mnt __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
303static struct file_system_type sock_fs_type = {
304 .name = "sockfs",
305 .get_sb = sockfs_get_sb,
306 .kill_sb = kill_anon_super,
307};
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700308
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309static int sockfs_delete_dentry(struct dentry *dentry)
310{
Eric Dumazet304e61e2006-12-06 20:38:49 -0800311 /*
312 * At creation time, we pretended this dentry was hashed
313 * (by clearing DCACHE_UNHASHED bit in d_flags)
314 * At delete time, we restore the truth : not hashed.
315 * (so that dput() can proceed correctly)
316 */
317 dentry->d_flags |= DCACHE_UNHASHED;
318 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319}
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700320
321/*
322 * sockfs_dname() is called from d_path().
323 */
324static char *sockfs_dname(struct dentry *dentry, char *buffer, int buflen)
325{
326 return dynamic_dname(dentry, buffer, buflen, "socket:[%lu]",
327 dentry->d_inode->i_ino);
328}
329
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330static struct dentry_operations sockfs_dentry_operations = {
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700331 .d_delete = sockfs_delete_dentry,
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700332 .d_dname = sockfs_dname,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333};
334
335/*
336 * Obtains the first available file descriptor and sets it up for use.
337 *
David S. Miller39d8c1b2006-03-20 17:13:49 -0800338 * These functions create file structures and maps them to fd space
339 * of the current process. On success it returns file descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 * and file struct implicitly stored in sock->file.
341 * Note that another thread may close file descriptor before we return
342 * from this function. We use the fact that now we do not refer
343 * to socket after mapping. If one day we will need it, this
344 * function will increment ref. count on file by 1.
345 *
346 * In any case returned fd MAY BE not valid!
347 * This race condition is unavoidable
348 * with shared fd spaces, we cannot solve it inside kernel,
349 * but we take care of internal coherence yet.
350 */
351
Ulrich Dreppera677a032008-07-23 21:29:17 -0700352static int sock_alloc_fd(struct file **filep, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353{
354 int fd;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800355
Ulrich Dreppera677a032008-07-23 21:29:17 -0700356 fd = get_unused_fd_flags(flags);
David S. Miller39d8c1b2006-03-20 17:13:49 -0800357 if (likely(fd >= 0)) {
358 struct file *file = get_empty_filp();
359
360 *filep = file;
361 if (unlikely(!file)) {
362 put_unused_fd(fd);
363 return -ENFILE;
364 }
365 } else
366 *filep = NULL;
367 return fd;
368}
369
370static int sock_attach_fd(struct socket *sock, struct file *file)
371{
Dave Hansence8d2cd2007-10-16 23:31:13 -0700372 struct dentry *dentry;
Eric Dumazetc23fbb62007-05-08 00:26:18 -0700373 struct qstr name = { .name = "" };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
Dave Hansence8d2cd2007-10-16 23:31:13 -0700375 dentry = d_alloc(sock_mnt->mnt_sb->s_root, &name);
376 if (unlikely(!dentry))
David S. Miller39d8c1b2006-03-20 17:13:49 -0800377 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Dave Hansence8d2cd2007-10-16 23:31:13 -0700379 dentry->d_op = &sockfs_dentry_operations;
Eric Dumazet304e61e2006-12-06 20:38:49 -0800380 /*
381 * We dont want to push this dentry into global dentry hash table.
382 * We pretend dentry is already hashed, by unsetting DCACHE_UNHASHED
383 * This permits a working /proc/$pid/fd/XXX on sockets
384 */
Dave Hansence8d2cd2007-10-16 23:31:13 -0700385 dentry->d_flags &= ~DCACHE_UNHASHED;
386 d_instantiate(dentry, SOCK_INODE(sock));
David S. Miller39d8c1b2006-03-20 17:13:49 -0800387
388 sock->file = file;
Dave Hansence8d2cd2007-10-16 23:31:13 -0700389 init_file(file, sock_mnt, dentry, FMODE_READ | FMODE_WRITE,
390 &socket_file_ops);
391 SOCK_INODE(sock)->i_fop = &socket_file_ops;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800392 file->f_flags = O_RDWR;
393 file->f_pos = 0;
394 file->private_data = sock;
395
396 return 0;
397}
398
Ulrich Dreppera677a032008-07-23 21:29:17 -0700399int sock_map_fd(struct socket *sock, int flags)
David S. Miller39d8c1b2006-03-20 17:13:49 -0800400{
401 struct file *newfile;
Ulrich Dreppera677a032008-07-23 21:29:17 -0700402 int fd = sock_alloc_fd(&newfile, flags);
David S. Miller39d8c1b2006-03-20 17:13:49 -0800403
404 if (likely(fd >= 0)) {
405 int err = sock_attach_fd(sock, newfile);
406
407 if (unlikely(err < 0)) {
408 put_filp(newfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 put_unused_fd(fd);
David S. Miller39d8c1b2006-03-20 17:13:49 -0800410 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 }
David S. Miller39d8c1b2006-03-20 17:13:49 -0800412 fd_install(fd, newfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 return fd;
415}
416
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800417static struct socket *sock_from_file(struct file *file, int *err)
418{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800419 if (file->f_op == &socket_file_ops)
420 return file->private_data; /* set in sock_map_fd */
421
Eric Dumazet23bb80d2007-02-08 14:59:57 -0800422 *err = -ENOTSOCK;
423 return NULL;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800424}
425
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426/**
427 * sockfd_lookup - Go from a file number to its socket slot
428 * @fd: file handle
429 * @err: pointer to an error code return
430 *
431 * The file handle passed in is locked and the socket it is bound
432 * too is returned. If an error occurs the err pointer is overwritten
433 * with a negative errno code and NULL is returned. The function checks
434 * for both invalid handles and passing a handle which is not a socket.
435 *
436 * On a success the socket object pointer is returned.
437 */
438
439struct socket *sockfd_lookup(int fd, int *err)
440{
441 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 struct socket *sock;
443
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700444 file = fget(fd);
445 if (!file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 *err = -EBADF;
447 return NULL;
448 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700449
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800450 sock = sock_from_file(file, err);
451 if (!sock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 fput(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 return sock;
454}
455
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800456static struct socket *sockfd_lookup_light(int fd, int *err, int *fput_needed)
457{
458 struct file *file;
459 struct socket *sock;
460
Hua Zhong36725582006-04-19 15:25:02 -0700461 *err = -EBADF;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800462 file = fget_light(fd, fput_needed);
463 if (file) {
464 sock = sock_from_file(file, err);
465 if (sock)
466 return sock;
467 fput_light(file, *fput_needed);
468 }
469 return NULL;
470}
471
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472/**
473 * sock_alloc - allocate a socket
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700474 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 * Allocate a new inode and socket object. The two are bound together
476 * and initialised. The socket is then returned. If we are out of inodes
477 * NULL is returned.
478 */
479
480static struct socket *sock_alloc(void)
481{
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700482 struct inode *inode;
483 struct socket *sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
485 inode = new_inode(sock_mnt->mnt_sb);
486 if (!inode)
487 return NULL;
488
489 sock = SOCKET_I(inode);
490
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700491 inode->i_mode = S_IFSOCK | S_IRWXUGO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 inode->i_uid = current->fsuid;
493 inode->i_gid = current->fsgid;
494
495 get_cpu_var(sockets_in_use)++;
496 put_cpu_var(sockets_in_use);
497 return sock;
498}
499
500/*
501 * In theory you can't get an open on this inode, but /proc provides
502 * a back door. Remember to keep it shut otherwise you'll let the
503 * creepy crawlies in.
504 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700505
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506static int sock_no_open(struct inode *irrelevant, struct file *dontcare)
507{
508 return -ENXIO;
509}
510
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800511const struct file_operations bad_sock_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 .owner = THIS_MODULE,
513 .open = sock_no_open,
514};
515
516/**
517 * sock_release - close a socket
518 * @sock: socket to close
519 *
520 * The socket is released from the protocol stack if it has a release
521 * callback, and the inode is then released if the socket is bound to
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700522 * an inode not a file.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700524
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525void sock_release(struct socket *sock)
526{
527 if (sock->ops) {
528 struct module *owner = sock->ops->owner;
529
530 sock->ops->release(sock);
531 sock->ops = NULL;
532 module_put(owner);
533 }
534
535 if (sock->fasync_list)
536 printk(KERN_ERR "sock_release: fasync list not empty!\n");
537
538 get_cpu_var(sockets_in_use)--;
539 put_cpu_var(sockets_in_use);
540 if (!sock->file) {
541 iput(SOCK_INODE(sock));
542 return;
543 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700544 sock->file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545}
546
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700547static inline int __sock_sendmsg(struct kiocb *iocb, struct socket *sock,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 struct msghdr *msg, size_t size)
549{
550 struct sock_iocb *si = kiocb_to_siocb(iocb);
551 int err;
552
553 si->sock = sock;
554 si->scm = NULL;
555 si->msg = msg;
556 si->size = size;
557
558 err = security_socket_sendmsg(sock, msg, size);
559 if (err)
560 return err;
561
562 return sock->ops->sendmsg(iocb, sock, msg, size);
563}
564
565int sock_sendmsg(struct socket *sock, struct msghdr *msg, size_t size)
566{
567 struct kiocb iocb;
568 struct sock_iocb siocb;
569 int ret;
570
571 init_sync_kiocb(&iocb, NULL);
572 iocb.private = &siocb;
573 ret = __sock_sendmsg(&iocb, sock, msg, size);
574 if (-EIOCBQUEUED == ret)
575 ret = wait_on_sync_kiocb(&iocb);
576 return ret;
577}
578
579int kernel_sendmsg(struct socket *sock, struct msghdr *msg,
580 struct kvec *vec, size_t num, size_t size)
581{
582 mm_segment_t oldfs = get_fs();
583 int result;
584
585 set_fs(KERNEL_DS);
586 /*
587 * the following is safe, since for compiler definitions of kvec and
588 * iovec are identical, yielding the same in-core layout and alignment
589 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700590 msg->msg_iov = (struct iovec *)vec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 msg->msg_iovlen = num;
592 result = sock_sendmsg(sock, msg, size);
593 set_fs(oldfs);
594 return result;
595}
596
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700597/*
598 * called from sock_recv_timestamp() if sock_flag(sk, SOCK_RCVTSTAMP)
599 */
600void __sock_recv_timestamp(struct msghdr *msg, struct sock *sk,
601 struct sk_buff *skb)
602{
603 ktime_t kt = skb->tstamp;
604
605 if (!sock_flag(sk, SOCK_RCVTSTAMPNS)) {
606 struct timeval tv;
607 /* Race occurred between timestamp enabling and packet
608 receiving. Fill in the current time for now. */
609 if (kt.tv64 == 0)
610 kt = ktime_get_real();
611 skb->tstamp = kt;
612 tv = ktime_to_timeval(kt);
613 put_cmsg(msg, SOL_SOCKET, SCM_TIMESTAMP, sizeof(tv), &tv);
614 } else {
615 struct timespec ts;
616 /* Race occurred between timestamp enabling and packet
617 receiving. Fill in the current time for now. */
618 if (kt.tv64 == 0)
619 kt = ktime_get_real();
620 skb->tstamp = kt;
621 ts = ktime_to_timespec(kt);
622 put_cmsg(msg, SOL_SOCKET, SCM_TIMESTAMPNS, sizeof(ts), &ts);
623 }
624}
625
Arnaldo Carvalho de Melo7c81fd82007-03-10 00:39:35 -0300626EXPORT_SYMBOL_GPL(__sock_recv_timestamp);
627
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700628static inline int __sock_recvmsg(struct kiocb *iocb, struct socket *sock,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 struct msghdr *msg, size_t size, int flags)
630{
631 int err;
632 struct sock_iocb *si = kiocb_to_siocb(iocb);
633
634 si->sock = sock;
635 si->scm = NULL;
636 si->msg = msg;
637 si->size = size;
638 si->flags = flags;
639
640 err = security_socket_recvmsg(sock, msg, size, flags);
641 if (err)
642 return err;
643
644 return sock->ops->recvmsg(iocb, sock, msg, size, flags);
645}
646
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700647int sock_recvmsg(struct socket *sock, struct msghdr *msg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 size_t size, int flags)
649{
650 struct kiocb iocb;
651 struct sock_iocb siocb;
652 int ret;
653
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700654 init_sync_kiocb(&iocb, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 iocb.private = &siocb;
656 ret = __sock_recvmsg(&iocb, sock, msg, size, flags);
657 if (-EIOCBQUEUED == ret)
658 ret = wait_on_sync_kiocb(&iocb);
659 return ret;
660}
661
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700662int kernel_recvmsg(struct socket *sock, struct msghdr *msg,
663 struct kvec *vec, size_t num, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664{
665 mm_segment_t oldfs = get_fs();
666 int result;
667
668 set_fs(KERNEL_DS);
669 /*
670 * the following is safe, since for compiler definitions of kvec and
671 * iovec are identical, yielding the same in-core layout and alignment
672 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700673 msg->msg_iov = (struct iovec *)vec, msg->msg_iovlen = num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 result = sock_recvmsg(sock, msg, size, flags);
675 set_fs(oldfs);
676 return result;
677}
678
679static void sock_aio_dtor(struct kiocb *iocb)
680{
681 kfree(iocb->private);
682}
683
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -0300684static ssize_t sock_sendpage(struct file *file, struct page *page,
685 int offset, size_t size, loff_t *ppos, int more)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686{
687 struct socket *sock;
688 int flags;
689
Eric Dumazetb69aee02005-09-06 14:42:45 -0700690 sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
692 flags = !(file->f_flags & O_NONBLOCK) ? 0 : MSG_DONTWAIT;
693 if (more)
694 flags |= MSG_MORE;
695
696 return sock->ops->sendpage(sock, page, offset, size, flags);
697}
698
Jens Axboe9c55e012007-11-06 23:30:13 -0800699static ssize_t sock_splice_read(struct file *file, loff_t *ppos,
700 struct pipe_inode_info *pipe, size_t len,
701 unsigned int flags)
702{
703 struct socket *sock = file->private_data;
704
Rémi Denis-Courmont997b37d2008-02-15 02:35:45 -0800705 if (unlikely(!sock->ops->splice_read))
706 return -EINVAL;
707
Jens Axboe9c55e012007-11-06 23:30:13 -0800708 return sock->ops->splice_read(sock, ppos, pipe, len, flags);
709}
710
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800711static struct sock_iocb *alloc_sock_iocb(struct kiocb *iocb,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700712 struct sock_iocb *siocb)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800713{
714 if (!is_sync_kiocb(iocb)) {
715 siocb = kmalloc(sizeof(*siocb), GFP_KERNEL);
716 if (!siocb)
717 return NULL;
718 iocb->ki_dtor = sock_aio_dtor;
719 }
720
721 siocb->kiocb = iocb;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800722 iocb->private = siocb;
723 return siocb;
724}
725
726static ssize_t do_sock_read(struct msghdr *msg, struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -0700727 struct file *file, const struct iovec *iov,
728 unsigned long nr_segs)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800729{
730 struct socket *sock = file->private_data;
731 size_t size = 0;
732 int i;
733
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700734 for (i = 0; i < nr_segs; i++)
735 size += iov[i].iov_len;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800736
737 msg->msg_name = NULL;
738 msg->msg_namelen = 0;
739 msg->msg_control = NULL;
740 msg->msg_controllen = 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700741 msg->msg_iov = (struct iovec *)iov;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800742 msg->msg_iovlen = nr_segs;
743 msg->msg_flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
744
745 return __sock_recvmsg(iocb, sock, msg, size, msg->msg_flags);
746}
747
Badari Pulavarty027445c2006-09-30 23:28:46 -0700748static ssize_t sock_aio_read(struct kiocb *iocb, const struct iovec *iov,
749 unsigned long nr_segs, loff_t pos)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800750{
751 struct sock_iocb siocb, *x;
752
753 if (pos != 0)
754 return -ESPIPE;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700755
756 if (iocb->ki_left == 0) /* Match SYS5 behaviour */
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800757 return 0;
758
Badari Pulavarty027445c2006-09-30 23:28:46 -0700759
760 x = alloc_sock_iocb(iocb, &siocb);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800761 if (!x)
762 return -ENOMEM;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700763 return do_sock_read(&x->async_msg, iocb, iocb->ki_filp, iov, nr_segs);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800764}
765
766static ssize_t do_sock_write(struct msghdr *msg, struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -0700767 struct file *file, const struct iovec *iov,
768 unsigned long nr_segs)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800769{
770 struct socket *sock = file->private_data;
771 size_t size = 0;
772 int i;
773
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700774 for (i = 0; i < nr_segs; i++)
775 size += iov[i].iov_len;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800776
777 msg->msg_name = NULL;
778 msg->msg_namelen = 0;
779 msg->msg_control = NULL;
780 msg->msg_controllen = 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700781 msg->msg_iov = (struct iovec *)iov;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800782 msg->msg_iovlen = nr_segs;
783 msg->msg_flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
784 if (sock->type == SOCK_SEQPACKET)
785 msg->msg_flags |= MSG_EOR;
786
787 return __sock_sendmsg(iocb, sock, msg, size);
788}
789
Badari Pulavarty027445c2006-09-30 23:28:46 -0700790static ssize_t sock_aio_write(struct kiocb *iocb, const struct iovec *iov,
791 unsigned long nr_segs, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792{
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800793 struct sock_iocb siocb, *x;
794
795 if (pos != 0)
796 return -ESPIPE;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700797
Badari Pulavarty027445c2006-09-30 23:28:46 -0700798 x = alloc_sock_iocb(iocb, &siocb);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800799 if (!x)
800 return -ENOMEM;
801
Badari Pulavarty027445c2006-09-30 23:28:46 -0700802 return do_sock_write(&x->async_msg, iocb, iocb->ki_filp, iov, nr_segs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803}
804
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805/*
806 * Atomic setting of ioctl hooks to avoid race
807 * with module unload.
808 */
809
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800810static DEFINE_MUTEX(br_ioctl_mutex);
Eric W. Biederman881d9662007-09-17 11:56:21 -0700811static int (*br_ioctl_hook) (struct net *, unsigned int cmd, void __user *arg) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
Eric W. Biederman881d9662007-09-17 11:56:21 -0700813void brioctl_set(int (*hook) (struct net *, unsigned int, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800815 mutex_lock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 br_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800817 mutex_unlock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818}
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700819
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820EXPORT_SYMBOL(brioctl_set);
821
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800822static DEFINE_MUTEX(vlan_ioctl_mutex);
Eric W. Biederman881d9662007-09-17 11:56:21 -0700823static int (*vlan_ioctl_hook) (struct net *, void __user *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
Eric W. Biederman881d9662007-09-17 11:56:21 -0700825void vlan_ioctl_set(int (*hook) (struct net *, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800827 mutex_lock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 vlan_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800829 mutex_unlock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830}
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700831
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832EXPORT_SYMBOL(vlan_ioctl_set);
833
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800834static DEFINE_MUTEX(dlci_ioctl_mutex);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700835static int (*dlci_ioctl_hook) (unsigned int, void __user *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700837void dlci_ioctl_set(int (*hook) (unsigned int, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800839 mutex_lock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 dlci_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800841 mutex_unlock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842}
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700843
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844EXPORT_SYMBOL(dlci_ioctl_set);
845
846/*
847 * With an ioctl, arg may well be a user mode pointer, but we don't know
848 * what to do with it - that's up to the protocol still.
849 */
850
851static long sock_ioctl(struct file *file, unsigned cmd, unsigned long arg)
852{
853 struct socket *sock;
Eric W. Biederman881d9662007-09-17 11:56:21 -0700854 struct sock *sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 void __user *argp = (void __user *)arg;
856 int pid, err;
Eric W. Biederman881d9662007-09-17 11:56:21 -0700857 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
Eric Dumazetb69aee02005-09-06 14:42:45 -0700859 sock = file->private_data;
Eric W. Biederman881d9662007-09-17 11:56:21 -0700860 sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900861 net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 if (cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15)) {
Eric W. Biederman881d9662007-09-17 11:56:21 -0700863 err = dev_ioctl(net, cmd, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 } else
Adrian Bunkd86b5e02006-01-21 00:46:55 +0100865#ifdef CONFIG_WIRELESS_EXT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 if (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST) {
Eric W. Biederman881d9662007-09-17 11:56:21 -0700867 err = dev_ioctl(net, cmd, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 } else
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700869#endif /* CONFIG_WIRELESS_EXT */
870 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 case FIOSETOWN:
872 case SIOCSPGRP:
873 err = -EFAULT;
874 if (get_user(pid, (int __user *)argp))
875 break;
876 err = f_setown(sock->file, pid, 1);
877 break;
878 case FIOGETOWN:
879 case SIOCGPGRP:
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700880 err = put_user(f_getown(sock->file),
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700881 (int __user *)argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 break;
883 case SIOCGIFBR:
884 case SIOCSIFBR:
885 case SIOCBRADDBR:
886 case SIOCBRDELBR:
887 err = -ENOPKG;
888 if (!br_ioctl_hook)
889 request_module("bridge");
890
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800891 mutex_lock(&br_ioctl_mutex);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700892 if (br_ioctl_hook)
Eric W. Biederman881d9662007-09-17 11:56:21 -0700893 err = br_ioctl_hook(net, cmd, argp);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800894 mutex_unlock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 break;
896 case SIOCGIFVLAN:
897 case SIOCSIFVLAN:
898 err = -ENOPKG;
899 if (!vlan_ioctl_hook)
900 request_module("8021q");
901
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800902 mutex_lock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 if (vlan_ioctl_hook)
Eric W. Biederman881d9662007-09-17 11:56:21 -0700904 err = vlan_ioctl_hook(net, argp);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800905 mutex_unlock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 case SIOCADDDLCI:
908 case SIOCDELDLCI:
909 err = -ENOPKG;
910 if (!dlci_ioctl_hook)
911 request_module("dlci");
912
Pavel Emelyanov7512cbf2008-03-21 15:58:52 -0700913 mutex_lock(&dlci_ioctl_mutex);
914 if (dlci_ioctl_hook)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 err = dlci_ioctl_hook(cmd, argp);
Pavel Emelyanov7512cbf2008-03-21 15:58:52 -0700916 mutex_unlock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 break;
918 default:
919 err = sock->ops->ioctl(sock, cmd, arg);
Christoph Hellwigb5e5fa52006-01-03 14:18:33 -0800920
921 /*
922 * If this ioctl is unknown try to hand it down
923 * to the NIC driver.
924 */
925 if (err == -ENOIOCTLCMD)
Eric W. Biederman881d9662007-09-17 11:56:21 -0700926 err = dev_ioctl(net, cmd, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700928 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 return err;
930}
931
932int sock_create_lite(int family, int type, int protocol, struct socket **res)
933{
934 int err;
935 struct socket *sock = NULL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700936
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 err = security_socket_create(family, type, protocol, 1);
938 if (err)
939 goto out;
940
941 sock = sock_alloc();
942 if (!sock) {
943 err = -ENOMEM;
944 goto out;
945 }
946
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 sock->type = type;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -0700948 err = security_socket_post_create(sock, family, type, protocol, 1);
949 if (err)
950 goto out_release;
951
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952out:
953 *res = sock;
954 return err;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -0700955out_release:
956 sock_release(sock);
957 sock = NULL;
958 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959}
960
961/* No kernel lock held - perfect */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700962static unsigned int sock_poll(struct file *file, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963{
964 struct socket *sock;
965
966 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700967 * We can't return errors to poll, so it's either yes or no.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 */
Eric Dumazetb69aee02005-09-06 14:42:45 -0700969 sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 return sock->ops->poll(file, sock, wait);
971}
972
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700973static int sock_mmap(struct file *file, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974{
Eric Dumazetb69aee02005-09-06 14:42:45 -0700975 struct socket *sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
977 return sock->ops->mmap(file, sock, vma);
978}
979
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -0300980static int sock_close(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981{
982 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700983 * It was possible the inode is NULL we were
984 * closing an unfinished socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 */
986
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700987 if (!inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 printk(KERN_DEBUG "sock_close: NULL inode\n");
989 return 0;
990 }
991 sock_fasync(-1, filp, 0);
992 sock_release(SOCKET_I(inode));
993 return 0;
994}
995
996/*
997 * Update the socket async list
998 *
999 * Fasync_list locking strategy.
1000 *
1001 * 1. fasync_list is modified only under process context socket lock
1002 * i.e. under semaphore.
1003 * 2. fasync_list is used under read_lock(&sk->sk_callback_lock)
1004 * or under socket lock.
1005 * 3. fasync_list can be used from softirq context, so that
1006 * modification under socket lock have to be enhanced with
1007 * write_lock_bh(&sk->sk_callback_lock).
1008 * --ANK (990710)
1009 */
1010
1011static int sock_fasync(int fd, struct file *filp, int on)
1012{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001013 struct fasync_struct *fa, *fna = NULL, **prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 struct socket *sock;
1015 struct sock *sk;
1016
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001017 if (on) {
Kris Katterjohn8b3a7002006-01-11 15:56:43 -08001018 fna = kmalloc(sizeof(struct fasync_struct), GFP_KERNEL);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001019 if (fna == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 return -ENOMEM;
1021 }
1022
Eric Dumazetb69aee02005-09-06 14:42:45 -07001023 sock = filp->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001025 sk = sock->sk;
1026 if (sk == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 kfree(fna);
1028 return -EINVAL;
1029 }
1030
1031 lock_sock(sk);
1032
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001033 prev = &(sock->fasync_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001035 for (fa = *prev; fa != NULL; prev = &fa->fa_next, fa = *prev)
1036 if (fa->fa_file == filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 break;
1038
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001039 if (on) {
1040 if (fa != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 write_lock_bh(&sk->sk_callback_lock);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001042 fa->fa_fd = fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 write_unlock_bh(&sk->sk_callback_lock);
1044
1045 kfree(fna);
1046 goto out;
1047 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001048 fna->fa_file = filp;
1049 fna->fa_fd = fd;
1050 fna->magic = FASYNC_MAGIC;
1051 fna->fa_next = sock->fasync_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 write_lock_bh(&sk->sk_callback_lock);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001053 sock->fasync_list = fna;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 write_unlock_bh(&sk->sk_callback_lock);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001055 } else {
1056 if (fa != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 write_lock_bh(&sk->sk_callback_lock);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001058 *prev = fa->fa_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 write_unlock_bh(&sk->sk_callback_lock);
1060 kfree(fa);
1061 }
1062 }
1063
1064out:
1065 release_sock(sock->sk);
1066 return 0;
1067}
1068
1069/* This function may be called only under socket lock or callback_lock */
1070
1071int sock_wake_async(struct socket *sock, int how, int band)
1072{
1073 if (!sock || !sock->fasync_list)
1074 return -1;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001075 switch (how) {
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001076 case SOCK_WAKE_WAITD:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 if (test_bit(SOCK_ASYNC_WAITDATA, &sock->flags))
1078 break;
1079 goto call_kill;
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001080 case SOCK_WAKE_SPACE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 if (!test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sock->flags))
1082 break;
1083 /* fall through */
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001084 case SOCK_WAKE_IO:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001085call_kill:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 __kill_fasync(sock->fasync_list, SIGIO, band);
1087 break;
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08001088 case SOCK_WAKE_URG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 __kill_fasync(sock->fasync_list, SIGURG, band);
1090 }
1091 return 0;
1092}
1093
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001094static int __sock_create(struct net *net, int family, int type, int protocol,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001095 struct socket **res, int kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096{
1097 int err;
1098 struct socket *sock;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001099 const struct net_proto_family *pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100
1101 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001102 * Check protocol is in range
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 */
1104 if (family < 0 || family >= NPROTO)
1105 return -EAFNOSUPPORT;
1106 if (type < 0 || type >= SOCK_MAX)
1107 return -EINVAL;
1108
1109 /* Compatibility.
1110
1111 This uglymoron is moved from INET layer to here to avoid
1112 deadlock in module load.
1113 */
1114 if (family == PF_INET && type == SOCK_PACKET) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001115 static int warned;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 if (!warned) {
1117 warned = 1;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001118 printk(KERN_INFO "%s uses obsolete (PF_INET,SOCK_PACKET)\n",
1119 current->comm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 }
1121 family = PF_PACKET;
1122 }
1123
1124 err = security_socket_create(family, type, protocol, kern);
1125 if (err)
1126 return err;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001127
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001128 /*
1129 * Allocate the socket and allow the family to set things up. if
1130 * the protocol is 0, the family is instructed to select an appropriate
1131 * default.
1132 */
1133 sock = sock_alloc();
1134 if (!sock) {
1135 if (net_ratelimit())
1136 printk(KERN_WARNING "socket: no more sockets\n");
1137 return -ENFILE; /* Not exactly a match, but its the
1138 closest posix thing */
1139 }
1140
1141 sock->type = type;
1142
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143#if defined(CONFIG_KMOD)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001144 /* Attempt to load a protocol module if the find failed.
1145 *
1146 * 12/09/1996 Marcin: But! this makes REALLY only sense, if the user
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 * requested real, full-featured networking support upon configuration.
1148 * Otherwise module support will break!
1149 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001150 if (net_families[family] == NULL)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001151 request_module("net-pf-%d", family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152#endif
1153
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001154 rcu_read_lock();
1155 pf = rcu_dereference(net_families[family]);
1156 err = -EAFNOSUPPORT;
1157 if (!pf)
1158 goto out_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
1160 /*
1161 * We will call the ->create function, that possibly is in a loadable
1162 * module, so we have to bump that loadable module refcnt first.
1163 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001164 if (!try_module_get(pf->owner))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 goto out_release;
1166
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001167 /* Now protected by module ref count */
1168 rcu_read_unlock();
1169
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001170 err = pf->create(net, sock, protocol);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001171 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 goto out_module_put;
Frank Filza79af592005-09-27 15:23:38 -07001173
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 /*
1175 * Now to bump the refcnt of the [loadable] module that owns this
1176 * socket at sock_release time we decrement its refcnt.
1177 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001178 if (!try_module_get(sock->ops->owner))
1179 goto out_module_busy;
1180
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 /*
1182 * Now that we're done with the ->create function, the [loadable]
1183 * module can have its refcnt decremented
1184 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001185 module_put(pf->owner);
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001186 err = security_socket_post_create(sock, family, type, protocol, kern);
1187 if (err)
Herbert Xu3b185522007-08-15 14:46:02 -07001188 goto out_sock_release;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001189 *res = sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001191 return 0;
1192
1193out_module_busy:
1194 err = -EAFNOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195out_module_put:
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001196 sock->ops = NULL;
1197 module_put(pf->owner);
1198out_sock_release:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 sock_release(sock);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001200 return err;
1201
1202out_release:
1203 rcu_read_unlock();
1204 goto out_sock_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205}
1206
1207int sock_create(int family, int type, int protocol, struct socket **res)
1208{
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001209 return __sock_create(current->nsproxy->net_ns, family, type, protocol, res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210}
1211
1212int sock_create_kern(int family, int type, int protocol, struct socket **res)
1213{
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001214 return __sock_create(&init_net, family, type, protocol, res, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215}
1216
1217asmlinkage long sys_socket(int family, int type, int protocol)
1218{
1219 int retval;
1220 struct socket *sock;
Ulrich Dreppera677a032008-07-23 21:29:17 -07001221 int flags;
1222
1223 flags = type & ~SOCK_TYPE_MASK;
1224 if (flags & ~SOCK_CLOEXEC)
1225 return -EINVAL;
1226 type &= SOCK_TYPE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
1228 retval = sock_create(family, type, protocol, &sock);
1229 if (retval < 0)
1230 goto out;
1231
Ulrich Dreppera677a032008-07-23 21:29:17 -07001232 retval = sock_map_fd(sock, flags & O_CLOEXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 if (retval < 0)
1234 goto out_release;
1235
1236out:
1237 /* It may be already another descriptor 8) Not kernel problem. */
1238 return retval;
1239
1240out_release:
1241 sock_release(sock);
1242 return retval;
1243}
1244
1245/*
1246 * Create a pair of connected sockets.
1247 */
1248
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001249asmlinkage long sys_socketpair(int family, int type, int protocol,
1250 int __user *usockvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251{
1252 struct socket *sock1, *sock2;
1253 int fd1, fd2, err;
Al Virodb349502007-02-07 01:48:00 -05001254 struct file *newfile1, *newfile2;
Ulrich Dreppera677a032008-07-23 21:29:17 -07001255 int flags;
1256
1257 flags = type & ~SOCK_TYPE_MASK;
1258 if (flags & ~SOCK_CLOEXEC)
1259 return -EINVAL;
1260 type &= SOCK_TYPE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
1262 /*
1263 * Obtain the first socket and check if the underlying protocol
1264 * supports the socketpair call.
1265 */
1266
1267 err = sock_create(family, type, protocol, &sock1);
1268 if (err < 0)
1269 goto out;
1270
1271 err = sock_create(family, type, protocol, &sock2);
1272 if (err < 0)
1273 goto out_release_1;
1274
1275 err = sock1->ops->socketpair(sock1, sock2);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001276 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 goto out_release_both;
1278
Ulrich Dreppera677a032008-07-23 21:29:17 -07001279 fd1 = sock_alloc_fd(&newfile1, flags & O_CLOEXEC);
David S. Millerbf3c23d2007-10-29 21:54:02 -07001280 if (unlikely(fd1 < 0)) {
1281 err = fd1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 goto out_release_both;
David S. Millerbf3c23d2007-10-29 21:54:02 -07001283 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
Ulrich Dreppera677a032008-07-23 21:29:17 -07001285 fd2 = sock_alloc_fd(&newfile2, flags & O_CLOEXEC);
Al Virodb349502007-02-07 01:48:00 -05001286 if (unlikely(fd2 < 0)) {
David S. Millerbf3c23d2007-10-29 21:54:02 -07001287 err = fd2;
Al Virodb349502007-02-07 01:48:00 -05001288 put_filp(newfile1);
1289 put_unused_fd(fd1);
1290 goto out_release_both;
1291 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292
Al Virodb349502007-02-07 01:48:00 -05001293 err = sock_attach_fd(sock1, newfile1);
1294 if (unlikely(err < 0)) {
1295 goto out_fd2;
1296 }
1297
1298 err = sock_attach_fd(sock2, newfile2);
1299 if (unlikely(err < 0)) {
1300 fput(newfile1);
1301 goto out_fd1;
1302 }
1303
1304 err = audit_fd_pair(fd1, fd2);
1305 if (err < 0) {
1306 fput(newfile1);
1307 fput(newfile2);
1308 goto out_fd;
1309 }
1310
1311 fd_install(fd1, newfile1);
1312 fd_install(fd2, newfile2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 /* fd1 and fd2 may be already another descriptors.
1314 * Not kernel problem.
1315 */
1316
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001317 err = put_user(fd1, &usockvec[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 if (!err)
1319 err = put_user(fd2, &usockvec[1]);
1320 if (!err)
1321 return 0;
1322
1323 sys_close(fd2);
1324 sys_close(fd1);
1325 return err;
1326
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327out_release_both:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001328 sock_release(sock2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329out_release_1:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001330 sock_release(sock1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331out:
1332 return err;
Al Virodb349502007-02-07 01:48:00 -05001333
1334out_fd2:
1335 put_filp(newfile1);
1336 sock_release(sock1);
1337out_fd1:
1338 put_filp(newfile2);
1339 sock_release(sock2);
1340out_fd:
1341 put_unused_fd(fd1);
1342 put_unused_fd(fd2);
1343 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344}
1345
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346/*
1347 * Bind a name to a socket. Nothing much to do here since it's
1348 * the protocol's responsibility to handle the local address.
1349 *
1350 * We move the socket address to kernel space before we call
1351 * the protocol layer (having also checked the address is ok).
1352 */
1353
1354asmlinkage long sys_bind(int fd, struct sockaddr __user *umyaddr, int addrlen)
1355{
1356 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001357 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001358 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001360 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001361 if (sock) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001362 err = move_addr_to_kernel(umyaddr, addrlen, (struct sockaddr *)&address);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001363 if (err >= 0) {
1364 err = security_socket_bind(sock,
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001365 (struct sockaddr *)&address,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001366 addrlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001367 if (!err)
1368 err = sock->ops->bind(sock,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001369 (struct sockaddr *)
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001370 &address, addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 }
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001372 fput_light(sock->file, fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001373 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 return err;
1375}
1376
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377/*
1378 * Perform a listen. Basically, we allow the protocol to do anything
1379 * necessary for a listen, and if that works, we mark the socket as
1380 * ready for listening.
1381 */
1382
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383asmlinkage long sys_listen(int fd, int backlog)
1384{
1385 struct socket *sock;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001386 int err, fput_needed;
Pavel Emelyanovb8e1f9b2007-12-08 00:12:33 -08001387 int somaxconn;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001388
1389 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1390 if (sock) {
Pavel Emelyanov8efa6e92008-03-31 19:41:14 -07001391 somaxconn = sock_net(sock->sk)->core.sysctl_somaxconn;
Pavel Emelyanovb8e1f9b2007-12-08 00:12:33 -08001392 if ((unsigned)backlog > somaxconn)
1393 backlog = somaxconn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
1395 err = security_socket_listen(sock, backlog);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001396 if (!err)
1397 err = sock->ops->listen(sock, backlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001399 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 }
1401 return err;
1402}
1403
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404/*
1405 * For accept, we attempt to create a new socket, set up the link
1406 * with the client, wake up the client, then return the new
1407 * connected fd. We collect the address of the connector in kernel
1408 * space and move it to user at the very end. This is unclean because
1409 * we open the socket then return an error.
1410 *
1411 * 1003.1g adds the ability to recvmsg() to query connection pending
1412 * status to recvmsg. We need to add that support in a way thats
1413 * clean when we restucture accept also.
1414 */
1415
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001416asmlinkage long sys_accept(int fd, struct sockaddr __user *upeer_sockaddr,
1417 int __user *upeer_addrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418{
1419 struct socket *sock, *newsock;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001420 struct file *newfile;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001421 int err, len, newfd, fput_needed;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001422 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001424 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 if (!sock)
1426 goto out;
1427
1428 err = -ENFILE;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001429 if (!(newsock = sock_alloc()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 goto out_put;
1431
1432 newsock->type = sock->type;
1433 newsock->ops = sock->ops;
1434
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 /*
1436 * We don't need try_module_get here, as the listening socket (sock)
1437 * has the protocol module (sock->ops->owner) held.
1438 */
1439 __module_get(newsock->ops->owner);
1440
Ulrich Dreppera677a032008-07-23 21:29:17 -07001441 newfd = sock_alloc_fd(&newfile, 0);
David S. Miller39d8c1b2006-03-20 17:13:49 -08001442 if (unlikely(newfd < 0)) {
1443 err = newfd;
David S. Miller9a1875e2006-04-01 12:48:36 -08001444 sock_release(newsock);
1445 goto out_put;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001446 }
1447
1448 err = sock_attach_fd(newsock, newfile);
1449 if (err < 0)
Alexey Dobriyan79f4f642007-03-26 14:09:52 -07001450 goto out_fd_simple;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001451
Frank Filza79af592005-09-27 15:23:38 -07001452 err = security_socket_accept(sock, newsock);
1453 if (err)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001454 goto out_fd;
Frank Filza79af592005-09-27 15:23:38 -07001455
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 err = sock->ops->accept(sock, newsock, sock->file->f_flags);
1457 if (err < 0)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001458 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459
1460 if (upeer_sockaddr) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001461 if (newsock->ops->getname(newsock, (struct sockaddr *)&address,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001462 &len, 2) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 err = -ECONNABORTED;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001464 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 }
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001466 err = move_addr_to_user((struct sockaddr *)&address,
1467 len, upeer_sockaddr, upeer_addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 if (err < 0)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001469 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 }
1471
1472 /* File flags are not inherited via accept() unlike another OSes. */
1473
David S. Miller39d8c1b2006-03-20 17:13:49 -08001474 fd_install(newfd, newfile);
1475 err = newfd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476
1477 security_socket_post_accept(sock, newsock);
1478
1479out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001480 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481out:
1482 return err;
Alexey Dobriyan79f4f642007-03-26 14:09:52 -07001483out_fd_simple:
1484 sock_release(newsock);
1485 put_filp(newfile);
1486 put_unused_fd(newfd);
1487 goto out_put;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001488out_fd:
David S. Miller9606a212006-04-01 01:00:14 -08001489 fput(newfile);
David S. Miller39d8c1b2006-03-20 17:13:49 -08001490 put_unused_fd(newfd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 goto out_put;
1492}
1493
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494/*
1495 * Attempt to connect to a socket with the server address. The address
1496 * is in user space so we verify it is OK and move it to kernel space.
1497 *
1498 * For 1003.1g we need to add clean support for a bind to AF_UNSPEC to
1499 * break bindings
1500 *
1501 * NOTE: 1003.1g draft 6.3 is broken with respect to AX.25/NetROM and
1502 * other SEQPACKET protocols that take time to connect() as it doesn't
1503 * include the -EINPROGRESS status for such sockets.
1504 */
1505
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001506asmlinkage long sys_connect(int fd, struct sockaddr __user *uservaddr,
1507 int addrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508{
1509 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001510 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001511 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001513 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 if (!sock)
1515 goto out;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001516 err = move_addr_to_kernel(uservaddr, addrlen, (struct sockaddr *)&address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 if (err < 0)
1518 goto out_put;
1519
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001520 err =
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001521 security_socket_connect(sock, (struct sockaddr *)&address, addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 if (err)
1523 goto out_put;
1524
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001525 err = sock->ops->connect(sock, (struct sockaddr *)&address, addrlen,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 sock->file->f_flags);
1527out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001528 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529out:
1530 return err;
1531}
1532
1533/*
1534 * Get the local address ('name') of a socket object. Move the obtained
1535 * name to user space.
1536 */
1537
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001538asmlinkage long sys_getsockname(int fd, struct sockaddr __user *usockaddr,
1539 int __user *usockaddr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540{
1541 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001542 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001543 int len, err, fput_needed;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001544
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001545 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 if (!sock)
1547 goto out;
1548
1549 err = security_socket_getsockname(sock);
1550 if (err)
1551 goto out_put;
1552
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001553 err = sock->ops->getname(sock, (struct sockaddr *)&address, &len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 if (err)
1555 goto out_put;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001556 err = move_addr_to_user((struct sockaddr *)&address, len, usockaddr, usockaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
1558out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001559 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560out:
1561 return err;
1562}
1563
1564/*
1565 * Get the remote address ('name') of a socket object. Move the obtained
1566 * name to user space.
1567 */
1568
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001569asmlinkage long sys_getpeername(int fd, struct sockaddr __user *usockaddr,
1570 int __user *usockaddr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571{
1572 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001573 struct sockaddr_storage address;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001574 int len, err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001576 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1577 if (sock != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 err = security_socket_getpeername(sock);
1579 if (err) {
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001580 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 return err;
1582 }
1583
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001584 err =
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001585 sock->ops->getname(sock, (struct sockaddr *)&address, &len,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001586 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 if (!err)
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001588 err = move_addr_to_user((struct sockaddr *)&address, len, usockaddr,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001589 usockaddr_len);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001590 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 }
1592 return err;
1593}
1594
1595/*
1596 * Send a datagram to a given address. We move the address into kernel
1597 * space and check the user space data area is readable before invoking
1598 * the protocol.
1599 */
1600
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001601asmlinkage long sys_sendto(int fd, void __user *buff, size_t len,
1602 unsigned flags, struct sockaddr __user *addr,
1603 int addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604{
1605 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001606 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 int err;
1608 struct msghdr msg;
1609 struct iovec iov;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001610 int fput_needed;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001611
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001612 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1613 if (!sock)
David S. Miller4387ff72007-02-08 15:06:08 -08001614 goto out;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001615
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001616 iov.iov_base = buff;
1617 iov.iov_len = len;
1618 msg.msg_name = NULL;
1619 msg.msg_iov = &iov;
1620 msg.msg_iovlen = 1;
1621 msg.msg_control = NULL;
1622 msg.msg_controllen = 0;
1623 msg.msg_namelen = 0;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001624 if (addr) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001625 err = move_addr_to_kernel(addr, addr_len, (struct sockaddr *)&address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 if (err < 0)
1627 goto out_put;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001628 msg.msg_name = (struct sockaddr *)&address;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001629 msg.msg_namelen = addr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 }
1631 if (sock->file->f_flags & O_NONBLOCK)
1632 flags |= MSG_DONTWAIT;
1633 msg.msg_flags = flags;
1634 err = sock_sendmsg(sock, &msg, len);
1635
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001636out_put:
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001637 fput_light(sock->file, fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08001638out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 return err;
1640}
1641
1642/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001643 * Send a datagram down a socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 */
1645
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001646asmlinkage long sys_send(int fd, void __user *buff, size_t len, unsigned flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647{
1648 return sys_sendto(fd, buff, len, flags, NULL, 0);
1649}
1650
1651/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001652 * Receive a frame from the socket and optionally record the address of the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 * sender. We verify the buffers are writable and if needed move the
1654 * sender address from kernel to user space.
1655 */
1656
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001657asmlinkage long sys_recvfrom(int fd, void __user *ubuf, size_t size,
1658 unsigned flags, struct sockaddr __user *addr,
1659 int __user *addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660{
1661 struct socket *sock;
1662 struct iovec iov;
1663 struct msghdr msg;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001664 struct sockaddr_storage address;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001665 int err, err2;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001666 int fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001668 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 if (!sock)
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001670 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001672 msg.msg_control = NULL;
1673 msg.msg_controllen = 0;
1674 msg.msg_iovlen = 1;
1675 msg.msg_iov = &iov;
1676 iov.iov_len = size;
1677 iov.iov_base = ubuf;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001678 msg.msg_name = (struct sockaddr *)&address;
1679 msg.msg_namelen = sizeof(address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 if (sock->file->f_flags & O_NONBLOCK)
1681 flags |= MSG_DONTWAIT;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001682 err = sock_recvmsg(sock, &msg, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001684 if (err >= 0 && addr != NULL) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001685 err2 = move_addr_to_user((struct sockaddr *)&address,
1686 msg.msg_namelen, addr, addr_len);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001687 if (err2 < 0)
1688 err = err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 }
Pavel Emelyanovde0fa952007-11-14 16:01:43 -08001690
1691 fput_light(sock->file, fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08001692out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 return err;
1694}
1695
1696/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001697 * Receive a datagram from a socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 */
1699
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001700asmlinkage long sys_recv(int fd, void __user *ubuf, size_t size,
1701 unsigned flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702{
1703 return sys_recvfrom(fd, ubuf, size, flags, NULL, NULL);
1704}
1705
1706/*
1707 * Set a socket option. Because we don't know the option lengths we have
1708 * to pass the user mode parameter for the protocols to sort out.
1709 */
1710
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001711asmlinkage long sys_setsockopt(int fd, int level, int optname,
1712 char __user *optval, int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001714 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 struct socket *sock;
1716
1717 if (optlen < 0)
1718 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001719
1720 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1721 if (sock != NULL) {
1722 err = security_socket_setsockopt(sock, level, optname);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001723 if (err)
1724 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725
1726 if (level == SOL_SOCKET)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001727 err =
1728 sock_setsockopt(sock, level, optname, optval,
1729 optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 else
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001731 err =
1732 sock->ops->setsockopt(sock, level, optname, optval,
1733 optlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001734out_put:
1735 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 }
1737 return err;
1738}
1739
1740/*
1741 * Get a socket option. Because we don't know the option lengths we have
1742 * to pass a user mode parameter for the protocols to sort out.
1743 */
1744
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001745asmlinkage long sys_getsockopt(int fd, int level, int optname,
1746 char __user *optval, int __user *optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001748 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 struct socket *sock;
1750
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001751 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1752 if (sock != NULL) {
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001753 err = security_socket_getsockopt(sock, level, optname);
1754 if (err)
1755 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756
1757 if (level == SOL_SOCKET)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001758 err =
1759 sock_getsockopt(sock, level, optname, optval,
1760 optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 else
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001762 err =
1763 sock->ops->getsockopt(sock, level, optname, optval,
1764 optlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001765out_put:
1766 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 }
1768 return err;
1769}
1770
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771/*
1772 * Shutdown a socket.
1773 */
1774
1775asmlinkage long sys_shutdown(int fd, int how)
1776{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001777 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 struct socket *sock;
1779
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001780 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1781 if (sock != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 err = security_socket_shutdown(sock, how);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001783 if (!err)
1784 err = sock->ops->shutdown(sock, how);
1785 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 }
1787 return err;
1788}
1789
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001790/* A couple of helpful macros for getting the address of the 32/64 bit
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 * fields which are the same type (int / unsigned) on our platforms.
1792 */
1793#define COMPAT_MSG(msg, member) ((MSG_CMSG_COMPAT & flags) ? &msg##_compat->member : &msg->member)
1794#define COMPAT_NAMELEN(msg) COMPAT_MSG(msg, msg_namelen)
1795#define COMPAT_FLAGS(msg) COMPAT_MSG(msg, msg_flags)
1796
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797/*
1798 * BSD sendmsg interface
1799 */
1800
1801asmlinkage long sys_sendmsg(int fd, struct msghdr __user *msg, unsigned flags)
1802{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001803 struct compat_msghdr __user *msg_compat =
1804 (struct compat_msghdr __user *)msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 struct socket *sock;
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001806 struct sockaddr_storage address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 struct iovec iovstack[UIO_FASTIOV], *iov = iovstack;
Alex Williamsonb9d717a2005-09-26 14:28:02 -07001808 unsigned char ctl[sizeof(struct cmsghdr) + 20]
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001809 __attribute__ ((aligned(sizeof(__kernel_size_t))));
1810 /* 20 is size of ipv6_pktinfo */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 unsigned char *ctl_buf = ctl;
1812 struct msghdr msg_sys;
1813 int err, ctl_len, iov_size, total_len;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001814 int fput_needed;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001815
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 err = -EFAULT;
1817 if (MSG_CMSG_COMPAT & flags) {
1818 if (get_compat_msghdr(&msg_sys, msg_compat))
1819 return -EFAULT;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001820 }
1821 else if (copy_from_user(&msg_sys, msg, sizeof(struct msghdr)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 return -EFAULT;
1823
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001824 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001825 if (!sock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 goto out;
1827
1828 /* do not move before msg_sys is valid */
1829 err = -EMSGSIZE;
1830 if (msg_sys.msg_iovlen > UIO_MAXIOV)
1831 goto out_put;
1832
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001833 /* Check whether to allocate the iovec area */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 err = -ENOMEM;
1835 iov_size = msg_sys.msg_iovlen * sizeof(struct iovec);
1836 if (msg_sys.msg_iovlen > UIO_FASTIOV) {
1837 iov = sock_kmalloc(sock->sk, iov_size, GFP_KERNEL);
1838 if (!iov)
1839 goto out_put;
1840 }
1841
1842 /* This will also move the address data into kernel space */
1843 if (MSG_CMSG_COMPAT & flags) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001844 err = verify_compat_iovec(&msg_sys, iov,
1845 (struct sockaddr *)&address,
1846 VERIFY_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 } else
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001848 err = verify_iovec(&msg_sys, iov,
1849 (struct sockaddr *)&address,
1850 VERIFY_READ);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001851 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 goto out_freeiov;
1853 total_len = err;
1854
1855 err = -ENOBUFS;
1856
1857 if (msg_sys.msg_controllen > INT_MAX)
1858 goto out_freeiov;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001859 ctl_len = msg_sys.msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 if ((MSG_CMSG_COMPAT & flags) && ctl_len) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001861 err =
1862 cmsghdr_from_user_compat_to_kern(&msg_sys, sock->sk, ctl,
1863 sizeof(ctl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 if (err)
1865 goto out_freeiov;
1866 ctl_buf = msg_sys.msg_control;
Al Viro8920e8f2005-09-07 18:28:51 -07001867 ctl_len = msg_sys.msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 } else if (ctl_len) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001869 if (ctl_len > sizeof(ctl)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 ctl_buf = sock_kmalloc(sock->sk, ctl_len, GFP_KERNEL);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001871 if (ctl_buf == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 goto out_freeiov;
1873 }
1874 err = -EFAULT;
1875 /*
1876 * Careful! Before this, msg_sys.msg_control contains a user pointer.
1877 * Afterwards, it will be a kernel pointer. Thus the compiler-assisted
1878 * checking falls down on this.
1879 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001880 if (copy_from_user(ctl_buf, (void __user *)msg_sys.msg_control,
1881 ctl_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 goto out_freectl;
1883 msg_sys.msg_control = ctl_buf;
1884 }
1885 msg_sys.msg_flags = flags;
1886
1887 if (sock->file->f_flags & O_NONBLOCK)
1888 msg_sys.msg_flags |= MSG_DONTWAIT;
1889 err = sock_sendmsg(sock, &msg_sys, total_len);
1890
1891out_freectl:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001892 if (ctl_buf != ctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 sock_kfree_s(sock->sk, ctl_buf, ctl_len);
1894out_freeiov:
1895 if (iov != iovstack)
1896 sock_kfree_s(sock->sk, iov, iov_size);
1897out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001898 fput_light(sock->file, fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001899out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 return err;
1901}
1902
1903/*
1904 * BSD recvmsg interface
1905 */
1906
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001907asmlinkage long sys_recvmsg(int fd, struct msghdr __user *msg,
1908 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001910 struct compat_msghdr __user *msg_compat =
1911 (struct compat_msghdr __user *)msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 struct socket *sock;
1913 struct iovec iovstack[UIO_FASTIOV];
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001914 struct iovec *iov = iovstack;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 struct msghdr msg_sys;
1916 unsigned long cmsg_ptr;
1917 int err, iov_size, total_len, len;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001918 int fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919
1920 /* kernel mode address */
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001921 struct sockaddr_storage addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922
1923 /* user mode address pointers */
1924 struct sockaddr __user *uaddr;
1925 int __user *uaddr_len;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001926
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 if (MSG_CMSG_COMPAT & flags) {
1928 if (get_compat_msghdr(&msg_sys, msg_compat))
1929 return -EFAULT;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001930 }
1931 else if (copy_from_user(&msg_sys, msg, sizeof(struct msghdr)))
1932 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001934 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 if (!sock)
1936 goto out;
1937
1938 err = -EMSGSIZE;
1939 if (msg_sys.msg_iovlen > UIO_MAXIOV)
1940 goto out_put;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001941
1942 /* Check whether to allocate the iovec area */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 err = -ENOMEM;
1944 iov_size = msg_sys.msg_iovlen * sizeof(struct iovec);
1945 if (msg_sys.msg_iovlen > UIO_FASTIOV) {
1946 iov = sock_kmalloc(sock->sk, iov_size, GFP_KERNEL);
1947 if (!iov)
1948 goto out_put;
1949 }
1950
1951 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001952 * Save the user-mode address (verify_iovec will change the
1953 * kernel msghdr to use the kernel address space)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001955
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001956 uaddr = (__force void __user *)msg_sys.msg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 uaddr_len = COMPAT_NAMELEN(msg);
1958 if (MSG_CMSG_COMPAT & flags) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001959 err = verify_compat_iovec(&msg_sys, iov,
1960 (struct sockaddr *)&addr,
1961 VERIFY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 } else
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001963 err = verify_iovec(&msg_sys, iov,
1964 (struct sockaddr *)&addr,
1965 VERIFY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 if (err < 0)
1967 goto out_freeiov;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001968 total_len = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969
1970 cmsg_ptr = (unsigned long)msg_sys.msg_control;
Ulrich Drepper4a195422007-07-15 23:40:34 -07001971 msg_sys.msg_flags = flags & (MSG_CMSG_CLOEXEC|MSG_CMSG_COMPAT);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001972
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 if (sock->file->f_flags & O_NONBLOCK)
1974 flags |= MSG_DONTWAIT;
1975 err = sock_recvmsg(sock, &msg_sys, total_len, flags);
1976 if (err < 0)
1977 goto out_freeiov;
1978 len = err;
1979
1980 if (uaddr != NULL) {
YOSHIFUJI Hideaki230b1832008-07-19 22:35:47 -07001981 err = move_addr_to_user((struct sockaddr *)&addr,
1982 msg_sys.msg_namelen, uaddr,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001983 uaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 if (err < 0)
1985 goto out_freeiov;
1986 }
David S. Miller37f7f422005-09-16 16:51:01 -07001987 err = __put_user((msg_sys.msg_flags & ~MSG_CMSG_COMPAT),
1988 COMPAT_FLAGS(msg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 if (err)
1990 goto out_freeiov;
1991 if (MSG_CMSG_COMPAT & flags)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001992 err = __put_user((unsigned long)msg_sys.msg_control - cmsg_ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 &msg_compat->msg_controllen);
1994 else
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001995 err = __put_user((unsigned long)msg_sys.msg_control - cmsg_ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 &msg->msg_controllen);
1997 if (err)
1998 goto out_freeiov;
1999 err = len;
2000
2001out_freeiov:
2002 if (iov != iovstack)
2003 sock_kfree_s(sock->sk, iov, iov_size);
2004out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08002005 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006out:
2007 return err;
2008}
2009
2010#ifdef __ARCH_WANT_SYS_SOCKETCALL
2011
2012/* Argument list sizes for sys_socketcall */
2013#define AL(x) ((x) * sizeof(unsigned long))
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002014static const unsigned char nargs[18]={
2015 AL(0),AL(3),AL(3),AL(3),AL(2),AL(3),
2016 AL(3),AL(3),AL(4),AL(4),AL(4),AL(6),
2017 AL(6),AL(2),AL(5),AL(5),AL(3),AL(3)
2018};
2019
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020#undef AL
2021
2022/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002023 * System call vectors.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 *
2025 * Argument checking cleaned up. Saved 20% in size.
2026 * This function doesn't need to set the kernel lock because
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002027 * it is set by the callees.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 */
2029
2030asmlinkage long sys_socketcall(int call, unsigned long __user *args)
2031{
2032 unsigned long a[6];
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002033 unsigned long a0, a1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 int err;
2035
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002036 if (call < 1 || call > SYS_RECVMSG)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 return -EINVAL;
2038
2039 /* copy_from_user should be SMP safe. */
2040 if (copy_from_user(a, args, nargs[call]))
2041 return -EFAULT;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002042
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002043 err = audit_socketcall(nargs[call] / sizeof(unsigned long), a);
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002044 if (err)
2045 return err;
2046
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002047 a0 = a[0];
2048 a1 = a[1];
2049
2050 switch (call) {
2051 case SYS_SOCKET:
2052 err = sys_socket(a0, a1, a[2]);
2053 break;
2054 case SYS_BIND:
2055 err = sys_bind(a0, (struct sockaddr __user *)a1, a[2]);
2056 break;
2057 case SYS_CONNECT:
2058 err = sys_connect(a0, (struct sockaddr __user *)a1, a[2]);
2059 break;
2060 case SYS_LISTEN:
2061 err = sys_listen(a0, a1);
2062 break;
2063 case SYS_ACCEPT:
2064 err =
2065 sys_accept(a0, (struct sockaddr __user *)a1,
2066 (int __user *)a[2]);
2067 break;
2068 case SYS_GETSOCKNAME:
2069 err =
2070 sys_getsockname(a0, (struct sockaddr __user *)a1,
2071 (int __user *)a[2]);
2072 break;
2073 case SYS_GETPEERNAME:
2074 err =
2075 sys_getpeername(a0, (struct sockaddr __user *)a1,
2076 (int __user *)a[2]);
2077 break;
2078 case SYS_SOCKETPAIR:
2079 err = sys_socketpair(a0, a1, a[2], (int __user *)a[3]);
2080 break;
2081 case SYS_SEND:
2082 err = sys_send(a0, (void __user *)a1, a[2], a[3]);
2083 break;
2084 case SYS_SENDTO:
2085 err = sys_sendto(a0, (void __user *)a1, a[2], a[3],
2086 (struct sockaddr __user *)a[4], a[5]);
2087 break;
2088 case SYS_RECV:
2089 err = sys_recv(a0, (void __user *)a1, a[2], a[3]);
2090 break;
2091 case SYS_RECVFROM:
2092 err = sys_recvfrom(a0, (void __user *)a1, a[2], a[3],
2093 (struct sockaddr __user *)a[4],
2094 (int __user *)a[5]);
2095 break;
2096 case SYS_SHUTDOWN:
2097 err = sys_shutdown(a0, a1);
2098 break;
2099 case SYS_SETSOCKOPT:
2100 err = sys_setsockopt(a0, a1, a[2], (char __user *)a[3], a[4]);
2101 break;
2102 case SYS_GETSOCKOPT:
2103 err =
2104 sys_getsockopt(a0, a1, a[2], (char __user *)a[3],
2105 (int __user *)a[4]);
2106 break;
2107 case SYS_SENDMSG:
2108 err = sys_sendmsg(a0, (struct msghdr __user *)a1, a[2]);
2109 break;
2110 case SYS_RECVMSG:
2111 err = sys_recvmsg(a0, (struct msghdr __user *)a1, a[2]);
2112 break;
2113 default:
2114 err = -EINVAL;
2115 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 }
2117 return err;
2118}
2119
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002120#endif /* __ARCH_WANT_SYS_SOCKETCALL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002122/**
2123 * sock_register - add a socket protocol handler
2124 * @ops: description of protocol
2125 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 * This function is called by a protocol handler that wants to
2127 * advertise its address family, and have it linked into the
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002128 * socket interface. The value ops->family coresponds to the
2129 * socket system call protocol family.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 */
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002131int sock_register(const struct net_proto_family *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132{
2133 int err;
2134
2135 if (ops->family >= NPROTO) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002136 printk(KERN_CRIT "protocol %d >= NPROTO(%d)\n", ops->family,
2137 NPROTO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 return -ENOBUFS;
2139 }
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002140
2141 spin_lock(&net_family_lock);
2142 if (net_families[ops->family])
2143 err = -EEXIST;
2144 else {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002145 net_families[ops->family] = ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 err = 0;
2147 }
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002148 spin_unlock(&net_family_lock);
2149
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002150 printk(KERN_INFO "NET: Registered protocol family %d\n", ops->family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 return err;
2152}
2153
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002154/**
2155 * sock_unregister - remove a protocol handler
2156 * @family: protocol family to remove
2157 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 * This function is called by a protocol handler that wants to
2159 * remove its address family, and have it unlinked from the
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002160 * new socket creation.
2161 *
2162 * If protocol handler is a module, then it can use module reference
2163 * counts to protect against new references. If protocol handler is not
2164 * a module then it needs to provide its own protection in
2165 * the ops->create routine.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 */
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002167void sock_unregister(int family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168{
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002169 BUG_ON(family < 0 || family >= NPROTO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002171 spin_lock(&net_family_lock);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002172 net_families[family] = NULL;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002173 spin_unlock(&net_family_lock);
2174
2175 synchronize_rcu();
2176
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002177 printk(KERN_INFO "NET: Unregistered protocol family %d\n", family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178}
2179
Andi Kleen77d76ea2005-12-22 12:43:42 -08002180static int __init sock_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181{
2182 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002183 * Initialize sock SLAB cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002185
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 sk_init();
2187
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002189 * Initialize skbuff SLAB cache
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 */
2191 skb_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192
2193 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002194 * Initialize the protocols module.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 */
2196
2197 init_inodecache();
2198 register_filesystem(&sock_fs_type);
2199 sock_mnt = kern_mount(&sock_fs_type);
Andi Kleen77d76ea2005-12-22 12:43:42 -08002200
2201 /* The real protocol initialization is performed in later initcalls.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 */
2203
2204#ifdef CONFIG_NETFILTER
2205 netfilter_init();
2206#endif
David S. Millercbeb3212005-12-22 12:58:55 -08002207
2208 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209}
2210
Andi Kleen77d76ea2005-12-22 12:43:42 -08002211core_initcall(sock_init); /* early initcall */
2212
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213#ifdef CONFIG_PROC_FS
2214void socket_seq_show(struct seq_file *seq)
2215{
2216 int cpu;
2217 int counter = 0;
2218
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -07002219 for_each_possible_cpu(cpu)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002220 counter += per_cpu(sockets_in_use, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221
2222 /* It can be negative, by the way. 8) */
2223 if (counter < 0)
2224 counter = 0;
2225
2226 seq_printf(seq, "sockets: used %d\n", counter);
2227}
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002228#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229
Shaun Pereira89bbfc92006-03-21 23:58:08 -08002230#ifdef CONFIG_COMPAT
2231static long compat_sock_ioctl(struct file *file, unsigned cmd,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002232 unsigned long arg)
Shaun Pereira89bbfc92006-03-21 23:58:08 -08002233{
2234 struct socket *sock = file->private_data;
2235 int ret = -ENOIOCTLCMD;
David S. Miller87de87d2008-06-03 09:14:03 -07002236 struct sock *sk;
2237 struct net *net;
2238
2239 sk = sock->sk;
2240 net = sock_net(sk);
Shaun Pereira89bbfc92006-03-21 23:58:08 -08002241
2242 if (sock->ops->compat_ioctl)
2243 ret = sock->ops->compat_ioctl(sock, cmd, arg);
2244
David S. Miller87de87d2008-06-03 09:14:03 -07002245 if (ret == -ENOIOCTLCMD &&
2246 (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST))
2247 ret = compat_wext_handle_ioctl(net, cmd, arg);
2248
Shaun Pereira89bbfc92006-03-21 23:58:08 -08002249 return ret;
2250}
2251#endif
2252
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07002253int kernel_bind(struct socket *sock, struct sockaddr *addr, int addrlen)
2254{
2255 return sock->ops->bind(sock, addr, addrlen);
2256}
2257
2258int kernel_listen(struct socket *sock, int backlog)
2259{
2260 return sock->ops->listen(sock, backlog);
2261}
2262
2263int kernel_accept(struct socket *sock, struct socket **newsock, int flags)
2264{
2265 struct sock *sk = sock->sk;
2266 int err;
2267
2268 err = sock_create_lite(sk->sk_family, sk->sk_type, sk->sk_protocol,
2269 newsock);
2270 if (err < 0)
2271 goto done;
2272
2273 err = sock->ops->accept(sock, *newsock, flags);
2274 if (err < 0) {
2275 sock_release(*newsock);
Tony Battersbyfa8705b2007-10-10 21:09:04 -07002276 *newsock = NULL;
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07002277 goto done;
2278 }
2279
2280 (*newsock)->ops = sock->ops;
2281
2282done:
2283 return err;
2284}
2285
2286int kernel_connect(struct socket *sock, struct sockaddr *addr, int addrlen,
YOSHIFUJI Hideaki4768fbc2007-02-09 23:25:31 +09002287 int flags)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07002288{
2289 return sock->ops->connect(sock, addr, addrlen, flags);
2290}
2291
2292int kernel_getsockname(struct socket *sock, struct sockaddr *addr,
2293 int *addrlen)
2294{
2295 return sock->ops->getname(sock, addr, addrlen, 0);
2296}
2297
2298int kernel_getpeername(struct socket *sock, struct sockaddr *addr,
2299 int *addrlen)
2300{
2301 return sock->ops->getname(sock, addr, addrlen, 1);
2302}
2303
2304int kernel_getsockopt(struct socket *sock, int level, int optname,
2305 char *optval, int *optlen)
2306{
2307 mm_segment_t oldfs = get_fs();
2308 int err;
2309
2310 set_fs(KERNEL_DS);
2311 if (level == SOL_SOCKET)
2312 err = sock_getsockopt(sock, level, optname, optval, optlen);
2313 else
2314 err = sock->ops->getsockopt(sock, level, optname, optval,
2315 optlen);
2316 set_fs(oldfs);
2317 return err;
2318}
2319
2320int kernel_setsockopt(struct socket *sock, int level, int optname,
2321 char *optval, int optlen)
2322{
2323 mm_segment_t oldfs = get_fs();
2324 int err;
2325
2326 set_fs(KERNEL_DS);
2327 if (level == SOL_SOCKET)
2328 err = sock_setsockopt(sock, level, optname, optval, optlen);
2329 else
2330 err = sock->ops->setsockopt(sock, level, optname, optval,
2331 optlen);
2332 set_fs(oldfs);
2333 return err;
2334}
2335
2336int kernel_sendpage(struct socket *sock, struct page *page, int offset,
2337 size_t size, int flags)
2338{
2339 if (sock->ops->sendpage)
2340 return sock->ops->sendpage(sock, page, offset, size, flags);
2341
2342 return sock_no_sendpage(sock, page, offset, size, flags);
2343}
2344
2345int kernel_sock_ioctl(struct socket *sock, int cmd, unsigned long arg)
2346{
2347 mm_segment_t oldfs = get_fs();
2348 int err;
2349
2350 set_fs(KERNEL_DS);
2351 err = sock->ops->ioctl(sock, cmd, arg);
2352 set_fs(oldfs);
2353
2354 return err;
2355}
2356
Trond Myklebust91cf45f2007-11-12 18:10:39 -08002357int kernel_sock_shutdown(struct socket *sock, enum sock_shutdown_cmd how)
2358{
2359 return sock->ops->shutdown(sock, how);
2360}
2361
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362EXPORT_SYMBOL(sock_create);
2363EXPORT_SYMBOL(sock_create_kern);
2364EXPORT_SYMBOL(sock_create_lite);
2365EXPORT_SYMBOL(sock_map_fd);
2366EXPORT_SYMBOL(sock_recvmsg);
2367EXPORT_SYMBOL(sock_register);
2368EXPORT_SYMBOL(sock_release);
2369EXPORT_SYMBOL(sock_sendmsg);
2370EXPORT_SYMBOL(sock_unregister);
2371EXPORT_SYMBOL(sock_wake_async);
2372EXPORT_SYMBOL(sockfd_lookup);
2373EXPORT_SYMBOL(kernel_sendmsg);
2374EXPORT_SYMBOL(kernel_recvmsg);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07002375EXPORT_SYMBOL(kernel_bind);
2376EXPORT_SYMBOL(kernel_listen);
2377EXPORT_SYMBOL(kernel_accept);
2378EXPORT_SYMBOL(kernel_connect);
2379EXPORT_SYMBOL(kernel_getsockname);
2380EXPORT_SYMBOL(kernel_getpeername);
2381EXPORT_SYMBOL(kernel_getsockopt);
2382EXPORT_SYMBOL(kernel_setsockopt);
2383EXPORT_SYMBOL(kernel_sendpage);
2384EXPORT_SYMBOL(kernel_sock_ioctl);
Trond Myklebust91cf45f2007-11-12 18:10:39 -08002385EXPORT_SYMBOL(kernel_sock_shutdown);