In the Linux kernel, the following vulnerability has been resolved: hdlc_ppp: sync per-proto timers before freeing hdlc state Each PPP control… (CVE-2026-63803)
In the Linux kernel, the following vulnerability has been resolved: hdlc_ppp: sync per-proto timers before freeing hdlc state Each PPP control protocol (LCP/IPCP/IPV6CP) embedded in struct ppp registers a timer via timer_setup(). That struct ppp is the hdlc->state allocation, which detach_hdlc_protocol() frees with kfree() in both teardown paths: unregister_hdlc_device() and the re-attach inside attach_hdlc_protocol(). The ppp proto never registered a .detach callback, so detach_hdlc_protocol() performs no timer synchronization before the kfree(). The only cancel, timer_delete(&proto->timer) in ppp_cp_event(), is partial (it does not wait for a running callback) and only runs on the ->CLOSED transition; ppp_stop()/ppp_close() do not sync either. A ppp_timer callback already executing (blocked on ppp->lock) survives the kfree and then dereferences proto->state / ppp->lock in freed memory, leading to a use-after-free. Fix this by adding a .detach helper that calls timer_shutdown_sync() on every per-proto timer. detach_hdlc_protocol() invokes proto->detach(dev) before kfree(hdlc->state), so timer_shutdown_sync() now runs on both free paths. timer_shutdown_sync() is used instead of timer_delete_sync() because the keepalive path re-arms the timer through add_timer()/mod_timer() and shutdown blocks any re-activation during teardown. Initialize the per-protocol timers in ppp_ioctl() when the protocol is attached, and remove the now-redundant timer_setup() from ppp_start(), so that the timers are initialized exactly once at attach time and ppp_timer_release() never operates on uninitialized timer_list structures. attach_hdlc_protocol() uses kmalloc() (not kzalloc), so struct ppp's protos[i].timer is uninitialized garbage until the first timer_setup(); without this init-at-attach, attaching the PPP protocol without ever bringing the device up would leave timer_shutdown_sync() operating on uninitialized memory in .detach. Moving the init out of ppp_start() (which only runs on NETDEV_UP) into the attach path makes the initialization unconditional and avoids initializing the same timer_list twice. This bug was found by static analysis.
AI Analysis
Technical Summary
In the Linux kernel's hdlc_ppp driver, each PPP control protocol (LCP/IPCP/IPv6CP) registers a timer linked to the struct ppp state. The vulnerability occurs because the ppp proto did not register a .detach callback to synchronize timers before freeing the hdlc state, allowing a timer callback to execute after the memory was freed, causing a use-after-free. The fix adds a .detach helper that calls timer_shutdown_sync() on each per-protocol timer, ensuring timers are properly synchronized before memory is freed. Additionally, timer initialization was moved to the attach phase to avoid uninitialized timer structures. This bug was discovered via static analysis.
Potential Impact
The vulnerability can lead to use-after-free conditions in kernel memory, which may cause system instability or crashes. While no known exploits in the wild have been reported, such memory corruption issues in kernel code can potentially be leveraged for privilege escalation or denial of service.
Mitigation Recommendations
A fix has been implemented in the Linux kernel source code that adds proper timer synchronization before freeing PPP protocol state. Users should apply the official Linux kernel updates that include this patch once available. Patch status is not yet confirmed in this data; check the vendor advisory for current remediation guidance.
In the Linux kernel, the following vulnerability has been resolved: hdlc_ppp: sync per-proto timers before freeing hdlc state Each PPP control… (CVE-2026-63803)
Description
In the Linux kernel, the following vulnerability has been resolved: hdlc_ppp: sync per-proto timers before freeing hdlc state Each PPP control protocol (LCP/IPCP/IPV6CP) embedded in struct ppp registers a timer via timer_setup(). That struct ppp is the hdlc->state allocation, which detach_hdlc_protocol() frees with kfree() in both teardown paths: unregister_hdlc_device() and the re-attach inside attach_hdlc_protocol(). The ppp proto never registered a .detach callback, so detach_hdlc_protocol() performs no timer synchronization before the kfree(). The only cancel, timer_delete(&proto->timer) in ppp_cp_event(), is partial (it does not wait for a running callback) and only runs on the ->CLOSED transition; ppp_stop()/ppp_close() do not sync either. A ppp_timer callback already executing (blocked on ppp->lock) survives the kfree and then dereferences proto->state / ppp->lock in freed memory, leading to a use-after-free. Fix this by adding a .detach helper that calls timer_shutdown_sync() on every per-proto timer. detach_hdlc_protocol() invokes proto->detach(dev) before kfree(hdlc->state), so timer_shutdown_sync() now runs on both free paths. timer_shutdown_sync() is used instead of timer_delete_sync() because the keepalive path re-arms the timer through add_timer()/mod_timer() and shutdown blocks any re-activation during teardown. Initialize the per-protocol timers in ppp_ioctl() when the protocol is attached, and remove the now-redundant timer_setup() from ppp_start(), so that the timers are initialized exactly once at attach time and ppp_timer_release() never operates on uninitialized timer_list structures. attach_hdlc_protocol() uses kmalloc() (not kzalloc), so struct ppp's protos[i].timer is uninitialized garbage until the first timer_setup(); without this init-at-attach, attaching the PPP protocol without ever bringing the device up would leave timer_shutdown_sync() operating on uninitialized memory in .detach. Moving the init out of ppp_start() (which only runs on NETDEV_UP) into the attach path makes the initialization unconditional and avoids initializing the same timer_list twice. This bug was found by static analysis.
CVSS v3.1
AI-Powered Analysis
Machine-generated threat intelligence
Technical Analysis
In the Linux kernel's hdlc_ppp driver, each PPP control protocol (LCP/IPCP/IPv6CP) registers a timer linked to the struct ppp state. The vulnerability occurs because the ppp proto did not register a .detach callback to synchronize timers before freeing the hdlc state, allowing a timer callback to execute after the memory was freed, causing a use-after-free. The fix adds a .detach helper that calls timer_shutdown_sync() on each per-protocol timer, ensuring timers are properly synchronized before memory is freed. Additionally, timer initialization was moved to the attach phase to avoid uninitialized timer structures. This bug was discovered via static analysis.
Potential Impact
The vulnerability can lead to use-after-free conditions in kernel memory, which may cause system instability or crashes. While no known exploits in the wild have been reported, such memory corruption issues in kernel code can potentially be leveraged for privilege escalation or denial of service.
Mitigation Recommendations
A fix has been implemented in the Linux kernel source code that adds proper timer synchronization before freeing PPP protocol state. Users should apply the official Linux kernel updates that include this patch once available. Patch status is not yet confirmed in this data; check the vendor advisory for current remediation guidance.
Technical Details
- Gcve Source
- db.gcve.eu
- Osv Id
- GHSA-3hpx-wjcg-9r3x
- Osv Schema Version
- 1.4.0
- Aliases
- ["CVE-2026-63803"]
- Ecosystems
- []
- Database Specific Severity
- null
- Cvss Version
- null
Threat ID: 6a5d27ad2a4a8d5989131f22
Added to database: 07/19/2026, 19:38:21 UTC
Last enriched: 07/19/2026, 20:22:10 UTC
Last updated: 07/20/2026, 19:41:22 UTC
Views: 17
Community Reviews
0 reviewsCrowdsource mitigation strategies, share intel context, and vote on the most helpful responses. Sign in to add your voice and help keep defenders ahead.
Want to contribute mitigation steps or threat intel context? Sign in or create an account to join the community discussion.
Actions
Updates to AI analysis require Pro Console access. Upgrade inside Console → Billing.
Need more coverage?
Upgrade to Pro Console for AI refresh and higher limits.
For incident response and remediation, OffSeq services can help resolve threats faster.
Latest Threats
Check if your credentials are on the dark web
Instant breach scanning across billions of leaked records. Free tier available.