blob: 759825b7ca263b4073d39338debc7a4a04a4a6a1 [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
Christoph Lameter50953fe2007-05-06 14:50:16 -0700264 if (flags & SLAB_CTOR_CONSTRUCTOR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 inode_init_once(&ei->vfs_inode);
266}
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700267
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268static int init_inodecache(void)
269{
270 sock_inode_cachep = kmem_cache_create("sock_inode_cache",
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700271 sizeof(struct socket_alloc),
272 0,
273 (SLAB_HWCACHE_ALIGN |
274 SLAB_RECLAIM_ACCOUNT |
275 SLAB_MEM_SPREAD),
276 init_once,
277 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 if (sock_inode_cachep == NULL)
279 return -ENOMEM;
280 return 0;
281}
282
283static struct super_operations sockfs_ops = {
284 .alloc_inode = sock_alloc_inode,
285 .destroy_inode =sock_destroy_inode,
286 .statfs = simple_statfs,
287};
288
David Howells454e2392006-06-23 02:02:57 -0700289static int sockfs_get_sb(struct file_system_type *fs_type,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700290 int flags, const char *dev_name, void *data,
291 struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292{
David Howells454e2392006-06-23 02:02:57 -0700293 return get_sb_pseudo(fs_type, "socket:", &sockfs_ops, SOCKFS_MAGIC,
294 mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295}
296
Eric Dumazetba899662005-08-26 12:05:31 -0700297static struct vfsmount *sock_mnt __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
299static struct file_system_type sock_fs_type = {
300 .name = "sockfs",
301 .get_sb = sockfs_get_sb,
302 .kill_sb = kill_anon_super,
303};
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305static int sockfs_delete_dentry(struct dentry *dentry)
306{
Eric Dumazet304e61e2006-12-06 20:38:49 -0800307 /*
308 * At creation time, we pretended this dentry was hashed
309 * (by clearing DCACHE_UNHASHED bit in d_flags)
310 * At delete time, we restore the truth : not hashed.
311 * (so that dput() can proceed correctly)
312 */
313 dentry->d_flags |= DCACHE_UNHASHED;
314 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315}
316static struct dentry_operations sockfs_dentry_operations = {
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700317 .d_delete = sockfs_delete_dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318};
319
320/*
321 * Obtains the first available file descriptor and sets it up for use.
322 *
David S. Miller39d8c1b2006-03-20 17:13:49 -0800323 * These functions create file structures and maps them to fd space
324 * of the current process. On success it returns file descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 * and file struct implicitly stored in sock->file.
326 * Note that another thread may close file descriptor before we return
327 * from this function. We use the fact that now we do not refer
328 * to socket after mapping. If one day we will need it, this
329 * function will increment ref. count on file by 1.
330 *
331 * In any case returned fd MAY BE not valid!
332 * This race condition is unavoidable
333 * with shared fd spaces, we cannot solve it inside kernel,
334 * but we take care of internal coherence yet.
335 */
336
David S. Miller39d8c1b2006-03-20 17:13:49 -0800337static int sock_alloc_fd(struct file **filep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338{
339 int fd;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800340
341 fd = get_unused_fd();
342 if (likely(fd >= 0)) {
343 struct file *file = get_empty_filp();
344
345 *filep = file;
346 if (unlikely(!file)) {
347 put_unused_fd(fd);
348 return -ENFILE;
349 }
350 } else
351 *filep = NULL;
352 return fd;
353}
354
355static int sock_attach_fd(struct socket *sock, struct file *file)
356{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 struct qstr this;
358 char name[32];
359
David S. Miller39d8c1b2006-03-20 17:13:49 -0800360 this.len = sprintf(name, "[%lu]", SOCK_INODE(sock)->i_ino);
361 this.name = name;
Eric Dumazet304e61e2006-12-06 20:38:49 -0800362 this.hash = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
Josef Sipek3126a422006-12-08 02:37:23 -0800364 file->f_path.dentry = d_alloc(sock_mnt->mnt_sb->s_root, &this);
365 if (unlikely(!file->f_path.dentry))
David S. Miller39d8c1b2006-03-20 17:13:49 -0800366 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Josef Sipek3126a422006-12-08 02:37:23 -0800368 file->f_path.dentry->d_op = &sockfs_dentry_operations;
Eric Dumazet304e61e2006-12-06 20:38:49 -0800369 /*
370 * We dont want to push this dentry into global dentry hash table.
371 * We pretend dentry is already hashed, by unsetting DCACHE_UNHASHED
372 * This permits a working /proc/$pid/fd/XXX on sockets
373 */
Josef Sipek3126a422006-12-08 02:37:23 -0800374 file->f_path.dentry->d_flags &= ~DCACHE_UNHASHED;
375 d_instantiate(file->f_path.dentry, SOCK_INODE(sock));
376 file->f_path.mnt = mntget(sock_mnt);
377 file->f_mapping = file->f_path.dentry->d_inode->i_mapping;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800378
379 sock->file = file;
380 file->f_op = SOCK_INODE(sock)->i_fop = &socket_file_ops;
381 file->f_mode = FMODE_READ | FMODE_WRITE;
382 file->f_flags = O_RDWR;
383 file->f_pos = 0;
384 file->private_data = sock;
385
386 return 0;
387}
388
389int sock_map_fd(struct socket *sock)
390{
391 struct file *newfile;
392 int fd = sock_alloc_fd(&newfile);
393
394 if (likely(fd >= 0)) {
395 int err = sock_attach_fd(sock, newfile);
396
397 if (unlikely(err < 0)) {
398 put_filp(newfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 put_unused_fd(fd);
David S. Miller39d8c1b2006-03-20 17:13:49 -0800400 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 }
David S. Miller39d8c1b2006-03-20 17:13:49 -0800402 fd_install(fd, newfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 return fd;
405}
406
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800407static struct socket *sock_from_file(struct file *file, int *err)
408{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800409 if (file->f_op == &socket_file_ops)
410 return file->private_data; /* set in sock_map_fd */
411
Eric Dumazet23bb80d2007-02-08 14:59:57 -0800412 *err = -ENOTSOCK;
413 return NULL;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800414}
415
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416/**
417 * sockfd_lookup - Go from a file number to its socket slot
418 * @fd: file handle
419 * @err: pointer to an error code return
420 *
421 * The file handle passed in is locked and the socket it is bound
422 * too is returned. If an error occurs the err pointer is overwritten
423 * with a negative errno code and NULL is returned. The function checks
424 * for both invalid handles and passing a handle which is not a socket.
425 *
426 * On a success the socket object pointer is returned.
427 */
428
429struct socket *sockfd_lookup(int fd, int *err)
430{
431 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 struct socket *sock;
433
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700434 file = fget(fd);
435 if (!file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 *err = -EBADF;
437 return NULL;
438 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700439
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800440 sock = sock_from_file(file, err);
441 if (!sock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 fput(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 return sock;
444}
445
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800446static struct socket *sockfd_lookup_light(int fd, int *err, int *fput_needed)
447{
448 struct file *file;
449 struct socket *sock;
450
Hua Zhong36725582006-04-19 15:25:02 -0700451 *err = -EBADF;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800452 file = fget_light(fd, fput_needed);
453 if (file) {
454 sock = sock_from_file(file, err);
455 if (sock)
456 return sock;
457 fput_light(file, *fput_needed);
458 }
459 return NULL;
460}
461
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462/**
463 * sock_alloc - allocate a socket
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700464 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 * Allocate a new inode and socket object. The two are bound together
466 * and initialised. The socket is then returned. If we are out of inodes
467 * NULL is returned.
468 */
469
470static struct socket *sock_alloc(void)
471{
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700472 struct inode *inode;
473 struct socket *sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
475 inode = new_inode(sock_mnt->mnt_sb);
476 if (!inode)
477 return NULL;
478
479 sock = SOCKET_I(inode);
480
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700481 inode->i_mode = S_IFSOCK | S_IRWXUGO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 inode->i_uid = current->fsuid;
483 inode->i_gid = current->fsgid;
484
485 get_cpu_var(sockets_in_use)++;
486 put_cpu_var(sockets_in_use);
487 return sock;
488}
489
490/*
491 * In theory you can't get an open on this inode, but /proc provides
492 * a back door. Remember to keep it shut otherwise you'll let the
493 * creepy crawlies in.
494 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700495
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496static int sock_no_open(struct inode *irrelevant, struct file *dontcare)
497{
498 return -ENXIO;
499}
500
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800501const struct file_operations bad_sock_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 .owner = THIS_MODULE,
503 .open = sock_no_open,
504};
505
506/**
507 * sock_release - close a socket
508 * @sock: socket to close
509 *
510 * The socket is released from the protocol stack if it has a release
511 * callback, and the inode is then released if the socket is bound to
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700512 * an inode not a file.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700514
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515void sock_release(struct socket *sock)
516{
517 if (sock->ops) {
518 struct module *owner = sock->ops->owner;
519
520 sock->ops->release(sock);
521 sock->ops = NULL;
522 module_put(owner);
523 }
524
525 if (sock->fasync_list)
526 printk(KERN_ERR "sock_release: fasync list not empty!\n");
527
528 get_cpu_var(sockets_in_use)--;
529 put_cpu_var(sockets_in_use);
530 if (!sock->file) {
531 iput(SOCK_INODE(sock));
532 return;
533 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700534 sock->file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535}
536
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700537static inline int __sock_sendmsg(struct kiocb *iocb, struct socket *sock,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 struct msghdr *msg, size_t size)
539{
540 struct sock_iocb *si = kiocb_to_siocb(iocb);
541 int err;
542
543 si->sock = sock;
544 si->scm = NULL;
545 si->msg = msg;
546 si->size = size;
547
548 err = security_socket_sendmsg(sock, msg, size);
549 if (err)
550 return err;
551
552 return sock->ops->sendmsg(iocb, sock, msg, size);
553}
554
555int sock_sendmsg(struct socket *sock, struct msghdr *msg, size_t size)
556{
557 struct kiocb iocb;
558 struct sock_iocb siocb;
559 int ret;
560
561 init_sync_kiocb(&iocb, NULL);
562 iocb.private = &siocb;
563 ret = __sock_sendmsg(&iocb, sock, msg, size);
564 if (-EIOCBQUEUED == ret)
565 ret = wait_on_sync_kiocb(&iocb);
566 return ret;
567}
568
569int kernel_sendmsg(struct socket *sock, struct msghdr *msg,
570 struct kvec *vec, size_t num, size_t size)
571{
572 mm_segment_t oldfs = get_fs();
573 int result;
574
575 set_fs(KERNEL_DS);
576 /*
577 * the following is safe, since for compiler definitions of kvec and
578 * iovec are identical, yielding the same in-core layout and alignment
579 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700580 msg->msg_iov = (struct iovec *)vec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 msg->msg_iovlen = num;
582 result = sock_sendmsg(sock, msg, size);
583 set_fs(oldfs);
584 return result;
585}
586
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700587/*
588 * called from sock_recv_timestamp() if sock_flag(sk, SOCK_RCVTSTAMP)
589 */
590void __sock_recv_timestamp(struct msghdr *msg, struct sock *sk,
591 struct sk_buff *skb)
592{
593 ktime_t kt = skb->tstamp;
594
595 if (!sock_flag(sk, SOCK_RCVTSTAMPNS)) {
596 struct timeval tv;
597 /* Race occurred between timestamp enabling and packet
598 receiving. Fill in the current time for now. */
599 if (kt.tv64 == 0)
600 kt = ktime_get_real();
601 skb->tstamp = kt;
602 tv = ktime_to_timeval(kt);
603 put_cmsg(msg, SOL_SOCKET, SCM_TIMESTAMP, sizeof(tv), &tv);
604 } else {
605 struct timespec ts;
606 /* Race occurred between timestamp enabling and packet
607 receiving. Fill in the current time for now. */
608 if (kt.tv64 == 0)
609 kt = ktime_get_real();
610 skb->tstamp = kt;
611 ts = ktime_to_timespec(kt);
612 put_cmsg(msg, SOL_SOCKET, SCM_TIMESTAMPNS, sizeof(ts), &ts);
613 }
614}
615
Arnaldo Carvalho de Melo7c81fd82007-03-10 00:39:35 -0300616EXPORT_SYMBOL_GPL(__sock_recv_timestamp);
617
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700618static inline int __sock_recvmsg(struct kiocb *iocb, struct socket *sock,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 struct msghdr *msg, size_t size, int flags)
620{
621 int err;
622 struct sock_iocb *si = kiocb_to_siocb(iocb);
623
624 si->sock = sock;
625 si->scm = NULL;
626 si->msg = msg;
627 si->size = size;
628 si->flags = flags;
629
630 err = security_socket_recvmsg(sock, msg, size, flags);
631 if (err)
632 return err;
633
634 return sock->ops->recvmsg(iocb, sock, msg, size, flags);
635}
636
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700637int sock_recvmsg(struct socket *sock, struct msghdr *msg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 size_t size, int flags)
639{
640 struct kiocb iocb;
641 struct sock_iocb siocb;
642 int ret;
643
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700644 init_sync_kiocb(&iocb, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 iocb.private = &siocb;
646 ret = __sock_recvmsg(&iocb, sock, msg, size, flags);
647 if (-EIOCBQUEUED == ret)
648 ret = wait_on_sync_kiocb(&iocb);
649 return ret;
650}
651
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700652int kernel_recvmsg(struct socket *sock, struct msghdr *msg,
653 struct kvec *vec, size_t num, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654{
655 mm_segment_t oldfs = get_fs();
656 int result;
657
658 set_fs(KERNEL_DS);
659 /*
660 * the following is safe, since for compiler definitions of kvec and
661 * iovec are identical, yielding the same in-core layout and alignment
662 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700663 msg->msg_iov = (struct iovec *)vec, msg->msg_iovlen = num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 result = sock_recvmsg(sock, msg, size, flags);
665 set_fs(oldfs);
666 return result;
667}
668
669static void sock_aio_dtor(struct kiocb *iocb)
670{
671 kfree(iocb->private);
672}
673
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -0300674static ssize_t sock_sendpage(struct file *file, struct page *page,
675 int offset, size_t size, loff_t *ppos, int more)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676{
677 struct socket *sock;
678 int flags;
679
Eric Dumazetb69aee02005-09-06 14:42:45 -0700680 sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
682 flags = !(file->f_flags & O_NONBLOCK) ? 0 : MSG_DONTWAIT;
683 if (more)
684 flags |= MSG_MORE;
685
686 return sock->ops->sendpage(sock, page, offset, size, flags);
687}
688
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800689static struct sock_iocb *alloc_sock_iocb(struct kiocb *iocb,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700690 struct sock_iocb *siocb)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800691{
692 if (!is_sync_kiocb(iocb)) {
693 siocb = kmalloc(sizeof(*siocb), GFP_KERNEL);
694 if (!siocb)
695 return NULL;
696 iocb->ki_dtor = sock_aio_dtor;
697 }
698
699 siocb->kiocb = iocb;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800700 iocb->private = siocb;
701 return siocb;
702}
703
704static ssize_t do_sock_read(struct msghdr *msg, struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -0700705 struct file *file, const struct iovec *iov,
706 unsigned long nr_segs)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800707{
708 struct socket *sock = file->private_data;
709 size_t size = 0;
710 int i;
711
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700712 for (i = 0; i < nr_segs; i++)
713 size += iov[i].iov_len;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800714
715 msg->msg_name = NULL;
716 msg->msg_namelen = 0;
717 msg->msg_control = NULL;
718 msg->msg_controllen = 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700719 msg->msg_iov = (struct iovec *)iov;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800720 msg->msg_iovlen = nr_segs;
721 msg->msg_flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
722
723 return __sock_recvmsg(iocb, sock, msg, size, msg->msg_flags);
724}
725
Badari Pulavarty027445c2006-09-30 23:28:46 -0700726static ssize_t sock_aio_read(struct kiocb *iocb, const struct iovec *iov,
727 unsigned long nr_segs, loff_t pos)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800728{
729 struct sock_iocb siocb, *x;
730
731 if (pos != 0)
732 return -ESPIPE;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700733
734 if (iocb->ki_left == 0) /* Match SYS5 behaviour */
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800735 return 0;
736
Badari Pulavarty027445c2006-09-30 23:28:46 -0700737
738 x = alloc_sock_iocb(iocb, &siocb);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800739 if (!x)
740 return -ENOMEM;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700741 return do_sock_read(&x->async_msg, iocb, iocb->ki_filp, iov, nr_segs);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800742}
743
744static ssize_t do_sock_write(struct msghdr *msg, struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -0700745 struct file *file, const struct iovec *iov,
746 unsigned long nr_segs)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800747{
748 struct socket *sock = file->private_data;
749 size_t size = 0;
750 int i;
751
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700752 for (i = 0; i < nr_segs; i++)
753 size += iov[i].iov_len;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800754
755 msg->msg_name = NULL;
756 msg->msg_namelen = 0;
757 msg->msg_control = NULL;
758 msg->msg_controllen = 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700759 msg->msg_iov = (struct iovec *)iov;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800760 msg->msg_iovlen = nr_segs;
761 msg->msg_flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
762 if (sock->type == SOCK_SEQPACKET)
763 msg->msg_flags |= MSG_EOR;
764
765 return __sock_sendmsg(iocb, sock, msg, size);
766}
767
Badari Pulavarty027445c2006-09-30 23:28:46 -0700768static ssize_t sock_aio_write(struct kiocb *iocb, const struct iovec *iov,
769 unsigned long nr_segs, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770{
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800771 struct sock_iocb siocb, *x;
772
773 if (pos != 0)
774 return -ESPIPE;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700775
776 if (iocb->ki_left == 0) /* Match SYS5 behaviour */
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800777 return 0;
778
Badari Pulavarty027445c2006-09-30 23:28:46 -0700779 x = alloc_sock_iocb(iocb, &siocb);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800780 if (!x)
781 return -ENOMEM;
782
Badari Pulavarty027445c2006-09-30 23:28:46 -0700783 return do_sock_write(&x->async_msg, iocb, iocb->ki_filp, iov, nr_segs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784}
785
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786/*
787 * Atomic setting of ioctl hooks to avoid race
788 * with module unload.
789 */
790
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800791static DEFINE_MUTEX(br_ioctl_mutex);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700792static int (*br_ioctl_hook) (unsigned int cmd, void __user *arg) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700794void brioctl_set(int (*hook) (unsigned int, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800796 mutex_lock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 br_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800798 mutex_unlock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799}
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700800
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801EXPORT_SYMBOL(brioctl_set);
802
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800803static DEFINE_MUTEX(vlan_ioctl_mutex);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700804static int (*vlan_ioctl_hook) (void __user *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700806void vlan_ioctl_set(int (*hook) (void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800808 mutex_lock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 vlan_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800810 mutex_unlock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811}
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700812
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813EXPORT_SYMBOL(vlan_ioctl_set);
814
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800815static DEFINE_MUTEX(dlci_ioctl_mutex);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700816static int (*dlci_ioctl_hook) (unsigned int, void __user *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700818void dlci_ioctl_set(int (*hook) (unsigned int, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800820 mutex_lock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 dlci_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800822 mutex_unlock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823}
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700824
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825EXPORT_SYMBOL(dlci_ioctl_set);
826
827/*
828 * With an ioctl, arg may well be a user mode pointer, but we don't know
829 * what to do with it - that's up to the protocol still.
830 */
831
832static long sock_ioctl(struct file *file, unsigned cmd, unsigned long arg)
833{
834 struct socket *sock;
835 void __user *argp = (void __user *)arg;
836 int pid, err;
837
Eric Dumazetb69aee02005-09-06 14:42:45 -0700838 sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 if (cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15)) {
840 err = dev_ioctl(cmd, argp);
841 } else
Adrian Bunkd86b5e02006-01-21 00:46:55 +0100842#ifdef CONFIG_WIRELESS_EXT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 if (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST) {
844 err = dev_ioctl(cmd, argp);
845 } else
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700846#endif /* CONFIG_WIRELESS_EXT */
847 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 case FIOSETOWN:
849 case SIOCSPGRP:
850 err = -EFAULT;
851 if (get_user(pid, (int __user *)argp))
852 break;
853 err = f_setown(sock->file, pid, 1);
854 break;
855 case FIOGETOWN:
856 case SIOCGPGRP:
Eric W. Biederman609d7fa2006-10-02 02:17:15 -0700857 err = put_user(f_getown(sock->file),
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700858 (int __user *)argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 break;
860 case SIOCGIFBR:
861 case SIOCSIFBR:
862 case SIOCBRADDBR:
863 case SIOCBRDELBR:
864 err = -ENOPKG;
865 if (!br_ioctl_hook)
866 request_module("bridge");
867
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800868 mutex_lock(&br_ioctl_mutex);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700869 if (br_ioctl_hook)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 err = br_ioctl_hook(cmd, argp);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800871 mutex_unlock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 break;
873 case SIOCGIFVLAN:
874 case SIOCSIFVLAN:
875 err = -ENOPKG;
876 if (!vlan_ioctl_hook)
877 request_module("8021q");
878
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800879 mutex_lock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 if (vlan_ioctl_hook)
881 err = vlan_ioctl_hook(argp);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800882 mutex_unlock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 case SIOCADDDLCI:
885 case SIOCDELDLCI:
886 err = -ENOPKG;
887 if (!dlci_ioctl_hook)
888 request_module("dlci");
889
890 if (dlci_ioctl_hook) {
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800891 mutex_lock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 err = dlci_ioctl_hook(cmd, argp);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800893 mutex_unlock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 }
895 break;
896 default:
897 err = sock->ops->ioctl(sock, cmd, arg);
Christoph Hellwigb5e5fa52006-01-03 14:18:33 -0800898
899 /*
900 * If this ioctl is unknown try to hand it down
901 * to the NIC driver.
902 */
903 if (err == -ENOIOCTLCMD)
904 err = dev_ioctl(cmd, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700906 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 return err;
908}
909
910int sock_create_lite(int family, int type, int protocol, struct socket **res)
911{
912 int err;
913 struct socket *sock = NULL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700914
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 err = security_socket_create(family, type, protocol, 1);
916 if (err)
917 goto out;
918
919 sock = sock_alloc();
920 if (!sock) {
921 err = -ENOMEM;
922 goto out;
923 }
924
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 sock->type = type;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -0700926 err = security_socket_post_create(sock, family, type, protocol, 1);
927 if (err)
928 goto out_release;
929
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930out:
931 *res = sock;
932 return err;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -0700933out_release:
934 sock_release(sock);
935 sock = NULL;
936 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937}
938
939/* No kernel lock held - perfect */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700940static unsigned int sock_poll(struct file *file, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941{
942 struct socket *sock;
943
944 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700945 * We can't return errors to poll, so it's either yes or no.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 */
Eric Dumazetb69aee02005-09-06 14:42:45 -0700947 sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 return sock->ops->poll(file, sock, wait);
949}
950
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700951static int sock_mmap(struct file *file, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952{
Eric Dumazetb69aee02005-09-06 14:42:45 -0700953 struct socket *sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
955 return sock->ops->mmap(file, sock, vma);
956}
957
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -0300958static int sock_close(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959{
960 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700961 * It was possible the inode is NULL we were
962 * closing an unfinished socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 */
964
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700965 if (!inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 printk(KERN_DEBUG "sock_close: NULL inode\n");
967 return 0;
968 }
969 sock_fasync(-1, filp, 0);
970 sock_release(SOCKET_I(inode));
971 return 0;
972}
973
974/*
975 * Update the socket async list
976 *
977 * Fasync_list locking strategy.
978 *
979 * 1. fasync_list is modified only under process context socket lock
980 * i.e. under semaphore.
981 * 2. fasync_list is used under read_lock(&sk->sk_callback_lock)
982 * or under socket lock.
983 * 3. fasync_list can be used from softirq context, so that
984 * modification under socket lock have to be enhanced with
985 * write_lock_bh(&sk->sk_callback_lock).
986 * --ANK (990710)
987 */
988
989static int sock_fasync(int fd, struct file *filp, int on)
990{
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700991 struct fasync_struct *fa, *fna = NULL, **prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 struct socket *sock;
993 struct sock *sk;
994
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700995 if (on) {
Kris Katterjohn8b3a7002006-01-11 15:56:43 -0800996 fna = kmalloc(sizeof(struct fasync_struct), GFP_KERNEL);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700997 if (fna == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 return -ENOMEM;
999 }
1000
Eric Dumazetb69aee02005-09-06 14:42:45 -07001001 sock = filp->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001003 sk = sock->sk;
1004 if (sk == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 kfree(fna);
1006 return -EINVAL;
1007 }
1008
1009 lock_sock(sk);
1010
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001011 prev = &(sock->fasync_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001013 for (fa = *prev; fa != NULL; prev = &fa->fa_next, fa = *prev)
1014 if (fa->fa_file == filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 break;
1016
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001017 if (on) {
1018 if (fa != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 write_lock_bh(&sk->sk_callback_lock);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001020 fa->fa_fd = fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 write_unlock_bh(&sk->sk_callback_lock);
1022
1023 kfree(fna);
1024 goto out;
1025 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001026 fna->fa_file = filp;
1027 fna->fa_fd = fd;
1028 fna->magic = FASYNC_MAGIC;
1029 fna->fa_next = sock->fasync_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 write_lock_bh(&sk->sk_callback_lock);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001031 sock->fasync_list = fna;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 write_unlock_bh(&sk->sk_callback_lock);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001033 } else {
1034 if (fa != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 write_lock_bh(&sk->sk_callback_lock);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001036 *prev = fa->fa_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 write_unlock_bh(&sk->sk_callback_lock);
1038 kfree(fa);
1039 }
1040 }
1041
1042out:
1043 release_sock(sock->sk);
1044 return 0;
1045}
1046
1047/* This function may be called only under socket lock or callback_lock */
1048
1049int sock_wake_async(struct socket *sock, int how, int band)
1050{
1051 if (!sock || !sock->fasync_list)
1052 return -1;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001053 switch (how) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 case 1:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001055
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 if (test_bit(SOCK_ASYNC_WAITDATA, &sock->flags))
1057 break;
1058 goto call_kill;
1059 case 2:
1060 if (!test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sock->flags))
1061 break;
1062 /* fall through */
1063 case 0:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001064call_kill:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 __kill_fasync(sock->fasync_list, SIGIO, band);
1066 break;
1067 case 3:
1068 __kill_fasync(sock->fasync_list, SIGURG, band);
1069 }
1070 return 0;
1071}
1072
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001073static int __sock_create(int family, int type, int protocol,
1074 struct socket **res, int kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075{
1076 int err;
1077 struct socket *sock;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001078 const struct net_proto_family *pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
1080 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001081 * Check protocol is in range
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 */
1083 if (family < 0 || family >= NPROTO)
1084 return -EAFNOSUPPORT;
1085 if (type < 0 || type >= SOCK_MAX)
1086 return -EINVAL;
1087
1088 /* Compatibility.
1089
1090 This uglymoron is moved from INET layer to here to avoid
1091 deadlock in module load.
1092 */
1093 if (family == PF_INET && type == SOCK_PACKET) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001094 static int warned;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 if (!warned) {
1096 warned = 1;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001097 printk(KERN_INFO "%s uses obsolete (PF_INET,SOCK_PACKET)\n",
1098 current->comm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 }
1100 family = PF_PACKET;
1101 }
1102
1103 err = security_socket_create(family, type, protocol, kern);
1104 if (err)
1105 return err;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001106
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001107 /*
1108 * Allocate the socket and allow the family to set things up. if
1109 * the protocol is 0, the family is instructed to select an appropriate
1110 * default.
1111 */
1112 sock = sock_alloc();
1113 if (!sock) {
1114 if (net_ratelimit())
1115 printk(KERN_WARNING "socket: no more sockets\n");
1116 return -ENFILE; /* Not exactly a match, but its the
1117 closest posix thing */
1118 }
1119
1120 sock->type = type;
1121
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122#if defined(CONFIG_KMOD)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001123 /* Attempt to load a protocol module if the find failed.
1124 *
1125 * 12/09/1996 Marcin: But! this makes REALLY only sense, if the user
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 * requested real, full-featured networking support upon configuration.
1127 * Otherwise module support will break!
1128 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001129 if (net_families[family] == NULL)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001130 request_module("net-pf-%d", family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131#endif
1132
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001133 rcu_read_lock();
1134 pf = rcu_dereference(net_families[family]);
1135 err = -EAFNOSUPPORT;
1136 if (!pf)
1137 goto out_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138
1139 /*
1140 * We will call the ->create function, that possibly is in a loadable
1141 * module, so we have to bump that loadable module refcnt first.
1142 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001143 if (!try_module_get(pf->owner))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 goto out_release;
1145
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001146 /* Now protected by module ref count */
1147 rcu_read_unlock();
1148
1149 err = pf->create(sock, protocol);
1150 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 goto out_module_put;
Frank Filza79af592005-09-27 15:23:38 -07001152
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 /*
1154 * Now to bump the refcnt of the [loadable] module that owns this
1155 * socket at sock_release time we decrement its refcnt.
1156 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001157 if (!try_module_get(sock->ops->owner))
1158 goto out_module_busy;
1159
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 /*
1161 * Now that we're done with the ->create function, the [loadable]
1162 * module can have its refcnt decremented
1163 */
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001164 module_put(pf->owner);
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001165 err = security_socket_post_create(sock, family, type, protocol, kern);
1166 if (err)
1167 goto out_release;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001168 *res = sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001170 return 0;
1171
1172out_module_busy:
1173 err = -EAFNOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174out_module_put:
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001175 sock->ops = NULL;
1176 module_put(pf->owner);
1177out_sock_release:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 sock_release(sock);
Stephen Hemminger55737fd2006-09-01 00:23:39 -07001179 return err;
1180
1181out_release:
1182 rcu_read_unlock();
1183 goto out_sock_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184}
1185
1186int sock_create(int family, int type, int protocol, struct socket **res)
1187{
1188 return __sock_create(family, type, protocol, res, 0);
1189}
1190
1191int sock_create_kern(int family, int type, int protocol, struct socket **res)
1192{
1193 return __sock_create(family, type, protocol, res, 1);
1194}
1195
1196asmlinkage long sys_socket(int family, int type, int protocol)
1197{
1198 int retval;
1199 struct socket *sock;
1200
1201 retval = sock_create(family, type, protocol, &sock);
1202 if (retval < 0)
1203 goto out;
1204
1205 retval = sock_map_fd(sock);
1206 if (retval < 0)
1207 goto out_release;
1208
1209out:
1210 /* It may be already another descriptor 8) Not kernel problem. */
1211 return retval;
1212
1213out_release:
1214 sock_release(sock);
1215 return retval;
1216}
1217
1218/*
1219 * Create a pair of connected sockets.
1220 */
1221
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001222asmlinkage long sys_socketpair(int family, int type, int protocol,
1223 int __user *usockvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224{
1225 struct socket *sock1, *sock2;
1226 int fd1, fd2, err;
Al Virodb349502007-02-07 01:48:00 -05001227 struct file *newfile1, *newfile2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
1229 /*
1230 * Obtain the first socket and check if the underlying protocol
1231 * supports the socketpair call.
1232 */
1233
1234 err = sock_create(family, type, protocol, &sock1);
1235 if (err < 0)
1236 goto out;
1237
1238 err = sock_create(family, type, protocol, &sock2);
1239 if (err < 0)
1240 goto out_release_1;
1241
1242 err = sock1->ops->socketpair(sock1, sock2);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001243 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 goto out_release_both;
1245
Al Virodb349502007-02-07 01:48:00 -05001246 fd1 = sock_alloc_fd(&newfile1);
1247 if (unlikely(fd1 < 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 goto out_release_both;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
Al Virodb349502007-02-07 01:48:00 -05001250 fd2 = sock_alloc_fd(&newfile2);
1251 if (unlikely(fd2 < 0)) {
1252 put_filp(newfile1);
1253 put_unused_fd(fd1);
1254 goto out_release_both;
1255 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256
Al Virodb349502007-02-07 01:48:00 -05001257 err = sock_attach_fd(sock1, newfile1);
1258 if (unlikely(err < 0)) {
1259 goto out_fd2;
1260 }
1261
1262 err = sock_attach_fd(sock2, newfile2);
1263 if (unlikely(err < 0)) {
1264 fput(newfile1);
1265 goto out_fd1;
1266 }
1267
1268 err = audit_fd_pair(fd1, fd2);
1269 if (err < 0) {
1270 fput(newfile1);
1271 fput(newfile2);
1272 goto out_fd;
1273 }
1274
1275 fd_install(fd1, newfile1);
1276 fd_install(fd2, newfile2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 /* fd1 and fd2 may be already another descriptors.
1278 * Not kernel problem.
1279 */
1280
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001281 err = put_user(fd1, &usockvec[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 if (!err)
1283 err = put_user(fd2, &usockvec[1]);
1284 if (!err)
1285 return 0;
1286
1287 sys_close(fd2);
1288 sys_close(fd1);
1289 return err;
1290
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291out_release_both:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001292 sock_release(sock2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293out_release_1:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001294 sock_release(sock1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295out:
1296 return err;
Al Virodb349502007-02-07 01:48:00 -05001297
1298out_fd2:
1299 put_filp(newfile1);
1300 sock_release(sock1);
1301out_fd1:
1302 put_filp(newfile2);
1303 sock_release(sock2);
1304out_fd:
1305 put_unused_fd(fd1);
1306 put_unused_fd(fd2);
1307 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308}
1309
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310/*
1311 * Bind a name to a socket. Nothing much to do here since it's
1312 * the protocol's responsibility to handle the local address.
1313 *
1314 * We move the socket address to kernel space before we call
1315 * the protocol layer (having also checked the address is ok).
1316 */
1317
1318asmlinkage long sys_bind(int fd, struct sockaddr __user *umyaddr, int addrlen)
1319{
1320 struct socket *sock;
1321 char address[MAX_SOCK_ADDR];
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001322 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001324 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001325 if (sock) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001326 err = move_addr_to_kernel(umyaddr, addrlen, address);
1327 if (err >= 0) {
1328 err = security_socket_bind(sock,
1329 (struct sockaddr *)address,
1330 addrlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001331 if (!err)
1332 err = sock->ops->bind(sock,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001333 (struct sockaddr *)
1334 address, addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 }
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001336 fput_light(sock->file, fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001337 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 return err;
1339}
1340
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341/*
1342 * Perform a listen. Basically, we allow the protocol to do anything
1343 * necessary for a listen, and if that works, we mark the socket as
1344 * ready for listening.
1345 */
1346
Brian Haley7a42c212006-08-31 15:03:02 -07001347int sysctl_somaxconn __read_mostly = SOMAXCONN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348
1349asmlinkage long sys_listen(int fd, int backlog)
1350{
1351 struct socket *sock;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001352 int err, fput_needed;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001353
1354 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1355 if (sock) {
1356 if ((unsigned)backlog > sysctl_somaxconn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 backlog = sysctl_somaxconn;
1358
1359 err = security_socket_listen(sock, backlog);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001360 if (!err)
1361 err = sock->ops->listen(sock, backlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001363 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 }
1365 return err;
1366}
1367
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368/*
1369 * For accept, we attempt to create a new socket, set up the link
1370 * with the client, wake up the client, then return the new
1371 * connected fd. We collect the address of the connector in kernel
1372 * space and move it to user at the very end. This is unclean because
1373 * we open the socket then return an error.
1374 *
1375 * 1003.1g adds the ability to recvmsg() to query connection pending
1376 * status to recvmsg. We need to add that support in a way thats
1377 * clean when we restucture accept also.
1378 */
1379
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001380asmlinkage long sys_accept(int fd, struct sockaddr __user *upeer_sockaddr,
1381 int __user *upeer_addrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382{
1383 struct socket *sock, *newsock;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001384 struct file *newfile;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001385 int err, len, newfd, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 char address[MAX_SOCK_ADDR];
1387
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001388 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 if (!sock)
1390 goto out;
1391
1392 err = -ENFILE;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001393 if (!(newsock = sock_alloc()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 goto out_put;
1395
1396 newsock->type = sock->type;
1397 newsock->ops = sock->ops;
1398
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 /*
1400 * We don't need try_module_get here, as the listening socket (sock)
1401 * has the protocol module (sock->ops->owner) held.
1402 */
1403 __module_get(newsock->ops->owner);
1404
David S. Miller39d8c1b2006-03-20 17:13:49 -08001405 newfd = sock_alloc_fd(&newfile);
1406 if (unlikely(newfd < 0)) {
1407 err = newfd;
David S. Miller9a1875e2006-04-01 12:48:36 -08001408 sock_release(newsock);
1409 goto out_put;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001410 }
1411
1412 err = sock_attach_fd(newsock, newfile);
1413 if (err < 0)
Alexey Dobriyan79f4f642007-03-26 14:09:52 -07001414 goto out_fd_simple;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001415
Frank Filza79af592005-09-27 15:23:38 -07001416 err = security_socket_accept(sock, newsock);
1417 if (err)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001418 goto out_fd;
Frank Filza79af592005-09-27 15:23:38 -07001419
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 err = sock->ops->accept(sock, newsock, sock->file->f_flags);
1421 if (err < 0)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001422 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423
1424 if (upeer_sockaddr) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001425 if (newsock->ops->getname(newsock, (struct sockaddr *)address,
1426 &len, 2) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 err = -ECONNABORTED;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001428 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001430 err = move_addr_to_user(address, len, upeer_sockaddr,
1431 upeer_addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 if (err < 0)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001433 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 }
1435
1436 /* File flags are not inherited via accept() unlike another OSes. */
1437
David S. Miller39d8c1b2006-03-20 17:13:49 -08001438 fd_install(newfd, newfile);
1439 err = newfd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440
1441 security_socket_post_accept(sock, newsock);
1442
1443out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001444 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445out:
1446 return err;
Alexey Dobriyan79f4f642007-03-26 14:09:52 -07001447out_fd_simple:
1448 sock_release(newsock);
1449 put_filp(newfile);
1450 put_unused_fd(newfd);
1451 goto out_put;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001452out_fd:
David S. Miller9606a212006-04-01 01:00:14 -08001453 fput(newfile);
David S. Miller39d8c1b2006-03-20 17:13:49 -08001454 put_unused_fd(newfd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 goto out_put;
1456}
1457
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458/*
1459 * Attempt to connect to a socket with the server address. The address
1460 * is in user space so we verify it is OK and move it to kernel space.
1461 *
1462 * For 1003.1g we need to add clean support for a bind to AF_UNSPEC to
1463 * break bindings
1464 *
1465 * NOTE: 1003.1g draft 6.3 is broken with respect to AX.25/NetROM and
1466 * other SEQPACKET protocols that take time to connect() as it doesn't
1467 * include the -EINPROGRESS status for such sockets.
1468 */
1469
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001470asmlinkage long sys_connect(int fd, struct sockaddr __user *uservaddr,
1471 int addrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472{
1473 struct socket *sock;
1474 char address[MAX_SOCK_ADDR];
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001475 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001477 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 if (!sock)
1479 goto out;
1480 err = move_addr_to_kernel(uservaddr, addrlen, address);
1481 if (err < 0)
1482 goto out_put;
1483
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001484 err =
1485 security_socket_connect(sock, (struct sockaddr *)address, addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 if (err)
1487 goto out_put;
1488
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001489 err = sock->ops->connect(sock, (struct sockaddr *)address, addrlen,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 sock->file->f_flags);
1491out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001492 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493out:
1494 return err;
1495}
1496
1497/*
1498 * Get the local address ('name') of a socket object. Move the obtained
1499 * name to user space.
1500 */
1501
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001502asmlinkage long sys_getsockname(int fd, struct sockaddr __user *usockaddr,
1503 int __user *usockaddr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504{
1505 struct socket *sock;
1506 char address[MAX_SOCK_ADDR];
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001507 int len, err, fput_needed;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001508
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001509 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 if (!sock)
1511 goto out;
1512
1513 err = security_socket_getsockname(sock);
1514 if (err)
1515 goto out_put;
1516
1517 err = sock->ops->getname(sock, (struct sockaddr *)address, &len, 0);
1518 if (err)
1519 goto out_put;
1520 err = move_addr_to_user(address, len, usockaddr, usockaddr_len);
1521
1522out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001523 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524out:
1525 return err;
1526}
1527
1528/*
1529 * Get the remote address ('name') of a socket object. Move the obtained
1530 * name to user space.
1531 */
1532
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001533asmlinkage long sys_getpeername(int fd, struct sockaddr __user *usockaddr,
1534 int __user *usockaddr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535{
1536 struct socket *sock;
1537 char address[MAX_SOCK_ADDR];
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001538 int len, err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001540 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1541 if (sock != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 err = security_socket_getpeername(sock);
1543 if (err) {
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001544 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 return err;
1546 }
1547
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001548 err =
1549 sock->ops->getname(sock, (struct sockaddr *)address, &len,
1550 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 if (!err)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001552 err = move_addr_to_user(address, len, usockaddr,
1553 usockaddr_len);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001554 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 }
1556 return err;
1557}
1558
1559/*
1560 * Send a datagram to a given address. We move the address into kernel
1561 * space and check the user space data area is readable before invoking
1562 * the protocol.
1563 */
1564
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001565asmlinkage long sys_sendto(int fd, void __user *buff, size_t len,
1566 unsigned flags, struct sockaddr __user *addr,
1567 int addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568{
1569 struct socket *sock;
1570 char address[MAX_SOCK_ADDR];
1571 int err;
1572 struct msghdr msg;
1573 struct iovec iov;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001574 int fput_needed;
1575 struct file *sock_file;
1576
1577 sock_file = fget_light(fd, &fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08001578 err = -EBADF;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001579 if (!sock_file)
David S. Miller4387ff72007-02-08 15:06:08 -08001580 goto out;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001581
1582 sock = sock_from_file(sock_file, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 if (!sock)
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001584 goto out_put;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001585 iov.iov_base = buff;
1586 iov.iov_len = len;
1587 msg.msg_name = NULL;
1588 msg.msg_iov = &iov;
1589 msg.msg_iovlen = 1;
1590 msg.msg_control = NULL;
1591 msg.msg_controllen = 0;
1592 msg.msg_namelen = 0;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001593 if (addr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 err = move_addr_to_kernel(addr, addr_len, address);
1595 if (err < 0)
1596 goto out_put;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001597 msg.msg_name = address;
1598 msg.msg_namelen = addr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 }
1600 if (sock->file->f_flags & O_NONBLOCK)
1601 flags |= MSG_DONTWAIT;
1602 msg.msg_flags = flags;
1603 err = sock_sendmsg(sock, &msg, len);
1604
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001605out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001606 fput_light(sock_file, fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08001607out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 return err;
1609}
1610
1611/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001612 * Send a datagram down a socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 */
1614
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001615asmlinkage long sys_send(int fd, void __user *buff, size_t len, unsigned flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616{
1617 return sys_sendto(fd, buff, len, flags, NULL, 0);
1618}
1619
1620/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001621 * Receive a frame from the socket and optionally record the address of the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 * sender. We verify the buffers are writable and if needed move the
1623 * sender address from kernel to user space.
1624 */
1625
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001626asmlinkage long sys_recvfrom(int fd, void __user *ubuf, size_t size,
1627 unsigned flags, struct sockaddr __user *addr,
1628 int __user *addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629{
1630 struct socket *sock;
1631 struct iovec iov;
1632 struct msghdr msg;
1633 char address[MAX_SOCK_ADDR];
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001634 int err, err2;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001635 struct file *sock_file;
1636 int fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001638 sock_file = fget_light(fd, &fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08001639 err = -EBADF;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001640 if (!sock_file)
David S. Miller4387ff72007-02-08 15:06:08 -08001641 goto out;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001642
1643 sock = sock_from_file(sock_file, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 if (!sock)
David S. Miller4387ff72007-02-08 15:06:08 -08001645 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001647 msg.msg_control = NULL;
1648 msg.msg_controllen = 0;
1649 msg.msg_iovlen = 1;
1650 msg.msg_iov = &iov;
1651 iov.iov_len = size;
1652 iov.iov_base = ubuf;
1653 msg.msg_name = address;
1654 msg.msg_namelen = MAX_SOCK_ADDR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 if (sock->file->f_flags & O_NONBLOCK)
1656 flags |= MSG_DONTWAIT;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001657 err = sock_recvmsg(sock, &msg, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001659 if (err >= 0 && addr != NULL) {
1660 err2 = move_addr_to_user(address, msg.msg_namelen, addr, addr_len);
1661 if (err2 < 0)
1662 err = err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 }
David S. Miller4387ff72007-02-08 15:06:08 -08001664out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001665 fput_light(sock_file, fput_needed);
David S. Miller4387ff72007-02-08 15:06:08 -08001666out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 return err;
1668}
1669
1670/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001671 * Receive a datagram from a socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 */
1673
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001674asmlinkage long sys_recv(int fd, void __user *ubuf, size_t size,
1675 unsigned flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676{
1677 return sys_recvfrom(fd, ubuf, size, flags, NULL, NULL);
1678}
1679
1680/*
1681 * Set a socket option. Because we don't know the option lengths we have
1682 * to pass the user mode parameter for the protocols to sort out.
1683 */
1684
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001685asmlinkage long sys_setsockopt(int fd, int level, int optname,
1686 char __user *optval, int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001688 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 struct socket *sock;
1690
1691 if (optlen < 0)
1692 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001693
1694 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1695 if (sock != NULL) {
1696 err = security_socket_setsockopt(sock, level, optname);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001697 if (err)
1698 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699
1700 if (level == SOL_SOCKET)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001701 err =
1702 sock_setsockopt(sock, level, optname, optval,
1703 optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 else
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001705 err =
1706 sock->ops->setsockopt(sock, level, optname, optval,
1707 optlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001708out_put:
1709 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 }
1711 return err;
1712}
1713
1714/*
1715 * Get a socket option. Because we don't know the option lengths we have
1716 * to pass a user mode parameter for the protocols to sort out.
1717 */
1718
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001719asmlinkage long sys_getsockopt(int fd, int level, int optname,
1720 char __user *optval, int __user *optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001722 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 struct socket *sock;
1724
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001725 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1726 if (sock != NULL) {
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001727 err = security_socket_getsockopt(sock, level, optname);
1728 if (err)
1729 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730
1731 if (level == SOL_SOCKET)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001732 err =
1733 sock_getsockopt(sock, level, optname, optval,
1734 optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 else
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001736 err =
1737 sock->ops->getsockopt(sock, level, optname, optval,
1738 optlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001739out_put:
1740 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 }
1742 return err;
1743}
1744
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745/*
1746 * Shutdown a socket.
1747 */
1748
1749asmlinkage long sys_shutdown(int fd, int how)
1750{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001751 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 struct socket *sock;
1753
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001754 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1755 if (sock != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 err = security_socket_shutdown(sock, how);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001757 if (!err)
1758 err = sock->ops->shutdown(sock, how);
1759 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 }
1761 return err;
1762}
1763
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001764/* A couple of helpful macros for getting the address of the 32/64 bit
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 * fields which are the same type (int / unsigned) on our platforms.
1766 */
1767#define COMPAT_MSG(msg, member) ((MSG_CMSG_COMPAT & flags) ? &msg##_compat->member : &msg->member)
1768#define COMPAT_NAMELEN(msg) COMPAT_MSG(msg, msg_namelen)
1769#define COMPAT_FLAGS(msg) COMPAT_MSG(msg, msg_flags)
1770
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771/*
1772 * BSD sendmsg interface
1773 */
1774
1775asmlinkage long sys_sendmsg(int fd, struct msghdr __user *msg, unsigned flags)
1776{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001777 struct compat_msghdr __user *msg_compat =
1778 (struct compat_msghdr __user *)msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 struct socket *sock;
1780 char address[MAX_SOCK_ADDR];
1781 struct iovec iovstack[UIO_FASTIOV], *iov = iovstack;
Alex Williamsonb9d717a2005-09-26 14:28:02 -07001782 unsigned char ctl[sizeof(struct cmsghdr) + 20]
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001783 __attribute__ ((aligned(sizeof(__kernel_size_t))));
1784 /* 20 is size of ipv6_pktinfo */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 unsigned char *ctl_buf = ctl;
1786 struct msghdr msg_sys;
1787 int err, ctl_len, iov_size, total_len;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001788 int fput_needed;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001789
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 err = -EFAULT;
1791 if (MSG_CMSG_COMPAT & flags) {
1792 if (get_compat_msghdr(&msg_sys, msg_compat))
1793 return -EFAULT;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001794 }
1795 else if (copy_from_user(&msg_sys, msg, sizeof(struct msghdr)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 return -EFAULT;
1797
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001798 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001799 if (!sock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 goto out;
1801
1802 /* do not move before msg_sys is valid */
1803 err = -EMSGSIZE;
1804 if (msg_sys.msg_iovlen > UIO_MAXIOV)
1805 goto out_put;
1806
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001807 /* Check whether to allocate the iovec area */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 err = -ENOMEM;
1809 iov_size = msg_sys.msg_iovlen * sizeof(struct iovec);
1810 if (msg_sys.msg_iovlen > UIO_FASTIOV) {
1811 iov = sock_kmalloc(sock->sk, iov_size, GFP_KERNEL);
1812 if (!iov)
1813 goto out_put;
1814 }
1815
1816 /* This will also move the address data into kernel space */
1817 if (MSG_CMSG_COMPAT & flags) {
1818 err = verify_compat_iovec(&msg_sys, iov, address, VERIFY_READ);
1819 } else
1820 err = verify_iovec(&msg_sys, iov, address, VERIFY_READ);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001821 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 goto out_freeiov;
1823 total_len = err;
1824
1825 err = -ENOBUFS;
1826
1827 if (msg_sys.msg_controllen > INT_MAX)
1828 goto out_freeiov;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001829 ctl_len = msg_sys.msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 if ((MSG_CMSG_COMPAT & flags) && ctl_len) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001831 err =
1832 cmsghdr_from_user_compat_to_kern(&msg_sys, sock->sk, ctl,
1833 sizeof(ctl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 if (err)
1835 goto out_freeiov;
1836 ctl_buf = msg_sys.msg_control;
Al Viro8920e8f2005-09-07 18:28:51 -07001837 ctl_len = msg_sys.msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 } else if (ctl_len) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001839 if (ctl_len > sizeof(ctl)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 ctl_buf = sock_kmalloc(sock->sk, ctl_len, GFP_KERNEL);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001841 if (ctl_buf == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 goto out_freeiov;
1843 }
1844 err = -EFAULT;
1845 /*
1846 * Careful! Before this, msg_sys.msg_control contains a user pointer.
1847 * Afterwards, it will be a kernel pointer. Thus the compiler-assisted
1848 * checking falls down on this.
1849 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001850 if (copy_from_user(ctl_buf, (void __user *)msg_sys.msg_control,
1851 ctl_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 goto out_freectl;
1853 msg_sys.msg_control = ctl_buf;
1854 }
1855 msg_sys.msg_flags = flags;
1856
1857 if (sock->file->f_flags & O_NONBLOCK)
1858 msg_sys.msg_flags |= MSG_DONTWAIT;
1859 err = sock_sendmsg(sock, &msg_sys, total_len);
1860
1861out_freectl:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001862 if (ctl_buf != ctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 sock_kfree_s(sock->sk, ctl_buf, ctl_len);
1864out_freeiov:
1865 if (iov != iovstack)
1866 sock_kfree_s(sock->sk, iov, iov_size);
1867out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001868 fput_light(sock->file, fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001869out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 return err;
1871}
1872
1873/*
1874 * BSD recvmsg interface
1875 */
1876
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001877asmlinkage long sys_recvmsg(int fd, struct msghdr __user *msg,
1878 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001880 struct compat_msghdr __user *msg_compat =
1881 (struct compat_msghdr __user *)msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 struct socket *sock;
1883 struct iovec iovstack[UIO_FASTIOV];
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001884 struct iovec *iov = iovstack;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 struct msghdr msg_sys;
1886 unsigned long cmsg_ptr;
1887 int err, iov_size, total_len, len;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001888 int fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889
1890 /* kernel mode address */
1891 char addr[MAX_SOCK_ADDR];
1892
1893 /* user mode address pointers */
1894 struct sockaddr __user *uaddr;
1895 int __user *uaddr_len;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001896
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 if (MSG_CMSG_COMPAT & flags) {
1898 if (get_compat_msghdr(&msg_sys, msg_compat))
1899 return -EFAULT;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001900 }
1901 else if (copy_from_user(&msg_sys, msg, sizeof(struct msghdr)))
1902 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001904 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 if (!sock)
1906 goto out;
1907
1908 err = -EMSGSIZE;
1909 if (msg_sys.msg_iovlen > UIO_MAXIOV)
1910 goto out_put;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001911
1912 /* Check whether to allocate the iovec area */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 err = -ENOMEM;
1914 iov_size = msg_sys.msg_iovlen * sizeof(struct iovec);
1915 if (msg_sys.msg_iovlen > UIO_FASTIOV) {
1916 iov = sock_kmalloc(sock->sk, iov_size, GFP_KERNEL);
1917 if (!iov)
1918 goto out_put;
1919 }
1920
1921 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001922 * Save the user-mode address (verify_iovec will change the
1923 * kernel msghdr to use the kernel address space)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001925
1926 uaddr = (void __user *)msg_sys.msg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 uaddr_len = COMPAT_NAMELEN(msg);
1928 if (MSG_CMSG_COMPAT & flags) {
1929 err = verify_compat_iovec(&msg_sys, iov, addr, VERIFY_WRITE);
1930 } else
1931 err = verify_iovec(&msg_sys, iov, addr, VERIFY_WRITE);
1932 if (err < 0)
1933 goto out_freeiov;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001934 total_len = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935
1936 cmsg_ptr = (unsigned long)msg_sys.msg_control;
1937 msg_sys.msg_flags = 0;
1938 if (MSG_CMSG_COMPAT & flags)
1939 msg_sys.msg_flags = MSG_CMSG_COMPAT;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001940
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 if (sock->file->f_flags & O_NONBLOCK)
1942 flags |= MSG_DONTWAIT;
1943 err = sock_recvmsg(sock, &msg_sys, total_len, flags);
1944 if (err < 0)
1945 goto out_freeiov;
1946 len = err;
1947
1948 if (uaddr != NULL) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001949 err = move_addr_to_user(addr, msg_sys.msg_namelen, uaddr,
1950 uaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 if (err < 0)
1952 goto out_freeiov;
1953 }
David S. Miller37f7f422005-09-16 16:51:01 -07001954 err = __put_user((msg_sys.msg_flags & ~MSG_CMSG_COMPAT),
1955 COMPAT_FLAGS(msg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 if (err)
1957 goto out_freeiov;
1958 if (MSG_CMSG_COMPAT & flags)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001959 err = __put_user((unsigned long)msg_sys.msg_control - cmsg_ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 &msg_compat->msg_controllen);
1961 else
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001962 err = __put_user((unsigned long)msg_sys.msg_control - cmsg_ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 &msg->msg_controllen);
1964 if (err)
1965 goto out_freeiov;
1966 err = len;
1967
1968out_freeiov:
1969 if (iov != iovstack)
1970 sock_kfree_s(sock->sk, iov, iov_size);
1971out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001972 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973out:
1974 return err;
1975}
1976
1977#ifdef __ARCH_WANT_SYS_SOCKETCALL
1978
1979/* Argument list sizes for sys_socketcall */
1980#define AL(x) ((x) * sizeof(unsigned long))
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001981static const unsigned char nargs[18]={
1982 AL(0),AL(3),AL(3),AL(3),AL(2),AL(3),
1983 AL(3),AL(3),AL(4),AL(4),AL(4),AL(6),
1984 AL(6),AL(2),AL(5),AL(5),AL(3),AL(3)
1985};
1986
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987#undef AL
1988
1989/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001990 * System call vectors.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 *
1992 * Argument checking cleaned up. Saved 20% in size.
1993 * This function doesn't need to set the kernel lock because
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001994 * it is set by the callees.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 */
1996
1997asmlinkage long sys_socketcall(int call, unsigned long __user *args)
1998{
1999 unsigned long a[6];
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002000 unsigned long a0, a1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 int err;
2002
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002003 if (call < 1 || call > SYS_RECVMSG)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 return -EINVAL;
2005
2006 /* copy_from_user should be SMP safe. */
2007 if (copy_from_user(a, args, nargs[call]))
2008 return -EFAULT;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002009
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002010 err = audit_socketcall(nargs[call] / sizeof(unsigned long), a);
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002011 if (err)
2012 return err;
2013
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002014 a0 = a[0];
2015 a1 = a[1];
2016
2017 switch (call) {
2018 case SYS_SOCKET:
2019 err = sys_socket(a0, a1, a[2]);
2020 break;
2021 case SYS_BIND:
2022 err = sys_bind(a0, (struct sockaddr __user *)a1, a[2]);
2023 break;
2024 case SYS_CONNECT:
2025 err = sys_connect(a0, (struct sockaddr __user *)a1, a[2]);
2026 break;
2027 case SYS_LISTEN:
2028 err = sys_listen(a0, a1);
2029 break;
2030 case SYS_ACCEPT:
2031 err =
2032 sys_accept(a0, (struct sockaddr __user *)a1,
2033 (int __user *)a[2]);
2034 break;
2035 case SYS_GETSOCKNAME:
2036 err =
2037 sys_getsockname(a0, (struct sockaddr __user *)a1,
2038 (int __user *)a[2]);
2039 break;
2040 case SYS_GETPEERNAME:
2041 err =
2042 sys_getpeername(a0, (struct sockaddr __user *)a1,
2043 (int __user *)a[2]);
2044 break;
2045 case SYS_SOCKETPAIR:
2046 err = sys_socketpair(a0, a1, a[2], (int __user *)a[3]);
2047 break;
2048 case SYS_SEND:
2049 err = sys_send(a0, (void __user *)a1, a[2], a[3]);
2050 break;
2051 case SYS_SENDTO:
2052 err = sys_sendto(a0, (void __user *)a1, a[2], a[3],
2053 (struct sockaddr __user *)a[4], a[5]);
2054 break;
2055 case SYS_RECV:
2056 err = sys_recv(a0, (void __user *)a1, a[2], a[3]);
2057 break;
2058 case SYS_RECVFROM:
2059 err = sys_recvfrom(a0, (void __user *)a1, a[2], a[3],
2060 (struct sockaddr __user *)a[4],
2061 (int __user *)a[5]);
2062 break;
2063 case SYS_SHUTDOWN:
2064 err = sys_shutdown(a0, a1);
2065 break;
2066 case SYS_SETSOCKOPT:
2067 err = sys_setsockopt(a0, a1, a[2], (char __user *)a[3], a[4]);
2068 break;
2069 case SYS_GETSOCKOPT:
2070 err =
2071 sys_getsockopt(a0, a1, a[2], (char __user *)a[3],
2072 (int __user *)a[4]);
2073 break;
2074 case SYS_SENDMSG:
2075 err = sys_sendmsg(a0, (struct msghdr __user *)a1, a[2]);
2076 break;
2077 case SYS_RECVMSG:
2078 err = sys_recvmsg(a0, (struct msghdr __user *)a1, a[2]);
2079 break;
2080 default:
2081 err = -EINVAL;
2082 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 }
2084 return err;
2085}
2086
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002087#endif /* __ARCH_WANT_SYS_SOCKETCALL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002089/**
2090 * sock_register - add a socket protocol handler
2091 * @ops: description of protocol
2092 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 * This function is called by a protocol handler that wants to
2094 * advertise its address family, and have it linked into the
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002095 * socket interface. The value ops->family coresponds to the
2096 * socket system call protocol family.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 */
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002098int sock_register(const struct net_proto_family *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099{
2100 int err;
2101
2102 if (ops->family >= NPROTO) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002103 printk(KERN_CRIT "protocol %d >= NPROTO(%d)\n", ops->family,
2104 NPROTO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 return -ENOBUFS;
2106 }
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002107
2108 spin_lock(&net_family_lock);
2109 if (net_families[ops->family])
2110 err = -EEXIST;
2111 else {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002112 net_families[ops->family] = ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 err = 0;
2114 }
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002115 spin_unlock(&net_family_lock);
2116
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002117 printk(KERN_INFO "NET: Registered protocol family %d\n", ops->family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 return err;
2119}
2120
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002121/**
2122 * sock_unregister - remove a protocol handler
2123 * @family: protocol family to remove
2124 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 * This function is called by a protocol handler that wants to
2126 * remove its address family, and have it unlinked from the
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002127 * new socket creation.
2128 *
2129 * If protocol handler is a module, then it can use module reference
2130 * counts to protect against new references. If protocol handler is not
2131 * a module then it needs to provide its own protection in
2132 * the ops->create routine.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 */
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002134void sock_unregister(int family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135{
Stephen Hemmingerf0fd27d2006-08-09 21:03:17 -07002136 BUG_ON(family < 0 || family >= NPROTO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002138 spin_lock(&net_family_lock);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002139 net_families[family] = NULL;
Stephen Hemminger55737fd2006-09-01 00:23:39 -07002140 spin_unlock(&net_family_lock);
2141
2142 synchronize_rcu();
2143
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002144 printk(KERN_INFO "NET: Unregistered protocol family %d\n", family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145}
2146
Andi Kleen77d76ea2005-12-22 12:43:42 -08002147static int __init sock_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148{
2149 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002150 * Initialize sock SLAB cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002152
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 sk_init();
2154
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002156 * Initialize skbuff SLAB cache
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 */
2158 skb_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159
2160 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002161 * Initialize the protocols module.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 */
2163
2164 init_inodecache();
2165 register_filesystem(&sock_fs_type);
2166 sock_mnt = kern_mount(&sock_fs_type);
Andi Kleen77d76ea2005-12-22 12:43:42 -08002167
2168 /* The real protocol initialization is performed in later initcalls.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 */
2170
2171#ifdef CONFIG_NETFILTER
2172 netfilter_init();
2173#endif
David S. Millercbeb3212005-12-22 12:58:55 -08002174
2175 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176}
2177
Andi Kleen77d76ea2005-12-22 12:43:42 -08002178core_initcall(sock_init); /* early initcall */
2179
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180#ifdef CONFIG_PROC_FS
2181void socket_seq_show(struct seq_file *seq)
2182{
2183 int cpu;
2184 int counter = 0;
2185
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -07002186 for_each_possible_cpu(cpu)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002187 counter += per_cpu(sockets_in_use, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188
2189 /* It can be negative, by the way. 8) */
2190 if (counter < 0)
2191 counter = 0;
2192
2193 seq_printf(seq, "sockets: used %d\n", counter);
2194}
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002195#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196
Shaun Pereira89bbfc92006-03-21 23:58:08 -08002197#ifdef CONFIG_COMPAT
2198static long compat_sock_ioctl(struct file *file, unsigned cmd,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002199 unsigned long arg)
Shaun Pereira89bbfc92006-03-21 23:58:08 -08002200{
2201 struct socket *sock = file->private_data;
2202 int ret = -ENOIOCTLCMD;
2203
2204 if (sock->ops->compat_ioctl)
2205 ret = sock->ops->compat_ioctl(sock, cmd, arg);
2206
2207 return ret;
2208}
2209#endif
2210
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07002211int kernel_bind(struct socket *sock, struct sockaddr *addr, int addrlen)
2212{
2213 return sock->ops->bind(sock, addr, addrlen);
2214}
2215
2216int kernel_listen(struct socket *sock, int backlog)
2217{
2218 return sock->ops->listen(sock, backlog);
2219}
2220
2221int kernel_accept(struct socket *sock, struct socket **newsock, int flags)
2222{
2223 struct sock *sk = sock->sk;
2224 int err;
2225
2226 err = sock_create_lite(sk->sk_family, sk->sk_type, sk->sk_protocol,
2227 newsock);
2228 if (err < 0)
2229 goto done;
2230
2231 err = sock->ops->accept(sock, *newsock, flags);
2232 if (err < 0) {
2233 sock_release(*newsock);
2234 goto done;
2235 }
2236
2237 (*newsock)->ops = sock->ops;
2238
2239done:
2240 return err;
2241}
2242
2243int kernel_connect(struct socket *sock, struct sockaddr *addr, int addrlen,
YOSHIFUJI Hideaki4768fbc2007-02-09 23:25:31 +09002244 int flags)
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07002245{
2246 return sock->ops->connect(sock, addr, addrlen, flags);
2247}
2248
2249int kernel_getsockname(struct socket *sock, struct sockaddr *addr,
2250 int *addrlen)
2251{
2252 return sock->ops->getname(sock, addr, addrlen, 0);
2253}
2254
2255int kernel_getpeername(struct socket *sock, struct sockaddr *addr,
2256 int *addrlen)
2257{
2258 return sock->ops->getname(sock, addr, addrlen, 1);
2259}
2260
2261int kernel_getsockopt(struct socket *sock, int level, int optname,
2262 char *optval, int *optlen)
2263{
2264 mm_segment_t oldfs = get_fs();
2265 int err;
2266
2267 set_fs(KERNEL_DS);
2268 if (level == SOL_SOCKET)
2269 err = sock_getsockopt(sock, level, optname, optval, optlen);
2270 else
2271 err = sock->ops->getsockopt(sock, level, optname, optval,
2272 optlen);
2273 set_fs(oldfs);
2274 return err;
2275}
2276
2277int kernel_setsockopt(struct socket *sock, int level, int optname,
2278 char *optval, int optlen)
2279{
2280 mm_segment_t oldfs = get_fs();
2281 int err;
2282
2283 set_fs(KERNEL_DS);
2284 if (level == SOL_SOCKET)
2285 err = sock_setsockopt(sock, level, optname, optval, optlen);
2286 else
2287 err = sock->ops->setsockopt(sock, level, optname, optval,
2288 optlen);
2289 set_fs(oldfs);
2290 return err;
2291}
2292
2293int kernel_sendpage(struct socket *sock, struct page *page, int offset,
2294 size_t size, int flags)
2295{
2296 if (sock->ops->sendpage)
2297 return sock->ops->sendpage(sock, page, offset, size, flags);
2298
2299 return sock_no_sendpage(sock, page, offset, size, flags);
2300}
2301
2302int kernel_sock_ioctl(struct socket *sock, int cmd, unsigned long arg)
2303{
2304 mm_segment_t oldfs = get_fs();
2305 int err;
2306
2307 set_fs(KERNEL_DS);
2308 err = sock->ops->ioctl(sock, cmd, arg);
2309 set_fs(oldfs);
2310
2311 return err;
2312}
2313
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314/* ABI emulation layers need these two */
2315EXPORT_SYMBOL(move_addr_to_kernel);
2316EXPORT_SYMBOL(move_addr_to_user);
2317EXPORT_SYMBOL(sock_create);
2318EXPORT_SYMBOL(sock_create_kern);
2319EXPORT_SYMBOL(sock_create_lite);
2320EXPORT_SYMBOL(sock_map_fd);
2321EXPORT_SYMBOL(sock_recvmsg);
2322EXPORT_SYMBOL(sock_register);
2323EXPORT_SYMBOL(sock_release);
2324EXPORT_SYMBOL(sock_sendmsg);
2325EXPORT_SYMBOL(sock_unregister);
2326EXPORT_SYMBOL(sock_wake_async);
2327EXPORT_SYMBOL(sockfd_lookup);
2328EXPORT_SYMBOL(kernel_sendmsg);
2329EXPORT_SYMBOL(kernel_recvmsg);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07002330EXPORT_SYMBOL(kernel_bind);
2331EXPORT_SYMBOL(kernel_listen);
2332EXPORT_SYMBOL(kernel_accept);
2333EXPORT_SYMBOL(kernel_connect);
2334EXPORT_SYMBOL(kernel_getsockname);
2335EXPORT_SYMBOL(kernel_getpeername);
2336EXPORT_SYMBOL(kernel_getsockopt);
2337EXPORT_SYMBOL(kernel_setsockopt);
2338EXPORT_SYMBOL(kernel_sendpage);
2339EXPORT_SYMBOL(kernel_sock_ioctl);