mirror of
https://github.com/torvalds/linux.git
synced 2026-09-12 20:53:03 +02:00
Merge branch 'vsock-validate-packet-sources-after-bound-lookup-fallback'
Daehyeon Ko says: ==================== vsock: validate packet sources after bound lookup fallback Both virtio and VMCI look up connected sockets by the full tuple before falling back to a destination-only bound lookup. The fallback can select a non-listening socket without validating the packet source. V2 covered only the virtio path. Following Stefano's review, this series moves the source and transport validation into a documented AF_VSOCK helper and uses it for both virtio and VMCI. The VMCI patch checks both its bottom-half and deferred workqueue receive paths. V4 preserves VMCI's existing RST behavior when source validation fails. The reset is addressed from the received packet so that a bound but non-listening or concurrently closed socket still notifies the sender, without directing the reset to a connected socket's stored peer. The v3 regression was reproduced in three x86_64 KASAN boots: a REQUEST to a bound but non-listening socket returned VMCI_ERROR_NO_ACCESS but no RST arrived within one second. With v4, the sending context received the expected RST in all three boots. The original VMCI source-validation oracle also passed in three v4 boots: a matched RST reset the pending socket while a mismatched-context RST left it pending. No KASAN report occurred. Patch 1 is unchanged from v3 (identical stable patch-id) and carries Bobby's Reviewed-by for that revision. Its v3 validation covered the cross-UID injection oracle, local CID aliases, selected VSOCK selftests, and W=1 changed-object builds under allmodconfig and allyesconfig. The current-tree guest-CID vhost probe could not be rerun because the test user lacks access to /dev/vhost-vsock. ==================== Link: https://patch.msgid.link/20260826003929.966160-1-4ncienth@gmail.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
commit
9d0f206eb3
|
|
@ -229,6 +229,9 @@ struct sock *vsock_find_bound_socket_net(struct sockaddr_vm *addr,
|
|||
struct sock *vsock_find_connected_socket_net(struct sockaddr_vm *src,
|
||||
struct sockaddr_vm *dst,
|
||||
struct net *net);
|
||||
bool vsock_check_source(const struct vsock_sock *vsk,
|
||||
const struct vsock_transport *transport,
|
||||
const struct sockaddr_vm *src);
|
||||
void vsock_remove_sock(struct vsock_sock *vsk);
|
||||
void vsock_for_each_connected_socket(struct vsock_transport *transport,
|
||||
void (*fn)(struct sock *sk));
|
||||
|
|
|
|||
|
|
@ -438,6 +438,38 @@ struct sock *vsock_find_connected_socket(struct sockaddr_vm *src,
|
|||
}
|
||||
EXPORT_SYMBOL_GPL(vsock_find_connected_socket);
|
||||
|
||||
/**
|
||||
* vsock_check_source - validate a packet source against a socket peer
|
||||
* @vsk: socket receiving the packet
|
||||
* @transport: transport receiving the packet
|
||||
* @src: source address from the packet
|
||||
*
|
||||
* Return: true if the packet arrived on the socket's assigned transport and
|
||||
* its source matches the stored peer. Loopback packets are generated
|
||||
* internally and always use the local CID as their source, including
|
||||
* connections using a valid CID alias.
|
||||
*
|
||||
* The caller must hold the socket lock and must not call this for listening
|
||||
* sockets, which accept packets from any source and have no assigned
|
||||
* transport.
|
||||
*/
|
||||
bool vsock_check_source(const struct vsock_sock *vsk,
|
||||
const struct vsock_transport *transport,
|
||||
const struct sockaddr_vm *src)
|
||||
{
|
||||
if (vsk->transport != transport)
|
||||
return false;
|
||||
|
||||
if (src->svm_port != vsk->remote_addr.svm_port)
|
||||
return false;
|
||||
|
||||
if (src->svm_cid == vsk->remote_addr.svm_cid)
|
||||
return true;
|
||||
|
||||
return transport->get_local_cid() == VMADDR_CID_LOCAL;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(vsock_check_source);
|
||||
|
||||
void vsock_remove_sock(struct vsock_sock *vsk)
|
||||
{
|
||||
/* Transport reassignment must not remove the binding. */
|
||||
|
|
|
|||
|
|
@ -1836,7 +1836,8 @@ void virtio_transport_recv_pkt(struct virtio_transport *t,
|
|||
* lock_sock (note: listener sockets are not assigned to any transport)
|
||||
*/
|
||||
if (sock_flag(sk, SOCK_DONE) ||
|
||||
(sk->sk_state != TCP_LISTEN && vsk->transport != &t->transport)) {
|
||||
(sk->sk_state != TCP_LISTEN &&
|
||||
!vsock_check_source(vsk, &t->transport, &src))) {
|
||||
(void)virtio_transport_reset_no_sock(t, skb, net);
|
||||
release_sock(sk);
|
||||
sock_put(sk);
|
||||
|
|
|
|||
|
|
@ -680,11 +680,13 @@ static int vmci_transport_recv_stream_cb(void *data, struct vmci_datagram *dg)
|
|||
struct vmci_transport_packet *pkt;
|
||||
struct vsock_sock *vsk;
|
||||
bool bh_process_pkt;
|
||||
bool drop_pkt;
|
||||
int err;
|
||||
|
||||
sk = NULL;
|
||||
err = VMCI_SUCCESS;
|
||||
bh_process_pkt = false;
|
||||
drop_pkt = false;
|
||||
|
||||
/* Ignore incoming packets from resources that aren't vsock
|
||||
* implementations.
|
||||
|
|
@ -765,17 +767,29 @@ static int vmci_transport_recv_stream_cb(void *data, struct vmci_datagram *dg)
|
|||
bh_lock_sock(sk);
|
||||
|
||||
if (!sock_owned_by_user(sk)) {
|
||||
/* The local context ID may be out of date, update it. */
|
||||
vsk->local_addr.svm_cid = dst.svm_cid;
|
||||
if (sk->sk_state != TCP_LISTEN &&
|
||||
!vsock_check_source(vsk, &vmci_transport, &src)) {
|
||||
drop_pkt = true;
|
||||
err = VMCI_ERROR_NO_ACCESS;
|
||||
} else {
|
||||
/* The local context ID may be out of date, update it. */
|
||||
vsk->local_addr.svm_cid = dst.svm_cid;
|
||||
|
||||
if (sk->sk_state == TCP_ESTABLISHED)
|
||||
vmci_trans(vsk)->notify_ops->handle_notify_pkt(
|
||||
sk, pkt, true, &dst, &src,
|
||||
&bh_process_pkt);
|
||||
if (sk->sk_state == TCP_ESTABLISHED)
|
||||
vmci_trans(vsk)->notify_ops->handle_notify_pkt(sk, pkt, true,
|
||||
&dst, &src,
|
||||
&bh_process_pkt);
|
||||
}
|
||||
}
|
||||
|
||||
bh_unlock_sock(sk);
|
||||
|
||||
if (drop_pkt) {
|
||||
if (vmci_transport_send_reset_bh(&dst, &src, pkt) < 0)
|
||||
pr_err("unable to send reset\n");
|
||||
goto out;
|
||||
}
|
||||
|
||||
if (!bh_process_pkt) {
|
||||
struct vmci_transport_recv_pkt_info *recv_pkt_info;
|
||||
|
||||
|
|
@ -900,6 +914,7 @@ static void vmci_transport_recv_pkt_work(struct work_struct *work)
|
|||
{
|
||||
struct vmci_transport_recv_pkt_info *recv_pkt_info;
|
||||
struct vmci_transport_packet *pkt;
|
||||
struct sockaddr_vm src;
|
||||
struct sock *sk;
|
||||
|
||||
recv_pkt_info =
|
||||
|
|
@ -908,6 +923,12 @@ static void vmci_transport_recv_pkt_work(struct work_struct *work)
|
|||
pkt = &recv_pkt_info->pkt;
|
||||
|
||||
lock_sock(sk);
|
||||
vsock_addr_init(&src, pkt->dg.src.context, pkt->src_port);
|
||||
if (sk->sk_state != TCP_LISTEN &&
|
||||
!vsock_check_source(vsock_sk(sk), &vmci_transport, &src)) {
|
||||
vmci_transport_reply_reset(pkt);
|
||||
goto out;
|
||||
}
|
||||
|
||||
/* The local context ID may be out of date. */
|
||||
vsock_sk(sk)->local_addr.svm_cid = pkt->dg.dst.context;
|
||||
|
|
@ -937,6 +958,7 @@ static void vmci_transport_recv_pkt_work(struct work_struct *work)
|
|||
break;
|
||||
}
|
||||
|
||||
out:
|
||||
release_sock(sk);
|
||||
kfree(recv_pkt_info);
|
||||
/* Release reference obtained in the stream callback when we fetched
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user