CVE-2026-89748: tracing: Fix retry exhaustion in simple ring buffer reader swap

Published Sep 11, 2026
·
Updated

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

tracing: Fix retry exhaustion in simple ring buffer reader swap

simpleringbufferswapreaderpage() starts with retry set to 8 and post-decrements it only after a failed link replacement. On the final attempt, a successful replacement leaves retry at zero, while a failed replacement leaves it at -1.

The current !retry test reverses both outcomes. It returns an error after a successful final replacement, leaving the link update complete but the reader bookkeeping unfinished. After a failed final replacement, it falls through and updates the head and reader pointers as though the replacement succeeded, which can corrupt the ring.

Treat only a negative counter as exhaustion and return the documented -EBUSY error.

Affected Software

1 affected component
Linux Linux kernel

Event History

Sep 11, 2026
CVE Published
via MITRE·07:46 PM
Data Sourced
via MITRE·07:46 PM
Description

Frequently Asked Questions

1

What conditions are required to trigger the corruption scenario?

The issue requires simple_ring_buffer_swap_reader_page() to exhaust its retry sequence for a reader-page link replacement. On the final failed replacement attempt, the function can proceed as if the replacement succeeded and update head and reader pointers, corrupting the ring.

2

What happens if the final retry succeeds?

A successful link replacement on the final attempt can be incorrectly treated as an error because the retry counter reaches zero. The link update is already complete, but reader bookkeeping is left unfinished.

3

What is the corrected behavior when retries are exhausted?

Retry exhaustion is now recognized only when the counter becomes negative. In that case, the function returns the documented -EBUSY error instead of updating ring pointers as though the replacement succeeded.

Contact

SecAlerts Pty Ltd.
132 Wickham Terrace
Fortitude Valley,
QLD 4006, Australia
info@secalerts.co
By using SecAlerts services, you agree to our services end-user license agreement. This website is safeguarded by reCAPTCHA and governed by the Google Privacy Policy and Terms of Service. All names, logos, and brands of products are owned by their respective owners, and any usage of these names, logos, and brands for identification purposes only does not imply endorsement. If you possess any content that requires removal, please get in touch with us.
© 2026 SecAlerts Pty Ltd.
ABN: 70 645 966 203, ACN: 645 966 203