Bug 1227085 (CVE-2024-38385) - VUL-0: CVE-2024-38385: kernel: genirq/irqdesc: Prevent use-after-free in irq_find_at_or_after()
Summary: VUL-0: CVE-2024-38385: kernel: genirq/irqdesc: Prevent use-after-free in irq_...
Status: RESOLVED FIXED
Alias: CVE-2024-38385
Product: SUSE Security Incidents
Classification: Novell Products
Component: Incidents (show other bugs)
Version: unspecified
Hardware: Other Other
: P3 - Medium : Normal
Target Milestone: ---
Assignee: Security Team bot
QA Contact: Security Team bot
URL: https://smash.suse.de/issue/412086/
Whiteboard: CVSSv3.1:SUSE:CVE-2024-38385:5.5:(AV:...
Keywords:
Depends on:
Blocks:
 
Reported: 2024-06-26 13:38 UTC by SMASH SMASH
Modified: 2024-07-08 15:17 UTC (History)
2 users (show)

See Also:
Found By: Security Response Team
Services Priority:
Business Priority:
Blocker: ---
Marketing QA Status: ---
IT Deployment: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description SMASH SMASH 2024-06-26 13:38:24 UTC
In the Linux kernel, the following vulnerability has been resolved:

genirq/irqdesc: Prevent use-after-free in irq_find_at_or_after()

irq_find_at_or_after() dereferences the interrupt descriptor which is
returned by mt_find() while neither holding sparse_irq_lock nor RCU read
lock, which means the descriptor can be freed between mt_find() and the
dereference:

    CPU0                            CPU1
    desc = mt_find()
                                    delayed_free_desc(desc)
    irq_desc_get_irq(desc)

The use-after-free is reported by KASAN:

    Call trace:
     irq_get_next_irq+0x58/0x84
     show_stat+0x638/0x824
     seq_read_iter+0x158/0x4ec
     proc_reg_read_iter+0x94/0x12c
     vfs_read+0x1e0/0x2c8

    Freed by task 4471:
     slab_free_freelist_hook+0x174/0x1e0
     __kmem_cache_free+0xa4/0x1dc
     kfree+0x64/0x128
     irq_kobj_release+0x28/0x3c
     kobject_put+0xcc/0x1e0
     delayed_free_desc+0x14/0x2c
     rcu_do_batch+0x214/0x720

Guard the access with a RCU read lock section.

References:
http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2024-38385
https://www.cve.org/CVERecord?id=CVE-2024-38385
https://git.kernel.org/stable/c/1c7891812d85500ae2ca4051fa5683fcf29930d8
https://git.kernel.org/stable/c/b84a8aba806261d2f759ccedf4a2a6a80a5e55ba
https://git.kernel.org/stable/c/d084aa022f84319f8079e30882cbcbc026af9f21
https://git.kernel.org/pub/scm/linux/security/vulns.git/plain/cve/published/2024/CVE-2024-38385.mbox
https://bugzilla.redhat.com/show_bug.cgi?id=2294280
Comment 4 Andrea Mattiazzo 2024-07-03 13:35:24 UTC
All done, closing.