hugetlb: fix prio_tree unit (CVE-2007-4133)
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / net / socket.c
blob1230704cd9ca9d8989f90bd3fcdc9112a46dfd2e
1 /*
2 * NET An implementation of the SOCKET network access protocol.
4 * Version: @(#)socket.c 1.1.93 18/02/95
6 * Authors: Orest Zborowski, <obz@Kodak.COM>
7 * Ross Biro
8 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
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)
45 * Tigran Aivazian : Made listen(2) backlog sanity checks
46 * protocol-independent
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.
55 * This module is effectively the top level interface to the BSD socket
56 * paradigm.
58 * Based upon Swansea University Computer Society NET3.039
61 #include <linux/config.h>
62 #include <linux/mm.h>
63 #include <linux/smp_lock.h>
64 #include <linux/socket.h>
65 #include <linux/file.h>
66 #include <linux/net.h>
67 #include <linux/interrupt.h>
68 #include <linux/netdevice.h>
69 #include <linux/proc_fs.h>
70 #include <linux/seq_file.h>
71 #include <linux/wanrouter.h>
72 #include <linux/if_bridge.h>
73 #include <linux/if_frad.h>
74 #include <linux/if_vlan.h>
75 #include <linux/init.h>
76 #include <linux/poll.h>
77 #include <linux/cache.h>
78 #include <linux/module.h>
79 #include <linux/highmem.h>
80 #include <linux/divert.h>
81 #include <linux/mount.h>
82 #include <linux/security.h>
83 #include <linux/syscalls.h>
84 #include <linux/compat.h>
85 #include <linux/kmod.h>
86 #include <linux/audit.h>
88 #ifdef CONFIG_NET_RADIO
89 #include <linux/wireless.h> /* Note : will define WIRELESS_EXT */
90 #endif /* CONFIG_NET_RADIO */
92 #include <asm/uaccess.h>
93 #include <asm/unistd.h>
95 #include <net/compat.h>
97 #include <net/sock.h>
98 #include <linux/netfilter.h>
100 static int sock_no_open(struct inode *irrelevant, struct file *dontcare);
101 static ssize_t sock_aio_read(struct kiocb *iocb, char __user *buf,
102 size_t size, loff_t pos);
103 static ssize_t sock_aio_write(struct kiocb *iocb, const char __user *buf,
104 size_t size, loff_t pos);
105 static int sock_mmap(struct file *file, struct vm_area_struct * vma);
107 static int sock_close(struct inode *inode, struct file *file);
108 static unsigned int sock_poll(struct file *file,
109 struct poll_table_struct *wait);
110 static long sock_ioctl(struct file *file,
111 unsigned int cmd, unsigned long arg);
112 static int sock_fasync(int fd, struct file *filp, int on);
113 static ssize_t sock_readv(struct file *file, const struct iovec *vector,
114 unsigned long count, loff_t *ppos);
115 static ssize_t sock_writev(struct file *file, const struct iovec *vector,
116 unsigned long count, loff_t *ppos);
117 static ssize_t sock_sendpage(struct file *file, struct page *page,
118 int offset, size_t size, loff_t *ppos, int more);
122 * Socket files have a set of 'special' operations as well as the generic file ones. These don't appear
123 * in the operation structures but are done directly via the socketcall() multiplexor.
126 static struct file_operations socket_file_ops = {
127 .owner = THIS_MODULE,
128 .llseek = no_llseek,
129 .aio_read = sock_aio_read,
130 .aio_write = sock_aio_write,
131 .poll = sock_poll,
132 .unlocked_ioctl = sock_ioctl,
133 .mmap = sock_mmap,
134 .open = sock_no_open, /* special open code to disallow open via /proc */
135 .release = sock_close,
136 .fasync = sock_fasync,
137 .readv = sock_readv,
138 .writev = sock_writev,
139 .sendpage = sock_sendpage
143 * The protocol list. Each protocol is registered in here.
146 static struct net_proto_family *net_families[NPROTO];
148 #if defined(CONFIG_SMP) || defined(CONFIG_PREEMPT)
149 static atomic_t net_family_lockct = ATOMIC_INIT(0);
150 static DEFINE_SPINLOCK(net_family_lock);
152 /* The strategy is: modifications net_family vector are short, do not
153 sleep and veeery rare, but read access should be free of any exclusive
154 locks.
157 static void net_family_write_lock(void)
159 spin_lock(&net_family_lock);
160 while (atomic_read(&net_family_lockct) != 0) {
161 spin_unlock(&net_family_lock);
163 yield();
165 spin_lock(&net_family_lock);
169 static __inline__ void net_family_write_unlock(void)
171 spin_unlock(&net_family_lock);
174 static __inline__ void net_family_read_lock(void)
176 atomic_inc(&net_family_lockct);
177 spin_unlock_wait(&net_family_lock);
180 static __inline__ void net_family_read_unlock(void)
182 atomic_dec(&net_family_lockct);
185 #else
186 #define net_family_write_lock() do { } while(0)
187 #define net_family_write_unlock() do { } while(0)
188 #define net_family_read_lock() do { } while(0)
189 #define net_family_read_unlock() do { } while(0)
190 #endif
194 * Statistics counters of the socket lists
197 static DEFINE_PER_CPU(int, sockets_in_use) = 0;
200 * Support routines. Move socket addresses back and forth across the kernel/user
201 * divide and look after the messy bits.
204 #define MAX_SOCK_ADDR 128 /* 108 for Unix domain -
205 16 for IP, 16 for IPX,
206 24 for IPv6,
207 about 80 for AX.25
208 must be at least one bigger than
209 the AF_UNIX size (see net/unix/af_unix.c
210 :unix_mkname()).
214 * move_addr_to_kernel - copy a socket address into kernel space
215 * @uaddr: Address in user space
216 * @kaddr: Address in kernel space
217 * @ulen: Length in user space
219 * The address is copied into kernel space. If the provided address is
220 * too long an error code of -EINVAL is returned. If the copy gives
221 * invalid addresses -EFAULT is returned. On a success 0 is returned.
224 int move_addr_to_kernel(void __user *uaddr, int ulen, void *kaddr)
226 if(ulen<0||ulen>MAX_SOCK_ADDR)
227 return -EINVAL;
228 if(ulen==0)
229 return 0;
230 if(copy_from_user(kaddr,uaddr,ulen))
231 return -EFAULT;
232 return audit_sockaddr(ulen, kaddr);
236 * move_addr_to_user - copy an address to user space
237 * @kaddr: kernel space address
238 * @klen: length of address in kernel
239 * @uaddr: user space address
240 * @ulen: pointer to user length field
242 * The value pointed to by ulen on entry is the buffer length available.
243 * This is overwritten with the buffer space used. -EINVAL is returned
244 * if an overlong buffer is specified or a negative buffer size. -EFAULT
245 * is returned if either the buffer or the length field are not
246 * accessible.
247 * After copying the data up to the limit the user specifies, the true
248 * length of the data is written over the length limit the user
249 * specified. Zero is returned for a success.
252 int move_addr_to_user(void *kaddr, int klen, void __user *uaddr, int __user *ulen)
254 int err;
255 int len;
257 if((err=get_user(len, ulen)))
258 return err;
259 if(len>klen)
260 len=klen;
261 if(len<0 || len> MAX_SOCK_ADDR)
262 return -EINVAL;
263 if(len)
265 if(copy_to_user(uaddr,kaddr,len))
266 return -EFAULT;
269 * "fromlen shall refer to the value before truncation.."
270 * 1003.1g
272 return __put_user(klen, ulen);
275 #define SOCKFS_MAGIC 0x534F434B
277 static kmem_cache_t * sock_inode_cachep __read_mostly;
279 static struct inode *sock_alloc_inode(struct super_block *sb)
281 struct socket_alloc *ei;
282 ei = (struct socket_alloc *)kmem_cache_alloc(sock_inode_cachep, SLAB_KERNEL);
283 if (!ei)
284 return NULL;
285 init_waitqueue_head(&ei->socket.wait);
287 ei->socket.fasync_list = NULL;
288 ei->socket.state = SS_UNCONNECTED;
289 ei->socket.flags = 0;
290 ei->socket.ops = NULL;
291 ei->socket.sk = NULL;
292 ei->socket.file = NULL;
293 ei->socket.flags = 0;
295 return &ei->vfs_inode;
298 static void sock_destroy_inode(struct inode *inode)
300 kmem_cache_free(sock_inode_cachep,
301 container_of(inode, struct socket_alloc, vfs_inode));
304 static void init_once(void * foo, kmem_cache_t * cachep, unsigned long flags)
306 struct socket_alloc *ei = (struct socket_alloc *) foo;
308 if ((flags & (SLAB_CTOR_VERIFY|SLAB_CTOR_CONSTRUCTOR)) ==
309 SLAB_CTOR_CONSTRUCTOR)
310 inode_init_once(&ei->vfs_inode);
313 static int init_inodecache(void)
315 sock_inode_cachep = kmem_cache_create("sock_inode_cache",
316 sizeof(struct socket_alloc),
317 0, SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT,
318 init_once, NULL);
319 if (sock_inode_cachep == NULL)
320 return -ENOMEM;
321 return 0;
324 static struct super_operations sockfs_ops = {
325 .alloc_inode = sock_alloc_inode,
326 .destroy_inode =sock_destroy_inode,
327 .statfs = simple_statfs,
330 static struct super_block *sockfs_get_sb(struct file_system_type *fs_type,
331 int flags, const char *dev_name, void *data)
333 return get_sb_pseudo(fs_type, "socket:", &sockfs_ops, SOCKFS_MAGIC);
336 static struct vfsmount *sock_mnt __read_mostly;
338 static struct file_system_type sock_fs_type = {
339 .name = "sockfs",
340 .get_sb = sockfs_get_sb,
341 .kill_sb = kill_anon_super,
343 static int sockfs_delete_dentry(struct dentry *dentry)
345 return 1;
347 static struct dentry_operations sockfs_dentry_operations = {
348 .d_delete = sockfs_delete_dentry,
352 * Obtains the first available file descriptor and sets it up for use.
354 * This function creates file structure and maps it to fd space
355 * of current process. On success it returns file descriptor
356 * and file struct implicitly stored in sock->file.
357 * Note that another thread may close file descriptor before we return
358 * from this function. We use the fact that now we do not refer
359 * to socket after mapping. If one day we will need it, this
360 * function will increment ref. count on file by 1.
362 * In any case returned fd MAY BE not valid!
363 * This race condition is unavoidable
364 * with shared fd spaces, we cannot solve it inside kernel,
365 * but we take care of internal coherence yet.
368 int sock_map_fd(struct socket *sock)
370 int fd;
371 struct qstr this;
372 char name[32];
375 * Find a file descriptor suitable for return to the user.
378 fd = get_unused_fd();
379 if (fd >= 0) {
380 struct file *file = get_empty_filp();
382 if (!file) {
383 put_unused_fd(fd);
384 fd = -ENFILE;
385 goto out;
388 this.len = sprintf(name, "[%lu]", SOCK_INODE(sock)->i_ino);
389 this.name = name;
390 this.hash = SOCK_INODE(sock)->i_ino;
392 file->f_dentry = d_alloc(sock_mnt->mnt_sb->s_root, &this);
393 if (!file->f_dentry) {
394 put_filp(file);
395 put_unused_fd(fd);
396 fd = -ENOMEM;
397 goto out;
399 file->f_dentry->d_op = &sockfs_dentry_operations;
400 d_add(file->f_dentry, SOCK_INODE(sock));
401 file->f_vfsmnt = mntget(sock_mnt);
402 file->f_mapping = file->f_dentry->d_inode->i_mapping;
404 sock->file = file;
405 file->f_op = SOCK_INODE(sock)->i_fop = &socket_file_ops;
406 file->f_mode = FMODE_READ | FMODE_WRITE;
407 file->f_flags = O_RDWR;
408 file->f_pos = 0;
409 file->private_data = sock;
410 fd_install(fd, file);
413 out:
414 return fd;
418 * sockfd_lookup - Go from a file number to its socket slot
419 * @fd: file handle
420 * @err: pointer to an error code return
422 * The file handle passed in is locked and the socket it is bound
423 * too is returned. If an error occurs the err pointer is overwritten
424 * with a negative errno code and NULL is returned. The function checks
425 * for both invalid handles and passing a handle which is not a socket.
427 * On a success the socket object pointer is returned.
430 struct socket *sockfd_lookup(int fd, int *err)
432 struct file *file;
433 struct inode *inode;
434 struct socket *sock;
436 if (!(file = fget(fd)))
438 *err = -EBADF;
439 return NULL;
442 if (file->f_op == &socket_file_ops)
443 return file->private_data; /* set in sock_map_fd */
445 inode = file->f_dentry->d_inode;
446 if (!S_ISSOCK(inode->i_mode)) {
447 *err = -ENOTSOCK;
448 fput(file);
449 return NULL;
452 sock = SOCKET_I(inode);
453 if (sock->file != file) {
454 printk(KERN_ERR "socki_lookup: socket file changed!\n");
455 sock->file = file;
457 return sock;
461 * sock_alloc - allocate a socket
463 * Allocate a new inode and socket object. The two are bound together
464 * and initialised. The socket is then returned. If we are out of inodes
465 * NULL is returned.
468 static struct socket *sock_alloc(void)
470 struct inode * inode;
471 struct socket * sock;
473 inode = new_inode(sock_mnt->mnt_sb);
474 if (!inode)
475 return NULL;
477 sock = SOCKET_I(inode);
479 inode->i_mode = S_IFSOCK|S_IRWXUGO;
480 inode->i_uid = current->fsuid;
481 inode->i_gid = current->fsgid;
483 get_cpu_var(sockets_in_use)++;
484 put_cpu_var(sockets_in_use);
485 return sock;
489 * In theory you can't get an open on this inode, but /proc provides
490 * a back door. Remember to keep it shut otherwise you'll let the
491 * creepy crawlies in.
494 static int sock_no_open(struct inode *irrelevant, struct file *dontcare)
496 return -ENXIO;
499 struct file_operations bad_sock_fops = {
500 .owner = THIS_MODULE,
501 .open = sock_no_open,
505 * sock_release - close a socket
506 * @sock: socket to close
508 * The socket is released from the protocol stack if it has a release
509 * callback, and the inode is then released if the socket is bound to
510 * an inode not a file.
513 void sock_release(struct socket *sock)
515 if (sock->ops) {
516 struct module *owner = sock->ops->owner;
518 sock->ops->release(sock);
519 sock->ops = NULL;
520 module_put(owner);
523 if (sock->fasync_list)
524 printk(KERN_ERR "sock_release: fasync list not empty!\n");
526 get_cpu_var(sockets_in_use)--;
527 put_cpu_var(sockets_in_use);
528 if (!sock->file) {
529 iput(SOCK_INODE(sock));
530 return;
532 sock->file=NULL;
535 static inline int __sock_sendmsg(struct kiocb *iocb, struct socket *sock,
536 struct msghdr *msg, size_t size)
538 struct sock_iocb *si = kiocb_to_siocb(iocb);
539 int err;
541 si->sock = sock;
542 si->scm = NULL;
543 si->msg = msg;
544 si->size = size;
546 err = security_socket_sendmsg(sock, msg, size);
547 if (err)
548 return err;
550 return sock->ops->sendmsg(iocb, sock, msg, size);
553 int sock_sendmsg(struct socket *sock, struct msghdr *msg, size_t size)
555 struct kiocb iocb;
556 struct sock_iocb siocb;
557 int ret;
559 init_sync_kiocb(&iocb, NULL);
560 iocb.private = &siocb;
561 ret = __sock_sendmsg(&iocb, sock, msg, size);
562 if (-EIOCBQUEUED == ret)
563 ret = wait_on_sync_kiocb(&iocb);
564 return ret;
567 int kernel_sendmsg(struct socket *sock, struct msghdr *msg,
568 struct kvec *vec, size_t num, size_t size)
570 mm_segment_t oldfs = get_fs();
571 int result;
573 set_fs(KERNEL_DS);
575 * the following is safe, since for compiler definitions of kvec and
576 * iovec are identical, yielding the same in-core layout and alignment
578 msg->msg_iov = (struct iovec *)vec,
579 msg->msg_iovlen = num;
580 result = sock_sendmsg(sock, msg, size);
581 set_fs(oldfs);
582 return result;
585 static inline int __sock_recvmsg(struct kiocb *iocb, struct socket *sock,
586 struct msghdr *msg, size_t size, int flags)
588 int err;
589 struct sock_iocb *si = kiocb_to_siocb(iocb);
591 si->sock = sock;
592 si->scm = NULL;
593 si->msg = msg;
594 si->size = size;
595 si->flags = flags;
597 err = security_socket_recvmsg(sock, msg, size, flags);
598 if (err)
599 return err;
601 return sock->ops->recvmsg(iocb, sock, msg, size, flags);
604 int sock_recvmsg(struct socket *sock, struct msghdr *msg,
605 size_t size, int flags)
607 struct kiocb iocb;
608 struct sock_iocb siocb;
609 int ret;
611 init_sync_kiocb(&iocb, NULL);
612 iocb.private = &siocb;
613 ret = __sock_recvmsg(&iocb, sock, msg, size, flags);
614 if (-EIOCBQUEUED == ret)
615 ret = wait_on_sync_kiocb(&iocb);
616 return ret;
619 int kernel_recvmsg(struct socket *sock, struct msghdr *msg,
620 struct kvec *vec, size_t num,
621 size_t size, int flags)
623 mm_segment_t oldfs = get_fs();
624 int result;
626 set_fs(KERNEL_DS);
628 * the following is safe, since for compiler definitions of kvec and
629 * iovec are identical, yielding the same in-core layout and alignment
631 msg->msg_iov = (struct iovec *)vec,
632 msg->msg_iovlen = num;
633 result = sock_recvmsg(sock, msg, size, flags);
634 set_fs(oldfs);
635 return result;
638 static void sock_aio_dtor(struct kiocb *iocb)
640 kfree(iocb->private);
643 static ssize_t sock_sendpage(struct file *file, struct page *page,
644 int offset, size_t size, loff_t *ppos, int more)
646 struct socket *sock;
647 int flags;
649 sock = file->private_data;
651 flags = !(file->f_flags & O_NONBLOCK) ? 0 : MSG_DONTWAIT;
652 if (more)
653 flags |= MSG_MORE;
655 return sock->ops->sendpage(sock, page, offset, size, flags);
658 static struct sock_iocb *alloc_sock_iocb(struct kiocb *iocb,
659 char __user *ubuf, size_t size, struct sock_iocb *siocb)
661 if (!is_sync_kiocb(iocb)) {
662 siocb = kmalloc(sizeof(*siocb), GFP_KERNEL);
663 if (!siocb)
664 return NULL;
665 iocb->ki_dtor = sock_aio_dtor;
668 siocb->kiocb = iocb;
669 siocb->async_iov.iov_base = ubuf;
670 siocb->async_iov.iov_len = size;
672 iocb->private = siocb;
673 return siocb;
676 static ssize_t do_sock_read(struct msghdr *msg, struct kiocb *iocb,
677 struct file *file, struct iovec *iov, unsigned long nr_segs)
679 struct socket *sock = file->private_data;
680 size_t size = 0;
681 int i;
683 for (i = 0 ; i < nr_segs ; i++)
684 size += iov[i].iov_len;
686 msg->msg_name = NULL;
687 msg->msg_namelen = 0;
688 msg->msg_control = NULL;
689 msg->msg_controllen = 0;
690 msg->msg_iov = (struct iovec *) iov;
691 msg->msg_iovlen = nr_segs;
692 msg->msg_flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
694 return __sock_recvmsg(iocb, sock, msg, size, msg->msg_flags);
697 static ssize_t sock_readv(struct file *file, const struct iovec *iov,
698 unsigned long nr_segs, loff_t *ppos)
700 struct kiocb iocb;
701 struct sock_iocb siocb;
702 struct msghdr msg;
703 int ret;
705 init_sync_kiocb(&iocb, NULL);
706 iocb.private = &siocb;
708 ret = do_sock_read(&msg, &iocb, file, (struct iovec *)iov, nr_segs);
709 if (-EIOCBQUEUED == ret)
710 ret = wait_on_sync_kiocb(&iocb);
711 return ret;
714 static ssize_t sock_aio_read(struct kiocb *iocb, char __user *ubuf,
715 size_t count, loff_t pos)
717 struct sock_iocb siocb, *x;
719 if (pos != 0)
720 return -ESPIPE;
721 if (count == 0) /* Match SYS5 behaviour */
722 return 0;
724 x = alloc_sock_iocb(iocb, ubuf, count, &siocb);
725 if (!x)
726 return -ENOMEM;
727 return do_sock_read(&x->async_msg, iocb, iocb->ki_filp,
728 &x->async_iov, 1);
731 static ssize_t do_sock_write(struct msghdr *msg, struct kiocb *iocb,
732 struct file *file, struct iovec *iov, unsigned long nr_segs)
734 struct socket *sock = file->private_data;
735 size_t size = 0;
736 int i;
738 for (i = 0 ; i < nr_segs ; i++)
739 size += iov[i].iov_len;
741 msg->msg_name = NULL;
742 msg->msg_namelen = 0;
743 msg->msg_control = NULL;
744 msg->msg_controllen = 0;
745 msg->msg_iov = (struct iovec *) iov;
746 msg->msg_iovlen = nr_segs;
747 msg->msg_flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
748 if (sock->type == SOCK_SEQPACKET)
749 msg->msg_flags |= MSG_EOR;
751 return __sock_sendmsg(iocb, sock, msg, size);
754 static ssize_t sock_writev(struct file *file, const struct iovec *iov,
755 unsigned long nr_segs, loff_t *ppos)
757 struct msghdr msg;
758 struct kiocb iocb;
759 struct sock_iocb siocb;
760 int ret;
762 init_sync_kiocb(&iocb, NULL);
763 iocb.private = &siocb;
765 ret = do_sock_write(&msg, &iocb, file, (struct iovec *)iov, nr_segs);
766 if (-EIOCBQUEUED == ret)
767 ret = wait_on_sync_kiocb(&iocb);
768 return ret;
771 static ssize_t sock_aio_write(struct kiocb *iocb, const char __user *ubuf,
772 size_t count, loff_t pos)
774 struct sock_iocb siocb, *x;
776 if (pos != 0)
777 return -ESPIPE;
779 x = alloc_sock_iocb(iocb, (void __user *)ubuf, count, &siocb);
780 if (!x)
781 return -ENOMEM;
783 return do_sock_write(&x->async_msg, iocb, iocb->ki_filp,
784 &x->async_iov, 1);
789 * Atomic setting of ioctl hooks to avoid race
790 * with module unload.
793 static DECLARE_MUTEX(br_ioctl_mutex);
794 static int (*br_ioctl_hook)(unsigned int cmd, void __user *arg) = NULL;
796 void brioctl_set(int (*hook)(unsigned int, void __user *))
798 down(&br_ioctl_mutex);
799 br_ioctl_hook = hook;
800 up(&br_ioctl_mutex);
802 EXPORT_SYMBOL(brioctl_set);
804 static DECLARE_MUTEX(vlan_ioctl_mutex);
805 static int (*vlan_ioctl_hook)(void __user *arg);
807 void vlan_ioctl_set(int (*hook)(void __user *))
809 down(&vlan_ioctl_mutex);
810 vlan_ioctl_hook = hook;
811 up(&vlan_ioctl_mutex);
813 EXPORT_SYMBOL(vlan_ioctl_set);
815 static DECLARE_MUTEX(dlci_ioctl_mutex);
816 static int (*dlci_ioctl_hook)(unsigned int, void __user *);
818 void dlci_ioctl_set(int (*hook)(unsigned int, void __user *))
820 down(&dlci_ioctl_mutex);
821 dlci_ioctl_hook = hook;
822 up(&dlci_ioctl_mutex);
824 EXPORT_SYMBOL(dlci_ioctl_set);
827 * With an ioctl, arg may well be a user mode pointer, but we don't know
828 * what to do with it - that's up to the protocol still.
831 static long sock_ioctl(struct file *file, unsigned cmd, unsigned long arg)
833 struct socket *sock;
834 void __user *argp = (void __user *)arg;
835 int pid, err;
837 sock = file->private_data;
838 if (cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15)) {
839 err = dev_ioctl(cmd, argp);
840 } else
841 #ifdef WIRELESS_EXT
842 if (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST) {
843 err = dev_ioctl(cmd, argp);
844 } else
845 #endif /* WIRELESS_EXT */
846 switch (cmd) {
847 case FIOSETOWN:
848 case SIOCSPGRP:
849 err = -EFAULT;
850 if (get_user(pid, (int __user *)argp))
851 break;
852 err = f_setown(sock->file, pid, 1);
853 break;
854 case FIOGETOWN:
855 case SIOCGPGRP:
856 err = put_user(sock->file->f_owner.pid, (int __user *)argp);
857 break;
858 case SIOCGIFBR:
859 case SIOCSIFBR:
860 case SIOCBRADDBR:
861 case SIOCBRDELBR:
862 err = -ENOPKG;
863 if (!br_ioctl_hook)
864 request_module("bridge");
866 down(&br_ioctl_mutex);
867 if (br_ioctl_hook)
868 err = br_ioctl_hook(cmd, argp);
869 up(&br_ioctl_mutex);
870 break;
871 case SIOCGIFVLAN:
872 case SIOCSIFVLAN:
873 err = -ENOPKG;
874 if (!vlan_ioctl_hook)
875 request_module("8021q");
877 down(&vlan_ioctl_mutex);
878 if (vlan_ioctl_hook)
879 err = vlan_ioctl_hook(argp);
880 up(&vlan_ioctl_mutex);
881 break;
882 case SIOCGIFDIVERT:
883 case SIOCSIFDIVERT:
884 /* Convert this to call through a hook */
885 err = divert_ioctl(cmd, argp);
886 break;
887 case SIOCADDDLCI:
888 case SIOCDELDLCI:
889 err = -ENOPKG;
890 if (!dlci_ioctl_hook)
891 request_module("dlci");
893 if (dlci_ioctl_hook) {
894 down(&dlci_ioctl_mutex);
895 err = dlci_ioctl_hook(cmd, argp);
896 up(&dlci_ioctl_mutex);
898 break;
899 default:
900 err = sock->ops->ioctl(sock, cmd, arg);
903 * If this ioctl is unknown try to hand it down
904 * to the NIC driver.
906 if (err == -ENOIOCTLCMD)
907 err = dev_ioctl(cmd, argp);
908 break;
910 return err;
913 int sock_create_lite(int family, int type, int protocol, struct socket **res)
915 int err;
916 struct socket *sock = NULL;
918 err = security_socket_create(family, type, protocol, 1);
919 if (err)
920 goto out;
922 sock = sock_alloc();
923 if (!sock) {
924 err = -ENOMEM;
925 goto out;
928 security_socket_post_create(sock, family, type, protocol, 1);
929 sock->type = type;
930 out:
931 *res = sock;
932 return err;
935 /* No kernel lock held - perfect */
936 static unsigned int sock_poll(struct file *file, poll_table * wait)
938 struct socket *sock;
941 * We can't return errors to poll, so it's either yes or no.
943 sock = file->private_data;
944 return sock->ops->poll(file, sock, wait);
947 static int sock_mmap(struct file * file, struct vm_area_struct * vma)
949 struct socket *sock = file->private_data;
951 return sock->ops->mmap(file, sock, vma);
954 static int sock_close(struct inode *inode, struct file *filp)
957 * It was possible the inode is NULL we were
958 * closing an unfinished socket.
961 if (!inode)
963 printk(KERN_DEBUG "sock_close: NULL inode\n");
964 return 0;
966 sock_fasync(-1, filp, 0);
967 sock_release(SOCKET_I(inode));
968 return 0;
972 * Update the socket async list
974 * Fasync_list locking strategy.
976 * 1. fasync_list is modified only under process context socket lock
977 * i.e. under semaphore.
978 * 2. fasync_list is used under read_lock(&sk->sk_callback_lock)
979 * or under socket lock.
980 * 3. fasync_list can be used from softirq context, so that
981 * modification under socket lock have to be enhanced with
982 * write_lock_bh(&sk->sk_callback_lock).
983 * --ANK (990710)
986 static int sock_fasync(int fd, struct file *filp, int on)
988 struct fasync_struct *fa, *fna=NULL, **prev;
989 struct socket *sock;
990 struct sock *sk;
992 if (on)
994 fna = kmalloc(sizeof(struct fasync_struct), GFP_KERNEL);
995 if(fna==NULL)
996 return -ENOMEM;
999 sock = filp->private_data;
1001 if ((sk=sock->sk) == NULL) {
1002 kfree(fna);
1003 return -EINVAL;
1006 lock_sock(sk);
1008 prev=&(sock->fasync_list);
1010 for (fa=*prev; fa!=NULL; prev=&fa->fa_next,fa=*prev)
1011 if (fa->fa_file==filp)
1012 break;
1014 if(on)
1016 if(fa!=NULL)
1018 write_lock_bh(&sk->sk_callback_lock);
1019 fa->fa_fd=fd;
1020 write_unlock_bh(&sk->sk_callback_lock);
1022 kfree(fna);
1023 goto out;
1025 fna->fa_file=filp;
1026 fna->fa_fd=fd;
1027 fna->magic=FASYNC_MAGIC;
1028 fna->fa_next=sock->fasync_list;
1029 write_lock_bh(&sk->sk_callback_lock);
1030 sock->fasync_list=fna;
1031 write_unlock_bh(&sk->sk_callback_lock);
1033 else
1035 if (fa!=NULL)
1037 write_lock_bh(&sk->sk_callback_lock);
1038 *prev=fa->fa_next;
1039 write_unlock_bh(&sk->sk_callback_lock);
1040 kfree(fa);
1044 out:
1045 release_sock(sock->sk);
1046 return 0;
1049 /* This function may be called only under socket lock or callback_lock */
1051 int sock_wake_async(struct socket *sock, int how, int band)
1053 if (!sock || !sock->fasync_list)
1054 return -1;
1055 switch (how)
1057 case 1:
1059 if (test_bit(SOCK_ASYNC_WAITDATA, &sock->flags))
1060 break;
1061 goto call_kill;
1062 case 2:
1063 if (!test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sock->flags))
1064 break;
1065 /* fall through */
1066 case 0:
1067 call_kill:
1068 __kill_fasync(sock->fasync_list, SIGIO, band);
1069 break;
1070 case 3:
1071 __kill_fasync(sock->fasync_list, SIGURG, band);
1073 return 0;
1076 static int __sock_create(int family, int type, int protocol, struct socket **res, int kern)
1078 int err;
1079 struct socket *sock;
1082 * Check protocol is in range
1084 if (family < 0 || family >= NPROTO)
1085 return -EAFNOSUPPORT;
1086 if (type < 0 || type >= SOCK_MAX)
1087 return -EINVAL;
1089 /* Compatibility.
1091 This uglymoron is moved from INET layer to here to avoid
1092 deadlock in module load.
1094 if (family == PF_INET && type == SOCK_PACKET) {
1095 static int warned;
1096 if (!warned) {
1097 warned = 1;
1098 printk(KERN_INFO "%s uses obsolete (PF_INET,SOCK_PACKET)\n", current->comm);
1100 family = PF_PACKET;
1103 err = security_socket_create(family, type, protocol, kern);
1104 if (err)
1105 return err;
1107 #if defined(CONFIG_KMOD)
1108 /* Attempt to load a protocol module if the find failed.
1110 * 12/09/1996 Marcin: But! this makes REALLY only sense, if the user
1111 * requested real, full-featured networking support upon configuration.
1112 * Otherwise module support will break!
1114 if (net_families[family]==NULL)
1116 request_module("net-pf-%d",family);
1118 #endif
1120 net_family_read_lock();
1121 if (net_families[family] == NULL) {
1122 err = -EAFNOSUPPORT;
1123 goto out;
1127 * Allocate the socket and allow the family to set things up. if
1128 * the protocol is 0, the family is instructed to select an appropriate
1129 * default.
1132 if (!(sock = sock_alloc())) {
1133 printk(KERN_WARNING "socket: no more sockets\n");
1134 err = -ENFILE; /* Not exactly a match, but its the
1135 closest posix thing */
1136 goto out;
1139 sock->type = type;
1142 * We will call the ->create function, that possibly is in a loadable
1143 * module, so we have to bump that loadable module refcnt first.
1145 err = -EAFNOSUPPORT;
1146 if (!try_module_get(net_families[family]->owner))
1147 goto out_release;
1149 if ((err = net_families[family]->create(sock, protocol)) < 0) {
1150 sock->ops = NULL;
1151 goto out_module_put;
1155 * Now to bump the refcnt of the [loadable] module that owns this
1156 * socket at sock_release time we decrement its refcnt.
1158 if (!try_module_get(sock->ops->owner)) {
1159 sock->ops = NULL;
1160 goto out_module_put;
1163 * Now that we're done with the ->create function, the [loadable]
1164 * module can have its refcnt decremented
1166 module_put(net_families[family]->owner);
1167 *res = sock;
1168 security_socket_post_create(sock, family, type, protocol, kern);
1170 out:
1171 net_family_read_unlock();
1172 return err;
1173 out_module_put:
1174 module_put(net_families[family]->owner);
1175 out_release:
1176 sock_release(sock);
1177 goto out;
1180 int sock_create(int family, int type, int protocol, struct socket **res)
1182 return __sock_create(family, type, protocol, res, 0);
1185 int sock_create_kern(int family, int type, int protocol, struct socket **res)
1187 return __sock_create(family, type, protocol, res, 1);
1190 asmlinkage long sys_socket(int family, int type, int protocol)
1192 int retval;
1193 struct socket *sock;
1195 retval = sock_create(family, type, protocol, &sock);
1196 if (retval < 0)
1197 goto out;
1199 retval = sock_map_fd(sock);
1200 if (retval < 0)
1201 goto out_release;
1203 out:
1204 /* It may be already another descriptor 8) Not kernel problem. */
1205 return retval;
1207 out_release:
1208 sock_release(sock);
1209 return retval;
1213 * Create a pair of connected sockets.
1216 asmlinkage long sys_socketpair(int family, int type, int protocol, int __user *usockvec)
1218 struct socket *sock1, *sock2;
1219 int fd1, fd2, err;
1222 * Obtain the first socket and check if the underlying protocol
1223 * supports the socketpair call.
1226 err = sock_create(family, type, protocol, &sock1);
1227 if (err < 0)
1228 goto out;
1230 err = sock_create(family, type, protocol, &sock2);
1231 if (err < 0)
1232 goto out_release_1;
1234 err = sock1->ops->socketpair(sock1, sock2);
1235 if (err < 0)
1236 goto out_release_both;
1238 fd1 = fd2 = -1;
1240 err = sock_map_fd(sock1);
1241 if (err < 0)
1242 goto out_release_both;
1243 fd1 = err;
1245 err = sock_map_fd(sock2);
1246 if (err < 0)
1247 goto out_close_1;
1248 fd2 = err;
1250 /* fd1 and fd2 may be already another descriptors.
1251 * Not kernel problem.
1254 err = put_user(fd1, &usockvec[0]);
1255 if (!err)
1256 err = put_user(fd2, &usockvec[1]);
1257 if (!err)
1258 return 0;
1260 sys_close(fd2);
1261 sys_close(fd1);
1262 return err;
1264 out_close_1:
1265 sock_release(sock2);
1266 sys_close(fd1);
1267 return err;
1269 out_release_both:
1270 sock_release(sock2);
1271 out_release_1:
1272 sock_release(sock1);
1273 out:
1274 return err;
1279 * Bind a name to a socket. Nothing much to do here since it's
1280 * the protocol's responsibility to handle the local address.
1282 * We move the socket address to kernel space before we call
1283 * the protocol layer (having also checked the address is ok).
1286 asmlinkage long sys_bind(int fd, struct sockaddr __user *umyaddr, int addrlen)
1288 struct socket *sock;
1289 char address[MAX_SOCK_ADDR];
1290 int err;
1292 if((sock = sockfd_lookup(fd,&err))!=NULL)
1294 if((err=move_addr_to_kernel(umyaddr,addrlen,address))>=0) {
1295 err = security_socket_bind(sock, (struct sockaddr *)address, addrlen);
1296 if (err) {
1297 sockfd_put(sock);
1298 return err;
1300 err = sock->ops->bind(sock, (struct sockaddr *)address, addrlen);
1302 sockfd_put(sock);
1304 return err;
1309 * Perform a listen. Basically, we allow the protocol to do anything
1310 * necessary for a listen, and if that works, we mark the socket as
1311 * ready for listening.
1314 int sysctl_somaxconn = SOMAXCONN;
1316 asmlinkage long sys_listen(int fd, int backlog)
1318 struct socket *sock;
1319 int err;
1321 if ((sock = sockfd_lookup(fd, &err)) != NULL) {
1322 if ((unsigned) backlog > sysctl_somaxconn)
1323 backlog = sysctl_somaxconn;
1325 err = security_socket_listen(sock, backlog);
1326 if (err) {
1327 sockfd_put(sock);
1328 return err;
1331 err=sock->ops->listen(sock, backlog);
1332 sockfd_put(sock);
1334 return err;
1339 * For accept, we attempt to create a new socket, set up the link
1340 * with the client, wake up the client, then return the new
1341 * connected fd. We collect the address of the connector in kernel
1342 * space and move it to user at the very end. This is unclean because
1343 * we open the socket then return an error.
1345 * 1003.1g adds the ability to recvmsg() to query connection pending
1346 * status to recvmsg. We need to add that support in a way thats
1347 * clean when we restucture accept also.
1350 asmlinkage long sys_accept(int fd, struct sockaddr __user *upeer_sockaddr, int __user *upeer_addrlen)
1352 struct socket *sock, *newsock;
1353 int err, len;
1354 char address[MAX_SOCK_ADDR];
1356 sock = sockfd_lookup(fd, &err);
1357 if (!sock)
1358 goto out;
1360 err = -ENFILE;
1361 if (!(newsock = sock_alloc()))
1362 goto out_put;
1364 newsock->type = sock->type;
1365 newsock->ops = sock->ops;
1368 * We don't need try_module_get here, as the listening socket (sock)
1369 * has the protocol module (sock->ops->owner) held.
1371 __module_get(newsock->ops->owner);
1373 err = security_socket_accept(sock, newsock);
1374 if (err)
1375 goto out_release;
1377 err = sock->ops->accept(sock, newsock, sock->file->f_flags);
1378 if (err < 0)
1379 goto out_release;
1381 if (upeer_sockaddr) {
1382 if(newsock->ops->getname(newsock, (struct sockaddr *)address, &len, 2)<0) {
1383 err = -ECONNABORTED;
1384 goto out_release;
1386 err = move_addr_to_user(address, len, upeer_sockaddr, upeer_addrlen);
1387 if (err < 0)
1388 goto out_release;
1391 /* File flags are not inherited via accept() unlike another OSes. */
1393 if ((err = sock_map_fd(newsock)) < 0)
1394 goto out_release;
1396 security_socket_post_accept(sock, newsock);
1398 out_put:
1399 sockfd_put(sock);
1400 out:
1401 return err;
1402 out_release:
1403 sock_release(newsock);
1404 goto out_put;
1409 * Attempt to connect to a socket with the server address. The address
1410 * is in user space so we verify it is OK and move it to kernel space.
1412 * For 1003.1g we need to add clean support for a bind to AF_UNSPEC to
1413 * break bindings
1415 * NOTE: 1003.1g draft 6.3 is broken with respect to AX.25/NetROM and
1416 * other SEQPACKET protocols that take time to connect() as it doesn't
1417 * include the -EINPROGRESS status for such sockets.
1420 asmlinkage long sys_connect(int fd, struct sockaddr __user *uservaddr, int addrlen)
1422 struct socket *sock;
1423 char address[MAX_SOCK_ADDR];
1424 int err;
1426 sock = sockfd_lookup(fd, &err);
1427 if (!sock)
1428 goto out;
1429 err = move_addr_to_kernel(uservaddr, addrlen, address);
1430 if (err < 0)
1431 goto out_put;
1433 err = security_socket_connect(sock, (struct sockaddr *)address, addrlen);
1434 if (err)
1435 goto out_put;
1437 err = sock->ops->connect(sock, (struct sockaddr *) address, addrlen,
1438 sock->file->f_flags);
1439 out_put:
1440 sockfd_put(sock);
1441 out:
1442 return err;
1446 * Get the local address ('name') of a socket object. Move the obtained
1447 * name to user space.
1450 asmlinkage long sys_getsockname(int fd, struct sockaddr __user *usockaddr, int __user *usockaddr_len)
1452 struct socket *sock;
1453 char address[MAX_SOCK_ADDR];
1454 int len, err;
1456 sock = sockfd_lookup(fd, &err);
1457 if (!sock)
1458 goto out;
1460 err = security_socket_getsockname(sock);
1461 if (err)
1462 goto out_put;
1464 err = sock->ops->getname(sock, (struct sockaddr *)address, &len, 0);
1465 if (err)
1466 goto out_put;
1467 err = move_addr_to_user(address, len, usockaddr, usockaddr_len);
1469 out_put:
1470 sockfd_put(sock);
1471 out:
1472 return err;
1476 * Get the remote address ('name') of a socket object. Move the obtained
1477 * name to user space.
1480 asmlinkage long sys_getpeername(int fd, struct sockaddr __user *usockaddr, int __user *usockaddr_len)
1482 struct socket *sock;
1483 char address[MAX_SOCK_ADDR];
1484 int len, err;
1486 if ((sock = sockfd_lookup(fd, &err))!=NULL)
1488 err = security_socket_getpeername(sock);
1489 if (err) {
1490 sockfd_put(sock);
1491 return err;
1494 err = sock->ops->getname(sock, (struct sockaddr *)address, &len, 1);
1495 if (!err)
1496 err=move_addr_to_user(address,len, usockaddr, usockaddr_len);
1497 sockfd_put(sock);
1499 return err;
1503 * Send a datagram to a given address. We move the address into kernel
1504 * space and check the user space data area is readable before invoking
1505 * the protocol.
1508 asmlinkage long sys_sendto(int fd, void __user * buff, size_t len, unsigned flags,
1509 struct sockaddr __user *addr, int addr_len)
1511 struct socket *sock;
1512 char address[MAX_SOCK_ADDR];
1513 int err;
1514 struct msghdr msg;
1515 struct iovec iov;
1517 sock = sockfd_lookup(fd, &err);
1518 if (!sock)
1519 goto out;
1520 iov.iov_base=buff;
1521 iov.iov_len=len;
1522 msg.msg_name=NULL;
1523 msg.msg_iov=&iov;
1524 msg.msg_iovlen=1;
1525 msg.msg_control=NULL;
1526 msg.msg_controllen=0;
1527 msg.msg_namelen=0;
1528 if(addr)
1530 err = move_addr_to_kernel(addr, addr_len, address);
1531 if (err < 0)
1532 goto out_put;
1533 msg.msg_name=address;
1534 msg.msg_namelen=addr_len;
1536 if (sock->file->f_flags & O_NONBLOCK)
1537 flags |= MSG_DONTWAIT;
1538 msg.msg_flags = flags;
1539 err = sock_sendmsg(sock, &msg, len);
1541 out_put:
1542 sockfd_put(sock);
1543 out:
1544 return err;
1548 * Send a datagram down a socket.
1551 asmlinkage long sys_send(int fd, void __user * buff, size_t len, unsigned flags)
1553 return sys_sendto(fd, buff, len, flags, NULL, 0);
1557 * Receive a frame from the socket and optionally record the address of the
1558 * sender. We verify the buffers are writable and if needed move the
1559 * sender address from kernel to user space.
1562 asmlinkage long sys_recvfrom(int fd, void __user * ubuf, size_t size, unsigned flags,
1563 struct sockaddr __user *addr, int __user *addr_len)
1565 struct socket *sock;
1566 struct iovec iov;
1567 struct msghdr msg;
1568 char address[MAX_SOCK_ADDR];
1569 int err,err2;
1571 sock = sockfd_lookup(fd, &err);
1572 if (!sock)
1573 goto out;
1575 msg.msg_control=NULL;
1576 msg.msg_controllen=0;
1577 msg.msg_iovlen=1;
1578 msg.msg_iov=&iov;
1579 iov.iov_len=size;
1580 iov.iov_base=ubuf;
1581 msg.msg_name=address;
1582 msg.msg_namelen=MAX_SOCK_ADDR;
1583 if (sock->file->f_flags & O_NONBLOCK)
1584 flags |= MSG_DONTWAIT;
1585 err=sock_recvmsg(sock, &msg, size, flags);
1587 if(err >= 0 && addr != NULL)
1589 err2=move_addr_to_user(address, msg.msg_namelen, addr, addr_len);
1590 if(err2<0)
1591 err=err2;
1593 sockfd_put(sock);
1594 out:
1595 return err;
1599 * Receive a datagram from a socket.
1602 asmlinkage long sys_recv(int fd, void __user * ubuf, size_t size, unsigned flags)
1604 return sys_recvfrom(fd, ubuf, size, flags, NULL, NULL);
1608 * Set a socket option. Because we don't know the option lengths we have
1609 * to pass the user mode parameter for the protocols to sort out.
1612 asmlinkage long sys_setsockopt(int fd, int level, int optname, char __user *optval, int optlen)
1614 int err;
1615 struct socket *sock;
1617 if (optlen < 0)
1618 return -EINVAL;
1620 if ((sock = sockfd_lookup(fd, &err))!=NULL)
1622 err = security_socket_setsockopt(sock,level,optname);
1623 if (err) {
1624 sockfd_put(sock);
1625 return err;
1628 if (level == SOL_SOCKET)
1629 err=sock_setsockopt(sock,level,optname,optval,optlen);
1630 else
1631 err=sock->ops->setsockopt(sock, level, optname, optval, optlen);
1632 sockfd_put(sock);
1634 return err;
1638 * Get a socket option. Because we don't know the option lengths we have
1639 * to pass a user mode parameter for the protocols to sort out.
1642 asmlinkage long sys_getsockopt(int fd, int level, int optname, char __user *optval, int __user *optlen)
1644 int err;
1645 struct socket *sock;
1647 if ((sock = sockfd_lookup(fd, &err))!=NULL)
1649 err = security_socket_getsockopt(sock, level,
1650 optname);
1651 if (err) {
1652 sockfd_put(sock);
1653 return err;
1656 if (level == SOL_SOCKET)
1657 err=sock_getsockopt(sock,level,optname,optval,optlen);
1658 else
1659 err=sock->ops->getsockopt(sock, level, optname, optval, optlen);
1660 sockfd_put(sock);
1662 return err;
1667 * Shutdown a socket.
1670 asmlinkage long sys_shutdown(int fd, int how)
1672 int err;
1673 struct socket *sock;
1675 if ((sock = sockfd_lookup(fd, &err))!=NULL)
1677 err = security_socket_shutdown(sock, how);
1678 if (err) {
1679 sockfd_put(sock);
1680 return err;
1683 err=sock->ops->shutdown(sock, how);
1684 sockfd_put(sock);
1686 return err;
1689 /* A couple of helpful macros for getting the address of the 32/64 bit
1690 * fields which are the same type (int / unsigned) on our platforms.
1692 #define COMPAT_MSG(msg, member) ((MSG_CMSG_COMPAT & flags) ? &msg##_compat->member : &msg->member)
1693 #define COMPAT_NAMELEN(msg) COMPAT_MSG(msg, msg_namelen)
1694 #define COMPAT_FLAGS(msg) COMPAT_MSG(msg, msg_flags)
1698 * BSD sendmsg interface
1701 asmlinkage long sys_sendmsg(int fd, struct msghdr __user *msg, unsigned flags)
1703 struct compat_msghdr __user *msg_compat = (struct compat_msghdr __user *)msg;
1704 struct socket *sock;
1705 char address[MAX_SOCK_ADDR];
1706 struct iovec iovstack[UIO_FASTIOV], *iov = iovstack;
1707 unsigned char ctl[sizeof(struct cmsghdr) + 20]
1708 __attribute__ ((aligned (sizeof(__kernel_size_t))));
1709 /* 20 is size of ipv6_pktinfo */
1710 unsigned char *ctl_buf = ctl;
1711 struct msghdr msg_sys;
1712 int err, ctl_len, iov_size, total_len;
1714 err = -EFAULT;
1715 if (MSG_CMSG_COMPAT & flags) {
1716 if (get_compat_msghdr(&msg_sys, msg_compat))
1717 return -EFAULT;
1718 } else if (copy_from_user(&msg_sys, msg, sizeof(struct msghdr)))
1719 return -EFAULT;
1721 sock = sockfd_lookup(fd, &err);
1722 if (!sock)
1723 goto out;
1725 /* do not move before msg_sys is valid */
1726 err = -EMSGSIZE;
1727 if (msg_sys.msg_iovlen > UIO_MAXIOV)
1728 goto out_put;
1730 /* Check whether to allocate the iovec area*/
1731 err = -ENOMEM;
1732 iov_size = msg_sys.msg_iovlen * sizeof(struct iovec);
1733 if (msg_sys.msg_iovlen > UIO_FASTIOV) {
1734 iov = sock_kmalloc(sock->sk, iov_size, GFP_KERNEL);
1735 if (!iov)
1736 goto out_put;
1739 /* This will also move the address data into kernel space */
1740 if (MSG_CMSG_COMPAT & flags) {
1741 err = verify_compat_iovec(&msg_sys, iov, address, VERIFY_READ);
1742 } else
1743 err = verify_iovec(&msg_sys, iov, address, VERIFY_READ);
1744 if (err < 0)
1745 goto out_freeiov;
1746 total_len = err;
1748 err = -ENOBUFS;
1750 if (msg_sys.msg_controllen > INT_MAX)
1751 goto out_freeiov;
1752 ctl_len = msg_sys.msg_controllen;
1753 if ((MSG_CMSG_COMPAT & flags) && ctl_len) {
1754 err = cmsghdr_from_user_compat_to_kern(&msg_sys, sock->sk, ctl, sizeof(ctl));
1755 if (err)
1756 goto out_freeiov;
1757 ctl_buf = msg_sys.msg_control;
1758 ctl_len = msg_sys.msg_controllen;
1759 } else if (ctl_len) {
1760 if (ctl_len > sizeof(ctl))
1762 ctl_buf = sock_kmalloc(sock->sk, ctl_len, GFP_KERNEL);
1763 if (ctl_buf == NULL)
1764 goto out_freeiov;
1766 err = -EFAULT;
1768 * Careful! Before this, msg_sys.msg_control contains a user pointer.
1769 * Afterwards, it will be a kernel pointer. Thus the compiler-assisted
1770 * checking falls down on this.
1772 if (copy_from_user(ctl_buf, (void __user *) msg_sys.msg_control, ctl_len))
1773 goto out_freectl;
1774 msg_sys.msg_control = ctl_buf;
1776 msg_sys.msg_flags = flags;
1778 if (sock->file->f_flags & O_NONBLOCK)
1779 msg_sys.msg_flags |= MSG_DONTWAIT;
1780 err = sock_sendmsg(sock, &msg_sys, total_len);
1782 out_freectl:
1783 if (ctl_buf != ctl)
1784 sock_kfree_s(sock->sk, ctl_buf, ctl_len);
1785 out_freeiov:
1786 if (iov != iovstack)
1787 sock_kfree_s(sock->sk, iov, iov_size);
1788 out_put:
1789 sockfd_put(sock);
1790 out:
1791 return err;
1795 * BSD recvmsg interface
1798 asmlinkage long sys_recvmsg(int fd, struct msghdr __user *msg, unsigned int flags)
1800 struct compat_msghdr __user *msg_compat = (struct compat_msghdr __user *)msg;
1801 struct socket *sock;
1802 struct iovec iovstack[UIO_FASTIOV];
1803 struct iovec *iov=iovstack;
1804 struct msghdr msg_sys;
1805 unsigned long cmsg_ptr;
1806 int err, iov_size, total_len, len;
1808 /* kernel mode address */
1809 char addr[MAX_SOCK_ADDR];
1811 /* user mode address pointers */
1812 struct sockaddr __user *uaddr;
1813 int __user *uaddr_len;
1815 if (MSG_CMSG_COMPAT & flags) {
1816 if (get_compat_msghdr(&msg_sys, msg_compat))
1817 return -EFAULT;
1818 } else
1819 if (copy_from_user(&msg_sys,msg,sizeof(struct msghdr)))
1820 return -EFAULT;
1822 sock = sockfd_lookup(fd, &err);
1823 if (!sock)
1824 goto out;
1826 err = -EMSGSIZE;
1827 if (msg_sys.msg_iovlen > UIO_MAXIOV)
1828 goto out_put;
1830 /* Check whether to allocate the iovec area*/
1831 err = -ENOMEM;
1832 iov_size = msg_sys.msg_iovlen * sizeof(struct iovec);
1833 if (msg_sys.msg_iovlen > UIO_FASTIOV) {
1834 iov = sock_kmalloc(sock->sk, iov_size, GFP_KERNEL);
1835 if (!iov)
1836 goto out_put;
1840 * Save the user-mode address (verify_iovec will change the
1841 * kernel msghdr to use the kernel address space)
1844 uaddr = (void __user *) msg_sys.msg_name;
1845 uaddr_len = COMPAT_NAMELEN(msg);
1846 if (MSG_CMSG_COMPAT & flags) {
1847 err = verify_compat_iovec(&msg_sys, iov, addr, VERIFY_WRITE);
1848 } else
1849 err = verify_iovec(&msg_sys, iov, addr, VERIFY_WRITE);
1850 if (err < 0)
1851 goto out_freeiov;
1852 total_len=err;
1854 cmsg_ptr = (unsigned long)msg_sys.msg_control;
1855 msg_sys.msg_flags = 0;
1856 if (MSG_CMSG_COMPAT & flags)
1857 msg_sys.msg_flags = MSG_CMSG_COMPAT;
1859 if (sock->file->f_flags & O_NONBLOCK)
1860 flags |= MSG_DONTWAIT;
1861 err = sock_recvmsg(sock, &msg_sys, total_len, flags);
1862 if (err < 0)
1863 goto out_freeiov;
1864 len = err;
1866 if (uaddr != NULL) {
1867 err = move_addr_to_user(addr, msg_sys.msg_namelen, uaddr, uaddr_len);
1868 if (err < 0)
1869 goto out_freeiov;
1871 err = __put_user((msg_sys.msg_flags & ~MSG_CMSG_COMPAT),
1872 COMPAT_FLAGS(msg));
1873 if (err)
1874 goto out_freeiov;
1875 if (MSG_CMSG_COMPAT & flags)
1876 err = __put_user((unsigned long)msg_sys.msg_control-cmsg_ptr,
1877 &msg_compat->msg_controllen);
1878 else
1879 err = __put_user((unsigned long)msg_sys.msg_control-cmsg_ptr,
1880 &msg->msg_controllen);
1881 if (err)
1882 goto out_freeiov;
1883 err = len;
1885 out_freeiov:
1886 if (iov != iovstack)
1887 sock_kfree_s(sock->sk, iov, iov_size);
1888 out_put:
1889 sockfd_put(sock);
1890 out:
1891 return err;
1894 #ifdef __ARCH_WANT_SYS_SOCKETCALL
1896 /* Argument list sizes for sys_socketcall */
1897 #define AL(x) ((x) * sizeof(unsigned long))
1898 static unsigned char nargs[18]={AL(0),AL(3),AL(3),AL(3),AL(2),AL(3),
1899 AL(3),AL(3),AL(4),AL(4),AL(4),AL(6),
1900 AL(6),AL(2),AL(5),AL(5),AL(3),AL(3)};
1901 #undef AL
1904 * System call vectors.
1906 * Argument checking cleaned up. Saved 20% in size.
1907 * This function doesn't need to set the kernel lock because
1908 * it is set by the callees.
1911 asmlinkage long sys_socketcall(int call, unsigned long __user *args)
1913 unsigned long a[6];
1914 unsigned long a0,a1;
1915 int err;
1917 if(call<1||call>SYS_RECVMSG)
1918 return -EINVAL;
1920 /* copy_from_user should be SMP safe. */
1921 if (copy_from_user(a, args, nargs[call]))
1922 return -EFAULT;
1924 err = audit_socketcall(nargs[call]/sizeof(unsigned long), a);
1925 if (err)
1926 return err;
1928 a0=a[0];
1929 a1=a[1];
1931 switch(call)
1933 case SYS_SOCKET:
1934 err = sys_socket(a0,a1,a[2]);
1935 break;
1936 case SYS_BIND:
1937 err = sys_bind(a0,(struct sockaddr __user *)a1, a[2]);
1938 break;
1939 case SYS_CONNECT:
1940 err = sys_connect(a0, (struct sockaddr __user *)a1, a[2]);
1941 break;
1942 case SYS_LISTEN:
1943 err = sys_listen(a0,a1);
1944 break;
1945 case SYS_ACCEPT:
1946 err = sys_accept(a0,(struct sockaddr __user *)a1, (int __user *)a[2]);
1947 break;
1948 case SYS_GETSOCKNAME:
1949 err = sys_getsockname(a0,(struct sockaddr __user *)a1, (int __user *)a[2]);
1950 break;
1951 case SYS_GETPEERNAME:
1952 err = sys_getpeername(a0, (struct sockaddr __user *)a1, (int __user *)a[2]);
1953 break;
1954 case SYS_SOCKETPAIR:
1955 err = sys_socketpair(a0,a1, a[2], (int __user *)a[3]);
1956 break;
1957 case SYS_SEND:
1958 err = sys_send(a0, (void __user *)a1, a[2], a[3]);
1959 break;
1960 case SYS_SENDTO:
1961 err = sys_sendto(a0,(void __user *)a1, a[2], a[3],
1962 (struct sockaddr __user *)a[4], a[5]);
1963 break;
1964 case SYS_RECV:
1965 err = sys_recv(a0, (void __user *)a1, a[2], a[3]);
1966 break;
1967 case SYS_RECVFROM:
1968 err = sys_recvfrom(a0, (void __user *)a1, a[2], a[3],
1969 (struct sockaddr __user *)a[4], (int __user *)a[5]);
1970 break;
1971 case SYS_SHUTDOWN:
1972 err = sys_shutdown(a0,a1);
1973 break;
1974 case SYS_SETSOCKOPT:
1975 err = sys_setsockopt(a0, a1, a[2], (char __user *)a[3], a[4]);
1976 break;
1977 case SYS_GETSOCKOPT:
1978 err = sys_getsockopt(a0, a1, a[2], (char __user *)a[3], (int __user *)a[4]);
1979 break;
1980 case SYS_SENDMSG:
1981 err = sys_sendmsg(a0, (struct msghdr __user *) a1, a[2]);
1982 break;
1983 case SYS_RECVMSG:
1984 err = sys_recvmsg(a0, (struct msghdr __user *) a1, a[2]);
1985 break;
1986 default:
1987 err = -EINVAL;
1988 break;
1990 return err;
1993 #endif /* __ARCH_WANT_SYS_SOCKETCALL */
1996 * This function is called by a protocol handler that wants to
1997 * advertise its address family, and have it linked into the
1998 * SOCKET module.
2001 int sock_register(struct net_proto_family *ops)
2003 int err;
2005 if (ops->family >= NPROTO) {
2006 printk(KERN_CRIT "protocol %d >= NPROTO(%d)\n", ops->family, NPROTO);
2007 return -ENOBUFS;
2009 net_family_write_lock();
2010 err = -EEXIST;
2011 if (net_families[ops->family] == NULL) {
2012 net_families[ops->family]=ops;
2013 err = 0;
2015 net_family_write_unlock();
2016 printk(KERN_INFO "NET: Registered protocol family %d\n",
2017 ops->family);
2018 return err;
2022 * This function is called by a protocol handler that wants to
2023 * remove its address family, and have it unlinked from the
2024 * SOCKET module.
2027 int sock_unregister(int family)
2029 if (family < 0 || family >= NPROTO)
2030 return -1;
2032 net_family_write_lock();
2033 net_families[family]=NULL;
2034 net_family_write_unlock();
2035 printk(KERN_INFO "NET: Unregistered protocol family %d\n",
2036 family);
2037 return 0;
2040 static int __init sock_init(void)
2043 * Initialize sock SLAB cache.
2046 sk_init();
2049 * Initialize skbuff SLAB cache
2051 skb_init();
2054 * Initialize the protocols module.
2057 init_inodecache();
2058 register_filesystem(&sock_fs_type);
2059 sock_mnt = kern_mount(&sock_fs_type);
2061 /* The real protocol initialization is performed in later initcalls.
2064 #ifdef CONFIG_NETFILTER
2065 netfilter_init();
2066 #endif
2068 return 0;
2071 core_initcall(sock_init); /* early initcall */
2073 #ifdef CONFIG_PROC_FS
2074 void socket_seq_show(struct seq_file *seq)
2076 int cpu;
2077 int counter = 0;
2079 for_each_cpu(cpu)
2080 counter += per_cpu(sockets_in_use, cpu);
2082 /* It can be negative, by the way. 8) */
2083 if (counter < 0)
2084 counter = 0;
2086 seq_printf(seq, "sockets: used %d\n", counter);
2088 #endif /* CONFIG_PROC_FS */
2090 /* ABI emulation layers need these two */
2091 EXPORT_SYMBOL(move_addr_to_kernel);
2092 EXPORT_SYMBOL(move_addr_to_user);
2093 EXPORT_SYMBOL(sock_create);
2094 EXPORT_SYMBOL(sock_create_kern);
2095 EXPORT_SYMBOL(sock_create_lite);
2096 EXPORT_SYMBOL(sock_map_fd);
2097 EXPORT_SYMBOL(sock_recvmsg);
2098 EXPORT_SYMBOL(sock_register);
2099 EXPORT_SYMBOL(sock_release);
2100 EXPORT_SYMBOL(sock_sendmsg);
2101 EXPORT_SYMBOL(sock_unregister);
2102 EXPORT_SYMBOL(sock_wake_async);
2103 EXPORT_SYMBOL(sockfd_lookup);
2104 EXPORT_SYMBOL(kernel_sendmsg);
2105 EXPORT_SYMBOL(kernel_recvmsg);