* [PATCH v4 net] tipc: fix null-ptr-deref when acquiring remote ip of ethernet bearer
@ 2025-06-17 5:56 Haixia Qu
2025-06-17 6:12 ` Tung Quang Nguyen
2025-06-18 21:30 ` patchwork-bot+netdevbpf
0 siblings, 2 replies; 3+ messages in thread
From: Haixia Qu @ 2025-06-17 5:56 UTC (permalink / raw)
To: Jon Maloy, David S. Miller, Eric Dumazet, Jakub Kicinski,
Paolo Abeni, Simon Horman
Cc: Haixia Qu, netdev, tipc-discussion, linux-kernel
The reproduction steps:
1. create a tun interface
2. enable l2 bearer
3. TIPC_NL_UDP_GET_REMOTEIP with media name set to tun
tipc: Started in network mode
tipc: Node identity 8af312d38a21, cluster identity 4711
tipc: Enabled bearer <eth:syz_tun>, priority 1
Oops: general protection fault
KASAN: null-ptr-deref in range
CPU: 1 UID: 1000 PID: 559 Comm: poc Not tainted 6.16.0-rc1+ #117 PREEMPT
Hardware name: QEMU Ubuntu 24.04 PC
RIP: 0010:tipc_udp_nl_dump_remoteip+0x4a4/0x8f0
the ub was in fact a struct dev.
when bid != 0 && skip_cnt != 0, bearer_list[bid] may be NULL or
other media when other thread changes it.
fix this by checking media_id.
Fixes: 832629ca5c313 ("tipc: add UDP remoteip dump to netlink API")
Signed-off-by: Haixia Qu <hxqu@hillstonenet.com>
---
v4:
- make commit message more descriptive
v3: https://patchwork.kernel.org/project/netdevbpf/patch/20250616042901.12978-1-hxqu@hillstonenet.com/
- add Fixes tag in commit message
- add target tree net
---
net/tipc/udp_media.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net/tipc/udp_media.c b/net/tipc/udp_media.c
index 108a4cc2e001..258d6aa4f21a 100644
--- a/net/tipc/udp_media.c
+++ b/net/tipc/udp_media.c
@@ -489,7 +489,7 @@ int tipc_udp_nl_dump_remoteip(struct sk_buff *skb, struct netlink_callback *cb)
rtnl_lock();
b = tipc_bearer_find(net, bname);
- if (!b) {
+ if (!b || b->bcast_addr.media_id != TIPC_MEDIA_TYPE_UDP) {
rtnl_unlock();
return -EINVAL;
}
@@ -500,7 +500,7 @@ int tipc_udp_nl_dump_remoteip(struct sk_buff *skb, struct netlink_callback *cb)
rtnl_lock();
b = rtnl_dereference(tn->bearer_list[bid]);
- if (!b) {
+ if (!b || b->bcast_addr.media_id != TIPC_MEDIA_TYPE_UDP) {
rtnl_unlock();
return -EINVAL;
}
--
2.43.0
^ permalink raw reply [flat|nested] 3+ messages in thread
* RE: [PATCH v4 net] tipc: fix null-ptr-deref when acquiring remote ip of ethernet bearer
2025-06-17 5:56 [PATCH v4 net] tipc: fix null-ptr-deref when acquiring remote ip of ethernet bearer Haixia Qu
@ 2025-06-17 6:12 ` Tung Quang Nguyen
2025-06-18 21:30 ` patchwork-bot+netdevbpf
1 sibling, 0 replies; 3+ messages in thread
From: Tung Quang Nguyen @ 2025-06-17 6:12 UTC (permalink / raw)
To: Haixia Qu, Jon Maloy, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, Simon Horman
Cc: netdev, tipc-discussion, linux-kernel
>Subject: [PATCH v4 net] tipc: fix null-ptr-deref when acquiring remote ip of
>ethernet bearer
>
>The reproduction steps:
>1. create a tun interface
>2. enable l2 bearer
>3. TIPC_NL_UDP_GET_REMOTEIP with media name set to tun
>
>tipc: Started in network mode
>tipc: Node identity 8af312d38a21, cluster identity 4711
>tipc: Enabled bearer <eth:syz_tun>, priority 1
>Oops: general protection fault
>KASAN: null-ptr-deref in range
>CPU: 1 UID: 1000 PID: 559 Comm: poc Not tainted 6.16.0-rc1+ #117 PREEMPT
>Hardware name: QEMU Ubuntu 24.04 PC
>RIP: 0010:tipc_udp_nl_dump_remoteip+0x4a4/0x8f0
>
>the ub was in fact a struct dev.
>
>when bid != 0 && skip_cnt != 0, bearer_list[bid] may be NULL or other media
>when other thread changes it.
>
>fix this by checking media_id.
>
>Fixes: 832629ca5c313 ("tipc: add UDP remoteip dump to netlink API")
>Signed-off-by: Haixia Qu <hxqu@hillstonenet.com>
>---
>v4:
> - make commit message more descriptive
>v3:
>https://patchwork.kernel.org/project/netdevbpf/patch/20250616042901.12978
>-1-hxqu@hillstonenet.com/
> - add Fixes tag in commit message
> - add target tree net
>---
> net/tipc/udp_media.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
>diff --git a/net/tipc/udp_media.c b/net/tipc/udp_media.c index
>108a4cc2e001..258d6aa4f21a 100644
>--- a/net/tipc/udp_media.c
>+++ b/net/tipc/udp_media.c
>@@ -489,7 +489,7 @@ int tipc_udp_nl_dump_remoteip(struct sk_buff *skb,
>struct netlink_callback *cb)
>
> rtnl_lock();
> b = tipc_bearer_find(net, bname);
>- if (!b) {
>+ if (!b || b->bcast_addr.media_id != TIPC_MEDIA_TYPE_UDP) {
> rtnl_unlock();
> return -EINVAL;
> }
>@@ -500,7 +500,7 @@ int tipc_udp_nl_dump_remoteip(struct sk_buff *skb,
>struct netlink_callback *cb)
>
> rtnl_lock();
> b = rtnl_dereference(tn->bearer_list[bid]);
>- if (!b) {
>+ if (!b || b->bcast_addr.media_id != TIPC_MEDIA_TYPE_UDP) {
> rtnl_unlock();
> return -EINVAL;
> }
>--
>2.43.0
>
Reviewed-by: Tung Nguyen <tung.quang.nguyen@est.tech>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v4 net] tipc: fix null-ptr-deref when acquiring remote ip of ethernet bearer
2025-06-17 5:56 [PATCH v4 net] tipc: fix null-ptr-deref when acquiring remote ip of ethernet bearer Haixia Qu
2025-06-17 6:12 ` Tung Quang Nguyen
@ 2025-06-18 21:30 ` patchwork-bot+netdevbpf
1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+netdevbpf @ 2025-06-18 21:30 UTC (permalink / raw)
To: Haixia Qu
Cc: jmaloy, davem, edumazet, kuba, pabeni, horms, netdev,
tipc-discussion, linux-kernel
Hello:
This patch was applied to netdev/net.git (main)
by Jakub Kicinski <kuba@kernel.org>:
On Tue, 17 Jun 2025 05:56:24 +0000 you wrote:
> The reproduction steps:
> 1. create a tun interface
> 2. enable l2 bearer
> 3. TIPC_NL_UDP_GET_REMOTEIP with media name set to tun
>
> tipc: Started in network mode
> tipc: Node identity 8af312d38a21, cluster identity 4711
> tipc: Enabled bearer <eth:syz_tun>, priority 1
> Oops: general protection fault
> KASAN: null-ptr-deref in range
> CPU: 1 UID: 1000 PID: 559 Comm: poc Not tainted 6.16.0-rc1+ #117 PREEMPT
> Hardware name: QEMU Ubuntu 24.04 PC
> RIP: 0010:tipc_udp_nl_dump_remoteip+0x4a4/0x8f0
>
> [...]
Here is the summary with links:
- [v4,net] tipc: fix null-ptr-deref when acquiring remote ip of ethernet bearer
https://git.kernel.org/netdev/net/c/f82727adcf29
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-06-18 21:29 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-06-17 5:56 [PATCH v4 net] tipc: fix null-ptr-deref when acquiring remote ip of ethernet bearer Haixia Qu
2025-06-17 6:12 ` Tung Quang Nguyen
2025-06-18 21:30 ` patchwork-bot+netdevbpf
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®