CVE-2026-89789 PUBLISHED

gtp: add synchronize_net() in gtp_newlink() error path to prevent use-after-free

Assigner: Linux
Reserved: 11.09.2026 Published: 16.09.2026 Updated: 16.09.2026

In the Linux kernel, the following vulnerability has been resolved:

gtp: add synchronize_net() in gtp_newlink() error path to prevent use-after-free

gtp_newlink()'s error path frees tid_hash and addr_hash without waiting for an RCU grace period after clearing sk_user_data. A concurrent gtp_encap_recv() in softirq may still hold the gtp_dev pointer obtained via rcu_dereference_sk_user_data() and access the freed memory.

BUG: KASAN: slab-use-after-free in gtp0_pdp_find+0x1f6/0x200 (gtp.c:152) Call Trace: <IRQ> gtp0_pdp_find+0x1f6/0x200 gtp_encap_recv+0x527/0x24b0 udp_queue_rcv_one_skb+0x75f/0xc10

Add synchronize_net() before the kfree calls in out_hashtable, which covers all error paths from both gtp_encap_enable() and gtp_create_sockets().

Metrics

CVSS Vector: CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
CVSS Score: 7.8

AV:L - The UAF is triggered from gtp_newlink()'s RTM_NEWLINK error path (ip link add type gtp), a local rtnetlink configuration interface. Concurrent gtp_encap_recv() in softirq only uses already-freed tid_hash/addr_hash; a remote GTP-U peer cannot cause the free. AC:L - The attacker controls both sides of the RCU race: one thread issues RTM_NEWLINK that fails after setup_udp_tunnel_sock() (invalid second FD, IPv4/IPv6 family mismatch, or register_netdevice failure) while another floods UDP datagrams at the encap socket so gtp_encap_recv() still holds the gtp_dev pointer across the kfree. PR:L - Creating a GTP device requires CAP_NET_ADMIN in the target netns via rtnl_link_get_net_capable()/netlink_ns_capable(). Unprivileged users obtain this through user+network namespaces (unshare -Urn); gtp_link_ops has no extra init-namespace check and MODULE_ALIAS_RTNL_LINK("gtp") permits module autoload. UI:N - The attacker opens its own UDP sockets, sends packets to them, and issues the failing RTM_NEWLINK from its own process. No separate victim action such as mounting a filesystem or opening a file is required. S:U - Impact is a host-kernel slab use-after-free in drivers/net/gtp.c, i.e. standard local privilege escalation within the same kernel security authority, not a KVM/Xen guest-to-host escape or IOMMU/DMA boundary bypass. C:H - gtp0_pdp_find()/gtp1_pdp_find() walk the attacker-sized freed tid_hash hlist under RCU. Heap spraying that slab yields a fake pdp_ctx and an arbitrary kernel read primitive, so Confidentiality is High per UAF guidance. I:H - A sprayed fake pdp_ctx is passed to gtp_rx(), which writes device stats, assigns skb->dev, and calls __netif_rx(); combined with UAF heap reuse this is an arbitrary write and control-flow hijack primitive, so Integrity is High. A:H - KASAN reports slab-use-after-free in gtp0_pdp_find from gtp_encap_recv in softirq (udp_queue_rcv_one_skb). The UAF causes a kernel oops or panic even when not fully exploited, so Availability is High.

Product Status

Vendor Linux
Product Linux
Versions Default: unaffected
  • affected from 459aa660eb1d8ce67080da1983bb81d716aa5a69 to fcafb2b1430824bae4258c01a439ec97ca0c6973 (excl.)
  • affected from 459aa660eb1d8ce67080da1983bb81d716aa5a69 to 3ca3da5c305caa873ddb81e8c6b118143f6dd3d1 (excl.)
  • affected from 459aa660eb1d8ce67080da1983bb81d716aa5a69 to 6f815c2fb6ab20385f81c353cdad0ea3b88132af (excl.)
  • affected from 459aa660eb1d8ce67080da1983bb81d716aa5a69 to e3b9aa0773abd5d4ed90be41ce5306c146d5b09e (excl.)
  • affected from 459aa660eb1d8ce67080da1983bb81d716aa5a69 to fd8396cfecbd904468c71362f08aaa25f96d5337 (excl.)
  • affected from 459aa660eb1d8ce67080da1983bb81d716aa5a69 to 7677eb2cbf2cc7446de474c01a6b06277c0051e5 (excl.)
  • affected from 459aa660eb1d8ce67080da1983bb81d716aa5a69 to 8d85498016a5bb56339734a14c276209fa65bafc (excl.)
  • affected from 459aa660eb1d8ce67080da1983bb81d716aa5a69 to d989e22ae9802c52c56ad4284d0caf26696cf6ae (excl.)
Vendor Linux
Product Linux
Versions Default: affected
  • Version 4.7 is affected
  • unaffected from 0 to 4.7 (excl.)
  • unaffected from 5.10.270 to 5.10.* (incl.)
  • unaffected from 5.15.221 to 5.15.* (incl.)
  • unaffected from 6.1.188 to 6.1.* (incl.)
  • unaffected from 6.6.157 to 6.6.* (incl.)
  • unaffected from 6.12.110 to 6.12.* (incl.)
  • unaffected from 6.18.52 to 6.18.* (incl.)
  • unaffected from 7.2.6 to 7.2.* (incl.)
  • unaffected from 7.3-rc1 to * (incl.)

References