mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH net] tipc: reject name table updates with invalid origin node
@ 2026-07-31 10:16 Jun Yang
  2026-08-03  2:10 ` Tung Quang Nguyen
  0 siblings, 1 reply; 2+ messages in thread
From: Jun Yang @ 2026-07-31 10:16 UTC (permalink / raw)
  To: netdev
  Cc: Jun Yang, stable, TencentOS Corvus AI, Jon Maloy,
	David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
	Simon Horman, tipc-discussion, linux-kernel

From: Jun Yang <junvyyang@tencent.com>

tipc_update_nametbl() trusts the origin node carried in a received
NAME_DISTRIBUTOR message. For a WITHDRAWAL it removes and frees the
matching publication with tipc_nametbl_remove_publ() (a {key,ref}
wildcard match that ignores the node), then calls
tipc_node_unsubscribe() to unlink the publication from the advertising
node's publ_list.

tipc_node_unsubscribe() is a no-op when in_own_node(net, node) is true,
and in_own_node() treats node 0 as "own" (addr == own || !addr). So a
WITHDRAWAL with orignode == 0 frees the publication via kfree_rcu()
while the paired unsubscribe silently does nothing, leaving the freed
publication linked on the owning peer's publ_list through its
binding_node.

A subsequent legitimate WITHDRAWAL for a neighbouring publication that
the same peer advertised then performs list_del() across the freed
object, writing a kernel pointer into freed memory (use-after-free
write) and corrupting the live publ_list head. The whole sequence is
attacker-driven from received packets and is reachable by an
unprivileged local user, who can gain CAP_NET_ADMIN in a new network
namespace via unshare(CLONE_NEWUSER|CLONE_NEWNET), enable a TIPC UDP
bearer, and emulate a peer over loopback UDP.

A name table update must always originate from a real peer node, never
from our own address or from node 0. Reject such updates up front:
in_own_node() already covers both cases, so a single guard at the top
of tipc_update_nametbl() drops the malformed update before any
publication is removed or freed.

Fixes: 37922ea4a310 ("tipc: permit overlapping service ranges in name table")
Cc: stable@kernel.org
Reported-by: TencentOS Corvus AI <corvus@tencent.com>
Signed-off-by: Jun Yang <junvyyang@tencent.com>
---
 net/tipc/name_distr.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/net/tipc/name_distr.c b/net/tipc/name_distr.c
index ba4f4906e13b..a496e2e9ef62 100644
--- a/net/tipc/name_distr.c
+++ b/net/tipc/name_distr.c
@@ -286,6 +286,9 @@ static bool tipc_update_nametbl(struct net *net, struct distr_item *i,
 	u32 key = ntohl(i->key);
 	struct tipc_uaddr ua;
 
+	if (in_own_node(net, node))
+		return false;
+
 	/* A peer-advertised binding with lower > upper can never be matched
 	 * or withdrawn and would leak the publication; the local bind path
 	 * rejects such ranges, so reject ranges learned from the network too.
-- 
2.55.0


^ permalink raw reply	[flat|nested] 2+ messages in thread

* RE: [PATCH net] tipc: reject name table updates with invalid origin node
  2026-07-31 10:16 [PATCH net] tipc: reject name table updates with invalid origin node Jun Yang
@ 2026-08-03  2:10 ` Tung Quang Nguyen
  0 siblings, 0 replies; 2+ messages in thread
From: Tung Quang Nguyen @ 2026-08-03  2:10 UTC (permalink / raw)
  To: Jun Yang
  Cc: Jun Yang, stable, TencentOS Corvus AI, Jon Maloy,
	David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
	Simon Horman, tipc-discussion, linux-kernel, netdev

>Subject: [PATCH net] tipc: reject name table updates with invalid origin node
>
>From: Jun Yang <junvyyang@tencent.com>
>
>tipc_update_nametbl() trusts the origin node carried in a received
>NAME_DISTRIBUTOR message. For a WITHDRAWAL it removes and frees the
>matching publication with tipc_nametbl_remove_publ() (a {key,ref} wildcard
>match that ignores the node), then calls
>tipc_node_unsubscribe() to unlink the publication from the advertising node's
>publ_list.
>
>tipc_node_unsubscribe() is a no-op when in_own_node(net, node) is true,
>and in_own_node() treats node 0 as "own" (addr == own || !addr). So a
>WITHDRAWAL with orignode == 0 frees the publication via kfree_rcu() while
>the paired unsubscribe silently does nothing, leaving the freed publication
>linked on the owning peer's publ_list through its binding_node.
>
>A subsequent legitimate WITHDRAWAL for a neighbouring publication that the
>same peer advertised then performs list_del() across the freed object, writing
>a kernel pointer into freed memory (use-after-free
>write) and corrupting the live publ_list head. The whole sequence is attacker-
>driven from received packets and is reachable by an unprivileged local user,
>who can gain CAP_NET_ADMIN in a new network namespace via
>unshare(CLONE_NEWUSER|CLONE_NEWNET), enable a TIPC UDP bearer, and
>emulate a peer over loopback UDP.

Please do not create fake TIPC protocol message in insecure environment.
In insecure environment, IPSec needs to be used: https://datatracker.ietf.org/doc/html/draft-maloy-tipc-01.txt#section-6

>
>A name table update must always originate from a real peer node, never from
>our own address or from node 0. Reject such updates up front:
>in_own_node() already covers both cases, so a single guard at the top of
>tipc_update_nametbl() drops the malformed update before any publication is
>removed or freed.
>
>Fixes: 37922ea4a310 ("tipc: permit overlapping service ranges in name table")
>Cc: stable@kernel.org
>Reported-by: TencentOS Corvus AI <corvus@tencent.com>
>Signed-off-by: Jun Yang <junvyyang@tencent.com>
>---
> net/tipc/name_distr.c | 3 +++
> 1 file changed, 3 insertions(+)
>
>diff --git a/net/tipc/name_distr.c b/net/tipc/name_distr.c index
>ba4f4906e13b..a496e2e9ef62 100644
>--- a/net/tipc/name_distr.c
>+++ b/net/tipc/name_distr.c
>@@ -286,6 +286,9 @@ static bool tipc_update_nametbl(struct net *net, struct
>distr_item *i,
> 	u32 key = ntohl(i->key);
> 	struct tipc_uaddr ua;
>
>+	if (in_own_node(net, node))
>+		return false;

This is redundant because ' tipc_update_nametbl()' is called when receiving messages from other nodes.
 
>+
> 	/* A peer-advertised binding with lower > upper can never be
>matched
> 	 * or withdrawn and would leak the publication; the local bind path
> 	 * rejects such ranges, so reject ranges learned from the network too.
>--
>2.55.0
>


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2026-08-03  2:10 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-07-31 10:16 [PATCH net] tipc: reject name table updates with invalid origin node Jun Yang
2026-08-03  2:10 ` Tung Quang Nguyen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®