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/thread_info.h>
67 #include <linux/rcupdate.h>
68 #include <linux/netdevice.h>
69 #include <linux/proc_fs.h>
70 #include <linux/seq_file.h>
71 #include <linux/mutex.h>
72 #include <linux/wanrouter.h>
73 #include <linux/if_bridge.h>
74 #include <linux/if_frad.h>
75 #include <linux/if_vlan.h>
76 #include <linux/init.h>
77 #include <linux/poll.h>
78 #include <linux/cache.h>
79 #include <linux/module.h>
80 #include <linux/highmem.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>
87 #include <linux/wireless.h>
88 #include <linux/nsproxy.h>
89 #include <linux/magic.h>
90 #include <linux/slab.h>
91 #include <linux/xattr.h>
93 #include <asm/uaccess.h>
94 #include <asm/unistd.h>
96 #include <net/compat.h>
98 #include <net/cls_cgroup.h>
100 #include <net/sock.h>
101 #include <linux/netfilter.h>
103 #include <linux/if_tun.h>
104 #include <linux/ipv6_route.h>
105 #include <linux/route.h>
106 #include <linux/sockios.h>
107 #include <linux/atalk.h>
109 static int sock_no_open(struct inode
*irrelevant
, struct file
*dontcare
);
110 static ssize_t
sock_aio_read(struct kiocb
*iocb
, const struct iovec
*iov
,
111 unsigned long nr_segs
, loff_t pos
);
112 static ssize_t
sock_aio_write(struct kiocb
*iocb
, const struct iovec
*iov
,
113 unsigned long nr_segs
, loff_t pos
);
114 static int sock_mmap(struct file
*file
, struct vm_area_struct
*vma
);
116 static int sock_close(struct inode
*inode
, struct file
*file
);
117 static unsigned int sock_poll(struct file
*file
,
118 struct poll_table_struct
*wait
);
119 static long sock_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
);
121 static long compat_sock_ioctl(struct file
*file
,
122 unsigned int cmd
, unsigned long arg
);
124 static int sock_fasync(int fd
, struct file
*filp
, int on
);
125 static ssize_t
sock_sendpage(struct file
*file
, struct page
*page
,
126 int offset
, size_t size
, loff_t
*ppos
, int more
);
127 static ssize_t
sock_splice_read(struct file
*file
, loff_t
*ppos
,
128 struct pipe_inode_info
*pipe
, size_t len
,
132 * Socket files have a set of 'special' operations as well as the generic file ones. These don't appear
133 * in the operation structures but are done directly via the socketcall() multiplexor.
136 static const struct file_operations socket_file_ops
= {
137 .owner
= THIS_MODULE
,
139 .aio_read
= sock_aio_read
,
140 .aio_write
= sock_aio_write
,
142 .unlocked_ioctl
= sock_ioctl
,
144 .compat_ioctl
= compat_sock_ioctl
,
147 .open
= sock_no_open
, /* special open code to disallow open via /proc */
148 .release
= sock_close
,
149 .fasync
= sock_fasync
,
150 .sendpage
= sock_sendpage
,
151 .splice_write
= generic_splice_sendpage
,
152 .splice_read
= sock_splice_read
,
156 * The protocol list. Each protocol is registered in here.
159 static DEFINE_SPINLOCK(net_family_lock
);
160 static const struct net_proto_family __rcu
*net_families
[NPROTO
] __read_mostly
;
163 * Statistics counters of the socket lists
166 static DEFINE_PER_CPU(int, sockets_in_use
);
170 * Move socket addresses back and forth across the kernel/user
171 * divide and look after the messy bits.
175 * move_addr_to_kernel - copy a socket address into kernel space
176 * @uaddr: Address in user space
177 * @kaddr: Address in kernel space
178 * @ulen: Length in user space
180 * The address is copied into kernel space. If the provided address is
181 * too long an error code of -EINVAL is returned. If the copy gives
182 * invalid addresses -EFAULT is returned. On a success 0 is returned.
185 int move_addr_to_kernel(void __user
*uaddr
, int ulen
, struct sockaddr_storage
*kaddr
)
187 if (ulen
< 0 || ulen
> sizeof(struct sockaddr_storage
))
191 if (copy_from_user(kaddr
, uaddr
, ulen
))
193 return audit_sockaddr(ulen
, kaddr
);
197 * move_addr_to_user - copy an address to user space
198 * @kaddr: kernel space address
199 * @klen: length of address in kernel
200 * @uaddr: user space address
201 * @ulen: pointer to user length field
203 * The value pointed to by ulen on entry is the buffer length available.
204 * This is overwritten with the buffer space used. -EINVAL is returned
205 * if an overlong buffer is specified or a negative buffer size. -EFAULT
206 * is returned if either the buffer or the length field are not
208 * After copying the data up to the limit the user specifies, the true
209 * length of the data is written over the length limit the user
210 * specified. Zero is returned for a success.
213 static int move_addr_to_user(struct sockaddr_storage
*kaddr
, int klen
,
214 void __user
*uaddr
, int __user
*ulen
)
219 err
= get_user(len
, ulen
);
224 if (len
< 0 || len
> sizeof(struct sockaddr_storage
))
227 if (audit_sockaddr(klen
, kaddr
))
229 if (copy_to_user(uaddr
, kaddr
, len
))
233 * "fromlen shall refer to the value before truncation.."
236 return __put_user(klen
, ulen
);
239 static struct kmem_cache
*sock_inode_cachep __read_mostly
;
241 static struct inode
*sock_alloc_inode(struct super_block
*sb
)
243 struct socket_alloc
*ei
;
244 struct socket_wq
*wq
;
246 ei
= kmem_cache_alloc(sock_inode_cachep
, GFP_KERNEL
);
249 wq
= kmalloc(sizeof(*wq
), GFP_KERNEL
);
251 kmem_cache_free(sock_inode_cachep
, ei
);
254 init_waitqueue_head(&wq
->wait
);
255 wq
->fasync_list
= NULL
;
256 RCU_INIT_POINTER(ei
->socket
.wq
, wq
);
258 ei
->socket
.state
= SS_UNCONNECTED
;
259 ei
->socket
.flags
= 0;
260 ei
->socket
.ops
= NULL
;
261 ei
->socket
.sk
= NULL
;
262 ei
->socket
.file
= NULL
;
264 return &ei
->vfs_inode
;
267 static void sock_destroy_inode(struct inode
*inode
)
269 struct socket_alloc
*ei
;
270 struct socket_wq
*wq
;
272 ei
= container_of(inode
, struct socket_alloc
, vfs_inode
);
273 wq
= rcu_dereference_protected(ei
->socket
.wq
, 1);
275 kmem_cache_free(sock_inode_cachep
, ei
);
278 static void init_once(void *foo
)
280 struct socket_alloc
*ei
= (struct socket_alloc
*)foo
;
282 inode_init_once(&ei
->vfs_inode
);
285 static int init_inodecache(void)
287 sock_inode_cachep
= kmem_cache_create("sock_inode_cache",
288 sizeof(struct socket_alloc
),
290 (SLAB_HWCACHE_ALIGN
|
291 SLAB_RECLAIM_ACCOUNT
|
294 if (sock_inode_cachep
== NULL
)
299 static const struct super_operations sockfs_ops
= {
300 .alloc_inode
= sock_alloc_inode
,
301 .destroy_inode
= sock_destroy_inode
,
302 .statfs
= simple_statfs
,
306 * sockfs_dname() is called from d_path().
308 static char *sockfs_dname(struct dentry
*dentry
, char *buffer
, int buflen
)
310 return dynamic_dname(dentry
, buffer
, buflen
, "socket:[%lu]",
311 dentry
->d_inode
->i_ino
);
314 static const struct dentry_operations sockfs_dentry_operations
= {
315 .d_dname
= sockfs_dname
,
318 static struct dentry
*sockfs_mount(struct file_system_type
*fs_type
,
319 int flags
, const char *dev_name
, void *data
)
321 return mount_pseudo(fs_type
, "socket:", &sockfs_ops
,
322 &sockfs_dentry_operations
, SOCKFS_MAGIC
);
325 static struct vfsmount
*sock_mnt __read_mostly
;
327 static struct file_system_type sock_fs_type
= {
329 .mount
= sockfs_mount
,
330 .kill_sb
= kill_anon_super
,
334 * Obtains the first available file descriptor and sets it up for use.
336 * These functions create file structures and maps them to fd space
337 * of the current process. On success it returns file descriptor
338 * and file struct implicitly stored in sock->file.
339 * Note that another thread may close file descriptor before we return
340 * from this function. We use the fact that now we do not refer
341 * to socket after mapping. If one day we will need it, this
342 * function will increment ref. count on file by 1.
344 * In any case returned fd MAY BE not valid!
345 * This race condition is unavoidable
346 * with shared fd spaces, we cannot solve it inside kernel,
347 * but we take care of internal coherence yet.
350 struct file
*sock_alloc_file(struct socket
*sock
, int flags
, const char *dname
)
352 struct qstr name
= { .name
= "" };
358 name
.len
= strlen(name
.name
);
359 } else if (sock
->sk
) {
360 name
.name
= sock
->sk
->sk_prot_creator
->name
;
361 name
.len
= strlen(name
.name
);
363 path
.dentry
= d_alloc_pseudo(sock_mnt
->mnt_sb
, &name
);
364 if (unlikely(!path
.dentry
))
365 return ERR_PTR(-ENOMEM
);
366 path
.mnt
= mntget(sock_mnt
);
368 d_instantiate(path
.dentry
, SOCK_INODE(sock
));
369 SOCK_INODE(sock
)->i_fop
= &socket_file_ops
;
371 file
= alloc_file(&path
, FMODE_READ
| FMODE_WRITE
,
373 if (unlikely(!file
)) {
374 /* drop dentry, keep inode */
375 ihold(path
.dentry
->d_inode
);
377 return ERR_PTR(-ENFILE
);
381 file
->f_flags
= O_RDWR
| (flags
& O_NONBLOCK
);
383 file
->private_data
= sock
;
386 EXPORT_SYMBOL(sock_alloc_file
);
388 static int sock_map_fd(struct socket
*sock
, int flags
)
390 struct file
*newfile
;
391 int fd
= get_unused_fd_flags(flags
);
392 if (unlikely(fd
< 0))
395 newfile
= sock_alloc_file(sock
, flags
, NULL
);
396 if (likely(!IS_ERR(newfile
))) {
397 fd_install(fd
, newfile
);
402 return PTR_ERR(newfile
);
405 struct socket
*sock_from_file(struct file
*file
, int *err
)
407 if (file
->f_op
== &socket_file_ops
)
408 return file
->private_data
; /* set in sock_map_fd */
413 EXPORT_SYMBOL(sock_from_file
);
416 * sockfd_lookup - Go from a file number to its socket slot
418 * @err: pointer to an error code return
420 * The file handle passed in is locked and the socket it is bound
421 * too is returned. If an error occurs the err pointer is overwritten
422 * with a negative errno code and NULL is returned. The function checks
423 * for both invalid handles and passing a handle which is not a socket.
425 * On a success the socket object pointer is returned.
428 struct socket
*sockfd_lookup(int fd
, int *err
)
439 sock
= sock_from_file(file
, err
);
444 EXPORT_SYMBOL(sockfd_lookup
);
446 static struct socket
*sockfd_lookup_light(int fd
, int *err
, int *fput_needed
)
452 file
= fget_light(fd
, fput_needed
);
454 sock
= sock_from_file(file
, err
);
457 fput_light(file
, *fput_needed
);
462 #define XATTR_SOCKPROTONAME_SUFFIX "sockprotoname"
463 #define XATTR_NAME_SOCKPROTONAME (XATTR_SYSTEM_PREFIX XATTR_SOCKPROTONAME_SUFFIX)
464 #define XATTR_NAME_SOCKPROTONAME_LEN (sizeof(XATTR_NAME_SOCKPROTONAME)-1)
465 static ssize_t
sockfs_getxattr(struct dentry
*dentry
,
466 const char *name
, void *value
, size_t size
)
468 const char *proto_name
;
473 if (!strncmp(name
, XATTR_NAME_SOCKPROTONAME
, XATTR_NAME_SOCKPROTONAME_LEN
)) {
474 proto_name
= dentry
->d_name
.name
;
475 proto_size
= strlen(proto_name
);
479 if (proto_size
+ 1 > size
)
482 strncpy(value
, proto_name
, proto_size
+ 1);
484 error
= proto_size
+ 1;
491 static ssize_t
sockfs_listxattr(struct dentry
*dentry
, char *buffer
,
497 len
= security_inode_listsecurity(dentry
->d_inode
, buffer
, size
);
507 len
= (XATTR_NAME_SOCKPROTONAME_LEN
+ 1);
512 memcpy(buffer
, XATTR_NAME_SOCKPROTONAME
, len
);
519 static const struct inode_operations sockfs_inode_ops
= {
520 .getxattr
= sockfs_getxattr
,
521 .listxattr
= sockfs_listxattr
,
525 * sock_alloc - allocate a socket
527 * Allocate a new inode and socket object. The two are bound together
528 * and initialised. The socket is then returned. If we are out of inodes
532 static struct socket
*sock_alloc(void)
537 inode
= new_inode_pseudo(sock_mnt
->mnt_sb
);
541 sock
= SOCKET_I(inode
);
543 kmemcheck_annotate_bitfield(sock
, type
);
544 inode
->i_ino
= get_next_ino();
545 inode
->i_mode
= S_IFSOCK
| S_IRWXUGO
;
546 inode
->i_uid
= current_fsuid();
547 inode
->i_gid
= current_fsgid();
548 inode
->i_op
= &sockfs_inode_ops
;
550 this_cpu_add(sockets_in_use
, 1);
555 * In theory you can't get an open on this inode, but /proc provides
556 * a back door. Remember to keep it shut otherwise you'll let the
557 * creepy crawlies in.
560 static int sock_no_open(struct inode
*irrelevant
, struct file
*dontcare
)
565 const struct file_operations bad_sock_fops
= {
566 .owner
= THIS_MODULE
,
567 .open
= sock_no_open
,
568 .llseek
= noop_llseek
,
572 * sock_release - close a socket
573 * @sock: socket to close
575 * The socket is released from the protocol stack if it has a release
576 * callback, and the inode is then released if the socket is bound to
577 * an inode not a file.
580 void sock_release(struct socket
*sock
)
583 struct module
*owner
= sock
->ops
->owner
;
585 sock
->ops
->release(sock
);
590 if (rcu_dereference_protected(sock
->wq
, 1)->fasync_list
)
591 printk(KERN_ERR
"sock_release: fasync list not empty!\n");
593 if (test_bit(SOCK_EXTERNALLY_ALLOCATED
, &sock
->flags
))
596 this_cpu_sub(sockets_in_use
, 1);
598 iput(SOCK_INODE(sock
));
603 EXPORT_SYMBOL(sock_release
);
605 int sock_tx_timestamp(struct sock
*sk
, __u8
*tx_flags
)
608 if (sock_flag(sk
, SOCK_TIMESTAMPING_TX_HARDWARE
))
609 *tx_flags
|= SKBTX_HW_TSTAMP
;
610 if (sock_flag(sk
, SOCK_TIMESTAMPING_TX_SOFTWARE
))
611 *tx_flags
|= SKBTX_SW_TSTAMP
;
612 if (sock_flag(sk
, SOCK_WIFI_STATUS
))
613 *tx_flags
|= SKBTX_WIFI_STATUS
;
616 EXPORT_SYMBOL(sock_tx_timestamp
);
618 static inline int __sock_sendmsg_nosec(struct kiocb
*iocb
, struct socket
*sock
,
619 struct msghdr
*msg
, size_t size
)
621 struct sock_iocb
*si
= kiocb_to_siocb(iocb
);
623 sock_update_classid(sock
->sk
);
630 return sock
->ops
->sendmsg(iocb
, sock
, msg
, size
);
633 static inline int __sock_sendmsg(struct kiocb
*iocb
, struct socket
*sock
,
634 struct msghdr
*msg
, size_t size
)
636 int err
= security_socket_sendmsg(sock
, msg
, size
);
638 return err
?: __sock_sendmsg_nosec(iocb
, sock
, msg
, size
);
641 int sock_sendmsg(struct socket
*sock
, struct msghdr
*msg
, size_t size
)
644 struct sock_iocb siocb
;
647 init_sync_kiocb(&iocb
, NULL
);
648 iocb
.private = &siocb
;
649 ret
= __sock_sendmsg(&iocb
, sock
, msg
, size
);
650 if (-EIOCBQUEUED
== ret
)
651 ret
= wait_on_sync_kiocb(&iocb
);
654 EXPORT_SYMBOL(sock_sendmsg
);
656 static int sock_sendmsg_nosec(struct socket
*sock
, struct msghdr
*msg
, size_t size
)
659 struct sock_iocb siocb
;
662 init_sync_kiocb(&iocb
, NULL
);
663 iocb
.private = &siocb
;
664 ret
= __sock_sendmsg_nosec(&iocb
, sock
, msg
, size
);
665 if (-EIOCBQUEUED
== ret
)
666 ret
= wait_on_sync_kiocb(&iocb
);
670 int kernel_sendmsg(struct socket
*sock
, struct msghdr
*msg
,
671 struct kvec
*vec
, size_t num
, size_t size
)
673 mm_segment_t oldfs
= get_fs();
678 * the following is safe, since for compiler definitions of kvec and
679 * iovec are identical, yielding the same in-core layout and alignment
681 msg
->msg_iov
= (struct iovec
*)vec
;
682 msg
->msg_iovlen
= num
;
683 result
= sock_sendmsg(sock
, msg
, size
);
687 EXPORT_SYMBOL(kernel_sendmsg
);
689 static int ktime2ts(ktime_t kt
, struct timespec
*ts
)
692 *ts
= ktime_to_timespec(kt
);
700 * called from sock_recv_timestamp() if sock_flag(sk, SOCK_RCVTSTAMP)
702 void __sock_recv_timestamp(struct msghdr
*msg
, struct sock
*sk
,
705 int need_software_tstamp
= sock_flag(sk
, SOCK_RCVTSTAMP
);
706 struct timespec ts
[3];
708 struct skb_shared_hwtstamps
*shhwtstamps
=
711 /* Race occurred between timestamp enabling and packet
712 receiving. Fill in the current time for now. */
713 if (need_software_tstamp
&& skb
->tstamp
.tv64
== 0)
714 __net_timestamp(skb
);
716 if (need_software_tstamp
) {
717 if (!sock_flag(sk
, SOCK_RCVTSTAMPNS
)) {
719 skb_get_timestamp(skb
, &tv
);
720 put_cmsg(msg
, SOL_SOCKET
, SCM_TIMESTAMP
,
723 skb_get_timestampns(skb
, &ts
[0]);
724 put_cmsg(msg
, SOL_SOCKET
, SCM_TIMESTAMPNS
,
725 sizeof(ts
[0]), &ts
[0]);
730 memset(ts
, 0, sizeof(ts
));
731 if (skb
->tstamp
.tv64
&&
732 sock_flag(sk
, SOCK_TIMESTAMPING_SOFTWARE
)) {
733 skb_get_timestampns(skb
, ts
+ 0);
737 if (sock_flag(sk
, SOCK_TIMESTAMPING_SYS_HARDWARE
) &&
738 ktime2ts(shhwtstamps
->syststamp
, ts
+ 1))
740 if (sock_flag(sk
, SOCK_TIMESTAMPING_RAW_HARDWARE
) &&
741 ktime2ts(shhwtstamps
->hwtstamp
, ts
+ 2))
745 put_cmsg(msg
, SOL_SOCKET
,
746 SCM_TIMESTAMPING
, sizeof(ts
), &ts
);
748 EXPORT_SYMBOL_GPL(__sock_recv_timestamp
);
750 void __sock_recv_wifi_status(struct msghdr
*msg
, struct sock
*sk
,
755 if (!sock_flag(sk
, SOCK_WIFI_STATUS
))
757 if (!skb
->wifi_acked_valid
)
760 ack
= skb
->wifi_acked
;
762 put_cmsg(msg
, SOL_SOCKET
, SCM_WIFI_STATUS
, sizeof(ack
), &ack
);
764 EXPORT_SYMBOL_GPL(__sock_recv_wifi_status
);
766 static inline void sock_recv_drops(struct msghdr
*msg
, struct sock
*sk
,
769 if (sock_flag(sk
, SOCK_RXQ_OVFL
) && skb
&& skb
->dropcount
)
770 put_cmsg(msg
, SOL_SOCKET
, SO_RXQ_OVFL
,
771 sizeof(__u32
), &skb
->dropcount
);
774 void __sock_recv_ts_and_drops(struct msghdr
*msg
, struct sock
*sk
,
777 sock_recv_timestamp(msg
, sk
, skb
);
778 sock_recv_drops(msg
, sk
, skb
);
780 EXPORT_SYMBOL_GPL(__sock_recv_ts_and_drops
);
782 static inline int __sock_recvmsg_nosec(struct kiocb
*iocb
, struct socket
*sock
,
783 struct msghdr
*msg
, size_t size
, int flags
)
785 struct sock_iocb
*si
= kiocb_to_siocb(iocb
);
787 sock_update_classid(sock
->sk
);
795 return sock
->ops
->recvmsg(iocb
, sock
, msg
, size
, flags
);
798 static inline int __sock_recvmsg(struct kiocb
*iocb
, struct socket
*sock
,
799 struct msghdr
*msg
, size_t size
, int flags
)
801 int err
= security_socket_recvmsg(sock
, msg
, size
, flags
);
803 return err
?: __sock_recvmsg_nosec(iocb
, sock
, msg
, size
, flags
);
806 int sock_recvmsg(struct socket
*sock
, struct msghdr
*msg
,
807 size_t size
, int flags
)
810 struct sock_iocb siocb
;
813 init_sync_kiocb(&iocb
, NULL
);
814 iocb
.private = &siocb
;
815 ret
= __sock_recvmsg(&iocb
, sock
, msg
, size
, flags
);
816 if (-EIOCBQUEUED
== ret
)
817 ret
= wait_on_sync_kiocb(&iocb
);
820 EXPORT_SYMBOL(sock_recvmsg
);
822 static int sock_recvmsg_nosec(struct socket
*sock
, struct msghdr
*msg
,
823 size_t size
, int flags
)
826 struct sock_iocb siocb
;
829 init_sync_kiocb(&iocb
, NULL
);
830 iocb
.private = &siocb
;
831 ret
= __sock_recvmsg_nosec(&iocb
, sock
, msg
, size
, flags
);
832 if (-EIOCBQUEUED
== ret
)
833 ret
= wait_on_sync_kiocb(&iocb
);
838 * kernel_recvmsg - Receive a message from a socket (kernel space)
839 * @sock: The socket to receive the message from
840 * @msg: Received message
841 * @vec: Input s/g array for message data
842 * @num: Size of input s/g array
843 * @size: Number of bytes to read
844 * @flags: Message flags (MSG_DONTWAIT, etc...)
846 * On return the msg structure contains the scatter/gather array passed in the
847 * vec argument. The array is modified so that it consists of the unfilled
848 * portion of the original array.
850 * The returned value is the total number of bytes received, or an error.
852 int kernel_recvmsg(struct socket
*sock
, struct msghdr
*msg
,
853 struct kvec
*vec
, size_t num
, size_t size
, int flags
)
855 mm_segment_t oldfs
= get_fs();
860 * the following is safe, since for compiler definitions of kvec and
861 * iovec are identical, yielding the same in-core layout and alignment
863 msg
->msg_iov
= (struct iovec
*)vec
, msg
->msg_iovlen
= num
;
864 result
= sock_recvmsg(sock
, msg
, size
, flags
);
868 EXPORT_SYMBOL(kernel_recvmsg
);
870 static void sock_aio_dtor(struct kiocb
*iocb
)
872 kfree(iocb
->private);
875 static ssize_t
sock_sendpage(struct file
*file
, struct page
*page
,
876 int offset
, size_t size
, loff_t
*ppos
, int more
)
881 sock
= file
->private_data
;
883 flags
= (file
->f_flags
& O_NONBLOCK
) ? MSG_DONTWAIT
: 0;
884 /* more is a combination of MSG_MORE and MSG_SENDPAGE_NOTLAST */
887 return kernel_sendpage(sock
, page
, offset
, size
, flags
);
890 static ssize_t
sock_splice_read(struct file
*file
, loff_t
*ppos
,
891 struct pipe_inode_info
*pipe
, size_t len
,
894 struct socket
*sock
= file
->private_data
;
896 if (unlikely(!sock
->ops
->splice_read
))
899 sock_update_classid(sock
->sk
);
901 return sock
->ops
->splice_read(sock
, ppos
, pipe
, len
, flags
);
904 static struct sock_iocb
*alloc_sock_iocb(struct kiocb
*iocb
,
905 struct sock_iocb
*siocb
)
907 if (!is_sync_kiocb(iocb
)) {
908 siocb
= kmalloc(sizeof(*siocb
), GFP_KERNEL
);
911 iocb
->ki_dtor
= sock_aio_dtor
;
915 iocb
->private = siocb
;
919 static ssize_t
do_sock_read(struct msghdr
*msg
, struct kiocb
*iocb
,
920 struct file
*file
, const struct iovec
*iov
,
921 unsigned long nr_segs
)
923 struct socket
*sock
= file
->private_data
;
927 for (i
= 0; i
< nr_segs
; i
++)
928 size
+= iov
[i
].iov_len
;
930 msg
->msg_name
= NULL
;
931 msg
->msg_namelen
= 0;
932 msg
->msg_control
= NULL
;
933 msg
->msg_controllen
= 0;
934 msg
->msg_iov
= (struct iovec
*)iov
;
935 msg
->msg_iovlen
= nr_segs
;
936 msg
->msg_flags
= (file
->f_flags
& O_NONBLOCK
) ? MSG_DONTWAIT
: 0;
938 return __sock_recvmsg(iocb
, sock
, msg
, size
, msg
->msg_flags
);
941 static ssize_t
sock_aio_read(struct kiocb
*iocb
, const struct iovec
*iov
,
942 unsigned long nr_segs
, loff_t pos
)
944 struct sock_iocb siocb
, *x
;
949 if (iocb
->ki_left
== 0) /* Match SYS5 behaviour */
953 x
= alloc_sock_iocb(iocb
, &siocb
);
956 return do_sock_read(&x
->async_msg
, iocb
, iocb
->ki_filp
, iov
, nr_segs
);
959 static ssize_t
do_sock_write(struct msghdr
*msg
, struct kiocb
*iocb
,
960 struct file
*file
, const struct iovec
*iov
,
961 unsigned long nr_segs
)
963 struct socket
*sock
= file
->private_data
;
967 for (i
= 0; i
< nr_segs
; i
++)
968 size
+= iov
[i
].iov_len
;
970 msg
->msg_name
= NULL
;
971 msg
->msg_namelen
= 0;
972 msg
->msg_control
= NULL
;
973 msg
->msg_controllen
= 0;
974 msg
->msg_iov
= (struct iovec
*)iov
;
975 msg
->msg_iovlen
= nr_segs
;
976 msg
->msg_flags
= (file
->f_flags
& O_NONBLOCK
) ? MSG_DONTWAIT
: 0;
977 if (sock
->type
== SOCK_SEQPACKET
)
978 msg
->msg_flags
|= MSG_EOR
;
980 return __sock_sendmsg(iocb
, sock
, msg
, size
);
983 static ssize_t
sock_aio_write(struct kiocb
*iocb
, const struct iovec
*iov
,
984 unsigned long nr_segs
, loff_t pos
)
986 struct sock_iocb siocb
, *x
;
991 x
= alloc_sock_iocb(iocb
, &siocb
);
995 return do_sock_write(&x
->async_msg
, iocb
, iocb
->ki_filp
, iov
, nr_segs
);
999 * Atomic setting of ioctl hooks to avoid race
1000 * with module unload.
1003 static DEFINE_MUTEX(br_ioctl_mutex
);
1004 static int (*br_ioctl_hook
) (struct net
*, unsigned int cmd
, void __user
*arg
);
1006 void brioctl_set(int (*hook
) (struct net
*, unsigned int, void __user
*))
1008 mutex_lock(&br_ioctl_mutex
);
1009 br_ioctl_hook
= hook
;
1010 mutex_unlock(&br_ioctl_mutex
);
1012 EXPORT_SYMBOL(brioctl_set
);
1014 static DEFINE_MUTEX(vlan_ioctl_mutex
);
1015 static int (*vlan_ioctl_hook
) (struct net
*, void __user
*arg
);
1017 void vlan_ioctl_set(int (*hook
) (struct net
*, void __user
*))
1019 mutex_lock(&vlan_ioctl_mutex
);
1020 vlan_ioctl_hook
= hook
;
1021 mutex_unlock(&vlan_ioctl_mutex
);
1023 EXPORT_SYMBOL(vlan_ioctl_set
);
1025 static DEFINE_MUTEX(dlci_ioctl_mutex
);
1026 static int (*dlci_ioctl_hook
) (unsigned int, void __user
*);
1028 void dlci_ioctl_set(int (*hook
) (unsigned int, void __user
*))
1030 mutex_lock(&dlci_ioctl_mutex
);
1031 dlci_ioctl_hook
= hook
;
1032 mutex_unlock(&dlci_ioctl_mutex
);
1034 EXPORT_SYMBOL(dlci_ioctl_set
);
1036 static long sock_do_ioctl(struct net
*net
, struct socket
*sock
,
1037 unsigned int cmd
, unsigned long arg
)
1040 void __user
*argp
= (void __user
*)arg
;
1042 err
= sock
->ops
->ioctl(sock
, cmd
, arg
);
1045 * If this ioctl is unknown try to hand it down
1046 * to the NIC driver.
1048 if (err
== -ENOIOCTLCMD
)
1049 err
= dev_ioctl(net
, cmd
, argp
);
1055 * With an ioctl, arg may well be a user mode pointer, but we don't know
1056 * what to do with it - that's up to the protocol still.
1059 static long sock_ioctl(struct file
*file
, unsigned cmd
, unsigned long arg
)
1061 struct socket
*sock
;
1063 void __user
*argp
= (void __user
*)arg
;
1067 sock
= file
->private_data
;
1070 if (cmd
>= SIOCDEVPRIVATE
&& cmd
<= (SIOCDEVPRIVATE
+ 15)) {
1071 err
= dev_ioctl(net
, cmd
, argp
);
1073 #ifdef CONFIG_WEXT_CORE
1074 if (cmd
>= SIOCIWFIRST
&& cmd
<= SIOCIWLAST
) {
1075 err
= dev_ioctl(net
, cmd
, argp
);
1082 if (get_user(pid
, (int __user
*)argp
))
1084 err
= f_setown(sock
->file
, pid
, 1);
1088 err
= put_user(f_getown(sock
->file
),
1089 (int __user
*)argp
);
1097 request_module("bridge");
1099 mutex_lock(&br_ioctl_mutex
);
1101 err
= br_ioctl_hook(net
, cmd
, argp
);
1102 mutex_unlock(&br_ioctl_mutex
);
1107 if (!vlan_ioctl_hook
)
1108 request_module("8021q");
1110 mutex_lock(&vlan_ioctl_mutex
);
1111 if (vlan_ioctl_hook
)
1112 err
= vlan_ioctl_hook(net
, argp
);
1113 mutex_unlock(&vlan_ioctl_mutex
);
1118 if (!dlci_ioctl_hook
)
1119 request_module("dlci");
1121 mutex_lock(&dlci_ioctl_mutex
);
1122 if (dlci_ioctl_hook
)
1123 err
= dlci_ioctl_hook(cmd
, argp
);
1124 mutex_unlock(&dlci_ioctl_mutex
);
1127 err
= sock_do_ioctl(net
, sock
, cmd
, arg
);
1133 int sock_create_lite(int family
, int type
, int protocol
, struct socket
**res
)
1136 struct socket
*sock
= NULL
;
1138 err
= security_socket_create(family
, type
, protocol
, 1);
1142 sock
= sock_alloc();
1149 err
= security_socket_post_create(sock
, family
, type
, protocol
, 1);
1161 EXPORT_SYMBOL(sock_create_lite
);
1163 /* No kernel lock held - perfect */
1164 static unsigned int sock_poll(struct file
*file
, poll_table
*wait
)
1166 struct socket
*sock
;
1169 * We can't return errors to poll, so it's either yes or no.
1171 sock
= file
->private_data
;
1172 return sock
->ops
->poll(file
, sock
, wait
);
1175 static int sock_mmap(struct file
*file
, struct vm_area_struct
*vma
)
1177 struct socket
*sock
= file
->private_data
;
1179 return sock
->ops
->mmap(file
, sock
, vma
);
1182 static int sock_close(struct inode
*inode
, struct file
*filp
)
1185 * It was possible the inode is NULL we were
1186 * closing an unfinished socket.
1190 printk(KERN_DEBUG
"sock_close: NULL inode\n");
1193 sock_release(SOCKET_I(inode
));
1198 * Update the socket async list
1200 * Fasync_list locking strategy.
1202 * 1. fasync_list is modified only under process context socket lock
1203 * i.e. under semaphore.
1204 * 2. fasync_list is used under read_lock(&sk->sk_callback_lock)
1205 * or under socket lock
1208 static int sock_fasync(int fd
, struct file
*filp
, int on
)
1210 struct socket
*sock
= filp
->private_data
;
1211 struct sock
*sk
= sock
->sk
;
1212 struct socket_wq
*wq
;
1218 wq
= rcu_dereference_protected(sock
->wq
, sock_owned_by_user(sk
));
1219 fasync_helper(fd
, filp
, on
, &wq
->fasync_list
);
1221 if (!wq
->fasync_list
)
1222 sock_reset_flag(sk
, SOCK_FASYNC
);
1224 sock_set_flag(sk
, SOCK_FASYNC
);
1230 /* This function may be called only under socket lock or callback_lock or rcu_lock */
1232 int sock_wake_async(struct socket
*sock
, int how
, int band
)
1234 struct socket_wq
*wq
;
1239 wq
= rcu_dereference(sock
->wq
);
1240 if (!wq
|| !wq
->fasync_list
) {
1245 case SOCK_WAKE_WAITD
:
1246 if (test_bit(SOCK_ASYNC_WAITDATA
, &sock
->flags
))
1249 case SOCK_WAKE_SPACE
:
1250 if (!test_and_clear_bit(SOCK_ASYNC_NOSPACE
, &sock
->flags
))
1255 kill_fasync(&wq
->fasync_list
, SIGIO
, band
);
1258 kill_fasync(&wq
->fasync_list
, SIGURG
, band
);
1263 EXPORT_SYMBOL(sock_wake_async
);
1265 int __sock_create(struct net
*net
, int family
, int type
, int protocol
,
1266 struct socket
**res
, int kern
)
1269 struct socket
*sock
;
1270 const struct net_proto_family
*pf
;
1273 * Check protocol is in range
1275 if (family
< 0 || family
>= NPROTO
)
1276 return -EAFNOSUPPORT
;
1277 if (type
< 0 || type
>= SOCK_MAX
)
1282 This uglymoron is moved from INET layer to here to avoid
1283 deadlock in module load.
1285 if (family
== PF_INET
&& type
== SOCK_PACKET
) {
1289 printk(KERN_INFO
"%s uses obsolete (PF_INET,SOCK_PACKET)\n",
1295 err
= security_socket_create(family
, type
, protocol
, kern
);
1300 * Allocate the socket and allow the family to set things up. if
1301 * the protocol is 0, the family is instructed to select an appropriate
1304 sock
= sock_alloc();
1306 net_warn_ratelimited("socket: no more sockets\n");
1307 return -ENFILE
; /* Not exactly a match, but its the
1308 closest posix thing */
1313 #ifdef CONFIG_MODULES
1314 /* Attempt to load a protocol module if the find failed.
1316 * 12/09/1996 Marcin: But! this makes REALLY only sense, if the user
1317 * requested real, full-featured networking support upon configuration.
1318 * Otherwise module support will break!
1320 if (rcu_access_pointer(net_families
[family
]) == NULL
)
1321 request_module("net-pf-%d", family
);
1325 pf
= rcu_dereference(net_families
[family
]);
1326 err
= -EAFNOSUPPORT
;
1331 * We will call the ->create function, that possibly is in a loadable
1332 * module, so we have to bump that loadable module refcnt first.
1334 if (!try_module_get(pf
->owner
))
1337 /* Now protected by module ref count */
1340 err
= pf
->create(net
, sock
, protocol
, kern
);
1342 goto out_module_put
;
1345 * Now to bump the refcnt of the [loadable] module that owns this
1346 * socket at sock_release time we decrement its refcnt.
1348 if (!try_module_get(sock
->ops
->owner
))
1349 goto out_module_busy
;
1352 * Now that we're done with the ->create function, the [loadable]
1353 * module can have its refcnt decremented
1355 module_put(pf
->owner
);
1356 err
= security_socket_post_create(sock
, family
, type
, protocol
, kern
);
1358 goto out_sock_release
;
1364 err
= -EAFNOSUPPORT
;
1367 module_put(pf
->owner
);
1374 goto out_sock_release
;
1376 EXPORT_SYMBOL(__sock_create
);
1378 int sock_create(int family
, int type
, int protocol
, struct socket
**res
)
1380 return __sock_create(current
->nsproxy
->net_ns
, family
, type
, protocol
, res
, 0);
1382 EXPORT_SYMBOL(sock_create
);
1384 int sock_create_kern(int family
, int type
, int protocol
, struct socket
**res
)
1386 return __sock_create(&init_net
, family
, type
, protocol
, res
, 1);
1388 EXPORT_SYMBOL(sock_create_kern
);
1390 SYSCALL_DEFINE3(socket
, int, family
, int, type
, int, protocol
)
1393 struct socket
*sock
;
1396 /* Check the SOCK_* constants for consistency. */
1397 BUILD_BUG_ON(SOCK_CLOEXEC
!= O_CLOEXEC
);
1398 BUILD_BUG_ON((SOCK_MAX
| SOCK_TYPE_MASK
) != SOCK_TYPE_MASK
);
1399 BUILD_BUG_ON(SOCK_CLOEXEC
& SOCK_TYPE_MASK
);
1400 BUILD_BUG_ON(SOCK_NONBLOCK
& SOCK_TYPE_MASK
);
1402 flags
= type
& ~SOCK_TYPE_MASK
;
1403 if (flags
& ~(SOCK_CLOEXEC
| SOCK_NONBLOCK
))
1405 type
&= SOCK_TYPE_MASK
;
1407 if (SOCK_NONBLOCK
!= O_NONBLOCK
&& (flags
& SOCK_NONBLOCK
))
1408 flags
= (flags
& ~SOCK_NONBLOCK
) | O_NONBLOCK
;
1410 retval
= sock_create(family
, type
, protocol
, &sock
);
1414 retval
= sock_map_fd(sock
, flags
& (O_CLOEXEC
| O_NONBLOCK
));
1419 /* It may be already another descriptor 8) Not kernel problem. */
1428 * Create a pair of connected sockets.
1431 SYSCALL_DEFINE4(socketpair
, int, family
, int, type
, int, protocol
,
1432 int __user
*, usockvec
)
1434 struct socket
*sock1
, *sock2
;
1436 struct file
*newfile1
, *newfile2
;
1439 flags
= type
& ~SOCK_TYPE_MASK
;
1440 if (flags
& ~(SOCK_CLOEXEC
| SOCK_NONBLOCK
))
1442 type
&= SOCK_TYPE_MASK
;
1444 if (SOCK_NONBLOCK
!= O_NONBLOCK
&& (flags
& SOCK_NONBLOCK
))
1445 flags
= (flags
& ~SOCK_NONBLOCK
) | O_NONBLOCK
;
1448 * Obtain the first socket and check if the underlying protocol
1449 * supports the socketpair call.
1452 err
= sock_create(family
, type
, protocol
, &sock1
);
1456 err
= sock_create(family
, type
, protocol
, &sock2
);
1460 err
= sock1
->ops
->socketpair(sock1
, sock2
);
1462 goto out_release_both
;
1464 fd1
= get_unused_fd_flags(flags
);
1465 if (unlikely(fd1
< 0)) {
1467 goto out_release_both
;
1469 fd2
= get_unused_fd_flags(flags
);
1470 if (unlikely(fd2
< 0)) {
1473 goto out_release_both
;
1476 newfile1
= sock_alloc_file(sock1
, flags
, NULL
);
1477 if (unlikely(IS_ERR(newfile1
))) {
1478 err
= PTR_ERR(newfile1
);
1481 goto out_release_both
;
1484 newfile2
= sock_alloc_file(sock2
, flags
, NULL
);
1485 if (IS_ERR(newfile2
)) {
1486 err
= PTR_ERR(newfile2
);
1490 sock_release(sock2
);
1494 audit_fd_pair(fd1
, fd2
);
1495 fd_install(fd1
, newfile1
);
1496 fd_install(fd2
, newfile2
);
1497 /* fd1 and fd2 may be already another descriptors.
1498 * Not kernel problem.
1501 err
= put_user(fd1
, &usockvec
[0]);
1503 err
= put_user(fd2
, &usockvec
[1]);
1512 sock_release(sock2
);
1514 sock_release(sock1
);
1520 * Bind a name to a socket. Nothing much to do here since it's
1521 * the protocol's responsibility to handle the local address.
1523 * We move the socket address to kernel space before we call
1524 * the protocol layer (having also checked the address is ok).
1527 SYSCALL_DEFINE3(bind
, int, fd
, struct sockaddr __user
*, umyaddr
, int, addrlen
)
1529 struct socket
*sock
;
1530 struct sockaddr_storage address
;
1531 int err
, fput_needed
;
1533 sock
= sockfd_lookup_light(fd
, &err
, &fput_needed
);
1535 err
= move_addr_to_kernel(umyaddr
, addrlen
, &address
);
1537 err
= security_socket_bind(sock
,
1538 (struct sockaddr
*)&address
,
1541 err
= sock
->ops
->bind(sock
,
1545 fput_light(sock
->file
, fput_needed
);
1551 * Perform a listen. Basically, we allow the protocol to do anything
1552 * necessary for a listen, and if that works, we mark the socket as
1553 * ready for listening.
1556 SYSCALL_DEFINE2(listen
, int, fd
, int, backlog
)
1558 struct socket
*sock
;
1559 int err
, fput_needed
;
1562 sock
= sockfd_lookup_light(fd
, &err
, &fput_needed
);
1564 somaxconn
= sock_net(sock
->sk
)->core
.sysctl_somaxconn
;
1565 if ((unsigned int)backlog
> somaxconn
)
1566 backlog
= somaxconn
;
1568 err
= security_socket_listen(sock
, backlog
);
1570 err
= sock
->ops
->listen(sock
, backlog
);
1572 fput_light(sock
->file
, fput_needed
);
1578 * For accept, we attempt to create a new socket, set up the link
1579 * with the client, wake up the client, then return the new
1580 * connected fd. We collect the address of the connector in kernel
1581 * space and move it to user at the very end. This is unclean because
1582 * we open the socket then return an error.
1584 * 1003.1g adds the ability to recvmsg() to query connection pending
1585 * status to recvmsg. We need to add that support in a way thats
1586 * clean when we restucture accept also.
1589 SYSCALL_DEFINE4(accept4
, int, fd
, struct sockaddr __user
*, upeer_sockaddr
,
1590 int __user
*, upeer_addrlen
, int, flags
)
1592 struct socket
*sock
, *newsock
;
1593 struct file
*newfile
;
1594 int err
, len
, newfd
, fput_needed
;
1595 struct sockaddr_storage address
;
1597 if (flags
& ~(SOCK_CLOEXEC
| SOCK_NONBLOCK
))
1600 if (SOCK_NONBLOCK
!= O_NONBLOCK
&& (flags
& SOCK_NONBLOCK
))
1601 flags
= (flags
& ~SOCK_NONBLOCK
) | O_NONBLOCK
;
1603 sock
= sockfd_lookup_light(fd
, &err
, &fput_needed
);
1608 newsock
= sock_alloc();
1612 newsock
->type
= sock
->type
;
1613 newsock
->ops
= sock
->ops
;
1616 * We don't need try_module_get here, as the listening socket (sock)
1617 * has the protocol module (sock->ops->owner) held.
1619 __module_get(newsock
->ops
->owner
);
1621 newfd
= get_unused_fd_flags(flags
);
1622 if (unlikely(newfd
< 0)) {
1624 sock_release(newsock
);
1627 newfile
= sock_alloc_file(newsock
, flags
, sock
->sk
->sk_prot_creator
->name
);
1628 if (unlikely(IS_ERR(newfile
))) {
1629 err
= PTR_ERR(newfile
);
1630 put_unused_fd(newfd
);
1631 sock_release(newsock
);
1635 err
= security_socket_accept(sock
, newsock
);
1639 err
= sock
->ops
->accept(sock
, newsock
, sock
->file
->f_flags
);
1643 if (upeer_sockaddr
) {
1644 if (newsock
->ops
->getname(newsock
, (struct sockaddr
*)&address
,
1646 err
= -ECONNABORTED
;
1649 err
= move_addr_to_user(&address
,
1650 len
, upeer_sockaddr
, upeer_addrlen
);
1655 /* File flags are not inherited via accept() unlike another OSes. */
1657 fd_install(newfd
, newfile
);
1661 fput_light(sock
->file
, fput_needed
);
1666 put_unused_fd(newfd
);
1670 SYSCALL_DEFINE3(accept
, int, fd
, struct sockaddr __user
*, upeer_sockaddr
,
1671 int __user
*, upeer_addrlen
)
1673 return sys_accept4(fd
, upeer_sockaddr
, upeer_addrlen
, 0);
1677 * Attempt to connect to a socket with the server address. The address
1678 * is in user space so we verify it is OK and move it to kernel space.
1680 * For 1003.1g we need to add clean support for a bind to AF_UNSPEC to
1683 * NOTE: 1003.1g draft 6.3 is broken with respect to AX.25/NetROM and
1684 * other SEQPACKET protocols that take time to connect() as it doesn't
1685 * include the -EINPROGRESS status for such sockets.
1688 SYSCALL_DEFINE3(connect
, int, fd
, struct sockaddr __user
*, uservaddr
,
1691 struct socket
*sock
;
1692 struct sockaddr_storage address
;
1693 int err
, fput_needed
;
1695 sock
= sockfd_lookup_light(fd
, &err
, &fput_needed
);
1698 err
= move_addr_to_kernel(uservaddr
, addrlen
, &address
);
1703 security_socket_connect(sock
, (struct sockaddr
*)&address
, addrlen
);
1707 err
= sock
->ops
->connect(sock
, (struct sockaddr
*)&address
, addrlen
,
1708 sock
->file
->f_flags
);
1710 fput_light(sock
->file
, fput_needed
);
1716 * Get the local address ('name') of a socket object. Move the obtained
1717 * name to user space.
1720 SYSCALL_DEFINE3(getsockname
, int, fd
, struct sockaddr __user
*, usockaddr
,
1721 int __user
*, usockaddr_len
)
1723 struct socket
*sock
;
1724 struct sockaddr_storage address
;
1725 int len
, err
, fput_needed
;
1727 sock
= sockfd_lookup_light(fd
, &err
, &fput_needed
);
1731 err
= security_socket_getsockname(sock
);
1735 err
= sock
->ops
->getname(sock
, (struct sockaddr
*)&address
, &len
, 0);
1738 err
= move_addr_to_user(&address
, len
, usockaddr
, usockaddr_len
);
1741 fput_light(sock
->file
, fput_needed
);
1747 * Get the remote address ('name') of a socket object. Move the obtained
1748 * name to user space.
1751 SYSCALL_DEFINE3(getpeername
, int, fd
, struct sockaddr __user
*, usockaddr
,
1752 int __user
*, usockaddr_len
)
1754 struct socket
*sock
;
1755 struct sockaddr_storage address
;
1756 int len
, err
, fput_needed
;
1758 sock
= sockfd_lookup_light(fd
, &err
, &fput_needed
);
1760 err
= security_socket_getpeername(sock
);
1762 fput_light(sock
->file
, fput_needed
);
1767 sock
->ops
->getname(sock
, (struct sockaddr
*)&address
, &len
,
1770 err
= move_addr_to_user(&address
, len
, usockaddr
,
1772 fput_light(sock
->file
, fput_needed
);
1778 * Send a datagram to a given address. We move the address into kernel
1779 * space and check the user space data area is readable before invoking
1783 SYSCALL_DEFINE6(sendto
, int, fd
, void __user
*, buff
, size_t, len
,
1784 unsigned int, flags
, struct sockaddr __user
*, addr
,
1787 struct socket
*sock
;
1788 struct sockaddr_storage address
;
1796 sock
= sockfd_lookup_light(fd
, &err
, &fput_needed
);
1800 iov
.iov_base
= buff
;
1802 msg
.msg_name
= NULL
;
1805 msg
.msg_control
= NULL
;
1806 msg
.msg_controllen
= 0;
1807 msg
.msg_namelen
= 0;
1809 err
= move_addr_to_kernel(addr
, addr_len
, &address
);
1812 msg
.msg_name
= (struct sockaddr
*)&address
;
1813 msg
.msg_namelen
= addr_len
;
1815 if (sock
->file
->f_flags
& O_NONBLOCK
)
1816 flags
|= MSG_DONTWAIT
;
1817 msg
.msg_flags
= flags
;
1818 err
= sock_sendmsg(sock
, &msg
, len
);
1821 fput_light(sock
->file
, fput_needed
);
1827 * Send a datagram down a socket.
1830 SYSCALL_DEFINE4(send
, int, fd
, void __user
*, buff
, size_t, len
,
1831 unsigned int, flags
)
1833 return sys_sendto(fd
, buff
, len
, flags
, NULL
, 0);
1837 * Receive a frame from the socket and optionally record the address of the
1838 * sender. We verify the buffers are writable and if needed move the
1839 * sender address from kernel to user space.
1842 SYSCALL_DEFINE6(recvfrom
, int, fd
, void __user
*, ubuf
, size_t, size
,
1843 unsigned int, flags
, struct sockaddr __user
*, addr
,
1844 int __user
*, addr_len
)
1846 struct socket
*sock
;
1849 struct sockaddr_storage address
;
1855 sock
= sockfd_lookup_light(fd
, &err
, &fput_needed
);
1859 msg
.msg_control
= NULL
;
1860 msg
.msg_controllen
= 0;
1864 iov
.iov_base
= ubuf
;
1865 msg
.msg_name
= (struct sockaddr
*)&address
;
1866 msg
.msg_namelen
= sizeof(address
);
1867 if (sock
->file
->f_flags
& O_NONBLOCK
)
1868 flags
|= MSG_DONTWAIT
;
1869 err
= sock_recvmsg(sock
, &msg
, size
, flags
);
1871 if (err
>= 0 && addr
!= NULL
) {
1872 err2
= move_addr_to_user(&address
,
1873 msg
.msg_namelen
, addr
, addr_len
);
1878 fput_light(sock
->file
, fput_needed
);
1884 * Receive a datagram from a socket.
1887 asmlinkage
long sys_recv(int fd
, void __user
*ubuf
, size_t size
,
1890 return sys_recvfrom(fd
, ubuf
, size
, flags
, NULL
, NULL
);
1894 * Set a socket option. Because we don't know the option lengths we have
1895 * to pass the user mode parameter for the protocols to sort out.
1898 SYSCALL_DEFINE5(setsockopt
, int, fd
, int, level
, int, optname
,
1899 char __user
*, optval
, int, optlen
)
1901 int err
, fput_needed
;
1902 struct socket
*sock
;
1907 sock
= sockfd_lookup_light(fd
, &err
, &fput_needed
);
1909 err
= security_socket_setsockopt(sock
, level
, optname
);
1913 if (level
== SOL_SOCKET
)
1915 sock_setsockopt(sock
, level
, optname
, optval
,
1919 sock
->ops
->setsockopt(sock
, level
, optname
, optval
,
1922 fput_light(sock
->file
, fput_needed
);
1928 * Get a socket option. Because we don't know the option lengths we have
1929 * to pass a user mode parameter for the protocols to sort out.
1932 SYSCALL_DEFINE5(getsockopt
, int, fd
, int, level
, int, optname
,
1933 char __user
*, optval
, int __user
*, optlen
)
1935 int err
, fput_needed
;
1936 struct socket
*sock
;
1938 sock
= sockfd_lookup_light(fd
, &err
, &fput_needed
);
1940 err
= security_socket_getsockopt(sock
, level
, optname
);
1944 if (level
== SOL_SOCKET
)
1946 sock_getsockopt(sock
, level
, optname
, optval
,
1950 sock
->ops
->getsockopt(sock
, level
, optname
, optval
,
1953 fput_light(sock
->file
, fput_needed
);
1959 * Shutdown a socket.
1962 SYSCALL_DEFINE2(shutdown
, int, fd
, int, how
)
1964 int err
, fput_needed
;
1965 struct socket
*sock
;
1967 sock
= sockfd_lookup_light(fd
, &err
, &fput_needed
);
1969 err
= security_socket_shutdown(sock
, how
);
1971 err
= sock
->ops
->shutdown(sock
, how
);
1972 fput_light(sock
->file
, fput_needed
);
1977 /* A couple of helpful macros for getting the address of the 32/64 bit
1978 * fields which are the same type (int / unsigned) on our platforms.
1980 #define COMPAT_MSG(msg, member) ((MSG_CMSG_COMPAT & flags) ? &msg##_compat->member : &msg->member)
1981 #define COMPAT_NAMELEN(msg) COMPAT_MSG(msg, msg_namelen)
1982 #define COMPAT_FLAGS(msg) COMPAT_MSG(msg, msg_flags)
1984 struct used_address
{
1985 struct sockaddr_storage name
;
1986 unsigned int name_len
;
1989 static int __sys_sendmsg(struct socket
*sock
, struct msghdr __user
*msg
,
1990 struct msghdr
*msg_sys
, unsigned int flags
,
1991 struct used_address
*used_address
)
1993 struct compat_msghdr __user
*msg_compat
=
1994 (struct compat_msghdr __user
*)msg
;
1995 struct sockaddr_storage address
;
1996 struct iovec iovstack
[UIO_FASTIOV
], *iov
= iovstack
;
1997 unsigned char ctl
[sizeof(struct cmsghdr
) + 20]
1998 __attribute__ ((aligned(sizeof(__kernel_size_t
))));
1999 /* 20 is size of ipv6_pktinfo */
2000 unsigned char *ctl_buf
= ctl
;
2001 int err
, ctl_len
, total_len
;
2004 if (MSG_CMSG_COMPAT
& flags
) {
2005 if (get_compat_msghdr(msg_sys
, msg_compat
))
2007 } else if (copy_from_user(msg_sys
, msg
, sizeof(struct msghdr
)))
2010 if (msg_sys
->msg_iovlen
> UIO_FASTIOV
) {
2012 if (msg_sys
->msg_iovlen
> UIO_MAXIOV
)
2015 iov
= kmalloc(msg_sys
->msg_iovlen
* sizeof(struct iovec
),
2021 /* This will also move the address data into kernel space */
2022 if (MSG_CMSG_COMPAT
& flags
) {
2023 err
= verify_compat_iovec(msg_sys
, iov
, &address
, VERIFY_READ
);
2025 err
= verify_iovec(msg_sys
, iov
, &address
, VERIFY_READ
);
2032 if (msg_sys
->msg_controllen
> INT_MAX
)
2034 ctl_len
= msg_sys
->msg_controllen
;
2035 if ((MSG_CMSG_COMPAT
& flags
) && ctl_len
) {
2037 cmsghdr_from_user_compat_to_kern(msg_sys
, sock
->sk
, ctl
,
2041 ctl_buf
= msg_sys
->msg_control
;
2042 ctl_len
= msg_sys
->msg_controllen
;
2043 } else if (ctl_len
) {
2044 if (ctl_len
> sizeof(ctl
)) {
2045 ctl_buf
= sock_kmalloc(sock
->sk
, ctl_len
, GFP_KERNEL
);
2046 if (ctl_buf
== NULL
)
2051 * Careful! Before this, msg_sys->msg_control contains a user pointer.
2052 * Afterwards, it will be a kernel pointer. Thus the compiler-assisted
2053 * checking falls down on this.
2055 if (copy_from_user(ctl_buf
,
2056 (void __user __force
*)msg_sys
->msg_control
,
2059 msg_sys
->msg_control
= ctl_buf
;
2061 msg_sys
->msg_flags
= flags
;
2063 if (sock
->file
->f_flags
& O_NONBLOCK
)
2064 msg_sys
->msg_flags
|= MSG_DONTWAIT
;
2066 * If this is sendmmsg() and current destination address is same as
2067 * previously succeeded address, omit asking LSM's decision.
2068 * used_address->name_len is initialized to UINT_MAX so that the first
2069 * destination address never matches.
2071 if (used_address
&& msg_sys
->msg_name
&&
2072 used_address
->name_len
== msg_sys
->msg_namelen
&&
2073 !memcmp(&used_address
->name
, msg_sys
->msg_name
,
2074 used_address
->name_len
)) {
2075 err
= sock_sendmsg_nosec(sock
, msg_sys
, total_len
);
2078 err
= sock_sendmsg(sock
, msg_sys
, total_len
);
2080 * If this is sendmmsg() and sending to current destination address was
2081 * successful, remember it.
2083 if (used_address
&& err
>= 0) {
2084 used_address
->name_len
= msg_sys
->msg_namelen
;
2085 if (msg_sys
->msg_name
)
2086 memcpy(&used_address
->name
, msg_sys
->msg_name
,
2087 used_address
->name_len
);
2092 sock_kfree_s(sock
->sk
, ctl_buf
, ctl_len
);
2094 if (iov
!= iovstack
)
2101 * BSD sendmsg interface
2104 SYSCALL_DEFINE3(sendmsg
, int, fd
, struct msghdr __user
*, msg
, unsigned int, flags
)
2106 int fput_needed
, err
;
2107 struct msghdr msg_sys
;
2108 struct socket
*sock
= sockfd_lookup_light(fd
, &err
, &fput_needed
);
2113 err
= __sys_sendmsg(sock
, msg
, &msg_sys
, flags
, NULL
);
2115 fput_light(sock
->file
, fput_needed
);
2121 * Linux sendmmsg interface
2124 int __sys_sendmmsg(int fd
, struct mmsghdr __user
*mmsg
, unsigned int vlen
,
2127 int fput_needed
, err
, datagrams
;
2128 struct socket
*sock
;
2129 struct mmsghdr __user
*entry
;
2130 struct compat_mmsghdr __user
*compat_entry
;
2131 struct msghdr msg_sys
;
2132 struct used_address used_address
;
2134 if (vlen
> UIO_MAXIOV
)
2139 sock
= sockfd_lookup_light(fd
, &err
, &fput_needed
);
2143 used_address
.name_len
= UINT_MAX
;
2145 compat_entry
= (struct compat_mmsghdr __user
*)mmsg
;
2148 while (datagrams
< vlen
) {
2149 if (MSG_CMSG_COMPAT
& flags
) {
2150 err
= __sys_sendmsg(sock
, (struct msghdr __user
*)compat_entry
,
2151 &msg_sys
, flags
, &used_address
);
2154 err
= __put_user(err
, &compat_entry
->msg_len
);
2157 err
= __sys_sendmsg(sock
, (struct msghdr __user
*)entry
,
2158 &msg_sys
, flags
, &used_address
);
2161 err
= put_user(err
, &entry
->msg_len
);
2170 fput_light(sock
->file
, fput_needed
);
2172 /* We only return an error if no datagrams were able to be sent */
2179 SYSCALL_DEFINE4(sendmmsg
, int, fd
, struct mmsghdr __user
*, mmsg
,
2180 unsigned int, vlen
, unsigned int, flags
)
2182 return __sys_sendmmsg(fd
, mmsg
, vlen
, flags
);
2185 static int __sys_recvmsg(struct socket
*sock
, struct msghdr __user
*msg
,
2186 struct msghdr
*msg_sys
, unsigned int flags
, int nosec
)
2188 struct compat_msghdr __user
*msg_compat
=
2189 (struct compat_msghdr __user
*)msg
;
2190 struct iovec iovstack
[UIO_FASTIOV
];
2191 struct iovec
*iov
= iovstack
;
2192 unsigned long cmsg_ptr
;
2193 int err
, total_len
, len
;
2195 /* kernel mode address */
2196 struct sockaddr_storage addr
;
2198 /* user mode address pointers */
2199 struct sockaddr __user
*uaddr
;
2200 int __user
*uaddr_len
;
2202 if (MSG_CMSG_COMPAT
& flags
) {
2203 if (get_compat_msghdr(msg_sys
, msg_compat
))
2205 } else if (copy_from_user(msg_sys
, msg
, sizeof(struct msghdr
)))
2208 if (msg_sys
->msg_iovlen
> UIO_FASTIOV
) {
2210 if (msg_sys
->msg_iovlen
> UIO_MAXIOV
)
2213 iov
= kmalloc(msg_sys
->msg_iovlen
* sizeof(struct iovec
),
2220 * Save the user-mode address (verify_iovec will change the
2221 * kernel msghdr to use the kernel address space)
2224 uaddr
= (__force
void __user
*)msg_sys
->msg_name
;
2225 uaddr_len
= COMPAT_NAMELEN(msg
);
2226 if (MSG_CMSG_COMPAT
& flags
) {
2227 err
= verify_compat_iovec(msg_sys
, iov
, &addr
, VERIFY_WRITE
);
2229 err
= verify_iovec(msg_sys
, iov
, &addr
, VERIFY_WRITE
);
2234 cmsg_ptr
= (unsigned long)msg_sys
->msg_control
;
2235 msg_sys
->msg_flags
= flags
& (MSG_CMSG_CLOEXEC
|MSG_CMSG_COMPAT
);
2237 if (sock
->file
->f_flags
& O_NONBLOCK
)
2238 flags
|= MSG_DONTWAIT
;
2239 err
= (nosec
? sock_recvmsg_nosec
: sock_recvmsg
)(sock
, msg_sys
,
2245 if (uaddr
!= NULL
) {
2246 err
= move_addr_to_user(&addr
,
2247 msg_sys
->msg_namelen
, uaddr
,
2252 err
= __put_user((msg_sys
->msg_flags
& ~MSG_CMSG_COMPAT
),
2256 if (MSG_CMSG_COMPAT
& flags
)
2257 err
= __put_user((unsigned long)msg_sys
->msg_control
- cmsg_ptr
,
2258 &msg_compat
->msg_controllen
);
2260 err
= __put_user((unsigned long)msg_sys
->msg_control
- cmsg_ptr
,
2261 &msg
->msg_controllen
);
2267 if (iov
!= iovstack
)
2274 * BSD recvmsg interface
2277 SYSCALL_DEFINE3(recvmsg
, int, fd
, struct msghdr __user
*, msg
,
2278 unsigned int, flags
)
2280 int fput_needed
, err
;
2281 struct msghdr msg_sys
;
2282 struct socket
*sock
= sockfd_lookup_light(fd
, &err
, &fput_needed
);
2287 err
= __sys_recvmsg(sock
, msg
, &msg_sys
, flags
, 0);
2289 fput_light(sock
->file
, fput_needed
);
2295 * Linux recvmmsg interface
2298 int __sys_recvmmsg(int fd
, struct mmsghdr __user
*mmsg
, unsigned int vlen
,
2299 unsigned int flags
, struct timespec
*timeout
)
2301 int fput_needed
, err
, datagrams
;
2302 struct socket
*sock
;
2303 struct mmsghdr __user
*entry
;
2304 struct compat_mmsghdr __user
*compat_entry
;
2305 struct msghdr msg_sys
;
2306 struct timespec end_time
;
2309 poll_select_set_timeout(&end_time
, timeout
->tv_sec
,
2315 sock
= sockfd_lookup_light(fd
, &err
, &fput_needed
);
2319 err
= sock_error(sock
->sk
);
2324 compat_entry
= (struct compat_mmsghdr __user
*)mmsg
;
2326 while (datagrams
< vlen
) {
2328 * No need to ask LSM for more than the first datagram.
2330 if (MSG_CMSG_COMPAT
& flags
) {
2331 err
= __sys_recvmsg(sock
, (struct msghdr __user
*)compat_entry
,
2332 &msg_sys
, flags
& ~MSG_WAITFORONE
,
2336 err
= __put_user(err
, &compat_entry
->msg_len
);
2339 err
= __sys_recvmsg(sock
, (struct msghdr __user
*)entry
,
2340 &msg_sys
, flags
& ~MSG_WAITFORONE
,
2344 err
= put_user(err
, &entry
->msg_len
);
2352 /* MSG_WAITFORONE turns on MSG_DONTWAIT after one packet */
2353 if (flags
& MSG_WAITFORONE
)
2354 flags
|= MSG_DONTWAIT
;
2357 ktime_get_ts(timeout
);
2358 *timeout
= timespec_sub(end_time
, *timeout
);
2359 if (timeout
->tv_sec
< 0) {
2360 timeout
->tv_sec
= timeout
->tv_nsec
= 0;
2364 /* Timeout, return less than vlen datagrams */
2365 if (timeout
->tv_nsec
== 0 && timeout
->tv_sec
== 0)
2369 /* Out of band data, return right away */
2370 if (msg_sys
.msg_flags
& MSG_OOB
)
2375 fput_light(sock
->file
, fput_needed
);
2380 if (datagrams
!= 0) {
2382 * We may return less entries than requested (vlen) if the
2383 * sock is non block and there aren't enough datagrams...
2385 if (err
!= -EAGAIN
) {
2387 * ... or if recvmsg returns an error after we
2388 * received some datagrams, where we record the
2389 * error to return on the next call or if the
2390 * app asks about it using getsockopt(SO_ERROR).
2392 sock
->sk
->sk_err
= -err
;
2401 SYSCALL_DEFINE5(recvmmsg
, int, fd
, struct mmsghdr __user
*, mmsg
,
2402 unsigned int, vlen
, unsigned int, flags
,
2403 struct timespec __user
*, timeout
)
2406 struct timespec timeout_sys
;
2409 return __sys_recvmmsg(fd
, mmsg
, vlen
, flags
, NULL
);
2411 if (copy_from_user(&timeout_sys
, timeout
, sizeof(timeout_sys
)))
2414 datagrams
= __sys_recvmmsg(fd
, mmsg
, vlen
, flags
, &timeout_sys
);
2416 if (datagrams
> 0 &&
2417 copy_to_user(timeout
, &timeout_sys
, sizeof(timeout_sys
)))
2418 datagrams
= -EFAULT
;
2423 #ifdef __ARCH_WANT_SYS_SOCKETCALL
2424 /* Argument list sizes for sys_socketcall */
2425 #define AL(x) ((x) * sizeof(unsigned long))
2426 static const unsigned char nargs
[21] = {
2427 AL(0), AL(3), AL(3), AL(3), AL(2), AL(3),
2428 AL(3), AL(3), AL(4), AL(4), AL(4), AL(6),
2429 AL(6), AL(2), AL(5), AL(5), AL(3), AL(3),
2436 * System call vectors.
2438 * Argument checking cleaned up. Saved 20% in size.
2439 * This function doesn't need to set the kernel lock because
2440 * it is set by the callees.
2443 SYSCALL_DEFINE2(socketcall
, int, call
, unsigned long __user
*, args
)
2446 unsigned long a0
, a1
;
2450 if (call
< 1 || call
> SYS_SENDMMSG
)
2454 if (len
> sizeof(a
))
2457 /* copy_from_user should be SMP safe. */
2458 if (copy_from_user(a
, args
, len
))
2461 audit_socketcall(nargs
[call
] / sizeof(unsigned long), a
);
2468 err
= sys_socket(a0
, a1
, a
[2]);
2471 err
= sys_bind(a0
, (struct sockaddr __user
*)a1
, a
[2]);
2474 err
= sys_connect(a0
, (struct sockaddr __user
*)a1
, a
[2]);
2477 err
= sys_listen(a0
, a1
);
2480 err
= sys_accept4(a0
, (struct sockaddr __user
*)a1
,
2481 (int __user
*)a
[2], 0);
2483 case SYS_GETSOCKNAME
:
2485 sys_getsockname(a0
, (struct sockaddr __user
*)a1
,
2486 (int __user
*)a
[2]);
2488 case SYS_GETPEERNAME
:
2490 sys_getpeername(a0
, (struct sockaddr __user
*)a1
,
2491 (int __user
*)a
[2]);
2493 case SYS_SOCKETPAIR
:
2494 err
= sys_socketpair(a0
, a1
, a
[2], (int __user
*)a
[3]);
2497 err
= sys_send(a0
, (void __user
*)a1
, a
[2], a
[3]);
2500 err
= sys_sendto(a0
, (void __user
*)a1
, a
[2], a
[3],
2501 (struct sockaddr __user
*)a
[4], a
[5]);
2504 err
= sys_recv(a0
, (void __user
*)a1
, a
[2], a
[3]);
2507 err
= sys_recvfrom(a0
, (void __user
*)a1
, a
[2], a
[3],
2508 (struct sockaddr __user
*)a
[4],
2509 (int __user
*)a
[5]);
2512 err
= sys_shutdown(a0
, a1
);
2514 case SYS_SETSOCKOPT
:
2515 err
= sys_setsockopt(a0
, a1
, a
[2], (char __user
*)a
[3], a
[4]);
2517 case SYS_GETSOCKOPT
:
2519 sys_getsockopt(a0
, a1
, a
[2], (char __user
*)a
[3],
2520 (int __user
*)a
[4]);
2523 err
= sys_sendmsg(a0
, (struct msghdr __user
*)a1
, a
[2]);
2526 err
= sys_sendmmsg(a0
, (struct mmsghdr __user
*)a1
, a
[2], a
[3]);
2529 err
= sys_recvmsg(a0
, (struct msghdr __user
*)a1
, a
[2]);
2532 err
= sys_recvmmsg(a0
, (struct mmsghdr __user
*)a1
, a
[2], a
[3],
2533 (struct timespec __user
*)a
[4]);
2536 err
= sys_accept4(a0
, (struct sockaddr __user
*)a1
,
2537 (int __user
*)a
[2], a
[3]);
2546 #endif /* __ARCH_WANT_SYS_SOCKETCALL */
2549 * sock_register - add a socket protocol handler
2550 * @ops: description of protocol
2552 * This function is called by a protocol handler that wants to
2553 * advertise its address family, and have it linked into the
2554 * socket interface. The value ops->family coresponds to the
2555 * socket system call protocol family.
2557 int sock_register(const struct net_proto_family
*ops
)
2561 if (ops
->family
>= NPROTO
) {
2562 printk(KERN_CRIT
"protocol %d >= NPROTO(%d)\n", ops
->family
,
2567 spin_lock(&net_family_lock
);
2568 if (rcu_dereference_protected(net_families
[ops
->family
],
2569 lockdep_is_held(&net_family_lock
)))
2572 rcu_assign_pointer(net_families
[ops
->family
], ops
);
2575 spin_unlock(&net_family_lock
);
2577 printk(KERN_INFO
"NET: Registered protocol family %d\n", ops
->family
);
2580 EXPORT_SYMBOL(sock_register
);
2583 * sock_unregister - remove a protocol handler
2584 * @family: protocol family to remove
2586 * This function is called by a protocol handler that wants to
2587 * remove its address family, and have it unlinked from the
2588 * new socket creation.
2590 * If protocol handler is a module, then it can use module reference
2591 * counts to protect against new references. If protocol handler is not
2592 * a module then it needs to provide its own protection in
2593 * the ops->create routine.
2595 void sock_unregister(int family
)
2597 BUG_ON(family
< 0 || family
>= NPROTO
);
2599 spin_lock(&net_family_lock
);
2600 RCU_INIT_POINTER(net_families
[family
], NULL
);
2601 spin_unlock(&net_family_lock
);
2605 printk(KERN_INFO
"NET: Unregistered protocol family %d\n", family
);
2607 EXPORT_SYMBOL(sock_unregister
);
2609 static int __init
sock_init(void)
2613 * Initialize the network sysctl infrastructure.
2615 err
= net_sysctl_init();
2620 * Initialize skbuff SLAB cache
2625 * Initialize the protocols module.
2630 err
= register_filesystem(&sock_fs_type
);
2633 sock_mnt
= kern_mount(&sock_fs_type
);
2634 if (IS_ERR(sock_mnt
)) {
2635 err
= PTR_ERR(sock_mnt
);
2639 /* The real protocol initialization is performed in later initcalls.
2642 #ifdef CONFIG_NETFILTER
2646 #ifdef CONFIG_NETWORK_PHY_TIMESTAMPING
2647 skb_timestamping_init();
2654 unregister_filesystem(&sock_fs_type
);
2659 core_initcall(sock_init
); /* early initcall */
2661 #ifdef CONFIG_PROC_FS
2662 void socket_seq_show(struct seq_file
*seq
)
2667 for_each_possible_cpu(cpu
)
2668 counter
+= per_cpu(sockets_in_use
, cpu
);
2670 /* It can be negative, by the way. 8) */
2674 seq_printf(seq
, "sockets: used %d\n", counter
);
2676 #endif /* CONFIG_PROC_FS */
2678 #ifdef CONFIG_COMPAT
2679 static int do_siocgstamp(struct net
*net
, struct socket
*sock
,
2680 unsigned int cmd
, void __user
*up
)
2682 mm_segment_t old_fs
= get_fs();
2687 err
= sock_do_ioctl(net
, sock
, cmd
, (unsigned long)&ktv
);
2690 err
= compat_put_timeval(&ktv
, up
);
2695 static int do_siocgstampns(struct net
*net
, struct socket
*sock
,
2696 unsigned int cmd
, void __user
*up
)
2698 mm_segment_t old_fs
= get_fs();
2699 struct timespec kts
;
2703 err
= sock_do_ioctl(net
, sock
, cmd
, (unsigned long)&kts
);
2706 err
= compat_put_timespec(&kts
, up
);
2711 static int dev_ifname32(struct net
*net
, struct compat_ifreq __user
*uifr32
)
2713 struct ifreq __user
*uifr
;
2716 uifr
= compat_alloc_user_space(sizeof(struct ifreq
));
2717 if (copy_in_user(uifr
, uifr32
, sizeof(struct compat_ifreq
)))
2720 err
= dev_ioctl(net
, SIOCGIFNAME
, uifr
);
2724 if (copy_in_user(uifr32
, uifr
, sizeof(struct compat_ifreq
)))
2730 static int dev_ifconf(struct net
*net
, struct compat_ifconf __user
*uifc32
)
2732 struct compat_ifconf ifc32
;
2734 struct ifconf __user
*uifc
;
2735 struct compat_ifreq __user
*ifr32
;
2736 struct ifreq __user
*ifr
;
2740 if (copy_from_user(&ifc32
, uifc32
, sizeof(struct compat_ifconf
)))
2743 memset(&ifc
, 0, sizeof(ifc
));
2744 if (ifc32
.ifcbuf
== 0) {
2748 uifc
= compat_alloc_user_space(sizeof(struct ifconf
));
2750 size_t len
= ((ifc32
.ifc_len
/ sizeof(struct compat_ifreq
)) + 1) *
2751 sizeof(struct ifreq
);
2752 uifc
= compat_alloc_user_space(sizeof(struct ifconf
) + len
);
2754 ifr
= ifc
.ifc_req
= (void __user
*)(uifc
+ 1);
2755 ifr32
= compat_ptr(ifc32
.ifcbuf
);
2756 for (i
= 0; i
< ifc32
.ifc_len
; i
+= sizeof(struct compat_ifreq
)) {
2757 if (copy_in_user(ifr
, ifr32
, sizeof(struct compat_ifreq
)))
2763 if (copy_to_user(uifc
, &ifc
, sizeof(struct ifconf
)))
2766 err
= dev_ioctl(net
, SIOCGIFCONF
, uifc
);
2770 if (copy_from_user(&ifc
, uifc
, sizeof(struct ifconf
)))
2774 ifr32
= compat_ptr(ifc32
.ifcbuf
);
2776 i
+ sizeof(struct compat_ifreq
) <= ifc32
.ifc_len
&& j
< ifc
.ifc_len
;
2777 i
+= sizeof(struct compat_ifreq
), j
+= sizeof(struct ifreq
)) {
2778 if (copy_in_user(ifr32
, ifr
, sizeof(struct compat_ifreq
)))
2784 if (ifc32
.ifcbuf
== 0) {
2785 /* Translate from 64-bit structure multiple to
2789 i
= ((i
/ sizeof(struct ifreq
)) * sizeof(struct compat_ifreq
));
2794 if (copy_to_user(uifc32
, &ifc32
, sizeof(struct compat_ifconf
)))
2800 static int ethtool_ioctl(struct net
*net
, struct compat_ifreq __user
*ifr32
)
2802 struct compat_ethtool_rxnfc __user
*compat_rxnfc
;
2803 bool convert_in
= false, convert_out
= false;
2804 size_t buf_size
= ALIGN(sizeof(struct ifreq
), 8);
2805 struct ethtool_rxnfc __user
*rxnfc
;
2806 struct ifreq __user
*ifr
;
2807 u32 rule_cnt
= 0, actual_rule_cnt
;
2812 if (get_user(data
, &ifr32
->ifr_ifru
.ifru_data
))
2815 compat_rxnfc
= compat_ptr(data
);
2817 if (get_user(ethcmd
, &compat_rxnfc
->cmd
))
2820 /* Most ethtool structures are defined without padding.
2821 * Unfortunately struct ethtool_rxnfc is an exception.
2826 case ETHTOOL_GRXCLSRLALL
:
2827 /* Buffer size is variable */
2828 if (get_user(rule_cnt
, &compat_rxnfc
->rule_cnt
))
2830 if (rule_cnt
> KMALLOC_MAX_SIZE
/ sizeof(u32
))
2832 buf_size
+= rule_cnt
* sizeof(u32
);
2834 case ETHTOOL_GRXRINGS
:
2835 case ETHTOOL_GRXCLSRLCNT
:
2836 case ETHTOOL_GRXCLSRULE
:
2837 case ETHTOOL_SRXCLSRLINS
:
2840 case ETHTOOL_SRXCLSRLDEL
:
2841 buf_size
+= sizeof(struct ethtool_rxnfc
);
2846 ifr
= compat_alloc_user_space(buf_size
);
2847 rxnfc
= (void *)ifr
+ ALIGN(sizeof(struct ifreq
), 8);
2849 if (copy_in_user(&ifr
->ifr_name
, &ifr32
->ifr_name
, IFNAMSIZ
))
2852 if (put_user(convert_in
? rxnfc
: compat_ptr(data
),
2853 &ifr
->ifr_ifru
.ifru_data
))
2857 /* We expect there to be holes between fs.m_ext and
2858 * fs.ring_cookie and at the end of fs, but nowhere else.
2860 BUILD_BUG_ON(offsetof(struct compat_ethtool_rxnfc
, fs
.m_ext
) +
2861 sizeof(compat_rxnfc
->fs
.m_ext
) !=
2862 offsetof(struct ethtool_rxnfc
, fs
.m_ext
) +
2863 sizeof(rxnfc
->fs
.m_ext
));
2865 offsetof(struct compat_ethtool_rxnfc
, fs
.location
) -
2866 offsetof(struct compat_ethtool_rxnfc
, fs
.ring_cookie
) !=
2867 offsetof(struct ethtool_rxnfc
, fs
.location
) -
2868 offsetof(struct ethtool_rxnfc
, fs
.ring_cookie
));
2870 if (copy_in_user(rxnfc
, compat_rxnfc
,
2871 (void *)(&rxnfc
->fs
.m_ext
+ 1) -
2873 copy_in_user(&rxnfc
->fs
.ring_cookie
,
2874 &compat_rxnfc
->fs
.ring_cookie
,
2875 (void *)(&rxnfc
->fs
.location
+ 1) -
2876 (void *)&rxnfc
->fs
.ring_cookie
) ||
2877 copy_in_user(&rxnfc
->rule_cnt
, &compat_rxnfc
->rule_cnt
,
2878 sizeof(rxnfc
->rule_cnt
)))
2882 ret
= dev_ioctl(net
, SIOCETHTOOL
, ifr
);
2887 if (copy_in_user(compat_rxnfc
, rxnfc
,
2888 (const void *)(&rxnfc
->fs
.m_ext
+ 1) -
2889 (const void *)rxnfc
) ||
2890 copy_in_user(&compat_rxnfc
->fs
.ring_cookie
,
2891 &rxnfc
->fs
.ring_cookie
,
2892 (const void *)(&rxnfc
->fs
.location
+ 1) -
2893 (const void *)&rxnfc
->fs
.ring_cookie
) ||
2894 copy_in_user(&compat_rxnfc
->rule_cnt
, &rxnfc
->rule_cnt
,
2895 sizeof(rxnfc
->rule_cnt
)))
2898 if (ethcmd
== ETHTOOL_GRXCLSRLALL
) {
2899 /* As an optimisation, we only copy the actual
2900 * number of rules that the underlying
2901 * function returned. Since Mallory might
2902 * change the rule count in user memory, we
2903 * check that it is less than the rule count
2904 * originally given (as the user buffer size),
2905 * which has been range-checked.
2907 if (get_user(actual_rule_cnt
, &rxnfc
->rule_cnt
))
2909 if (actual_rule_cnt
< rule_cnt
)
2910 rule_cnt
= actual_rule_cnt
;
2911 if (copy_in_user(&compat_rxnfc
->rule_locs
[0],
2912 &rxnfc
->rule_locs
[0],
2913 rule_cnt
* sizeof(u32
)))
2921 static int compat_siocwandev(struct net
*net
, struct compat_ifreq __user
*uifr32
)
2924 compat_uptr_t uptr32
;
2925 struct ifreq __user
*uifr
;
2927 uifr
= compat_alloc_user_space(sizeof(*uifr
));
2928 if (copy_in_user(uifr
, uifr32
, sizeof(struct compat_ifreq
)))
2931 if (get_user(uptr32
, &uifr32
->ifr_settings
.ifs_ifsu
))
2934 uptr
= compat_ptr(uptr32
);
2936 if (put_user(uptr
, &uifr
->ifr_settings
.ifs_ifsu
.raw_hdlc
))
2939 return dev_ioctl(net
, SIOCWANDEV
, uifr
);
2942 static int bond_ioctl(struct net
*net
, unsigned int cmd
,
2943 struct compat_ifreq __user
*ifr32
)
2946 struct ifreq __user
*uifr
;
2947 mm_segment_t old_fs
;
2953 case SIOCBONDENSLAVE
:
2954 case SIOCBONDRELEASE
:
2955 case SIOCBONDSETHWADDR
:
2956 case SIOCBONDCHANGEACTIVE
:
2957 if (copy_from_user(&kifr
, ifr32
, sizeof(struct compat_ifreq
)))
2962 err
= dev_ioctl(net
, cmd
,
2963 (struct ifreq __user __force
*) &kifr
);
2967 case SIOCBONDSLAVEINFOQUERY
:
2968 case SIOCBONDINFOQUERY
:
2969 uifr
= compat_alloc_user_space(sizeof(*uifr
));
2970 if (copy_in_user(&uifr
->ifr_name
, &ifr32
->ifr_name
, IFNAMSIZ
))
2973 if (get_user(data
, &ifr32
->ifr_ifru
.ifru_data
))
2976 datap
= compat_ptr(data
);
2977 if (put_user(datap
, &uifr
->ifr_ifru
.ifru_data
))
2980 return dev_ioctl(net
, cmd
, uifr
);
2982 return -ENOIOCTLCMD
;
2986 static int siocdevprivate_ioctl(struct net
*net
, unsigned int cmd
,
2987 struct compat_ifreq __user
*u_ifreq32
)
2989 struct ifreq __user
*u_ifreq64
;
2990 char tmp_buf
[IFNAMSIZ
];
2991 void __user
*data64
;
2994 if (copy_from_user(&tmp_buf
[0], &(u_ifreq32
->ifr_ifrn
.ifrn_name
[0]),
2997 if (__get_user(data32
, &u_ifreq32
->ifr_ifru
.ifru_data
))
2999 data64
= compat_ptr(data32
);
3001 u_ifreq64
= compat_alloc_user_space(sizeof(*u_ifreq64
));
3003 /* Don't check these user accesses, just let that get trapped
3004 * in the ioctl handler instead.
3006 if (copy_to_user(&u_ifreq64
->ifr_ifrn
.ifrn_name
[0], &tmp_buf
[0],
3009 if (__put_user(data64
, &u_ifreq64
->ifr_ifru
.ifru_data
))
3012 return dev_ioctl(net
, cmd
, u_ifreq64
);
3015 static int dev_ifsioc(struct net
*net
, struct socket
*sock
,
3016 unsigned int cmd
, struct compat_ifreq __user
*uifr32
)
3018 struct ifreq __user
*uifr
;
3021 uifr
= compat_alloc_user_space(sizeof(*uifr
));
3022 if (copy_in_user(uifr
, uifr32
, sizeof(*uifr32
)))
3025 err
= sock_do_ioctl(net
, sock
, cmd
, (unsigned long)uifr
);
3036 case SIOCGIFBRDADDR
:
3037 case SIOCGIFDSTADDR
:
3038 case SIOCGIFNETMASK
:
3043 if (copy_in_user(uifr32
, uifr
, sizeof(*uifr32
)))
3051 static int compat_sioc_ifmap(struct net
*net
, unsigned int cmd
,
3052 struct compat_ifreq __user
*uifr32
)
3055 struct compat_ifmap __user
*uifmap32
;
3056 mm_segment_t old_fs
;
3059 uifmap32
= &uifr32
->ifr_ifru
.ifru_map
;
3060 err
= copy_from_user(&ifr
, uifr32
, sizeof(ifr
.ifr_name
));
3061 err
|= __get_user(ifr
.ifr_map
.mem_start
, &uifmap32
->mem_start
);
3062 err
|= __get_user(ifr
.ifr_map
.mem_end
, &uifmap32
->mem_end
);
3063 err
|= __get_user(ifr
.ifr_map
.base_addr
, &uifmap32
->base_addr
);
3064 err
|= __get_user(ifr
.ifr_map
.irq
, &uifmap32
->irq
);
3065 err
|= __get_user(ifr
.ifr_map
.dma
, &uifmap32
->dma
);
3066 err
|= __get_user(ifr
.ifr_map
.port
, &uifmap32
->port
);
3072 err
= dev_ioctl(net
, cmd
, (void __user __force
*)&ifr
);
3075 if (cmd
== SIOCGIFMAP
&& !err
) {
3076 err
= copy_to_user(uifr32
, &ifr
, sizeof(ifr
.ifr_name
));
3077 err
|= __put_user(ifr
.ifr_map
.mem_start
, &uifmap32
->mem_start
);
3078 err
|= __put_user(ifr
.ifr_map
.mem_end
, &uifmap32
->mem_end
);
3079 err
|= __put_user(ifr
.ifr_map
.base_addr
, &uifmap32
->base_addr
);
3080 err
|= __put_user(ifr
.ifr_map
.irq
, &uifmap32
->irq
);
3081 err
|= __put_user(ifr
.ifr_map
.dma
, &uifmap32
->dma
);
3082 err
|= __put_user(ifr
.ifr_map
.port
, &uifmap32
->port
);
3089 static int compat_siocshwtstamp(struct net
*net
, struct compat_ifreq __user
*uifr32
)
3092 compat_uptr_t uptr32
;
3093 struct ifreq __user
*uifr
;
3095 uifr
= compat_alloc_user_space(sizeof(*uifr
));
3096 if (copy_in_user(uifr
, uifr32
, sizeof(struct compat_ifreq
)))
3099 if (get_user(uptr32
, &uifr32
->ifr_data
))
3102 uptr
= compat_ptr(uptr32
);
3104 if (put_user(uptr
, &uifr
->ifr_data
))
3107 return dev_ioctl(net
, SIOCSHWTSTAMP
, uifr
);
3112 struct sockaddr rt_dst
; /* target address */
3113 struct sockaddr rt_gateway
; /* gateway addr (RTF_GATEWAY) */
3114 struct sockaddr rt_genmask
; /* target network mask (IP) */
3115 unsigned short rt_flags
;
3118 unsigned char rt_tos
;
3119 unsigned char rt_class
;
3121 short rt_metric
; /* +1 for binary compatibility! */
3122 /* char * */ u32 rt_dev
; /* forcing the device at add */
3123 u32 rt_mtu
; /* per route MTU/Window */
3124 u32 rt_window
; /* Window clamping */
3125 unsigned short rt_irtt
; /* Initial RTT */
3128 struct in6_rtmsg32
{
3129 struct in6_addr rtmsg_dst
;
3130 struct in6_addr rtmsg_src
;
3131 struct in6_addr rtmsg_gateway
;
3141 static int routing_ioctl(struct net
*net
, struct socket
*sock
,
3142 unsigned int cmd
, void __user
*argp
)
3146 struct in6_rtmsg r6
;
3150 mm_segment_t old_fs
= get_fs();
3152 if (sock
&& sock
->sk
&& sock
->sk
->sk_family
== AF_INET6
) { /* ipv6 */
3153 struct in6_rtmsg32 __user
*ur6
= argp
;
3154 ret
= copy_from_user(&r6
.rtmsg_dst
, &(ur6
->rtmsg_dst
),
3155 3 * sizeof(struct in6_addr
));
3156 ret
|= __get_user(r6
.rtmsg_type
, &(ur6
->rtmsg_type
));
3157 ret
|= __get_user(r6
.rtmsg_dst_len
, &(ur6
->rtmsg_dst_len
));
3158 ret
|= __get_user(r6
.rtmsg_src_len
, &(ur6
->rtmsg_src_len
));
3159 ret
|= __get_user(r6
.rtmsg_metric
, &(ur6
->rtmsg_metric
));
3160 ret
|= __get_user(r6
.rtmsg_info
, &(ur6
->rtmsg_info
));
3161 ret
|= __get_user(r6
.rtmsg_flags
, &(ur6
->rtmsg_flags
));
3162 ret
|= __get_user(r6
.rtmsg_ifindex
, &(ur6
->rtmsg_ifindex
));
3166 struct rtentry32 __user
*ur4
= argp
;
3167 ret
= copy_from_user(&r4
.rt_dst
, &(ur4
->rt_dst
),
3168 3 * sizeof(struct sockaddr
));
3169 ret
|= __get_user(r4
.rt_flags
, &(ur4
->rt_flags
));
3170 ret
|= __get_user(r4
.rt_metric
, &(ur4
->rt_metric
));
3171 ret
|= __get_user(r4
.rt_mtu
, &(ur4
->rt_mtu
));
3172 ret
|= __get_user(r4
.rt_window
, &(ur4
->rt_window
));
3173 ret
|= __get_user(r4
.rt_irtt
, &(ur4
->rt_irtt
));
3174 ret
|= __get_user(rtdev
, &(ur4
->rt_dev
));
3176 ret
|= copy_from_user(devname
, compat_ptr(rtdev
), 15);
3177 r4
.rt_dev
= (char __user __force
*)devname
;
3191 ret
= sock_do_ioctl(net
, sock
, cmd
, (unsigned long) r
);
3198 /* Since old style bridge ioctl's endup using SIOCDEVPRIVATE
3199 * for some operations; this forces use of the newer bridge-utils that
3200 * use compatible ioctls
3202 static int old_bridge_ioctl(compat_ulong_t __user
*argp
)
3206 if (get_user(tmp
, argp
))
3208 if (tmp
== BRCTL_GET_VERSION
)
3209 return BRCTL_VERSION
+ 1;
3213 static int compat_sock_ioctl_trans(struct file
*file
, struct socket
*sock
,
3214 unsigned int cmd
, unsigned long arg
)
3216 void __user
*argp
= compat_ptr(arg
);
3217 struct sock
*sk
= sock
->sk
;
3218 struct net
*net
= sock_net(sk
);
3220 if (cmd
>= SIOCDEVPRIVATE
&& cmd
<= (SIOCDEVPRIVATE
+ 15))
3221 return siocdevprivate_ioctl(net
, cmd
, argp
);
3226 return old_bridge_ioctl(argp
);
3228 return dev_ifname32(net
, argp
);
3230 return dev_ifconf(net
, argp
);
3232 return ethtool_ioctl(net
, argp
);
3234 return compat_siocwandev(net
, argp
);
3237 return compat_sioc_ifmap(net
, cmd
, argp
);
3238 case SIOCBONDENSLAVE
:
3239 case SIOCBONDRELEASE
:
3240 case SIOCBONDSETHWADDR
:
3241 case SIOCBONDSLAVEINFOQUERY
:
3242 case SIOCBONDINFOQUERY
:
3243 case SIOCBONDCHANGEACTIVE
:
3244 return bond_ioctl(net
, cmd
, argp
);
3247 return routing_ioctl(net
, sock
, cmd
, argp
);
3249 return do_siocgstamp(net
, sock
, cmd
, argp
);
3251 return do_siocgstampns(net
, sock
, cmd
, argp
);
3253 return compat_siocshwtstamp(net
, argp
);
3265 return sock_ioctl(file
, cmd
, arg
);
3282 case SIOCSIFHWBROADCAST
:
3284 case SIOCGIFBRDADDR
:
3285 case SIOCSIFBRDADDR
:
3286 case SIOCGIFDSTADDR
:
3287 case SIOCSIFDSTADDR
:
3288 case SIOCGIFNETMASK
:
3289 case SIOCSIFNETMASK
:
3300 return dev_ifsioc(net
, sock
, cmd
, argp
);
3306 return sock_do_ioctl(net
, sock
, cmd
, arg
);
3309 return -ENOIOCTLCMD
;
3312 static long compat_sock_ioctl(struct file
*file
, unsigned int cmd
,
3315 struct socket
*sock
= file
->private_data
;
3316 int ret
= -ENOIOCTLCMD
;
3323 if (sock
->ops
->compat_ioctl
)
3324 ret
= sock
->ops
->compat_ioctl(sock
, cmd
, arg
);
3326 if (ret
== -ENOIOCTLCMD
&&
3327 (cmd
>= SIOCIWFIRST
&& cmd
<= SIOCIWLAST
))
3328 ret
= compat_wext_handle_ioctl(net
, cmd
, arg
);
3330 if (ret
== -ENOIOCTLCMD
)
3331 ret
= compat_sock_ioctl_trans(file
, sock
, cmd
, arg
);
3337 int kernel_bind(struct socket
*sock
, struct sockaddr
*addr
, int addrlen
)
3339 return sock
->ops
->bind(sock
, addr
, addrlen
);
3341 EXPORT_SYMBOL(kernel_bind
);
3343 int kernel_listen(struct socket
*sock
, int backlog
)
3345 return sock
->ops
->listen(sock
, backlog
);
3347 EXPORT_SYMBOL(kernel_listen
);
3349 int kernel_accept(struct socket
*sock
, struct socket
**newsock
, int flags
)
3351 struct sock
*sk
= sock
->sk
;
3354 err
= sock_create_lite(sk
->sk_family
, sk
->sk_type
, sk
->sk_protocol
,
3359 err
= sock
->ops
->accept(sock
, *newsock
, flags
);
3361 sock_release(*newsock
);
3366 (*newsock
)->ops
= sock
->ops
;
3367 __module_get((*newsock
)->ops
->owner
);
3372 EXPORT_SYMBOL(kernel_accept
);
3374 int kernel_connect(struct socket
*sock
, struct sockaddr
*addr
, int addrlen
,
3377 return sock
->ops
->connect(sock
, addr
, addrlen
, flags
);
3379 EXPORT_SYMBOL(kernel_connect
);
3381 int kernel_getsockname(struct socket
*sock
, struct sockaddr
*addr
,
3384 return sock
->ops
->getname(sock
, addr
, addrlen
, 0);
3386 EXPORT_SYMBOL(kernel_getsockname
);
3388 int kernel_getpeername(struct socket
*sock
, struct sockaddr
*addr
,
3391 return sock
->ops
->getname(sock
, addr
, addrlen
, 1);
3393 EXPORT_SYMBOL(kernel_getpeername
);
3395 int kernel_getsockopt(struct socket
*sock
, int level
, int optname
,
3396 char *optval
, int *optlen
)
3398 mm_segment_t oldfs
= get_fs();
3399 char __user
*uoptval
;
3400 int __user
*uoptlen
;
3403 uoptval
= (char __user __force
*) optval
;
3404 uoptlen
= (int __user __force
*) optlen
;
3407 if (level
== SOL_SOCKET
)
3408 err
= sock_getsockopt(sock
, level
, optname
, uoptval
, uoptlen
);
3410 err
= sock
->ops
->getsockopt(sock
, level
, optname
, uoptval
,
3415 EXPORT_SYMBOL(kernel_getsockopt
);
3417 int kernel_setsockopt(struct socket
*sock
, int level
, int optname
,
3418 char *optval
, unsigned int optlen
)
3420 mm_segment_t oldfs
= get_fs();
3421 char __user
*uoptval
;
3424 uoptval
= (char __user __force
*) optval
;
3427 if (level
== SOL_SOCKET
)
3428 err
= sock_setsockopt(sock
, level
, optname
, uoptval
, optlen
);
3430 err
= sock
->ops
->setsockopt(sock
, level
, optname
, uoptval
,
3435 EXPORT_SYMBOL(kernel_setsockopt
);
3437 int kernel_sendpage(struct socket
*sock
, struct page
*page
, int offset
,
3438 size_t size
, int flags
)
3440 sock_update_classid(sock
->sk
);
3442 if (sock
->ops
->sendpage
)
3443 return sock
->ops
->sendpage(sock
, page
, offset
, size
, flags
);
3445 return sock_no_sendpage(sock
, page
, offset
, size
, flags
);
3447 EXPORT_SYMBOL(kernel_sendpage
);
3449 int kernel_sock_ioctl(struct socket
*sock
, int cmd
, unsigned long arg
)
3451 mm_segment_t oldfs
= get_fs();
3455 err
= sock
->ops
->ioctl(sock
, cmd
, arg
);
3460 EXPORT_SYMBOL(kernel_sock_ioctl
);
3462 int kernel_sock_shutdown(struct socket
*sock
, enum sock_shutdown_cmd how
)
3464 return sock
->ops
->shutdown(sock
, how
);
3466 EXPORT_SYMBOL(kernel_sock_shutdown
);