CVE-2026-89557
Last modified
CVE-2026-89557 is a high-severity vulnerability rated 7.8/10 on the CVSS scale. In the Linux kernel, the following vulnerability has been resolved: md: do overflow check for sb->bblog_shift in super_1_load() In super_1_load(), sb->bblog_shift is an __u8 type value loaded from on- disk superblock. It is used for badblocks API badblocks_set() by the following sequence, 1930 rdev->badblocks.shift = sb->bblog_shift; 1931 for (i = 0 ; i < (sectors << (9-3)) ; i++, bbp++) { 1932 u64 bb = le64_to_cpu(*bbp); 1933 int count = bb & (0x3ff); 1934 u64 sector = bb >> 10; 1935 sector <<= sb->bblog_shift; 1936 count <<= sb->bblog_shift; 1937 if (bb + 1 == 0) 1938 break; 1939 if (!badblocks_set(&rdev->badblocks, sector, count, 1)) 1940 return -EINVAL; 1941 } bb->bblog_shit is in range of 0-255, variable sector is 64bit width, for an invalid bb->bblog_shit, it is possible to make sector be overflowed by the following calculation, 1935 sector <<= sb->bblog_shift; Then in turn when call badblocks_set() at line 1939 with the invalid rdev->badblocks.shift set at line 1930, may result an overflow inside _badblocks_clear() in block/badblocks.c. Although there are many places to call badblocks APIs, the non-zero shift value is only used in super_1_load(), other places always use 0 as the shift value. EPSS estimates a 0.16% chance of exploitation in the next 30 days.
Description
In the Linux kernel, the following vulnerability has been resolved: md: do overflow check for sb->bblog_shift in super_1_load() In super_1_load(), sb->bblog_shift is an __u8 type value loaded from on- disk superblock. It is used for badblocks API badblocks_set() by the following sequence, 1930 rdev->badblocks.shift = sb->bblog_shift; 1931 for (i = 0 ; i < (sectors << (9-3)) ; i++, bbp++) { 1932 u64 bb = le64_to_cpu(*bbp); 1933 int count = bb & (0x3ff); 1934 u64 sector = bb >> 10; 1935 sector <<= sb->bblog_shift; 1936 count <<= sb->bblog_shift; 1937 if (bb + 1 == 0) 1938 break; 1939 if (!badblocks_set(&rdev->badblocks, sector, count, 1)) 1940 return -EINVAL; 1941 } bb->bblog_shit is in range of 0-255, variable sector is 64bit width, for an invalid bb->bblog_shit, it is possible to make sector be overflowed by the following calculation, 1935 sector <<= sb->bblog_shift; Then in turn when call badblocks_set() at line 1939 with the invalid rdev->badblocks.shift set at line 1930, may result an overflow inside _badblocks_clear() in block/badblocks.c. Although there are many places to call badblocks APIs, the non-zero shift value is only used in super_1_load(), other places always use 0 as the shift value. Therefore it is unnecessary to do a general shift value overflow check inside badblock API, and just check here as the caller. This may avoid unnecessary check, make the badblocks API code more simple and elegant.
Metrics
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= 2699b67223aca6b1450fc2f72e40fada952afc85, < 94c820d99a4305d4ded41a97ed37ec7d26c56e7f; >= 2699b67223aca6b1450fc2f72e40fada952afc85, < 573fb68105fdc6a127ba6069e58a0d2aff3c9f93; >= 2699b67223aca6b1450fc2f72e40fada952afc85, < 323f3a056dbccb39a642ebde642044a680f3a6d6; >= 2699b67223aca6b1450fc2f72e40fada952afc85, < 0a03f9541c06fda64301dcf94f376f07ce2cc396; >= 2699b67223aca6b1450fc2f72e40fada952afc85, < 75d15738fd33a782606d0dc80cfeff47edf2ddd8; >= 2699b67223aca6b1450fc2f72e40fada952afc85, < 3b097416b4cff77285c1f472fc2c4058d8a7554f; >= 2699b67223aca6b1450fc2f72e40fada952afc85, < df7d4d011d5ace20699ea948712f09f9ac08924f; >= 2699b67223aca6b1450fc2f72e40fada952afc85, < 35d522bd32462afcf1981dab6da8a9256c26c1e0 |
| Linux | Linux | 3.1 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-89557?
How severe is CVE-2026-89557?
How do I fix CVE-2026-89557?
How Strix Helps
- How Strix found a critical auth bypass in etcdStrix autonomously discovered a critical authentication bypass in etcd, later designated CVE-2026-33413.
- Autonomous PentestingAI agents that find and validate exploitable vulnerabilities like this one across your applications.
- PR ReviewsPentest every pull request so vulnerable code is caught before it ships to production.
- AI Penetration TestingHow AI-driven penetration testing continuously covers your attack surface.
Related CVEs from 2026
- CVE-2026-89551In the Linux kernel, the following vulnerability has been re…9.8
- CVE-2026-89552In the Linux kernel, the following vulnerability has been re…
- CVE-2026-89553In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-89554In the Linux kernel, the following vulnerability has been re…8.2
- CVE-2026-89555In the Linux kernel, the following vulnerability has been re…9.8
- CVE-2026-89556In the Linux kernel, the following vulnerability has been re…
- CVE-2026-89558In the Linux kernel, the following vulnerability has been re…9.8
- CVE-2026-89559In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-8956Integer overflow in the Networking: JAR component. This vuln…9.8
- CVE-2026-89560In the Linux kernel, the following vulnerability has been re…8.4
- CVE-2026-89561In the Linux kernel, the following vulnerability has been re…7.5
- CVE-2026-89562In the Linux kernel, the following vulnerability has been re…7.8
Are you affected by CVE-2026-89557?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
