Upstream information
Description
In the Linux kernel, the following vulnerability has been resolved:userfaultfd: fix checks for huge PMDs
Patch series "userfaultfd: fix races around pmd_trans_huge() check", v2.
The pmd_trans_huge() code in mfill_atomic() is wrong in three different
ways depending on kernel version:
1. The pmd_trans_huge() check is racy and can lead to a BUG_ON() (if you hit
the right two race windows) - I've tested this in a kernel build with
some extra mdelay() calls. See the commit message for a description
of the race scenario.
On older kernels (before 6.5), I think the same bug can even
theoretically lead to accessing transhuge page contents as a page table
if you hit the right 5 narrow race windows (I haven't tested this case).
2. As pointed out by Qi Zheng, pmd_trans_huge() is not sufficient for
detecting PMDs that don't point to page tables.
On older kernels (before 6.5), you'd just have to win a single fairly
wide race to hit this.
I've tested this on 6.1 stable by racing migration (with a mdelay()
patched into try_to_migrate()) against UFFDIO_ZEROPAGE - on my x86
VM, that causes a kernel oops in ptlock_ptr().
3. On newer kernels (>=6.5), for shmem mappings, khugepaged is allowed
to yank page tables out from under us (though I haven't tested that),
so I think the BUG_ON() checks in mfill_atomic() are just wrong.
I decided to write two separate fixes for these (one fix for bugs 1+2, one
fix for bug 3), so that the first fix can be backported to kernels
affected by bugs 1+2.
This patch (of 2):
This fixes two issues.
I discovered that the following race can occur:
mfill_atomic other thread
============ ============
<zap PMD>
pmdp_get_lockless() [reads none pmd]
<bail if trans_huge>
<if none:>
<pagefault creates transhuge zeropage>
__pte_alloc [no-op]
<zap PMD>
<bail if pmd_trans_huge(*dst_pmd)>
BUG_ON(pmd_none(*dst_pmd))
I have experimentally verified this in a kernel with extra mdelay() calls;
the BUG_ON(pmd_none(*dst_pmd)) triggers.
On kernels newer than commit 0d940a9b270b ("mm/pgtable: allow
pte_offset_map[_lock]() to fail"), this can't lead to anything worse than
a BUG_ON(), since the page table access helpers are actually designed to
deal with page tables concurrently disappearing; but on older kernels
(<=6.4), I think we could probably theoretically race past the two
BUG_ON() checks and end up treating a hugepage as a page table.
The second issue is that, as Qi Zheng pointed out, there are other types
of huge PMDs that pmd_trans_huge() can't catch: devmap PMDs and swap PMDs
(in particular, migration PMDs).
On <=6.4, this is worse than the first issue: If mfill_atomic() runs on a
PMD that contains a migration entry (which just requires winning a single,
fairly wide race), it will pass the PMD to pte_offset_map_lock(), which
assumes that the PMD points to a page table.
Breakage follows: First, the kernel tries to take the PTE lock (which will
crash or maybe worse if there is no "struct page" for the address bits in
the migration entry PMD - I think at least on X86 there usually is no
corresponding "struct page" thanks to the PTE inversion mitigation, amd64
looks different).
If that didn't crash, the kernel would next try to write a PTE into what
it wrongly thinks is a page table.
As part of fixing these issues, get rid of the check for pmd_trans_huge()
before __pte_alloc() - that's redundant, we're going to have to check for
that after the __pte_alloc() anyway.
Backport note: pmdp_get_lockless() is pmd_read_atomic() in older kernels.
SUSE information
Overall state of this security issue: Pending
This issue is currently rated as having moderate severity.
SUSE | |
---|---|
Base Score | 5.5 |
Vector | CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H |
Attack Vector | Local |
Attack Complexity | Low |
Privileges Required | Low |
User Interaction | None |
Scope | Unchanged |
Confidentiality Impact | None |
Integrity Impact | None |
Availability Impact | High |
CVSSv3 Version | 3.1 |
SUSE | |
---|---|
Base Score | 5.7 |
Vector | CVSS:4.0/AV:L/AC:L/AT:P/PR:L/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N |
Attack Vector | Local |
Attack Complexity | Low |
Attack Requirements | Present |
Privileges Required | Low |
User Interaction | None |
Vulnerable System Confidentiality Impact | None |
Vulnerable System Integrity Impact | None |
Vulnerable System Availability Impact | High |
Subsequent System Confidentiality Impact | None |
Subsequent System Integrity Impact | None |
Subsequent System Availability Impact | None |
CVSSv4 Version | 4.0 |
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: 1230815 [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:3559-1, published 2024-10-09T08:19:22Z
- SUSE-SU-2024:3561-1, published 2024-10-09T08:45:37Z
- SUSE-SU-2024:3564-1, published 2024-10-09T09:09:07Z
- SUSE-SU-2024:3566-1, published 2024-10-09T09:43:40Z
- SUSE-SU-2024:3569-1, published 2024-10-09T11:52:14Z
- SUSE-SU-2024:3587-1, published 2024-10-10T13:29:57Z
- SUSE-SU-2024:3591-1, published 2024-10-10T15:34:35Z
- SUSE-SU-2024:3592-1, published 2024-10-10T16:03:56Z
List of released packages
Product(s) | Fixed package version(s) | References |
---|---|---|
Container bci/bci-sle15-kernel-module-devel:15.5.26.7 |
| |
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 |
| |
Container suse/sle-micro/kvm-5.5:2.0.4-3.5.197 |
| |
Container suse/sle-micro/rt-5.5:2.0.4-4.5.211 |
| |
Image SLES12-SP5-GCE-BYOS |
| |
Image SLES12-SP5-GCE-SAP-BYOS Image SLES12-SP5-GCE-SAP-On-Demand |
| |
Image SLES15-SP5-CHOST-BYOS-Aliyun Image SLES15-SP5-CHOST-BYOS-Azure Image SLES15-SP5-CHOST-BYOS-EC2 Image SLES15-SP5-CHOST-BYOS-GCE Image SLES15-SP5-CHOST-BYOS-GDC Image SLES15-SP5-CHOST-BYOS-SAP-CCloud |
| |
SUSE Linux Enterprise Desktop 15 SP5 |
| Patchnames: SUSE-SLE-Module-Basesystem-15-SP5-2024-3569 SUSE-SLE-Module-Development-Tools-15-SP5-2024-3569 SUSE-SLE-Product-WE-15-SP5-2024-3569 |
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 12 SP5 |
| Patchnames: SUSE-SLE-HA-12-SP5-2024-3559 |
SUSE Linux Enterprise High Availability Extension 15 SP5 |
| Patchnames: SUSE-SLE-Product-HA-15-SP5-2024-3569 |
SUSE Linux Enterprise High Availability Extension 15 SP6 |
| Patchnames: SUSE-SLE-Product-HA-15-SP6-2024-3561 |
SUSE Linux Enterprise High Performance Computing 15 SP5 |
| Patchnames: SUSE-SLE-Module-Basesystem-15-SP5-2024-3569 SUSE-SLE-Module-Development-Tools-15-SP5-2024-3569 SUSE-SLE-Module-Legacy-15-SP5-2024-3569 SUSE-SLE-Module-Public-Cloud-15-SP5-2024-3587 |
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 12 SP5 |
| Patchnames: SUSE-SLE-Live-Patching-12-SP5-2024-3559 |
SUSE Linux Enterprise Live Patching 15 SP5 | Patchnames: SUSE-SLE-Module-Live-Patching-15-SP5-2024-3569 SUSE-SLE-Module-Live-Patching-15-SP5-2024-3592 | |
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 5.5 |
| Patchnames: SUSE-SLE-Micro-5.5-2024-3569 SUSE-SLE-Micro-5.5-2024-3592 |
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 SP5 |
| Patchnames: SUSE-SLE-Module-Basesystem-15-SP5-2024-3569 |
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 SP5 |
| Patchnames: SUSE-SLE-Module-Development-Tools-15-SP5-2024-3569 |
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 SP5 |
| Patchnames: SUSE-SLE-Module-Legacy-15-SP5-2024-3569 |
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 SP5 |
| Patchnames: SUSE-SLE-Module-Public-Cloud-15-SP5-2024-3587 |
SUSE Linux Enterprise Module for Public Cloud 15 SP6 |
| Patchnames: SUSE-SLE-Module-Public-Cloud-15-SP6-2024-3551 |
SUSE Linux Enterprise Real Time 12 SP5 |
| Patchnames: SUSE-SLE-RT-12-SP5-2024-3566 |
SUSE Linux Enterprise Real Time 15 SP5 SUSE Real Time Module 15 SP5 |
| Patchnames: SUSE-SLE-Module-RT-15-SP5-2024-3592 |
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 12 SP5 SUSE Linux Enterprise Server for SAP Applications 12 SP5 |
| Patchnames: SUSE-SLE-SDK-12-SP5-2024-3559 SUSE-SLE-SERVER-12-SP5-2024-3559 SUSE-SLE-SERVER-12-SP5-2024-3591 SUSE-SLE-WE-12-SP5-2024-3559 |
SUSE Linux Enterprise Server 15 SP5 SUSE Linux Enterprise Server for SAP Applications 15 SP5 |
| Patchnames: SUSE-SLE-Module-Basesystem-15-SP5-2024-3569 SUSE-SLE-Module-Development-Tools-15-SP5-2024-3569 SUSE-SLE-Module-Legacy-15-SP5-2024-3569 SUSE-SLE-Module-Public-Cloud-15-SP5-2024-3587 SUSE-SLE-Product-WE-15-SP5-2024-3569 |
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 Software Development Kit 12 SP5 |
| Patchnames: SUSE-SLE-SDK-12-SP5-2024-3559 |
SUSE Linux Enterprise Workstation Extension 12 SP5 |
| Patchnames: SUSE-SLE-WE-12-SP5-2024-3559 |
SUSE Linux Enterprise Workstation Extension 15 SP5 |
| Patchnames: SUSE-SLE-Product-WE-15-SP5-2024-3569 |
SUSE Linux Enterprise Workstation Extension 15 SP6 |
| Patchnames: SUSE-SLE-Product-WE-15-SP6-2024-3561 |
openSUSE Leap 15.5 |
| Patchnames: openSUSE-SLE-15.5-2024-3569 openSUSE-SLE-15.5-2024-3587 openSUSE-SLE-15.5-2024-3592 |
openSUSE Leap 15.6 |
| Patchnames: openSUSE-SLE-15.6-2024-3551 openSUSE-SLE-15.6-2024-3561 openSUSE-SLE-15.6-2024-3564 |
openSUSE Leap Micro 5.5 |
| Patchnames: openSUSE-Leap-Micro-5.5-2024-3569 openSUSE-Leap-Micro-5.5-2024-3592 |
First public cloud image revisions this CVE is fixed in:
- alibaba/sles-15-sp5-chost-byos-v20241011
- amazon/suse-sles-15-sp5-chost-byos-v20241011-hvm-ssd-arm64
- amazon/suse-sles-15-sp5-chost-byos-v20241011-hvm-ssd-x86_64
- google/sles-12-sp5-byos-v20241028-x86-64
- google/sles-12-sp5-sap-byos-v20241028-x86-64
- google/sles-12-sp5-sap-v20241028-x86-64
- google/sles-15-sp5-chost-byos-v20241011-arm64
- google/sles-15-sp5-chost-byos-v20241011-x86-64
- microsoft/suse-sles-15-sp5-chost-byos-v20241011-arm64
- microsoft/suse-sles-15-sp5-chost-byos-v20241011-x86_64
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-64kb | Released |
SUSE Linux Enterprise Desktop 15 SP5 | kernel-default | Released |
SUSE Linux Enterprise Desktop 15 SP5 | kernel-default-base | Released |
SUSE Linux Enterprise Desktop 15 SP5 | kernel-docs | Released |
SUSE Linux Enterprise Desktop 15 SP5 | kernel-obs-build | Released |
SUSE Linux Enterprise Desktop 15 SP5 | kernel-source | Released |
SUSE Linux Enterprise Desktop 15 SP5 | kernel-syms | Released |
SUSE Linux Enterprise Desktop 15 SP5 | kernel-zfcpdump | Released |
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 SP5 | kernel-default | Released |
SUSE Linux Enterprise High Availability Extension 15 SP6 | kernel-default | Released |
SUSE Linux Enterprise High Performance Computing 12 | kernel-default | Unsupported |
SUSE Linux Enterprise High Performance Computing 12 | kernel-source | Unsupported |
SUSE Linux Enterprise High Performance Computing 15 SP5 | kernel-64kb | Released |
SUSE Linux Enterprise High Performance Computing 15 SP5 | kernel-azure | Released |
SUSE Linux Enterprise High Performance Computing 15 SP5 | kernel-default | Released |
SUSE Linux Enterprise High Performance Computing 15 SP5 | kernel-default-base | Released |
SUSE Linux Enterprise High Performance Computing 15 SP5 | kernel-docs | Released |
SUSE Linux Enterprise High Performance Computing 15 SP5 | kernel-obs-build | Released |
SUSE Linux Enterprise High Performance Computing 15 SP5 | kernel-source | Released |
SUSE Linux Enterprise High Performance Computing 15 SP5 | kernel-source-azure | Released |
SUSE Linux Enterprise High Performance Computing 15 SP5 | kernel-syms | Released |
SUSE Linux Enterprise High Performance Computing 15 SP5 | kernel-syms-azure | Released |
SUSE Linux Enterprise High Performance Computing 15 SP5 | kernel-zfcpdump | Released |
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 | Released |
SUSE Linux Enterprise Live Patching 15 SP5 | kernel-livepatch-SLE15-SP5-RT_Update_21 | Released |
SUSE Linux Enterprise Live Patching 15 SP5 | kernel-livepatch-SLE15-SP5_Update_20 | Released |
SUSE Linux Enterprise Live Patching 15 SP5 | kernel-source | Released |
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 | Ignore |
SUSE Linux Enterprise Micro 5.1 | kernel-rt | Ignore |
SUSE Linux Enterprise Micro 5.1 | kernel-source | Ignore |
SUSE Linux Enterprise Micro 5.1 | kernel-source-rt | Ignore |
SUSE Linux Enterprise Micro 5.2 | kernel-default | Ignore |
SUSE Linux Enterprise Micro 5.2 | kernel-rt | Ignore |
SUSE Linux Enterprise Micro 5.2 | kernel-source | Ignore |
SUSE Linux Enterprise Micro 5.2 | kernel-source-rt | Ignore |
SUSE Linux Enterprise Micro 5.3 | kernel-default | Ignore |
SUSE Linux Enterprise Micro 5.3 | kernel-rt | Ignore |
SUSE Linux Enterprise Micro 5.3 | kernel-source | Ignore |
SUSE Linux Enterprise Micro 5.3 | kernel-source-rt | Ignore |
SUSE Linux Enterprise Micro 5.4 | kernel-default | Ignore |
SUSE Linux Enterprise Micro 5.4 | kernel-rt | Ignore |
SUSE Linux Enterprise Micro 5.4 | kernel-source | Ignore |
SUSE Linux Enterprise Micro 5.4 | kernel-source-rt | Ignore |
SUSE Linux Enterprise Micro 5.5 | kernel-default | Released |
SUSE Linux Enterprise Micro 5.5 | kernel-default-base | Released |
SUSE Linux Enterprise Micro 5.5 | kernel-rt | Released |
SUSE Linux Enterprise Micro 5.5 | kernel-source | Affected |
SUSE Linux Enterprise Micro 5.5 | kernel-source-rt | Released |
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-64kb | Released |
SUSE Linux Enterprise Module for Basesystem 15 SP5 | kernel-default | Released |
SUSE Linux Enterprise Module for Basesystem 15 SP5 | kernel-default-base | Released |
SUSE Linux Enterprise Module for Basesystem 15 SP5 | kernel-source | Released |
SUSE Linux Enterprise Module for Basesystem 15 SP5 | kernel-zfcpdump | Released |
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 | Released |
SUSE Linux Enterprise Module for Development Tools 15 SP5 | kernel-docs | Released |
SUSE Linux Enterprise Module for Development Tools 15 SP5 | kernel-obs-build | Released |
SUSE Linux Enterprise Module for Development Tools 15 SP5 | kernel-source | Released |
SUSE Linux Enterprise Module for Development Tools 15 SP5 | kernel-syms | Released |
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 SP5 | kernel-default | Released |
SUSE Linux Enterprise Module for Legacy 15 SP6 | kernel-default | Released |
SUSE Linux Enterprise Module for Public Cloud 15 SP5 | kernel-azure | Released |
SUSE Linux Enterprise Module for Public Cloud 15 SP5 | kernel-source-azure | Released |
SUSE Linux Enterprise Module for Public Cloud 15 SP5 | kernel-syms-azure | Released |
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-rt | Released |
SUSE Linux Enterprise Real Time 15 SP5 | kernel-rt_debug | Released |
SUSE Linux Enterprise Real Time 15 SP5 | kernel-source-rt | Released |
SUSE Linux Enterprise Real Time 15 SP5 | kernel-syms-rt | Released |
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-64kb | Released |
SUSE Linux Enterprise Server 15 SP5 | kernel-azure | Released |
SUSE Linux Enterprise Server 15 SP5 | kernel-default | Released |
SUSE Linux Enterprise Server 15 SP5 | kernel-default-base | Released |
SUSE Linux Enterprise Server 15 SP5 | kernel-docs | Released |
SUSE Linux Enterprise Server 15 SP5 | kernel-obs-build | Released |
SUSE Linux Enterprise Server 15 SP5 | kernel-source | Released |
SUSE Linux Enterprise Server 15 SP5 | kernel-source-azure | Released |
SUSE Linux Enterprise Server 15 SP5 | kernel-syms | Released |
SUSE Linux Enterprise Server 15 SP5 | kernel-syms-azure | Released |
SUSE Linux Enterprise Server 15 SP5 | kernel-zfcpdump | Released |
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-64kb | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP5 | kernel-azure | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP5 | kernel-default | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP5 | kernel-default-base | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP5 | kernel-docs | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP5 | kernel-obs-build | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP5 | kernel-source | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP5 | kernel-source-azure | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP5 | kernel-syms | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP5 | kernel-syms-azure | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP5 | kernel-zfcpdump | Released |
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 SP5 | kernel-default | Released |
SUSE Linux Enterprise Workstation Extension 15 SP6 | kernel-default | Released |
SUSE Manager Proxy 4.3 | kernel-default | Affected |
SUSE Manager Proxy 4.3 | kernel-source | Affected |
SUSE Manager Retail Branch Server 4.3 | kernel-default | Affected |
SUSE Manager Retail Branch Server 4.3 | kernel-source | Affected |
SUSE Manager Server 4.3 | kernel-default | Affected |
SUSE Manager Server 4.3 | kernel-source | Affected |
SUSE Real Time Module 15 SP5 | kernel-rt | Released |
SUSE Real Time Module 15 SP5 | kernel-rt_debug | Released |
SUSE Real Time Module 15 SP5 | kernel-source-rt | Released |
SUSE Real Time Module 15 SP5 | kernel-syms-rt | Released |
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 | Released |
openSUSE Leap 15.5 | kernel-source | Released |
openSUSE Leap 15.5 | kernel-source-azure | Released |
openSUSE Leap 15.5 | kernel-source-rt | Released |
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 | Affected |
SUSE Linux Enterprise High Availability Extension 12 SP5 | kernel-default | Released |
SUSE Linux Enterprise High Availability Extension 12 SP5 | kernel-source | Released |
SUSE Linux Enterprise High Performance Computing 12 SP5 | kernel-default | Released |
SUSE Linux Enterprise High Performance Computing 12 SP5 | kernel-source | Released |
SUSE Linux Enterprise High Performance Computing 12 SP5 | kernel-source-azure | Released |
SUSE Linux Enterprise High Performance Computing 15 SP2 | kernel-source | Affected |
SUSE Linux Enterprise High Performance Computing 15 SP2-ESPOS | kernel-source | Affected |
SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS | kernel-default | Affected |
SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS | kernel-source | Affected |
SUSE Linux Enterprise High Performance Computing 15 SP3 | kernel-source | Affected |
SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS | kernel-source | Affected |
SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS | kernel-default | Affected |
SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS | kernel-source | Affected |
SUSE Linux Enterprise High Performance Computing 15 SP4 | kernel-source | Affected |
SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS | kernel-default | Affected |
SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS | kernel-source | Affected |
SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS | kernel-default | Affected |
SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS | kernel-source | Affected |
SUSE Linux Enterprise Live Patching 12 SP5 | kernel-default | Released |
SUSE Linux Enterprise Live Patching 12 SP5 | kernel-source | Released |
SUSE Linux Enterprise Live Patching 12 SP5 | kgraft-patch-SLE12-SP5_Update_61 | Released |
SUSE Linux Enterprise Live Patching 15 SP2 | kernel-default | Affected |
SUSE Linux Enterprise Live Patching 15 SP2 | kernel-source | Affected |
SUSE Linux Enterprise Live Patching 15 SP3 | kernel-default | Affected |
SUSE Linux Enterprise Live Patching 15 SP3 | kernel-source | Affected |
SUSE Linux Enterprise Live Patching 15 SP4 | kernel-default | Affected |
SUSE Linux Enterprise Live Patching 15 SP4 | kernel-source | Affected |
SUSE Linux Enterprise Module for Basesystem 15 SP2 | kernel-source | Affected |
SUSE Linux Enterprise Module for Basesystem 15 SP3 | kernel-source | Affected |
SUSE Linux Enterprise Module for Basesystem 15 SP4 | kernel-source | Affected |
SUSE Linux Enterprise Module for Development Tools 15 SP2 | kernel-source | Affected |
SUSE Linux Enterprise Module for Development Tools 15 SP3 | kernel-source | Affected |
SUSE Linux Enterprise Module for Development Tools 15 SP4 | kernel-source | 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-azure | Released |
SUSE Linux Enterprise Server 12 SP5 | kernel-default | Released |
SUSE Linux Enterprise Server 12 SP5 | kernel-docs | Released |
SUSE Linux Enterprise Server 12 SP5 | kernel-obs-build | Released |
SUSE Linux Enterprise Server 12 SP5 | kernel-source | Released |
SUSE Linux Enterprise Server 12 SP5 | kernel-source-azure | Released |
SUSE Linux Enterprise Server 12 SP5 | kernel-syms | Released |
SUSE Linux Enterprise Server 12 SP5 | kernel-syms-azure | Released |
SUSE Linux Enterprise Server 12 SP5-LTSS | kernel-source | Affected |
SUSE Linux Enterprise Server 12 SP5-LTSS | kernel-source-azure | Affected |
SUSE Linux Enterprise Server 15 SP2 | kernel-source | Affected |
SUSE Linux Enterprise Server 15 SP2-LTSS | kernel-default | Affected |
SUSE Linux Enterprise Server 15 SP2-LTSS | kernel-source | Affected |
SUSE Linux Enterprise Server 15 SP3 | kernel-source | Affected |
SUSE Linux Enterprise Server 15 SP3-LTSS | kernel-default | Affected |
SUSE Linux Enterprise Server 15 SP3-LTSS | kernel-source | Affected |
SUSE Linux Enterprise Server 15 SP4 | kernel-source | Affected |
SUSE Linux Enterprise Server 15 SP4-LTSS | kernel-default | Affected |
SUSE Linux Enterprise Server 15 SP4-LTSS | kernel-source | Affected |
SUSE Linux Enterprise Server for SAP Applications 12 SP5 | kernel-azure | Released |
SUSE Linux Enterprise Server for SAP Applications 12 SP5 | kernel-default | Released |
SUSE Linux Enterprise Server for SAP Applications 12 SP5 | kernel-docs | Released |
SUSE Linux Enterprise Server for SAP Applications 12 SP5 | kernel-obs-build | Released |
SUSE Linux Enterprise Server for SAP Applications 12 SP5 | kernel-source | Released |
SUSE Linux Enterprise Server for SAP Applications 12 SP5 | kernel-source-azure | Released |
SUSE Linux Enterprise Server for SAP Applications 12 SP5 | kernel-syms | Released |
SUSE Linux Enterprise Server for SAP Applications 12 SP5 | kernel-syms-azure | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP2 | kernel-default | Affected |
SUSE Linux Enterprise Server for SAP Applications 15 SP2 | kernel-source | Affected |
SUSE Linux Enterprise Server for SAP Applications 15 SP3 | kernel-default | Affected |
SUSE Linux Enterprise Server for SAP Applications 15 SP3 | kernel-source | Affected |
SUSE Linux Enterprise Server for SAP Applications 15 SP4 | kernel-default | Affected |
SUSE Linux Enterprise Server for SAP Applications 15 SP4 | kernel-source | Affected |
Products past their end of life and not receiving proactive updates anymore. | ||
HPE Helion OpenStack 8 | kernel-source | Affected |
SUSE CaaS Platform 4.0 | kernel-source | Affected |
SUSE CaaS Platform Toolchain 3 | kernel-source | Affected |
SUSE Enterprise Storage 6 | kernel-source | Affected |
SUSE Enterprise Storage 7 | kernel-source | Affected |
SUSE Enterprise Storage 7.1 | kernel-source | Affected |
SUSE Linux Enterprise Desktop 11 SP4 | kernel-source | Not affected |
SUSE Linux Enterprise Desktop 12 SP1 | kernel-source | Unsupported |
SUSE Linux Enterprise Desktop 12 SP2 | kernel-source | Affected |
SUSE Linux Enterprise Desktop 12 SP3 | kernel-source | Affected |
SUSE Linux Enterprise Desktop 12 SP4 | kernel-source | Affected |
SUSE Linux Enterprise Desktop 15 | kernel-source | Affected |
SUSE Linux Enterprise Desktop 15 SP1 | kernel-source | Affected |
SUSE Linux Enterprise Desktop 15 SP2 | kernel-source | Affected |
SUSE Linux Enterprise Desktop 15 SP3 | kernel-source | Affected |
SUSE Linux Enterprise High Performance Computing 15 | kernel-source | Affected |
SUSE Linux Enterprise High Performance Computing 15 SP1 | kernel-source | Affected |
SUSE Linux Enterprise High Performance Computing 15 SP1-ESPOS | kernel-source | Affected |
SUSE Linux Enterprise High Performance Computing 15 SP1-LTSS | kernel-source | Affected |
SUSE Linux Enterprise High Performance Computing 15-ESPOS | kernel-source | Affected |
SUSE Linux Enterprise High Performance Computing 15-LTSS | kernel-source | Affected |
SUSE Linux Enterprise Micro 5.0 | kernel-default | Affected |
SUSE Linux Enterprise Micro 5.0 | kernel-rt | Unsupported |
SUSE Linux Enterprise Module for Basesystem 15 | kernel-source | Affected |
SUSE Linux Enterprise Module for Basesystem 15 SP1 | kernel-source | Affected |
SUSE Linux Enterprise Module for Development Tools 15 | kernel-source | Affected |
SUSE Linux Enterprise Module for Development Tools 15 SP1 | kernel-source | Affected |
SUSE Linux Enterprise Module for Public Cloud 12 | kernel-default | Unsupported |
SUSE Linux Enterprise Module for Public Cloud 12 | kernel-source | Unsupported |
SUSE Linux Enterprise Point of Sale 12 SP2-CLIENT | kernel-source | Affected |
SUSE Linux Enterprise Real Time 12 SP5 | kernel-rt | Released |
SUSE Linux Enterprise Real Time 12 SP5 | kernel-rt_debug | Released |
SUSE Linux Enterprise Real Time 12 SP5 | kernel-source-rt | Released |
SUSE Linux Enterprise Real Time 12 SP5 | kernel-syms-rt | Released |
SUSE Linux Enterprise Real Time 15 SP1 | kernel-source-rt | Unsupported |
SUSE Linux Enterprise Real Time 15 SP2 | kernel-source | Affected |
SUSE Linux Enterprise Real Time 15 SP3 | kernel-source | Affected |
SUSE Linux Enterprise Real Time 15 SP3 | kernel-source-rt | Ignore |
SUSE Linux Enterprise Real Time 15 SP4 | kernel-source | Affected |
SUSE Linux Enterprise Real Time 15 SP4 | kernel-source-rt | Ignore |
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 | Unsupported |
SUSE Linux Enterprise Server 12 | kernel-source | Unsupported |
SUSE Linux Enterprise Server 12 SP1 | kernel-source | Unsupported |
SUSE Linux Enterprise Server 12 SP1-LTSS | kernel-source | Unsupported |
SUSE Linux Enterprise Server 12 SP2 | kernel-source | Affected |
SUSE Linux Enterprise Server 12 SP2-BCL | kernel-source | Affected |
SUSE Linux Enterprise Server 12 SP2-ESPOS | kernel-source | Affected |
SUSE Linux Enterprise Server 12 SP2-LTSS | kernel-default | Affected |
SUSE Linux Enterprise Server 12 SP2-LTSS | kernel-source | Affected |
SUSE Linux Enterprise Server 12 SP3 | kernel-default | Unsupported |
SUSE Linux Enterprise Server 12 SP3 | kernel-source | Unsupported |
SUSE Linux Enterprise Server 12 SP3-BCL | kernel-source | Affected |
SUSE Linux Enterprise Server 12 SP3-ESPOS | kernel-source | Affected |
SUSE Linux Enterprise Server 12 SP3-LTSS | kernel-source | Affected |
SUSE Linux Enterprise Server 12 SP4 | kernel-default | Unsupported |
SUSE Linux Enterprise Server 12 SP4 | kernel-source | Unsupported |
SUSE Linux Enterprise Server 12 SP4-ESPOS | kernel-source | Affected |
SUSE Linux Enterprise Server 12 SP4-LTSS | kernel-default | Affected |
SUSE Linux Enterprise Server 12 SP4-LTSS | kernel-source | Affected |
SUSE Linux Enterprise Server 15 | kernel-source | Affected |
SUSE Linux Enterprise Server 15 SP1 | kernel-source | Affected |
SUSE Linux Enterprise Server 15 SP1-BCL | kernel-source | Affected |
SUSE Linux Enterprise Server 15 SP1-LTSS | kernel-default | Affected |
SUSE Linux Enterprise Server 15 SP1-LTSS | kernel-source | Affected |
SUSE Linux Enterprise Server 15 SP2-BCL | kernel-source | Affected |
SUSE Linux Enterprise Server 15 SP3-BCL | kernel-source | Affected |
SUSE Linux Enterprise Server 15-LTSS | kernel-default | Affected |
SUSE Linux Enterprise Server 15-LTSS | kernel-source | Affected |
SUSE Linux Enterprise Server for Raspberry Pi 12 SP2 | kernel-source | Affected |
SUSE Linux Enterprise Server for SAP Applications 12 | kernel-default | Unsupported |
SUSE Linux Enterprise Server for SAP Applications 12 | kernel-source | Unsupported |
SUSE Linux Enterprise Server for SAP Applications 12 SP1 | kernel-source | Unsupported |
SUSE Linux Enterprise Server for SAP Applications 12 SP2 | kernel-source | Affected |
SUSE Linux Enterprise Server for SAP Applications 12 SP3 | kernel-default | Unsupported |
SUSE Linux Enterprise Server for SAP Applications 12 SP3 | kernel-source | Unsupported |
SUSE Linux Enterprise Server for SAP Applications 12 SP4 | kernel-default | Unsupported |
SUSE Linux Enterprise Server for SAP Applications 12 SP4 | kernel-source | Unsupported |
SUSE Linux Enterprise Server for SAP Applications 15 | kernel-source | Affected |
SUSE Linux Enterprise Server for SAP Applications 15 SP1 | kernel-source | Affected |
SUSE Linux Enterprise Software Development Kit 12 SP5 | kernel-default | Affected |
SUSE Linux Enterprise Software Development Kit 12 SP5 | kernel-docs | Released |
SUSE Linux Enterprise Software Development Kit 12 SP5 | kernel-obs-build | Released |
SUSE Linux Enterprise Software Development Kit 12 SP5 | kernel-source | Affected |
SUSE Linux Enterprise Workstation Extension 12 SP5 | kernel-default | Released |
SUSE Linux Enterprise Workstation Extension 12 SP5 | kernel-source | Released |
SUSE Manager Proxy 4.0 | kernel-source | Affected |
SUSE Manager Proxy 4.1 | kernel-source | Affected |
SUSE Manager Proxy 4.2 | kernel-source | Affected |
SUSE Manager Retail Branch Server 4.0 | kernel-source | Affected |
SUSE Manager Retail Branch Server 4.1 | kernel-source | Affected |
SUSE Manager Retail Branch Server 4.2 | kernel-source | Affected |
SUSE Manager Server 4.0 | kernel-source | Affected |
SUSE Manager Server 4.1 | kernel-source | Affected |
SUSE Manager Server 4.2 | kernel-source | Affected |
SUSE OpenStack Cloud 7 | kernel-source | Affected |
SUSE OpenStack Cloud 8 | kernel-source | Affected |
SUSE OpenStack Cloud 9 | kernel-source | Affected |
SUSE OpenStack Cloud Crowbar 8 | kernel-source | Affected |
SUSE OpenStack Cloud Crowbar 9 | kernel-source | Affected |
SUSE Real Time Module 15 SP1 | kernel-source-rt | Unsupported |
SUSE Real Time Module 15 SP3 | kernel-source-rt | Ignore |
SUSE Real Time Module 15 SP4 | kernel-source-rt | Ignore |
openSUSE Leap 15.3 | kernel-source | Affected |
openSUSE Leap 15.3 | kernel-source-rt | Ignore |
openSUSE Leap 15.4 | kernel-source | Affected |
openSUSE Leap 15.4 | kernel-source-azure | Unsupported |
openSUSE Leap 15.4 | kernel-source-rt | Ignore |
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 | Affected |
SUSE Linux Enterprise Server 12 SP5 LTSS Extended Security | kernel-source-azure | Affected |
SUSE Timeline for this CVE
CVE page created: Wed Sep 18 12:00:13 2024CVE page last modified: Tue Nov 12 15:15:31 2024