1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * NET An implementation of the SOCKET network access protocol.
5 * Version: @(#)socket.c 1.1.93 18/02/95
7 * Authors: Orest Zborowski, <obz@Kodak.COM>
9 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
12 * Anonymous : NOTSOCK/BADF cleanup. Error fix in
14 * Alan Cox : verify_area() fixes
15 * Alan Cox : Removed DDI
16 * Jonathan Kamens : SOCK_DGRAM reconnect bug
17 * Alan Cox : Moved a load of checks to the very
19 * Alan Cox : Move address structures to/from user
20 * mode above the protocol layers.
21 * Rob Janssen : Allow 0 length sends.
22 * Alan Cox : Asynchronous I/O support (cribbed from the
24 * Niibe Yutaka : Asynchronous I/O for writes (4.4BSD style)
25 * Jeff Uphoff : Made max number of sockets command-line
27 * Matti Aarnio : Made the number of sockets dynamic,
28 * to be allocated when needed, and mr.
29 * Uphoff's max is used as max to be
30 * allowed to allocate.
31 * Linus : Argh. removed all the socket allocation
32 * altogether: it's in the inode now.
33 * Alan Cox : Made sock_alloc()/sock_release() public
34 * for NetROM and future kernel nfsd type
36 * Alan Cox : sendmsg/recvmsg basics.
37 * Tom Dyas : Export net symbols.
38 * Marcin Dalecki : Fixed problems with CONFIG_NET="n".
39 * Alan Cox : Added thread locking to sys_* calls
40 * for sockets. May have errors at the
42 * Kevin Buhr : Fixed the dumb errors in the above.
43 * Andi Kleen : Some small cleanups, optimizations,
44 * and fixed a copy_from_user() bug.
45 * Tigran Aivazian : sys_send(args) calls sys_sendto(args, NULL, 0)
46 * Tigran Aivazian : Made listen(2) backlog sanity checks
47 * protocol-independent
49 * This module is effectively the top level interface to the BSD socket
52 * Based upon Swansea University Computer Society NET3.039
55 #include <linux/ethtool.h>
57 #include <linux/socket.h>
58 #include <linux/file.h>
59 #include <linux/net.h>
60 #include <linux/interrupt.h>
61 #include <linux/thread_info.h>
62 #include <linux/rcupdate.h>
63 #include <linux/netdevice.h>
64 #include <linux/proc_fs.h>
65 #include <linux/seq_file.h>
66 #include <linux/mutex.h>
67 #include <linux/if_bridge.h>
68 #include <linux/if_vlan.h>
69 #include <linux/ptp_classify.h>
70 #include <linux/init.h>
71 #include <linux/poll.h>
72 #include <linux/cache.h>
73 #include <linux/module.h>
74 #include <linux/highmem.h>
75 #include <linux/mount.h>
76 #include <linux/pseudo_fs.h>
77 #include <linux/security.h>
78 #include <linux/syscalls.h>
79 #include <linux/compat.h>
80 #include <linux/kmod.h>
81 #include <linux/audit.h>
82 #include <linux/wireless.h>
83 #include <linux/nsproxy.h>
84 #include <linux/magic.h>
85 #include <linux/slab.h>
86 #include <linux/xattr.h>
87 #include <linux/nospec.h>
88 #include <linux/indirect_call_wrapper.h>
90 #include <linux/uaccess.h>
91 #include <asm/unistd.h>
93 #include <net/compat.h>
95 #include <net/cls_cgroup.h>
98 #include <linux/netfilter.h>
100 #include <linux/if_tun.h>
101 #include <linux/ipv6_route.h>
102 #include <linux/route.h>
103 #include <linux/termios.h>
104 #include <linux/sockios.h>
105 #include <net/busy_poll.h>
106 #include <linux/errqueue.h>
107 #include <linux/ptp_clock_kernel.h>
109 #ifdef CONFIG_NET_RX_BUSY_POLL
110 unsigned int sysctl_net_busy_read __read_mostly;
111 unsigned int sysctl_net_busy_poll __read_mostly;
114 static ssize_t sock_read_iter(struct kiocb *iocb, struct iov_iter *to);
115 static ssize_t sock_write_iter(struct kiocb *iocb, struct iov_iter *from);
116 static int sock_mmap(struct file *file, struct vm_area_struct *vma);
118 static int sock_close(struct inode *inode, struct file *file);
119 static __poll_t sock_poll(struct file *file,
120 struct poll_table_struct *wait);
121 static long sock_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
123 static long compat_sock_ioctl(struct file *file,
124 unsigned int cmd, unsigned long arg);
126 static int sock_fasync(int fd, struct file *filp, int on);
127 static ssize_t sock_sendpage(struct file *file, struct page *page,
128 int offset, size_t size, loff_t *ppos, int more);
129 static ssize_t sock_splice_read(struct file *file, loff_t *ppos,
130 struct pipe_inode_info *pipe, size_t len,
133 #ifdef CONFIG_PROC_FS
134 static void sock_show_fdinfo(struct seq_file *m, struct file *f)
136 struct socket *sock = f->private_data;
138 if (sock->ops->show_fdinfo)
139 sock->ops->show_fdinfo(m, sock);
142 #define sock_show_fdinfo NULL
146 * Socket files have a set of 'special' operations as well as the generic file ones. These don't appear
147 * in the operation structures but are done directly via the socketcall() multiplexor.
150 static const struct file_operations socket_file_ops = {
151 .owner = THIS_MODULE,
153 .read_iter = sock_read_iter,
154 .write_iter = sock_write_iter,
156 .unlocked_ioctl = sock_ioctl,
158 .compat_ioctl = compat_sock_ioctl,
161 .release = sock_close,
162 .fasync = sock_fasync,
163 .sendpage = sock_sendpage,
164 .splice_write = generic_splice_sendpage,
165 .splice_read = sock_splice_read,
166 .show_fdinfo = sock_show_fdinfo,
169 static const char * const pf_family_names[] = {
170 [PF_UNSPEC] = "PF_UNSPEC",
171 [PF_UNIX] = "PF_UNIX/PF_LOCAL",
172 [PF_INET] = "PF_INET",
173 [PF_AX25] = "PF_AX25",
175 [PF_APPLETALK] = "PF_APPLETALK",
176 [PF_NETROM] = "PF_NETROM",
177 [PF_BRIDGE] = "PF_BRIDGE",
178 [PF_ATMPVC] = "PF_ATMPVC",
180 [PF_INET6] = "PF_INET6",
181 [PF_ROSE] = "PF_ROSE",
182 [PF_DECnet] = "PF_DECnet",
183 [PF_NETBEUI] = "PF_NETBEUI",
184 [PF_SECURITY] = "PF_SECURITY",
186 [PF_NETLINK] = "PF_NETLINK/PF_ROUTE",
187 [PF_PACKET] = "PF_PACKET",
189 [PF_ECONET] = "PF_ECONET",
190 [PF_ATMSVC] = "PF_ATMSVC",
193 [PF_IRDA] = "PF_IRDA",
194 [PF_PPPOX] = "PF_PPPOX",
195 [PF_WANPIPE] = "PF_WANPIPE",
198 [PF_MPLS] = "PF_MPLS",
200 [PF_TIPC] = "PF_TIPC",
201 [PF_BLUETOOTH] = "PF_BLUETOOTH",
202 [PF_IUCV] = "PF_IUCV",
203 [PF_RXRPC] = "PF_RXRPC",
204 [PF_ISDN] = "PF_ISDN",
205 [PF_PHONET] = "PF_PHONET",
206 [PF_IEEE802154] = "PF_IEEE802154",
207 [PF_CAIF] = "PF_CAIF",
210 [PF_VSOCK] = "PF_VSOCK",
212 [PF_QIPCRTR] = "PF_QIPCRTR",
215 [PF_MCTP] = "PF_MCTP",
219 * The protocol list. Each protocol is registered in here.
222 static DEFINE_SPINLOCK(net_family_lock);
223 static const struct net_proto_family __rcu *net_families[NPROTO] __read_mostly;
227 * Move socket addresses back and forth across the kernel/user
228 * divide and look after the messy bits.
232 * move_addr_to_kernel - copy a socket address into kernel space
233 * @uaddr: Address in user space
234 * @kaddr: Address in kernel space
235 * @ulen: Length in user space
237 * The address is copied into kernel space. If the provided address is
238 * too long an error code of -EINVAL is returned. If the copy gives
239 * invalid addresses -EFAULT is returned. On a success 0 is returned.
242 int move_addr_to_kernel(void __user *uaddr, int ulen, struct sockaddr_storage *kaddr)
244 if (ulen < 0 || ulen > sizeof(struct sockaddr_storage))
248 if (copy_from_user(kaddr, uaddr, ulen))
250 return audit_sockaddr(ulen, kaddr);
254 * move_addr_to_user - copy an address to user space
255 * @kaddr: kernel space address
256 * @klen: length of address in kernel
257 * @uaddr: user space address
258 * @ulen: pointer to user length field
260 * The value pointed to by ulen on entry is the buffer length available.
261 * This is overwritten with the buffer space used. -EINVAL is returned
262 * if an overlong buffer is specified or a negative buffer size. -EFAULT
263 * is returned if either the buffer or the length field are not
265 * After copying the data up to the limit the user specifies, the true
266 * length of the data is written over the length limit the user
267 * specified. Zero is returned for a success.
270 static int move_addr_to_user(struct sockaddr_storage *kaddr, int klen,
271 void __user *uaddr, int __user *ulen)
276 BUG_ON(klen > sizeof(struct sockaddr_storage));
277 err = get_user(len, ulen);
285 if (audit_sockaddr(klen, kaddr))
287 if (copy_to_user(uaddr, kaddr, len))
291 * "fromlen shall refer to the value before truncation.."
294 return __put_user(klen, ulen);
297 static struct kmem_cache *sock_inode_cachep __ro_after_init;
299 static struct inode *sock_alloc_inode(struct super_block *sb)
301 struct socket_alloc *ei;
303 ei = kmem_cache_alloc(sock_inode_cachep, GFP_KERNEL);
306 init_waitqueue_head(&ei->socket.wq.wait);
307 ei->socket.wq.fasync_list = NULL;
308 ei->socket.wq.flags = 0;
310 ei->socket.state = SS_UNCONNECTED;
311 ei->socket.flags = 0;
312 ei->socket.ops = NULL;
313 ei->socket.sk = NULL;
314 ei->socket.file = NULL;
316 return &ei->vfs_inode;
319 static void sock_free_inode(struct inode *inode)
321 struct socket_alloc *ei;
323 ei = container_of(inode, struct socket_alloc, vfs_inode);
324 kmem_cache_free(sock_inode_cachep, ei);
327 static void init_once(void *foo)
329 struct socket_alloc *ei = (struct socket_alloc *)foo;
331 inode_init_once(&ei->vfs_inode);
334 static void init_inodecache(void)
336 sock_inode_cachep = kmem_cache_create("sock_inode_cache",
337 sizeof(struct socket_alloc),
339 (SLAB_HWCACHE_ALIGN |
340 SLAB_RECLAIM_ACCOUNT |
341 SLAB_MEM_SPREAD | SLAB_ACCOUNT),
343 BUG_ON(sock_inode_cachep == NULL);
346 static const struct super_operations sockfs_ops = {
347 .alloc_inode = sock_alloc_inode,
348 .free_inode = sock_free_inode,
349 .statfs = simple_statfs,
353 * sockfs_dname() is called from d_path().
355 static char *sockfs_dname(struct dentry *dentry, char *buffer, int buflen)
357 return dynamic_dname(dentry, buffer, buflen, "socket:[%lu]",
358 d_inode(dentry)->i_ino);
361 static const struct dentry_operations sockfs_dentry_operations = {
362 .d_dname = sockfs_dname,
365 static int sockfs_xattr_get(const struct xattr_handler *handler,
366 struct dentry *dentry, struct inode *inode,
367 const char *suffix, void *value, size_t size)
370 if (dentry->d_name.len + 1 > size)
372 memcpy(value, dentry->d_name.name, dentry->d_name.len + 1);
374 return dentry->d_name.len + 1;
377 #define XATTR_SOCKPROTONAME_SUFFIX "sockprotoname"
378 #define XATTR_NAME_SOCKPROTONAME (XATTR_SYSTEM_PREFIX XATTR_SOCKPROTONAME_SUFFIX)
379 #define XATTR_NAME_SOCKPROTONAME_LEN (sizeof(XATTR_NAME_SOCKPROTONAME)-1)
381 static const struct xattr_handler sockfs_xattr_handler = {
382 .name = XATTR_NAME_SOCKPROTONAME,
383 .get = sockfs_xattr_get,
386 static int sockfs_security_xattr_set(const struct xattr_handler *handler,
387 struct user_namespace *mnt_userns,
388 struct dentry *dentry, struct inode *inode,
389 const char *suffix, const void *value,
390 size_t size, int flags)
392 /* Handled by LSM. */
396 static const struct xattr_handler sockfs_security_xattr_handler = {
397 .prefix = XATTR_SECURITY_PREFIX,
398 .set = sockfs_security_xattr_set,
401 static const struct xattr_handler *sockfs_xattr_handlers[] = {
402 &sockfs_xattr_handler,
403 &sockfs_security_xattr_handler,
407 static int sockfs_init_fs_context(struct fs_context *fc)
409 struct pseudo_fs_context *ctx = init_pseudo(fc, SOCKFS_MAGIC);
412 ctx->ops = &sockfs_ops;
413 ctx->dops = &sockfs_dentry_operations;
414 ctx->xattr = sockfs_xattr_handlers;
418 static struct vfsmount *sock_mnt __read_mostly;
420 static struct file_system_type sock_fs_type = {
422 .init_fs_context = sockfs_init_fs_context,
423 .kill_sb = kill_anon_super,
427 * Obtains the first available file descriptor and sets it up for use.
429 * These functions create file structures and maps them to fd space
430 * of the current process. On success it returns file descriptor
431 * and file struct implicitly stored in sock->file.
432 * Note that another thread may close file descriptor before we return
433 * from this function. We use the fact that now we do not refer
434 * to socket after mapping. If one day we will need it, this
435 * function will increment ref. count on file by 1.
437 * In any case returned fd MAY BE not valid!
438 * This race condition is unavoidable
439 * with shared fd spaces, we cannot solve it inside kernel,
440 * but we take care of internal coherence yet.
444 * sock_alloc_file - Bind a &socket to a &file
446 * @flags: file status flags
447 * @dname: protocol name
449 * Returns the &file bound with @sock, implicitly storing it
450 * in sock->file. If dname is %NULL, sets to "".
451 * On failure the return is a ERR pointer (see linux/err.h).
452 * This function uses GFP_KERNEL internally.
455 struct file *sock_alloc_file(struct socket *sock, int flags, const char *dname)
460 dname = sock->sk ? sock->sk->sk_prot_creator->name : "";
462 file = alloc_file_pseudo(SOCK_INODE(sock), sock_mnt, dname,
463 O_RDWR | (flags & O_NONBLOCK),
471 file->private_data = sock;
472 stream_open(SOCK_INODE(sock), file);
475 EXPORT_SYMBOL(sock_alloc_file);
477 static int sock_map_fd(struct socket *sock, int flags)
479 struct file *newfile;
480 int fd = get_unused_fd_flags(flags);
481 if (unlikely(fd < 0)) {
486 newfile = sock_alloc_file(sock, flags, NULL);
487 if (!IS_ERR(newfile)) {
488 fd_install(fd, newfile);
493 return PTR_ERR(newfile);
497 * sock_from_file - Return the &socket bounded to @file.
500 * On failure returns %NULL.
503 struct socket *sock_from_file(struct file *file)
505 if (file->f_op == &socket_file_ops)
506 return file->private_data; /* set in sock_map_fd */
510 EXPORT_SYMBOL(sock_from_file);
513 * sockfd_lookup - Go from a file number to its socket slot
515 * @err: pointer to an error code return
517 * The file handle passed in is locked and the socket it is bound
518 * to is returned. If an error occurs the err pointer is overwritten
519 * with a negative errno code and NULL is returned. The function checks
520 * for both invalid handles and passing a handle which is not a socket.
522 * On a success the socket object pointer is returned.
525 struct socket *sockfd_lookup(int fd, int *err)
536 sock = sock_from_file(file);
543 EXPORT_SYMBOL(sockfd_lookup);
545 static struct socket *sockfd_lookup_light(int fd, int *err, int *fput_needed)
547 struct fd f = fdget(fd);
552 sock = sock_from_file(f.file);
554 *fput_needed = f.flags & FDPUT_FPUT;
563 static ssize_t sockfs_listxattr(struct dentry *dentry, char *buffer,
569 len = security_inode_listsecurity(d_inode(dentry), buffer, size);
579 len = (XATTR_NAME_SOCKPROTONAME_LEN + 1);
584 memcpy(buffer, XATTR_NAME_SOCKPROTONAME, len);
591 static int sockfs_setattr(struct user_namespace *mnt_userns,
592 struct dentry *dentry, struct iattr *iattr)
594 int err = simple_setattr(&init_user_ns, dentry, iattr);
596 if (!err && (iattr->ia_valid & ATTR_UID)) {
597 struct socket *sock = SOCKET_I(d_inode(dentry));
600 sock->sk->sk_uid = iattr->ia_uid;
608 static const struct inode_operations sockfs_inode_ops = {
609 .listxattr = sockfs_listxattr,
610 .setattr = sockfs_setattr,
614 * sock_alloc - allocate a socket
616 * Allocate a new inode and socket object. The two are bound together
617 * and initialised. The socket is then returned. If we are out of inodes
618 * NULL is returned. This functions uses GFP_KERNEL internally.
621 struct socket *sock_alloc(void)
626 inode = new_inode_pseudo(sock_mnt->mnt_sb);
630 sock = SOCKET_I(inode);
632 inode->i_ino = get_next_ino();
633 inode->i_mode = S_IFSOCK | S_IRWXUGO;
634 inode->i_uid = current_fsuid();
635 inode->i_gid = current_fsgid();
636 inode->i_op = &sockfs_inode_ops;
640 EXPORT_SYMBOL(sock_alloc);
642 static void __sock_release(struct socket *sock, struct inode *inode)
645 struct module *owner = sock->ops->owner;
649 sock->ops->release(sock);
657 if (sock->wq.fasync_list)
658 pr_err("%s: fasync list not empty!\n", __func__);
661 iput(SOCK_INODE(sock));
668 * sock_release - close a socket
669 * @sock: socket to close
671 * The socket is released from the protocol stack if it has a release
672 * callback, and the inode is then released if the socket is bound to
673 * an inode not a file.
675 void sock_release(struct socket *sock)
677 __sock_release(sock, NULL);
679 EXPORT_SYMBOL(sock_release);
681 void __sock_tx_timestamp(__u16 tsflags, __u8 *tx_flags)
683 u8 flags = *tx_flags;
685 if (tsflags & SOF_TIMESTAMPING_TX_HARDWARE)
686 flags |= SKBTX_HW_TSTAMP;
688 if (tsflags & SOF_TIMESTAMPING_TX_SOFTWARE)
689 flags |= SKBTX_SW_TSTAMP;
691 if (tsflags & SOF_TIMESTAMPING_TX_SCHED)
692 flags |= SKBTX_SCHED_TSTAMP;
696 EXPORT_SYMBOL(__sock_tx_timestamp);
698 INDIRECT_CALLABLE_DECLARE(int inet_sendmsg(struct socket *, struct msghdr *,
700 INDIRECT_CALLABLE_DECLARE(int inet6_sendmsg(struct socket *, struct msghdr *,
702 static inline int sock_sendmsg_nosec(struct socket *sock, struct msghdr *msg)
704 int ret = INDIRECT_CALL_INET(sock->ops->sendmsg, inet6_sendmsg,
705 inet_sendmsg, sock, msg,
707 BUG_ON(ret == -EIOCBQUEUED);
712 * sock_sendmsg - send a message through @sock
714 * @msg: message to send
716 * Sends @msg through @sock, passing through LSM.
717 * Returns the number of bytes sent, or an error code.
719 int sock_sendmsg(struct socket *sock, struct msghdr *msg)
721 int err = security_socket_sendmsg(sock, msg,
724 return err ?: sock_sendmsg_nosec(sock, msg);
726 EXPORT_SYMBOL(sock_sendmsg);
729 * kernel_sendmsg - send a message through @sock (kernel-space)
731 * @msg: message header
733 * @num: vec array length
734 * @size: total message data size
736 * Builds the message data with @vec and sends it through @sock.
737 * Returns the number of bytes sent, or an error code.
740 int kernel_sendmsg(struct socket *sock, struct msghdr *msg,
741 struct kvec *vec, size_t num, size_t size)
743 iov_iter_kvec(&msg->msg_iter, WRITE, vec, num, size);
744 return sock_sendmsg(sock, msg);
746 EXPORT_SYMBOL(kernel_sendmsg);
749 * kernel_sendmsg_locked - send a message through @sock (kernel-space)
751 * @msg: message header
752 * @vec: output s/g array
753 * @num: output s/g array length
754 * @size: total message data size
756 * Builds the message data with @vec and sends it through @sock.
757 * Returns the number of bytes sent, or an error code.
758 * Caller must hold @sk.
761 int kernel_sendmsg_locked(struct sock *sk, struct msghdr *msg,
762 struct kvec *vec, size_t num, size_t size)
764 struct socket *sock = sk->sk_socket;
766 if (!sock->ops->sendmsg_locked)
767 return sock_no_sendmsg_locked(sk, msg, size);
769 iov_iter_kvec(&msg->msg_iter, WRITE, vec, num, size);
771 return sock->ops->sendmsg_locked(sk, msg, msg_data_left(msg));
773 EXPORT_SYMBOL(kernel_sendmsg_locked);
775 static bool skb_is_err_queue(const struct sk_buff *skb)
777 /* pkt_type of skbs enqueued on the error queue are set to
778 * PACKET_OUTGOING in skb_set_err_queue(). This is only safe to do
779 * in recvmsg, since skbs received on a local socket will never
780 * have a pkt_type of PACKET_OUTGOING.
782 return skb->pkt_type == PACKET_OUTGOING;
785 /* On transmit, software and hardware timestamps are returned independently.
786 * As the two skb clones share the hardware timestamp, which may be updated
787 * before the software timestamp is received, a hardware TX timestamp may be
788 * returned only if there is no software TX timestamp. Ignore false software
789 * timestamps, which may be made in the __sock_recv_timestamp() call when the
790 * option SO_TIMESTAMP_OLD(NS) is enabled on the socket, even when the skb has a
791 * hardware timestamp.
793 static bool skb_is_swtx_tstamp(const struct sk_buff *skb, int false_tstamp)
795 return skb->tstamp && !false_tstamp && skb_is_err_queue(skb);
798 static void put_ts_pktinfo(struct msghdr *msg, struct sk_buff *skb)
800 struct scm_ts_pktinfo ts_pktinfo;
801 struct net_device *orig_dev;
803 if (!skb_mac_header_was_set(skb))
806 memset(&ts_pktinfo, 0, sizeof(ts_pktinfo));
809 orig_dev = dev_get_by_napi_id(skb_napi_id(skb));
811 ts_pktinfo.if_index = orig_dev->ifindex;
814 ts_pktinfo.pkt_length = skb->len - skb_mac_offset(skb);
815 put_cmsg(msg, SOL_SOCKET, SCM_TIMESTAMPING_PKTINFO,
816 sizeof(ts_pktinfo), &ts_pktinfo);
820 * called from sock_recv_timestamp() if sock_flag(sk, SOCK_RCVTSTAMP)
822 void __sock_recv_timestamp(struct msghdr *msg, struct sock *sk,
825 int need_software_tstamp = sock_flag(sk, SOCK_RCVTSTAMP);
826 int new_tstamp = sock_flag(sk, SOCK_TSTAMP_NEW);
827 struct scm_timestamping_internal tss;
829 int empty = 1, false_tstamp = 0;
830 struct skb_shared_hwtstamps *shhwtstamps =
834 /* Race occurred between timestamp enabling and packet
835 receiving. Fill in the current time for now. */
836 if (need_software_tstamp && skb->tstamp == 0) {
837 __net_timestamp(skb);
841 if (need_software_tstamp) {
842 if (!sock_flag(sk, SOCK_RCVTSTAMPNS)) {
844 struct __kernel_sock_timeval tv;
846 skb_get_new_timestamp(skb, &tv);
847 put_cmsg(msg, SOL_SOCKET, SO_TIMESTAMP_NEW,
850 struct __kernel_old_timeval tv;
852 skb_get_timestamp(skb, &tv);
853 put_cmsg(msg, SOL_SOCKET, SO_TIMESTAMP_OLD,
858 struct __kernel_timespec ts;
860 skb_get_new_timestampns(skb, &ts);
861 put_cmsg(msg, SOL_SOCKET, SO_TIMESTAMPNS_NEW,
864 struct __kernel_old_timespec ts;
866 skb_get_timestampns(skb, &ts);
867 put_cmsg(msg, SOL_SOCKET, SO_TIMESTAMPNS_OLD,
873 memset(&tss, 0, sizeof(tss));
874 if ((sk->sk_tsflags & SOF_TIMESTAMPING_SOFTWARE) &&
875 ktime_to_timespec64_cond(skb->tstamp, tss.ts + 0))
878 (sk->sk_tsflags & SOF_TIMESTAMPING_RAW_HARDWARE) &&
879 !skb_is_swtx_tstamp(skb, false_tstamp)) {
880 if (sk->sk_tsflags & SOF_TIMESTAMPING_BIND_PHC)
881 hwtstamp = ptp_convert_timestamp(shhwtstamps,
884 hwtstamp = shhwtstamps->hwtstamp;
886 if (ktime_to_timespec64_cond(hwtstamp, tss.ts + 2)) {
889 if ((sk->sk_tsflags & SOF_TIMESTAMPING_OPT_PKTINFO) &&
890 !skb_is_err_queue(skb))
891 put_ts_pktinfo(msg, skb);
895 if (sock_flag(sk, SOCK_TSTAMP_NEW))
896 put_cmsg_scm_timestamping64(msg, &tss);
898 put_cmsg_scm_timestamping(msg, &tss);
900 if (skb_is_err_queue(skb) && skb->len &&
901 SKB_EXT_ERR(skb)->opt_stats)
902 put_cmsg(msg, SOL_SOCKET, SCM_TIMESTAMPING_OPT_STATS,
903 skb->len, skb->data);
906 EXPORT_SYMBOL_GPL(__sock_recv_timestamp);
908 void __sock_recv_wifi_status(struct msghdr *msg, struct sock *sk,
913 if (!sock_flag(sk, SOCK_WIFI_STATUS))
915 if (!skb->wifi_acked_valid)
918 ack = skb->wifi_acked;
920 put_cmsg(msg, SOL_SOCKET, SCM_WIFI_STATUS, sizeof(ack), &ack);
922 EXPORT_SYMBOL_GPL(__sock_recv_wifi_status);
924 static inline void sock_recv_drops(struct msghdr *msg, struct sock *sk,
927 if (sock_flag(sk, SOCK_RXQ_OVFL) && skb && SOCK_SKB_CB(skb)->dropcount)
928 put_cmsg(msg, SOL_SOCKET, SO_RXQ_OVFL,
929 sizeof(__u32), &SOCK_SKB_CB(skb)->dropcount);
932 void __sock_recv_ts_and_drops(struct msghdr *msg, struct sock *sk,
935 sock_recv_timestamp(msg, sk, skb);
936 sock_recv_drops(msg, sk, skb);
938 EXPORT_SYMBOL_GPL(__sock_recv_ts_and_drops);
940 INDIRECT_CALLABLE_DECLARE(int inet_recvmsg(struct socket *, struct msghdr *,
942 INDIRECT_CALLABLE_DECLARE(int inet6_recvmsg(struct socket *, struct msghdr *,
944 static inline int sock_recvmsg_nosec(struct socket *sock, struct msghdr *msg,
947 return INDIRECT_CALL_INET(sock->ops->recvmsg, inet6_recvmsg,
948 inet_recvmsg, sock, msg, msg_data_left(msg),
953 * sock_recvmsg - receive a message from @sock
955 * @msg: message to receive
956 * @flags: message flags
958 * Receives @msg from @sock, passing through LSM. Returns the total number
959 * of bytes received, or an error.
961 int sock_recvmsg(struct socket *sock, struct msghdr *msg, int flags)
963 int err = security_socket_recvmsg(sock, msg, msg_data_left(msg), flags);
965 return err ?: sock_recvmsg_nosec(sock, msg, flags);
967 EXPORT_SYMBOL(sock_recvmsg);
970 * kernel_recvmsg - Receive a message from a socket (kernel space)
971 * @sock: The socket to receive the message from
972 * @msg: Received message
973 * @vec: Input s/g array for message data
974 * @num: Size of input s/g array
975 * @size: Number of bytes to read
976 * @flags: Message flags (MSG_DONTWAIT, etc...)
978 * On return the msg structure contains the scatter/gather array passed in the
979 * vec argument. The array is modified so that it consists of the unfilled
980 * portion of the original array.
982 * The returned value is the total number of bytes received, or an error.
985 int kernel_recvmsg(struct socket *sock, struct msghdr *msg,
986 struct kvec *vec, size_t num, size_t size, int flags)
988 msg->msg_control_is_user = false;
989 iov_iter_kvec(&msg->msg_iter, READ, vec, num, size);
990 return sock_recvmsg(sock, msg, flags);
992 EXPORT_SYMBOL(kernel_recvmsg);
994 static ssize_t sock_sendpage(struct file *file, struct page *page,
995 int offset, size_t size, loff_t *ppos, int more)
1000 sock = file->private_data;
1002 flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
1003 /* more is a combination of MSG_MORE and MSG_SENDPAGE_NOTLAST */
1006 return kernel_sendpage(sock, page, offset, size, flags);
1009 static ssize_t sock_splice_read(struct file *file, loff_t *ppos,
1010 struct pipe_inode_info *pipe, size_t len,
1013 struct socket *sock = file->private_data;
1015 if (unlikely(!sock->ops->splice_read))
1016 return generic_file_splice_read(file, ppos, pipe, len, flags);
1018 return sock->ops->splice_read(sock, ppos, pipe, len, flags);
1021 static ssize_t sock_read_iter(struct kiocb *iocb, struct iov_iter *to)
1023 struct file *file = iocb->ki_filp;
1024 struct socket *sock = file->private_data;
1025 struct msghdr msg = {.msg_iter = *to,
1029 if (file->f_flags & O_NONBLOCK || (iocb->ki_flags & IOCB_NOWAIT))
1030 msg.msg_flags = MSG_DONTWAIT;
1032 if (iocb->ki_pos != 0)
1035 if (!iov_iter_count(to)) /* Match SYS5 behaviour */
1038 res = sock_recvmsg(sock, &msg, msg.msg_flags);
1043 static ssize_t sock_write_iter(struct kiocb *iocb, struct iov_iter *from)
1045 struct file *file = iocb->ki_filp;
1046 struct socket *sock = file->private_data;
1047 struct msghdr msg = {.msg_iter = *from,
1051 if (iocb->ki_pos != 0)
1054 if (file->f_flags & O_NONBLOCK || (iocb->ki_flags & IOCB_NOWAIT))
1055 msg.msg_flags = MSG_DONTWAIT;
1057 if (sock->type == SOCK_SEQPACKET)
1058 msg.msg_flags |= MSG_EOR;
1060 res = sock_sendmsg(sock, &msg);
1061 *from = msg.msg_iter;
1066 * Atomic setting of ioctl hooks to avoid race
1067 * with module unload.
1070 static DEFINE_MUTEX(br_ioctl_mutex);
1071 static int (*br_ioctl_hook)(struct net *net, struct net_bridge *br,
1072 unsigned int cmd, struct ifreq *ifr,
1075 void brioctl_set(int (*hook)(struct net *net, struct net_bridge *br,
1076 unsigned int cmd, struct ifreq *ifr,
1079 mutex_lock(&br_ioctl_mutex);
1080 br_ioctl_hook = hook;
1081 mutex_unlock(&br_ioctl_mutex);
1083 EXPORT_SYMBOL(brioctl_set);
1085 int br_ioctl_call(struct net *net, struct net_bridge *br, unsigned int cmd,
1086 struct ifreq *ifr, void __user *uarg)
1091 request_module("bridge");
1093 mutex_lock(&br_ioctl_mutex);
1095 err = br_ioctl_hook(net, br, cmd, ifr, uarg);
1096 mutex_unlock(&br_ioctl_mutex);
1101 static DEFINE_MUTEX(vlan_ioctl_mutex);
1102 static int (*vlan_ioctl_hook) (struct net *, void __user *arg);
1104 void vlan_ioctl_set(int (*hook) (struct net *, void __user *))
1106 mutex_lock(&vlan_ioctl_mutex);
1107 vlan_ioctl_hook = hook;
1108 mutex_unlock(&vlan_ioctl_mutex);
1110 EXPORT_SYMBOL(vlan_ioctl_set);
1112 static long sock_do_ioctl(struct net *net, struct socket *sock,
1113 unsigned int cmd, unsigned long arg)
1118 void __user *argp = (void __user *)arg;
1121 err = sock->ops->ioctl(sock, cmd, arg);
1124 * If this ioctl is unknown try to hand it down
1125 * to the NIC driver.
1127 if (err != -ENOIOCTLCMD)
1130 if (!is_socket_ioctl_cmd(cmd))
1133 if (get_user_ifreq(&ifr, &data, argp))
1135 err = dev_ioctl(net, cmd, &ifr, data, &need_copyout);
1136 if (!err && need_copyout)
1137 if (put_user_ifreq(&ifr, argp))
1144 * With an ioctl, arg may well be a user mode pointer, but we don't know
1145 * what to do with it - that's up to the protocol still.
1148 static long sock_ioctl(struct file *file, unsigned cmd, unsigned long arg)
1150 struct socket *sock;
1152 void __user *argp = (void __user *)arg;
1156 sock = file->private_data;
1159 if (unlikely(cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15))) {
1163 if (get_user_ifreq(&ifr, &data, argp))
1165 err = dev_ioctl(net, cmd, &ifr, data, &need_copyout);
1166 if (!err && need_copyout)
1167 if (put_user_ifreq(&ifr, argp))
1170 #ifdef CONFIG_WEXT_CORE
1171 if (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST) {
1172 err = wext_handle_ioctl(net, cmd, argp);
1179 if (get_user(pid, (int __user *)argp))
1181 err = f_setown(sock->file, pid, 1);
1185 err = put_user(f_getown(sock->file),
1186 (int __user *)argp);
1192 err = br_ioctl_call(net, NULL, cmd, NULL, argp);
1197 if (!vlan_ioctl_hook)
1198 request_module("8021q");
1200 mutex_lock(&vlan_ioctl_mutex);
1201 if (vlan_ioctl_hook)
1202 err = vlan_ioctl_hook(net, argp);
1203 mutex_unlock(&vlan_ioctl_mutex);
1207 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
1210 err = open_related_ns(&net->ns, get_net_ns);
1212 case SIOCGSTAMP_OLD:
1213 case SIOCGSTAMPNS_OLD:
1214 if (!sock->ops->gettstamp) {
1218 err = sock->ops->gettstamp(sock, argp,
1219 cmd == SIOCGSTAMP_OLD,
1220 !IS_ENABLED(CONFIG_64BIT));
1222 case SIOCGSTAMP_NEW:
1223 case SIOCGSTAMPNS_NEW:
1224 if (!sock->ops->gettstamp) {
1228 err = sock->ops->gettstamp(sock, argp,
1229 cmd == SIOCGSTAMP_NEW,
1234 err = dev_ifconf(net, argp);
1238 err = sock_do_ioctl(net, sock, cmd, arg);
1245 * sock_create_lite - creates a socket
1246 * @family: protocol family (AF_INET, ...)
1247 * @type: communication type (SOCK_STREAM, ...)
1248 * @protocol: protocol (0, ...)
1251 * Creates a new socket and assigns it to @res, passing through LSM.
1252 * The new socket initialization is not complete, see kernel_accept().
1253 * Returns 0 or an error. On failure @res is set to %NULL.
1254 * This function internally uses GFP_KERNEL.
1257 int sock_create_lite(int family, int type, int protocol, struct socket **res)
1260 struct socket *sock = NULL;
1262 err = security_socket_create(family, type, protocol, 1);
1266 sock = sock_alloc();
1273 err = security_socket_post_create(sock, family, type, protocol, 1);
1285 EXPORT_SYMBOL(sock_create_lite);
1287 /* No kernel lock held - perfect */
1288 static __poll_t sock_poll(struct file *file, poll_table *wait)
1290 struct socket *sock = file->private_data;
1291 __poll_t events = poll_requested_events(wait), flag = 0;
1293 if (!sock->ops->poll)
1296 if (sk_can_busy_loop(sock->sk)) {
1297 /* poll once if requested by the syscall */
1298 if (events & POLL_BUSY_LOOP)
1299 sk_busy_loop(sock->sk, 1);
1301 /* if this socket can poll_ll, tell the system call */
1302 flag = POLL_BUSY_LOOP;
1305 return sock->ops->poll(file, sock, wait) | flag;
1308 static int sock_mmap(struct file *file, struct vm_area_struct *vma)
1310 struct socket *sock = file->private_data;
1312 return sock->ops->mmap(file, sock, vma);
1315 static int sock_close(struct inode *inode, struct file *filp)
1317 __sock_release(SOCKET_I(inode), inode);
1322 * Update the socket async list
1324 * Fasync_list locking strategy.
1326 * 1. fasync_list is modified only under process context socket lock
1327 * i.e. under semaphore.
1328 * 2. fasync_list is used under read_lock(&sk->sk_callback_lock)
1329 * or under socket lock
1332 static int sock_fasync(int fd, struct file *filp, int on)
1334 struct socket *sock = filp->private_data;
1335 struct sock *sk = sock->sk;
1336 struct socket_wq *wq = &sock->wq;
1342 fasync_helper(fd, filp, on, &wq->fasync_list);
1344 if (!wq->fasync_list)
1345 sock_reset_flag(sk, SOCK_FASYNC);
1347 sock_set_flag(sk, SOCK_FASYNC);
1353 /* This function may be called only under rcu_lock */
1355 int sock_wake_async(struct socket_wq *wq, int how, int band)
1357 if (!wq || !wq->fasync_list)
1361 case SOCK_WAKE_WAITD:
1362 if (test_bit(SOCKWQ_ASYNC_WAITDATA, &wq->flags))
1365 case SOCK_WAKE_SPACE:
1366 if (!test_and_clear_bit(SOCKWQ_ASYNC_NOSPACE, &wq->flags))
1371 kill_fasync(&wq->fasync_list, SIGIO, band);
1374 kill_fasync(&wq->fasync_list, SIGURG, band);
1379 EXPORT_SYMBOL(sock_wake_async);
1382 * __sock_create - creates a socket
1383 * @net: net namespace
1384 * @family: protocol family (AF_INET, ...)
1385 * @type: communication type (SOCK_STREAM, ...)
1386 * @protocol: protocol (0, ...)
1388 * @kern: boolean for kernel space sockets
1390 * Creates a new socket and assigns it to @res, passing through LSM.
1391 * Returns 0 or an error. On failure @res is set to %NULL. @kern must
1392 * be set to true if the socket resides in kernel space.
1393 * This function internally uses GFP_KERNEL.
1396 int __sock_create(struct net *net, int family, int type, int protocol,
1397 struct socket **res, int kern)
1400 struct socket *sock;
1401 const struct net_proto_family *pf;
1404 * Check protocol is in range
1406 if (family < 0 || family >= NPROTO)
1407 return -EAFNOSUPPORT;
1408 if (type < 0 || type >= SOCK_MAX)
1413 This uglymoron is moved from INET layer to here to avoid
1414 deadlock in module load.
1416 if (family == PF_INET && type == SOCK_PACKET) {
1417 pr_info_once("%s uses obsolete (PF_INET,SOCK_PACKET)\n",
1422 err = security_socket_create(family, type, protocol, kern);
1427 * Allocate the socket and allow the family to set things up. if
1428 * the protocol is 0, the family is instructed to select an appropriate
1431 sock = sock_alloc();
1433 net_warn_ratelimited("socket: no more sockets\n");
1434 return -ENFILE; /* Not exactly a match, but its the
1435 closest posix thing */
1440 #ifdef CONFIG_MODULES
1441 /* Attempt to load a protocol module if the find failed.
1443 * 12/09/1996 Marcin: But! this makes REALLY only sense, if the user
1444 * requested real, full-featured networking support upon configuration.
1445 * Otherwise module support will break!
1447 if (rcu_access_pointer(net_families[family]) == NULL)
1448 request_module("net-pf-%d", family);
1452 pf = rcu_dereference(net_families[family]);
1453 err = -EAFNOSUPPORT;
1458 * We will call the ->create function, that possibly is in a loadable
1459 * module, so we have to bump that loadable module refcnt first.
1461 if (!try_module_get(pf->owner))
1464 /* Now protected by module ref count */
1467 err = pf->create(net, sock, protocol, kern);
1469 goto out_module_put;
1472 * Now to bump the refcnt of the [loadable] module that owns this
1473 * socket at sock_release time we decrement its refcnt.
1475 if (!try_module_get(sock->ops->owner))
1476 goto out_module_busy;
1479 * Now that we're done with the ->create function, the [loadable]
1480 * module can have its refcnt decremented
1482 module_put(pf->owner);
1483 err = security_socket_post_create(sock, family, type, protocol, kern);
1485 goto out_sock_release;
1491 err = -EAFNOSUPPORT;
1494 module_put(pf->owner);
1501 goto out_sock_release;
1503 EXPORT_SYMBOL(__sock_create);
1506 * sock_create - creates a socket
1507 * @family: protocol family (AF_INET, ...)
1508 * @type: communication type (SOCK_STREAM, ...)
1509 * @protocol: protocol (0, ...)
1512 * A wrapper around __sock_create().
1513 * Returns 0 or an error. This function internally uses GFP_KERNEL.
1516 int sock_create(int family, int type, int protocol, struct socket **res)
1518 return __sock_create(current->nsproxy->net_ns, family, type, protocol, res, 0);
1520 EXPORT_SYMBOL(sock_create);
1523 * sock_create_kern - creates a socket (kernel space)
1524 * @net: net namespace
1525 * @family: protocol family (AF_INET, ...)
1526 * @type: communication type (SOCK_STREAM, ...)
1527 * @protocol: protocol (0, ...)
1530 * A wrapper around __sock_create().
1531 * Returns 0 or an error. This function internally uses GFP_KERNEL.
1534 int sock_create_kern(struct net *net, int family, int type, int protocol, struct socket **res)
1536 return __sock_create(net, family, type, protocol, res, 1);
1538 EXPORT_SYMBOL(sock_create_kern);
1540 int __sys_socket(int family, int type, int protocol)
1543 struct socket *sock;
1546 /* Check the SOCK_* constants for consistency. */
1547 BUILD_BUG_ON(SOCK_CLOEXEC != O_CLOEXEC);
1548 BUILD_BUG_ON((SOCK_MAX | SOCK_TYPE_MASK) != SOCK_TYPE_MASK);
1549 BUILD_BUG_ON(SOCK_CLOEXEC & SOCK_TYPE_MASK);
1550 BUILD_BUG_ON(SOCK_NONBLOCK & SOCK_TYPE_MASK);
1552 flags = type & ~SOCK_TYPE_MASK;
1553 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
1555 type &= SOCK_TYPE_MASK;
1557 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1558 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1560 retval = sock_create(family, type, protocol, &sock);
1564 return sock_map_fd(sock, flags & (O_CLOEXEC | O_NONBLOCK));
1567 SYSCALL_DEFINE3(socket, int, family, int, type, int, protocol)
1569 return __sys_socket(family, type, protocol);
1573 * Create a pair of connected sockets.
1576 int __sys_socketpair(int family, int type, int protocol, int __user *usockvec)
1578 struct socket *sock1, *sock2;
1580 struct file *newfile1, *newfile2;
1583 flags = type & ~SOCK_TYPE_MASK;
1584 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
1586 type &= SOCK_TYPE_MASK;
1588 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1589 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1592 * reserve descriptors and make sure we won't fail
1593 * to return them to userland.
1595 fd1 = get_unused_fd_flags(flags);
1596 if (unlikely(fd1 < 0))
1599 fd2 = get_unused_fd_flags(flags);
1600 if (unlikely(fd2 < 0)) {
1605 err = put_user(fd1, &usockvec[0]);
1609 err = put_user(fd2, &usockvec[1]);
1614 * Obtain the first socket and check if the underlying protocol
1615 * supports the socketpair call.
1618 err = sock_create(family, type, protocol, &sock1);
1619 if (unlikely(err < 0))
1622 err = sock_create(family, type, protocol, &sock2);
1623 if (unlikely(err < 0)) {
1624 sock_release(sock1);
1628 err = security_socket_socketpair(sock1, sock2);
1629 if (unlikely(err)) {
1630 sock_release(sock2);
1631 sock_release(sock1);
1635 err = sock1->ops->socketpair(sock1, sock2);
1636 if (unlikely(err < 0)) {
1637 sock_release(sock2);
1638 sock_release(sock1);
1642 newfile1 = sock_alloc_file(sock1, flags, NULL);
1643 if (IS_ERR(newfile1)) {
1644 err = PTR_ERR(newfile1);
1645 sock_release(sock2);
1649 newfile2 = sock_alloc_file(sock2, flags, NULL);
1650 if (IS_ERR(newfile2)) {
1651 err = PTR_ERR(newfile2);
1656 audit_fd_pair(fd1, fd2);
1658 fd_install(fd1, newfile1);
1659 fd_install(fd2, newfile2);
1668 SYSCALL_DEFINE4(socketpair, int, family, int, type, int, protocol,
1669 int __user *, usockvec)
1671 return __sys_socketpair(family, type, protocol, usockvec);
1675 * Bind a name to a socket. Nothing much to do here since it's
1676 * the protocol's responsibility to handle the local address.
1678 * We move the socket address to kernel space before we call
1679 * the protocol layer (having also checked the address is ok).
1682 int __sys_bind(int fd, struct sockaddr __user *umyaddr, int addrlen)
1684 struct socket *sock;
1685 struct sockaddr_storage address;
1686 int err, fput_needed;
1688 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1690 err = move_addr_to_kernel(umyaddr, addrlen, &address);
1692 err = security_socket_bind(sock,
1693 (struct sockaddr *)&address,
1696 err = sock->ops->bind(sock,
1700 fput_light(sock->file, fput_needed);
1705 SYSCALL_DEFINE3(bind, int, fd, struct sockaddr __user *, umyaddr, int, addrlen)
1707 return __sys_bind(fd, umyaddr, addrlen);
1711 * Perform a listen. Basically, we allow the protocol to do anything
1712 * necessary for a listen, and if that works, we mark the socket as
1713 * ready for listening.
1716 int __sys_listen(int fd, int backlog)
1718 struct socket *sock;
1719 int err, fput_needed;
1722 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1724 somaxconn = READ_ONCE(sock_net(sock->sk)->core.sysctl_somaxconn);
1725 if ((unsigned int)backlog > somaxconn)
1726 backlog = somaxconn;
1728 err = security_socket_listen(sock, backlog);
1730 err = sock->ops->listen(sock, backlog);
1732 fput_light(sock->file, fput_needed);
1737 SYSCALL_DEFINE2(listen, int, fd, int, backlog)
1739 return __sys_listen(fd, backlog);
1742 struct file *do_accept(struct file *file, unsigned file_flags,
1743 struct sockaddr __user *upeer_sockaddr,
1744 int __user *upeer_addrlen, int flags)
1746 struct socket *sock, *newsock;
1747 struct file *newfile;
1749 struct sockaddr_storage address;
1751 sock = sock_from_file(file);
1753 return ERR_PTR(-ENOTSOCK);
1755 newsock = sock_alloc();
1757 return ERR_PTR(-ENFILE);
1759 newsock->type = sock->type;
1760 newsock->ops = sock->ops;
1763 * We don't need try_module_get here, as the listening socket (sock)
1764 * has the protocol module (sock->ops->owner) held.
1766 __module_get(newsock->ops->owner);
1768 newfile = sock_alloc_file(newsock, flags, sock->sk->sk_prot_creator->name);
1769 if (IS_ERR(newfile))
1772 err = security_socket_accept(sock, newsock);
1776 err = sock->ops->accept(sock, newsock, sock->file->f_flags | file_flags,
1781 if (upeer_sockaddr) {
1782 len = newsock->ops->getname(newsock,
1783 (struct sockaddr *)&address, 2);
1785 err = -ECONNABORTED;
1788 err = move_addr_to_user(&address,
1789 len, upeer_sockaddr, upeer_addrlen);
1794 /* File flags are not inherited via accept() unlike another OSes. */
1798 return ERR_PTR(err);
1801 int __sys_accept4_file(struct file *file, unsigned file_flags,
1802 struct sockaddr __user *upeer_sockaddr,
1803 int __user *upeer_addrlen, int flags,
1804 unsigned long nofile)
1806 struct file *newfile;
1809 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
1812 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1813 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1815 newfd = __get_unused_fd_flags(flags, nofile);
1816 if (unlikely(newfd < 0))
1819 newfile = do_accept(file, file_flags, upeer_sockaddr, upeer_addrlen,
1821 if (IS_ERR(newfile)) {
1822 put_unused_fd(newfd);
1823 return PTR_ERR(newfile);
1825 fd_install(newfd, newfile);
1830 * For accept, we attempt to create a new socket, set up the link
1831 * with the client, wake up the client, then return the new
1832 * connected fd. We collect the address of the connector in kernel
1833 * space and move it to user at the very end. This is unclean because
1834 * we open the socket then return an error.
1836 * 1003.1g adds the ability to recvmsg() to query connection pending
1837 * status to recvmsg. We need to add that support in a way thats
1838 * clean when we restructure accept also.
1841 int __sys_accept4(int fd, struct sockaddr __user *upeer_sockaddr,
1842 int __user *upeer_addrlen, int flags)
1849 ret = __sys_accept4_file(f.file, 0, upeer_sockaddr,
1850 upeer_addrlen, flags,
1851 rlimit(RLIMIT_NOFILE));
1858 SYSCALL_DEFINE4(accept4, int, fd, struct sockaddr __user *, upeer_sockaddr,
1859 int __user *, upeer_addrlen, int, flags)
1861 return __sys_accept4(fd, upeer_sockaddr, upeer_addrlen, flags);
1864 SYSCALL_DEFINE3(accept, int, fd, struct sockaddr __user *, upeer_sockaddr,
1865 int __user *, upeer_addrlen)
1867 return __sys_accept4(fd, upeer_sockaddr, upeer_addrlen, 0);
1871 * Attempt to connect to a socket with the server address. The address
1872 * is in user space so we verify it is OK and move it to kernel space.
1874 * For 1003.1g we need to add clean support for a bind to AF_UNSPEC to
1877 * NOTE: 1003.1g draft 6.3 is broken with respect to AX.25/NetROM and
1878 * other SEQPACKET protocols that take time to connect() as it doesn't
1879 * include the -EINPROGRESS status for such sockets.
1882 int __sys_connect_file(struct file *file, struct sockaddr_storage *address,
1883 int addrlen, int file_flags)
1885 struct socket *sock;
1888 sock = sock_from_file(file);
1895 security_socket_connect(sock, (struct sockaddr *)address, addrlen);
1899 err = sock->ops->connect(sock, (struct sockaddr *)address, addrlen,
1900 sock->file->f_flags | file_flags);
1905 int __sys_connect(int fd, struct sockaddr __user *uservaddr, int addrlen)
1912 struct sockaddr_storage address;
1914 ret = move_addr_to_kernel(uservaddr, addrlen, &address);
1916 ret = __sys_connect_file(f.file, &address, addrlen, 0);
1923 SYSCALL_DEFINE3(connect, int, fd, struct sockaddr __user *, uservaddr,
1926 return __sys_connect(fd, uservaddr, addrlen);
1930 * Get the local address ('name') of a socket object. Move the obtained
1931 * name to user space.
1934 int __sys_getsockname(int fd, struct sockaddr __user *usockaddr,
1935 int __user *usockaddr_len)
1937 struct socket *sock;
1938 struct sockaddr_storage address;
1939 int err, fput_needed;
1941 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1945 err = security_socket_getsockname(sock);
1949 err = sock->ops->getname(sock, (struct sockaddr *)&address, 0);
1952 /* "err" is actually length in this case */
1953 err = move_addr_to_user(&address, err, usockaddr, usockaddr_len);
1956 fput_light(sock->file, fput_needed);
1961 SYSCALL_DEFINE3(getsockname, int, fd, struct sockaddr __user *, usockaddr,
1962 int __user *, usockaddr_len)
1964 return __sys_getsockname(fd, usockaddr, usockaddr_len);
1968 * Get the remote address ('name') of a socket object. Move the obtained
1969 * name to user space.
1972 int __sys_getpeername(int fd, struct sockaddr __user *usockaddr,
1973 int __user *usockaddr_len)
1975 struct socket *sock;
1976 struct sockaddr_storage address;
1977 int err, fput_needed;
1979 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1981 err = security_socket_getpeername(sock);
1983 fput_light(sock->file, fput_needed);
1987 err = sock->ops->getname(sock, (struct sockaddr *)&address, 1);
1989 /* "err" is actually length in this case */
1990 err = move_addr_to_user(&address, err, usockaddr,
1992 fput_light(sock->file, fput_needed);
1997 SYSCALL_DEFINE3(getpeername, int, fd, struct sockaddr __user *, usockaddr,
1998 int __user *, usockaddr_len)
2000 return __sys_getpeername(fd, usockaddr, usockaddr_len);
2004 * Send a datagram to a given address. We move the address into kernel
2005 * space and check the user space data area is readable before invoking
2008 int __sys_sendto(int fd, void __user *buff, size_t len, unsigned int flags,
2009 struct sockaddr __user *addr, int addr_len)
2011 struct socket *sock;
2012 struct sockaddr_storage address;
2018 err = import_single_range(WRITE, buff, len, &iov, &msg.msg_iter);
2021 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2025 msg.msg_name = NULL;
2026 msg.msg_control = NULL;
2027 msg.msg_controllen = 0;
2028 msg.msg_namelen = 0;
2030 err = move_addr_to_kernel(addr, addr_len, &address);
2033 msg.msg_name = (struct sockaddr *)&address;
2034 msg.msg_namelen = addr_len;
2036 if (sock->file->f_flags & O_NONBLOCK)
2037 flags |= MSG_DONTWAIT;
2038 msg.msg_flags = flags;
2039 err = sock_sendmsg(sock, &msg);
2042 fput_light(sock->file, fput_needed);
2047 SYSCALL_DEFINE6(sendto, int, fd, void __user *, buff, size_t, len,
2048 unsigned int, flags, struct sockaddr __user *, addr,
2051 return __sys_sendto(fd, buff, len, flags, addr, addr_len);
2055 * Send a datagram down a socket.
2058 SYSCALL_DEFINE4(send, int, fd, void __user *, buff, size_t, len,
2059 unsigned int, flags)
2061 return __sys_sendto(fd, buff, len, flags, NULL, 0);
2065 * Receive a frame from the socket and optionally record the address of the
2066 * sender. We verify the buffers are writable and if needed move the
2067 * sender address from kernel to user space.
2069 int __sys_recvfrom(int fd, void __user *ubuf, size_t size, unsigned int flags,
2070 struct sockaddr __user *addr, int __user *addr_len)
2072 struct socket *sock;
2075 struct sockaddr_storage address;
2079 err = import_single_range(READ, ubuf, size, &iov, &msg.msg_iter);
2082 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2086 msg.msg_control = NULL;
2087 msg.msg_controllen = 0;
2088 /* Save some cycles and don't copy the address if not needed */
2089 msg.msg_name = addr ? (struct sockaddr *)&address : NULL;
2090 /* We assume all kernel code knows the size of sockaddr_storage */
2091 msg.msg_namelen = 0;
2092 msg.msg_iocb = NULL;
2094 if (sock->file->f_flags & O_NONBLOCK)
2095 flags |= MSG_DONTWAIT;
2096 err = sock_recvmsg(sock, &msg, flags);
2098 if (err >= 0 && addr != NULL) {
2099 err2 = move_addr_to_user(&address,
2100 msg.msg_namelen, addr, addr_len);
2105 fput_light(sock->file, fput_needed);
2110 SYSCALL_DEFINE6(recvfrom, int, fd, void __user *, ubuf, size_t, size,
2111 unsigned int, flags, struct sockaddr __user *, addr,
2112 int __user *, addr_len)
2114 return __sys_recvfrom(fd, ubuf, size, flags, addr, addr_len);
2118 * Receive a datagram from a socket.
2121 SYSCALL_DEFINE4(recv, int, fd, void __user *, ubuf, size_t, size,
2122 unsigned int, flags)
2124 return __sys_recvfrom(fd, ubuf, size, flags, NULL, NULL);
2127 static bool sock_use_custom_sol_socket(const struct socket *sock)
2129 const struct sock *sk = sock->sk;
2131 /* Use sock->ops->setsockopt() for MPTCP */
2132 return IS_ENABLED(CONFIG_MPTCP) &&
2133 sk->sk_protocol == IPPROTO_MPTCP &&
2134 sk->sk_type == SOCK_STREAM &&
2135 (sk->sk_family == AF_INET || sk->sk_family == AF_INET6);
2139 * Set a socket option. Because we don't know the option lengths we have
2140 * to pass the user mode parameter for the protocols to sort out.
2142 int __sys_setsockopt(int fd, int level, int optname, char __user *user_optval,
2145 sockptr_t optval = USER_SOCKPTR(user_optval);
2146 char *kernel_optval = NULL;
2147 int err, fput_needed;
2148 struct socket *sock;
2153 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2157 err = security_socket_setsockopt(sock, level, optname);
2161 if (!in_compat_syscall())
2162 err = BPF_CGROUP_RUN_PROG_SETSOCKOPT(sock->sk, &level, &optname,
2163 user_optval, &optlen,
2173 optval = KERNEL_SOCKPTR(kernel_optval);
2174 if (level == SOL_SOCKET && !sock_use_custom_sol_socket(sock))
2175 err = sock_setsockopt(sock, level, optname, optval, optlen);
2176 else if (unlikely(!sock->ops->setsockopt))
2179 err = sock->ops->setsockopt(sock, level, optname, optval,
2181 kfree(kernel_optval);
2183 fput_light(sock->file, fput_needed);
2187 SYSCALL_DEFINE5(setsockopt, int, fd, int, level, int, optname,
2188 char __user *, optval, int, optlen)
2190 return __sys_setsockopt(fd, level, optname, optval, optlen);
2193 INDIRECT_CALLABLE_DECLARE(bool tcp_bpf_bypass_getsockopt(int level,
2197 * Get a socket option. Because we don't know the option lengths we have
2198 * to pass a user mode parameter for the protocols to sort out.
2200 int __sys_getsockopt(int fd, int level, int optname, char __user *optval,
2203 int err, fput_needed;
2204 struct socket *sock;
2207 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2211 err = security_socket_getsockopt(sock, level, optname);
2215 if (!in_compat_syscall())
2216 max_optlen = BPF_CGROUP_GETSOCKOPT_MAX_OPTLEN(optlen);
2218 if (level == SOL_SOCKET)
2219 err = sock_getsockopt(sock, level, optname, optval, optlen);
2220 else if (unlikely(!sock->ops->getsockopt))
2223 err = sock->ops->getsockopt(sock, level, optname, optval,
2226 if (!in_compat_syscall())
2227 err = BPF_CGROUP_RUN_PROG_GETSOCKOPT(sock->sk, level, optname,
2228 optval, optlen, max_optlen,
2231 fput_light(sock->file, fput_needed);
2235 SYSCALL_DEFINE5(getsockopt, int, fd, int, level, int, optname,
2236 char __user *, optval, int __user *, optlen)
2238 return __sys_getsockopt(fd, level, optname, optval, optlen);
2242 * Shutdown a socket.
2245 int __sys_shutdown_sock(struct socket *sock, int how)
2249 err = security_socket_shutdown(sock, how);
2251 err = sock->ops->shutdown(sock, how);
2256 int __sys_shutdown(int fd, int how)
2258 int err, fput_needed;
2259 struct socket *sock;
2261 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2263 err = __sys_shutdown_sock(sock, how);
2264 fput_light(sock->file, fput_needed);
2269 SYSCALL_DEFINE2(shutdown, int, fd, int, how)
2271 return __sys_shutdown(fd, how);
2274 /* A couple of helpful macros for getting the address of the 32/64 bit
2275 * fields which are the same type (int / unsigned) on our platforms.
2277 #define COMPAT_MSG(msg, member) ((MSG_CMSG_COMPAT & flags) ? &msg##_compat->member : &msg->member)
2278 #define COMPAT_NAMELEN(msg) COMPAT_MSG(msg, msg_namelen)
2279 #define COMPAT_FLAGS(msg) COMPAT_MSG(msg, msg_flags)
2281 struct used_address {
2282 struct sockaddr_storage name;
2283 unsigned int name_len;
2286 int __copy_msghdr_from_user(struct msghdr *kmsg,
2287 struct user_msghdr __user *umsg,
2288 struct sockaddr __user **save_addr,
2289 struct iovec __user **uiov, size_t *nsegs)
2291 struct user_msghdr msg;
2294 if (copy_from_user(&msg, umsg, sizeof(*umsg)))
2297 kmsg->msg_control_is_user = true;
2298 kmsg->msg_control_user = msg.msg_control;
2299 kmsg->msg_controllen = msg.msg_controllen;
2300 kmsg->msg_flags = msg.msg_flags;
2302 kmsg->msg_namelen = msg.msg_namelen;
2304 kmsg->msg_namelen = 0;
2306 if (kmsg->msg_namelen < 0)
2309 if (kmsg->msg_namelen > sizeof(struct sockaddr_storage))
2310 kmsg->msg_namelen = sizeof(struct sockaddr_storage);
2313 *save_addr = msg.msg_name;
2315 if (msg.msg_name && kmsg->msg_namelen) {
2317 err = move_addr_to_kernel(msg.msg_name,
2324 kmsg->msg_name = NULL;
2325 kmsg->msg_namelen = 0;
2328 if (msg.msg_iovlen > UIO_MAXIOV)
2331 kmsg->msg_iocb = NULL;
2332 *uiov = msg.msg_iov;
2333 *nsegs = msg.msg_iovlen;
2337 static int copy_msghdr_from_user(struct msghdr *kmsg,
2338 struct user_msghdr __user *umsg,
2339 struct sockaddr __user **save_addr,
2342 struct user_msghdr msg;
2345 err = __copy_msghdr_from_user(kmsg, umsg, save_addr, &msg.msg_iov,
2350 err = import_iovec(save_addr ? READ : WRITE,
2351 msg.msg_iov, msg.msg_iovlen,
2352 UIO_FASTIOV, iov, &kmsg->msg_iter);
2353 return err < 0 ? err : 0;
2356 static int ____sys_sendmsg(struct socket *sock, struct msghdr *msg_sys,
2357 unsigned int flags, struct used_address *used_address,
2358 unsigned int allowed_msghdr_flags)
2360 unsigned char ctl[sizeof(struct cmsghdr) + 20]
2361 __aligned(sizeof(__kernel_size_t));
2362 /* 20 is size of ipv6_pktinfo */
2363 unsigned char *ctl_buf = ctl;
2369 if (msg_sys->msg_controllen > INT_MAX)
2371 flags |= (msg_sys->msg_flags & allowed_msghdr_flags);
2372 ctl_len = msg_sys->msg_controllen;
2373 if ((MSG_CMSG_COMPAT & flags) && ctl_len) {
2375 cmsghdr_from_user_compat_to_kern(msg_sys, sock->sk, ctl,
2379 ctl_buf = msg_sys->msg_control;
2380 ctl_len = msg_sys->msg_controllen;
2381 } else if (ctl_len) {
2382 BUILD_BUG_ON(sizeof(struct cmsghdr) !=
2383 CMSG_ALIGN(sizeof(struct cmsghdr)));
2384 if (ctl_len > sizeof(ctl)) {
2385 ctl_buf = sock_kmalloc(sock->sk, ctl_len, GFP_KERNEL);
2386 if (ctl_buf == NULL)
2390 if (copy_from_user(ctl_buf, msg_sys->msg_control_user, ctl_len))
2392 msg_sys->msg_control = ctl_buf;
2393 msg_sys->msg_control_is_user = false;
2395 msg_sys->msg_flags = flags;
2397 if (sock->file->f_flags & O_NONBLOCK)
2398 msg_sys->msg_flags |= MSG_DONTWAIT;
2400 * If this is sendmmsg() and current destination address is same as
2401 * previously succeeded address, omit asking LSM's decision.
2402 * used_address->name_len is initialized to UINT_MAX so that the first
2403 * destination address never matches.
2405 if (used_address && msg_sys->msg_name &&
2406 used_address->name_len == msg_sys->msg_namelen &&
2407 !memcmp(&used_address->name, msg_sys->msg_name,
2408 used_address->name_len)) {
2409 err = sock_sendmsg_nosec(sock, msg_sys);
2412 err = sock_sendmsg(sock, msg_sys);
2414 * If this is sendmmsg() and sending to current destination address was
2415 * successful, remember it.
2417 if (used_address && err >= 0) {
2418 used_address->name_len = msg_sys->msg_namelen;
2419 if (msg_sys->msg_name)
2420 memcpy(&used_address->name, msg_sys->msg_name,
2421 used_address->name_len);
2426 sock_kfree_s(sock->sk, ctl_buf, ctl_len);
2431 int sendmsg_copy_msghdr(struct msghdr *msg,
2432 struct user_msghdr __user *umsg, unsigned flags,
2437 if (flags & MSG_CMSG_COMPAT) {
2438 struct compat_msghdr __user *msg_compat;
2440 msg_compat = (struct compat_msghdr __user *) umsg;
2441 err = get_compat_msghdr(msg, msg_compat, NULL, iov);
2443 err = copy_msghdr_from_user(msg, umsg, NULL, iov);
2451 static int ___sys_sendmsg(struct socket *sock, struct user_msghdr __user *msg,
2452 struct msghdr *msg_sys, unsigned int flags,
2453 struct used_address *used_address,
2454 unsigned int allowed_msghdr_flags)
2456 struct sockaddr_storage address;
2457 struct iovec iovstack[UIO_FASTIOV], *iov = iovstack;
2460 msg_sys->msg_name = &address;
2462 err = sendmsg_copy_msghdr(msg_sys, msg, flags, &iov);
2466 err = ____sys_sendmsg(sock, msg_sys, flags, used_address,
2467 allowed_msghdr_flags);
2473 * BSD sendmsg interface
2475 long __sys_sendmsg_sock(struct socket *sock, struct msghdr *msg,
2478 return ____sys_sendmsg(sock, msg, flags, NULL, 0);
2481 long __sys_sendmsg(int fd, struct user_msghdr __user *msg, unsigned int flags,
2482 bool forbid_cmsg_compat)
2484 int fput_needed, err;
2485 struct msghdr msg_sys;
2486 struct socket *sock;
2488 if (forbid_cmsg_compat && (flags & MSG_CMSG_COMPAT))
2491 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2495 err = ___sys_sendmsg(sock, msg, &msg_sys, flags, NULL, 0);
2497 fput_light(sock->file, fput_needed);
2502 SYSCALL_DEFINE3(sendmsg, int, fd, struct user_msghdr __user *, msg, unsigned int, flags)
2504 return __sys_sendmsg(fd, msg, flags, true);
2508 * Linux sendmmsg interface
2511 int __sys_sendmmsg(int fd, struct mmsghdr __user *mmsg, unsigned int vlen,
2512 unsigned int flags, bool forbid_cmsg_compat)
2514 int fput_needed, err, datagrams;
2515 struct socket *sock;
2516 struct mmsghdr __user *entry;
2517 struct compat_mmsghdr __user *compat_entry;
2518 struct msghdr msg_sys;
2519 struct used_address used_address;
2520 unsigned int oflags = flags;
2522 if (forbid_cmsg_compat && (flags & MSG_CMSG_COMPAT))
2525 if (vlen > UIO_MAXIOV)
2530 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2534 used_address.name_len = UINT_MAX;
2536 compat_entry = (struct compat_mmsghdr __user *)mmsg;
2540 while (datagrams < vlen) {
2541 if (datagrams == vlen - 1)
2544 if (MSG_CMSG_COMPAT & flags) {
2545 err = ___sys_sendmsg(sock, (struct user_msghdr __user *)compat_entry,
2546 &msg_sys, flags, &used_address, MSG_EOR);
2549 err = __put_user(err, &compat_entry->msg_len);
2552 err = ___sys_sendmsg(sock,
2553 (struct user_msghdr __user *)entry,
2554 &msg_sys, flags, &used_address, MSG_EOR);
2557 err = put_user(err, &entry->msg_len);
2564 if (msg_data_left(&msg_sys))
2569 fput_light(sock->file, fput_needed);
2571 /* We only return an error if no datagrams were able to be sent */
2578 SYSCALL_DEFINE4(sendmmsg, int, fd, struct mmsghdr __user *, mmsg,
2579 unsigned int, vlen, unsigned int, flags)
2581 return __sys_sendmmsg(fd, mmsg, vlen, flags, true);
2584 int recvmsg_copy_msghdr(struct msghdr *msg,
2585 struct user_msghdr __user *umsg, unsigned flags,
2586 struct sockaddr __user **uaddr,
2591 if (MSG_CMSG_COMPAT & flags) {
2592 struct compat_msghdr __user *msg_compat;
2594 msg_compat = (struct compat_msghdr __user *) umsg;
2595 err = get_compat_msghdr(msg, msg_compat, uaddr, iov);
2597 err = copy_msghdr_from_user(msg, umsg, uaddr, iov);
2605 static int ____sys_recvmsg(struct socket *sock, struct msghdr *msg_sys,
2606 struct user_msghdr __user *msg,
2607 struct sockaddr __user *uaddr,
2608 unsigned int flags, int nosec)
2610 struct compat_msghdr __user *msg_compat =
2611 (struct compat_msghdr __user *) msg;
2612 int __user *uaddr_len = COMPAT_NAMELEN(msg);
2613 struct sockaddr_storage addr;
2614 unsigned long cmsg_ptr;
2618 msg_sys->msg_name = &addr;
2619 cmsg_ptr = (unsigned long)msg_sys->msg_control;
2620 msg_sys->msg_flags = flags & (MSG_CMSG_CLOEXEC|MSG_CMSG_COMPAT);
2622 /* We assume all kernel code knows the size of sockaddr_storage */
2623 msg_sys->msg_namelen = 0;
2625 if (sock->file->f_flags & O_NONBLOCK)
2626 flags |= MSG_DONTWAIT;
2628 if (unlikely(nosec))
2629 err = sock_recvmsg_nosec(sock, msg_sys, flags);
2631 err = sock_recvmsg(sock, msg_sys, flags);
2637 if (uaddr != NULL) {
2638 err = move_addr_to_user(&addr,
2639 msg_sys->msg_namelen, uaddr,
2644 err = __put_user((msg_sys->msg_flags & ~MSG_CMSG_COMPAT),
2648 if (MSG_CMSG_COMPAT & flags)
2649 err = __put_user((unsigned long)msg_sys->msg_control - cmsg_ptr,
2650 &msg_compat->msg_controllen);
2652 err = __put_user((unsigned long)msg_sys->msg_control - cmsg_ptr,
2653 &msg->msg_controllen);
2661 static int ___sys_recvmsg(struct socket *sock, struct user_msghdr __user *msg,
2662 struct msghdr *msg_sys, unsigned int flags, int nosec)
2664 struct iovec iovstack[UIO_FASTIOV], *iov = iovstack;
2665 /* user mode address pointers */
2666 struct sockaddr __user *uaddr;
2669 err = recvmsg_copy_msghdr(msg_sys, msg, flags, &uaddr, &iov);
2673 err = ____sys_recvmsg(sock, msg_sys, msg, uaddr, flags, nosec);
2679 * BSD recvmsg interface
2682 long __sys_recvmsg_sock(struct socket *sock, struct msghdr *msg,
2683 struct user_msghdr __user *umsg,
2684 struct sockaddr __user *uaddr, unsigned int flags)
2686 return ____sys_recvmsg(sock, msg, umsg, uaddr, flags, 0);
2689 long __sys_recvmsg(int fd, struct user_msghdr __user *msg, unsigned int flags,
2690 bool forbid_cmsg_compat)
2692 int fput_needed, err;
2693 struct msghdr msg_sys;
2694 struct socket *sock;
2696 if (forbid_cmsg_compat && (flags & MSG_CMSG_COMPAT))
2699 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2703 err = ___sys_recvmsg(sock, msg, &msg_sys, flags, 0);
2705 fput_light(sock->file, fput_needed);
2710 SYSCALL_DEFINE3(recvmsg, int, fd, struct user_msghdr __user *, msg,
2711 unsigned int, flags)
2713 return __sys_recvmsg(fd, msg, flags, true);
2717 * Linux recvmmsg interface
2720 static int do_recvmmsg(int fd, struct mmsghdr __user *mmsg,
2721 unsigned int vlen, unsigned int flags,
2722 struct timespec64 *timeout)
2724 int fput_needed, err, datagrams;
2725 struct socket *sock;
2726 struct mmsghdr __user *entry;
2727 struct compat_mmsghdr __user *compat_entry;
2728 struct msghdr msg_sys;
2729 struct timespec64 end_time;
2730 struct timespec64 timeout64;
2733 poll_select_set_timeout(&end_time, timeout->tv_sec,
2739 sock = sockfd_lookup_light(fd, &err, &fput_needed);
2743 if (likely(!(flags & MSG_ERRQUEUE))) {
2744 err = sock_error(sock->sk);
2752 compat_entry = (struct compat_mmsghdr __user *)mmsg;
2754 while (datagrams < vlen) {
2756 * No need to ask LSM for more than the first datagram.
2758 if (MSG_CMSG_COMPAT & flags) {
2759 err = ___sys_recvmsg(sock, (struct user_msghdr __user *)compat_entry,
2760 &msg_sys, flags & ~MSG_WAITFORONE,
2764 err = __put_user(err, &compat_entry->msg_len);
2767 err = ___sys_recvmsg(sock,
2768 (struct user_msghdr __user *)entry,
2769 &msg_sys, flags & ~MSG_WAITFORONE,
2773 err = put_user(err, &entry->msg_len);
2781 /* MSG_WAITFORONE turns on MSG_DONTWAIT after one packet */
2782 if (flags & MSG_WAITFORONE)
2783 flags |= MSG_DONTWAIT;
2786 ktime_get_ts64(&timeout64);
2787 *timeout = timespec64_sub(end_time, timeout64);
2788 if (timeout->tv_sec < 0) {
2789 timeout->tv_sec = timeout->tv_nsec = 0;
2793 /* Timeout, return less than vlen datagrams */
2794 if (timeout->tv_nsec == 0 && timeout->tv_sec == 0)
2798 /* Out of band data, return right away */
2799 if (msg_sys.msg_flags & MSG_OOB)
2807 if (datagrams == 0) {
2813 * We may return less entries than requested (vlen) if the
2814 * sock is non block and there aren't enough datagrams...
2816 if (err != -EAGAIN) {
2818 * ... or if recvmsg returns an error after we
2819 * received some datagrams, where we record the
2820 * error to return on the next call or if the
2821 * app asks about it using getsockopt(SO_ERROR).
2823 sock->sk->sk_err = -err;
2826 fput_light(sock->file, fput_needed);
2831 int __sys_recvmmsg(int fd, struct mmsghdr __user *mmsg,
2832 unsigned int vlen, unsigned int flags,
2833 struct __kernel_timespec __user *timeout,
2834 struct old_timespec32 __user *timeout32)
2837 struct timespec64 timeout_sys;
2839 if (timeout && get_timespec64(&timeout_sys, timeout))
2842 if (timeout32 && get_old_timespec32(&timeout_sys, timeout32))
2845 if (!timeout && !timeout32)
2846 return do_recvmmsg(fd, mmsg, vlen, flags, NULL);
2848 datagrams = do_recvmmsg(fd, mmsg, vlen, flags, &timeout_sys);
2853 if (timeout && put_timespec64(&timeout_sys, timeout))
2854 datagrams = -EFAULT;
2856 if (timeout32 && put_old_timespec32(&timeout_sys, timeout32))
2857 datagrams = -EFAULT;
2862 SYSCALL_DEFINE5(recvmmsg, int, fd, struct mmsghdr __user *, mmsg,
2863 unsigned int, vlen, unsigned int, flags,
2864 struct __kernel_timespec __user *, timeout)
2866 if (flags & MSG_CMSG_COMPAT)
2869 return __sys_recvmmsg(fd, mmsg, vlen, flags, timeout, NULL);
2872 #ifdef CONFIG_COMPAT_32BIT_TIME
2873 SYSCALL_DEFINE5(recvmmsg_time32, int, fd, struct mmsghdr __user *, mmsg,
2874 unsigned int, vlen, unsigned int, flags,
2875 struct old_timespec32 __user *, timeout)
2877 if (flags & MSG_CMSG_COMPAT)
2880 return __sys_recvmmsg(fd, mmsg, vlen, flags, NULL, timeout);
2884 #ifdef __ARCH_WANT_SYS_SOCKETCALL
2885 /* Argument list sizes for sys_socketcall */
2886 #define AL(x) ((x) * sizeof(unsigned long))
2887 static const unsigned char nargs[21] = {
2888 AL(0), AL(3), AL(3), AL(3), AL(2), AL(3),
2889 AL(3), AL(3), AL(4), AL(4), AL(4), AL(6),
2890 AL(6), AL(2), AL(5), AL(5), AL(3), AL(3),
2897 * System call vectors.
2899 * Argument checking cleaned up. Saved 20% in size.
2900 * This function doesn't need to set the kernel lock because
2901 * it is set by the callees.
2904 SYSCALL_DEFINE2(socketcall, int, call, unsigned long __user *, args)
2906 unsigned long a[AUDITSC_ARGS];
2907 unsigned long a0, a1;
2911 if (call < 1 || call > SYS_SENDMMSG)
2913 call = array_index_nospec(call, SYS_SENDMMSG + 1);
2916 if (len > sizeof(a))
2919 /* copy_from_user should be SMP safe. */
2920 if (copy_from_user(a, args, len))
2923 err = audit_socketcall(nargs[call] / sizeof(unsigned long), a);
2932 err = __sys_socket(a0, a1, a[2]);
2935 err = __sys_bind(a0, (struct sockaddr __user *)a1, a[2]);
2938 err = __sys_connect(a0, (struct sockaddr __user *)a1, a[2]);
2941 err = __sys_listen(a0, a1);
2944 err = __sys_accept4(a0, (struct sockaddr __user *)a1,
2945 (int __user *)a[2], 0);
2947 case SYS_GETSOCKNAME:
2949 __sys_getsockname(a0, (struct sockaddr __user *)a1,
2950 (int __user *)a[2]);
2952 case SYS_GETPEERNAME:
2954 __sys_getpeername(a0, (struct sockaddr __user *)a1,
2955 (int __user *)a[2]);
2957 case SYS_SOCKETPAIR:
2958 err = __sys_socketpair(a0, a1, a[2], (int __user *)a[3]);
2961 err = __sys_sendto(a0, (void __user *)a1, a[2], a[3],
2965 err = __sys_sendto(a0, (void __user *)a1, a[2], a[3],
2966 (struct sockaddr __user *)a[4], a[5]);
2969 err = __sys_recvfrom(a0, (void __user *)a1, a[2], a[3],
2973 err = __sys_recvfrom(a0, (void __user *)a1, a[2], a[3],
2974 (struct sockaddr __user *)a[4],
2975 (int __user *)a[5]);
2978 err = __sys_shutdown(a0, a1);
2980 case SYS_SETSOCKOPT:
2981 err = __sys_setsockopt(a0, a1, a[2], (char __user *)a[3],
2984 case SYS_GETSOCKOPT:
2986 __sys_getsockopt(a0, a1, a[2], (char __user *)a[3],
2987 (int __user *)a[4]);
2990 err = __sys_sendmsg(a0, (struct user_msghdr __user *)a1,
2994 err = __sys_sendmmsg(a0, (struct mmsghdr __user *)a1, a[2],
2998 err = __sys_recvmsg(a0, (struct user_msghdr __user *)a1,
3002 if (IS_ENABLED(CONFIG_64BIT))
3003 err = __sys_recvmmsg(a0, (struct mmsghdr __user *)a1,
3005 (struct __kernel_timespec __user *)a[4],
3008 err = __sys_recvmmsg(a0, (struct mmsghdr __user *)a1,
3010 (struct old_timespec32 __user *)a[4]);
3013 err = __sys_accept4(a0, (struct sockaddr __user *)a1,
3014 (int __user *)a[2], a[3]);
3023 #endif /* __ARCH_WANT_SYS_SOCKETCALL */
3026 * sock_register - add a socket protocol handler
3027 * @ops: description of protocol
3029 * This function is called by a protocol handler that wants to
3030 * advertise its address family, and have it linked into the
3031 * socket interface. The value ops->family corresponds to the
3032 * socket system call protocol family.
3034 int sock_register(const struct net_proto_family *ops)
3038 if (ops->family >= NPROTO) {
3039 pr_crit("protocol %d >= NPROTO(%d)\n", ops->family, NPROTO);
3043 spin_lock(&net_family_lock);
3044 if (rcu_dereference_protected(net_families[ops->family],
3045 lockdep_is_held(&net_family_lock)))
3048 rcu_assign_pointer(net_families[ops->family], ops);
3051 spin_unlock(&net_family_lock);
3053 pr_info("NET: Registered %s protocol family\n", pf_family_names[ops->family]);
3056 EXPORT_SYMBOL(sock_register);
3059 * sock_unregister - remove a protocol handler
3060 * @family: protocol family to remove
3062 * This function is called by a protocol handler that wants to
3063 * remove its address family, and have it unlinked from the
3064 * new socket creation.
3066 * If protocol handler is a module, then it can use module reference
3067 * counts to protect against new references. If protocol handler is not
3068 * a module then it needs to provide its own protection in
3069 * the ops->create routine.
3071 void sock_unregister(int family)
3073 BUG_ON(family < 0 || family >= NPROTO);
3075 spin_lock(&net_family_lock);
3076 RCU_INIT_POINTER(net_families[family], NULL);
3077 spin_unlock(&net_family_lock);
3081 pr_info("NET: Unregistered %s protocol family\n", pf_family_names[family]);
3083 EXPORT_SYMBOL(sock_unregister);
3085 bool sock_is_registered(int family)
3087 return family < NPROTO && rcu_access_pointer(net_families[family]);
3090 static int __init sock_init(void)
3094 * Initialize the network sysctl infrastructure.
3096 err = net_sysctl_init();
3101 * Initialize skbuff SLAB cache
3106 * Initialize the protocols module.
3111 err = register_filesystem(&sock_fs_type);
3114 sock_mnt = kern_mount(&sock_fs_type);
3115 if (IS_ERR(sock_mnt)) {
3116 err = PTR_ERR(sock_mnt);
3120 /* The real protocol initialization is performed in later initcalls.
3123 #ifdef CONFIG_NETFILTER
3124 err = netfilter_init();
3129 ptp_classifier_init();
3135 unregister_filesystem(&sock_fs_type);
3139 core_initcall(sock_init); /* early initcall */
3141 #ifdef CONFIG_PROC_FS
3142 void socket_seq_show(struct seq_file *seq)
3144 seq_printf(seq, "sockets: used %d\n",
3145 sock_inuse_get(seq->private));
3147 #endif /* CONFIG_PROC_FS */
3149 /* Handle the fact that while struct ifreq has the same *layout* on
3150 * 32/64 for everything but ifreq::ifru_ifmap and ifreq::ifru_data,
3151 * which are handled elsewhere, it still has different *size* due to
3152 * ifreq::ifru_ifmap (which is 16 bytes on 32 bit, 24 bytes on 64-bit,
3153 * resulting in struct ifreq being 32 and 40 bytes respectively).
3154 * As a result, if the struct happens to be at the end of a page and
3155 * the next page isn't readable/writable, we get a fault. To prevent
3156 * that, copy back and forth to the full size.
3158 int get_user_ifreq(struct ifreq *ifr, void __user **ifrdata, void __user *arg)
3160 if (in_compat_syscall()) {
3161 struct compat_ifreq *ifr32 = (struct compat_ifreq *)ifr;
3163 memset(ifr, 0, sizeof(*ifr));
3164 if (copy_from_user(ifr32, arg, sizeof(*ifr32)))
3168 *ifrdata = compat_ptr(ifr32->ifr_data);
3173 if (copy_from_user(ifr, arg, sizeof(*ifr)))
3177 *ifrdata = ifr->ifr_data;
3181 EXPORT_SYMBOL(get_user_ifreq);
3183 int put_user_ifreq(struct ifreq *ifr, void __user *arg)
3185 size_t size = sizeof(*ifr);
3187 if (in_compat_syscall())
3188 size = sizeof(struct compat_ifreq);
3190 if (copy_to_user(arg, ifr, size))
3195 EXPORT_SYMBOL(put_user_ifreq);
3197 #ifdef CONFIG_COMPAT
3198 static int compat_siocwandev(struct net *net, struct compat_ifreq __user *uifr32)
3200 compat_uptr_t uptr32;
3205 if (get_user_ifreq(&ifr, NULL, uifr32))
3208 if (get_user(uptr32, &uifr32->ifr_settings.ifs_ifsu))
3211 saved = ifr.ifr_settings.ifs_ifsu.raw_hdlc;
3212 ifr.ifr_settings.ifs_ifsu.raw_hdlc = compat_ptr(uptr32);
3214 err = dev_ioctl(net, SIOCWANDEV, &ifr, NULL, NULL);
3216 ifr.ifr_settings.ifs_ifsu.raw_hdlc = saved;
3217 if (put_user_ifreq(&ifr, uifr32))
3223 /* Handle ioctls that use ifreq::ifr_data and just need struct ifreq converted */
3224 static int compat_ifr_data_ioctl(struct net *net, unsigned int cmd,
3225 struct compat_ifreq __user *u_ifreq32)
3230 if (!is_socket_ioctl_cmd(cmd))
3232 if (get_user_ifreq(&ifreq, &data, u_ifreq32))
3234 ifreq.ifr_data = data;
3236 return dev_ioctl(net, cmd, &ifreq, data, NULL);
3239 /* Since old style bridge ioctl's endup using SIOCDEVPRIVATE
3240 * for some operations; this forces use of the newer bridge-utils that
3241 * use compatible ioctls
3243 static int old_bridge_ioctl(compat_ulong_t __user *argp)
3247 if (get_user(tmp, argp))
3249 if (tmp == BRCTL_GET_VERSION)
3250 return BRCTL_VERSION + 1;
3254 static int compat_sock_ioctl_trans(struct file *file, struct socket *sock,
3255 unsigned int cmd, unsigned long arg)
3257 void __user *argp = compat_ptr(arg);
3258 struct sock *sk = sock->sk;
3259 struct net *net = sock_net(sk);
3261 if (cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15))
3262 return sock_ioctl(file, cmd, (unsigned long)argp);
3267 return old_bridge_ioctl(argp);
3269 return compat_siocwandev(net, argp);
3270 case SIOCGSTAMP_OLD:
3271 case SIOCGSTAMPNS_OLD:
3272 if (!sock->ops->gettstamp)
3273 return -ENOIOCTLCMD;
3274 return sock->ops->gettstamp(sock, argp, cmd == SIOCGSTAMP_OLD,
3275 !COMPAT_USE_64BIT_TIME);
3278 case SIOCBONDSLAVEINFOQUERY:
3279 case SIOCBONDINFOQUERY:
3282 return compat_ifr_data_ioctl(net, cmd, argp);
3293 case SIOCGSTAMP_NEW:
3294 case SIOCGSTAMPNS_NEW:
3296 return sock_ioctl(file, cmd, arg);
3315 case SIOCSIFHWBROADCAST:
3317 case SIOCGIFBRDADDR:
3318 case SIOCSIFBRDADDR:
3319 case SIOCGIFDSTADDR:
3320 case SIOCSIFDSTADDR:
3321 case SIOCGIFNETMASK:
3322 case SIOCSIFNETMASK:
3334 case SIOCBONDENSLAVE:
3335 case SIOCBONDRELEASE:
3336 case SIOCBONDSETHWADDR:
3337 case SIOCBONDCHANGEACTIVE:
3344 return sock_do_ioctl(net, sock, cmd, arg);
3347 return -ENOIOCTLCMD;
3350 static long compat_sock_ioctl(struct file *file, unsigned int cmd,
3353 struct socket *sock = file->private_data;
3354 int ret = -ENOIOCTLCMD;
3361 if (sock->ops->compat_ioctl)
3362 ret = sock->ops->compat_ioctl(sock, cmd, arg);
3364 if (ret == -ENOIOCTLCMD &&
3365 (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST))
3366 ret = compat_wext_handle_ioctl(net, cmd, arg);
3368 if (ret == -ENOIOCTLCMD)
3369 ret = compat_sock_ioctl_trans(file, sock, cmd, arg);
3376 * kernel_bind - bind an address to a socket (kernel space)
3379 * @addrlen: length of address
3381 * Returns 0 or an error.
3384 int kernel_bind(struct socket *sock, struct sockaddr *addr, int addrlen)
3386 return sock->ops->bind(sock, addr, addrlen);
3388 EXPORT_SYMBOL(kernel_bind);
3391 * kernel_listen - move socket to listening state (kernel space)
3393 * @backlog: pending connections queue size
3395 * Returns 0 or an error.
3398 int kernel_listen(struct socket *sock, int backlog)
3400 return sock->ops->listen(sock, backlog);
3402 EXPORT_SYMBOL(kernel_listen);
3405 * kernel_accept - accept a connection (kernel space)
3406 * @sock: listening socket
3407 * @newsock: new connected socket
3410 * @flags must be SOCK_CLOEXEC, SOCK_NONBLOCK or 0.
3411 * If it fails, @newsock is guaranteed to be %NULL.
3412 * Returns 0 or an error.
3415 int kernel_accept(struct socket *sock, struct socket **newsock, int flags)
3417 struct sock *sk = sock->sk;
3420 err = sock_create_lite(sk->sk_family, sk->sk_type, sk->sk_protocol,
3425 err = sock->ops->accept(sock, *newsock, flags, true);
3427 sock_release(*newsock);
3432 (*newsock)->ops = sock->ops;
3433 __module_get((*newsock)->ops->owner);
3438 EXPORT_SYMBOL(kernel_accept);
3441 * kernel_connect - connect a socket (kernel space)
3444 * @addrlen: address length
3445 * @flags: flags (O_NONBLOCK, ...)
3447 * For datagram sockets, @addr is the address to which datagrams are sent
3448 * by default, and the only address from which datagrams are received.
3449 * For stream sockets, attempts to connect to @addr.
3450 * Returns 0 or an error code.
3453 int kernel_connect(struct socket *sock, struct sockaddr *addr, int addrlen,
3456 return sock->ops->connect(sock, addr, addrlen, flags);
3458 EXPORT_SYMBOL(kernel_connect);
3461 * kernel_getsockname - get the address which the socket is bound (kernel space)
3463 * @addr: address holder
3465 * Fills the @addr pointer with the address which the socket is bound.
3466 * Returns 0 or an error code.
3469 int kernel_getsockname(struct socket *sock, struct sockaddr *addr)
3471 return sock->ops->getname(sock, addr, 0);
3473 EXPORT_SYMBOL(kernel_getsockname);
3476 * kernel_getpeername - get the address which the socket is connected (kernel space)
3478 * @addr: address holder
3480 * Fills the @addr pointer with the address which the socket is connected.
3481 * Returns 0 or an error code.
3484 int kernel_getpeername(struct socket *sock, struct sockaddr *addr)
3486 return sock->ops->getname(sock, addr, 1);
3488 EXPORT_SYMBOL(kernel_getpeername);
3491 * kernel_sendpage - send a &page through a socket (kernel space)
3494 * @offset: page offset
3495 * @size: total size in bytes
3496 * @flags: flags (MSG_DONTWAIT, ...)
3498 * Returns the total amount sent in bytes or an error.
3501 int kernel_sendpage(struct socket *sock, struct page *page, int offset,
3502 size_t size, int flags)
3504 if (sock->ops->sendpage) {
3505 /* Warn in case the improper page to zero-copy send */
3506 WARN_ONCE(!sendpage_ok(page), "improper page for zero-copy send");
3507 return sock->ops->sendpage(sock, page, offset, size, flags);
3509 return sock_no_sendpage(sock, page, offset, size, flags);
3511 EXPORT_SYMBOL(kernel_sendpage);
3514 * kernel_sendpage_locked - send a &page through the locked sock (kernel space)
3517 * @offset: page offset
3518 * @size: total size in bytes
3519 * @flags: flags (MSG_DONTWAIT, ...)
3521 * Returns the total amount sent in bytes or an error.
3522 * Caller must hold @sk.
3525 int kernel_sendpage_locked(struct sock *sk, struct page *page, int offset,
3526 size_t size, int flags)
3528 struct socket *sock = sk->sk_socket;
3530 if (sock->ops->sendpage_locked)
3531 return sock->ops->sendpage_locked(sk, page, offset, size,
3534 return sock_no_sendpage_locked(sk, page, offset, size, flags);
3536 EXPORT_SYMBOL(kernel_sendpage_locked);
3539 * kernel_sock_shutdown - shut down part of a full-duplex connection (kernel space)
3541 * @how: connection part
3543 * Returns 0 or an error.
3546 int kernel_sock_shutdown(struct socket *sock, enum sock_shutdown_cmd how)
3548 return sock->ops->shutdown(sock, how);
3550 EXPORT_SYMBOL(kernel_sock_shutdown);
3553 * kernel_sock_ip_overhead - returns the IP overhead imposed by a socket
3556 * This routine returns the IP overhead imposed by a socket i.e.
3557 * the length of the underlying IP header, depending on whether
3558 * this is an IPv4 or IPv6 socket and the length from IP options turned
3559 * on at the socket. Assumes that the caller has a lock on the socket.
3562 u32 kernel_sock_ip_overhead(struct sock *sk)
3564 struct inet_sock *inet;
3565 struct ip_options_rcu *opt;
3567 #if IS_ENABLED(CONFIG_IPV6)
3568 struct ipv6_pinfo *np;
3569 struct ipv6_txoptions *optv6 = NULL;
3570 #endif /* IS_ENABLED(CONFIG_IPV6) */
3575 switch (sk->sk_family) {
3578 overhead += sizeof(struct iphdr);
3579 opt = rcu_dereference_protected(inet->inet_opt,
3580 sock_owned_by_user(sk));
3582 overhead += opt->opt.optlen;
3584 #if IS_ENABLED(CONFIG_IPV6)
3587 overhead += sizeof(struct ipv6hdr);
3589 optv6 = rcu_dereference_protected(np->opt,
3590 sock_owned_by_user(sk));
3592 overhead += (optv6->opt_flen + optv6->opt_nflen);
3594 #endif /* IS_ENABLED(CONFIG_IPV6) */
3595 default: /* Returns 0 overhead if the socket is not ipv4 or ipv6 */
3599 EXPORT_SYMBOL(kernel_sock_ip_overhead);