| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 |
- // SPDX-License-Identifier: GPL-2.0
- /* Copyright (c) 2022 Bobby Eshleman <bobby.eshleman@bytedance.com>
- *
- * Based off of net/unix/unix_bpf.c
- */
- #include <linux/bpf.h>
- #include <linux/module.h>
- #include <linux/skmsg.h>
- #include <linux/socket.h>
- #include <linux/wait.h>
- #include <net/af_vsock.h>
- #include <net/sock.h>
- #define vsock_sk_has_data(__sk, __psock) \
- ({ !skb_queue_empty(&(__sk)->sk_receive_queue) || \
- !skb_queue_empty(&(__psock)->ingress_skb) || \
- !list_empty(&(__psock)->ingress_msg); \
- })
- static struct proto *vsock_prot_saved __read_mostly;
- static DEFINE_SPINLOCK(vsock_prot_lock);
- static struct proto vsock_bpf_prot;
- static bool vsock_has_data(struct sock *sk, struct sk_psock *psock)
- {
- struct vsock_sock *vsk = vsock_sk(sk);
- s64 ret;
- ret = vsock_connectible_has_data(vsk);
- if (ret > 0)
- return true;
- return vsock_sk_has_data(sk, psock);
- }
- static bool vsock_msg_wait_data(struct sock *sk, struct sk_psock *psock, long timeo)
- {
- bool ret;
- DEFINE_WAIT_FUNC(wait, woken_wake_function);
- if (sk->sk_shutdown & RCV_SHUTDOWN)
- return true;
- if (!timeo)
- return false;
- add_wait_queue(sk_sleep(sk), &wait);
- sk_set_bit(SOCKWQ_ASYNC_WAITDATA, sk);
- ret = vsock_has_data(sk, psock);
- if (!ret) {
- wait_woken(&wait, TASK_INTERRUPTIBLE, timeo);
- ret = vsock_has_data(sk, psock);
- }
- sk_clear_bit(SOCKWQ_ASYNC_WAITDATA, sk);
- remove_wait_queue(sk_sleep(sk), &wait);
- return ret;
- }
- static int __vsock_recvmsg(struct sock *sk, struct msghdr *msg, size_t len, int flags)
- {
- struct socket *sock = sk->sk_socket;
- int err;
- if (sk->sk_type == SOCK_STREAM || sk->sk_type == SOCK_SEQPACKET)
- err = __vsock_connectible_recvmsg(sock, msg, len, flags);
- else if (sk->sk_type == SOCK_DGRAM)
- err = __vsock_dgram_recvmsg(sock, msg, len, flags);
- else
- err = -EPROTOTYPE;
- return err;
- }
- static int vsock_bpf_recvmsg(struct sock *sk, struct msghdr *msg,
- size_t len, int flags, int *addr_len)
- {
- struct sk_psock *psock;
- struct vsock_sock *vsk;
- int copied;
- psock = sk_psock_get(sk);
- if (unlikely(!psock))
- return __vsock_recvmsg(sk, msg, len, flags);
- lock_sock(sk);
- vsk = vsock_sk(sk);
- if (!vsk->transport) {
- copied = -ENODEV;
- goto out;
- }
- if (vsock_has_data(sk, psock) && sk_psock_queue_empty(psock)) {
- release_sock(sk);
- sk_psock_put(sk, psock);
- return __vsock_recvmsg(sk, msg, len, flags);
- }
- copied = sk_msg_recvmsg(sk, psock, msg, len, flags);
- while (copied == 0) {
- long timeo = sock_rcvtimeo(sk, flags & MSG_DONTWAIT);
- if (!vsock_msg_wait_data(sk, psock, timeo)) {
- copied = -EAGAIN;
- break;
- }
- if (sk_psock_queue_empty(psock)) {
- release_sock(sk);
- sk_psock_put(sk, psock);
- return __vsock_recvmsg(sk, msg, len, flags);
- }
- copied = sk_msg_recvmsg(sk, psock, msg, len, flags);
- }
- out:
- release_sock(sk);
- sk_psock_put(sk, psock);
- return copied;
- }
- static void vsock_bpf_rebuild_protos(struct proto *prot, const struct proto *base)
- {
- *prot = *base;
- prot->close = sock_map_close;
- prot->recvmsg = vsock_bpf_recvmsg;
- prot->sock_is_readable = sk_msg_is_readable;
- }
- static void vsock_bpf_check_needs_rebuild(struct proto *ops)
- {
- /* Paired with the smp_store_release() below. */
- if (unlikely(ops != smp_load_acquire(&vsock_prot_saved))) {
- spin_lock_bh(&vsock_prot_lock);
- if (likely(ops != vsock_prot_saved)) {
- vsock_bpf_rebuild_protos(&vsock_bpf_prot, ops);
- /* Make sure proto function pointers are updated before publishing the
- * pointer to the struct.
- */
- smp_store_release(&vsock_prot_saved, ops);
- }
- spin_unlock_bh(&vsock_prot_lock);
- }
- }
- int vsock_bpf_update_proto(struct sock *sk, struct sk_psock *psock, bool restore)
- {
- struct vsock_sock *vsk;
- if (restore) {
- sk->sk_write_space = psock->saved_write_space;
- sock_replace_proto(sk, psock->sk_proto);
- return 0;
- }
- vsk = vsock_sk(sk);
- if (!vsk->transport)
- return -ENODEV;
- if (!vsk->transport->read_skb)
- return -EOPNOTSUPP;
- vsock_bpf_check_needs_rebuild(psock->sk_proto);
- sock_replace_proto(sk, &vsock_bpf_prot);
- return 0;
- }
- void __init vsock_bpf_build_proto(void)
- {
- vsock_bpf_rebuild_protos(&vsock_bpf_prot, &vsock_proto);
- }
|