From: Paolo Abeni <pabeni@redhat.com>
To: 4ncienth@gmail.com
Cc: netdev@vger.kernel.org, sgarzare@redhat.com, stefanha@redhat.com,
bobbyeshleman@gmail.com, davem@davemloft.net,
edumazet@google.com, kuba@kernel.org, pabeni@redhat.com,
horms@kernel.org, mst@redhat.com, jasowangio@gmail.com,
xuanzhuo@linux.alibaba.com, eperezma@redhat.com,
bryan-bt.tan@broadcom.com, vishnu.dasa@broadcom.com,
bcm-kernel-feedback-list@broadcom.com,
virtualization@lists.linux.dev, kvm@vger.kernel.org,
linux-kernel@vger.kernel.org, sashiko-bot@kernel.org
Subject: Re: [PATCH net v3 2/2] vsock/vmci: validate packet source for connected sockets
Date: Tue, 25 Aug 2026 11:19:21 +0200 [thread overview]
Message-ID: <20260825091921.105436-1-pabeni@redhat.com> (raw)
In-Reply-To: <20260823175858.351431-3-4ncienth@gmail.com>
This is an AI-generated review of your patch. The human sending this
email has considered the AI review valid, or at least plausible.
Full review at: https://netdev-ai.bots.linux.dev/sashiko/
---
vsock/vmci: validate packet source for connected sockets
This adds a vsock_check_source() test to the VMCI stream receive paths so
that a non-listening socket found by the destination-only bound-table
lookup no longer processes packets from a context other than its stored
peer. The check is applied both under bh_lock_sock() in
vmci_transport_recv_stream_cb() and after lock_sock() in
vmci_transport_recv_pkt_work().
Closes: https://lore.kernel.org/netdev/20260814121255.6B5001F000E9@smtp.kernel.org/
> diff --git a/net/vmw_vsock/vmci_transport.c b/net/vmw_vsock/vmci_transport.c
> index 1c4ee039c1662..b612a9893856a 100644
> --- a/net/vmw_vsock/vmci_transport.c
> +++ b/net/vmw_vsock/vmci_transport.c
[ ... ]
> @@ -765,17 +767,26 @@ 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)
> + goto out;
> +
[Severity: Medium]
Should these two new exits still emit an RST before dropping the packet?
Consider a stream socket that called bind() but never listen().
__vsock_bind_connectible() puts it in the bound table with sk_state
TCP_CLOSE, remote_addr left as {VMADDR_CID_ANY, VMADDR_PORT_ANY}, and
vsk->transport still NULL, because vsock_assign_transport() is only
called for connectible sockets from vsock_connect() (and at create time
for SOCK_DGRAM).
A REQUEST from a remote context to that port misses
vsock_find_connected_socket(), is matched by vsock_find_bound_socket(),
and then reaches the new check. vsock_check_source() fails on its very
first test:
net/vmw_vsock/af_vsock.c:vsock_check_source() {
if (vsk->transport != transport)
return false;
...
}
So drop_pkt is set and "goto out" skips the kmalloc/schedule_work()
handoff entirely. vmci_transport_send_reset_bh() is only reached on the
"no socket found" and allocation-failure paths, so nothing is sent back.
The same happens on the deferred path below, where the new "goto out"
jumps over the whole sk_state switch, including the default: arm whose
in-tree comment says the reset is required:
> @@ -908,6 +920,10 @@ 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))
> + goto out;
>
> /* The local context ID may be out of date. */
> vsock_sk(sk)->local_addr.svm_cid = pkt->dg.dst.context;
net/vmw_vsock/vmci_transport.c:vmci_transport_recv_pkt_work() {
...
default:
/* Because this function does not run in the same context as
* vmci_transport_recv_stream_cb it is possible that the
* socket has closed. We need to let the other side know or it
* could be sitting in a connect and hang forever. Send a
* reset to prevent that.
*/
vmci_transport_send_reset(sk, pkt);
break;
}
Before this change that arm did transmit an RST for exactly this case,
since vmci_transport_send_reset() handles an unbound remote_addr by
replying to the packet's own source:
net/vmw_vsock/vmci_transport.c:vmci_transport_send_reset() {
...
if (vsock_addr_bound(&vsk->remote_addr)) {
dst_ptr = &vsk->remote_addr;
} else {
vsock_addr_init(&dst, pkt->dg.src.context,
pkt->src_port);
dst_ptr = &dst;
}
...
}
With the reply gone, does the remote connect() now block for
vsk->connect_timeout and return -ETIMEDOUT instead of -ECONNRESET? The
same loss of the reply would apply to a socket disconnected via
connect(AF_UNSPEC), which resets remote_addr to {VMADDR_CID_ANY,
VMADDR_PORT_ANY}.
Returning VMCI_ERROR_NO_ACCESS from the datagram callback does not turn
into a protocol reply, so is there anything left that notifies the peer?
For comparison, the virtio side runs the same source test but resets the
sender before dropping:
net/vmw_vsock/virtio_transport_common.c:virtio_transport_recv_pkt() {
...
if (sock_flag(sk, SOCK_DONE) ||
(sk->sk_state != TCP_LISTEN &&
!vsock_check_source(vsk, &t->transport, &src))) {
(void)virtio_transport_reset_no_sock(t, skb, net);
...
}
Would it make sense to follow that convention here, and to mention the
new drop-without-reply semantics in the changelog?
--
This is an AI-generated review.
prev parent reply other threads:[~2026-08-25 9:19 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-23 17:58 [PATCH net v3 0/2] vsock: validate packet sources after bound lookup fallback Daehyeon Ko
2026-08-23 17:58 ` [PATCH net v3 1/2] vsock/virtio: validate packet source for connected sockets Daehyeon Ko
2026-08-25 22:32 ` Bobby Eshleman
2026-08-23 17:58 ` [PATCH net v3 2/2] vsock/vmci: " Daehyeon Ko
2026-08-25 9:19 ` Paolo Abeni [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260825091921.105436-1-pabeni@redhat.com \
--to=pabeni@redhat.com \
--cc=4ncienth@gmail.com \
--cc=bcm-kernel-feedback-list@broadcom.com \
--cc=bobbyeshleman@gmail.com \
--cc=bryan-bt.tan@broadcom.com \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=eperezma@redhat.com \
--cc=horms@kernel.org \
--cc=jasowangio@gmail.com \
--cc=kuba@kernel.org \
--cc=kvm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mst@redhat.com \
--cc=netdev@vger.kernel.org \
--cc=sashiko-bot@kernel.org \
--cc=sgarzare@redhat.com \
--cc=stefanha@redhat.com \
--cc=virtualization@lists.linux.dev \
--cc=vishnu.dasa@broadcom.com \
--cc=xuanzhuo@linux.alibaba.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox