CVE-2026-89508
Last modified
CVE-2026-89508 is a high-severity vulnerability rated 7.8/10 on the CVSS scale. In the Linux kernel, the following vulnerability has been resolved: RDMA/ucma: Lock the handler in ucma_set_ib_path() ucma_set_ib_path() calls ucma_event_handler() straight from the write() path, without the handler lock that keeps ctx->file stable while a uevent is queued. The handler re-reads ctx->file for every dereference: mutex_lock(&ctx->file->mut); /* file A */ list_add_tail(&uevent->list, &ctx->file->event_list); /* file B */ mutex_unlock(&ctx->file->mut); /* file B */ wake_up_interruptible(&ctx->file->poll_wait); /* file B */ A concurrent ucma_migrate_id() reassigns ctx->file while the SET_OPTION caller sleeps in mutex_lock(), so the list_add_tail() lands on file B's event_list while only file A's mutex is held, racing every other user of that list: BUG: KASAN: slab-use-after-free in __list_add_valid_or_report+0x1aa/0x1c0 Read of size 8 at addr ffff888153c6a418 by task poc_corr/486 Call Trace: __list_add_valid_or_report+0x1aa/0x1c0 ucma_event_handler+0x1be/0xc00 ucma_set_ib_path+0x45e/0x710 ucma_set_option+0x32e/0x590 ucma_write+0x1f9/0x330 Allocated by task 505: ucma_write_cm_event+0x1a1/0x660 Freed by task 505: kfree+0x1da/0x4c0 ucma_get_event+0x5d5/0x7e0 The freed object is a ucma_event that another thread dequeued from file B's list under file B's mutex. EPSS estimates a 0.13% chance of exploitation in the next 30 days.
Description
In the Linux kernel, the following vulnerability has been resolved: RDMA/ucma: Lock the handler in ucma_set_ib_path() ucma_set_ib_path() calls ucma_event_handler() straight from the write() path, without the handler lock that keeps ctx->file stable while a uevent is queued. The handler re-reads ctx->file for every dereference: mutex_lock(&ctx->file->mut); /* file A */ list_add_tail(&uevent->list, &ctx->file->event_list); /* file B */ mutex_unlock(&ctx->file->mut); /* file B */ wake_up_interruptible(&ctx->file->poll_wait); /* file B */ A concurrent ucma_migrate_id() reassigns ctx->file while the SET_OPTION caller sleeps in mutex_lock(), so the list_add_tail() lands on file B's event_list while only file A's mutex is held, racing every other user of that list: BUG: KASAN: slab-use-after-free in __list_add_valid_or_report+0x1aa/0x1c0 Read of size 8 at addr ffff888153c6a418 by task poc_corr/486 Call Trace: __list_add_valid_or_report+0x1aa/0x1c0 ucma_event_handler+0x1be/0xc00 ucma_set_ib_path+0x45e/0x710 ucma_set_option+0x32e/0x590 ucma_write+0x1f9/0x330 Allocated by task 505: ucma_write_cm_event+0x1a1/0x660 Freed by task 505: kfree+0x1da/0x4c0 ucma_get_event+0x5d5/0x7e0 The freed object is a ucma_event that another thread dequeued from file B's list under file B's mutex. File A's mut is left held on top of that, wedging its next writer in uninterruptible sleep. This path needs a bound and address-resolved cm_id, so it requires an RDMA device to be present. Take the handler lock around the call.
Metrics
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= 09e328e47a695b0d346598f5d6593ee598e64885, < 3dd07b369371a2f29e1c3caf1ade85bb92b4c551; >= 09e328e47a695b0d346598f5d6593ee598e64885, < b2da0d488a1c72956ebb0a57015ee8ee6a2f7748; >= 09e328e47a695b0d346598f5d6593ee598e64885, < a7f8d26e653ee43b0b572984b8ec544d3b3b6f3c; >= 09e328e47a695b0d346598f5d6593ee598e64885, < 71dc206f2e2a645dac78879768762451aa1799f7; >= 09e328e47a695b0d346598f5d6593ee598e64885, < 764586f8f6180084c5a7d622120f526acc6ce0c9; >= 09e328e47a695b0d346598f5d6593ee598e64885, < 28ac2dd416482d1c763c4af5d61af465b387fb50; >= 09e328e47a695b0d346598f5d6593ee598e64885, < 43a7d8ae9f645dc00235cfa4bf57673c20b769f8; >= 09e328e47a695b0d346598f5d6593ee598e64885, < ecbe7d36dc2de07e5dfbb4a8ff5b315ab43de820 |
| Linux | Linux | 5.10 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-89508?
How severe is CVE-2026-89508?
How do I fix CVE-2026-89508?
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-89502In the Linux kernel, the following vulnerability has been re…
- CVE-2026-89503In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-89504In the Linux kernel, the following vulnerability has been re…8.4
- CVE-2026-89505In the Linux kernel, the following vulnerability has been re…
- CVE-2026-89506In the Linux kernel, the following vulnerability has been re…
- CVE-2026-89507In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-89509In the Linux kernel, the following vulnerability has been re…
- CVE-2026-8951Spoofing issue in the Toolbar component in Firefox for Andro…6.5
- CVE-2026-89510In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-89511In the Linux kernel, the following vulnerability has been re…7.5
- CVE-2026-89512In the Linux kernel, the following vulnerability has been re…
- CVE-2026-89513In the Linux kernel, the following vulnerability has been re…8.8
Are you affected by CVE-2026-89508?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
