Skip to content

Commit cfb3ce0

Browse files
AldoAriel12gregkh
authored andcommitted
rds: drop incoming messages that cross network namespace boundaries
[ Upstream commit 5521ae7 ] rds_find_bound() looks up the destination socket using a global rhashtable keyed solely on (addr, port, scope_id). Network namespaces are not part of the key, so a sender in netns A can deliver an incoming message (inc) to a socket that lives in a different netns B. When this happens, inc->i_conn points to an rds_connection whose c_net is netns A, but the receiving rs lives in netns B. Once the child process that created netns A exits, cleanup_net() calls rds_loop_exit_net() -> rds_loop_kill_conns() -> rds_conn_destroy(), freeing that connection. If the survivor socket in netns B still holds the inc, any subsequent dereference of inc->i_conn is a use-after-free. There are two dangerous sites in rds_clear_recv_queue(): 1. inc->i_conn->c_lcong (offset 88 of freed rds_connection, size 200) read via rds_recv_rcvbuf_delta() -- confirmed by KASAN. 2. inc->i_conn->c_trans->inc_free(inc) (function pointer at offset 80) called via rds_inc_put() when the inc refcount reaches zero -- same race window, potential call-through-freed-object primitive. The bug is reachable from unprivileged user namespaces (CLONE_NEWUSER + CLONE_NEWNET), available since Linux 3.8. Fix this by rejecting the delivery in rds_recv_incoming() when the socket returned by rds_find_bound() belongs to a different network namespace than the connection that carried the message. Use the existing rds_conn_net() / sock_net() helpers and net_eq() for the comparison. Fixes: c809195 ("rds: clean up loopback rds_connections on netns deletion") Signed-off-by: Aldo Ariel Panzardo <qwe.aldo@gmail.com> Reviewed-by: Allison Henderson <achender@kernel.org> Tested-by: Allison Henderson <achender@kernel.org> Signed-off-by: Allison Henderson <achender@kernel.org> Link: https://patch.msgid.link/20260708024314.601139-1-achender@kernel.org Signed-off-by: Paolo Abeni <pabeni@redhat.com> Signed-off-by: Sasha Levin <sashal@kernel.org>
1 parent 690ce66 commit cfb3ce0

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

net/rds/recv.c

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -366,6 +366,21 @@ void rds_recv_incoming(struct rds_connection *conn, struct in6_addr *saddr,
366366
goto out;
367367
}
368368

369+
/*
370+
* rds_find_bound() uses a global (netns-agnostic) hash table.
371+
* An RDS connection created in netns A can match a socket bound
372+
* in the init netns, delivering inc cross-netns with inc->i_conn
373+
* pointing into netns A. When cleanup_net() then frees that conn,
374+
* any subsequent dereference of inc->i_conn is a use-after-free.
375+
* Drop the inc if the receiving socket lives in a different netns.
376+
*/
377+
if (!net_eq(sock_net(rds_rs_to_sk(rs)), rds_conn_net(conn))) {
378+
rds_stats_inc(s_recv_drop_no_sock);
379+
rds_sock_put(rs);
380+
rs = NULL;
381+
goto out;
382+
}
383+
369384
/* Process extension headers */
370385
rds_recv_incoming_exthdrs(inc, rs);
371386

0 commit comments

Comments
 (0)