CVE-2026-53011
Received Received - Intake
BaseFortify

Publication date: 2026-06-24

Last updated on: 2026-06-24

Assigner: kernel.org

Description
In the Linux kernel, the following vulnerability has been resolved: net/sched: taprio: fix use-after-free in advance_sched() on schedule switch In advance_sched(), when should_change_schedules() returns true, switch_schedules() is called to promote the admin schedule to oper. switch_schedules() queues the old oper schedule for RCU freeing via call_rcu(), but 'next' still points into an entry of the old oper schedule. The subsequent 'next->end_time = end_time' and rcu_assign_pointer(q->current_entry, next) are use-after-free. Fix this by selecting 'next' from the new oper schedule immediately after switch_schedules(), and using its pre-calculated end_time. setup_first_end_time() sets the first entry's end_time to base_time + interval when the schedule is installed, so the value is already correct. The deleted 'end_time = sched_base_time(admin)' assignment was also harmful independently: it would overwrite the new first entry's pre-calculated end_time with just base_time.
CVSS Scores
EPSS Scores
Probability:
Percentile:
Meta Information
Published
2026-06-24
Last Modified
2026-06-24
Generated
2026-06-25
AI Q&A
2026-06-24
EPSS Evaluated
N/A
NVD
EUVD
Affected Vendors & Products
Showing 1 associated CPE
Vendor Product Version / Range
linux linux_kernel *
Helpful Resources
Exploitability
CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-UNKNOWN
Attack-Flow Graph
AI Quick Actions
Instant insights powered by AI
Executive Summary

This vulnerability is a use-after-free bug in the Linux kernel's network scheduler component called taprio, specifically in the advance_sched() function during a schedule switch.

When the function should_change_schedules() returns true, switch_schedules() is called to promote the admin schedule to operational. However, switch_schedules() queues the old operational schedule for deferred freeing, but a pointer named 'next' still references an entry in the old schedule.

Subsequent operations use this 'next' pointer after the old schedule has been freed, causing a use-after-free condition. The fix involves selecting 'next' from the new operational schedule immediately after switching schedules and using its pre-calculated end_time to avoid accessing freed memory.

Impact Analysis

This use-after-free vulnerability can lead to undefined behavior in the Linux kernel, such as system crashes, memory corruption, or potential escalation of privileges if exploited.

Because it occurs in the network scheduler, it might be triggered during network traffic scheduling operations, potentially affecting system stability and reliability.

Chat Assistant
Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-53011. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70
EPSS Chart