* Re: [PATCH net] gtp: serialize PDP deletion with link teardown
2026-08-06 2:32 [PATCH net] gtp: serialize PDP deletion with link teardown Qing Ming
@ 2026-08-07 13:13 ` Simon Horman
2026-08-07 14:11 ` Pablo Neira Ayuso
2026-08-07 14:22 ` Pablo Neira Ayuso
2026-08-08 12:43 ` [PATCH net v2] gtp: serialize PDP context updates Qing Ming
2 siblings, 1 reply; 6+ messages in thread
From: Simon Horman @ 2026-08-07 13:13 UTC (permalink / raw)
To: Qing Ming
Cc: Pablo Neira Ayuso, Harald Welte, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, osmocom-net-gprs, netdev,
linux-kernel
On Thu, Aug 06, 2026 at 10:32:26AM +0800, Qing Ming wrote:
> PDP contexts can be deleted through GTP_CMD_DELPDP or while the GTP
> network device is being unregistered. The latter is serialized by RTNL,
> but the generic-netlink delete path only holds RCU.
>
> Running both paths concurrently can therefore make both paths delete the
> same PDP context. On a KASAN-enabled kernel, a reproducer racing DELPDP
> against RTM_DELLINK triggered:
>
> Oops: general protection fault, probably for non-canonical address
> KASAN: maybe wild-memory-access in range
> [0xdead000000000120-0xdead000000000127]
> RIP: gtp_genl_del_pdp+0x1c1/0x420 [gtp]
> RBP: dead000000000122
>
> The second deletion dereferenced the poisoned hlist pprev pointer.
>
> Take RTNL around the DELPDP lookup and deletion so that PDP creation,
> generic-netlink deletion and link teardown use the same serialization
> domain.
>
> Fixes: 459aa660eb1d ("gtp: add initial driver for datapath of GPRS Tunneling Protocol (GTP-U)")
> Signed-off-by: Qing Ming <a0yami@mailbox.org>
Hi,
I think it would be good to mention how this problem was found,
and to what extent it has been tested.
You may also want to consider adding an Assisted-by tag as appropriate.
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [PATCH net] gtp: serialize PDP deletion with link teardown
2026-08-07 13:13 ` Simon Horman
@ 2026-08-07 14:11 ` Pablo Neira Ayuso
0 siblings, 0 replies; 6+ messages in thread
From: Pablo Neira Ayuso @ 2026-08-07 14:11 UTC (permalink / raw)
To: Simon Horman
Cc: Qing Ming, Harald Welte, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, osmocom-net-gprs, netdev,
linux-kernel
Hi Simon,
On Fri, Aug 07, 2026 at 02:13:35PM +0100, Simon Horman wrote:
> On Thu, Aug 06, 2026 at 10:32:26AM +0800, Qing Ming wrote:
> > PDP contexts can be deleted through GTP_CMD_DELPDP or while the GTP
> > network device is being unregistered. The latter is serialized by RTNL,
> > but the generic-netlink delete path only holds RCU.
> >
> > Running both paths concurrently can therefore make both paths delete the
> > same PDP context. On a KASAN-enabled kernel, a reproducer racing DELPDP
> > against RTM_DELLINK triggered:
> >
> > Oops: general protection fault, probably for non-canonical address
> > KASAN: maybe wild-memory-access in range
> > [0xdead000000000120-0xdead000000000127]
> > RIP: gtp_genl_del_pdp+0x1c1/0x420 [gtp]
> > RBP: dead000000000122
> >
> > The second deletion dereferenced the poisoned hlist pprev pointer.
> >
> > Take RTNL around the DELPDP lookup and deletion so that PDP creation,
> > generic-netlink deletion and link teardown use the same serialization
> > domain.
> >
> > Fixes: 459aa660eb1d ("gtp: add initial driver for datapath of GPRS Tunneling Protocol (GTP-U)")
> > Signed-off-by: Qing Ming <a0yami@mailbox.org>
>
> Hi,
>
> I think it would be good to mention how this problem was found,
> and to what extent it has been tested.
I know what it is going on, I can take care of this, thanks!
> You may also want to consider adding an Assisted-by tag as appropriate.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH net] gtp: serialize PDP deletion with link teardown
2026-08-06 2:32 [PATCH net] gtp: serialize PDP deletion with link teardown Qing Ming
2026-08-07 13:13 ` Simon Horman
@ 2026-08-07 14:22 ` Pablo Neira Ayuso
2026-08-08 12:43 ` [PATCH net v2] gtp: serialize PDP context updates Qing Ming
2 siblings, 0 replies; 6+ messages in thread
From: Pablo Neira Ayuso @ 2026-08-07 14:22 UTC (permalink / raw)
To: Qing Ming
Cc: Harald Welte, David S. Miller, Eric Dumazet, Jakub Kicinski,
Paolo Abeni, osmocom-net-gprs, netdev, linux-kernel, Simon Horman
Hi,
On Thu, Aug 06, 2026 at 10:32:26AM +0800, Qing Ming wrote:
> PDP contexts can be deleted through GTP_CMD_DELPDP or while the GTP
> network device is being unregistered. The latter is serialized by RTNL,
> but the generic-netlink delete path only holds RCU.
>
> Running both paths concurrently can therefore make both paths delete the
> same PDP context. On a KASAN-enabled kernel, a reproducer racing DELPDP
> against RTM_DELLINK triggered:
>
> Oops: general protection fault, probably for non-canonical address
> KASAN: maybe wild-memory-access in range
> [0xdead000000000120-0xdead000000000127]
> RIP: gtp_genl_del_pdp+0x1c1/0x420 [gtp]
> RBP: dead000000000122
>
> The second deletion dereferenced the poisoned hlist pprev pointer.
>
> Take RTNL around the DELPDP lookup and deletion so that PDP creation,
> generic-netlink deletion and link teardown use the same serialization
> domain.
Could please you instead add a mutex to a use it to protect PDP ctx
updates? genetlink mutex is not enough, and I'd prefer not to fix this
with the rtnl lock.
Please, use this new mutex from gtp_dellink() path to protect the
iteration over the hashtable.
gtp_genl_del_pdp() must use it too as well as gtp_pdp_add().
Thanks.
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH net v2] gtp: serialize PDP context updates
2026-08-06 2:32 [PATCH net] gtp: serialize PDP deletion with link teardown Qing Ming
2026-08-07 13:13 ` Simon Horman
2026-08-07 14:22 ` Pablo Neira Ayuso
@ 2026-08-08 12:43 ` Qing Ming
2026-08-11 0:39 ` Jakub Kicinski
2 siblings, 1 reply; 6+ messages in thread
From: Qing Ming @ 2026-08-08 12:43 UTC (permalink / raw)
To: Pablo Neira Ayuso, Harald Welte
Cc: David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
osmocom-net-gprs, netdev, linux-kernel, Qing Ming
PDP contexts can be deleted through GTP_CMD_DELPDP or while the GTP
network device is being unregistered. The latter is serialized by RTNL,
but the generic-netlink delete path only holds RCU.
Running both paths concurrently can therefore make both paths delete the
same PDP context. The issue was found through static analysis and
reproduced on a KASAN-enabled kernel by a two-thread program
racing GTP_CMD_DELPDP against RTM_DELLINK:
Oops: general protection fault, probably for non-canonical address
KASAN: maybe wild-memory-access in range
[0xdead000000000120-0xdead000000000127]
RIP: gtp_genl_del_pdp+0x1c1/0x420 [gtp]
RBP: dead000000000122
The second deletion dereferenced the poisoned hlist pprev pointer.
Serialize PDP context updates with a mutex shared by gtp_pdp_add(),
gtp_genl_del_pdp(), and gtp_dellink().
Fixes: 459aa660eb1d ("gtp: add initial driver for datapath of GPRS Tunneling Protocol (GTP-U)")
Assisted-by: Codex:gpt-5
Signed-off-by: Qing Ming <a0yami@mailbox.org>
---
v2:
- Use a dedicated mutex instead of RTNL.
- Protect PDP add, delete, and link teardown with the same mutex.
drivers/net/gtp.c | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/drivers/net/gtp.c b/drivers/net/gtp.c
index 427b91aca50d..161d004e34b6 100644
--- a/drivers/net/gtp.c
+++ b/drivers/net/gtp.c
@@ -12,6 +12,7 @@
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include <linux/module.h>
+#include <linux/mutex.h>
#include <linux/skbuff.h>
#include <linux/udp.h>
#include <linux/rculist.h>
@@ -105,6 +106,7 @@ struct gtp_net {
};
static u32 gtp_h_initval;
+static DEFINE_MUTEX(gtp_pdp_lock);
static struct genl_family gtp_genl_family;
@@ -1546,9 +1548,11 @@ static void gtp_dellink(struct net_device *dev, struct list_head *head)
struct pdp_ctx *pctx;
int i;
+ mutex_lock(>p_pdp_lock);
for (i = 0; i < gtp->hash_size; i++)
hlist_for_each_entry_safe(pctx, next, >p->tid_hash[i], hlist_tid)
pdp_context_delete(pctx);
+ mutex_unlock(>p_pdp_lock);
list_del_rcu(>p->list);
unregister_netdevice_queue(dev, head);
@@ -1820,6 +1824,8 @@ static struct pdp_ctx *gtp_pdp_add(struct gtp_dev *gtp, struct sock *sk,
__be32 ms_addr;
int family;
+ guard(mutex)(>p_pdp_lock);
+
version = nla_get_u32(info->attrs[GTPA_VERSION]);
if (info->attrs[GTPA_FAMILY])
@@ -2127,6 +2133,8 @@ static int gtp_genl_del_pdp(struct sk_buff *skb, struct genl_info *info)
if (!info->attrs[GTPA_VERSION])
return -EINVAL;
+ mutex_lock(>p_pdp_lock);
+
rcu_read_lock();
pctx = gtp_find_pdp(sock_net(skb->sk), info->attrs);
@@ -2147,6 +2155,7 @@ static int gtp_genl_del_pdp(struct sk_buff *skb, struct genl_info *info)
out_unlock:
rcu_read_unlock();
+ mutex_unlock(>p_pdp_lock);
return err;
}
--
2.53.0
^ permalink raw reply related [flat|nested] 6+ messages in thread* Re: [PATCH net v2] gtp: serialize PDP context updates
2026-08-08 12:43 ` [PATCH net v2] gtp: serialize PDP context updates Qing Ming
@ 2026-08-11 0:39 ` Jakub Kicinski
0 siblings, 0 replies; 6+ messages in thread
From: Jakub Kicinski @ 2026-08-11 0:39 UTC (permalink / raw)
To: Qing Ming
Cc: Pablo Neira Ayuso, Harald Welte, David S. Miller, Eric Dumazet,
Paolo Abeni, osmocom-net-gprs, netdev, linux-kernel
On Sat, 8 Aug 2026 20:43:22 +0800 Qing Ming wrote:
> Subject: [PATCH net v2] gtp: serialize PDP context updates
This patch does not apply to net/main, please rebase and repost.
^ permalink raw reply [flat|nested] 6+ messages in thread