blob: 1ad62c08377bb557aba9adf6a99a6dc62ca6f242 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
88#include <asm/uaccess.h>
89#include <asm/unistd.h>
90
91#include <net/compat.h>
92
93#include <net/sock.h>
94#include <linux/netfilter.h>
95
96static int sock_no_open(struct inode *irrelevant, struct file *dontcare);
Badari Pulavarty027445c2006-09-30 23:28:46 -070097static ssize_t sock_aio_read(struct kiocb *iocb, const struct iovec *iov,
98 unsigned long nr_segs, loff_t pos);
99static ssize_t sock_aio_write(struct kiocb *iocb, const struct iovec *iov,
100 unsigned long nr_segs, loff_t pos);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700101static int sock_mmap(struct file *file, struct vm_area_struct *vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
103static int sock_close(struct inode *inode, struct file *file);
104static unsigned int sock_poll(struct file *file,
105 struct poll_table_struct *wait);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700106static long sock_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800107#ifdef CONFIG_COMPAT
108static long compat_sock_ioctl(struct file *file,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700109 unsigned int cmd, unsigned long arg);
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800110#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111static int sock_fasync(int fd, struct file *filp, int on);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112static ssize_t sock_sendpage(struct file *file, struct page *page,
113 int offset, size_t size, loff_t *ppos, int more);
114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115/*
116 * Socket files have a set of 'special' operations as well as the generic file ones. These don't appear
117 * in the operation structures but are done directly via the socketcall() multiplexor.
118 */
119
Arjan van de Venda7071d2007-02-12 00:55:36 -0800120static const struct file_operations socket_file_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 .owner = THIS_MODULE,
122 .llseek = no_llseek,
123 .aio_read = sock_aio_read,
124 .aio_write = sock_aio_write,
125 .poll = sock_poll,
126 .unlocked_ioctl = sock_ioctl,
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800127#ifdef CONFIG_COMPAT
128 .compat_ioctl = compat_sock_ioctl,
129#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 .mmap = sock_mmap,
131 .open = sock_no_open, /* special open code to disallow open via /proc */
132 .release = sock_close,
133 .fasync = sock_fasync,
Jens Axboe5274f052006-03-30 15:15:30 +0200134 .sendpage = sock_sendpage,
135 .splice_write = generic_splice_sendpage,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136};
137
138/*
139 * The protocol list. Each protocol is registered in here.
140 */
141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142static DEFINE_SPINLOCK(net_family_lock);
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -0700143static const struct net_proto_family *net_families[NPROTO] __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145/*
146 * Statistics counters of the socket lists
147 */
148
149static DEFINE_PER_CPU(int, sockets_in_use) = 0;
150
151/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700152 * Support routines.
153 * Move socket addresses back and forth across the kernel/user
154 * divide and look after the messy bits.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 */
156
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700157#define MAX_SOCK_ADDR 128 /* 108 for Unix domain -
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 16 for IP, 16 for IPX,
159 24 for IPv6,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700160 about 80 for AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 must be at least one bigger than
162 the AF_UNIX size (see net/unix/af_unix.c
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700163 :unix_mkname()).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166/**
167 * move_addr_to_kernel - copy a socket address into kernel space
168 * @uaddr: Address in user space
169 * @kaddr: Address in kernel space
170 * @ulen: Length in user space
171 *
172 * The address is copied into kernel space. If the provided address is
173 * too long an error code of -EINVAL is returned. If the copy gives
174 * invalid addresses -EFAULT is returned. On a success 0 is returned.
175 */
176
177int move_addr_to_kernel(void __user *uaddr, int ulen, void *kaddr)
178{
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700179 if (ulen < 0 || ulen > MAX_SOCK_ADDR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700181 if (ulen == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 return 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700183 if (copy_from_user(kaddr, uaddr, ulen))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 return -EFAULT;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +0100185 return audit_sockaddr(ulen, kaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186}
187
188/**
189 * move_addr_to_user - copy an address to user space
190 * @kaddr: kernel space address
191 * @klen: length of address in kernel
192 * @uaddr: user space address
193 * @ulen: pointer to user length field
194 *
195 * The value pointed to by ulen on entry is the buffer length available.
196 * This is overwritten with the buffer space used. -EINVAL is returned
197 * if an overlong buffer is specified or a negative buffer size. -EFAULT
198 * is returned if either the buffer or the length field are not
199 * accessible.
200 * After copying the data up to the limit the user specifies, the true
201 * length of the data is written over the length limit the user
202 * specified. Zero is returned for a success.
203 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700204
205int move_addr_to_user(void *kaddr, int klen, void __user *uaddr,
206 int __user *ulen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207{
208 int err;
209 int len;
210
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700211 err = get_user(len, ulen);
212 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 return err;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700214 if (len > klen)
215 len = klen;
216 if (len < 0 || len > MAX_SOCK_ADDR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700218 if (len) {
Steve Grubbd6fe3942006-03-30 12:20:22 -0500219 if (audit_sockaddr(klen, kaddr))
220 return -ENOMEM;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700221 if (copy_to_user(uaddr, kaddr, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 return -EFAULT;
223 }
224 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700225 * "fromlen shall refer to the value before truncation.."
226 * 1003.1g
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 */
228 return __put_user(klen, ulen);
229}
230
231#define SOCKFS_MAGIC 0x534F434B
232
Christoph Lametere18b8902006-12-06 20:33:20 -0800233static struct kmem_cache *sock_inode_cachep __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
235static struct inode *sock_alloc_inode(struct super_block *sb)
236{
237 struct socket_alloc *ei;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700238
Christoph Lametere94b1762006-12-06 20:33:17 -0800239 ei = kmem_cache_alloc(sock_inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 if (!ei)
241 return NULL;
242 init_waitqueue_head(&ei->socket.wait);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 ei->socket.fasync_list = NULL;
245 ei->socket.state = SS_UNCONNECTED;
246 ei->socket.flags = 0;
247 ei->socket.ops = NULL;
248 ei->socket.sk = NULL;
249 ei->socket.file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251 return &ei->vfs_inode;
252}
253
254static void sock_destroy_inode(struct inode *inode)
255{
256 kmem_cache_free(sock_inode_cachep,
257 container_of(inode, struct socket_alloc, vfs_inode));
258}
259
Christoph Lametere18b8902006-12-06 20:33:20 -0800260static void init_once(void *foo, struct kmem_cache *cachep, unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261{
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700262 struct socket_alloc *ei = (struct socket_alloc *)foo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700264 if ((flags & (SLAB_CTOR_VERIFY|SLAB_CTOR_CONSTRUCTOR))
265 == SLAB_CTOR_CONSTRUCTOR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 inode_init_once(&ei->vfs_inode);
267}
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269static int init_inodecache(void)
270{
271 sock_inode_cachep = kmem_cache_create("sock_inode_cache",
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700272 sizeof(struct socket_alloc),
273 0,
274 (SLAB_HWCACHE_ALIGN |
275 SLAB_RECLAIM_ACCOUNT |
276 SLAB_MEM_SPREAD),
277 init_once,
278 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 if (sock_inode_cachep == NULL)
280 return -ENOMEM;
281 return 0;
282}
283
284static struct super_operations sockfs_ops = {
285 .alloc_inode = sock_alloc_inode,
286 .destroy_inode =sock_destroy_inode,
287 .statfs = simple_statfs,
288};
289
David Howells454e2392006-06-23 02:02:57 -0700290static int sockfs_get_sb(struct file_system_type *fs_type,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700291 int flags, const char *dev_name, void *data,
292 struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293{
David Howells454e2392006-06-23 02:02:57 -0700294 return get_sb_pseudo(fs_type, "socket:", &sockfs_ops, SOCKFS_MAGIC,
295 mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296}
297
Eric Dumazetba899662005-08-26 12:05:31 -0700298static struct vfsmount *sock_mnt __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
300static struct file_system_type sock_fs_type = {
301 .name = "sockfs",
302 .get_sb = sockfs_get_sb,
303 .kill_sb = kill_anon_super,
304};
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306static int sockfs_delete_dentry(struct dentry *dentry)
307{
Eric Dumazet304e61e2006-12-06 20:38:49 -0800308 /*
309 * At creation time, we pretended this dentry was hashed
310 * (by clearing DCACHE_UNHASHED bit in d_flags)
311 * At delete time, we restore the truth : not hashed.
312 * (so that dput() can proceed correctly)
313 */
314 dentry->d_flags |= DCACHE_UNHASHED;
315 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316}
317static struct dentry_operations sockfs_dentry_operations = {
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700318 .d_delete = sockfs_delete_dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319};
320
321/*
322 * Obtains the first available file descriptor and sets it up for use.
323 *
David S. Miller39d8c1b2006-03-20 17:13:49 -0800324 * These functions create file structures and maps them to fd space
325 * of the current process. On success it returns file descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 * and file struct implicitly stored in sock->file.
327 * Note that another thread may close file descriptor before we return
328 * from this function. We use the fact that now we do not refer
329 * to socket after mapping. If one day we will need it, this
330 * function will increment ref. count on file by 1.
331 *
332 * In any case returned fd MAY BE not valid!
333 * This race condition is unavoidable
334 * with shared fd spaces, we cannot solve it inside kernel,
335 * but we take care of internal coherence yet.
336 */
337
David S. Miller39d8c1b2006-03-20 17:13:49 -0800338static int sock_alloc_fd(struct file **filep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339{
340 int fd;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800341
342 fd = get_unused_fd();
343 if (likely(fd >= 0)) {
344 struct file *file = get_empty_filp();
345
346 *filep = file;
347 if (unlikely(!file)) {
348 put_unused_fd(fd);
349 return -ENFILE;
350 }
351 } else
352 *filep = NULL;
353 return fd;
354}
355
356static int sock_attach_fd(struct socket *sock, struct file *file)
357{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 struct qstr this;
359 char name[32];
360
David S. Miller39d8c1b2006-03-20 17:13:49 -0800361 this.len = sprintf(name, "[%lu]", SOCK_INODE(sock)->i_ino);
362 this.name = name;
Eric Dumazet304e61e2006-12-06 20:38:49 -0800363 this.hash = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
Josef Sipek3126a422006-12-08 02:37:23 -0800365 file->f_path.dentry = d_alloc(sock_mnt->mnt_sb->s_root, &this);
366 if (unlikely(!file->f_path.dentry))
David S. Miller39d8c1b2006-03-20 17:13:49 -0800367 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Josef Sipek3126a422006-12-08 02:37:23 -0800369 file->f_path.dentry->d_op = &sockfs_dentry_operations;
Eric Dumazet304e61e2006-12-06 20:38:49 -0800370 /*
371 * We dont want to push this dentry into global dentry hash table.
372 * We pretend dentry is already hashed, by unsetting DCACHE_UNHASHED
373 * This permits a working /proc/$pid/fd/XXX on sockets
374 */
Josef Sipek3126a422006-12-08 02:37:23 -0800375 file->f_path.dentry->d_flags &= ~DCACHE_UNHASHED;
376 d_instantiate(file->f_path.dentry, SOCK_INODE(sock));
377 file->f_path.mnt = mntget(sock_mnt);
378 file->f_mapping = file->f_path.dentry->d_inode->i_mapping;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800379
380 sock->file = file;
381 file->f_op = SOCK_INODE(sock)->i_fop = &socket_file_ops;
382 file->f_mode = FMODE_READ | FMODE_WRITE;
383 file->f_flags = O_RDWR;
384 file->f_pos = 0;
385 file->private_data = sock;
386
387 return 0;
388}
389
390int sock_map_fd(struct socket *sock)
391{
392 struct file *newfile;
393 int fd = sock_alloc_fd(&newfile);
394
395 if (likely(fd >= 0)) {
396 int err = sock_attach_fd(sock, newfile);
397
398 if (unlikely(err < 0)) {
399 put_filp(newfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 put_unused_fd(fd);
David S. Miller39d8c1b2006-03-20 17:13:49 -0800401 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 }
David S. Miller39d8c1b2006-03-20 17:13:49 -0800403 fd_install(fd, newfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 return fd;
406}
407
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800408static struct socket *sock_from_file(struct file *file, int *err)
409{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800410 if (file->f_op == &socket_file_ops)
411 return file->private_data; /* set in sock_map_fd */
412
Eric Dumazet23bb80d2007-02-08 14:59:57 -0800413 *err = -ENOTSOCK;
414 return NULL;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800415}
416
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417/**
418 * sockfd_lookup - Go from a file number to its socket slot
419 * @fd: file handle
420 * @err: pointer to an error code return
421 *
422 * The file handle passed in is locked and the socket it is bound
423 * too is returned. If an error occurs the err pointer is overwritten
424 * with a negative errno code and NULL is returned. The function checks
425 * for both invalid handles and passing a handle which is not a socket.
426 *
427 * On a success the socket object pointer is returned.
428 */
429
430struct socket *sockfd_lookup(int fd, int *err)
431{
432 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 struct socket *sock;
434
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700435 file = fget(fd);
436 if (!file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 *err = -EBADF;
438 return NULL;
439 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700440
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800441 sock = sock_from_file(file, err);
442 if (!sock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 fput(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 return sock;
445}
446
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800447static struct socket *sockfd_lookup_light(int fd, int *err, int *fput_needed)
448{
449 struct file *file;
450 struct socket *sock;
451
Hua Zhong36725582006-04-19 15:25:02 -0700452 *err = -EBADF;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800453 file = fget_light(fd, fput_needed);
454 if (file) {
455 sock = sock_from_file(file, err);
456 if (sock)
457 return sock;
458 fput_light(file, *fput_needed);
459 }
460 return NULL;
461}
462
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463/**
464 * sock_alloc - allocate a socket
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700465 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 * Allocate a new inode and socket object. The two are bound together
467 * and initialised. The socket is then returned. If we are out of inodes
468 * NULL is returned.
469 */
470
471static struct socket *sock_alloc(void)
472{
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700473 struct inode *inode;
474 struct socket *sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
476 inode = new_inode(sock_mnt->mnt_sb);
477 if (!inode)
478 return NULL;
479
480 sock = SOCKET_I(inode);
481
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700482 inode->i_mode = S_IFSOCK | S_IRWXUGO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 inode->i_uid = current->fsuid;
484 inode->i_gid = current->fsgid;
485
486 get_cpu_var(sockets_in_use)++;
487 put_cpu_var(sockets_in_use);
488 return sock;
489}
490
491/*
492 * In theory you can't get an open on this inode, but /proc provides
493 * a back door. Remember to keep it shut otherwise you'll let the
494 * creepy crawlies in.
495 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700496
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497static int sock_no_open(struct inode *irrelevant, struct file *dontcare)
498{
499 return -ENXIO;
500}
501
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800502const struct file_operations bad_sock_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 .owner = THIS_MODULE,
504 .open = sock_no_open,
505};
506
507/**
508 * sock_release - close a socket
509 * @sock: socket to close
510 *
511 * The socket is released from the protocol stack if it has a release
512 * callback, and the inode is then released if the socket is bound to
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700513 * an inode not a file.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700515
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516void sock_release(struct socket *sock)
517{
518 if (sock->ops) {
519 struct module *owner = sock->ops->owner;
520
521 sock->ops->release(sock);
522 sock->ops = NULL;
523 module_put(owner);
524 }
525
526 if (sock->fasync_list)
527 printk(KERN_ERR "sock_release: fasync list not empty!\n");
528
529 get_cpu_var(sockets_in_use)--;
530 put_cpu_var(sockets_in_use);
531 if (!sock->file) {
532 iput(SOCK_INODE(sock));
533 return;
534 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700535 sock->file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536}
537
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700538static inline int __sock_sendmsg(struct kiocb *iocb, struct socket *sock,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 struct msghdr *msg, size_t size)
540{
541 struct sock_iocb *si = kiocb_to_siocb(iocb);
542 int err;
543
544 si->sock = sock;
545 si->scm = NULL;
546 si->msg = msg;
547 si->size = size;
548
549 err = security_socket_sendmsg(sock, msg, size);
550 if (err)
551 return err;
552
553 return sock->ops->sendmsg(iocb, sock, msg, size);
554}
555
556int sock_sendmsg(struct socket *sock, struct msghdr *msg, size_t size)
557{
558 struct kiocb iocb;
559 struct sock_iocb siocb;
560 int ret;
561
562 init_sync_kiocb(&iocb, NULL);
563 iocb.private = &siocb;
564 ret = __sock_sendmsg(&iocb, sock, msg, size);
565 if (-EIOCBQUEUED == ret)
566 ret = wait_on_sync_kiocb(&iocb);
567 return ret;
568}
569
570int kernel_sendmsg(struct socket *sock, struct msghdr *msg,
571 struct kvec *vec, size_t num, size_t size)
572{
573 mm_segment_t oldfs = get_fs();
574 int result;
575
576 set_fs(KERNEL_DS);
577 /*
578 * the following is safe, since for compiler definitions of kvec and
579 * iovec are identical, yielding the same in-core layout and alignment
580 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700581 msg->msg_iov = (struct iovec *)vec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 msg->msg_iovlen = num;
583 result = sock_sendmsg(sock, msg, size);
584 set_fs(oldfs);
585 return result;
586}
587
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700588/*
589 * called from sock_recv_timestamp() if sock_flag(sk, SOCK_RCVTSTAMP)
590 */
591void __sock_recv_timestamp(struct msghdr *msg, struct sock *sk,
592 struct sk_buff *skb)
593{
594 ktime_t kt = skb->tstamp;
595
596 if (!sock_flag(sk, SOCK_RCVTSTAMPNS)) {
597 struct timeval tv;
598 /* Race occurred between timestamp enabling and packet
599 receiving. Fill in the current time for now. */
600 if (kt.tv64 == 0)
601 kt = ktime_get_real();
602 skb->tstamp = kt;
603 tv = ktime_to_timeval(kt);
604 put_cmsg(msg, SOL_SOCKET, SCM_TIMESTAMP, sizeof(tv), &tv);
605 } else {
606 struct timespec ts;
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 ts = ktime_to_timespec(kt);
613 put_cmsg(msg, SOL_SOCKET, SCM_TIMESTAMPNS, sizeof(ts), &ts);
614 }
615}
616
Arnaldo Carvalho de Melo7c81fd82007-03-10 00:39:35 -0300617EXPORT_SYMBOL_GPL(__sock_recv_timestamp);
618
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700619static inline int __sock_recvmsg(struct kiocb *iocb, struct socket *sock,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 struct msghdr *msg, size_t size, int flags)
621{
622 int err;
623 struct sock_iocb *si = kiocb_to_siocb(iocb);
624
625 si->sock = sock;
626 si->scm = NULL;
627 si->msg = msg;
628 si->size = size;
629 si->flags = flags;
630
631 err = security_socket_recvmsg(sock, msg, size, flags);
632 if (err)
633 return err;
634
635 return sock->ops->recvmsg(iocb, sock, msg, size, flags);
636}
637
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700638int sock_recvmsg(struct socket *sock, struct msghdr *msg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 size_t size, int flags)
640{
641 struct kiocb iocb;
642 struct sock_iocb siocb;
643 int ret;
644
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700645 init_sync_kiocb(&iocb, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 iocb.private = &siocb;
647 ret = __sock_recvmsg(&iocb, sock, msg, size, flags);
648 if (-EIOCBQUEUED == ret)
649 ret = wait_on_sync_kiocb(&iocb);
650 return ret;
651}
652
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700653int kernel_recvmsg(struct socket *sock, struct msghdr *msg,
654 struct kvec *vec, size_t num, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655{
656 mm_segment_t oldfs = get_fs();
657 int result;
658
659 set_fs(KERNEL_DS);
660 /*
661 * the following is safe, since for compiler definitions of kvec and
662 * iovec are identical, yielding the same in-core layout and alignment
663 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700664 msg->msg_iov = (struct iovec *)vec, msg->msg_iovlen = num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 result = sock_recvmsg(sock, msg, size, flags);
666 set_fs(oldfs);
667 return result;
668}
669
670static void sock_aio_dtor(struct kiocb *iocb)
671{
672 kfree(iocb->private);
673}
674
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -0300675static ssize_t sock_sendpage(struct file *file, struct page *page,
676 int offset, size_t size, loff_t *ppos, int more)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677{
678 struct socket *sock;
679 int flags;
680
Eric Dumazetb69aee02005-09-06 14:42:45 -0700681 sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
683 flags = !(file->f_flags & O_NONBLOCK) ? 0 : MSG_DONTWAIT;
684 if (more)
685 flags |= MSG_MORE;
686
687 return sock->ops->sendpage(sock, page, offset, size, flags);
688}
689
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800690static struct sock_iocb *alloc_sock_iocb(struct kiocb *iocb,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700691 struct sock_iocb *siocb)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800692{
693 if (!is_sync_kiocb(iocb)) {
694 siocb = kmalloc(sizeof(*siocb), GFP_KERNEL);
695 if (!siocb)
696 return NULL;
697 iocb->ki_dtor = sock_aio_dtor;
698 }
699
700 siocb->kiocb = iocb;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800701 iocb->private = siocb;
702 return siocb;
703}
704
705static ssize_t do_sock_read(struct msghdr *msg, struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -0700706 struct file *file, const struct iovec *iov,
707 unsigned long nr_segs)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800708{
709 struct socket *sock = file->private_data;
710 size_t size = 0;
711 int i;
712
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700713 for (i = 0; i < nr_segs; i++)
714 size += iov[i].iov_len;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800715
716 msg->msg_name = NULL;
717 msg->msg_namelen = 0;
718 msg->msg_control = NULL;
719 msg->msg_controllen = 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700720 msg->msg_iov = (struct iovec *)iov;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800721 msg->msg_iovlen = nr_segs;
722 msg->msg_flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
723
724 return __sock_recvmsg(iocb, sock, msg, size, msg->msg_flags);
725}
726
Badari Pulavarty027445c2006-09-30 23:28:46 -0700727static ssize_t sock_aio_read(struct kiocb *iocb, const struct iovec *iov,
728 unsigned long nr_segs, loff_t pos)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800729{
730 struct sock_iocb siocb, *x;
731
732 if (pos != 0)
733 return -ESPIPE;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700734
735 if (iocb->ki_left == 0) /* Match SYS5 behaviour */
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800736 return 0;
737
Badari Pulavarty027445c2006-09-30 23:28:46 -0700738
739 x = alloc_sock_iocb(iocb, &siocb);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800740 if (!x)
741 return -ENOMEM;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700742 return do_sock_read(&x->async_msg, iocb, iocb->ki_filp, iov, nr_segs);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800743}
744
745static ssize_t do_sock_write(struct msghdr *msg, struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -0700746 struct file *file, const struct iovec *iov,
747 unsigned long nr_segs)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800748{
749 struct socket *sock = file->private_data;
750 size_t size = 0;
751 int i;
752
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700753 for (i = 0; i < nr_segs; i++)
754 size += iov[i].iov_len;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800755
756 msg->msg_name = NULL;
757 msg->msg_namelen = 0;
758 msg->msg_control = NULL;
759 msg->msg_controllen = 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700760 msg->msg_iov = (struct iovec *)iov;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800761 msg->msg_iovlen = nr_segs;
762 msg->msg_flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
763 if (sock->type == SOCK_SEQPACKET)
764 msg->msg_flags |= MSG_EOR;
765
766 return __sock_sendmsg(iocb, sock, msg, size);
767}
768
Badari Pulavarty027445c2006-09-30 23:28:46 -0700769static ssize_t sock_aio_write(struct kiocb *iocb, const struct iovec *iov,
770 unsigned long nr_segs, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771{
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800772 struct sock_iocb siocb, *x;
773
774 if (pos != 0)
775 return -ESPIPE;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700776
777 if (iocb->ki_left == 0) /* Match SYS5 behaviour */
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800778 return 0;
779
Badari Pulavarty027445c2006-09-30 23:28:46 -0700780 x = alloc_sock_iocb(iocb, &siocb);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800781 if (!x)
782 return -ENOMEM;
783
Badari Pulavarty027445c2006-09-30 23:28:46 -0700784 return do_sock_write(&x->async_msg, iocb, iocb->ki_filp, iov, nr_segs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785}
786
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787/*
788 * Atomic setting of ioctl hooks to avoid race
789 * with module unload.
790 */
791
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800792static DEFINE_MUTEX(br_ioctl_mutex);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700793static int (*br_ioctl_hook) (unsigned int cmd, void __user *arg) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700795void brioctl_set(int (*hook) (unsigned int, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800797 mutex_lock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 br_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800799 mutex_unlock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800}
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700801
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802EXPORT_SYMBOL(brioctl_set);
803
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800804static DEFINE_MUTEX(vlan_ioctl_mutex);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700805static int (*vlan_ioctl_hook) (void __user *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700807void vlan_ioctl_set(int (*hook) (void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800809 mutex_lock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 vlan_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800811 mutex_unlock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812}
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700813
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814EXPORT_SYMBOL(vlan_ioctl_set);
815
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800816static DEFINE_MUTEX(dlci_ioctl_mutex);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700817static int (*dlci_ioctl_hook) (unsigned int, void __user *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700819void dlci_ioctl_set(int (*hook) (unsigned int, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800821 mutex_lock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 dlci_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800823 mutex_unlock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824}
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700825
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826EXPORT_SYMBOL(dlci_ioctl_set);
827
828/*
829 * With an ioctl, arg may well be a user mode pointer, but we don't know
830 * what to do with it - that's up to the protocol still.
831 */
832
833static long sock_ioctl(struct file *file, unsigned cmd, unsigned long arg)
834{
835 struct socket *sock;
836 void __user *argp = (void __user *)arg;
837 int pid, err;
838
Eric Dumazetb69aee02005-09-06 14:42:45 -0700839 sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 if (cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15)) {
841 err = dev_ioctl(cmd, argp);
842 } else
Adrian Bunkd86b5e02006-01-21 00:46:55 +0100843#ifdef CONFIG_WIRELESS_EXT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 if (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST) {
845 err = dev_ioctl(cmd, argp);
846 } else
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700847#endif /* CONFIG_WIRELESS_EXT */
848 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 case FIOSETOWN:
850 case SIOCSPGRP:
851 err = -EFAULT;
852 if (get_user(pid, (int __user *)argp))
853 break;
854 err = f_setown(sock->file, pid, 1);
855 break;
856 case FIOGETOWN:
857 case SIOCGPGRP:
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700858 err = put_user(f_getown(sock->file),
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700859 (int __user *)argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 break;
861 case SIOCGIFBR:
862 case SIOCSIFBR:
863 case SIOCBRADDBR:
864 case SIOCBRDELBR:
865 err = -ENOPKG;
866 if (!br_ioctl_hook)
867 request_module("bridge");
868
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800869 mutex_lock(&br_ioctl_mutex);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700870 if (br_ioctl_hook)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 err = br_ioctl_hook(cmd, argp);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800872 mutex_unlock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 break;
874 case SIOCGIFVLAN:
875 case SIOCSIFVLAN:
876 err = -ENOPKG;
877 if (!vlan_ioctl_hook)
878 request_module("8021q");
879
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800880 mutex_lock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 if (vlan_ioctl_hook)
882 err = vlan_ioctl_hook(argp);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800883 mutex_unlock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 case SIOCADDDLCI:
886 case SIOCDELDLCI:
887 err = -ENOPKG;
888 if (!dlci_ioctl_hook)
889 request_module("dlci");
890
891 if (dlci_ioctl_hook) {
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800892 mutex_lock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 err = dlci_ioctl_hook(cmd, argp);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800894 mutex_unlock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 }
896 break;
897 default:
898 err = sock->ops->ioctl(sock, cmd, arg);
Christoph Hellwigb5e5fa52006-01-03 14:18:33 -0800899
900 /*
901 * If this ioctl is unknown try to hand it down
902 * to the NIC driver.
903 */
904 if (err == -ENOIOCTLCMD)
905 err = dev_ioctl(cmd, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700907 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 return err;
909}
910
911int sock_create_lite(int family, int type, int protocol, struct socket **res)
912{
913 int err;
914 struct socket *sock = NULL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700915
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 err = security_socket_create(family, type, protocol, 1);
917 if (err)
918 goto out;
919
920 sock = sock_alloc();
921 if (!sock) {
922 err = -ENOMEM;
923 goto out;
924 }
925
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 sock->type = type;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -0700927 err = security_socket_post_create(sock, family, type, protocol, 1);
928 if (err)
929 goto out_release;
930
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931out:
932 *res = sock;
933 return err;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -0700934out_release:
935 sock_release(sock);
936 sock = NULL;
937 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938}
939
940/* No kernel lock held - perfect */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700941static unsigned int sock_poll(struct file *file, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942{
943 struct socket *sock;
944
945 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700946 * We can't return errors to poll, so it's either yes or no.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 */
Eric Dumazetb69aee02005-09-06 14:42:45 -0700948 sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 return sock->ops->poll(file, sock, wait);
950}
951
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700952static int sock_mmap(struct file *file, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953{
Eric Dumazetb69aee02005-09-06 14:42:45 -0700954 struct socket *sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955
956 return sock->ops->mmap(file, sock, vma);
957}
958
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -0300959static int sock_close(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960{
961 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700962 * It was possible the inode is NULL we were
963 * closing an unfinished socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 */
965
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700966 if (!inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 printk(KERN_DEBUG "sock_close: NULL inode\n");
968 return 0;
969 }
970 sock_fasync(-1, filp, 0);
971 sock_release(SOCKET_I(inode));
972 return 0;
973}
974
975/*
976 * Update the socket async list
977 *
978 * Fasync_list locking strategy.
979 *
980 * 1. fasync_list is modified only under process context socket lock
981 * i.e. under semaphore.
982 * 2. fasync_list is used under read_lock(&sk->sk_callback_lock)
983 * or under socket lock.
984 * 3. fasync_list can be used from softirq context, so that
985 * modification under socket lock have to be enhanced with
986 * write_lock_bh(&sk->sk_callback_lock).
987 * --ANK (990710)
988 */
989
990static int sock_fasync(int fd, struct file *filp, int on)
991{
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700992 struct fasync_struct *fa, *fna = NULL, **prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 struct socket *sock;
994 struct sock *sk;
995
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700996 if (on) {
Kris Katterjohn8b3a7002006-01-11 15:56:43 -0800997 fna = kmalloc(sizeof(struct fasync_struct), GFP_KERNEL);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700998 if (fna == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 return -ENOMEM;
1000 }
1001
Eric Dumazetb69aee02005-09-06 14:42:45 -07001002 sock = filp->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001004 sk = sock->sk;
1005 if (sk == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 kfree(fna);
1007 return -EINVAL;
1008 }
1009
1010 lock_sock(sk);
1011
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001012 prev = &(sock->fasync_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001014 for (fa = *prev; fa != NULL; prev = &fa->fa_next, fa = *prev)
1015 if (fa->fa_file == filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 break;
1017
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001018 if (on) {
1019 if (fa != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 write_lock_bh(&sk->sk_callback_lock);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001021 fa->fa_fd = fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 write_unlock_bh(&sk->sk_callback_lock);
1023
1024 kfree(fna);
1025 goto out;
1026 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001027 fna->fa_file = filp;
1028 fna->fa_fd = fd;
1029 fna->magic = FASYNC_MAGIC;
1030 fna->fa_next = sock->fasync_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 write_lock_bh(&sk->sk_callback_lock);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001032 sock->fasync_list = fna;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 write_unlock_bh(&sk->sk_callback_lock);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001034 } else {
1035 if (fa != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 write_lock_bh(&sk->sk_callback_lock);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001037 *prev = fa->fa_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 write_unlock_bh(&sk->sk_callback_lock);
1039 kfree(fa);
1040 }
1041 }
1042
1043out:
1044 release_sock(sock->sk);
1045 return 0;
1046}
1047
1048/* This function may be called only under socket lock or callback_lock */
1049
1050int sock_wake_async(struct socket *sock, int how, int band)
1051{
1052 if (!sock || !sock->fasync_list)
1053 return -1;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001054 switch (how) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 case 1:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001056
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 if (test_bit(SOCK_ASYNC_WAITDATA, &sock->flags))
1058 break;
1059 goto call_kill;
1060 case 2:
1061 if (!test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sock->flags))
1062 break;
1063 /* fall through */
1064 case 0:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001065call_kill:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 __kill_fasync(sock->fasync_list, SIGIO, band);
1067 break;
1068 case 3:
1069 __kill_fasync(sock->fasync_list, SIGURG, band);
1070 }
1071 return 0;
1072}
1073
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001074static int __sock_create(int family, int type, int protocol,
1075 struct socket **res, int kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076{
1077 int err;
1078 struct socket *sock;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001079 const struct net_proto_family *pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
1081 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001082 * Check protocol is in range
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 */
1084 if (family < 0 || family >= NPROTO)
1085 return -EAFNOSUPPORT;
1086 if (type < 0 || type >= SOCK_MAX)
1087 return -EINVAL;
1088
1089 /* Compatibility.
1090
1091 This uglymoron is moved from INET layer to here to avoid
1092 deadlock in module load.
1093 */
1094 if (family == PF_INET && type == SOCK_PACKET) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001095 static int warned;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 if (!warned) {
1097 warned = 1;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001098 printk(KERN_INFO "%s uses obsolete (PF_INET,SOCK_PACKET)\n",
1099 current->comm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 }
1101 family = PF_PACKET;
1102 }
1103
1104 err = security_socket_create(family, type, protocol, kern);
1105 if (err)
1106 return err;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001107
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001108 /*
1109 * Allocate the socket and allow the family to set things up. if
1110 * the protocol is 0, the family is instructed to select an appropriate
1111 * default.
1112 */
1113 sock = sock_alloc();
1114 if (!sock) {
1115 if (net_ratelimit())
1116 printk(KERN_WARNING "socket: no more sockets\n");
1117 return -ENFILE; /* Not exactly a match, but its the
1118 closest posix thing */
1119 }
1120
1121 sock->type = type;
1122
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123#if defined(CONFIG_KMOD)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001124 /* Attempt to load a protocol module if the find failed.
1125 *
1126 * 12/09/1996 Marcin: But! this makes REALLY only sense, if the user
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 * requested real, full-featured networking support upon configuration.
1128 * Otherwise module support will break!
1129 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001130 if (net_families[family] == NULL)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001131 request_module("net-pf-%d", family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132#endif
1133
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001134 rcu_read_lock();
1135 pf = rcu_dereference(net_families[family]);
1136 err = -EAFNOSUPPORT;
1137 if (!pf)
1138 goto out_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
1140 /*
1141 * We will call the ->create function, that possibly is in a loadable
1142 * module, so we have to bump that loadable module refcnt first.
1143 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001144 if (!try_module_get(pf->owner))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 goto out_release;
1146
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001147 /* Now protected by module ref count */
1148 rcu_read_unlock();
1149
1150 err = pf->create(sock, protocol);
1151 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 goto out_module_put;
Frank Filza79af592005-09-27 15:23:38 -07001153
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 /*
1155 * Now to bump the refcnt of the [loadable] module that owns this
1156 * socket at sock_release time we decrement its refcnt.
1157 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001158 if (!try_module_get(sock->ops->owner))
1159 goto out_module_busy;
1160
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 /*
1162 * Now that we're done with the ->create function, the [loadable]
1163 * module can have its refcnt decremented
1164 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001165 module_put(pf->owner);
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001166 err = security_socket_post_create(sock, family, type, protocol, kern);
1167 if (err)
1168 goto out_release;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001169 *res = sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001171 return 0;
1172
1173out_module_busy:
1174 err = -EAFNOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175out_module_put:
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001176 sock->ops = NULL;
1177 module_put(pf->owner);
1178out_sock_release:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 sock_release(sock);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001180 return err;
1181
1182out_release:
1183 rcu_read_unlock();
1184 goto out_sock_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185}
1186
1187int sock_create(int family, int type, int protocol, struct socket **res)
1188{
1189 return __sock_create(family, type, protocol, res, 0);
1190}
1191
1192int sock_create_kern(int family, int type, int protocol, struct socket **res)
1193{
1194 return __sock_create(family, type, protocol, res, 1);
1195}
1196
1197asmlinkage long sys_socket(int family, int type, int protocol)
1198{
1199 int retval;
1200 struct socket *sock;
1201
1202 retval = sock_create(family, type, protocol, &sock);
1203 if (retval < 0)
1204 goto out;
1205
1206 retval = sock_map_fd(sock);
1207 if (retval < 0)
1208 goto out_release;
1209
1210out:
1211 /* It may be already another descriptor 8) Not kernel problem. */
1212 return retval;
1213
1214out_release:
1215 sock_release(sock);
1216 return retval;
1217}
1218
1219/*
1220 * Create a pair of connected sockets.
1221 */
1222
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001223asmlinkage long sys_socketpair(int family, int type, int protocol,
1224 int __user *usockvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225{
1226 struct socket *sock1, *sock2;
1227 int fd1, fd2, err;
Al Virodb349502007-02-07 01:48:00 -05001228 struct file *newfile1, *newfile2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229
1230 /*
1231 * Obtain the first socket and check if the underlying protocol
1232 * supports the socketpair call.
1233 */
1234
1235 err = sock_create(family, type, protocol, &sock1);
1236 if (err < 0)
1237 goto out;
1238
1239 err = sock_create(family, type, protocol, &sock2);
1240 if (err < 0)
1241 goto out_release_1;
1242
1243 err = sock1->ops->socketpair(sock1, sock2);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001244 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 goto out_release_both;
1246
Al Virodb349502007-02-07 01:48:00 -05001247 fd1 = sock_alloc_fd(&newfile1);
1248 if (unlikely(fd1 < 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 goto out_release_both;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250
Al Virodb349502007-02-07 01:48:00 -05001251 fd2 = sock_alloc_fd(&newfile2);
1252 if (unlikely(fd2 < 0)) {
1253 put_filp(newfile1);
1254 put_unused_fd(fd1);
1255 goto out_release_both;
1256 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257
Al Virodb349502007-02-07 01:48:00 -05001258 err = sock_attach_fd(sock1, newfile1);
1259 if (unlikely(err < 0)) {
1260 goto out_fd2;
1261 }
1262
1263 err = sock_attach_fd(sock2, newfile2);
1264 if (unlikely(err < 0)) {
1265 fput(newfile1);
1266 goto out_fd1;
1267 }
1268
1269 err = audit_fd_pair(fd1, fd2);
1270 if (err < 0) {
1271 fput(newfile1);
1272 fput(newfile2);
1273 goto out_fd;
1274 }
1275
1276 fd_install(fd1, newfile1);
1277 fd_install(fd2, newfile2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 /* fd1 and fd2 may be already another descriptors.
1279 * Not kernel problem.
1280 */
1281
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001282 err = put_user(fd1, &usockvec[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 if (!err)
1284 err = put_user(fd2, &usockvec[1]);
1285 if (!err)
1286 return 0;
1287
1288 sys_close(fd2);
1289 sys_close(fd1);
1290 return err;
1291
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292out_release_both:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001293 sock_release(sock2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294out_release_1:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001295 sock_release(sock1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296out:
1297 return err;
Al Virodb349502007-02-07 01:48:00 -05001298
1299out_fd2:
1300 put_filp(newfile1);
1301 sock_release(sock1);
1302out_fd1:
1303 put_filp(newfile2);
1304 sock_release(sock2);
1305out_fd:
1306 put_unused_fd(fd1);
1307 put_unused_fd(fd2);
1308 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309}
1310
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311/*
1312 * Bind a name to a socket. Nothing much to do here since it's
1313 * the protocol's responsibility to handle the local address.
1314 *
1315 * We move the socket address to kernel space before we call
1316 * the protocol layer (having also checked the address is ok).
1317 */
1318
1319asmlinkage long sys_bind(int fd, struct sockaddr __user *umyaddr, int addrlen)
1320{
1321 struct socket *sock;
1322 char address[MAX_SOCK_ADDR];
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001323 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001325 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001326 if (sock) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001327 err = move_addr_to_kernel(umyaddr, addrlen, address);
1328 if (err >= 0) {
1329 err = security_socket_bind(sock,
1330 (struct sockaddr *)address,
1331 addrlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001332 if (!err)
1333 err = sock->ops->bind(sock,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001334 (struct sockaddr *)
1335 address, addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 }
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001337 fput_light(sock->file, fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001338 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 return err;
1340}
1341
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342/*
1343 * Perform a listen. Basically, we allow the protocol to do anything
1344 * necessary for a listen, and if that works, we mark the socket as
1345 * ready for listening.
1346 */
1347
Brian Haley7a42c212006-08-31 15:03:02 -07001348int sysctl_somaxconn __read_mostly = SOMAXCONN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349
1350asmlinkage long sys_listen(int fd, int backlog)
1351{
1352 struct socket *sock;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001353 int err, fput_needed;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001354
1355 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1356 if (sock) {
1357 if ((unsigned)backlog > sysctl_somaxconn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 backlog = sysctl_somaxconn;
1359
1360 err = security_socket_listen(sock, backlog);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001361 if (!err)
1362 err = sock->ops->listen(sock, backlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001364 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 }
1366 return err;
1367}
1368
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369/*
1370 * For accept, we attempt to create a new socket, set up the link
1371 * with the client, wake up the client, then return the new
1372 * connected fd. We collect the address of the connector in kernel
1373 * space and move it to user at the very end. This is unclean because
1374 * we open the socket then return an error.
1375 *
1376 * 1003.1g adds the ability to recvmsg() to query connection pending
1377 * status to recvmsg. We need to add that support in a way thats
1378 * clean when we restucture accept also.
1379 */
1380
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001381asmlinkage long sys_accept(int fd, struct sockaddr __user *upeer_sockaddr,
1382 int __user *upeer_addrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383{
1384 struct socket *sock, *newsock;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001385 struct file *newfile;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001386 int err, len, newfd, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 char address[MAX_SOCK_ADDR];
1388
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001389 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 if (!sock)
1391 goto out;
1392
1393 err = -ENFILE;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001394 if (!(newsock = sock_alloc()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 goto out_put;
1396
1397 newsock->type = sock->type;
1398 newsock->ops = sock->ops;
1399
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 /*
1401 * We don't need try_module_get here, as the listening socket (sock)
1402 * has the protocol module (sock->ops->owner) held.
1403 */
1404 __module_get(newsock->ops->owner);
1405
David S. Miller39d8c1b2006-03-20 17:13:49 -08001406 newfd = sock_alloc_fd(&newfile);
1407 if (unlikely(newfd < 0)) {
1408 err = newfd;
David S. Miller9a1875e2006-04-01 12:48:36 -08001409 sock_release(newsock);
1410 goto out_put;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001411 }
1412
1413 err = sock_attach_fd(newsock, newfile);
1414 if (err < 0)
Alexey Dobriyan79f4f642007-03-26 14:09:52 -07001415 goto out_fd_simple;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001416
Frank Filza79af592005-09-27 15:23:38 -07001417 err = security_socket_accept(sock, newsock);
1418 if (err)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001419 goto out_fd;
Frank Filza79af592005-09-27 15:23:38 -07001420
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 err = sock->ops->accept(sock, newsock, sock->file->f_flags);
1422 if (err < 0)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001423 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
1425 if (upeer_sockaddr) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001426 if (newsock->ops->getname(newsock, (struct sockaddr *)address,
1427 &len, 2) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 err = -ECONNABORTED;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001429 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001431 err = move_addr_to_user(address, len, upeer_sockaddr,
1432 upeer_addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 if (err < 0)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001434 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 }
1436
1437 /* File flags are not inherited via accept() unlike another OSes. */
1438
David S. Miller39d8c1b2006-03-20 17:13:49 -08001439 fd_install(newfd, newfile);
1440 err = newfd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
1442 security_socket_post_accept(sock, newsock);
1443
1444out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001445 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446out:
1447 return err;
Alexey Dobriyan79f4f642007-03-26 14:09:52 -07001448out_fd_simple:
1449 sock_release(newsock);
1450 put_filp(newfile);
1451 put_unused_fd(newfd);
1452 goto out_put;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001453out_fd:
David S. Miller9606a212006-04-01 01:00:14 -08001454 fput(newfile);
David S. Miller39d8c1b2006-03-20 17:13:49 -08001455 put_unused_fd(newfd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 goto out_put;
1457}
1458
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459/*
1460 * Attempt to connect to a socket with the server address. The address
1461 * is in user space so we verify it is OK and move it to kernel space.
1462 *
1463 * For 1003.1g we need to add clean support for a bind to AF_UNSPEC to
1464 * break bindings
1465 *
1466 * NOTE: 1003.1g draft 6.3 is broken with respect to AX.25/NetROM and
1467 * other SEQPACKET protocols that take time to connect() as it doesn't
1468 * include the -EINPROGRESS status for such sockets.
1469 */
1470
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001471asmlinkage long sys_connect(int fd, struct sockaddr __user *uservaddr,
1472 int addrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473{
1474 struct socket *sock;
1475 char address[MAX_SOCK_ADDR];
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001476 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001478 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 if (!sock)
1480 goto out;
1481 err = move_addr_to_kernel(uservaddr, addrlen, address);
1482 if (err < 0)
1483 goto out_put;
1484
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001485 err =
1486 security_socket_connect(sock, (struct sockaddr *)address, addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 if (err)
1488 goto out_put;
1489
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001490 err = sock->ops->connect(sock, (struct sockaddr *)address, addrlen,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 sock->file->f_flags);
1492out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001493 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494out:
1495 return err;
1496}
1497
1498/*
1499 * Get the local address ('name') of a socket object. Move the obtained
1500 * name to user space.
1501 */
1502
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001503asmlinkage long sys_getsockname(int fd, struct sockaddr __user *usockaddr,
1504 int __user *usockaddr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505{
1506 struct socket *sock;
1507 char address[MAX_SOCK_ADDR];
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001508 int len, err, fput_needed;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001509
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001510 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 if (!sock)
1512 goto out;
1513
1514 err = security_socket_getsockname(sock);
1515 if (err)
1516 goto out_put;
1517
1518 err = sock->ops->getname(sock, (struct sockaddr *)address, &len, 0);
1519 if (err)
1520 goto out_put;
1521 err = move_addr_to_user(address, len, usockaddr, usockaddr_len);
1522
1523out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001524 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525out:
1526 return err;
1527}
1528
1529/*
1530 * Get the remote address ('name') of a socket object. Move the obtained
1531 * name to user space.
1532 */
1533
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001534asmlinkage long sys_getpeername(int fd, struct sockaddr __user *usockaddr,
1535 int __user *usockaddr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536{
1537 struct socket *sock;
1538 char address[MAX_SOCK_ADDR];
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001539 int len, err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001541 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1542 if (sock != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 err = security_socket_getpeername(sock);
1544 if (err) {
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001545 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 return err;
1547 }
1548
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001549 err =
1550 sock->ops->getname(sock, (struct sockaddr *)address, &len,
1551 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 if (!err)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001553 err = move_addr_to_user(address, len, usockaddr,
1554 usockaddr_len);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001555 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 }
1557 return err;
1558}
1559
1560/*
1561 * Send a datagram to a given address. We move the address into kernel
1562 * space and check the user space data area is readable before invoking
1563 * the protocol.
1564 */
1565
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001566asmlinkage long sys_sendto(int fd, void __user *buff, size_t len,
1567 unsigned flags, struct sockaddr __user *addr,
1568 int addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569{
1570 struct socket *sock;
1571 char address[MAX_SOCK_ADDR];
1572 int err;
1573 struct msghdr msg;
1574 struct iovec iov;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001575 int fput_needed;
1576 struct file *sock_file;
1577
1578 sock_file = fget_light(fd, &fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08001579 err = -EBADF;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001580 if (!sock_file)
David S. Miller4387ff72007-02-08 15:06:08 -08001581 goto out;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001582
1583 sock = sock_from_file(sock_file, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 if (!sock)
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001585 goto out_put;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001586 iov.iov_base = buff;
1587 iov.iov_len = len;
1588 msg.msg_name = NULL;
1589 msg.msg_iov = &iov;
1590 msg.msg_iovlen = 1;
1591 msg.msg_control = NULL;
1592 msg.msg_controllen = 0;
1593 msg.msg_namelen = 0;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001594 if (addr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 err = move_addr_to_kernel(addr, addr_len, address);
1596 if (err < 0)
1597 goto out_put;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001598 msg.msg_name = address;
1599 msg.msg_namelen = addr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 }
1601 if (sock->file->f_flags & O_NONBLOCK)
1602 flags |= MSG_DONTWAIT;
1603 msg.msg_flags = flags;
1604 err = sock_sendmsg(sock, &msg, len);
1605
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001606out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001607 fput_light(sock_file, fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08001608out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 return err;
1610}
1611
1612/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001613 * Send a datagram down a socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 */
1615
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001616asmlinkage long sys_send(int fd, void __user *buff, size_t len, unsigned flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617{
1618 return sys_sendto(fd, buff, len, flags, NULL, 0);
1619}
1620
1621/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001622 * Receive a frame from the socket and optionally record the address of the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 * sender. We verify the buffers are writable and if needed move the
1624 * sender address from kernel to user space.
1625 */
1626
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001627asmlinkage long sys_recvfrom(int fd, void __user *ubuf, size_t size,
1628 unsigned flags, struct sockaddr __user *addr,
1629 int __user *addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630{
1631 struct socket *sock;
1632 struct iovec iov;
1633 struct msghdr msg;
1634 char address[MAX_SOCK_ADDR];
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001635 int err, err2;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001636 struct file *sock_file;
1637 int fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001639 sock_file = fget_light(fd, &fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08001640 err = -EBADF;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001641 if (!sock_file)
David S. Miller4387ff72007-02-08 15:06:08 -08001642 goto out;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001643
1644 sock = sock_from_file(sock_file, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 if (!sock)
David S. Miller4387ff72007-02-08 15:06:08 -08001646 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001648 msg.msg_control = NULL;
1649 msg.msg_controllen = 0;
1650 msg.msg_iovlen = 1;
1651 msg.msg_iov = &iov;
1652 iov.iov_len = size;
1653 iov.iov_base = ubuf;
1654 msg.msg_name = address;
1655 msg.msg_namelen = MAX_SOCK_ADDR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 if (sock->file->f_flags & O_NONBLOCK)
1657 flags |= MSG_DONTWAIT;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001658 err = sock_recvmsg(sock, &msg, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001660 if (err >= 0 && addr != NULL) {
1661 err2 = move_addr_to_user(address, msg.msg_namelen, addr, addr_len);
1662 if (err2 < 0)
1663 err = err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 }
David S. Miller4387ff72007-02-08 15:06:08 -08001665out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001666 fput_light(sock_file, fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08001667out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 return err;
1669}
1670
1671/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001672 * Receive a datagram from a socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 */
1674
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001675asmlinkage long sys_recv(int fd, void __user *ubuf, size_t size,
1676 unsigned flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677{
1678 return sys_recvfrom(fd, ubuf, size, flags, NULL, NULL);
1679}
1680
1681/*
1682 * Set a socket option. Because we don't know the option lengths we have
1683 * to pass the user mode parameter for the protocols to sort out.
1684 */
1685
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001686asmlinkage long sys_setsockopt(int fd, int level, int optname,
1687 char __user *optval, int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001689 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 struct socket *sock;
1691
1692 if (optlen < 0)
1693 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001694
1695 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1696 if (sock != NULL) {
1697 err = security_socket_setsockopt(sock, level, optname);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001698 if (err)
1699 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700
1701 if (level == SOL_SOCKET)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001702 err =
1703 sock_setsockopt(sock, level, optname, optval,
1704 optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 else
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001706 err =
1707 sock->ops->setsockopt(sock, level, optname, optval,
1708 optlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001709out_put:
1710 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 }
1712 return err;
1713}
1714
1715/*
1716 * Get a socket option. Because we don't know the option lengths we have
1717 * to pass a user mode parameter for the protocols to sort out.
1718 */
1719
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001720asmlinkage long sys_getsockopt(int fd, int level, int optname,
1721 char __user *optval, int __user *optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001723 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 struct socket *sock;
1725
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001726 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1727 if (sock != NULL) {
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001728 err = security_socket_getsockopt(sock, level, optname);
1729 if (err)
1730 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731
1732 if (level == SOL_SOCKET)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001733 err =
1734 sock_getsockopt(sock, level, optname, optval,
1735 optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 else
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001737 err =
1738 sock->ops->getsockopt(sock, level, optname, optval,
1739 optlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001740out_put:
1741 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 }
1743 return err;
1744}
1745
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746/*
1747 * Shutdown a socket.
1748 */
1749
1750asmlinkage long sys_shutdown(int fd, int how)
1751{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001752 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 struct socket *sock;
1754
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001755 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1756 if (sock != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 err = security_socket_shutdown(sock, how);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001758 if (!err)
1759 err = sock->ops->shutdown(sock, how);
1760 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 }
1762 return err;
1763}
1764
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001765/* A couple of helpful macros for getting the address of the 32/64 bit
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 * fields which are the same type (int / unsigned) on our platforms.
1767 */
1768#define COMPAT_MSG(msg, member) ((MSG_CMSG_COMPAT & flags) ? &msg##_compat->member : &msg->member)
1769#define COMPAT_NAMELEN(msg) COMPAT_MSG(msg, msg_namelen)
1770#define COMPAT_FLAGS(msg) COMPAT_MSG(msg, msg_flags)
1771
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772/*
1773 * BSD sendmsg interface
1774 */
1775
1776asmlinkage long sys_sendmsg(int fd, struct msghdr __user *msg, unsigned flags)
1777{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001778 struct compat_msghdr __user *msg_compat =
1779 (struct compat_msghdr __user *)msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 struct socket *sock;
1781 char address[MAX_SOCK_ADDR];
1782 struct iovec iovstack[UIO_FASTIOV], *iov = iovstack;
Alex Williamsonb9d717a2005-09-26 14:28:02 -07001783 unsigned char ctl[sizeof(struct cmsghdr) + 20]
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001784 __attribute__ ((aligned(sizeof(__kernel_size_t))));
1785 /* 20 is size of ipv6_pktinfo */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 unsigned char *ctl_buf = ctl;
1787 struct msghdr msg_sys;
1788 int err, ctl_len, iov_size, total_len;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001789 int fput_needed;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001790
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 err = -EFAULT;
1792 if (MSG_CMSG_COMPAT & flags) {
1793 if (get_compat_msghdr(&msg_sys, msg_compat))
1794 return -EFAULT;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001795 }
1796 else if (copy_from_user(&msg_sys, msg, sizeof(struct msghdr)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 return -EFAULT;
1798
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001799 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001800 if (!sock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 goto out;
1802
1803 /* do not move before msg_sys is valid */
1804 err = -EMSGSIZE;
1805 if (msg_sys.msg_iovlen > UIO_MAXIOV)
1806 goto out_put;
1807
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001808 /* Check whether to allocate the iovec area */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 err = -ENOMEM;
1810 iov_size = msg_sys.msg_iovlen * sizeof(struct iovec);
1811 if (msg_sys.msg_iovlen > UIO_FASTIOV) {
1812 iov = sock_kmalloc(sock->sk, iov_size, GFP_KERNEL);
1813 if (!iov)
1814 goto out_put;
1815 }
1816
1817 /* This will also move the address data into kernel space */
1818 if (MSG_CMSG_COMPAT & flags) {
1819 err = verify_compat_iovec(&msg_sys, iov, address, VERIFY_READ);
1820 } else
1821 err = verify_iovec(&msg_sys, iov, address, VERIFY_READ);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001822 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 goto out_freeiov;
1824 total_len = err;
1825
1826 err = -ENOBUFS;
1827
1828 if (msg_sys.msg_controllen > INT_MAX)
1829 goto out_freeiov;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001830 ctl_len = msg_sys.msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 if ((MSG_CMSG_COMPAT & flags) && ctl_len) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001832 err =
1833 cmsghdr_from_user_compat_to_kern(&msg_sys, sock->sk, ctl,
1834 sizeof(ctl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 if (err)
1836 goto out_freeiov;
1837 ctl_buf = msg_sys.msg_control;
Al Viro8920e8f2005-09-07 18:28:51 -07001838 ctl_len = msg_sys.msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 } else if (ctl_len) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001840 if (ctl_len > sizeof(ctl)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 ctl_buf = sock_kmalloc(sock->sk, ctl_len, GFP_KERNEL);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001842 if (ctl_buf == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 goto out_freeiov;
1844 }
1845 err = -EFAULT;
1846 /*
1847 * Careful! Before this, msg_sys.msg_control contains a user pointer.
1848 * Afterwards, it will be a kernel pointer. Thus the compiler-assisted
1849 * checking falls down on this.
1850 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001851 if (copy_from_user(ctl_buf, (void __user *)msg_sys.msg_control,
1852 ctl_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 goto out_freectl;
1854 msg_sys.msg_control = ctl_buf;
1855 }
1856 msg_sys.msg_flags = flags;
1857
1858 if (sock->file->f_flags & O_NONBLOCK)
1859 msg_sys.msg_flags |= MSG_DONTWAIT;
1860 err = sock_sendmsg(sock, &msg_sys, total_len);
1861
1862out_freectl:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001863 if (ctl_buf != ctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 sock_kfree_s(sock->sk, ctl_buf, ctl_len);
1865out_freeiov:
1866 if (iov != iovstack)
1867 sock_kfree_s(sock->sk, iov, iov_size);
1868out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001869 fput_light(sock->file, fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001870out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 return err;
1872}
1873
1874/*
1875 * BSD recvmsg interface
1876 */
1877
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001878asmlinkage long sys_recvmsg(int fd, struct msghdr __user *msg,
1879 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001881 struct compat_msghdr __user *msg_compat =
1882 (struct compat_msghdr __user *)msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 struct socket *sock;
1884 struct iovec iovstack[UIO_FASTIOV];
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001885 struct iovec *iov = iovstack;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 struct msghdr msg_sys;
1887 unsigned long cmsg_ptr;
1888 int err, iov_size, total_len, len;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001889 int fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890
1891 /* kernel mode address */
1892 char addr[MAX_SOCK_ADDR];
1893
1894 /* user mode address pointers */
1895 struct sockaddr __user *uaddr;
1896 int __user *uaddr_len;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001897
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 if (MSG_CMSG_COMPAT & flags) {
1899 if (get_compat_msghdr(&msg_sys, msg_compat))
1900 return -EFAULT;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001901 }
1902 else if (copy_from_user(&msg_sys, msg, sizeof(struct msghdr)))
1903 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001905 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 if (!sock)
1907 goto out;
1908
1909 err = -EMSGSIZE;
1910 if (msg_sys.msg_iovlen > UIO_MAXIOV)
1911 goto out_put;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001912
1913 /* Check whether to allocate the iovec area */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 err = -ENOMEM;
1915 iov_size = msg_sys.msg_iovlen * sizeof(struct iovec);
1916 if (msg_sys.msg_iovlen > UIO_FASTIOV) {
1917 iov = sock_kmalloc(sock->sk, iov_size, GFP_KERNEL);
1918 if (!iov)
1919 goto out_put;
1920 }
1921
1922 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001923 * Save the user-mode address (verify_iovec will change the
1924 * kernel msghdr to use the kernel address space)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001926
1927 uaddr = (void __user *)msg_sys.msg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 uaddr_len = COMPAT_NAMELEN(msg);
1929 if (MSG_CMSG_COMPAT & flags) {
1930 err = verify_compat_iovec(&msg_sys, iov, addr, VERIFY_WRITE);
1931 } else
1932 err = verify_iovec(&msg_sys, iov, addr, VERIFY_WRITE);
1933 if (err < 0)
1934 goto out_freeiov;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001935 total_len = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936
1937 cmsg_ptr = (unsigned long)msg_sys.msg_control;
1938 msg_sys.msg_flags = 0;
1939 if (MSG_CMSG_COMPAT & flags)
1940 msg_sys.msg_flags = MSG_CMSG_COMPAT;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001941
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 if (sock->file->f_flags & O_NONBLOCK)
1943 flags |= MSG_DONTWAIT;
1944 err = sock_recvmsg(sock, &msg_sys, total_len, flags);
1945 if (err < 0)
1946 goto out_freeiov;
1947 len = err;
1948
1949 if (uaddr != NULL) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001950 err = move_addr_to_user(addr, msg_sys.msg_namelen, uaddr,
1951 uaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 if (err < 0)
1953 goto out_freeiov;
1954 }
David S. Miller37f7f422005-09-16 16:51:01 -07001955 err = __put_user((msg_sys.msg_flags & ~MSG_CMSG_COMPAT),
1956 COMPAT_FLAGS(msg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 if (err)
1958 goto out_freeiov;
1959 if (MSG_CMSG_COMPAT & flags)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001960 err = __put_user((unsigned long)msg_sys.msg_control - cmsg_ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 &msg_compat->msg_controllen);
1962 else
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001963 err = __put_user((unsigned long)msg_sys.msg_control - cmsg_ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 &msg->msg_controllen);
1965 if (err)
1966 goto out_freeiov;
1967 err = len;
1968
1969out_freeiov:
1970 if (iov != iovstack)
1971 sock_kfree_s(sock->sk, iov, iov_size);
1972out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001973 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974out:
1975 return err;
1976}
1977
1978#ifdef __ARCH_WANT_SYS_SOCKETCALL
1979
1980/* Argument list sizes for sys_socketcall */
1981#define AL(x) ((x) * sizeof(unsigned long))
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001982static const unsigned char nargs[18]={
1983 AL(0),AL(3),AL(3),AL(3),AL(2),AL(3),
1984 AL(3),AL(3),AL(4),AL(4),AL(4),AL(6),
1985 AL(6),AL(2),AL(5),AL(5),AL(3),AL(3)
1986};
1987
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988#undef AL
1989
1990/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001991 * System call vectors.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 *
1993 * Argument checking cleaned up. Saved 20% in size.
1994 * This function doesn't need to set the kernel lock because
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001995 * it is set by the callees.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 */
1997
1998asmlinkage long sys_socketcall(int call, unsigned long __user *args)
1999{
2000 unsigned long a[6];
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002001 unsigned long a0, a1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 int err;
2003
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002004 if (call < 1 || call > SYS_RECVMSG)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 return -EINVAL;
2006
2007 /* copy_from_user should be SMP safe. */
2008 if (copy_from_user(a, args, nargs[call]))
2009 return -EFAULT;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002010
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002011 err = audit_socketcall(nargs[call] / sizeof(unsigned long), a);
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002012 if (err)
2013 return err;
2014
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002015 a0 = a[0];
2016 a1 = a[1];
2017
2018 switch (call) {
2019 case SYS_SOCKET:
2020 err = sys_socket(a0, a1, a[2]);
2021 break;
2022 case SYS_BIND:
2023 err = sys_bind(a0, (struct sockaddr __user *)a1, a[2]);
2024 break;
2025 case SYS_CONNECT:
2026 err = sys_connect(a0, (struct sockaddr __user *)a1, a[2]);
2027 break;
2028 case SYS_LISTEN:
2029 err = sys_listen(a0, a1);
2030 break;
2031 case SYS_ACCEPT:
2032 err =
2033 sys_accept(a0, (struct sockaddr __user *)a1,
2034 (int __user *)a[2]);
2035 break;
2036 case SYS_GETSOCKNAME:
2037 err =
2038 sys_getsockname(a0, (struct sockaddr __user *)a1,
2039 (int __user *)a[2]);
2040 break;
2041 case SYS_GETPEERNAME:
2042 err =
2043 sys_getpeername(a0, (struct sockaddr __user *)a1,
2044 (int __user *)a[2]);
2045 break;
2046 case SYS_SOCKETPAIR:
2047 err = sys_socketpair(a0, a1, a[2], (int __user *)a[3]);
2048 break;
2049 case SYS_SEND:
2050 err = sys_send(a0, (void __user *)a1, a[2], a[3]);
2051 break;
2052 case SYS_SENDTO:
2053 err = sys_sendto(a0, (void __user *)a1, a[2], a[3],
2054 (struct sockaddr __user *)a[4], a[5]);
2055 break;
2056 case SYS_RECV:
2057 err = sys_recv(a0, (void __user *)a1, a[2], a[3]);
2058 break;
2059 case SYS_RECVFROM:
2060 err = sys_recvfrom(a0, (void __user *)a1, a[2], a[3],
2061 (struct sockaddr __user *)a[4],
2062 (int __user *)a[5]);
2063 break;
2064 case SYS_SHUTDOWN:
2065 err = sys_shutdown(a0, a1);
2066 break;
2067 case SYS_SETSOCKOPT:
2068 err = sys_setsockopt(a0, a1, a[2], (char __user *)a[3], a[4]);
2069 break;
2070 case SYS_GETSOCKOPT:
2071 err =
2072 sys_getsockopt(a0, a1, a[2], (char __user *)a[3],
2073 (int __user *)a[4]);
2074 break;
2075 case SYS_SENDMSG:
2076 err = sys_sendmsg(a0, (struct msghdr __user *)a1, a[2]);
2077 break;
2078 case SYS_RECVMSG:
2079 err = sys_recvmsg(a0, (struct msghdr __user *)a1, a[2]);
2080 break;
2081 default:
2082 err = -EINVAL;
2083 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 }
2085 return err;
2086}
2087
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002088#endif /* __ARCH_WANT_SYS_SOCKETCALL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002090/**
2091 * sock_register - add a socket protocol handler
2092 * @ops: description of protocol
2093 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 * This function is called by a protocol handler that wants to
2095 * advertise its address family, and have it linked into the
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002096 * socket interface. The value ops->family coresponds to the
2097 * socket system call protocol family.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 */
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002099int sock_register(const struct net_proto_family *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100{
2101 int err;
2102
2103 if (ops->family >= NPROTO) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002104 printk(KERN_CRIT "protocol %d >= NPROTO(%d)\n", ops->family,
2105 NPROTO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 return -ENOBUFS;
2107 }
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002108
2109 spin_lock(&net_family_lock);
2110 if (net_families[ops->family])
2111 err = -EEXIST;
2112 else {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002113 net_families[ops->family] = ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 err = 0;
2115 }
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002116 spin_unlock(&net_family_lock);
2117
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002118 printk(KERN_INFO "NET: Registered protocol family %d\n", ops->family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 return err;
2120}
2121
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002122/**
2123 * sock_unregister - remove a protocol handler
2124 * @family: protocol family to remove
2125 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 * This function is called by a protocol handler that wants to
2127 * remove its address family, and have it unlinked from the
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002128 * new socket creation.
2129 *
2130 * If protocol handler is a module, then it can use module reference
2131 * counts to protect against new references. If protocol handler is not
2132 * a module then it needs to provide its own protection in
2133 * the ops->create routine.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 */
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002135void sock_unregister(int family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136{
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002137 BUG_ON(family < 0 || family >= NPROTO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002139 spin_lock(&net_family_lock);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002140 net_families[family] = NULL;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002141 spin_unlock(&net_family_lock);
2142
2143 synchronize_rcu();
2144
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002145 printk(KERN_INFO "NET: Unregistered protocol family %d\n", family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146}
2147
Andi Kleen77d76ea2005-12-22 12:43:42 -08002148static int __init sock_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149{
2150 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002151 * Initialize sock SLAB cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002153
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 sk_init();
2155
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002157 * Initialize skbuff SLAB cache
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 */
2159 skb_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160
2161 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002162 * Initialize the protocols module.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 */
2164
2165 init_inodecache();
2166 register_filesystem(&sock_fs_type);
2167 sock_mnt = kern_mount(&sock_fs_type);
Andi Kleen77d76ea2005-12-22 12:43:42 -08002168
2169 /* The real protocol initialization is performed in later initcalls.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 */
2171
2172#ifdef CONFIG_NETFILTER
2173 netfilter_init();
2174#endif
David S. Millercbeb3212005-12-22 12:58:55 -08002175
2176 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177}
2178
Andi Kleen77d76ea2005-12-22 12:43:42 -08002179core_initcall(sock_init); /* early initcall */
2180
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181#ifdef CONFIG_PROC_FS
2182void socket_seq_show(struct seq_file *seq)
2183{
2184 int cpu;
2185 int counter = 0;
2186
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -07002187 for_each_possible_cpu(cpu)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002188 counter += per_cpu(sockets_in_use, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189
2190 /* It can be negative, by the way. 8) */
2191 if (counter < 0)
2192 counter = 0;
2193
2194 seq_printf(seq, "sockets: used %d\n", counter);
2195}
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002196#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197
Shaun Pereira89bbfc92006-03-21 23:58:08 -08002198#ifdef CONFIG_COMPAT
2199static long compat_sock_ioctl(struct file *file, unsigned cmd,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002200 unsigned long arg)
Shaun Pereira89bbfc92006-03-21 23:58:08 -08002201{
2202 struct socket *sock = file->private_data;
2203 int ret = -ENOIOCTLCMD;
2204
2205 if (sock->ops->compat_ioctl)
2206 ret = sock->ops->compat_ioctl(sock, cmd, arg);
2207
2208 return ret;
2209}
2210#endif
2211
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07002212int kernel_bind(struct socket *sock, struct sockaddr *addr, int addrlen)
2213{
2214 return sock->ops->bind(sock, addr, addrlen);
2215}
2216
2217int kernel_listen(struct socket *sock, int backlog)
2218{
2219 return sock->ops->listen(sock, backlog);
2220}
2221
2222int kernel_accept(struct socket *sock, struct socket **newsock, int flags)
2223{
2224 struct sock *sk = sock->sk;
2225 int err;
2226
2227 err = sock_create_lite(sk->sk_family, sk->sk_type, sk->sk_protocol,
2228 newsock);
2229 if (err < 0)
2230 goto done;
2231
2232 err = sock->ops->accept(sock, *newsock, flags);
2233 if (err < 0) {
2234 sock_release(*newsock);
2235 goto done;
2236 }
2237
2238 (*newsock)->ops = sock->ops;
2239
2240done:
2241 return err;
2242}
2243
2244int kernel_connect(struct socket *sock, struct sockaddr *addr, int addrlen,
YOSHIFUJI Hideaki4768fbc2007-02-09 23:25:31 +09002245 int flags)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07002246{
2247 return sock->ops->connect(sock, addr, addrlen, flags);
2248}
2249
2250int kernel_getsockname(struct socket *sock, struct sockaddr *addr,
2251 int *addrlen)
2252{
2253 return sock->ops->getname(sock, addr, addrlen, 0);
2254}
2255
2256int kernel_getpeername(struct socket *sock, struct sockaddr *addr,
2257 int *addrlen)
2258{
2259 return sock->ops->getname(sock, addr, addrlen, 1);
2260}
2261
2262int kernel_getsockopt(struct socket *sock, int level, int optname,
2263 char *optval, int *optlen)
2264{
2265 mm_segment_t oldfs = get_fs();
2266 int err;
2267
2268 set_fs(KERNEL_DS);
2269 if (level == SOL_SOCKET)
2270 err = sock_getsockopt(sock, level, optname, optval, optlen);
2271 else
2272 err = sock->ops->getsockopt(sock, level, optname, optval,
2273 optlen);
2274 set_fs(oldfs);
2275 return err;
2276}
2277
2278int kernel_setsockopt(struct socket *sock, int level, int optname,
2279 char *optval, int optlen)
2280{
2281 mm_segment_t oldfs = get_fs();
2282 int err;
2283
2284 set_fs(KERNEL_DS);
2285 if (level == SOL_SOCKET)
2286 err = sock_setsockopt(sock, level, optname, optval, optlen);
2287 else
2288 err = sock->ops->setsockopt(sock, level, optname, optval,
2289 optlen);
2290 set_fs(oldfs);
2291 return err;
2292}
2293
2294int kernel_sendpage(struct socket *sock, struct page *page, int offset,
2295 size_t size, int flags)
2296{
2297 if (sock->ops->sendpage)
2298 return sock->ops->sendpage(sock, page, offset, size, flags);
2299
2300 return sock_no_sendpage(sock, page, offset, size, flags);
2301}
2302
2303int kernel_sock_ioctl(struct socket *sock, int cmd, unsigned long arg)
2304{
2305 mm_segment_t oldfs = get_fs();
2306 int err;
2307
2308 set_fs(KERNEL_DS);
2309 err = sock->ops->ioctl(sock, cmd, arg);
2310 set_fs(oldfs);
2311
2312 return err;
2313}
2314
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315/* ABI emulation layers need these two */
2316EXPORT_SYMBOL(move_addr_to_kernel);
2317EXPORT_SYMBOL(move_addr_to_user);
2318EXPORT_SYMBOL(sock_create);
2319EXPORT_SYMBOL(sock_create_kern);
2320EXPORT_SYMBOL(sock_create_lite);
2321EXPORT_SYMBOL(sock_map_fd);
2322EXPORT_SYMBOL(sock_recvmsg);
2323EXPORT_SYMBOL(sock_register);
2324EXPORT_SYMBOL(sock_release);
2325EXPORT_SYMBOL(sock_sendmsg);
2326EXPORT_SYMBOL(sock_unregister);
2327EXPORT_SYMBOL(sock_wake_async);
2328EXPORT_SYMBOL(sockfd_lookup);
2329EXPORT_SYMBOL(kernel_sendmsg);
2330EXPORT_SYMBOL(kernel_recvmsg);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07002331EXPORT_SYMBOL(kernel_bind);
2332EXPORT_SYMBOL(kernel_listen);
2333EXPORT_SYMBOL(kernel_accept);
2334EXPORT_SYMBOL(kernel_connect);
2335EXPORT_SYMBOL(kernel_getsockname);
2336EXPORT_SYMBOL(kernel_getpeername);
2337EXPORT_SYMBOL(kernel_getsockopt);
2338EXPORT_SYMBOL(kernel_setsockopt);
2339EXPORT_SYMBOL(kernel_sendpage);
2340EXPORT_SYMBOL(kernel_sock_ioctl);