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>
8 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
11 * Anonymous : NOTSOCK/BADF cleanup. Error fix in
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
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
23 * Niibe Yutaka : Asynchronous I/O for writes (4.4BSD style)
24 * Jeff Uphoff : Made max number of sockets command-line
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
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
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
58 * Based upon Swansea University Computer Society NET3.039
62 #include <linux/socket.h>
63 #include <linux/file.h>
64 #include <linux/net.h>
65 #include <linux/interrupt.h>
66 #include <linux/rcupdate.h>
67 #include <linux/netdevice.h>
68 #include <linux/proc_fs.h>
69 #include <linux/seq_file.h>
70 #include <linux/mutex.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/mount.h>
81 #include <linux/security.h>
82 #include <linux/syscalls.h>
83 #include <linux/compat.h>
84 #include <linux/kmod.h>
85 #include <linux/audit.h>
86 #include <linux/wireless.h>
88 #include <asm/uaccess.h>
89 #include <asm/unistd.h>
91 #include <net/compat.h>
94 #include <linux/netfilter.h>
96 static int sock_no_open(struct inode
*irrelevant
, struct file
*dontcare
);
97 static ssize_t
sock_aio_read(struct kiocb
*iocb
, const struct iovec
*iov
,
98 unsigned long nr_segs
, loff_t pos
);
99 static ssize_t
sock_aio_write(struct kiocb
*iocb
, const struct iovec
*iov
,
100 unsigned long nr_segs
, loff_t pos
);
101 static int sock_mmap(struct file
*file
, struct vm_area_struct
*vma
);
103 static int sock_close(struct inode
*inode
, struct file
*file
);
104 static unsigned int sock_poll(struct file
*file
,
105 struct poll_table_struct
*wait
);
106 static long sock_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
);
108 static long compat_sock_ioctl(struct file
*file
,
109 unsigned int cmd
, unsigned long arg
);
111 static int sock_fasync(int fd
, struct file
*filp
, int on
);
112 static ssize_t
sock_sendpage(struct file
*file
, struct page
*page
,
113 int offset
, size_t size
, loff_t
*ppos
, int more
);
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.
120 static const struct file_operations socket_file_ops
= {
121 .owner
= THIS_MODULE
,
123 .aio_read
= sock_aio_read
,
124 .aio_write
= sock_aio_write
,
126 .unlocked_ioctl
= sock_ioctl
,
128 .compat_ioctl
= compat_sock_ioctl
,
131 .open
= sock_no_open
, /* special open code to disallow open via /proc */
132 .release
= sock_close
,
133 .fasync
= sock_fasync
,
134 .sendpage
= sock_sendpage
,
135 .splice_write
= generic_splice_sendpage
,
139 * The protocol list. Each protocol is registered in here.
142 static DEFINE_SPINLOCK(net_family_lock
);
143 static const struct net_proto_family
*net_families
[NPROTO
] __read_mostly
;
146 * Statistics counters of the socket lists
149 static DEFINE_PER_CPU(int, sockets_in_use
) = 0;
153 * Move socket addresses back and forth across the kernel/user
154 * divide and look after the messy bits.
157 #define MAX_SOCK_ADDR 128 /* 108 for Unix domain -
158 16 for IP, 16 for IPX,
161 must be at least one bigger than
162 the AF_UNIX size (see net/unix/af_unix.c
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
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.
177 int move_addr_to_kernel(void __user
*uaddr
, int ulen
, void *kaddr
)
179 if (ulen
< 0 || ulen
> MAX_SOCK_ADDR
)
183 if (copy_from_user(kaddr
, uaddr
, ulen
))
185 return audit_sockaddr(ulen
, kaddr
);
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
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
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.
205 int move_addr_to_user(void *kaddr
, int klen
, void __user
*uaddr
,
211 err
= get_user(len
, ulen
);
216 if (len
< 0 || len
> MAX_SOCK_ADDR
)
219 if (audit_sockaddr(klen
, kaddr
))
221 if (copy_to_user(uaddr
, kaddr
, len
))
225 * "fromlen shall refer to the value before truncation.."
228 return __put_user(klen
, ulen
);
231 #define SOCKFS_MAGIC 0x534F434B
233 static struct kmem_cache
*sock_inode_cachep __read_mostly
;
235 static struct inode
*sock_alloc_inode(struct super_block
*sb
)
237 struct socket_alloc
*ei
;
239 ei
= kmem_cache_alloc(sock_inode_cachep
, GFP_KERNEL
);
242 init_waitqueue_head(&ei
->socket
.wait
);
244 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
;
251 return &ei
->vfs_inode
;
254 static void sock_destroy_inode(struct inode
*inode
)
256 kmem_cache_free(sock_inode_cachep
,
257 container_of(inode
, struct socket_alloc
, vfs_inode
));
260 static void init_once(void *foo
, struct kmem_cache
*cachep
, unsigned long flags
)
262 struct socket_alloc
*ei
= (struct socket_alloc
*)foo
;
264 inode_init_once(&ei
->vfs_inode
);
267 static int init_inodecache(void)
269 sock_inode_cachep
= kmem_cache_create("sock_inode_cache",
270 sizeof(struct socket_alloc
),
272 (SLAB_HWCACHE_ALIGN
|
273 SLAB_RECLAIM_ACCOUNT
|
277 if (sock_inode_cachep
== NULL
)
282 static struct super_operations sockfs_ops
= {
283 .alloc_inode
= sock_alloc_inode
,
284 .destroy_inode
=sock_destroy_inode
,
285 .statfs
= simple_statfs
,
288 static int sockfs_get_sb(struct file_system_type
*fs_type
,
289 int flags
, const char *dev_name
, void *data
,
290 struct vfsmount
*mnt
)
292 return get_sb_pseudo(fs_type
, "socket:", &sockfs_ops
, SOCKFS_MAGIC
,
296 static struct vfsmount
*sock_mnt __read_mostly
;
298 static struct file_system_type sock_fs_type
= {
300 .get_sb
= sockfs_get_sb
,
301 .kill_sb
= kill_anon_super
,
304 static int sockfs_delete_dentry(struct dentry
*dentry
)
307 * At creation time, we pretended this dentry was hashed
308 * (by clearing DCACHE_UNHASHED bit in d_flags)
309 * At delete time, we restore the truth : not hashed.
310 * (so that dput() can proceed correctly)
312 dentry
->d_flags
|= DCACHE_UNHASHED
;
317 * sockfs_dname() is called from d_path().
319 static char *sockfs_dname(struct dentry
*dentry
, char *buffer
, int buflen
)
321 return dynamic_dname(dentry
, buffer
, buflen
, "socket:[%lu]",
322 dentry
->d_inode
->i_ino
);
325 static struct dentry_operations sockfs_dentry_operations
= {
326 .d_delete
= sockfs_delete_dentry
,
327 .d_dname
= sockfs_dname
,
331 * Obtains the first available file descriptor and sets it up for use.
333 * These functions create file structures and maps them to fd space
334 * of the current process. On success it returns file descriptor
335 * and file struct implicitly stored in sock->file.
336 * Note that another thread may close file descriptor before we return
337 * from this function. We use the fact that now we do not refer
338 * to socket after mapping. If one day we will need it, this
339 * function will increment ref. count on file by 1.
341 * In any case returned fd MAY BE not valid!
342 * This race condition is unavoidable
343 * with shared fd spaces, we cannot solve it inside kernel,
344 * but we take care of internal coherence yet.
347 static int sock_alloc_fd(struct file
**filep
)
351 fd
= get_unused_fd();
352 if (likely(fd
>= 0)) {
353 struct file
*file
= get_empty_filp();
356 if (unlikely(!file
)) {
365 static int sock_attach_fd(struct socket
*sock
, struct file
*file
)
367 struct qstr name
= { .name
= "" };
369 file
->f_path
.dentry
= d_alloc(sock_mnt
->mnt_sb
->s_root
, &name
);
370 if (unlikely(!file
->f_path
.dentry
))
373 file
->f_path
.dentry
->d_op
= &sockfs_dentry_operations
;
375 * We dont want to push this dentry into global dentry hash table.
376 * We pretend dentry is already hashed, by unsetting DCACHE_UNHASHED
377 * This permits a working /proc/$pid/fd/XXX on sockets
379 file
->f_path
.dentry
->d_flags
&= ~DCACHE_UNHASHED
;
380 d_instantiate(file
->f_path
.dentry
, SOCK_INODE(sock
));
381 file
->f_path
.mnt
= mntget(sock_mnt
);
382 file
->f_mapping
= file
->f_path
.dentry
->d_inode
->i_mapping
;
385 file
->f_op
= SOCK_INODE(sock
)->i_fop
= &socket_file_ops
;
386 file
->f_mode
= FMODE_READ
| FMODE_WRITE
;
387 file
->f_flags
= O_RDWR
;
389 file
->private_data
= sock
;
394 int sock_map_fd(struct socket
*sock
)
396 struct file
*newfile
;
397 int fd
= sock_alloc_fd(&newfile
);
399 if (likely(fd
>= 0)) {
400 int err
= sock_attach_fd(sock
, newfile
);
402 if (unlikely(err
< 0)) {
407 fd_install(fd
, newfile
);
412 static struct socket
*sock_from_file(struct file
*file
, int *err
)
414 if (file
->f_op
== &socket_file_ops
)
415 return file
->private_data
; /* set in sock_map_fd */
422 * sockfd_lookup - Go from a file number to its socket slot
424 * @err: pointer to an error code return
426 * The file handle passed in is locked and the socket it is bound
427 * too is returned. If an error occurs the err pointer is overwritten
428 * with a negative errno code and NULL is returned. The function checks
429 * for both invalid handles and passing a handle which is not a socket.
431 * On a success the socket object pointer is returned.
434 struct socket
*sockfd_lookup(int fd
, int *err
)
445 sock
= sock_from_file(file
, err
);
451 static struct socket
*sockfd_lookup_light(int fd
, int *err
, int *fput_needed
)
457 file
= fget_light(fd
, fput_needed
);
459 sock
= sock_from_file(file
, err
);
462 fput_light(file
, *fput_needed
);
468 * sock_alloc - allocate a socket
470 * Allocate a new inode and socket object. The two are bound together
471 * and initialised. The socket is then returned. If we are out of inodes
475 static struct socket
*sock_alloc(void)
480 inode
= new_inode(sock_mnt
->mnt_sb
);
484 sock
= SOCKET_I(inode
);
486 inode
->i_mode
= S_IFSOCK
| S_IRWXUGO
;
487 inode
->i_uid
= current
->fsuid
;
488 inode
->i_gid
= current
->fsgid
;
490 get_cpu_var(sockets_in_use
)++;
491 put_cpu_var(sockets_in_use
);
496 * In theory you can't get an open on this inode, but /proc provides
497 * a back door. Remember to keep it shut otherwise you'll let the
498 * creepy crawlies in.
501 static int sock_no_open(struct inode
*irrelevant
, struct file
*dontcare
)
506 const struct file_operations bad_sock_fops
= {
507 .owner
= THIS_MODULE
,
508 .open
= sock_no_open
,
512 * sock_release - close a socket
513 * @sock: socket to close
515 * The socket is released from the protocol stack if it has a release
516 * callback, and the inode is then released if the socket is bound to
517 * an inode not a file.
520 void sock_release(struct socket
*sock
)
523 struct module
*owner
= sock
->ops
->owner
;
525 sock
->ops
->release(sock
);
530 if (sock
->fasync_list
)
531 printk(KERN_ERR
"sock_release: fasync list not empty!\n");
533 get_cpu_var(sockets_in_use
)--;
534 put_cpu_var(sockets_in_use
);
536 iput(SOCK_INODE(sock
));
542 static inline int __sock_sendmsg(struct kiocb
*iocb
, struct socket
*sock
,
543 struct msghdr
*msg
, size_t size
)
545 struct sock_iocb
*si
= kiocb_to_siocb(iocb
);
553 err
= security_socket_sendmsg(sock
, msg
, size
);
557 return sock
->ops
->sendmsg(iocb
, sock
, msg
, size
);
560 int sock_sendmsg(struct socket
*sock
, struct msghdr
*msg
, size_t size
)
563 struct sock_iocb siocb
;
566 init_sync_kiocb(&iocb
, NULL
);
567 iocb
.private = &siocb
;
568 ret
= __sock_sendmsg(&iocb
, sock
, msg
, size
);
569 if (-EIOCBQUEUED
== ret
)
570 ret
= wait_on_sync_kiocb(&iocb
);
574 int kernel_sendmsg(struct socket
*sock
, struct msghdr
*msg
,
575 struct kvec
*vec
, size_t num
, size_t size
)
577 mm_segment_t oldfs
= get_fs();
582 * the following is safe, since for compiler definitions of kvec and
583 * iovec are identical, yielding the same in-core layout and alignment
585 msg
->msg_iov
= (struct iovec
*)vec
;
586 msg
->msg_iovlen
= num
;
587 result
= sock_sendmsg(sock
, msg
, size
);
593 * called from sock_recv_timestamp() if sock_flag(sk, SOCK_RCVTSTAMP)
595 void __sock_recv_timestamp(struct msghdr
*msg
, struct sock
*sk
,
598 ktime_t kt
= skb
->tstamp
;
600 if (!sock_flag(sk
, SOCK_RCVTSTAMPNS
)) {
602 /* Race occurred between timestamp enabling and packet
603 receiving. Fill in the current time for now. */
605 kt
= ktime_get_real();
607 tv
= ktime_to_timeval(kt
);
608 put_cmsg(msg
, SOL_SOCKET
, SCM_TIMESTAMP
, sizeof(tv
), &tv
);
611 /* Race occurred between timestamp enabling and packet
612 receiving. Fill in the current time for now. */
614 kt
= ktime_get_real();
616 ts
= ktime_to_timespec(kt
);
617 put_cmsg(msg
, SOL_SOCKET
, SCM_TIMESTAMPNS
, sizeof(ts
), &ts
);
621 EXPORT_SYMBOL_GPL(__sock_recv_timestamp
);
623 static inline int __sock_recvmsg(struct kiocb
*iocb
, struct socket
*sock
,
624 struct msghdr
*msg
, size_t size
, int flags
)
627 struct sock_iocb
*si
= kiocb_to_siocb(iocb
);
635 err
= security_socket_recvmsg(sock
, msg
, size
, flags
);
639 return sock
->ops
->recvmsg(iocb
, sock
, msg
, size
, flags
);
642 int sock_recvmsg(struct socket
*sock
, struct msghdr
*msg
,
643 size_t size
, int flags
)
646 struct sock_iocb siocb
;
649 init_sync_kiocb(&iocb
, NULL
);
650 iocb
.private = &siocb
;
651 ret
= __sock_recvmsg(&iocb
, sock
, msg
, size
, flags
);
652 if (-EIOCBQUEUED
== ret
)
653 ret
= wait_on_sync_kiocb(&iocb
);
657 int kernel_recvmsg(struct socket
*sock
, struct msghdr
*msg
,
658 struct kvec
*vec
, size_t num
, size_t size
, int flags
)
660 mm_segment_t oldfs
= get_fs();
665 * the following is safe, since for compiler definitions of kvec and
666 * iovec are identical, yielding the same in-core layout and alignment
668 msg
->msg_iov
= (struct iovec
*)vec
, msg
->msg_iovlen
= num
;
669 result
= sock_recvmsg(sock
, msg
, size
, flags
);
674 static void sock_aio_dtor(struct kiocb
*iocb
)
676 kfree(iocb
->private);
679 static ssize_t
sock_sendpage(struct file
*file
, struct page
*page
,
680 int offset
, size_t size
, loff_t
*ppos
, int more
)
685 sock
= file
->private_data
;
687 flags
= !(file
->f_flags
& O_NONBLOCK
) ? 0 : MSG_DONTWAIT
;
691 return sock
->ops
->sendpage(sock
, page
, offset
, size
, flags
);
694 static struct sock_iocb
*alloc_sock_iocb(struct kiocb
*iocb
,
695 struct sock_iocb
*siocb
)
697 if (!is_sync_kiocb(iocb
)) {
698 siocb
= kmalloc(sizeof(*siocb
), GFP_KERNEL
);
701 iocb
->ki_dtor
= sock_aio_dtor
;
705 iocb
->private = siocb
;
709 static ssize_t
do_sock_read(struct msghdr
*msg
, struct kiocb
*iocb
,
710 struct file
*file
, const struct iovec
*iov
,
711 unsigned long nr_segs
)
713 struct socket
*sock
= file
->private_data
;
717 for (i
= 0; i
< nr_segs
; i
++)
718 size
+= iov
[i
].iov_len
;
720 msg
->msg_name
= NULL
;
721 msg
->msg_namelen
= 0;
722 msg
->msg_control
= NULL
;
723 msg
->msg_controllen
= 0;
724 msg
->msg_iov
= (struct iovec
*)iov
;
725 msg
->msg_iovlen
= nr_segs
;
726 msg
->msg_flags
= (file
->f_flags
& O_NONBLOCK
) ? MSG_DONTWAIT
: 0;
728 return __sock_recvmsg(iocb
, sock
, msg
, size
, msg
->msg_flags
);
731 static ssize_t
sock_aio_read(struct kiocb
*iocb
, const struct iovec
*iov
,
732 unsigned long nr_segs
, loff_t pos
)
734 struct sock_iocb siocb
, *x
;
739 if (iocb
->ki_left
== 0) /* Match SYS5 behaviour */
743 x
= alloc_sock_iocb(iocb
, &siocb
);
746 return do_sock_read(&x
->async_msg
, iocb
, iocb
->ki_filp
, iov
, nr_segs
);
749 static ssize_t
do_sock_write(struct msghdr
*msg
, struct kiocb
*iocb
,
750 struct file
*file
, const struct iovec
*iov
,
751 unsigned long nr_segs
)
753 struct socket
*sock
= file
->private_data
;
757 for (i
= 0; i
< nr_segs
; i
++)
758 size
+= iov
[i
].iov_len
;
760 msg
->msg_name
= NULL
;
761 msg
->msg_namelen
= 0;
762 msg
->msg_control
= NULL
;
763 msg
->msg_controllen
= 0;
764 msg
->msg_iov
= (struct iovec
*)iov
;
765 msg
->msg_iovlen
= nr_segs
;
766 msg
->msg_flags
= (file
->f_flags
& O_NONBLOCK
) ? MSG_DONTWAIT
: 0;
767 if (sock
->type
== SOCK_SEQPACKET
)
768 msg
->msg_flags
|= MSG_EOR
;
770 return __sock_sendmsg(iocb
, sock
, msg
, size
);
773 static ssize_t
sock_aio_write(struct kiocb
*iocb
, const struct iovec
*iov
,
774 unsigned long nr_segs
, loff_t pos
)
776 struct sock_iocb siocb
, *x
;
781 if (iocb
->ki_left
== 0) /* Match SYS5 behaviour */
784 x
= alloc_sock_iocb(iocb
, &siocb
);
788 return do_sock_write(&x
->async_msg
, iocb
, iocb
->ki_filp
, iov
, nr_segs
);
792 * Atomic setting of ioctl hooks to avoid race
793 * with module unload.
796 static DEFINE_MUTEX(br_ioctl_mutex
);
797 static int (*br_ioctl_hook
) (unsigned int cmd
, void __user
*arg
) = NULL
;
799 void brioctl_set(int (*hook
) (unsigned int, void __user
*))
801 mutex_lock(&br_ioctl_mutex
);
802 br_ioctl_hook
= hook
;
803 mutex_unlock(&br_ioctl_mutex
);
806 EXPORT_SYMBOL(brioctl_set
);
808 static DEFINE_MUTEX(vlan_ioctl_mutex
);
809 static int (*vlan_ioctl_hook
) (void __user
*arg
);
811 void vlan_ioctl_set(int (*hook
) (void __user
*))
813 mutex_lock(&vlan_ioctl_mutex
);
814 vlan_ioctl_hook
= hook
;
815 mutex_unlock(&vlan_ioctl_mutex
);
818 EXPORT_SYMBOL(vlan_ioctl_set
);
820 static DEFINE_MUTEX(dlci_ioctl_mutex
);
821 static int (*dlci_ioctl_hook
) (unsigned int, void __user
*);
823 void dlci_ioctl_set(int (*hook
) (unsigned int, void __user
*))
825 mutex_lock(&dlci_ioctl_mutex
);
826 dlci_ioctl_hook
= hook
;
827 mutex_unlock(&dlci_ioctl_mutex
);
830 EXPORT_SYMBOL(dlci_ioctl_set
);
833 * With an ioctl, arg may well be a user mode pointer, but we don't know
834 * what to do with it - that's up to the protocol still.
837 static long sock_ioctl(struct file
*file
, unsigned cmd
, unsigned long arg
)
840 void __user
*argp
= (void __user
*)arg
;
843 sock
= file
->private_data
;
844 if (cmd
>= SIOCDEVPRIVATE
&& cmd
<= (SIOCDEVPRIVATE
+ 15)) {
845 err
= dev_ioctl(cmd
, argp
);
847 #ifdef CONFIG_WIRELESS_EXT
848 if (cmd
>= SIOCIWFIRST
&& cmd
<= SIOCIWLAST
) {
849 err
= dev_ioctl(cmd
, argp
);
851 #endif /* CONFIG_WIRELESS_EXT */
856 if (get_user(pid
, (int __user
*)argp
))
858 err
= f_setown(sock
->file
, pid
, 1);
862 err
= put_user(f_getown(sock
->file
),
871 request_module("bridge");
873 mutex_lock(&br_ioctl_mutex
);
875 err
= br_ioctl_hook(cmd
, argp
);
876 mutex_unlock(&br_ioctl_mutex
);
881 if (!vlan_ioctl_hook
)
882 request_module("8021q");
884 mutex_lock(&vlan_ioctl_mutex
);
886 err
= vlan_ioctl_hook(argp
);
887 mutex_unlock(&vlan_ioctl_mutex
);
892 if (!dlci_ioctl_hook
)
893 request_module("dlci");
895 if (dlci_ioctl_hook
) {
896 mutex_lock(&dlci_ioctl_mutex
);
897 err
= dlci_ioctl_hook(cmd
, argp
);
898 mutex_unlock(&dlci_ioctl_mutex
);
902 err
= sock
->ops
->ioctl(sock
, cmd
, arg
);
905 * If this ioctl is unknown try to hand it down
908 if (err
== -ENOIOCTLCMD
)
909 err
= dev_ioctl(cmd
, argp
);
915 int sock_create_lite(int family
, int type
, int protocol
, struct socket
**res
)
918 struct socket
*sock
= NULL
;
920 err
= security_socket_create(family
, type
, protocol
, 1);
931 err
= security_socket_post_create(sock
, family
, type
, protocol
, 1);
944 /* No kernel lock held - perfect */
945 static unsigned int sock_poll(struct file
*file
, poll_table
*wait
)
950 * We can't return errors to poll, so it's either yes or no.
952 sock
= file
->private_data
;
953 return sock
->ops
->poll(file
, sock
, wait
);
956 static int sock_mmap(struct file
*file
, struct vm_area_struct
*vma
)
958 struct socket
*sock
= file
->private_data
;
960 return sock
->ops
->mmap(file
, sock
, vma
);
963 static int sock_close(struct inode
*inode
, struct file
*filp
)
966 * It was possible the inode is NULL we were
967 * closing an unfinished socket.
971 printk(KERN_DEBUG
"sock_close: NULL inode\n");
974 sock_fasync(-1, filp
, 0);
975 sock_release(SOCKET_I(inode
));
980 * Update the socket async list
982 * Fasync_list locking strategy.
984 * 1. fasync_list is modified only under process context socket lock
985 * i.e. under semaphore.
986 * 2. fasync_list is used under read_lock(&sk->sk_callback_lock)
987 * or under socket lock.
988 * 3. fasync_list can be used from softirq context, so that
989 * modification under socket lock have to be enhanced with
990 * write_lock_bh(&sk->sk_callback_lock).
994 static int sock_fasync(int fd
, struct file
*filp
, int on
)
996 struct fasync_struct
*fa
, *fna
= NULL
, **prev
;
1001 fna
= kmalloc(sizeof(struct fasync_struct
), GFP_KERNEL
);
1006 sock
= filp
->private_data
;
1016 prev
= &(sock
->fasync_list
);
1018 for (fa
= *prev
; fa
!= NULL
; prev
= &fa
->fa_next
, fa
= *prev
)
1019 if (fa
->fa_file
== filp
)
1024 write_lock_bh(&sk
->sk_callback_lock
);
1026 write_unlock_bh(&sk
->sk_callback_lock
);
1031 fna
->fa_file
= filp
;
1033 fna
->magic
= FASYNC_MAGIC
;
1034 fna
->fa_next
= sock
->fasync_list
;
1035 write_lock_bh(&sk
->sk_callback_lock
);
1036 sock
->fasync_list
= fna
;
1037 write_unlock_bh(&sk
->sk_callback_lock
);
1040 write_lock_bh(&sk
->sk_callback_lock
);
1041 *prev
= fa
->fa_next
;
1042 write_unlock_bh(&sk
->sk_callback_lock
);
1048 release_sock(sock
->sk
);
1052 /* This function may be called only under socket lock or callback_lock */
1054 int sock_wake_async(struct socket
*sock
, int how
, int band
)
1056 if (!sock
|| !sock
->fasync_list
)
1061 if (test_bit(SOCK_ASYNC_WAITDATA
, &sock
->flags
))
1065 if (!test_and_clear_bit(SOCK_ASYNC_NOSPACE
, &sock
->flags
))
1070 __kill_fasync(sock
->fasync_list
, SIGIO
, band
);
1073 __kill_fasync(sock
->fasync_list
, SIGURG
, band
);
1078 static int __sock_create(int family
, int type
, int protocol
,
1079 struct socket
**res
, int kern
)
1082 struct socket
*sock
;
1083 const struct net_proto_family
*pf
;
1086 * Check protocol is in range
1088 if (family
< 0 || family
>= NPROTO
)
1089 return -EAFNOSUPPORT
;
1090 if (type
< 0 || type
>= SOCK_MAX
)
1095 This uglymoron is moved from INET layer to here to avoid
1096 deadlock in module load.
1098 if (family
== PF_INET
&& type
== SOCK_PACKET
) {
1102 printk(KERN_INFO
"%s uses obsolete (PF_INET,SOCK_PACKET)\n",
1108 err
= security_socket_create(family
, type
, protocol
, kern
);
1113 * Allocate the socket and allow the family to set things up. if
1114 * the protocol is 0, the family is instructed to select an appropriate
1117 sock
= sock_alloc();
1119 if (net_ratelimit())
1120 printk(KERN_WARNING
"socket: no more sockets\n");
1121 return -ENFILE
; /* Not exactly a match, but its the
1122 closest posix thing */
1127 #if defined(CONFIG_KMOD)
1128 /* Attempt to load a protocol module if the find failed.
1130 * 12/09/1996 Marcin: But! this makes REALLY only sense, if the user
1131 * requested real, full-featured networking support upon configuration.
1132 * Otherwise module support will break!
1134 if (net_families
[family
] == NULL
)
1135 request_module("net-pf-%d", family
);
1139 pf
= rcu_dereference(net_families
[family
]);
1140 err
= -EAFNOSUPPORT
;
1145 * We will call the ->create function, that possibly is in a loadable
1146 * module, so we have to bump that loadable module refcnt first.
1148 if (!try_module_get(pf
->owner
))
1151 /* Now protected by module ref count */
1154 err
= pf
->create(sock
, protocol
);
1156 goto out_module_put
;
1159 * Now to bump the refcnt of the [loadable] module that owns this
1160 * socket at sock_release time we decrement its refcnt.
1162 if (!try_module_get(sock
->ops
->owner
))
1163 goto out_module_busy
;
1166 * Now that we're done with the ->create function, the [loadable]
1167 * module can have its refcnt decremented
1169 module_put(pf
->owner
);
1170 err
= security_socket_post_create(sock
, family
, type
, protocol
, kern
);
1178 err
= -EAFNOSUPPORT
;
1181 module_put(pf
->owner
);
1188 goto out_sock_release
;
1191 int sock_create(int family
, int type
, int protocol
, struct socket
**res
)
1193 return __sock_create(family
, type
, protocol
, res
, 0);
1196 int sock_create_kern(int family
, int type
, int protocol
, struct socket
**res
)
1198 return __sock_create(family
, type
, protocol
, res
, 1);
1201 asmlinkage
long sys_socket(int family
, int type
, int protocol
)
1204 struct socket
*sock
;
1206 retval
= sock_create(family
, type
, protocol
, &sock
);
1210 retval
= sock_map_fd(sock
);
1215 /* It may be already another descriptor 8) Not kernel problem. */
1224 * Create a pair of connected sockets.
1227 asmlinkage
long sys_socketpair(int family
, int type
, int protocol
,
1228 int __user
*usockvec
)
1230 struct socket
*sock1
, *sock2
;
1232 struct file
*newfile1
, *newfile2
;
1235 * Obtain the first socket and check if the underlying protocol
1236 * supports the socketpair call.
1239 err
= sock_create(family
, type
, protocol
, &sock1
);
1243 err
= sock_create(family
, type
, protocol
, &sock2
);
1247 err
= sock1
->ops
->socketpair(sock1
, sock2
);
1249 goto out_release_both
;
1251 fd1
= sock_alloc_fd(&newfile1
);
1252 if (unlikely(fd1
< 0))
1253 goto out_release_both
;
1255 fd2
= sock_alloc_fd(&newfile2
);
1256 if (unlikely(fd2
< 0)) {
1259 goto out_release_both
;
1262 err
= sock_attach_fd(sock1
, newfile1
);
1263 if (unlikely(err
< 0)) {
1267 err
= sock_attach_fd(sock2
, newfile2
);
1268 if (unlikely(err
< 0)) {
1273 err
= audit_fd_pair(fd1
, fd2
);
1280 fd_install(fd1
, newfile1
);
1281 fd_install(fd2
, newfile2
);
1282 /* fd1 and fd2 may be already another descriptors.
1283 * Not kernel problem.
1286 err
= put_user(fd1
, &usockvec
[0]);
1288 err
= put_user(fd2
, &usockvec
[1]);
1297 sock_release(sock2
);
1299 sock_release(sock1
);
1305 sock_release(sock1
);
1308 sock_release(sock2
);
1316 * Bind a name to a socket. Nothing much to do here since it's
1317 * the protocol's responsibility to handle the local address.
1319 * We move the socket address to kernel space before we call
1320 * the protocol layer (having also checked the address is ok).
1323 asmlinkage
long sys_bind(int fd
, struct sockaddr __user
*umyaddr
, int addrlen
)
1325 struct socket
*sock
;
1326 char address
[MAX_SOCK_ADDR
];
1327 int err
, fput_needed
;
1329 sock
= sockfd_lookup_light(fd
, &err
, &fput_needed
);
1331 err
= move_addr_to_kernel(umyaddr
, addrlen
, address
);
1333 err
= security_socket_bind(sock
,
1334 (struct sockaddr
*)address
,
1337 err
= sock
->ops
->bind(sock
,
1341 fput_light(sock
->file
, fput_needed
);
1347 * Perform a listen. Basically, we allow the protocol to do anything
1348 * necessary for a listen, and if that works, we mark the socket as
1349 * ready for listening.
1352 int sysctl_somaxconn __read_mostly
= SOMAXCONN
;
1354 asmlinkage
long sys_listen(int fd
, int backlog
)
1356 struct socket
*sock
;
1357 int err
, fput_needed
;
1359 sock
= sockfd_lookup_light(fd
, &err
, &fput_needed
);
1361 if ((unsigned)backlog
> sysctl_somaxconn
)
1362 backlog
= sysctl_somaxconn
;
1364 err
= security_socket_listen(sock
, backlog
);
1366 err
= sock
->ops
->listen(sock
, backlog
);
1368 fput_light(sock
->file
, fput_needed
);
1374 * For accept, we attempt to create a new socket, set up the link
1375 * with the client, wake up the client, then return the new
1376 * connected fd. We collect the address of the connector in kernel
1377 * space and move it to user at the very end. This is unclean because
1378 * we open the socket then return an error.
1380 * 1003.1g adds the ability to recvmsg() to query connection pending
1381 * status to recvmsg. We need to add that support in a way thats
1382 * clean when we restucture accept also.
1385 asmlinkage
long sys_accept(int fd
, struct sockaddr __user
*upeer_sockaddr
,
1386 int __user
*upeer_addrlen
)
1388 struct socket
*sock
, *newsock
;
1389 struct file
*newfile
;
1390 int err
, len
, newfd
, fput_needed
;
1391 char address
[MAX_SOCK_ADDR
];
1393 sock
= sockfd_lookup_light(fd
, &err
, &fput_needed
);
1398 if (!(newsock
= sock_alloc()))
1401 newsock
->type
= sock
->type
;
1402 newsock
->ops
= sock
->ops
;
1405 * We don't need try_module_get here, as the listening socket (sock)
1406 * has the protocol module (sock->ops->owner) held.
1408 __module_get(newsock
->ops
->owner
);
1410 newfd
= sock_alloc_fd(&newfile
);
1411 if (unlikely(newfd
< 0)) {
1413 sock_release(newsock
);
1417 err
= sock_attach_fd(newsock
, newfile
);
1421 err
= security_socket_accept(sock
, newsock
);
1425 err
= sock
->ops
->accept(sock
, newsock
, sock
->file
->f_flags
);
1429 if (upeer_sockaddr
) {
1430 if (newsock
->ops
->getname(newsock
, (struct sockaddr
*)address
,
1432 err
= -ECONNABORTED
;
1435 err
= move_addr_to_user(address
, len
, upeer_sockaddr
,
1441 /* File flags are not inherited via accept() unlike another OSes. */
1443 fd_install(newfd
, newfile
);
1446 security_socket_post_accept(sock
, newsock
);
1449 fput_light(sock
->file
, fput_needed
);
1453 sock_release(newsock
);
1455 put_unused_fd(newfd
);
1459 put_unused_fd(newfd
);
1464 * Attempt to connect to a socket with the server address. The address
1465 * is in user space so we verify it is OK and move it to kernel space.
1467 * For 1003.1g we need to add clean support for a bind to AF_UNSPEC to
1470 * NOTE: 1003.1g draft 6.3 is broken with respect to AX.25/NetROM and
1471 * other SEQPACKET protocols that take time to connect() as it doesn't
1472 * include the -EINPROGRESS status for such sockets.
1475 asmlinkage
long sys_connect(int fd
, struct sockaddr __user
*uservaddr
,
1478 struct socket
*sock
;
1479 char address
[MAX_SOCK_ADDR
];
1480 int err
, fput_needed
;
1482 sock
= sockfd_lookup_light(fd
, &err
, &fput_needed
);
1485 err
= move_addr_to_kernel(uservaddr
, addrlen
, address
);
1490 security_socket_connect(sock
, (struct sockaddr
*)address
, addrlen
);
1494 err
= sock
->ops
->connect(sock
, (struct sockaddr
*)address
, addrlen
,
1495 sock
->file
->f_flags
);
1497 fput_light(sock
->file
, fput_needed
);
1503 * Get the local address ('name') of a socket object. Move the obtained
1504 * name to user space.
1507 asmlinkage
long sys_getsockname(int fd
, struct sockaddr __user
*usockaddr
,
1508 int __user
*usockaddr_len
)
1510 struct socket
*sock
;
1511 char address
[MAX_SOCK_ADDR
];
1512 int len
, err
, fput_needed
;
1514 sock
= sockfd_lookup_light(fd
, &err
, &fput_needed
);
1518 err
= security_socket_getsockname(sock
);
1522 err
= sock
->ops
->getname(sock
, (struct sockaddr
*)address
, &len
, 0);
1525 err
= move_addr_to_user(address
, len
, usockaddr
, usockaddr_len
);
1528 fput_light(sock
->file
, fput_needed
);
1534 * Get the remote address ('name') of a socket object. Move the obtained
1535 * name to user space.
1538 asmlinkage
long sys_getpeername(int fd
, struct sockaddr __user
*usockaddr
,
1539 int __user
*usockaddr_len
)
1541 struct socket
*sock
;
1542 char address
[MAX_SOCK_ADDR
];
1543 int len
, err
, fput_needed
;
1545 sock
= sockfd_lookup_light(fd
, &err
, &fput_needed
);
1547 err
= security_socket_getpeername(sock
);
1549 fput_light(sock
->file
, fput_needed
);
1554 sock
->ops
->getname(sock
, (struct sockaddr
*)address
, &len
,
1557 err
= move_addr_to_user(address
, len
, usockaddr
,
1559 fput_light(sock
->file
, fput_needed
);
1565 * Send a datagram to a given address. We move the address into kernel
1566 * space and check the user space data area is readable before invoking
1570 asmlinkage
long sys_sendto(int fd
, void __user
*buff
, size_t len
,
1571 unsigned flags
, struct sockaddr __user
*addr
,
1574 struct socket
*sock
;
1575 char address
[MAX_SOCK_ADDR
];
1580 struct file
*sock_file
;
1582 sock_file
= fget_light(fd
, &fput_needed
);
1587 sock
= sock_from_file(sock_file
, &err
);
1590 iov
.iov_base
= buff
;
1592 msg
.msg_name
= NULL
;
1595 msg
.msg_control
= NULL
;
1596 msg
.msg_controllen
= 0;
1597 msg
.msg_namelen
= 0;
1599 err
= move_addr_to_kernel(addr
, addr_len
, address
);
1602 msg
.msg_name
= address
;
1603 msg
.msg_namelen
= addr_len
;
1605 if (sock
->file
->f_flags
& O_NONBLOCK
)
1606 flags
|= MSG_DONTWAIT
;
1607 msg
.msg_flags
= flags
;
1608 err
= sock_sendmsg(sock
, &msg
, len
);
1611 fput_light(sock_file
, fput_needed
);
1617 * Send a datagram down a socket.
1620 asmlinkage
long sys_send(int fd
, void __user
*buff
, size_t len
, unsigned flags
)
1622 return sys_sendto(fd
, buff
, len
, flags
, NULL
, 0);
1626 * Receive a frame from the socket and optionally record the address of the
1627 * sender. We verify the buffers are writable and if needed move the
1628 * sender address from kernel to user space.
1631 asmlinkage
long sys_recvfrom(int fd
, void __user
*ubuf
, size_t size
,
1632 unsigned flags
, struct sockaddr __user
*addr
,
1633 int __user
*addr_len
)
1635 struct socket
*sock
;
1638 char address
[MAX_SOCK_ADDR
];
1640 struct file
*sock_file
;
1643 sock_file
= fget_light(fd
, &fput_needed
);
1648 sock
= sock_from_file(sock_file
, &err
);
1652 msg
.msg_control
= NULL
;
1653 msg
.msg_controllen
= 0;
1657 iov
.iov_base
= ubuf
;
1658 msg
.msg_name
= address
;
1659 msg
.msg_namelen
= MAX_SOCK_ADDR
;
1660 if (sock
->file
->f_flags
& O_NONBLOCK
)
1661 flags
|= MSG_DONTWAIT
;
1662 err
= sock_recvmsg(sock
, &msg
, size
, flags
);
1664 if (err
>= 0 && addr
!= NULL
) {
1665 err2
= move_addr_to_user(address
, msg
.msg_namelen
, addr
, addr_len
);
1670 fput_light(sock_file
, fput_needed
);
1676 * Receive a datagram from a socket.
1679 asmlinkage
long sys_recv(int fd
, void __user
*ubuf
, size_t size
,
1682 return sys_recvfrom(fd
, ubuf
, size
, flags
, NULL
, NULL
);
1686 * Set a socket option. Because we don't know the option lengths we have
1687 * to pass the user mode parameter for the protocols to sort out.
1690 asmlinkage
long sys_setsockopt(int fd
, int level
, int optname
,
1691 char __user
*optval
, int optlen
)
1693 int err
, fput_needed
;
1694 struct socket
*sock
;
1699 sock
= sockfd_lookup_light(fd
, &err
, &fput_needed
);
1701 err
= security_socket_setsockopt(sock
, level
, optname
);
1705 if (level
== SOL_SOCKET
)
1707 sock_setsockopt(sock
, level
, optname
, optval
,
1711 sock
->ops
->setsockopt(sock
, level
, optname
, optval
,
1714 fput_light(sock
->file
, fput_needed
);
1720 * Get a socket option. Because we don't know the option lengths we have
1721 * to pass a user mode parameter for the protocols to sort out.
1724 asmlinkage
long sys_getsockopt(int fd
, int level
, int optname
,
1725 char __user
*optval
, int __user
*optlen
)
1727 int err
, fput_needed
;
1728 struct socket
*sock
;
1730 sock
= sockfd_lookup_light(fd
, &err
, &fput_needed
);
1732 err
= security_socket_getsockopt(sock
, level
, optname
);
1736 if (level
== SOL_SOCKET
)
1738 sock_getsockopt(sock
, level
, optname
, optval
,
1742 sock
->ops
->getsockopt(sock
, level
, optname
, optval
,
1745 fput_light(sock
->file
, fput_needed
);
1751 * Shutdown a socket.
1754 asmlinkage
long sys_shutdown(int fd
, int how
)
1756 int err
, fput_needed
;
1757 struct socket
*sock
;
1759 sock
= sockfd_lookup_light(fd
, &err
, &fput_needed
);
1761 err
= security_socket_shutdown(sock
, how
);
1763 err
= sock
->ops
->shutdown(sock
, how
);
1764 fput_light(sock
->file
, fput_needed
);
1769 /* A couple of helpful macros for getting the address of the 32/64 bit
1770 * fields which are the same type (int / unsigned) on our platforms.
1772 #define COMPAT_MSG(msg, member) ((MSG_CMSG_COMPAT & flags) ? &msg##_compat->member : &msg->member)
1773 #define COMPAT_NAMELEN(msg) COMPAT_MSG(msg, msg_namelen)
1774 #define COMPAT_FLAGS(msg) COMPAT_MSG(msg, msg_flags)
1777 * BSD sendmsg interface
1780 asmlinkage
long sys_sendmsg(int fd
, struct msghdr __user
*msg
, unsigned flags
)
1782 struct compat_msghdr __user
*msg_compat
=
1783 (struct compat_msghdr __user
*)msg
;
1784 struct socket
*sock
;
1785 char address
[MAX_SOCK_ADDR
];
1786 struct iovec iovstack
[UIO_FASTIOV
], *iov
= iovstack
;
1787 unsigned char ctl
[sizeof(struct cmsghdr
) + 20]
1788 __attribute__ ((aligned(sizeof(__kernel_size_t
))));
1789 /* 20 is size of ipv6_pktinfo */
1790 unsigned char *ctl_buf
= ctl
;
1791 struct msghdr msg_sys
;
1792 int err
, ctl_len
, iov_size
, total_len
;
1796 if (MSG_CMSG_COMPAT
& flags
) {
1797 if (get_compat_msghdr(&msg_sys
, msg_compat
))
1800 else if (copy_from_user(&msg_sys
, msg
, sizeof(struct msghdr
)))
1803 sock
= sockfd_lookup_light(fd
, &err
, &fput_needed
);
1807 /* do not move before msg_sys is valid */
1809 if (msg_sys
.msg_iovlen
> UIO_MAXIOV
)
1812 /* Check whether to allocate the iovec area */
1814 iov_size
= msg_sys
.msg_iovlen
* sizeof(struct iovec
);
1815 if (msg_sys
.msg_iovlen
> UIO_FASTIOV
) {
1816 iov
= sock_kmalloc(sock
->sk
, iov_size
, GFP_KERNEL
);
1821 /* This will also move the address data into kernel space */
1822 if (MSG_CMSG_COMPAT
& flags
) {
1823 err
= verify_compat_iovec(&msg_sys
, iov
, address
, VERIFY_READ
);
1825 err
= verify_iovec(&msg_sys
, iov
, address
, VERIFY_READ
);
1832 if (msg_sys
.msg_controllen
> INT_MAX
)
1834 ctl_len
= msg_sys
.msg_controllen
;
1835 if ((MSG_CMSG_COMPAT
& flags
) && ctl_len
) {
1837 cmsghdr_from_user_compat_to_kern(&msg_sys
, sock
->sk
, ctl
,
1841 ctl_buf
= msg_sys
.msg_control
;
1842 ctl_len
= msg_sys
.msg_controllen
;
1843 } else if (ctl_len
) {
1844 if (ctl_len
> sizeof(ctl
)) {
1845 ctl_buf
= sock_kmalloc(sock
->sk
, ctl_len
, GFP_KERNEL
);
1846 if (ctl_buf
== NULL
)
1851 * Careful! Before this, msg_sys.msg_control contains a user pointer.
1852 * Afterwards, it will be a kernel pointer. Thus the compiler-assisted
1853 * checking falls down on this.
1855 if (copy_from_user(ctl_buf
, (void __user
*)msg_sys
.msg_control
,
1858 msg_sys
.msg_control
= ctl_buf
;
1860 msg_sys
.msg_flags
= flags
;
1862 if (sock
->file
->f_flags
& O_NONBLOCK
)
1863 msg_sys
.msg_flags
|= MSG_DONTWAIT
;
1864 err
= sock_sendmsg(sock
, &msg_sys
, total_len
);
1868 sock_kfree_s(sock
->sk
, ctl_buf
, ctl_len
);
1870 if (iov
!= iovstack
)
1871 sock_kfree_s(sock
->sk
, iov
, iov_size
);
1873 fput_light(sock
->file
, fput_needed
);
1879 * BSD recvmsg interface
1882 asmlinkage
long sys_recvmsg(int fd
, struct msghdr __user
*msg
,
1885 struct compat_msghdr __user
*msg_compat
=
1886 (struct compat_msghdr __user
*)msg
;
1887 struct socket
*sock
;
1888 struct iovec iovstack
[UIO_FASTIOV
];
1889 struct iovec
*iov
= iovstack
;
1890 struct msghdr msg_sys
;
1891 unsigned long cmsg_ptr
;
1892 int err
, iov_size
, total_len
, len
;
1895 /* kernel mode address */
1896 char addr
[MAX_SOCK_ADDR
];
1898 /* user mode address pointers */
1899 struct sockaddr __user
*uaddr
;
1900 int __user
*uaddr_len
;
1902 if (MSG_CMSG_COMPAT
& flags
) {
1903 if (get_compat_msghdr(&msg_sys
, msg_compat
))
1906 else if (copy_from_user(&msg_sys
, msg
, sizeof(struct msghdr
)))
1909 sock
= sockfd_lookup_light(fd
, &err
, &fput_needed
);
1914 if (msg_sys
.msg_iovlen
> UIO_MAXIOV
)
1917 /* Check whether to allocate the iovec area */
1919 iov_size
= msg_sys
.msg_iovlen
* sizeof(struct iovec
);
1920 if (msg_sys
.msg_iovlen
> UIO_FASTIOV
) {
1921 iov
= sock_kmalloc(sock
->sk
, iov_size
, GFP_KERNEL
);
1927 * Save the user-mode address (verify_iovec will change the
1928 * kernel msghdr to use the kernel address space)
1931 uaddr
= (void __user
*)msg_sys
.msg_name
;
1932 uaddr_len
= COMPAT_NAMELEN(msg
);
1933 if (MSG_CMSG_COMPAT
& flags
) {
1934 err
= verify_compat_iovec(&msg_sys
, iov
, addr
, VERIFY_WRITE
);
1936 err
= verify_iovec(&msg_sys
, iov
, addr
, VERIFY_WRITE
);
1941 cmsg_ptr
= (unsigned long)msg_sys
.msg_control
;
1942 msg_sys
.msg_flags
= 0;
1943 if (MSG_CMSG_COMPAT
& flags
)
1944 msg_sys
.msg_flags
= MSG_CMSG_COMPAT
;
1946 if (sock
->file
->f_flags
& O_NONBLOCK
)
1947 flags
|= MSG_DONTWAIT
;
1948 err
= sock_recvmsg(sock
, &msg_sys
, total_len
, flags
);
1953 if (uaddr
!= NULL
) {
1954 err
= move_addr_to_user(addr
, msg_sys
.msg_namelen
, uaddr
,
1959 err
= __put_user((msg_sys
.msg_flags
& ~MSG_CMSG_COMPAT
),
1963 if (MSG_CMSG_COMPAT
& flags
)
1964 err
= __put_user((unsigned long)msg_sys
.msg_control
- cmsg_ptr
,
1965 &msg_compat
->msg_controllen
);
1967 err
= __put_user((unsigned long)msg_sys
.msg_control
- cmsg_ptr
,
1968 &msg
->msg_controllen
);
1974 if (iov
!= iovstack
)
1975 sock_kfree_s(sock
->sk
, iov
, iov_size
);
1977 fput_light(sock
->file
, fput_needed
);
1982 #ifdef __ARCH_WANT_SYS_SOCKETCALL
1984 /* Argument list sizes for sys_socketcall */
1985 #define AL(x) ((x) * sizeof(unsigned long))
1986 static const unsigned char nargs
[18]={
1987 AL(0),AL(3),AL(3),AL(3),AL(2),AL(3),
1988 AL(3),AL(3),AL(4),AL(4),AL(4),AL(6),
1989 AL(6),AL(2),AL(5),AL(5),AL(3),AL(3)
1995 * System call vectors.
1997 * Argument checking cleaned up. Saved 20% in size.
1998 * This function doesn't need to set the kernel lock because
1999 * it is set by the callees.
2002 asmlinkage
long sys_socketcall(int call
, unsigned long __user
*args
)
2005 unsigned long a0
, a1
;
2008 if (call
< 1 || call
> SYS_RECVMSG
)
2011 /* copy_from_user should be SMP safe. */
2012 if (copy_from_user(a
, args
, nargs
[call
]))
2015 err
= audit_socketcall(nargs
[call
] / sizeof(unsigned long), a
);
2024 err
= sys_socket(a0
, a1
, a
[2]);
2027 err
= sys_bind(a0
, (struct sockaddr __user
*)a1
, a
[2]);
2030 err
= sys_connect(a0
, (struct sockaddr __user
*)a1
, a
[2]);
2033 err
= sys_listen(a0
, a1
);
2037 sys_accept(a0
, (struct sockaddr __user
*)a1
,
2038 (int __user
*)a
[2]);
2040 case SYS_GETSOCKNAME
:
2042 sys_getsockname(a0
, (struct sockaddr __user
*)a1
,
2043 (int __user
*)a
[2]);
2045 case SYS_GETPEERNAME
:
2047 sys_getpeername(a0
, (struct sockaddr __user
*)a1
,
2048 (int __user
*)a
[2]);
2050 case SYS_SOCKETPAIR
:
2051 err
= sys_socketpair(a0
, a1
, a
[2], (int __user
*)a
[3]);
2054 err
= sys_send(a0
, (void __user
*)a1
, a
[2], a
[3]);
2057 err
= sys_sendto(a0
, (void __user
*)a1
, a
[2], a
[3],
2058 (struct sockaddr __user
*)a
[4], a
[5]);
2061 err
= sys_recv(a0
, (void __user
*)a1
, a
[2], a
[3]);
2064 err
= sys_recvfrom(a0
, (void __user
*)a1
, a
[2], a
[3],
2065 (struct sockaddr __user
*)a
[4],
2066 (int __user
*)a
[5]);
2069 err
= sys_shutdown(a0
, a1
);
2071 case SYS_SETSOCKOPT
:
2072 err
= sys_setsockopt(a0
, a1
, a
[2], (char __user
*)a
[3], a
[4]);
2074 case SYS_GETSOCKOPT
:
2076 sys_getsockopt(a0
, a1
, a
[2], (char __user
*)a
[3],
2077 (int __user
*)a
[4]);
2080 err
= sys_sendmsg(a0
, (struct msghdr __user
*)a1
, a
[2]);
2083 err
= sys_recvmsg(a0
, (struct msghdr __user
*)a1
, a
[2]);
2092 #endif /* __ARCH_WANT_SYS_SOCKETCALL */
2095 * sock_register - add a socket protocol handler
2096 * @ops: description of protocol
2098 * This function is called by a protocol handler that wants to
2099 * advertise its address family, and have it linked into the
2100 * socket interface. The value ops->family coresponds to the
2101 * socket system call protocol family.
2103 int sock_register(const struct net_proto_family
*ops
)
2107 if (ops
->family
>= NPROTO
) {
2108 printk(KERN_CRIT
"protocol %d >= NPROTO(%d)\n", ops
->family
,
2113 spin_lock(&net_family_lock
);
2114 if (net_families
[ops
->family
])
2117 net_families
[ops
->family
] = ops
;
2120 spin_unlock(&net_family_lock
);
2122 printk(KERN_INFO
"NET: Registered protocol family %d\n", ops
->family
);
2127 * sock_unregister - remove a protocol handler
2128 * @family: protocol family to remove
2130 * This function is called by a protocol handler that wants to
2131 * remove its address family, and have it unlinked from the
2132 * new socket creation.
2134 * If protocol handler is a module, then it can use module reference
2135 * counts to protect against new references. If protocol handler is not
2136 * a module then it needs to provide its own protection in
2137 * the ops->create routine.
2139 void sock_unregister(int family
)
2141 BUG_ON(family
< 0 || family
>= NPROTO
);
2143 spin_lock(&net_family_lock
);
2144 net_families
[family
] = NULL
;
2145 spin_unlock(&net_family_lock
);
2149 printk(KERN_INFO
"NET: Unregistered protocol family %d\n", family
);
2152 static int __init
sock_init(void)
2155 * Initialize sock SLAB cache.
2161 * Initialize skbuff SLAB cache
2166 * Initialize the protocols module.
2170 register_filesystem(&sock_fs_type
);
2171 sock_mnt
= kern_mount(&sock_fs_type
);
2173 /* The real protocol initialization is performed in later initcalls.
2176 #ifdef CONFIG_NETFILTER
2183 core_initcall(sock_init
); /* early initcall */
2185 #ifdef CONFIG_PROC_FS
2186 void socket_seq_show(struct seq_file
*seq
)
2191 for_each_possible_cpu(cpu
)
2192 counter
+= per_cpu(sockets_in_use
, cpu
);
2194 /* It can be negative, by the way. 8) */
2198 seq_printf(seq
, "sockets: used %d\n", counter
);
2200 #endif /* CONFIG_PROC_FS */
2202 #ifdef CONFIG_COMPAT
2203 static long compat_sock_ioctl(struct file
*file
, unsigned cmd
,
2206 struct socket
*sock
= file
->private_data
;
2207 int ret
= -ENOIOCTLCMD
;
2209 if (sock
->ops
->compat_ioctl
)
2210 ret
= sock
->ops
->compat_ioctl(sock
, cmd
, arg
);
2216 int kernel_bind(struct socket
*sock
, struct sockaddr
*addr
, int addrlen
)
2218 return sock
->ops
->bind(sock
, addr
, addrlen
);
2221 int kernel_listen(struct socket
*sock
, int backlog
)
2223 return sock
->ops
->listen(sock
, backlog
);
2226 int kernel_accept(struct socket
*sock
, struct socket
**newsock
, int flags
)
2228 struct sock
*sk
= sock
->sk
;
2231 err
= sock_create_lite(sk
->sk_family
, sk
->sk_type
, sk
->sk_protocol
,
2236 err
= sock
->ops
->accept(sock
, *newsock
, flags
);
2238 sock_release(*newsock
);
2242 (*newsock
)->ops
= sock
->ops
;
2248 int kernel_connect(struct socket
*sock
, struct sockaddr
*addr
, int addrlen
,
2251 return sock
->ops
->connect(sock
, addr
, addrlen
, flags
);
2254 int kernel_getsockname(struct socket
*sock
, struct sockaddr
*addr
,
2257 return sock
->ops
->getname(sock
, addr
, addrlen
, 0);
2260 int kernel_getpeername(struct socket
*sock
, struct sockaddr
*addr
,
2263 return sock
->ops
->getname(sock
, addr
, addrlen
, 1);
2266 int kernel_getsockopt(struct socket
*sock
, int level
, int optname
,
2267 char *optval
, int *optlen
)
2269 mm_segment_t oldfs
= get_fs();
2273 if (level
== SOL_SOCKET
)
2274 err
= sock_getsockopt(sock
, level
, optname
, optval
, optlen
);
2276 err
= sock
->ops
->getsockopt(sock
, level
, optname
, optval
,
2282 int kernel_setsockopt(struct socket
*sock
, int level
, int optname
,
2283 char *optval
, int optlen
)
2285 mm_segment_t oldfs
= get_fs();
2289 if (level
== SOL_SOCKET
)
2290 err
= sock_setsockopt(sock
, level
, optname
, optval
, optlen
);
2292 err
= sock
->ops
->setsockopt(sock
, level
, optname
, optval
,
2298 int kernel_sendpage(struct socket
*sock
, struct page
*page
, int offset
,
2299 size_t size
, int flags
)
2301 if (sock
->ops
->sendpage
)
2302 return sock
->ops
->sendpage(sock
, page
, offset
, size
, flags
);
2304 return sock_no_sendpage(sock
, page
, offset
, size
, flags
);
2307 int kernel_sock_ioctl(struct socket
*sock
, int cmd
, unsigned long arg
)
2309 mm_segment_t oldfs
= get_fs();
2313 err
= sock
->ops
->ioctl(sock
, cmd
, arg
);
2319 /* ABI emulation layers need these two */
2320 EXPORT_SYMBOL(move_addr_to_kernel
);
2321 EXPORT_SYMBOL(move_addr_to_user
);
2322 EXPORT_SYMBOL(sock_create
);
2323 EXPORT_SYMBOL(sock_create_kern
);
2324 EXPORT_SYMBOL(sock_create_lite
);
2325 EXPORT_SYMBOL(sock_map_fd
);
2326 EXPORT_SYMBOL(sock_recvmsg
);
2327 EXPORT_SYMBOL(sock_register
);
2328 EXPORT_SYMBOL(sock_release
);
2329 EXPORT_SYMBOL(sock_sendmsg
);
2330 EXPORT_SYMBOL(sock_unregister
);
2331 EXPORT_SYMBOL(sock_wake_async
);
2332 EXPORT_SYMBOL(sockfd_lookup
);
2333 EXPORT_SYMBOL(kernel_sendmsg
);
2334 EXPORT_SYMBOL(kernel_recvmsg
);
2335 EXPORT_SYMBOL(kernel_bind
);
2336 EXPORT_SYMBOL(kernel_listen
);
2337 EXPORT_SYMBOL(kernel_accept
);
2338 EXPORT_SYMBOL(kernel_connect
);
2339 EXPORT_SYMBOL(kernel_getsockname
);
2340 EXPORT_SYMBOL(kernel_getpeername
);
2341 EXPORT_SYMBOL(kernel_getsockopt
);
2342 EXPORT_SYMBOL(kernel_setsockopt
);
2343 EXPORT_SYMBOL(kernel_sendpage
);
2344 EXPORT_SYMBOL(kernel_sock_ioctl
);