Upstream information
Description
In the Linux kernel, the following vulnerability has been resolved:btrfs: fix a use-after-free when hitting errors inside btrfs_submit_chunk()
[BUG]
There is an internal report that KASAN is reporting use-after-free, with
the following backtrace:
BUG: KASAN: slab-use-after-free in btrfs_check_read_bio+0xa68/0xb70 [btrfs]
Read of size 4 at addr ffff8881117cec28 by task kworker/u16:2/45
CPU: 1 UID: 0 PID: 45 Comm: kworker/u16:2 Not tainted 6.11.0-rc2-next-20240805-default+ #76
Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.16.2-3-gd478f380-rebuilt.opensuse.org 04/01/2014
Workqueue: btrfs-endio btrfs_end_bio_work [btrfs]
Call Trace:
dump_stack_lvl+0x61/0x80
print_address_description.constprop.0+0x5e/0x2f0
print_report+0x118/0x216
kasan_report+0x11d/0x1f0
btrfs_check_read_bio+0xa68/0xb70 [btrfs]
process_one_work+0xce0/0x12a0
worker_thread+0x717/0x1250
kthread+0x2e3/0x3c0
ret_from_fork+0x2d/0x70
ret_from_fork_asm+0x11/0x20
Allocated by task 20917:
kasan_save_stack+0x37/0x60
kasan_save_track+0x10/0x30
__kasan_slab_alloc+0x7d/0x80
kmem_cache_alloc_noprof+0x16e/0x3e0
mempool_alloc_noprof+0x12e/0x310
bio_alloc_bioset+0x3f0/0x7a0
btrfs_bio_alloc+0x2e/0x50 [btrfs]
submit_extent_page+0x4d1/0xdb0 [btrfs]
btrfs_do_readpage+0x8b4/0x12a0 [btrfs]
btrfs_readahead+0x29a/0x430 [btrfs]
read_pages+0x1a7/0xc60
page_cache_ra_unbounded+0x2ad/0x560
filemap_get_pages+0x629/0xa20
filemap_read+0x335/0xbf0
vfs_read+0x790/0xcb0
ksys_read+0xfd/0x1d0
do_syscall_64+0x6d/0x140
entry_SYSCALL_64_after_hwframe+0x4b/0x53
Freed by task 20917:
kasan_save_stack+0x37/0x60
kasan_save_track+0x10/0x30
kasan_save_free_info+0x37/0x50
__kasan_slab_free+0x4b/0x60
kmem_cache_free+0x214/0x5d0
bio_free+0xed/0x180
end_bbio_data_read+0x1cc/0x580 [btrfs]
btrfs_submit_chunk+0x98d/0x1880 [btrfs]
btrfs_submit_bio+0x33/0x70 [btrfs]
submit_one_bio+0xd4/0x130 [btrfs]
submit_extent_page+0x3ea/0xdb0 [btrfs]
btrfs_do_readpage+0x8b4/0x12a0 [btrfs]
btrfs_readahead+0x29a/0x430 [btrfs]
read_pages+0x1a7/0xc60
page_cache_ra_unbounded+0x2ad/0x560
filemap_get_pages+0x629/0xa20
filemap_read+0x335/0xbf0
vfs_read+0x790/0xcb0
ksys_read+0xfd/0x1d0
do_syscall_64+0x6d/0x140
entry_SYSCALL_64_after_hwframe+0x4b/0x53
[CAUSE]
Although I cannot reproduce the error, the report itself is good enough
to pin down the cause.
The call trace is the regular endio workqueue context, but the
free-by-task trace is showing that during btrfs_submit_chunk() we
already hit a critical error, and is calling btrfs_bio_end_io() to error
out. And the original endio function called bio_put() to free the whole
bio.
This means a double freeing thus causing use-after-free, e.g.:
1. Enter btrfs_submit_bio() with a read bio
The read bio length is 128K, crossing two 64K stripes.
2. The first run of btrfs_submit_chunk()
2.1 Call btrfs_map_block(), which returns 64K
2.2 Call btrfs_split_bio()
Now there are two bios, one referring to the first 64K, the other
referring to the second 64K.
2.3 The first half is submitted.
3. The second run of btrfs_submit_chunk()
3.1 Call btrfs_map_block(), which by somehow failed
Now we call btrfs_bio_end_io() to handle the error
3.2 btrfs_bio_end_io() calls the original endio function
Which is end_bbio_data_read(), and it calls bio_put() for the
original bio.
Now the original bio is freed.
4. The submitted first 64K bio finished
Now we call into btrfs_check_read_bio() and tries to advance the bio
iter.
But since the original bio (thus its iter) is already freed, we
trigger the above use-after free.
And even if the memory is not poisoned/corrupted, we will later call
the original endio function, causing a double freeing.
[FIX]
Instead of calling btrfs_bio_end_io(), call btrfs_orig_bbio_end_io(),
which has the extra check on split bios and do the pr
---truncated---
SUSE information
Overall state of this security issue: Pending
This issue is currently rated as having moderate severity.
National Vulnerability Database | SUSE | |
---|---|---|
Base Score | 7.8 | 4.7 |
Vector | CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H | CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:N/A:N |
Attack Vector | Local | Local |
Attack Complexity | Low | High |
Privileges Required | Low | Low |
User Interaction | None | None |
Scope | Unchanged | Unchanged |
Confidentiality Impact | High | High |
Integrity Impact | High | None |
Availability Impact | High | None |
CVSSv3 Version | 3.1 | 3.1 |
Note from the SUSE Security Team on the kernel-default package
SUSE will no longer fix all CVEs in the Linux Kernel anymore, but declare some bug classes as won't fix. Please refer to TID 21496 for more details. SUSE Bugzilla entry: 1230518 [IN_PROGRESS]SUSE Security Advisories:
- SUSE-SU-2024:3551-1, published 2024-10-08T15:03:18Z
- SUSE-SU-2024:3553-1, published 2024-10-08T15:10:24Z
- SUSE-SU-2024:3561-1, published 2024-10-09T08:45:37Z
- SUSE-SU-2024:3564-1, published 2024-10-09T09:09:07Z
List of released packages
Product(s) | Fixed package version(s) | References |
---|---|---|
Container bci/bci-sle15-kernel-module-devel:15.6.27.8 |
| |
Container suse/hpc/warewulf4-x86_64/sle-hpc-node:15.6.17.5.49 |
| |
SUSE Linux Enterprise Desktop 15 SP6 |
| Patchnames: SUSE-SLE-Module-Basesystem-15-SP6-2024-3561 SUSE-SLE-Module-Development-Tools-15-SP6-2024-3561 SUSE-SLE-Product-WE-15-SP6-2024-3561 |
SUSE Linux Enterprise High Availability Extension 15 SP6 |
| Patchnames: SUSE-SLE-Product-HA-15-SP6-2024-3561 |
SUSE Linux Enterprise High Performance Computing 15 SP6 |
| Patchnames: SUSE-SLE-Module-Basesystem-15-SP6-2024-3561 SUSE-SLE-Module-Development-Tools-15-SP6-2024-3561 SUSE-SLE-Module-Legacy-15-SP6-2024-3561 SUSE-SLE-Module-Public-Cloud-15-SP6-2024-3551 |
SUSE Linux Enterprise Live Patching 15 SP6 | Patchnames: SUSE-SLE-Module-Live-Patching-15-SP6-2024-3561 SUSE-SLE-Module-Live-Patching-15-SP6-2024-3564 | |
SUSE Linux Enterprise Micro 6.0 |
| Patchnames: SUSE-SLE-Micro-6.0-SUSE_ALP_Source_Standard_Core_1.0_Build |
SUSE Linux Enterprise Module for Basesystem 15 SP6 |
| Patchnames: SUSE-SLE-Module-Basesystem-15-SP6-2024-3561 |
SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6 |
| Patchnames: SUSE-SLE-Module-Confidential-Computing-15-SP6-2024-3553 |
SUSE Linux Enterprise Module for Development Tools 15 SP6 |
| Patchnames: SUSE-SLE-Module-Development-Tools-15-SP6-2024-3561 |
SUSE Linux Enterprise Module for Legacy 15 SP6 |
| Patchnames: SUSE-SLE-Module-Legacy-15-SP6-2024-3561 |
SUSE Linux Enterprise Module for Public Cloud 15 SP6 |
| Patchnames: SUSE-SLE-Module-Public-Cloud-15-SP6-2024-3551 |
SUSE Linux Enterprise Real Time 15 SP6 SUSE Real Time Module 15 SP6 |
| Patchnames: SUSE-SLE-Module-RT-15-SP6-2024-3564 |
SUSE Linux Enterprise Server 15 SP6 SUSE Linux Enterprise Server for SAP Applications 15 SP6 |
| Patchnames: SUSE-SLE-Module-Basesystem-15-SP6-2024-3561 SUSE-SLE-Module-Development-Tools-15-SP6-2024-3561 SUSE-SLE-Module-Legacy-15-SP6-2024-3561 SUSE-SLE-Module-Public-Cloud-15-SP6-2024-3551 SUSE-SLE-Product-WE-15-SP6-2024-3561 |
SUSE Linux Enterprise Workstation Extension 15 SP6 |
| Patchnames: SUSE-SLE-Product-WE-15-SP6-2024-3561 |
openSUSE Leap 15.6 |
| Patchnames: openSUSE-SLE-15.6-2024-3551 openSUSE-SLE-15.6-2024-3561 openSUSE-SLE-15.6-2024-3564 |
Status of this issue by product and package
Please note that this evaluation state might be work in progress, incomplete or outdated. Also information for service packs in the LTSS phase is only included for issues meeting the LTSS criteria. If in doubt, feel free to contact us for clarification. The updates are grouped by state of their lifecycle. SUSE product lifecycles are documented on the lifecycle page.
Product(s) | Source package | State |
---|---|---|
Products under general support and receiving all security fixes. | ||
SUSE Linux Enterprise Desktop 15 SP5 | kernel-default | Not affected |
SUSE Linux Enterprise Desktop 15 SP5 | kernel-source | Not affected |
SUSE Linux Enterprise Desktop 15 SP6 | kernel-64kb | Released |
SUSE Linux Enterprise Desktop 15 SP6 | kernel-default | Released |
SUSE Linux Enterprise Desktop 15 SP6 | kernel-default-base | Released |
SUSE Linux Enterprise Desktop 15 SP6 | kernel-docs | Released |
SUSE Linux Enterprise Desktop 15 SP6 | kernel-obs-build | Released |
SUSE Linux Enterprise Desktop 15 SP6 | kernel-source | Released |
SUSE Linux Enterprise Desktop 15 SP6 | kernel-syms | Released |
SUSE Linux Enterprise Desktop 15 SP6 | kernel-zfcpdump | Released |
SUSE Linux Enterprise High Availability Extension 15 SP6 | kernel-default | Released |
SUSE Linux Enterprise High Performance Computing 12 | kernel-default | Ignore |
SUSE Linux Enterprise High Performance Computing 12 | kernel-source | Ignore |
SUSE Linux Enterprise High Performance Computing 15 SP5 | kernel-default | Not affected |
SUSE Linux Enterprise High Performance Computing 15 SP5 | kernel-source | Not affected |
SUSE Linux Enterprise High Performance Computing 15 SP5 | kernel-source-azure | Not affected |
SUSE Linux Enterprise High Performance Computing 15 SP6 | kernel-64kb | Released |
SUSE Linux Enterprise High Performance Computing 15 SP6 | kernel-azure | Released |
SUSE Linux Enterprise High Performance Computing 15 SP6 | kernel-default | Released |
SUSE Linux Enterprise High Performance Computing 15 SP6 | kernel-default-base | Released |
SUSE Linux Enterprise High Performance Computing 15 SP6 | kernel-docs | Released |
SUSE Linux Enterprise High Performance Computing 15 SP6 | kernel-obs-build | Released |
SUSE Linux Enterprise High Performance Computing 15 SP6 | kernel-source | Released |
SUSE Linux Enterprise High Performance Computing 15 SP6 | kernel-source-azure | Released |
SUSE Linux Enterprise High Performance Computing 15 SP6 | kernel-syms | Released |
SUSE Linux Enterprise High Performance Computing 15 SP6 | kernel-syms-azure | Released |
SUSE Linux Enterprise High Performance Computing 15 SP6 | kernel-zfcpdump | Released |
SUSE Linux Enterprise Live Patching 15 SP5 | kernel-default | Not affected |
SUSE Linux Enterprise Live Patching 15 SP5 | kernel-source | Not affected |
SUSE Linux Enterprise Live Patching 15 SP6 | kernel-default | Released |
SUSE Linux Enterprise Live Patching 15 SP6 | kernel-livepatch-SLE15-SP6-RT_Update_4 | Released |
SUSE Linux Enterprise Live Patching 15 SP6 | kernel-livepatch-SLE15-SP6_Update_5 | Released |
SUSE Linux Enterprise Live Patching 15 SP6 | kernel-source | Released |
SUSE Linux Enterprise Micro 5.1 | kernel-default | Not affected |
SUSE Linux Enterprise Micro 5.1 | kernel-rt | Not affected |
SUSE Linux Enterprise Micro 5.1 | kernel-source | Not affected |
SUSE Linux Enterprise Micro 5.1 | kernel-source-rt | Not affected |
SUSE Linux Enterprise Micro 5.2 | kernel-default | Not affected |
SUSE Linux Enterprise Micro 5.2 | kernel-rt | Not affected |
SUSE Linux Enterprise Micro 5.2 | kernel-source | Not affected |
SUSE Linux Enterprise Micro 5.2 | kernel-source-rt | Not affected |
SUSE Linux Enterprise Micro 5.3 | kernel-default | Not affected |
SUSE Linux Enterprise Micro 5.3 | kernel-rt | Not affected |
SUSE Linux Enterprise Micro 5.3 | kernel-source | Not affected |
SUSE Linux Enterprise Micro 5.3 | kernel-source-rt | Not affected |
SUSE Linux Enterprise Micro 5.4 | kernel-default | Not affected |
SUSE Linux Enterprise Micro 5.4 | kernel-rt | Not affected |
SUSE Linux Enterprise Micro 5.4 | kernel-source | Not affected |
SUSE Linux Enterprise Micro 5.4 | kernel-source-rt | Not affected |
SUSE Linux Enterprise Micro 5.5 | kernel-default | Not affected |
SUSE Linux Enterprise Micro 5.5 | kernel-source | Not affected |
SUSE Linux Enterprise Micro 5.5 | kernel-source-rt | Not affected |
SUSE Linux Enterprise Micro 6.0 | audit | Released |
SUSE Linux Enterprise Micro 6.0 | gtk3 | Released |
SUSE Linux Enterprise Micro 6.0 | keepalived | Released |
SUSE Linux Enterprise Micro 6.0 | kernel-default | Released |
SUSE Linux Enterprise Micro 6.0 | kernel-default-base | Released |
SUSE Linux Enterprise Micro 6.0 | kernel-kvmsmall | Released |
SUSE Linux Enterprise Micro 6.0 | kernel-livepatch-MICRO-6-0-RT_Update_3 | Released |
SUSE Linux Enterprise Micro 6.0 | kernel-livepatch-MICRO-6-0_Update_3 | Released |
SUSE Linux Enterprise Micro 6.0 | kernel-rt | Released |
SUSE Linux Enterprise Micro 6.0 | kernel-source | Released |
SUSE Linux Enterprise Micro 6.0 | kernel-source-rt | Released |
SUSE Linux Enterprise Micro 6.0 | krb5 | Released |
SUSE Linux Enterprise Micro 6.0 | patch | Released |
SUSE Linux Enterprise Micro 6.0 | perl-Bootloader | Released |
SUSE Linux Enterprise Micro 6.0 | python-setuptools | Released |
SUSE Linux Enterprise Micro 6.0 | systemd | Released |
SUSE Linux Enterprise Module for Basesystem 15 SP5 | kernel-default | Not affected |
SUSE Linux Enterprise Module for Basesystem 15 SP5 | kernel-source | Not affected |
SUSE Linux Enterprise Module for Basesystem 15 SP6 | kernel-64kb | Released |
SUSE Linux Enterprise Module for Basesystem 15 SP6 | kernel-default | Released |
SUSE Linux Enterprise Module for Basesystem 15 SP6 | kernel-default-base | Released |
SUSE Linux Enterprise Module for Basesystem 15 SP6 | kernel-source | Released |
SUSE Linux Enterprise Module for Basesystem 15 SP6 | kernel-zfcpdump | Released |
SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6 | kernel-coco | Released |
SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6 | kernel-coco_debug | Released |
SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6 | kernel-source-coco | Released |
SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6 | kernel-syms-coco | Released |
SUSE Linux Enterprise Module for Development Tools 15 SP5 | kernel-default | Not affected |
SUSE Linux Enterprise Module for Development Tools 15 SP5 | kernel-source | Not affected |
SUSE Linux Enterprise Module for Development Tools 15 SP6 | kernel-default | Released |
SUSE Linux Enterprise Module for Development Tools 15 SP6 | kernel-docs | Released |
SUSE Linux Enterprise Module for Development Tools 15 SP6 | kernel-obs-build | Released |
SUSE Linux Enterprise Module for Development Tools 15 SP6 | kernel-source | Released |
SUSE Linux Enterprise Module for Development Tools 15 SP6 | kernel-syms | Released |
SUSE Linux Enterprise Module for Legacy 15 SP6 | kernel-default | Released |
SUSE Linux Enterprise Module for Public Cloud 15 SP5 | kernel-source-azure | Not affected |
SUSE Linux Enterprise Module for Public Cloud 15 SP6 | kernel-azure | Released |
SUSE Linux Enterprise Module for Public Cloud 15 SP6 | kernel-source-azure | Released |
SUSE Linux Enterprise Module for Public Cloud 15 SP6 | kernel-syms-azure | Released |
SUSE Linux Enterprise Real Time 15 SP5 | kernel-source-rt | Not affected |
SUSE Linux Enterprise Real Time 15 SP6 | kernel-rt | Released |
SUSE Linux Enterprise Real Time 15 SP6 | kernel-rt_debug | Released |
SUSE Linux Enterprise Real Time 15 SP6 | kernel-source-rt | Released |
SUSE Linux Enterprise Real Time 15 SP6 | kernel-syms-rt | Released |
SUSE Linux Enterprise Server 15 SP5 | kernel-default | Not affected |
SUSE Linux Enterprise Server 15 SP5 | kernel-source | Not affected |
SUSE Linux Enterprise Server 15 SP5 | kernel-source-azure | Not affected |
SUSE Linux Enterprise Server 15 SP6 | kernel-64kb | Released |
SUSE Linux Enterprise Server 15 SP6 | kernel-azure | Released |
SUSE Linux Enterprise Server 15 SP6 | kernel-default | Released |
SUSE Linux Enterprise Server 15 SP6 | kernel-default-base | Released |
SUSE Linux Enterprise Server 15 SP6 | kernel-docs | Released |
SUSE Linux Enterprise Server 15 SP6 | kernel-obs-build | Released |
SUSE Linux Enterprise Server 15 SP6 | kernel-source | Released |
SUSE Linux Enterprise Server 15 SP6 | kernel-source-azure | Released |
SUSE Linux Enterprise Server 15 SP6 | kernel-syms | Released |
SUSE Linux Enterprise Server 15 SP6 | kernel-syms-azure | Released |
SUSE Linux Enterprise Server 15 SP6 | kernel-zfcpdump | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP5 | kernel-default | Not affected |
SUSE Linux Enterprise Server for SAP Applications 15 SP5 | kernel-source | Not affected |
SUSE Linux Enterprise Server for SAP Applications 15 SP5 | kernel-source-azure | Not affected |
SUSE Linux Enterprise Server for SAP Applications 15 SP6 | kernel-64kb | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP6 | kernel-azure | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP6 | kernel-default | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP6 | kernel-default-base | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP6 | kernel-docs | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP6 | kernel-obs-build | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP6 | kernel-source | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP6 | kernel-source-azure | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP6 | kernel-syms | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP6 | kernel-syms-azure | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP6 | kernel-zfcpdump | Released |
SUSE Linux Enterprise Workstation Extension 15 SP6 | kernel-default | Released |
SUSE Manager Proxy 4.3 | kernel-default | Not affected |
SUSE Manager Proxy 4.3 | kernel-source | Not affected |
SUSE Manager Retail Branch Server 4.3 | kernel-default | Not affected |
SUSE Manager Retail Branch Server 4.3 | kernel-source | Not affected |
SUSE Manager Server 4.3 | kernel-default | Not affected |
SUSE Manager Server 4.3 | kernel-source | Not affected |
SUSE Real Time Module 15 SP5 | kernel-source-rt | Not affected |
SUSE Real Time Module 15 SP6 | kernel-rt | Released |
SUSE Real Time Module 15 SP6 | kernel-rt_debug | Released |
SUSE Real Time Module 15 SP6 | kernel-source-rt | Released |
SUSE Real Time Module 15 SP6 | kernel-syms-rt | Released |
openSUSE Leap 15.5 | kernel-default | Not affected |
openSUSE Leap 15.5 | kernel-source | Not affected |
openSUSE Leap 15.5 | kernel-source-azure | Not affected |
openSUSE Leap 15.5 | kernel-source-rt | Not affected |
openSUSE Leap 15.6 | kernel-default | Released |
openSUSE Leap 15.6 | kernel-source | Released |
openSUSE Leap 15.6 | kernel-source-azure | Released |
openSUSE Leap 15.6 | kernel-source-rt | Released |
Products under Long Term Service Pack support and receiving important and critical security fixes. | ||
SUSE Linux Enterprise Desktop 15 SP4 | kernel-source | Not affected |
SUSE Linux Enterprise High Availability Extension 12 SP5 | kernel-default | Not affected |
SUSE Linux Enterprise High Availability Extension 12 SP5 | kernel-source | Not affected |
SUSE Linux Enterprise High Performance Computing 12 SP5 | kernel-default | Not affected |
SUSE Linux Enterprise High Performance Computing 12 SP5 | kernel-source | Not affected |
SUSE Linux Enterprise High Performance Computing 12 SP5 | kernel-source-azure | Not affected |
SUSE Linux Enterprise High Performance Computing 15 SP2 | kernel-source | Not affected |
SUSE Linux Enterprise High Performance Computing 15 SP2-ESPOS | kernel-source | Not affected |
SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS | kernel-default | Not affected |
SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS | kernel-source | Not affected |
SUSE Linux Enterprise High Performance Computing 15 SP3 | kernel-source | Not affected |
SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS | kernel-source | Not affected |
SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS | kernel-default | Not affected |
SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS | kernel-source | Not affected |
SUSE Linux Enterprise High Performance Computing 15 SP4 | kernel-source | Not affected |
SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS | kernel-default | Not affected |
SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS | kernel-source | Not affected |
SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS | kernel-default | Not affected |
SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS | kernel-source | Not affected |
SUSE Linux Enterprise Live Patching 12 SP5 | kernel-default | Not affected |
SUSE Linux Enterprise Live Patching 12 SP5 | kernel-source | Not affected |
SUSE Linux Enterprise Live Patching 15 SP2 | kernel-default | Not affected |
SUSE Linux Enterprise Live Patching 15 SP2 | kernel-source | Not affected |
SUSE Linux Enterprise Live Patching 15 SP3 | kernel-default | Not affected |
SUSE Linux Enterprise Live Patching 15 SP3 | kernel-source | Not affected |
SUSE Linux Enterprise Live Patching 15 SP4 | kernel-default | Not affected |
SUSE Linux Enterprise Live Patching 15 SP4 | kernel-source | Not affected |
SUSE Linux Enterprise Module for Basesystem 15 SP2 | kernel-source | Not affected |
SUSE Linux Enterprise Module for Basesystem 15 SP3 | kernel-source | Not affected |
SUSE Linux Enterprise Module for Basesystem 15 SP4 | kernel-source | Not affected |
SUSE Linux Enterprise Module for Development Tools 15 SP2 | kernel-source | Not affected |
SUSE Linux Enterprise Module for Development Tools 15 SP3 | kernel-source | Not affected |
SUSE Linux Enterprise Module for Development Tools 15 SP4 | kernel-source | Not affected |
SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE | kernel-default | Not affected |
SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE | kernel-source | Not affected |
SUSE Linux Enterprise Server 12 SP5 | kernel-default | Ignore |
SUSE Linux Enterprise Server 12 SP5 | kernel-source | Ignore |
SUSE Linux Enterprise Server 12 SP5 | kernel-source-azure | Not affected |
SUSE Linux Enterprise Server 12 SP5-LTSS | kernel-source | Not affected |
SUSE Linux Enterprise Server 12 SP5-LTSS | kernel-source-azure | Not affected |
SUSE Linux Enterprise Server 15 SP2 | kernel-source | Not affected |
SUSE Linux Enterprise Server 15 SP2-LTSS | kernel-default | Not affected |
SUSE Linux Enterprise Server 15 SP2-LTSS | kernel-source | Not affected |
SUSE Linux Enterprise Server 15 SP3 | kernel-source | Not affected |
SUSE Linux Enterprise Server 15 SP3-LTSS | kernel-default | Not affected |
SUSE Linux Enterprise Server 15 SP3-LTSS | kernel-source | Not affected |
SUSE Linux Enterprise Server 15 SP4 | kernel-source | Not affected |
SUSE Linux Enterprise Server 15 SP4-LTSS | kernel-default | Not affected |
SUSE Linux Enterprise Server 15 SP4-LTSS | kernel-source | Not affected |
SUSE Linux Enterprise Server for SAP Applications 12 SP5 | kernel-default | Ignore |
SUSE Linux Enterprise Server for SAP Applications 12 SP5 | kernel-source | Ignore |
SUSE Linux Enterprise Server for SAP Applications 12 SP5 | kernel-source-azure | Not affected |
SUSE Linux Enterprise Server for SAP Applications 15 SP2 | kernel-default | Not affected |
SUSE Linux Enterprise Server for SAP Applications 15 SP2 | kernel-source | Not affected |
SUSE Linux Enterprise Server for SAP Applications 15 SP3 | kernel-default | Not affected |
SUSE Linux Enterprise Server for SAP Applications 15 SP3 | kernel-source | Not affected |
SUSE Linux Enterprise Server for SAP Applications 15 SP4 | kernel-default | Not affected |
SUSE Linux Enterprise Server for SAP Applications 15 SP4 | kernel-source | Not affected |
Products past their end of life and not receiving proactive updates anymore. | ||
HPE Helion OpenStack 8 | kernel-source | Not affected |
SUSE CaaS Platform 4.0 | kernel-source | Not affected |
SUSE CaaS Platform Toolchain 3 | kernel-source | Not affected |
SUSE Enterprise Storage 6 | kernel-source | Not affected |
SUSE Enterprise Storage 7 | kernel-source | Not affected |
SUSE Enterprise Storage 7.1 | kernel-source | Not affected |
SUSE Linux Enterprise Desktop 11 SP4 | kernel-source | Not affected |
SUSE Linux Enterprise Desktop 12 SP1 | kernel-source | Ignore |
SUSE Linux Enterprise Desktop 12 SP2 | kernel-source | Not affected |
SUSE Linux Enterprise Desktop 12 SP3 | kernel-source | Not affected |
SUSE Linux Enterprise Desktop 12 SP4 | kernel-source | Not affected |
SUSE Linux Enterprise Desktop 15 | kernel-source | Not affected |
SUSE Linux Enterprise Desktop 15 SP1 | kernel-source | Not affected |
SUSE Linux Enterprise Desktop 15 SP2 | kernel-source | Not affected |
SUSE Linux Enterprise Desktop 15 SP3 | kernel-source | Not affected |
SUSE Linux Enterprise High Performance Computing 15 | kernel-source | Not affected |
SUSE Linux Enterprise High Performance Computing 15 SP1 | kernel-source | Not affected |
SUSE Linux Enterprise High Performance Computing 15 SP1-ESPOS | kernel-source | Not affected |
SUSE Linux Enterprise High Performance Computing 15 SP1-LTSS | kernel-source | Not affected |
SUSE Linux Enterprise High Performance Computing 15-ESPOS | kernel-source | Not affected |
SUSE Linux Enterprise High Performance Computing 15-LTSS | kernel-source | Not affected |
SUSE Linux Enterprise Micro 5.0 | kernel-default | Not affected |
SUSE Linux Enterprise Micro 5.0 | kernel-rt | Unsupported |
SUSE Linux Enterprise Module for Basesystem 15 | kernel-source | Not affected |
SUSE Linux Enterprise Module for Basesystem 15 SP1 | kernel-source | Not affected |
SUSE Linux Enterprise Module for Development Tools 15 | kernel-source | Not affected |
SUSE Linux Enterprise Module for Development Tools 15 SP1 | kernel-source | Not affected |
SUSE Linux Enterprise Module for Public Cloud 12 | kernel-default | Ignore |
SUSE Linux Enterprise Module for Public Cloud 12 | kernel-source | Ignore |
SUSE Linux Enterprise Point of Sale 12 SP2-CLIENT | kernel-source | Not affected |
SUSE Linux Enterprise Real Time 12 SP5 | kernel-source-rt | Not affected |
SUSE Linux Enterprise Real Time 15 SP1 | kernel-source-rt | Unsupported |
SUSE Linux Enterprise Real Time 15 SP2 | kernel-source | Not affected |
SUSE Linux Enterprise Real Time 15 SP3 | kernel-source | Not affected |
SUSE Linux Enterprise Real Time 15 SP3 | kernel-source-rt | Not affected |
SUSE Linux Enterprise Real Time 15 SP4 | kernel-source | Not affected |
SUSE Linux Enterprise Real Time 15 SP4 | kernel-source-rt | Not affected |
SUSE Linux Enterprise Server 11 SP4 | kernel-source | Not affected |
SUSE Linux Enterprise Server 11 SP4 LTSS | kernel-default | Not affected |
SUSE Linux Enterprise Server 11 SP4 LTSS | kernel-source | Not affected |
SUSE Linux Enterprise Server 11 SP4-LTSS | kernel-source | Not affected |
SUSE Linux Enterprise Server 12 | kernel-default | Ignore |
SUSE Linux Enterprise Server 12 | kernel-source | Ignore |
SUSE Linux Enterprise Server 12 SP1 | kernel-source | Ignore |
SUSE Linux Enterprise Server 12 SP1-LTSS | kernel-source | Ignore |
SUSE Linux Enterprise Server 12 SP2 | kernel-source | Not affected |
SUSE Linux Enterprise Server 12 SP2-BCL | kernel-source | Not affected |
SUSE Linux Enterprise Server 12 SP2-ESPOS | kernel-source | Not affected |
SUSE Linux Enterprise Server 12 SP2-LTSS | kernel-default | Not affected |
SUSE Linux Enterprise Server 12 SP2-LTSS | kernel-source | Not affected |
SUSE Linux Enterprise Server 12 SP3 | kernel-default | Ignore |
SUSE Linux Enterprise Server 12 SP3 | kernel-source | Ignore |
SUSE Linux Enterprise Server 12 SP3-BCL | kernel-source | Not affected |
SUSE Linux Enterprise Server 12 SP3-ESPOS | kernel-source | Not affected |
SUSE Linux Enterprise Server 12 SP3-LTSS | kernel-source | Not affected |
SUSE Linux Enterprise Server 12 SP4 | kernel-default | Ignore |
SUSE Linux Enterprise Server 12 SP4 | kernel-source | Ignore |
SUSE Linux Enterprise Server 12 SP4-ESPOS | kernel-source | Not affected |
SUSE Linux Enterprise Server 12 SP4-LTSS | kernel-default | Not affected |
SUSE Linux Enterprise Server 12 SP4-LTSS | kernel-source | Not affected |
SUSE Linux Enterprise Server 15 | kernel-source | Not affected |
SUSE Linux Enterprise Server 15 SP1 | kernel-source | Not affected |
SUSE Linux Enterprise Server 15 SP1-BCL | kernel-source | Not affected |
SUSE Linux Enterprise Server 15 SP1-LTSS | kernel-default | Not affected |
SUSE Linux Enterprise Server 15 SP1-LTSS | kernel-source | Not affected |
SUSE Linux Enterprise Server 15 SP2-BCL | kernel-source | Not affected |
SUSE Linux Enterprise Server 15 SP3-BCL | kernel-source | Not affected |
SUSE Linux Enterprise Server 15-LTSS | kernel-default | Not affected |
SUSE Linux Enterprise Server 15-LTSS | kernel-source | Not affected |
SUSE Linux Enterprise Server for Raspberry Pi 12 SP2 | kernel-source | Not affected |
SUSE Linux Enterprise Server for SAP Applications 12 | kernel-default | Ignore |
SUSE Linux Enterprise Server for SAP Applications 12 | kernel-source | Ignore |
SUSE Linux Enterprise Server for SAP Applications 12 SP1 | kernel-source | Ignore |
SUSE Linux Enterprise Server for SAP Applications 12 SP2 | kernel-source | Not affected |
SUSE Linux Enterprise Server for SAP Applications 12 SP3 | kernel-default | Ignore |
SUSE Linux Enterprise Server for SAP Applications 12 SP3 | kernel-source | Ignore |
SUSE Linux Enterprise Server for SAP Applications 12 SP4 | kernel-default | Ignore |
SUSE Linux Enterprise Server for SAP Applications 12 SP4 | kernel-source | Ignore |
SUSE Linux Enterprise Server for SAP Applications 15 | kernel-source | Not affected |
SUSE Linux Enterprise Server for SAP Applications 15 SP1 | kernel-source | Not affected |
SUSE Linux Enterprise Software Development Kit 12 SP5 | kernel-default | Not affected |
SUSE Linux Enterprise Software Development Kit 12 SP5 | kernel-source | Not affected |
SUSE Linux Enterprise Workstation Extension 12 SP5 | kernel-default | Not affected |
SUSE Linux Enterprise Workstation Extension 12 SP5 | kernel-source | Not affected |
SUSE Manager Proxy 4.0 | kernel-source | Not affected |
SUSE Manager Proxy 4.1 | kernel-source | Not affected |
SUSE Manager Proxy 4.2 | kernel-source | Not affected |
SUSE Manager Retail Branch Server 4.0 | kernel-source | Not affected |
SUSE Manager Retail Branch Server 4.1 | kernel-source | Not affected |
SUSE Manager Retail Branch Server 4.2 | kernel-source | Not affected |
SUSE Manager Server 4.0 | kernel-source | Not affected |
SUSE Manager Server 4.1 | kernel-source | Not affected |
SUSE Manager Server 4.2 | kernel-source | Not affected |
SUSE OpenStack Cloud 7 | kernel-source | Not affected |
SUSE OpenStack Cloud 8 | kernel-source | Not affected |
SUSE OpenStack Cloud 9 | kernel-source | Not affected |
SUSE OpenStack Cloud Crowbar 8 | kernel-source | Not affected |
SUSE OpenStack Cloud Crowbar 9 | kernel-source | Not affected |
SUSE Real Time Module 15 SP1 | kernel-source-rt | Unsupported |
SUSE Real Time Module 15 SP3 | kernel-source-rt | Not affected |
SUSE Real Time Module 15 SP4 | kernel-source-rt | Not affected |
openSUSE Leap 15.3 | kernel-source | Not affected |
openSUSE Leap 15.3 | kernel-source-rt | Not affected |
openSUSE Leap 15.4 | kernel-source | Not affected |
openSUSE Leap 15.4 | kernel-source-azure | Unsupported |
openSUSE Leap 15.4 | kernel-source-rt | Not affected |
Products at an unknown state of their lifecycle. | ||
SUSE Linux Enterprise Module for Confidential Computing 15 SP6 | kernel-coco | Released |
SUSE Linux Enterprise Module for Confidential Computing 15 SP6 | kernel-coco_debug | Released |
SUSE Linux Enterprise Module for Confidential Computing 15 SP6 | kernel-source-coco | Released |
SUSE Linux Enterprise Server 12 SP5 LTSS Extended Security | kernel-source | Not affected |
SUSE Linux Enterprise Server 12 SP5 LTSS Extended Security | kernel-source-azure | Not affected |
SUSE Timeline for this CVE
CVE page created: Fri Sep 13 08:01:52 2024CVE page last modified: Tue Nov 12 15:15:15 2024