Back to overview

CVE-2026-53306

Description
In the Linux kernel, the following vulnerability has been resolved: tty: hvc_iucv: fix off-by-one in number of supported devices MAX_HVC_IUCV_LINES == HVC_ALLOC_TTY_ADAPTERS == 8. This is the number of entries in: static struct hvc_iucv_private *hvc_iucv_table[MAX_HVC_IUCV_LINES]; Sometimes hvc_iucv_table[] is limited by: (a) if (num > hvc_iucv_devices) // for error detection or (b) for (i = 0; i < hvc_iucv_devices; i++) // in 2 places (so these 2 don't agree; second one appears to be correct to me.) hvc_iucv_devices can be 0..8. This is a counter. (c) if (hvc_iucv_devices > MAX_HVC_IUCV_LINES) If hvc_iucv_devices == 8, (a) allows the code to access hvc_iucv_table[8]. Oops.

Metadata

CVE ID
CVE-2026-53306
State
PUBLISHED
Assigner
Linux
Reserved
2026-06-09 07:44 UTC
Published
2026-06-26 19:41 UTC
Last updated
2026-06-26 19:41 UTC
Vendor / Product
Linux / Linux
Sources
cve.org  ·  NVD

Severity & Metrics

No CVSS data available.

Affected products (2)
VendorProductPlatformVersions
Linux Linux 44a01d5ba8a4d543694461cd3e178cfa6b3f221b < 3d3b89e6ab93bdd0efd45828bda6b0e61cc46dff, 44a01d5ba8a4d543694461cd3e178cfa6b3f221b < 484357dff256c816d9466bda35eb765685e4dc86, 44a01d5ba8a4d543694461cd3e178cfa6b3f221b < 11207e42a332eb8bbcb9fe74df9edd2a807c5607, 44a01d5ba8a4d543694461cd3e178cfa6b3f221b < fed8b8f33a46db0ee2efdb000f4f630c86ed8ca4 …
Linux Linux 2.6.29, 0 < 2.6.29, 5.10.258 ≤ 5.10.*, 5.15.209 ≤ 5.15.* …
Back to overview