CVE-2026-93061: gpu: host1x: Avoid stack over-read in debug output helpers

Published Sep 17, 2026
·
Updated

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

gpu: host1x: Avoid stack over-read in debug output helpers

host1xdebugoutput() and host1xdebugcont() used vsnprintf(), which returns the length the formatted string would have reached with an unbounded buffer. That return value was passed straight to o->fn as the number of bytes to emit.

This could cause a read past end of the output buffer if a call to host1xdebug produced a string longer than 256 bytes. This only affected the debugfs files as the printk debug sink ignores the number of bytes. In practice, this is very unlikely to occur.

Fix by switching to vscnprintf(), which returns the number of bytes actually written.

Affected Software

1 affected component
Linux Kernel

Event History

Sep 17, 2026
CVE Published
via MITRE·04:10 PM
Data Sourced
via MITRE·04:10 PM
Description

Frequently Asked Questions

1

Which interfaces are affected by this issue?

Only the host1x debugfs files are affected. The printk debug sink ignores the byte count and is not affected by this behavior.

2

What condition is required to trigger the over-read?

A call to host1x_debug_output() or host1x_debug_cont() must produce formatted output longer than 256 bytes. The oversized length returned by vsnprintf() could then be used to emit bytes beyond the output buffer.

3

How likely is this to occur in practice?

The available information states that this is very unlikely to occur in practice.

4

What change resolves the issue?

The fix replaces vsnprintf() with vscnprintf() in the affected debug output helpers, so the emitted length reflects the bytes actually written to the buffer.

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